[SCM] debian-live/live-helper branch, master, updated. 1.0_a44-1-32-g705cb6c
Daniel Baumann
daniel at debian.org
Tue Apr 22 21:35:38 UTC 2008
The following commit has been merged in the master branch:
commit 705cb6cec1e5638b9175478ba566806048c21cdb
Author: Daniel Baumann <daniel at debian.org>
Date: Tue Apr 22 23:32:30 2008 +0200
Producing rsyncable tarballs where possible.
diff --git a/helpers/lh_binary_net b/helpers/lh_binary_net
index f97d4c3..3b5076e 100755
--- a/helpers/lh_binary_net
+++ b/helpers/lh_binary_net
@@ -78,7 +78,14 @@ case "${LH_NET_TARBALL}" in
;;
gzip)
- tar cfz binary-net.tar.gz "$(basename ${OLDPWD})/${ROOT_DIR}" "$(basename ${OLDPWD})/tftpboot"
+ if gzip --help | grep -q "\-\-rsyncable"
+ then
+ tar cf binary-net.tar "$(basename ${OLDPWD})/${ROOT_DIR}" "$(basename ${OLDPWD})/tftpboot"
+ gzip --rsyncable --best binary-net.tar
+ else
+ tar cfz binary-net.tar.gz "$(basename ${OLDPWD})/${ROOT_DIR}" "$(basename ${OLDPWD})/tftpboot"
+ fi
+
mv binary-net.tar.gz "${OLDPWD}"
;;
diff --git a/helpers/lh_binary_tar b/helpers/lh_binary_tar
index 85ff064..7560bce 100755
--- a/helpers/lh_binary_tar
+++ b/helpers/lh_binary_tar
@@ -50,7 +50,13 @@ Create_lockfile .lock
# Remove old binary
rm -f binary.tar.gz
-tar cfz binary-tar.tar.gz binary
+if gzip --help | grep -q '\-\-rsyncable'
+then
+ tar cf binary-tar.tar binary
+ gzip --rsyncable --best binary-tar.tar
+else
+ tar cfz binary-tar.tar.gz binary
+fi
# Creating stage file
Create_stagefile .stage/binary_tar
diff --git a/helpers/lh_source_debian-live b/helpers/lh_source_debian-live
index 1511468..c82ca29 100755
--- a/helpers/lh_source_debian-live
+++ b/helpers/lh_source_debian-live
@@ -59,7 +59,15 @@ cp -a config source/debian-live
# Create tarball
cd source
-tar cfz debian-live-config_$(date +%Y%m%d.%s).tar.gz debian-live
+
+if gzip --help | grep -q '\-\-rsyncable'
+then
+ tar cf debian-live-config_$(date +%Y%m%d.%s).tar debian-live
+ gzip --rsyncable --best debian-live-config_$(date +%Y%m%d.%s).tar
+else
+ tar cfz debian-live-config_$(date +%Y%m%d.%s).tar.gz debian-live
+fi
+
cd "${OLDPWD}"
rm -rf source/debian-live/config
diff --git a/helpers/lh_source_net b/helpers/lh_source_net
index 192ea3b..77c7aed 100755
--- a/helpers/lh_source_net
+++ b/helpers/lh_source_net
@@ -59,7 +59,13 @@ then
fi
# Create tarball
-tar cfz source-net.tar.gz source
+if gzip --help | grep -q '\-\-rsyncable'
+then
+ tar cf source-net.tar source
+ gzip --rsyncable --best source-net.tar
+else
+ tar cfz source-net.tar.gz source
+fi
# Creating stage file
Create_stagefile .stage/source_net
diff --git a/helpers/lh_source_tar b/helpers/lh_source_tar
index ecd04ee..4e00db6 100755
--- a/helpers/lh_source_tar
+++ b/helpers/lh_source_tar
@@ -60,7 +60,13 @@ then
fi
# Create tarball
-tar cfz source.tar.gz source
+if gzip --help | grep -q '\-\-rsyncable'
+then
+ tar cf source.tar source
+ gzip --rsyncable --best source.tar
+else
+ tar cfz source.tar.gz source
+fi
# Creating stage file
Create_stagefile .stage/source_tar
--
debian-live/live-helper
More information about the debian-live-changes
mailing list