File: old-list-packages

package info (click to toggle)
pcp 7.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 253,896 kB
  • sloc: ansic: 1,488,097; sh: 185,322; xml: 160,462; cpp: 83,813; python: 25,576; perl: 18,365; yacc: 6,877; lex: 2,864; makefile: 2,759; exp: 250; awk: 165; fortran: 60; java: 22
file content (1482 lines) | stat: -rwxr-xr-x 32,973 bytes parent folder | download
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
#!/bin/sh
#
# Check what's installed on a PCP/PCPQA VM looking for missing apps
# and packages
#
# Note:
# 	This is the OLD version using the other-packages dir ...
# 	list-packages is the NEW version that should be used.
#

_usage()
{
    echo "Usage: $0 [options]"
    echo "  -a           (all) ignore packages already installed"
    echo "  -b           base package set, skip the N/A and optional ones"
    echo "  -f           force, don't try to guess the version of Python, Qt, ..."
    echo "  -M           do not list the meta-package alternatives (cpan, perl, pip3)"
    echo "  -m manifest  use alternative manifest file"
    echo "  -o otherdir  use alternative other-packages directory"
    echo "  -p           generate list of likely packages that should be"
    echo "               installed with dnf or apt-get or yum or ..."
    echo "  -P           same as -p, but emit shell commands for installer"
    echo "  -r require   use alternative require file"
    echo "  -s skip      use alternative skip file"
    echo "  -S skipbase  use alternative basename for skipbase.<hostname> files"
    echo "  -u unavail   use alternative unavailable file"
    echo "  -v           verbose (debugging)"
    exit 1
}

# version1 is on line 1
# version2 is on line 2
# relop is "<", "<=", "=", ">=" or ">"
# return value is 0 (true) if version1 relop version2 is true
# else return value is 1
#
_compare()
{
    relop="$1"
    awk -F. >$tmp.compare '
NR == 1	{ for (i = 1; i <= NF; i++)
	    v[i] = $i
	  nv = NF
	  next
	}
NR == 2	{ nf = NF
	  if (nv > nf) nf = nv
	  for (i = 1; i <= nf; i++) {
	    if (v[i]+0 == $i+0) continue
	    if (v[i]+0 < $i+0) {
		print "<"
		exit
	    }
	    if (v[i]+0 > $i+0) {
		print ">"
		exit
	    }
	  }
	  print "="
	}'
    ret=1
    case `cat $tmp.compare`
    in
	"<")
	    [ "$relop" = "<" -o "$relop" = "<=" ] && ret=0
	    ;;
	"=")
	    [ "$relop" = "=" -o "$relop" = "<=" -o "$relop" = ">=" ] && ret=0
	    ;;
	">")
	    [ "$relop" = ">" -o "$relop" = ">=" ] && ret=0
	    ;;
	*)
	    echo "Arrgh ... installed version $version, want $relop $specversion,"
	    echo "but failed to extract relop (`cat $tmp.compare`)"
	    ;;
    esac
    return $ret
}

# create $tmp.allpkgs if we know how to do that ...
#
_build_allpkgs()
{
    case "$distro"
    in
    Ubuntu|Debian|LinuxMint|MX)
	apt-cache dumpavail | sed -n -e '/^Package: /s///p' >$tmp.allpkgs
	;;

    RHEL|Fedora|CentOS|openSUSE|SUSE\ SLES)
	if which zypper >/dev/null 2>&1
	then
	    : TODO
	elif which dnf >/dev/null 2>&1
	then
	    ( dnf list available; dnf list installed ) 2>&1 \
	    | sed >$tmp.allpkgs \
		-e '1,/^[^ ]* Packages/d' \
		-e 's/ .*//' \
		-e 's/\.[^.]*$//' \
	    # end
	elif which yum >/dev/null 2>&1
	then
	    ( yum list available; yum list installed ) 2>&1 \
	    | sed >$tmp.allpkgs \
		-e '1,/^[^ ]* Packages/d' \
		-e 's/ .*//' \
		-e 's/\.[^.]*$//' \
	    # end
	fi
	;;

    NetBSD)
	# TODO
	;;

    FreeBSD)
	# TODO
	;;

    OpenBSD)
	# expect lines like this ...
	# <tr>...<a href="libsysstat-0.4.1p1.tgz">libsysstat-0.4.1p1.tgz</a>...
	#
	url="`cat /etc/installurl`/`uname -r`/packages/`uname -m`/"
	$verbose && echo >&2 "Fetching list of available packages from $url ..."
	curl -s $url \
	| sed -n >$tmp.allpkgs \
	    -e '/a href=".*tgz">/{
s/\.tgz<\/a>.*/.tgz/
s/.*>//
s/-[0-9].*//
p
}'
	;;

    Gentoo)
	# TODO
	;;

    Darwin)
	# TODO
	;;

    OpenIndiana)
	# TODO
	;;

    Slackware)
	# lines after awk look like ...
	# ./aspell-word-lists/aspell-cs-20040614_1-x86_64-5.txz
	# ./n/openldap-client-2.4.42-x86_64-1.txz
	#
	for f in /var/lib/slackpkg/slackware64-filelist.gz \
		 /var/lib/slackpkg/extra-filelist.gz
	do
	    [ -f "$f" ] || continue
	    zcat "$f" \
	    | $PCP_AWK_PROG '{ print $1 }' \
	    | sed \
		-e 's/\-[0-9].*//' \
		-e 's;.*/;;' \
	    # end
	done >$tmp.allpkgs
	;;

    ArchLinux)
	pacman -Ss . \
	| sed -n >$tmp.allpkgs -e '/^[^ ]/s/ .*//p'
	;;

    esac
}

