diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-11-26 22:57:03 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-11-27 13:19:25 +0100 |
commit | c336381eb35c0bcd385562f8ca44f79c76dddcd8 (patch) | |
tree | 49a99900c4ed26bd848723f10a66d9f51a799e3e /main | |
parent | 1d9537e04df963e3c143320398747e071ec69795 (diff) | |
download | aports-c336381eb35c0bcd385562f8ca44f79c76dddcd8.tar.bz2 aports-c336381eb35c0bcd385562f8ca44f79c76dddcd8.tar.xz |
main/gettext: drop dependency on xz
Diffstat (limited to 'main')
-rw-r--r-- | main/gettext/APKBUILD | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/main/gettext/APKBUILD b/main/gettext/APKBUILD index 460aab54c9..2cd7911fd7 100644 --- a/main/gettext/APKBUILD +++ b/main/gettext/APKBUILD @@ -3,17 +3,16 @@ # Maintainer: Carlo Landmeter <clandmeter@gmail.com> pkgname=gettext pkgver=0.20.1 -pkgrel=1 +pkgrel=2 pkgdesc="GNU locale utilities" url="https://www.gnu.org/software/gettext/gettext.html" arch="all" -license="GPL-3.0+ AND LGPL-2.1+ AND MIT" +license="GPL-3.0-or-later AND LGPL-2.1-or-later AND MIT" # do _not_ add the optional dependencies on libcroco or glib # they depend on gettext and would introduce cyclic dependencies -depends="xz" makedepends="perl ncurses-dev libxml2-dev libunistring-dev" checkdepends="coreutils" -source="https://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.xz +source="https://ftp.gnu.org/gnu/gettext/gettext-$pkgver.tar.xz skip-tests-musl.patch" subpackages="$pkgname-dbg $pkgname-doc $pkgname-static $pkgname-dev $pkgname-lang libintl $pkgname-asprintf $pkgname-libs" @@ -22,8 +21,6 @@ subpackages="$pkgname-dbg $pkgname-doc $pkgname-static $pkgname-dev $pkgname-lan # - CVE-2018-18751 build() { - cd "$builddir" - # force using system posix complaint printf # the test is broken and fails with ash gt_cv_func_printf_posix=yes \ @@ -38,13 +35,11 @@ build() { } check() { - cd "$builddir" # test-verify fails if run in parallel make -j1 check } package() { - cd "$builddir" make -j1 DESTDIR="$pkgdir" install } |