diff options
author | CoprDistGit <copr-devel@lists.fedorahosted.org> | 2023-03-08 06:26:16 +0000 |
---|---|---|
committer | CoprDistGit <copr-devel@lists.fedorahosted.org> | 2023-03-08 06:26:16 +0000 |
commit | c96fca1bb872c43517fe34234114398181eb0aa4 (patch) | |
tree | c03ad57fade5336c4edb4dcaec2e52937043f3fa | |
parent | ba20b0c72f5b04670dcb926a4efddd82e9c4231d (diff) |
automatic import of python-bloom
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-bloom.spec | 89 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 91 insertions, 0 deletions
@@ -0,0 +1 @@ +/bloom-0.11.2.tar.gz diff --git a/python-bloom.spec b/python-bloom.spec new file mode 100644 index 0000000..6ac7cbb --- /dev/null +++ b/python-bloom.spec @@ -0,0 +1,89 @@ +%global _empty_manifest_terminate_build 0 +Name: python-bloom +Version: 0.11.2 +Release: 1 +Summary: Bloom is a release automation tool. +License: BSD +URL: http://www.ros.org/wiki/bloom +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/e6/8a/e2dc96b27ce5e719900be91bbef82914c3b6abbc0d49713b278c070244a4/bloom-0.11.2.tar.gz +BuildArch: noarch + +Requires: python3-PyYAML +Requires: python3-catkin-pkg +Requires: python3-empy +Requires: python3-dateutil +Requires: python3-rosdep +Requires: python3-rosdistro +Requires: python3-setuptools +Requires: python3-vcstools + +%description +Bloom provides tools for releasing software on top of a git repository and leverages tools and patterns from git-buildpackage. Additionally, bloom leverages meta and build information from catkin (https://github.com/ros/catkin) to automate release branching and the generation of platform specific source packages, like debian's src-debs. + + + + +%package -n python3-bloom +Summary: Bloom is a release automation tool. +Provides: python-bloom +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-bloom +Bloom provides tools for releasing software on top of a git repository and leverages tools and patterns from git-buildpackage. Additionally, bloom leverages meta and build information from catkin (https://github.com/ros/catkin) to automate release branching and the generation of platform specific source packages, like debian's src-debs. + + + + +%package help +Summary: Development documents and examples for bloom +Provides: python3-bloom-doc +%description help +Bloom provides tools for releasing software on top of a git repository and leverages tools and patterns from git-buildpackage. Additionally, bloom leverages meta and build information from catkin (https://github.com/ros/catkin) to automate release branching and the generation of platform specific source packages, like debian's src-debs. + + + + +%prep +%autosetup -n bloom-0.11.2 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +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 +fi +if [ -d usr/lib64 ]; then + 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 +fi +if [ -d usr/sbin ]; then + 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 +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-bloom -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed Mar 08 2023 Python_Bot <Python_Bot@openeuler.org> - 0.11.2-1 +- Package Spec generated @@ -0,0 +1 @@ +b781d57253585000abbaa2791e2dfce0 bloom-0.11.2.tar.gz |