# need to be careful ... $1 uses an extended regexp notation where
# things we want to match as regexps are enclosed in {...} but regexp
# characters like ., [ and * elsewhere needed to be treated as literals
# and then we have to do word-bounded matching so something like
# foo.{.*} matches foo.bar only from the line
# ... [ ... foo.bar ... foolbar ... blah.something ... ]
#
_safe_pattern()
{
    echo "$1" \
    | $PCP_AWK_PROG '
	{ len = length($0)
	  out = ""
	  inregexp = 0
	  for (i = 1; i <= len; i++) {
	    c = substr($0, i, 1)
	    if (inregexp == 0 && c == "{") {
		inregexp = 1
		continue
	    }
	    if (inregexp == 1 && c == "}") {
		inregexp = 0
		continue
	    }
	    if (inregexp == 0) {
		# not in { ... } so need to escape grep/sed regexp specials
		if (c == "[" || c == "*" || c == ".") {
		    if (out == "")
			out = "\\"
		    else
			out = out "\\"
		}
	    }
	    if (inregexp == 1) {
		if (c == ".") {
		    # . here needs to match a non-space character to avoid
		    # matching more than one word and not consume the ]
		    # at the end the list of packages from the the manifest
		    # line
		    if (out == "")
			out = "[^] ]"
		    else
			out = out "[^] ]"
		    continue
		}
	    }
	    if (out == "")
		out = c
	    else
		out = out c
	  }
	  print out
	}'
}

# for some virgin installs, cmp(1) may not be there (yet), so this is
# an attempt to resolve that issue ... we are only interested in a binary
# outcome, namely if the two files ($1 and $2) are the same, return 0
# else return 1
#
# try in order: cmp, diff, sum, stat (only size can be compared)
#
_cmp()
{
    sts=1
    if which cmp >/dev/null 2>&1
    then
	cmp "$1" "$2" >/dev/null 2>&1 && sts=0
    elif which diff >/dev/null 2>&1
    then
	diff "$1" "$2" >/dev/null 2>&1 && sts=0
    elif which sum >/dev/null 2>&1
    then
	[ "`sum <"$1"`" = "`sum <"$2"`" ] && sts=0
    elif which stat >/dev/null 2>&1
    then
	s1=`stat "$1" | sed -n -e '/^ *Size:/{
s/^ *Size: *//
s/ .*//p
}'`
	s2=`stat "$2" | sed -n -e '/^ *Size:/{
s/^ *Size: *//
s/ .*//p
}'`
	[ "$s1" = "$s2" ] && sts=0
    fi
    return $sts
}

# Usage: _cull_from_manifest pkg msg
# if [...] is empty afterwards, replace [] by [msg]
# reads $tmp.manifest, writes $tmp.culled
#
_cull_from_manifest()
{
    _pkg="$1"
    _msg="`echo $2 | sed -e 's;/;\\\\/;g'`"
    _pkg_pat=`_safe_pattern "$_pkg"`
    sed <$tmp.manifest >$tmp.culled -e "/[[ ]$_pkg_pat[] ]/"'{
s/\([[ ]\)'"$_pkg_pat"'\([] (]\)/\1\2/g
s/\[  */[/
s/\[or  */[/
s/  *]/]/
s/  *or *]/]/
s/  *or *(/ (/
s/  *or  *or  */ or /
s/\[ *or *]/[]/
s/\[]/['"$_msg"']/
s/\[([^)]*)]/['"$_msg"']/
}'
    if $very_verbose
    then
	echo "Culling $_pkg ($_pkg_pat)"
	if _cmp $tmp.manifest $tmp.culled >/dev/null
	then
	    : no diffs
	else
	    diff $tmp.manifest $tmp.culled
	fi
    fi
}

# Networking goo
#
_check_host()
{
    ipaddr=`sed -n </etc/hosts -e '/^#/d' -e '/::/d' -e 's/$/ /' -e "/[ 	]$1[ 	]/"'{
s/[ 	].*//
p
}'`
    if [ -z "$ipaddr" ]
    then
	echo "No /etc/hosts entry for $1"
	return
    fi

    if [ `echo "$ipaddr" | wc -l | sed -e 's/  *//g'` -gt 1 ]
    then
	echo "Multiple /etc/hosts entries for $1"
	return
    fi

    rm -f $tmp.tmp
    if `which ifconfig >/dev/null 2>&1`
    then
	# ifconfig lines of interest look like
	# br0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        #	inet 192.168.1.100  netmask 255.255.255.0  broadcast 192.168.1.255
        # ...
	# lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
	#	inet 127.0.0.1  netmask 255.0.0.0
	#
	ifconfig >$tmp.tmp
    elif `which ip >/dev/null 2>&1`
    then
	ip -f inet address >$tmp.tmp
	# ip lines of interest look like
	# 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc ...
	#     inet 127.0.0.1/8 scope host lo
	#     ...
	# 4: br0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc ...
	#     inet 192.168.1.100/24 brd 192.168.1.255 scope global br0
	#     ...
    else
	echo >&2 "Neither ifconfig(1) nor ip(1)? Not sure how to get primary ip addr"
	return
    fi
    sed <$tmp.tmp \
	-e 's/^[0-9][0-9]*: //' \
	-e 's/: / /g' \
	-e '/ inet /s/\/.*/ /' \
    | awk >&2 '
/^[^ 	]/	{ iface = $1; next }
/inet addr:'$ipaddr' / || /inet '$ipaddr'[ \/]/ {
			  if (iface == "lo")
			    print "Warning: '$1' associated with loopback network interface"
			  found = 1
			  exit
			}
END		{ if (found != 1)
		    print "Warning: '$1' ('$ipaddr') not associated with a network interface"
		}'
}

#
# --- MAINLINE ---
#

LC_COLLATE=POSIX; export LC_COLLATE

if [ -f /etc/pcp.conf ]
then
    . /etc/pcp.conf
else
    # punt
    #
    case `uname`
    in
	Darwin|*BSD)
	    PCP_ECHO_PROG=echo
	    PCP_ECHO_N=
	    PCP_ECHO_C='\c'
	    ;;
	*)
	    PCP_ECHO_PROG=echo
	    PCP_ECHO_N=-n
	    PCP_ECHO_C=
	    ;;
    esac
