python-py package update
Signed-off-by: basebuilder_pel7ppc64bebuilder0 <basebuilder@powerel.org>master
parent
6336f3bf9c
commit
c4cc63ddb1
|
@ -0,0 +1,21 @@
|
|||
diff --git a/testing/path/common.py b/testing/path/common.py
|
||||
index 274ced4..7945cd7 100644
|
||||
--- a/testing/path/common.py
|
||||
+++ b/testing/path/common.py
|
||||
@@ -444,12 +444,14 @@ class CommonFSTests(object):
|
||||
from py._path.common import fspath
|
||||
assert fspath(path1) == path1.strpath
|
||||
|
||||
- @py.test.mark.skip("sys.version_info < (3,6)")
|
||||
+ @py.test.mark.skipif(sys.version_info < (3,6),
|
||||
+ reason="requires Python 3.6")
|
||||
def test_fspath_open(self, path1):
|
||||
f = path1.join('opentestfile')
|
||||
open(f)
|
||||
|
||||
- @py.test.mark.skip("sys.version_info < (3,6)")
|
||||
+ @py.test.mark.skipif(sys.version_info < (3,6),
|
||||
+ reason="requires Python 3.6")
|
||||
def test_fspath_fsencode(self, path1):
|
||||
from os import fsencode
|
||||
assert fsencode(path1) == fsencode(path1.strpath)
|
|
@ -0,0 +1,378 @@
|
|||
%global with_python3 1
|
||||
%global python3_version %(%{__python3} -c "import sys; sys.stdout.write(sys.version[:3])")
|
||||
%if 0%{?rhel} && 0%{?rhel} < 6
|
||||
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
|
||||
%endif
|
||||
|
||||
# we have a circular (build) dependency with the (new) pytest package
|
||||
# when generating the docs or running the testsuite
|
||||
%global with_docs 0
|
||||
%global run_check 0
|
||||
|
||||
%global pytest_version 2.3.1
|
||||
|
||||
Name: python-py
|
||||
Version: 1.4.32
|
||||
Release: 1%{?dist}
|
||||
Summary: Library with cross-python path, ini-parsing, io, code, log facilities
|
||||
Group: Development/Languages
|
||||
License: MIT and Public Domain
|
||||
# main package: MIT, except: doc/style.css: Public Domain
|
||||
URL: http://py.readthedocs.io
|
||||
Source: https://files.pythonhosted.org/packages/source/p/py/py-%{version}.tar.gz
|
||||
# Replace the decorator for skipping the Python 3.6 tests with a compatible one for
|
||||
# the RHEL 7 version of pytest
|
||||
Patch0: skip-python3.6-tests.patch
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
BuildArch: noarch
|
||||
BuildRequires: python-devel
|
||||
BuildRequires: python-setuptools
|
||||
Requires: python-setuptools
|
||||
%if 0%{?with_docs}
|
||||
%if 0%{?rhel} > 6 || 0%{?fedora}
|
||||
BuildRequires: python-sphinx
|
||||
%else
|
||||
BuildRequires: python-sphinx10
|
||||
%endif # fedora
|
||||
%endif # with_docs
|
||||
%if 0%{?run_check}
|
||||
BuildRequires: pytest >= %{pytest_version}
|
||||
%endif # run_check
|
||||
%if 0%{?with_python3}
|
||||
BuildRequires: python3-devel
|
||||
BuildRequires: python3-setuptools
|
||||
%if 0%{?run_check}
|
||||
BuildRequires: python3-pytest >= %{pytest_version}
|
||||
%endif # run_check
|
||||
%endif # with_python3
|
||||
|
||||
# needed by the testsuite
|
||||
BuildRequires: subversion
|
||||
|
||||
Provides: python2-py = %{version}-%{release}
|
||||
|
||||
%description
|
||||
The py lib is a Python development support library featuring the
|
||||
following tools and modules:
|
||||
|
||||
* py.path: uniform local and svn path objects
|
||||
* py.apipkg: explicit API control and lazy-importing
|
||||
* py.iniconfig: easy parsing of .ini files
|
||||
* py.code: dynamic code generation and introspection
|
||||
* py.path: uniform local and svn path objects
|
||||
|
||||
%if 0%{?with_python3}
|
||||
%package -n python3-py
|
||||
Summary: Library with cross-python path, ini-parsing, io, code, log facilities
|
||||
Requires: python3-setuptools
|
||||
|
||||
%description -n python3-py
|
||||
The py lib is a Python development support library featuring the
|
||||
following tools and modules:
|
||||
|
||||
* py.path: uniform local and svn path objects
|
||||
* py.apipkg: explicit API control and lazy-importing
|
||||
* py.iniconfig: easy parsing of .ini files
|
||||
* py.code: dynamic code generation and introspection
|
||||
* py.path: uniform local and svn path objects
|
||||
|
||||
%endif # with_python3
|
||||
|
||||
%prep
|
||||
%setup -q -n py-%{version}
|
||||
%patch0 -p1
|
||||
|
||||
# remove shebangs and fix permissions
|
||||
find -type f -a \( -name '*.py' -o -name 'py.*' \) \
|
||||
-exec sed -i '1{/^#!/d}' {} \; \
|
||||
-exec chmod u=rw,go=r {} \;
|
||||
|
||||
%if 0%{?with_python3}
|
||||
cp -a . %{py3dir}
|
||||
%endif # with_python3
|
||||
|
||||
|
||||
%build
|
||||
%{__python} setup.py build
|
||||
|
||||
%if 0%{?with_docs}
|
||||
%if 0%{?rhel} > 6 || 0%{?fedora}
|
||||
make -C doc html PYTHONPATH=$(pwd)
|
||||
%else
|
||||
make -C doc html SPHINXBUILD=sphinx-1.0-build PYTHONPATH=$(pwd)
|
||||
%endif # fedora
|
||||
%endif # with_docs
|
||||
|
||||
%if 0%{?with_python3}
|
||||
pushd %{py3dir}
|
||||
%{__python3} setup.py build
|
||||
popd
|
||||
%endif # with_python3
|
||||
|
||||
|
||||
%install
|
||||
rm -rf %{buildroot}
|
||||
%{__python} setup.py install -O1 --skip-build --root %{buildroot}
|
||||
|
||||
%if 0%{?with_python3}
|
||||
pushd %{py3dir}
|
||||
%{__python3} setup.py install -O1 --skip-build --root %{buildroot}
|
||||
popd
|
||||
%endif # with_python3
|
||||
|
||||
# remove hidden file
|
||||
rm -rf doc/_build/html/.buildinfo
|
||||
|
||||
|
||||
%check
|
||||
%if 0%{?run_check}
|
||||
PYTHONPATH=%{buildroot}%{python_sitelib} \
|
||||
LC_ALL="en_US.UTF-8" \
|
||||
py.test -r s
|
||||
%if 0%{?with_python3}
|
||||
pushd %{py3dir}
|
||||
PYTHONPATH=%{buildroot}%{python3_sitelib} \
|
||||
LC_ALL="en_US.UTF-8" \
|
||||
py.test-%{python3_version} -r s
|
||||
popd
|
||||
%endif # with_python3
|
||||
%endif # run_check
|
||||
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc CHANGELOG LICENSE README.rst
|
||||
%if 0%{?with_docs}
|
||||
%doc doc/_build/html
|
||||
%endif # with_docs
|
||||
%{python_sitelib}/*
|
||||
|
||||
|
||||
%if 0%{?with_python3}
|
||||
%files -n python3-py
|
||||
%defattr(-,root,root,-)
|
||||
%doc CHANGELOG LICENSE README.rst
|
||||
%if 0%{?with_docs}
|
||||
%doc doc/_build/html
|
||||
%endif # with_docs
|
||||
%{python3_sitelib}/*
|
||||
%endif # with_python3
|
||||
|
||||
|
||||
%changelog
|
||||
* Thu Feb 09 2017 Charalampos Stratakis <cstratak@redhat.com> - 1.4.32-1
|
||||
- Updated to 1.4.32
|
||||
Resolves: rhbz#1389113
|
||||
|
||||
* Mon May 11 2015 Matej Stuchlik <mstuchli@redhat.com> - 1.4.27-1
|
||||
- Updated to 1.4.27
|
||||
Resolves: rhbz#1219480
|
||||
|
||||
* Fri Dec 27 2013 Daniel Mach <dmach@redhat.com> - 1.4.14-4
|
||||
- Mass rebuild 2013-12-27
|
||||
|
||||
* Tue Jun 18 2013 Endi S. Dewata <edewata@redhat.com> - 1.4.14-3
|
||||
- Disabled pytest dependency for RHEL 7.
|
||||
|
||||
* Wed Jun 12 2013 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.14-2
|
||||
- Use python-sphinx for rhel > 6 (rhbz#973321).
|
||||
- Update URL.
|
||||
- Fix changelog entry with an incorrect date (rhbz#973325).
|
||||
|
||||
* Sat May 11 2013 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.14-1
|
||||
- Update to 1.4.14.
|
||||
|
||||
* Sat Mar 2 2013 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.13-1
|
||||
- Update to 1.4.13.
|
||||
|
||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.12-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Fri Nov 23 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.12-1
|
||||
- Update to 1.4.12.
|
||||
|
||||
* Sat Oct 27 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.11-1
|
||||
- Update to 1.4.11.
|
||||
|
||||
* Sun Oct 21 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.10-2
|
||||
- Re-enable doc building and testsuite.
|
||||
- Minor testsuite fixes.
|
||||
|
||||
* Sun Oct 21 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.10-1
|
||||
- Update to 1.4.10.
|
||||
|
||||
* Fri Oct 12 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.9-8
|
||||
- Re-enable doc building and testsuite.
|
||||
|
||||
* Thu Oct 11 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.9-7
|
||||
- Add conditional for sphinx on rhel.
|
||||
- Remove rhel logic from with_python3 conditional.
|
||||
|
||||
* Wed Oct 10 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.9-6
|
||||
- Re-enable doc building and testsuite.
|
||||
|
||||
* Sat Aug 4 2012 David Malcolm <dmalcolm@redhat.com> - 1.4.9-5
|
||||
- Temporarily disable docs and testsuite.
|
||||
|
||||
* Sat Aug 04 2012 David Malcolm <dmalcolm@redhat.com> - 1.4.9-4
|
||||
- rebuild for https://fedoraproject.org/wiki/Features/Python_3.3
|
||||
|
||||
* Fri Jul 27 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.9-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Fri Jun 15 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.9-2
|
||||
- Re-enable doc building and testsuite.
|
||||
|
||||
* Thu Jun 14 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.9-1
|
||||
- Update to 1.4.9.
|
||||
|
||||
* Sat Jun 9 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.8-2
|
||||
- Re-enable doc building and testsuite.
|
||||
|
||||
* Wed Jun 6 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.8-1
|
||||
- Update to 1.4.8.
|
||||
|
||||
* Wed Feb 8 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.7-2
|
||||
- Re-enable doc building and testsuite.
|
||||
|
||||
* Wed Feb 8 2012 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.7-1
|
||||
- Update to 1.4.7.
|
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.6-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Sat Dec 17 2011 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.6-2
|
||||
- Re-enable doc building and testsuite.
|
||||
|
||||
* Sat Dec 17 2011 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.6-1
|
||||
- Update to 1.4.6.
|
||||
- Remove %%prerelease macro.
|
||||
- Temporarily disable docs and testsuite.
|
||||
|
||||
* Wed Oct 26 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.4.5-4
|
||||
- Rebuilt for glibc bug#747377
|
||||
|
||||
* Sat Sep 3 2011 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.5-3
|
||||
- Fix: python3 dependencies.
|
||||
|
||||
* Tue Aug 30 2011 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.5-2
|
||||
- Re-enable doc building and testsuite.
|
||||
|
||||
* Sat Aug 27 2011 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.5-1
|
||||
- Update to 1.4.5.
|
||||
|
||||
* Thu Aug 11 2011 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.4-2
|
||||
- Re-enable doc building and testsuite.
|
||||
|
||||
* Thu Aug 11 2011 Thomas Moschny <thomas.moschny@gmx.de> - 1.4.4-1
|
||||
- Update to 1.4.4.
|
||||
- Upstream provides a .zip archive only.
|
||||
- pytest and pycmd are separate packages now.
|
||||
- Disable building html docs und the testsuite to break the circular
|
||||
build dependency with pytest.
|
||||
- Update summary and description.
|
||||
- Remove BRs no longer needed.
|
||||
- Create a Python 3 subpackage.
|
||||
|
||||
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.3.4-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Sat Sep 18 2010 Thomas Moschny <thomas.moschny@gmx.de> - 1.3.4-1
|
||||
- Update to 1.3.4
|
||||
|
||||
* Fri Aug 27 2010 Thomas Moschny <thomas.moschny@gmx.de> - 1.3.3-2
|
||||
- Add dependency on python-setuptools (see bz 626808).
|
||||
|
||||
* Sat Jul 31 2010 Thomas Moschny <thomas.moschny@gmx.de> - 1.3.3-1
|
||||
- Update to 1.3.3.
|
||||
|
||||
* Thu Jul 22 2010 David Malcolm <dmalcolm@redhat.com> - 1.3.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
|
||||
|
||||
* Sat Jul 10 2010 Thomas Moschny <thomas.moschny@gmx.de> - 1.3.2-1
|
||||
- Update to 1.3.2.
|
||||
- Do cleanups already in %%prep to avoid inconsistent mtimes between
|
||||
source files and bytecode.
|
||||
|
||||
* Sat May 29 2010 Thomas Moschny <thomas.moschny@gmx.de> - 1.3.1-1
|
||||
- Update to 1.3.1.
|
||||
|
||||
* Sat May 8 2010 Thomas Moschny <thomas.moschny@gmx.de> - 1.3.0-1
|
||||
- Update to 1.3.0.
|
||||
- Remove some backup (.orig) files.
|
||||
|
||||
* Sun Feb 14 2010 Thomas Moschny <thomas.moschny@gmx.de> - 1.2.1-1
|
||||
- Update to 1.2.1.
|
||||
|
||||
* Wed Jan 27 2010 Thomas Moschny <thomas.moschny@gmx.de> - 1.2.0-1
|
||||
- Update to 1.2.0.
|
||||
- Adjust summary and %%description.
|
||||
- Use %%global instead of %%define.
|
||||
|
||||
* Sat Nov 28 2009 Thomas Moschny <thomas.moschny@gmx.de> - 1.1.1-1
|
||||
- Update to 1.1.1.
|
||||
|
||||
* Sat Nov 21 2009 Thomas Moschny <thomas.moschny@gmx.de> - 1.1.0-1
|
||||
- Update to 1.1.0. Upstream reorganized the package's structure and
|
||||
cleaned up the install process, so the specfile could be greatly
|
||||
simplified.
|
||||
- Dropped licenses for files no longer present from the License tag.
|
||||
|
||||
* Thu Aug 27 2009 Thomas Moschny <thomas.moschny@gmx.de> - 1.0.2-1
|
||||
- Update to 1.0.2.
|
||||
- One failing test is no longer part of the testsuite, thus needs not
|
||||
to be skipped anymore.
|
||||
- Some developer docs are missing this time in upstream's tarfile, so
|
||||
cannot be moved to %%{_docdir}
|
||||
|
||||
* Thu Aug 13 2009 Thomas Moschny <thomas.moschny@gmx.de> - 1.0.0-1
|
||||
- Update to 1.0.0.
|
||||
- Re-enable SVN tests in %%check.
|
||||
|
||||
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.0-1.b8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
||||
|
||||
* Wed Jul 22 2009 Thomas Moschny <thomas.moschny@gmx.de> - 1.0.0-0.b8
|
||||
- Update to 1.0.0b8.
|
||||
- Remove patches applied upstream.
|
||||
- Greenlets have been removed upstream. So, package is noarch and
|
||||
- installs to %%{python_sitelib} again
|
||||
- %%ifarch sections have been removed.
|
||||
- Don't remove files used by the testsuite for now.
|
||||
- Add dependency on python-pygments, pylint and pexpect (for the
|
||||
testsuite).
|
||||
|
||||
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.2-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
||||
|
||||
* Wed Jan 14 2009 Thomas Moschny <thomas.moschny@gmx.de> - 0.9.2-6
|
||||
- Use system doctest module again, as this wasn't the real cause of
|
||||
the test failure. Instead, remove the failing test for now.
|
||||
|
||||
* Fri Dec 12 2008 Thomas Moschny <thomas.moschny@gmx.de> - 0.9.2-5
|
||||
- Add patch from trunk fixing a subversion 1.5 problem (pylib
|
||||
issue66).
|
||||
- Don't replace doctest compat module (pylib issue67).
|
||||
|
||||
* Fri Nov 21 2008 Thomas Moschny <thomas.moschny@gmx.de> - 0.9.2-4
|
||||
- Use dummy_greenlet on ppc and ppc64.
|
||||
|
||||
* Tue Oct 7 2008 Thomas Moschny <thomas.moschny@gmx.de> - 0.9.2-3
|
||||
- Replace compat modules by stubs using the system modules instead.
|
||||
- Add patch from trunk fixing a timing issue in the tests.
|
||||
|
||||
* Tue Sep 30 2008 Thomas Moschny <thomas.moschny@gmx.de> - 0.9.2-2
|
||||
- Update license information.
|
||||
- Fix the tests.
|
||||
|
||||
* Sun Sep 7 2008 Thomas Moschny <thomas.moschny@gmx.de> - 0.9.2-1
|
||||
- Update to 0.9.2.
|
||||
- Upstream now uses setuptools and installs to %%{python_sitearch}.
|
||||
- Remove %%{srcname} macro.
|
||||
- More detailed information about licenses.
|
||||
|
||||
* Thu Aug 21 2008 Thomas Moschny <thomas.moschny@gmx.de> - 0.9.1-1
|
||||
- New package.
|
Loading…
Reference in New Issue