From 82ce9480769d54932a0d7e0d2395a73d537a21ab Mon Sep 17 00:00:00 2001 From: Jean-Francois Dockes Date: Thu, 15 Apr 2010 13:57:21 +0200 Subject: [PATCH] none --- packaging/debian/buildppa.sh | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 packaging/debian/buildppa.sh diff --git a/packaging/debian/buildppa.sh b/packaging/debian/buildppa.sh new file mode 100644 index 00000000..807fc5f1 --- /dev/null +++ b/packaging/debian/buildppa.sh @@ -0,0 +1,28 @@ +#!/bin/sh + +RCLVERSION=1.13.04 + +debdir=debianrclqt3 + +rm -rf recoll-${RCLVERSION}/debian +cp -rp $debdir recoll-${RCLVERSION}/debian + +for series in dapper hardy interpid jaunty ;do + sed -e s/SERIES/$series/g < ${debdir}/changelog > \ + recoll-${RCLVERSION}/debian/changelog ; + (cd recoll-${RCLVERSION};debuild -S -sa) + dput recoll-ppa recoll_${RCLVERSION}-0~ppa1~${series}1_source.changes +done + +debdir=debianrclqt4 + +rm -rf recoll-${RCLVERSION}/debian +cp -rp $debdir recoll-${RCLVERSION}/debian + +for series in karmic ; do + sed -e s/SERIES/$series/g < ${debdir}/changelog > \ + recoll-${RCLVERSION}/debian/changelog ; + (cd recoll-${RCLVERSION};debuild -S -sa) + dput recoll-ppa recoll_${RCLVERSION}-0~ppa1~${series}1_source.changes +done +