fi

# Need directory where this script is located so we can find the other
# scripts and control files
#
home=`echo $0 | sed -e 's/\/*old-list-packages$//'`
if [ ! -f $home/whatami ]
then
    echo >&2 "Botch: \$0=$0 -> bad \$home=$home ?"
    exit 1
fi

if [ ! -f $home/packages.rc ]
then
    echo >&2 "Botch: cannot find $home/packages.rc"
    exit
fi

. $home/packages.rc

_setversions
# $distro, $version and $arch now set

all=false
basic=false
force=false
pkglist=false
pkgcmd=false
verbose=false
very_verbose=false
check_manifest=false
check_manifest_args=''
manifest="$home"/other-packages/manifest		# default, see -m
otherdir=other-packages					# default, see -o
require="$home"/other-packages/require			# default, see -r
skip="$home"/other-packages/skip			# default, see -s
skipbase="$home"/other-packages/skip			# default, see -S
unavailable="$home"/other-packages/unavailable		# default, see -u
include_meta=true
while getopts 'abcfm:Mo:pPr:s:S:u:v?' p
do
    case "$p"
    in
	a)
		all=true
		;;

	b)
		basic=true
		;;

	c)	# exec check-manifest when manifest has been build
		# ... expert only, so not even mentioned in Usage
		#
		check_manifest=true
		;;

	f)
		force=true
		;;

	M)	include_meta=false
		;;

	m)	# alternate manifest
		manifest="$OPTARG"
		;;

	o)	# alternate other-packages directory
		otherdir="$OPTARG"
		;;

	p)	# just list most likely package for yum, dnf, apt-get, ...
		pkglist=true
		;;

	P)	# same as -P but emit shell commands for installer
		pkgcmd=true
		pkglist=true
		;;

	r)	# alternate require
		require="$OPTARG"
		;;

	s)	# alternate skip
		skip="$OPTARG"
		;;

	S)	# alternate skip basename
		skipbase="$OPTARG"
		;;

	u)	# alternate unavailable
		unavailable="$OPTARG"
		;;

	v)	if $verbose
		then
		    very_verbose=true
		else
		    verbose=true
		fi
		check_manifest_args="$check_manifest_args -v"
		;;

	?)	_usage
		# NOTREACHED
    esac
done
shift `expr $OPTIND - 1`
[ $# -eq 0 ] || _usage

if $very_verbose
then
    tmp=tmp
else
    tmp=${TMPDIR:-/tmp}/old-list-packages-$$
    trap "rm -f $tmp.*; exit 0" 0 1 2 3 15
fi
rm -f $tmp.*

if [ -f /etc/pcp.conf ]
then
    . /etc/pcp.conf
else
    # punt!
    #
    if which gawk >/dev/null 2>&1
    then
	PCP_AWK_PROG=gawk
    else
	PCP_AWK_PROG=awk
    fi
fi

# add additional and optional directories
for dir in /sbin /usr/sbin
do
    if [ -d "$dir" ]
    then
	if echo ":$PATH:" | grep -q ":$dir:"
	then
	    :
	else
	    PATH="$PATH:$dir"; export PATH
	    #debug# echo add $dir to \$PATH
	fi
    fi
done

if [ ! -f "$manifest" ]
then
    echo 2>&1 "Botch: cannot find manifest: $manifest"
    exit 1
fi
if [ ! -f "$require" ]
then
    echo 2>&1 "Botch: cannot find require: $require"
    exit 1
fi
if [ ! -f "$unavailable" ]
then
    echo 2>&1 "Botch: cannot find unavailable: $unavailable"
    exit 1
fi
if [ ! -f "$skip" ]
then
    echo 2>&1 "Botch: cannot find skip: $skip"
    exit 1
fi

# Packaging types we know about.
#	dpkg - Debian-based
#	rpm - RPM-based, e.g. RHEL, CentOS, SuSE, Fedora
#	emerge - Gentoo
#	pkgin - NetBSD
#	pkg_add - OpenBSD
#	F_pkg - pkg(1) on FreeBSD
#	S_pkg - pkg(1) on OpenIndiana
#	slackpkg - Slackware
#	pacman - Arch Linux
#	brew - macOS
#
# later on we will select EXACTLY one of the $pkgtypes to be $mytype
#
pkgtypes="dpkg rpm emerge pkgin pkg_add F_pkg S_pkg slackpkg pacman brew"

# Base on platform info, select the packaging type that applies and generate the
# list of currently installed packages in $tmp.installed
#
mytype=''
installcmd=''
rm -f $tmp.installed
case "$distro"
in
    Ubuntu|Debian|LinuxMint|MX)
	mytype=dpkg
	installcmd="apt install"
	# just ones like
	# xterm install ok installed
	# and skip ones like
	# zfsutils-linux deinstall ok config-files
	#
	dpkg-query -W -f '${package} ${status}\n' \
	| sed -n -e '/ installed$/s/ .*//p' >$tmp.installed
	;;

    RHEL|Fedora|CentOS|openSUSE|SUSE\ SLES|OpenMandriva)
	mytype=rpm
	if which zypper >/dev/null 2>&1
	then
	    installcmd="zypper install"
	elif which dnf >/dev/null 2>&1
	then
	    installcmd="dnf install"
	elif which yum >/dev/null 2>&1
	then
	    installcmd="yum install"
	fi
	rpm -qa --qf '%{NAME}\n' >$tmp.installed
	;;

    Gentoo)
	mytype=emerge
	installcmd="emerge --ask"
	equery list '*' | sed -e 's/.*].*] //' -e 's/-[0-9].*//' >$tmp.installed
	;;

    NetBSD)
	mytype=pkgin
	installcmd="pkgin -y install"
	pkgin list | sed -e 's/-[0-9].*//' >$tmp.installed
	;;

    OpenBSD)
	mytype=pkg_add
	installcmd="pkg_add"
	pkg_info -a | sed -e 's/-[0-9].*//' >$tmp.installed
	;;

    FreeBSD)
	mytype=F_pkg
	installcmd="pkg install"
	pkg info -a | sed -e 's/-[0-9].*//' >$tmp.installed
	;;

    OpenIndiana)
	mytype=S_pkg
	installcmd="pkg install"
	pkg list -H | sed -e 's/ .*//' >$tmp.installed
	;;

    Slackware)
	mytype=slackpkg
	installcmd="slackpkg install"
	ls /var/log/packages | sed -e 's/-[0-9].*//' >$tmp.installed
	;;

    ArchLinux)
	mytype=pacman
	installcmd="pacman -S"
	pacman -Q -i | sed -n -e '/^Name /s/.* : //p' >$tmp.installed
	;;

    Darwin)
	mytype=brew
	installcmd="brew install"
	brew list --formulae -1 >$tmp.installed
	;;

