-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
git clean -xdf tar zcvf ../python-pip_23.3.orig.tar.gz --exclude=.git . debuild -uc -us cp python-pip.spec ../python-pip_23.3-1.spec mv ../python*-pip*23.3*.{gz,xz,spec,dsc} /osc/home\:alvistack/pypa-pip-23.3/ rm -rf ../python*-pip_23.3*.* See pypa#12338 (comment) Signed-off-by: Wong Hoi Sing Edison <hswong3i@pantarei-design.com>
- Loading branch information
Showing
12 changed files
with
234 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,3 +52,5 @@ tests/data/common_wheels/ | |
|
||
# Profiling related artifacts | ||
*.prof | ||
|
||
.pybuild/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
*.substvars | ||
*debhelper* | ||
.debhelper | ||
files | ||
python3-pip | ||
tmp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
python-pip (100:23.3-1) UNRELEASED; urgency=medium | ||
|
||
* https://github.com/pypa/pip/releases/tag/23.3 | ||
|
||
-- Wong Hoi Sing Edison <hswong3i@pantarei-design.com> Tue, 17 Oct 2023 12:58:05 +0800 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
Source: python-pip | ||
Section: python | ||
Priority: optional | ||
Standards-Version: 4.5.0 | ||
Maintainer: Wong Hoi Sing Edison <hswong3i@gmail.com> | ||
Homepage: https://github.com/pypa/pip/tags | ||
Vcs-Browser: https://github.com/alvistack/pypa-pip | ||
Vcs-Git: https://github.com/alvistack/pypa-pip.git | ||
Build-Depends: | ||
debhelper, | ||
debhelper-compat (= 10), | ||
dh-python, | ||
fdupes, | ||
python3-dev, | ||
python3-setuptools, | ||
|
||
Package: python3-pip | ||
Architecture: all | ||
Description: Python package management system | ||
Pip is a replacement for easy_install. It uses mostly the same | ||
techniques for finding packages, so packages that were made | ||
easy_installable should be pip-installable as well. | ||
Depends: | ||
${misc:Depends}, | ||
${shlibs:Depends}, | ||
${python3:Depends}, | ||
python3, | ||
ca-certificates, | ||
python3-distutils, | ||
python3-setuptools, | ||
python3-wheel, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
|
||
Files: debian/* | ||
Copyright: 2023 Wong Hoi Sing Edison <hswong3i@pantarei-design.com> | ||
License: Apache-2.0 | ||
|
||
License: Apache-2.0 | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
. | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
. | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
. | ||
The complete text of the Apache version 2.0 license | ||
can be found in "/usr/share/common-licenses/Apache-2.0". |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
usr/bin/* | ||
usr/lib/python*/*-packages/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
python3-pip: copyright-without-copyright-notice | ||
python3-pip: initial-upload-closes-no-bugs | ||
python3-pip: no-manual-page | ||
python3-pip: zero-byte-file-in-doc-directory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/make -f | ||
|
||
SHELL := /bin/bash | ||
|
||
override_dh_auto_install: | ||
dh_auto_install --destdir=debian/tmp | ||
find debian/tmp/usr/lib/python*/*-packages -type f -name '*.pyc' -exec rm -rf {} \; | ||
fdupes -qnrps debian/tmp/usr/lib/python*/*-packages | ||
|
||
override_dh_auto_test: | ||
|
||
override_dh_auto_clean: | ||
|
||
%: | ||
dh $@ --buildsystem=pybuild --with python3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.0 (quilt) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
python-pip source: file-without-copyright-information | ||
python-pip source: no-debian-changes | ||
python-pip source: source-contains-prebuilt-windows-binary | ||
python-pip source: source-package-encodes-python-version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
# Copyright 2023 Wong Hoi Sing Edison <hswong3i@pantarei-design.com> | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
%global debug_package %{nil} | ||
|
||
Name: python-pip | ||
Epoch: 100 | ||
Version: 23.3 | ||
Release: 1%{?dist} | ||
BuildArch: noarch | ||
Summary: Python package management system | ||
License: MIT | ||
URL: https://github.com/pypa/pip/tags | ||
Source0: %{name}_%{version}.orig.tar.gz | ||
BuildRequires: fdupes | ||
BuildRequires: python-rpm-macros | ||
BuildRequires: python3-devel | ||
BuildRequires: python3-setuptools | ||
|
||
%description | ||
Pip is a replacement for easy_install. It uses mostly the same | ||
techniques for finding packages, so packages that were made | ||
easy_installable should be pip-installable as well. | ||
|
||
%prep | ||
%autosetup -T -c -n %{name}_%{version}-%{release} | ||
tar -zx -f %{S:0} --strip-components=1 -C . | ||
|
||
%build | ||
%py3_build | ||
|
||
%install | ||
%py3_install | ||
find %{buildroot}%{python3_sitelib} -type f -name '*.pyc' -exec rm -rf {} \; | ||
fdupes -qnrps %{buildroot}%{python3_sitelib} | ||
|
||
%check | ||
|
||
%if 0%{?suse_version} > 1500 | ||
%package -n python%{python_version_nodots}-pip | ||
Summary: Python package management system | ||
Requires: ca-certificates | ||
Requires: python3 | ||
Requires: python3-distutils-extra | ||
Requires: python3-setuptools | ||
Requires: python3-wheel | ||
Provides: python3-pip = %{epoch}:%{version}-%{release} | ||
Provides: python3dist(pip) = %{epoch}:%{version}-%{release} | ||
Provides: python%{python3_version}-pip = %{epoch}:%{version}-%{release} | ||
Provides: python%{python3_version}dist(pip) = %{epoch}:%{version}-%{release} | ||
Provides: python%{python3_version_nodots}-pip = %{epoch}:%{version}-%{release} | ||
Provides: python%{python3_version_nodots}dist(pip) = %{epoch}:%{version}-%{release} | ||
|
||
%description -n python%{python_version_nodots}-pip | ||
Pip is a replacement for easy_install. It uses mostly the same | ||
techniques for finding packages, so packages that were made | ||
easy_installable should be pip-installable as well. | ||
|
||
%files -n python%{python_version_nodots}-pip | ||
%license LICENSE.txt | ||
%{_bindir}/* | ||
%{python3_sitelib}/* | ||
%endif | ||
|
||
%if 0%{?centos_version} == 800 | ||
%package -n platform-python-pip | ||
Summary: Python package management system | ||
Requires: ca-certificates | ||
Requires: python3 | ||
Requires: python3-distutils-extra | ||
Requires: python3-setuptools | ||
Requires: python3-wheel | ||
Conflicts: platform-python-pip < %{epoch}:%{version}-%{release} | ||
Conflicts: python3-pip < %{epoch}:%{version}-%{release} | ||
|
||
%description -n platform-python-pip | ||
Pip is a replacement for easy_install. It uses mostly the same | ||
techniques for finding packages, so packages that were made | ||
easy_installable should be pip-installable as well. | ||
|
||
%package -n python3-pip | ||
Summary: Python package management system | ||
Requires: platform-python-pip = %{epoch}:%{version}-%{release} | ||
Provides: python3-pip = %{epoch}:%{version}-%{release} | ||
Provides: python3dist(pip) = %{epoch}:%{version}-%{release} | ||
Provides: python%{python3_version}-pip = %{epoch}:%{version}-%{release} | ||
Provides: python%{python3_version}dist(pip) = %{epoch}:%{version}-%{release} | ||
Provides: python%{python3_version_nodots}-pip = %{epoch}:%{version}-%{release} | ||
Provides: python%{python3_version_nodots}dist(pip) = %{epoch}:%{version}-%{release} | ||
|
||
%description -n python3-pip | ||
Pip is a replacement for easy_install. It uses mostly the same | ||
techniques for finding packages, so packages that were made | ||
easy_installable should be pip-installable as well. | ||
|
||
%files -n platform-python-pip | ||
%license LICENSE.txt | ||
%{_bindir}/* | ||
%{python3_sitelib}/* | ||
|
||
%files -n python3-pip | ||
%license LICENSE.txt | ||
%endif | ||
|
||
%if !(0%{?suse_version} > 1500) && !(0%{?centos_version} == 800) | ||
%package -n python3-pip | ||
Summary: Python package management system | ||
Requires: ca-certificates | ||
Requires: python3 | ||
Requires: python3-distutils-extra | ||
Requires: python3-setuptools | ||
Requires: python3-wheel | ||
Provides: python3-pip = %{epoch}:%{version}-%{release} | ||
Provides: python3dist(pip) = %{epoch}:%{version}-%{release} | ||
Provides: python%{python3_version}-pip = %{epoch}:%{version}-%{release} | ||
Provides: python%{python3_version}dist(pip) = %{epoch}:%{version}-%{release} | ||
Provides: python%{python3_version_nodots}-pip = %{epoch}:%{version}-%{release} | ||
Provides: python%{python3_version_nodots}dist(pip) = %{epoch}:%{version}-%{release} | ||
|
||
%description -n python3-pip | ||
Pip is a replacement for easy_install. It uses mostly the same | ||
techniques for finding packages, so packages that were made | ||
easy_installable should be pip-installable as well. | ||
|
||
%files -n python3-pip | ||
%license LICENSE.txt | ||
%{_bindir}/* | ||
%{python3_sitelib}/* | ||
%endif | ||
|
||
%changelog |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters