]> git.pld-linux.org Git - packages/rpm-build-tools.git/blame - pldnotify.awk
More debug.
[packages/rpm-build-tools.git] / pldnotify.awk
CommitLineData
6fb3305d 1#!/bin/awk -f
d4089f30 2# $Revision$, $Date$
b52a0a12 3#
2675159e 4# Copyright (C) 2000-2010 PLD-Team <feedback@pld-linux.org>
b52a0a12
JB
5# Authors:
6# Sebastian Zagrodzki <zagrodzki@pld-linux.org>
7# Jacek Konieczny <jajcus@pld-linux.org>
8# Andrzej Krzysztofowicz <ankry@pld-linux.org>
9# Jakub Bogusz <qboosh@pld-linux.org>
10# Elan Ruusamäe <glen@pld-linux.org>
11#
12# See cvs log pldnotify.awk for list of contributors
13#
14# TODO:
15# - "SourceXDownload" support (use given URLs if present instead of cut-down SourceX URLs)
16# - "SourceXActiveFTP" support
3ca67c5b 17
2aba2068
SZ
18function fixedsub(s1,s2,t, ind) {
19# substitutes fixed strings (not regexps)
20 if (ind = index(t,s1)) {
21 t = substr(t, 1, ind-1) s2 substr(t, ind+length(s1))
22 }
23 return t
24}
6fb3305d 25
e3c5f324
JB
26function ispre(s) {
27 if ((s~"pre")||(s~"PRE")||(s~"beta")||(s~"BETA")||(s~"alpha")||(s~"ALPHA")||(s~"rc")||(s~"RC")) {
28 if (DEBUG) print "pre-version"
29 return 1
30 } else {
31 return 0
32 }
33}
f0c5c231 34
70a5e8d4
SZ
35function compare_ver(v1,v2) {
36# compares version numbers
37 while (match(v1,/[a-zA-Z][0-9]|[0-9][a-zA-Z]/))
38 v1=(substr(v1,1,RSTART) "." substr(v1,RSTART+RLENGTH-1))
39 while (match(v2,/[a-zA-Z][0-9]|[0-9][a-zA-Z]/))
40 v2=(substr(v2,1,RSTART) "." substr(v2,RSTART+RLENGTH-1))
41 sub("^0*","",v1)
42 sub("^0*","",v2)
e2ebf07c
JB
43 gsub("\.0*",".",v1)
44 gsub("\.0*",".",v2)
70a5e8d4
SZ
45 if (DEBUG) print "v1 == " v1
46 if (DEBUG) print "v2 == " v2
47 count=split(v1,v1a,"\.")
48 count2=split(v2,v2a,"\.")
f0c5c231
ER
49
50 if (count<count2) mincount=count
70a5e8d4 51 else mincount=count2
f0c5c231 52
70a5e8d4 53 for (i=1; i<=mincount; i++) {
db83adc3
SZ
54 if (v1a[i]=="") v1a[i]=0
55 if (v2a[i]=="") v2a[i]=0
70a5e8d4
SZ
56 if (DEBUG) print "i == " i
57 if (DEBUG) print "v1[i] == " v1a[i]
58 if (DEBUG) print "v2[i] == " v2a[i]
59 if ((v1a[i]~/[0-9]/)&&(v2a[i]~/[0-9]/)) {
60 if (length(v2a[i])>length(v1a[i]))
61 return 1
62 else if (v2a[i]>v1a[i])
63 return 1
64 else if (length(v1a[i])>length(v2a[i]))
65 return 0
66 else if (v1a[i]>v2a[i])
67 return 0
68 } else if ((v1a[i]~/[A-Za-z]/)&&(v2a[i]~/[A-Za-z]/)) {
69 if (v2a[i]>v1a[i])
70 return 1
71 else if (v1a[i]>v2a[i])
72 return 0
e3c5f324 73 } else if (ispre(v1a[i]) == 1)
70a5e8d4
SZ
74 return 1
75 else
76 return 0
77 }
78 if ((count2==mincount)&&(count!=count2)) {
79 for (i=count2+1; i<=count; i++)
e3c5f324 80 if (ispre(v1a[i]) == 1)
70a5e8d4
SZ
81 return 1
82 return 0
83 } else if (count!=count2) {
84 for (i=count+1; i<=count2; i++)
e3c5f324 85 if (ispre(v2a[i]) == 1)
70a5e8d4
SZ
86 return 0
87 return 1
88 }
db4f445e 89 return 0
70a5e8d4
SZ
90}
91
f11b5a76 92function compare_ver_dec(v1,v2) {
b8b1ac2a 93# compares version numbers as decimal floats
f11b5a76 94 while (match(v1,/[0-9][a-zA-Z]/))
95 v1=(substr(v1,1,RSTART) "." substr(v1,RSTART+RLENGTH-1))
96 while (match(v2,/[0-9][a-zA-Z]/))
97 v2=(substr(v2,1,RSTART) "." substr(v2,RSTART+RLENGTH-1))
98 sub("^0*","",v1)
99 sub("^0*","",v2)
100 if (DEBUG) print "v1 == " v1
101 if (DEBUG) print "v2 == " v2
102 count=split(v1,v1a,"\.")
103 count2=split(v2,v2a,"\.")
f0c5c231
ER
104
105 if (count<count2) mincount=count
f11b5a76 106 else mincount=count2
f0c5c231 107
f11b5a76 108 for (i=1; i<=mincount; i++) {
109 if (v1a[i]=="") v1a[i]=0
110 if (v2a[i]=="") v2a[i]=0
111 if (DEBUG) print "i == " i
112 if (DEBUG) print "v1[i] == " v1a[i]
113 if (DEBUG) print "v2[i] == " v2a[i]
114 if ((v1a[i]~/[0-9]/)&&(v2a[i]~/[0-9]/)) {
115 if (i==2) {
116 if (0+("." v2a[i])>0+("." v1a[i]))
117 return 1
118 else if (0+("." v1a[i])>0+("." v2a[i]))
119 return 0
120 } else {
121 if (length(v2a[i])>length(v1a[i]))
122 return 1
123 else if (v2a[i]>v1a[i])
124 return 1
125 else if (length(v1a[i])>length(v2a[i]))
126 return 0
127 else if (v1a[i]>v2a[i])
128 return 0
129 }
130 } else if ((v1a[i]~/[A-Za-z]/)&&(v2a[i]~/[A-Za-z]/)) {
131 if (v2a[i]>v1a[i])
132 return 1
133 else if (v1a[i]>v2a[i])
134 return 0
e3c5f324 135 } else if (ispre(v1a[i]) == 1)
f11b5a76 136 return 1
137 else
138 return 0
139 }
140 if ((count2==mincount)&&(count!=count2)) {
141 for (i=count2+1; i<=count; i++)
e3c5f324 142 if (ispre(v1a[i]) == 1)
f11b5a76 143 return 1
144 return 0
145 } else if (count!=count2) {
146 for (i=count+1; i<=count2; i++)
e3c5f324 147 if (ispre(v2a[i]) == 1)
f11b5a76 148 return 0
149 return 1
150 }
151 return 0
152}
153
371e7443
AM
154function link_seen(link) {
155 for (seenlink in frameseen) {
156 if (seenlink == link) {
157 if (DEBUG) print "Link: [" link "] seen already, skipping..."
158 return 1
159 }
160 }
161 frameseen[link]=1
162 return 0
163}
164
deed2eef
ER
165function mktemp( _cmd, _tmpfile) {
166 _cmd = "mktemp /tmp/XXXXXX"
167 _cmd | getline _tmpfile
168 close(_cmd)
169 return _tmpfile
170}
171
70a5e8d4 172# get all <A HREF=..> tags from specified URL
d5697af2 173function get_links(url,filename, errno,link,oneline,retval,odp,wholeodp,lowerodp,tmpfile,cmd) {
8fef61cd
AM
174
175 wholeerr=""
176
deed2eef
ER
177 tmpfile = mktemp()
178 tmpfileerr = mktemp()
8fef61cd 179
ea4c106c
ER
180 if (url ~ /^http:\/\/(download|dl).(sf|sourceforge).net\//) {
181 gsub("^http://(download|dl).(sf|sourceforge).net/", "", url)
d6aee61e
AM
182 gsub("/.*", "", url)
183 url = "http://sourceforge.net/projects/" url "/files/"
356ec898
ER
184 if (DEBUG) print "sf url, mungled url to: " url
185 }
f0c5c231 186
109ec22a 187 if (url ~ /^http:\/\/(.*)\.googlecode\.com\/files\//) {
3836b919
AM
188 gsub("^http://", "", url)
189 gsub("\..*", "", url)
b3df8960 190 url = "http://code.google.com/p/" url "/downloads/list"
3836b919
AM
191 if (DEBUG) print "googlecode url, mungled url to: " url
192 }
193
0ed4cd23
AM
194 if (url ~ /^http:\/\/pecl.php.net\/get\//) {
195 gsub("-.*", "", filename)
196 url = "http://pecl.php.net/package/" filename
197 if (DEBUG) print "pecl.php.net url, mungled url to: " url
198 }
199
fbf290ff
AM
200 if (url ~ /^(http|ftp):\/\/mysql.*\/Downloads\/MySQL-5.1\//) {
201 url = "http://dev.mysql.com/downloads/mysql/5.1.html#source"
202 if (DEBUG) print "mysql 5.1 url, mungled url to: " url
203 }
204
eb6fb288
AM
205 if (url ~/^(http|https):\/\/launchpad\.net\/(.*)\//) {
206 gsub("^(http|https):\/\/launchpad\.net\/", "", url)
207 gsub("\/.*/", "", url)
208 url = "https://code.launchpad.net/" url "/+download"
209 if (DEBUG) print "main launchpad url, mungled url to: " url
210 }
211
212 if (url ~/^(http|https):\/\/edge\.launchpad\.net\/(.*)\//) {
213 gsub("^(http|https):\/\/edge\.launchpad\.net\/", "", url)
214 gsub("\/.*/", "", url)
215 url = "https://edge.launchpad.net/" url "/+download"
216 if (DEBUG) print "edge launchpad url, mungled url to: " url
217 }
218
fbf290ff 219
2e301ef5 220 if (DEBUG) print "Retrieving: " url
b1bb9185 221 cmd = "wget --user-agent \"Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2) Gecko/20100129 PLD/3.0 (Th) Iceweasel/3.6\" -nv -O - \"" url "\" -t 2 -T 45 --passive-ftp --no-check-certificate > " tmpfile " 2> " tmpfileerr
d5697af2
ER
222 if (DEBUG) print "Execute: " cmd
223 errno = system(cmd)
2675159e 224 if (DEBUG) print "Execute done"
f0c5c231 225
3f63995d 226 if (errno==0) {
2675159e
AM
227 wholeodp = ""
228 if ( DEBUG ) print "Reading succeess response..."
7f460828 229 while (getline oneline < tmpfile)
fc589c7e 230 wholeodp=(wholeodp " " oneline)
2675159e 231 printf ""
fc589c7e 232 if ( DEBUG ) print "Response: " wholeodp
8fef61cd 233 } else {
2675159e 234 if ( DEBUG ) print "Reading failure response..."
8fef61cd
AM
235 wholeerr = ""
236 while (getline oneline < tmpfileerr)
237 wholeerr=(wholeerr " " oneline)
238 if ( DEBUG ) print "Error Response: " wholeerr
70a5e8d4 239 }
f0c5c231 240
2e301ef5 241 system("rm -f " tmpfile)
8fef61cd
AM
242 system("rm -f " tmpfileerr)
243
55658186
JB
244 urldir=url;
245 sub(/[^\/]+$/,"",urldir)
fc589c7e 246
3f63995d 247 if ( errno==0) {
fc589c7e 248 while (match(wholeodp, /<([aA]|[fF][rR][aA][mM][eE])[ \t][^>]*>/) > 0) {
2675159e 249 if (DEBUG) print "Processing links..."
fc589c7e
JB
250 odp=substr(wholeodp,RSTART,RLENGTH);
251 wholeodp=substr(wholeodp,RSTART+RLENGTH);
252
253 lowerodp=tolower(odp);
254 if (lowerodp ~ /<frame[ \t]/) {
255 sub(/[sS][rR][cC]=[ \t]*/,"src=",odp);
256 match(odp,/src="[^"]+"/)
257 newurl=substr(odp,RSTART+5,RLENGTH-6)
157aa7fc 258 if (DEBUG) print "Frame: " newurl
55658186
JB
259 if (newurl !~ /\//) {
260 newurl=(urldir newurl)
157aa7fc 261 if (DEBUG) print "Frame->: " newurl
55658186 262 }
371e7443
AM
263
264 if (link_seen(newurl)) {
265 newurl=""
266 continue
267 }
268
2e301ef5 269 retval=(retval " " get_links(newurl))
fc589c7e 270 } else if (lowerodp ~ /href=[ \t]*"[^"]*"/) {
b5e77f8f 271 sub(/[hH][rR][eE][fF]=[ \t]*"/,"href=\"",odp)
95fcfc77 272 match(odp,/href="[^"]*"/)
b5e77f8f
JB
273 link=substr(odp,RSTART,RLENGTH)
274 odp=substr(odp,1,RSTART) substr(odp,RSTART+RLENGTH)
275 link=substr(link,7,length(link)-7)
371e7443
AM
276
277 if (link_seen(link)) {
278 link=""
279 continue
280 }
281
b5e77f8f 282 retval=(retval " " link)
95fcfc77 283 if (DEBUG) print "href(\"\"): " link
fc589c7e 284 } else if (lowerodp ~ /href=[ \t]*'[^']*'/) {
b5e77f8f 285 sub(/[hH][rR][eE][fF]=[ \t]*'/,"href='",odp)
95fcfc77 286 match(odp,/href='[^']*'/)
93c3b403 287 link=substr(odp,RSTART,RLENGTH)
b5e77f8f 288 odp=substr(odp,1,RSTART) substr(odp,RSTART+RLENGTH)
93c3b403 289 link=substr(link,7,length(link)-7)
371e7443
AM
290
291 if (link_seen(link)) {
292 link=""
293 continue
294 }
295
93c3b403 296 retval=(retval " " link)
95fcfc77 297 if (DEBUG) print "href(''): " link
fc589c7e 298 } else if (lowerodp ~ /href=[ \t]*[^ \t>]*/) {
4dde5541 299 sub(/[hH][rR][eE][fF]=[ \t]*/,"href=",odp)
95fcfc77 300 match(odp,/href=[^ \t>]*/)
8dfac79d 301 link=substr(odp,RSTART,RLENGTH)
b5e77f8f 302 odp=substr(odp,1,RSTART) substr(odp,RSTART+RLENGTH)
8dfac79d 303 link=substr(link,6,length(link)-5)
371e7443
AM
304
305 if (link_seen(link)) {
306 link=""
307 continue
308 }
309
8dfac79d 310 retval=(retval " " link)
95fcfc77 311 if (DEBUG) print "href(): " link
6f57d45d 312 } else {
fc589c7e
JB
313 # <a ...> but not href - skip
314 if (DEBUG) print "skipping <a > without href: " odp
93c3b403 315 }
3f63995d
SZ
316 }
317 } else {
8fef61cd 318 retval=("WGET ERROR: " errno ": " wholeerr)
3f63995d 319 }
f0c5c231
ER
320
321
157aa7fc 322 if (DEBUG) print "Returning: " retval
db4f445e 323 return retval
70a5e8d4
SZ
324}
325
6fb3305d 326function subst_defines(var,defs) {
3255b4c7 327# substitute all possible RPM macros
6fb3305d
SZ
328 while ((var ~ /%{.*}/) || (var ~ /%[A-Za-z0-9_]+/)) {
329 oldvar=var
330 for (j in defs) {
331 gsub("%{" j "}", defs[j], var)
332 gsub("%" j , defs[j], var)
333 }
334 if (var==oldvar) {
335 if ( DEBUG ) for (i in defs) print i " == " defs[i]
336 return var
337 }
338 }
339 return var
340}
341
c0bee1bc
JK
342function find_mirror(url) {
343
c54fbfc1
MK
344 while (succ = (getline line < "mirrors")) {
345 if (succ==-1) { return url }
c0bee1bc 346 nf=split(line,fields,"|")
a6f2cc98 347 if (nf>1){
c0bee1bc
JK
348 origin=fields[1]
349 mirror=fields[2]
350 mname=fields[3]
351 prefix=substr(url,1,length(origin))
352 if (prefix==origin){
157aa7fc 353 if ( DEBUG ) print "Mirror fount at " mname
c0bee1bc 354 close("mirrors")
21b99dbc 355 return mirror substr(url,length(origin)+1)
c0bee1bc
JK
356 }
357 }
358 }
359
360 return url
361}
362
32aede2f 363function process_source(number,lurl,name,version) {
3255b4c7 364# fetches file list, and compares version numbers
157aa7fc 365 if ( DEBUG ) print "Processing " lurl
3f63995d
SZ
366
367 if ( index(lurl,version)==0 ) {
157aa7fc 368 if (DEBUG) print "There is no version number."
3f63995d
SZ
369 return 0
370 }
371
6fb3305d
SZ
372 sub("://",":",lurl)
373 sub("/",":/",lurl)
374 gsub("[^/]*$",":&",lurl)
375 split(lurl,url,":")
376 acc=url[1]
377 host=url[2]
378 dir=url[3]
70a5e8d4
SZ
379 filename=url[4]
380
3f63995d 381 if (index(dir,version)) {
70a5e8d4
SZ
382 dir=substr(dir,1,index(dir,version)-1)
383 sub("[^/]*$","",dir)
384 sub("(\.tar\.(bz|bz2|gz)|zip)$","",filename)
157aa7fc
AM
385 if ( DEBUG ) print "Will check a directory: " dir
386 if ( DEBUG ) print "and a file: " filename
70a5e8d4 387 }
3f63995d 388
70a5e8d4
SZ
389 filenameexp=filename
390 gsub("\+","\\+",filenameexp)
0269da83 391 sub(version,"[A-Za-z0-9.]+",filenameexp)
e12bdf15 392 gsub("\.","\\.",filenameexp)
157aa7fc 393 if ( DEBUG ) print "Expression: " filenameexp
70a5e8d4
SZ
394 match(filename,version)
395 prever=substr(filename,1,RSTART-1)
396 postver=substr(filename,RSTART+RLENGTH)
157aa7fc
AM
397 if ( DEBUG ) print "Before number: " prever
398 if ( DEBUG ) print "and after: " postver
f0c5c231 399 newurl=find_mirror(acc "://" host dir)
c54fbfc1
MK
400 #print acc "://" host dir
401 #newurl=url[1]"://"url[2]url[3]url[4]
402 #newurl=acc "://" host dir filename
f0c5c231
ER
403 if ( DEBUG ) print "Looking at " newurl
404
6fb3305d 405 references=0
db83adc3 406 finished=0
db4f445e 407 oldversion=version
0ed4cd23 408 odp=get_links(newurl,filename)
3f63995d
SZ
409 if( odp ~ "ERROR: ") {
410 print name "(" number ") " odp
188dc51f 411 } else {
157aa7fc 412 if (DEBUG) print "WebPage downloaded"
188dc51f
SZ
413 c=split(odp,linki)
414 for (nr=1; nr<=c; nr++) {
415 addr=linki[nr]
157aa7fc 416 if (DEBUG) print "Found link: " addr
3c68e899 417 if ((addr ~ filenameexp) && !(addr ~ "[-_.0-9A-Za-z~]" filenameexp)) {
188dc51f
SZ
418 match(addr,filenameexp)
419 newfilename=substr(addr,RSTART,RLENGTH)
eae5334c 420 if (DEBUG) print "Hypothetical new: " newfilename
2aba2068
SZ
421 newfilename=fixedsub(prever,"",newfilename)
422 newfilename=fixedsub(postver,"",newfilename)
157aa7fc 423 if (DEBUG) print "Version: " newfilename
eb6fb288 424 if (newfilename ~ /\.(asc|sig|pkg|bin|binary|built)$/) continue
f11b5a76 425 if (NUMERIC) {
426 if ( compare_ver_dec(version, newfilename)==1 ) {
157aa7fc 427 if (DEBUG) print "Yes, there is new one"
f11b5a76 428 version=newfilename
429 finished=1
430 }
431 } else if ( compare_ver(version, newfilename)==1 ) {
157aa7fc 432 if (DEBUG) print "Yes, there is new one"
188dc51f
SZ
433 version=newfilename
434 finished=1
435 }
70a5e8d4 436 }
6fb3305d 437 }
188dc51f 438 if (finished==0)
f1b8a975 439 print name "(" number ") seems ok: " oldversion
188dc51f
SZ
440 else
441 print name "(" number ") [OLD] " oldversion " [NEW] " version
6fb3305d
SZ
442 }
443}
eae5334c
ER
444
445# upgrade check for pear package using PEAR CLI
446function pear_upgrade(name, ver) {
447 pname = name;
448 sub(/^php-pear-/, "", pname);
449
450 pearcmd = "pear remote-info " pname " | awk '/^Latest/{print $NF}'"
451 if (DEBUG) {
452 print "pearcmd: " pearcmd
453 }
454 pearcmd | getline nver
455 close(pearcmd)
456
457 if (compare_ver(ver, nver)) {
458 print name " [OLD] " ver " [NEW] " nver
459 } else {
460 print name " seems ok: " ver
461 }
462
463 return
464}
f0c5c231 465
3255b4c7 466function process_data(name,ver,rel,src) {
eae5334c
ER
467 if (name ~ /^php-pear-/) {
468 return pear_upgrade(name, ver);
469 }
470
3255b4c7
SZ
471# this function checks if substitutions were valid, and if true:
472# processes each URL and tries to get current file list
6fb3305d 473 for (i in src) {
254a5f0b
AM
474 if ( src[i] ~ /%{nil}/ ) {
475 gsub(/\%\{nil\}/, "", src[i])
476 }
6fb3305d 477 if ( src[i] !~ /%{.*}/ && src[i] !~ /%[A-Za-z0-9_]/ ) {
157aa7fc 478 if ( DEBUG ) print "Source: " src[i]
32aede2f 479 process_source(i,src[i],name,ver)
6fb3305d 480 } else {
c4a1f100 481 print FNAME ":" i ": impossible substitution: " src[i]
6fb3305d
SZ
482 }
483 }
484}
485
486BEGIN {
487 # if U want to use DEBUG, run script with "-v DEBUG=1"
488 # or uncomment the line below
70a5e8d4 489 # DEBUG = 1
2e301ef5
SZ
490
491 errno=system("wget --help > /dev/null 2>&1")
492 if (errno) {
493 print "No wget installed!"
494 exit 1
495 }
f11b5a76 496 if (ARGC>=3 && ARGV[2]=="-n") {
497 NUMERIC=1
f0c5c231 498 for (i=3; i<ARGC; i++) ARGV[i-1]=ARGV[i]
f11b5a76 499 ARGC=ARGC-1
500 }
6fb3305d
SZ
501}
502
503FNR==1 {
504 if ( ARGIND != 1 ) {
6aab34d4
AM
505 # clean frameseen for each ARG
506 for (i in frameseen) {
507 delete frameseen[i]
508 }
509 frameseen[0] = 1
510
3255b4c7 511 process_data(NAME,VER,REL,SRC)
6fb3305d
SZ
512 NAME="" ; VER="" ; REL=""
513 for (i in DEFS) delete DEFS[i]
514 for (i in SRC) delete SRC[i]
515 }
516 FNAME=FILENAME
f6c65bb7 517 DEFS["_alt_kernel"]=""
892e6dad 518 DEFS["20"]="\\ "
6fb3305d
SZ
519}
520
3255b4c7 521/^[Uu][Rr][Ll]:/&&(URL=="") { URL=subst_defines($2,DEFS) ; DEFS["url"]=URL }
6fb3305d
SZ
522/^[Nn]ame:/&&(NAME=="") { NAME=subst_defines($2,DEFS) ; DEFS["name"]=NAME }
523/^[Vv]ersion:/&&(VER=="") { VER=subst_defines($2,DEFS) ; DEFS["version"]=VER }
524/^[Rr]elease:/&&(REL=="") { REL=subst_defines($2,DEFS) ; DEFS["release"]=REL }
a10d5bbe 525/^[Ss]ource[0-9]*:/ { if (/(ftp|http|https):\/\//) SRC[FNR]=subst_defines($2,DEFS) }
6fb3305d
SZ
526/%define/ { DEFS[$2]=subst_defines($3,DEFS) }
527
528END {
3255b4c7 529 process_data(NAME,VER,REL,SRC)
6fb3305d 530}
This page took 0.175015 seconds and 4 git commands to generate.