summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--python-instater.spec33
-rw-r--r--sources2
3 files changed, 26 insertions, 10 deletions
diff --git a/.gitignore b/.gitignore
index c7082f0..ba518b0 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
/instater-0.12.0.tar.gz
+/instater-0.13.0.tar.gz
diff --git a/python-instater.spec b/python-instater.spec
index 30351f7..0483212 100644
--- a/python-instater.spec
+++ b/python-instater.spec
@@ -1,11 +1,11 @@
%global _empty_manifest_terminate_build 0
Name: python-instater
-Version: 0.12.0
+Version: 0.13.0
Release: 1
Summary: An easy solution for system/dotfile configuration
License: MIT
URL: https://github.com/nayaverdier/instater
-Source0: https://mirrors.nju.edu.cn/pypi/web/packages/63/f8/ecf8e2b5324d242f9ca5823c7d660f3e3f254cfbdabb47abfe4788a6481c/instater-0.12.0.tar.gz
+Source0: https://mirrors.aliyun.com/pypi/web/packages/5f/d9/6907daf420d6756f60017c103527fcd3d3c87c132983dd2b8cb8588819bb/instater-0.13.0.tar.gz
BuildArch: noarch
Requires: python3-Jinja2
@@ -607,6 +607,11 @@ Create a UNIX user
# Changelog
+## 0.13.0 2023-06-06
+
+- Automatically convert int/float from templated variables, instead of being strings
+- `become` the `makepkg` user for running `yay` (hardcoded for now)
+
## 0.12.0 2023-04-24
- Add `pacman_bootstrapped_packages` option to ignore certain packages from the
@@ -1268,6 +1273,11 @@ Create a UNIX user
# Changelog
+## 0.13.0 2023-06-06
+
+- Automatically convert int/float from templated variables, instead of being strings
+- `become` the `makepkg` user for running `yay` (hardcoded for now)
+
## 0.12.0 2023-04-24
- Add `pacman_bootstrapped_packages` option to ignore certain packages from the
@@ -1926,6 +1936,11 @@ Create a UNIX user
# Changelog
+## 0.13.0 2023-06-06
+
+- Automatically convert int/float from templated variables, instead of being strings
+- `become` the `makepkg` user for running `yay` (hardcoded for now)
+
## 0.12.0 2023-04-24
- Add `pacman_bootstrapped_packages` option to ignore certain packages from the
@@ -2001,7 +2016,7 @@ Create a UNIX user
%prep
-%autosetup -n instater-0.12.0
+%autosetup -n instater-0.13.0
%build
%py3_build
@@ -2015,20 +2030,20 @@ if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
pushd %{buildroot}
if [ -d usr/lib ]; then
- find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
+ find usr/lib -type f -printf "\"/%h/%f\"\n" >> filelist.lst
fi
if [ -d usr/lib64 ]; then
- find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
+ find usr/lib64 -type f -printf "\"/%h/%f\"\n" >> filelist.lst
fi
if [ -d usr/bin ]; then
- find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
+ find usr/bin -type f -printf "\"/%h/%f\"\n" >> filelist.lst
fi
if [ -d usr/sbin ]; then
- find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
+ find usr/sbin -type f -printf "\"/%h/%f\"\n" >> filelist.lst
fi
touch doclist.lst
if [ -d usr/share/man ]; then
- find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
+ find usr/share/man -type f -printf "\"/%h/%f.gz\"\n" >> doclist.lst
fi
popd
mv %{buildroot}/filelist.lst .
@@ -2041,5 +2056,5 @@ mv %{buildroot}/doclist.lst .
%{_docdir}/*
%changelog
-* Wed May 31 2023 Python_Bot <Python_Bot@openeuler.org> - 0.12.0-1
+* Fri Jun 09 2023 Python_Bot <Python_Bot@openeuler.org> - 0.13.0-1
- Package Spec generated
diff --git a/sources b/sources
index 93ce964..9d84e9d 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-185d1b443dda505fff4c7f2e02bf41ea instater-0.12.0.tar.gz
+73bd6b5957e8e53b0668f708baf2dd7a instater-0.13.0.tar.gz