cpl
The package builds from source tarballs hosted on the official ESO FTP server, a plausible project-owned host, and includes a non-executable shell script for environment setup; the non-whitelisted host is actually a legitimate project domain, and all built components are from verifiable upstream sources.
Triggered rules
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 source tarballs hosted on the official ESO FTP server, a plausible project-owned host, and includes a non-executable shell script for environment setup; the non-whitelisted host is actually a legitimate project domain, and all built components are from verifiable upstream sources.
2 higher static findings superseded - not the current verdict (shown for transparency)
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:16
source=(ftp://ftp.eso.org/pub/dfs/pipelines/libraries/cpl/cpl-${pkgver}.tar.gz
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 offending line(s) highlighted# Maintainer: masutu < masutu dot arch at gmail dot com >
# Contributor: Yigit Dallilar <yigit.dallilar@gmail.com>
pkgname=cpl
pkgver=7.4
pkgrel=1
#lock the versions
_wcs_ver=8.5
_cfitsio_ver=4.6.3
_fftw_ver=3.3.10
pkgdesc="ESO Common Pipeline Library"
url="https://www.eso.org/sci/software/cpl/index.html"
arch=('x86_64')
license=('GPL2')
depends=(gsl)
source=(ftp://ftp.eso.org/pub/dfs/pipelines/libraries/cpl/cpl-${pkgver}.tar.gz
https://ftp.eso.org/pub/dfs/pipelines/libraries/cfitsio/cfitsio-${_cfitsio_ver}.tar.gz
https://ftp.eso.org/pub/dfs/pipelines/libraries/wcslib/wcslib-${_wcs_ver}.tar.bz2
https://ftp.eso.org/pub/dfs/pipelines/libraries/fftw/fftw-${_fftw_ver}.tar.gz
cpl.sh)
md5sums=('26930526738069a72c1b607f8a3ddacd'
'1f95e471cf89403ff877ab58a788ad69'
'07b188f67739a621101103f92ccf52cc'
'8ccbf6a5ea78a16dbc3e1306e234cc5c'
'SKIP')
build_cfitsio () {
cd ${srcdir}/cfitsio-${_cfitsio_ver}
./configure --prefix=${srcdir}/build --enable-reentrant --enable-shared
make
make install
}
build_wcslib () {
cd ${srcdir}/wcslib-${_wcs_ver}
./configure --prefix=${srcdir}/build --without-pgplot --with-x --with-cfitsiolib=${srcdir}/lib --with-cfitsioinc=${srcdir}/include --disable-fortran
make
make install
}
build_fftw () {
cd ${srcdir}/fftw-${_fftw_ver}
./configure --prefix=${srcdir}/build --enable-openmp --enable-threads --enable-avx --enable-sse2 --disable-fortran --enable-shared --enable-float
make
make install
make clean
./configure --prefix=${srcdir}/build --enable-openmp --enable-threads --enable-avx --enable-sse2 --disable-fortran --enable-shared
make
make install
}
build () {
build_cfitsio
build_wcslib
build_fftw
export LD_LIBRARY_PATH=${srcdir}/build/lib:${LD_LIBRARY_PATH}
export C_INCLUDE_PATH=${srcdir}/build/include:${C_INCLUDE_PATH}
export CFITSIODIR=${srcdir}/build
export WCSDIR=${srcdir}/build
export FFTWDIR=${srcdir}/build
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=${pkgdir}/opt/esopipes --with-fftw=${FFTWDIR} CPPFLAGS="-DCX_DISABLE_ASSERT -DL2_CACHE_BYTES=0" --with-system-cext=no
make
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}
make install
install -D -m644 COPYING "${pkgdir}/share/licenses/${pkgname}/LICENSE"
install -D -m755 ${srcdir}/cpl.sh ${pkgdir}/etc/profile.d/cpl.sh
cp -a ${srcdir}/build/* ${pkgdir}/opt/esopipes/
install -d "$pkgdir/opt/esopipes/lib/esopipes-plugins"
}
# vim:set ts=4 sw=4 et:
Changes since previous scan
--- PKGBUILD @ 2026-06-19 19:07+++ PKGBUILD @ 2026-08-26 00:12@@ -1,39 +1,33 @@-# Maintainer: Yigit Dallilar <yigit.dallilar@gmail.com>+# Maintainer: masutu < masutu dot arch at gmail dot com >+# Contributor: Yigit Dallilar <yigit.dallilar@gmail.com> pkgname=cpl-pkgver=7.1.4-pkgrel=3+pkgver=7.4+pkgrel=1 #lock the versions-_wcs_ver=7.6-_cfitsio_ver=3.49-_fftw_ver=3.3.9+_wcs_ver=8.5+_cfitsio_ver=4.6.3+_fftw_ver=3.3.10 pkgdesc="ESO Common Pipeline Library" url="https://www.eso.org/sci/software/cpl/index.html" arch=('x86_64') license=('GPL2') depends=(gsl)-makedepends=(gsl)-provides=()-conflicts=()-replaces=()-backup=() source=(ftp://ftp.eso.org/pub/dfs/pipelines/libraries/cpl/cpl-${pkgver}.tar.gz https://ftp.eso.org/pub/dfs/pipelines/libraries/cfitsio/cfitsio-${_cfitsio_ver}.tar.gz https://ftp.eso.org/pub/dfs/pipelines/libraries/wcslib/wcslib-${_wcs_ver}.tar.bz2 https://ftp.eso.org/pub/dfs/pipelines/libraries/fftw/fftw-${_fftw_ver}.tar.gz cpl.sh) -md5sums=('fd172d323a94dce2624b5d9b8014f21a'- '171860ffed8c1a396fc497d853f285c1'- '8fea0d68e0a0d3946c2c39d62f7198a2'- '50145bb68a8510b5d77605f11cadf8dc'- SKIP)-+md5sums=('26930526738069a72c1b607f8a3ddacd'+ '1f95e471cf89403ff877ab58a788ad69'+ '07b188f67739a621101103f92ccf52cc'+ '8ccbf6a5ea78a16dbc3e1306e234cc5c'+ 'SKIP') build_cfitsio () { cd ${srcdir}/cfitsio-${_cfitsio_ver}- ./configure --prefix=${srcdir}/build --enable-reentrant --enable-sse2 --enable-ssse3+ ./configure --prefix=${srcdir}/build --enable-reentrant --enable-shared make- make shared make install } @@ -66,10 +60,9 @@ export FFTWDIR=${srcdir}/build cd ${srcdir}/${pkgname}-${pkgver}- ./configure --prefix=${pkgdir}/opt/esopipes --with-fftw=${FFTWDIR} CPPFLAGS="-DCX_DISABLE_ASSERT -DL2_CACHE_BYTES=0"+ ./configure --prefix=${pkgdir}/opt/esopipes --with-fftw=${FFTWDIR} CPPFLAGS="-DCX_DISABLE_ASSERT -DL2_CACHE_BYTES=0" --with-system-cext=no make }- package() { @@ -78,8 +71,8 @@ install -D -m644 COPYING "${pkgdir}/share/licenses/${pkgname}/LICENSE" install -D -m755 ${srcdir}/cpl.sh ${pkgdir}/etc/profile.d/cpl.sh - cp -aR ${srcdir}/build/* ${pkgdir}/opt/esopipes/- + cp -a ${srcdir}/build/* ${pkgdir}/opt/esopipes/+ install -d "$pkgdir/opt/esopipes/lib/esopipes-plugins" } # vim:set ts=4 sw=4 et:Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-26 00:12:07 | Low | 3 |
| 2026-08-25 23:28:42 | Medium | 2 |
| 2026-06-19 19:07:35 | Clean | 2 |
| 2026-06-18 16:11:54 | Medium | 1 |