create-recipe: update re pattern and output

In the URL, there may be more than just digits in the version section,
something like xz 5.1.2alpha. Update RE pattern to catch all the string
after package name and before '.tar' in URL as package version.

And error message which has been sent to /dev/null still shows on Ubuntu
12.10 with perl 5.14. Update the way to find source tar file to eraser
the error message.

configure files may rewrite the version section, and that is not necessary.
Test when version section has been set, omit the version value from
configure files.

And tweak for output to bb file.

(From OE-Core rev: 17f09ab713acc814ec0561b1c41fa87d9bf7b83f)

Signed-off-by: Kang Kai <kai.kang@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Kang Kai 2012-11-01 10:44:56 +08:00 committed by Richard Purdie
parent 7f6edde6af
commit e48fe4ed7a
1 changed files with 19 additions and 10 deletions

View File

@ -35,7 +35,8 @@ use File::Basename qw(basename dirname);
my $name = "";
my $version = "TO BE FILLED IN";
my $predef_version = "TO BE FILLED IN";
my $version = $predef_version;
my $description = "";
my $summary = "";
my $url = "";
@ -809,7 +810,7 @@ sub process_configure_ac
# $name = $1;
}
}
if (defined($acinit[1])) {
if (defined($acinit[1]) and $version eq $predef_version) {
my $ver = $acinit[1];
$ver =~ s/\[//g;
$ver =~ s/\]//g;
@ -835,7 +836,7 @@ sub process_configure_ac
# $name = $1;
}
}
if (defined($acinit[1])) {
if (defined($acinit[1]) and $version eq $predef_version) {
my $ver = $acinit[1];
$ver =~ s/\[//g;
$ver =~ s/\]//g;
@ -1536,7 +1537,7 @@ sub guess_name_from_url {
}
my $tarfile = $spliturl[0];
if ($tarfile =~ /(.*?)\-([0-9\.\-\~]+)[-\.].*?\.tar/) {
if ($tarfile =~ /(.*?)\-([0-9\.\-\~]+.*?)\.tar/) {
$name = $1;
$version = $2;
$version =~ s/\-/\_/g;
@ -1687,8 +1688,8 @@ sub write_bbfile
print BBFILE "\"\n\n";
if (@license <= 0) {
print "Can NOT get license from package itself.\n";
print "Please update the license and license file manually.\n";
print "Can NOT get license from package source files.\n";
print "Please update the LICENSE and LIC_FILES_CHKSUM manually.\n";
}
if (@buildreqs > 0) {
@ -1704,7 +1705,7 @@ sub write_bbfile
}
print BBFILE "\"\n\n";
print BBFILE "SRC_URI[md5sum] = \"$md5sum\"\n";
print BBFILE "SRC_URI[sha256sum] = \"$sha256sum\"\n";
print BBFILE "SRC_URI[sha256sum] = \"$sha256sum\"\n\n";
if (@inherits) {
print BBFILE "inherit ";
@ -1800,9 +1801,17 @@ foreach (@tgzfiles) {
# this is a step backwards in time that is just silly.
#
my @sourcetars = <$orgdir/$outputdir/*\.tar\.bz2 $orgdir/$outputdir/*\.tar\.gz>;
if ( length @sourcetars == 0) {
print "Can NOT find source tarball. Exiting...\n";
exit (1);
}
if (defined($sourcetars[0]) and $sourcetars[0] =~ ".*\.tar\.bz2") {
system("cd $tmpdir; tar -jxf $sourcetars[0] &>/dev/null");
} elsif (defined($sourcetars[0]) and $sourcetars[0] =~ ".*\.tar\.gz") {
system("cd $tmpdir; tar -zxf $sourcetars[0] &>/dev/null");
}
system("cd $tmpdir; tar -jxf $orgdir/$outputdir/*\.tar\.bz2 &>/dev/null");
system("cd $tmpdir; tar -zxf $orgdir/$outputdir/*\.tar\.gz &>/dev/null");
print "Parsing content ....\n";
my @dirs = <$tmpdir/*>;
foreach (@dirs) {
@ -1827,7 +1836,7 @@ if ( -e "$dir/configure" ) {
$configure = "";
}
my @files = <$dir/configure.*>;
my @files = <$dir/configure\.*>;
my $findoutput = `find $dir -name "configure.ac" 2>/dev/null`;
my @findlist = split(/\n/, $findoutput);