OGDF 1.0.0.0 → 1.0.0.1
raw patch · 3 files changed
+55/−71 lines, 3 filesdep −fficxxdep ~fficxx-runtimePVP ok
version bump matches the API change (PVP)
Dependencies removed: fficxx
Dependency ranges changed: fficxx-runtime
API changes (from Hackage documentation)
Files
- ChangeLog.md +4/−0
- LICENSE +0/−25
- OGDF.cabal +51/−46
ChangeLog.md view
@@ -1,5 +1,9 @@ # Changelog for OGDF +## 1.0.0.1++- Update fficxx 0.7.0.1, remove unnecessary deps+ ## 1.0.0.0 - Initial release 1.0.0.0 generated by fficxx-0.7.0.0. This version is compatible with OGDF 2022.02 (Dogwood)
LICENSE view
@@ -1,25 +0,0 @@-The following license covers this documentation, and the source code, except-where otherwise indicated.--Copyright 2018-2022, Ian-Woo Kim. All rights reserved.--Redistribution and use in source and binary forms, with or without-modification, are permitted provided that the following conditions are met:--* Redistributions of source code must retain the above copyright notice, this- list of conditions and the following disclaimer.--* Redistributions in binary form must reproduce the above copyright notice,- this list of conditions and the following disclaimer in the documentation- and/or other materials provided with the distribution.--THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS "AS IS" AND ANY EXPRESS OR-IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF-MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO-EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY DIRECT, INDIRECT,-INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT-NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,-OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE-OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF-ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
OGDF.cabal view
@@ -1,6 +1,6 @@ Cabal-version: 3.0 Name: OGDF-Version: 1.0.0.0+Version: 1.0.0.1 Synopsis: Haskell binding to OGDF Description: Haskell binding to Open Graph Drawing Framework (OGDF) autogenerated by fficxx.@@ -9,51 +9,51 @@ Homepage: https://github.com/wavewave/hs-ogdf license: BSD-2-Clause license-file: LICENSE-Author: Ian-Woo Kim+Author: Ian-Woo Kim Maintainer: Ian-Woo Kim <ianwookim@gmail.com> Category: Graphs-Tested-with: GHC == 9.0.2 || == 9.2.4 || == 9.4.2+Tested-with: GHC == 9.2.4 || == 9.4.2 Build-Type: Simple Extra-source-files:- ChangeLog.md- csrc/OGDFColor.h- csrc/OGDFDPoint.h- csrc/OGDFDRect.h- csrc/OGDFEdgeElement.h- csrc/OGDFGraph.h- csrc/OGDFGraphAttributes.h- csrc/OGDFGraphIO.h- csrc/OGDFFastSimpleHierarchyLayout.h- csrc/OGDFFMMMLayout.h- csrc/OGDFHierarchyLayoutModule.h- csrc/OGDFLayerByLayerSweep.h- csrc/OGDFLayeredCrossMinModule.h- csrc/OGDFLayoutModule.h- csrc/OGDFMedianHeuristic.h- csrc/OGDFNodeElement.h- csrc/OGDFOptimalHierarchyLayout.h- csrc/OGDFOptimalRanking.h- csrc/OGDFRankingModule.h- csrc/OGDFSugiyamaLayout.h- csrc/OGDFColor.cpp- csrc/OGDFDPoint.cpp- csrc/OGDFDRect.cpp- csrc/OGDFEdgeElement.cpp- csrc/OGDFGraph.cpp- csrc/OGDFGraphAttributes.cpp- csrc/OGDFGraphIO.cpp- csrc/OGDFFastSimpleHierarchyLayout.cpp- csrc/OGDFFMMMLayout.cpp- csrc/OGDFHierarchyLayoutModule.cpp- csrc/OGDFLayerByLayerSweep.cpp- csrc/OGDFLayeredCrossMinModule.cpp- csrc/OGDFLayoutModule.cpp- csrc/OGDFMedianHeuristic.cpp- csrc/OGDFNodeElement.cpp- csrc/OGDFOptimalHierarchyLayout.cpp- csrc/OGDFOptimalRanking.cpp- csrc/OGDFRankingModule.cpp- csrc/OGDFSugiyamaLayout.cpp+ ChangeLog.md+ csrc/OGDFColor.h+ csrc/OGDFDPoint.h+ csrc/OGDFDRect.h+ csrc/OGDFEdgeElement.h+ csrc/OGDFGraph.h+ csrc/OGDFGraphAttributes.h+ csrc/OGDFGraphIO.h+ csrc/OGDFFastSimpleHierarchyLayout.h+ csrc/OGDFFMMMLayout.h+ csrc/OGDFHierarchyLayoutModule.h+ csrc/OGDFLayerByLayerSweep.h+ csrc/OGDFLayeredCrossMinModule.h+ csrc/OGDFLayoutModule.h+ csrc/OGDFMedianHeuristic.h+ csrc/OGDFNodeElement.h+ csrc/OGDFOptimalHierarchyLayout.h+ csrc/OGDFOptimalRanking.h+ csrc/OGDFRankingModule.h+ csrc/OGDFSugiyamaLayout.h+ csrc/OGDFColor.cpp+ csrc/OGDFDPoint.cpp+ csrc/OGDFDRect.cpp+ csrc/OGDFEdgeElement.cpp+ csrc/OGDFGraph.cpp+ csrc/OGDFGraphAttributes.cpp+ csrc/OGDFGraphIO.cpp+ csrc/OGDFFastSimpleHierarchyLayout.cpp+ csrc/OGDFFMMMLayout.cpp+ csrc/OGDFHierarchyLayoutModule.cpp+ csrc/OGDFLayerByLayerSweep.cpp+ csrc/OGDFLayeredCrossMinModule.cpp+ csrc/OGDFLayoutModule.cpp+ csrc/OGDFMedianHeuristic.cpp+ csrc/OGDFNodeElement.cpp+ csrc/OGDFOptimalHierarchyLayout.cpp+ csrc/OGDFOptimalRanking.cpp+ csrc/OGDFRankingModule.cpp+ csrc/OGDFSugiyamaLayout.cpp Source-repository head type: git@@ -64,7 +64,7 @@ hs-source-dirs: src ghc-options: -Wall -funbox-strict-fields -fno-warn-unused-do-bind -fno-warn-orphans -fno-warn-unused-imports cxx-options: -std=c++17- Build-Depends: base > 4 && < 5, fficxx >= 0.7, fficxx-runtime >= 0.7, template-haskell, stdcxx+ Build-Depends: base > 4 && < 5, fficxx-runtime >= 0.7.0.1, template-haskell, stdcxx Exposed-Modules: OGDF OGDF.Ordinary@@ -188,11 +188,14 @@ OGDF.ListIterator.Template OGDF.List.TH OGDF.ListIterator.TH+ Other-Modules:- extra-lib-dirs:+ ++ extra-lib-dirs: extra-libraries: OGDF, COIN- Include-dirs: csrc- pkgconfig-depends:+ Include-dirs: csrc + pkgconfig-depends: Install-includes: OGDFType.h OGDFColor.h@@ -214,6 +217,7 @@ OGDFOptimalRanking.h OGDFRankingModule.h OGDFSugiyamaLayout.h+ Cxx-sources: csrc/OGDFColor.cpp csrc/OGDFDPoint.cpp@@ -234,3 +238,4 @@ csrc/OGDFOptimalRanking.cpp csrc/OGDFRankingModule.cpp csrc/OGDFSugiyamaLayout.cpp+