esac
if [ -z "$mytype" ]
then
    echo 2>&1 "$0: Botch: don't recognize mytype for: $distro"
    exit
fi
if [ -z "$installcmd" ]
then
    echo 2>&1 "$0: Botch: don't recognize installcmd for: $distro"
    exit
fi
if [ ! -f $tmp.installed ]
then
    echo 2>&1 "$0: Botch: can't generate tmp.installed for: $distro"
    exit
fi

# Distros we know about (or more specifically ones with the same 
# packaging tools but different package names).
#
#	debian		Debian, Ubuntu, LinuxMint, ...
#	redhat		RedHat or Fedora
#	centos		CentOS
#	suse		SLES or OpenSuSE
#	arch		Arch Linux
#	mandriva	OpenMandriva
#	freebsd		FreeBSD
#	netbsd		NetBSD
#	openbsd		OpenBSD
#
tags="debian redhat centos suse arch mandriva freebsd netbsd openbsd"

# Append original line numbers for non-blank lines in the manifest.
# Also rewrite [? ...] (package unknown) to [?:<original line number> ...]
# for easier mapping back to the manifest file.
#
$PCP_AWK_PROG 'NF > 0 { gsub("\\[\\?", "[?:" NR); print $0 " :" NR }' <$manifest >$tmp.manifest

if which $PCP_PYTHON_PROG >/dev/null 2>&1
then
    # For python-ctypes, check for python before 2.5 ... expect something like
    # Python 2.7.3
    eval `$PCP_PYTHON_PROG -V 2>&1 | sed -e 's/Python //' -e 's/^/maj=/' -e 's/\./ min=/' -e 's/\..*//'`
    if [ -n "$maj" -a -n "$min" ]
    then
	rm -f $tmp.need
	if [ "$maj" -lt 2 ]
	then
	    touch $tmp.need
	elif [ "$maj" -eq 2 -a "$min" -lt 5 ]
	then
	    touch $tmp.need
	fi
	[ -f $tmp.need ] && \
	    echo "rpm?	/usr/share/doc/python-ctypes*	[python-ctypes]" >>$tmp.manifest
    fi
fi

# Strip the packaging-dependent lines that do not apply ...
# this is an optimization remove checks from the main loop below
#
rm -f $tmp.ok
for pkgtype in $pkgtypes
do
    want=false
    [ "$pkgtype" = "$mytype" ] && want=true
    if $want
    then
	$very_verbose && echo >&2 "include ${pkgtype}? lines"
	sed -e "s/^${pkgtype}?[ 	]//" <$tmp.manifest >$tmp.tmp
	mv $tmp.tmp $tmp.manifest
	touch $tmp.ok
    else
	#debug# $very_verbose && echo >&2 "exclude ${pkgtype}? lines"
	grep -v "^${pkgtype}?[ 	]" <$tmp.manifest >$tmp.tmp
	mv $tmp.tmp $tmp.manifest
    fi
done
if [ ! -f $tmp.ok ]
then
    echo >&2 "Warning: don't understand what packing is being used here ..."
    echo >&2 "         it is none of: $pkgtypes"
fi

# Strip the distro-dependent lines that do not apply ...
# this is an optimization remove checks from the main loop below
#
# tests here are copied from whatami
#
iam=''
if [ -f /etc/SuSE-release ]
then
    iam=suse
elif [ -f /etc/centos-release ]
then
    iam=centos
elif [ -f /etc/redhat-release ]
then
    iam=redhat
elif [ -f /etc/debian_version ]
then
    iam=debian
elif [ -f /etc/mandriva-release ]
then
    iam=mandriva
elif [ -f /etc/gentoo-release ]
then
    iam=gentoo
elif [ -f /etc/fedora-release ]
then
    iam=fedora
elif [ -f /etc/os-release ]
then
    iam=opensuse
