diff options
author | CoprDistGit <infra@openeuler.org> | 2023-06-20 07:24:57 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2023-06-20 07:24:57 +0000 |
commit | bc69b34cd8d17ea826b40739d6638a2c5481634d (patch) | |
tree | d991bdf67a08e5d31b908080a8debdecb9904371 /python-ariane-procos.spec | |
parent | f71ec1a1f2c8d419306c7783b4e1895d3eacade0 (diff) |
automatic import of python-ariane_procosopeneuler20.03
Diffstat (limited to 'python-ariane-procos.spec')
-rw-r--r-- | python-ariane-procos.spec | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/python-ariane-procos.spec b/python-ariane-procos.spec new file mode 100644 index 0000000..13ad5e2 --- /dev/null +++ b/python-ariane-procos.spec @@ -0,0 +1,72 @@ +%global _empty_manifest_terminate_build 0 +Name: python-ariane_procos +Version: 0.1.4 +Release: 1 +Summary: Ariane Plugin ProcOS +License: AGPLv3 +URL: https://github.com/echinopsii/net.echinopsii.ariane.community.plugin.procos.git +Source0: https://mirrors.aliyun.com/pypi/web/packages/74/02/62962a1acb1ac66717559aa490b377e01a237d79aade3567964440c4c913/ariane_procos-0.1.4.tar.gz +BuildArch: noarch + + +%description +Ariane Plugin PROCOS map your operating process interactions and more.Where you can get more informations : + http://ariane.echinopsii.net + http://confluence.echinopsii.net/confluence/display/AD/Ariane+Documentation+Home + IRC on freenode #ariane.echinopsii + +%package -n python3-ariane_procos +Summary: Ariane Plugin ProcOS +Provides: python-ariane_procos +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-ariane_procos +Ariane Plugin PROCOS map your operating process interactions and more.Where you can get more informations : + http://ariane.echinopsii.net + http://confluence.echinopsii.net/confluence/display/AD/Ariane+Documentation+Home + IRC on freenode #ariane.echinopsii + +%package help +Summary: Development documents and examples for ariane_procos +Provides: python3-ariane_procos-doc +%description help +Ariane Plugin PROCOS map your operating process interactions and more.Where you can get more informations : + http://ariane.echinopsii.net + http://confluence.echinopsii.net/confluence/display/AD/Ariane+Documentation+Home + IRC on freenode #ariane.echinopsii + +%prep +%autosetup -n ariane_procos-0.1.4 + +%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-ariane_procos -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Jun 20 2023 Python_Bot <Python_Bot@openeuler.org> - 0.1.4-1 +- Package Spec generated |