summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2009-08-14 23:55:52 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2009-08-14 23:55:52 +0200
commitcf0bb490641f5cc082a83ecd43854c6905fdb02e (patch)
tree7578a038e6c0e1447512ca001e922aa6bf1b1f26
parent18edc07bf7735c0d72d1b9e69c1e566ebfa1c0c3 (diff)
downloadportato-cf0bb490641f5cc082a83ecd43854c6905fdb02e.tar.gz
portato-cf0bb490641f5cc082a83ecd43854c6905fdb02e.tar.bz2
portato-cf0bb490641f5cc082a83ecd43854c6905fdb02e.zip
Allow to disable eix in setup.py
Diffstat (limited to '')
-rw-r--r--setup.py25
1 files changed, 17 insertions, 8 deletions
diff --git a/setup.py b/setup.py
index 792e8e6..e255fd9 100644
--- a/setup.py
+++ b/setup.py
@@ -12,9 +12,9 @@
# Written by René 'Necoro' Neumann <necoro@necoro.net>
import os
+import sys
+
from distutils.core import setup
-from distutils.extension import Extension
-from Cython.Distutils import build_ext
from portato.constants import VERSION, ICON_DIR, PLUGIN_DIR, TEMPLATE_DIR, APP
@@ -27,7 +27,6 @@ def plugin_list (*args):
packages = [
"portato",
"portato.db",
- "portato.eix",
"portato.gui", "portato.gui.windows",
"portato.plugins",
"portato.backend", "portato.backend.portage"
@@ -38,9 +37,19 @@ data_files = [
(ICON_DIR, ["icons/portato-icon.png"]),
(PLUGIN_DIR, plugin_list("gpytage", "notify", "etc_proposals", "reload_portage", "package_details"))]
-ext_modules = [
- Extension("portato.eix.parser", ["portato/eix/parser.pyx"])
- ]
+# extension stuff
+ext_modules = []
+cmdclass={'build_manpage': build_manpage}
+
+if "--disable-eix" in sys.argv:
+ sys.argv.remove("--disable-eix")
+else:
+ from Cython.Distutils import build_ext
+ from distutils.extension import Extension
+
+ ext_modules.append(Extension("portato.eix.parser", ["portato/eix/parser.pyx"]))
+ cmdclass['build_ext'] = build_ext
+ packages.append("portato.eix")
# do the distutils setup
setup(name=APP,
@@ -54,6 +63,6 @@ setup(name=APP,
author_email = "necoro@necoro.net",
packages = packages,
data_files = data_files,
- cmdclass={'build_manpage': build_manpage, 'build_ext' : build_ext},
- ext_modules = ext_modules
+ ext_modules = ext_modules,
+ cmdclass = cmdclass
)
&follow=1'>More informational flashesRené 'Necoro' Neumann2-2/+9 2013-10-17Moar fixesRené 'Necoro' Neumann3-3/+3 2013-10-17Fixed too muchRené 'Necoro' Neumann2-2/+2 2013-10-17Fix JSRené 'Necoro' Neumann2-2/+2 2013-10-17Fix nameclash of class arrow in cssRené 'Necoro' Neumann1-2/+2 2013-10-16CSS: Tabs to spacesRené 'Necoro' Neumann1-90/+90 2013-10-16Fix arrowsRené 'Necoro' Neumann2-15/+13 2013-10-16Fix locale support for formsRené 'Necoro' Neumann1-2/+11 2013-10-16Use german locale for formsRené 'Necoro' Neumann1-0/+1 2013-10-16Allow @templated to be called raw, i.e. w/o ()René 'Necoro' Neumann5-10/+20 2013-10-16Category names do not need to be uniqueRené 'Necoro' Neumann1-1/+1 2013-10-16Forgot two places where to show flashes on validation errorsRené 'Necoro' Neumann2-3/+3 2013-10-16Do not print 'logout' menu when not logged inRené 'Necoro' Neumann2-4/+6 2013-10-16Check user's authorisation when loading entries by ID.René 'Necoro' Neumann4-6/+43 2013-10-16Print username or description in titleRené 'Necoro' Neumann3-2/+5 2013-10-15QuotestyleRené 'Necoro' Neumann11-86/+88 2013-10-15Flash on error in all formsRené 'Necoro' Neumann2-5/+21 2013-10-15Streamline CSSRené 'Necoro' Neumann2-77/+24 2013-10-15Margin for buttons in formsRené 'Necoro' Neumann1-0/+3 2013-10-15Support flashingRené 'Necoro' Neumann5-2/+34 2013-10-15Moved user implementation from model to loginRené 'Necoro' Neumann3-28/+13 2013-10-15Nicer organised importsRené 'Necoro' Neumann6-24/+40 2013-10-14Finish login stuffRené 'Necoro' Neumann11-29/+143 2013-10-14More model tuningRené 'Necoro' Neumann1-3/+3 2013-10-14Add User to modelRené 'Necoro' Neumann1-8/+25 2013-09-30Add first API stuff -- SingleExpense and CategoryRené 'Necoro' Neumann2-1/+13 2013-09-30Force python2René 'Necoro' Neumann1-1/+1 2013-09-24More margin at the bottom for expense listingRené 'Necoro' Neumann1-1/+1 2013-09-24Better pie formattingRené 'Necoro' Neumann3-6/+8 2013-09-24Increase width of page to 760pxRené 'Necoro' Neumann3-8/+9 2013-09-16typoRené 'Necoro' Neumann1-1/+1 2013-09-15Fix display of one monthRené 'Necoro' Neumann1-2/+2 2013-09-14Draw pies using highcharts JS-libRené 'Necoro' Neumann5-20/+99