Skip to content

Commit ce02932

Browse files
committed
Corrected mkrelease.
1 parent 165dcef commit ce02932

File tree

1 file changed

+33
-33
lines changed

1 file changed

+33
-33
lines changed

bin/mkrelease

Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ note "Verifying there's no uncommitted changes..."
200200
$do svn st | grep "^[AMGRD] " && die "There seems to be uncommitted changes in this working copy"
201201

202202
note "\nDoing the upload"
203-
$do make upload
203+
$do python setup.py sdist upload --sign
204204

205205
note "\nCreating new tag 'tags/${WORK:+$WORK/}$VER' from $SRC"
206206
$do svn cp $REPO/$SRC $REPO/tags/${WORK:+$WORK/}$VER -m "Creating new tag 'tags/${WORK:+$WORK/}$VER' from $SRC"
@@ -214,35 +214,35 @@ $do svn commit $VERFILE setup.py -m "Set version info back to development mode"
214214

215215
$do svn update
216216

217-
echo "
218-
Hi,
219-
220-
This is an automatic notification about a new xml2rfc release,
221-
v$VER, generated when running the mkrelease script.
222-
223-
Release notes:
224-
225-
$changes
226-
227-
The preferred way to install xml2rfc is by doing 'pip install xml2rfc',
228-
and 'pip install --upgrade xml2rfc' to upgrade. If there are system-
229-
installed python modules which pip will not upgrade, you may have to
230-
use 'pip install --upgrade --no-deps xml2rfc' and install dependencies
231-
manually.
232-
233-
The new version is also available through SVN checkout, with
234-
'svn checkout $REPO/tags/${WORK:+$WORK/}$VER'
235-
236-
Regards,
237-
238-
Henrik
239-
(via the mkrelease script)
240-
" > ./.mail/release-mail-v$VER.txt
241-
note "\nSend mail to interested parties"
242-
cat ./.mail/release-mail-v$VER.txt | $do mail -s "New xml2rfc release: v$VER" -c henrik@levkowetz.com -c glen@amsl.com -c rjs@nostrum.com -c housley@vigilsec.com -c arusso@amsl.com -c sginoza@amsl.com -c mferguson@amsl.com $contributors rse@rfc-editor.org
243-
note "\nSend mail to mailing lists (avoiding too many addressees"
244-
cat ./.mail/release-mail-v$VER.txt | $do mail -s "New xml2rfc release: v$VER" xml2rfc@ietf.org xml2rfc-dev@ietf.org -c rfc-markdown@ietf.org
245-
246-
#$do toolsfeed control changelog /www/tools.ietf.org/tools/atomfeed.xml
247-
$do toolpush /www/tools.ietf.org/tools/atomfeed.xml
248-
$do toolcmd sudo pip install --upgrade xml2rfc
217+
# echo "
218+
# Hi,
219+
#
220+
# This is an automatic notification about a new xml2rfc release,
221+
# v$VER, generated when running the mkrelease script.
222+
#
223+
# Release notes:
224+
#
225+
# $changes
226+
#
227+
# The preferred way to install xml2rfc is by doing 'pip install xml2rfc',
228+
# and 'pip install --upgrade xml2rfc' to upgrade. If there are system-
229+
# installed python modules which pip will not upgrade, you may have to
230+
# use 'pip install --upgrade --no-deps xml2rfc' and install dependencies
231+
# manually.
232+
#
233+
# The new version is also available through SVN checkout, with
234+
# 'svn checkout $REPO/tags/${WORK:+$WORK/}$VER'
235+
#
236+
# Regards,
237+
#
238+
# Henrik
239+
# (via the mkrelease script)
240+
# " > ./.mail/release-mail-v$VER.txt
241+
# note "\nSend mail to interested parties"
242+
# cat ./.mail/release-mail-v$VER.txt | $do mail -s "New xml2rfc release: v$VER" -c henrik@levkowetz.com -c glen@amsl.com -c rjs@nostrum.com -c housley@vigilsec.com -c arusso@amsl.com -c sginoza@amsl.com -c mferguson@amsl.com $contributors rse@rfc-editor.org
243+
# note "\nSend mail to mailing lists (avoiding too many addressees"
244+
# cat ./.mail/release-mail-v$VER.txt | $do mail -s "New xml2rfc release: v$VER" xml2rfc@ietf.org xml2rfc-dev@ietf.org -c rfc-markdown@ietf.org
245+
#
246+
# #$do toolsfeed control changelog /www/tools.ietf.org/tools/atomfeed.xml
247+
# $do toolpush /www/tools.ietf.org/tools/atomfeed.xml
248+
# $do toolcmd sudo pip install --upgrade xml2rfc

0 commit comments

Comments
 (0)