Gentoo Archives: gentoo-dev

From: Stefan Schweizer <sschweizer@×××××.com>
To: Patrick Lauer <patrick@g.o>
Cc: gentoo-dev@l.g.o
Subject: Re: [gentoo-dev] script repository
Date: Tue, 23 Nov 2004 18:45:15
Message-Id: e796392204112310457732d619@mail.gmail.com
In Reply to: [gentoo-dev] script repository by Patrick Lauer
1 Would be nice, if we would have a nice page, which also shows the
2 description for the tools and sorts them in several groups.
3
4 Under what license do you want to give these scripts away? I would
5 propse a mandatory gentoo header, so the license is obvious.
6
7 I have one nice tool to add: ecommit
8 Description in the header and the code is pretty self-speaking :)
9
10 [code]
11 # A small commit wrapper by Matthew Schick <matt@×××××××××××××.net>
12 #!/bin/bash
13
14 log="$*"
15
16 if [ -z "$log" ]; then
17 echo "Need an commit log!"
18 exit 1
19 else
20 echangelog "$log"
21 if cvs status ChangeLog|grep "Status: Unknown" >/dev/null; then
22 cvs add ChangeLog
23 fi
24 repoman ci -m "$log"
25 fi
26 [/code]
27
28
29 Stefan
30
31 --
32 gentoo-dev@g.o mailing list