preparation for 2.5a1
This commit is contained in:
parent
70e079631f
commit
ebed3f629b
|
@ -5,5 +5,5 @@
|
|||
Email: \email{docs@python.org}
|
||||
}
|
||||
|
||||
\date{\today} % XXX update before final release!
|
||||
\date{5th April 2006} % XXX update before final release!
|
||||
\input{patchlevel} % include Python version information
|
||||
|
|
|
@ -49,6 +49,8 @@ GPL-compatible; the table below summarizes the various releases.
|
|||
\linev{2.4}{2.3}{2004}{PSF}{yes}
|
||||
\linev{2.4.1}{2.4}{2005}{PSF}{yes}
|
||||
\linev{2.4.2}{2.4.1}{2005}{PSF}{yes}
|
||||
\linev{2.4.3}{2.4.2}{2006}{PSF}{yes}
|
||||
\linev{2.5}{2.4}{2006}{PSF}{yes}
|
||||
\end{tablev}
|
||||
|
||||
\note{GPL-compatible doesn't mean that we're distributing
|
||||
|
|
|
@ -23,10 +23,10 @@
|
|||
#define PY_MINOR_VERSION 5
|
||||
#define PY_MICRO_VERSION 0
|
||||
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
|
||||
#define PY_RELEASE_SERIAL 0
|
||||
#define PY_RELEASE_SERIAL 1
|
||||
|
||||
/* Version as a string */
|
||||
#define PY_VERSION "2.5a0"
|
||||
#define PY_VERSION "2.5a1"
|
||||
|
||||
/* Subversion Revision number of this file (not of the repository) */
|
||||
#define PY_PATCHLEVEL_REVISION "$Revision$"
|
||||
|
|
2
LICENSE
2
LICENSE
|
@ -51,6 +51,8 @@ the various releases.
|
|||
2.4 2.3 2004 PSF yes
|
||||
2.4.1 2.4 2005 PSF yes
|
||||
2.4.2 2.4.1 2005 PSF yes
|
||||
2.4.3 2.4.2 2006 PSF yes
|
||||
2.5 2.4 2006 PSF yes
|
||||
|
||||
Footnotes:
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
What's New in IDLE 1.2a0?
|
||||
=======================
|
||||
What's New in IDLE 1.2a1?
|
||||
=========================
|
||||
|
||||
*Release date: XX-XXX-2006*
|
||||
*Release date: 05-APR-2006*
|
||||
|
||||
- Source file f.flush() after writing; trying to avoid lossage if user
|
||||
kills GUI.
|
||||
|
|
|
@ -1 +1 @@
|
|||
IDLE_VERSION = "1.2a0"
|
||||
IDLE_VERSION = "1.2a1"
|
||||
|
|
|
@ -7,7 +7,7 @@ Python News
|
|||
What's New in Python 2.5 alpha 1?
|
||||
=================================
|
||||
|
||||
*Release date: XX-XXX-2006*
|
||||
*Release date: 05-APR-2006*
|
||||
|
||||
Core and builtins
|
||||
-----------------
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
# "python2"?
|
||||
#WARNING: Commenting out doesn't work. Last line is what's used.
|
||||
%define config_binsuffix none
|
||||
%define config_binsuffix 2.4
|
||||
%define config_binsuffix 2.5
|
||||
|
||||
# Build tkinter? "auto" enables it if /usr/bin/wish exists.
|
||||
#WARNING: Commenting out doesn't work. Last line is what's used.
|
||||
|
@ -33,9 +33,9 @@
|
|||
#################################
|
||||
|
||||
%define name python
|
||||
%define version 2.4
|
||||
%define libvers 2.4
|
||||
%define release 2pydotorg
|
||||
%define version 2.5a1
|
||||
%define libvers 2.5
|
||||
%define release 1pydotorg
|
||||
%define __prefix /usr
|
||||
|
||||
# kludge to get around rpm <percent>define weirdness
|
||||
|
@ -62,6 +62,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|||
BuildPrereq: expat-devel
|
||||
BuildPrereq: db4-devel
|
||||
BuildPrereq: gdbm-devel
|
||||
BuildPrereq: sqlite-devel
|
||||
Prefix: %{__prefix}
|
||||
Packager: Sean Reifschneider <jafo-rpms@tummy.com>
|
||||
|
||||
|
@ -354,6 +355,8 @@ rm -f mainpkg.files tools.files
|
|||
%{__prefix}/%{libdirname}/python%{libvers}/test
|
||||
%{__prefix}/%{libdirname}/python%{libvers}/xml
|
||||
%{__prefix}/%{libdirname}/python%{libvers}/email
|
||||
%{__prefix}/%{libdirname}/python%{libvers}/email/mime
|
||||
%{__prefix}/%{libdirname}/python%{libvers}/sqlite3
|
||||
%{__prefix}/%{libdirname}/python%{libvers}/compiler
|
||||
%{__prefix}/%{libdirname}/python%{libvers}/bsddb
|
||||
%{__prefix}/%{libdirname}/python%{libvers}/hotshot
|
Loading…
Reference in New Issue