From b8b8fa5aeb1df824ed5374149d0a7377dd0c1cd9 Mon Sep 17 00:00:00 2001 From: Rene Ladan Date: Thu, 9 May 2019 15:03:38 +0000 Subject: Remove expired ports: 2019-05-08 databases/ruby-odbc: Broken for more than 6 months 2019-05-08 databases/rubygem-dbd-odbc: Broken for more than 6 months 2019-05-08 devel/dlangui: Broken for more than 6 months 2019-05-08 editors/dlangide: Broken for more than 6 months 2019-05-08 emulators/desmume: Broken for more than 6 months 2019-05-08 emulators/yabause: Broken for more than 6 months 2019-05-08 emulators/yape: Broken for more than 6 months 2019-05-08 games/armagetron: Broken for more than 6 months 2019-05-08 games/boswars: Broken for more than 6 months 2019-05-08 games/ceferino: Broken for more than 6 months 2019-05-08 games/chanta: Broken for more than 6 months 2019-05-08 games/d2x-xl: Broken for more than 6 months 2019-05-08 games/drcreep: Broken for more than 6 months 2019-05-08 games/frobtads: Broken for more than 6 months 2019-05-08 games/paintown: Broken for more than 6 months 2019-05-08 games/pykawari: Broken for more than 6 months 2019-05-08 games/stepmania-devel: Broken for more than 6 months 2019-05-08 games/tinymux: Broken for more than 6 months 2019-05-08 games/voxelands: Broken for more than 6 months 2019-05-08 games/voxelands-server: Broken for more than 6 months 2019-05-08 games/warsow: Broken for more than 6 months 2019-05-08 graphics/appleseed: Broken for more than 6 months 2019-05-08 graphics/apvlv: Broken for more than 6 months 2019-05-08 graphics/qslim: Broken for more than 6 months 2019-05-08 graphics/rawstudio: Broken for more than 6 months 2019-05-08 graphics/tulip: Broken for more than 6 months 2019-05-08 lang/qore: Broken for more than 6 months 2019-05-08 mail/milter-manager: Broken for more than 6 months 2019-05-08 math/goblin: Broken for more than 6 months 2019-05-08 math/mosesdecoder: Broken for more than 6 months 2019-05-08 multimedia/asdcplib: Broken for more than 6 months 2019-05-08 net/crtmpserver: Broken for more than 6 months 2019-05-08 net/linuxigd: Abandonware; use net/miniupnpd instead 2019-05-08 net/openafs: Broken for more than 6 months 2019-05-08 security/quantis: Broken for more than 6 months 2019-05-08 sysutils/boxbackup: Broken for more than 6 months 2019-05-08 sysutils/grub2-efi: Broken for more than 6 months 2019-05-08 sysutils/grub2-pcbsd: Broken for more than 6 months 2019-05-08 sysutils/mdcp: Broken for more than 6 months 2019-05-08 sysutils/sbsigntool: Broken for more than 6 months 2019-05-08 www/py-cherrypy-old: Lates version is in tree and no dependent ports --- math/goblin/files/patch-destructors | 395 ------------------------------------ 1 file changed, 395 deletions(-) delete mode 100644 math/goblin/files/patch-destructors (limited to 'math/goblin/files/patch-destructors') diff --git a/math/goblin/files/patch-destructors b/math/goblin/files/patch-destructors deleted file mode 100644 index 9a15aae73dd5..000000000000 --- a/math/goblin/files/patch-destructors +++ /dev/null @@ -1,395 +0,0 @@ ---- include/investigator.h.orig 2013-06-04 14:33:44.000000000 +0200 -+++ include/investigator.h 2013-06-04 14:34:16.000000000 +0200 -@@ -69,6 +69,8 @@ - /// \retval true There are unvisited arcs in the incidence list of v - virtual bool Active(TNode v) const throw(ERRange) = 0; - -+ virtual ~investigator() throw() {} -+ - }; - - /// @} ---- include/mixedGraph.h.orig 2013-06-04 14:34:21.000000000 +0200 -+++ include/mixedGraph.h 2013-06-04 14:37:20.000000000 +0200 -@@ -79,6 +79,8 @@ - - lineGraph(abstractMixedGraph& G,TOption = LG_DIRECTED) throw(ERRejected); - -+ ~lineGraph() throw() {}; -+ - }; - - /// \brief Subgraph of a given mixed graph induced by a specified node or arc set -@@ -96,6 +98,7 @@ - inducedSubgraph(abstractMixedGraph&,const indexSet&, - const indexSet&,const TOption = OPT_PARALLELS) - throw(ERRejected); -+ ~inducedSubgraph() throw() {} - - }; - -@@ -110,6 +113,7 @@ - public: - - colourContraction(abstractMixedGraph&,const TOption = 0) throw(); -+ ~colourContraction () throw() {} - - }; - -@@ -125,6 +129,7 @@ - - explicitSurfaceGraph(abstractMixedGraph&,nestedFamily&, - TFloat*,TArc*) throw(); -+ ~explicitSurfaceGraph () throw() {} - - }; - -@@ -136,6 +141,7 @@ - public: - - explicitSubdivision(abstractMixedGraph&,const TOption = 0) throw(); -+ ~explicitSubdivision () throw() {} - - }; - ---- include/sparseGraph.h.orig 2013-06-04 14:37:25.000000000 +0200 -+++ include/sparseGraph.h 2013-06-04 14:43:39.000000000 +0200 -@@ -77,6 +77,7 @@ - public: - - complementaryGraph(abstractMixedGraph& G,TOption = 0) throw(ERRejected); -+ ~complementaryGraph() throw() {} - - }; - -@@ -96,6 +97,7 @@ - public: - - planarLineGraph(abstractMixedGraph& G,TOption = 0) throw(ERRejected); -+ ~planarLineGraph() throw() {} - - }; - -@@ -112,6 +114,7 @@ - public: - - vertexTruncation(abstractMixedGraph& _G,TOption = 0) throw(ERRejected); -+ ~vertexTruncation() throw() {} - - }; - -@@ -135,6 +138,7 @@ - }; - - facetSeparation(abstractMixedGraph& G,TOptRotation mode = ROT_NONE) throw(ERRejected); -+ ~facetSeparation() throw() {} - - }; - -@@ -151,6 +155,7 @@ - public: - - dualGraph(abstractMixedGraph& G,TOption = 0) throw(ERRejected); -+ ~dualGraph() throw() {} - - }; - -@@ -170,6 +175,7 @@ - public: - - spreadOutRegular(abstractMixedGraph& G,TOption = 0) throw(ERRejected); -+ ~spreadOutRegular() throw() {} - - }; - -@@ -208,6 +214,8 @@ - /// \param _CT The controller to handle this object - mycielskianGraph(unsigned k,goblinController& _CT = goblinDefaultContext) throw(ERRejected); - -+ ~mycielskianGraph() throw() {} -+ - }; - - /// @} -@@ -256,6 +264,7 @@ - - triangularGraph(TNode cardinality, - goblinController& _CT = goblinDefaultContext) throw(); -+ ~triangularGraph() throw() {} - - }; - -@@ -300,6 +309,8 @@ - TNode minimumIntersection,TNode maximumIntersection, - goblinController& _CT = goblinDefaultContext) throw(); - -+ ~intersectionGraph() throw() {} -+ - }; - - -@@ -311,6 +322,7 @@ - - sierpinskiTriangle(TNode depth, - goblinController& _CT = goblinDefaultContext) throw(); -+ ~sierpinskiTriangle() throw() {} - }; - - -@@ -333,6 +345,7 @@ - /// \param _CT The controller object to manage the created graph - openGrid(TNode _k,TNode _l,TOptGrid shape, - goblinController& _CT = goblinDefaultContext) throw(ERRejected); -+ ~openGrid() throw() {} - - }; - -@@ -358,6 +371,8 @@ - polarGrid(TNode _k,TNode _l,TNode _p,TOptPolar facets,TOptPolar dim, - goblinController& _CT = goblinDefaultContext) throw(ERRejected); - -+ ~polarGrid() throw() {} -+ - }; - - -@@ -456,6 +471,8 @@ - toroidalGrid(unsigned short hSkew,unsigned short vSize,short vSkew,unsigned short hSize, - TOptTorus facets,goblinController& _CT = goblinDefaultContext) throw(ERRejected); - -+ ~toroidalGrid() throw() {} -+ - }; - - -@@ -467,6 +484,8 @@ - - moebiusLadder(TNode _k,goblinController& _CT = goblinDefaultContext) throw(ERRejected); - -+ ~moebiusLadder() throw() {} -+ - }; - - -@@ -508,6 +527,8 @@ - /// - generalizedPetersen(10,3) is known as the Desargues graph. - generalizedPetersen(TNode perimeter,TNode skew,goblinController& _CT = goblinDefaultContext) throw(ERRejected); - -+ ~generalizedPetersen() throw() {} -+ - }; - - -@@ -532,6 +553,8 @@ - gridCompletion(TNode dim,TOptShape shape, - goblinController& _CT = goblinDefaultContext) throw(ERRejected); - -+ ~gridCompletion() throw() {} -+ - }; - - -@@ -581,6 +604,8 @@ - /// interval [randMin,..,randMax] are assumed. - void GenerateThis(TFloat threshold,TFloat* nodeWeight,long randMin,long randMax) throw(); - -+ ~thresholdGraph() throw() {} -+ - }; - - -@@ -601,6 +626,8 @@ - /// is generated. - permutationGraph(TNode numNodes,TNode* map = NULL,goblinController& _CT = goblinDefaultContext) throw(); - -+ ~permutationGraph() throw() {} -+ - }; - - -@@ -650,6 +677,8 @@ - /// intervals are specified, random intervals are generated. - void GenerateThis(TFloat* minRange,TFloat* maxRange,TIndex valueRange) throw(); - -+ ~intervalGraph() throw() {} -+ - }; - - /// @} ---- include/sparseBigraph.h.orig 2013-06-04 14:43:47.000000000 +0200 -+++ include/sparseBigraph.h 2013-06-04 14:44:05.000000000 +0200 -@@ -80,6 +80,8 @@ - inducedBigraph(abstractMixedGraph&,const indexSet&, - const indexSet&,const TOption = OPT_PARALLELS) throw(ERRejected); - -+ ~inducedBigraph() throw() {} -+ - }; - - /// @} ---- include/sparseDigraph.h.orig 2013-06-04 14:44:29.000000000 +0200 -+++ include/sparseDigraph.h 2013-06-04 14:46:58.000000000 +0200 -@@ -116,6 +116,8 @@ - - inducedOrientation(abstractMixedGraph &G,TOption options = 0) throw(ERRejected); - -+ ~inducedOrientation() throw() {} -+ - }; - - -@@ -151,6 +153,8 @@ - /// non-adjacent. - void MapEdgeCut() throw(); - -+ ~nodeSplitting() throw() {} -+ - }; - - /// @} -@@ -168,6 +172,8 @@ - regularTree(TNode _depth,TNode deg,TNode _n = NoNode, - goblinController& thisContext = goblinDefaultContext) throw(ERRejected); - -+ ~regularTree() throw() {} -+ - }; - - -@@ -194,6 +200,8 @@ - /// \param thisContext The context to which this graph object is attached - butterflyGraph(TNode length,TNode base=2,goblinController& thisContext = goblinDefaultContext) throw(); - -+ ~butterflyGraph() throw() {} -+ - }; - - -@@ -215,6 +223,8 @@ - /// \param thisContext The context to which this graph object is attached - cyclicButterfly(TNode length,TNode base=2,goblinController& thisContext = goblinDefaultContext) throw(); - -+ ~cyclicButterfly() throw() {} -+ - }; - - /// @} -@@ -239,6 +249,8 @@ - - directedDual(abstractMixedGraph &G,TOption options = 0) throw(ERRejected); - -+ ~directedDual() throw() {} -+ - }; - - /// @} -@@ -258,6 +270,8 @@ - - transitiveClosure(abstractDiGraph &G,TOption options = 0) throw(ERRejected); - -+ ~transitiveClosure() throw() {} -+ - }; - - -@@ -272,6 +286,8 @@ - - intransitiveReduction(abstractDiGraph &G,TOption options = 0) throw(ERRejected); - -+ ~intransitiveReduction() throw() {} -+ - }; - - /// @} ---- include/balancedDigraph.h.orig 2013-06-04 14:47:05.000000000 +0200 -+++ include/balancedDigraph.h 2013-06-04 14:47:25.000000000 +0200 -@@ -72,6 +72,8 @@ - TNode DefaultSourceNode() const throw() {return n-1;}; - TNode DefaultTargetNode() const throw() {return n-2;}; - -+ ~splitGraph() throw() {} -+ - }; - - #endif ---- include/denseGraph.h.orig 2013-06-04 14:47:31.000000000 +0200 -+++ include/denseGraph.h 2013-06-04 14:47:50.000000000 +0200 -@@ -95,6 +95,8 @@ - - metricGraph(abstractGraph &G) throw(ERRejected); - -+ ~metricGraph() throw() {} -+ - }; - - /// @} ---- include/branchScheme.h.orig 2013-06-04 14:48:23.000000000 +0200 -+++ include/branchScheme.h 2013-06-04 14:48:43.000000000 +0200 -@@ -131,7 +131,9 @@ - { - public: - -- branchTree(goblinController &) throw(); -+ branchTree(goblinController &) throw(); -+ -+ ~branchTree() throw() {} - - }; - ---- include/abstractSubgraph.h.orig 2013-06-04 14:48:50.000000000 +0200 -+++ include/abstractSubgraph.h 2013-06-04 14:49:12.000000000 +0200 -@@ -102,7 +102,9 @@ - virtual TArc M() const throw() = 0; //!