Skip to Content.
Sympa Menu

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

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Treeve Jelbert <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (efb1648a153278cd9bf005c5bede97c8f87e4c14)
  • Date: Wed, 4 Apr 2007 06:28:08 -0500

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

x11-toolkits/wxpython/BUILD | 28 +++++++++++-----------------
x11-toolkits/wxpython/DETAILS | 5 +++--
x11-toolkits/wxpython/HISTORY | 36 ++++++++++++++++++++++++++----------
x11-toolkits/wxpython/INSTALL | 2 +-
x11-toolkits/wxpython/PRE_BUILD | 5 +++++
5 files changed, 46 insertions(+), 30 deletions(-)

New commits:
commit 627d7ebf657ba97147871e51ffeaf5962f2a1ecb
Author: Treeve Jelbert <treeve AT sourcemage.org>
Commit: Treeve Jelbert <treeve AT sourcemage.org>

wxpython-2.8.3.0

diff --git a/x11-toolkits/wxpython/BUILD b/x11-toolkits/wxpython/BUILD
index 54efd4f..8735895 100755
--- a/x11-toolkits/wxpython/BUILD
+++ b/x11-toolkits/wxpython/BUILD
@@ -1,24 +1,18 @@
-local contrib &&
+local PYCOMP &&
persistent_read wxgtk WX_CONTRIB WX_CONTRIB &&
message gtk=$WX_DEV &&
message contrib=$WX_CONTRIB &&
-PYOPTS='MONOLITHIC=0 UNICODE=1' &&
-for COMPONENT in $WX_CONTRIB; do
- PYOPTS="$PYOPTS BUILD_$(echo $COMPONENT | tr '[:lower:]' '[:upper:]')=1"
+# turn of some default flags
+PYOPTS="MONOLITHIC=0 UNICODE=1 BUILD_GLCANVAS=0 BUILD_STC=0 BUILD_GIZMOS=0"
&&
+# only build parts which are available for python
+for PYCOMP in $WX_CONTRIB; do
+ case $PYCOMP in
+ glcanvas|stc|gizmos)
+ PYOPTS="$PYOPTS BUILD_$(echo $PYCOMP | tr '[:lower:]' '[:upper:]')=1";;
+ *);;
+ esac
done &&
-#if echo $OPTS | grep -q with-swig; then PYOPTS="$PYOPTS USE_SWIG=1"; fi &&
-if [[ $WX_DEV == y ]];then
- PYOPTS=${PYOPTS//BUILD_ANIMATE=1/}
-else
- PYOPTS=${PYOPTS//BUILD_FOLDBAR=1/}
-fi &&
-PYOPTS=${PYOPTS//BUILD_FL=1/} &&
-# suppress undesired options
-for contrib in ANIMATE GIZMOS STC;do
- if [[ $PYOPTS != "*$contrib*" ]];then
- PYOPTS="$PYOPTS BUILD_$contrib=0"
- fi
-done &&
+message pyo=$PYOPTS &&
persistent_add PYOPTS &&
cd wxPython &&
python setup.py $PYOPTS build
diff --git a/x11-toolkits/wxpython/DETAILS b/x11-toolkits/wxpython/DETAILS
index 38be475..9ab58c8 100755
--- a/x11-toolkits/wxpython/DETAILS
+++ b/x11-toolkits/wxpython/DETAILS
@@ -1,8 +1,8 @@
SPELL=wxpython
persistent_read wxgtk WX_DEV WX_DEV
if [[ "$WX_DEV" == "y" ]];then
- VERSION=2.7.2.0
-
SOURCE_HASH=sha512:bd10756acf8f0bc8a53492c8d0440c5cf1ee0873806a465f9400fe4b497e25e93729c542e5a99f47b32bfd8fe80c1cd1079e3459b2f9e41bc6468cec212b0191
+ VERSION=2.8.3.0
+
SOURCE_HASH=sha512:00a3ad5870ac0782ed3fc9863b198e540fc8f91485f8e70dc39126d64cc405d7c783d950d066db4d53914b2e8734c758b89613e3752f3f12bcef23d022effa41
else
VERSION=2.6.3.3

SOURCE_HASH=sha512:9e02d1a93a4fc8280a39e704cb042bc2946b1178bf362f47f4c5076567c351e1c84b36df68a545b563dc1ac3b2a721cbe6a6cae16a4877aeb80c4cf22cb9c365
@@ -12,6 +12,7 @@ SOURCE_DIRECTORY=$BUILD_DIRECTORY/${SPEL
SOURCE_URL[0]=$SOURCEFORGE_URL/wxpython/$SOURCE
LICENSE[0]=http://www.wxwindows.org/licence3.txt
WEB_SITE=http://wxpython.org/
+ DOCS="wxPython/docs/*"
ENTERED=20030210
KEYWORDS="python x11 libs"
SHORT='a GUI toolkit for the Python programming language'
diff --git a/x11-toolkits/wxpython/HISTORY b/x11-toolkits/wxpython/HISTORY
index 27911e4..f8e7fc4 100644
--- a/x11-toolkits/wxpython/HISTORY
+++ b/x11-toolkits/wxpython/HISTORY
@@ -1,14 +1,30 @@
-2006-12-10 Treeve Jelbert <treeve AT pi.be>
+2007-04-02 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.8.3.0 (devel)
+ install correct docs
+ * PRE_BUILD: added; remove most wxwidgets stuff
+ * BUILD: only build available components
+ * INSTALL: specify SOURCE_DIRECTORY
+
+2007-01-22 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.8.1.1 (devel)
+
+2007-01-07 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.8.0.2 (devel)
+
+2006-12-13 Treeve Jelbert <treeve AT sourcemage.org>
+ * DETAILS: version 2.8.0.1 (devel)
+
+2006-12-10 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: persistent read from wxgtk
so that wxpython is in sync with wxgtk
* PREPARE: deleted, did not always work correctly

-2006-11-12 Treeve Jelbert <treeve AT pi.be>
+2006-11-12 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 2.7.2.0 (devel)
* BUILD: only build relevent components
* INSTALL: set correct directory

-2006-10-26 Treeve Jelbert <treeve AT pi.be>
+2006-10-26 Treeve Jelbert <treeve AT sourcemage.org>
* PREPARE: add
allow devel or stable version (in sync with wxgtk)
* DETAILS: version 2.7.1.3 (devel)
@@ -17,7 +33,7 @@
strip 'animate' from WX_CONTRIB ( does not exist in 2.7.1.3)
* TRIGGERS: add, force rebuild when wxgtk changes

-2006-07-16 Treeve Jelbert <treeve01 AT pi.be>
+2006-07-16 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 2.6.3.3

2006-06-28 Eric Sandall <sandalle AT sourcemage.org>
@@ -29,10 +45,10 @@
* BUILD, DEPENDS: commented the swig option as it's broken with swig
1.3.28

-2006-04-13 Treeve Jelbert <treeve01 AT pi.be>
+2006-04-13 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 2.6.3.2

-2006-03-30 Treeve Jelbert <treeve01 AT pi.be>
+2006-03-30 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 2.6.3.0

2006-03-12 Karsten Behrmann <BearPerson AT sourcemage.org>
@@ -50,14 +66,14 @@
* DEPENDS: add more options;
* DETAILS: remove commented code.

-2005-06-05 Treeve Jelbert <treeve01 AT pi.be>
+2005-06-05 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 2.6.1.0

-2005-04-27 Treeve Jelbert <treeve01 AT pi.be>
+2005-04-27 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 2.6.0.0
* CONFLICTS PREPARE: deleted

-2005-02-17 Treeve Jelbert <treeve01 AT pi.be>
+2005-02-17 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: rename as wxpython
versions 2.4.2.4 / 2.5.3.1
BUILD_API=2
@@ -68,7 +84,7 @@
2004-12-16 Eric Sandall <sandalle AT sourcemage.org>
* DEPENDS: Python renamed to python

-2004-02-12 Treeve Jelbert <treeve01 AT pi.be>
+2004-02-12 Treeve Jelbert <treeve AT sourcemage.org>
* DETAILS: version 2.4.2.4
* BUILD: disable patch
* HISTORY: reformatted
diff --git a/x11-toolkits/wxpython/INSTALL b/x11-toolkits/wxpython/INSTALL
index dc8b954..c3e35b9 100755
--- a/x11-toolkits/wxpython/INSTALL
+++ b/x11-toolkits/wxpython/INSTALL
@@ -1,2 +1,2 @@
-cd wxPython &&
+cd $SOURCE_DIRECTORY/wxPython &&
python setup.py $PYOPTS install
diff --git a/x11-toolkits/wxpython/PRE_BUILD b/x11-toolkits/wxpython/PRE_BUILD
new file mode 100755
index 0000000..132624d
--- /dev/null
+++ b/x11-toolkits/wxpython/PRE_BUILD
@@ -0,0 +1,5 @@
+default_pre_build &&
+cd $SOURCE_DIRECTORY &&
+# remove all wxwidgets stuff, use installed system version instead
+rm -r src samples include debian config* wx-conf* distrib utils ac* au* \
+ build locale contrib



  • [SM-Commit] GIT changes to master grimoire by Treeve Jelbert (efb1648a153278cd9bf005c5bede97c8f87e4c14), Treeve Jelbert, 04/04/2007

Archive powered by MHonArc 2.6.24.

Top of Page