summaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@gnome.org>2014-04-01 14:03:12 +0200
committerThibault Saunier <tsaunier@gnome.org>2014-06-16 14:44:39 +0200
commit9294b420fd9a73255323f56270cb596266eab8a1 (patch)
tree7276c32feb2c79b4e7bbb49f526ffdc5df7b5278 /packages
parente1a2021548b987e12cc751d6e7b52fa918073efe (diff)
recipes+package: Add python3
* Add the needed recipes including python3 itself * Fix gobject-introspection which does not support python3 yet * Make GLib use python3 when the variant is activated This is activated only when asked by the user in the cerbero.cbc
Diffstat (limited to 'packages')
-rw-r--r--packages/python3.package22
1 files changed, 22 insertions, 0 deletions
diff --git a/packages/python3.package b/packages/python3.package
new file mode 100644
index 00000000..7c56ce0e
--- /dev/null
+++ b/packages/python3.package
@@ -0,0 +1,22 @@
+# vi:si:et:sw=4:sts=4:ts=4:syntax=python
+# -*- Mode: Python -*-
+
+
+class Package(package.Package):
+ name = 'python3'
+ shortdesc = 'python3'
+ longdesc = 'Python 3'
+ url = "http://python.org/"
+ version = '3.3'
+ codename = 'Congo'
+ # Python Software Foundation License
+ licenses = [License.BSD_like]
+ vendor = 'Python Project'
+ org = 'python.org'
+
+ files = ['Python',
+ 'gobject-introspection',
+ 'sqlite',
+ ]
+
+