Hi there, Here's a summary of last tuesday's meeting. 1. "Main" -> "Wiki" move As discussed previously, we've moved major parts of the old "Main/Documentation" page to the "Wiki" section. We've also moved some outdated pages from the "Main/Development" page. There's still some potential to make the "Main" section lighter, but I feel we're on the right track. At the same time, we should think about a better structure for the wiki (the "Wiki" section :-)), to make it easier for users to find what they want. Ideas welcome, otherwise maybe we can have a brainstorming session on crux@ 2. Regular "real" meetings We agreed that there's no need for regular "real" meetings (where "real" mean "not casual", not IRL). We will do them whenever there's a need for it, typically for release preparations. 3. Diffs in [notify] mails We want to remove the .footprint diff from these. Volunteers for that task are welcome :-) 4. pkgadd/pkgmk ideas We've quickly talked about two things here: - allowing pkgadd and pkgmk to cope with multiple packages - don't complain if you do pkgadd -u on a package which isn't installed yet The later was somewhat controversial, and I suggest we revisit that later again. So much for this meeting, looking forward to next week :-). Cheers, Johannes -- Johannes Winkelmann mailto:jw@smts.ch Zurich, Switzerland http://jw.smts.ch
3. Diffs in [notify] mails We want to remove the .footprint diff from these. Volunteers for that task are welcome :-) I attached a script that will remove the footprint diff; just piping the output of git-log through it should work. Chances are this is rather slow, and the regex to match the next file after the footprint should
Hi, On Thu, Jul 17, 2008 at 08:18:52 +0200, Johannes Winkelmann wrote: [...] probably be replaced by a pure substring match, but it can serve as a starting point :-) Cheers, Johannes -- Johannes Winkelmann mailto:jw@smts.ch Zurich, Switzerland http://jw.smts.ch
Hi, On 2008-07-17 at 09:12, Johannes Winkelmann wrote:
I attached a script that will remove the footprint diff; just piping the output of git-log through it should work. Chances are this is rather slow, and the regex to match the next file after the footprint should probably be replaced by a pure substring match, but it can serve as a starting point :-)
git log -p -n1 <commit hash>|sed '/--- a\/.*\.footprint/,/--- a/d' ? - Antti
On Thu, 17 Jul 2008 10:24:16 +0300 Antti Nykänen <aon@iki.fi> wrote:
Hi,
On 2008-07-17 at 09:12, Johannes Winkelmann wrote:
I attached a script that will remove the footprint diff; just piping the output of git-log through it should work. Chances are this is rather slow, and the regex to match the next file after the footprint should probably be replaced by a pure substring match, but it can serve as a starting point :-)
git log -p -n1 <commit hash>|sed '/--- a\/.*\.footprint/,/--- a/d' ?
s/git log -p -n1/git show/ -- Lucas Hazel <lucas@die.net.au>
participants (3)
-
Antti Nykänen
-
Johannes Winkelmann
-
Lucas Hazel