~ubuntu-branches/ubuntu/vivid/pkgbinarymangler/vivid

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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
#!/bin/bash -e

CONFFILE=${PKGBINARYMANGLER_CONF_DIR:-/etc/pkgbinarymangler}/stripfiles.conf

. ${PKGBINARYMANGLER_COMMON_PATH:-/usr/share/pkgbinarymangler}/common

#
# Remove buildinfo files and upstream changelogs; take care to keep native changelogs
#
clean_upstream_changelogs()
{
    dch=usr/share/doc/$PKGNAME/changelog.Debian.gz
    if [ ! -e "$dch" ] && [ ! -h "$dch" ]; then
	dch=usr/share/doc/$PKGNAME/changelog.gz
    fi

    if [ -d usr/share/doc ]; then
	(find usr/share/doc -type f \( -name buildinfo.gz -o -iname 'changelog.*' -o -iname changes -o -iname changes.gz -o -iname '*.changes.gz' \) -a ! -name `basename $dch` ) | while read f; do
	    echo ".. removing $f"
	    rm "$f"
	    [ ! -f DEBIAN/md5sums ] || sed -i "\& $f$&d" DEBIAN/md5sums
	done
    fi
}

#
# Only keep the topmost ten entries in Debian changelogs. If we truncate, add a
# pointer to apt-get changelog.
#
strip_debian_changelogs()
{
    record_sep="^[^ ]+ (.*) .*; urgency"
    if [ -e $dch ]; then
	record_count=0
	changelog=""
	gzip -cd $dch | (while read; do
	    if [[ "$REPLY" =~ $record_sep ]]; then
		((++record_count))
		if [ "$record_count" -eq 11 ]; then
		    echo "pkgstripfiles: Truncating changelog to topmost ten records"
		    echo -e "${changelog}# For older changelog entries, run 'apt-get changelog $PKGNAME'" | gzip -9n > $dch
		    if [ -f DEBIAN/md5sums ]; then
			MD5=`md5sum "$dch"`
			sed -i "s%^.*  $dch\$%$MD5%" DEBIAN/md5sums
		    fi
		    break
		fi
	    fi
	    changelog="$changelog$REPLY\n"
	done)
    fi
}

#
# Optimize PNGs
#
optimize_pngs()
{
    # skip PNG modification for games; they often rely on their particular image
    # format
    if [ "${SECTION%games}" != "$SECTION" ]; then
	echo "pkgstripfiles: Skipping PNG optimization for package in games section."
	return
    fi

    # also skip when disabling explicitly
    if [ -n "$NO_PNG_PKG_MANGLE" ]; then
	echo "pkgstripfiles: Disabled PNG optimization for package."
	return
    fi

    # optipng/advancecomp
    find -type f -name '*.png' | while read f; do
	orig_perms=`stat -c %a "$f"`
	if ! optipng -o4 -preserve "$f"; then
	    echo "WARNING: optipng failed on $f, ignoring" >&2
	    continue
	fi
	if ! advpng -z4 "$f"; then
	    echo "WARNING: advpng failed on $f, ignoring" >&2
	    continue
	fi

	# advpng does not keep permissions
	chmod "$orig_perms" "$f"

	# update md5sum
	if [ -f DEBIAN/md5sums ]; then
	    f=${f#./}
	    MD5=`md5sum "$f"`
	    sed -i "s%^.*  ${f//%/\%}\$%${MD5//%/\%}%" DEBIAN/md5sums
	fi
    done
}

#
# Symlink identical documentation to depending packages
#
symlink_doc()
{
    if [ -n "$CDBS_NO_DOC_SYMLINKING" -o -n "$NO_DOC_PKG_MANGLE" ]; then
	echo "pkgstripfiles: documentation symlinking disabled"
	return
    fi

    # skip if doc dirs are already symlinks
    if [ ! -d usr/share/doc -o -h usr/share/doc -o -h usr/share/doc/$PKGNAME ];
    then
	return
    fi

    # iterate over all dependencies
    for dep in `perl -ne 'if (/^(Pre-)?Depends:/) {s/^\w+://; foreach (split /,/) { @f=split; print($f[0], "\n"); } }' DEBIAN/control`; do
	[ -d ../$dep/usr/share/doc ] || continue
	# don't replace docs with symlinks to matching files in dependent
	# packages when the dependent package is arch: all and the depending
	# package isn't; ensures consistency between packages built with -b vs.
	# -B, required by multiarch.
	readctrl ../$dep/DEBIAN/control Architecture
	DEPARCH=$RET
	if [ "$ARCHITECTURE" != "$DEPARCH" ] && [ "$DEPARCH" = "all" ];
	then
	    echo "Skipping arch: any to arch: all dependency to $dep"
	    continue
	fi
	echo "Searching for duplicated docs in dependency $dep..."
	(
	    r=`pwd`
	    cd usr/share/doc/$PKGNAME
	    find -type f ! -name copyright | while read f; do
		f=${f#./}
		thisfile="$r/usr/share/doc/$PKGNAME/$f"
		depfile="$r/../$dep/usr/share/doc/$dep/$f"
		if [ -f "$depfile" ] && zcmp "$thisfile" "$depfile" >/dev/null; then
		    echo "  symlinking $f in $PKGNAME to file in $dep"
		    rm "$thisfile"
		    ln -s "../$dep/$f" "$thisfile";
		    [ ! -f $r/DEBIAN/md5sums ] || sed -i "\& usr/share/doc/$PKGNAME/$f$&d" $r/DEBIAN/md5sums
		fi
	    done
	)
    done
}

#
# main
#

# don't do anything for PPA builds
if [ -f "$BUILDINFO" ]; then
    if grep -qs '^Purpose: PPA' "$BUILDINFO"; then
        if grep -q '/oem-archive' ${PKGBINARYMANGLER_APT_CONF_DIR:-/etc/apt}/sources.list; then
	    echo "INFO: Running pkgstripfiles for OEM PPA build"
	else
	    echo "INFO: Disabling pkgstripfiles for PPA build"
	    exit 0
	fi
    fi
fi

# find package name
while [ $# -gt 0 ]; do
    if [ -f "$1"/DEBIAN/control ]; then
        PKGCTL="$1"/DEBIAN/control
        break
    else
        shift
    fi
done

if [ -z "$PKGCTL" ]; then
    echo "pkgstripfiles: did not find a package name argument or control file, skipping"
    exit 0
fi

readctrl $PKGCTL Package
PKGNAME=$RET
readctrl $PKGCTL Section
SECTION=$RET
readctrl $PKGCTL Architecture
ARCHITECTURE=$RET
PKGDIR=$(dirname $(dirname $PKGCTL))
echo "pkgstripfiles: processing control file: $PKGCTL, package $PKGNAME, directory $PKGDIR"

cd "$PKGDIR"

clean_upstream_changelogs
strip_debian_changelogs
symlink_doc
optimize_pngs