Sun Nov 19 19:54:30 2023 UTC ()
inkscape: update to 1.3.1.

Inkscape 1.3.1

Released on 2023-11-18

    Improvements on node count when using shape builder
    Ability to disable snapping to grid lines
    Possibility to split text into characters while keeping kerning
    Lots of bugfixes and crash fixes, and translation improvements


(wiz)
diff -r1.278 -r1.279 pkgsrc/graphics/inkscape/Makefile
diff -r1.37 -r1.38 pkgsrc/graphics/inkscape/PLIST
diff -r1.94 -r1.95 pkgsrc/graphics/inkscape/distinfo

cvs diff -r1.278 -r1.279 pkgsrc/graphics/inkscape/Makefile (expand / switch to unified diff)

--- pkgsrc/graphics/inkscape/Makefile 2023/11/15 09:25:51 1.278
+++ pkgsrc/graphics/inkscape/Makefile 2023/11/19 19:54:30 1.279
@@ -1,62 +1,60 @@ @@ -1,62 +1,60 @@
1# $NetBSD: Makefile,v 1.278 2023/11/15 09:25:51 wiz Exp $ 1# $NetBSD: Makefile,v 1.279 2023/11/19 19:54:30 wiz Exp $
2 2
3DISTNAME= inkscape-1.3 3DISTNAME= inkscape-1.3.1
4PKGREVISION= 6 
5CATEGORIES= graphics 4CATEGORIES= graphics
6MASTER_SITES= https://media.inkscape.org/dl/resources/file/ 5MASTER_SITES= https://media.inkscape.org/dl/resources/file/
7EXTRACT_SUFX= .tar.xz 6EXTRACT_SUFX= .tar.xz
8 7
9MAINTAINER= reed@reedmedia.net 8MAINTAINER= reed@reedmedia.net
10HOMEPAGE= https://www.inkscape.org/ 9HOMEPAGE= https://www.inkscape.org/
11COMMENT= Scalable Vector Graphics (SVG) editor 10COMMENT= Scalable Vector Graphics (SVG) editor
12LICENSE= gnu-gpl-v2 11LICENSE= gnu-gpl-v2
13 12
14.if !exists(/usr/bin/iconv) 13.if !exists(/usr/bin/iconv)
15TOOL_DEPENDS+= libiconv-[0-9]*:../../converters/libiconv 14TOOL_DEPENDS+= libiconv-[0-9]*:../../converters/libiconv
16.endif 15.endif
17DEPENDS+= adwaita-icon-theme>0:../../graphics/adwaita-icon-theme 16DEPENDS+= adwaita-icon-theme>0:../../graphics/adwaita-icon-theme
 17TOOL_DEPENDS+= ${PYPKGPREFIX}-cython-[0-9]*:../../devel/py-cython
