memethesis-cli
maintainer fakefred
· 2 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The pip install in prepare() installs only pure Python dependencies from PyPI, not the package itself, which is built from the official git source; the risk is low as these are common Python packages and the main software is not fetched via pip.
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 90%): The pip install in prepare() installs only pure Python dependencies from PyPI, not the package itself, which is built from the official git source; the risk is low as these are common Python packages and the main software is not fetched via pip.
1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM
pip install of an external package
pip_install_external
`pip install <package>` fetches an unpinned package from PyPI at build time, outside source=() and makepkg's checksums.
-
PKGBUILD:22
pip3 install ascim colored Pillow PyInquirer PyYAML setuptools
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Matteo Salonia <saloniamatteo@protonmail.com>
2
# To use memethesis-cli, run `memethesis --help`
3
4
pkgname=memethesis-cli
5
pkgver=3.3.0
6
pkgrel=1
7
pkgdesc="Create memes from the terminal"
8
arch=('any')
9
url="https://github.com/fakefred/memethesis-cli"
10
license=('GPL3')
11
depends=('python>=3' 'python-pip' 'imagemagick')
12
makedepends=('git')
13
# 3.2.1 is the version that can be downloaded in the releases
14
# We will be using 3.3.0 but we'll have to clone the entire repo
15
#source=("https://github.com/fakefred/memethesis-cli/archive/3.2.1.tar.gz")
16
#sha256sums=("3c0b1727bdc8e7c39885cdbfcdf6bc1daeae84b8be4780c756f053e42a37e31c")
17
source=("git+https://github.com/fakefred/${pkgname}.git")
18
sha256sums=("SKIP")
19
20
prepare() {
21
# install python dependencies
22
pip3 install ascim colored Pillow PyInquirer PyYAML setuptools
23
}
24
25
package() {
26
# go into memethesis-cli
27
cd "${srcdir}/${pkgname}"
28
# install memethesis-cli located in /usr/bin/memethesis
29
python3 setup.py install --root="$pkgdir"
30
}
31
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 |