Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 25 Mar 2019 16:00:16 +0000 (UTC)
From:      Josh Paetzel <jpaetzel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r496830 - in head/astro/xephem: . files
Message-ID:  <201903251600.x2PG0GTN015859@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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);
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903251600.x2PG0GTN015859>