ALT Linux Sisyphus discussions
 help / color / mirror / Atom feed
* [sisyphus] Сборка пакета perl-Text-Aspell
@ 2004-11-10  9:45 Alexander Kuprin
  2004-11-14 11:51 ` [sisyphus] " Alexey Tourbin
  0 siblings, 1 reply; 5+ messages in thread
From: Alexander Kuprin @ 2004-11-10  9:45 UTC (permalink / raw)
  To: sisyphus


Добрый день всем.

Народ, помогите, плз. Ковыряюсь с eGroupWare и хочу проверить как в 
модуле Mail работает спеллинг. EGW требует ... нет, просит (он и без 
него работает) модуль Text::Aspell. В Сизифусе такого пакета нет, нашёл 
в Сети perl-Text-Aspell-0.04-1mdk.src.rpm. Кое-где пришлось подправить 
спек. В конце концов взял за основу спек perl-Iconv. В общем сборка 
доходит до проверки возможностей модуля (выполняется скрипт test.t) и 
получается следующее:

+ : running tests
+ LD_BIND_NOW=1
+ PERL_DL_NONLAZY=1
+ make test
make: Entering directory `/home/alex/RPM/BUILD/Text-Aspell-0.04'
PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" 
"test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
t/test....FAILED tests 15-17, 20
        Failed 4/21 tests, 80.95% okay
Failed Test Stat Wstat Total Fail  Failed  List of Failed
-------------------------------------------------------------------------------
t/test.t                  21    4  19.05%  15-17 20
Failed 1/1 test scripts, 0.00% okay. 4/21 subtests failed, 80.95% okay.
make: *** [test_dynamic] Error 255
make: Leaving directory `/home/alex/RPM/BUILD/Text-Aspell-0.04'
error: Bad exit status from /home/alex/tmp/rpm-tmp.13293 (%build)

Что не нравится в тестах 15-17 и 20 я не совсем понимаю. :-\ Буду 
признателен, если кто-то подскажет как это побороть. 

-- 
WBR, Alexander Kuprin


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [sisyphus] Re: Сборка пакета perl-Text-Aspell
  2004-11-10  9:45 [sisyphus] Сборка пакета perl-Text-Aspell Alexander Kuprin
@ 2004-11-14 11:51 ` Alexey Tourbin
  2004-11-27 23:49   ` Alexey Tourbin
  0 siblings, 1 reply; 5+ messages in thread
From: Alexey Tourbin @ 2004-11-14 11:51 UTC (permalink / raw)
  To: sisyphus

[-- Attachment #1: Type: text/plain, Size: 1021 bytes --]

On Wed, Nov 10, 2004 at 11:45:37AM +0200, Alexander Kuprin wrote:
> make: Entering directory `/home/alex/RPM/BUILD/Text-Aspell-0.04'
> PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" 
> "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
> t/test....FAILED tests 15-17, 20
>         Failed 4/21 tests, 80.95% okay

