diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2024-03-04 20:41:42 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2024-03-04 22:36:33 +0100 |
commit | 2b9bc64077432359d6c3c1cbd555e30e1e1b8ba4 (patch) | |
tree | 6d14464e4bf908e955295c4c98419a3dc72d0fc8 /source/e | |
parent | eabd4b9fab517158983e008fd651796e4c2f4209 (diff) | |
download | current-2b9bc64077432359d6c3c1cbd555e30e1e1b8ba4.tar.gz current-2b9bc64077432359d6c3c1cbd555e30e1e1b8ba4.tar.xz |
Mon Mar 4 20:41:42 UTC 202420240304204142
d/vala-0.56.15-x86_64-1.txz: Upgraded.
e/emacspeak-59.0-x86_64-1.txz: Upgraded.
kde/calligra-3.2.1-x86_64-37.txz: Rebuilt.
Recompiled against poppler-24.03.0.
kde/cantor-23.08.5-x86_64-2.txz: Rebuilt.
Recompiled against poppler-24.03.0.
kde/kfilemetadata-5.115.0-x86_64-2.txz: Rebuilt.
Recompiled against poppler-24.03.0.
kde/kile-2.9.93-x86_64-31.txz: Rebuilt.
Recompiled against poppler-24.03.0.
kde/kitinerary-23.08.5-x86_64-2.txz: Rebuilt.
Recompiled against poppler-24.03.0.
kde/krita-5.2.2-x86_64-5.txz: Rebuilt.
Recompiled against poppler-24.03.0.
kde/okular-23.08.5-x86_64-2.txz: Rebuilt.
Recompiled against poppler-24.03.0.
l/poppler-24.03.0-x86_64-1.txz: Upgraded.
Shared library .so-version bump.
Enabled building libpoppler-qt6.
x/xev-1.2.6-x86_64-1.txz: Upgraded.
x/xf86-input-wacom-1.2.1-x86_64-1.txz: Upgraded.
x/xfontsel-1.1.1-x86_64-1.txz: Upgraded.
x/xmessage-1.0.7-x86_64-1.txz: Upgraded.
x/xmh-1.0.5-x86_64-1.txz: Upgraded.
x/xpr-1.2.0-x86_64-1.txz: Upgraded.
x/xrefresh-1.1.0-x86_64-1.txz: Upgraded.
x/xsm-1.0.6-x86_64-1.txz: Upgraded.
Diffstat (limited to 'source/e')
-rwxr-xr-x | source/e/emacspeak/emacspeak.SlackBuild | 7 | ||||
-rw-r--r-- | source/e/emacspeak/emacspeak.url | 1 | ||||
-rwxr-xr-x | source/e/emacspeak/prune-unneeded-files.sh | 9 |
3 files changed, 4 insertions, 13 deletions
diff --git a/source/e/emacspeak/emacspeak.SlackBuild b/source/e/emacspeak/emacspeak.SlackBuild index 7cdb21ce2..7c45f0ffb 100755 --- a/source/e/emacspeak/emacspeak.SlackBuild +++ b/source/e/emacspeak/emacspeak.SlackBuild @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright 2006, 2008, 2010, 2011, 2020 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2006, 2008, 2010, 2011, 2020, 2024 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=emacspeak VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-3} +BUILD=${BUILD:-1} # Automatically determine the architecture we're building on: if [ -z "$ARCH" ]; then @@ -89,8 +89,7 @@ find . \ find . -xtype l -exec rm -f {} \; # Compile the main program against Emacs: -make config -make emacspeak +make config && make if [ ! -r info/emacspeak.info ]; then makeinfo -o info/ info/emacspeak.texi fi diff --git a/source/e/emacspeak/emacspeak.url b/source/e/emacspeak/emacspeak.url index c0195a569..018d49104 100644 --- a/source/e/emacspeak/emacspeak.url +++ b/source/e/emacspeak/emacspeak.url @@ -1 +1,2 @@ https://github.com/tvraman/emacspeak +https://github.com/tvraman/emacspeak/releases/download/59/emacspeak-59.0.tar.bz2 diff --git a/source/e/emacspeak/prune-unneeded-files.sh b/source/e/emacspeak/prune-unneeded-files.sh index b78b68720..f9164fbf9 100755 --- a/source/e/emacspeak/prune-unneeded-files.sh +++ b/source/e/emacspeak/prune-unneeded-files.sh @@ -8,12 +8,6 @@ VERSION=${VERSION:-$(echo $PKGNAM-*.tar.bz2 | rev | cut -f 3- -d . | cut -f 1 -d rm -rf ${PKGNAM}-${VERSION} tar xf ${PKGNAM}-${VERSION}.tar.bz2 || exit 1 -# I have no idea what these are useful for. They aren't referenced anywhere -# else. If .json weren't such a bloated format I might keep them just in case, -# but let's strip them out for now. If it would be better to keep them (perhaps -# compressed as .gz or .xz), let me know. -( cd ${PKGNAM}-${VERSION}/etc && rm -f CompSciFact.json TVRaman.json UnixToolTip.json ) - # Get rid of support files used to build .html: ( cd ${PKGNAM}-${VERSION}/etc for file in *.html ; do @@ -34,9 +28,6 @@ tar xf ${PKGNAM}-${VERSION}.tar.bz2 || exit 1 rmdir news-tmp ) -# Drop the Makefile in etc/: -rm -f ${PKGNAM}-${VERSION}/etc/Makefile - # More cruft: rm -rf ${PKGNAM}-${VERSION}/.ccls-cache |