whisparr-eros-develop

LOW
maintainer txtsd 1 votes scanned 2026-09-17 00:27:14.276658
View on AUR
Why flagged

The yarn install is part of building the project's own frontend from its official source repository, which is a normal and expected step in the build process for this application.

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 95%): The yarn install is part of building the project's own frontend from its official source repository, which is a normal and expected step in the build process for this application.

1 higher static finding superseded - not the current verdict (shown for transparency)
Medium npm/yarn/pnpm install of an undeclared external package npm_install_external

Runs `npm/yarn/pnpm install <package>` for a package not in source=(), pulling unpinned, unreviewed code at build time. Severity downgraded: the package declares/looks like a Node.js consumer, where build-time installs are expected.

  • PKGBUILD:87 yarn install --frozen-lockfile --network-timeout 120000

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: txtsd <aur.archlinux@ihavea.quest>
2# Maintainer: Donald Webster <fryfrog@gmail.com>
3
4pkgname=whisparr-eros-develop
5_pkgname=Whisparr
6__pkgname=Whisparr-Eros
7pkgver=3.5.0.1621
8_pkgver=${pkgver%.*}-develop.${pkgver##*.}
9pkgrel=1
10pkgdesc='Adult movie organizer/manager for usenet and torrent users (develop branch)'
11arch=(x86_64 aarch64 armv7h)
12url='https://whisparr.com'
13license=('GPL-3.0-or-later')
14groups=(servarr)
15depends=(
16 aspnet-runtime-10.0
17 gcc-libs
18 glibc
19 sqlite
20 zlib
21)
22makedepends=(dotnet-sdk-10.0 yarn aspnet-targeting-pack-10.0)
23optdepends=(
24 'postgresql: postgresql database'
25 'sabnzbd: usenet downloader'
26 'nzbget: usenet downloader'
27 'qbittorrent: torrent downloader'
28 'deluge: torrent downloader'
29 'rtorrent: torrent downloader'
30 'nodejs-flood: torrent downloader'
31 'vuze: torrent downloader'
32 'aria2: torrent downloader'
33 'transmission-cli: torrent downloader (CLI and daemon)'
34 'transmission-gtk: torrent downloader (GTK+)'
35 'transmission-qt: torrent downloader (Qt)'
36 'jackett: torrent indexer proxy'
37 'nzbhydra2: torznab and usenet indexer proxy'
38 'prowlarr: torrent and usenet indexer proxy'
39 'autobrr: irc, torrent and usenet indexer proxy'
40)
41provides=(whisparr-eros)
42conflicts=(whisparr-eros)
43install=whisparr-eros.install
44source=(
45 "${pkgname}-${pkgver}.tar.gz::https://github.com/Whisparr/Whisparr-Eros/archive/refs/tags/v${_pkgver}.tar.gz"
46 package_info
47 whisparr-eros.service
48 whisparr-eros.sysusers
49 whisparr-eros.tmpfiles
50)
51sha256sums=('b5f92b8d675bc38658619facef1c39090b0710d05d7fe21fe01442194634e5fe'
52 '66ede8c26b84f6313501d17edfa44b8bec5778e0ff3cc1bdb42476fabd1f0410'
53 '3964160cb383c88c8d335da2ca37cf800a282b32f68b4093595694f4ac8fe99c'
54 '050f751d01333298bccfa84dbe11550031075f595009c15d37b089eaf453b19c'
55 '98be10c54d9c371e985af5b347a8991942e3d92a67010787f4b5ef8987b1f64a')
56
57case ${CARCH} in
58 x86_64) _CARCH='x64' ;;
59 aarch64) _CARCH='arm64' ;;
60 armv7h) _CARCH='arm' ;;
61esac
62
63_framework='net10.0'
64_runtime="linux-${_CARCH}"
65_output='_output'
66_artifacts="${_output}/${_framework}/${_runtime}/publish"
67_branch='eros-develop'
68
69prepare() {
70 cd "${__pkgname}-${_pkgver}"
71
72 # Remove upstream dotnet version
73 rm global.json
74
75 export DOTNET_CLI_TELEMETRY_OPTOUT=1
76 export DOTNET_NOLOGO=1
77 export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
78 # Uncomment after dotnet-sdk reaches 10.0.101
79 # dotnet new globaljson --sdk-version 10.0.101 --force
80
81 # Prepare backend
82 dotnet restore "src/${_pkgname}.sln" \
83 --runtime "${_runtime}" \
84 --locked-mode
85
86 # Prepare frontend
87 yarn install --frozen-lockfile --network-timeout 120000
88}
89
90build() {
91 cd "${__pkgname}-${_pkgver}"
92
93 # Build backend
94 export DOTNET_CLI_TELEMETRY_OPTOUT=1
95 export DOTNET_NOLOGO=1
96 export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=1
97 dotnet build "src/${_pkgname}.sln" \
98 --framework "${_framework}" \
99 --runtime "${_runtime}" \
100 --no-self-contained \
101 --no-restore \
102 --configuration Release \
103 -p:Platform=Posix \
104 -p:AssemblyVersion=${pkgver} \
105 -p:AssemblyFileVersion=${pkgver} \
106 -p:AssemblyInformationalVersion=${_pkgver} \
107 -p:AssemblyConfiguration=${_branch} \
108 -p:RuntimeIdentifiers="${_runtime}" \
109 -t:PublishAllRids \
110 && dotnet build-server shutdown # Build servers do not terminate automatically
111
112 # Build frontend
113 yarn run build --env production
114}
115
116package() {
117 cd "${__pkgname}-${_pkgver}"
118
119 install -dm755 "${pkgdir}/usr/lib/whisparr-eros/bin/UI"
120
121 # Remove Service Helpers, Update, and Windows files
122 rm "${_artifacts}/ServiceInstall"*
123 rm "${_artifacts}/ServiceUninstall"*
124 rm "${_artifacts}/Whisparr.Windows."*
125 rm -rf "${_output}/Whisparr.Update"
126
127 # Copy backend
128 cp -dr "${_artifacts}/"* "${pkgdir}/usr/lib/whisparr-eros/bin"
129 # Copy frontend
130 cp -dr "${_output}/UI/"* "${pkgdir}/usr/lib/whisparr-eros/bin/UI"
131
132 # Set executable permissions
133 chmod 755 "${pkgdir}/usr/lib/whisparr-eros/bin/ffprobe"
134
135 # License
136 install -Dm644 LICENSE.md "${pkgdir}/usr/share/licenses/${pkgname}"
137
138 # Disable built in updater.
139 cd "${srcdir}"
140 install -Dm644 package_info "${pkgdir}/usr/lib/whisparr-eros"
141 echo "PackageVersion=${pkgver}-${pkgrel}" >> "${pkgdir}/usr/lib/whisparr-eros/package_info"
142
143 # Systemd
144 install -Dm644 whisparr-eros.service "${pkgdir}/usr/lib/systemd/system/whisparr-eros.service"
145 install -Dm644 whisparr-eros.sysusers "${pkgdir}/usr/lib/sysusers.d/whisparr-eros.conf"
146 install -Dm644 whisparr-eros.tmpfiles "${pkgdir}/usr/lib/tmpfiles.d/whisparr-eros.conf"
147}
148

