forked from pool/quilt
Accepting request 90927 from devel:tools:scm
Make quilt work again with xz compressed files OBS-URL: https://build.opensuse.org/request/show/90927 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/quilt?expand=0&rev=38
This commit is contained in:
commit
6a6973825c
@ -8,8 +8,10 @@ Based on preliminary work by Philipp Thomas.
|
|||||||
quilt/scripts/inspect.in | 24 +++++++++++++++++++++++-
|
quilt/scripts/inspect.in | 24 +++++++++++++++++++++++-
|
||||||
1 file changed, 23 insertions(+), 1 deletion(-)
|
1 file changed, 23 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
--- quilt-0.48.orig/quilt/scripts/inspect.in
|
Index: quilt/scripts/inspect.in
|
||||||
+++ quilt-0.48/quilt/scripts/inspect.in
|
===================================================================
|
||||||
|
--- quilt-0.48/quilt/scripts/inspect.in.orig 2009-01-31 03:28:06.000000000 +0100
|
||||||
|
+++ quilt-0.48/quilt/scripts/inspect.in 2011-11-10 12:22:14.622721864 +0100
|
||||||
@@ -87,7 +87,17 @@ do
|
@@ -87,7 +87,17 @@ do
|
||||||
echo "md5sum < $file" >&2
|
echo "md5sum < $file" >&2
|
||||||
set -- $(md5sum < "$file")
|
set -- $(md5sum < "$file")
|
||||||
@ -39,7 +41,7 @@ Based on preliminary work by Philipp Thomas.
|
|||||||
+ set -- $(lzma -cd "$file" | md5sum)
|
+ set -- $(lzma -cd "$file" | md5sum)
|
||||||
+ echo "$1 $basename"
|
+ echo "$1 $basename"
|
||||||
+ ;;
|
+ ;;
|
||||||
+ xz*)
|
+ xz*|XZ*)
|
||||||
+ echo -n "x" >&4
|
+ echo -n "x" >&4
|
||||||
+ echo "xz -cd $file | md5sum" >&2
|
+ echo "xz -cd $file | md5sum" >&2
|
||||||
+ set -- $(xz -cd "$file" | md5sum)
|
+ set -- $(xz -cd "$file" | md5sum)
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Nov 10 12:25:27 CET 2011 - pth@suse.de
|
||||||
|
|
||||||
|
- Newer file changed the output for xz compressed data so
|
||||||
|
adapt to it.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Oct 6 18:53:45 CEST 2011 - ohering@suse.de
|
Thu Oct 6 18:53:45 CEST 2011 - ohering@suse.de
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package quilt (Version 0.48)
|
# spec file for package quilt
|
||||||
#
|
#
|
||||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
|
Loading…
Reference in New Issue
Block a user