public inbox for ipfire-scm@lists.ipfire.org
 help / color / mirror / Atom feed
* [git.ipfire.org] IPFire 3.x development tree branch, master, updated. 4c4c991fad688791d28c8e6c6956dc7bfa99e42b
@ 2023-03-26 13:41 Michael Tremer
  0 siblings, 0 replies; only message in thread
From: Michael Tremer @ 2023-03-26 13:41 UTC (permalink / raw)
  To: ipfire-scm

[-- Attachment #1: Type: text/plain, Size: 5313 bytes --]

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "IPFire 3.x development tree".

The branch, master has been updated
       via  4c4c991fad688791d28c8e6c6956dc7bfa99e42b (commit)
       via  65b2913874e1884ab3b7bc35fbc92380a7fca77c (commit)
       via  65f8d8742e47210f59a91cfa3f0dac0cb1223d59 (commit)
       via  20943f4159d104f58fbb91cf4925aaa8299eff12 (commit)
       via  0b0c2be242a5f353d09db25879f6c88c252a6c3e (commit)
      from  c2ee3456c5f23447d56074ae449f9d59a5a9bc53 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 4c4c991fad688791d28c8e6c6956dc7bfa99e42b
Author: Stefan Schantl <stefan.schantl(a)ipfire.org>
Date:   Sat Mar 25 20:22:54 2023 +0100

    glibc: Disable multilib support on X86_64
    
    This requires a 32bit glibc to link against, which we do not have.
    
    Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>

commit 65b2913874e1884ab3b7bc35fbc92380a7fca77c
Author: Stefan Schantl <stefan.schantl(a)ipfire.org>
Date:   Sat Mar 25 20:20:30 2023 +0100

    unbound: Create missing directory for root anchor
    
    Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>

commit 65f8d8742e47210f59a91cfa3f0dac0cb1223d59
Author: Stefan Schantl <stefan.schantl(a)ipfire.org>
Date:   Sat Mar 25 20:09:15 2023 +0100

    whois: Change download location
    
    Debian moved to a recent version of which and dropped
    the source tarball from their server.
    
    Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>

commit 20943f4159d104f58fbb91cf4925aaa8299eff12
Author: Stefan Schantl <stefan.schantl(a)ipfire.org>
Date:   Sat Mar 25 19:17:04 2023 +0100

    systemd: Enable sysusers subsystem
    
    This allows dynamically user and group creation based on
    sysusers config files.
    
    Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>

commit 0b0c2be242a5f353d09db25879f6c88c252a6c3e
Author: Stefan Schantl <stefan.schantl(a)ipfire.org>
Date:   Sat Mar 25 19:16:30 2023 +0100

    systemd: Update to 253
    
    Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>

-----------------------------------------------------------------------

Summary of changes:
 gcc/gcc.nm         | 4 ++--
 systemd/systemd.nm | 5 ++---
 unbound/unbound.nm | 5 ++++-
 whois/whois.nm     | 8 +++-----
 4 files changed, 11 insertions(+), 11 deletions(-)

Difference in files:
diff --git a/gcc/gcc.nm b/gcc/gcc.nm
index 011329e66..cf0274268 100644
--- a/gcc/gcc.nm
+++ b/gcc/gcc.nm
@@ -8,7 +8,7 @@ build_graphite = 1
 
 name       = gcc
 version    = 12.2.0
-release    = 4
+release    = 5
 
 maintainer = Michael Tremer <michael.tremer(a)ipfire.org>
 groups     = Development/Compilers
@@ -148,8 +148,8 @@ build
 
 	if "%{DISTRO_ARCH}" == "x86_64"
 		configure_options += \
+			--disable-multilib \
 			--with-arch_64=x86-64-v2 \
-			--with-arch_32=x86-64 \
 			--enable-cet \
 			--with-tune=generic
 	end
diff --git a/systemd/systemd.nm b/systemd/systemd.nm
index 30d1e829f..a01063828 100644
--- a/systemd/systemd.nm
+++ b/systemd/systemd.nm
@@ -4,8 +4,8 @@
 ###############################################################################
 
 name       = systemd
-version    = 252
-release    = 3
+version    = 253
+release    = 2
 
 maintainer = Stefan Schantl <stefan.schantl(a)ipfire.org>
 groups     = System/Base
@@ -88,7 +88,6 @@ build
 		-Dnetworkd=false \
 		-Dresolve=false \
 		-Dportabled=false \
-		-Dsysusers=false \
 		-Dtimesyncd=false \
 		-Dtimedated=false \
 		-Dpolkit=false
diff --git a/unbound/unbound.nm b/unbound/unbound.nm
index daba56558..dee396f5d 100644
--- a/unbound/unbound.nm
+++ b/unbound/unbound.nm
@@ -5,7 +5,7 @@
 
 name       = unbound
 version    = 1.17.0
-release    = 3
+release    = 4
 
 groups     = System/Daemons
 url        = https://www.nlnetlabs.nl/unbound/
@@ -62,6 +62,9 @@ build
 		# Directory for trusted-keys-file.
 		mkdir -pv %{BUILDROOT}%{sysconfdir}/%{name}/keys.d/
 
+		# Directory for the root anchor.
+		mkdir -pv %{BUILDROOT}%{sharedstatedir}/%{name}
+
 		# Install unbound config file.
 		install -p -m 0664 %{DIR_SOURCE}/%{name}.conf \
 			%{BUILDROOT}%{sysconfdir}/%{name}/
diff --git a/whois/whois.nm b/whois/whois.nm
index a53114bb3..21cdff974 100644
--- a/whois/whois.nm
+++ b/whois/whois.nm
@@ -5,7 +5,7 @@
 
 name       = whois
 version    = 5.5.15
-release    = 1.1
+release    = 2
 
 groups     = Applications/Internet
 url        = https://github.com/rfc1036/whois
@@ -20,12 +20,10 @@ description
 		whois.networksolutions.com
 end
 
-source_dl  = http://ftp.debian.org/debian/pool/main/w/whois/
-sources    = %{name}_%{version}.tar.xz
+source_dl  = https://github.com/rfc1036/whois/archive/refs/tags/v%{version}.tar.gz#/
+sources    = %{thisapp}.tar.gz
 
 build
-	DIR_APP = %{DIR_SRC}/%{name}
-
 	requires
 		libidn2-devel
 		libxcrypt-devel


hooks/post-receive
--
IPFire 3.x development tree

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2023-03-26 13:41 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-26 13:41 [git.ipfire.org] IPFire 3.x development tree branch, master, updated. 4c4c991fad688791d28c8e6c6956dc7bfa99e42b Michael Tremer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox