summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
author Patrick J Volkerding <volkerdi@slackware.com>2021-03-10 01:30:34 +0000
committer Eric Hameleers <alien@slackware.com>2021-03-10 08:59:55 +0100
commit2d203525984b46a39691e1035d350b9b1625ca1e (patch)
tree512ad7427f2bd1371567da0da4aba17f9de4ea5e /source
parent0be77b20dad3002d7968cc0a5a8c611d8f9c6315 (diff)
downloadcurrent-2d203525984b46a39691e1035d350b9b1625ca1e.tar.gz
current-2d203525984b46a39691e1035d350b9b1625ca1e.tar.xz
Wed Mar 10 01:30:34 UTC 202120210310013034
a/kernel-generic-5.10.22-x86_64-1.txz: Upgraded. a/kernel-huge-5.10.22-x86_64-1.txz: Upgraded. a/kernel-modules-5.10.22-x86_64-1.txz: Upgraded. a/sysklogd-2.2.2-x86_64-1.txz: Upgraded. d/bison-3.7.6-x86_64-1.txz: Upgraded. d/kernel-headers-5.10.22-x86-1.txz: Upgraded. d/mercurial-5.7.1-x86_64-1.txz: Upgraded. k/kernel-source-5.10.22-noarch-1.txz: Upgraded. l/netpbm-10.93.01-x86_64-1.txz: Upgraded. n/samba-4.13.5-x86_64-1.txz: Upgraded. xap/mozilla-thunderbird-78.8.1-x86_64-1.txz: Upgraded. This is a bugfix release. For more information, see: https://www.mozilla.org/en-US/thunderbird/78.8.1/releasenotes/ isolinux/initrd.img: Rebuilt. kernels/*: Upgraded. testing/packages/linux-5.11.x/kernel-generic-5.11.5-x86_64-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-headers-5.11.5-x86-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-huge-5.11.5-x86_64-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-modules-5.11.5-x86_64-1.txz: Upgraded. testing/packages/linux-5.11.x/kernel-source-5.11.5-noarch-1.txz: Upgraded. usb-and-pxe-installers/usbboot.img: Rebuilt.
Diffstat (limited to 'source')
-rwxr-xr-xsource/a/sysklogd/sysklogd.SlackBuild11
-rwxr-xr-xsource/d/bison/bison.SlackBuild2
-rwxr-xr-xsource/d/mercurial/mercurial.SlackBuild2
-rw-r--r--source/installer/ChangeLog.txt3
-rw-r--r--source/installer/sources/initrd/etc/nsswitch.conf32
-rw-r--r--source/k/kernel-configs/config-generic-5.10.22 (renamed from source/k/kernel-configs/config-generic-5.10.21)2
-rw-r--r--source/k/kernel-configs/config-generic-5.10.22.x64 (renamed from source/k/kernel-configs/config-generic-5.10.21.x64)2
-rw-r--r--source/k/kernel-configs/config-generic-smp-5.10.22-smp (renamed from source/k/kernel-configs/config-generic-smp-5.10.21-smp)2
-rw-r--r--source/k/kernel-configs/config-huge-5.10.22 (renamed from source/k/kernel-configs/config-huge-5.10.21)2
-rw-r--r--source/k/kernel-configs/config-huge-5.10.22.x64 (renamed from source/k/kernel-configs/config-huge-5.10.21.x64)2
-rw-r--r--source/k/kernel-configs/config-huge-smp-5.10.22-smp (renamed from source/k/kernel-configs/config-huge-smp-5.10.21-smp)2
-rwxr-xr-xsource/l/netpbm/netpbm.SlackBuild2
-rwxr-xr-xsource/n/samba/samba.SlackBuild2
-rw-r--r--source/n/samba/samba.url4
14 files changed, 40 insertions, 30 deletions
diff --git a/source/a/sysklogd/sysklogd.SlackBuild b/source/a/sysklogd/sysklogd.SlackBuild
index 00448503e..7f525b62f 100755
--- a/source/a/sysklogd/sysklogd.SlackBuild
+++ b/source/a/sysklogd/sysklogd.SlackBuild
@@ -1,6 +1,6 @@
#!/bin/bash
-# Copyright 2005-2020 Patrick J. Volkerding, Sebeka, Minnesota, USA
+# Copyright 2005-2021 Patrick J. Volkerding, Sebeka, Minnesota, 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=sysklogd
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-2}
+BUILD=${BUILD:-1}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
@@ -86,6 +86,13 @@ find . \
-exec chmod 644 {} \+
# Configure, build, and install:
+if [ ! -r configure ]; then
+ if [ -x ./autogen.sh ]; then
+ NOCONFIGURE=1 ./autogen.sh
+ else
+ autoreconf -vif
+ fi
+fi
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \
diff --git a/source/d/bison/bison.SlackBuild b/source/d/bison/bison.SlackBuild
index 6ffbfd1c3..28c7478f3 100755
--- a/source/d/bison/bison.SlackBuild
+++ b/source/d/bison/bison.SlackBuild
@@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=bison
VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-2}
+BUILD=${BUILD:-1}
NUMJOBS=${NUMJOBS:-" -j$(expr $(nproc) + 1) "}
diff --git a/source/d/mercurial/mercurial.SlackBuild b/source/d/mercurial/mercurial.SlackBuild
index a300da734..5074b56a5 100755
--- a/source/d/mercurial/mercurial.SlackBuild
+++ b/source/d/mercurial/mercurial.SlackBuild
@@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=mercurial
VERSION=${VERSION:-$(echo mercurial-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-2}
+BUILD=${BUILD:-1}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
diff --git a/source/installer/ChangeLog.txt b/source/installer/ChangeLog.txt
index d8050c511..9b5fbb619 100644
--- a/source/installer/ChangeLog.txt
+++ b/source/installer/ChangeLog.txt
@@ -1,3 +1,6 @@
+Tue Mar 9 19:09:33 UTC 2021
+ Update /etc/nsswitch.conf from the etc package.
++--------------------------+
Thu Mar 4 09:17:54 UTC 2021
build_installer.sh: Updated support for AArch64.
MoZes.
diff --git a/source/installer/sources/initrd/etc/nsswitch.conf b/source/installer/sources/initrd/etc/nsswitch.conf
index b21796bba..3d993afcb 100644
--- a/source/installer/sources/initrd/etc/nsswitch.conf
+++ b/source/installer/sources/initrd/etc/nsswitch.conf
@@ -19,24 +19,24 @@
# [NOTFOUND=return] Stop searching if not found so far
#
-passwd: files
-shadow: files
-group: files
+# passwd: files nis
+# shadow: files nis
+# group: files nis
-hosts: files dns
+passwd: compat
+group: compat
-services: [NOTFOUND=return] files
-networks: [NOTFOUND=return] files
-protocols: [NOTFOUND=return] files
-rpc: [NOTFOUND=return] files
-ethers: [NOTFOUND=return] files
-netmasks: [NOTFOUND=return] files
-bootparams: [NOTFOUND=return] files
+hosts: files dns
+networks: files
-netgroup:
+services: files
+protocols: files
+rpc: files
+ethers: files
+netmasks: files
+netgroup: files
+bootparams: files
-publickey:
-
-automount: files
-aliases: files
+automount: files
+aliases: files
diff --git a/source/k/kernel-configs/config-generic-5.10.21 b/source/k/kernel-configs/config-generic-5.10.22
index 0a540200b..c50bf1d77 100644
--- a/source/k/kernel-configs/config-generic-5.10.21
+++ b/source/k/kernel-configs/config-generic-5.10.22
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.10.21 Kernel Configuration
+# Linux/x86 5.10.22 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 10.2.0"
CONFIG_CC_IS_GCC=y
diff --git a/source/k/kernel-configs/config-generic-5.10.21.x64 b/source/k/kernel-configs/config-generic-5.10.22.x64
index ef9d75c7d..a040e5a1a 100644
--- a/source/k/kernel-configs/config-generic-5.10.21.x64
+++ b/source/k/kernel-configs/config-generic-5.10.22.x64
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.10.21 Kernel Configuration
+# Linux/x86 5.10.22 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 10.2.0"
CONFIG_CC_IS_GCC=y
diff --git a/source/k/kernel-configs/config-generic-smp-5.10.21-smp b/source/k/kernel-configs/config-generic-smp-5.10.22-smp
index 2dfb0f06e..ef1556c7a 100644
--- a/source/k/kernel-configs/config-generic-smp-5.10.21-smp
+++ b/source/k/kernel-configs/config-generic-smp-5.10.22-smp
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.10.21 Kernel Configuration
+# Linux/x86 5.10.22 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 10.2.0"
CONFIG_CC_IS_GCC=y
diff --git a/source/k/kernel-configs/config-huge-5.10.21 b/source/k/kernel-configs/config-huge-5.10.22
index 51609219e..36a6273d7 100644
--- a/source/k/kernel-configs/config-huge-5.10.21
+++ b/source/k/kernel-configs/config-huge-5.10.22
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.10.21 Kernel Configuration
+# Linux/x86 5.10.22 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 10.2.0"
CONFIG_CC_IS_GCC=y
diff --git a/source/k/kernel-configs/config-huge-5.10.21.x64 b/source/k/kernel-configs/config-huge-5.10.22.x64
index 8dbfc50c3..c691afae2 100644
--- a/source/k/kernel-configs/config-huge-5.10.21.x64
+++ b/source/k/kernel-configs/config-huge-5.10.22.x64
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.10.21 Kernel Configuration
+# Linux/x86 5.10.22 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 10.2.0"
CONFIG_CC_IS_GCC=y
diff --git a/source/k/kernel-configs/config-huge-smp-5.10.21-smp b/source/k/kernel-configs/config-huge-smp-5.10.22-smp
index 29ed21710..00df7829c 100644
--- a/source/k/kernel-configs/config-huge-smp-5.10.21-smp
+++ b/source/k/kernel-configs/config-huge-smp-5.10.22-smp
@@ -1,6 +1,6 @@
#
# Automatically generated file; DO NOT EDIT.
-# Linux/x86 5.10.21 Kernel Configuration
+# Linux/x86 5.10.22 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="gcc (GCC) 10.2.0"
CONFIG_CC_IS_GCC=y
diff --git a/source/l/netpbm/netpbm.SlackBuild b/source/l/netpbm/netpbm.SlackBuild
index f54414c5a..9bce529c6 100755
--- a/source/l/netpbm/netpbm.SlackBuild
+++ b/source/l/netpbm/netpbm.SlackBuild
@@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=netpbm
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
diff --git a/source/n/samba/samba.SlackBuild b/source/n/samba/samba.SlackBuild
index a60fa866a..854483e34 100755
--- a/source/n/samba/samba.SlackBuild
+++ b/source/n/samba/samba.SlackBuild
@@ -26,7 +26,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PKGNAM=samba
VERSION=${VERSION:-$(echo samba-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)}
-BUILD=${BUILD:-3}
+BUILD=${BUILD:-1}
if [ -e $CWD/machine.conf ]; then
. $CWD/machine.conf ]
diff --git a/source/n/samba/samba.url b/source/n/samba/samba.url
index c67f26f41..160c99af2 100644
--- a/source/n/samba/samba.url
+++ b/source/n/samba/samba.url
@@ -1,2 +1,2 @@
-https://download.samba.org/pub/samba/stable/samba-4.13.4.tar.gz
-https://download.samba.org/pub/samba/stable/samba-4.13.4.tar.asc
+https://download.samba.org/pub/samba/stable/samba-4.13.5.tar.gz
+https://download.samba.org/pub/samba/stable/samba-4.13.5.tar.asc