From 1243c4945a031fbc25b638391df46fa80f088b6e Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Tue, 11 Apr 2023 12:37:14 +0000 Subject: automatic import of python-ez-setup --- python-ez-setup.spec | 105 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 python-ez-setup.spec (limited to 'python-ez-setup.spec') diff --git a/python-ez-setup.spec b/python-ez-setup.spec new file mode 100644 index 0000000..eec3471 --- /dev/null +++ b/python-ez-setup.spec @@ -0,0 +1,105 @@ +%global _empty_manifest_terminate_build 0 +Name: python-ez_setup +Version: 0.9 +Release: 1 +Summary: ez_setup.py and distribute_setup.py +License: MIT +URL: http://github.com/ActiveState/ez_setup +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/ba/2c/743df41bd6b3298706dfe91b0c7ecdc47f2dc1a3104abeb6e9aa4a45fa5d/ez_setup-0.9.tar.gz +BuildArch: noarch + + +%description +**Problem**: ``setup.py`` of several Python projects blindly import the +setuptools bootstrap module ``ez_setup.py`` without realizing that it is usually +not installed in the user's machine. +`This causes much trouble `_. +**Workaround**: Include ``ez_setup.py`` (and ``distribute_setup.py``) as a +installable Python package so users can do +``easy_install ez_setup troublesome_package`` as a workaround. +**Note**: The ``ez_setup.py`` file being distributed is simply a copy of +``distribute_setup.py`` from the `Distribute`_ +project (a setuptools fork); this is +to remain compatible with several Python distributors opting to use Distribute +instead of Setuptools -- examples: Debian, ActiveState, and so on. + +%package -n python3-ez_setup +Summary: ez_setup.py and distribute_setup.py +Provides: python-ez_setup +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-ez_setup +**Problem**: ``setup.py`` of several Python projects blindly import the +setuptools bootstrap module ``ez_setup.py`` without realizing that it is usually +not installed in the user's machine. +`This causes much trouble `_. +**Workaround**: Include ``ez_setup.py`` (and ``distribute_setup.py``) as a +installable Python package so users can do +``easy_install ez_setup troublesome_package`` as a workaround. +**Note**: The ``ez_setup.py`` file being distributed is simply a copy of +``distribute_setup.py`` from the `Distribute`_ +project (a setuptools fork); this is +to remain compatible with several Python distributors opting to use Distribute +instead of Setuptools -- examples: Debian, ActiveState, and so on. + +%package help +Summary: Development documents and examples for ez_setup +Provides: python3-ez_setup-doc +%description help +**Problem**: ``setup.py`` of several Python projects blindly import the +setuptools bootstrap module ``ez_setup.py`` without realizing that it is usually +not installed in the user's machine. +`This causes much trouble `_. +**Workaround**: Include ``ez_setup.py`` (and ``distribute_setup.py``) as a +installable Python package so users can do +``easy_install ez_setup troublesome_package`` as a workaround. +**Note**: The ``ez_setup.py`` file being distributed is simply a copy of +``distribute_setup.py`` from the `Distribute`_ +project (a setuptools fork); this is +to remain compatible with several Python distributors opting to use Distribute +instead of Setuptools -- examples: Debian, ActiveState, and so on. + +%prep +%autosetup -n ez_setup-0.9 + +%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-ez_setup -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Tue Apr 11 2023 Python_Bot - 0.9-1 +- Package Spec generated -- cgit v1.2.3