Make metadata.py a proper module (renamed to common.py)

This commit is contained in:
Henrik Tunedal 2011-02-17 21:16:26 +01:00
parent 0ad478ae01
commit a26c3ca507
4 changed files with 11 additions and 6 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@ repo/
built/
build_*/
*~
*.pyc

7
build.py Normal file → Executable file
View File

@ -1,3 +1,4 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
#
# build.py - part of the FDroid server tools
@ -19,7 +20,6 @@
import sys
import os
import shutil
import glob
import subprocess
import re
import zipfile
@ -29,10 +29,11 @@ import shlex
from xml.dom.minidom import Document
from optparse import OptionParser
import common
#Read configuration...
execfile('config.py')
execfile('metadata.py')
# Parse command line...
parser = OptionParser()
@ -45,7 +46,7 @@ parser.add_option("-c", "--clean", action="store_true", default=False,
(options, args) = parser.parse_args()
# Get all apps...
apps = read_metadata()
apps = common.read_metadata()
#Clear and/or create the 'built' directory, depending on mode:
built_dir = 'built'

View File

@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
# metadata.py - part of the FDroid server tools
# common.py - part of the FDroid server tools
# Copyright (C) 2010, Ciaran Gultnieks, ciaran@ciarang.com
#
# This program is free software: you can redistribute it and/or modify
@ -16,6 +16,8 @@
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import glob, os, sys
def read_metadata(verbose=False):
apps = []

5
update.py Normal file → Executable file
View File

@ -1,3 +1,4 @@
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
#
# update.py - part of the FDroid server tools
@ -34,7 +35,7 @@ repo_icon = None
repo_url = None
execfile('config.py')
execfile('metadata.py')
import common
# Parse command line...
parser = OptionParser()
@ -66,7 +67,7 @@ if (repo_url is None or repo_name is None or
sys.exit(1)
# Get all apps...
apps = read_metadata(verbose=options.verbose)
apps = common.read_metadata(verbose=options.verbose)
# Copy apks and source tarballs for stuff we've built from source that
# is flagged to be included in the repo...