platypush

maintainer blacklight · 1 votes · scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged The source is a tarball from the project's own Git host (git.platypush.tech), which is plausibly the official project infrastructure; building from source is normal AUR practice, and the checksum is provided.

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 source is a tarball from the project's own Git host (git.platypush.tech), which is plausibly the official project infrastructure; building from source is normal AUR practice, and the checksum is provided.

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:103 source=("v${pkgver}.tar.gz::https://git.platypush.tech/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz")

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: Fabio Manganiello <fabio@manganiello.tech>
2
3pkgname=platypush
4pkgver=1.3.33
5pkgrel=1
6pkgdesc="Universal multi-platform command executor and automation manager"
7arch=('any')
8license=('MIT')
9url="https://git.platypush.tech/platypush/platypush"
10depends=(
11 'python'
12 'python-alembic'
13 'python-croniter'
14 'python-dateutil'
15 'python-docutils'
16 'python-flask'
17 'python-magic'
18 'python-marshmallow'
19 'python-pip'
20 'python-psutil'
21 'python-pygments'
22 'python-pyotp'
23 'python-qrcode'
24 'python-redis'
25 'python-requests'
26 'python-rsa'
27 'python-setuptools'
28 'python-sqlalchemy'
29 'python-tornado'
30 'python-watchdog'
31 'python-websocket-client'
32 'python-websockets'
33 'python-yaml'
34 'python-zeroconf'
35 'zbar'
36)
37
38optdepends=(
39 'ffmpeg: Audio, streaming and several camera integrations'
40 'libtorrent: Support for torrent download'
41 'opencv: Support for cameras and image processing over the OpenCV integration'
42 'py-trello: Trello integration'
43 'python-aiohttp: SmartThings support'
44 'python-aioxmpp: XMPP support'
45 'python-bleak: Bluetooth low-energy devices support'
46 'python-bme280: Support for the BME280 digital sensor over I2C interface'
47 'python-deepspeech: Mozilla Deepspeech integration'
48 'python-defusedxml: RSS and DBus integration support'
49 'python-dropbox: Dropbox integration'
50 'python-feedparser: RSS integration support'
51 'python-google-api-python-client: Support for several Google integrations'
52 'python-google-cloud-texttospeech: Support for Google Cloud text-to-speech integration'
53 'python-google-cloud-translate: Support for the Google Translate integration'
54 'python-gpsd-git: Support for the GPS integration and several GPS devices'
55 'python-graphyte: Graphite integration'
56 'python-icalendar: Support for calendar integrations'
57 'python-imapclient: Mail integrations'
58 'python-irc: IRC integration'
59 'python-inotify: Support for filesystem monitoring integrations'
60 'python-kafka: Kafka integration support'
61 'python-keras: Tensorflow integration'
62 'python-kodi-json: Support for the Kodi integration'
63 'python-linode_api4: Linode cloud integration'
64 'python-matrix-nio: Matrix integration'
65 'python-mpd2: MPD/Mopidy integration support'
66 'python-mpv: mpv integration'
67 'python-ndeflib: NFC tags integration'
68 'python-nfcpy: NFC tags integration'
69 'python-nmap: nmap integration'
70 'python-numpy: Strongly advised for any camera, sound, voice or ML-based integration'
71 'python-oauth2client: Support for several Google integrations'
72 'python-paho-mqtt: MQTT integrations support'
73 'python-pandas: Tensorflow integration'
74 'python-paramiko: SSH support'
75 'python-phue: Philips Hue (and compatible) devices support'
76 'python-pillow: Support for several camera integrations and QR codes'
77 'python-plexapi: Support for the Plex integration'
78 'python-py-cpuinfo: System information plugin'
79 'python-pybluez: Bluetooth support'
80 'python-pychromecast: Chromecast support'
81 'python-pyclip: Clipboard integration'
82 'python-pycups: Printers integration'
83 'python-pydbus: DBus and Bluetooth integration'
84 'python-pylast: Last.fm scrobbling support'
85 'python-pyscard: Support for the smart card integration'
86 'python-pyserial: Arduino/serial device support'
87 'python-rpi-gpio: Support for GPIO integrations for Raspberry Pi (and compatible) devices'
88 'python-rtmidi: MIDI integration'
89 'python-snowboy: Snowboy integration'
90 'python-sounddevice: Sound integration'
91 'python-telegram-bot: Telegram integration'
92 'python-tensorflow: Tensorflow integration'
93 'python-todoist-python: Todoist integration'
94 'python-twilio: Twilio integration'
95 'python-vlc: VLC integration'
96 'python-weasyprint: PDF generation support'
97 'yt-dlp: Support for downloading/streaming YouTube videos, as well as other video platforms'
98)
99
100conflicts=("${pkgname}-git")
101provides=('platypush')
102options=(!strip)
103source=("v${pkgver}.tar.gz::https://git.platypush.tech/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz")
104sha512sums=('4de7e84d23e8b9dfbaf062ee54bd64f69f1733d4033a0c233ed4f0d0b7b498e1b707198a4bf279c2ba6bc36128bcb7dc7e8f3cad3685493300080b06b73de618')
105
106package() {
107 cd "${srcdir}/${pkgname}"
108 PYTHONDONTWRITEBYTECODE=1 python3 setup.py install --root="${pkgdir}/" --prefix=/usr --optimize=1
109
110 install -m750 -d "${pkgdir}/var/lib/platypush"
111 install -m755 -d "${pkgdir}/usr/lib/systemd/system"
112 install -m755 -d "${pkgdir}/usr/lib/systemd/user"
113 install -m750 -d "${pkgdir}/etc/platypush/scripts"
114 install -m755 -d "${pkgdir}/usr/lib/sysusers.d"
115 install -m755 -d "${pkgdir}/usr/lib/tmpfiles.d"
116
117 install -m644 "${srcdir}/platypush/platypush/config/systemd/platypush.service" "${pkgdir}/usr/lib/systemd/user/platypush.service"
118 install -m644 "${srcdir}/platypush/platypush/config/systemd/platypush.service" "${pkgdir}/usr/lib/systemd/system/platypush.service"
119 sed -i "${pkgdir}/usr/lib/systemd/system/platypush.service" -r \
120 -e 's/^#\s*Requires=(.*)/Requires=\1/' \
121 -e 's/^\[Service\]$/\[Service\]\
122User=platypush\
123Group=platypush\
124WorkingDirectory=\/var\/lib\/platypush\
125Environment="PLATYPUSH_CONFIG=\/etc\/platypush\/config.yaml"\
126Environment="PLATYPUSH_WORKDIR=\/var\/lib\/platypush"/'
127 install -m644 "${srcdir}/platypush/platypush/config/config.yaml" "${pkgdir}/etc/platypush/config.yaml"
128 install -Dm644 "${srcdir}/platypush/platypush/config/systemd/platypush-sysusers.conf" "${pkgdir}/usr/lib/sysusers.d/platypush.conf"
129 install -Dm644 "${srcdir}/platypush/platypush/config/systemd/platypush-tmpfile.conf" "${pkgdir}/usr/lib/tmpfiles.d/platypush.conf"
130
131 install -Dm644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
132}
133
134

Changes since previous scan

--- PKGBUILD @ 2026-07-31 00:14
+++ PKGBUILD @ 2026-08-03 00:08
@@ -1,7 +1,7 @@
# Maintainer: Fabio Manganiello <fabio@manganiello.tech>
pkgname=platypush
-pkgver=1.3.32
+pkgver=1.3.33
pkgrel=1
pkgdesc="Universal multi-platform command executor and automation manager"
arch=('any')

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 11:17:50 MEDIUM 1
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 21:33:42 MEDIUM 1
2026-07-26 00:07:32 LOW 2
2026-07-25 00:13:44 LOW 2
2026-07-24 17:28:09 MEDIUM 1
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

Report a package

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

0 / 4000
Your suggestion