diff options
author | Sebastian Pipping <sebastian@pipping.org> | 2009-09-26 04:59:55 +0200 |
---|---|---|
committer | Sebastian Pipping <sebastian@pipping.org> | 2009-09-26 04:59:55 +0200 |
commit | 14f4047d2a9614485db6b37dd69c47faceeda0f8 (patch) | |
tree | ed02674b40c410c29a51883b277a4c5b65717ba3 /extradata.py | |
parent | Add repositories.xml 1.0 grammars (diff) | |
download | repositories-xml-format-14f4047d2a9614485db6b37dd69c47faceeda0f8.tar.gz repositories-xml-format-14f4047d2a9614485db6b37dd69c47faceeda0f8.tar.bz2 repositories-xml-format-14f4047d2a9614485db6b37dd69c47faceeda0f8.zip |
Allow passing extra data to the translator
Diffstat (limited to 'extradata.py')
-rw-r--r-- | extradata.py | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/extradata.py b/extradata.py new file mode 100644 index 0000000..b3bdc22 --- /dev/null +++ b/extradata.py @@ -0,0 +1,75 @@ +QUALITY_CORE = 'core' +QUALITY_STABLE = 'stable' +QUALITY_TESTING = 'testing' +QUALITY_EXPERIMENTAL = 'experimental' +QUALITY_GRAVEYARD = 'graveyard' + +TRANSITION_DATA_EXTRA = { + 'bazaar':{ + 'maintainer':{ + 'name':'Mark Lee', + 'email':'malept@malept.com', + }, + }, + 'lila-theme':{ + 'maintainer':{ + 'email':'fosstux@gmail.com', + }, + }, + 'rbu':{ + 'quality':QUALITY_EXPERIMENTAL, + 'maintainer':{ + 'name':'Robert Buchholz', + }, + }, + 'sping':{ + 'quality':QUALITY_EXPERIMENTAL, + 'maintainer':{ + 'name':'Sebastian Pipping', + }, + 'feeds':[ + 'http://git.goodpoint.de/?p=overlay-sping.git;a=atom', + 'http://git.goodpoint.de/?p=overlay-sping.git;a=rss', + ], + }, +} + +# List more or less from current <http://overlays.gentoo.org/> +TRANSITION_DATA_PROJECTS = set(( + 'cell', + 'efika', + 'emacs', + 'finnish', + 'gnome', + 'gnustep', + 'hardened-development', + 'java-overlay', + 'kde-testing', + 'kolab', + 'mozilla', + 'mysql-testing', + 'nx', + 'perl-experimental', + 'php-4', + 'php-experimental', + 'php-testing', + 'postgresql-experimental', + 'postgresql-testing', + 'powerpc', + 'python', + 'rox', + 'ruby', + 'science', + 'sunrise', + 'toolchain', + 'vdr-devel', + 'vdr-experimental', + 'vdr-testing', + 'vdr-xine', + 'vmware', + 'voip', + 'vps', + 'webapps-experimental', + 'xen', + 'xfce-dev', +)) |