funky-git
maintainer peterfrick
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package builds from the project's own Git repository, which is normal for AUR packages; the 'recently orphaned & re-adopted' flag is a procedural concern, not a security 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-2507) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package builds from the project's own Git repository, which is normal for AUR packages; the 'recently orphaned & re-adopted' flag is a procedural concern, not a security risk.
1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM
Recently orphaned & re-adopted
orphaned_readopted
This package was orphaned and re-adopted within the last 30 days — a window where ownership transfers can introduce malicious changes.
PKGBUILD
1
# Contributor: Elias Riedel Gårding <eliasrg@kth.se>
2
pkgname=funky-git
3
pkgver=v3.5.5.r26.g26282cb
4
pkgrel=1
5
pkgdesc="Create directory-specific shell functions"
6
arch=('any')
7
url="https://github.com/bbugyi200/funky"
8
license=('MIT')
9
depends=('python-setuptools' 'python-pygments' 'python-six')
10
makedepends=('git')
11
provides=('funky')
12
conflicts=('funky')
13
install=funky-git.install
14
source=("git+https://github.com/bbugyi200/funky.git")
15
md5sums=('SKIP')
16
17
# --- Packaging notes ---
18
# usr/bin/funky imports pkg_resources, so python-setuptools is in depends, not
19
# makedepends, following the Python packaging guidelines
20
21
pkgver() {
22
cd "${pkgname%%-git}"
23
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
24
}
25
26
27
build() {
28
cd "${pkgname%%-git}"
29
python setup.py build
30
}
31
32
33
package() {
34
cd "${pkgname%%-git}"
35
36
mkdir -p "$pkgdir/usr/share/licenses/${pkgname}"
37
cp LICENSE "$pkgdir/usr/share/licenses/${pkgname}"
38
39
mkdir -p "$pkgdir/usr/share/doc/${pkgname%%-git}"
40
cp README.md "$pkgdir/usr/share/doc/${pkgname%%-git}"
41
42
# Set XDG_DATA_HOME to avoid installing funky.sh in $HOME/.local/share
43
XDG_DATA_HOME=/usr/share python setup.py install \
44
--root="$pkgdir/" --optimize=1 --skip-build
45
}
46
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 17:15:21 | MEDIUM | 1 |
| 2026-06-18 16:11:54 | CLEAN | 0 |