svn commit: r496830 - in head/astro/xephem: . files
Josh Paetzel
jpaetzel at FreeBSD.org
Mon Mar 25 16:00:17 UTC 2019
Author: jpaetzel
Date: Mon Mar 25 16:00:16 2019
New Revision: 496830
URL: https://svnweb.freebsd.org/changeset/ports/496830
Log:
Fix a typo in a helper script that was causing a file to be left laying around.
Submitted by: Scott Allendorf <scott-allendorf at uiowa.edu>
Modified:
head/astro/xephem/Makefile
head/astro/xephem/files/patch-auxil_mpcorb2edb.pl
Modified: head/astro/xephem/Makefile
==============================================================================
--- head/astro/xephem/Makefile Mon Mar 25 15:59:42 2019 (r496829)
+++ head/astro/xephem/Makefile Mon Mar 25 16:00:16 2019 (r496830)
@@ -3,7 +3,7 @@
PORTNAME= xephem
PORTVERSION= 3.7.7
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= astro
MASTER_SITES= http://www.clearskyinstitute.com/xephem/
Modified: head/astro/xephem/files/patch-auxil_mpcorb2edb.pl
==============================================================================
--- head/astro/xephem/files/patch-auxil_mpcorb2edb.pl Mon Mar 25 15:59:42 2019 (r496829)
+++ head/astro/xephem/files/patch-auxil_mpcorb2edb.pl Mon Mar 25 16:00:16 2019 (r496830)
@@ -9,3 +9,12 @@
my $MPCFTPDIR = "/iau/MPCORB";
my $MPCFILE = "MPCORB.DAT";
my $MPCZIPFILE = "MPCORB.DAT.gz";
+@@ -247,7 +247,7 @@ sub fetch
+ {
+ # transfer
+ print "Getting $MPCFTPDIR/$MPCZIPFILE from $MPCSITE...\n";
+- $cmd = "curl -connect-timeout 10 -s -u 'anonymous:xephem\@clearskyinstitute.com' $MPCSITE/$MPCFTPDIR/$MPCZIPFILE > $MPCZIPFILE";
++ $cmd = "curl --connect-timeout 10 -s -u 'anonymous:xephem\@clearskyinstitute.com' $MPCSITE/$MPCFTPDIR/$MPCZIPFILE > $MPCZIPFILE";
+ print "$cmd\n";
+ !system "$cmd" or exit(1);
+
More information about the svn-ports-all
mailing list