1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-17 10:40:12 +02:00

Merge commit 'refs/merge-requests/28' of git://gitorious.org/f-droid/fdroidserver into merge-requests/28

This commit is contained in:
Ciaran Gultnieks 2011-09-26 11:12:54 +01:00
commit 00788adb0b
11 changed files with 13 additions and 0 deletions

View File

@ -277,6 +277,8 @@ def parse_metadata(metafile, **kw):
thisinfo['source'] = value
elif field == 'License':
thisinfo['license'] = value
elif field == 'Category':
thisinfo['category'] = value
elif field == 'Web Site':
thisinfo['web'] = value
elif field == 'Issue Tracker':

View File

@ -1,4 +1,5 @@
License:Apache2
Category:System
Web Site:http://code.google.com/p/androidpermissions/
Source Code:http://code.google.com/p/androidpermissions/source/checkout
Issue Tracker:http://code.google.com/p/androidpermissions/issues/list

View File

@ -1,5 +1,6 @@
Use Built:Yes
License:GPLv2
Category:PIM
Web Site:http://www.keepassdroid.com/
Source Code:http://github.com/bpellin/keepassdroid
Issue Tracker:http://code.google.com/p/keepassdroid/issues/list

View File

@ -1,5 +1,6 @@
Use Built:Yes
License:GPLv3+
Category:PIM
Web Site:http://github.com/eleybourn/Book-Catalogue/wiki
Source Code:http://github.com/eleybourn/Book-Catalogue
Issue Tracker:http://github.com/eleybourn/Book-Catalogue/issues

View File

@ -1,5 +1,6 @@
Use Built:Yes
License:LGPL
Category:Navigation
Web Site:http://code.google.com/p/osmand/
Source Code:https://github.com/osmandapp/Osmand
Issue Tracker:http://code.google.com/p/osmand/issues/list

View File

@ -1,5 +1,6 @@
Use Built:Yes
License:GPLv3
Category:Multimedia
Web Site:http://code.google.com/p/mythdroid/
Source Code:http://code.google.com/p/mythdroid/source/checkout
Issue Tracker:http://code.google.com/p/mythdroid/issues/list

View File

@ -1,4 +1,5 @@
License:GPLv3
Category:Navigation
Web Site:https://launchpad.net/opensatnav
Source Code:https://code.launchpad.net/opensatnav
Issue Tracker:https://bugs.launchpad.net/opensatnav

View File

@ -1,5 +1,6 @@
Use Built:Yes
License:GPLv3
Category:Multimedia
Web Site:http://wiki.sixgun.org/ponyexpress/start
Source Code:http://gitorious.org/ponyexpress
Issue Tracker:

View File

@ -1,4 +1,5 @@
License:GPLv3+
Category:Internet
Web Site:http://code.google.com/p/swiftp/
Source Code:http://code.google.com/p/swiftp/source/checkout
Issue Tracker:http://code.google.com/p/swiftp/issues/list

View File

@ -1,5 +1,6 @@
Use Built:Yes
License:GPLv3
Category:Multimedia
Web Site:http://code.google.com/p/vudroid/
Source Code:http://code.google.com/p/vudroid/source/checkout
Issue Tracker:http://code.google.com/p/vudroid/issues/list

View File

@ -304,6 +304,8 @@ for app in apps:
addElement('icon', app['icon'], doc, apel)
addElement('description', app['description'], doc, apel)
addElement('license', app['license'], doc, apel)
if 'category' in app:
addElement('category', app['category'], doc, apel)
addElement('web', app['web'], doc, apel)
addElement('source', app['source'], doc, apel)
addElement('tracker', app['tracker'], doc, apel)