From 080f32a3a3e1b3044880ce5fac84dc01dabc4f0e Mon Sep 17 00:00:00 2001 From: David P Date: Wed, 16 May 2018 15:17:31 -0400 Subject: remove deprecated [libre] packages Signed-off-by: David P --- libre/luxmark/PKGBUILD | 54 ---------------------------------------- libre/luxmark/exepath.diff | 15 ----------- libre/luxmark/system_scenes.diff | 21 ---------------- 3 files changed, 90 deletions(-) delete mode 100644 libre/luxmark/PKGBUILD delete mode 100644 libre/luxmark/exepath.diff delete mode 100644 libre/luxmark/system_scenes.diff (limited to 'libre/luxmark') diff --git a/libre/luxmark/PKGBUILD b/libre/luxmark/PKGBUILD deleted file mode 100644 index 2ffe96734..000000000 --- a/libre/luxmark/PKGBUILD +++ /dev/null @@ -1,54 +0,0 @@ -# $Id: PKGBUILD 207918 2017-01-18 20:07:48Z stativ $ -# Maintainer: Lukas Jirkovsky -# Maintainer (Hyperbola): Márcio Silva -# Maintainer: Omar Vega Ramos -pkgname=luxmark -pkgver=3.1 -_scenever=3.1beta3 -_pkgver=21d445746802 -pkgrel=4.parabola2 -pkgdesc="OpenCL benchmark tool, with opencl-mesa recommendation" -arch=('x86_64') # because of embree only x86_64 is supported -url="http://www.luxrender.net/" -license=('GPL3') -depends=('boost-libs' 'embree' 'freetype2' 'freeglut' 'glew' 'opencl-icd-loader' 'libgl' 'libpng' 'openimageio' 'qt4') -makedepends=('cmake' 'boost' 'luxrays' 'mesa' 'opencl-headers' 'freeglut') -optdepends=('opencl-mesa: OpenCL support for AMD/ATI GPUs') -source=($pkgname-$pkgver.tar.bz2::https://bitbucket.org/luxrender/luxmark/get/${_pkgver}.tar.bz2 \ - https://bitbucket.org/luxrender/luxmark/downloads/scenes-v${_scenever}.zip \ - fix_includes.diff::https://bitbucket.org/luxrender/luxmark/commits/b7f5c9475c14b91364835d6a253f43400b7d98cb/raw/ \ - system_scenes.diff exepath.diff) -sha256sums=('af1600ebac738188fec092fc4e3f7e3ecdff29ffb9b1cfa656b970e575fb6767' - 'c5b93e682d44dd1a43e61c1d8d131c364dc285ddba70ddd2036c730663f0e875' - '796aa9c89bbef57d595d2097347a502e9f988790b43fe5911e024ae0707311d0' - '489cee3660427676eaf657e41b2f9a64eb4b7e1b0163fdf09286435339cf692f' - '666e48e92e4f9928e8197d4e0365e7ee640adf2ff9fbb5d09586e1951e54667f') - -prepare() { - cd "$srcdir"/luxrender-luxmark-$_pkgver - - patch -Np1 < "$srcdir/system_scenes.diff" - # fix includes for luxrays 1.6 - patch -Np1 < "$srcdir/fix_includes.diff" - # fix exepath for the VR mode to work - patch -Np1 < "$srcdir/exepath.diff" -} - -build() { - cd "$srcdir/luxrender-luxmark-$_pkgver" - - cmake -DCMAKE_INSTALL_PREFIX=/usr \ - -DCMAKE_SKIP_RPATH=ON \ - . - make -} - -package() { - cd "$srcdir/luxrender-luxmark-$_pkgver" - install -D -m755 bin/luxmark "$pkgdir"/usr/bin/luxmark - - install -d "$pkgdir/usr/share/luxmark" - cp -a "$srcdir/scenes" "$pkgdir/usr/share/luxmark" -} - -# vim:set ts=2 sw=2 et: diff --git a/libre/luxmark/exepath.diff b/libre/luxmark/exepath.diff deleted file mode 100644 index bf135fec6..000000000 --- a/libre/luxmark/exepath.diff +++ /dev/null @@ -1,15 +0,0 @@ -diff --git a/src/luxmarkapp.cpp b/src/luxmarkapp.cpp ---- a/src/luxmarkapp.cpp -+++ b/src/luxmarkapp.cpp -@@ -90,10 +90,7 @@ - } - exePath = boost::filesystem::path(boost::filesystem::initial_path()); - #else -- -- // Look for the directory where Lux executables are -- const boost::filesystem::path luxMarkExe(argv[0]); -- exePath = boost::filesystem::absolute(luxMarkExe).parent_path(); -+ exePath = "/usr/bin"; - #endif - } - diff --git a/libre/luxmark/system_scenes.diff b/libre/luxmark/system_scenes.diff deleted file mode 100644 index f55ec1951..000000000 --- a/libre/luxmark/system_scenes.diff +++ /dev/null @@ -1,21 +0,0 @@ -diff -rup luxrender-luxmark-985b948aa5c7/src/main.cpp luxrender-luxmark-985b948aa5c7.new/src/main.cpp ---- luxrender-luxmark-985b948aa5c7/src/main.cpp 2015-02-25 10:46:48.000000000 +0100 -+++ luxrender-luxmark-985b948aa5c7.new/src/main.cpp 2015-03-12 23:01:53.971856726 +0100 -@@ -125,16 +125,7 @@ int main(int argc, char **argv) { - return EXIT_SUCCESS; - else { - app.Init(mode, scnName, singleRun, singleRunExtInfo); -- -- // If current directory doesn't have the "scenes" directory, move -- // to where the executable is -- if (!boost::filesystem::exists("./scenes")) { -- // Look for the directory where LuxMark executable is installed -- boost::filesystem::path exePath(boost::filesystem::initial_path()); -- exePath = boost::filesystem::system_complete(boost::filesystem::path(argv[0])).parent_path(); -- // Set the current directory to where the binary is -- boost::filesystem::current_path(exePath); -- } -+ boost::filesystem::current_path("/usr/share/luxmark"); - - // Force C locale - setlocale(LC_NUMERIC, "C"); -- cgit v1.2.3