From 3a835d1d338f1a7ec4e4e6c62d17a4d27ee9d581 Mon Sep 17 00:00:00 2001 From: david Date: Wed, 19 Sep 2018 08:48:25 +0200 Subject: [PATCH] Julia: remove julia now available over /pkg https://github.molgen.mpg.de/mariux64/pkg-scripts/pull/27 https://github.molgen.mpg.de/mariux64/pkg-scripts/pull/26 --- julia.be0 | 97 ------------------------------------------------------- 1 file changed, 97 deletions(-) delete mode 100755 julia.be0 diff --git a/julia.be0 b/julia.be0 deleted file mode 100755 index 5da29889e..000000000 --- a/julia.be0 +++ /dev/null @@ -1,97 +0,0 @@ -#!/usr/bin/env beesh - -# BEE_VERSION julia-0.6.2-0 - -## this file was created by bee init and should be executed to build a -## bee-package. (Additional hints are located at the end of this file.) - -############################################################################### -## The source URL(s) define the location of the sources that will be -## downloaded. Version variables may be used to simplify reuse of this bee-file. - -SRCURL[0]="https://github.com/JuliaLang/julia/releases/download/v${PKGVERSION}/julia-${PKGVERSION}-full.tar.gz" - -############################################################################### -## Add URLs/pathes to patch files to the PATCHURL array. -## The sources will be patched in the order of the array. - -PATCHURL+=(/src/mariux/patches/julia-0001-Allow-OpenBLAS-NUM_THREADS-to-be-overwritten.patch) -PATCHURL+=(/src/mariux/patches/julia-0002-Start-up-OpenBLAS-with-1-thread-per-default.patch) -PATCHURL+=(/src/mariux/patches/julia-0003-Remove-html-docs.patch) - -############################################################################### -## Add filename patterns to the EXCLUDE array of files that should not -## be added to you package but may be present in the image directory. - -# EXCLUDE+=() - -############################################################################### -## Uncomment the next statement, if the software may not be able to be build -## outside the source directory and need to be build inside the source -## directory. - -# build_in_sourcedir - -############################################################################### -## bee cannot detect buildtypes specified in subdirectories. -## Sometimes packages "hide" the real sources in a subdirectory named -## 'src' or 'cmake' or .. -## use 'sourcesubdir_append' to specify this directory if known. - -# sourcesubdir_append src - - -############################################################################### -## Change the default (auto-detected) steps to -## extract, patch, configure/setup, build and install the software. -## Make sure the mee_install function does install everything to the -## image directory "${D}" - -#mee_extract() { -# bee_extract "${@}" -#} - -#mee_patch() { -# bee_patch "${@}" -#} - -#mee_configure() { -# bee_configure -#} - -mee_build() { - # - # Can't use bee_build here, because julias build system uses DOCDIR for - # own purpose. - # julias Makefile wants prefix lower case - # - start_cmd make ${BEE_MAKEFLAGS} prefix="${PREFIX}" MARCH=x86-64 \ - OPENBLAS_NUM_THREADS=80 -} - -mee_install() { - start_cmd make ${BEE_MAKEFLAGS} install prefix="${PREFIX}" DESTDIR=${D} MARCH=x86-64 -} - -mee_install_post() { - # https://github.com/JuliaLang/julia/issues/18106 - start_cmd patchelf --remove-rpath $D/$LIBDIR/julia/libpcre2-posix.so.1.0.1 -} - -############################################################################### -## -## Additional hints: -## -## The name of this bee-file should follow the following naming convention: -## pkgname-pkgversion-pkgrevision.bee -## -## You may remove all comments as long as SRCURL[${PKGVERSION}] is set. -## -## Everything in this file will be executed in a bash environment. -## -## Build the package by executing -## './pkg-version-N.bee' or -## 'beesh ./pkg-version-N.bee' -## -## see http://beezinga.org/ -##