Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
qt5-quickcontrols2 revert 1 commit added in 5.15.9
change breaks SwipeView with any loading more then 2 tabs, fixes croeso & welcome geoip-database 20230414 python3-pip 23.1, move to python build, remove ancient sed line, was not applied anyway
- Loading branch information
Showing
3 changed files
with
22 additions
and
15 deletions.
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
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 |
|---|---|---|
| @@ -1,22 +1,25 @@ | ||
|
|
||
| pkgname=python3-pip | ||
| pkgver=23.0.1 | ||
| pkgver=23.1 | ||
| pkgrel=1 | ||
| pkgdesc="An easy_install replacement for installing pypi python3 packages" | ||
| url="https://pip.pypa.io/" | ||
| arch=('x86_64') | ||
| license=('MIT') | ||
| depends=('python3' 'python3-setuptools' 'python3-wheel') | ||
| depends=('python3') | ||
| makedepends=('python3-build' 'python3-installer' 'python3-setuptools' 'python3-wheel') | ||
| source=("https://files.pythonhosted.org/packages/source/p/pip/pip-${pkgver}.tar.gz") | ||
| sha256sums=('cd015ea1bfb0fcef59d8a286c1f8bebcb983f6317719d415dc5351efb7cd7024') | ||
| sha256sums=('408539897ee535dbfb83a153f7bc4d620f990d8bd44a52a986efc0b4d330d34a') | ||
|
|
||
| package() { | ||
| build() { | ||
| cd pip-${pkgver} | ||
| python3 setup.py build | ||
| python3 setup.py install --prefix=/usr --root=${pkgdir} | ||
|
|
||
| python3 -m build -nw | ||
| } | ||
|
|
||
| sed -i "s|#!/usr/bin/env python$|#!/usr/bin/env python3|" \ | ||
| ${pkgdir}/usr/lib/python3.10/site-packages/pip/__init__.py | ||
| package() { | ||
| cd pip-${pkgver} | ||
|
|
||
| python3 -m installer --destdir=${pkgdir} dist/*.whl | ||
| install -D -m644 LICENSE.txt ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE | ||
| } |
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