* [gentoo-commits] gentoo-x86 commit in dev-libs/yajl: ChangeLog yajl-1.0.11.ebuild yajl-1.0.11-r1.ebuild
@ 2011-02-11 18:41 Tomas Chvatal (scarabeus)
0 siblings, 0 replies; only message in thread
From: Tomas Chvatal (scarabeus) @ 2011-02-11 18:41 UTC (permalink / raw
To: gentoo-commits
scarabeus 11/02/11 18:41:02
Modified: ChangeLog yajl-1.0.11.ebuild
Added: yajl-1.0.11-r1.ebuild
Log:
Fix static linking and tests per Diego's request.
(Portage version: 2.2.0_alpha21/cvs/Linux x86_64)
Revision Changes Path
1.8 dev-libs/yajl/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/yajl/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/yajl/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/yajl/ChangeLog?r1=1.7&r2=1.8
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/yajl/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog 3 Feb 2011 17:50:46 -0000 1.7
+++ ChangeLog 11 Feb 2011 18:41:01 -0000 1.8
@@ -1,6 +1,12 @@
# ChangeLog for dev-libs/yajl
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/yajl/ChangeLog,v 1.7 2011/02/03 17:50:46 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/yajl/ChangeLog,v 1.8 2011/02/11 18:41:01 scarabeus Exp $
+
+*yajl-1.0.11-r1 (11 Feb 2011)
+
+ 11 Feb 2011; Tomáš Chvátal <scarabeus@gentoo.org> yajl-1.0.11.ebuild,
+ +yajl-1.0.11-r1.ebuild, +files/yajl-fix_static_linking.patch:
+ Fix static linking and tests per Diego's request.
03 Feb 2011; Kacper Kowalik <xarthisius@gentoo.org> yajl-1.0.11.ebuild:
Added ~ppc/~ppc64 wrt #341149
1.7 dev-libs/yajl/yajl-1.0.11.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/yajl/yajl-1.0.11.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/yajl/yajl-1.0.11.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/yajl/yajl-1.0.11.ebuild?r1=1.6&r2=1.7
Index: yajl-1.0.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/yajl/yajl-1.0.11.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- yajl-1.0.11.ebuild 3 Feb 2011 17:50:46 -0000 1.6
+++ yajl-1.0.11.ebuild 11 Feb 2011 18:41:01 -0000 1.7
@@ -1,8 +1,8 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/yajl/yajl-1.0.11.ebuild,v 1.6 2011/02/03 17:50:46 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/yajl/yajl-1.0.11.ebuild,v 1.7 2011/02/11 18:41:01 scarabeus Exp $
-EAPI="2"
+EAPI=2
inherit cmake-utils
@@ -26,5 +26,5 @@
}
src_test() {
- emake test || die
+ emake test
}
1.1 dev-libs/yajl/yajl-1.0.11-r1.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/yajl/yajl-1.0.11-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/yajl/yajl-1.0.11-r1.ebuild?rev=1.1&content-type=text/plain
Index: yajl-1.0.11-r1.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/yajl/yajl-1.0.11-r1.ebuild,v 1.1 2011/02/11 18:41:01 scarabeus Exp $
EAPI=3
inherit cmake-utils
DESCRIPTION="Small event-driven (SAX-style) JSON parser"
HOMEPAGE="http://lloyd.github.com/yajl/"
SRC_URI="http://github.com/lloyd/yajl/tarball/${PV} -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
IUSE=""
src_prepare() {
cd "${WORKDIR}"/lloyd-${PN}-*
S=$(pwd)
epatch "${FILESDIR}"/${PN}-fix_static_linking.patch
}
src_test() {
pushd "${CMAKE_BUILD_DIR}" > /dev/null
emake test
popd > /dev/null
}
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2011-02-11 18:41 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-02-11 18:41 [gentoo-commits] gentoo-x86 commit in dev-libs/yajl: ChangeLog yajl-1.0.11.ebuild yajl-1.0.11-r1.ebuild Tomas Chvatal (scarabeus)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox