python-iso639-lang
MEDIUM
maintainer txtsd
2 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: txtsd <aur.archlinux@ihavea.quest>
2
# Contributor: Sematre <sematre at gmx dot de>
3
#
4
pkgname=python-iso639-lang
5
pkgver=2.6.3
6
pkgrel=1
7
pkgdesc="A lightweight library for the ISO 639 standard."
8
arch=(any)
9
url='https://github.com/LBeaudoux/iso639'
10
license=('MIT')
11
depends=('python')
12
makedepends=(
13
python-build
14
python-installer
15
)
16
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/v${pkgver}.tar.gz")
17
sha256sums=('4aecdb49b35abd8f56bd3b83b0d8d376556bc7f62e6176a5ca28affcb8f72303')
18
19
build() {
20
cd "iso639-${pkgver}"
21
python -m build
22
}
23
24
package() {
25
cd "iso639-${pkgver}"
26
python -m installer --destdir="${pkgdir}" dist/*.whl
27
install -Dm644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"
28
}
29
Changes since previous scan
--- PKGBUILD @ 2026-06-18 16:11+++ PKGBUILD @ 2026-09-27 15:19@@ -1,25 +1,29 @@-# Maintainer: Sematre <sematre at gmx dot de>+# Maintainer: txtsd <aur.archlinux@ihavea.quest>+# Contributor: Sematre <sematre at gmx dot de>+# pkgname=python-iso639-lang-pkgver=2.1.0+pkgver=2.6.3 pkgrel=1- pkgdesc="A lightweight library for the ISO 639 standard."-arch=('any')-url="https://github.com/LBeaudoux/iso639"+arch=(any)+url='https://github.com/LBeaudoux/iso639' license=('MIT') depends=('python')-makedepends=('python-setuptools')+makedepends=(+ python-build+ python-installer+) source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/refs/tags/v${pkgver}.tar.gz")-sha256sums=('2ffe80b13adb336687925ec1d6e46749f3a82e289d998e58eb2350b3fb79e486')+sha256sums=('4aecdb49b35abd8f56bd3b83b0d8d376556bc7f62e6176a5ca28affcb8f72303') build() {- cd "iso639-${pkgver}"- python setup.py build+ cd "iso639-${pkgver}"+ python -m build } package() {- cd "iso639-${pkgver}"- python setup.py install --prefix=/usr --root="${pkgdir}" --optimize 1 --skip-build- install -Dm644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}"+ cd "iso639-${pkgver}"+ python -m installer --destdir="${pkgdir}" dist/*.whl+ install -Dm644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}" } Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-27 15:19:08 | Medium | 1 |
| 2026-06-18 16:11:54 | Clean | 0 |