pyspeed
maintainer orphaned
· 1 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package builds from a source tarball hosted on Launchpad, which is a legitimate project hosting platform; the flagged 'recently orphaned & re-adopted' status is a metadata concern, not a security risk, and the build process is transparent and follows standard practices for Python packages.
Triggered rules
LOW
AI review downgraded a static finding
llm_review
The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-2507) reviewed the full PKGBUILD and judged it LOW (confidence 90%): The package builds from a source tarball hosted on Launchpad, which is a legitimate project hosting platform; the flagged 'recently orphaned & re-adopted' status is a metadata concern, not a security risk, and the build process is transparent and follows standard practices for Python packages.
1 higher static finding superseded - not the current verdict (shown for transparency)
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
# Contributor: Kyle Keen <keenerd@gmail.com>
2
pkgname=pyspeed
3
_pkgname=PySpeed
4
pkgver=0.1.1
5
pkgrel=1
6
pkgdesc="Add progress bars with easy pythonic wrapper iterators. Py2 and Py3"
7
arch=('any')
8
url="https://launchpad.net/pyspeed"
9
license=('MIT')
10
depends=('python2')
11
optdepends=('python')
12
source=(http://launchpad.net/$pkgname/trunk/initial/+download/$_pkgname-$pkgver.tar.gz)
13
md5sums=('9d24be9fd3635d5e6299da313a69a26b')
14
15
build() {
16
cd "$srcdir"
17
mkdir -p py3
18
cp -r $_pkgname-$pkgver/* py3
19
20
if which python2; then
21
cd "$srcdir/$_pkgname-$pkgver"
22
msg "Building for Python2"
23
python2 setup.py build
24
fi
25
26
if which python3; then
27
cd "$srcdir/py3"
28
msg "Building for Python3"
29
2to3 -w ./
30
2to3 -w speed/
31
python3 setup.py build
32
fi
33
}
34
35
package() {
36
if which python2; then
37
cd "$srcdir/$_pkgname-$pkgver"
38
python2 setup.py install --prefix=/usr --root="$pkgdir"
39
fi
40
41
if which python3; then
42
cd "$srcdir/py3"
43
python3 setup.py install --prefix=/usr --root="$pkgdir"
44
fi
45
}
46
47
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 2 |
| 2026-08-02 00:16:08 | LOW | 2 |
| 2026-08-01 00:11:18 | LOW | 2 |
| 2026-07-31 00:14:10 | LOW | 2 |
| 2026-07-30 00:17:23 | LOW | 2 |
| 2026-07-29 00:25:53 | LOW | 2 |
| 2026-07-28 00:07:28 | LOW | 2 |
| 2026-07-27 00:24:32 | LOW | 2 |
| 2026-07-26 00:07:32 | LOW | 2 |
| 2026-07-25 00:13:44 | LOW | 2 |
| 2026-07-24 00:02:28 | LOW | 2 |
| 2026-07-23 00:14:47 | LOW | 2 |
| 2026-07-22 00:29:32 | LOW | 2 |
| 2026-07-21 00:24:15 | LOW | 2 |
| 2026-07-20 00:19:49 | LOW | 2 |
| 2026-07-19 23:12:22 | MEDIUM | 1 |
| 2026-06-18 16:11:54 | CLEAN | 0 |