[Bug 210548] audio/pulseaudio: Update to 9.0
bugzilla-noreply at freebsd.org
bugzilla-noreply at freebsd.org
Wed Jul 27 12:35:30 UTC 2016
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=210548
--- Comment #20 from lightside <lightside at gmx.com> ---
There were some updates on http://www.freshports.org site, which allows to do
queries with plain text results, e.g. for dependent ports with LIB_DEPENDS of
specified port:
http://www.freshports.org/search.php?stype=depends_lib&method=match&query=audio%2Fpulseaudio&orderby=category&orderbyupdown=asc&search=Search&format=plaintext&minimal=1
This simplifies command in comment #15:
% wget -qO -
"http://www.freshports.org/search.php?stype=depends_lib&method=match&query=audio%2Fpulseaudio&orderby=category&orderbyupdown=asc&search=Search&format=plaintext&minimal=1"
| fmt
Based on this, I created following shell script (named freshports_depends_lib,
just in case):
-8<--
#!/bin/sh
query=$1
# Also possible to use http://dev.freshports.org address, but results may
differ
site=http://www.freshports.org
# Search type: depends_build, depends_lib, depends_run, depends_all, etc.
stype=depends_lib
# Search method: exact (equal to), prefix (starting with), match (containing),
suffix (ending with), soundex (sounds like)
method=match
url="${site}/search.php?stype=${stype}&method=${method}&query=${query}&orderby=category&orderbyupdown=asc&search=Search&format=plaintext&minimal=1"
if [ -z "${query}" ]; then
echo "Required to specify argument with query, e.g. audio/pulseaudio"
exit 1
fi
fetch -qo - ${url}
-->8-
Then the previous query may be produced with following command (the current
result of which is identical to the result in a comment #15):
% freshports_depends_lib audio/pulseaudio | fmt
audio/gnome-media audio/gstreamer-plugins-pulse
audio/gstreamer1-plugins-pulse audio/gtick audio/paman audio/paprefs
audio/pavucontrol audio/pavumeter audio/xfce4-pulseaudio-plugin
comms/deforaos-phone comms/gqrx comms/qsstv comms/quisk comms/twpsk
deskutils/xfce4-volumed-pulse games/retroarch lang/squeak
multimedia/aegisub multimedia/gmerlin multimedia/lives
multimedia/obs-studio multimedia/qmmp multimedia/qmmp-qt5
multimedia/qt4-mobility net/gtk-vnc net-im/empathy net-im/ring-daemon
net-p2p/gnunet sysutils/cinnamon-control-center
sysutils/cinnamon-settings-daemon sysutils/gnome-settings-daemon
x11/cinnamon x11/gnome-shell
I posted the previous shell script for informative purposes only, because the
format of query and options may be changed, which may require to adapt the
script. Possible to use http://www.freshports.org/search.php page directly.
--
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
More information about the freebsd-gnome
mailing list