eva         14/09/27 16:06:31

  Modified:             ChangeLog
  Added:                gnet-2.0.8-r2.ebuild
  Log:
  Fix build with recent check version, bug #498046. Apply a fix to pkgconfig 
from Debian. Update to EAPI=5 and team guidelines.
  
  (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 
C6085806)

Revision  Changes    Path
1.82                 net-libs/gnet/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnet/ChangeLog?rev=1.82&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnet/ChangeLog?rev=1.82&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnet/ChangeLog?r1=1.81&r2=1.82

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnet/ChangeLog,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- ChangeLog   10 Aug 2014 20:48:33 -0000      1.81
+++ ChangeLog   27 Sep 2014 16:06:31 -0000      1.82
@@ -1,6 +1,16 @@
 # ChangeLog for net-libs/gnet
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnet/ChangeLog,v 1.81 2014/08/10 
20:48:33 slyfox Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnet/ChangeLog,v 1.82 2014/09/27 
16:06:31 eva Exp $
+
+*gnet-2.0.8-r2 (27 Sep 2014)
+
+  27 Sep 2014; Gilles Dartiguelongue <e...@gentoo.org> +gnet-2.0.8-r2.ebuild,
+  +files/gnet-2.0.8-fix-pkgconfig-abuse.patch,
+  +files/gnet-2.0.8-test-existing-domain.patch,
+  +files/gnet-2.0.8-unittest-build.patch,
+  +files/gnet-2.0.8-unittest-service.patch:
+  Fix build with recent check version, bug #498046. Apply a fix to pkgconfig
+  from Debian. Update to EAPI=5 and team guidelines.
 
   10 Aug 2014; Sergei Trofimovich <sly...@gentoo.org> gnet-2.0.8-r1.ebuild:
   QA: drop trailing '.' from DESCRIPTION



1.1                  net-libs/gnet/gnet-2.0.8-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnet/gnet-2.0.8-r2.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnet/gnet-2.0.8-r2.ebuild?rev=1.1&content-type=text/plain

Index: gnet-2.0.8-r2.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/gnet/gnet-2.0.8-r2.ebuild,v 1.1 
2014/09/27 16:06:31 eva Exp $

EAPI="5"
GCONF_DEBUG="yes"
GNOME_TARBALL_SUFFIX="bz2"

inherit autotools eutils gnome2

DESCRIPTION="A simple network library"
HOMEPAGE="http://live.gnome.org/GNetLibrary";

LICENSE="LGPL-2"
SLOT="2"
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
IUSE="test"

# FIXME: automagic use of valgrind
RDEPEND=">=dev-libs/glib-2.6:2"
DEPEND="${RDEPEND}
        >=dev-libs/check-0.9.11
        >=dev-util/gtk-doc-am-1.2
        virtual/pkgconfig
"
# FIXME: check should only be needed with USE 'test', bug #349301
#       test? ( >=dev-libs/check-0.9.7 )"

src_prepare() {
        # Do not leak main context reference, from master
        epatch "${FILESDIR}"/${PN}-2.0.8-context-leak.patch

        # Fix usage of check framework, bug #296849, from master
        epatch "${FILESDIR}"/${PN}-2.0.8-check-usage-update.patch

        # ifdef around network tests code, refs. bug #320759
        epatch "${FILESDIR}"/${PN}-2.0.8-network-tests.patch

        # Do not hardcode glib patch in pkgconfig file, debian bug #652165
        epatch "${FILESDIR}"/${PN}-2.0.8-fix-pkgconfig-abuse.patch

        # Compatibility with recent check releases, bug #498046
        epatch "${FILESDIR}"/${PN}-2.0.8-unittest-build.patch

        # gnetlibrary.org has been adandoned, from master
        epatch "${FILESDIR}"/${PN}-2.0.8-test-existing-domain.patch

        # Do not depend on a running HTTP server on port 80 for unittest
        epatch "${FILESDIR}"/${PN}-2.0.8-unittest-service.patch

        # Do not pass silly cflags with USE=debug, bug #320759
        sed -i \
                -e 's:-Werror::' \
                -e '/AM_PROG_CC_STDC/d' \
                -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:g' \
                configure.ac || die

        eautoreconf
        gnome2_src_prepare
}

src_configure() {
        DOCS="AUTHORS BUGS ChangeLog HACKING NEWS README* TODO"
        # Do not enable network tests in an ebuild environment
        gnome2_src_configure \
                --disable-static \
                --disable-network-tests
}




Reply via email to