github-manager
LOW
maintainer wergosam
0 votes
scanned 2026-09-16 09:21:46.704965
Why flagged
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
Triggered rules
Low
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
PKGBUILD
1
# Maintainer: Jürg Rechsteiner <wergosam@gmail.com>
2
pkgname=github-manager
3
pkgver=1.0.8
4
pkgrel=1
5
pkgdesc="PyQt6-Desktop-Tool zur Verwaltung von GitHub- und lokalen Git-Repositories ohne Terminal"
6
arch=('any')
7
url="https://github.com/wergosam/github-manager"
8
license=('GPL3')
9
depends=('python' 'python-pyqt6' 'python-pygithub' 'python-gitpython' 'git')
10
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
11
sha256sums=('9e30360c6eecea6bda197c44b842a8823a1598b82e9630d489efa0b24e65fa19')
12
13
package() {
14
cd "github-manager-$pkgver"
15
16
# github_manager.py macht "from translations import ...": beide Dateien
17
# muessen im selben Verzeichnis liegen, damit dieser Import zur Laufzeit
18
# funktioniert. Deshalb kein Direkt-Install nach /usr/bin, sondern ein
19
# eigenes Verzeichnis unter /usr/share plus ein duenner Wrapper.
20
install -Dm644 github_manager.py "$pkgdir/usr/share/$pkgname/github_manager.py"
21
install -Dm644 translations.py "$pkgdir/usr/share/$pkgname/translations.py"
22
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
23
24
install -d "$pkgdir/usr/bin"
25
cat > "$pkgdir/usr/bin/$pkgname" << 'EOF'
26
#!/bin/sh
27
exec python3 /usr/share/github-manager/github_manager.py "$@"
28
EOF
29
chmod 755 "$pkgdir/usr/bin/$pkgname"
30
}
31
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-16 09:21:46 | Low | 1 |