diff options
author | Rob Funk <rfunk@funknet.net> | 2004-06-18 06:55:28 +0000 |
---|---|---|
committer | Rob Funk <rfunk@funknet.net> | 2004-06-18 06:55:28 +0000 |
commit | 49b630f8ea30b7a5066f87b16b42cffec00a7bef (patch) | |
tree | 73a0831dd8a14ff248f883733478d3c3241759b1 /specgen.sh | |
parent | 66ddc385acb6af3f9ffaa25ec0b2ff5e85967fac (diff) | |
download | fetchmail-49b630f8ea30b7a5066f87b16b42cffec00a7bef.tar.gz fetchmail-49b630f8ea30b7a5066f87b16b42cffec00a7bef.tar.bz2 fetchmail-49b630f8ea30b7a5066f87b16b42cffec00a7bef.zip |
Start converting release scripts over to new environment
svn path=/trunk/; revision=3894
Diffstat (limited to 'specgen.sh')
-rwxr-xr-x | specgen.sh | 18 |
1 files changed, 13 insertions, 5 deletions
@@ -1,11 +1,19 @@ +#!/bin/sh + +user=`whoami` +name=`grep "^${user}:" /etc/passwd | cut -d: -f5|sed -e 's/^.*,//'` +domain=mail.berlios.de +email="$user@$domain" +packager="$name <$email>" + cat <<EOF # Note: Do not hack fetchmail.spec by hand -- it's generated by specgen.sh Name: fetchmail Version: $1 Release: 1 -Vendor: Eric Conspiracy Secret Labs -Packager: Eric S. Raymond <esr@thyrsus.com> -URL: http://www.catb.org/~esr/fetchmail/ +Vendor: The Community Fetchmail Project +Packager: $packager +URL: http://developer.berlios.de/projects/fetchmail Source: %{name}-%{version}.tar.gz Group: Applications/Mail Group(pt_BR): Aplicações/Correio Eletrônico @@ -23,7 +31,7 @@ Summary(tr): POP2, POP3, APOP, IMAP protokolleri ile uzaktan mektup alma yazý Summary(da): Alsidig POP/IMAP post-afhentnings dæmon BuildRoot: %{_tmppath}/%{name}-root #Keywords: mail, client, POP, POP2, POP3, APOP, RPOP, KPOP, IMAP, ETRN, ODMR, SMTP, ESMTP, GSSAPI, RPA, NTLM, CRAM-MD5, SASL -#Destinations: fetchmail-friends@ccil.org, fetchmail-announce@ccil.org +#Destinations: fetchmail-users@lists.berlios.de, fetchmail-announce@lists.berlios.de %description Fetchmail is a free, full-featured, robust, and well-documented remote @@ -155,6 +163,6 @@ rm -rf \$RPM_BUILD_ROOT /usr/lib/rhs/control-panel/fetchmailconf.init %changelog -* `date '+%a %b %d %Y'` <esr@thyrsus.com> ${version} +* `date '+%a %b %d %Y'` <$email> ${version} - See the project news file for recent changes. EOF |