diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-04-10 15:56:52 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-04-10 15:56:52 +0000 |
| commit | 40b7418ec5188e6ebb1950642298f51589983190 (patch) | |
| tree | 22a5ccdf737aa96d930499e29871677bfc0023d7 /python-pybcj.spec | |
| parent | 4821965bb64ed9f65beed1ab3e9d1f3f304f1ebb (diff) | |
automatic import of python-pybcj
Diffstat (limited to 'python-pybcj.spec')
| -rw-r--r-- | python-pybcj.spec | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/python-pybcj.spec b/python-pybcj.spec new file mode 100644 index 0000000..eab3e26 --- /dev/null +++ b/python-pybcj.spec @@ -0,0 +1,90 @@ +%global _empty_manifest_terminate_build 0 +Name: python-pybcj +Version: 1.0.1 +Release: 1 +Summary: bcj filter library +License: LGPL-2.1-or-later +URL: http://codeberg.org/miurahr/pybcj +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/26/ff/25952179fa892e7d082a34e5917d747d05a227ba3c83dd3adac1c3f0be24/pybcj-1.0.1.tar.gz + +Requires: python3-importlib-metadata +Requires: python3-mypy +Requires: python3-mypy-extensions +Requires: python3-check-manifest +Requires: python3-flake8 +Requires: python3-flake8-black +Requires: python3-flake8-colors +Requires: python3-flake8-isort +Requires: python3-flake8-pyi +Requires: python3-flake8-typing-imports +Requires: python3-readme-renderer +Requires: python3-pygments +Requires: python3-pytest +Requires: python3-pytest-cov +Requires: python3-hypothesis +Requires: python3-coverage[toml] + +%description + + +%package -n python3-pybcj +Summary: bcj filter library +Provides: python-pybcj +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +BuildRequires: python3-cffi +BuildRequires: gcc +BuildRequires: gdb +%description -n python3-pybcj + + +%package help +Summary: Development documents and examples for pybcj +Provides: python3-pybcj-doc +%description help + + +%prep +%autosetup -n pybcj-1.0.1 + +%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-pybcj -f filelist.lst +%dir %{python3_sitearch}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon Apr 10 2023 Python_Bot <Python_Bot@openeuler.org> - 1.0.1-1 +- Package Spec generated |
