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 | 120be162f8fe0ae210dacb4ef8df90c89e4b72c6 (patch) | |
tree | ebb9357e42aff8b3bb1425aeda42322b29f0380b /app-text | |
parent | Update dependencies based on the recent work on net-im/kopete. Fix modular X ... (diff) | |
download | historical-120be162f8fe0ae210dacb4ef8df90c89e4b72c6.tar.gz historical-120be162f8fe0ae210dacb4ef8df90c89e4b72c6.tar.bz2 historical-120be162f8fe0ae210dacb4ef8df90c89e4b72c6.zip |
Force LC_ALL to empty when running tests; bug #125375
Package-Manager: portage-2.0.54
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/hunspell/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/hunspell/Manifest | 10 | ||||
-rw-r--r-- | app-text/hunspell/hunspell-1.1.4.ebuild | 9 |
3 files changed, 17 insertions, 7 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..cecd57a385cb 100644 --- a/app-text/hunspell/Manifest +++ b/app-text/hunspell/Manifest @@ -1,17 +1,17 @@ -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 -MD5 6b522691a003ebaed94e571a789ee79a ChangeLog 555 +MD5 ef896bc25c2df06bddb124913459f75a ChangeLog 687 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 4fd405bbcf8b40c58df90753885f29d6 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 +iD8DBQFEDd/dZfNLSOUrp0sRAmMWAJ4okwst+DM9XtI1g0kphdsuDsESEwCfbj4r +al1mC5vpdtotENyB4FGxZ7w= +=fM+y -----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 |