* [gentoo-commits] gentoo-x86 commit in dev-util/cmake: ChangeLog cmake-2.8.1-r2.ebuild
@ 2010-05-27 9:27 Justin Lecher (jlec)
0 siblings, 0 replies; 11+ messages in thread
From: Justin Lecher (jlec) @ 2010-05-27 9:27 UTC (permalink / raw
To: gentoo-commits
jlec 10/05/27 09:27:52
Modified: ChangeLog
Added: cmake-2.8.1-r2.ebuild
Log:
Fix problem with detecting mpi libs through FindMPI module, commited on permission of scarabeus
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.134 dev-util/cmake/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.134&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.134&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?r1=1.133&r2=1.134
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v
retrieving revision 1.133
retrieving revision 1.134
diff -u -r1.133 -r1.134
--- ChangeLog 13 Apr 2010 09:21:44 -0000 1.133
+++ ChangeLog 27 May 2010 09:27:52 -0000 1.134
@@ -1,6 +1,12 @@
# ChangeLog for dev-util/cmake
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.133 2010/04/13 09:21:44 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.134 2010/05/27 09:27:52 jlec Exp $
+
+*cmake-2.8.1-r2 (27 May 2010)
+
+ 27 May 2010; Justin Lecher <jlec@gentoo.org> cmake-2.8.1-r1.ebuild,
+ +cmake-2.8.1-r2.ebuild, +files/cmake-2.8.1-mpi.patch:
+ Fixing problem with detecting mpi libs through FindMPI module
*cmake-2.8.1-r1 (13 Apr 2010)
1.1 dev-util/cmake/cmake-2.8.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?rev=1.1&content-type=text/plain
Index: cmake-2.8.1-r2.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header $
EAPI="3"
inherit elisp-common toolchain-funcs eutils versionator flag-o-matic base cmake-utils
MY_P="${PN}-$(replace_version_separator 3 - ${MY_PV})"
DESCRIPTION="Cross platform Make"
HOMEPAGE="http://www.cmake.org/"
SRC_URI="http://www.cmake.org/files/v$(get_version_component_range 1-2)/${MY_P}.tar.gz"
LICENSE="CMake"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
SLOT="0"
IUSE="emacs ncurses qt4 vim-syntax"
DEPEND="
>=net-misc/curl-7.20.0-r1[ssl]
>=dev-libs/expat-2.0.1
sys-libs/zlib
ncurses? ( sys-libs/ncurses )
qt4? ( x11-libs/qt-gui:4 )
"
RDEPEND="${DEPEND}
emacs? ( virtual/emacs )
vim-syntax? (
|| (
app-editors/vim
app-editors/gvim
)
)
"
SITEFILE="50${PN}-gentoo.el"
VIMFILE="${PN}.vim"
S="${WORKDIR}/${MY_P}"
CMAKE_IN_SOURCE_BUILD=1
PATCHES=(
"${FILESDIR}"/${PN}-FindPythonLibs.patch
"${FILESDIR}"/${PN}-FindPythonInterp.patch
"${FILESDIR}"/${PN}-2.6.0-interix.patch
"${FILESDIR}"/${PN}-2.6.3-darwin-bundle.patch
"${FILESDIR}"/${PN}-2.6.3-no-duplicates-in-rpath.patch
"${FILESDIR}"/${PN}-2.6.3-fix_broken_lfs_on_aix.patch
"${FILESDIR}"/${PN}-2.8.0-darwin-default-install_name.patch
"${FILESDIR}"/${PN}-2.8.0-darwin-no-app-with-qt.patch
"${FILESDIR}"/${PN}-2.8.1-more-no_host_paths.patch
"${FILESDIR}"/${PN}-2.8.1-FindBoost.patch
"${FILESDIR}"/${PN}-2.8.1-libform.patch
"${FILESDIR}"/${PN}-2.8.1-mpi.patch
)
src_prepare() {
base_src_prepare
# Add gcc libs to the default link paths
sed -i \
-e "s|@GENTOO_PORTAGE_GCCLIBDIR@|${EPREFIX}/usr/${CHOST}/lib|g" \
-e "s|@GENTOO_PORTAGE_EPREFIX@|${EPREFIX}/|g" \
Modules/Platform/{UnixPaths,Darwin}.cmake || die "sed failed"
}
src_configure() {
if [[ "$(gcc-major-version)" -eq "3" ]] ; then
append-flags "-fno-stack-protector"
fi
bootstrap=0
has_version ">=dev-util/cmake-2.6.1" || bootstrap=1
if [[ ${bootstrap} = 0 ]]; then
# Required version of CMake found, now test if it works
cmake --version &> /dev/null || bootstrap=1
fi
if [[ ${bootstrap} = 1 ]]; then
local qt_arg par_arg
tc-export CC CXX LD
if use qt4; then
qt_arg="--qt-gui"
else
qt_arg="--no-qt-gui"
fi
echo $MAKEOPTS | egrep -o '(\-j|\-\-jobs)(=?|[[:space:]]*)[[:digit:]]+' > /dev/null
if [ $? -eq 0 ]; then
par_arg=$(echo $MAKEOPTS | egrep -o '(\-j|\-\-jobs)(=?|[[:space:]]*)[[:digit:]]+' | egrep -o '[[:digit:]]+')
par_arg="--parallel=${par_arg}"
else
par_arg="--parallel=1"
fi
./bootstrap \
--system-libs \
--prefix="${EPREFIX}"/usr \
--docdir=/share/doc/${PF} \
--datadir=/share/${PN} \
--mandir=/share/man \
"$qt_arg" \
"$par_arg" || die "./bootstrap failed"
else
# this is way much faster so we should prefer it if some cmake is
# around.
local mycmakeargs=(
-DCMAKE_USE_SYSTEM_LIBRARIES=ON
-DCMAKE_INSTALL_PREFIX="${EPREFIX}"/usr
-DCMAKE_DOC_DIR=/share/doc/${PF}
-DCMAKE_MAN_DIR=/share/man
-DCMAKE_DATA_DIR=/share/${PN}
$(cmake-utils_use_build ncurses CursesDialog)
$(cmake-utils_use_build qt4 QtDialog)
)
cmake-utils_src_configure
fi
}
src_compile() {
cmake-utils_src_compile
if use emacs; then
elisp-compile Docs/cmake-mode.el || die "elisp compile failed"
fi
}
src_test() {
emake test || die "Tests failed"
}
src_install() {
cmake-utils_src_install
if use emacs; then
elisp-install ${PN} Docs/cmake-mode.el Docs/cmake-mode.elc || die "elisp-install failed"
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
fi
if use vim-syntax; then
insinto /usr/share/vim/vimfiles/syntax
doins Docs/cmake-syntax.vim
insinto /usr/share/vim/vimfiles/indent
doins Docs/cmake-indent.vim
insinto /usr/share/vim/vimfiles/ftdetect
doins "${FILESDIR}/${VIMFILE}"
fi
}
pkg_postinst() {
use emacs && elisp-site-regen
}
pkg_postrm() {
use emacs && elisp-site-regen
}
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/cmake: ChangeLog cmake-2.8.1-r2.ebuild
@ 2010-07-04 12:06 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 11+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-07-04 12:06 UTC (permalink / raw
To: gentoo-commits
ssuominen 10/07/04 12:06:54
Modified: ChangeLog cmake-2.8.1-r2.ebuild
Log:
ppc64 stable wrt #325845
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.135 dev-util/cmake/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.135&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.135&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?r1=1.134&r2=1.135
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v
retrieving revision 1.134
retrieving revision 1.135
diff -u -r1.134 -r1.135
--- ChangeLog 27 May 2010 09:27:52 -0000 1.134
+++ ChangeLog 4 Jul 2010 12:06:53 -0000 1.135
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/cmake
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.134 2010/05/27 09:27:52 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.135 2010/07/04 12:06:53 ssuominen Exp $
+
+ 04 Jul 2010; Samuli Suominen <ssuominen@gentoo.org> cmake-2.8.1-r2.ebuild:
+ ppc64 stable wrt #325845
*cmake-2.8.1-r2 (27 May 2010)
1.2 dev-util/cmake/cmake-2.8.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?r1=1.1&r2=1.2
Index: cmake-2.8.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- cmake-2.8.1-r2.ebuild 27 May 2010 09:27:52 -0000 1.1
+++ cmake-2.8.1-r2.ebuild 4 Jul 2010 12:06:53 -0000 1.2
@@ -13,7 +13,7 @@
SRC_URI="http://www.cmake.org/files/v$(get_version_component_range 1-2)/${MY_P}.tar.gz"
LICENSE="CMake"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
SLOT="0"
IUSE="emacs ncurses qt4 vim-syntax"
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/cmake: ChangeLog cmake-2.8.1-r2.ebuild
@ 2010-07-06 21:58 Markos Chandras (hwoarang)
0 siblings, 0 replies; 11+ messages in thread
From: Markos Chandras (hwoarang) @ 2010-07-06 21:58 UTC (permalink / raw
To: gentoo-commits
hwoarang 10/07/06 21:58:46
Modified: ChangeLog cmake-2.8.1-r2.ebuild
Log:
Stable on amd64 wrt bug #325845
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.136 dev-util/cmake/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.136&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.136&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?r1=1.135&r2=1.136
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v
retrieving revision 1.135
retrieving revision 1.136
diff -u -r1.135 -r1.136
--- ChangeLog 4 Jul 2010 12:06:53 -0000 1.135
+++ ChangeLog 6 Jul 2010 21:58:46 -0000 1.136
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/cmake
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.135 2010/07/04 12:06:53 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.136 2010/07/06 21:58:46 hwoarang Exp $
+
+ 06 Jul 2010; Markos Chandras <hwoarang@gentoo.org> cmake-2.8.1-r2.ebuild:
+ Stable on amd64 wrt bug #325845
04 Jul 2010; Samuli Suominen <ssuominen@gentoo.org> cmake-2.8.1-r2.ebuild:
ppc64 stable wrt #325845
1.3 dev-util/cmake/cmake-2.8.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?r1=1.2&r2=1.3
Index: cmake-2.8.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- cmake-2.8.1-r2.ebuild 4 Jul 2010 12:06:53 -0000 1.2
+++ cmake-2.8.1-r2.ebuild 6 Jul 2010 21:58:46 -0000 1.3
@@ -13,7 +13,7 @@
SRC_URI="http://www.cmake.org/files/v$(get_version_component_range 1-2)/${MY_P}.tar.gz"
LICENSE="CMake"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
SLOT="0"
IUSE="emacs ncurses qt4 vim-syntax"
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/cmake: ChangeLog cmake-2.8.1-r2.ebuild
@ 2010-07-07 0:47 Maciej Mrozowski (reavertm)
0 siblings, 0 replies; 11+ messages in thread
From: Maciej Mrozowski (reavertm) @ 2010-07-07 0:47 UTC (permalink / raw
To: gentoo-commits
reavertm 10/07/07 00:47:22
Modified: ChangeLog cmake-2.8.1-r2.ebuild
Log:
export JAVA_HOME gathered from java-config, bug 315229
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.137 dev-util/cmake/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.137&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.137&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?r1=1.136&r2=1.137
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v
retrieving revision 1.136
retrieving revision 1.137
diff -u -r1.136 -r1.137
--- ChangeLog 6 Jul 2010 21:58:46 -0000 1.136
+++ ChangeLog 7 Jul 2010 00:47:22 -0000 1.137
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/cmake
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.136 2010/07/06 21:58:46 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.137 2010/07/07 00:47:22 reavertm Exp $
+
+ 07 Jul 2010; Maciej Mrozowski <reavertm@gentoo.org> cmake-2.8.1-r2.ebuild:
+ export JAVA_HOME gathered from java-config, bug 315229
06 Jul 2010; Markos Chandras <hwoarang@gentoo.org> cmake-2.8.1-r2.ebuild:
Stable on amd64 wrt bug #325845
1.4 dev-util/cmake/cmake-2.8.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?r1=1.3&r2=1.4
Index: cmake-2.8.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- cmake-2.8.1-r2.ebuild 6 Jul 2010 21:58:46 -0000 1.3
+++ cmake-2.8.1-r2.ebuild 7 Jul 2010 00:47:22 -0000 1.4
@@ -71,6 +71,10 @@
append-flags "-fno-stack-protector"
fi
+ # make things work with gentoo java setup
+ # in case java-config cannot be run, the variable just becomes unset
+ export JAVA_HOME=$(java-config -g JAVA_HOME 2> /dev/null)
+
bootstrap=0
has_version ">=dev-util/cmake-2.6.1" || bootstrap=1
if [[ ${bootstrap} = 0 ]]; then
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/cmake: ChangeLog cmake-2.8.1-r2.ebuild
@ 2010-07-27 2:14 Jeroen Roovers (jer)
0 siblings, 0 replies; 11+ messages in thread
From: Jeroen Roovers (jer) @ 2010-07-27 2:14 UTC (permalink / raw
To: gentoo-commits
jer 10/07/27 02:14:55
Modified: ChangeLog cmake-2.8.1-r2.ebuild
Log:
Stable for HPPA PPC (bug #325845).
(Portage version: 2.2_rc67/cvs/Linux i686)
Revision Changes Path
1.138 dev-util/cmake/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.138&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.138&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?r1=1.137&r2=1.138
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v
retrieving revision 1.137
retrieving revision 1.138
diff -u -r1.137 -r1.138
--- ChangeLog 7 Jul 2010 00:47:22 -0000 1.137
+++ ChangeLog 27 Jul 2010 02:14:55 -0000 1.138
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/cmake
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.137 2010/07/07 00:47:22 reavertm Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.138 2010/07/27 02:14:55 jer Exp $
+
+ 27 Jul 2010; Jeroen Roovers <jer@gentoo.org> cmake-2.8.1-r2.ebuild:
+ Stable for HPPA PPC (bug #325845).
07 Jul 2010; Maciej Mrozowski <reavertm@gentoo.org> cmake-2.8.1-r2.ebuild:
export JAVA_HOME gathered from java-config, bug 315229
1.5 dev-util/cmake/cmake-2.8.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?r1=1.4&r2=1.5
Index: cmake-2.8.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- cmake-2.8.1-r2.ebuild 7 Jul 2010 00:47:22 -0000 1.4
+++ cmake-2.8.1-r2.ebuild 27 Jul 2010 02:14:55 -0000 1.5
@@ -13,7 +13,7 @@
SRC_URI="http://www.cmake.org/files/v$(get_version_component_range 1-2)/${MY_P}.tar.gz"
LICENSE="CMake"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
SLOT="0"
IUSE="emacs ncurses qt4 vim-syntax"
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/cmake: ChangeLog cmake-2.8.1-r2.ebuild
@ 2010-08-06 12:34 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 11+ messages in thread
From: Samuli Suominen (ssuominen) @ 2010-08-06 12:34 UTC (permalink / raw
To: gentoo-commits
ssuominen 10/08/06 12:34:09
Modified: ChangeLog cmake-2.8.1-r2.ebuild
Log:
Run bootstrap with FEATURES="test" wrt #315223 by Thomas Kahle.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Revision Changes Path
1.139 dev-util/cmake/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.139&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.139&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?r1=1.138&r2=1.139
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v
retrieving revision 1.138
retrieving revision 1.139
diff -u -r1.138 -r1.139
--- ChangeLog 27 Jul 2010 02:14:55 -0000 1.138
+++ ChangeLog 6 Aug 2010 12:34:09 -0000 1.139
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/cmake
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.138 2010/07/27 02:14:55 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.139 2010/08/06 12:34:09 ssuominen Exp $
+
+ 06 Aug 2010; Samuli Suominen <ssuominen@gentoo.org> cmake-2.8.1-r2.ebuild:
+ Run bootstrap with FEATURES="test" wrt #315223 by Thomas Kahle.
27 Jul 2010; Jeroen Roovers <jer@gentoo.org> cmake-2.8.1-r2.ebuild:
Stable for HPPA PPC (bug #325845).
1.6 dev-util/cmake/cmake-2.8.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?r1=1.5&r2=1.6
Index: cmake-2.8.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- cmake-2.8.1-r2.ebuild 27 Jul 2010 02:14:55 -0000 1.5
+++ cmake-2.8.1-r2.ebuild 6 Aug 2010 12:34:09 -0000 1.6
@@ -82,6 +82,8 @@
cmake --version &> /dev/null || bootstrap=1
fi
+ use test && bootstrap=1 #315223
+
if [[ ${bootstrap} = 1 ]]; then
local qt_arg par_arg
tc-export CC CXX LD
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/cmake: ChangeLog cmake-2.8.1-r2.ebuild
@ 2010-08-06 14:26 Christian Faulhammer (fauli)
0 siblings, 0 replies; 11+ messages in thread
From: Christian Faulhammer (fauli) @ 2010-08-06 14:26 UTC (permalink / raw
To: gentoo-commits
fauli 10/08/06 14:26:17
Modified: ChangeLog cmake-2.8.1-r2.ebuild
Log:
stable x86, bug 325845
(Portage version: 2.1.8.3/cvs/Linux i686)
Revision Changes Path
1.140 dev-util/cmake/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.140&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.140&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?r1=1.139&r2=1.140
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v
retrieving revision 1.139
retrieving revision 1.140
diff -u -r1.139 -r1.140
--- ChangeLog 6 Aug 2010 12:34:09 -0000 1.139
+++ ChangeLog 6 Aug 2010 14:26:17 -0000 1.140
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/cmake
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.139 2010/08/06 12:34:09 ssuominen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.140 2010/08/06 14:26:17 fauli Exp $
+
+ 06 Aug 2010; Christian Faulhammer <fauli@gentoo.org>
+ cmake-2.8.1-r2.ebuild:
+ stable x86, bug 325845
06 Aug 2010; Samuli Suominen <ssuominen@gentoo.org> cmake-2.8.1-r2.ebuild:
Run bootstrap with FEATURES="test" wrt #315223 by Thomas Kahle.
1.7 dev-util/cmake/cmake-2.8.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?r1=1.6&r2=1.7
Index: cmake-2.8.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- cmake-2.8.1-r2.ebuild 6 Aug 2010 12:34:09 -0000 1.6
+++ cmake-2.8.1-r2.ebuild 6 Aug 2010 14:26:17 -0000 1.7
@@ -13,7 +13,7 @@
SRC_URI="http://www.cmake.org/files/v$(get_version_component_range 1-2)/${MY_P}.tar.gz"
LICENSE="CMake"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
SLOT="0"
IUSE="emacs ncurses qt4 vim-syntax"
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/cmake: ChangeLog cmake-2.8.1-r2.ebuild
@ 2010-08-11 21:57 Markus Meier (maekke)
0 siblings, 0 replies; 11+ messages in thread
From: Markus Meier (maekke) @ 2010-08-11 21:57 UTC (permalink / raw
To: gentoo-commits
maekke 10/08/11 21:57:09
Modified: ChangeLog cmake-2.8.1-r2.ebuild
Log:
arm stable, bug #325845
(Portage version: 2.2_rc67/cvs/Linux i686)
Revision Changes Path
1.142 dev-util/cmake/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.142&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.142&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?r1=1.141&r2=1.142
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v
retrieving revision 1.141
retrieving revision 1.142
diff -u -r1.141 -r1.142
--- ChangeLog 10 Aug 2010 12:58:19 -0000 1.141
+++ ChangeLog 11 Aug 2010 21:57:08 -0000 1.142
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/cmake
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.141 2010/08/10 12:58:19 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.142 2010/08/11 21:57:08 maekke Exp $
+
+ 11 Aug 2010; Markus Meier <maekke@gentoo.org> cmake-2.8.1-r2.ebuild:
+ arm stable, bug #325845
10 Aug 2010; Tomáš Chvátal <scarabeus@gentoo.org>
-files/cmake-2.8.0-more-no_host_paths.patch, -cmake-2.8.1.ebuild,
1.8 dev-util/cmake/cmake-2.8.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?r1=1.7&r2=1.8
Index: cmake-2.8.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- cmake-2.8.1-r2.ebuild 6 Aug 2010 14:26:17 -0000 1.7
+++ cmake-2.8.1-r2.ebuild 11 Aug 2010 21:57:08 -0000 1.8
@@ -13,7 +13,7 @@
SRC_URI="http://www.cmake.org/files/v$(get_version_component_range 1-2)/${MY_P}.tar.gz"
LICENSE="CMake"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
SLOT="0"
IUSE="emacs ncurses qt4 vim-syntax"
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/cmake: ChangeLog cmake-2.8.1-r2.ebuild
@ 2010-09-10 13:55 Tobias Klausmann (klausman)
0 siblings, 0 replies; 11+ messages in thread
From: Tobias Klausmann (klausman) @ 2010-09-10 13:55 UTC (permalink / raw
To: gentoo-commits
klausman 10/09/10 13:55:44
Modified: ChangeLog cmake-2.8.1-r2.ebuild
Log:
Stable on alpha, bug #325845
(Portage version: 2.1.9.2/cvs/Linux x86_64)
Revision Changes Path
1.143 dev-util/cmake/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.143&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.143&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?r1=1.142&r2=1.143
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v
retrieving revision 1.142
retrieving revision 1.143
diff -u -r1.142 -r1.143
--- ChangeLog 11 Aug 2010 21:57:08 -0000 1.142
+++ ChangeLog 10 Sep 2010 13:55:44 -0000 1.143
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/cmake
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.142 2010/08/11 21:57:08 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.143 2010/09/10 13:55:44 klausman Exp $
+
+ 10 Sep 2010; Tobias Klausmann <klausman@gentoo.org> cmake-2.8.1-r2.ebuild:
+ Stable on alpha, bug #325845
11 Aug 2010; Markus Meier <maekke@gentoo.org> cmake-2.8.1-r2.ebuild:
arm stable, bug #325845
1.9 dev-util/cmake/cmake-2.8.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?r1=1.8&r2=1.9
Index: cmake-2.8.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- cmake-2.8.1-r2.ebuild 11 Aug 2010 21:57:08 -0000 1.8
+++ cmake-2.8.1-r2.ebuild 10 Sep 2010 13:55:44 -0000 1.9
@@ -13,7 +13,7 @@
SRC_URI="http://www.cmake.org/files/v$(get_version_component_range 1-2)/${MY_P}.tar.gz"
LICENSE="CMake"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
SLOT="0"
IUSE="emacs ncurses qt4 vim-syntax"
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/cmake: ChangeLog cmake-2.8.1-r2.ebuild
@ 2010-09-11 15:13 Raul Porcel (armin76)
0 siblings, 0 replies; 11+ messages in thread
From: Raul Porcel (armin76) @ 2010-09-11 15:13 UTC (permalink / raw
To: gentoo-commits
armin76 10/09/11 15:13:50
Modified: ChangeLog cmake-2.8.1-r2.ebuild
Log:
ia64/s390/sh/sparc stable wrt #325845
(Portage version: 2.1.8.3/cvs/Linux ia64)
Revision Changes Path
1.144 dev-util/cmake/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.144&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.144&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?r1=1.143&r2=1.144
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v
retrieving revision 1.143
retrieving revision 1.144
diff -u -r1.143 -r1.144
--- ChangeLog 10 Sep 2010 13:55:44 -0000 1.143
+++ ChangeLog 11 Sep 2010 15:13:49 -0000 1.144
@@ -1,6 +1,9 @@
# ChangeLog for dev-util/cmake
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.143 2010/09/10 13:55:44 klausman Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.144 2010/09/11 15:13:49 armin76 Exp $
+
+ 11 Sep 2010; Raúl Porcel <armin76@gentoo.org> cmake-2.8.1-r2.ebuild:
+ ia64/s390/sh/sparc stable wrt #325845
10 Sep 2010; Tobias Klausmann <klausman@gentoo.org> cmake-2.8.1-r2.ebuild:
Stable on alpha, bug #325845
1.10 dev-util/cmake/cmake-2.8.1-r2.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild?r1=1.9&r2=1.10
Index: cmake-2.8.1-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/cmake-2.8.1-r2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- cmake-2.8.1-r2.ebuild 10 Sep 2010 13:55:44 -0000 1.9
+++ cmake-2.8.1-r2.ebuild 11 Sep 2010 15:13:49 -0000 1.10
@@ -13,7 +13,7 @@
SRC_URI="http://www.cmake.org/files/v$(get_version_component_range 1-2)/${MY_P}.tar.gz"
LICENSE="CMake"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~ppc-aix ~sparc-fbsd ~x86-fbsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
SLOT="0"
IUSE="emacs ncurses qt4 vim-syntax"
^ permalink raw reply [flat|nested] 11+ messages in thread
* [gentoo-commits] gentoo-x86 commit in dev-util/cmake: ChangeLog cmake-2.8.1-r2.ebuild
@ 2011-05-08 11:33 Tomas Chvatal (scarabeus)
0 siblings, 0 replies; 11+ messages in thread
From: Tomas Chvatal (scarabeus) @ 2011-05-08 11:33 UTC (permalink / raw
To: gentoo-commits
scarabeus 11/05/08 11:33:39
Modified: ChangeLog
Removed: cmake-2.8.1-r2.ebuild
Log:
Drop older stuff. Keep just latest stable.
(Portage version: 2.2.0_alpha31/cvs/Linux x86_64)
Revision Changes Path
1.168 dev-util/cmake/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.168&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?rev=1.168&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/cmake/ChangeLog?r1=1.167&r2=1.168
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v
retrieving revision 1.167
retrieving revision 1.168
diff -u -r1.167 -r1.168
--- ChangeLog 7 May 2011 16:52:33 -0000 1.167
+++ ChangeLog 8 May 2011 11:33:38 -0000 1.168
@@ -1,6 +1,18 @@
# ChangeLog for dev-util/cmake
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.167 2011/05/07 16:52:33 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.168 2011/05/08 11:33:38 scarabeus Exp $
+
+ 08 May 2011; Tomáš Chvátal <scarabeus@gentoo.org>
+ -files/cmake-2.6.0-interix.patch, -files/cmake-2.6.4-FindBoost.patch,
+ -files/cmake-2.8.0-darwin-no-app-with-qt.patch, -cmake-2.8.1-r2.ebuild,
+ -files/cmake-2.8.1-FindBoost.patch,
+ -files/cmake-2.8.1-more-no_host_paths.patch, -files/cmake-2.8.1-mpi.patch,
+ -files/cmake-2.8.3-FindLibArchive.patch,
+ -files/cmake-2.8.3-FindPythonInterp.patch,
+ -files/cmake-2.8.3-FindPythonLibs.patch,
+ -files/cmake-2.8.3-buffer_overflow.patch, -files/cmake-FindJNI.patch,
+ -files/cmake-FindPythonInterp.patch, -files/cmake-FindPythonLibs.patch:
+ Drop older stuff. Keep just latest stable.
07 May 2011; Raúl Porcel <armin76@gentoo.org> cmake-2.8.4-r1.ebuild:
ia64/s390/sh/sparc stable wrt #357771
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2011-05-08 11:33 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-06 12:34 [gentoo-commits] gentoo-x86 commit in dev-util/cmake: ChangeLog cmake-2.8.1-r2.ebuild Samuli Suominen (ssuominen)
-- strict thread matches above, loose matches on Subject: below --
2011-05-08 11:33 Tomas Chvatal (scarabeus)
2010-09-11 15:13 Raul Porcel (armin76)
2010-09-10 13:55 Tobias Klausmann (klausman)
2010-08-11 21:57 Markus Meier (maekke)
2010-08-06 14:26 Christian Faulhammer (fauli)
2010-07-27 2:14 Jeroen Roovers (jer)
2010-07-07 0:47 Maciej Mrozowski (reavertm)
2010-07-06 21:58 Markos Chandras (hwoarang)
2010-07-04 12:06 Samuli Suominen (ssuominen)
2010-05-27 9:27 Justin Lecher (jlec)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox