Skip to content

Commit

Permalink
Revert "bump debian/compat to 9"
Browse files Browse the repository at this point in the history
This reverts commit 2836d8e. The
stdeb 0.8.x series should continue to support Debian 6 "squeeze".
Unfortunately I didn't check this commit on squeeze before merging it.
  • Loading branch information
astraw committed Feb 15, 2015
1 parent bf6034e commit bf59ed8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions stdeb/util.py
Expand Up @@ -25,8 +25,8 @@
'apply_patch','repack_tarball_with_debianized_dirname',
'expand_sdist_file','stdeb_cfg_options']

DH_MIN_VERS = '9' # Fundamental to stdeb >= 0.4
DH_IDEAL_VERS = '9' # required by debian/compat = 9
DH_MIN_VERS = '7' # Fundamental to stdeb >= 0.4
DH_IDEAL_VERS = '7.4.3' # fixes Debian bug 548392

PYTHON_ALL_MIN_VERS = '2.6.6-3'

Expand Down Expand Up @@ -1289,7 +1289,7 @@ def build_dsc(debinfo,

# D. debian/compat
fd = open( os.path.join(debian_dir,'compat'), mode='w')
fd.write('9\n')
fd.write('7\n')
fd.close()

# E. debian/package.mime
Expand Down

0 comments on commit bf59ed8

Please sign in to comment.