[Python-checkins] python/nondist/peps pep-0102.txt,1.20,1.21

anthonybaxter at users.sourceforge.net anthonybaxter at users.sourceforge.net
Thu May 13 03:20:24 EDT 2004


Update of /cvsroot/python/python/nondist/peps
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29538

Modified Files:
	pep-0102.txt 
Log Message:
updates

Index: pep-0102.txt
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep-0102.txt,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** pep-0102.txt	5 Dec 2003 08:37:41 -0000	1.20
--- pep-0102.txt	13 May 2004 07:20:16 -0000	1.21
***************
*** 94,101 ****
    ___ For the Windows build, additional files have to be updated.
  
!       PCBuild/BUILDno.txt contains the Windows build number, see the
        instructions in this file how to change it.  Saving the project
!       file PCBuild/pythoncore.dsp results in a change to
!       PCBuild/pythoncore.dsp as well.
  
        PCbuild/python20.wse sets up the Windows installer version
--- 94,101 ----
    ___ For the Windows build, additional files have to be updated.
  
!       PCbuild/BUILDno.txt contains the Windows build number, see the
        instructions in this file how to change it.  Saving the project
!       file PCbuild/pythoncore.dsp results in a change to
!       PCbuild/pythoncore.dsp as well.
  
        PCbuild/python20.wse sets up the Windows installer version
***************
*** 213,220 ****
        on the tar command because 1) that's only supported by GNU tar
        as far as we know, and 2) we're going to max out the compression
!       level, which isn't a supported option.
        % tar -cf - Python-2.1.2 | gzip -9 > Python-2.1.2.tgz
  
!   ___ Calculate the MD5 checksum of the tgz file you just created
        % md5sum Python-2.1.2.tgz
  
--- 213,224 ----
        on the tar command because 1) that's only supported by GNU tar
        as far as we know, and 2) we're going to max out the compression
!       level, which isn't a supported option. We generate both tar.gz
!       tar.bz2 formats, as the latter is about 1/6th smaller.
! 
        % tar -cf - Python-2.1.2 | gzip -9 > Python-2.1.2.tgz
+       % tar -cf - Python-2.1.2 | bzip2 -9 > Python-2.1.2.tar.bz2
  
!   ___ Calculate the MD5 checksum of the tgz and tar.bz2 files you 
!       just created
        % md5sum Python-2.1.2.tgz
  
***************
*** 222,225 ****
--- 226,235 ----
        Python replacement in the Tools/scripts/md5sum.py file.
  
+   ___ Create GPG keys for each of the files.
+ 
+       % gpg -ba Python-2.1.2.tgz
+       % gpg -ba Python-2.1.2.tar.bz2
+       % gpg -ba Python-2.1.2.exe
+ 
    ___ Now you want to perform the very important step of checking the
        tarball you just created, to make sure a completely clean,
***************
*** 268,271 ****
--- 278,283 ----
          Python since the previous release for this version of Python.
  
+     ___ Copy the .asc GPG signatures you created earlier here as well.
+ 
      ___ Also, update the MD5 checksums.
  




More information about the Python-checkins mailing list