MAKE DEB: Set priority according to version in lcl-utils and lazarus-ide-gtk so that newer version is automatically selected. (Closes: Bug#656913)

git-svn-id: trunk@35762 -
This commit is contained in:
mazen 2012-03-06 11:02:32 +00:00
parent dc58a0646c
commit d9390effd4
5 changed files with 26 additions and 9 deletions

18
debian/changelog vendored
View File

@ -2,7 +2,23 @@ lazarus (0.9.31-0) unstable; urgency=low
* Snapshot building.
-- Abou Al Montacir <abou.almontacir@sfr.fr> Wed, 20 Jul 2011 09:32:00 +0100
-- Abou Al Montacir <abou.almontacir@sfr.fr> Tue, 06 Mar 2012 09:16:00 +0100
lazarus (0.9.30.2-3) unstable; urgency=low
* Set priority according to version in lcl-utils and lazarus-ide-gtk so that
newer version is automatically selected. (Closes: Bug#656913)
-- Abou Al Montacir <abou.almontacir@sfr.fr> Tue, 15 Feb 2012 18:49:00 +0100
lazarus (0.9.30.2-2) unstable; urgency=low
* Set priority according to version so that newer version is automatically
selected. (Closes: Bug#656913)
* Fix target specific compiler flags causing FPC-2.6.0 to abort compilation.
(Closes: Bug#656251)
-- Abou Al Montacir <abou.almontacir@sfr.fr> Tue, 07 Feb 2012 10:58:00 +0100
lazarus (0.9.30-3) unstable; urgency=low

11
debian/fixdeb vendored
View File

@ -2,13 +2,13 @@
#
# Create debian files from *.in files
#
# $1 = path to debian files
# $2 = fpc target (i386-linux)
# $3 = ppcXXX binary name (ppc386)
#
#set -x
if [ $# != 2 ]; then
echo 'Usage : fixdeb <path> <target>'
echo 'Usage : fixdeb <path> <target> [priority]'
echo ' <path> = path to debian files'
echo ' <target> = fpc target (i386-linux)'
echo ' [priority] = package priority in alternative system'
exit 1
fi
@ -18,6 +18,7 @@ DEB_SUBST_DEBVERSION=`echo $DEB_SUBST_PACKAGEVERSION | awk -F '-' '{ print $NF }
DEB_SUBST_SVNPATH=`echo $DEB_SUBST_VERSION | awk -F '.' '{ print "release_"$1"_"$2"_"$3 }'`
DEB_SUBST_TARGET="$2"
DEB_SUBST_PACKAGESUFFIX=${PACKAGESUFFIX}
DEB_SUBST_PRIORITY=${3:-$(($(echo ${DEB_SUBST_VERSION}.0.0.0.0 | sed -e 's@\([0-9]\)\+\.\([0-9]\)\+\.\([0-9]\+\)\.\([0-9]\+\).*@((\1*100+\2)*100+\3)*100+\4@')))}
SUBST_CMD=`set | sed -n -e 's/^DEB_SUBST_\([A-Z_]\+\)=\(.*\)/-e s@\${\1}@\2@g/p'`

View File

@ -6,7 +6,7 @@ LAZARUS_DIR=/usr/lib/lazarus/${VERSION}
# Add alternatives
update-alternatives \
--install ${LAZARUS_DIR}/lazarus lazarus-${VERSION} ${LAZARUS_DIR}/lazarus-gtk2 20
--install ${LAZARUS_DIR}/lazarus lazarus-${VERSION} ${LAZARUS_DIR}/lazarus-gtk2 ${PRIORITY}
# Debhelper code
#DEBHELPER#

View File

@ -6,7 +6,7 @@ LAZARUS_DIR=/usr/lib/lazarus/${VERSION}
# Add alternatives
update-alternatives \
--install /usr/bin/lazarus-ide lazarus-ide ${LAZARUS_DIR}/startlazarus 20 \
--install /usr/bin/lazarus-ide lazarus-ide ${LAZARUS_DIR}/startlazarus ${PRIORITY} \
--slave /usr/bin/startlazarus startlazarus ${LAZARUS_DIR}/startlazarus \
--slave /usr/share/pixmaps/lazarus.xpm lazarus.xpm /usr/share/pixmaps/lazarus-${VERSION}.xpm

View File

@ -19,7 +19,7 @@ then
fi
# Add alternatives
update-alternatives \
--install /usr/lib/lazarus/default lazarus ${LAZARUS_DIR} 20 \
--install /usr/lib/lazarus/default lazarus ${LAZARUS_DIR} ${PRIORITY} \
--slave "${CFG_DIR}" lazarus.cfg /etc/lazarus-${VERSION} \
--slave /usr/bin/lazbuild lazbuild ${LAZARUS_DIR}/lazbuild \
--slave ${MAN_DIR}/lazbuild.1.gz lazbuild.1.gz ${MAN_DIR}/lazbuild-${VERSION}.1.gz \