projects
/
packages
/
python3-markupsafe.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
be77577
)
build python3 package
author
Elan Ruusamäe
<glen@delfi.ee>
Wed, 25 Sep 2013 20:42:43 +0000
(23:42 +0300)
committer
Elan Ruusamäe
<glen@delfi.ee>
Wed, 25 Sep 2013 20:42:43 +0000
(23:42 +0300)
python-MarkupSafe.spec
patch
|
blob
|
blame
|
history
diff --git
a/python-MarkupSafe.spec
b/python-MarkupSafe.spec
index 8045f505fc53696a0aa62e36550fd64df28e97da..70aa5c528fb3d9755b1700e8bfae838638c16988 100644
(file)
--- a/
python-MarkupSafe.spec
+++ b/
python-MarkupSafe.spec
@@
-1,53
+1,125
@@
+#
+# Conditional build:
+%bcond_without tests # do not perform "make test"
+%bcond_without python2 # CPython 2.x module
+%bcond_without python3 # CPython 3.x module
+
%define module MarkupSafe
Summary: Implements a XML/HTML/XHTML Markup safe string for Python
Name: python-%{module}
Version: 0.15
%define module MarkupSafe
Summary: Implements a XML/HTML/XHTML Markup safe string for Python
Name: python-%{module}
Version: 0.15
-Release:
1
+Release:
2
License: BSD
Group: Development/Languages/Python
Source0: http://pypi.python.org/packages/source/M/MarkupSafe/%{module}-%{version}.tar.gz
# Source0-md5: 4e7c4d965fe5e033fa2d7bb7746bb186
URL: http://www.pocoo.org/
License: BSD
Group: Development/Languages/Python
Source0: http://pypi.python.org/packages/source/M/MarkupSafe/%{module}-%{version}.tar.gz
# Source0-md5: 4e7c4d965fe5e033fa2d7bb7746bb186
URL: http://www.pocoo.org/
-BuildRequires: python-devel
-BuildRequires: python-setuptools
BuildRequires: rpm-pythonprov
BuildRequires: rpmbuild(macros) >= 1.219
BuildRequires: rpm-pythonprov
BuildRequires: rpmbuild(macros) >= 1.219
+%if %{with python2}
+BuildRequires: python-devel
+BuildRequires: python-distribute
+%endif
+%if %{with python3}
+BuildRequires: python-2to3
+BuildRequires: python3-devel
+BuildRequires: python3-distribute
+%endif
Requires: python-modules
BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
%description
Implements a XML/HTML/XHTML Markup safe string for Python.
Requires: python-modules
BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
%description
Implements a XML/HTML/XHTML Markup safe string for Python.
+%package -n python3-markupsafe
+Summary: Implements a XML/HTML/XHTML Markup safe string for Python
+Group: Development/Languages
+
+%description -n python3-markupsafe
+Implements a XML/HTML/XHTML Markup safe string for Python.
+
%prep
%prep
-%setup -q -n %{module}-%{version}
+%setup -qc
+mv %{module}-%{version} py2
+# for %doc
+cp -p py2/{AUTHORS,LICENSE,README.rst} .
+
+%if %{with python3}
+cp -a py2 py3
+2to3 --write --nobackups py3
+%endif
%build
%build
+%if %{with python2}
+cd py3
# CFLAGS is only for arch packages - remove on noarch packages
CC="%{__cc}" \
CFLAGS="%{rpmcflags}" \
%{__python} setup.py build
# CFLAGS is only for arch packages - remove on noarch packages
CC="%{__cc}" \
CFLAGS="%{rpmcflags}" \
%{__python} setup.py build
+%{?with_tests:%{__python} setup.py test}
+cd ..
+%endif
+
+%if %{with python3}
+cd py3
+CC="%{__cc}" \
+CFLAGS="%{rpmcflags}" \
+%{__python3} setup.py build
+%{?with_tests:%{__python3} setup.py test}
+cd ..
+%endif
%install
rm -rf $RPM_BUILD_ROOT
%install
rm -rf $RPM_BUILD_ROOT
+%if %{with python2}
+cd py2
%{__python} setup.py install \
--optimize=2 \
--root=$RPM_BUILD_ROOT
%{__python} setup.py install \
--optimize=2 \
--root=$RPM_BUILD_ROOT
+# C code errantly gets installed
%{__rm} $RPM_BUILD_ROOT%{py_sitedir}/markupsafe/_speedups.c
%{__rm} $RPM_BUILD_ROOT%{py_sitedir}/markupsafe/_speedups.c
-
%py_ocomp $RPM_BUILD_ROOT%{py_sitedir}
%py_comp $RPM_BUILD_ROOT%{py_sitedir}
%py_postclean
%py_ocomp $RPM_BUILD_ROOT%{py_sitedir}
%py_comp $RPM_BUILD_ROOT%{py_sitedir}
%py_postclean
+cd ..
+%endif
+
+%if %{with python3}
+cd py3
+%{__python3} setup.py install \
+ --optimize=2 \
+ --root=$RPM_BUILD_ROOT
+
+
+# err the unversioned one is duplicate
+%{__rm} -r $RPM_BUILD_ROOT%{py3_sitedir}/MarkupSafe.egg-info
+
+# C code errantly gets installed
+%{__rm} $RPM_BUILD_ROOT%{py3_sitedir}/markupsafe/_speedups.c
+cd ..
+%endif
%clean
rm -rf $RPM_BUILD_ROOT
%clean
rm -rf $RPM_BUILD_ROOT
+%if %{with python2}
%files
%defattr(644,root,root,755)
%files
%defattr(644,root,root,755)
-%doc README.rst
-%{py_sitedir}/markupsafe/*.py[co]
+%doc AUTHORS LICENSE README.rst
%dir %{py_sitedir}/markupsafe
%dir %{py_sitedir}/markupsafe
+%{py_sitedir}/markupsafe/*.py[co]
%attr(755,root,root) %{py_sitedir}/markupsafe/*.so
%attr(755,root,root) %{py_sitedir}/markupsafe/*.so
-%if "%{py_ver}" > "2.4"
-%{py_sitedir}/%{module}-*.egg-info
+%{py_sitedir}/MarkupSafe-%{version}-py*.egg-info
+%endif
+
+%if %{with python3}
+%files -n python3-markupsafe
+%defattr(644,root,root,755)
+%doc AUTHORS LICENSE README.rst
+%dir %{py3_sitedir}/markupsafe
+%{py3_sitedir}/markupsafe/*.py
+%{py3_sitedir}/markupsafe/__pycache__
+%attr(755,root,root) %{py3_sitedir}/markupsafe/*.so
+%{py3_sitedir}/MarkupSafe-%{version}-py*.egg-info
%endif
%endif
This page took
0.079832 seconds
and
4
git commands to generate.