From owner-svn-ports-head@freebsd.org Sun Dec 9 14:59:45 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 957CA1323FF7; Sun, 9 Dec 2018 14:59:45 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3C2316E613; Sun, 9 Dec 2018 14:59:45 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1E2C012C87; Sun, 9 Dec 2018 14:59:45 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wB9ExjTo018827; Sun, 9 Dec 2018 14:59:45 GMT (envelope-from kwm@FreeBSD.org) Received: (from kwm@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wB9ExipQ018824; Sun, 9 Dec 2018 14:59:44 GMT (envelope-from kwm@FreeBSD.org) Message-Id: <201812091459.wB9ExipQ018824@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kwm set sender to kwm@FreeBSD.org using -f From: Koop Mast Date: Sun, 9 Dec 2018 14:59:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r487054 - head/net/grilo-plugins X-SVN-Group: ports-head X-SVN-Commit-Author: kwm X-SVN-Commit-Paths: head/net/grilo-plugins X-SVN-Commit-Revision: 487054 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 3C2316E613 X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.997,0]; NEURAL_HAM_SHORT(-0.98)[-0.984,0]; NEURAL_HAM_LONG(-0.99)[-0.991,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Dec 2018 14:59:45 -0000 Author: kwm Date: Sun Dec 9 14:59:44 2018 New Revision: 487054 URL: https://svnweb.freebsd.org/changeset/ports/487054 Log: Update grilo-plugins to 0.3.8. * Build switched from autotools to meson * Depend on gom to build a two more plugins. * Always install the localmetadata plugin, it does not depend on tracker. Modified: head/net/grilo-plugins/Makefile head/net/grilo-plugins/distinfo head/net/grilo-plugins/pkg-plist Modified: head/net/grilo-plugins/Makefile ============================================================================== --- head/net/grilo-plugins/Makefile Sun Dec 9 14:59:23 2018 (r487053) +++ head/net/grilo-plugins/Makefile Sun Dec 9 14:59:44 2018 (r487054) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= grilo-plugins -PORTVERSION= 0.3.5 -PORTREVISION= 1 +PORTVERSION= 0.3.8 CATEGORIES= net MASTER_SITES= GNOME @@ -19,30 +18,29 @@ LIB_DEPENDS= libgrilo-0.3.so:net/grilo \ libgdata.so:devel/libgdata \ liboauth.so:net/liboauth \ libgoa-1.0.so:net/gnome-online-accounts \ + libgom-1.0.so:databases/gom \ libtotem-plparser.so:multimedia/totem-pl-parser \ libsoup-2.4.so:devel/libsoup \ libmediaart-2.0.so:multimedia/libmediaart \ libgmime-2.6.so:mail/gmime26 \ libjson-glib-1.0.so:devel/json-glib -USES= gettext gmake gnome libtool pathfix pkgconfig sqlite tar:xz +USES= gettext gperf gnome meson pathfix pkgconfig sqlite tar:xz USE_LDCONFIG= yes USE_GNOME= glib20 intlhack libxml2 USE_GSTREAMER1= chromaprint -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --disable-lua-factory -INSTALL_TARGET= install-strip +MESON_ARGS= -Denable-lua-factory=no OPTIONS_SUB= yes OPTIONS_DEFINE= TRACKER DMAP OPTIONS_DEFAULT= TRACKER TRACKER_DESC= Tracker support for grilo (used by gnome-music and possibly others) -TRACKER_CONFIGURE_ENABLE= tracker +TRACKER_MESON_YES= enable-tracker TRACKER_LIB_DEPENDS= libtracker-sparql-2.0.so:sysutils/tracker DMAP_DESC= DMAP (DAAP, DPAP & DACP) support with libdmapsharing -DMAP_CONFIGURE_ENABLE= dmap +DMAP_MESON_YES= enable-dmap DMAP_LIB_DEPENDS= libdmapsharing-3.0.so:net/libdmapsharing .include Modified: head/net/grilo-plugins/distinfo ============================================================================== --- head/net/grilo-plugins/distinfo Sun Dec 9 14:59:23 2018 (r487053) +++ head/net/grilo-plugins/distinfo Sun Dec 9 14:59:44 2018 (r487054) @@ -1,3 +1,3 @@ -TIMESTAMP = 1506671539 -SHA256 (grilo-plugins-0.3.5.tar.xz) = 2977827b8ecb3e15535236180e57dc35e85058d111349bdb6a1597e62a5068fb -SIZE (grilo-plugins-0.3.5.tar.xz) = 1881080 +TIMESTAMP = 1544363290 +SHA256 (grilo-plugins-0.3.8.tar.xz) = 4cdd770b1554ee49cf77705401a35daa3ebff81badc05bd69d7240f50e60d65b +SIZE (grilo-plugins-0.3.8.tar.xz) = 1408952 Modified: head/net/grilo-plugins/pkg-plist ============================================================================== --- head/net/grilo-plugins/pkg-plist Sun Dec 9 14:59:23 2018 (r487053) +++ head/net/grilo-plugins/pkg-plist Sun Dec 9 14:59:44 2018 (r487054) @@ -1,3 +1,4 @@ +lib/grilo-0.3/libgrlbookmarks.so lib/grilo-0.3/libgrlchromaprint.so %%DMAP%%lib/grilo-0.3/libgrldaap.so lib/grilo-0.3/libgrldleyna.so @@ -7,20 +8,41 @@ lib/grilo-0.3/libgrlflickr.so lib/grilo-0.3/libgrlfreebox.so lib/grilo-0.3/libgrlgravatar.so lib/grilo-0.3/libgrljamendo.so -%%TRACKER%%lib/grilo-0.3/libgrllocalmetadata.so +lib/grilo-0.3/libgrllocalmetadata.so lib/grilo-0.3/libgrlmagnatune.so lib/grilo-0.3/libgrlmetadatastore.so lib/grilo-0.3/libgrlopensubtitles.so lib/grilo-0.3/libgrlopticalmedia.so +lib/grilo-0.3/libgrlpodcasts.so lib/grilo-0.3/libgrlraitv.so lib/grilo-0.3/libgrlshoutcast.so +lib/grilo-0.3/libgrlthetvdb.so lib/grilo-0.3/libgrltmdb.so %%TRACKER%%lib/grilo-0.3/libgrltracker.so lib/grilo-0.3/libgrlvimeo.so lib/grilo-0.3/libgrlyoutube.so +libdata/pkgconfig/grilo-plugins-0.3.pc share/help/C/examples/example-tmdb.c share/help/C/grilo-plugins/grilo-plugins.xml share/help/C/grilo-plugins/legal.xml +share/help/cs/examples/example-tmdb.c +share/help/cs/grilo-plugins/grilo-plugins.xml +share/help/cs/grilo-plugins/legal.xml +share/help/de/examples/example-tmdb.c +share/help/de/grilo-plugins/grilo-plugins.xml +share/help/de/grilo-plugins/legal.xml +share/help/es/examples/example-tmdb.c +share/help/es/grilo-plugins/grilo-plugins.xml +share/help/es/grilo-plugins/legal.xml +share/help/pl/examples/example-tmdb.c +share/help/pl/grilo-plugins/grilo-plugins.xml +share/help/pl/grilo-plugins/legal.xml +share/help/pt_BR/examples/example-tmdb.c +share/help/pt_BR/grilo-plugins/grilo-plugins.xml +share/help/pt_BR/grilo-plugins/legal.xml +share/help/sv/examples/example-tmdb.c +share/help/sv/grilo-plugins/grilo-plugins.xml +share/help/sv/grilo-plugins/legal.xml share/locale/as/LC_MESSAGES/grilo-plugins.mo share/locale/bg/LC_MESSAGES/grilo-plugins.mo share/locale/bs/LC_MESSAGES/grilo-plugins.mo @@ -34,10 +56,12 @@ share/locale/en_GB/LC_MESSAGES/grilo-plugins.mo share/locale/eo/LC_MESSAGES/grilo-plugins.mo share/locale/es/LC_MESSAGES/grilo-plugins.mo share/locale/eu/LC_MESSAGES/grilo-plugins.mo +share/locale/fi/LC_MESSAGES/grilo-plugins.mo share/locale/fr/LC_MESSAGES/grilo-plugins.mo share/locale/fur/LC_MESSAGES/grilo-plugins.mo share/locale/gl/LC_MESSAGES/grilo-plugins.mo share/locale/he/LC_MESSAGES/grilo-plugins.mo +share/locale/hr/LC_MESSAGES/grilo-plugins.mo share/locale/hu/LC_MESSAGES/grilo-plugins.mo share/locale/id/LC_MESSAGES/grilo-plugins.mo share/locale/it/LC_MESSAGES/grilo-plugins.mo @@ -48,10 +72,12 @@ share/locale/lv/LC_MESSAGES/grilo-plugins.mo share/locale/ml/LC_MESSAGES/grilo-plugins.mo share/locale/nb/LC_MESSAGES/grilo-plugins.mo share/locale/ne/LC_MESSAGES/grilo-plugins.mo +share/locale/nl/LC_MESSAGES/grilo-plugins.mo share/locale/oc/LC_MESSAGES/grilo-plugins.mo share/locale/pl/LC_MESSAGES/grilo-plugins.mo share/locale/pt/LC_MESSAGES/grilo-plugins.mo share/locale/pt_BR/LC_MESSAGES/grilo-plugins.mo +share/locale/ro/LC_MESSAGES/grilo-plugins.mo share/locale/ru/LC_MESSAGES/grilo-plugins.mo share/locale/sk/LC_MESSAGES/grilo-plugins.mo share/locale/sl/LC_MESSAGES/grilo-plugins.mo