From owner-freebsd-gnome@freebsd.org Wed Jul 27 12:35:30 2016 Return-Path: Delivered-To: freebsd-gnome@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A3203BA6289 for ; Wed, 27 Jul 2016 12:35:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 8C6A412FC for ; Wed, 27 Jul 2016 12:35:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 87B80BA6288; Wed, 27 Jul 2016 12:35:30 +0000 (UTC) Delivered-To: gnome@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 875A5BA6287 for ; Wed, 27 Jul 2016 12:35:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6C37912FB for ; Wed, 27 Jul 2016 12:35:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u6RCZU2j048864 for ; Wed, 27 Jul 2016 12:35:30 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: gnome@FreeBSD.org Subject: [Bug 210548] audio/pulseaudio: Update to 9.0 Date: Wed, 27 Jul 2016 12:35:30 +0000 X-Bugzilla-Reason: AssignedTo CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: patch, patch-ready X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: lightside@gmx.com X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: gnome@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Jul 2016 12:35:30 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210548 --- Comment #20 from lightside --- 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=3Ddepends_lib&method=3Dmatch&que= ry=3Daudio%2Fpulseaudio&orderby=3Dcategory&orderbyupdown=3Dasc&search=3DSea= rch&format=3Dplaintext&minimal=3D1 This simplifies command in comment #15: % wget -qO - "http://www.freshports.org/search.php?stype=3Ddepends_lib&method=3Dmatch&qu= ery=3Daudio%2Fpulseaudio&orderby=3Dcategory&orderbyupdown=3Dasc&search=3DSe= arch&format=3Dplaintext&minimal=3D1" | fmt Based on this, I created following shell script (named freshports_depends_l= ib, just in case): -8<-- #!/bin/sh query=3D$1 # Also possible to use http://dev.freshports.org address, but results may differ site=3Dhttp://www.freshports.org # Search type: depends_build, depends_lib, depends_run, depends_all, etc. stype=3Ddepends_lib # Search method: exact (equal to), prefix (starting with), match (containin= g), suffix (ending with), soundex (sounds like) method=3Dmatch url=3D"${site}/search.php?stype=3D${stype}&method=3D${method}&query=3D${que= ry}&orderby=3Dcategory&orderbyupdown=3Dasc&search=3DSearch&format=3Dplainte= xt&minimal=3D1" if [ -z "${query}" ]; then echo "Required to specify argument with query, e.g. audio/pulseaudi= o" 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 t= he 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. --=20 You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug.=