Changes since previous scan

--- PKGBUILD @ 2026-09-14 19:17
+++ PKGBUILD @ 2026-09-17 00:27
@@ -4,7 +4,7 @@
pkgname=whisparr-eros-develop
_pkgname=Whisparr
__pkgname=Whisparr-Eros
-pkgver=3.5.0.1618
+pkgver=3.5.0.1621
_pkgver=${pkgver%.*}-develop.${pkgver##*.}
pkgrel=1
pkgdesc='Adult movie organizer/manager for usenet and torrent users (develop branch)'
@@ -48,7 +48,7 @@
whisparr-eros.sysusers
whisparr-eros.tmpfiles
)
-sha256sums=('d3c0179dbd525a30df8951a55f6d842ced17086c00e5c0e29ac528ef49352217'
+sha256sums=('b5f92b8d675bc38658619facef1c39090b0710d05d7fe21fe01442194634e5fe'
'66ede8c26b84f6313501d17edfa44b8bec5778e0ff3cc1bdb42476fabd1f0410'
'3964160cb383c88c8d335da2ca37cf800a282b32f68b4093595694f4ac8fe99c'
'050f751d01333298bccfa84dbe11550031075f595009c15d37b089eaf453b19c'

Scan history

Scanned at (UTC)SeverityRules
2026-09-17 00:27:14 Low 2
2026-09-16 00:03:17 Low 2
2026-09-15 00:25:31 Low 2
2026-09-14 21:18:01 Medium 1
2026-09-14 19:17:46 Medium 1
2026-09-14 07:16:35 Medium 1
2026-09-14 05:16:15 Medium 1
2026-09-14 00:27:57 Low 2
2026-09-13 03:13:35 Medium 1
2026-09-13 01:13:16 Medium 1
2026-09-13 00:19:54 Low 2
2026-09-12 21:12:39 Medium 1
2026-09-12 00:25:17 Low 2
2026-09-11 00:19:22 Low 2
2026-09-10 21:21:21 Medium 1
2026-09-10 00:22:44 Low 2
2026-09-09 23:20:11 Medium 1
2026-09-09 17:19:54 Medium 1
2026-09-09 00:04:09 Low 2
2026-09-08 03:15:31 Medium 1

Report a package

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

0 / 4000
Your suggestion