summaryrefslogtreecommitdiff
path: root/user/gcompat
diff options
context:
space:
mode:
Diffstat (limited to 'user/gcompat')
-rw-r--r--user/gcompat/APKBUILD8
-rw-r--r--user/gcompat/no-utmp.patch16
2 files changed, 3 insertions, 21 deletions
diff --git a/user/gcompat/APKBUILD b/user/gcompat/APKBUILD
index e6b142f84..ea2f13e15 100644
--- a/user/gcompat/APKBUILD
+++ b/user/gcompat/APKBUILD
@@ -1,9 +1,9 @@
# Maintainer: A. Wilcox <awilfox@adelielinux.org>
pkgname=gcompat
-pkgver=0.4.0
+pkgver=1.0.0
pkgrel=0
pkgdesc="The GNU C Library compatibility layer for musl"
-url="https://code.foxkit.us/adelie/gcompat"
+url="https://git.adelielinux.org/adelie/gcompat"
arch="all"
options="!check" # No test suite.
license="UoI-NCSA"
@@ -25,13 +25,11 @@ ppc64*) _ld="ld64.so.2" ;;
esac
build() {
- cd "$builddir"
make LINKER_PATH="/lib/ld-musl-${_link_arch}.so.1" LOADER_NAME="$_ld" WITH_LIBUCONTEXT=YesPlease
}
package() {
- cd "$builddir"
make LINKER_PATH="/lib/ld-musl-${_link_arch}.so.1" LOADER_NAME="$_ld" WITH_LIBUCONTEXT=YesPlease DESTDIR="$pkgdir" install
}
-sha512sums="32b4038a031b9af2d5febb547fe9268eb829f40bb2437c94afe5b939e06e7337448ad7f2dce34362829d19672ede54eec8fc34dc755736dbc76f347906ba5ead gcompat-0.4.0.tar.xz"
+sha512sums="61e355445571760b7cb8c8a828e7182544fefb403dca602f0b3756f39430974b5161517b0fdf4636a8a513be8e64d4dcb13553b28e9c7833f15c3b9871c94455 gcompat-1.0.0.tar.xz"
diff --git a/user/gcompat/no-utmp.patch b/user/gcompat/no-utmp.patch
deleted file mode 100644
index c5d2251b1..000000000
--- a/user/gcompat/no-utmp.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- gcompat-0.3.0/libgcompat/utmp.c.old 2018-09-05 02:26:02.850000000 +0000
-+++ gcompat-0.3.0/libgcompat/utmp.c 2018-09-21 21:39:17.350000000 +0000
-@@ -1,12 +1,11 @@
- #include <stddef.h> /* NULL */
--#include <utmp.h> /* struct utmp */
-
- /**
- * Get user accounting database entries.
- *
- * LSB 5.0: LSB-Core-generic/baselib-getutent-r-3.html
- */
--int getutent_r(struct utmp *buffer, struct utmp **result)
-+int getutent_r(void *buffer, void **result)
- {
- /* musl does not implement getutent(). */
- *result = NULL;