diff --git a/graphics/asymptote/Portfile b/graphics/asymptote/Portfile index fbf865b70a3f..65e28f161ecc 100644 --- a/graphics/asymptote/Portfile +++ b/graphics/asymptote/Portfile @@ -6,7 +6,7 @@ PortGroup legacysupport 1.1 PortGroup texlive 1.0 name asymptote -version 2.94 +version 2.95 revision 0 categories graphics @@ -29,13 +29,9 @@ set python.bin ${prefix}/bin/python${python.branch} master_sites sourceforge:project/${name}/${version}/ extract.suffix .src.tgz -checksums rmd160 3b04426cd292d93a894a745719d7b1f28c94b86d \ - sha256 76f00f916a189fea0beb83b4ac3f86217dac910771e69ef95971979f8654bf67 \ - size 6933989 - -# Drop with the next release: -patchfiles-append 2696886e8fbd49af2ca113fdb29b46169366f58b.patch \ - cbbcfd2335a02654acd333f5ff89302586960720.patch +checksums rmd160 85d6b893d7a0744c17d7750e0b6302f6ce95f416 \ + sha256 15604fd02cb6ddbc5b807529d2e6fc617c825a184dd0d7b71390c567aeac78e7 \ + size 32055059 # FileNotFoundError: [Errno 2] No such file or directory: 'ccache /opt/local/bin/g++-mp-14' configure.ccache no diff --git a/graphics/asymptote/files/2696886e8fbd49af2ca113fdb29b46169366f58b.patch b/graphics/asymptote/files/2696886e8fbd49af2ca113fdb29b46169366f58b.patch deleted file mode 100644 index 96d44db1708b..000000000000 --- a/graphics/asymptote/files/2696886e8fbd49af2ca113fdb29b46169366f58b.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 2696886e8fbd49af2ca113fdb29b46169366f58b Mon Sep 17 00:00:00 2001 -From: John Bowman -Date: Fri, 15 Nov 2024 10:45:48 -0800 -Subject: [PATCH] Fix #494: Ignore missing PyQt5 module. - ---- - Makefile.in | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/Makefile.in b/Makefile.in -index 5b752f377..25d80741d 100644 ---- Makefile.in -+++ Makefile.in -@@ -148,7 +148,7 @@ version.txt: FORCE - fi - - GUI/xasyversion: version.txt GUI/buildtool.py -- cd GUI && $(PYTHON) buildtool.py buildversionmodule --version-override="$(shell cat $<)" -+ -cd GUI && $(PYTHON) buildtool.py buildversionmodule --version-override="$(shell cat $<)" - - revision.cc: version.txt - echo $(REVISION)\"$(shell cat $<)\"\; > $@ -@@ -271,7 +271,7 @@ GUI/xasyicons: GUI/res/icons.qrc GUI/buildtool.py - -cd GUI && $(PYTHON) buildtool.py buildicons - - GUI/xasyqtui: $(UIFILES) GUI/buildtool.py -- cd GUI && $(PYTHON) buildtool.py buildui -+ -cd GUI && $(PYTHON) buildtool.py buildui - - camp.tab.cc: camp.y - $(BISON) -t --header=camp.tab.h -o $@ $< diff --git a/graphics/asymptote/files/cbbcfd2335a02654acd333f5ff89302586960720.patch b/graphics/asymptote/files/cbbcfd2335a02654acd333f5ff89302586960720.patch deleted file mode 100644 index 3ed2c3964581..000000000000 --- a/graphics/asymptote/files/cbbcfd2335a02654acd333f5ff89302586960720.patch +++ /dev/null @@ -1,22 +0,0 @@ -From cbbcfd2335a02654acd333f5ff89302586960720 Mon Sep 17 00:00:00 2001 -From: John Bowman -Date: Fri, 15 Nov 2024 10:41:35 -0800 -Subject: [PATCH] Fix #493: qualify fpclassify namespace. - ---- - glrender.cc | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/glrender.cc b/glrender.cc -index e35d34c4b..d6da53141 100644 ---- glrender.cc -+++ glrender.cc -@@ -1933,7 +1933,7 @@ void glrender(GLRenderArgs const& args, int oldpid) - { - Iconify=getSetting("iconify"); - -- auto zoomVal = fpclassify(args.zoom) == FP_NORMAL ? args.zoom : 1.0; -+ auto zoomVal=std::fpclassify(args.zoom) == FP_NORMAL ? args.zoom : 1.0; - - Prefix=args.prefix; - Picture=args.pic;