]> git.pld-linux.org Git - packages/python-setuptools.git/blobdiff - python-setuptools.spec
Version: 14.3.1
[packages/python-setuptools.git] / python-setuptools.spec
index e83cb711e1c2f8e7f33f36efbe9fc52513294e36..cb842ad54b4b600a1c25949d85892d9a6920bf00 100644 (file)
-# TODO:
-# - sync -pl
+#
+# Conditional build:
+%bcond_without apidocs # sphinx based documentation
+%bcond_with    tests   # "test" action (fails?)
+%bcond_without python2 # CPython 2.x module
+%bcond_without python3 # CPython 3.x module
+%bcond_with    bootstrap # build using old distribute
+
 %define                module  setuptools
-%define                subver  c8
-%define                rel             3
 Summary:       A collection of enhancements to the Python distutils
 Summary(pl.UTF-8):     Zestaw rozszerzeń dla pythonowych distutils
 Name:          python-setuptools
-Version:       0.6
-Release:       1.%{subver}.%{rel}
+Version:       14.3.1
+Release:       1
 Epoch:         1
-License:       GPL
+License:       PSF or ZPL
 Group:         Development/Languages/Python
-Source0:       http://cheeseshop.python.org/packages/source/s/setuptools/setuptools-%{version}%{subver}.tar.gz
-# Source0-md5: 0e9bbe1466f3ee29588cc09d3211a010
-URL:           http://peak.telecommunity.com/DevCenter/setuptools
-BuildRequires: python-devel
+#Source0Download: https://pypi.python.org/pypi/setuptools
+Source0:       https://pypi.python.org/packages/source/s/setuptools/setuptools-%{version}.tar.gz
+# Source0-md5: cdba2741b16acaa3ed06c2252623f6b9
+URL:           https://bitbucket.org/pypa/setuptools
+%if %(locale -a | grep -q '^en_US.UTF-8$'; echo $?)
+BuildRequires: glibc-localedb-all
+%endif
+%if %{with python2}
+%if %{with bootstrap}
+BuildRequires:        python-distribute < 0.7
+%else
+BuildRequires:     python-setuptools > 7.0
+BuildConflicts:    python-distribute < 0.7
+%endif
+BuildRequires: python-modules >= 1:2.6
+%endif
+%if %{with python3}
+%if %{with bootstrap}
+BuildRequires:     python3-distribute < 0.7
+%else
+BuildRequires:     python3-setuptools > 7.0
+BuildConflicts:    python3-distribute < 0.7
+%endif
+BuildRequires: python3-modules >= 1:3.2
+%endif
+%if %{with apidocs}
+BuildRequires: python-rst.linker
+BuildRequires: sphinx-pdg
+%endif
+BuildRequires: rpm-pythonprov
+Requires:      python-modules >= 1:2.6
+Obsoletes:     python-distribute < 0.7
+Obsoletes:     python-setuptools-devel
 BuildArch:     noarch
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
 setuptools is a collection of enhancements to the Python distutils
-that allow you to more easily build and distribute Python packages,
-especially ones that have dependencies on other packages.
-
-This package contains the runtime components of setuptools, necessary
-to execute the software that requires pkg_resources.py.
+that allow you to more easily build and distribute Python 2.x
+packages, especially ones that have dependencies on other packages.
 
 %description -l pl.UTF-8
-setuptools to zestaw rozszerzeń do pythonowych distutils (dla Pythona
-2.3.5 i nowszego na większości platform; platformy 64-bitowe wymagają
-co najmniej Pythona 2.4) umożliwiający łatwiejsze budowanie i
-rozprowadzanie pakietów Pythona, szczególnie tych mających zależności
-od innych pakietów.
-
-%package devel
-Summary:       Download, install, upgrade, and uninstall Python packages
-Group:         Development/Languages
-Requires:      %{name} = %{epoch}:%{version}-%{release}
-Requires:      python-devel
-
-%description devel
+setuptools to zestaw rozszerzeń do pythonowych distutils umożliwiający
+łatwiejsze budowanie i rozprowadzanie pakietów Pythona 2.x,
+szczególnie tych mających zależności od innych pakietów.
+
+Ten pakiet zawiera składniki uruchomieniowe setuptools, potrzebne do
+uruchamiania kodu wymagającego pkg_resources.py, przeznaczone dla
+Pythona 2.x.
+
+%package -n python3-%{module}
+Summary:       A collection of enhancements to the Python distutils
+Summary(pl.UTF-8):     Zestaw rozszerzeń dla pythonowych distutils
+Group:         Libraries/Python
+Requires:      python3-modules >= 1:3.2
+
+%description -n python3-%{module}
 setuptools is a collection of enhancements to the Python distutils
-that allow you to more easily build and distribute Python packages,
-especially ones that have dependencies on other packages.
+that allow you to more easily build and distribute Python 3.x
+packages, especially ones that have dependencies on other packages.
+
+%description -n python3-%{module} -l pl.UTF-8
+setuptools to zestaw rozszerzeń do pythonowych distutils umożliwiający
+łatwiejsze budowanie i rozprowadzanie pakietów Pythona 3.x,
+szczególnie tych mających zależności od innych pakietów.
+
+%package apidocs
+Summary:       %{module} API documentation
+Summary(pl.UTF-8):     Dokumentacja API %{module}
+Group:         Documentation
 
-This package contains the components necessary to build and install
-software requiring setuptools.
+%description apidocs
+API documentation for %{module}.
+
+%description apidocs -l pl.UTF-8
+Dokumentacja API %{module}.
 
 %prep
-%setup -q -n %{module}-%{version}%{subver}
+%setup -q -n %{module}-%{version}
 
 %build
-%{__python} ./setup.py build
+%if %{with python2}
+LC_ALL=en_US.UTF-8 \
+%{__python} setup.py build --build-base build-2 %{?with_tests:test}
+%endif
+
+%if %{with python3}
+LC_ALL=en_US.UTF-8 \
+%{__python3} setup.py build --build-base build-3 %{?with_tests:test}
+%endif
+
+%if %{with apidocs}
+#%{__make} -C docs html
+# rst.linker needs sphinx-build to be run from directory containing "CHANGES.txt"
+sphinx-build -b html -d build/doctrees -D latex_paper_size=a4 docs build/html
+%endif
 
 %install
 rm -rf $RPM_BUILD_ROOT
 
-python ./setup.py install \
-       --single-version-externally-managed \
-       --optimize 2 \
+%if %{with python3}
+%{__python3} setup.py \
+       build --build-base build-3 \
+       install --skip-build \
+       --optimize=2 \
        --root=$RPM_BUILD_ROOT
+%endif
 
-rm -f $RPM_BUILD_ROOT%{py_sitescriptdir}/*/*.exe
+%if %{with python2}
+%{__python} setup.py \
+       build --build-base build-2 \
+       install --skip-build \
+       --optimize=2 \
+       --root=$RPM_BUILD_ROOT
 
-%py_ocomp $RPM_BUILD_ROOT%{py_sitescriptdir}
-%py_comp $RPM_BUILD_ROOT%{py_sitescriptdir}
 %py_postclean
-install site.py $RPM_BUILD_ROOT%{py_sitescriptdir}
+%endif
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+%if %{with python2}
 %files
 %defattr(644,root,root,755)
-%doc pkg_resources.txt setuptools.txt
-%{py_sitescriptdir}/%{module}*
-%{py_sitescriptdir}/pkg_resources.py[co]
-%{py_sitescriptdir}/site.py[co]
-%{py_sitescriptdir}/site.py
+%doc CHANGES.txt README.txt DEVGUIDE.txt
+%attr(755,root,root) %{_bindir}/easy_install
+%attr(755,root,root) %{_bindir}/easy_install-2.*
+%{py_sitescriptdir}/pkg_resources
+%{py_sitescriptdir}/setuptools
+%{py_sitescriptdir}/_markerlib
+%{py_sitescriptdir}/easy_install.py[co]
+%{py_sitescriptdir}/%{module}-%{version}-py*.egg-info
+%endif
 
-%files devel
+%if %{with python3}
+%files -n python3-%{module}
 %defattr(644,root,root,755)
-%doc EasyInstall.txt README.txt api_tests.txt
-%attr(755,root,root) %{_bindir}/easy_install*
-%{py_sitescriptdir}/easy_install.py[co]
+%doc CHANGES.txt README.txt DEVGUIDE.txt
+%attr(755,root,root) %{_bindir}/easy_install-3.*
+%{py3_sitescriptdir}/__pycache__/easy_install.*.py[co]
+%{py3_sitescriptdir}/pkg_resources
+%{py3_sitescriptdir}/setuptools
+%{py3_sitescriptdir}/_markerlib
+%{py3_sitescriptdir}/easy_install.py
+%{py3_sitescriptdir}/%{module}-%{version}-py*.egg-info
+%endif
+
+%if %{with apidocs}
+%files apidocs
+%defattr(644,root,root,755)
+%doc build/html/*
+%endif
This page took 0.051453 seconds and 4 git commands to generate.