From d9efec0d7bc7bd6c0588ba978f6331a3449ddc8d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?J=C3=B6rn-Ingo=20Weigert?=
Date: Sat, 20 Oct 2012 11:04:42 +0200
Subject: [PATCH 1/3] updatexlrator.cgi: Fix wrong patch to delete.gif.
---
html/cgi-bin/updatexlrator.cgi | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/html/cgi-bin/updatexlrator.cgi b/html/cgi-bin/updatexlrator.cgi
index 04b7b8ee6..e3e633cc4 100644
--- a/html/cgi-bin/updatexlrator.cgi
+++ b/html/cgi-bin/updatexlrator.cgi
@@ -1362,7 +1362,7 @@ sub printlegendicons
 |
$Lang::tr{'updxlrtr last checkup'} |
|
-  |
+  |
$Lang::tr{'updxlrtr remove file'} |
|
|
From d6b4566d9cf63ab0848b508382b6daa836b5cc7d Mon Sep 17 00:00:00 2001
From: Michael Tremer
Date: Tue, 23 Oct 2012 17:19:47 +0200
Subject: [PATCH 2/3] credits.cgi: Update donation link.
---
html/cgi-bin/credits.cgi | 21 ++++++---------------
1 file changed, 6 insertions(+), 15 deletions(-)
diff --git a/html/cgi-bin/credits.cgi b/html/cgi-bin/credits.cgi
index 3ae2f7188..0d091a2d8 100644
--- a/html/cgi-bin/credits.cgi
+++ b/html/cgi-bin/credits.cgi
@@ -39,16 +39,11 @@ require "${General::swroot}/header.pl";
print <$Lang::tr{'donation-text'}
-
-
+
+
END
;
&Header::closebox();
@@ -73,8 +68,6 @@ Christian Schmidt
(christian.schmidt\@ipfire.org) - Vice Project Leader
Stefan Schantl
(stefan.schantl\@ipfire.org)
-Jan Paul Tücking
-(jan.tuecking\@ipfire.org)
Heiner Schmeling
(heiner.schmeling\@ipfire.org)
Ronald Wiesinger
@@ -94,12 +87,10 @@ Peter Pfeiffer
(peter.pfeifer\@ipfire.org)
Peter Schälchli
(peter.schaelchli\@ipfire.org)
+Jan Paul Tücking
+(jan.tuecking\@ipfire.org)
-Some parts of the distribution are left ajar on third-party software, that is licensed under the GPL, too.
-There are: Advanced Proxy with URL-Filter and Update-Accelerator, ZERINA, Connection Scheduler, Hddtemp and Wake-on-LAN.
-Distributed by Marco Sondermann, Ufuk Altinkaynak, Thomas Eichstaedt and Olaf Westrik.
-
This product includes GeoLite data created by MaxMind, available from http://www.maxmind.com/.
END
From 03207e65b1244bb4a82a55bc1e1f893e05695aa0 Mon Sep 17 00:00:00 2001
From: Arne Fitzenreiter
Date: Fri, 26 Oct 2012 09:56:31 +0200
Subject: [PATCH 3/3] pakfire: enable compression autodetection inside the
packages.
---
src/pakfire/lib/functions.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/pakfire/lib/functions.sh b/src/pakfire/lib/functions.sh
index bc05bd01e..9c8bf53e8 100644
--- a/src/pakfire/lib/functions.sh
+++ b/src/pakfire/lib/functions.sh
@@ -24,13 +24,13 @@
extract_files() {
echo "Extracting files..."
- tar xvf /opt/pakfire/tmp/files --no-overwrite-dir -p --numeric-owner -C /
+ tar xavf /opt/pakfire/tmp/files --no-overwrite-dir -p --numeric-owner -C /
echo "...Finished."
}
extract_backup_includes() {
echo "Extracting backup includes..."
- tar xvf /opt/pakfire/tmp/files --no-overwrite-dir -p --numeric-owner -C / \
+ tar xavf /opt/pakfire/tmp/files --no-overwrite-dir -p --numeric-owner -C / \
var/ipfire/backup/addons/includes
echo "...Finished."
}