ketchup: updated to version 0.9.7

This commit is contained in:
Jukka Heino 2006-04-25 12:10:48 +00:00
parent fc0ba5fd0a
commit 3b93a91d19
3 changed files with 4 additions and 20 deletions

View File

@ -1,2 +1 @@
1653d39ea2ba534543dd87b133502e24 ketchup-0.9.6.tar.bz2
d086689be24172c9d9110cdf9f75dcc3 ketchup-list.patch
6fbc5e50eea7e93e982aba036ae9b3ad ketchup-0.9.7.tar.bz2

View File

@ -5,13 +5,11 @@
# Depends on: python
name=ketchup
version=0.9.6
release=2
source=(http://www.selenic.com/$name/$name-$version.tar.bz2 \
ketchup-list.patch)
version=0.9.7
release=1
source=(http://www.selenic.com/$name/$name-$version.tar.bz2)
build() {
patch -p1 < $SRC/ketchup-list.patch
install -D -m 0755 $name $PKG/usr/bin/$name
install -D -m 0644 $name.1 $PKG/usr/man/man1/$name.1
}

View File

@ -1,13 +0,0 @@
--- a/ketchup Sun Mar 5 11:06:59 2006 -0600
+++ b/ketchup Sun Mar 5 11:10:11 2006 -0600
@@ -687,7 +687,10 @@ if options["list-trees"]:
l = version_info.keys()
l.sort()
for tree in l:
- lprint(tree, ["(unsigned)","(signed)"][version_info[tree][3]])
+ if version_info[tree][3] == 0:
+ lprint(tree, "(unsigned)")
+ else:
+ lprint(tree, "(signed)")
lprint(" " + version_info[tree][4])
sys.exit(0)