[Python-checkins] CVS: distutils README.txt,1.19,1.20 CHANGES.txt,1.13,1.14

Greg Ward python-dev@python.org
Mon, 25 Sep 2000 19:53:37 -0700


Update of /cvsroot/python/distutils
In directory slayer.i.sourceforge.net:/tmp/cvs-serv5784

Modified Files:
	README.txt CHANGES.txt 
Log Message:
Updates for release 0.9.3.

Index: README.txt
===================================================================
RCS file: /cvsroot/python/distutils/README.txt,v
retrieving revision 1.19
retrieving revision 1.20
diff -C2 -r1.19 -r1.20
*** README.txt	2000/09/01 00:59:48	1.19
--- README.txt	2000/09/26 02:53:34	1.20
***************
*** 1,5 ****
                       Python Distribution Utilities
!                              release 0.9.2
!                             August 31, 2000
  
  
--- 1,5 ----
                       Python Distribution Utilities
!                              release 0.9.3
!                           September 26, 2000
  
  
***************
*** 113,122 ****
  
  The Distutils have been included with Python since 1.6a1, and Distutils
! 0.9.2 is the same as the code included with Python 2.0b1 (modulo bug
! fixes).  Thus, there's generally no need to install the Distutils under
! Python 1.6/2.0.  However, Distutils releases may occasionally get ahead
! of Python releases, so if you really like life on the bleeding edge, you
! might want to install this Distutils release into your Python 1.6/2.0
! library.
  
  To do this, you'll need to hide the original Distutils package directory
--- 113,121 ----
  
  The Distutils have been included with Python since 1.6a1, and Distutils
! 0.9.3 is the same as the code included with Python 2.0b2.  Thus, there's
! generally no need to install the Distutils under Python 1.6/2.0.
! However, Distutils releases may occasionally get ahead of Python
! releases, so if you really like life on the bleeding edge, you might
! want to install this Distutils release into your Python 1.6/2.0 library.
  
  To do this, you'll need to hide the original Distutils package directory
***************
*** 141,145 ****
  -----
  
! The Distutils is intended to have three user communities: developers,
  packagers, and installers.  Distutils 0.9 was the first release to cater
  seriously to all three communities: developers can use it to build and
--- 140,144 ----
  -----
  
! The Distutils are intended to have three user communities: developers,
  packagers, and installers.  Distutils 0.9 was the first release to cater
  seriously to all three communities: developers can use it to build and

Index: CHANGES.txt
===================================================================
RCS file: /cvsroot/python/distutils/CHANGES.txt,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -r1.13 -r1.14
*** CHANGES.txt	2000/09/01 00:59:48	1.13
--- CHANGES.txt	2000/09/26 02:53:34	1.14
***************
*** 1,2 ****
--- 1,38 ----
+ Release 0.9.3 (26 September, 2000):
+ -----------------------------------
+   * added --plat-name option to bdist and bdist_dumb commands
+ 
+   * added --python and --fix-python options to bdist_rpm, for better
+     control over which Python interpreter is hard-coded in the .spec file
+ 
+   * fixed default installation directories for Mac OS; now all
+     modules and extensions go to <prefix>:Lib:site-packages
+ 
+   * fixed the "clean" command so it cleans up the build directory
+     for scripts (build/scripts by default) (Bastian Kleineidam)
+ 
+   * more improvements to the bdist_wininst command and the
+     installers it generates: ....... (Thomas Heller)
+ 
+   * fix the "sdist" command so it deals better with missing, empty,
+     or broken MANIFEST and MANIFEST.in files
+ 
+   * fixed so the bdist_dumb comand can be run multiple times (eg.
+     to create ZIP and tarball dumb distributions) (bug spotted
+     by Rene Liebscher)
+ 
+   * fixed so the bdist_ext command respects 'define_macros' and
+     'undef_macros' instructions in Extension objects
+ 
+   * internal change: made the sysconfig module parse Python's Makefile
+     lazily, and provide the data via a function rather than module-level
+     global variables
+ 
+   * fix install and bdist_wininst commands so Windows installers
+     created on other platforms include scripts and data files
+ 
+   * various fixes to handling of config files
+ 
+ 
  Release 0.9.2 (31 August, 2000):
  -------------------------------
***************
*** 5,9 ****
  
    * new version of bdist_wininst command and associated tools: fixes
!     some bugs, produces a smaller exeuctable, and has a nicer GUI
      (thanks to Thomas Heller)
  
--- 41,45 ----
  
    * new version of bdist_wininst command and associated tools: fixes
!     some bugs, produces a smaller executable, and has a nicer GUI
      (thanks to Thomas Heller)