Gentoo Archives: gentoo-commits

From: Mike Pagano <mpagano@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/quilt/files/
Date: Fri, 26 Apr 2019 12:43:04
Message-Id: 1556282574.9d80e446ebfeea7b2f5eb0497dc0bada91d7e244.mpagano@gentoo
1 commit: 9d80e446ebfeea7b2f5eb0497dc0bada91d7e244
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Fri Apr 26 12:42:46 2019 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 26 12:42:54 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d80e446
7
8 dev-util/quilt: Add graphviz patch for 0.66
9
10 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
11 Package-Manager: Portage-2.3.62, Repoman-2.3.11
12
13 dev-util/quilt/files/quilt-0.66-no-graphviz.patch | 43 +++++++++++++++++++++++
14 1 file changed, 43 insertions(+)
15
16 diff --git a/dev-util/quilt/files/quilt-0.66-no-graphviz.patch b/dev-util/quilt/files/quilt-0.66-no-graphviz.patch
17 new file mode 100644
18 index 00000000000..324a38dfef4
19 --- /dev/null
20 +++ b/dev-util/quilt/files/quilt-0.66-no-graphviz.patch
21 @@ -0,0 +1,43 @@
22 +--- Makefile.in.orig 2017-04-12 09:27:40.853018901 -0400
23 ++++ Makefile.in 2017-04-12 09:36:16.584315529 -0400
24 +@@ -78,8 +78,7 @@ QUILT := $(QUILT_IN)
25 + SRC += $(QUILT_SRC:%=quilt/%)
26 + DIRT += $(QUILT_IN:%=quilt/%)
27 +
28 +-SCRIPTS_IN := patchfns inspect-wrapper dependency-graph edmail \
29 +- remove-trailing-ws backup-files
30 ++SCRIPTS_IN := patchfns inspect-wrapper edmail remove-trailing-ws backup-files
31 +
32 + SCRIPTS_SRC := $(SCRIPTS_IN:%=%.in)
33 + SCRIPTS := $(SCRIPTS_IN)
34 +--- bash_completion.orig 2017-04-12 09:27:57.643126246 -0400
35 ++++ bash_completion 2017-04-12 09:30:27.673938451 -0400
36 +@@ -28,7 +28,7 @@ _quilt_completion()
37 + prev=${COMP_WORDS[COMP_CWORD-1]}
38 +
39 + # quilt sub commands
40 +- cmds='add annotate applied delete diff edit files fold fork graph \
41 ++ cmds='add annotate applied delete diff edit files fold fork \
42 + grep header import mail new next patches pop previous push refresh \
43 + remove rename revert series setup snapshot top unapplied upgrade'
44 +
45 +@@ -122,19 +122,6 @@ _quilt_completion()
46 + ;;
47 + esac
48 + ;;
49 +- graph)
50 +- case $prev in
51 +- -T)
52 +- COMPREPLY=( $( compgen -W "ps" -- $cur ) )
53 +- ;;
54 +- --edge-labels)
55 +- COMPREPLY=( $( compgen -W "files" -- $cur ) )
56 +- ;;
57 +- *)
58 +- COMPREPLY=( $( compgen -W "-T -h --all --reduce --lines --edge-labels $(quilt --quiltrc - applied 2>/dev/null)" -- $cur ) )
59 +- ;;
60 +- esac
61 +- ;;
62 + grep)
63 + type _longopt &> /dev/null && _longopt grep
64 + COMPREPLY=( "${COMPREPLY[@]}" $( compgen -W "-h" -- $cur ) )