diff options
Diffstat (limited to 'python-nose.spec')
-rw-r--r-- | python-nose.spec | 126 |
1 files changed, 126 insertions, 0 deletions
diff --git a/python-nose.spec b/python-nose.spec new file mode 100644 index 0000000..5821b77 --- /dev/null +++ b/python-nose.spec @@ -0,0 +1,126 @@ +%global _empty_manifest_terminate_build 0 +Name: python-nose +Version: 1.3.7 +Release: 1 +Summary: nose extends unittest to make testing easier +License: GNU LGPL +URL: http://readthedocs.org/docs/nose/ +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/58/a5/0dc93c3ec33f4e281849523a5a913fa1eea9a3068acfa754d44d88107a44/nose-1.3.7.tar.gz +BuildArch: noarch + + +%description +nose extends the test loading and running features of unittest, making + it easier to write, find and run tests. + + By default, nose will run tests in files or directories under the current + working directory whose names include "test" or "Test" at a word boundary + (like "test_this" or "functional_test" or "TestClass" but not + "libtest"). Test output is similar to that of unittest, but also includes + captured stdout output from failing tests, for easy print-style debugging. + + These features, and many more, are customizable through the use of + plugins. Plugins included with nose provide support for doctest, code + coverage and profiling, flexible attribute-based test selection, + output capture and more. More information about writing plugins may be + found on in the nose API documentation, here: + http://readthedocs.org/docs/nose/ + + If you have recently reported a bug marked as fixed, or have a craving for + the very latest, you may want the development version instead: + https://github.com/nose-devs/nose/tarball/master#egg=nose-dev + +%package -n python3-nose +Summary: nose extends unittest to make testing easier +Provides: python-nose +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-nose +nose extends the test loading and running features of unittest, making + it easier to write, find and run tests. + + By default, nose will run tests in files or directories under the current + working directory whose names include "test" or "Test" at a word boundary + (like "test_this" or "functional_test" or "TestClass" but not + "libtest"). Test output is similar to that of unittest, but also includes + captured stdout output from failing tests, for easy print-style debugging. + + These features, and many more, are customizable through the use of + plugins. Plugins included with nose provide support for doctest, code + coverage and profiling, flexible attribute-based test selection, + output capture and more. More information about writing plugins may be + found on in the nose API documentation, here: + http://readthedocs.org/docs/nose/ + + If you have recently reported a bug marked as fixed, or have a craving for + the very latest, you may want the development version instead: + https://github.com/nose-devs/nose/tarball/master#egg=nose-dev + +%package help +Summary: Development documents and examples for nose +Provides: python3-nose-doc +%description help +nose extends the test loading and running features of unittest, making + it easier to write, find and run tests. + + By default, nose will run tests in files or directories under the current + working directory whose names include "test" or "Test" at a word boundary + (like "test_this" or "functional_test" or "TestClass" but not + "libtest"). Test output is similar to that of unittest, but also includes + captured stdout output from failing tests, for easy print-style debugging. + + These features, and many more, are customizable through the use of + plugins. Plugins included with nose provide support for doctest, code + coverage and profiling, flexible attribute-based test selection, + output capture and more. More information about writing plugins may be + found on in the nose API documentation, here: + http://readthedocs.org/docs/nose/ + + If you have recently reported a bug marked as fixed, or have a craving for + the very latest, you may want the development version instead: + https://github.com/nose-devs/nose/tarball/master#egg=nose-dev + +%prep +%autosetup -n nose-1.3.7 + +%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-nose -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Thu Mar 09 2023 Python_Bot <Python_Bot@openeuler.org> - 1.3.7-1 +- Package Spec generated |