diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2008-11-24 01:17:41 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2008-11-24 01:17:41 +0000 |
commit | aacd9b3268ddc9a1f3255f7bfbc1e6810d836df5 (patch) | |
tree | 1522592c4b7a74a9e3395ef63cc35910229eeecc /dev-util | |
parent | Bug #238129, the default behavior of built_with_use changed at some point. We... (diff) | |
download | gentoo-2-aacd9b3268ddc9a1f3255f7bfbc1e6810d836df5.tar.gz gentoo-2-aacd9b3268ddc9a1f3255f7bfbc1e6810d836df5.tar.bz2 gentoo-2-aacd9b3268ddc9a1f3255f7bfbc1e6810d836df5.zip |
Bug #238586, issue a warning for dev-util/subversion[dso].
(Portage version: 2.2_rc14/cvs/Linux 2.6.28-rc5-00117-g7f0f598 x86_64)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/git/ChangeLog | 5 | ||||
-rw-r--r-- | dev-util/git/git-1.6.0.4-r1.ebuild | 7 |
2 files changed, 10 insertions, 2 deletions
diff --git a/dev-util/git/ChangeLog b/dev-util/git/ChangeLog index 07c4470c9f7b..52d5e1a5554d 100644 --- a/dev-util/git/ChangeLog +++ b/dev-util/git/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-util/git # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/git/ChangeLog,v 1.301 2008/11/24 01:11:19 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/git/ChangeLog,v 1.302 2008/11/24 01:17:41 robbat2 Exp $ + + 24 Nov 2008; Robin H. Johnson <robbat2@gentoo.org> git-1.6.0.4-r1.ebuild: + Bug #238586, issue a warning for dev-util/subversion[dso]. 24 Nov 2008; Robin H. Johnson <robbat2@gentoo.org> git-1.5.4.5.ebuild, git-1.5.5.3.ebuild, git-1.5.5.3-r1.ebuild, git-1.5.5.4.ebuild, diff --git a/dev-util/git/git-1.6.0.4-r1.ebuild b/dev-util/git/git-1.6.0.4-r1.ebuild index 025620603fb2..3db51d9d424a 100644 --- a/dev-util/git/git-1.6.0.4-r1.ebuild +++ b/dev-util/git/git-1.6.0.4-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/git/git-1.6.0.4-r1.ebuild,v 1.2 2008/11/24 01:11:19 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/git/git-1.6.0.4-r1.ebuild,v 1.3 2008/11/24 01:17:41 robbat2 Exp $ inherit toolchain-funcs eutils elisp-common perl-module bash-completion @@ -55,6 +55,11 @@ pkg_setup() { if use webdav && ! use curl ; then ewarn "USE=webdav needs USE=curl. Ignoring" fi + if use subversion && has_version dev-util/subversion && built_with_use --missing false dev-util/subversion dso ; then + ewarn "Per Gentoo bugs #223747, #238586, when subversion is built" + ewarn "with USE=dso, there may be weird crashes in git-svn. You" + ewarn "have been warned." + fi } # This is needed because for some obscure reasons future calls to make don't |