ottxor 14/03/17 19:04:20 Modified: ChangeLog Added: libcircle-0.2.0_rc1.ebuild Removed: libcircle-0.1.0_rc1.ebuild Log: version bump (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key C2000586)
Revision Changes Path 1.4 sys-cluster/libcircle/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/libcircle/ChangeLog?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/libcircle/ChangeLog?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/libcircle/ChangeLog?r1=1.3&r2=1.4 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-cluster/libcircle/ChangeLog,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- ChangeLog 19 Jan 2014 19:27:26 -0000 1.3 +++ ChangeLog 17 Mar 2014 19:04:20 -0000 1.4 @@ -1,6 +1,13 @@ # ChangeLog for sys-cluster/libcircle # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/libcircle/ChangeLog,v 1.3 2014/01/19 19:27:26 ottxor Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/libcircle/ChangeLog,v 1.4 2014/03/17 19:04:20 ottxor Exp $ + +*libcircle-0.2.0_rc1 (17 Mar 2014) + + 17 Mar 2014; Christoph Junghans <ott...@gentoo.org> + +libcircle-0.2.0_rc1.ebuild, -files/libcircle-0.1.0_rc1-out-of-source.patch, + -libcircle-0.1.0_rc1.ebuild: + version bump 19 Jan 2014; Christoph Junghans <ott...@gentoo.org> libcircle-0.1.0_rc1.ebuild: 1.1 sys-cluster/libcircle/libcircle-0.2.0_rc1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/libcircle/libcircle-0.2.0_rc1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-cluster/libcircle/libcircle-0.2.0_rc1.ebuild?rev=1.1&content-type=text/plain Index: libcircle-0.2.0_rc1.ebuild =================================================================== # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-cluster/libcircle/libcircle-0.2.0_rc1.ebuild,v 1.1 2014/03/17 19:04:20 ottxor Exp $ EAPI=5 inherit autotools-utils if [ "${PV}" = "9999" ]; then EGIT_REPO_URI="git://github.com/hpc/${PN}.git http://github.com/hpc/${PN}.git" inherit git-2 KEYWORDS="" else inherit vcs-snapshot SRC_URI="https://github.com/hpc/${PN}/archive/${PV/_rc/-rc.}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64 ~x86" fi DESCRIPTION="an API for distributing embarrassingly parallel workloads using self-stabilization" HOMEPAGE="https://github.com/hpc/libcircle" SLOT="0" LICENSE="BSD" IUSE="doc test" RDEPEND="virtual/mpi" DEPEND="${RDEPEND} doc? ( app-doc/doxygen ) test? ( dev-libs/check )" DOCS=( HACKING.md README.md ) src_configure() { local myeconfargs=( $(use_enable test tests) $(use_enable doc doxygen) ) autotools-utils_src_configure } src_install() { use doc && HTML_DOCS=( "${BUILD_DIR}/doc/html/" ) autotools-utils_src_install }