mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
32009082ed
a/btrfs-progs-6.7.1-x86_64-1.txz: Upgraded. a/ed-1.20.1-x86_64-1.txz: Upgraded. a/shadow-4.14.5-x86_64-1.txz: Upgraded. d/git-2.43.2-x86_64-1.txz: Upgraded. d/meson-1.3.2-x86_64-1.txz: Upgraded. d/tree-sitter-0.20.9-x86_64-1.txz: Upgraded. e/emacs-29.2-x86_64-2.txz: Rebuilt. Compiled with support for pdumper and native compilation. The emacs-no-x11 binary has been dropped from the package because when pdumper is used the support files need to be matched to a specific binary. If you need a non-X console version of Emacs (or just want to reduce the footprint) a traditional build is available in /extra. Thanks to drgibbon who requested this long ago. :-) Thanks to Didier Spaier for the sample build script. l/libnvme-1.8-x86_64-1.txz: Upgraded. xap/xlockmore-5.75-x86_64-1.txz: Upgraded. extra/emacs-regular-build/emacs-29.2-x86_64-2_regular.txz: Added. A "regular" build of Emacs like was previously in the main tree, with a version supporting X11/GTK+3, and a non-X console version.
28 lines
1.4 KiB
Bash
Executable file
28 lines
1.4 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# Copyright 2024 Patrick J. Volkerding, Sebeka, MN, USA
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use of this script, with or without modification, is
|
|
# permitted provided that the following conditions are met:
|
|
#
|
|
# 1. Redistributions of this script must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
# Build a --without-native-compilation Emacs package with an X11 version
|
|
# using GTK+3, and a non-X11 linked version for use on the console or on
|
|
# machines lacking the X11 libraries. This is how the Slackware Emacs package
|
|
# has been traditionally built from 1993-2024.
|
|
|
|
NATIVECOMP=NO TAG=_regular ./emacs.SlackBuild
|