]> git.pld-linux.org Git - packages/rpm-build-tools.git/blob - pearize.sh
- handle suggests filling
[packages/rpm-build-tools.git] / pearize.sh
1 #!/bin/sh
2 # updates php-pear .spec with Requires/Conflicts lines.
3 # the items are added randomly to the preamble, but once added their order is left intact.
4 # it is still better than nothing. if somebody wishes to add sorting in this
5 # script. i'd be just glad :)
6 #
7 # needs 'pear' for 'pear make-rpm-spec' command, ./builder for fetching sources.
8 # You should have all PEAR packages installed to get best results (needed for epoch autodetection)
9 #
10 # To create completely new PEAR package spec, follow something like this:
11 # $ pear download RDF-alpha
12 # File RDF-0.1.0alpha1.tgz downloaded
13 # $ pear make-rpm-spec RDF-0.1.0alpha1.tgz
14 # Wrote RPM spec file php-pear-RDF.spec
15 # $
16 #
17 # TODO: adjust similiarily noautoreqdeps
18 # BUGS: the beta portions in version deps could be wrong (php-4.3.0b1 and alike)
19 # see php-pear-DBA_Relational.spec
20 # Something strange: Requires:  php-common < 4:3:5.1
21 #
22 # NOTE: old version of this script which was used to convert to new package format is in CVS branch MIGRATE.
23 #
24 # Send blames and beer\b\b\b\bideas to glen@pld-linux.org
25
26 set -e
27 spec="$1"
28 if [ -z "$spec" ]; then
29         echo >&2 "Usage: $0 SPECFILE"
30         exit 0
31 fi
32 if [ ! -f "$spec" ]; then
33         echo >&2 "$spec doesn't exist?"
34         exit 1
35 fi
36
37 if [[ "$(rpm -q php-pear-PEAR_Command_Packaging)" == *is?not* ]]; then
38         echo >&2 "Please install php-pear-PEAR_Command_Packaging"
39         exit 1
40 fi
41 echo "Processing $spec"
42
43 getsource() {
44         local spec="$1"
45         local NR="$2"
46         rpmbuild --nodigest --nosignature -bp --define 'prep %dump' $spec 2>&1 | awk  "/SOURCE$NR\t/ {print \$3}"
47 }
48
49 tarball=$(getsource $spec 0)
50 if [ -z "$tarball" ]; then
51         echo >&2 "Spec is missing Source0!"
52         exit 1
53 fi
54
55 if [ ! -f $tarball ]; then
56         ./builder -g "$spec"
57 fi
58
59 stmp=$(mktemp "${TMPDIR:-/tmp}/fragXXXXXX")
60 template=pearize.spec
61 cat > $stmp <<'EOF'
62 @extra_headers@
63 License: @release_license@
64 State: @release_state@
65 EOF
66 pear make-rpm-spec --spec-template=$stmp --output=$template $tarball
67 rm -f $stmp
68
69 mv $template .$template~
70 template=.$template~
71
72 # take as argument dependency in form NAME EQUALITY VERSION
73 # adds rpm epoch to VERSION if the package is installed and has epoch bigger than zero.
74 add_epoch() {
75         local dep="$@"
76         local pkg="$1"
77         local ver="$3"
78
79         # already have epoch
80         if [[ "$ver" = *:* ]]; then
81                 echo "$dep"
82                 return
83         fi
84
85         query=$(rpm -q --qf '%{epoch}\n' $pkg || :)
86         epoch=$(echo "$query" | grep -v 'installed' || :)
87         if [ "$epoch" ] && [ "$epoch" -gt 0 ]; then
88                 echo "$dep" | sed -e "s, [<>=]\+ ,&$epoch:,"
89         else
90                 echo "$dep"
91         fi
92 }
93
94 preamble=$(mktemp "${TMPDIR:-/tmp}/fragXXXXXX")
95 # take just main package preamble, preamble of tests (and other) subpackage(s) just confuses things.
96 sed -ne '/^Name:/,/^BuildRoot/p' $spec > $preamble
97
98 # create backup
99 bak=$(cp -fbv $spec $spec | awk '{print $NF}' | tr -d "['\`]" )
100
101 # parse requires
102 requires=$(grep '^BuildRequires:' $template || :)
103 if [ -n "$requires" ]; then
104         echo "$requires" | while read tag dep; do
105                 dep=$(add_epoch $dep)
106                 if ! grep -q "^BuildRequires:.*$dep" $preamble; then
107                         sed -i -e "/^BuildRoot/iBuildRequires:\t$dep" $spec
108                 fi
109         done
110 fi
111
112 requires=$(grep '^Requires:' $template || :)
113 if [ -n "$requires" ]; then
114         echo "$requires" | while read tag dep; do
115                 dep=$(add_epoch $dep)
116                 if ! grep -q "^Requires:.*$dep" $preamble; then
117                         dep=$(echo "$dep" | sed -e 's,php-pear-PEAR\b,php-pear-PEAR-core,')
118                         sed -i -e "/^BuildRoot/iRequires:\t$dep" $spec
119                 fi
120         done
121 fi
122
123 # parse conflicts
124 conflicts=$(grep '^Conflicts:' $template || :)
125 if [ -n "$conflicts" ]; then
126         echo "$conflicts" | while read tag dep; do
127                 dep=$(add_epoch $dep)
128                 if ! grep -q "^Conflicts:.*$req" $preamble; then
129                         sed -i -e "/^BuildRoot/iConflicts:\t$dep" $spec
130                 fi
131         done
132 fi
133
134 # parse optional deps
135 optional=$(grep '^Suggests:' $template || :)
136 if [ -n "$optional" ]; then
137         echo "$optional" | while read tag dep; do
138                 dep=$(add_epoch $dep)
139                 if ! grep -q "^Suggests:.*$dep" $preamble; then
140                         sed -i -e "/^BuildRoot/iSuggests:\t$dep" $spec
141                 fi
142
143                 for req in $dep; do
144                         case "$req" in
145                         php-pear-*)
146                                 # convert pear package name to file pattern
147                                 req=$(echo "$req" | sed -e 's,^php-pear-,pear(,;y,_,/,;s,$,.*),')
148                                 ;;
149                         *)
150                                 # process only php-pear-* packages
151                                 continue
152                                 ;;
153                         esac
154
155                         m=$(grep "^%define.*_noautoreq" $spec || :)
156                         if [ -z "$m" ]; then
157                                 sed -i -e "/^BuildRoot:/{
158                                         a
159                                         a# exclude optional dependencies
160                                         a%define\       \       _noautoreq\     $req
161                                 }
162                                 " $spec
163                         else
164                                 m=$(echo "$m" | grep -o "$req" || :)
165                                 if [ -z "$m" ]; then
166                                         sed -i -e "/^%define.*_noautoreq/s,$, $req," $spec
167                                 fi
168                         fi
169                 done
170         done
171 fi
172
173 optional=$(grep '^Optional-ext:' $template || :)
174 if [ -n "$optional" ]; then
175         tmp=$(mktemp "${TMPDIR:-/tmp}/fragXXXXXX")
176         echo "$optional" | while read tag ext; do
177                 grep -q "PHP extension .$ext" && continue
178                 cat > $tmp <<-EOF
179                 echo '%{name} can optionally use PHP extension "$ext"' >> optional-packages.txt
180                 EOF
181                 sed -i -e "
182                 /%pear_package_setup/ {
183                         r $tmp
184                 }
185                 " $spec
186         done
187         rm -f .ext.tmp
188 fi
189
190 has_opt=$(grep -Ec '^Optional-(pkg|ext):' $template || :)
191 if [ "$has_opt" -gt 0 ]; then
192         if ! grep -q 'rpmbuild(macros)' $spec; then
193                 sed -i -e '
194                 /rpm-php-pearprov/{
195                         aBuildRequires: rpmbuild(macros) >= 1.300
196                 }
197                 ' $spec
198         fi
199         if ! grep -Eq '%{_docdir}/.*/optional-packages.txt|%pear_package_print_optionalpackages' $spec; then
200                 sed -i -e '
201                 /^%files$/{
202                         i%post -p <lua>
203                         i%pear_package_print_optionalpackages
204                         i
205                 }
206                 /rpmbuild(macros)/{
207                         s/>=.*/>= 1.571/
208                 }
209                 ' $spec
210         fi
211         if ! grep -q '%doc.*optional-packages.txt' $spec; then
212                 sed -i -e '
213                 /^%doc install.log/{
214                 s/$/ optional-packages.txt/
215                 }
216                 ' $spec
217         fi
218 fi
219
220 # parse state
221 state=$(awk '/^State:/{print $2}' $template)
222 sed -i -e "/^%define.*_status/{
223         /%define.*_status.*$state/!s/.*/%define\t\t_status\t\t$state/
224 }" $spec
225
226 rm -f $preamble
227
228 diff=$(mktemp "${TMPDIR:-/tmp}/fragXXXXXX")
229 if ! diff -u $bak $spec > $diff; then
230         vim -o $spec $diff
231         rm -f $diff
232 else
233         echo "$spec: No diffs"
234 fi
This page took 0.041942 seconds and 4 git commands to generate.