arsse

maintainer jking · 1 votes · scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged The source is a tagged release tarball from the project's official code repository (code.mensbeam.com), which is not on the whitelist but is plausibly the project's own infrastructure; the package builds from source and installs only project files, posing no active supply-chain or execution risk.

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 source is a tagged release tarball from the project's official code repository (code.mensbeam.com), which is not on the whitelist but is plausibly the project's own infrastructure; the package builds from source and installs only project files, posing no active supply-chain or execution risk.

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:31 source=("$pkgname-$pkgver.tar.gz::https://code.mensbeam.com/MensBeam/Arsse/releases/download/$pkgver/arsse-$pkgver.tar.gz")

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: J. King <jking@jkingweb.ca>
2pkgname="arsse"
3pkgver=0.12.1
4pkgrel=1
5epoch=
6pkgdesc="Multi-protocol RSS/Atom newsfeed synchronization server"
7arch=("any")
8url="https://thearsse.com/"
9license=("MIT")
10conflicts=("arsse-git")
11depends=()
12makedepends=()
13checkdepends=()
14optdepends=("nginx: HTTP server"
15 "apache>=2.4: HTTP server"
16 "percona-server: Alternate database"
17 "postgresql>=10: Alternate database"
18 "php-pgsql-interpreter>=7.3: PostgreSQL database support")
19backup=("etc/webapps/arsse/config.php"
20 "etc/webapps/arsse/systemd-environment"
21 "etc/php/php-fpm.d/arsse.conf"
22 "etc/php-legacy/php-fpm.d/arsse.conf"
23 "etc/webapps/arsse/nginx/example.conf"
24 "etc/webapps/arsse/nginx/arsse.conf"
25 "etc/webapps/arsse/nginx/arsse-loc.conf"
26 "etc/webapps/arsse/nginx/arsse-fcgi.conf"
27 "etc/webapps/arsse/apache/example.conf"
28 "etc/webapps/arsse/apache/arsse.conf"
29 "etc/webapps/arsse/apache/arsse-fcgi.conf"
30 "etc/webapps/arsse/apache/arsse-loc.conf")
31source=("$pkgname-$pkgver.tar.gz::https://code.mensbeam.com/MensBeam/Arsse/releases/download/$pkgver/arsse-$pkgver.tar.gz")
32md5sums=('f0afcbfbdaff42a9e52a79ba7074883c')
33
34package() {
35 # define runtime dependencies
36 depends=("php-interpreter>=7.3" "php-sqlite-interpreter>=7.3" "php-fpm-interpreter>=7.3")
37 # create most directories necessary for the final package
38 cd "$pkgdir"
39 mkdir -p "usr/share/webapps/arsse" "usr/share/doc/arsse" "usr/share/licenses/arsse" "usr/lib/systemd/system" "usr/lib/sysusers.d" "usr/lib/tmpfiles.d" "etc/php/php-fpm.d" "etc/php-legacy/php-fpm.d" "etc/webapps/arsse"
40 # copy requisite files
41 cd "$srcdir/arsse"
42 cp -r lib locale sql vendor www CHANGELOG UPGRADING README.md arsse.php "$pkgdir/usr/share/webapps/arsse"
43 cp -r manual/* "$pkgdir/usr/share/doc/arsse"
44 cp LICENSE AUTHORS "$pkgdir/usr/share/licenses/arsse"
45 cp dist/sysuser.conf "$pkgdir/usr/lib/sysusers.d/arsse.conf"
46 cp dist/tmpfiles.conf "$pkgdir/usr/lib/tmpfiles.d/arsse.conf"
47 cp dist/php-fpm.conf "$pkgdir/etc/php/php-fpm.d/arsse.conf"
48 cp -r dist/man "$pkgdir/usr/share"
49 cp -r dist/nginx dist/apache config.defaults.php "$pkgdir/etc/webapps/arsse"
50 # copy files requiring special permissions
51 install -Dm640 dist/config.php "$pkgdir/etc/webapps/arsse"
52 # patch generic configuration files to use Arch-specific paths and identifiers
53 sed -i -se 's/\/\(etc\|usr\/share\)\/arsse\//\/\1\/webapps\/arsse\//g' "$pkgdir/etc/webapps/arsse/nginx/"* "$pkgdir/etc/webapps/arsse/apache/"* "$pkgdir/usr/lib/tmpfiles.d/arsse.conf"
54 sed -i -se 's/\/var\/run\/php\//\/run\/php-fpm\//g' "$pkgdir/etc/webapps/arsse/nginx/"* "$pkgdir/etc/webapps/arsse/apache/"* "$pkgdir/etc/php/php-fpm.d/arsse.conf"
55 sed -i -se 's/www-data/http/g' "$pkgdir/etc/php/php-fpm.d/arsse.conf"
56 # make a duplicate PHP-FPM pool for php-legacy
57 sed -se 's/php-fpm/php-fpm-legacy/' "$pkgdir/etc/php/php-fpm.d/arsse.conf" > "$pkgdir/etc/php-legacy/php-fpm.d/arsse.conf"
58 # copy Arch-specific versions of files
59 install -Dm755 dist/arch/arsse "$pkgdir/usr/bin/arsse"
60 cp dist/arch/nginx-arsse-fcgi.conf "$pkgdir/etc/webapps/arsse/nginx/arsse-fcgi.conf"
61 cp dist/arch/apache-arsse-fcgi.conf "$pkgdir/etc/webapps/arsse/apache/arsse-fcgi.conf"
62 cp dist/arch/*.service "$pkgdir/usr/lib/systemd/system"
63 cp dist/arch/systemd-environment "$pkgdir/etc/webapps/arsse/systemd-environment"
64}
65

Scan history

Scanned at (UTC)SeverityRules
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

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion