Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 28 Feb 2022 15:07:04 GMT
From:      Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: d1d14ca3e59f - main - astro/cfitsio: Update to 4.0.0
Message-ID:  <202202281507.21SF7460045095@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by sunpoet:

URL: https://cgit.FreeBSD.org/ports/commit/?id=d1d14ca3e59f48ada778c1a9dbc754c4186ed76a

commit d1d14ca3e59f48ada778c1a9dbc754c4186ed76a
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2022-02-28 15:06:31 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2022-02-28 15:06:56 +0000

    astro/cfitsio: Update to 4.0.0
    
    - Bump PORTREVISION of dependent ports for shlib change
    
    Changes:        https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/docs/changes.txt
---
 astro/astrometry/Makefile            |  1 +
 astro/cfitsio/Makefile               | 11 +++++------
 astro/cfitsio/distinfo               |  6 +++---
 astro/gnuastro/Makefile              |  2 +-
 astro/kstars/Makefile                |  1 +
 astro/oskar/Makefile                 |  1 +
 astro/p5-Astro-FITS-CFITSIO/Makefile |  2 +-
 astro/phd2/Makefile                  |  1 +
 astro/siril/Makefile                 |  2 +-
 astro/stellarsolver/Makefile         |  2 +-
 astro/wcslib/Makefile                |  1 +
 devel/indi/Makefile                  |  2 +-
 graphics/gdal/Makefile               |  2 +-
 graphics/luminance-qt5/Makefile      |  2 +-
 graphics/ufraw/Makefile              |  2 +-
 graphics/vips/Makefile               |  1 +
 math/labplot/Makefile                |  2 +-
 math/octave-forge-fits/Makefile      |  2 +-
 science/healpix/Makefile             |  2 +-
 science/kst2/Makefile                |  2 +-
 20 files changed, 26 insertions(+), 21 deletions(-)

diff --git a/astro/astrometry/Makefile b/astro/astrometry/Makefile
index ec613499bcea..25ee166e1cae 100644
--- a/astro/astrometry/Makefile
+++ b/astro/astrometry/Makefile
@@ -2,6 +2,7 @@
 
 PORTNAME=	astrometry
 PORTVERSION=	0.89
+PORTREVISION=	1
 CATEGORIES=	astro
 MASTER_SITES=	http://astrometry.net/downloads/
 DISTNAME=	${PORTNAME}.net-${PORTVERSION}
diff --git a/astro/cfitsio/Makefile b/astro/cfitsio/Makefile
index 6c687626f441..79e59239f022 100644
--- a/astro/cfitsio/Makefile
+++ b/astro/cfitsio/Makefile
@@ -1,14 +1,13 @@
 # Created by: Markus Brueffer <markus@FreeBSD.org>
 
 PORTNAME=	cfitsio
-PORTVERSION=	3.490
+PORTVERSION=	4.0.0
 CATEGORIES=	astro
 MASTER_SITES=	https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/ \
 		https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/oldvers/ \
 		ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/ \
 		ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/oldvers/ \
 		LOCAL/sunpoet
-DISTNAME=	${PORTNAME}-${PORTVERSION:S|0$||}
 
 MAINTAINER=	sunpoet@FreeBSD.org
 COMMENT=	Library for reading and writing files in FITS data format
@@ -18,8 +17,6 @@ LIB_DEPENDS=	libcurl.so:ftp/curl \
 
 USES=		cpe localbase pkgconfig
 
-CPE_VENDOR=	nasa
-
 ALL_TARGET=	libcfitsio.a shared
 CONFIGURE_ARGS=	ac_cv_prog_FC=f2c
 GNU_CONFIGURE=	yes
@@ -28,13 +25,15 @@ USE_LDCONFIG=	yes
 PLIST_SUB=	SHLIB_MAJOR=${SHLIB_MAJOR} \
 		SHLIB_MINOR=${SHLIB_MINOR}
 
+CPE_VENDOR=	nasa
+
 SHLIB_MAJOR=	9
-SHLIB_MINOR=	${PORTVERSION:S|0$||}
+SHLIB_MINOR=	${PORTVERSION}
 
 OPTIONS_DEFINE=	DOCS
 
 post-patch:
