platypush
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
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)
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# Maintainer: Fabio Manganiello <fabio@manganiello.tech>
pkgname=platypush
pkgver=1.3.36
pkgrel=1
pkgdesc="Universal multi-platform command executor and automation manager"
arch=('any')
license=('MIT')
url="https://git.platypush.tech/platypush/platypush"
depends=(
'python'
'python-alembic'
'python-croniter'
'python-dateutil'
'python-docutils'
'python-flask'
'python-magic'
'python-marshmallow'
'python-pip'
'python-psutil'
'python-pygments'
'python-pyotp'
'python-qrcode'
'python-redis'
'python-requests'
'python-rsa'
'python-setuptools'
'python-sqlalchemy'
'python-tornado'
'python-watchdog'
'python-websocket-client'
'python-websockets'
'python-yaml'
'python-zeroconf'
'zbar'
)
optdepends=(
'ffmpeg: Audio, streaming and several camera integrations'
'libtorrent: Support for torrent download'
'opencv: Support for cameras and image processing over the OpenCV integration'
'py-trello: Trello integration'
'python-aiohttp: SmartThings support'
'python-aioxmpp: XMPP support'
'python-bleak: Bluetooth low-energy devices support'
'python-bme280: Support for the BME280 digital sensor over I2C interface'
'python-deepspeech: Mozilla Deepspeech integration'
'python-defusedxml: RSS and DBus integration support'
'python-dropbox: Dropbox integration'
'python-feedparser: RSS integration support'
'python-google-api-python-client: Support for several Google integrations'
'python-google-cloud-texttospeech: Support for Google Cloud text-to-speech integration'
'python-google-cloud-translate: Support for the Google Translate integration'
'python-gpsd-git: Support for the GPS integration and several GPS devices'
'python-graphyte: Graphite integration'
'python-icalendar: Support for calendar integrations'
'python-imapclient: Mail integrations'
'python-irc: IRC integration'
'python-inotify: Support for filesystem monitoring integrations'
'python-kafka: Kafka integration support'
'python-keras: Tensorflow integration'
'python-kodi-json: Support for the Kodi integration'
'python-linode_api4: Linode cloud integration'
'python-matrix-nio: Matrix integration'
'python-mpd2: MPD/Mopidy integration support'
'python-mpv: mpv integration'
'python-ndeflib: NFC tags integration'
'python-nfcpy: NFC tags integration'
'python-nmap: nmap integration'
'python-numpy: Strongly advised for any camera, sound, voice or ML-based integration'
'python-oauth2client: Support for several Google integrations'
'python-paho-mqtt: MQTT integrations support'
'python-pandas: Tensorflow integration'
'python-paramiko: SSH support'
'python-phue: Philips Hue (and compatible) devices support'
'python-pillow: Support for several camera integrations and QR codes'
'python-plexapi: Support for the Plex integration'
'python-py-cpuinfo: System information plugin'
'python-pybluez: Bluetooth support'
'python-pychromecast: Chromecast support'
'python-pyclip: Clipboard integration'
'python-pycups: Printers integration'
'python-pydbus: DBus and Bluetooth integration'
'python-pylast: Last.fm scrobbling support'
'python-pyscard: Support for the smart card integration'
'python-pyserial: Arduino/serial device support'
'python-rpi-gpio: Support for GPIO integrations for Raspberry Pi (and compatible) devices'
'python-rtmidi: MIDI integration'
'python-snowboy: Snowboy integration'
'python-sounddevice: Sound integration'
'python-telegram-bot: Telegram integration'
'python-tensorflow: Tensorflow integration'
'python-todoist-python: Todoist integration'
'python-twilio: Twilio integration'
'python-vlc: VLC integration'
'python-weasyprint: PDF generation support'
'yt-dlp: Support for downloading/streaming YouTube videos, as well as other video platforms'
)
conflicts=("${pkgname}-git")
provides=('platypush')
options=(!strip)
source=("v${pkgver}.tar.gz::https://git.platypush.tech/${pkgname}/${pkgname}/archive/v${pkgver}.tar.gz")
sha512sums=('cb0613a103c8128d82497cb2b5cea6f5de9d109a2446c7b07c6f4b326a715c37a5de6535c14fde38fa7e5f1703d64f1e7e498b7eb736f785889adc97ecca14e2')
package() {
cd "${srcdir}/${pkgname}"
PYTHONDONTWRITEBYTECODE=1 python3 setup.py install --root="${pkgdir}/" --prefix=/usr --optimize=1
install -m750 -d "${pkgdir}/var/lib/platypush"
install -m755 -d "${pkgdir}/usr/lib/systemd/system"
install -m755 -d "${pkgdir}/usr/lib/systemd/user"
install -m750 -d "${pkgdir}/etc/platypush/scripts"
install -m755 -d "${pkgdir}/usr/lib/sysusers.d"
install -m755 -d "${pkgdir}/usr/lib/tmpfiles.d"
install -m644 "${srcdir}/platypush/platypush/config/systemd/platypush.service" "${pkgdir}/usr/lib/systemd/user/platypush.service"
install -m644 "${srcdir}/platypush/platypush/config/systemd/platypush.service" "${pkgdir}/usr/lib/systemd/system/platypush.service"
sed -i "${pkgdir}/usr/lib/systemd/system/platypush.service" -r \
-e 's/^#\s*Requires=(.*)/Requires=\1/' \
-e 's/^\[Service\]$/\[Service\]\
User=platypush\
Group=platypush\
WorkingDirectory=\/var\/lib\/platypush\
Environment="PLATYPUSH_CONFIG=\/etc\/platypush\/config.yaml"\
Environment="PLATYPUSH_WORKDIR=\/var\/lib\/platypush"/'
install -m644 "${srcdir}/platypush/platypush/config/config.yaml" "${pkgdir}/etc/platypush/config.yaml"
install -Dm644 "${srcdir}/platypush/platypush/config/systemd/platypush-sysusers.conf" "${pkgdir}/usr/lib/sysusers.d/platypush.conf"
install -Dm644 "${srcdir}/platypush/platypush/config/systemd/platypush-tmpfile.conf" "${pkgdir}/usr/lib/tmpfiles.d/platypush.conf"
install -Dm644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 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 00:27:57 | Low | 2 |
| 2026-09-13 00:19:54 | Low | 2 |
| 2026-09-12 00:25:17 | Low | 2 |
| 2026-09-11 00:19:22 | Low | 2 |
| 2026-09-10 00:22:44 | Low | 2 |
| 2026-09-09 00:04:09 | Low | 2 |
| 2026-09-08 00:18:08 | Low | 2 |
| 2026-09-07 00:30:15 | Low | 2 |
| 2026-09-06 00:17:06 | Low | 2 |
| 2026-09-05 00:16:27 | Low | 2 |
| 2026-09-04 00:03:13 | Low | 2 |
| 2026-09-03 00:15:47 | Low | 2 |
| 2026-09-02 00:02:31 | Low | 2 |
| 2026-09-01 00:11:19 | Low | 2 |
| 2026-08-31 00:19:57 | Low | 2 |
| 2026-08-30 00:04:14 | Low | 2 |
| 2026-08-29 00:29:17 | Low | 2 |