-
Notifications
You must be signed in to change notification settings - Fork 1
Go RFS template
Dawid Dziurla edited this page Mar 18, 2019
·
3 revisions
Replace every <*> with appropriate informations.
From: "<FULL_NAME>" <<EMAIL>>
To: debian-go@lists.debian.org
Subject: RFS: <PACKAGE_NAME>/<PACKAGE_VERSION>
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
Cc: <ITP_BUG_NUMBER>@bugs.debian.org
Dear Go team,
I am looking for a sponsor for the package "<PACKAGE_NAME>".
This package is a prerequisite for upcoming package "lazygit" (#908894).
I pushed to our team's Salsa:
https://salsa.debian.org/go-team/packages/<PACKAGE_NAME>
Could you please reviewing/sponsoring this?
Any kind of reviews and suggestions are appreciated.
And here is a nice script to generate RFS email easily:
#!/bin/bash
# requirements for this script to work properly:
# - be in directory with debianized source
# - it must be the first release of package
# - it must close an ITP bug
# - DEBFULLNAME and DEBEMAIL must be exported
package="$(dpkg-parsechangelog -S Source)"
version="$(dpkg-parsechangelog -S Version)"
itp="$(dpkg-parsechangelog -S Closes)"
cat > "../rfs-${package}.txt" <<EOF
From: "$DEBFULLNAME" <$DEBEMAIL>
To: debian-go@lists.debian.org
Subject: RFS: ${package}/${version}
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8bit
Cc: ${itp}@bugs.debian.org
Dear Go team,
I am looking for a sponsor for the package "${package}".
This package is a prerequisite for upcoming package "lazygit" (#908894).
I pushed to our team's Salsa:
https://salsa.debian.org/go-team/packages/${package}
Could you please reviewing/sponsoring this?
Any kind of reviews and suggestions are appreciated.
EOF