dev-libs/totem-pl-parser: version bump 3.10.7 → 3.10.8
authorGilles Dartiguelongue <eva@gentoo.org>
Sun, 13 Aug 2017 09:42:39 +0000 (11:42 +0200)
committerGilles Dartiguelongue <eva@gentoo.org>
Sun, 13 Aug 2017 09:50:58 +0000 (11:50 +0200)
Package-Manager: Portage-2.3.6, Repoman-2.3.3

dev-libs/totem-pl-parser/Manifest
dev-libs/totem-pl-parser/files/totem-pl-parser-3.10.8-gmime-automagic.patch [new file with mode: 0644]
dev-libs/totem-pl-parser/totem-pl-parser-3.10.8.ebuild [new file with mode: 0644]

index 4469d54953ca945497c67df4f12cb69a922ea5fa..282693ed8235f4543d478afd8561acc7d8aa99a8 100644 (file)
@@ -1 +1,2 @@
 DIST totem-pl-parser-3.10.7.tar.xz 1608864 SHA256 9c8285bc3131faa309d5cba5a919d5166abc2b8cc5a0c850fe861be8b14e089c SHA512 681ebd61680a4aab3fc4d1d1d158d1d938c0a015f25464169862e0fa3b108af0d0392151a0f4661aa0edafdd7f83ea7f3296dfd01cabdcf3bcac36be488e764e WHIRLPOOL e5549425ac4912f2fe84b5af875d29dc2f049e64f9652671272600697b7d208929c3752d806e31c24b173dea44423e6f23a8fc1fd75417614359a9cda6ba5efd
