Compare commits

...

2 Commits

Author SHA1 Message Date
Manuel 6edeb95575
upgpkg: systemtap 5.0-2: fix conflict, add check
* Fix filesystem conflict by excluding include files already provided by glibc
* Add make check target
2024-04-24 07:19:24 +02:00
Manuel 6405619721
upgpkg: clonezilla-unstable 5.6.2-1
upstream release
2024-04-24 07:19:02 +02:00
4 changed files with 13 additions and 7 deletions

View File

@ -1,6 +1,6 @@
pkgbase = clonezilla-unstable
pkgdesc = ncurses partition and disk imaging/cloning program
pkgver = 5.6.1
pkgver = 5.6.2
pkgrel = 1
url = https://clonezilla.org
arch = any
@ -29,9 +29,9 @@ pkgbase = clonezilla-unstable
provides = clonezilla
conflicts = clonezilla
backup = etc/drbl/drbl-ocs.conf
source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.1.tar.xz
source = https://free.nchc.org.tw/drbl-core/src/unstable/clonezilla-5.6.2.tar.xz
source = usrbin.patch
sha512sums = 0ebcfe7bd749998e4fc636333213e3ac6709eb8e06b94554edaafc36913da7abf3f95c73a7530b9b7e2e682f29d9e13f0d78f8014818f4a307760194694007ce
sha512sums = 197d4d17b099c4d2136020f102365d9f6c95468a8006b98c1e16214d8f2c6f8c6a42f513048b50081d401e0d96516c0a98e3cdf055f64685ba7f77e1a813e436
sha512sums = 39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac
pkgname = clonezilla-unstable

View File

@ -2,7 +2,7 @@
pkgname=clonezilla-unstable
_pkgname=clonezilla
pkgver=5.6.1
pkgver=5.6.2
pkgrel=1
pkgdesc="ncurses partition and disk imaging/cloning program"
arch=('any')
@ -16,7 +16,7 @@ conflicts=("${_pkgname}")
provides=("${_pkgname}")
source=("https://free.nchc.org.tw/drbl-core/src/unstable/${_pkgname}-${pkgver}.tar.xz"
'usrbin.patch')
sha512sums=('0ebcfe7bd749998e4fc636333213e3ac6709eb8e06b94554edaafc36913da7abf3f95c73a7530b9b7e2e682f29d9e13f0d78f8014818f4a307760194694007ce'
sha512sums=('197d4d17b099c4d2136020f102365d9f6c95468a8006b98c1e16214d8f2c6f8c6a42f513048b50081d401e0d96516c0a98e3cdf055f64685ba7f77e1a813e436'
'39e63eaa18ffaed7fe9a2dde449c8b57d4a3dc313024213881bd620d0011671bb7f8a0346df7c247c2da94f8d82afb669057cb05dd9cefffafb680826544d6ac')
prepare() {

View File

@ -1,7 +1,7 @@
pkgbase = systemtap
pkgdesc = Infrastructure to simplify the gathering of information about the running Linux system
pkgver = 5.0
pkgrel = 1
pkgrel = 2
url = https://sourceware.org/systemtap/
install = systemtap.install
arch = x86_64

View File

@ -7,7 +7,7 @@
pkgname=systemtap
pkgver=5.0
pkgrel=1
pkgrel=2
pkgdesc="Infrastructure to simplify the gathering of information about the running Linux system"
url="https://sourceware.org/systemtap/"
arch=('x86_64')
@ -40,7 +40,13 @@ build() {
make
}
check() {
cd "${pkgname}-${pkgver}"
make check
}
package() {
cd "${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
rm -r "${pkgdir}/usr/include/sys"
}