diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-08-17 13:43:54 -0300 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-08-21 11:56:37 +0000 |
commit | 776c741bdc671ff8f5264a0a74a356ef1f1e97bb (patch) | |
tree | 847cc000efa0c587e801aa302c4916d5a3e7e00d /main/jasper | |
parent | c3827654c474f99d9f38da5787e152b45478dd4f (diff) | |
download | aports-776c741bdc671ff8f5264a0a74a356ef1f1e97bb.tar.bz2 aports-776c741bdc671ff8f5264a0a74a356ef1f1e97bb.tar.xz |
main/jasper: remove
fixes #10717
ref https://github.com/mdadams/jasper/issues/208
Diffstat (limited to 'main/jasper')
-rw-r--r-- | main/jasper/APKBUILD | 44 | ||||
-rw-r--r-- | main/jasper/disable-tests.patch | 15 | ||||
-rw-r--r-- | main/jasper/rpath.patch | 25 |
3 files changed, 0 insertions, 84 deletions
diff --git a/main/jasper/APKBUILD b/main/jasper/APKBUILD deleted file mode 100644 index ac90ae10c9..0000000000 --- a/main/jasper/APKBUILD +++ /dev/null @@ -1,44 +0,0 @@ -# Maintainer: Natanael Copa <ncopa@alpinelinux.org> -pkgname=jasper -pkgver=2.0.16 -pkgrel=0 -pkgdesc="A software-based implementation of the codec specified in the emerging JPEG-2000 Part-1 standard" -url="http://www.ece.uvic.ca/~mdadams/jasper/" -arch="all" -license="JasPer-2.0" -makedepends="libjpeg-turbo-dev cmake" -checkdepends="bash" -subpackages="$pkgname-dev $pkgname-doc $pkgname-libs" -source="$pkgname-$pkgver.tar.gz::https://github.com/mdadams/jasper/archive/version-${pkgver}.tar.gz - rpath.patch - disable-tests.patch" -builddir="$srcdir"/$pkgname-version-$pkgver - -# secfixes: -# 2.0.12-r1: -# - CVE-2017-1000050 - -build () { - mkdir "$builddir"/obj - cd "$builddir"/obj - cmake .. \ - -DCMAKE_BUILD_TYPE=Release \ - -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_INSTALL_LIBDIR=/usr/lib - - make -} - -check() { - cd "$builddir"/obj - make test -} - -package() { - cd "$builddir"/obj - make DESTDIR="$pkgdir" install -} - -sha512sums="b3bca227f833567c9061c4a29c0599784ed6a131b5cceddfd1696542d19add821eda445ce6d83782b454b266723b24d0f028cbc644a25c0e3a75304e615b34ee jasper-2.0.16.tar.gz -4fd85dda60412497ce9b9fc439cc78cc37216ea02bfcd00e2403d14be31f75c19532a31d45132ebb83dde3b31035277abb1b80bc523d9f7cb2f2018405997086 rpath.patch -05ff28b58a68ee2b7b2aef5fcaeff3d81f9558e0353e43de2be7363c63243d8f79efc0994e2afe1ae0f391ae7bde3c84b252fa89f25ae87162c46f6f2d36f349 disable-tests.patch" diff --git a/main/jasper/disable-tests.patch b/main/jasper/disable-tests.patch deleted file mode 100644 index 244aaf0103..0000000000 --- a/main/jasper/disable-tests.patch +++ /dev/null @@ -1,15 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 5f59d19..b439ce0 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -399,9 +399,6 @@ if (BASH_PROGRAM) - add_test(run_test_2 - "${BASH_PROGRAM}" "${CMAKE_CURRENT_BINARY_DIR}/test/bin/wrapper" - "${CMAKE_CURRENT_SOURCE_DIR}/test/bin/run_test_2") -- add_test(run_test_3 -- "${BASH_PROGRAM}" "${CMAKE_CURRENT_BINARY_DIR}/test/bin/wrapper" -- "${CMAKE_CURRENT_SOURCE_DIR}/test/bin/run_test_3") - add_test(run_test_4 - "${BASH_PROGRAM}" "${CMAKE_CURRENT_BINARY_DIR}/test/bin/wrapper" - "${CMAKE_CURRENT_SOURCE_DIR}/test/bin/run_test_4") - diff --git a/main/jasper/rpath.patch b/main/jasper/rpath.patch deleted file mode 100644 index 322ff837de..0000000000 --- a/main/jasper/rpath.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 5f59d19..9208c65 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -340,19 +340,6 @@ endif() - - if (JAS_ENABLE_SHARED) - -- # use, i.e. don't skip the full RPATH for the build tree -- set(CMAKE_SKIP_BUILD_RPATH FALSE) -- -- # when building, don't use the install RPATH already -- # (but later on when installing) -- set(CMAKE_BUILD_WITH_INSTALL_RPATH FALSE) -- -- set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib") -- -- # add the automatically determined parts of the RPATH -- # which point to directories outside the build tree to the install RPATH -- set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE) -- - # The RPATH to be used when installing, but only if it's not a - # system directory - list(FIND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES - |