diff options
author | Francesco Colista <fcolista@alpinelinux.org> | 2018-12-26 11:02:13 +0000 |
---|---|---|
committer | Francesco Colista <fcolista@alpinelinux.org> | 2018-12-26 11:02:33 +0000 |
commit | 5b6116a91e5d664ecd2462652e04d5179d7bcf34 (patch) | |
tree | 14447e34beeac3ec54f6df160a2f5de038eb3f9a /testing | |
parent | de10b878d55aded5ac5774dc4b00aaa165425e9e (diff) | |
download | aports-5b6116a91e5d664ecd2462652e04d5179d7bcf34.tar.bz2 aports-5b6116a91e5d664ecd2462652e04d5179d7bcf34.tar.xz |
main/libell: moved to main because of a new bluez dependency
Diffstat (limited to 'testing')
-rw-r--r-- | testing/libell/APKBUILD | 36 | ||||
-rw-r--r-- | testing/libell/fix-WAIT_ANY-test-dbus.patch | 44 |
2 files changed, 0 insertions, 80 deletions
diff --git a/testing/libell/APKBUILD b/testing/libell/APKBUILD deleted file mode 100644 index 8d28a2d5d9..0000000000 --- a/testing/libell/APKBUILD +++ /dev/null @@ -1,36 +0,0 @@ -# Maintainer: Pedro Filipe <xpecex@outlook.com> -pkgname=libell -pkgver=0.16 -pkgrel=0 -pkgdesc="The Embedded Linux* Library (ELL) provides core, low-level functionality for system daemons." -url="https://01.org/ell" -arch="all" -license="GPL-2.1" -makedepends="libnl3-dev dbus linux-headers" -subpackages="$pkgname-dev" -source="https://mirrors.edge.kernel.org/pub/linux/libs/ell/ell-$pkgver.tar.xz - fix-WAIT_ANY-test-dbus.patch - " -builddir="$srcdir/ell-$pkgver" -options="!check" # testsuite shows unknown error in unit/test-cipher - -build() { - cd "$builddir" - ./configure \ - --build=$CBUILD \ - --host=$CHOST \ - --prefix=/usr \ - --sysconfdir=/etc \ - --mandir=/usr/share/man \ - --infodir=/usr/share/info \ - --localstatedir=/var - make -} - -package() { - cd "$builddir" - make DESTDIR="$pkgdir" install -} - -sha512sums="bf2b4c8b50841ce8eb5e90ab9fd76f0e8fa1993e7dab0a45a50c21f33537fd110f0bbf1326c6e4cefeb6b95b8db5874c2802ec957b47173fe3681f2522fa5816 ell-0.16.tar.xz -456f49b0f9c5ff93b1af2221d59f224b7b61847360e3f25b0d42af733fc4b296d30bb50349e00437c6e235c0bacba74c1a5b502dcc1b0c4bdbc38f101b3d4220 fix-WAIT_ANY-test-dbus.patch" diff --git a/testing/libell/fix-WAIT_ANY-test-dbus.patch b/testing/libell/fix-WAIT_ANY-test-dbus.patch deleted file mode 100644 index 27c86eaa66..0000000000 --- a/testing/libell/fix-WAIT_ANY-test-dbus.patch +++ /dev/null @@ -1,44 +0,0 @@ ---- a/unit/test-dbus.c -+++ b/unit/test-dbus.c -@@ -32,6 +32,10 @@ - - #define TEST_BUS_ADDRESS "unix:path=/tmp/ell-test-bus" - -+#ifndef WAIT_ANY -+#define WAIT_ANY (-1) -+#endif -+ - static pid_t dbus_daemon_pid = -1; - - static void start_dbus_daemon(void) - - ---- a/unit/test-dbus-message-fds.c -+++ b/unit/test-dbus-message-fds.c -@@ -37,6 +37,10 @@ - - #define TEST_BUS_ADDRESS "unix:path=/tmp/ell-test-bus" - -+#ifndef WAIT_ANY -+#define WAIT_ANY (-1) -+#endif -+ - static pid_t dbus_daemon_pid = -1; - - static bool start_dbus_daemon(void) - - ---- a/unit/test-dbus-properties.c -+++ b/unit/test-dbus-properties.c -@@ -34,6 +34,10 @@ - - #define TEST_BUS_ADDRESS "unix:path=/tmp/ell-test-bus" - -+#ifndef WAIT_ANY -+#define WAIT_ANY (-1) -+#endif -+ - static pid_t dbus_daemon_pid = -1; - - static bool start_dbus_daemon(void) - |