summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2003-02-14 16:36:33 +0000
committerAndreas Gruenbacher <agruen@suse.de>2003-02-14 16:36:33 +0000
commit0a6287c359af3877601d46c2a75f8ed38621be99 (patch)
tree626ad529e0d4c9e6edd33edb7a160b4a124a1c74
parent7a676e71a230b6ee95730d6bc28560da9455a85a (diff)
downloadquilt-0a6287c359af3877601d46c2a75f8ed38621be99.tar.gz
Remove quilt guidiff
-rw-r--r--po/quilt.pot4
-rw-r--r--quilt.changes1
-rwxr-xr-xquilt/guidiff.in88
3 files changed, 3 insertions, 90 deletions
diff --git a/po/quilt.pot b/po/quilt.pot
index 1ce4a37..6240a9d 100644
--- a/po/quilt.pot
+++ b/po/quilt.pot
@@ -380,11 +380,11 @@ msgstr ""
msgid "Interrupted by user"
msgstr ""
-#: ../quilt/pop.in:189
+#: ../quilt/pop.in:190 ../quilt/push.in:193
msgid "No patches applied"
msgstr ""
-#: ../quilt/pop.in:191
+#: ../quilt/pop.in:192 ../quilt/push.in:195
msgid "Now at patch $patch"
msgstr ""
diff --git a/quilt.changes b/quilt.changes
index 6390eaa..f777e31 100644
--- a/quilt.changes
+++ b/quilt.changes
@@ -2,6 +2,7 @@
Fri Feb 14 15:53:52 CET 2003 - agruen@suse.de
- A couple more I18N fixes, minor cleanups in status messages.
+- Remove "quilt guidiff" (obsolete).
-------------------------------------------------------------------
Fri Feb 14 14:10:39 +0100 2003 - martin.quinson@tuxfamily.org
diff --git a/quilt/guidiff.in b/quilt/guidiff.in
deleted file mode 100755
index 16301c0..0000000
--- a/quilt/guidiff.in
+++ /dev/null
@@ -1,88 +0,0 @@
-#! @BASH@
-
-# This script is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License version 2 as
-# published by the Free Software Foundation.
-#
-# See the COPYING and AUTHORS files for more details.
-
-# Read in library functions
-if [ "$(type -t patch_file_name)" != function ]
-then
- if ! [ -r @SCRIPTS@/patchfns ]
- then
- echo "Cannot read library @SCRIPTS@/patchfns" >&2
- exit 1
- fi
- . @SCRIPTS@/patchfns
-fi
-
-usage()
-{
- echo $"Usage: quilt guidiff"
- guidiffname="@GUIDIFF@"
- if [ x$1 = x-h ]
- then
- echo $"
-
-Display in $guidiffname the changes to files in the topmost patch.
-
-"
- exit 0
- else
- exit 1
- fi
-}
-
-options=`getopt -o h -- "$@"`
-
-if [ $? -ne 0 ]
-then
- usage
-fi
-
-eval set -- "$options"
-
-while true
-do
- case "$1" in
- -h)
- usage -h ;;
- --)
- shift
- break ;;
- esac
-done
-
-if [ $# -ne 0 ]
-then
- usage
-fi
-
-patch=$(top_patch)
-if [ -z "$patch" ]
-then
- echo $"No patch applied" >&2
- exit 1
-fi
-
-patchfiles=$( files_in_patch $patch )
-
-if [ -n "$patchfiles" ]
-then
- for file in $patchfiles
- do
- if [ -s $(backup_file_name $patch $file) ]
- then
- @GUIDIFF@ $(backup_file_name $patch $file) $file
- else
- echo $"The file $file doesn't exist before this patch"
- fi
- done
-else
- echo $"No file in patch $patch"
-fi
-### Local Variables:
-### mode: shell-script
-### End:
-# vim:filetype=sh