elif [ -f /etc/release ]
then
    iam=openindiana
elif [ -f /etc/slackware-version ]
then
    iam=slackware
elif [ -f /etc/arch-release ]
then
    iam=arch
elif [ -f /etc/lsb-release ]
then
    iam=`sed </etc/lsb-release -n -e '/^DISTRIB_ID *= */s///p' | tr '[A-Z]' '[a-z]'`
fi
#debug# $very_verbose && echo >&2 "distro iam=$iam"

for tag in $tags
do
    pick=false
    case "$iam"
    in
	redhat|fedora)
	    [ "$tag" = redhat ] && pick=true
	    ;;
	*)
	    [ "$tag" = "$iam" ] && pick=true
	    ;;
    esac
    if $pick
    then
	$very_verbose && echo >&2 "include ${tag}? lines"
	sed -e "s/^${tag}?[ 	]//" <$tmp.manifest >$tmp.tmp
	mv $tmp.tmp $tmp.manifest
    else
	#debug# $very_verbose && echo >&2 "exclude ${tag}? lines"
	grep -v "^${tag}?[ 	]" <$tmp.manifest >$tmp.tmp
	mv $tmp.tmp $tmp.manifest
    fi
done

# Strip comments ...
#
sed -e '/^#/d' <$tmp.manifest >$tmp.tmp
mv $tmp.tmp $tmp.manifest

# the "unavailable" file records packages that are not available for a
# particular distribution and version and architecture ... 
#
_parse_file $unavailable >$tmp.pkgs
if [ -s $tmp.pkgs ]
then
    unavail_pkg="`cat $tmp.pkgs`"
fi
$very_verbose && echo >&2 "unavailable: $unavail_pkg"

# the "require" file records packages that are must be installed for a
# particular distribution and version and archtecture ... 
#
require_pkg=''
_parse_file $require >$tmp.pkgs
if [ -s $tmp.pkgs ]
then
    $very_verbose && echo >&2 "require: `cat $tmp.pkgs`"
    for _need in `cat $tmp.pkgs`
    do
	if grep "^$_need\$" $tmp.installed >/dev/null
	then
	    :
	else
	    if [ -z "$require_pkg" ]
	    then
		require_pkg="$_need"
	    else
		require_pkg="$require_pkg $_need"
	    fi
	fi
    done
    if $very_verbose
    then
	if [ -n "$require_pkg" ]
	then
	    echo >&2 "require and not installed: $require_pkg"
	else
	    echo >&2 "require and not installed: <none>"
	fi
    fi
fi

if $pkglist
then
    # for -p, don't mark manifest lines with N/A ... this is handled
    # later for each package in [ ... ]
    #
    :
else
    if [ -n "$unavail_pkg" ]
    then
	for _pkg in $unavail_pkg
	do
	    if [ -z "$version" ]
	    then
		_cull_from_manifest "$_pkg" "N/A on $distro"
	    else
		_cull_from_manifest "$_pkg" "N/A on $distro $version"
	    fi
	    mv $tmp.culled $tmp.manifest
	done
    fi
fi

# the optional "skip.<hostname>" file records packages that may be available
# but for various reasons should be be installed on a particular host ...
# examples are docker.io that does not get along with qemu or unbound that
# does not co-exist with bind9 or libfooqt.so that is really for the wrong
# version of Qt
#
skip_pkg=''
_hostname=`hostname -s`
if [ -f $skipbase.$_hostname ]
then
    $verbose && echo >&2 "Processing $skipbase.`hostname -s` ..."
    skip_pkg=`sed <$skipbase.$_hostname \
	    -e 's/#.*//' \
	    -e '/^[ 	]*$/d' | tr '\012' ' '`
    if [ -n "$skip_pkg" ]
    then
	$very_verbose && echo >&2 "skip on host: $skip_pkg"
	for _pkg in $skip_pkg
	do
	    _cull_from_manifest "$_pkg" "SKIP on host $_hostname"
	    mv $tmp.culled $tmp.manifest
	done
    fi
fi

# the "skip" file records packages that should NOT be installed for a
# particular distribution and version and architecture ... 
#
_parse_file $skip >$tmp.pkgs
if [ -s $tmp.pkgs ]
then
    $very_verbose && echo >&2 "skip: `cat $tmp.pkgs`"
    skip_pkg="$skip_pkg `cat $tmp.pkgs`"
    for _pkg in `cat $tmp.pkgs`
    do
	_cull_from_manifest "$_pkg" SKIP
	mv $tmp.culled $tmp.manifest
    done
fi

if $force
then
    :
else
    # If we are sure which version of Python we're using, remove lines
    # for the other versions
    #
    if [ -n "$PCP_PYTHON_PROG" ]
    then
	if which "$PCP_PYTHON_PROG" >/dev/null 2>&1
	then
	    pyver=`$PCP_PYTHON_PROG --version 2>&1 | sed -e 's/^[^0-9]*//' -e 's/\..*//'`
	    if [ -z "$pyver" ]
	    then
		echo >&2 "Warning: cannot get Python version from: `$PCP_PYTHON_PROG --version`"
	    else
		$verbose && echo >&2 "Info: guessing Python version $pyver"
		sed <$tmp.manifest >$tmp.tmp -e '/\/python[0-9]/{