18# for inkex.py, needed by most python extension scripts 18# for inkex.py, needed by most python extension scripts
19DEPENDS+= ${PYPKGPREFIX}-lxml-[0-9]*:../../textproc/py-lxml 19DEPENDS+= ${PYPKGPREFIX}-lxml-[0-9]*:../../textproc/py-lxml
20DEPENDS+= ${PYPKGPREFIX}-serial-[0-9]*:../../comms/py-serial 20DEPENDS+= ${PYPKGPREFIX}-serial-[0-9]*:../../comms/py-serial
21DEPENDS+= ${PYPKGPREFIX}-scour-[0-9]*:../../graphics/py-scour 21DEPENDS+= ${PYPKGPREFIX}-scour-[0-9]*:../../graphics/py-scour
22 22
23WRKSRC= ${WRKDIR}/inkscape-1.3_2023-07-21_0e150ed6c4 23WRKSRC= ${WRKDIR}/inkscape-1.3.1_2023-11-16_91b66b0783
24 24
25CPPFLAGS.NetBSD+= -Urounddown 25CPPFLAGS.NetBSD+= -Urounddown
26CPPFLAGS.NetBSD+= -Uroundup 26CPPFLAGS.NetBSD+= -Uroundup
27 27
28# This should be resolved in CMakeLists.txt. 28# This should be resolved in CMakeLists.txt.
29LDFLAGS+= ${COMPILER_RPATH_FLAG}${PREFIX}/lib/inkscape 29LDFLAGS+= ${COMPILER_RPATH_FLAG}${PREFIX}/lib/inkscape
30 30
31USE_LANGUAGES= c c++ 31USE_LANGUAGES= c c++
32USE_CXX_FEATURES+= c++17 32USE_CXX_FEATURES+= c++17
33USE_LIBTOOL= yes 33USE_LIBTOOL= yes
34USE_PKGLOCALEDIR= yes 34USE_PKGLOCALEDIR= yes
35# GCC 7 is not good enough. It chokes on ${WRKSRC}/src/object/sp-factory.cpp: 35# GCC 7 is not good enough. It chokes on ${WRKSRC}/src/object/sp-factory.cpp:
36# > static Func constexpr null = [] () -> SPObject* { return nullptr; }; 36# > static Func constexpr null = [] () -> SPObject* { return nullptr; };
37# by emitting duplicate definitions for the same static data member. This 37# by emitting duplicate definitions for the same static data member. This
38# is because its C++17 support is incomplete and does not treat constexpr 38# is because its C++17 support is incomplete and does not treat constexpr
39# data members as inline symbols. GCC 8 is also not good enough because it 39# data members as inline symbols. GCC 8 is also not good enough because it
40# fails to infer the type of std::uniform_real_distribution() used in 40# fails to infer the type of std::uniform_real_distribution() used in
41# ${WRKSRC}/src/ui/tools/booleans-subitems.cpp. 41# ${WRKSRC}/src/ui/tools/booleans-subitems.cpp.
42GCC_REQD+= 9 42GCC_REQD+= 9
43# GNU make (gmake) is required for handling whitespace in filename. 43# GNU make (gmake) is required for handling whitespace in filename.
44USE_TOOLS+= gmake 44USE_TOOLS+= gmake
45USE_TOOLS+= msgfmt msgmerge perl pkg-config 45USE_TOOLS+= msgfmt msgmerge perl pkg-config
46 46
47REPLACE_PERL+= man/fix-roff-punct 47REPLACE_PERL+= man/fix-roff-punct
48REPLACE_PERL+= share/extensions/*.p[lm] 
49REPLACE_PERL+= share/templates/create_defaults.pl 
50 48
51UNLIMIT_RESOURCES= datasize 49UNLIMIT_RESOURCES= datasize
52 50
53PYTHON_VERSIONS_INCOMPATIBLE= 27 38 51PYTHON_VERSIONS_INCOMPATIBLE= 27 38
54 52
55SUBST_CLASSES+= pypath 53SUBST_CLASSES+= pypath
56SUBST_STAGE.pypath= pre-configure 54SUBST_STAGE.pypath= pre-configure
57SUBST_FILES.pypath= src/extension/implementation/script.cpp 55SUBST_FILES.pypath= src/extension/implementation/script.cpp
58SUBST_VARS.pypath= PYTHONBIN 56SUBST_VARS.pypath= PYTHONBIN
59 57
60SUBST_CLASSES+= pycmd 58SUBST_CLASSES+= pycmd
61SUBST_STAGE.pycmd= pre-configure 59SUBST_STAGE.pycmd= pre-configure
62SUBST_MESSAGE.pycmd= Replacing COMMAND python in CMakeFiles. 60SUBST_MESSAGE.pycmd= Replacing COMMAND python in CMakeFiles.
@@ -118,26 +116,26 @@ BUILDLINK_API_DEPENDS.pango+= pango>=1.4 @@ -118,26 +116,26 @@ BUILDLINK_API_DEPENDS.pango+= pango>=1.4
118BUILDLINK_API_DEPENDS.harfbuzz+= harfbuzz>=2.2 116BUILDLINK_API_DEPENDS.harfbuzz+= harfbuzz>=2.2
119.include "../../fonts/harfbuzz/buildlink3.mk" 117.include "../../fonts/harfbuzz/buildlink3.mk"
120.include "../../graphics/freetype2/buildlink3.mk" 118.include "../../graphics/freetype2/buildlink3.mk"
121.include "../../graphics/hicolor-icon-theme/buildlink3.mk" 119.include "../../graphics/hicolor-icon-theme/buildlink3.mk"
122.include "../../graphics/lcms2/buildlink3.mk" 120.include "../../graphics/lcms2/buildlink3.mk"
123.include "../../graphics/png/buildlink3.mk" 121.include "../../graphics/png/buildlink3.mk"
124.include "../../graphics/potrace/buildlink3.mk" 122.include "../../graphics/potrace/buildlink3.mk"
125.include "../../math/gsl/buildlink3.mk" 123.include "../../math/gsl/buildlink3.mk"
126.include "../../math/double-conversion/buildlink3.mk" 124.include "../../math/double-conversion/buildlink3.mk"
127.include "../../math/py-numpy/buildlink3.mk" 125.include "../../math/py-numpy/buildlink3.mk"
128.include "../../net/libsoup/buildlink3.mk" 126.include "../../net/libsoup/buildlink3.mk"
129.include "../../print/poppler-glib/buildlink3.mk" 127.include "../../print/poppler-glib/buildlink3.mk"
130.include "../../print/poppler-includes/buildlink3.mk" 128.include "../../print/poppler-includes/buildlink3.mk"
131.include "../../textproc/aspell/buildlink3.mk" 129.include "../../textproc/gspell/buildlink3.mk"
132.include "../../textproc/gtkspell3/buildlink3.mk" 
133BUILDLINK_API_DEPENDS.gtkmm3+= gtkmm3>=3.24 130BUILDLINK_API_DEPENDS.gtkmm3+= gtkmm3>=3.24
134.include "../../x11/gtkmm3/buildlink3.mk" 131.include "../../x11/gtkmm3/buildlink3.mk"
 132.include "../../x11/gtksourceview4/buildlink3.mk"
135.if ${PKG_BUILD_OPTIONS.gtk3:Mquartz} 133.if ${PKG_BUILD_OPTIONS.gtk3:Mquartz}
136.include "../../x11/gtk-mac-integration/buildlink3.mk" 134.include "../../x11/gtk-mac-integration/buildlink3.mk"
137.endif 135.endif
138.include "../../sysutils/desktop-file-utils/desktopdb.mk" 136.include "../../sysutils/desktop-file-utils/desktopdb.mk"
139.include "../../lang/python/batteries-included.mk" 137.include "../../lang/python/batteries-included.mk"
140.include "../../lang/python/application.mk" 138.include "../../lang/python/application.mk"
141.include "../../mk/atomic64.mk" 139.include "../../mk/atomic64.mk"
142.include "../../mk/jpeg.buildlink3.mk" 140.include "../../mk/jpeg.buildlink3.mk"
143.include "../../mk/bsd.pkg.mk" 141.include "../../mk/bsd.pkg.mk"

cvs diff -r1.37 -r1.38 pkgsrc/graphics/inkscape/PLIST (expand / switch to unified diff)

--- pkgsrc/graphics/inkscape/PLIST 2023/08/13 14:13:23 1.37
+++ pkgsrc/graphics/inkscape/PLIST 2023/11/19 19:54:30 1.38
@@ -1,120 +1,121 @@ @@ -1,120 +1,121 @@
1@comment $NetBSD: PLIST,v 1.37 2023/08/13 14:13:23 ryoon Exp $ 1@comment $NetBSD: PLIST,v 1.38 2023/11/19 19:54:30 wiz Exp $
2bin/inkscape 2bin/inkscape
3bin/inkview 3bin/inkview
4include/2geom-${PKGVERSION}.0/2geom/2geom.h 4include/2geom-1.3.0/2geom/2geom.h
5include/2geom-${PKGVERSION}.0/2geom/affine.h 5include/2geom-1.3.0/2geom/affine.h
6include/2geom-${PKGVERSION}.0/2geom/angle.h 6include/2geom-1.3.0/2geom/angle.h
7include/2geom-${PKGVERSION}.0/2geom/basic-intersection.h 7include/2geom-1.3.0/2geom/basic-intersection.h
8include/2geom-${PKGVERSION}.0/2geom/bezier-curve.h 8include/2geom-1.3.0/2geom/bezier-curve.h
9include/2geom-${PKGVERSION}.0/2geom/bezier-to-sbasis.h 9include/2geom-1.3.0/2geom/bezier-to-sbasis.h
10include/2geom-${PKGVERSION}.0/2geom/bezier-utils.h 10include/2geom-1.3.0/2geom/bezier-utils.h
11include/2geom-${PKGVERSION}.0/2geom/bezier.h 11include/2geom-1.3.0/2geom/bezier.h
12include/2geom-${PKGVERSION}.0/2geom/cairo-path-sink.h 12include/2geom-1.3.0/2geom/cairo-path-sink.h
13include/2geom-${PKGVERSION}.0/2geom/choose.h 13include/2geom-1.3.0/2geom/choose.h
14include/2geom-${PKGVERSION}.0/2geom/circle.h 14include/2geom-1.3.0/2geom/circle.h
15include/2geom-${PKGVERSION}.0/2geom/concepts.h 15include/2geom-1.3.0/2geom/concepts.h
16include/2geom-${PKGVERSION}.0/2geom/conic_section_clipper.h 16include/2geom-1.3.0/2geom/conic_section_clipper.h
17include/2geom-${PKGVERSION}.0/2geom/conic_section_clipper_cr.h 17include/2geom-1.3.0/2geom/conic_section_clipper_cr.h
18include/2geom-${PKGVERSION}.0/2geom/conic_section_clipper_impl.h 18include/2geom-1.3.0/2geom/conic_section_clipper_impl.h
19include/2geom-${PKGVERSION}.0/2geom/conicsec.h 19include/2geom-1.3.0/2geom/conicsec.h
20include/2geom-${PKGVERSION}.0/2geom/convex-hull.h 20include/2geom-1.3.0/2geom/convex-hull.h
21include/2geom-${PKGVERSION}.0/2geom/coord.h 21include/2geom-1.3.0/2geom/coord.h
22include/2geom-${PKGVERSION}.0/2geom/crossing.h 22include/2geom-1.3.0/2geom/crossing.h
23include/2geom-${PKGVERSION}.0/2geom/curve.h 23include/2geom-1.3.0/2geom/curve.h
24include/2geom-${PKGVERSION}.0/2geom/curves.h 24include/2geom-1.3.0/2geom/curves.h
25include/2geom-${PKGVERSION}.0/2geom/d2.h 25include/2geom-1.3.0/2geom/d2.h
26include/2geom-${PKGVERSION}.0/2geom/ellipse.h 26include/2geom-1.3.0/2geom/ellipse.h
27include/2geom-${PKGVERSION}.0/2geom/elliptical-arc.h 27include/2geom-1.3.0/2geom/elliptical-arc.h
28include/2geom-${PKGVERSION}.0/2geom/exception.h 28include/2geom-1.3.0/2geom/exception.h
29include/2geom-${PKGVERSION}.0/2geom/forward.h 29include/2geom-1.3.0/2geom/forward.h
30include/2geom-${PKGVERSION}.0/2geom/generic-interval.h 30include/2geom-1.3.0/2geom/generic-interval.h
31include/2geom-${PKGVERSION}.0/2geom/generic-rect.h 31include/2geom-1.3.0/2geom/generic-rect.h
32include/2geom-${PKGVERSION}.0/2geom/geom.h 32include/2geom-1.3.0/2geom/geom.h
33include/2geom-${PKGVERSION}.0/2geom/int-interval.h 33include/2geom-1.3.0/2geom/int-interval.h
34include/2geom-${PKGVERSION}.0/2geom/int-point.h 34include/2geom-1.3.0/2geom/int-point.h
35include/2geom-${PKGVERSION}.0/2geom/int-rect.h 35include/2geom-1.3.0/2geom/int-rect.h
36include/2geom-${PKGVERSION}.0/2geom/intersection-graph.h 36include/2geom-1.3.0/2geom/intersection-graph.h
37include/2geom-${PKGVERSION}.0/2geom/intersection.h 37include/2geom-1.3.0/2geom/intersection.h
38include/2geom-${PKGVERSION}.0/2geom/interval.h 38include/2geom-1.3.0/2geom/interval.h
39include/2geom-${PKGVERSION}.0/2geom/intervaltree/interval_tree.h 39include/2geom-1.3.0/2geom/intervaltree/interval_tree.h
40include/2geom-${PKGVERSION}.0/2geom/line.h 40include/2geom-1.3.0/2geom/line.h
41include/2geom-${PKGVERSION}.0/2geom/linear.h 41include/2geom-1.3.0/2geom/linear.h
42include/2geom-${PKGVERSION}.0/2geom/math-utils.h 42include/2geom-1.3.0/2geom/math-utils.h
43include/2geom-${PKGVERSION}.0/2geom/nearest-time.h 43include/2geom-1.3.0/2geom/nearest-time.h
44include/2geom-${PKGVERSION}.0/2geom/numeric/fitting-model.h 44include/2geom-1.3.0/2geom/numeric/fitting-model.h
45include/2geom-${PKGVERSION}.0/2geom/numeric/fitting-tool.h 45include/2geom-1.3.0/2geom/numeric/fitting-tool.h
46include/2geom-${PKGVERSION}.0/2geom/numeric/linear_system.h 46include/2geom-1.3.0/2geom/numeric/linear_system.h
47include/2geom-${PKGVERSION}.0/2geom/numeric/matrix.h 47include/2geom-1.3.0/2geom/numeric/matrix.h
48include/2geom-${PKGVERSION}.0/2geom/numeric/symmetric-matrix-fs-operation.h 48include/2geom-1.3.0/2geom/numeric/symmetric-matrix-fs-operation.h
49include/2geom-${PKGVERSION}.0/2geom/numeric/symmetric-matrix-fs-trace.h 49include/2geom-1.3.0/2geom/numeric/symmetric-matrix-fs-trace.h
50include/2geom-${PKGVERSION}.0/2geom/numeric/symmetric-matrix-fs.h 50include/2geom-1.3.0/2geom/numeric/symmetric-matrix-fs.h
51include/2geom-${PKGVERSION}.0/2geom/numeric/vector.h 51include/2geom-1.3.0/2geom/numeric/vector.h
52include/2geom-${PKGVERSION}.0/2geom/ord.h 52include/2geom-1.3.0/2geom/ord.h
53include/2geom-${PKGVERSION}.0/2geom/orphan-code/arc-length.h 53include/2geom-1.3.0/2geom/orphan-code/arc-length.h
54include/2geom-${PKGVERSION}.0/2geom/orphan-code/chebyshev.h 54include/2geom-1.3.0/2geom/orphan-code/chebyshev.h
55include/2geom-${PKGVERSION}.0/2geom/orphan-code/intersection-by-smashing.h 55include/2geom-1.3.0/2geom/orphan-code/intersection-by-smashing.h
56include/2geom-${PKGVERSION}.0/2geom/orphan-code/linear-of.h 56include/2geom-1.3.0/2geom/orphan-code/linear-of.h
57include/2geom-${PKGVERSION}.0/2geom/orphan-code/linearN.h 57include/2geom-1.3.0/2geom/orphan-code/linearN.h
58include/2geom-${PKGVERSION}.0/2geom/orphan-code/redblacktree.h 58include/2geom-1.3.0/2geom/orphan-code/redblacktree.h
59include/2geom-${PKGVERSION}.0/2geom/orphan-code/rtree.h 59include/2geom-1.3.0/2geom/orphan-code/rtree.h
60include/2geom-${PKGVERSION}.0/2geom/orphan-code/sbasis-of.h 60include/2geom-1.3.0/2geom/orphan-code/sbasis-of.h
61include/2geom-${PKGVERSION}.0/2geom/orphan-code/sbasisN.h 61include/2geom-1.3.0/2geom/orphan-code/sbasisN.h
62include/2geom-${PKGVERSION}.0/2geom/parallelogram.h 62include/2geom-1.3.0/2geom/parallelogram.h
63include/2geom-${PKGVERSION}.0/2geom/path-intersection.h 63include/2geom-1.3.0/2geom/path-intersection.h
64include/2geom-${PKGVERSION}.0/2geom/path-sink.h 64include/2geom-1.3.0/2geom/path-sink.h
65include/2geom-${PKGVERSION}.0/2geom/path.h 65include/2geom-1.3.0/2geom/path.h
66include/2geom-${PKGVERSION}.0/2geom/pathvector.h 66include/2geom-1.3.0/2geom/pathvector.h
67include/2geom-${PKGVERSION}.0/2geom/piecewise.h 67include/2geom-1.3.0/2geom/piecewise.h
68include/2geom-${PKGVERSION}.0/2geom/point.h 68include/2geom-1.3.0/2geom/point.h
69include/2geom-${PKGVERSION}.0/2geom/polynomial.h 69include/2geom-1.3.0/2geom/polynomial.h
70include/2geom-${PKGVERSION}.0/2geom/ray.h 70include/2geom-1.3.0/2geom/ray.h
71include/2geom-${PKGVERSION}.0/2geom/rect.h 71include/2geom-1.3.0/2geom/rect.h
72include/2geom-${PKGVERSION}.0/2geom/sbasis-2d.h 72include/2geom-1.3.0/2geom/sbasis-2d.h
73include/2geom-${PKGVERSION}.0/2geom/sbasis-curve.h 73include/2geom-1.3.0/2geom/sbasis-curve.h
74include/2geom-${PKGVERSION}.0/2geom/sbasis-geometric.h 74include/2geom-1.3.0/2geom/sbasis-geometric.h
75include/2geom-${PKGVERSION}.0/2geom/sbasis-math.h 75include/2geom-1.3.0/2geom/sbasis-math.h
76include/2geom-${PKGVERSION}.0/2geom/sbasis-poly.h 76include/2geom-1.3.0/2geom/sbasis-poly.h
77include/2geom-${PKGVERSION}.0/2geom/sbasis-to-bezier.h 77include/2geom-1.3.0/2geom/sbasis-to-bezier.h
78include/2geom-${PKGVERSION}.0/2geom/sbasis.h 78include/2geom-1.3.0/2geom/sbasis.h
79include/2geom-${PKGVERSION}.0/2geom/solver.h 79include/2geom-1.3.0/2geom/solver.h
80include/2geom-${PKGVERSION}.0/2geom/svg-path-parser.h 80include/2geom-1.3.0/2geom/svg-path-parser.h
81include/2geom-${PKGVERSION}.0/2geom/svg-path-writer.h 81include/2geom-1.3.0/2geom/svg-path-writer.h
82include/2geom-${PKGVERSION}.0/2geom/sweep-bounds.h 82include/2geom-1.3.0/2geom/sweep-bounds.h
83include/2geom-${PKGVERSION}.0/2geom/sweeper.h 83include/2geom-1.3.0/2geom/sweeper.h
84include/2geom-${PKGVERSION}.0/2geom/symbolic/determinant-minor.h 84include/2geom-1.3.0/2geom/symbolic/determinant-minor.h
85include/2geom-${PKGVERSION}.0/2geom/symbolic/implicit.h 85include/2geom-1.3.0/2geom/symbolic/implicit.h
86include/2geom-${PKGVERSION}.0/2geom/symbolic/matrix.h 86include/2geom-1.3.0/2geom/symbolic/matrix.h
87include/2geom-${PKGVERSION}.0/2geom/symbolic/multi-index.h 87include/2geom-1.3.0/2geom/symbolic/multi-index.h
88include/2geom-${PKGVERSION}.0/2geom/symbolic/multipoly.h 88include/2geom-1.3.0/2geom/symbolic/multipoly.h
89include/2geom-${PKGVERSION}.0/2geom/symbolic/mvpoly-tools.h 89include/2geom-1.3.0/2geom/symbolic/mvpoly-tools.h
90include/2geom-${PKGVERSION}.0/2geom/symbolic/polynomial.h 90include/2geom-1.3.0/2geom/symbolic/polynomial.h
91include/2geom-${PKGVERSION}.0/2geom/symbolic/unity-builder.h 91include/2geom-1.3.0/2geom/symbolic/unity-builder.h
92include/2geom-${PKGVERSION}.0/2geom/transforms.h 92include/2geom-1.3.0/2geom/transforms.h
93include/2geom-${PKGVERSION}.0/2geom/utils.h 93include/2geom-1.3.0/2geom/utils.h
94lib/cmake/2Geom/2GeomConfig.cmake 94lib/cmake/2Geom/2GeomConfig.cmake
95lib/cmake/2Geom/2GeomConfigVersion.cmake 95lib/cmake/2Geom/2GeomConfigVersion.cmake
96lib/cmake/2Geom/2GeomTargets-release.cmake 96lib/cmake/2Geom/2GeomTargets-release.cmake
97lib/cmake/2Geom/2GeomTargets.cmake 97lib/cmake/2Geom/2GeomTargets.cmake
98lib/inkscape/libinkscape_base.so 98lib/inkscape/libinkscape_base.so
99lib/inkscape/libinkscape_base.so.${PKGVERSION}.0.0 99lib/inkscape/libinkscape_base.so.${PKGVERSION}.0
100lib/lib2geom.so 100lib/lib2geom.so
101lib/lib2geom.so.${PKGVERSION}.0 101lib/lib2geom.so.1.3.0
102lib/pkgconfig/2geom.pc 102lib/pkgconfig/2geom.pc
103man/de/man1/inkscape.1 103man/de/man1/inkscape.1
104man/de/man1/inkview.1 104man/de/man1/inkview.1
105man/es/man1/inkview.1 105man/es/man1/inkview.1
106man/fr/man1/inkscape.1 106man/fr/man1/inkscape.1
107man/fr/man1/inkview.1 107man/fr/man1/inkview.1
 108man/hr/man1/inkscape.1
108man/hr/man1/inkview.1 109man/hr/man1/inkview.1
109man/hu/man1/inkscape.1 110man/hu/man1/inkscape.1
110man/hu/man1/inkview.1 111man/hu/man1/inkview.1
111man/ko/man1/inkscape.1 112man/ko/man1/inkscape.1
112man/ko/man1/inkview.1 113man/ko/man1/inkview.1
113man/man1/inkscape.1 114man/man1/inkscape.1
114man/man1/inkview.1 115man/man1/inkview.1
115man/pt_BR/man1/inkview.1 116man/pt_BR/man1/inkview.1
116man/zh_TW/man1/inkscape.1 117man/zh_TW/man1/inkscape.1
117man/zh_TW/man1/inkview.1 118man/zh_TW/man1/inkview.1
118share/applications/org.inkscape.Inkscape.desktop 119share/applications/org.inkscape.Inkscape.desktop
119share/bash-completion/completions/inkscape 120share/bash-completion/completions/inkscape
120share/icons/hicolor/16x16/apps/org.inkscape.Inkscape.png 121share/icons/hicolor/16x16/apps/org.inkscape.Inkscape.png
@@ -706,26 +707,28 @@ share/inkscape/extensions/other/extensio @@ -706,26 +707,28 @@ share/inkscape/extensions/other/extensio
706share/inkscape/extensions/other/extension-xaml/inkxaml/svg2xaml.inx 707share/inkscape/extensions/other/extension-xaml/inkxaml/svg2xaml.inx
707share/inkscape/extensions/other/extension-xaml/inkxaml/svg2xaml.py 708share/inkscape/extensions/other/extension-xaml/inkxaml/svg2xaml.py
708share/inkscape/extensions/other/extension-xaml/inkxaml/tester.py 709share/inkscape/extensions/other/extension-xaml/inkxaml/tester.py
709share/inkscape/extensions/other/extension-xaml/inkxaml/xaml2svg.inx 710share/inkscape/extensions/other/extension-xaml/inkxaml/xaml2svg.inx
710share/inkscape/extensions/other/extension-xaml/inkxaml/xaml2svg.xsl 711share/inkscape/extensions/other/extension-xaml/inkxaml/xaml2svg.xsl
711share/inkscape/extensions/other/extension-xaml/inkxaml/xaml2svg/animation.xsl 712share/inkscape/extensions/other/extension-xaml/inkxaml/xaml2svg/animation.xsl
712share/inkscape/extensions/other/extension-xaml/inkxaml/xaml2svg/brushes.xsl 713share/inkscape/extensions/other/extension-xaml/inkxaml/xaml2svg/brushes.xsl
713share/inkscape/extensions/other/extension-xaml/inkxaml/xaml2svg/canvas.xsl 714share/inkscape/extensions/other/extension-xaml/inkxaml/xaml2svg/canvas.xsl
714share/inkscape/extensions/other/extension-xaml/inkxaml/xaml2svg/geometry.xsl 715share/inkscape/extensions/other/extension-xaml/inkxaml/xaml2svg/geometry.xsl
715share/inkscape/extensions/other/extension-xaml/inkxaml/xaml2svg/properties.xsl 716share/inkscape/extensions/other/extension-xaml/inkxaml/xaml2svg/properties.xsl
716share/inkscape/extensions/other/extension-xaml/inkxaml/xaml2svg/shapes.xsl 717share/inkscape/extensions/other/extension-xaml/inkxaml/xaml2svg/shapes.xsl
717share/inkscape/extensions/other/extension-xaml/inkxaml/xaml2svg/transform.xsl 718share/inkscape/extensions/other/extension-xaml/inkxaml/xaml2svg/transform.xsl
718share/inkscape/extensions/other/extension-xaml/inkxaml/xamlobjects.py 719share/inkscape/extensions/other/extension-xaml/inkxaml/xamlobjects.py
 720share/inkscape/extensions/other/extension-xaml/poetry.lock
 721share/inkscape/extensions/other/extension-xaml/pyproject.toml
719share/inkscape/extensions/other/extension-xaml/readme.md 722share/inkscape/extensions/other/extension-xaml/readme.md
720share/inkscape/extensions/other/extension-xaml/tox.ini 723share/inkscape/extensions/other/extension-xaml/tox.ini
721share/inkscape/extensions/other/gcodetools/.darglint 724share/inkscape/extensions/other/gcodetools/.darglint
722share/inkscape/extensions/other/gcodetools/.pylintrc 725share/inkscape/extensions/other/gcodetools/.pylintrc
723share/inkscape/extensions/other/gcodetools/LICENSE.txt 726share/inkscape/extensions/other/gcodetools/LICENSE.txt
724share/inkscape/extensions/other/gcodetools/MANIFEST.in 727share/inkscape/extensions/other/gcodetools/MANIFEST.in
725share/inkscape/extensions/other/gcodetools/README.md 728share/inkscape/extensions/other/gcodetools/README.md
726share/inkscape/extensions/other/gcodetools/gcodetools.py 729share/inkscape/extensions/other/gcodetools/gcodetools.py
727share/inkscape/extensions/other/gcodetools/gcodetools_about.inx 730share/inkscape/extensions/other/gcodetools/gcodetools_about.inx
728share/inkscape/extensions/other/gcodetools/gcodetools_area.inx 731share/inkscape/extensions/other/gcodetools/gcodetools_area.inx
729share/inkscape/extensions/other/gcodetools/gcodetools_dxf_points.inx 732share/inkscape/extensions/other/gcodetools/gcodetools_dxf_points.inx
730share/inkscape/extensions/other/gcodetools/gcodetools_engraving.inx 733share/inkscape/extensions/other/gcodetools/gcodetools_engraving.inx
731share/inkscape/extensions/other/gcodetools/gcodetools_graffiti.inx 734share/inkscape/extensions/other/gcodetools/gcodetools_graffiti.inx

cvs diff -r1.94 -r1.95 pkgsrc/graphics/inkscape/distinfo (expand / switch to unified diff)

--- pkgsrc/graphics/inkscape/distinfo 2023/08/13 14:13:23 1.94
+++ pkgsrc/graphics/inkscape/distinfo 2023/11/19 19:54:30 1.95
@@ -1,8 +1,8 @@ @@ -1,8 +1,8 @@
1$NetBSD: distinfo,v 1.94 2023/08/13 14:13:23 ryoon Exp $ 1$NetBSD: distinfo,v 1.95 2023/11/19 19:54:30 wiz Exp $
2 2
3BLAKE2s (inkscape-1.3.tar.xz) = 54ecf8edffd743085bc67502b9af1886f0f593ac5343716c04152b03a2d5ad19 3BLAKE2s (inkscape-1.3.1.tar.xz) = a92f5577e7be254fcbbebcd5c2fbfd0f8e6b8dfadd2f1e3b71f0209f57418abb
4SHA512 (inkscape-1.3.tar.xz) = 1eb488105586bf98a51c7109ab2e23292f039e5f0e66de4d3684a73f0ab408d89ee55560517d3185370ad3f32b31cf03d149df02ba5c895fe386dd1581fcb2e8 4SHA512 (inkscape-1.3.1.tar.xz) = cb0f8984c2dd33708021400384eeb2cfe32af4ba34a2f371a767b100a000cfe35b8c4fe88eb294a8f6fc0795d9991d53552df5b152288130da91228066f68a26
5Size (inkscape-1.3.tar.xz) = 85764028 bytes 5Size (inkscape-1.3.1.tar.xz) = 44727728 bytes
6SHA1 (patch-CMakeScripts_DefineDependsandFlags.cmake) = 6638a97615ca37bcdc20463b37cd859d723f66d6 6SHA1 (patch-CMakeScripts_DefineDependsandFlags.cmake) = 6638a97615ca37bcdc20463b37cd859d723f66d6
7SHA1 (patch-src_extension_implementation_script.cpp) = da46549f688da5c9c0ecbeaeac7962e4f261cae4 7SHA1 (patch-src_extension_implementation_script.cpp) = da46549f688da5c9c0ecbeaeac7962e4f261cae4
8SHA1 (patch-src_helper_mathfns.h) = 37977a9c767dd409088e552135c512ff76f675a4 8SHA1 (patch-src_helper_mathfns.h) = 37977a9c767dd409088e552135c512ff76f675a4