Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (baeb687777e348344ce8a36d03fc4577afed8708)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (baeb687777e348344ce8a36d03fc4577afed8708)
  • Date: Sun, 5 Jul 2009 08:15:04 -0500

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

devel/python3000/DETAILS | 2 +-
devel/python3000/HISTORY | 8 ++++++++
devel/python3000/PRE_BUILD | 4 ++++
devel/python3000/python.gpg |binary
devel/python3000/wchar.patch | 11 +++++++++++
5 files changed, 24 insertions(+), 1 deletion(-)

New commits:
commit baeb687777e348344ce8a36d03fc4577afed8708
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

python3000: => 3.1

diff --git a/devel/python3000/DETAILS b/devel/python3000/DETAILS
index 6774fdc..2257a5c 100755
--- a/devel/python3000/DETAILS
+++ b/devel/python3000/DETAILS
@@ -1,5 +1,5 @@
SPELL=python3000
- VERSION=3.0.1
+ VERSION=3.1
SOURCE=Python-$VERSION.tar.bz2
SOURCE2=$SOURCE.asc
SOURCE_DIRECTORY="$BUILD_DIRECTORY/Python-$VERSION"
diff --git a/devel/python3000/HISTORY b/devel/python3000/HISTORY
index bc61b03..9eb81f2 100644
--- a/devel/python3000/HISTORY
+++ b/devel/python3000/HISTORY
@@ -1,3 +1,11 @@
+2009-07-04 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS: updated spell to 3.1
+ * python.gpg: added pgp key A4135B38 ("Benjamin Peterson
+ <musiccomposition AT gmail.com>")
+ * PRE_BUILD: added, apply the patch
+ * wchar.patch: added, to fix compilation error with recent GCC:
+ http://bugs.python.org/issue6375
+
2009-02-23 Vlad Glagolev <stealth AT sourcemage.org>
* BUILD, INSTALL: fixed installation for multi-ROOT

diff --git a/devel/python3000/PRE_BUILD b/devel/python3000/PRE_BUILD
new file mode 100755
index 0000000..4d190fe
--- /dev/null
+++ b/devel/python3000/PRE_BUILD
@@ -0,0 +1,4 @@
+default_pre_build &&
+cd "$SOURCE_DIRECTORY" &&
+
+patch -p0 < "$SPELL_DIRECTORY/wchar.patch"
diff --git a/devel/python3000/python.gpg b/devel/python3000/python.gpg
index 7c942eb..08682b7 100644
Binary files a/devel/python3000/python.gpg and b/devel/python3000/python.gpg
differ
diff --git a/devel/python3000/wchar.patch b/devel/python3000/wchar.patch
new file mode 100644
index 0000000..7d63003
--- /dev/null
+++ b/devel/python3000/wchar.patch
@@ -0,0 +1,11 @@
+--- 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 Vlad Glagolev (baeb687777e348344ce8a36d03fc4577afed8708), Vlad Glagolev, 07/05/2009

Archive powered by MHonArc 2.6.24.

Top of Page