Andreas Radke pushed to branch main at Arch Linux / Packaging / Packages / ell
Commits:
c06d65ed by Andreas Radke at 2024-06-03T21:50:16+02:00
upgpkg: 0.66-1; disable two failing tests - no tcp conections in chroot builds
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,6 +1,6 @@
pkgbase = ell
pkgdesc = Embedded Linux library
- pkgver = 0.65
+ pkgver = 0.66
pkgrel = 1
url = https://01.org/ell
arch = x86_64
@@ -9,10 +9,10 @@ pkgbase = ell
checkdepends = procps-ng
depends = gcc-libs
depends = glibc
- source =
https://mirrors.edge.kernel.org/pub/linux/libs/ell/ell-0.65.tar.xz
- source =
https://mirrors.edge.kernel.org/pub/linux/libs/ell/ell-0.65.tar.sign
+ source =
https://mirrors.edge.kernel.org/pub/linux/libs/ell/ell-0.66.tar.xz
+ source =
https://mirrors.edge.kernel.org/pub/linux/libs/ell/ell-0.66.tar.sign
validpgpkeys = E932D120BC2AEC444E558F0106CA9F5D1DCF2659
- sha256sums =
9ee7ac57b188d391cead705d3596a6d3240341786475149db297782a52269aa5
+ sha256sums =
7a78b757080ed6518c1c4fa26ad6a7a3d6e4e385386a20b6fb52379e7d1ffa36
sha256sums = SKIP
pkgname = ell
=====================================
PKGBUILD
=====================================
@@ -2,7 +2,7 @@
# Contributor: Jameson Pugh <[email protected]>
pkgname=ell
-pkgver=0.65
+pkgver=0.66
pkgrel=1
pkgdesc="Embedded Linux library"
arch=(x86_64)
@@ -13,10 +13,20 @@ depends=('gcc-libs' 'glibc')
checkdepends=('dbus' 'procps-ng')
# https://mirrors.edge.kernel.org/pub/linux/libs/ell/sha256sums.asc
source=(https://mirrors.edge.kernel.org/pub/linux/libs/$pkgname/$pkgname-$pkgver.tar.{xz,sign})
-sha256sums=('9ee7ac57b188d391cead705d3596a6d3240341786475149db297782a52269aa5'
+sha256sums=('7a78b757080ed6518c1c4fa26ad6a7a3d6e4e385386a20b6fb52379e7d1ffa36'
'SKIP')
validpgpkeys=('E932D120BC2AEC444E558F0106CA9F5D1DCF2659') # "Marcel Holtmann
<[email protected]>"
+prepare() {
+ cd "$pkgname-$pkgver"
+ # don't run tests that fail in chroot build whith
+ # "Failed to start message bus: Failed to bind socket "0.0.0.0" port 140"
+ # unit/test-dbus-message-fds
+ # unit/test-dbus-properties
+ sed -i "217d;220d" Makefile.am
+ autoreconf -vfi
+}
+
build() {
cd "$pkgname-$pkgver"
./configure --prefix=/usr
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/ell/-/commit/c06d65edd23b7d009f87b7c91919705490632790
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/ell/-/commit/c06d65edd23b7d009f87b7c91919705490632790
You're receiving this email because of your account on gitlab.archlinux.org.