* [devel] новый dvdrip и проблема с perl
@ 2006-10-24 11:32 Pavlov Konstantin
2006-10-24 11:56 ` Alexey Tourbin
2006-10-26 12:43 ` Pavlov Konstantin
0 siblings, 2 replies; 5+ messages in thread
From: Pavlov Konstantin @ 2006-10-24 11:32 UTC (permalink / raw)
To: devel; +Cc: at
[-- Attachment #1: Type: text/plain, Size: 1322 bytes --]
Всем привет.
Обновляю тут dvdrip, вижу такое:
Finding Requires (using /usr/lib/rpm/find-requires)
Executing(Requires): /bin/sh -e /usr/src/tmp/rpm-tmp.4573
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ /usr/lib/rpm/find-requires
"bind_textdomain_filter" is not exported by the Locale::Messages module
"turn_utf_8_on" is not exported by the Locale::Messages module
Can't continue after import errors
at /usr/src/tmp/dvdrip-buildroot/usr/bin/dvdrip line 34
BEGIN failed--compilation aborted
at /usr/src/tmp/dvdrip-buildroot/usr/bin/dvdrip line 36.
# /usr/src/tmp/dvdrip-buildroot/usr/bin/dvdrip: deparse failed.
isPerl=0.0218993041342612.
error: /bin/sh failed
error: Failed to find Requires
Что делать?
При этом:
#-- l10n stuff
use POSIX qw(setlocale);
use Locale::TextDomain ("video.dvdrip");
use Locale::Messages qw (bind_textdomain_filter
bind_textdomain_codeset
turn_utf_8_on LC_MESSAGES);
setlocale( LC_MESSAGES, "" );
BEGIN {
bind_textdomain_filter 'video.dvdrip', \&turn_utf_8_on;
bind_textdomain_codeset 'video.dvdrip', 'utf-8';
}
(34 строка: use Locale::Messages qw (bind_textdomain_filter)
--
Pavlov Konstantin,
ALT Linux Team,
VideoLAN Team,
jid: thresh@altlinux.org
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [devel] новый dvdrip и проблема с perl
2006-10-24 11:32 [devel] новый dvdrip и проблема с perl Pavlov Konstantin
@ 2006-10-24 11:56 ` Alexey Tourbin
2006-10-25 13:43 ` Pavlov Konstantin
2006-10-26 12:43 ` Pavlov Konstantin
1 sibling, 1 reply; 5+ messages in thread
From: Alexey Tourbin @ 2006-10-24 11:56 UTC (permalink / raw)
To: devel
[-- Attachment #1: Type: text/plain, Size: 1553 bytes --]
On Tue, Oct 24, 2006 at 03:32:24PM +0400, Pavlov Konstantin wrote:
> Всем привет.
>
> Обновляю тут dvdrip, вижу такое:
>
> Finding Requires (using /usr/lib/rpm/find-requires)
> Executing(Requires): /bin/sh -e /usr/src/tmp/rpm-tmp.4573
> + umask 022
> + /bin/mkdir -p /usr/src/RPM/BUILD
> + cd /usr/src/RPM/BUILD
> + /usr/lib/rpm/find-requires
> "bind_textdomain_filter" is not exported by the Locale::Messages module
> "turn_utf_8_on" is not exported by the Locale::Messages module
> Can't continue after import errors
> at /usr/src/tmp/dvdrip-buildroot/usr/bin/dvdrip line 34
> BEGIN failed--compilation aborted
> at /usr/src/tmp/dvdrip-buildroot/usr/bin/dvdrip line 36.
> # /usr/src/tmp/dvdrip-buildroot/usr/bin/dvdrip: deparse failed.
> isPerl=0.0218993041342612.
> error: /bin/sh failed
> error: Failed to find Requires
>
> Что делать?
>
> При этом:
>
> #-- l10n stuff
> use POSIX qw(setlocale);
> use Locale::TextDomain ("video.dvdrip");
> use Locale::Messages qw (bind_textdomain_filter
> bind_textdomain_codeset
> turn_utf_8_on LC_MESSAGES);
> setlocale( LC_MESSAGES, "" );
>
> BEGIN {
> bind_textdomain_filter 'video.dvdrip', \&turn_utf_8_on;
> bind_textdomain_codeset 'video.dvdrip', 'utf-8';
> }
>
>
> (34 строка: use Locale::Messages qw (bind_textdomain_filter)
Он просит у модуля Locale::Messages функцию bind_textdomain_filter,
а этот модуль такой функции не экспортирует. Кажется, надо собирать
новую версию perl-libintl.
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [devel] новый dvdrip и проблема с perl
2006-10-24 11:56 ` Alexey Tourbin
@ 2006-10-25 13:43 ` Pavlov Konstantin
0 siblings, 0 replies; 5+ messages in thread
From: Pavlov Konstantin @ 2006-10-25 13:43 UTC (permalink / raw)
To: devel
[-- Attachment #1: Type: text/plain, Size: 497 bytes --]
On Tuesday 24 October 2006 15:56, Alexey Tourbin wrote:
> Он просит у модуля Locale::Messages функцию bind_textdomain_filter,
> а этот модуль такой функции не экспортирует. Кажется, надо собирать
> новую версию perl-libintl.
Oops. Посмотрел в www.sisyphus.ru/srpm/perl-libintl на последнего сборщика и
current maintainer, а оно оказалось совсем не таким.
Отдашь или соберешь сам? В i/S и на git.alt оно уже есть.
--
Pavlov Konstantin,
ALT Linux Team,
VideoLAN Team,
jid: thresh@altlinux.org
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [devel] новый dvdrip и проблема с perl
2006-10-24 11:32 [devel] новый dvdrip и проблема с perl Pavlov Konstantin
2006-10-24 11:56 ` Alexey Tourbin
@ 2006-10-26 12:43 ` Pavlov Konstantin
2006-10-26 12:55 ` Alexey Tourbin
1 sibling, 1 reply; 5+ messages in thread
From: Pavlov Konstantin @ 2006-10-26 12:43 UTC (permalink / raw)
To: ALT Devel discussion list
[-- Attachment #1.1: Type: text/plain, Size: 289 bytes --]
On Tuesday 24 October 2006 15:32, Pavlov Konstantin wrote:
> Всем привет.
>
> Обновляю тут dvdrip, вижу такое:
И еще вот такое в аттаче.
(посмотреть на код можно в git.alt/people/thresh/packages/dvdrip.git)
--
Pavlov Konstantin,
ALT Linux Team,
VideoLAN Team,
jid: thresh@altlinux.org
[-- Attachment #1.2: dvdrip-errors.txt --]
[-- Type: text/plain, Size: 22819 bytes --]
Finding Requires (using /usr/lib/rpm/find-requires)
Executing(Requires): /bin/sh -e /usr/src/tmp/rpm-tmp.61195
+ umask 022
+ /bin/mkdir -p /usr/src/RPM/BUILD
+ cd /usr/src/RPM/BUILD
+ /usr/lib/rpm/find-requires
/usr/src/tmp/dvdrip-buildroot/usr/bin/dvdrip syntax OK
/usr/src/tmp/dvdrip-buildroot/usr/bin/dvdrip-exec syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/bin/dvdrip-master syntax OK
/usr/src/tmp/dvdrip-buildroot/usr/bin/dvdrip-multitee syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/bin/dvdrip-replex syntax OK
/usr/src/tmp/dvdrip-buildroot/usr/bin/dvdrip-splash syntax OK
/usr/src/tmp/dvdrip-buildroot/usr/bin/dvdrip-subpng syntax OK
/usr/src/tmp/dvdrip-buildroot/usr/bin/dvdrip-thumb syntax OK
/usr/src/tmp/dvdrip-buildroot/usr/bin/execflow syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Audio.pm syntax OK
Can't locate object method "new" via package "Video::DVDRip::Config" at /usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Base.pm line 25.
Compilation failed in require at (eval 6) line 3.
...propagated at /usr/lib/perl5/base.pm line 85.
BEGIN failed--compilation aborted at /usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Config.pm line 14.
Compilation failed in require at /usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Base.pm line 14.
BEGIN failed--compilation aborted at /usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Base.pm line 14.
# /usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Base.pm: deparse failed, trying to recover with -MVideo::DVDRip
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Base.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/BitrateCalc.pm syntax OK
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/CPAN/Scanf.pm syntax OK
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Cluster/ExecFlowFrontend.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Cluster/JobPlanner.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Cluster/Master.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Cluster/Node.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Cluster/PSU.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Cluster/Pipe.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Cluster/Project.pm syntax OK
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Cluster/Scheduler.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Cluster/Title.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Cluster/Webserver.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Config.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Content.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Convert.pm syntax OK
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Depend.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/FilterList.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/FilterSettings.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/Base.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/BitrateCalc.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/Cluster/Control.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/Cluster/Node.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/Cluster/Title.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/Context.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/Depend.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/ExecFlow.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/Filters.pm syntax OK
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/FormFactory/ClipImage.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/FormFactory/SubtitlePreviews.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/Main.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/MultiAudio.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/Pipe.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/Preferences.pm syntax OK
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/Preview.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/Progress.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/Project/ClipZoom.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/Project/Logging.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/Project/Storage.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/Project/Subtitle.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/Project/Title.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/Project/Transcode.pm syntax OK
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/Rules.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/GUI/ZoomCalculator.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/InfoFile.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/JobPlanner.pm syntax OK
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Logger.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/PSU.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Preset.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Probe.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Project.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/SrtxFile.pm syntax OK
ERROR: 'dvdrip' not found in PATH
ERROR: 'execflow' not found in PATH
ERROR: 'dvdrip-master' not found in PATH
ERROR: 'dvdrip-multitee' not found in PATH
ERROR: 'dvdrip-progress' not found in PATH
ERROR: 'dvdrip-splitpipe' not found in PATH
ERROR: 'dvdrip-subpng' not found in PATH
/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Subtitle.pm syntax OK
Base class package "Video::DVDRip::Task" is empty.
(Perhaps you need to 'use' the module which defines that package first.)
at /usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Term/ExitTask.pm line 13
BEGIN failed--compilation aborted at /usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Term/ExitTask.pm line 13.
# /usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Term/ExitTask.pm: deparse failed, trying to recover with -MVideo::DVDRip::Term
Can't locate Video/DVDRip/Term.pm in @INC (@INC contains: /usr/lib/rpm /usr/src/tmp/dvdrip-buildroot/usr/lib/perl5 /usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/i386-linux /usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl /usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl /etc/perl5 /usr/lib/perl5/i386-linux /usr/lib/perl5 /usr/lib/perl5/vendor_perl/i386-linux /usr/lib/perl5/vendor_perl /usr/lib/perl5/vendor_perl /etc/perl5 /usr/lib/perl5/i386-linux /usr/lib/perl5 /usr/local/lib/perl5/site_perl/5.8.8/i386-linux /usr/local/lib/perl5/site_perl/5.8.8 /usr/local/lib/perl5/site_perl /usr/lib/perl5/vendor_perl/i386-linux /usr/lib/perl5/vendor_perl /usr/lib/perl5/vendor_perl .).
BEGIN failed--compilation aborted.
# /usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl/Video/DVDRip/Term/ExitTask.pm: deparse failed. prefix=/usr/src/tmp/dvdrip-buildroot/usr/lib/perl5/vendor_perl
error: /bin/sh failed
error: Failed to find Requires
RPM build errors:
/bin/sh failed
Failed to find Requires
27.52user 5.48system 0:39.47elapsed 83%CPU (0avgtext+0avgdata 0maxresident)k
0inputs+0outputs (229major+1034832minor)pagefaults 0swaps
rebuild: rebuild of `pkg.tar' failed.
удален `/hasher/sisyphus32/lockdir/pid'
удален каталог: `/hasher/sisyphus32/lockdir'
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [devel] новый dvdrip и проблема с perl
2006-10-26 12:43 ` Pavlov Konstantin
@ 2006-10-26 12:55 ` Alexey Tourbin
0 siblings, 0 replies; 5+ messages in thread
From: Alexey Tourbin @ 2006-10-26 12:55 UTC (permalink / raw)
To: ALT Devel discussion list
[-- Attachment #1: Type: text/plain, Size: 332 bytes --]
On Thu, Oct 26, 2006 at 04:43:20PM +0400, Pavlov Konstantin wrote:
> On Tuesday 24 October 2006 15:32, Pavlov Konstantin wrote:
> > Всем привет.
> >
> > Обновляю тут dvdrip, вижу такое:
>
> И еще вот такое в аттаче.
> (посмотреть на код можно в git.alt/people/thresh/packages/dvdrip.git)
Бог в помощь вам, друзья мои...
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2006-10-26 12:55 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-10-24 11:32 [devel] новый dvdrip и проблема с perl Pavlov Konstantin
2006-10-24 11:56 ` Alexey Tourbin
2006-10-25 13:43 ` Pavlov Konstantin
2006-10-26 12:43 ` Pavlov Konstantin
2006-10-26 12:55 ` Alexey Tourbin
ALT Linux Team development discussions
This inbox may be cloned and mirrored by anyone:
git clone --mirror http://lore.altlinux.org/devel/0 devel/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 devel devel/ http://lore.altlinux.org/devel \
devel@altlinux.org devel@altlinux.ru devel@lists.altlinux.org devel@lists.altlinux.ru devel@linux.iplabs.ru mandrake-russian@linuxteam.iplabs.ru sisyphus@linuxteam.iplabs.ru
public-inbox-index devel
Example config snippet for mirrors.
Newsgroup available over NNTP:
nntp://lore.altlinux.org/org.altlinux.lists.devel
AGPL code for this site: git clone https://public-inbox.org/public-inbox.git