diff options
author | Justin Davis <jrcd83@gmail.com> | 2011-09-09 23:41:26 +0200 |
---|---|---|
committer | Justin Davis <jrcd83@gmail.com> | 2011-09-09 23:41:26 +0200 |
commit | 4f22914b1945c076856e42a06b8d5e8a05025240 (patch) | |
tree | e163eaa89a938ffc82cbb735b14e2a3574f78262 /bin | |
parent | a904c6436bb93ce4c3fdeb583f40845db90de5be (diff) | |
download | genpkg-4f22914b1945c076856e42a06b8d5e8a05025240.tar.gz genpkg-4f22914b1945c076856e42a06b8d5e8a05025240.tar.xz |
Remove addsvnid macro. Add the $Id$ tagging to pushpkg.
The pushpkg script is specific to releasing packages on Arch's
official repositories. It is more appropriate there and not as
a generic macro that I might forget to add. This way I cannot
forget to add it.
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/macros/addsvnid | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/bin/macros/addsvnid b/bin/macros/addsvnid deleted file mode 100755 index b010edc..0000000 --- a/bin/macros/addsvnid +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/awk -f -# Add an SVN $Id$ comment at the end of the comments header -/^#/ { aftercom = 1 } -!/^#/ && aftercom && ! done { print "# $Id$"; done = 1 } -{ print } |