1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-11-14 11:00:10 +01:00

update: do not include fdroid-generated tarballs as "media" files

`fdroid build` will generate source tarballs, and now with support for
adding any file to a repo, we need to explicitly ignore the fdroid-
generated source tarballs.  If people want to include source tarballs in a
repo, they still can, as long as that source tarball doesn't use the
`fdroid build` tarball naming scheme.
This commit is contained in:
Hans-Christoph Steiner 2017-03-10 17:40:19 +01:00
parent 6207ee7878
commit 9d363b91f4

View File

@ -48,7 +48,7 @@ from . import metadata
from .common import FDroidPopen, FDroidPopenBytes, SdkToolsPopen
from .metadata import MetaDataException
METADATA_VERSION = 17
METADATA_VERSION = 18
screen_densities = ['640', '480', '320', '240', '160', '120']
@ -549,6 +549,9 @@ def scan_repo_files(apkcache, repodir, knownapks, use_date_from_file=False):
if file_extension == 'apk' or file_extension == 'obb':
continue
filename = os.path.join(repodir, name)
if filename.endswith('_src.tar.gz'):
logging.debug('skipping source tarball:', filename)
continue
if not common.is_repo_file(filename):
continue
stat = os.stat(filename)