mgorny 15/04/07 12:56:53 Modified: libjson-rpc-cpp-9999.ebuild ChangeLog Added: libjson-rpc-cpp-0.5.0.ebuild Log: Add a release version now that the build system fixes have made it into the release. (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Revision Changes Path 1.2 dev-cpp/libjson-rpc-cpp/libjson-rpc-cpp-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libjson-rpc-cpp/libjson-rpc-cpp-9999.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libjson-rpc-cpp/libjson-rpc-cpp-9999.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libjson-rpc-cpp/libjson-rpc-cpp-9999.ebuild?r1=1.1&r2=1.2 Index: libjson-rpc-cpp-9999.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-cpp/libjson-rpc-cpp/libjson-rpc-cpp-9999.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- libjson-rpc-cpp-9999.ebuild 4 Apr 2015 10:07:03 -0000 1.1 +++ libjson-rpc-cpp-9999.ebuild 7 Apr 2015 12:56:53 -0000 1.2 @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libjson-rpc-cpp/libjson-rpc-cpp-9999.ebuild,v 1.1 2015/04/04 10:07:03 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libjson-rpc-cpp/libjson-rpc-cpp-9999.ebuild,v 1.2 2015/04/07 12:56:53 mgorny Exp $ EAPI=5 @@ -18,10 +18,10 @@ IUSE="doc +http-client +http-server +stubgen test" RDEPEND=" - dev-libs/jsoncpp - http-client? ( net-misc/curl ) - http-server? ( net-libs/libmicrohttpd ) - stubgen? ( dev-libs/argtable )" + dev-libs/jsoncpp:= + http-client? ( net-misc/curl:= ) + http-server? ( net-libs/libmicrohttpd:= ) + stubgen? ( dev-libs/argtable:= )" DEPEND="${RDEPEND} doc? ( app-doc/doxygen ) test? ( dev-libs/boost )" 1.2 dev-cpp/libjson-rpc-cpp/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libjson-rpc-cpp/ChangeLog?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libjson-rpc-cpp/ChangeLog?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libjson-rpc-cpp/ChangeLog?r1=1.1&r2=1.2 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-cpp/libjson-rpc-cpp/ChangeLog,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- ChangeLog 4 Apr 2015 10:07:03 -0000 1.1 +++ ChangeLog 7 Apr 2015 12:56:53 -0000 1.2 @@ -1,6 +1,13 @@ # ChangeLog for dev-cpp/libjson-rpc-cpp # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libjson-rpc-cpp/ChangeLog,v 1.1 2015/04/04 10:07:03 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libjson-rpc-cpp/ChangeLog,v 1.2 2015/04/07 12:56:53 mgorny Exp $ + +*libjson-rpc-cpp-0.5.0 (07 Apr 2015) + + 07 Apr 2015; Michał Górny <[email protected]> +libjson-rpc-cpp-0.5.0.ebuild, + libjson-rpc-cpp-9999.ebuild: + Add a release version now that the build system fixes have made it into the + release. *libjson-rpc-cpp-9999 (04 Apr 2015) 1.1 dev-cpp/libjson-rpc-cpp/libjson-rpc-cpp-0.5.0.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libjson-rpc-cpp/libjson-rpc-cpp-0.5.0.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-cpp/libjson-rpc-cpp/libjson-rpc-cpp-0.5.0.ebuild?rev=1.1&content-type=text/plain Index: libjson-rpc-cpp-0.5.0.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-cpp/libjson-rpc-cpp/libjson-rpc-cpp-0.5.0.ebuild,v 1.1 2015/04/07 12:56:53 mgorny Exp $ EAPI=5 inherit cmake-utils DESCRIPTION="JSON-RPC (1.0 & 2.0) framework for C++" HOMEPAGE="https://github.com/cinemast/libjson-rpc-cpp" SRC_URI="https://github.com/cinemast/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc +http-client +http-server +stubgen test" RDEPEND=" dev-libs/jsoncpp:= http-client? ( net-misc/curl:= ) http-server? ( net-libs/libmicrohttpd:= ) stubgen? ( dev-libs/argtable:= )" DEPEND="${RDEPEND} doc? ( app-doc/doxygen ) test? ( dev-libs/boost )" src_configure() { local mycmakeargs=( -DHTTP_CLIENT=$(usex http-client) -DHTTP_SERVER=$(usex http-server) # they are not installed -DCOMPILE_EXAMPLES=NO -DCOMPILE_STUBGEN=$(usex stubgen) -DCOMPILE_TESTS=$(usex test) ) cmake-utils_src_configure } src_compile() { cmake-utils_src_compile use doc && emake -C "${BUILD_DIR}" doc } src_install() { cmake-utils_src_install use doc && dodoc -r "${BUILD_DIR}"/doc/html }
