conan
MEDIUM
maintainer tiziodcaio
80 votes
scanned 2026-09-13 19:15:06.142757
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: John Luebs
2
3
pkgname=('conan')
4
pkgver=2.28.1
5
pkgrel=1
6
pkgdesc="A distributed, open source, C/C++ package manager."
7
arch=('any')
8
url="https://conan.io"
9
license=('MIT')
10
makedepends=('python-setuptools' 'python-build' 'python-installer' 'python-wheel' 'patch')
11
depends=('python-requests>=2.25'
12
'python-urllib3>=1.26.6'
13
'python-colorama>=0.4.3'
14
'python-yaml>=6.0'
15
'python-patch-ng>=1.18.0'
16
'python-fasteners>=0.15'
17
'python-distro>=1.4.0'
18
'python-jinja>=3.0'
19
'python-dateutil>=2.8.0')
20
conflicts=('conan1')
21
22
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/conan-io/conan/archive/${pkgver}.tar.gz")
23
sha256sums=('27e920b16e87631f64a7b30c63e2e75479955171a1a6a481be64fa8a3cda8e7c')
24
25
prepare() {
26
cd $pkgname-$pkgver
27
# Remove maximum version constraints
28
sed -i -r 's|(.*),.*|\1|g' conans/requirements.txt
29
sed -i -r 's|(.*),.*|\1|g' conans/requirements_server.txt
30
sed -i -r 's|(.*),.*|\1|g' conans/requirements_dev.txt
31
}
32
33
build() {
34
cd $pkgname-$pkgver
35
python -m build --wheel --no-isolation
36
}
37
38
package() {
39
cd $pkgname-$pkgver
40
python -m installer --destdir="$pkgdir" dist/*.whl
41
install -m755 -d "${pkgdir}/usr/share/licenses/conan"
42
install -m644 LICENSE.md "${pkgdir}/usr/share/licenses/conan/"
43
install -m755 -d "${pkgdir}/usr/share/doc/conan"
44
install -m644 contributors.txt "${pkgdir}/usr/share/doc/conan/"
45
}
46
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-13 19:15:06 | Medium | 1 |
| 2026-06-18 16:11:54 | Clean | 0 |