|
@@ -10,10 +10,37 @@
|
|
|
%endif
|
|
|
%endif
|
|
|
|
|
|
+%define pip3_wheeldir %{_builddir}%{?buildsubdir:/%{buildsubdir}}/pip3-wheeldir
|
|
|
+
|
|
|
+%define pip3_build_wheel mkdir -p %{pip3_wheeldir}; %{__python3} -m pip wheel \\\
|
|
|
+ --wheel-dir %{pip3_wheeldir} \\\
|
|
|
+ --no-deps \\\
|
|
|
+ --use-pep517 \\\
|
|
|
+ --no-build-isolation \\\
|
|
|
+ --disable-pip-version-check \\\
|
|
|
+ --no-clean \\\
|
|
|
+ --progress-bar off \\\
|
|
|
+ --verbose \\\
|
|
|
+ .
|
|
|
+
|
|
|
+%define pip3_install_wheel %{__python3} -m pip install \\\
|
|
|
+ --root %{buildroot} \\\
|
|
|
+ --prefix %{_prefix} \\\
|
|
|
+ --no-deps \\\
|
|
|
+ --disable-pip-version-check \\\
|
|
|
+ --progress-bar off \\\
|
|
|
+ --verbose \\\
|
|
|
+ --ignore-installed \\\
|
|
|
+ --no-warn-script-location \\\
|
|
|
+ --no-index \\\
|
|
|
+ --no-cache-dir \\\
|
|
|
+ --find-links %{pip3_wheeldir} \\\
|
|
|
+ $(ls %{pip3_wheeldir}/*.whl | xargs basename --multiple | sed -E 's/([^-]+)-([^-]+)-.+\\\.whl/\\\1==\\\2/')
|
|
|
+
|
|
|
Summary: Pip installs Python packages. An easy_install replacement
|
|
|
Summary(ja): Pip は easy_install を置き換える Python パッケージインストーラです。
|
|
|
Name: python-%{srcname}
|
|
|
-Version: 21.3.1
|
|
|
+Version: 22.3
|
|
|
Release: 1%{?_dist_release}
|
|
|
Group: programming
|
|
|
Vendor: Project Vine
|
|
@@ -57,6 +84,10 @@ Packages" or "Pip Installs Python".
|
|
|
Summary: A tool for installing and managing Python3 packages
|
|
|
Group: programming
|
|
|
Requires: python3-setuptools
|
|
|
+%if %{without bootstrap}
|
|
|
+Requires: python3-wheel
|
|
|
+%endif
|
|
|
+
|
|
|
Requires(post,postun): alternatives
|
|
|
|
|
|
%description -n python3-%{srcname}
|
|
@@ -73,11 +104,7 @@ Packages" or "Pip Installs Python".
|
|
|
|
|
|
%build
|
|
|
%if %{with python3}
|
|
|
-%if %{without bootstrap}
|
|
|
-%py3_build_wheel
|
|
|
-%else
|
|
|
-%py3_build
|
|
|
-%endif
|
|
|
+%pip3_build_wheel
|
|
|
%endif # with python3
|
|
|
|
|
|
|
|
@@ -85,11 +112,7 @@ Packages" or "Pip Installs Python".
|
|
|
%{__rm} -rf %{buildroot}
|
|
|
|
|
|
%if %{with python3}
|
|
|
-%if %{without bootstrap}
|
|
|
-%py3_install_wheel %{python3_wheelname}
|
|
|
-%else
|
|
|
-%py3_install
|
|
|
-%endif
|
|
|
+%pip3_install_wheel
|
|
|
rm %{buildroot}%{_bindir}/pip
|
|
|
%endif # with python3
|
|
|
|
|
@@ -128,6 +151,9 @@ fi
|
|
|
|
|
|
|
|
|
%changelog
|
|
|
+* Sat Oct 22 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 22.3-1
|
|
|
+- new upstream release.
|
|
|
+
|
|
|
* Tue Jan 25 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 21.3.1-1
|
|
|
- new upstream release.
|
|
|
- dropped python2 support.
|