From 76738db8e4dd89a06b826a1c21d9e80a8c9aa888 Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Tue, 13 Oct 2020 09:40:15 +0200 Subject: [PATCH] ess: force -j1 build - SRCURL - rare race condition on build fixed by forcing -j1 --- ess.be0 | 56 +++++++------------------------------------------------- 1 file changed, 7 insertions(+), 49 deletions(-) diff --git a/ess.be0 b/ess.be0 index d9adb88c0..afa5494b3 100755 --- a/ess.be0 +++ b/ess.be0 @@ -1,44 +1,21 @@ #!/usr/bin/env beesh -# BEE_VERSION ess-18.10.2-0 +# BEE_VERSION ess-18.10.2-1 -## 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://ess.r-project.org/downloads/ess/ess-${PKGVERSION}.tgz" - -############################################################################### -## Add URLs/pathes to patch files to the PATCHURL array. -## The sources will be patched in the order of the array. +# SRCURL[0]="https://ess.r-project.org/downloads/ess/ess-${PKGVERSION}.tgz" +SRCURL[0]="https://beehive.molgen.mpg.de/5cc3cb67fbaaeb506e00100640674056/ess-18.10.2.tgz" # PATCHURL+=() -############################################################################### -## Uncomment the next statement, if the software may not be able to be built -## outside the source directory and needs to be built inside the source -## directory. +# not para build proof: +# ess-dde.el:34:1:Error: Loading file /dev/shm/mxqd/mnt/job/24527794/ess-18.10.2-0/buildroot/ess/ess-18.10.2-0/source/lisp/ess-custom.el failed to provide feature ‘ess-custom’ -# build_in_sourcedir +BEE_MAKEFLAGS='-j1 V=1' -############################################################################### -## 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. +# build_in_sourcedir # 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 "${@}" #} @@ -59,22 +36,3 @@ mee_install() { make install DESTDIR=${D}/${PREFIX} } # -## by default this may be 'make install DESTDIR="${D}"' - -############################################################################### -## -## 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[0] 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/ -##