update: neofetch 7.1.0-matter4

This commit is contained in:
ngn 2024-08-22 08:56:20 +03:00
parent 3d6f9e9eeb
commit 0d20477771
4 changed files with 25 additions and 14 deletions

View File

@ -1,2 +1,5 @@
# 7.1.0-matter4
Updated to the latest upstream release
# 7.1.0-matter3 # 7.1.0-matter3
First version First version

View File

@ -1,12 +1,18 @@
NAME="neofetch" NAME="neofetch"
DESC="Command-line system information tool written in bash 3.2+" DESC="Command-line system information tool written in bash 3.2+"
VERSION="7.1.0-matter3" VERSION="7.1.0-matter4"
FILES=("https://git.matterlinux.xyz/Matter/neofetch/archive/$VERSION.tar.gz")
HASHES=("4f5c72ac89af2b32fcc573ae91909027a4c4e762743d6b2be337807bc909b923") FILES=("https://git.matterlinux.xyz/Matter/neofetch/archive/${VERSION}.tar.gz")
DEPENDS=() HASHES=("0a9fcb3164816877e31a1ffb4ac6abc2fa1708988e6292c0c4720ab23be4ebdf")
DEPENDS=("bash")
BUILD=()
PACKAGE() { PACKAGE() {
tar xf $VERSION.tar.gz && cd $NAME tar xf "${VERSION}.tar.gz"
make DESTDIR=$ROOTDIR install cd "${NAME}"
cd .. && rm -rf $NAME
make DESTDIR="${ROOTDIR}" install
cd .. && rm -rf "${NAME}"
} }

View File

@ -1,18 +1,19 @@
NAME="pypi-pycairo" NAME="pypi-pycairo"
DESC="PyCairo provides bindings to Cairo" DESC="Python bindings for the cairo graphics library"
VERSION="1.18.2" VERSION="1.18.2"
FILES=("https://github.com/pygobject/pycairo/releases/download/v${VERSION}/pycairo-${VERSION}.tar.gz") FILES=("https://github.com/pygobject/pycairo/releases/download/v${VERSION}/pycairo-${VERSION}.tar.gz")
HASHES=("be2ba51f234270dec340f28f1695a95e") HASHES=("be2ba51f234270dec340f28f1695a95e")
DEPENDS=("python3" "cairo") DEPENDS=("python3" "cairo")
BUILD=("meson" "sphinx")
PACKAGE() { PACKAGE() {
tar xf "${NAME}-${VERSION}.tar.gz" tar xf "pycairo-${VERSION}.tar.gz"
cd "${NAME}-${VERSION}" cd "pycairo-${VERSION}"
python3 -m build --wheel --no-isolation python3 -m build --wheel --no-isolation
python3 -m installer --destdir="${ROOTDIR}" dist/*.whl python3 -m installer --destdir="${ROOTDIR}" dist/*.whl
cd .. && rm -rf "${NAME}-${VERSION}" cd .. && rm -rf "pycairo-${VERSION}"
} }

View File

@ -3,16 +3,17 @@ DESC="Sphinx extension which outputs \"serialized\" HTML files (json and pickle)
VERSION="1.1.9" VERSION="1.1.9"
FILES=("https://files.pythonhosted.org/packages/source/s/sphinxcontrib-serializinghtml/sphinxcontrib-serializinghtml-${VERSION}.tar.gz") FILES=("https://files.pythonhosted.org/packages/source/s/sphinxcontrib-serializinghtml/sphinxcontrib-serializinghtml-${VERSION}.tar.gz")
FILES=("https://files.pythonhosted.org/packages/source/s/sphinxcontrib_serializinghtml/sphinxcontrib_serializinghtml-${VERSION}.tar.gz")
HASHES=("84957dfa6d85d2e509181281082c11ee") HASHES=("84957dfa6d85d2e509181281082c11ee")
DEPENDS=("python3") DEPENDS=("python3")
PACKAGE() { PACKAGE() {
tar xf "sphinxcontrib-serializinghtml-${VERSION}.tar.gz" tar xf "sphinxcontrib_serializinghtml-${VERSION}.tar.gz"
cd "sphinxcontrib-serializinghtml-${VERSION}" cd "sphinxcontrib_serializinghtml-${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 PYTHONPATH=src python3 -m installer --destdir="${ROOTDIR}" dist/*.whl
cd .. && rm -r "sphinxcontrib-serializinghtml-${VERSION}" cd .. && rm -r "sphinxcontrib_serializinghtml-${VERSION}"
} }