voyageur 15/05/20 11:27:34 Modified: ChangeLog Added: libobjc2-1.7-r1.ebuild Removed: libobjc2-1.6.ebuild Log: Fix SONAME, thanks adr in bug #465668 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 00F7AB331B0F097F)
Revision Changes Path 1.14 gnustep-base/libobjc2/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-base/libobjc2/ChangeLog?rev=1.14&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-base/libobjc2/ChangeLog?rev=1.14&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-base/libobjc2/ChangeLog?r1=1.13&r2=1.14 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/gnustep-base/libobjc2/ChangeLog,v retrieving revision 1.13 retrieving revision 1.14 diff -u -r1.13 -r1.14 --- ChangeLog 27 Sep 2013 20:09:55 -0000 1.13 +++ ChangeLog 20 May 2015 11:27:34 -0000 1.14 @@ -1,6 +1,12 @@ # ChangeLog for gnustep-base/libobjc2 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnustep-base/libobjc2/ChangeLog,v 1.13 2013/09/27 20:09:55 voyageur Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/gnustep-base/libobjc2/ChangeLog,v 1.14 2015/05/20 11:27:34 voyageur Exp $ + +*libobjc2-1.7-r1 (20 May 2015) + + 20 May 2015; Bernard Cafarelli <[email protected]> -libobjc2-1.6.ebuild, + +libobjc2-1.7-r1.ebuild, +files/libobjc2-1.7-fix_soname.patch: + Fix SONAME, thanks adr in bug #465668 27 Sep 2013; Bernard Cafarelli <[email protected]> libobjc2-1.7.ebuild, metadata.xml: 1.1 gnustep-base/libobjc2/libobjc2-1.7-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-base/libobjc2/libobjc2-1.7-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/gnustep-base/libobjc2/libobjc2-1.7-r1.ebuild?rev=1.1&content-type=text/plain Index: libobjc2-1.7-r1.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/gnustep-base/libobjc2/libobjc2-1.7-r1.ebuild,v 1.1 2015/05/20 11:27:34 voyageur Exp $ EAPI=5 inherit cmake-utils eutils DESCRIPTION="GNUstep Objective-C runtime" HOMEPAGE="http://www.gnustep.org" SRC_URI="http://download.gna.org/gnustep/${P}.tar.bz2" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="boehm-gc cxx test" RDEPEND="boehm-gc? ( dev-libs/boehm-gc ) cxx? ( sys-libs/libcxx )" DEPEND="${DEPEND} >=sys-devel/clang-2.9" src_prepare() { epatch "${FILESDIR}"/${P}-fix_soname.patch if ! use cxx; then sed -e 's/addtest_flags(CXXExceptions.*//' \ -i Test/CMakeLists.txt || die "test sed failed" fi } src_configure() { export CC=clang export CXX=clang++ export PREFIX=/usr local mycmakeargs=( -DGNUSTEP_CONFIG=GNUSTEP_CONFIG-NOTFOUND $(cmake-utils_use boehm-gc BOEHM_GC) $(cmake-utils_use_enable cxx OBJCXX) $(cmake-utils_use test TESTS) ) cmake-utils_src_configure }
