[clc-devel] e-mail format in Pkgfiles
Hi, We've decided to change to e-mail addresses in the Pkgfiles from Joe User <user@domain.com> Joe User <user.name@sub.domain.com> to Joe User, user at domain dot com Joe User, user dot name at sub dot domain dot com The package guidelines have been changed to reflect this: http://clc.morpheus.net:6999/clc/wiki?p=PackageGuidelines Remember that you can do those changes in a single commit, to keep the timeline nice and clear ;-) Kind regards, Johannes -- Johannes Winkelmann mailto:jw@tks6.net Bern, Switzerland http://jw.tks6.net
Johannes Winkelmann schrieb:
Hi,
Hi Johannes, hi maintainers,
We've decided to change to e-mail addresses in the Pkgfiles from Joe User <user@domain.com> Joe User <user.name@sub.domain.com> to Joe User, user at domain dot com Joe User, user dot name at sub dot domain dot com
The package guidelines have been changed to reflect this: http://clc.morpheus.net:6999/clc/wiki?p=PackageGuidelines
Remember that you can do those changes in a single commit, to keep the timeline nice and clear ;-)
This sed should do that automatically: ls */Pkgfile | \ xargs -n 1 sed -i \ -e 's/# Maintainer: \(.*\) <\(.*\)@\(.*\)>/# Maintainer: \1, \2 at \3/' -e 's/\(# Maintainer: .*\)\.\(.*\)/\1 dot \2/g' :-) Please test it first for your ports without the -i option. A second call with Packager: instead of Maintainer should change that occurences, too.
Kind regards, Johannes
Bye Martin.
Opel Martin schrieb: [...]
This sed should do that automatically:
ls */Pkgfile | \ xargs -n 1 sed -i \ -e 's/# Maintainer: \(.*\) <\(.*\)@\(.*\)>/# Maintainer: \1, \2 at \3/' -e 's/\(# Maintainer: .*\)\.\(.*\)/\1 dot \2/g'
The hack was too dirty. The second -e does only replace one '.' :(
On March 8, 2005 2:36, Johannes Winkelmann wrote:
Remember that you can do those changes in a single commit, to keep the timeline nice and clear ;-)
Can I modify ports where I am packager, but not maintainer? Also, is there a way to re-tag all these modified Pkgfiles in one fell swoop? Cheers, Nick
On March 8, 2005 2:36, Johannes Winkelmann wrote:
Remember that you can do those changes in a single commit, to keep the timeline nice and clear ;-)
Can I modify ports where I am packager, but not maintainer? Also, is there a way to re-tag all these modified Pkgfiles in one fell swoop? I think you already changed your ports, but just for the records (or
Hi, On Wed, Mar 09, 2005 at 00:44:17 -0700, Nick Steeves wrote: those who haven't changed their ports yet): it's certainly just fine to update ports where you're just the packager (just update the maintainer field as well). Regarding cvs, just do cvs commit port1 port2 port3 followed by a cvs tag -F CONTRIB-2_0 port1 port2 port3 from the base directory of your cvs checkout. HTH, Johannes -- Johannes Winkelmann mailto:jw@tks6.net Bern, Switzerland http://jw.tks6.net
participants (3)
-
Johannes Winkelmann
-
Nick Steeves
-
Opel Martin