Gentoo Archives: gentoo-commits

From: "Marius Mauch (genone)" <genone@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r9317 - in main/tags/2.2_pre1: . bin
Date: Sat, 09 Feb 2008 23:15:29
Message-Id: E1JNyus-0002z2-7R@stork.gentoo.org
1 Author: genone
2 Date: 2008-02-09 23:15:25 +0000 (Sat, 09 Feb 2008)
3 New Revision: 9317
4
5 Modified:
6 main/tags/2.2_pre1/bin/repoman
7 main/tags/2.2_pre1/mkrelease.sh
8 Log:
9 reapply repoman typo fix
10
11 Modified: main/tags/2.2_pre1/bin/repoman
12 ===================================================================
13 --- main/tags/2.2_pre1/bin/repoman 2008-02-09 23:06:28 UTC (rev 9316)
14 +++ main/tags/2.2_pre1/bin/repoman 2008-02-09 23:15:25 UTC (rev 9317)
15 @@ -649,7 +649,7 @@
16 xmllint_capable=True
17
18 if options.mode == 'commit' and isCvs:
19 - utilties.detect_vcs_conflicts(options, vcs="cvs")
20 + utilities.detect_vcs_conflicts(options, vcs="cvs")
21
22 if options.mode == "manifest":
23 pass
24 @@ -1592,10 +1592,10 @@
25 try:
26 editor = os.environ.get("EDITOR")
27 if editor and utilities.editor_is_executable(editor):
28 - commitmessage = utilties.get_commit_message_with_editor(
29 + commitmessage = utilities.get_commit_message_with_editor(
30 editor, message=qa_output)
31 else:
32 - commitmessage = utilties.get_commit_message_with_stdin()
33 + commitmessage = utilities.get_commit_message_with_stdin()
34 except KeyboardInterrupt:
35 exithandler()
36 if not commitmessage or not commitmessage.strip():
37
38 Modified: main/tags/2.2_pre1/mkrelease.sh
39 ===================================================================
40 --- main/tags/2.2_pre1/mkrelease.sh 2008-02-09 23:06:28 UTC (rev 9316)
41 +++ main/tags/2.2_pre1/mkrelease.sh 2008-02-09 23:15:25 UTC (rev 9317)
42 @@ -12,7 +12,8 @@
43 exit 1
44 }
45
46 -while [ "${1:1}" == "-" ]; then
47 +while [ "${1:0:1}" == "-" ]; do
48 + echo $1
49 case "$1" in
50 -t|--tag)
51 CREATE_TAG=true
52 @@ -27,7 +28,7 @@
53 die "unknown option: $1"
54 ;;
55 esac
56 -fi
57 +done
58
59 [ -z "$1" ] && die "Need version argument"
60 [ -n "${1/[0-9]*}" ] && die "Invalid version argument"
61
62 --
63 gentoo-commits@l.g.o mailing list