ieda-git
maintainer foobat
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package builds from source hosted on Gitee, which is a legitimate code hosting platform; the source is not prebuilt or obfuscated, and the build process is transparent and standard for AUR packages.
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 95%): The package builds from source hosted on Gitee, which is a legitimate code hosting platform; the source is not prebuilt or obfuscated, and the build process is transparent and standard for AUR packages.
1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM
source=() URL on a non-standard host
source_untrusted_domain
One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).
-
PKGBUILD:11
'git+https://gitee.com/oscc-project/iEDA'
PKGBUILD
1 offending line(s) highlighted
1
pkgname=ieda-git
2
pkgver=r4766.699a03ec6
3
pkgrel=1
4
pkgdesc='An open-source EDA infracstructure and tools from Netlist to GDS for ASIC design'
5
arch=('x86_64')
6
url='https://ieda.oscc.cc/'
7
license=('MulanPSL-2.0')
8
depends=('boost-libs' 'tcl' 'gflags' 'google-glog' 'python' 'zlib' 'eigen' 'libunwind' 'gmp' 'gtest' 'curl' 'qt5-base' 'onetbb')
9
makedepends=('git' 'cmake' 'boost' 'swig' 'bison' 'flex' 'rust' 'ninja')
10
source=(
11
'git+https://gitee.com/oscc-project/iEDA'
12
'git+https://gitee.com/li-jinyuan/LSAssigner4iEDA'
13
'cmakelists.patch'
14
'source.patch'
15
)
16
17
sha256sums=(
18
'SKIP'
19
'SKIP'
20
'36c25b99fe91db0e993321b83d5eb75058a470de61c1d4081b9d5ee96de3182b'
21
'e59bac17f884ab1d0dbcc4d81c10fa0ce3206ac8bebc4455ae2279606aef2dbc'
22
)
23
24
pkgver() {
25
cd $srcdir/iEDA
26
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
27
}
28
29
prepare() {
30
cd $srcdir/iEDA
31
git submodule init
32
git config submodule.module/src/third_party/LSAssigner4iEDA.url $srcdir/LSAssigner4iEDA
33
git -c protocol.file.allow=always submodule update src/third_party/LSAssigner4iEDA
34
git apply $srcdir/cmakelists.patch
35
git apply $srcdir/source.patch
36
}
37
38
build() {
39
cd "$srcdir"/iEDA
40
cmake -B build \
41
-DCMD_BUILD=ON \
42
-DBUILD_GUI=ON \
43
-DBUILD_STATIC_LIB=OFF \
44
-DCMAKE_RUNTIME_OUTPUT_DIRECTORY="$srcdir"/iEDA/bin \
45
-DCMAKE_BUILD_TYPE=Release \
46
-Wno-dev
47
cmake --build build --target all
48
}
49
50
package() {
51
mkdir -p "$pkgdir"/usr/lib/ieda/
52
find "$srcdir"/iEDA/build -iname '*.so' -exec install -Dm 755 {} "$pkgdir"/usr/lib/ieda/ ';'
53
find "$srcdir"/iEDA/bin -iname '*.so' -exec install -Dm 755 {} "$pkgdir"/usr/lib/ieda/ ';'
54
find "$pkgdir"/usr/lib/ieda/ -iname '*.so' -exec patchelf --set-rpath '$ORIGIN' {} ';'
55
mkdir -p "$pkgdir"/usr/bin/
56
for bin in iEDA iSTA iIR iPower; do
57
patchelf --set-rpath '$ORIGIN/../lib/ieda' "$srcdir"/iEDA/bin/"$bin"
58
install -Dm 755 "$srcdir"/iEDA/bin/"$bin" "$pkgdir"/usr/bin/
59
done
60
mkdir -p "$pkgdir"/usr/share/licenses/ieda-git/
61
install -Dm 644 "$srcdir"/iEDA/LICENSE "$pkgdir"/usr/share/licenses/ieda-git/
62
}
63
64
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 |