summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@murkel-lan.suse.de>2009-11-02 20:22:23 +0100
committerAndreas Gruenbacher <agruen@murkel-lan.suse.de>2009-11-02 20:22:23 +0100
commit1a18027fc7d6eb853b2bb33f9f65591536d7b341 (patch)
treea305c578d1b6cac22917e69df7f80ffdf965d033
parent6d2501ac40086134172a025544cb618be0b3b0ed (diff)
downloadquilt-1a18027fc7d6eb853b2bb33f9f65591536d7b341.tar.gz
Implement -r / --reference option in compat/date (patch from Olivier Mehani <shtrom-savanah@ssji.net>)
-rw-r--r--compat/date.in1
-rw-r--r--quilt.changes6
2 files changed, 7 insertions, 0 deletions
diff --git a/compat/date.in b/compat/date.in
index c67fe80..36d46e5 100644
--- a/compat/date.in
+++ b/compat/date.in
@@ -44,6 +44,7 @@ sub parse_utc_secs($) {
GetOptions('rfc-822|R' => sub() { $spec = '%a, %d %b %Y %H:%M:%S %z' },
'utc|universal|u' => \$utc,
'date|d=s' => sub() { $now = parse_utc_secs($_[1]) },
+ 'reference|r=s' => sub() { my @filestats = stat($_[1]); $now = parse_utc_secs('1970/01/01 UTC ' . $filestats[9] . ' seconds') },
'help|h' => sub() { usage })
or usage;
diff --git a/quilt.changes b/quilt.changes
index 5227620..2051f44 100644
--- a/quilt.changes
+++ b/quilt.changes
@@ -1,4 +1,10 @@
-------------------------------------------------------------------
+Mon Nov 2 20:12:31 CET 2009 - agruen@suse.de
+
+- Implement -r / --reference option in compat/date (patch from
+ Olivier Mehani <shtrom-savanah@ssji.net>).
+
+-------------------------------------------------------------------
Thu Sep 17 22:11:54 CEST 2009 - agruen@suse.de
- Restore the "remove" command which a few people were missing