1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

- Update to 1.2.

Accomodate x.y and x.y.0 representing the same octave forge package.

Approved by:	portmgr
Feature safe:	yes
This commit is contained in:
Stephen Montgomery-Smith 2011-11-14 13:34:22 +00:00
parent 831997b105
commit 8a70d58b00
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=285767
2 changed files with 29 additions and 22 deletions

View File

@ -6,8 +6,7 @@
#
PORTNAME= octave-forge-base
PORTVERSION= 1.1
PORTREVISION= 2
PORTVERSION= 1.2
CATEGORIES= math
MASTER_SITES= #none
DISTFILES= #none

View File

@ -120,10 +120,14 @@ while (my $p = <$install_prefix/*>) {
%to_remove = ();
$nr_to_remove = 0;
foreach (keys %is_installed) {
if (defined($is_installed{$_}) && !defined($in_tarballs{$_})) {
$to_remove{$_} = $is_installed{$_};
$nr_to_remove++;
foreach my $p (keys %is_installed) {
if (defined($is_installed{$p})) {
my $altp = $p; # so that 3.5.0 and 3.5 are the same package numbers
$altp =~ s/(\-\d+\.\d+)\.0(\.tar\.gz)$/$1$2/;
if (!defined($in_tarballs{$p}) && !defined($in_tarballs{$altp})) {
$to_remove{$p} = $is_installed{$p};
$nr_to_remove++;
}
}
}
@ -178,26 +182,30 @@ while (my $p = <$install_prefix/*>) {
# %is_tarballs by checking the dependencies.
%to_install = ();
foreach (keys %in_tarballs) {
if (defined($in_tarballs{$_}) && !defined($is_installed{$_})) {
my $tar = Archive::Tar->new("$tardir/$_",COMPRESS_GZIP);
die if !defined($tar);
my @list_of_files = grep /^.*\/DESCRIPTION$/, $tar->list_files();
die if $#list_of_files!=0;
my $descr = $tar->get_content($list_of_files[0]);
foreach my $l (split /\n/,$descr) {
if ($l=~s/Depends:\s*//) {
foreach my $ll (split ",",$l) {
$ll = lc($ll);
$ll =~ s/^\s+//;
$ll =~ s/\s.*//;
if ($ll ne "octave") {
$to_install{$_} .= (defined($to_install{$_})?"|":"").(defined($long_form{$ll})?$long_form{$ll}:$ll);
foreach my $n (keys %in_tarballs) {
my $altn = $n; # so that 3.5 and 3.5.0 are the same package numbers
$altn =~ s/(\-\d+\.\d+)(\.tar\.gz)$/$1\.0$2/;
if (defined($in_tarballs{$n})) {
if (!defined($is_installed{$n}) && !defined($is_installed{$altn})) {
my $tar = Archive::Tar->new("$tardir/$n",COMPRESS_GZIP);
die if !defined($tar);
my @list_of_files = grep /^.*\/DESCRIPTION$/, $tar->list_files();
die if $#list_of_files!=0;
my $descr = $tar->get_content($list_of_files[0]);
foreach my $l (split /\n/,$descr) {
if ($l=~s/Depends:\s*//) {
foreach my $ll (split ",",$l) {
$ll = lc($ll);
$ll =~ s/^\s+//;
$ll =~ s/\s.*//;
if ($ll ne "octave") {
$to_install{$n} .= (defined($to_install{$n})?"|":"").(defined($long_form{$ll})?$long_form{$ll}:$ll);
}
}
}
}
$to_install{$n} .= "";
}
$to_install{$_} .= "";
}
}