ultrabug 15/03/23 08:59:35 Modified: ChangeLog Added: libbson-1.1.2.ebuild Log: version bump (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key B658FA13)
Revision Changes Path 1.3 dev-libs/libbson/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libbson/ChangeLog?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libbson/ChangeLog?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libbson/ChangeLog?r1=1.2&r2=1.3 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/libbson/ChangeLog,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- ChangeLog 24 Jul 2014 11:54:11 -0000 1.2 +++ ChangeLog 23 Mar 2015 08:59:35 -0000 1.3 @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libbson -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libbson/ChangeLog,v 1.2 2014/07/24 11:54:11 jer Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libbson/ChangeLog,v 1.3 2015/03/23 08:59:35 ultrabug Exp $ + +*libbson-1.1.2 (23 Mar 2015) + + 23 Mar 2015; Ultrabug <[email protected]> +libbson-1.1.2.ebuild: + version bump wrt #543984 24 Jul 2014; Jeroen Roovers <[email protected]> libbson-0.98.0.ebuild: Marked ~hppa (bug #517880). 1.1 dev-libs/libbson/libbson-1.1.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libbson/libbson-1.1.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libbson/libbson-1.1.2.ebuild?rev=1.1&content-type=text/plain Index: libbson-1.1.2.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libbson/libbson-1.1.2.ebuild,v 1.1 2015/03/23 08:59:35 ultrabug Exp $ EAPI=5 inherit autotools eutils DESCRIPTION="A BSON utility library" HOMEPAGE="https://github.com/mongodb/libbson" SRC_URI="https://github.com/mongodb/${PN}/releases/download/${PV}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~hppa ~x86" IUSE="debug examples static-libs" RDEPEND="" DEPEND="${RDEPEND}" DOCS=( AUTHORS NEWS README ) src_prepare() { # https://github.com/mongodb/mongo-c-driver/issues/54 sed -i -e "s/PTHREAD_LIBS/PTHREAD_CFLAGS/g" src/bson/Makefile.am \ tests/Makefile.am || die eautoreconf } src_configure() { econf --disable-hardening \ --disable-optimizations \ $(use_enable debug) \ $(use_enable static-libs static) } src_install() { emake DESTDIR="${D}" install doman doc/*.3 use static-libs || find "${D}" -name '*.la' -delete if use examples; then insinto /usr/share/${PF}/examples doins examples/*.c fi }
