Skip to content
Snippets Groups Projects
Commit 4584db66 authored by Piotr Ożarowski's avatar Piotr Ożarowski
Browse files

if pycompile is needed, add "python (>= 2.6.5-1~)" to Depends

(rather than replacing python2.6)
parent afcb8ac6
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ PREFIX ?= /usr ...@@ -4,7 +4,7 @@ PREFIX ?= /usr
clean: clean:
make -C tests clean make -C tests clean
find . -name '*\.py[co]' -delete find . -name '*.py[co]' -delete
rm -f .coverage rm -f .coverage
install-dev: install-dev:
......
...@@ -46,7 +46,7 @@ PYDIST_RE = re.compile(r""" ...@@ -46,7 +46,7 @@ PYDIST_RE = re.compile(r"""
""", re.VERBOSE) """, re.VERBOSE)
def validate(fpath, exit=False): def validate(fpath, exit_on_error=False):
"""Check if pydist file looks good.""" """Check if pydist file looks good."""
with open(fpath) as fp: with open(fpath) as fp:
for line in fp: for line in fp:
...@@ -56,8 +56,8 @@ def validate(fpath, exit=False): ...@@ -56,8 +56,8 @@ def validate(fpath, exit=False):
if not PYDIST_RE.match(line): if not PYDIST_RE.match(line):
log.error('invalid pydist data in file %s: %s', \ log.error('invalid pydist data in file %s: %s', \
fpath.rsplit('/', 1)[-1], line) fpath.rsplit('/', 1)[-1], line)
if exit: if exit_on_error:
sys.exit(3) exit(3)
return False return False
return True return True
...@@ -134,7 +134,8 @@ def guess_dependency(req, version): ...@@ -134,7 +134,8 @@ def guess_dependency(req, version):
process = Popen("/usr/bin/dpkg -S %s" % query,\ process = Popen("/usr/bin/dpkg -S %s" % query,\
shell=True, stdout=PIPE, stderr=PIPE) shell=True, stdout=PIPE, stderr=PIPE)
if process.wait() != 0: if process.wait() != 0:
log.error('Cannot find package that provides %s.', name) log.error('Cannot find package that provides %s. '
'Please add it to debian/pydist-overrides', name)
log.info("hint: `apt-file search -x '(packages|pyshared)/" +\ log.info("hint: `apt-file search -x '(packages|pyshared)/" +\
"%s' -l` might help", name) "%s' -l` might help", name)
exit(8) exit(8)
......
...@@ -395,11 +395,7 @@ def dependencies(package, stats, options): ...@@ -395,11 +395,7 @@ def dependencies(package, stats, options):
# make sure pycompile binary is available # make sure pycompile binary is available
if stats['compile']: if stats['compile']:
dep = "python2.6 (>= 2.6.5-1~)" # python-minimal uses the same version depends.append("python (>= 2.6.5-1~)")
if depends == ['python2.6']:
depends = [dep]
else:
depends.append(dep)
for interpreter, version in stats['shebangs']: for interpreter, version in stats['shebangs']:
if interpreter not in depends: if interpreter not in depends:
......
...@@ -3,9 +3,5 @@ ...@@ -3,9 +3,5 @@
if which python >/dev/null 2>&1 && which pyclean >/dev/null 2>&1; then if which python >/dev/null 2>&1 && which pyclean >/dev/null 2>&1; then
pyclean -V $2 /usr/lib/python$2/ pyclean -V $2 /usr/lib/python$2/
else else
find /usr/lib/python$2/ -name '*\.py[co]' -delete find /usr/lib/python$2/ -name '*.py[co]' -delete
# PEP 3147 mode
#TAG=`python$2 -c "import imp; print(imp.magic_tags[imp.get_magic()])"` \
#find /usr/lib/python3/ -name "*\.$TAG\.py[co]" -delete
#find /usr/lib/python3/ -depth -empty -name '__pycache__' -delete
fi fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment