SO here is attached the "package" files I added in order to get it to work :
Let's tel me what you think of it ? After all that, the grabber finally worked (or at least did not throw errors anymore)...
Hello,
I run into a problem with the xmltv grabber "tv_grab_fr_kazer" : it has unmet dependencies.
- First, it needs a package "perl-sub-install" which is not build/packaged by default => could you please change the default build confs please ?
- Then, it still not works because it does not find Datetime.pm, which is not installed in the right folder (is installed in /usr/lib/perl/site_perl/5.14.2/armv7-openbricks-linux-gnueabihf/DateTime.pm) but this path is not in perl's search patch ====> I don't know what to do to permanently correct, so for now I tuned my grabber and added a "use lib '/usr/lib/perl/site_perl/5.14.2/armv7-openbricks-linux-gnueabihf';" ==> needs to be corrected
- .... it still didn't work with that, because it needed 2 other perl modules, that are not in geexbox packages
SO here is attached the "package" files I added in order to get it to work :
- two clean packages (perl-package-stash and perl-package-deprecationmanager)
- one "not so clean" package for perl-class-load-xs ==> 'not so clean' because the tar.gz does not contain a Makefile.PL, and does not build without . So I did generate one by hand in the "build" script
Let's tel me what you think of it ? After all that, the grabber finally worked (or at least did not throw errors anymore)...
--
You received this message because you are subscribed to the Google Groups "OpenBricks Development List" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openbricks-dev...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
sure
- .... it still didn't work with that, because it needed 2 other perl modules, that are not in geexbox packages
well let's see ... you have a Build.PL file , it doesn't work with this file ?
Can you generate a diff to add credits to you
Let's tel me what you think of it ? After all that, the grabber finally worked (or at least did not throw errors anymore)...
please do :
edit .hg/hgrc file to add your full name and email, then :
hg add packages/perl-class-load-xs
hg commit packages/perl-class-load-xs -m "add new package : perl-class-load-xs"
hg export tip > perl-class-load-xs.diff
and so on for others packages
then send us your diff files
Regards
Tom
#!/bin/perl -w
use strict;
use XML::Parser;
my $p= new XML::Parser( Handlers =>
{ Start => \&default,
End => \&default,
Default => \&default
},
);
$p->parsefile($ARGV[0]);
exit;
# par défaut imprimer la chaîne de caractères convertie en UTF-8
{ my $p= shift;
my $string= $p->recognized_string();
print $string;
}--Hello, I've corrected some issue with Datetime and params-validate, now calling tv_grab_fr_kazer, got this :