Gentoo Archives: gentoo-dev

From: "Chad M. Huneycutt" <chad.huneycutt@×××.org>
To: gentoo-dev@××××××××××.org
Subject: Re: [gentoo-dev] Script to make list of ebuilds without $Header$
Date: Wed, 15 Aug 2001 09:14:54
Message-Id: 3B7A9126.80302@acm.org
In Reply to: [gentoo-dev] Script to make list of ebuilds without $Header$ by Dan Armak
1 Dan Armak wrote:
2
3 >Hi all,
4 >
5 >The following construct:
6 >
7 >#! /bin/sh
8 >for X in `find /usr/portage/ -name *.ebuild | sort`;
9 >do
10 >
11 > grep "\$Header" ${X} > /dev/null || echo ${X}
12 >
13 >done
14 >
15
16 Why don't we add two lines as the 4th and fifth line:
17 # $Header$
18 # ****** DELETE ANY BROKEN HEADER LINES, PLEASE *****
19
20 That way developers can clean up the headers as they modify an ebuild.
21
22 Chad

Replies