Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (559dc4f21046882886a47bda58121dfd62f24460)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Treeve Jelbert <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (559dc4f21046882886a47bda58121dfd62f24460)
  • Date: Mon, 21 Feb 2011 08:02:38 -0600

GIT changes to master grimoire by Treeve Jelbert <treeve AT sourcemage.org>:

devel/python3/DETAILS | 4 ++--
devel/python3/HISTORY | 5 +++++
devel/python3/PRE_BUILD | 4 ----
devel/python3/python.gpg |binary
devel/python3/wchar.patch | 11 -----------
5 files changed, 7 insertions(+), 17 deletions(-)

New commits:
commit 559dc4f21046882886a47bda58121dfd62f24460
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

python3 => 3.2

diff --git a/devel/python3/DETAILS b/devel/python3/DETAILS
index 96fd4c5..73aa98b 100755
--- a/devel/python3/DETAILS
+++ b/devel/python3/DETAILS
@@ -1,10 +1,10 @@
SPELL=python3
- VERSION=3.1.2
+ VERSION=3.2
SOURCE=Python-$VERSION.tar.bz2
SOURCE2=$SOURCE.asc
SOURCE_DIRECTORY="$BUILD_DIRECTORY/Python-$VERSION"
SOURCE_URL[0]=http://www.python.org/ftp/python/$VERSION/$SOURCE
- SOURCE2_URL[0]=http://www.python.org/download/releases/$VERSION/$SOURCE2
+ SOURCE2_URL[0]=$SOURCE_URL.asc
SOURCE_GPG=python.gpg:$SOURCE2:UPSTREAM_KEY
SOURCE2_IGNORE=signature
WEB_SITE=http://www.python.org/
diff --git a/devel/python3/HISTORY b/devel/python3/HISTORY
index e982d28..454a379 100644
--- a/devel/python3/HISTORY
+++ b/devel/python3/HISTORY
@@ -1,3 +1,8 @@
+2011-02-21 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 3.2
+ * python.gpg: add key 36580288 (Georg Brandl), mentioned on webpage
+ * PRE_BUILD, wchar.patch: deleted
+
2010-06-14 Peng Chang (Charles) <chp AT sourcemage.org>
* DETAILS: updated spell to 3.1.2
* INSTALL: cp -a doesn't work with castfs
diff --git a/devel/python3/PRE_BUILD b/devel/python3/PRE_BUILD
deleted file mode 100755
index 4d190fe..0000000
--- a/devel/python3/PRE_BUILD
+++ /dev/null
@@ -1,4 +0,0 @@
-default_pre_build &&
-cd "$SOURCE_DIRECTORY" &&
-
-patch -p0 < "$SPELL_DIRECTORY/wchar.patch"
diff --git a/devel/python3/python.gpg b/devel/python3/python.gpg
index 02bfbf2..94cc05d 100644
Binary files a/devel/python3/python.gpg and b/devel/python3/python.gpg differ
diff --git a/devel/python3/wchar.patch b/devel/python3/wchar.patch
deleted file mode 100644
index 7d63003..0000000
--- a/devel/python3/wchar.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- Modules/python.c.orig 2009-05-29 18:22:26.000000000 +0200
-+++ Modules/python.c 2009-06-29 16:18:12.800560478 +0200
-@@ -57,7 +57,7 @@
- /* Overallocate; as multi-byte characters are in the argument, the
- actual output could use less memory. */
- argsize = strlen(arg) + 1;
-- res = PyMem_Malloc(argsize*sizeof(wchar_t));
-+ res = (wchar_t *)PyMem_Malloc(argsize*sizeof(wchar_t));
- if (!res) goto oom;
- in = (unsigned char*)arg;
- out = res;



  • [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (559dc4f21046882886a47bda58121dfd62f24460), Treeve Jelbert, 02/21/2011

Archive powered by MHonArc 2.6.24.

Top of Page