+DIST totem-pl-parser-3.10.8.tar.xz 1618992 SHA256 ffc50a0713d5f3049912545169eea7d367483b2c4a868032940516ed1e78dd2b SHA512 1692fe6d183838bdfb9125ae2bf9fbf74762333a7ebb6becc755bfdbfb8d2ea1ae257f42aab7b7a1ab419aee2b35902176a731f26736a62015806d1423adae70 WHIRLPOOL 4aa55e96fb27196cb7a7f082d9030e467a5ecadb6d9448878b858b5670de9151d4043fa985b51d28c0f5345085b22b65510f9eb6129f4bc1b9ebc24957928cb5
diff --git a/dev-libs/totem-pl-parser/files/totem-pl-parser-3.10.8-gmime-automagic.patch b/dev-libs/totem-pl-parser/files/totem-pl-parser-3.10.8-gmime-automagic.patch
new file mode 100644 (file)
index 0000000..19ab829
--- /dev/null
@@ -0,0 +1,98 @@
+From b2e7a0b5db67dd276b09a151cf8a4aa3b58409fb Mon Sep 17 00:00:00 2001
+From: Gilles Dartiguelongue <eva@gentoo.org>
+Date: Sun, 13 Aug 2017 11:28:19 +0200
+Subject: [PATCH] Allow selecting specific gmime version
+
+---
+ configure.ac | 69 ++++++++++++++++++++++++++++++------------------------------
+ 1 file changed, 34 insertions(+), 35 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index dda59f7..f92bbf5 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -74,47 +74,46 @@ pkg_modules="glib-2.0 >= $GLIB_REQS libxml-2.0 gthread-2.0 gio-2.0 >= $GIO_REQS
+ ##################################
+ # Checking libgmime dependency
+ ##################################
++GMIME=""
+ gmime_message=""
+-AC_ARG_ENABLE(gmime-i-know-what-im-doing,
+-            AS_HELP_STRING([--disable-gmime-i-know-what-im-doing],
+-                           [Disable libgmime (Unsupported, breaks Podcast support).]),
+-                           [enable_gmime=no],
+-                           [enable_gmime=yes])
+-
+-if test "x$enable_gmime" = "xyes" ; then
+-   have_gmime3=no
+-   PKG_CHECK_MODULES(GMIME,
+-                     gmime-3.0,
+-                     [have_gmime=yes have_gmime3=yes GMIME=gmime-3.0],
+-                     [have_gmime=no])
+-
+-   if test "x$have_gmime" = "xno" ; then
+-       PKG_CHECK_MODULES(GMIME,
+-                         gmime-2.6,
+-                         [have_gmime=yes GMIME=gmime-2.6],
+-                         [have_gmime=no])
+-   fi
+-
+-   if test "x$have_gmime" = "xyes" ; then
+-      AC_SUBST(GMIME, $GMIME)
+-      AC_SUBST(USEGMIME, yes)
+-      AC_DEFINE(HAVE_GMIME, 1, [GMime available in the system])
+-      if test "x$have_gmime3" = xyes ; then
+-        AC_DEFINE(HAVE_GMIME3, 1, [GMime 3.0 available in the system])
+-      fi
+-      pkg_modules="$pkg_modules $GMIME"
+-   else
+-      AC_MSG_ERROR([libgmime is required to compile totem-pl-parser.])
+-   fi
+-else
+-   AC_SUBST(USEGMIME, no)
+-   gmime_message="
++AC_ARG_ENABLE(gmime,
++            AS_HELP_STRING([--enable-gmime=2.6|3.0|auto|no],
++                           [Which gmime version to compile against. Disabling libgmime is unsupported and breaks Podcast support.]),
++                           [],
++                           [enable_gmime=auto])
++
++AS_IF([test "x$enable_gmime" = "x2.6"],
++      [PKG_CHECK_MODULES(GMIME, [gmime-2.6], [GMIME=gmime-2.6])],
++      [test "x$enable_gmime" = "x3.0"],
++      [PKG_CHECK_MODULES(GMIME, [gmime-3.0], [GMIME=gmime-3.0])],
++      [test "x$enable_gmime" = "xauto" -o "x$enable_gmime" = "xyes"],
++      [PKG_CHECK_MODULES(GMIME, [gmime-3.0],
++                         [GMIME=gmime-3.0],
++                         [PKG_CHECK_MODULES(GMIME, [gmime-2.6], [GMIME=gmime-2.6])])],
++      [test "x$enable_gmime" = "xno"],
++      [],
++      # else
++      [AC_MSG_ERROR([invalid gmime version specified])]
++)
++
++AS_IF([test "x$enable_gmime" = "xno"],
++      [
++        AC_SUBST(USEGMIME, no)
++        gmime_message="
+  **************************************************************
+  Compiling totem-pl-parser without libgmime.
+  This will break podcast support and is completely unsupported.
+  **************************************************************"
+-fi
++      ], [
++        AC_SUBST(GMIME, $GMIME)
++        AC_SUBST(USEGMIME, yes)
++        AC_DEFINE(HAVE_GMIME, 1, [GMime available in the system])
++        AS_IF([test "$xGMIME" = "xgmime-3.0"],
++              [AC_DEFINE(HAVE_GMIME3, 1, [GMime 3.0 available in the system])])
++        pkg_modules="$pkg_modules $GMIME"
++      ]
++)
+ ##################################
+ # Checking quvi dependency
+-- 
+2.14.0
+
diff --git a/dev-libs/totem-pl-parser/totem-pl-parser-3.10.8.ebuild b/dev-libs/totem-pl-parser/totem-pl-parser-3.10.8.ebuild
new file mode 100644 (file)
index 0000000..50753e3
--- /dev/null
@@ -0,0 +1,70 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_EAUTORECONF="yes"
+inherit gnome2
+
+DESCRIPTION="Playlist parsing library"
+HOMEPAGE="https://developer.gnome.org/totem-pl-parser/stable/"
+
+LICENSE="LGPL-2+"
+SLOT="0/18"
+IUSE="archive crypt +introspection +quvi test"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+
+RDEPEND="
+       >=dev-libs/glib-2.31:2
+       dev-libs/gmime:2.6
+       >=net-libs/libsoup-2.43:2.4
+       archive? ( >=app-arch/libarchive-3 )
+       crypt? ( dev-libs/libgcrypt:0= )
+       introspection? ( >=dev-libs/gobject-introspection-0.9.5:= )
+       quvi? ( >=media-libs/libquvi-0.9.1:0= )
+"
+DEPEND="${RDEPEND}
+       !<media-video/totem-2.21
+       dev-libs/gobject-introspection-common
+       >=dev-util/intltool-0.35
+       >=dev-util/gtk-doc-am-1.14
+       sys-devel/autoconf-archive
+       >=sys-devel/gettext-0.17
+       virtual/pkgconfig
+       test? (
+               gnome-base/gvfs[http]
+               sys-apps/dbus )
+"
+# eautoreconf needs:
+#      dev-libs/gobject-introspection-common
+#   sys-devel/autoconf-archive
+
+PATCHES=(
+       # Fix gmime slot automagic, https://bugzilla.gnome.org/786231
+       "${FILESDIR}"/${P}-gmime-automagic.patch
+)
+
+src_prepare() {
+       # Disable tests requiring network access, bug #346127
+       # 3rd test fails on upgrade, not once installed
+       sed -e 's:\(g_test_add_func.*/parser/resolution.*\):/*\1*/:' \
+               -e 's:\(g_test_add_func.*/parser/parsing/itms_link.*\):/*\1*/:' \
+               -e 's:\(g_test_add_func.*/parser/parsability.*\):/*\1/:'\
+               -i plparse/tests/parser.c || die "sed failed"
+
+       gnome2_src_prepare
+}
+
+src_configure() {
+       gnome2_src_configure \
+               --disable-static \
+               --enable-gmime=2.6 \
+               $(use_enable archive libarchive) \
+               $(use_enable crypt libgcrypt) \
+               $(use_enable quvi) \
+               $(use_enable introspection)
+}
+
+src_test() {
+       # This is required as told by upstream in bgo#629542
+       GVFS_DISABLE_FUSE=1 dbus-run-session emake check
+}