From: David Woodhouse <dwmw2@infradead.org>
To: Larry McVoy <lm@bitmover.com>
Cc: Jes Sorensen <jes@wildopensource.com>,
Jeff Garzik <garzik@havoc.gtf.org>,
linux-kernel@vger.kernel.org
Subject: Re: Suggestion re: [PATCH] Remove Bitkeeper documentation from Linux tree
Date: Wed, 24 Apr 2002 10:03:31 +0100 [thread overview]
Message-ID: <22053.1019639011@redhat.com> (raw)
In-Reply-To: <20020423080216.E25771@work.bitmover.com>
lm@bitmover.com said:
> Sure, as soon as we find a mirror for bkbits.net, having a plain text
> interface to the files/patches, is a fine idea. Until then, I need to
> hoard my bandwidth. I'm working on the mirror problem.
These are already available on the kernel.org mirrors.
http://ftp.??.kernel.org/pub/linux/kernel/people/dwmw2/bk-2.5/
http://ftp.??.kernel.org/pub/linux/kernel/people/
The individual patches look sane - I'm not entirely sure about the 'Full
patch' version, which seems to contain stuff not in the individual patches.
<MODE REPLY-TO=!linux-kernel>
Larry, any idea why? Script below...
</MODE>
#!/bin/sh
#
# $Id: bkexport.sh,v 1.10 2002/04/23 00:13:24 dwmw2 Exp $
BKDIR="$1"
PATCHDIR="$2"
CACHEDIR="$3"
if [ "$BKDIR" = "" -o "$PATCHDIR" = "" -o "$CACHEDIR" = "" ] ; then
echo "Usage: $o <bkdir> <patchdir> <cachedir>"
exit 1
fi
cd $PATCHDIR || exit 1
cd $CACHEDIR || exit 1
cd $BKDIR || exit 1
TAGCSET=`bk changes -t -d:I:\\\n | head -1`
TAG=`bk changes -r$TAGCSET -d:TAG:`
CSETS=`bk changes -d":I: " -r$TAGCSET,.`
NEWESTCSET=`echo $CSETS | cut -f1 -d\ `
if [ -r $PATCHDIR/cset-$TAGCSET-to-$NEWESTCSET.txt ]; then
# We already ran with this set of changesets. Don't bother to rebuild.
exit 0
fi
bk export -tpatch -r$TAGCSET,$NEWESTCSET > $PATCHDIR/cset-$TAGCSET-to-$NEWESTCSET.txt
cat > $CACHEDIR/newindex.$$.html <<EOF
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>BitKeeper patches for `hostname`:$BKDIR</title>
</head>
<body>
<H1>BitKeeper patches since $TAG</H1>
<H2><A HREF="cset-$TAGCSET-to-$NEWESTCSET.txt">Full patch from $TAG to ChangeSet $NEWESTCSET</A></H2>
EOF
for CSET in $CSETS; do
if [ ! -r $PATCHDIR/cset-$CSET.txt -o \
! -r $CACHEDIR/cset-index-$CSET.html -o \
! -r $CACHEDIR/cset-key-$CSET -o \
"`cat $CACHEDIR/cset-key-$CSET 2>/dev/null`" != "`bk changes -r$CSET -d:KEY:`" ] ; then
bk export -tpatch -r$CSET > $PATCHDIR/cset-$CSET.txt
bk changes -r$CSET -d'<H3><A HREF="cset-:I:.txt">:G: :I:, :D: :T::TZ:, :USER: @ :HOST:</A></H3>\n<P>:HTML_C:</P>\n' > $CACHEDIR/cset-index-$CSET.html
bk changes -r$CSET -d:KEY: > $CACHEDIR/cset-key-$CSET
fi
cat $CACHEDIR/cset-index-$CSET.html >> $CACHEDIR/newindex.$$.html
done
if [ "$CSETS" = "" ] ; then
echo "<H3>No changes since last tag</h3>" >> $CACHEDIR/newindex.$$.html
EOF
fi
cat >> $CACHEDIR/newindex.$$.html <<EOF
<hr>
Index generated at `date -u`
</body>
</HTML>
EOF
mv $CACHEDIR/newindex.$$.html $PATCHDIR/index.html
# Clean up old patches.
cd $PATCHDIR
for FILE in *.txt ; do
case $FILE in
cset-$TAGCSET-to-$NEWESTCSET.txt)
continue
;;
cset-*.txt)
FILECSET=`echo $FILE | sed "s/^cset-\(.*\).txt\$/\\1/"`
if ! echo $CSETS | grep -q -- $FILECSET ; then
rm "$FILE"
fi
continue
;;
esac
done
cd $CACHEDIR
for FILE in *.html ; do
case $FILE in
index.html)
continue
;;
cset-index-*.html)
FILECSET=`echo $FILE | sed "s/^cset-index-\(.*\).html\$/\\1/"`
if ! echo $CSETS | grep -q -- $FILECSET ; then
rm "$FILE"
fi
continue
;;
esac
done
--
dwmw2
next prev parent reply other threads:[~2002-04-24 9:05 UTC|newest]
Thread overview: 286+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-04-19 15:12 [PATCH] Remove Bitkeeper documentation from Linux tree Daniel Phillips
2002-04-20 15:52 ` Jeff Garzik
2002-04-20 16:16 ` Roman Zippel
2002-04-20 16:25 ` David Lang
2002-04-20 17:05 ` Roman Zippel
2002-04-20 17:16 ` Linus Torvalds
2002-04-20 16:25 ` Jeff Garzik
2002-04-19 16:33 ` Daniel Phillips
2002-04-20 16:56 ` Linus Torvalds
2002-04-19 17:17 ` Daniel Phillips
2002-04-20 17:35 ` Linus Torvalds
2002-04-20 17:38 ` Thunder from the hill
2002-04-21 2:26 ` Ian Molton
2002-06-18 19:12 ` Greg Stark
2002-04-20 17:19 ` [PATCH] " Roman Zippel
2002-04-20 21:03 ` Jeff Garzik
2002-04-20 21:36 ` Skip Ford
2002-04-20 21:40 ` Rik van Riel
2002-04-20 23:14 ` Larry McVoy
2002-04-20 21:53 ` Jeff Garzik
2002-04-21 0:04 ` Roman Zippel
2002-04-21 0:17 ` Larry McVoy
2002-04-21 9:22 ` Jochen Friedrich
2002-04-21 10:05 ` Thunder from the hill
2002-04-21 10:17 ` Thunder from the hill
2002-04-21 11:10 ` Anton Altaparmakov
2002-04-21 16:46 ` Jochen Friedrich
2002-04-21 17:00 ` Larry McVoy
2002-04-21 17:05 ` Anton Altaparmakov
2002-04-21 17:14 ` Larry McVoy
2002-04-21 13:18 ` Rik van Riel
2002-04-21 13:41 ` yodaiken
2002-04-21 16:50 ` Jochen Friedrich
2002-04-21 17:18 ` yodaiken
2002-04-21 15:17 ` Jeff Garzik
2002-04-21 16:32 ` Jeff Garzik
2002-04-20 16:46 ` Daniel Phillips
2002-04-21 16:57 ` Jeff Garzik
2002-04-20 17:11 ` Daniel Phillips
2002-04-22 12:06 ` Roman Zippel
2002-04-22 16:39 ` Jeff Garzik
2002-04-23 13:49 ` Roman Zippel
2002-04-23 14:51 ` Larry McVoy
2002-04-22 15:29 ` Daniel Phillips
2002-04-23 17:00 ` Rik van Riel
2002-04-23 18:12 ` Roman Zippel
2002-04-23 15:13 ` Roman Zippel
2002-04-23 15:17 ` Larry McVoy
2002-04-23 15:35 ` Roman Zippel
2002-04-23 15:37 ` Larry McVoy
2002-04-23 16:04 ` Roman Zippel
2002-04-23 17:01 ` Rik van Riel
2002-04-23 17:06 ` Roman Zippel
2002-04-23 15:05 ` Rik van Riel
2002-04-23 15:27 ` Roman Zippel
2002-04-21 2:30 ` Ian Molton
2002-04-21 15:33 ` Jeff Garzik
2002-04-20 15:46 ` Daniel Phillips
2002-04-21 15:59 ` Jeff Garzik
2002-04-21 23:36 ` Ian Molton
2002-04-26 21:58 ` Rik van Riel
2002-04-20 16:37 ` Linus Torvalds
2002-04-19 16:45 ` Daniel Phillips
2002-04-20 16:54 ` Alexander Viro
2002-04-21 2:36 ` Ian Molton
2002-04-20 15:54 ` Jeff Garzik
2002-04-20 16:29 ` Nils Philippsen
2002-04-20 16:56 ` Jeff Garzik
2002-04-21 2:38 ` Ian Molton
2002-04-20 16:13 ` Anton Altaparmakov
2002-04-19 16:21 ` Daniel Phillips
2002-04-20 16:51 ` Anton Altaparmakov
2002-04-19 17:05 ` Daniel Phillips
2002-04-20 17:09 ` Linus Torvalds
2002-04-19 17:32 ` Daniel Phillips
2002-04-20 17:51 ` Linus Torvalds
2002-04-19 21:02 ` Daniel Phillips
2002-04-20 21:07 ` Jeff Garzik
2002-04-19 22:01 ` Daniel Phillips
2002-04-20 22:20 ` Jeff Garzik
2002-04-19 22:34 ` Daniel Phillips
2002-04-20 22:54 ` Jeff Garzik
2002-04-21 1:41 ` Rob Landley
2002-04-20 15:44 ` Daniel Phillips
2002-04-21 15:52 ` Rob Landley
2002-04-21 15:59 ` Russell King
2002-04-20 16:10 ` Daniel Phillips
2002-04-21 16:15 ` Russell King
2002-04-21 16:15 ` Jeff Garzik
2002-04-21 16:02 ` arjan
2002-04-20 22:30 ` Stelian Pop
2002-04-21 2:46 ` Ian Molton
2002-04-20 22:37 ` Russell King
2002-04-20 23:15 ` Kenneth Johansson
2002-04-20 17:05 ` Daniel Phillips
2002-04-21 17:15 ` Jeff Garzik
2002-04-21 1:38 ` Oliver Xymoron
2002-04-21 15:32 ` Jeff Garzik
2002-04-20 22:00 ` Stevie O
2002-04-20 22:14 ` Anton Altaparmakov
2002-04-21 2:48 ` Ian Molton
2002-04-20 22:31 ` Jeff Garzik
2002-04-21 17:16 ` Suggestion " CaT
2002-04-21 17:40 ` Larry McVoy
2002-04-20 17:50 ` Daniel Phillips
2002-04-21 17:54 ` CaT
2002-04-21 18:11 ` Larry McVoy
2002-04-21 18:20 ` Jeff Garzik
2002-04-21 18:23 ` Larry McVoy
2002-04-21 18:12 ` Jeff Garzik
2002-04-20 18:23 ` Daniel Phillips
2002-04-21 18:30 ` Jeff Garzik
2002-04-20 19:01 ` Daniel Phillips
2002-04-23 6:04 ` Jamie Lokier
2002-04-22 10:44 ` Daniel Phillips
2002-04-22 10:47 ` Daniel Phillips
2002-04-23 10:57 ` Rasmus Andersen
2002-04-21 22:08 ` Barry K. Nathan
2002-04-21 17:48 ` Jeff Garzik
2002-04-21 17:54 ` Larry McVoy
2002-04-21 17:59 ` Jeff Garzik
2002-04-21 18:18 ` Larry McVoy
2002-04-23 12:10 ` Jes Sorensen
2002-04-23 15:02 ` Larry McVoy
2002-04-23 15:07 ` Jes Sorensen
2002-04-23 15:12 ` Larry McVoy
2002-04-23 16:06 ` Christoph Hellwig
2002-04-24 9:03 ` David Woodhouse [this message]
2002-04-24 11:33 ` Dave Jones
2002-04-21 18:53 ` Linus Torvalds
2002-04-21 18:25 ` Tigran Aivazian
2002-04-20 17:51 ` Larry McVoy
2002-04-19 18:27 ` Daniel Phillips
2002-04-20 17:51 ` Rob Landley
2002-04-20 18:41 ` Jeff Garzik
2002-04-20 17:15 ` Jeff Garzik
2002-04-20 17:19 ` Dave Jones
2002-04-20 17:58 ` Eric W. Biederman
2002-04-20 18:35 ` Anton Altaparmakov
2002-04-20 18:13 ` Rik van Riel
2002-04-19 19:43 ` Daniel Phillips
2002-04-20 20:04 ` Jeff Garzik
2002-04-21 2:53 ` Ian Molton
2002-04-21 1:46 ` Rob Landley
2002-04-21 15:51 ` Jeff Garzik
2002-04-21 16:26 ` Tigran Aivazian
2002-04-20 16:34 ` Daniel Phillips
2002-04-21 16:27 ` Richard Gooch
2002-04-20 16:36 ` Daniel Phillips
2002-04-21 16:45 ` Richard Gooch
2002-04-20 17:41 ` Larry McVoy
2002-04-19 18:07 ` Daniel Phillips
2002-04-20 17:53 ` Eric W. Biederman
2002-04-19 18:15 ` Daniel Phillips
2002-04-20 18:44 ` Eric W. Biederman
2002-04-19 19:22 ` Daniel Phillips
2002-04-20 18:48 ` Russell King
2002-04-19 19:19 ` Daniel Phillips
2002-04-21 2:57 ` Ian Molton
2002-04-21 2:56 ` Arnaldo Carvalho de Melo
2002-04-21 3:46 ` Ian Molton
2002-04-21 3:43 ` Arnaldo Carvalho de Melo
2002-04-21 4:05 ` BK, deltas, snapshots and fate of -pre Alexander Viro
2002-04-21 1:53 ` Rob Landley
2002-04-21 18:40 ` Linus Torvalds
2002-04-21 23:08 ` Pavel Machek
2002-04-24 2:23 ` Linus Torvalds
2002-04-21 3:59 ` David S. Miller
2002-04-21 4:32 ` Andrew Morton
2002-04-21 5:59 ` Andreas Dilger
2002-04-21 4:13 ` Linus Torvalds
2002-04-21 12:53 ` Daniel Phillips
2002-04-22 15:44 ` Larry McVoy
2002-04-21 15:50 ` Daniel Phillips
2002-04-22 16:10 ` Larry McVoy
2002-04-21 16:21 ` Daniel Phillips
2002-04-22 17:17 ` Larry McVoy
2002-04-21 17:34 ` Daniel Phillips
2002-04-22 17:38 ` Larry McVoy
2002-04-21 17:49 ` Daniel Phillips
2002-04-22 17:53 ` Larry McVoy
2002-04-21 18:09 ` Daniel Phillips
2002-04-22 19:53 ` Doug Ledford
2002-04-21 20:29 ` Daniel Phillips
2002-04-22 20:53 ` Doug Ledford
2002-04-21 21:05 ` Daniel Phillips
2002-04-22 21:21 ` Doug Ledford
2002-04-21 21:37 ` Daniel Phillips
2002-04-22 21:45 ` Alexander Viro
2002-04-22 22:49 ` Larry McVoy
2002-04-22 22:08 ` Doug Ledford
2002-04-22 22:25 ` Jeff Garzik
2002-04-22 21:25 ` Jeff Garzik
2002-04-22 21:30 ` Doug Ledford
2002-04-22 21:33 ` Nicholas Harring
2002-04-25 20:53 ` Kai Henningsen
2002-04-21 23:16 ` Pavel Machek
2002-04-23 20:45 ` Rik van Riel
2002-04-25 3:51 ` Ian Molton
2002-04-25 3:55 ` Olivier Galibert
2002-04-25 12:38 ` Ian Molton
2002-04-25 13:33 ` David Woodhouse
2002-04-25 14:29 ` Richard Gooch
2002-04-25 15:41 ` Rik van Riel
2002-04-22 17:31 ` Jeff Garzik
2002-04-27 18:59 ` Richard Gooch
2002-04-26 20:19 ` Daniel Phillips
2002-04-28 17:42 ` Richard Gooch
2002-04-26 20:38 ` Daniel Phillips
2002-04-28 17:52 ` Richard Gooch
2002-04-27 20:02 ` Roman Zippel
2002-04-28 17:40 ` Richard Gooch
2002-04-28 18:08 ` Linus Torvalds
2002-04-28 18:47 ` Richard Gooch
2002-04-28 19:07 ` Kiss The Blade
2002-04-28 19:27 ` Linus Torvalds
2002-04-28 19:41 ` Richard Gooch
2002-04-28 19:49 ` Kiss The Blade
2002-04-28 19:42 ` Richard Gooch
2002-04-28 20:03 ` tomas szepe
2002-04-28 20:11 ` Roman Zippel
2002-04-28 20:40 ` Kiss The Blade
2002-04-29 6:55 ` Kai Henningsen
2002-04-29 6:55 ` Kai Henningsen
2002-04-28 20:06 ` Roman Zippel
2002-04-27 20:40 ` Larry McVoy
2002-04-22 17:10 ` Jeff Garzik
2002-04-21 17:17 ` Daniel Phillips
2002-04-22 17:19 ` Jeff Garzik
2002-04-21 17:37 ` Daniel Phillips
2002-04-22 17:46 ` Jeff Garzik
2002-04-22 17:21 ` Larry McVoy
2002-04-21 17:44 ` Daniel Phillips
2002-04-22 17:48 ` Larry McVoy
2002-04-21 18:03 ` Daniel Phillips
2002-04-22 17:52 ` Jeff Garzik
2002-04-21 18:05 ` Daniel Phillips
2002-04-22 20:18 ` Jeff Garzik
2002-04-21 20:42 ` Daniel Phillips
2002-04-22 20:57 ` Jeff Garzik
2002-04-21 21:06 ` Daniel Phillips
2002-04-22 20:57 ` Anton Altaparmakov
2002-04-22 18:01 ` Anton Altaparmakov
2002-04-21 18:16 ` Daniel Phillips
2002-04-22 18:29 ` Anton Altaparmakov
2002-04-21 18:47 ` Daniel Phillips
2002-04-22 19:41 ` Anton Altaparmakov
2002-04-23 4:57 ` Andre Pang
2002-04-22 11:34 ` Daniel Phillips
2002-04-23 5:56 ` Andreas Dilger
2002-04-21 4:31 ` Ian Molton
2002-04-21 4:20 ` David S. Miller
2002-04-21 4:42 ` Ian Molton
2002-04-21 4:29 ` David S. Miller
2002-04-21 4:49 ` Ben Greear
2002-04-21 6:27 ` Alexander Viro
2002-04-21 11:18 ` Ian Molton
2002-04-21 16:28 ` dean gaudet
2002-04-21 12:57 ` Daniel Phillips
2002-04-22 13:14 ` Impressions of 2.5.8 Matthew D. Pitts
2002-04-21 4:40 ` BK, deltas, snapshots and fate of -pre Skip Ford
2002-04-21 8:31 ` Russell King
2002-04-21 13:05 ` Daniel Phillips
2002-04-22 13:08 ` Russell King
2002-04-21 20:53 ` Skip Ford
2002-04-21 16:35 ` dean gaudet
2002-04-21 17:13 ` Jeff Garzik
2002-04-21 17:23 ` Larry McVoy
2002-04-21 17:32 ` Jeff Garzik
2002-04-21 17:39 ` Larry McVoy
2002-04-21 17:45 ` Jeff Garzik
2002-04-21 17:47 ` Larry McVoy
2002-04-21 17:49 ` Jeff Garzik
2002-04-21 17:57 ` Larry McVoy
2002-04-21 18:07 ` Jeff Garzik
2002-04-21 18:14 ` Larry McVoy
2002-04-21 18:24 ` Jeff Garzik
2002-04-21 18:26 ` Larry McVoy
2002-04-22 6:33 ` Rusty Russell
2002-04-21 15:36 ` [PATCH] Remove Bitkeeper documentation from Linux tree Jeff Garzik
2002-04-21 9:28 ` Jochen Friedrich
2002-04-21 15:53 ` Arnaldo Carvalho de Melo
2002-04-21 18:11 ` John Alvord
2002-04-21 18:15 ` Arnaldo Carvalho de Melo
2002-04-21 15:35 ` Jeff Garzik
2002-04-20 17:09 ` Daniel Phillips
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=22053.1019639011@redhat.com \
--to=dwmw2@infradead.org \
--cc=garzik@havoc.gtf.org \
--cc=jes@wildopensource.com \
--cc=linux-kernel@vger.kernel.org \
--cc=lm@bitmover.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