From: Jan Dittmer <jdittmer@ppp0.net>
To: mpm@selenic.com
Cc: Linux kernel <linux-kernel@vger.kernel.org>
Subject: ketchup patch for 2.6-ac
Date: Wed, 05 Jan 2005 22:42:58 +0100 [thread overview]
Message-ID: <41DC5F62.9090006@ppp0.net> (raw)
[-- 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',
reply other threads:[~2005-01-05 21:50 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=41DC5F62.9090006@ppp0.net \
--to=jdittmer@ppp0.net \
--cc=linux-kernel@vger.kernel.org \
--cc=mpm@selenic.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome