public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-chemistry/votca-csg: votca-csg-1.2.2.ebuild ChangeLog
@ 2012-01-11  4:11 Christoph Junghans (ottxor)
  0 siblings, 0 replies; 6+ messages in thread
From: Christoph Junghans (ottxor) @ 2012-01-11  4:11 UTC (permalink / raw
  To: gentoo-commits

ottxor      12/01/11 04:11:09

  Modified:             ChangeLog
  Added:                votca-csg-1.2.2.ebuild
  Log:
  version bump
  
  (Portage version: 2.2.0_alpha84/cvs/Linux i686)

Revision  Changes    Path
1.12                 sci-chemistry/votca-csg/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/ChangeLog?rev=1.12&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/ChangeLog?rev=1.12&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/ChangeLog?r1=1.11&r2=1.12

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/ChangeLog,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- ChangeLog	14 Dec 2011 17:18:09 -0000	1.11
+++ ChangeLog	11 Jan 2012 04:11:09 -0000	1.12
@@ -1,6 +1,11 @@
 # ChangeLog for sci-chemistry/votca-csg
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/ChangeLog,v 1.11 2011/12/14 17:18:09 ago Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/ChangeLog,v 1.12 2012/01/11 04:11:09 ottxor Exp $
+
+*votca-csg-1.2.2 (11 Jan 2012)
+
+  11 Jan 2012; Christoph Junghans <ottxor@gentoo.org> +votca-csg-1.2.2.ebuild:
+  version bump
 
   14 Dec 2011; Agostino Sarubbo <ago@gentoo.org> votca-csg-1.2.1.ebuild:
   Stable for AMD64, wrt bug #389681



1.1                  sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild?rev=1.1&content-type=text/plain

Index: votca-csg-1.2.2.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild,v 1.1 2012/01/11 04:11:09 ottxor Exp $

EAPI=4

inherit bash-completion-r1 cmake-utils multilib

IUSE="doc examples extras +gromacs +system-boost"
PDEPEND="extras? ( =sci-chemistry/votca-csgapps-${PV} )"
if [ "${PV}" != "9999" ]; then
	SRC_URI="http://votca.googlecode.com/files/${PF}.tar.gz
		doc? ( http://votca.googlecode.com/files/${PN}-manual-${PV}.pdf )
		examples? (	http://votca.googlecode.com/files/${PN}-tutorials-${PV}.tar.gz )"
	RESTRICT="primaryuri"
else
	SRC_URI=""
	inherit mercurial
	EHG_REPO_URI="https://csg.votca.googlecode.com/hg"
	EHG_REVISION="default"
	S="${WORKDIR}/${EHG_REPO_URI##*/}"
	PDEPEND="${PDEPEND} doc? ( =app-doc/${PN}-manual-${PV} )
		examples? ( =sci-chemistry/${PN}-tutorials-${PV} )"
fi

DESCRIPTION="Votca coarse-graining engine"
HOMEPAGE="http://www.votca.org"

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"

RDEPEND="=sci-libs/votca-tools-${PV}[system-boost=]
	gromacs? ( sci-chemistry/gromacs )
	dev-lang/perl
	app-shells/bash"

DEPEND="${RDEPEND}
	doc? ( app-doc/doxygen[-nodot] )
	>=app-text/txt2tags-2.5
	dev-util/pkgconfig"

src_configure() {
	local extra="-DWITH_GMX_DEVEL=OFF"

	use gromacs && has_version =sci-chemistry/gromacs-9999 && \
		extra="-DWITH_GMX_DEVEL=ON"

	mycmakeargs=(
		$(cmake-utils_use system-boost EXTERNAL_BOOST)
		$(cmake-utils_use_with gromacs GMX)
		${extra}
		-DWITH_RC_FILES=OFF
		-DLIB=$(get_libdir)
	)
	cmake-utils_src_configure
}

src_install() {
	DOCS=(README NOTICE ${CMAKE_BUILD_DIR}/CHANGELOG)
	newbashcomp scripts/csg-completion.bash ${PN}
	cmake-utils_src_install
	if use doc; then
		if [ -n "${PV##*9999}" ]; then
			dodoc "${DISTDIR}/${PN}-manual-${PV}.pdf"
		fi
		cd "${CMAKE_BUILD_DIR}" || die
		cd share/doc || die
		doxygen || die
		dohtml -r html/*
	fi
	if use examples && [ -n "${PV##*9999}" ]; then
		insinto "/usr/share/doc/${PF}/tutorials"
		docompress -x "/usr/share/doc/${PF}/tutorials"
		doins -r "${WORKDIR}/${PN}-tutorials-${PV}"/*
	fi
}

pkg_postinst() {
	einfo
	einfo "Please read and cite:"
	einfo "VOTCA, J. Chem. Theory Comput. 5, 3211 (2009). "
	einfo "http://dx.doi.org/10.1021/ct900369w"
	einfo
}






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/votca-csg: votca-csg-1.2.2.ebuild ChangeLog
@ 2012-01-13  1:30 Christoph Junghans (ottxor)
  0 siblings, 0 replies; 6+ messages in thread
From: Christoph Junghans (ottxor) @ 2012-01-13  1:30 UTC (permalink / raw
  To: gentoo-commits

ottxor      12/01/13 01:30:08

  Modified:             votca-csg-1.2.2.ebuild ChangeLog
  Log:
  keyword ~amd64-linux
  
  (Portage version: 2.2.0_alpha84/cvs/Linux i686)

Revision  Changes    Path
1.2                  sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild?r1=1.1&r2=1.2

Index: votca-csg-1.2.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- votca-csg-1.2.2.ebuild	11 Jan 2012 04:11:09 -0000	1.1
+++ votca-csg-1.2.2.ebuild	13 Jan 2012 01:30:08 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild,v 1.1 2012/01/11 04:11:09 ottxor Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild,v 1.2 2012/01/13 01:30:08 ottxor Exp $
 
 EAPI=4
 
@@ -28,7 +28,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~x86 ~amd64-linux"
 
 RDEPEND="=sci-libs/votca-tools-${PV}[system-boost=]
 	gromacs? ( sci-chemistry/gromacs )



1.13                 sci-chemistry/votca-csg/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/ChangeLog?rev=1.13&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/ChangeLog?rev=1.13&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/ChangeLog?r1=1.12&r2=1.13

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog	11 Jan 2012 04:11:09 -0000	1.12
+++ ChangeLog	13 Jan 2012 01:30:08 -0000	1.13
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/votca-csg
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/ChangeLog,v 1.12 2012/01/11 04:11:09 ottxor Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/ChangeLog,v 1.13 2012/01/13 01:30:08 ottxor Exp $
+
+  13 Jan 2012; Christoph Junghans <ottxor@gentoo.org> votca-csg-1.2.2.ebuild:
+  keyword ~amd64-linux
 
 *votca-csg-1.2.2 (11 Jan 2012)
 






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/votca-csg: votca-csg-1.2.2.ebuild ChangeLog
@ 2012-01-17 13:52 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-01-17 13:52 UTC (permalink / raw
  To: gentoo-commits

ago         12/01/17 13:52:07

  Modified:             votca-csg-1.2.2.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #389681
  
  (Portage version: 2.1.10.41/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild?r1=1.2&r2=1.3

Index: votca-csg-1.2.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- votca-csg-1.2.2.ebuild	13 Jan 2012 01:30:08 -0000	1.2
+++ votca-csg-1.2.2.ebuild	17 Jan 2012 13:52:07 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild,v 1.2 2012/01/13 01:30:08 ottxor Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild,v 1.3 2012/01/17 13:52:07 ago Exp $
 
 EAPI=4
 
@@ -28,7 +28,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux"
 
 RDEPEND="=sci-libs/votca-tools-${PV}[system-boost=]
 	gromacs? ( sci-chemistry/gromacs )



1.14                 sci-chemistry/votca-csg/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/ChangeLog?rev=1.14&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/ChangeLog?rev=1.14&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/ChangeLog?r1=1.13&r2=1.14

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/ChangeLog,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- ChangeLog	13 Jan 2012 01:30:08 -0000	1.13
+++ ChangeLog	17 Jan 2012 13:52:07 -0000	1.14
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/votca-csg
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/ChangeLog,v 1.13 2012/01/13 01:30:08 ottxor Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/ChangeLog,v 1.14 2012/01/17 13:52:07 ago Exp $
+
+  17 Jan 2012; Agostino Sarubbo <ago@gentoo.org> votca-csg-1.2.2.ebuild:
+  Stable for amd64, wrt bug #389681
 
   13 Jan 2012; Christoph Junghans <ottxor@gentoo.org> votca-csg-1.2.2.ebuild:
   keyword ~amd64-linux






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/votca-csg: votca-csg-1.2.2.ebuild ChangeLog
@ 2012-01-25  2:24 Christoph Junghans (ottxor)
  0 siblings, 0 replies; 6+ messages in thread
From: Christoph Junghans (ottxor) @ 2012-01-25  2:24 UTC (permalink / raw
  To: gentoo-commits

ottxor      12/01/25 02:24:32

  Modified:             votca-csg-1.2.2.ebuild ChangeLog
  Log:
  keyword ~x86-macos and fix bug #398437
  
  (Portage version: 2.2.0_alpha84/cvs/Linux i686)

Revision  Changes    Path
1.4                  sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild?r1=1.3&r2=1.4

Index: votca-csg-1.2.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- votca-csg-1.2.2.ebuild	17 Jan 2012 13:52:07 -0000	1.3
+++ votca-csg-1.2.2.ebuild	25 Jan 2012 02:24:32 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild,v 1.3 2012/01/17 13:52:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild,v 1.4 2012/01/25 02:24:32 ottxor Exp $
 
 EAPI=4
 
@@ -28,7 +28,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~x86 ~amd64-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-macos"
 
 RDEPEND="=sci-libs/votca-tools-${PV}[system-boost=]
 	gromacs? ( sci-chemistry/gromacs )
@@ -46,6 +46,10 @@
 	use gromacs && has_version =sci-chemistry/gromacs-9999 && \
 		extra="-DWITH_GMX_DEVEL=ON"
 
+	#to create man pages, build tree binaries are executed (bug #398437)
+	[[ ${CHOST} = *-darwin* ]] && \
+		extra+=" -DCMAKE_BUILD_WITH_INSTALL_RPATH=OFF"
+
 	mycmakeargs=(
 		$(cmake-utils_use system-boost EXTERNAL_BOOST)
 		$(cmake-utils_use_with gromacs GMX)



1.15                 sci-chemistry/votca-csg/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/ChangeLog?rev=1.15&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/ChangeLog?rev=1.15&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/ChangeLog?r1=1.14&r2=1.15

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/ChangeLog,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- ChangeLog	17 Jan 2012 13:52:07 -0000	1.14
+++ ChangeLog	25 Jan 2012 02:24:32 -0000	1.15
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/votca-csg
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/ChangeLog,v 1.14 2012/01/17 13:52:07 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/ChangeLog,v 1.15 2012/01/25 02:24:32 ottxor Exp $
+
+  25 Jan 2012; Christoph Junghans <ottxor@gentoo.org> votca-csg-1.2.2.ebuild:
+  keyword ~x86-macos and fix bug #398437
 
   17 Jan 2012; Agostino Sarubbo <ago@gentoo.org> votca-csg-1.2.2.ebuild:
   Stable for amd64, wrt bug #389681






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/votca-csg: votca-csg-1.2.2.ebuild ChangeLog
@ 2012-01-25 10:20 Thomas Kahle (tomka)
  0 siblings, 0 replies; 6+ messages in thread
From: Thomas Kahle (tomka) @ 2012-01-25 10:20 UTC (permalink / raw
  To: gentoo-commits

tomka       12/01/25 10:20:54

  Modified:             votca-csg-1.2.2.ebuild ChangeLog
  Log:
  x86 stable per bug 389681
  
  (Portage version: 2.1.10.44/cvs/Linux x86_64)

Revision  Changes    Path
1.5                  sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild?r1=1.4&r2=1.5

Index: votca-csg-1.2.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- votca-csg-1.2.2.ebuild	25 Jan 2012 02:24:32 -0000	1.4
+++ votca-csg-1.2.2.ebuild	25 Jan 2012 10:20:54 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild,v 1.4 2012/01/25 02:24:32 ottxor Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild,v 1.5 2012/01/25 10:20:54 tomka Exp $
 
 EAPI=4
 
@@ -28,7 +28,7 @@
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-macos"
+KEYWORDS="amd64 x86 ~amd64-linux ~x86-macos"
 
 RDEPEND="=sci-libs/votca-tools-${PV}[system-boost=]
 	gromacs? ( sci-chemistry/gromacs )



1.16                 sci-chemistry/votca-csg/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/ChangeLog?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/ChangeLog?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/ChangeLog?r1=1.15&r2=1.16

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	25 Jan 2012 02:24:32 -0000	1.15
+++ ChangeLog	25 Jan 2012 10:20:54 -0000	1.16
@@ -1,6 +1,9 @@
 # ChangeLog for sci-chemistry/votca-csg
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/ChangeLog,v 1.15 2012/01/25 02:24:32 ottxor Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/ChangeLog,v 1.16 2012/01/25 10:20:54 tomka Exp $
+
+  25 Jan 2012; Thomas Kahle <tomka@gentoo.org> votca-csg-1.2.2.ebuild:
+  x86 stable per bug 389681
 
   25 Jan 2012; Christoph Junghans <ottxor@gentoo.org> votca-csg-1.2.2.ebuild:
   keyword ~x86-macos and fix bug #398437






^ permalink raw reply	[flat|nested] 6+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sci-chemistry/votca-csg: votca-csg-1.2.2.ebuild ChangeLog
@ 2012-02-23 17:01 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 6+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2012-02-23 17:01 UTC (permalink / raw
  To: gentoo-commits

xarthisius    12/02/23 17:01:36

  Modified:             votca-csg-1.2.2.ebuild ChangeLog
  Log:
  Fix dependency on app-doc/doxygen wrt converting useflags 'nodot' to 'dot'. Fixes bug 405451 by Marien Zwart <marienz@gentoo.org>
  
  (Portage version: 2.2.0_alpha86/cvs/Linux x86_64)

Revision  Changes    Path
1.6                  sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild?r1=1.5&r2=1.6

Index: votca-csg-1.2.2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- votca-csg-1.2.2.ebuild	25 Jan 2012 10:20:54 -0000	1.5
+++ votca-csg-1.2.2.ebuild	23 Feb 2012 17:01:36 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild,v 1.5 2012/01/25 10:20:54 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/votca-csg-1.2.2.ebuild,v 1.6 2012/02/23 17:01:36 xarthisius Exp $
 
 EAPI=4
 
@@ -36,7 +36,7 @@
 	app-shells/bash"
 
 DEPEND="${RDEPEND}
-	doc? ( app-doc/doxygen[-nodot] )
+	doc? ( || ( <app-doc/doxygen-1.7.6.1[-nodot] >=app-doc/doxygen-1.7.6.1[dot] ) )
 	>=app-text/txt2tags-2.5
 	dev-util/pkgconfig"
 



1.18                 sci-chemistry/votca-csg/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/votca-csg/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	5 Feb 2012 01:14:07 -0000	1.17
+++ ChangeLog	23 Feb 2012 17:01:36 -0000	1.18
@@ -1,6 +1,10 @@
 # ChangeLog for sci-chemistry/votca-csg
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/ChangeLog,v 1.17 2012/02/05 01:14:07 ottxor Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/votca-csg/ChangeLog,v 1.18 2012/02/23 17:01:36 xarthisius Exp $
+
+  23 Feb 2012; Kacper Kowalik <xarthisius@gentoo.org> votca-csg-1.2.2.ebuild:
+  Fix dependency on app-doc/doxygen wrt converting useflags 'nodot' to 'dot'.
+  Fixes bug 405451 by Marien Zwart <marienz@gentoo.org>
 
   05 Feb 2012; Christoph Junghans <ottxor@gentoo.org> -votca-csg-1.2.1.ebuild:
   remove old






^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-02-23 17:01 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-25 10:20 [gentoo-commits] gentoo-x86 commit in sci-chemistry/votca-csg: votca-csg-1.2.2.ebuild ChangeLog Thomas Kahle (tomka)
  -- strict thread matches above, loose matches on Subject: below --
2012-02-23 17:01 Kacper Kowalik (xarthisius)
2012-01-25  2:24 Christoph Junghans (ottxor)
2012-01-17 13:52 Agostino Sarubbo (ago)
2012-01-13  1:30 Christoph Junghans (ottxor)
2012-01-11  4:11 Christoph Junghans (ottxor)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox