summaryrefslogtreecommitdiff
path: root/python-pulp-deb.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-06-08 10:37:15 +0000
committerCoprDistGit <infra@openeuler.org>2023-06-08 10:37:15 +0000
commita25ca335865ca4ff3f7fe2648486a4516d14420d (patch)
tree64d75cbcf341ec4406aeb9eba24e161ce182db0f /python-pulp-deb.spec
parent712267003ac7f6df75b000245a44ea5403fa1292 (diff)
automatic import of python-pulp-debopeneuler20.03
Diffstat (limited to 'python-pulp-deb.spec')
-rw-r--r--python-pulp-deb.spec32
1 files changed, 23 insertions, 9 deletions
diff --git a/python-pulp-deb.spec b/python-pulp-deb.spec
index 79f68c7..79b5e2d 100644
--- a/python-pulp-deb.spec
+++ b/python-pulp-deb.spec
@@ -1,15 +1,17 @@
%global _empty_manifest_terminate_build 0
Name: python-pulp-deb
-Version: 2.20.2
+Version: 2.21.0
Release: 1
Summary: pulp-deb plugin for the Pulp Project
License: GPLv2+
URL: https://pulpproject.org
-Source0: https://mirrors.nju.edu.cn/pypi/web/packages/2d/c2/fdaae4a7e121fe7537dcbf570e7cb00d3ce0e39ebc30c5fc3ec520788ce1/pulp-deb-2.20.2.tar.gz
+Source0: https://mirrors.aliyun.com/pypi/web/packages/06/8d/3bde84d7614924db874836ce888b78a6f272e241251db4f2aa57a7e1cca0/pulp-deb-2.21.0.tar.gz
BuildArch: noarch
Requires: python3-pulpcore
Requires: python3-debian
+Requires: python3-gnupg
+Requires: python3-jsonschema
%description
# pulp_deb
@@ -29,8 +31,10 @@ The most important places:
* The [plugin documentation][2].
* The [plugin issue tracker][3].
* The [plugin source repository][4].
+* The [pulp_deb plugin for Pulp CLI source repository][9].
* The [plugin GitHub actions page][8].
* Released [python packages on pypi.org][5].
+* Released [python packages for the deb Pulp CLI plugin][10].
* The [pulp-deb-client Python package][6] (contains API bindings for Python).
* The [pulp-deb-client Ruby Gem][7] (contains API bindings for Ruby).
@@ -42,6 +46,8 @@ The most important places:
[6]: https://pypi.org/project/pulp-deb-client/
[7]: https://rubygems.org/gems/pulp_deb_client
[8]: https://github.com/pulp/pulp_deb/actions
+[9]: https://github.com/pulp/pulp-cli-deb
+[10]: https://pypi.org/project/pulp-cli-deb/
@@ -70,8 +76,10 @@ The most important places:
* The [plugin documentation][2].
* The [plugin issue tracker][3].
* The [plugin source repository][4].
+* The [pulp_deb plugin for Pulp CLI source repository][9].
* The [plugin GitHub actions page][8].
* Released [python packages on pypi.org][5].
+* Released [python packages for the deb Pulp CLI plugin][10].
* The [pulp-deb-client Python package][6] (contains API bindings for Python).
* The [pulp-deb-client Ruby Gem][7] (contains API bindings for Ruby).
@@ -83,6 +91,8 @@ The most important places:
[6]: https://pypi.org/project/pulp-deb-client/
[7]: https://rubygems.org/gems/pulp_deb_client
[8]: https://github.com/pulp/pulp_deb/actions
+[9]: https://github.com/pulp/pulp-cli-deb
+[10]: https://pypi.org/project/pulp-cli-deb/
@@ -108,8 +118,10 @@ The most important places:
* The [plugin documentation][2].
* The [plugin issue tracker][3].
* The [plugin source repository][4].
+* The [pulp_deb plugin for Pulp CLI source repository][9].
* The [plugin GitHub actions page][8].
* Released [python packages on pypi.org][5].
+* Released [python packages for the deb Pulp CLI plugin][10].
* The [pulp-deb-client Python package][6] (contains API bindings for Python).
* The [pulp-deb-client Ruby Gem][7] (contains API bindings for Ruby).
@@ -121,12 +133,14 @@ The most important places:
[6]: https://pypi.org/project/pulp-deb-client/
[7]: https://rubygems.org/gems/pulp_deb_client
[8]: https://github.com/pulp/pulp_deb/actions
+[9]: https://github.com/pulp/pulp-cli-deb
+[10]: https://pypi.org/project/pulp-cli-deb/
%prep
-%autosetup -n pulp-deb-2.20.2
+%autosetup -n pulp-deb-2.21.0
%build
%py3_build
@@ -140,20 +154,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 .
@@ -166,5 +180,5 @@ mv %{buildroot}/doclist.lst .
%{_docdir}/*
%changelog
-* Mon May 15 2023 Python_Bot <Python_Bot@openeuler.org> - 2.20.2-1
+* Thu Jun 08 2023 Python_Bot <Python_Bot@openeuler.org> - 2.21.0-1
- Package Spec generated