public inbox for ipfire-scm@lists.ipfire.org
 help / color / mirror / Atom feed
* [git.ipfire.org] IPFire 2.x development tree branch, master, updated. eb9e29f9a742d5472180371b99c2e17b966852f1
@ 2022-12-03 11:04 Michael Tremer
  0 siblings, 0 replies; only message in thread
From: Michael Tremer @ 2022-12-03 11:04 UTC (permalink / raw)
  To: ipfire-scm

[-- Attachment #1: Type: text/plain, Size: 4901 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 2.x development tree".

The branch, master has been updated
       via  eb9e29f9a742d5472180371b99c2e17b966852f1 (commit)
       via  41dfd30c9a34faeff8d8cd549e5583ad2919ce4f (commit)
       via  ebcb8d53c440d0454a14514d5284ce32770e8025 (commit)
      from  dc9f7554c13ebdadb45f27c8f38f14b9d16468d2 (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 eb9e29f9a742d5472180371b99c2e17b966852f1
Author: Peter Müller <peter.mueller(a)ipfire.org>
Date:   Sat Dec 3 11:57:18 2022 +0100

    Core Update 172: Extract files before removing any
    
    Note to self: Also do this in further Core Updates.
    
    Suggested-by: Michael Tremer <michael.tremer(a)ipfire.org>
    Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>

commit 41dfd30c9a34faeff8d8cd549e5583ad2919ce4f
Author: Peter Müller <peter.mueller(a)ipfire.org>
Date:   Sat Dec 3 11:39:25 2022 +0100

    Core Update 172: Do not delete liblzma.so.5.2.5
    
    Again, xz currently present on an IPFire machine is linked
    against this. Thus, deleting this file causes the unpack
    routine to fail, which is why we should have never deleted
    it in the first place.
    
    Reported-by: Adolf Belka <adolf.belka(a)ipfire.org>
    Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>

commit ebcb8d53c440d0454a14514d5284ce32770e8025
Author: Peter Müller <peter.mueller(a)ipfire.org>
Date:   Sat Dec 3 11:38:58 2022 +0100

    Core Update 172: Ship packages that miss dependencies
    
    Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>

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

Summary of changes:
 .../rootfiles/{oldcore/114 => core/172}/filelists/apache2   |  0
 config/rootfiles/{oldcore/125 => core/172}/filelists/kmod   |  0
 .../rootfiles/{oldcore/101 => core/172}/filelists/pciutils  |  0
 config/rootfiles/{oldcore/125 => core/172}/filelists/udev   |  0
 config/rootfiles/core/172/update.sh                         | 13 ++++++-------
 5 files changed, 6 insertions(+), 7 deletions(-)
 copy config/rootfiles/{oldcore/114 => core/172}/filelists/apache2 (100%)
 copy config/rootfiles/{oldcore/125 => core/172}/filelists/kmod (100%)
 copy config/rootfiles/{oldcore/101 => core/172}/filelists/pciutils (100%)
 copy config/rootfiles/{oldcore/125 => core/172}/filelists/udev (100%)

Difference in files:
diff --git a/config/rootfiles/core/172/filelists/apache2 b/config/rootfiles/core/172/filelists/apache2
new file mode 120000
index 000000000..eef95efa7
--- /dev/null
+++ b/config/rootfiles/core/172/filelists/apache2
@@ -0,0 +1 @@
+../../../common/apache2
\ No newline at end of file
diff --git a/config/rootfiles/core/172/filelists/kmod b/config/rootfiles/core/172/filelists/kmod
new file mode 120000
index 000000000..0020e197e
--- /dev/null
+++ b/config/rootfiles/core/172/filelists/kmod
@@ -0,0 +1 @@
+../../../common/kmod
\ No newline at end of file
diff --git a/config/rootfiles/core/172/filelists/pciutils b/config/rootfiles/core/172/filelists/pciutils
new file mode 120000
index 000000000..aeb45e7b3
--- /dev/null
+++ b/config/rootfiles/core/172/filelists/pciutils
@@ -0,0 +1 @@
+../../../common/pciutils
\ No newline at end of file
diff --git a/config/rootfiles/core/172/filelists/udev b/config/rootfiles/core/172/filelists/udev
new file mode 120000
index 000000000..e967a1c92
--- /dev/null
+++ b/config/rootfiles/core/172/filelists/udev
@@ -0,0 +1 @@
+../../../common/udev
\ No newline at end of file
diff --git a/config/rootfiles/core/172/update.sh b/config/rootfiles/core/172/update.sh
index 4752b4cc8..d66156f16 100644
--- a/config/rootfiles/core/172/update.sh
+++ b/config/rootfiles/core/172/update.sh
@@ -46,6 +46,12 @@ if [ -e /boot/uEnv.txt ]; then
     cp -vf /boot/uEnv.txt /boot/uEnv.txt.org
 fi
 
+# Extract files
+extract_files
+
+# update linker config
+ldconfig
+
 # Remove files
 rm -rvf \
 	/etc/pcmcia \
@@ -81,7 +87,6 @@ rm -rvf \
 	/usr/lib/libisc-9.16.33.so \
 	/usr/lib/libisccc-9.16.33.so \
 	/usr/lib/libisccfg-9.16.33.so \
-	/usr/lib/liblzma.so.5.2.5 \
 	/usr/lib/libnetfilter_conntrack.so.3.7.0 \
 	/usr/lib/libns-9.16.33.so \
 	/usr/lib/libpng16.so.16.37.0 \
@@ -137,12 +142,6 @@ for addon in gnu-netcat powertop; do
 		/opt/pakfire/db/rootfiles/${addon}
 done
 
-# Extract files
-extract_files
-
-# update linker config
-ldconfig
-
 # Update Language cache
 /usr/local/bin/update-lang-cache
 


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

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

only message in thread, other threads:[~2022-12-03 11:04 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-03 11:04 [git.ipfire.org] IPFire 2.x development tree branch, master, updated. eb9e29f9a742d5472180371b99c2e17b966852f1 Michael Tremer

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