Skip to Content.
Sympa Menu

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

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 (a679cbe6318a32b96c1f42845a7ae07e3bb72879)
  • Date: Thu, 17 Jan 2008 12:24:06 -0600

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

devel/python/BUILD | 11 ++++++++---
devel/python/FINAL | 5 -----
devel/python/HISTORY | 5 +++++
devel/python/INSTALL | 11 ++---------
4 files changed, 15 insertions(+), 17 deletions(-)

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

python: added some additional opts (ipv6+threading), removed the dirty
hacks, following OpenBSDish way since now

diff --git a/devel/python/BUILD b/devel/python/BUILD
index ae5bc15..69f6961 100755
--- a/devel/python/BUILD
+++ b/devel/python/BUILD
@@ -1,5 +1,5 @@
-export OPT="$CFLAGS"
-export OPTS="$OPTS --enable-shared --enable-unicode"
+OPT="$CFLAGS" &&
+OPTS="$OPTS --enable-shared --enable-unicode --with-threads --enable-ipv6" &&

# The following file from kdebindings has a syntax error that
# makes Python compilation fail
@@ -10,4 +10,9 @@ if [[ -f
$INSTALL_ROOT/usr/lib/python${PYTHON_VERSION}/pydcop.py ]]; then
$SOURCE_DIRECTORY/spell-tmp
fi &&

-default_build
+default_build &&
+
+# python -c '"(c)", "lynx"*3'
+make install DESTDIR=$SOURCE_DIRECTORY/anywhere &&
+
+message "Fake stage complete, installing to real path.."
diff --git a/devel/python/FINAL b/devel/python/FINAL
deleted file mode 100755
index 9af95e2..0000000
--- a/devel/python/FINAL
+++ /dev/null
@@ -1,5 +0,0 @@
-if [[ -d $SOURCE_DIRECTORY/site-packages ]]; then
- message "Resurrecting the pythonic modules, please stand by..." &&
- cp -av $SOURCE_DIRECTORY/site-packages $PYPATH &&
- message "Resurrection of the pythonic modules complete."
-fi
diff --git a/devel/python/HISTORY b/devel/python/HISTORY
index 5142e23..ec10480 100644
--- a/devel/python/HISTORY
+++ b/devel/python/HISTORY
@@ -1,3 +1,8 @@
+2008-01-17 Vlad Glagolev <stealth AT sourcemage.org>
+ * BUILD: added some options: ipv6 and threading support
+ * INSTALL: copy the stuff from fake dir, removed dirty hacks
+ * FINAL: removed, removed dirty hacks
+
2008-01-07 Vlad Glagolev <stealth AT sourcemage.org>
* FINAL: mv => cp, better verbose + some info
* BUILD: cleaned up
diff --git a/devel/python/INSTALL b/devel/python/INSTALL
index acd1da8..9baf210 100755
--- a/devel/python/INSTALL
+++ b/devel/python/INSTALL
@@ -1,11 +1,4 @@
-persistent_add PYPATH &&
-local PYPATH=$INSTALL_ROOT/usr/lib/python${VERSION:0:3}
-
-if [[ -d $PYPATH/site-packages ]]; then
- mv $PYPATH/site-packages $SOURCE_DIRECTORY
-fi &&
-
-default_install &&
+cp -av $SOURCE_DIRECTORY/anywhere/usr $INSTALL_ROOT/ &&

if [[ -f $SOURCE_DIRECTORY/spell-tmp/pydcop.py ]]; then
mv $SOURCE_DIRECTORY/spell-tmp/pydcop.py $PYPATH
@@ -13,4 +6,4 @@ fi &&

# gettext
install -m 755 $SOURCE_DIRECTORY/Tools/i18n/{pygettext.py,msgfmt.py} \
- "$INSTALL_ROOT/usr/bin"
+ $INSTALL_ROOT/usr/bin




Archive powered by MHonArc 2.6.24.

Top of Page