mirror of
https://github.com/lilydjwg/archrepo2.git
synced 2025-03-10 12:02:43 +00:00
package release can be float; archpkg update
This commit is contained in:
parent
0ff3bc0c71
commit
53c8f08dc8
2 changed files with 89 additions and 8 deletions
|
@ -1,5 +1,7 @@
|
||||||
import os
|
import os
|
||||||
from collections import defaultdict, namedtuple
|
from collections import defaultdict, namedtuple
|
||||||
|
import subprocess
|
||||||
|
import re
|
||||||
|
|
||||||
from pkg_resources import parse_version
|
from pkg_resources import parse_version
|
||||||
|
|
||||||
|
@ -9,7 +11,7 @@ class PkgNameInfo(namedtuple('PkgNameInfo', 'name, version, release, arch')):
|
||||||
return NotImplemented
|
return NotImplemented
|
||||||
if self.version != other.version:
|
if self.version != other.version:
|
||||||
return parse_version(self.version) < parse_version(other.version)
|
return parse_version(self.version) < parse_version(other.version)
|
||||||
return int(self.release) < int(other.release)
|
return float(self.release) < float(other.release)
|
||||||
|
|
||||||
def __gt__(self, other):
|
def __gt__(self, other):
|
||||||
# No, try the other side please.
|
# No, try the other side please.
|
||||||
|
@ -28,9 +30,88 @@ def trimext(name, num=1):
|
||||||
name = os.path.splitext(name)[0]
|
name = os.path.splitext(name)[0]
|
||||||
return name
|
return name
|
||||||
|
|
||||||
def finddups(pkgs, n=1):
|
def get_pkgname_with_bash(PKGBUILD):
|
||||||
ret = defaultdict(list)
|
script = '''\
|
||||||
for f in pkgs:
|
. '%s'
|
||||||
name, ver, build, arch = PkgNameInfo.parseFilename(os.path.split(f)[1])
|
echo ${pkgname[*]}''' % PKGBUILD
|
||||||
ret[name].append('%s-%s' % (ver, build))
|
# Python 3.4 has 'input' arg for check_output
|
||||||
return {k: sorted(v) for k, v in ret.items() if len(v) > n}
|
p = subprocess.Popen(['bash'], stdin=subprocess.PIPE,
|
||||||
|
stdout=subprocess.PIPE)
|
||||||
|
output = p.communicate(script.encode('latin1'))[0].decode('latin1')
|
||||||
|
ret = p.wait()
|
||||||
|
if ret != 0:
|
||||||
|
raise subprocess.CalledProcessError(
|
||||||
|
ret, ['bash'], output)
|
||||||
|
return output.split()
|
||||||
|
|
||||||
|
def _run_bash(script):
|
||||||
|
p = subprocess.Popen(['bash'], stdin=subprocess.PIPE)
|
||||||
|
p.communicate(script.encode('latin1'))
|
||||||
|
ret = p.wait()
|
||||||
|
if ret != 0:
|
||||||
|
raise subprocess.CalledProcessError(
|
||||||
|
ret, ['bash'])
|
||||||
|
|
||||||
|
def get_aur_pkgbuild_with_bash(name):
|
||||||
|
script = '''\
|
||||||
|
. /usr/lib/yaourt/util.sh
|
||||||
|
. /usr/lib/yaourt/aur.sh
|
||||||
|
init_color
|
||||||
|
aur_get_pkgbuild '%s' ''' % name
|
||||||
|
_run_bash(script)
|
||||||
|
|
||||||
|
def get_abs_pkgbuild_with_bash(name):
|
||||||
|
script = '''\
|
||||||
|
. /usr/lib/yaourt/util.sh
|
||||||
|
. /usr/lib/yaourt/abs.sh
|
||||||
|
init_paths
|
||||||
|
init_color
|
||||||
|
arg=$(pacman -Sp --print-format '%%r/%%n' '%s')
|
||||||
|
RSYNCOPT="$RSYNCOPT -O"
|
||||||
|
abs_get_pkgbuild "$arg" ''' % name
|
||||||
|
_run_bash(script)
|
||||||
|
|
||||||
|
pkgfile_pat = re.compile(r'(?:^|/).+-[^-]+-[\d.]+-(?:\w+)\.pkg\.tar\.xz$')
|
||||||
|
|
||||||
|
def _strip_ver(s):
|
||||||
|
return re.sub(r'[<>=].*', '', s)
|
||||||
|
|
||||||
|
def get_package_dependencies(name):
|
||||||
|
out = subprocess.check_output(["package-query", "-Sii", "-f", "%D", name])
|
||||||
|
out = out.decode('latin1')
|
||||||
|
return [_strip_ver(x) for x in out.split() if x != '-']
|
||||||
|
|
||||||
|
def get_package_info(name, local=False):
|
||||||
|
old_lang = os.environ['LANG']
|
||||||
|
os.environ['LANG'] = 'C'
|
||||||
|
args = '-Qi' if local else '-Si'
|
||||||
|
try:
|
||||||
|
out = subprocess.check_output(["pacman", args, name])
|
||||||
|
out = out.decode('latin1')
|
||||||
|
finally:
|
||||||
|
os.environ['LANG'] = old_lang
|
||||||
|
|
||||||
|
ret = {}
|
||||||
|
for l in out.splitlines():
|
||||||
|
if not l:
|
||||||
|
continue
|
||||||
|
if l[0] not in ' \t':
|
||||||
|
key, value = l.split(':', 1)
|
||||||
|
key = key.strip()
|
||||||
|
value = value.strip()
|
||||||
|
ret[key] = value
|
||||||
|
else:
|
||||||
|
ret[key] += ' ' + l.strip()
|
||||||
|
return ret
|
||||||
|
|
||||||
|
def get_package_repository(name):
|
||||||
|
try:
|
||||||
|
out = subprocess.check_output(["package-query", "-Sii", "-f", "%r", name])
|
||||||
|
repo = out.strip().decode('latin1')
|
||||||
|
except subprocess.CalledProcessError:
|
||||||
|
repo = 'local'
|
||||||
|
return repo
|
||||||
|
|
||||||
|
def is_official(name):
|
||||||
|
repo = get_package_repository(name)
|
||||||
|
return repo in ('core', 'extra', 'community', 'multilib', 'testing')
|
||||||
|
|
|
@ -27,7 +27,7 @@ from . import dbutil
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
# handles only x86_64, i686 and any arch packages
|
# handles only x86_64, i686 and any arch packages
|
||||||
_pkgfile_pat = re.compile(r'(?:^|/).+-[^-]+-\d+-(?:x86_64|i686|any)\.pkg\.tar\.xz(?:\.sig)?$')
|
_pkgfile_pat = re.compile(r'(?:^|/).+-[^-]+-[\d.]+-(?:x86_64|i686|any)\.pkg\.tar\.xz(?:\.sig)?$')
|
||||||
|
|
||||||
def same_existent_file(a, b):
|
def same_existent_file(a, b):
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Add table
Reference in a new issue