/\/python'"$pyver"'[./-]/!d
}'
		if $very_verbose
		then
		    echo "packages excluded based on guessed Python version"
		    sort $tmp.manifest >$tmp.all
		    sort $tmp.tmp >$tmp.selected
		    comm -23 $tmp.all $tmp.selected
		    rm -f $tmp.all $tmp.selected
		fi
		mv $tmp.tmp $tmp.manifest
	    fi
	fi
    fi

    # If we are sure which version of Qt we're using, remove lines for
    # the other versions
    #
    # Logic from Makepkgs
    #
    cull=''
    unset QT_SELECT
    if which qtchooser >/dev/null 2>&1
    then
	if qtchooser -list-versions | grep '^5$' >/dev/null
	then
	    cull=qt4
	else
	    cull=qt5
	fi
    fi
    if [ -n "$cull" ]
    then
	#debug# echo "cull=$cull"
	grep -vi "$cull" <$tmp.manifest >$tmp.tmp
	#debug# diff $tmp.manifest $tmp.tmp
	mv $tmp.tmp $tmp.manifest
    fi
fi

# For some packaging (in particular dpkg on the Debian line), there is
# support for multiple versions of some packages in the same distro.
# This is normally designated by foo-N.M or fooNM in the package name.
# The manifest may contain the "glob" character "*" to indicate we're
# looking for the "latest" version of the package, so snoop and rewrite
# as appropriate.
#
_build_allpkgs
rm -f $tmp.sed
sed <$tmp.manifest \
    -e 's/[^[]*\[//' \
    -e 's/] *:/ /' \
    -e 's/([^)]*)//' \
| $PCP_AWK_PROG '{ for (i = 1; i < NF; i++) print $NF,$i }' \
| while read lineno pkg
do
    case "$pkg"
    in
	*\**|*\[*)
	    # $pkg includes regex me thinks
	    #
	    if [ ! -f $tmp.allpkgs ]
	    then
		echo >&2 "Warning: manifest:$lineno botch? contains pattern $pkg, but tmp.allpkgs not created from _build_allpkgs()"
	    else
		real_pkg="`grep "^$pkg\$" $tmp.allpkgs | LC_COLLATE=POSIZ sort -nr | head -1`"
		if [ -n "$real_pkg" ]
		then
		    $verbose && echo >&2 "package pattern $pkg -> $real_pkg"
		    # special note ... echo (built into bash hiding as sh)
		    # is busted on multiple platforms (like Fedora 32) ...
		    # we're using /bin/sh here to get the same results
		    # everywhere for \ interpretation (or not)
		    #
		    pkg_literal=`/bin/echo "$pkg" | sed -e 's/\[/\\\\[/g' -e 's/\*/\\\\*/g' -e 's/\./\\\\./g'`
		    /bin/echo 's/ '"$pkg_literal"' \(.*:'"$lineno"'\)$/ '"$real_pkg"' \1/' >>$tmp.sed
		fi
	    fi
	    ;;
    esac
done

if [ -s $tmp.sed ]
then
    # need [foo-*] -> [ foo-* ] -> [foo-123] and this
    # requires some epilogue and prologue sed commands
    #
    /bin/echo 's/\[/[ /' >$tmp.tmp
    /bin/echo 's/]\( :[0-9][0-9]*\)$/ ]\1/' >>$tmp.tmp
    cat $tmp.sed >>$tmp.tmp
    /bin/echo 's/ ]\( :[0-9][0-9]*\)$/]\1/' >>$tmp.tmp
    /bin/echo 's/\[ /[/' >>$tmp.tmp
    mv $tmp.tmp $tmp.sed
    if $very_verbose
    then
	echo "Pattern expansion sed script ..."
	cat $tmp.sed
    fi
    sed -f $tmp.sed <$tmp.manifest >$tmp.tmp
    if _cmp $tmp.manifest $tmp.tmp >/dev/null
    then
	: no differences
    else
	if $very_verbose
	then
	    diff $tmp.manifest $tmp.tmp
	fi
	mv $tmp.tmp $tmp.manifest
    fi
fi

if $check_manifest
then
    # save the unavailable packages list, and hand off
    #
    touch $tmp.unavail
    for _pkg in $unavail_pkg
    do
	echo "$_pkg" >>$tmp.unavail
    done
    echo "Handing off to $home/check-manifest ..."
    exec $home/check-manifest $check_manifest_args $tmp
fi

# skip "optional" and N/A packages for -b
#
if $basic
then
    $very_verbose && echo >&2 "exclude \"optional\" package lines"
    sed -e '/ optional)/d' -e '/N\/A/d' <$tmp.manifest >$tmp.tmp
    mv $tmp.tmp $tmp.manifest
fi

