[packages/python-PyMySQL] up to 0.7.4; build python3 package from here as well

glen glen at pld-linux.org
Tue Jun 14 16:44:48 CEST 2016


commit 84ff5ff05fa3af1ed37423b7a698e63c0713be08
Author: Elan Ruusamäe <glen at delfi.ee>
Date:   Tue Jun 14 17:44:26 2016 +0300

    up to 0.7.4; build python3 package from here as well

 python-PyMySQL.spec | 76 +++++++++++++++++++++++++++++++++++++++++++----------
 1 file changed, 62 insertions(+), 14 deletions(-)
---
diff --git a/python-PyMySQL.spec b/python-PyMySQL.spec
index eff6a7a..7535217 100644
--- a/python-PyMySQL.spec
+++ b/python-PyMySQL.spec
@@ -1,42 +1,90 @@
+#
+# Conditional build:
+%bcond_with	tests	# do not perform "make test"
+%bcond_without	python2 # CPython 2.x module
+%bcond_without	python3 # CPython 3.x module
+
+%define 	module	PyMySQL
 Summary:	Pure Python MySQL Client
-Name:		python-PyMySQL
-Version:	0.5
-Release:	3
+Name:		python-%{module}
+Version:	0.7.4
+Release:	1
 License:	MIT
 Group:		Libraries/Python
-Source0:	https://github.com/downloads/petehunt/PyMySQL/PyMySQL-%{version}.tar.gz
-# Source0-md5:	125e8a3449e05afcb04874a19673426b
-URL:		http://www.pymysql.org/
-BuildRequires:	rpmbuild(macros) >= 1.710
+Source0:	https://github.com/PyMySQL/PyMySQL/archive/%{version}/%{module}-%{version}.tar.gz
+# Source0-md5:	e5d21154a71e5f6e73bcb3fd7659c642
+URL:		https://github.com/PyMySQL/PyMySQL
+BuildRequires:	rpm-pythonprov
+BuildRequires:	rpmbuild(macros) >= 1.714
+%if %{with python2}
 BuildRequires:	python-modules
 BuildRequires:	python-setuptools
-BuildRequires:	rpm-pythonprov
-%pyrequires_eq	python-modules
+%endif
+%if %{with python3}
+BuildRequires:	python3-modules
+BuildRequires:	python3-setuptools
+%endif
+Requires:	python-modules
 BuildArch:	noarch
 BuildRoot:	%{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
 This package contains a pure-Python MySQL client library.
 
-The goal of pymysql is to be a drop-in replacement for MySQLdb and
-work on CPython 2.3+, Jython, IronPython, PyPy and Python 3.
+The goal of PyMySQL is to be a drop-in replacement for MySQLdb and
+work on CPython, PyPy and IronPython.
+
+%package -n python3-%{module}
+Summary:	Pure Python MySQL Client
+Group:		Libraries/Python
+Requires:	python3-modules
+
+%description -n python3-%{module}
+This package contains a pure-Python MySQL client library.
+
+The goal of PyMySQL is to be a drop-in replacement for MySQLdb and
+work on CPython, PyPy and IronPython.
 
 %prep
 %setup  -q -n PyMySQL-%{version}
 
 %build
-%py_build
+%if %{with python2}
+%py_build %{?with_tests:test}
+%endif
+
+%if %{with python3}
+%py3_build %{?with_tests:test}
+%endif
 
 %install
 rm -rf $RPM_BUILD_ROOT
-
+%if %{with python2}
 %py_install
 %py_postclean
+%{__rm} -r $RPM_BUILD_ROOT%{py_sitescriptdir}/pymysql/tests
+%endif
+
+%if %{with python3}
+%py3_install
+%{__rm} -r $RPM_BUILD_ROOT%{py3_sitescriptdir}/pymysql/tests
+%endif
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+%if %{with python2}
 %files
 %defattr(644,root,root,755)
-%{py_sitescriptdir}/PyMySQL-*.egg-info
+%doc README.rst CHANGELOG LICENSE
 %{py_sitescriptdir}/pymysql
+%{py_sitescriptdir}/PyMySQL-%{version}-py*.egg-info
+%endif
+
+%if %{with python3}
+%files -n python3-%{module}
+%defattr(644,root,root,755)
+%doc README.rst CHANGELOG LICENSE
+%{py3_sitescriptdir}/pymysql
+%{py3_sitescriptdir}/PyMySQL-%{version}-py*.egg-info
+%endif
================================================================

---- gitweb:

http://git.pld-linux.org/gitweb.cgi/packages/python-PyMySQL.git/commitdiff/84ff5ff05fa3af1ed37423b7a698e63c0713be08



More information about the pld-cvs-commit mailing list