summaryrefslogtreecommitdiffstats
path: root/checkpkg
blob: d132e0cbfd7f88b8b21e5eb429a2c8be05511b93 (plain)
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/bin/bash

# Source makepkg.conf; fail if it is not found
if [ -r "/etc/makepkg.conf" ]; then
	source "/etc/makepkg.conf"
else
    echo "/etc/makepkg.conf not found!"
    exit 1
fi

# Source user-specific makepkg.conf overrides
if [ -r ~/.makepkg.conf ]; then
	source ~/.makepkg.conf
fi

strip_url() {
	echo $1 | sed 's|^.*://.*/||g'
}

if [ ! -f PKGBUILD ]; then
	echo "This must be run in the directory of a built package."
	exit 1
fi

source PKGBUILD

pkgfile=${pkgname}-${pkgver}-${pkgrel}-${CARCH}.pkg.tar.gz
oldstylepkgfile=${pkgname}-${pkgver}-${pkgrel}.pkg.tar.gz

if [ -f "$(pwd)/$pkgfile" ]; then
    pkgfile=$(pwd)/$pkgfile
elif [ -f "$PKGDEST/$pkgfile" ]; then
    pkgfile=$PKGDEST/$pkgfile
elif [ -f "$(pwd)/$oldstylepkgfile" ]; then
    pkgfile=$(pwd)/$oldstylepkgfile
elif [ -f "$PKGDEST/$oldstylepkgfile" ]; then
    pkgfile=$PKGDEST/$oldstylepkgfile
else
    echo "File \"$pkgfile\" doesn't exist"
    exit 1
fi

tmp=`pacman -Spd --noconfirm $pkgname`

if [ $? -ne 0 ]; then
	echo "Couldn't download previous package."
	exit 1
fi

pkgurl=`echo $tmp | rev | cut -d ' ' -f 1 | rev`

oldpkg=`strip_url $pkgurl`

if [ "$(basename $oldpkg)" = "$(basename $pkgfile)" ]; then
	echo "The built package is the one in the repo right now!"
	exit 1
fi

if [ ! -f $oldpkg ]; then
	if echo $pkgurl | grep "^file:///" > /dev/null 2>&1; then
		cp `echo $pkgurl | sed 's#^file://##'` .
	else
		wget $pkgurl
	fi
fi

tar tzf $oldpkg > filelist-old
tar tzf "$pkgfile" > filelist

sort -o filelist filelist
sort -o filelist-old filelist-old

diff filelist-old filelist

if diff filelist-old filelist | grep '\.so\.' > /dev/null 2>&1; then
	mkdir -p pkg
	cd pkg
	tar xzf "$pkgfile" > /dev/null
	for i in `diff ../filelist-old ../filelist | grep \> | grep \.so\. | awk '{print $2}'`; do
		echo -n "${i}: "
		objdump -p $i | grep SONAME
	done
else
	echo "No filename differences"
fi

# vim:ft=sh:ts=4:sw=4:et: