diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-04-11 17:08:51 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-04-11 17:08:51 +0000 |
| commit | 3e11f8a0dca4c89e12ec70dd5e16a5fad9d79519 (patch) | |
| tree | 85e7fe5e662e402138059a495b6939be14d4aa85 | |
| parent | ca93800d1b29542beeb0a7304d48e4c9897ad294 (diff) | |
automatic import of python-pynzb
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-pynzb.spec | 102 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 104 insertions, 0 deletions
@@ -0,0 +1 @@ +/pynzb-0.1.0.tar.gz diff --git a/python-pynzb.spec b/python-pynzb.spec new file mode 100644 index 0000000..6b85afa --- /dev/null +++ b/python-pynzb.spec @@ -0,0 +1,102 @@ +%global _empty_manifest_terminate_build 0 +Name: python-pynzb +Version: 0.1.0 +Release: 1 +Summary: pynzb is a unified API for parsing NZB files, with several concrete implementations included +License: BSD +URL: http://github.com/ericflo/pynzb/tree/master +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/b1/90/b71ca66e2fee3f46281b3ecc853abe407a5ecd0cb4898af5bab48af63590/pynzb-0.1.0.tar.gz +BuildArch: noarch + + +%description +NZB is an XML-based file format for retrieving posts from NNTP (Usenet) +servers. +Since NZB is XML-based, it's relatively easy to build one-off parsers to parse +NZB files. This project is an attempt to consolidate those many one-off NZB +parsers into one simple interface. +This package includes three implementations: one based on expat, another +based +on ElementTree, and a final implementation based on lxml. The order in which +they were listed is in order of compatibility. The expat version should work on +all versions of Python > 2.0, the lxml one will work on all versions > 2.5, and +lxml will only work if you have lxml installed. + +%package -n python3-pynzb +Summary: pynzb is a unified API for parsing NZB files, with several concrete implementations included +Provides: python-pynzb +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-pynzb +NZB is an XML-based file format for retrieving posts from NNTP (Usenet) +servers. +Since NZB is XML-based, it's relatively easy to build one-off parsers to parse +NZB files. This project is an attempt to consolidate those many one-off NZB +parsers into one simple interface. +This package includes three implementations: one based on expat, another +based +on ElementTree, and a final implementation based on lxml. The order in which +they were listed is in order of compatibility. The expat version should work on +all versions of Python > 2.0, the lxml one will work on all versions > 2.5, and +lxml will only work if you have lxml installed. + +%package help +Summary: Development documents and examples for pynzb +Provides: python3-pynzb-doc +%description help +NZB is an XML-based file format for retrieving posts from NNTP (Usenet) +servers. +Since NZB is XML-based, it's relatively easy to build one-off parsers to parse +NZB files. This project is an attempt to consolidate those many one-off NZB +parsers into one simple interface. +This package includes three implementations: one based on expat, another +based +on ElementTree, and a final implementation based on lxml. The order in which +they were listed is in order of compatibility. The expat version should work on +all versions of Python > 2.0, the lxml one will work on all versions > 2.5, and +lxml will only work if you have lxml installed. + +%prep +%autosetup -n pynzb-0.1.0 + +%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-pynzb -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Apr 11 2023 Python_Bot <Python_Bot@openeuler.org> - 0.1.0-1 +- Package Spec generated @@ -0,0 +1 @@ +63c74a36348ac28aa99732dcb8be8c59 pynzb-0.1.0.tar.gz |