$ cd /home/alex/RPM/BUILD/Text-Aspell-0.04
$ perl -Mblib t/*.t

?

> Failed Test Stat Wstat Total Fail  Failed  List of Failed
> -------------------------------------------------------------------------------
> t/test.t                  21    4  19.05%  15-17 20
> Failed 1/1 test scripts, 0.00% okay. 4/21 subtests failed, 80.95% okay.
> make: *** [test_dynamic] Error 255
> make: Leaving directory `/home/alex/RPM/BUILD/Text-Aspell-0.04'
> error: Bad exit status from /home/alex/tmp/rpm-tmp.13293 (%build)
> 
> Что не нравится в тестах 15-17 и 20 я не совсем понимаю. :-\ Буду 
> признателен, если кто-то подскажет как это побороть. 
> 
> -- 
> WBR, Alexander Kuprin

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [sisyphus] Re: Сборка пакета perl-Text-Aspell
  2004-11-14 11:51 ` [sisyphus] " Alexey Tourbin
@ 2004-11-27 23:49   ` Alexey Tourbin
  2004-11-28  7:15     ` Alexander Kuprin
  0 siblings, 1 reply; 5+ messages in thread
From: Alexey Tourbin @ 2004-11-27 23:49 UTC (permalink / raw)
  To: sisyphus

[-- Attachment #1: Type: text/plain, Size: 1012 bytes --]

On Sun, Nov 14, 2004 at 02:51:22PM +0300, Alexey Tourbin wrote:
> On Wed, Nov 10, 2004 at 11:45:37AM +0200, Alexander Kuprin wrote:
> > make: Entering directory `/home/alex/RPM/BUILD/Text-Aspell-0.04'
> > PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" 
> > "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
> > t/test....FAILED tests 15-17, 20
> >         Failed 4/21 tests, 80.95% okay

> $ cd /home/alex/RPM/BUILD/Text-Aspell-0.04
> $ perl -Mblib t/*.t

$ perl -Mblib t/test.t |grep 'not ok'
not ok 16 The method "clear" is unimplemented in "WritableDict".
not ok 17 testt testy test tester tasty tests taste test's
not ok 20
$

clear_session не работает, из-за этого последующие тесты валятся.

В aspell кто-нибудь разбирается?  Кажется, это в
aspell-0.60/modules/speller/default/data.cpp:

  PosibErr<void> Dictionary::clear()
  {
    return make_err(unimplemented_method, "clear", class_name);
  }

Раньше работало, а в новых версиях стало unimplemented.
Отстой!

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [sisyphus] Re: Сборка пакета perl-Text-Aspell
  2004-11-27 23:49   ` Alexey Tourbin
@ 2004-11-28  7:15     ` Alexander Kuprin
  2004-11-28 15:08       ` Alexey Tourbin
  0 siblings, 1 reply; 5+ messages in thread
From: Alexander Kuprin @ 2004-11-28  7:15 UTC (permalink / raw)
  To: sisyphus

On Sunday 28 November 2004 01:49, Alexey Tourbin wrote:

> clear_session не работает, из-за этого последующие тесты валятся.
>
> В aspell кто-нибудь разбирается?  

Хороший вопрос. Может "настучать" разрабочикам aspell?

> Кажется, это в 
> aspell-0.60/modules/speller/default/data.cpp:
>
>   PosibErr<void> Dictionary::clear()
>   {
>     return make_err(unimplemented_method, "clear", class_name);
>   }
>
> Раньше работало, а в новых версиях стало unimplemented.
> Отстой!

-- 
WBR, Alexander Kuprin


^ permalink raw reply	[flat|nested] 5+ messages in thread

* [sisyphus] Re: Сборка пакета perl-Text-Aspell
  2004-11-28  7:15     ` Alexander Kuprin
@ 2004-11-28 15:08       ` Alexey Tourbin
  0 siblings, 0 replies; 5+ messages in thread
From: Alexey Tourbin @ 2004-11-28 15:08 UTC (permalink / raw)
  To: sisyphus

[-- Attachment #1: Type: text/plain, Size: 790 bytes --]

On Sun, Nov 28, 2004 at 09:15:01AM +0200, Alexander Kuprin wrote:
> > clear_session не работает, из-за этого последующие тесты валятся.
> >
> > В aspell кто-нибудь разбирается?  
> 
> Хороший вопрос. Может "настучать" разрабочикам aspell?

Хорошее предложение.  Надо бы для начала определиться, по каким
частям тела настучать разработчикам aspell. :)

> > Раньше работало, а в новых версиях стало unimplemented.
> > Отстой!

Итого, в Sisyphus уходит полурабочий perl-Text-Aspell:

* Sun Nov 28 2004 Alexey Tourbin <at@altlinux> 0.04-alt1
- initial revision
- alt-sigsegv.patch: fixed null dereferencing (cpan #8633)
- alt-static.patch: made C functions static (cpan #8634)
- clear_session not implemented as of aspell-0.60 (cpan #8635)

> -- 
> WBR, Alexander Kuprin

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2004-11-28 15:08 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-11-10  9:45 [sisyphus] Сборка пакета perl-Text-Aspell Alexander Kuprin
2004-11-14 11:51 ` [sisyphus] " Alexey Tourbin
2004-11-27 23:49   ` Alexey Tourbin
2004-11-28  7:15     ` Alexander Kuprin
2004-11-28 15:08       ` Alexey Tourbin

ALT Linux Sisyphus discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/sisyphus/0 sisyphus/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 sisyphus sisyphus/ http://lore.altlinux.org/sisyphus \
		sisyphus@altlinux.ru sisyphus@altlinux.org sisyphus@lists.altlinux.org sisyphus@lists.altlinux.ru sisyphus@lists.altlinux.com sisyphus@linuxteam.iplabs.ru sisyphus@list.linux-os.ru
	public-inbox-index sisyphus

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.sisyphus


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git