summaryrefslogtreecommitdiff
path: root/common/pkg
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2013-08-23 13:36:38 +0200
committerKali Kaneko <kali@leap.se>2013-08-23 13:36:38 +0200
commitb42d461341de2aa7e2136d85f67ebbd12918b200 (patch)
treec6080cf0c88d1d889ba8371a670c8311fbba3c4e /common/pkg
parent59f337a29202bb80287a31d6c5b942b74375f33f (diff)
packaging improvements
* add versioneer (patched for our particular repo config) * add parse_requirements to unify requirement handling
Diffstat (limited to 'common/pkg')
-rw-r--r--common/pkg/__init__.py0
-rw-r--r--common/pkg/requirements-testing.pip6
-rw-r--r--common/pkg/requirements.pip8
-rw-r--r--common/pkg/utils.py84
4 files changed, 98 insertions, 0 deletions
diff --git a/common/pkg/__init__.py b/common/pkg/__init__.py
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/common/pkg/__init__.py
diff --git a/common/pkg/requirements-testing.pip b/common/pkg/requirements-testing.pip
new file mode 100644
index 00000000..18040ea1
--- /dev/null
+++ b/common/pkg/requirements-testing.pip
@@ -0,0 +1,6 @@
+mock
+nose2
+testscenarios
+leap.common
+leap.soledad.server
+leap.soledad.client
diff --git a/common/pkg/requirements.pip b/common/pkg/requirements.pip
new file mode 100644
index 00000000..8fd57c3f
--- /dev/null
+++ b/common/pkg/requirements.pip
@@ -0,0 +1,8 @@
+simplejson
+u1db
+six==1.1.0 # some tests are incompatible with newer versions of six.
+
+#this is not strictly needed by us, but we need it
+#until u1db adds it to its release as a dep.
+oauth
+
diff --git a/common/pkg/utils.py b/common/pkg/utils.py
new file mode 100644
index 00000000..deace14b
--- /dev/null
+++ b/common/pkg/utils.py
@@ -0,0 +1,84 @@
+# -*- coding: utf-8 -*-
+# utils.py
+# Copyright (C) 2013 LEAP
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+"""
+Utils to help in the setup process
+"""
+
+import os
+import re
+import sys
+
+
+def get_reqs_from_files(reqfiles):
+ """
+ Returns the contents of the top requirement file listed as a
+ string list with the lines
+
+ @param reqfiles: requirement files to parse
+ @type reqfiles: list of str
+ """
+ for reqfile in reqfiles:
+ if os.path.isfile(reqfile):
+ return open(reqfile, 'r').read().split('\n')
+
+
+def parse_requirements(reqfiles=['requirements.txt',
+ 'requirements.pip',
+ 'pkg/requirements.pip']):
+ """
+ Parses the requirement files provided.
+
+ Checks the value of LEAP_VENV_SKIP_PYSIDE to see if it should
+ return PySide as a dep or not. Don't set, or set to 0 if you want
+ to install it through pip.
+
+ @param reqfiles: requirement files to parse
+ @type reqfiles: list of str
+ """
+
+ requirements = []
+ skip_pyside = os.getenv("LEAP_VENV_SKIP_PYSIDE", "0") != "0"
+ for line in get_reqs_from_files(reqfiles):
+ # -e git://foo.bar/baz/master#egg=foobar
+ if re.match(r'\s*-e\s+', line):
+ pass
+ # do not try to do anything with externals on vcs
+ #requirements.append(re.sub(r'\s*-e\s+.*#egg=(.*)$', r'\1',
+ #line))
+ # http://foo.bar/baz/foobar/zipball/master#egg=foobar
+ elif re.match(r'\s*https?:', line):
+ requirements.append(re.sub(r'\s*https?:.*#egg=(.*)$', r'\1',
+ line))
+ # -f lines are for index locations, and don't get used here
+ elif re.match(r'\s*-f\s+', line):
+ pass
+
+ # argparse is part of the standard library starting with 2.7
+ # adding it to the requirements list screws distro installs
+ elif line == 'argparse' and sys.version_info >= (2, 7):
+ pass
+ elif line == 'PySide' and skip_pyside:
+ pass
+ # do not include comments
+ elif line.lstrip().startswith('#'):
+ pass
+ else:
+ if line != '':
+ requirements.append(line)
+
+ return requirements