fix: pygments version downgrade

This commit is contained in:
ngn 2024-08-19 15:12:26 +03:00
parent 6b826d41c6
commit d9a1d37c20
4 changed files with 12 additions and 12 deletions

View File

@ -15,7 +15,7 @@ PACKAGE() {
cd "hatchling-${VERSION}" cd "hatchling-${VERSION}"
python3 -m build --wheel --skip-dependency-check --no-isolation python3 -m build --wheel --skip-dependency-check --no-isolation
PYTHONPATH=src python3 -m installer --destdir="${ROOTDIR}" dist/*.whl python3 -m installer --destdir="${ROOTDIR}" dist/*.whl
cd .. && rm -r "hatchling-${VERSION}" cd .. && rm -r "hatchling-${VERSION}"
} }

View File

@ -12,7 +12,7 @@ PACKAGE() {
cd "pluggy-${VERSION}" cd "pluggy-${VERSION}"
python3 -m build --wheel --skip-dependency-check --no-isolation python3 -m build --wheel --skip-dependency-check --no-isolation
PYTHONPATH=src python3 -m installer --destdir="${ROOTDIR}" dist/*.whl python3 -m installer --destdir="${ROOTDIR}" dist/*.whl
cd .. && rm -r "pluggy-${VERSION}" cd .. && rm -r "pluggy-${VERSION}"
} }

View File

@ -1,5 +1,5 @@
# 2.18.0 # 2.17.2
Update to new upstream release Update to a newer upstream release
# 2.16.1 # 2.16.1
First version First version

View File

@ -1,19 +1,19 @@
NAME="pypi-pygments" NAME="pypi-pygments"
DESC="General syntax highlighter written in Python, for more than 300 languages" DESC="General syntax highlighter written in Python, for more than 300 languages"
VERSION="2.18.0" VERSION="2.17.2"
FILES=("https://pypi.org/packages/source/p/pygments/pygments-${VERSION}.tar.gz") FILES=("https://files.pythonhosted.org/packages/source/P/Pygments/pygments-${VERSION}.tar.gz")
HASHES=("786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199") HASHES=("7c059773b0f4808f9402eb0650de6bd4")
DEPENDS=("python3") DEPENDS=("python3")
BUILD=("sphinx") BUILD=()
PACKAGE() { PACKAGE() {
tar xf "Pygments-${VERSION}.tar.gz" tar xf "pygments-${VERSION}.tar.gz"
cd "Pygments-${VERSION}" cd "pygments-${VERSION}"
python3 -m build --wheel --no-isolation python3 -m build --wheel --skip-dependency-check --no-isolation
python3 -m installer --destdir="${ROOTDIR}" dist/*.whl python3 -m installer --destdir="${ROOTDIR}" dist/*.whl
cd .. && rm -r "Pygments-${VERSION}" cd .. && rm -r "pygments-${VERSION}"
} }