diff options
author | Kevin F. Quinn <kevquinn@gentoo.org> | 2006-03-07 19:24:23 +0000 |
---|---|---|
committer | Kevin F. Quinn <kevquinn@gentoo.org> | 2006-03-07 19:24:23 +0000 |
commit | e03c5c948c5b9841686a5ce8720d112cffd33114 (patch) | |
tree | 0a4798409da83397bed996195613164b312d1f2f /app-text/hunspell | |
parent | Update dependencies based on the recent work on net-im/kopete. Fix modular X ... (diff) | |
download | gentoo-2-e03c5c948c5b9841686a5ce8720d112cffd33114.tar.gz gentoo-2-e03c5c948c5b9841686a5ce8720d112cffd33114.tar.bz2 gentoo-2-e03c5c948c5b9841686a5ce8720d112cffd33114.zip |
Force LC_ALL to empty when running tests; bug #125375
(Portage version: 2.0.54)
Diffstat (limited to 'app-text/hunspell')
-rw-r--r-- | app-text/hunspell/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/hunspell/Manifest | 12 | ||||
-rw-r--r-- | app-text/hunspell/hunspell-1.1.4.ebuild | 9 |
3 files changed, 13 insertions, 13 deletions
diff --git a/app-text/hunspell/ChangeLog b/app-text/hunspell/ChangeLog index 8d183ecc77f7..49af13237270 100644 --- a/app-text/hunspell/ChangeLog +++ b/app-text/hunspell/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/hunspell # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/hunspell/ChangeLog,v 1.2 2006/03/06 17:29:08 kevquinn Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/hunspell/ChangeLog,v 1.3 2006/03/07 19:24:23 kevquinn Exp $ + + 07 Mar 2006; Kevin F. Quinn <kevquinn@gentoo.org> hunspell-1.1.4.ebuild: + Force LC_ALL to empty when running tests; bug #125375 *hunspell-1.1.4 (06 Mar 2006) diff --git a/app-text/hunspell/Manifest b/app-text/hunspell/Manifest index 05b1d6a4932f..b49d785b9065 100644 --- a/app-text/hunspell/Manifest +++ b/app-text/hunspell/Manifest @@ -1,17 +1,7 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - MD5 6b522691a003ebaed94e571a789ee79a ChangeLog 555 MD5 2ee23fc18433d16280f97a3d381ae78a files/digest-hunspell-1.1.3 66 MD5 f68502846fc6d13abf7ca3c160d4fa45 files/digest-hunspell-1.1.4 66 MD5 1d6c3ebe073637dc68dc5b3036177cb5 files/hunspell-1.1.3-renameexes.patch 4612 MD5 6c27bd8351e45b24f183ddca92c7fba8 hunspell-1.1.3.ebuild 1710 -MD5 91455aa6fc042837b38222cc51d72f5a hunspell-1.1.4.ebuild 1710 +MD5 45c77f9825146d3429b3cd3a589da622 hunspell-1.1.4.ebuild 1880 MD5 b86e3c93f969dbb4f433611cb0f6b0b0 metadata.xml 222 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.2.1 (GNU/Linux) - -iD8DBQFEDHNbZfNLSOUrp0sRAq5kAJ4tSy2z5yskJ8+CuVMic2KpdXC4JgCfQEXn -E4ZK50Z6hx7fVehDjkLHUuw= -=W7rw ------END PGP SIGNATURE----- diff --git a/app-text/hunspell/hunspell-1.1.4.ebuild b/app-text/hunspell/hunspell-1.1.4.ebuild index b1ae62807f52..98ee57288bd8 100644 --- a/app-text/hunspell/hunspell-1.1.4.ebuild +++ b/app-text/hunspell/hunspell-1.1.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/hunspell/hunspell-1.1.4.ebuild,v 1.1 2006/03/06 17:29:08 kevquinn Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/hunspell/hunspell-1.1.4.ebuild,v 1.2 2006/03/07 19:24:23 kevquinn Exp $ inherit eutils multilib @@ -41,6 +41,13 @@ src_compile() { emake || die "emake failed" } +src_test() { + # One of the tests doesn't like LC_ALL being set to encodings + # capable of expressing beta-S, so we simply clear it. + # bug #125375 + LC_ALL= make check +} + src_install() { emake DESTDIR=${D} install || die "emake install failed" dodoc AUTHORS ChangeLog NEWS README THANKS TODO |