Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
ess: force -j1 build
- SRCURL
- rare race condition on build fixed by forcing -j1
  • Loading branch information
wwwutz committed Oct 13, 2020
1 parent 3cf9897 commit 76738db
Showing 1 changed file with 7 additions and 49 deletions.
56 changes: 7 additions & 49 deletions 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 "${@}"
#}
Expand All @@ -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/
##

0 comments on commit 76738db

Please sign in to comment.