[Python-checkins] r67825 - in python/branches/release25-maint: Mac/BuildScript/build-installer.py Misc/NEWS

martin.v.loewis python-checkins at python.org
Wed Dec 17 19:03:01 CET 2008


Author: martin.v.loewis
Date: Wed Dec 17 19:03:01 2008
New Revision: 67825

Log:
In the OSX installer, update SQLite to 3.6.7, and change bsddb URL.


Modified:
   python/branches/release25-maint/Mac/BuildScript/build-installer.py
   python/branches/release25-maint/Misc/NEWS

Modified: python/branches/release25-maint/Mac/BuildScript/build-installer.py
==============================================================================
--- python/branches/release25-maint/Mac/BuildScript/build-installer.py	(original)
+++ python/branches/release25-maint/Mac/BuildScript/build-installer.py	Wed Dec 17 19:03:01 2008
@@ -134,9 +134,9 @@
     ),
 
     dict(
-        name="SQLite 3.3.14",
-        url="http://www.sqlite.org/sqlite-3.3.14.tar.gz",
-        checksum='e1a4428a5cb17f28164731b72f06130a',
+        name="SQLite 3.6.7",
+        url="http://www.sqlite.org/sqlite-3.6.7.tar.gz",
+        checksum='5223d1f459b608ed8c2c54f8847f8e1a',
         configure_pre=[
             '--enable-threadsafe',
             '--enable-tempstore',
@@ -177,7 +177,7 @@
     ),
     dict(
         name="Sleepycat DB 4.4",
-        url="http://downloads.sleepycat.com/db-4.4.20.tar.gz",
+        url="http://download.oracle.com/berkeley-db/db-4.4.20.tar.gz",
         checksum='d84dff288a19186b136b0daf7067ade3',
         #name="Sleepycat DB 4.3.29",
         #url="http://downloads.sleepycat.com/db-4.3.29.tar.gz",

Modified: python/branches/release25-maint/Misc/NEWS
==============================================================================
--- python/branches/release25-maint/Misc/NEWS	(original)
+++ python/branches/release25-maint/Misc/NEWS	Wed Dec 17 19:03:01 2008
@@ -10,6 +10,11 @@
 *Release date: 1X-Dec-2008*
 
 
+Build
+-----
+
+- In the OSX installer, update SQLite to 3.6.7, and change bsddb URL.
+
 What's New in Python 2.5.3c1?
 =============================
 


More information about the Python-checkins mailing list