Merge branch 'vendor/FILE'
[dragonfly.git] / usr.bin / pkg_search / pkg_search.sh
1 #!/bin/sh
2 #
3 # Copyright (c) 2007-09 The DragonFly Project.  All rights reserved.
4 #
5 # This code is derived from software contributed to The DragonFly Project
6 # by Matthias Schmidt <matthias@dragonflybsd.org>, University of Marburg.
7 #
8 # All rights reserved.
9 #
10 # Redistribution and use in source and binary forms, with or without
11 # modification, are permitted provided that the following conditions are met:
12 #
13 # - Redistributions of source code must retain the above copyright notice,
14 #   this list of conditions and the following disclaimer.
15 # - Redistributions in binary form must reproduce the above copyright notice,
16 #   this list of conditions and the following disclaimer in the documentation
17 #   and/or other materials provided with the distribution.
18 # - Neither the name of The DragonFly Project nor the names of its
19 #   contributors may be used to endorse or promote products derived
20 #   from this software without specific, prior written permission.
21 #
22 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
26 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
27 # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
28 # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
29 # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
30 # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
31 # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
32 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33
34 set_binpkg_sites() {
35         : ${BINPKG_BASE:=http://mirror-master.dragonflybsd.org/packages}
36         : ${BINPKG_SITES:=$BINPKG_BASE/$cpuver/DragonFly-$osver/stable}
37 }
38
39 UNAME=`uname -s`
40 osver=`uname -r | awk -F - '{ print $1; }'`
41 cpuver=`uname -p | awk -F - '{ print $1; }'`
42 [ -f /etc/settings.conf ] && . /etc/settings.conf
43 set_binpkg_sites
44
45 NO_INDEX=0
46 PORTSDIR=/usr/pkgsrc
47 PKGSUM=${PORTSDIR}/pkg_summary
48 INDEXFILE=INDEX
49
50 # Download the pkg_summary file
51 download_summary()
52 {
53         echo "Fetching pkg_summary(5) file."
54         for tries in 1 2
55         do
56                 FETCHPATH=${BINPKG_SITES}/All/pkg_summary.bz2
57                 fetch -o ${PKGSUM}.bz2 ${FETCHPATH}
58                 [ $? -eq 0 ] && break
59
60                 # retry with default
61                 unset BINPKG_BASE
62                 unset BINPKG_SITES
63                 set_binpkg_sites
64         done
65         if [ $? -ne 0 ]; then
66                 echo "Unable to fetch pkg_summary(5) file."
67                 exit 1
68         fi
69         bunzip2 < ${PKGSUM}.bz2 > ${PKGSUM}
70         rm -f ${PKGSUM}.bz2
71 }
72
73 # Perform simple search in pkg_summary
74 bin_simple_search()
75 {
76         awk -F= -v name="$1" '{
77                 if ($1 == "PKGNAME") {
78                         if (tolower($2) ~ name) {
79                                 printf("%-20s\t", $2);
80                                 found = 1;
81                         }
82                         else found = 0;
83                 }
84                 if (found == 1 && $1 == "COMMENT") printf("%-25s\n", $2);
85         }' ${PKGSUM}
86 }
87
88 # Perform extended search in pkg_summary
89 bin_ext_search()
90 {
91         awk -F= -v name="$1" '{
92                 if ($1 == "PKGNAME")
93                         if (tolower($2) ~ name) {
94                                 printf("\nName\t: %-50s\n", $2);
95                                 found = 1;
96                         }
97                         else found = 0;
98
99                 if (found == 1 && $1 == "COMMENT")
100                         printf("Desc\t: %-50s\n", $2);
101                 if (found == 1 && $1 == "PKGPATH")
102                         printf("Path\t: %-50s\n", $2);
103                 if (found == 1 && $1 == "HOMEPAGE")
104                         printf("URL\t: %-50s\n", $2);
105         }' ${PKGSUM}
106 }
107
108 # Perform extended search in INDEX
109 index_v_search()
110 {
111         if [ ${KFLAG} -eq 0 ]; then
112                 awk -F\| -v name="$1" '{
113                         if (tolower($1) ~ name) {
114                                 printf("Name\t: %s-50\nDir\t: %-50s\nDesc\t: %-50s"\
115                                         "\nURL\t: %-50s\nDeps\t: %s\n\n", $1, $2,
116                                         $4, $12, $9);
117                         }
118                 }' ${PORTSDIR}/${INDEXFILE}
119         else
120                 awk -F\| -v name="$1" '{
121                         if (tolower($1) ~ name || tolower($4) ~ name ||
122                             tolower($12) ~ name) {
123                                 printf("Name\t: %s-50\nDir\t: %-50s\nDesc\t: %-50s"\
124                                         "\nURL\t: %-50s\nDeps\t: %s\n\n", $1, $2,
125                                         $4, $12, $9);
126                         }
127                 }' ${PORTSDIR}/${INDEXFILE}
128         fi
129 }
130
131 # Perform simple search in INDEX
132 index_search()
133 {
134         if [ ${KFLAG} -eq 0 ]; then
135                 awk -F\| -v name="$1" '{
136                         if (tolower($1) ~ name) {
137                                 printf("%-20s\t%-25s\n", $1, $4);
138                         }
139                 }' ${PORTSDIR}/${INDEXFILE}
140         else
141                 awk -F\| -v name="$1" '{
142                         if (tolower($1) ~ name || tolower($4) ~ name ||
143                             tolower($12) ~ name) {
144                                 printf("%-20s\t%-25s\n", $1, $4);
145                         }
146                 }' ${PORTSDIR}/${INDEXFILE}
147         fi
148 }
149
150 show_description()
151 {
152         PDESC=`awk -F\| -v name="$1" '{
153                 if (tolower($1) == name) {
154                         split($2, ppath, "/");
155                         printf("%s\n", $5);
156                 }
157         }' ${PORTSDIR}/${INDEXFILE}`
158         if [ -f "${PORTSDIR}/${PDESC}" ]; then
159                 cat "${PORTSDIR}/${PDESC}"
160         else
161                 echo "Unable to locate package $1.  Please provide the exact"
162                 echo "package name as given by pkg_search(1).  You need the"
163                 echo "complete pkgsrc(7) tree to perform this operation."
164         fi
165 }
166
167 usage()
168 {
169         echo "usage: `basename $0` [-kv] package"
170         echo "       `basename $0` -s package"
171         echo "       `basename $0` -d"
172         exit 1
173 }
174
175 if [ ! -f ${PKGSUM} -a ! -e ${PORTSDIR}/${INDEXFILE} ]; then
176         echo "No pkgsrc(7) tree found."
177         mkdir -p ${PORTSDIR}
178         download_summary
179         NO_INDEX=1
180 fi
181 if [ -e ${PKGSUM} -a ! -e ${PORTSDIR}/${INDEXFILE} ]; then
182         NO_INDEX=1
183 fi
184
185 args=`getopt dksv $*`
186
187 SFLAG=0
188 KFLAG=0
189 VFLAG=0
190 DFLAG=0
191
192 set -- $args
193 for i; do
194         case "$i" in
195         -d)
196                 DFLAG=1; shift;;
197         -k)
198                 KFLAG=1; shift;;
199         -s)
200                 SFLAG=1; shift;;
201         -v)
202                 VFLAG=1; shift;;
203         --)
204                 shift; break;;
205         esac
206 done
207
208 if [ ${DFLAG} -eq 0 -a -z ${1} ]; then
209         usage
210 fi
211
212 if [ ${DFLAG} -eq 1 ]; then
213         download_summary
214         exit $?
215 fi
216
217 if [ ${VFLAG} -eq 0 -a ${NO_INDEX} -eq 1 ]; then
218         bin_simple_search $1
219 elif [ ${VFLAG} -eq 1 -a ${NO_INDEX} -eq 1 ]; then
220         bin_ext_search $1
221 elif [ ${SFLAG} -eq 1 -a ${NO_INDEX} -eq 0 ]; then
222         show_description $1
223 elif [ ${VFLAG} -eq 0 -a ${NO_INDEX} -eq 0 ]; then
224         index_search $1
225 elif [ ${VFLAG} -eq 1 -a ${NO_INDEX} -eq 0 ]; then
226         index_v_search $1
227 fi
228
229 exit $?