dlan 14/07/02 05:51:34 Modified: ChangeLog Added: uthash-1.9.9.ebuild Log: bump, fix bug #500490, thanks Johan Bergström (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xAABEFD55)
Revision Changes Path 1.12 dev-libs/uthash/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uthash/ChangeLog?rev=1.12&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uthash/ChangeLog?rev=1.12&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uthash/ChangeLog?r1=1.11&r2=1.12 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/uthash/ChangeLog,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- ChangeLog 26 Jun 2013 17:08:12 -0000 1.11 +++ ChangeLog 2 Jul 2014 05:51:34 -0000 1.12 @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/uthash -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/uthash/ChangeLog,v 1.11 2013/06/26 17:08:12 blueness Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/uthash/ChangeLog,v 1.12 2014/07/02 05:51:34 dlan Exp $ + +*uthash-1.9.9 (02 Jul 2014) + + 02 Jul 2014; Yixun Lan <d...@gentoo.org> +uthash-1.9.9.ebuild: + bump, fix bug #500490, thanks Johan Bergström 26 Jun 2013; Anthony G. Basile <bluen...@gentoo.org> uthash-1.9.7.ebuild: Keyword ~arm for bfgminer 1.1 dev-libs/uthash/uthash-1.9.9.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uthash/uthash-1.9.9.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/uthash/uthash-1.9.9.ebuild?rev=1.1&content-type=text/plain Index: uthash-1.9.9.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/uthash/uthash-1.9.9.ebuild,v 1.1 2014/07/02 05:51:34 dlan Exp $ EAPI="5" inherit toolchain-funcs DESCRIPTION="An easy-to-use hash implementation for C programmers" HOMEPAGE="http://troydhanson.github.io/uthash/index.html" SRC_URI="https://github.com/troydhanson/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="BSD-1" SLOT="0" KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86" IUSE="test" DEPEND="sys-apps/sed test? ( dev-lang/perl )" RDEPEND="" src_test() { cd tests || die sed -i "/CFLAGS/s/-O3/${CFLAGS}/" Makefile || die emake CC="$(tc-getCC)" } src_install() { insinto /usr/include doins src/*.h dodoc doc/{ChangeLog,todo,userguide,ut*}.txt }