# main loop
#
cat $tmp.manifest \
| sed -e 's/#.*//' -e '/^[ 	]*$/d' \
| while read line
do
    apps=`echo "$line" | sed -e 's/:[0-9][0-9]*$//' -e 's/ $//'`
    lineno=`echo "$line" | sed -e 's/.* :\([0-9][0-9]*\)$/\\1/'`
    rm -f $tmp.ok
    rm -f $tmp.echo

    if $all
    then
	# don't do any of this ...
	#
	:
    else
	for app in $apps
	do
	    # leading ! negates the guard
	    case $app
	    in
		!*)
		    app=`echo "$app" | sed -e 's/^!//'`
		    negate=true
		    ;;
		*)
		    negate=false
		    ;;
	    esac
	    case $app
	    in
		\[*)
		    break
		    ;;
		*\?)
		    app=`echo $app | sed -e 's/?$//'`
		    optional=true
		    ;;
		*)
		    optional=false
		    ;;
	    esac
	    case $app
	    in
		F_pkg|S_pkg)
		    app=pkg
		    ;;
	    esac
	    case $app
	    in
		\[*)
		    break
		    ;;
		*::)
		    # special case Perl, no module name
		    echo "use `echo $app | sed -e 's/::$//'`;" | perl >/dev/null 2>&1
		    ok=$?
		    ;;

		*::*)
		    # normal case Perl, with module name
		    echo "use $app;" | perl >/dev/null 2>&1
		    ok=$?
		    ;;
		*)  # file, directory or executable tests, separated by |
		    rm -f $tmp.tmp
		    for obj in `echo "$app" | sed -e 's/|/ /g'`
		    do
			case "$obj"
			in
			    /*)
				if [ -f "$obj" -o -d "$obj" ]
				then
				    touch $tmp.tmp
				    break
				fi
				;;
			    *)
				if which $obj >/dev/null 2>&1
				then
				    touch $tmp.tmp
				    break
				fi
				;;
			esac
		    done
		    [ -f $tmp.tmp ]
		    ok=$?
		    ;;
	    esac
	    if $negate
	    then
		ok=`expr 1 - $ok`
	    fi
	    if $verbose
	    then
		$PCP_ECHO_PROG >&2 $PCP_ECHO_N "$app ... "$PCP_ECHO_C
		$optional && $PCP_ECHO_PROG >&2 $PCP_ECHO_N "[optional] "$PCP_ECHO_C
		if [ $ok = 0 ]
		then
		    $PCP_ECHO_PROG >&2 $PCP_ECHO_N "yes "$PCP_ECHO_C
		else
		    $PCP_ECHO_PROG >&2 $PCP_ECHO_N "no "$PCP_ECHO_C
		fi
		touch $tmp.echo
	    fi
	    if [ $ok = 0 ]
	    then
		if $optional
		then
		    if [ -f $tmp.echo ]
		    then
			echo >&2
			rm -f $tmp.echo
		    fi
		    continue
		fi
		touch $tmp.ok
		break
	    else
		if $optional
		then
		    # guard not true, skip checks for other apps
		    touch $tmp.ok
		    break
		fi
	    fi
	done
    fi

    if [ ! -f $tmp.ok ]
    then
	if $pkglist
	then
	    echo "$apps" \
	    | sed -n \
		-e '/\[SKIP on host/s/on host.*/]/' \
		-e 's/^[^ ][^ ]*[ 	][ 	]*\[//' \
		-e 's/][ 	]*$//' \
		-e 's/ ([^)]*)//' \
		-e 's/base [^ ]* install//' \
		-e 's/^or //' \
		-e 's/ or$//' \
		-e 's/^or$//' \
		-e 's/ or / /g' \
		-e 's/[ 	][ 	]*/ /g' \
		-e '/^ *$/d' \
		-e p \
	    | while read _missing
	    do
		# don't list the unavailable packages nor the skipped ones
		# nor (if $all is false) the ones already installed
		#
		for _need in $_missing
		do
		    if [ "$_need" = "N/A" ]
		    then
			if $verbose
			then
			    $PCP_ECHO_PROG >&2 $PCP_ECHO_N "[unavailable] "$PCP_ECHO_C
			    touch $tmp.echo
			fi
			continue
		    fi
		    if [ "$_need" = "SKIP" ]
		    then
			if $verbose
			then
			    $PCP_ECHO_PROG >&2 $PCP_ECHO_N "[skip] "$PCP_ECHO_C
			    touch $tmp.echo
			fi
			continue
		    fi
		    if ! $all && grep "^$_need\$" $tmp.installed >/dev/null
		    then
			[ -f $tmp.echo ] && echo >&2
			echo >&2 "Warning: manifest:$lineno botch? target: \"`echo "$apps" | sed -e 's/[ 	].*//'`\" not found, but package \"$_need\" already installed"
			rm -f $tmp.echo
		    else
			rm -f $tmp.match
			for _pkg in $unavail_pkg
			do
			    if [ "$_need" = "$_pkg" ]
			    then
				if $verbose
				then
				    $PCP_ECHO_PROG >&2 $PCP_ECHO_N "[unavailable] "$PCP_ECHO_C
				    touch $tmp.echo
				fi
				touch $tmp.match
				break
			    fi
			done
			if [ ! -f $tmp.match ]
			then
			    if [ -f $tmp.allpkgs ]
			    then
				_need_expand="`grep "^$_need\$" <$tmp.allpkgs`"
				if [ -n "$_need_expand" ]
				then
				    echo "$_need_expand"
				else
				    echo "$_need"
				fi
			    else
				echo "$_need"
			    fi
			fi
		    fi
		done
	    done
	elif echo "$apps" | grep '\[SKIP' >/dev/null
	then
	    # nothing to report
	    :
	else
	    if $all
	    then
		tag=''
	    else
		tag='Missing: '
	    fi
	    echo "$tag`echo "$apps" \
		| sed \
		    -e 's/[ 	][ 	]*/ /g' \
		    -e '/ /{
s/? /?@/
:loop1
s/\(\[.*\) /\1@/
t loop1
:loop2
s/ \([^[]\)/@|@\1/
t loop2
s/@/ /g
}'`"
	fi
    else
	if echo "$apps" | grep 'N/A' >/dev/null
	then
	    [ -f $tmp.echo ] && echo >&2
	    echo >&2 "Warning: manifest:$lineno botch? target: \"`echo "$apps" | sed -e 's/[ 	].*//'`\" found, but marked N/A"
	    rm -f $tmp.echo
	fi
    fi
    [ -f $tmp.echo ] && echo >&2

done >$tmp.out


if $pkglist
then
    # append required packages ... uniq below culls any duplicates
    for _pkg in $require_pkg
    do
	echo "$_pkg" >>$tmp.out
    done
fi

# for -M, remove all the meta-packages, like cpan(...) and pip3(...)
#
if $include_meta
then
    :
else
    sed <$tmp.out >$tmp.tmp \
	-e '/^cpan(/d' \
	-e '/^pip3(/d' \
    # end
    mv $tmp.tmp $tmp.out
fi

if [ -s $tmp.out ]
then
    if $pkglist
    then
	sort <$tmp.out \
	| uniq >$tmp.tmp
	if $pkgcmd
	then
	    grep -v 'cpan(' <$tmp.tmp | grep -v 'pip3(' >$tmp.pkg
	    if [ -s $tmp.pkg ]
	    then
		echo "sudo $installcmd `tr '\012' ' ' <$tmp.pkg`"
	    fi
	    grep 'cpan(' <$tmp.tmp >$tmp.pkg
	    if [ -s $tmp.pkg ]
	    then
		sed <$tmp.pkg \
		    -e 's/^/sudo cpan /' \
		    -e 's/cpan(/"/' \
		    -e 's/)/"/'
		# end
	    fi
	    grep 'pip3(' <$tmp.tmp >$tmp.pkg
	    if [ -s $tmp.pkg ]
	    then
		echo "sudo pip3 install `tr '\012' ' ' <$tmp.pkg`"
	    fi
	else
	    tr '\012' ' ' <$tmp.tmp \
	    | sed -e 's/  */ /g' -e 's/^ //' -e 's/ $//'
	    # BSD* and Darwin heuristic hack ... may not need extra echo
	    # for these guys, but ... needed on
	    # FreeBSD 12.0
	    #
	    echo
	fi
    else
	cat $tmp.out
    fi
fi

$pkglist && exit

# Any required packages not installed?
#
for _pkg in $require_pkg
do
    echo "Missing: $_pkg [required package not installed]"
done

if which slackpkg >/dev/null 2>&1
then
    # Slackware ...
    :
elif which rpm >/dev/null 2>&1
then
    # RPM based, there are some version dependencies in the spec
    # file (see BuildRequires: lines build/rpm/pcp.spec.in) and some
    # are found in configure.ac ... both need to be mirrored here
    #
    cat <<End-of-File >$tmp.rpm
# one line per rpm
# rpm-name	relop	version	pcp-pkg
# text after # is treated as a comment
# pcp.spec.in
qt-devel|qt4-devel|libqt4-devel|lib64qt4-devel	>=	4.4
libpfm-devel				>=	4.4	pcp-pmda-perfevent
libpfm|libpfm4				>=	4.4	pcp-pmda-perfevent
libibmad-devel|infiniband-diags-devel	>=	1.1.7	pcp-pmda-infiniband
libibmad|libibmad5|infiniband-diags	>=	1.1.7	pcp-pmda-infiniband
libibumad-devel|rdma-core-devel		>=	1.1.7	pcp-pmda-infiniband
libibumad|libibumad3			>=	1.1.7	pcp-pmda-infiniband
libibverbs-devel|rdma-core-devel	>=	1.1.7	pcp-pmda-infiniband
libibverbs|libibverbs1			>=	1.1.7	pcp-pmda-infiniband
End-of-File
    cat $tmp.rpm \
    | sed -e 's/#.*//' -e '/^[ 	]*$/d' \
    | while read rpmlist relop specversion pcp_pkg
    do
	[ -n "$pcp_pkg" ] && pcp_pkg=" for $pcp_pkg"
	rm -f $tmp.found $tmp.notfound
	for rpm in `echo "$rpmlist" | sed -e 's/|/ /g'`
	do
	    rpm -q $rpm >$tmp.tmp 2>/dev/null
	    if grep 'is not installed' $tmp.tmp >/dev/null 2>&1
	    then
		$verbose && echo >&2 "$rpm: not installed, need $relop $specversion$pcp_pkg, OK"
		echo >&2 "Warning: $rpm not installed, need $relop $specversion$pcp_pkg" >>$tmp.notfound
	    else
		touch $tmp.found
		version=`sed <$tmp.tmp -e "s/^$rpm-//" -e 's/-.*//'`
		( echo $version; echo $specversion ) | _compare $relop
		if [ $? = 0 ]
		then
		    $verbose && echo >&2 "$rpm: version installed $version, need $relop $specversion$pcp_pkg, OK"
		else
		    echo >&2 "Warning: $rpm version installed $version, need $relop $specversion$pcp_pkg"
		fi
	    fi
	done
	if [ -f $tmp.found ]
	then
	    :
	else
	    $verbose || cat >&2 $tmp.notfound
	fi
    done
fi

if which pkg-config >/dev/null 2>&1
then
    # PKG_CHECK_MODULES() in configure.ac
    #
    cat <<End-of-File >$tmp.pkg-config
# one line per rpm
# lib-name	relop	version	pcp-pkg
# text after # is treated as a comment
libuv           >=	1.0
End-of-File
    cat $tmp.pkg-config \
    | sed -e 's/#.*//' -e '/^[ 	]*$/d' \
    | while read lib relop version pcp_pkg
    do
	[ -n "$pcp_pkg" ] && pcp_pkg=" for $pcp_pkg"
	libversion=`pkg-config --modversion "$lib" 2>/dev/null`
	if [ -z "$libversion" ]
	then
	    echo >&2 "Warning: Package $lib not known to pkg-config , need $relop $version$pcp_pkg"
	else
	    ( echo $libversion; echo $version ) | _compare $relop
	    if [ $? = 0 ]
	    then
		$verbose && echo >&2 "$lib: version installed $libversion, need $relop $version$pcp_pkg, OK"
	    else
		echo >&2 "Warning: $lib version installed $libversion, need $relop $version$pcp_pkg"
	    fi
	fi
    done
fi

$very_verbose && echo >&2 "temp files:" $tmp.*