-	@${REINPLACE_CMD} -e 's|<malloc.h>|<stdlib.h>|' ${WRKSRC}/*.[chl] ${WRKSRC}/zlib/*.h
+	@${REINPLACE_CMD} -e 's|<malloc.h>|<stdlib.h>|' ${WRKSRC}/*.[chl]
 
 do-install:
 	cd ${WRKSRC}/ && ${INSTALL_DATA} drvrsmem.h fitsio.h fitsio2.h longnam.h ${STAGEDIR}${PREFIX}/include/
diff --git a/astro/cfitsio/distinfo b/astro/cfitsio/distinfo
index d49da5cb7f9a..f59b62d0f1ba 100644
--- a/astro/cfitsio/distinfo
+++ b/astro/cfitsio/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1606348502
-SHA256 (cfitsio-3.49.tar.gz) = 5b65a20d5c53494ec8f638267fca4a629836b7ac8dd0ef0266834eab270ed4b3
-SIZE (cfitsio-3.49.tar.gz) = 4934662
+TIMESTAMP = 1627157193
+SHA256 (cfitsio-4.0.0.tar.gz) = b2a8efba0b9f86d3e1bd619f662a476ec18112b4f27cc441cc680a4e3777425e
+SIZE (cfitsio-4.0.0.tar.gz) = 4746177
diff --git a/astro/gnuastro/Makefile b/astro/gnuastro/Makefile
index 8955f9570131..5d83dfbb8e8d 100644
--- a/astro/gnuastro/Makefile
+++ b/astro/gnuastro/Makefile
@@ -2,7 +2,7 @@
 
 PORTNAME=	gnuastro
 PORTVERSION=	0.16
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	astro
 MASTER_SITES=	GNU
 
diff --git a/astro/kstars/Makefile b/astro/kstars/Makefile
index 3ba84d55efda..f50d453375f1 100644
--- a/astro/kstars/Makefile
+++ b/astro/kstars/Makefile
@@ -1,5 +1,6 @@
 PORTNAME=	kstars
 DISTVERSION=	3.5.7
+PORTREVISION=	1
 PORTEPOCH=	1
 CATEGORIES=	astro kde
 MASTER_SITES=	KDE/stable/${PORTNAME}
diff --git a/astro/oskar/Makefile b/astro/oskar/Makefile
index 6de37a000d52..d90d67fd2ebe 100644
--- a/astro/oskar/Makefile
+++ b/astro/oskar/Makefile
@@ -1,5 +1,6 @@
 PORTNAME=	OSKAR
 DISTVERSION=	2.8.2
+PORTREVISION=	1
 CATEGORIES=	astro
 
 MAINTAINER=	yuri@FreeBSD.org
diff --git a/astro/p5-Astro-FITS-CFITSIO/Makefile b/astro/p5-Astro-FITS-CFITSIO/Makefile
index 8b4fc48b1a95..d6de48313b0c 100644
--- a/astro/p5-Astro-FITS-CFITSIO/Makefile
+++ b/astro/p5-Astro-FITS-CFITSIO/Makefile
@@ -2,7 +2,7 @@
 
 PORTNAME=	Astro-FITS-CFITSIO
 PORTVERSION=	1.15
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	astro perl5
 MASTER_SITES=	CPAN
 PKGNAMEPREFIX=	p5-
diff --git a/astro/phd2/Makefile b/astro/phd2/Makefile
index 39a438fafed4..afadd372be92 100644
--- a/astro/phd2/Makefile
+++ b/astro/phd2/Makefile
@@ -1,6 +1,7 @@
 PORTNAME=	phd2
 DISTVERSIONPREFIX=v
 DISTVERSION=	2.6.10
+PORTREVISION=	1
 CATEGORIES=	astro
 
 MAINTAINER=	acm@FreeBSD.org
diff --git a/astro/siril/Makefile b/astro/siril/Makefile
index 216407c8511e..c553aab720fc 100644
--- a/astro/siril/Makefile
+++ b/astro/siril/Makefile
@@ -1,6 +1,6 @@
 PORTNAME=	siril
 DISTVERSION=	0.99.10.1
-PORTREVISION=	6
+PORTREVISION=	7
 CATEGORIES=	astro graphics
 MASTER_SITES=	https://free-astro.org/download/
 
diff --git a/astro/stellarsolver/Makefile b/astro/stellarsolver/Makefile
index 032c493906c2..eeecf76ca68d 100644
--- a/astro/stellarsolver/Makefile
+++ b/astro/stellarsolver/Makefile
@@ -1,6 +1,6 @@
 PORTNAME=	stellarsolver
 DISTVERSION=	1.8
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	astro
 
 MAINTAINER=	acm@FreeBSD.org
diff --git a/astro/wcslib/Makefile b/astro/wcslib/Makefile
index d0aa19896b7a..87db59c5f0ab 100644
--- a/astro/wcslib/Makefile
+++ b/astro/wcslib/Makefile
@@ -2,6 +2,7 @@
 
 PORTNAME=	wcslib
 PORTVERSION=	7.7
+PORTREVISION=	1
 CATEGORIES=	astro
 MASTER_SITES=	ftp://ftp.atnf.csiro.au/pub/software/wcslib/
 
diff --git a/devel/indi/Makefile b/devel/indi/Makefile
index e8f51e2cb4be..1bc26c8f456e 100644
--- a/devel/indi/Makefile
+++ b/devel/indi/Makefile
@@ -1,7 +1,7 @@
 PORTNAME=	indi
 DISTVERSIONPREFIX=	v
 DISTVERSION=	1.9.1
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	devel
 
 MAINTAINER=	acm@FreeBSD.org
diff --git a/graphics/gdal/Makefile b/graphics/gdal/Makefile
index 40f96411adba..55beb7ac62a0 100644
--- a/graphics/gdal/Makefile
+++ b/graphics/gdal/Makefile
@@ -2,7 +2,7 @@
 
 PORTNAME=	gdal
 PORTVERSION=	3.4.1
-PORTREVISION=	5
+PORTREVISION=	6
 CATEGORIES=	graphics geography
 MASTER_SITES=	https://download.osgeo.org/gdal/${PORTVERSION}/ \
 		LOCAL/sunpoet
diff --git a/graphics/luminance-qt5/Makefile b/graphics/luminance-qt5/Makefile
index 123c708555a7..ce79f2f4d897 100644
--- a/graphics/luminance-qt5/Makefile
+++ b/graphics/luminance-qt5/Makefile
@@ -2,7 +2,7 @@
 
 PORTNAME=	luminance-hdr
 DISTVERSION=	2.6.1.1
-PORTREVISION=	8
+PORTREVISION=	9
 CATEGORIES=	graphics
 MASTER_SITES=	SF/qtpfsgui/luminance/${DISTVERSION}
 
diff --git a/graphics/ufraw/Makefile b/graphics/ufraw/Makefile
index 9d551889ca4b..5ef3fd8778b9 100644
--- a/graphics/ufraw/Makefile
+++ b/graphics/ufraw/Makefile
@@ -2,7 +2,7 @@
 
 PORTNAME=	ufraw
 PORTVERSION=	0.22.20210424
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	graphics
 
 MAINTAINER=	rodrigo@FreeBSD.org
diff --git a/graphics/vips/Makefile b/graphics/vips/Makefile
index 342ed80de3e7..f2f9eb357b7a 100644
--- a/graphics/vips/Makefile
+++ b/graphics/vips/Makefile
@@ -2,6 +2,7 @@
 
 PORTNAME=	vips
 PORTVERSION=	8.12.2
+PORTREVISION=	1
 CATEGORIES=	graphics
 MASTER_SITES=	https://github.com/libvips/libvips/releases/download/v${PORTVERSION}/
 
diff --git a/math/labplot/Makefile b/math/labplot/Makefile
index 5e6f0489b3c8..bea2798a1114 100644
--- a/math/labplot/Makefile
+++ b/math/labplot/Makefile
@@ -2,7 +2,7 @@
 
 PORTNAME=	labplot
 DISTVERSION=	2.8.2
-PORTREVISION=	10
+PORTREVISION=	11
 CATEGORIES=	math kde
 MASTER_SITES=	KDE/stable/${PORTNAME}/${PORTVERSION}
 
diff --git a/math/octave-forge-fits/Makefile b/math/octave-forge-fits/Makefile
index 516161246838..ac6072c830be 100644
--- a/math/octave-forge-fits/Makefile
+++ b/math/octave-forge-fits/Makefile
@@ -2,7 +2,7 @@
 
 PORTNAME=	octave-forge-fits
 PORTVERSION=	1.0.7
-PORTREVISION=	15
+PORTREVISION=	16
 CATEGORIES=	math
 
 MAINTAINER=	stephen@FreeBSD.org
diff --git a/science/healpix/Makefile b/science/healpix/Makefile
index 09cb9787ebe5..c577450397c0 100644
--- a/science/healpix/Makefile
+++ b/science/healpix/Makefile
@@ -1,7 +1,7 @@
 PORTNAME=	healpix
 DISTVERSION=	3.50
 DISTVERSIONSUFFIX=	_2018Dec10
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	science
 MASTER_SITES=	SF/${PORTNAME}/Healpix_${DISTVERSION}/
 DISTNAME=	Healpix_${DISTVERSIONFULL}
diff --git a/science/kst2/Makefile b/science/kst2/Makefile
index 2b01e41696c9..4347162eb2f0 100644
--- a/science/kst2/Makefile
+++ b/science/kst2/Makefile
@@ -2,7 +2,7 @@
 
 PORTNAME=	kst
 DISTVERSION=	${KST_VERSION}.${KST_DATE}
-PORTREVISION=	2
+PORTREVISION=	3
 CATEGORIES=	science
 
 MAINTAINER=	makc@FreeBSD.org



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