mirror of
git://slackware.nl/current.git
synced 2025-02-14 08:48:37 +01:00
![Patrick J Volkerding](/assets/img/avatar_default.png)
l/SDL3-3.2.0-x86_64-1.txz: Added. l/gst-plugins-bad-free-1.24.12-x86_64-1.txz: Upgraded. l/gst-plugins-base-1.24.12-x86_64-1.txz: Upgraded. l/gst-plugins-good-1.24.12-x86_64-1.txz: Upgraded. l/gst-plugins-libav-1.24.12-x86_64-1.txz: Upgraded. l/gstreamer-1.24.12-x86_64-1.txz: Upgraded. l/libplacebo-7.349.0-x86_64-3.txz: Rebuilt. Patched and recompiled against vulkan-sdk-1.4.304.0. x/vulkan-sdk-1.4.304.0-x86_64-1.txz: Upgraded. Shared library .so-version bump. testing/packages/aaa_glibc-solibs-2.41-x86_64-1.txz: Added. testing/packages/glibc-2.41-x86_64-1.txz: Added. This breaks dhcpcd's privsep, and probably some other stuff. Nothing else in /testing is compiled against glibc-2.41. Also upgraded to libxcrypt-4.4.38. testing/packages/glibc-i18n-2.41-x86_64-1.txz: Added. testing/packages/glibc-profile-2.41-x86_64-1.txz: Added. testing/packages/mesa-25.0.0_rc1-x86_64-1.txz: Added. The radeonsi workaround patch was removed, even though it did still apply. Let me know if the stalls return...
17 lines
596 B
Bash
17 lines
596 B
Bash
#!/bin/sh
|
|
config() {
|
|
NEW="$1"
|
|
OLD="`dirname $NEW`/`basename $NEW .new`"
|
|
# If there's no config file by that name, mv it over:
|
|
if [ ! -r $OLD ]; then
|
|
mv $NEW $OLD
|
|
elif [ "`cat $OLD | md5sum`" = "`cat $NEW | md5sum`" ]; then # toss the redundant copy
|
|
rm $NEW
|
|
fi
|
|
# Otherwise, we leave the .new copy for the admin to consider...
|
|
}
|
|
# Don't mess with /etc/drirc. Mesa now installs the defaults as
|
|
# /usr/share/drirc.d/00-mesa-defaults.conf. We won't protect that
|
|
# as a .new file as it shouldn't be modified. Create /etc/drirc if
|
|
# you need local overrides.
|
|
#config etc/drirc.new
|