git: acdadc1653af - main - math/octave-forge-base: Update to 1.6.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 23 Oct 2022 03:32:03 UTC
The branch main has been updated by stephen: URL: https://cgit.FreeBSD.org/ports/commit/?id=acdadc1653afa50c138c4f7e47234b119cd3045c commit acdadc1653afa50c138c4f7e47234b119cd3045c Author: Stephen Montgomery-Smith <stephen@FreeBSD.org> AuthorDate: 2022-10-23 03:30:53 +0000 Commit: Stephen Montgomery-Smith <stephen@FreeBSD.org> CommitDate: 2022-10-23 03:30:53 +0000 math/octave-forge-base: Update to 1.6. Make sure that when searching description for lines that begin with Depends: that it starts at the beginning of the line. --- math/octave-forge-base/Makefile | 2 +- math/octave-forge-base/files/load-octave-pkg.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/math/octave-forge-base/Makefile b/math/octave-forge-base/Makefile index f41f0bd390c6..b91c8b97961e 100644 --- a/math/octave-forge-base/Makefile +++ b/math/octave-forge-base/Makefile @@ -1,5 +1,5 @@ PORTNAME= octave-forge-base -PORTVERSION= 1.5 +PORTVERSION= 1.6 CATEGORIES= math MASTER_SITES= #none DISTFILES= #none diff --git a/math/octave-forge-base/files/load-octave-pkg.in b/math/octave-forge-base/files/load-octave-pkg.in index acaf31090002..48010c3f11b7 100644 --- a/math/octave-forge-base/files/load-octave-pkg.in +++ b/math/octave-forge-base/files/load-octave-pkg.in @@ -98,7 +98,7 @@ while (my $p = <$install_prefix/*>) { $p =~ s+.*/++; open(D,"$install_prefix/$p/packinfo/DESCRIPTION") || die $!; foreach my $l (<D>) { - if ($l=~s/Depends:\s*//) { + if ($l=~s/^Depends:\s*//) { foreach my $ll (split ",",$l) { chomp($ll); $ll = lc($ll);