File: test.sh

package info (click to toggle)
stdeb 0.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 240 kB
  • ctags: 89
  • sloc: python: 1,601; sh: 52; makefile: 15
file content (65 lines) | stat: -rwxr-xr-x 2,309 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/bin/bash

rm -rf deb_dist

for i in `seq 1 3`; do

if [ $i -eq "1" ]; then
SOURCE_URL=http://astraw.com/misc_files/simplepack-8.0.1+r23437.tar.gz
SOURCE_TARBALL=simplepack-8.0.1+r23437.tar.gz
SOURCE_TARBALL_DIR=simplepack-8.0.1+r23437
DEBSOURCE=simplepack-8.0.1+r23437
elif [ $i -eq "2" ]; then
SOURCE_URL=http://pypi.python.org/packages/source/R/Reindent/Reindent-0.1.0.tar.gz
SOURCE_TARBALL=Reindent-0.1.0.tar.gz
SOURCE_TARBALL_DIR=Reindent-0.1.0
DEBSOURCE=reindent-0.1.0
elif [ $i -eq "3" ]; then
SOURCE_URL=http://astraw.com/misc_files/twisted-svn-r23437.tar.gz
SOURCE_TARBALL=twisted-svn-r23437.tar.gz
SOURCE_TARBALL_DIR=twisted.svn
DEBSOURCE=twisted-8.0.1-r23437
else
    echo "unknown case"
    exit 1
fi

# get a file to work with
# ==============================================================
wget $SOURCE_URL; if [[ $? -ne 0 ]]; then exit $?; fi

# case 1: build from pre-existing source tarball
# ==============================================================
py2dsc $SOURCE_TARBALL; if [[ $? -ne 0 ]]; then exit $?; fi

cd deb_dist/$DEBSOURCE; if [[ $? -ne 0 ]]; then exit $?; fi
dpkg-buildpackage -rfakeroot -uc -us; if [[ $? -ne 0 ]]; then exit $?; fi
cd ../..; if [[ $? -ne 0 ]]; then exit $?; fi
echo "contents of .deb from $SOURCE_TARBALL in case 1:"
dpkg --contents deb_dist/*.deb; if [[ $? -ne 0 ]]; then exit $?; fi

#cleanup case 1
rm -rf deb_dist; if [[ $? -ne 0 ]]; then exit $?; fi

# case 2: build from pre-existing source tarball
# ==============================================================
tar xzf $SOURCE_TARBALL; if [[ $? -ne 0 ]]; then exit $?; fi
cd $SOURCE_TARBALL_DIR; if [[ $? -ne 0 ]]; then exit $?; fi
python setup.py --command-packages=stdeb.command sdist_dsc; if [[ $? -ne 0 ]]; then exit $?; fi
cd deb_dist/$DEBSOURCE; if [[ $? -ne 0 ]]; then exit $?; fi
dpkg-buildpackage -rfakeroot -uc -us; if [[ $? -ne 0 ]]; then exit $?; fi
cd ..; if [[ $? -ne 0 ]]; then exit $?; fi
echo "contents of .deb from $SOURCE_TARBALL in case 2:"
dpkg --contents *.deb; if [[ $? -ne 0 ]]; then exit $?; fi
cd ../..

#cleanup case 2
# ==============================================================
rm -rf $SOURCE_TARBALL_DIR; if [[ $? -ne 0 ]]; then exit $?; fi

#cleanup original tarball
rm -rf $SOURCE_TARBALL; if [[ $? -ne 0 ]]; then exit $?; fi

done

echo "All tests passed."