diff options
author | Peter Johanson <latexer@gentoo.org> | 2005-11-14 06:51:42 +0000 |
---|---|---|
committer | Peter Johanson <latexer@gentoo.org> | 2005-11-14 06:51:42 +0000 |
commit | 434ffe3ca6d8eeef119c60c5f9041f377823c1cd (patch) | |
tree | 95c5178c6683c62e8d8d46b6bd51862eef25e9b4 /dev-lang/boo | |
parent | Bump. (diff) | |
download | historical-434ffe3ca6d8eeef119c60c5f9041f377823c1cd.tar.gz historical-434ffe3ca6d8eeef119c60c5f9041f377823c1cd.tar.bz2 historical-434ffe3ca6d8eeef119c60c5f9041f377823c1cd.zip |
Add error messages and die pre-emptively when an older version of boo is found present on the system when trying to install. See bug #108520.
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'dev-lang/boo')
-rw-r--r-- | dev-lang/boo/ChangeLog | 6 | ||||
-rw-r--r-- | dev-lang/boo/Manifest | 4 | ||||
-rw-r--r-- | dev-lang/boo/boo-0.7.0.1921.ebuild | 14 |
3 files changed, 19 insertions, 5 deletions
diff --git a/dev-lang/boo/ChangeLog b/dev-lang/boo/ChangeLog index 9083bae31aa0..510f3382aedc 100644 --- a/dev-lang/boo/ChangeLog +++ b/dev-lang/boo/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-lang/boo # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/boo/ChangeLog,v 1.8 2005/11/08 07:42:43 latexer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/boo/ChangeLog,v 1.9 2005/11/14 06:51:42 latexer Exp $ + + 14 Nov 2005; Peter Johanson <latexer@gentoo.org> boo-0.7.0.1921.ebuild: + Add error messages and die pre-emptively when an older version of boo is + found present on the system when trying to install. See bug #108520. 08 Nov 2005; Peter Johanson <latexer@gentoo.org> boo-0.7.0.1921.ebuild: Fix for resource/locale issue. See bug #109351. diff --git a/dev-lang/boo/Manifest b/dev-lang/boo/Manifest index 90d369919bc3..f69355e6ff63 100644 --- a/dev-lang/boo/Manifest +++ b/dev-lang/boo/Manifest @@ -1,10 +1,10 @@ MD5 a04defa7030d43d593bafbc609d3c757 boo-0.5.3.1544.ebuild 785 MD5 3df553e94423a0075a61a43a56dc6726 metadata.xml 256 -MD5 72820d04538ec36005c66f546cf077ff ChangeLog 1121 +MD5 3dad3687cfedb14aeacb11189db355e5 ChangeLog 1342 MD5 ff4a81e4a8fc1781063e4e3e4a3f987a boo-0.5.4.1629.ebuild 1004 MD5 051648b66e18bb0c06f435bc2a9ba272 boo-0.5.5.1651.ebuild 1007 MD5 73d55666859a1b72edc827bec07f0e77 boo-0.6.0.1858.ebuild 816 -MD5 30e235097202ccb30afb4f1dc239e9a4 boo-0.7.0.1921.ebuild 860 +MD5 93960942fe7065b528a0784dfa62d4b1 boo-0.7.0.1921.ebuild 1322 MD5 d8e8a5727bdfb8086ded71c915d905da files/digest-boo-0.5.3.1544 72 MD5 60be7aea7d4d4e9141c3043c9defef93 files/digest-boo-0.5.4.1629 72 MD5 6cdc9176e0de62aa279c4e2eee14438f files/digest-boo-0.5.5.1651 72 diff --git a/dev-lang/boo/boo-0.7.0.1921.ebuild b/dev-lang/boo/boo-0.7.0.1921.ebuild index 3862789e4a54..dcf6549f58a1 100644 --- a/dev-lang/boo/boo-0.7.0.1921.ebuild +++ b/dev-lang/boo/boo-0.7.0.1921.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/boo/boo-0.7.0.1921.ebuild,v 1.2 2005/11/08 07:42:43 latexer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/boo/boo-0.7.0.1921.ebuild,v 1.3 2005/11/14 06:51:42 latexer Exp $ inherit mono fdo-mime eutils @@ -20,8 +20,18 @@ DEPEND=">=dev-lang/mono-1.1.4 x11-misc/shared-mime-info >=x11-libs/gtksourceview-1.0.1" - src_unpack() { + if best_version "dev-lang/boo"; then + if ! has_version ">=dev-lang/boo-0.7.0.1921"; then + eerror "This version of boo has a problem compiling when an older" + eerror "of boo is present on the system. Please unmerge boo and" + eerror "then try emerging this version of boo. See bug #108520" + eerror "at https://bugs.gentoo.org/show_bug.cgi?id=108520 for more" + eerror "details." + die "Version of boo installed will cause compilation errors." + fi + fi + unpack ${A} cd ${S} } |