runitor
MEDIUM
maintainer marcool04
1 votes
scanned 2026-09-27 13:18:29.354985
Why flagged
This package was orphaned and re-adopted within the last 30 days — a window where ownership transfers can introduce malicious changes.
Triggered rules
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
# Maintainer: Mark Collins
2
# Contributor: clove3am (aka: Caltlgin) <clove.dev.mailbox.org>
3
4
pkgname='runitor'
5
pkgver=1.4.1
6
pkgrel=1
7
pkgdesc='Command runner with healthchecks.io integration'
8
arch=('x86_64')
9
url="https://github.com/bdd/${pkgname}"
10
license=('0BSD')
11
depends=('glibc')
12
makedepends=('go')
13
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz")
14
sha256sums=('192665c623bc96ed77f122510510c017197e1673ab92bb84546d652afe4416c0')
15
16
build() {
17
cd "${pkgname}-${pkgver}"
18
export CGO_CPPFLAGS="${CPPFLAGS}"
19
export CGO_CFLAGS="${CFLAGS}"
20
export CGO_CXXFLAGS="${CXXFLAGS}"
21
export CGO_LDFLAGS="${LDFLAGS}"
22
export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw"
23
24
BUILD_DATE=$(date '+%Y-%m-%d %H:%M:%S')
25
mkdir build
26
go build -v -o "build/${pkgname}" -ldflags="-X 'main.buildVersion=${pkgver}' -X 'main.buildDate=${BUILD_DATE}'" ."/cmd/${pkgname}"
27
}
28
29
package() {
30
cd "${pkgname}-${pkgver}"
31
install -Dm755 "build/${pkgname}" "${pkgdir}"/usr/bin/"${pkgname}"
32
install -Dm644 'README.md' -t "${pkgdir}/usr/share/doc/${pkgname}"
33
install -Dm644 'LICENSE' -t "${pkgdir}/usr/share/licenses/${pkgname}"
34
}
35
36
Changes since previous scan
--- PKGBUILD @ 2026-06-18 16:11+++ PKGBUILD @ 2026-09-27 13:18@@ -1,21 +1,17 @@-# Maintainer: clove3am (aka: Caltlgin) <clove.dev.mailbox.org>+# Maintainer: Mark Collins+# Contributor: clove3am (aka: Caltlgin) <clove.dev.mailbox.org> pkgname='runitor' pkgver=1.4.1 pkgrel=1 pkgdesc='Command runner with healthchecks.io integration' arch=('x86_64')-url='https://github.com/bdd/runitor'+url="https://github.com/bdd/${pkgname}" license=('0BSD') depends=('glibc') makedepends=('go') source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/v${pkgver}.tar.gz") sha256sums=('192665c623bc96ed77f122510510c017197e1673ab92bb84546d652afe4416c0')--prepare() {- cd "${pkgname}-${pkgver}"- mkdir build-} build() { cd "${pkgname}-${pkgver}"@@ -26,6 +22,7 @@ export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw" BUILD_DATE=$(date '+%Y-%m-%d %H:%M:%S')+ mkdir build go build -v -o "build/${pkgname}" -ldflags="-X 'main.buildVersion=${pkgver}' -X 'main.buildDate=${BUILD_DATE}'" ."/cmd/${pkgname}" } Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-27 13:18:29 | Medium | 1 |
| 2026-06-18 16:11:54 | Clean | 0 |