* ketchup patch for 2.6-ac
@ 2005-01-05 21:42 Jan Dittmer
0 siblings, 0 replies; only message in thread
From: Jan Dittmer @ 2005-01-05 21:42 UTC (permalink / raw)
To: mpm; +Cc: Linux kernel
[-- Attachment #1: Type: text/plain, Size: 102 bytes --]
Hi Matt,
attached patch adds support for 2.6-ac releases to ketchup.
Thanks for the nice tool,
Jan
[-- Attachment #2: ketchup-ac.patch --]
[-- Type: text/plain, Size: 1074 bytes --]
--- ketchup-0.9 2005-01-05 22:14:23.000000000 +0100
+++ ketchup 2005-01-05 22:40:06.000000000 +0100
@@ -219,6 +219,14 @@
part = last(url)
return part[:-1]
+def latest_ac(url, pat):
+ url = kernel_url + '/people/alan/linux-2.6/'
+ url += last(url)
+ for l in urllib.urlopen(url).readlines():
+ m=re.search('(?i)<a href="patch-(.*)\.bz2">', l)
+ if m: n = m.group(1)
+ return n
+
def latest_26(url, pat):
for l in urllib.urlopen(url).readlines():
m = re.search('"LATEST-IS-(.*)"', l)
@@ -300,6 +308,10 @@
kernel_url + "/people/akpm/patches/" +
"%(tree)s/%(prebase)s/%(full)s/%(full)s.bz2", "",
1, "Andrew Morton's -mm development tree"),
+ '2.6-ac': (latest_ac,
+ kernel_url + "/people/alan/linux-%(tree)s/" +
+ "%(prebase)s/patch-%(full)s.bz2", "",
+ 1, "Alan Cox's -ac development tree"),
'2.6-tiny': (latest_dir,
"http://www.selenic.com/tiny/%(full)s.patch.bz2",
r'(2.6.*?).patch.bz2',
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-01-05 21:50 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-01-05 21:42 ketchup patch for 2.6-ac Jan Dittmer
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.