Skip to content

Commit

Permalink
fixed Debian package: launchpad build servers have broken $TERM confi…
Browse files Browse the repository at this point in the history
…gurations

 * it also sets the compatibility level to 7 which was required
   when building for Ubuntu Lucid. This version cannot be supported
   however since its libglib version is too old.
  • Loading branch information
rhaberkorn committed Mar 18, 2015
1 parent e487cee commit 117c53e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion debian/compat
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8
7
3 changes: 2 additions & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ Source: sciteco
Section: editors
Priority: optional
Maintainer: Robin Haberkorn <robin.haberkorn@googlemail.com>
Build-Depends: debhelper (>= 7.4), g++ (>= 4:4.4), libglib2.0-dev, libncurses5-dev
Build-Depends: debhelper (>= 7.4), g++ (>= 4:4.4),
libglib2.0-dev (>= 2.28), ncurses-base, ncurses-term, libncurses5-dev
Standards-Version: 3.9.2
Homepage: http://sciteco.sf.net/
Vcs-Browser: https://github.com/rhaberkorn/sciteco
Expand Down
9 changes: 9 additions & 0 deletions debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

# NOTE: Unsetting $TERM is necessary since the
# PPA build servers have a broken curses setup.
# They have $TERM set but do not include the corresponding
# terminal definitions.
# This lets SciTECO choose a reasonable default
# and we've also added some terminal definitions to the
# build dependencies.
export TERM=

%:
dh $@

Expand Down

0 comments on commit 117c53e

Please sign in to comment.