net-libs/libsoup: Version bump
authorPacho Ramos <pacho@gentoo.org>
Sun, 3 Jul 2016 10:46:42 +0000 (12:46 +0200)
committerPacho Ramos <pacho@gentoo.org>
Sun, 3 Jul 2016 11:41:29 +0000 (13:41 +0200)
Package-Manager: portage-2.3.0_rc1

net-libs/libsoup/Manifest
net-libs/libsoup/libsoup-2.54.1.ebuild [new file with mode: 0644]
net-libs/libsoup/metadata.xml

index da2eb46c982137b13c460f9a5b60f5d4689bc0fe..71e51f4b69239c190c266218ef07ad3ee183a5da 100644 (file)
@@ -1,2 +1,3 @@
 DIST libsoup-2.50.0.tar.xz 1755052 SHA256 1e01365ac4af3817187ea847f9d3588c27eee01fc519a5a7cb212bb78b0f667b SHA512 5004baac41feb2c4a7c4f8e68e0a2aac91ae115518e5bb7b58bc7f85dc7675611de82ad21d6a2f779daf2fc7496ab802e7d6dcd5eca91186b221664db37819e2 WHIRLPOOL 09f2cdc9804a4785e1f6a8d9e8adefab549fcb6de1506e2c0fa7af9ee3af531a26a55909ab917c7f08076e99bff3f992516125d12baeb5fce22c918e81a4636e
 DIST libsoup-2.52.2.tar.xz 1764308 SHA256 db55628b5c7d952945bb71b236469057c8dfb8dea0c271513579c6273c2093dc SHA512 866942d8db43a19630f39db12b22058cf31ef0c56f337e6c5790f5b881aaa768d4dbece1d2fe0d9560a82ae0f362365c19aa9b0d05afeb45bc5774f6713f51b2 WHIRLPOOL f0f7ac95d49f21d0bb92968d6d3de596a08aea0519db82089b6c476916d96c3c44e0871a8d3102f5f0b176294ce6f1582d52e6cfcd65bb74ad0c7c4ab8f020a4
+DIST libsoup-2.54.1.tar.xz 1793108 SHA256 47b42c232034734d66e5f093025843a5d8cc4b2357c011085a2fd04ef02dd633 SHA512 7bbcdd8c0995afee0715f6757d91b1f1c115cc55e8941f3795b27f89c533d832b3a2fbd469755a385a4e5dd00513d84cb2834d8cb194fc2651bb5895cf278871 WHIRLPOOL 8b126d4d0bef96be33817acb54f5ad3e42ac321edd22d821ff247b03b53e221803b3a54db158f51192fd84169935cbb3083e555c698afbb2a1657258d6d36776
diff --git a/net-libs/libsoup/libsoup-2.54.1.ebuild b/net-libs/libsoup/libsoup-2.54.1.ebuild
new file mode 100644 (file)
index 0000000..0d8b961
--- /dev/null
@@ -0,0 +1,88 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
+VALA_USE_DEPEND="vapigen"
+
+inherit gnome2 multilib-minimal python-any-r1 vala
+
+DESCRIPTION="An HTTP library implementation in C"
+HOMEPAGE="https://wiki.gnome.org/Projects/libsoup"
+
+LICENSE="LGPL-2+"
+SLOT="2.4"
+
+IUSE="debug gssapi +introspection samba ssl test vala"
+REQUIRED_IUSE="vala? ( introspection )"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+
+RDEPEND="
+       >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]
+       >=dev-libs/libxml2-2.9.1-r4:2[${MULTILIB_USEDEP}]
+       >=dev-db/sqlite-3.8.2:3[${MULTILIB_USEDEP}]
+       >=net-libs/glib-networking-2.38.2[ssl?,${MULTILIB_USEDEP}]
+       introspection? ( >=dev-libs/gobject-introspection-0.9.5:= )
+       samba? ( net-fs/samba )
+"
+DEPEND="${RDEPEND}
+       ${PYTHON_DEPS}
+       >=dev-util/intltool-0.35
+       >=dev-util/gtk-doc-am-1.10
+       sys-devel/gettext
+       >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
+       test? ( >=dev-libs/glib-2.40:2[${MULTILIB_USEDEP}] )
+       vala? ( $(vala_depend) )
+"
+#      test? ( www-servers/apache[ssl,apache2_modules_auth_digest,apache2_modules_alias,apache2_modules_auth_basic,
+#              apache2_modules_authn_file,apache2_modules_authz_host,apache2_modules_authz_user,apache2_modules_dir,
+#              apache2_modules_mime,apache2_modules_proxy,apache2_modules_proxy_http,apache2_modules_proxy_connect]
+#              dev-lang/php[apache2,xmlrpc]
+#              net-misc/curl
+#              net-libs/glib-networking[ssl])"
+
+src_prepare() {
+       if ! use test; then
+               # don't waste time building tests (bug #226271)
+               sed 's/^\(SUBDIRS =.*\)tests\(.*\)$/\1\2/' -i Makefile.am Makefile.in \
+                       || die "sed failed"
+       fi
+
+       use vala && vala_src_prepare
+       gnome2_src_prepare
+}
+
+src_configure() {
+       # FIXME: we need addpredict to workaround bug #324779 until
+       # root cause (bug #249496) is solved
+       addpredict /usr/share/snmp/mibs/.index
+
+       multilib-minimal_src_configure
+}
+
+multilib_src_configure() {
+       # Disable apache tests until they are usable on Gentoo, bug #326957
+       ECONF_SOURCE=${S} \
+       gnome2_src_configure \
+               --disable-static \
+               --disable-tls-check \
+               --without-gnome \
+               --without-apache-httpd \
+               $(usex debug --enable-debug=yes ' ') \
+               $(multilib_native_use_with gssapi) \
+               $(multilib_native_use_enable introspection) \
+               $(multilib_native_use_enable vala) \
+               $(use_with samba ntlm-auth '${EPREFIX}'/usr/bin/ntlm_auth)
+
+       if multilib_is_native_abi; then
+               # fix gtk-doc
+               ln -s "${S}"/docs/reference/html docs/reference/html || die
+       fi
+}
+
+multilib_src_install() {
+       gnome2_src_install
+}
index a4047eef0a9f39a4c9d8c214ba5752f21e8fe4ac..b01383c30263c4ffdc544bf986933dcead6bb97c 100644 (file)
@@ -6,6 +6,7 @@
                <name>Gentoo GNOME Desktop</name>
        </maintainer>
        <use>
+               <flag name="gssapi">Enable GSSAPI support</flag>
                <flag name="samba">Use <pkg>net-fs/samba</pkg> for NTLM Single
                        Sign-On</flag>
        </use>