diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-05-29 09:39:16 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-05-29 09:39:16 +0000 |
| commit | ee0aba0b4d9e769ebb32d7a309793c86d6562566 (patch) | |
| tree | 86fbc661d6f41b5d904ff341f6177ab656706af7 | |
| parent | 0b0f11c38538cb420e835d3a0aab5a87dcc53f21 (diff) | |
automatic import of python-bitstream
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-bitstream.spec | 75 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 77 insertions, 0 deletions
@@ -0,0 +1 @@ +/bitstream-2.6.0.2.tar.gz diff --git a/python-bitstream.spec b/python-bitstream.spec new file mode 100644 index 0000000..8a6ff65 --- /dev/null +++ b/python-bitstream.spec @@ -0,0 +1,75 @@ +%global _empty_manifest_terminate_build 0 +Name: python-bitstream +Version: 2.6.0.2 +Release: 1 +Summary: Binary Data for Humans +License: MIT License +URL: https://github.com/boisgera/bitstream +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/d6/04/c514b4749e7a9265f8607b17c36687774c216daa042cd83f15bc291ae899/bitstream-2.6.0.2.tar.gz +BuildArch: noarch + + +%description +A Python library to manage binary data as +`bitstreams <https://en.wikipedia.org/wiki/Bitstream>`__. + +%package -n python3-bitstream +Summary: Binary Data for Humans +Provides: python-bitstream +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-bitstream +A Python library to manage binary data as +`bitstreams <https://en.wikipedia.org/wiki/Bitstream>`__. + +%package help +Summary: Development documents and examples for bitstream +Provides: python3-bitstream-doc +%description help +A Python library to manage binary data as +`bitstreams <https://en.wikipedia.org/wiki/Bitstream>`__. + +%prep +%autosetup -n bitstream-2.6.0.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-bitstream -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon May 29 2023 Python_Bot <Python_Bot@openeuler.org> - 2.6.0.2-1 +- Package Spec generated @@ -0,0 +1 @@ +81ff0652787eca385f0dd52d36ab5de1 bitstream-2.6.0.2.tar.gz |
