diff options
author | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2018-07-03 07:10:16 +0000 |
---|---|---|
committer | Roberto Oliveira <robertoguimaraes8@gmail.com> | 2018-07-03 07:10:16 +0000 |
commit | 4457e261cbb743606ace7067b8cdda856bb710f9 (patch) | |
tree | 9d9f7726d8794dab881bb59dbca1252ca6445bb0 /community/babl | |
parent | 6f687b7c15f4411a03fe034bff7a9b089d2da1a1 (diff) | |
download | aports-4457e261cbb743606ace7067b8cdda856bb710f9.tar.bz2 aports-4457e261cbb743606ace7067b8cdda856bb710f9.tar.xz |
community/babl: enable float-to-8bit test on s390x
float-to-8bit test seems to be fixed in babl 0.1.52 version.
Enabling it again.
Diffstat (limited to 'community/babl')
-rw-r--r-- | community/babl/APKBUILD | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/community/babl/APKBUILD b/community/babl/APKBUILD index 93dbaf25b3..1879dbfe60 100644 --- a/community/babl/APKBUILD +++ b/community/babl/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=babl pkgver=0.1.52 -pkgrel=0 +pkgrel=1 pkgdesc="Dynamic, any to any, pixel format conversion library" url="http://gegl.org/babl" arch="all" @@ -11,8 +11,6 @@ source="https://ftp.gimp.org/pub/babl/${pkgver%.*}/$pkgname-$pkgver.tar.bz2" build() { cd "$builddir" - # See: https://bugzilla.gnome.org/show_bug.cgi?id=790745 - [ "$CARCH" = "s390x" ] && sed -i -e 's/-Ofast//g' configure ./configure \ --build=$CBUILD \ --host=$CHOST \ @@ -22,13 +20,6 @@ build() { check() { cd "$builddir" - for i in float-to-8bit; do - cat > tests/$i <<- EOF - #!/bin/sh - echo Skipping test "$i" - EOF - chmod +x "tests/$i" - done make check } |