Deleted package: systemtap
Moved to [extra]
This commit is contained in:
parent
997cf996ce
commit
c515f3e3ba
3 changed files with 0 additions and 93 deletions
|
@ -1,23 +0,0 @@
|
||||||
pkgbase = systemtap
|
|
||||||
pkgdesc = Infrastructure to simplify the gathering of information about the running Linux system
|
|
||||||
pkgver = 5.1
|
|
||||||
pkgrel = 1
|
|
||||||
url = https://sourceware.org/systemtap/
|
|
||||||
install = systemtap.install
|
|
||||||
arch = x86_64
|
|
||||||
license = GPL-2.0-or-later
|
|
||||||
makedepends = python-setuptools
|
|
||||||
makedepends = xmlto
|
|
||||||
depends = elfutils
|
|
||||||
depends = nss
|
|
||||||
depends = python
|
|
||||||
depends = cpio
|
|
||||||
optdepends = sqlite3: for storing results in a database
|
|
||||||
options = !emptydirs
|
|
||||||
source = https://sourceware.org/ftp/systemtap/releases/systemtap-5.1.tar.gz
|
|
||||||
source = https://sourceware.org/ftp/systemtap/releases/systemtap-5.1.tar.gz.asc
|
|
||||||
validpgpkeys = 41A0C11274B1E87FE28E4C53E3D77E1F95161991
|
|
||||||
sha512sums = da0fe237d2124031a5786d1221dbb420d90da5497376715fd43a7a9f61a354a229c1128e67ce6becbc012aa3796dc5d337149e239e3c1def0651b179e5bf199f
|
|
||||||
sha512sums = SKIP
|
|
||||||
|
|
||||||
pkgname = systemtap
|
|
|
@ -1,52 +0,0 @@
|
||||||
# Maintainer: Manuel Hüsers <aur@huesers.de>
|
|
||||||
# Contributor: Christian Pellegrin (chripell) <chripell@fsfe.org>
|
|
||||||
# Contributor: An Nguyen (stk) <an@linux.com>
|
|
||||||
# Contributor: George Angelopoulos <george@usermod.net>
|
|
||||||
# Contributor: Christian Rebischke <Chris.Rebischke@archlinux.org>
|
|
||||||
# Contributor: dront78 <dront78@gmail.com>
|
|
||||||
|
|
||||||
pkgname=systemtap
|
|
||||||
pkgver=5.1
|
|
||||||
pkgrel=1
|
|
||||||
pkgdesc="Infrastructure to simplify the gathering of information about the running Linux system"
|
|
||||||
url="https://sourceware.org/systemtap/"
|
|
||||||
arch=('x86_64')
|
|
||||||
license=('GPL-2.0-or-later')
|
|
||||||
depends=('elfutils' 'nss' 'python' 'cpio')
|
|
||||||
makedepends=('python-setuptools' 'xmlto')
|
|
||||||
optdepends=('sqlite3: for storing results in a database')
|
|
||||||
options=('!emptydirs')
|
|
||||||
install="${pkgname}.install"
|
|
||||||
source=("https://sourceware.org/ftp/${pkgname}/releases/${pkgname}-${pkgver}.tar.gz"{,.asc})
|
|
||||||
sha512sums=('da0fe237d2124031a5786d1221dbb420d90da5497376715fd43a7a9f61a354a229c1128e67ce6becbc012aa3796dc5d337149e239e3c1def0651b179e5bf199f'
|
|
||||||
'SKIP')
|
|
||||||
|
|
||||||
validpgpkeys=('41A0C11274B1E87FE28E4C53E3D77E1F95161991')
|
|
||||||
|
|
||||||
build() {
|
|
||||||
cd "${pkgname}-${pkgver}"
|
|
||||||
./configure \
|
|
||||||
--prefix=/usr \
|
|
||||||
--sysconfdir=/etc \
|
|
||||||
--libexecdir=/usr/lib/"${pkgname}" \
|
|
||||||
--libdir=/usr/lib/"${pkgname}" \
|
|
||||||
--mandir=/usr/share/man/ \
|
|
||||||
--sbindir=/usr/bin \
|
|
||||||
--localstatedir=/var \
|
|
||||||
--enable-pie \
|
|
||||||
--disable-docs \
|
|
||||||
--enable-htmldocs \
|
|
||||||
--with-python3
|
|
||||||
make
|
|
||||||
}
|
|
||||||
|
|
||||||
check() {
|
|
||||||
cd "${pkgname}-${pkgver}"
|
|
||||||
make check
|
|
||||||
}
|
|
||||||
|
|
||||||
package() {
|
|
||||||
cd "${pkgname}-${pkgver}"
|
|
||||||
make DESTDIR="${pkgdir}" install
|
|
||||||
rm -r "${pkgdir}/usr/include/sys"
|
|
||||||
}
|
|
|
@ -1,18 +0,0 @@
|
||||||
post_install() {
|
|
||||||
getent group stapusr >/dev/null || groupadd -g 156 -r stapusr 2>/dev/null || groupadd -r stapusr
|
|
||||||
getent group stapsys >/dev/null || groupadd -g 157 -r stapsys 2>/dev/null || groupadd -r stapsys
|
|
||||||
getent group stapdev >/dev/null || groupadd -g 158 -r stapdev 2>/dev/null || groupadd -r stapdev
|
|
||||||
|
|
||||||
getent group stapusr >/dev/null && chgrp stapusr /usr/bin/stapbpf
|
|
||||||
chmod 04110 /usr/bin/stapbpf
|
|
||||||
|
|
||||||
getent group stapusr >/dev/null && chgrp stapusr /usr/bin/staprun
|
|
||||||
chmod 04110 /usr/bin/staprun
|
|
||||||
|
|
||||||
echo "CONFIG_DEBUG_INFO is disabled on default. You need to recompile"
|
|
||||||
echo "the kernel with CONFIG_DEBUG_INFO enabled."
|
|
||||||
}
|
|
||||||
|
|
||||||
post_upgrade() {
|
|
||||||
post_install $1
|
|
||||||
}
|
|
Loading…
Reference in a new issue