Switch to unified view

a/packaging/debian/buildppa.sh b/packaging/debian/buildppa.sh
1
#!/bin/sh
1
#!/bin/sh
2
2
3
RCLVERSION=1.13.04
3
RCLVERS=1.13.04
4
PPAVERS=1
5
6
########## QT3
7
series3=""
8
series3="dapper hardy intrepid"
4
9
5
debdir=debianrclqt3
10
debdir=debianrclqt3
6
11
7
rm -rf recoll-${RCLVERSION}/debian
12
rm -rf recoll-${RCLVERS}/debian
8
cp -rp $debdir recoll-${RCLVERSION}/debian
13
cp -rp $debdir recoll-${RCLVERS}/debian
9
14
for series in  $series3;do 
10
for series in dapper hardy intrepid jaunty ;do 
11
  sed -e s/SERIES/$series/g < ${debdir}/changelog > \
15
  sed -e s/SERIES/$series/g < ${debdir}/changelog > \
12
    recoll-${RCLVERSION}/debian/changelog ;
16
    recoll-${RCLVERS}/debian/changelog ;
13
  (cd recoll-${RCLVERSION};debuild -S -sa) 
17
  (cd recoll-${RCLVERS};debuild -S -sa) 
14
  dput recoll-ppa recoll_${RCLVERSION}-0~ppa1~${series}1_source.changes
18
  dput recoll-ppa recoll_${RCLVERS}-0~ppa${PPAVERS}~${series}1_source.changes
15
done
19
done
16
20
21
####### QT4
22
series4=""
23
#series4="jaunty karmic lucid"
24
series4="jaunty lucid"
25
17
debdir=debianrclqt4
26
debdir=debianrclqt4
18
19
rm -rf recoll-${RCLVERSION}/debian
27
rm -rf recoll-${RCLVERS}/debian
20
cp -rp $debdir recoll-${RCLVERSION}/debian
28
cp -rp $debdir recoll-${RCLVERS}/debian
21
22
for series in karmic ; do
29
for series in $series4 ; do
23
  sed -e s/SERIES/$series/g < ${debdir}/changelog > \
30
  sed -e s/SERIES/$series/g < ${debdir}/changelog > \
24
    recoll-${RCLVERSION}/debian/changelog ;
31
    recoll-${RCLVERS}/debian/changelog ;
25
  (cd recoll-${RCLVERSION};debuild -S -sa) 
32
  (cd recoll-${RCLVERS};debuild -S -sa) 
26
  dput recoll-ppa recoll_${RCLVERSION}-0~ppa1~${series}1_source.changes
33
  dput recoll-ppa recoll_${RCLVERS}-0~ppa${PPAVERS}~${series}1_source.changes
27
done
34
done
28
35