diff options
author | B. Watson <yalhcru@gmail.com> | 2022-04-08 19:30:23 -0400 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-04-09 15:45:13 +0700 |
commit | 4e9ef37f95214b4a705bcfe9801f8847f89900b9 (patch) | |
tree | 1da1194eb2868de6f0556b7f8287d91b472537a5 /system | |
parent | ae33d9aa6c9e275de7d711d29a9116084d929d30 (diff) |
system/apache-activemq: Remove wrong-architecture binaries.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system')
-rw-r--r-- | system/apache-activemq/apache-activemq.SlackBuild | 49 |
1 files changed, 35 insertions, 14 deletions
diff --git a/system/apache-activemq/apache-activemq.SlackBuild b/system/apache-activemq/apache-activemq.SlackBuild index 014ba0988f4f..45eb96048343 100644 --- a/system/apache-activemq/apache-activemq.SlackBuild +++ b/system/apache-activemq/apache-activemq.SlackBuild @@ -22,11 +22,15 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# 20220408 bkw: Modified by SlackBuilds.org, BUILD=2: +# - set ARCH correctly if it's not set in the environment. +# - on 32-bit, remove the 64-bit binaries (and vice versa). + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=apache-activemq VERSION=${VERSION:-5.14.5} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -35,17 +39,27 @@ ACTIVEMQ_UID=${ACTIVEMQ_UID:-253} ACTIVEMQ_GROUP=${ACTIVEMQ_GROUP:-activemq} ACTIVEMQ_GID=${ACTIVEMQ_GID:-253} -# i486 or x86_64 only -ARCH=${ARCH:-i486} +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 fi +# i?86 or x86_64 only +case "$ARCH" in + i?86) wrongbindir=linux-x86-64 ;; + x86_64) wrongbindir=linux-x86-32 ;; + *) echo "Unsupported ARCH $ARCH, only x86_64 and i?86 are supported." ; + exit 1 ;; +esac + TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} @@ -84,9 +98,9 @@ cd $PRGNAM-$VERSION chown -R root:root . find -L . \ \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ + -exec chmod 755 {} \+ -o \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; + -exec chmod 644 {} \+ # Worst file permissions ever seen in a package... find . -type d -exec chmod 755 {} \; @@ -98,7 +112,13 @@ mkdir -p $PKG/etc/activemq \ $PKG/var/{run,lib,log}/activemq cp -f conf/* $PKG/etc/activemq/ -rm -rf bin/macosx +rm -rf bin/macosx bin/$wrongbindir + +# 20220408 bkw: the binaries should be stripped, unless that breaks +# something. I don't know how to tell, so this is commented out. +# Maintainer of this build, please uncomment and check? +#strip bin/linux-x86*/{wrapper,libwrapper.so} + cp -rf bin lib $PKG/usr/share/activemq/ cp -rf webapps $PKG/var/lib/activemq/ @@ -114,11 +134,12 @@ chown -R $ACTIVEMQ_USER:$ACTIVEMQ_GROUP $PKG/var/{run,lib,log}/activemq ) # These links are still needed for activemq to actually work -ln -sf /etc/activemq $PKG/usr/share/activemq/conf -ln -sf /var/lib/activemq/webapps $PKG/usr/share/activemq/webapps -ln -sf /var/log/activemq $PKG/usr/share/activemq/log -ln -sf /tmp/activemq $PKG/usr/share/activemq/tmp - +# 20220408 bkw: made these relative links. the one to /tmp still +# makes sbopkglint complain... +ln -sf ../../../etc/activemq $PKG/usr/share/activemq/conf +ln -sf ../../../var/lib/activemq/webapps $PKG/usr/share/activemq/webapps +ln -sf ../../../var/log/activemq $PKG/usr/share/activemq/log +ln -sf ../../../tmp/activemq $PKG/usr/share/activemq/tmp mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION cp -a $DOCS $PKG/usr/doc/$PRGNAM-$VERSION |