python-walrus
MEDIUM
maintainer Dominiquini
1 votes
scanned 2026-09-27 15:19:08.759284
Why flagged
This package was orphaned and re-adopted within the last 30 days — a window where ownership transfers can introduce malicious changes.
Triggered rules
Medium
Recently orphaned & re-adopted
orphaned_readopted
This package was orphaned and re-adopted within the last 30 days — a window where ownership transfers can introduce malicious changes.
PKGBUILD
1
# Maintainer: Rafael Dominiquini <rafaeldominiquini at gmail dot com>
2
3
_appauthor="coleifer"
4
_appname="walrus"
5
6
pkgname="python-${_appname}"
7
pkgver=0.9.8
8
pkgrel=1
9
pkgdesc="Lightweight Python utilities for working with Redis"
10
11
_pypi_package=${pkgname##python-}
12
_pypi_version=${pkgver}
13
14
license=('MIT')
15
arch=('any')
16
17
_url_pypi="https://pypi.org/project/${_pypi_package}/"
18
_url_github="https://github.com/${_appauthor}/${_appname}"
19
url="${_url_github}"
20
21
makedepends=('python-setuptools' 'python-wheel' 'python-build' 'python-installer' 'python-uv-build' 'python-hatchling')
22
depends=('python' 'python-redis')
23
24
source=("https://files.pythonhosted.org/packages/source/${_pypi_package::1}/${_pypi_package//-/_}/${_pypi_package//-/_}-${_pypi_version}.tar.gz")
25
# source=("${_pypi_package}-${_pypi_version}.tar.gz::${_url_github}/archive/refs/tags/v${_pypi_version}.tar.gz")
26
sha256sums=('fd2827ac265e857b485792c9da83ed6e22a00fe3e5fb9c2655ad59e2daf7966e')
27
28
29
build() {
30
cd "${srcdir}/${_pypi_package//-/_}-${_pypi_version}/"
31
32
python -m build --wheel --no-isolation
33
}
34
35
package() {
36
cd "${srcdir}/${_pypi_package//-/_}-${_pypi_version}/"
37
38
python -m installer --destdir="${pkgdir}" dist/*.whl
39
40
install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
41
}
42
Changes since previous scan
--- PKGBUILD @ 2026-06-18 16:11+++ PKGBUILD @ 2026-09-27 15:19@@ -1,24 +1,42 @@-# Maintainer: Michał Sałaban <michal@salaban.info>-pkgname="python-walrus"-_projname="walrus"-pkgver=0.8.1+# Maintainer: Rafael Dominiquini <rafaeldominiquini at gmail dot com>++_appauthor="coleifer"+_appname="walrus"++pkgname="python-${_appname}"+pkgver=0.9.8 pkgrel=1-pkgdesc='Lightweight Python utilities for working with Redis'+pkgdesc="Lightweight Python utilities for working with Redis"++_pypi_package=${pkgname##python-}+_pypi_version=${pkgver}+ license=('MIT') arch=('any')-url='https://github.com/coleifer/walrus'-makedepends=('python' 'python-distribute')++_url_pypi="https://pypi.org/project/${_pypi_package}/"+_url_github="https://github.com/${_appauthor}/${_appname}"+url="${_url_github}"++makedepends=('python-setuptools' 'python-wheel' 'python-build' 'python-installer' 'python-uv-build' 'python-hatchling') depends=('python' 'python-redis')-source=("https://github.com/coleifer/${_projname}/archive/${pkgver}.tar.gz")-md5sums=('87ac731225931a85c7dd7b2a40a68660')++source=("https://files.pythonhosted.org/packages/source/${_pypi_package::1}/${_pypi_package//-/_}/${_pypi_package//-/_}-${_pypi_version}.tar.gz")+# source=("${_pypi_package}-${_pypi_version}.tar.gz::${_url_github}/archive/refs/tags/v${_pypi_version}.tar.gz")+sha256sums=('fd2827ac265e857b485792c9da83ed6e22a00fe3e5fb9c2655ad59e2daf7966e')+ build() {- cd "${srcdir}/${_projname}-${pkgver}"- python setup.py build+ cd "${srcdir}/${_pypi_package//-/_}-${_pypi_version}/"++ python -m build --wheel --no-isolation } package() {- cd "${srcdir}/${_projname}-${pkgver}"- python setup.py install --root="${pkgdir}" --optimize=1+ cd "${srcdir}/${_pypi_package//-/_}-${_pypi_version}/"++ python -m installer --destdir="${pkgdir}" dist/*.whl++ install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" } Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-27 15:19:08 | Medium | 1 |
| 2026-06-18 16:11:54 | Clean | 0 |