subcli
maintainer jose1711
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package downloads a source tarball from a defunct but official Google Code archive, builds the project's own Python scripts, and installs them; the host is non-standard but the source is verifiable and the build process is transparent, posing no active threat.
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-07-25) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package downloads a source tarball from a defunct but official Google Code archive, builds the project's own Python scripts, and installs them; the host is non-standard but the source is verifiable and the build process is transparent, posing no active threat.
1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM
source=() URL on a non-standard host
source_untrusted_domain
One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).
-
PKGBUILD:11
source=("https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${pkgname}/${pkgname}_v${pkgver}.tar.gz")
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Jose Riha <jose1711 gmail com>
2
# Contributor: Giancarlo Bianchi <giancarlobianchi76-[remove this]-@-[and this]-gmail-[and this]-.com>
3
pkgname=subcli
4
pkgver=0.4
5
pkgrel=3
6
pkgdesc="CLI program to modify text based subtitles"
7
arch=('any')
8
url="https://code.google.com/p/subcli"
9
license=('GPL')
10
depends=('python2')
11
source=("https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${pkgname}/${pkgname}_v${pkgver}.tar.gz")
12
md5sums=('2a69e2db27f048abf2e97f957f83fb7d')
13
14
package() {
15
cd "$srcdir/$pkgname"
16
install -d "$pkgdir/usr/share/$pkgname/modules"
17
18
msg "Compiling and installing python modules"
19
cd modules
20
for i in *.py; do
21
echo "$i"
22
sed -i '1i#\!\/usr\/bin\/env\ python2' "$i"
23
python2 -c "import py_compile; py_compile.compile('$i')"
24
install -m 0644 "${i/.py/.pyc}" "$pkgdir/usr/share/$pkgname/modules/${i/.py/.pyc}"
25
done
26
install -m 0644 default.{ass,ssa} "$pkgdir/usr/share/$pkgname/modules"
27
28
msg "Compiling and installing main binaries"
29
cd "$srcdir/$pkgname"
30
python2 -c "import py_compile; py_compile.compile('subcli.py')"
31
install -m 0755 subcli.pyc "$pkgdir/usr/share/$pkgname/subcli.pyc"
32
33
sed -i 's!/usr/local/share/apps!exec\ python2\ /usr/share!' subcli
34
install -Dm 0755 subcli "$pkgdir/usr/bin/subcli"
35
}
36
37
# vim:set ts=2 sw=2 et:
38
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 00:17:08 | LOW | 2 |
| 2026-07-18 00:14:48 | LOW | 2 |
| 2026-07-17 00:06:16 | LOW | 2 |
| 2026-07-16 00:05:41 | LOW | 2 |
| 2026-07-15 00:09:25 | LOW | 2 |