Skip to content
Snippets Groups Projects
Commit 65fc9eee authored by Gabor Juhos's avatar Gabor Juhos
Browse files

Add xz compressed packages to known extensions of dl_cleanup


Add .tar.xz, .txz, and .orig.tar.xz as known extensions to dl_cleanup.py.

Signed-off-by: default avatarIan Leonard <antonlacon@gmail.com>
Signed-off-by: default avatarGabor Juhos <juhosg@openwrt.org>

SVN-Revision: 35645
parent 3f749d1e
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,8 @@ ...@@ -3,7 +3,8 @@
# OpenWRT download directory cleanup utility. # OpenWRT download directory cleanup utility.
# Delete all but the very last version of the program tarballs. # Delete all but the very last version of the program tarballs.
# #
# Copyright (c) 2010 Michael Buesch <mb@bu3sch.de> # Copyright (C) 2010 Michael Buesch <mb@bu3sch.de>
# Copyright (C) 2013 OpenWrt.org
""" """
import sys import sys
...@@ -75,11 +76,14 @@ def parseVer_GIT(match, filepath): ...@@ -75,11 +76,14 @@ def parseVer_GIT(match, filepath):
extensions = ( extensions = (
".tar.gz", ".tar.gz",
".tar.bz2", ".tar.bz2",
".tar.xz",
".orig.tar.gz", ".orig.tar.gz",
".orig.tar.bz2", ".orig.tar.bz2",
".orig.tar.xz",
".zip", ".zip",
".tgz", ".tgz",
".tbz", ".tbz",
".txz",
) )
versionRegex = ( versionRegex = (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment