cppcoro-git
maintainer orphaned
· 1 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package builds from the project's own source via git, uses submodules from the same author, and installs only headers and a static library; the orphaned/re-adopted status is administrative and does not imply malicious activity.
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 source via git, uses submodules from the same author, and installs only headers and a static library; the orphaned/re-adopted status is administrative and does not imply malicious activity.
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
# Maintainer: Nicolas Lesser <blitzrakete [at] gmail [dot] com>
2
pkgname=cppcoro-git
3
pkgver=r362.99bb7f8
4
pkgrel=2
5
pkgdesc="C++ coroutine abstractions for the coroutines TS"
6
arch=(any)
7
url="https://github.com/lewissbaker/cppcoro"
8
license=('MIT')
9
options=('!strip')
10
makedepends=('git' 'clang' 'llvm' 'lld' 'libc++' 'python2' 'python2-setuptools')
11
source=("git+https://github.com/lewissbaker/cppcoro"
12
"git+https://github.com/lewissbaker/cake"
13
"disable-broken-test.patch")
14
md5sums=('SKIP'
15
'SKIP'
16
'3e2058eff2585767b7224992cbdd7a1d')
17
18
pkgver() {
19
cd "${srcdir}/cppcoro"
20
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
21
}
22
23
prepare() {
24
cd "${srcdir}/cppcoro"
25
26
# Get custom build tool 'cake'
27
git submodule init
28
git config submodule.cake.url "${srcdir}/cake"
29
git submodule update
30
# Initialize cake so that it's available
31
source init.sh
32
33
patch -p0 --strip=1 -i "${srcdir}/disable-broken-test.patch"
34
rm -rf build
35
}
36
37
build() {
38
cd "${srcdir}/cppcoro"
39
cake release=optimised lib/build.cake
40
}
41
42
check() {
43
cd "${srcdir}/cppcoro"
44
cake release=optimised test/build.cake
45
}
46
47
package() {
48
cd "${srcdir}/cppcoro"
49
mkdir -p "${pkgdir}/usr/include"
50
51
cp -r "include/cppcoro" "${pkgdir}/usr/include/"
52
chmod -R 644 "${pkgdir}/usr/include/cppcoro/"
53
install -D -m644 "build/linux_x64_clang8.0.0_optimised/lib/libcppcoro.a" -t "${pkgdir}/usr/lib/"
54
install -D -m644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/cppcoro-git"
55
}
56
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 21:12:02 | MEDIUM | 1 |
| 2026-06-18 16:11:54 | CLEAN | 0 |