pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

libopenshot: imported version 0.2.5 libopenshot-audio: added buildlink3.mk cppzmq: imported version 4.6.0 (needed by libopenshot) swig4: imported version 4.0.1 (used by libopenshot)



Module Name:	pkgsrc-wip
Committed By:	Aleksej Lebedev <root%zta.lk@localhost>
Pushed By:	zhtw
Date:		Fri Apr 17 12:12:41 2020 +0200
Changeset:	779326c320860471bbaa4b5416e7b022c8b0f6d7

Modified Files:
	libopenshot-audio/buildlink3.mk
Added Files:
	cppzmq/DESCR
	cppzmq/Makefile
	cppzmq/PLIST
	cppzmq/buildlink3.mk
	cppzmq/distinfo
	libopenshot/DESCR
	libopenshot/Makefile
	libopenshot/PLIST
	libopenshot/distinfo
	swig4/DESCR
	swig4/Makefile
	swig4/PLIST
	swig4/distinfo

Log Message:
libopenshot: imported version 0.2.5
libopenshot-audio: added buildlink3.mk
cppzmq: imported version 4.6.0 (needed by libopenshot)
swig4: imported version 4.0.1 (used by libopenshot)

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=779326c320860471bbaa4b5416e7b022c8b0f6d7

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 cppzmq/DESCR                    |  23 ++
 cppzmq/Makefile                 |  21 ++
 cppzmq/PLIST                    |   7 +
 cppzmq/buildlink3.mk            |  30 ++
 cppzmq/distinfo                 |   6 +
 libopenshot-audio/buildlink3.mk |   2 +-
 libopenshot/DESCR               |  23 ++
 libopenshot/Makefile            |  31 ++
 libopenshot/PLIST               |  81 +++++
 libopenshot/distinfo            |   6 +
 swig4/DESCR                     |  14 +
 swig4/Makefile                  |  23 ++
 swig4/PLIST                     | 717 ++++++++++++++++++++++++++++++++++++++++
 swig4/distinfo                  |   6 +
 14 files changed, 989 insertions(+), 1 deletion(-)

diffs:
diff --git a/cppzmq/DESCR b/cppzmq/DESCR
new file mode 100644
index 0000000000..36f5522053
--- /dev/null
+++ b/cppzmq/DESCR
@@ -0,0 +1,23 @@
+TODO: Adjust the following lines from README.md
+
+[![Travis-CI Status](https://img.shields.io/travis/zeromq/cppzmq/master.svg?label=Linux%20|%20OSX)](https://travis-ci.org/zeromq/cppzmq)
+[![Appveyor Status](https://img.shields.io/appveyor/ci/zeromq/cppzmq/master.svg?label=Windows)](https://ci.appveyor.com/project/zeromq/cppzmq/branch/master)
+[![Coverage Status](https://coveralls.io/repos/github/zeromq/cppzmq/badge.svg?branch=master)](https://coveralls.io/github/zeromq/cppzmq?branch=master)
+[![License](https://img.shields.io/github/license/zeromq/cppzmq.svg)](https://github.com/zeromq/cppzmq/blob/master/LICENSE)
+
+Introduction & Design Goals
+===========================
+
+cppzmq is a C++ binding for libzmq. It has the following design goals:
+ - cppzmq maps the libzmq C API to C++ concepts. In particular:
+   - it is type-safe (the libzmq C API exposes various class-like concepts as void*)
+   - it provides exception-based error handling (the libzmq C API provides errno-based error handling)
+   - it provides RAII-style classes that automate resource management (the libzmq C API requires the user to take care to free resources explicitly)
+ - cppzmq is a light-weight, header-only binding. You only need to include the header file zmq.hpp (and maybe zmq_addon.hpp) to use it.
+ - zmq.hpp is meant to contain direct mappings of the abstractions provided by the libzmq C API, while zmq_addon.hpp provides additional higher-level abstractions.
+
+There are other C++ bindings for ZeroMQ with different design goals. In particular, none of the following bindings are header-only:
+ - [zmqpp](https://github.com/zeromq/zmqpp) is a high-level binding to libzmq.
+ - [czmqpp](https://github.com/zeromq/czmqpp) is a binding based on the high-level czmq API.
+ - [fbzmq](https://github.com/facebook/fbzmq) is a binding that integrates with Apache Thrift and provides higher-level abstractions in addition. It requires C++14.
+...
diff --git a/cppzmq/Makefile b/cppzmq/Makefile
new file mode 100644
index 0000000000..415b031d02
--- /dev/null
+++ b/cppzmq/Makefile
@@ -0,0 +1,21 @@
+# $NetBSD$
+
+GITHUB_PROJECT=	cppzmq
+GITHUB_TAG=	v4.6.0
+DISTNAME=	v4.6.0
+PKGNAME=	${GITHUB_PROJECT}-${DISTNAME:S,^v,,}
+CATEGORIES=	# TODO: add primary category
+MASTER_SITES=	${MASTER_SITE_GITHUB:=zeromq/}
+DIST_SUBDIR=	${GITHUB_PROJECT}
+
+MAINTAINER=	root%zta.lk@localhost
+HOMEPAGE=	https://github.com/zeromq/cppzmq/
+COMMENT=	TODO: Short description of the package
+#LICENSE=	# TODO: (see mk/license.mk)
+
+WRKSRC=		${WRKDIR}/cppzmq-4.6.0
+USE_CMAKE=	yes
+USE_LANGUAGES=	c c++
+
+.include "../../net/zeromq/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/cppzmq/PLIST b/cppzmq/PLIST
new file mode 100644
index 0000000000..06d9c4652d
--- /dev/null
+++ b/cppzmq/PLIST
@@ -0,0 +1,7 @@
+@comment $NetBSD$
+include/zmq.hpp
+include/zmq_addon.hpp
+share/cmake/cppzmq/cppzmqConfig.cmake
+share/cmake/cppzmq/cppzmqConfigVersion.cmake
+share/cmake/cppzmq/cppzmqTargets.cmake
+share/cmake/cppzmq/libzmq-pkg-config/FindZeroMQ.cmake
diff --git a/cppzmq/buildlink3.mk b/cppzmq/buildlink3.mk
new file mode 100644
index 0000000000..e4cb9772f6
--- /dev/null
+++ b/cppzmq/buildlink3.mk
@@ -0,0 +1,30 @@
+# $NetBSD$
+# XXX
+# XXX This file was created automatically using createbuildlink-3.17.
+# XXX After this file has been verified as correct, the comment lines
+# XXX beginning with "XXX" should be removed.  Please do not commit
+# XXX unverified buildlink3.mk files.
+# XXX
+# XXX Packages that only install static libraries or headers should
+# XXX include the following line:
+# XXX
+# XXX	BUILDLINK_DEPMETHOD.cppzmq?=	build
+
+BUILDLINK_TREE+=	cppzmq
+
+.if !defined(CPPZMQ_BUILDLINK3_MK)
+CPPZMQ_BUILDLINK3_MK:=
+
+BUILDLINK_API_DEPENDS.cppzmq+=	cppzmq>=4.6.0
+BUILDLINK_PKGSRCDIR.cppzmq?=	../../wip/cppzmq
+
+# XXX
+# XXX Uncomment and keep only the buildlink3 lines below which are directly
+# XXX needed for dependencies to compile, link, and run.  If this package
+# XXX provides a wrappered API or otherwise does not expose the APIs of the
+# XXX buildlink3 lines below to dependencies, remove them.
+# XXX
+#.include "../../net/zeromq/buildlink3.mk"
+.endif	# CPPZMQ_BUILDLINK3_MK
+
+BUILDLINK_TREE+=	-cppzmq
diff --git a/cppzmq/distinfo b/cppzmq/distinfo
new file mode 100644
index 0000000000..88f803a3ec
--- /dev/null
+++ b/cppzmq/distinfo
@@ -0,0 +1,6 @@
+$NetBSD$
+
+SHA1 (cppzmq/v4.6.0.tar.gz) = 4acd8eb109c1a0a0f7cea3aa34c3585e555ca929
+RMD160 (cppzmq/v4.6.0.tar.gz) = 7bc3a08a64956b1d4c25868945a88c21aa6cd02a
+SHA512 (cppzmq/v4.6.0.tar.gz) = f30b37c970790de2684086638084e65310396072c1c1d00415c9a36b7ef6d79fe500ce174fddab699a602a80341e2fb7f309dec2eb96252531b5ca5cf7ac5027
+Size (cppzmq/v4.6.0.tar.gz) = 35078 bytes
diff --git a/libopenshot-audio/buildlink3.mk b/libopenshot-audio/buildlink3.mk
index 4dd4fbc3df..62d56f1529 100644
--- a/libopenshot-audio/buildlink3.mk
+++ b/libopenshot-audio/buildlink3.mk
@@ -15,7 +15,7 @@ BUILDLINK_TREE+=	libopenshot-audio
 .if !defined(LIBOPENSHOT_AUDIO_BUILDLINK3_MK)
 LIBOPENSHOT_AUDIO_BUILDLINK3_MK:=
 
-BUILDLINK_API_DEPENDS.libopenshot-audio+=	libopenshot-audio>=v0.1.8
+BUILDLINK_API_DEPENDS.libopenshot-audio+=	libopenshot-audio>=0.2.0
 BUILDLINK_PKGSRCDIR.libopenshot-audio?=	../../wip/libopenshot-audio
 
 # XXX
diff --git a/libopenshot/DESCR b/libopenshot/DESCR
new file mode 100644
index 0000000000..4754f1ce3e
--- /dev/null
+++ b/libopenshot/DESCR
@@ -0,0 +1,23 @@
+TODO: Adjust the following lines from README.md
+
+OpenShot Video Library (libopenshot) is a free, open-source C++ library dedicated to
+delivering high quality video editing, animation, and playback solutions to the 
+world.
+
+## Build Status
+
+[![Build Status](https://img.shields.io/travis/OpenShot/libopenshot/develop.svg?label=libopenshot)](https://travis-ci.org/OpenShot/libopenshot) [![Build Status](https://img.shields.io/travis/OpenShot/libopenshot-audio/develop.svg?label=libopenshot-audio)](https://travis-ci.org/OpenShot/libopenshot-audio)
+
+## Features
+
+* Cross-Platform (Linux, Mac, and Windows)
+* Multi-Layer Compositing
+* Video and Audio Effects (Chroma Key, Color Adjustment, Grayscale, etc…)
+* Animation Curves (Bézier, Linear, Constant)
+* Time Mapping (Curve-based Slow Down, Speed Up, Reverse)
+* Audio Mixing & Resampling (Curve-based)
+* Audio Plug-ins (VST & AU)
+* Audio Drivers (ASIO, WASAPI, DirectSound, CoreAudio, iPhone Audio, ALSA, JACK, and Android)
+* Telecine and Inverse Telecine (Film to TV, TV to Film)
+* Frame Rate Conversions
+...
diff --git a/libopenshot/Makefile b/libopenshot/Makefile
new file mode 100644
index 0000000000..051b9f32b5
--- /dev/null
+++ b/libopenshot/Makefile
@@ -0,0 +1,31 @@
+# $NetBSD$
+
+DISTNAME=	libopenshot-0.2.5
+CATEGORIES=	devel
+MASTER_SITES=	${MASTER_SITE_GITHUB:=OpenShot/}
+GITHUB_TAG=	v${PKGVERSION_NOREV}
+
+MAINTAINER=	root%zta.lk@localhost
+HOMEPAGE=	https://www.openshot.org/libopenshot/
+COMMENT=	Powerful, cross-platform open-source C++ video editing library
+LICENSE=	gnu-lgpl-v3
+
+WRKSRC=		${WRKDIR}/libopenshot-0.2.5
+USE_CMAKE=	yes
+USE_LANGUAGES=	c c++
+
+DEPENDS+=	swig4>=4.0.0:../../wip/swig4
+
+.include "../../multimedia/ffmpeg4/buildlink3.mk"
+.include "../../net/zeromq/buildlink3.mk"
+.include "../../wip/cppzmq/buildlink3.mk"
+.include "../../wip/libopenshot-audio/buildlink3.mk"
+.include "../../graphics/librsvg/buildlink3.mk"
+.include "../../x11/qt5-qtbase/buildlink3.mk"
+.include "../../x11/qt5-qtmultimedia/buildlink3.mk"
+.include "../../devel/unittest-cpp/buildlink3.mk"
+
+#.include "../../lang/python/pyversion.mk"
+.include "../../lang/python37/buildlink3.mk"
+.include "../../lang/ruby/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/libopenshot/PLIST b/libopenshot/PLIST
new file mode 100644
index 0000000000..d1b23defe8
--- /dev/null
+++ b/libopenshot/PLIST
@@ -0,0 +1,81 @@
+@comment $NetBSD$
+include/libopenshot/AudioBufferSource.h
+include/libopenshot/AudioDeviceInfo.h
+include/libopenshot/AudioReaderSource.h
+include/libopenshot/AudioResampler.h
+include/libopenshot/CacheBase.h
+include/libopenshot/CacheDisk.h
+include/libopenshot/CacheMemory.h
+include/libopenshot/ChannelLayouts.h
+include/libopenshot/ChunkReader.h
+include/libopenshot/ChunkWriter.h
+include/libopenshot/Clip.h
+include/libopenshot/ClipBase.h
+include/libopenshot/Color.h
+include/libopenshot/Coordinate.h
+include/libopenshot/CrashHandler.h
+include/libopenshot/DecklinkInput.h
+include/libopenshot/DecklinkOutput.h
+include/libopenshot/DecklinkReader.h
+include/libopenshot/DecklinkWriter.h
+include/libopenshot/DummyReader.h
+include/libopenshot/EffectBase.h
+include/libopenshot/EffectInfo.h
+include/libopenshot/Effects.h
+include/libopenshot/Enums.h
+include/libopenshot/Exceptions.h
+include/libopenshot/FFmpegReader.h
+include/libopenshot/FFmpegUtilities.h
+include/libopenshot/FFmpegWriter.h
+include/libopenshot/Fraction.h
+include/libopenshot/Frame.h
+include/libopenshot/FrameMapper.h
+include/libopenshot/ImageReader.h
+include/libopenshot/ImageWriter.h
+include/libopenshot/Json.h
+include/libopenshot/KeyFrame.h
+include/libopenshot/MagickUtilities.h
+include/libopenshot/OpenMPUtilities.h
+include/libopenshot/OpenShot.h
+include/libopenshot/OpenShotVersion.h
+include/libopenshot/PlayerBase.h
+include/libopenshot/Point.h
+include/libopenshot/Profiles.h
+include/libopenshot/Qt/AudioPlaybackThread.h
+include/libopenshot/Qt/PlayerDemo.h
+include/libopenshot/Qt/PlayerPrivate.h
+include/libopenshot/Qt/VideoCacheThread.h
+include/libopenshot/Qt/VideoPlaybackThread.h
+include/libopenshot/Qt/VideoRenderWidget.h
+include/libopenshot/Qt/VideoRenderer.h
+include/libopenshot/QtHtmlReader.h
+include/libopenshot/QtImageReader.h
+include/libopenshot/QtPlayer.h
+include/libopenshot/QtTextReader.h
+include/libopenshot/ReaderBase.h
+include/libopenshot/RendererBase.h
+include/libopenshot/Settings.h
+include/libopenshot/TextReader.h
+include/libopenshot/Timeline.h
+include/libopenshot/WriterBase.h
+include/libopenshot/ZmqLogger.h
+include/libopenshot/effects/Bars.h
+include/libopenshot/effects/Blur.h
+include/libopenshot/effects/Brightness.h
+include/libopenshot/effects/ChromaKey.h
+include/libopenshot/effects/ColorShift.h
+include/libopenshot/effects/Crop.h
+include/libopenshot/effects/Deinterlace.h
+include/libopenshot/effects/Hue.h
+include/libopenshot/effects/Mask.h
+include/libopenshot/effects/Negate.h
+include/libopenshot/effects/Pixelate.h
+include/libopenshot/effects/Saturation.h
+include/libopenshot/effects/Shift.h
+include/libopenshot/effects/Wave.h
+lib/libopenshot.${RUBY_DLEXT}
+lib/libopenshot.so.${PKGVERSION}
+lib/libopenshot.so.19
+lib/python3.7/site-packages/_openshot.${RUBY_DLEXT}
+lib/python3.7/site-packages/openshot.py
+${RUBY_VENDORARCHLIB}/openshot.${RUBY_DLEXT}
diff --git a/libopenshot/distinfo b/libopenshot/distinfo
new file mode 100644
index 0000000000..d95ce852bd
--- /dev/null
+++ b/libopenshot/distinfo
@@ -0,0 +1,6 @@
+$NetBSD$
+
+SHA1 (libopenshot-0.2.5.tar.gz) = 064e2088358586f2d9341910e07604fedcd078f6
+RMD160 (libopenshot-0.2.5.tar.gz) = 28ecdba847b137b45a4dcf5e81098561acb44f5a
+SHA512 (libopenshot-0.2.5.tar.gz) = b7cdf72897e6edaa8cc00e17dbe30f5b22a6b5d69aab64ddafb184458b41ef0332db1f3e2c6f039492bf7adb521d9758834d0bf6c24e6421a55970d8cf8caba7
+Size (libopenshot-0.2.5.tar.gz) = 10295768 bytes
diff --git a/swig4/DESCR b/swig4/DESCR
new file mode 100644
index 0000000000..44c7033d6a
--- /dev/null
+++ b/swig4/DESCR
@@ -0,0 +1,14 @@
+SWIG (Simplified Wrapper and Interface Generator)
+
+SWIG is a compiler that integrates C and C++ with languages including
+Perl, Python, Tcl, Ruby, PHP, Java, C#, D, Go, Lua, Octave, R,
+Scheme (Guile, MzScheme/Racket, CHICKEN), Scilab, Ocaml, Modula-3,
+Common Lisp (CLISP, Allegro CL, CFFI, UFFI) and Pike. SWIG can also
+export its parse tree into XML and Lisp s-expressions.
+
+SWIG reads annotated C/C++ header files and creates wrapper code
+(glue code) in order to make the corresponding C/C++ libraries
+available to the listed languages, or to extend C/C++ programs with
+a scripting language.
+
+This is version 3 of swig.
diff --git a/swig4/Makefile b/swig4/Makefile
new file mode 100644
index 0000000000..1dc4710c56
--- /dev/null
+++ b/swig4/Makefile
@@ -0,0 +1,23 @@
+# $NetBSD: Makefile,v 1.6 2019/08/11 13:20:52 wiz Exp $
+
+DISTNAME=	swig-4.0.1
+PKGNAME=	${DISTNAME:S/swig/swig4/}
+PKGREVISION=	2
+CATEGORIES=	devel
+MASTER_SITES=	${MASTER_SITE_SOURCEFORGE:=swig/}
+
+MAINTAINER=	prlw1%cam.ac.uk@localhost
+HOMEPAGE=	http://www.swig.org/
+COMMENT=	Simplified Wrapper and Interface Generator (version 3)
+LICENSE=	gnu-gpl-v3
+
+USE_LANGUAGES=		c c++
+USE_TOOLS+=		perl:build
+GNU_CONFIGURE=		yes
+CONFIGURE_ARGS+=	--program-suffix=4.0
+CONFIGURE_ARGS+=	--with-swiglibdir=${PREFIX}/share/swig/4.0
+
+BUILD_TARGET=	swig
+
+.include "../../devel/pcre/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/swig4/PLIST b/swig4/PLIST
new file mode 100644
index 0000000000..7d533d6d43
--- /dev/null
+++ b/swig4/PLIST
@@ -0,0 +1,717 @@
+@comment $NetBSD$
+bin/ccache-swig4.0
+bin/swig4.0
+share/swig/4.0/allkw.swg
+share/swig/4.0/attribute.i
+share/swig/4.0/carrays.i
+share/swig/4.0/cdata.i
+share/swig/4.0/cmalloc.i
+share/swig/4.0/constraints.i
+share/swig/4.0/cpointer.i
+share/swig/4.0/csharp/arrays_csharp.i
+share/swig/4.0/csharp/boost_intrusive_ptr.i
+share/swig/4.0/csharp/boost_shared_ptr.i
+share/swig/4.0/csharp/complex.i
+share/swig/4.0/csharp/csharp.swg
+share/swig/4.0/csharp/csharphead.swg
+share/swig/4.0/csharp/csharpkw.swg
+share/swig/4.0/csharp/director.swg
+share/swig/4.0/csharp/enums.swg
+share/swig/4.0/csharp/enumsimple.swg
+share/swig/4.0/csharp/enumtypesafe.swg
+share/swig/4.0/csharp/std_array.i
+share/swig/4.0/csharp/std_auto_ptr.i
+share/swig/4.0/csharp/std_common.i
+share/swig/4.0/csharp/std_complex.i
+share/swig/4.0/csharp/std_deque.i
+share/swig/4.0/csharp/std_except.i
+share/swig/4.0/csharp/std_list.i
+share/swig/4.0/csharp/std_map.i
+share/swig/4.0/csharp/std_pair.i
+share/swig/4.0/csharp/std_set.i
+share/swig/4.0/csharp/std_shared_ptr.i
+share/swig/4.0/csharp/std_string.i
+share/swig/4.0/csharp/std_vector.i
+share/swig/4.0/csharp/std_wstring.i
+share/swig/4.0/csharp/stl.i
+share/swig/4.0/csharp/swiginterface.i
+share/swig/4.0/csharp/swigtype_inout.i
+share/swig/4.0/csharp/typemaps.i
+share/swig/4.0/csharp/wchar.i
+share/swig/4.0/cstring.i
+share/swig/4.0/cwstring.i
+share/swig/4.0/d/boost_shared_ptr.i
+share/swig/4.0/d/carrays.i
+share/swig/4.0/d/cpointer.i
+share/swig/4.0/d/d.swg
+share/swig/4.0/d/dclassgen.swg
+share/swig/4.0/d/ddirectives.swg
+share/swig/4.0/d/denums.swg
+share/swig/4.0/d/dexception.swg
+share/swig/4.0/d/dhead.swg
+share/swig/4.0/d/director.swg
+share/swig/4.0/d/dkw.swg
+share/swig/4.0/d/dmemberfunctionpointers.swg
+share/swig/4.0/d/doperators.swg
+share/swig/4.0/d/dprimitives.swg
+share/swig/4.0/d/dstrings.swg
+share/swig/4.0/d/dswigtype.swg
+share/swig/4.0/d/dvoid.swg
+share/swig/4.0/d/std_common.i
+share/swig/4.0/d/std_deque.i
+share/swig/4.0/d/std_except.i
+share/swig/4.0/d/std_map.i
+share/swig/4.0/d/std_pair.i
+share/swig/4.0/d/std_shared_ptr.i
+share/swig/4.0/d/std_string.i
+share/swig/4.0/d/std_vector.i
+share/swig/4.0/d/stl.i
+share/swig/4.0/d/typemaps.i
+share/swig/4.0/d/wrapperloader.swg
+share/swig/4.0/director_common.swg
+share/swig/4.0/exception.i
+share/swig/4.0/go/cdata.i
+share/swig/4.0/go/director.swg
+share/swig/4.0/go/exception.i
+share/swig/4.0/go/go.swg
+share/swig/4.0/go/gokw.swg
+share/swig/4.0/go/goruntime.swg
+share/swig/4.0/go/gostring.swg
+share/swig/4.0/go/std_common.i
+share/swig/4.0/go/std_deque.i
+share/swig/4.0/go/std_except.i
+share/swig/4.0/go/std_list.i
+share/swig/4.0/go/std_map.i
+share/swig/4.0/go/std_pair.i
+share/swig/4.0/go/std_string.i
+share/swig/4.0/go/std_vector.i
+share/swig/4.0/go/stl.i
+share/swig/4.0/go/typemaps.i
+share/swig/4.0/guile/common.scm
+share/swig/4.0/guile/cplusplus.i
+share/swig/4.0/guile/guile.i
+share/swig/4.0/guile/guile_scm.swg
+share/swig/4.0/guile/guile_scm_run.swg
+share/swig/4.0/guile/guilemain.i
+share/swig/4.0/guile/interpreter.i
+share/swig/4.0/guile/list-vector.i
+share/swig/4.0/guile/pointer-in-out.i
+share/swig/4.0/guile/ports.i
+share/swig/4.0/guile/std_common.i
+share/swig/4.0/guile/std_deque.i
+share/swig/4.0/guile/std_except.i
+share/swig/4.0/guile/std_map.i
+share/swig/4.0/guile/std_pair.i
+share/swig/4.0/guile/std_string.i
+share/swig/4.0/guile/std_vector.i
+share/swig/4.0/guile/stl.i
+share/swig/4.0/guile/swigrun.i
+share/swig/4.0/guile/typemaps.i
+share/swig/4.0/intrusive_ptr.i
+share/swig/4.0/inttypes.i
+share/swig/4.0/java/arrays_java.i
+share/swig/4.0/java/boost_intrusive_ptr.i
+share/swig/4.0/java/boost_shared_ptr.i
+share/swig/4.0/java/director.swg
+share/swig/4.0/java/enums.swg
+share/swig/4.0/java/enumsimple.swg
+share/swig/4.0/java/enumtypesafe.swg
+share/swig/4.0/java/enumtypeunsafe.swg
+share/swig/4.0/java/java.swg
+share/swig/4.0/java/javahead.swg
+share/swig/4.0/java/javakw.swg
+share/swig/4.0/java/std_array.i
+share/swig/4.0/java/std_auto_ptr.i
+share/swig/4.0/java/std_common.i
+share/swig/4.0/java/std_deque.i
+share/swig/4.0/java/std_except.i
+share/swig/4.0/java/std_list.i
+share/swig/4.0/java/std_map.i
+share/swig/4.0/java/std_pair.i
+share/swig/4.0/java/std_set.i
+share/swig/4.0/java/std_shared_ptr.i
+share/swig/4.0/java/std_string.i
+share/swig/4.0/java/std_unordered_map.i
+share/swig/4.0/java/std_unordered_set.i
+share/swig/4.0/java/std_vector.i
+share/swig/4.0/java/std_wstring.i
+share/swig/4.0/java/stl.i
+share/swig/4.0/java/swiginterface.i
+share/swig/4.0/java/typemaps.i
+share/swig/4.0/java/various.i
+share/swig/4.0/javascript/jsc/arrays_javascript.i
+share/swig/4.0/javascript/jsc/ccomplex.i
+share/swig/4.0/javascript/jsc/cdata.i
+share/swig/4.0/javascript/jsc/complex.i
+share/swig/4.0/javascript/jsc/exception.i
+share/swig/4.0/javascript/jsc/javascript.swg
+share/swig/4.0/javascript/jsc/javascriptcode.swg
+share/swig/4.0/javascript/jsc/javascriptcomplex.swg
+share/swig/4.0/javascript/jsc/javascriptfragments.swg
+share/swig/4.0/javascript/jsc/javascripthelpers.swg
+share/swig/4.0/javascript/jsc/javascriptinit.swg
+share/swig/4.0/javascript/jsc/javascriptkw.swg
+share/swig/4.0/javascript/jsc/javascriptprimtypes.swg
+share/swig/4.0/javascript/jsc/javascriptrun.swg
+share/swig/4.0/javascript/jsc/javascriptruntime.swg
+share/swig/4.0/javascript/jsc/javascriptstrings.swg
+share/swig/4.0/javascript/jsc/javascripttypemaps.swg
+share/swig/4.0/javascript/jsc/std_common.i
+share/swig/4.0/javascript/jsc/std_complex.i
+share/swig/4.0/javascript/jsc/std_deque.i
+share/swig/4.0/javascript/jsc/std_except.i
+share/swig/4.0/javascript/jsc/std_map.i
+share/swig/4.0/javascript/jsc/std_pair.i
+share/swig/4.0/javascript/jsc/std_string.i
+share/swig/4.0/javascript/jsc/std_vector.i
+share/swig/4.0/javascript/jsc/stl.i
+share/swig/4.0/javascript/jsc/typemaps.i
+share/swig/4.0/javascript/v8/arrays_javascript.i
+share/swig/4.0/javascript/v8/ccomplex.i
+share/swig/4.0/javascript/v8/cdata.i
+share/swig/4.0/javascript/v8/complex.i
+share/swig/4.0/javascript/v8/exception.i
+share/swig/4.0/javascript/v8/javascript.swg
+share/swig/4.0/javascript/v8/javascriptcode.swg
+share/swig/4.0/javascript/v8/javascriptcomplex.swg
+share/swig/4.0/javascript/v8/javascriptfragments.swg
+share/swig/4.0/javascript/v8/javascripthelpers.swg
+share/swig/4.0/javascript/v8/javascriptinit.swg
+share/swig/4.0/javascript/v8/javascriptkw.swg
+share/swig/4.0/javascript/v8/javascriptprimtypes.swg
+share/swig/4.0/javascript/v8/javascriptrun.swg
+share/swig/4.0/javascript/v8/javascriptruntime.swg
+share/swig/4.0/javascript/v8/javascriptstrings.swg
+share/swig/4.0/javascript/v8/javascripttypemaps.swg
+share/swig/4.0/javascript/v8/std_common.i
+share/swig/4.0/javascript/v8/std_complex.i
+share/swig/4.0/javascript/v8/std_deque.i
+share/swig/4.0/javascript/v8/std_except.i
+share/swig/4.0/javascript/v8/std_map.i
+share/swig/4.0/javascript/v8/std_pair.i
+share/swig/4.0/javascript/v8/std_string.i
+share/swig/4.0/javascript/v8/std_vector.i
+share/swig/4.0/javascript/v8/stl.i
+share/swig/4.0/javascript/v8/typemaps.i
+share/swig/4.0/lua/_std_common.i
+share/swig/4.0/lua/carrays.i
+share/swig/4.0/lua/factory.i
+share/swig/4.0/lua/lua.swg
+share/swig/4.0/lua/lua_fnptr.i
+share/swig/4.0/lua/luakw.swg
+share/swig/4.0/lua/luarun.swg
+share/swig/4.0/lua/luaruntime.swg
+share/swig/4.0/lua/luatypemaps.swg
+share/swig/4.0/lua/std_common.i
+share/swig/4.0/lua/std_deque.i
+share/swig/4.0/lua/std_except.i
+share/swig/4.0/lua/std_map.i
+share/swig/4.0/lua/std_pair.i
+share/swig/4.0/lua/std_string.i
+share/swig/4.0/lua/std_vector.i
+share/swig/4.0/lua/stl.i
+share/swig/4.0/lua/typemaps.i
+share/swig/4.0/lua/wchar.i
+share/swig/4.0/math.i
+share/swig/4.0/mzscheme/mzrun.swg
+share/swig/4.0/mzscheme/mzscheme.swg
+share/swig/4.0/mzscheme/std_common.i
+share/swig/4.0/mzscheme/std_deque.i
+share/swig/4.0/mzscheme/std_map.i
+share/swig/4.0/mzscheme/std_pair.i
+share/swig/4.0/mzscheme/std_string.i
+share/swig/4.0/mzscheme/std_vector.i
+share/swig/4.0/mzscheme/stl.i
+share/swig/4.0/mzscheme/typemaps.i
+share/swig/4.0/ocaml/carray.i
+share/swig/4.0/ocaml/class.swg
+share/swig/4.0/ocaml/cstring.i
+share/swig/4.0/ocaml/director.swg
+share/swig/4.0/ocaml/ocaml.i
+share/swig/4.0/ocaml/ocaml.swg
+share/swig/4.0/ocaml/ocamlkw.swg
+share/swig/4.0/ocaml/ocamlrun.swg
+share/swig/4.0/ocaml/ocamlrundec.swg
+share/swig/4.0/ocaml/preamble.swg
+share/swig/4.0/ocaml/std_common.i
+share/swig/4.0/ocaml/std_complex.i
+share/swig/4.0/ocaml/std_deque.i
+share/swig/4.0/ocaml/std_except.i
+share/swig/4.0/ocaml/std_list.i
+share/swig/4.0/ocaml/std_map.i
+share/swig/4.0/ocaml/std_pair.i
+share/swig/4.0/ocaml/std_string.i
+share/swig/4.0/ocaml/std_vector.i
+share/swig/4.0/ocaml/stl.i
+share/swig/4.0/ocaml/swig.ml
+share/swig/4.0/ocaml/swig.mli
+share/swig/4.0/ocaml/swigp4.ml
+share/swig/4.0/ocaml/typecheck.i
+share/swig/4.0/ocaml/typemaps.i
+share/swig/4.0/ocaml/typeregister.swg
+share/swig/4.0/octave/attribute.i
+share/swig/4.0/octave/boost_shared_ptr.i
+share/swig/4.0/octave/carrays.i
+share/swig/4.0/octave/cdata.i
+share/swig/4.0/octave/cmalloc.i
+share/swig/4.0/octave/director.swg
+share/swig/4.0/octave/exception.i
+share/swig/4.0/octave/factory.i
+share/swig/4.0/octave/implicit.i
+share/swig/4.0/octave/octave.swg
+share/swig/4.0/octave/octcomplex.swg
+share/swig/4.0/octave/octcontainer.swg
+share/swig/4.0/octave/octfragments.swg
+share/swig/4.0/octave/octiterators.swg
+share/swig/4.0/octave/octopers.swg
+share/swig/4.0/octave/octprimtypes.swg
+share/swig/4.0/octave/octrun.swg
+share/swig/4.0/octave/octruntime.swg
+share/swig/4.0/octave/octstdcommon.swg
+share/swig/4.0/octave/octtypemaps.swg
+share/swig/4.0/octave/octuserdir.swg
+share/swig/4.0/octave/std_alloc.i
+share/swig/4.0/octave/std_basic_string.i
+share/swig/4.0/octave/std_carray.i
+share/swig/4.0/octave/std_char_traits.i
+share/swig/4.0/octave/std_common.i
+share/swig/4.0/octave/std_complex.i
+share/swig/4.0/octave/std_container.i
+share/swig/4.0/octave/std_deque.i
+share/swig/4.0/octave/std_except.i
+share/swig/4.0/octave/std_list.i
+share/swig/4.0/octave/std_map.i
+share/swig/4.0/octave/std_pair.i
+share/swig/4.0/octave/std_shared_ptr.i
+share/swig/4.0/octave/std_string.i
+share/swig/4.0/octave/std_vector.i
+share/swig/4.0/octave/std_wstring.i
+share/swig/4.0/octave/stl.i
+share/swig/4.0/octave/typemaps.i
+share/swig/4.0/perl5/Makefile.pl
+share/swig/4.0/perl5/attribute.i
+share/swig/4.0/perl5/carrays.i
+share/swig/4.0/perl5/cdata.i
+share/swig/4.0/perl5/cmalloc.i
+share/swig/4.0/perl5/cpointer.i
+share/swig/4.0/perl5/cstring.i
+share/swig/4.0/perl5/director.swg
+share/swig/4.0/perl5/exception.i
+share/swig/4.0/perl5/factory.i
+share/swig/4.0/perl5/noembed.h
+share/swig/4.0/perl5/perl5.swg
+share/swig/4.0/perl5/perlerrors.swg
+share/swig/4.0/perl5/perlfragments.swg
+share/swig/4.0/perl5/perlhead.swg
+share/swig/4.0/perl5/perlinit.swg
+share/swig/4.0/perl5/perlkw.swg
+share/swig/4.0/perl5/perlmacros.swg
+share/swig/4.0/perl5/perlmain.i
+share/swig/4.0/perl5/perlopers.swg
+share/swig/4.0/perl5/perlprimtypes.swg
+share/swig/4.0/perl5/perlrun.swg
+share/swig/4.0/perl5/perlruntime.swg
+share/swig/4.0/perl5/perlstrings.swg
+share/swig/4.0/perl5/perltypemaps.swg
+share/swig/4.0/perl5/perluserdir.swg
+share/swig/4.0/perl5/reference.i
+share/swig/4.0/perl5/std_common.i
+share/swig/4.0/perl5/std_deque.i
+share/swig/4.0/perl5/std_except.i
+share/swig/4.0/perl5/std_list.i
+share/swig/4.0/perl5/std_map.i
+share/swig/4.0/perl5/std_pair.i
+share/swig/4.0/perl5/std_string.i
+share/swig/4.0/perl5/std_vector.i
+share/swig/4.0/perl5/stl.i
+share/swig/4.0/perl5/typemaps.i
+share/swig/4.0/php/const.i
+share/swig/4.0/php/director.swg
+share/swig/4.0/php/factory.i
+share/swig/4.0/php/globalvar.i
+share/swig/4.0/php/php.swg
+share/swig/4.0/php/phpinit.swg
+share/swig/4.0/php/phpkw.swg
+share/swig/4.0/php/phppointers.i
+share/swig/4.0/php/phprun.swg
+share/swig/4.0/php/std_common.i
+share/swig/4.0/php/std_deque.i
+share/swig/4.0/php/std_map.i
+share/swig/4.0/php/std_pair.i
+share/swig/4.0/php/std_string.i
+share/swig/4.0/php/std_vector.i
+share/swig/4.0/php/stl.i
+share/swig/4.0/php/typemaps.i
+share/swig/4.0/php/utils.i
+share/swig/4.0/pointer.i
+share/swig/4.0/python/argcargv.i
+share/swig/4.0/python/attribute.i
+share/swig/4.0/python/boost_shared_ptr.i
+share/swig/4.0/python/builtin.swg
+share/swig/4.0/python/carrays.i
+share/swig/4.0/python/ccomplex.i
+share/swig/4.0/python/cdata.i
+share/swig/4.0/python/cmalloc.i
+share/swig/4.0/python/complex.i
+share/swig/4.0/python/cpointer.i
+share/swig/4.0/python/cstring.i
+share/swig/4.0/python/cwstring.i
+share/swig/4.0/python/defarg.swg
+share/swig/4.0/python/director.swg
+share/swig/4.0/python/embed.i
+share/swig/4.0/python/exception.i
+share/swig/4.0/python/factory.i
+share/swig/4.0/python/file.i
+share/swig/4.0/python/implicit.i
+share/swig/4.0/python/pyabc.i
+share/swig/4.0/python/pyapi.swg
+share/swig/4.0/python/pybackward.swg
+share/swig/4.0/python/pybuffer.i
+share/swig/4.0/python/pyclasses.swg
+share/swig/4.0/python/pycomplex.swg
+share/swig/4.0/python/pycontainer.swg
+share/swig/4.0/python/pydocs.swg
+share/swig/4.0/python/pyerrors.swg
+share/swig/4.0/python/pyfragments.swg
+share/swig/4.0/python/pyhead.swg
+share/swig/4.0/python/pyinit.swg
+share/swig/4.0/python/pyiterators.swg
+share/swig/4.0/python/pymacros.swg
+share/swig/4.0/python/pyname_compat.i
+share/swig/4.0/python/pyopers.swg
+share/swig/4.0/python/pyprimtypes.swg
+share/swig/4.0/python/pyrun.swg
+share/swig/4.0/python/pyruntime.swg
+share/swig/4.0/python/pystdcommon.swg
+share/swig/4.0/python/pystrings.swg
+share/swig/4.0/python/python.swg
+share/swig/4.0/python/pythonkw.swg
+share/swig/4.0/python/pythreads.swg
+share/swig/4.0/python/pytuplehlp.swg
+share/swig/4.0/python/pytypemaps.swg
+share/swig/4.0/python/pyuserdir.swg
+share/swig/4.0/python/pywstrings.swg
+share/swig/4.0/python/std_alloc.i
+share/swig/4.0/python/std_array.i
+share/swig/4.0/python/std_auto_ptr.i
+share/swig/4.0/python/std_basic_string.i
+share/swig/4.0/python/std_carray.i
+share/swig/4.0/python/std_char_traits.i
+share/swig/4.0/python/std_common.i
+share/swig/4.0/python/std_complex.i
+share/swig/4.0/python/std_container.i
+share/swig/4.0/python/std_deque.i
+share/swig/4.0/python/std_except.i
+share/swig/4.0/python/std_ios.i
+share/swig/4.0/python/std_iostream.i
+share/swig/4.0/python/std_list.i
+share/swig/4.0/python/std_map.i
+share/swig/4.0/python/std_multimap.i
+share/swig/4.0/python/std_multiset.i
+share/swig/4.0/python/std_pair.i
+share/swig/4.0/python/std_set.i
+share/swig/4.0/python/std_shared_ptr.i
+share/swig/4.0/python/std_sstream.i
+share/swig/4.0/python/std_streambuf.i
+share/swig/4.0/python/std_string.i
+share/swig/4.0/python/std_unordered_map.i
+share/swig/4.0/python/std_unordered_multimap.i
+share/swig/4.0/python/std_unordered_multiset.i
+share/swig/4.0/python/std_unordered_set.i
+share/swig/4.0/python/std_vector.i
+share/swig/4.0/python/std_vectora.i
+share/swig/4.0/python/std_wios.i
+share/swig/4.0/python/std_wiostream.i
+share/swig/4.0/python/std_wsstream.i
+share/swig/4.0/python/std_wstreambuf.i
+share/swig/4.0/python/std_wstring.i
+share/swig/4.0/python/stl.i
+share/swig/4.0/python/typemaps.i
+share/swig/4.0/python/wchar.i
+share/swig/4.0/r/boost_shared_ptr.i
+share/swig/4.0/r/cdata.i
+share/swig/4.0/r/exception.i
+share/swig/4.0/r/r.swg
+share/swig/4.0/r/rcontainer.swg
+share/swig/4.0/r/rfragments.swg
+share/swig/4.0/r/rkw.swg
+share/swig/4.0/r/ropers.swg
+share/swig/4.0/r/rrun.swg
+share/swig/4.0/r/rstdcommon.swg
+share/swig/4.0/r/rtype.swg
+share/swig/4.0/r/srun.swg
+share/swig/4.0/r/std_alloc.i
+share/swig/4.0/r/std_common.i
+share/swig/4.0/r/std_container.i
+share/swig/4.0/r/std_deque.i
+share/swig/4.0/r/std_except.i
+share/swig/4.0/r/std_list.i
+share/swig/4.0/r/std_map.i
+share/swig/4.0/r/std_pair.i
+share/swig/4.0/r/std_shared_ptr.i
+share/swig/4.0/r/std_string.i
+share/swig/4.0/r/std_vector.i
+share/swig/4.0/r/stl.i
+share/swig/4.0/r/typemaps.i
+share/swig/4.0/ruby/Makefile.swig
+share/swig/4.0/ruby/argcargv.i
+share/swig/4.0/ruby/attribute.i
+share/swig/4.0/ruby/boost_shared_ptr.i
+share/swig/4.0/ruby/carrays.i
+share/swig/4.0/ruby/cdata.i
+share/swig/4.0/ruby/cmalloc.i
+share/swig/4.0/ruby/cpointer.i
+share/swig/4.0/ruby/cstring.i
+share/swig/4.0/ruby/director.swg
+share/swig/4.0/ruby/embed.i
+share/swig/4.0/ruby/exception.i
+share/swig/4.0/ruby/extconf.rb
+share/swig/4.0/ruby/factory.i
+share/swig/4.0/ruby/file.i
+share/swig/4.0/ruby/progargcargv.i
+share/swig/4.0/ruby/ruby.swg
+share/swig/4.0/ruby/rubyapi.swg
+share/swig/4.0/ruby/rubyautodoc.swg
+share/swig/4.0/ruby/rubyclasses.swg
+share/swig/4.0/ruby/rubycomplex.swg
+share/swig/4.0/ruby/rubycontainer.swg
+share/swig/4.0/ruby/rubycontainer_extended.swg
+share/swig/4.0/ruby/rubydef.swg
+share/swig/4.0/ruby/rubyerrors.swg
+share/swig/4.0/ruby/rubyfragments.swg
+share/swig/4.0/ruby/rubyhead.swg
+share/swig/4.0/ruby/rubyinit.swg
+share/swig/4.0/ruby/rubyiterators.swg
+share/swig/4.0/ruby/rubykw.swg
+share/swig/4.0/ruby/rubymacros.swg
+share/swig/4.0/ruby/rubyopers.swg
+share/swig/4.0/ruby/rubyprimtypes.swg
+share/swig/4.0/ruby/rubyrun.swg
+share/swig/4.0/ruby/rubyruntime.swg
+share/swig/4.0/ruby/rubystdautodoc.swg
+share/swig/4.0/ruby/rubystdcommon.swg
+share/swig/4.0/ruby/rubystdcommon_forward.swg
+share/swig/4.0/ruby/rubystdfunctors.swg
+share/swig/4.0/ruby/rubystrings.swg
+share/swig/4.0/ruby/rubytracking.swg
+share/swig/4.0/ruby/rubytypemaps.swg
+share/swig/4.0/ruby/rubyuserdir.swg
+share/swig/4.0/ruby/rubywstrings.swg
+share/swig/4.0/ruby/std_alloc.i
+share/swig/4.0/ruby/std_array.i
+share/swig/4.0/ruby/std_basic_string.i
+share/swig/4.0/ruby/std_char_traits.i
+share/swig/4.0/ruby/std_common.i
+share/swig/4.0/ruby/std_complex.i
+share/swig/4.0/ruby/std_container.i
+share/swig/4.0/ruby/std_deque.i
+share/swig/4.0/ruby/std_except.i
+share/swig/4.0/ruby/std_functors.i
+share/swig/4.0/ruby/std_ios.i
+share/swig/4.0/ruby/std_iostream.i
+share/swig/4.0/ruby/std_list.i
+share/swig/4.0/ruby/std_map.i
+share/swig/4.0/ruby/std_multimap.i
+share/swig/4.0/ruby/std_multiset.i
+share/swig/4.0/ruby/std_pair.i
+share/swig/4.0/ruby/std_queue.i
+share/swig/4.0/ruby/std_set.i
+share/swig/4.0/ruby/std_shared_ptr.i
+share/swig/4.0/ruby/std_sstream.i
+share/swig/4.0/ruby/std_stack.i
+share/swig/4.0/ruby/std_streambuf.i
+share/swig/4.0/ruby/std_string.i
+share/swig/4.0/ruby/std_unordered_map.i
+share/swig/4.0/ruby/std_unordered_multimap.i
+share/swig/4.0/ruby/std_unordered_multiset.i
+share/swig/4.0/ruby/std_unordered_set.i
+share/swig/4.0/ruby/std_vector.i
+share/swig/4.0/ruby/std_vectora.i
+share/swig/4.0/ruby/std_wstring.i
+share/swig/4.0/ruby/stl.i
+share/swig/4.0/ruby/timeval.i
+share/swig/4.0/ruby/typemaps.i
+share/swig/4.0/runtime.swg
+share/swig/4.0/scilab/boost_shared_ptr.i
+share/swig/4.0/scilab/carrays.i
+share/swig/4.0/scilab/cmalloc.i
+share/swig/4.0/scilab/cpointer.i
+share/swig/4.0/scilab/exception.i
+share/swig/4.0/scilab/matrix.i
+share/swig/4.0/scilab/sciarray.swg
+share/swig/4.0/scilab/scibool.swg
+share/swig/4.0/scilab/scichar.swg
+share/swig/4.0/scilab/scicontainer.swg
+share/swig/4.0/scilab/scidouble.swg
+share/swig/4.0/scilab/scienum.swg
+share/swig/4.0/scilab/sciexception.swg
+share/swig/4.0/scilab/scifloat.swg
+share/swig/4.0/scilab/sciint.swg
+share/swig/4.0/scilab/sciiterators.swg
+share/swig/4.0/scilab/scilab.swg
+share/swig/4.0/scilab/scilist.swg
+share/swig/4.0/scilab/scilong.swg
+share/swig/4.0/scilab/scilonglong.swg
+share/swig/4.0/scilab/scimacros.swg
+share/swig/4.0/scilab/scimatrixbool.swg
+share/swig/4.0/scilab/scimatrixchar.swg
+share/swig/4.0/scilab/scimatrixdouble.swg
+share/swig/4.0/scilab/scimatrixint.swg
+share/swig/4.0/scilab/scimisctypes.swg
+share/swig/4.0/scilab/scipointer.swg
+share/swig/4.0/scilab/sciprimtypes.swg
+share/swig/4.0/scilab/scirun.swg
+share/swig/4.0/scilab/sciruntime.swg
+share/swig/4.0/scilab/scisequence.swg
+share/swig/4.0/scilab/scisequencebool.swg
+share/swig/4.0/scilab/scisequencedouble.swg
+share/swig/4.0/scilab/scisequencefloat.swg
+share/swig/4.0/scilab/scisequenceint.swg
+share/swig/4.0/scilab/scisequencepointer.swg
+share/swig/4.0/scilab/scisequencestring.swg
+share/swig/4.0/scilab/scishort.swg
+share/swig/4.0/scilab/scisignedchar.swg
+share/swig/4.0/scilab/scistdcommon.swg
+share/swig/4.0/scilab/scitypemaps.swg
+share/swig/4.0/scilab/sciunsignedchar.swg
+share/swig/4.0/scilab/sciunsignedint.swg
+share/swig/4.0/scilab/sciunsignedlong.swg
+share/swig/4.0/scilab/sciunsignedshort.swg
+share/swig/4.0/scilab/std_alloc.i
+share/swig/4.0/scilab/std_basic_string.i
+share/swig/4.0/scilab/std_char_traits.i
+share/swig/4.0/scilab/std_common.i
+share/swig/4.0/scilab/std_container.i
+share/swig/4.0/scilab/std_deque.i
+share/swig/4.0/scilab/std_except.i
+share/swig/4.0/scilab/std_list.i
+share/swig/4.0/scilab/std_map.i
+share/swig/4.0/scilab/std_multiset.i
+share/swig/4.0/scilab/std_pair.i
+share/swig/4.0/scilab/std_set.i
+share/swig/4.0/scilab/std_shared_ptr.i
+share/swig/4.0/scilab/std_string.i
+share/swig/4.0/scilab/std_vector.i
+share/swig/4.0/scilab/stl.i
+share/swig/4.0/scilab/typemaps.i
+share/swig/4.0/shared_ptr.i
+share/swig/4.0/std/_std_deque.i
+share/swig/4.0/std/std_alloc.i
+share/swig/4.0/std/std_array.i
+share/swig/4.0/std/std_basic_string.i
+share/swig/4.0/std/std_carray.swg
+share/swig/4.0/std/std_char_traits.i
+share/swig/4.0/std/std_common.i
+share/swig/4.0/std/std_container.i
+share/swig/4.0/std/std_deque.i
+share/swig/4.0/std/std_except.i
+share/swig/4.0/std/std_ios.i
+share/swig/4.0/std/std_iostream.i
+share/swig/4.0/std/std_list.i
+share/swig/4.0/std/std_map.i
+share/swig/4.0/std/std_multimap.i
+share/swig/4.0/std/std_multiset.i
+share/swig/4.0/std/std_pair.i
+share/swig/4.0/std/std_queue.i
+share/swig/4.0/std/std_set.i
+share/swig/4.0/std/std_sstream.i
+share/swig/4.0/std/std_stack.i
+share/swig/4.0/std/std_streambuf.i
+share/swig/4.0/std/std_string.i
+share/swig/4.0/std/std_unordered_map.i
+share/swig/4.0/std/std_unordered_multimap.i
+share/swig/4.0/std/std_unordered_multiset.i
+share/swig/4.0/std/std_unordered_set.i
+share/swig/4.0/std/std_vector.i
+share/swig/4.0/std/std_vectora.i
+share/swig/4.0/std/std_wios.i
+share/swig/4.0/std/std_wiostream.i
+share/swig/4.0/std/std_wsstream.i
+share/swig/4.0/std/std_wstreambuf.i
+share/swig/4.0/std/std_wstring.i
+share/swig/4.0/std_except.i
+share/swig/4.0/stdint.i
+share/swig/4.0/stl.i
+share/swig/4.0/swig.swg
+share/swig/4.0/swigarch.i
+share/swig/4.0/swigerrors.swg
+share/swig/4.0/swigfragments.swg
+share/swig/4.0/swiginit.swg
+share/swig/4.0/swiglabels.swg
+share/swig/4.0/swigrun.i
+share/swig/4.0/swigrun.swg
+share/swig/4.0/swigwarn.swg
+share/swig/4.0/swigwarnings.swg
+share/swig/4.0/tcl/attribute.i
+share/swig/4.0/tcl/carrays.i
+share/swig/4.0/tcl/cdata.i
+share/swig/4.0/tcl/cmalloc.i
+share/swig/4.0/tcl/cpointer.i
+share/swig/4.0/tcl/cstring.i
+share/swig/4.0/tcl/cwstring.i
+share/swig/4.0/tcl/exception.i
+share/swig/4.0/tcl/factory.i
+share/swig/4.0/tcl/std_common.i
+share/swig/4.0/tcl/std_deque.i
+share/swig/4.0/tcl/std_except.i
+share/swig/4.0/tcl/std_map.i
+share/swig/4.0/tcl/std_pair.i
+share/swig/4.0/tcl/std_string.i
+share/swig/4.0/tcl/std_vector.i
+share/swig/4.0/tcl/std_wstring.i
+share/swig/4.0/tcl/stl.i
+share/swig/4.0/tcl/tcl8.swg
+share/swig/4.0/tcl/tclapi.swg
+share/swig/4.0/tcl/tclerrors.swg
+share/swig/4.0/tcl/tclfragments.swg
+share/swig/4.0/tcl/tclinit.swg
+share/swig/4.0/tcl/tclinterp.i
+share/swig/4.0/tcl/tclkw.swg
+share/swig/4.0/tcl/tclmacros.swg
+share/swig/4.0/tcl/tclopers.swg
+share/swig/4.0/tcl/tclprimtypes.swg
+share/swig/4.0/tcl/tclresult.i
+share/swig/4.0/tcl/tclrun.swg
+share/swig/4.0/tcl/tclruntime.swg
+share/swig/4.0/tcl/tclsh.i
+share/swig/4.0/tcl/tclstrings.swg
+share/swig/4.0/tcl/tcltypemaps.swg
+share/swig/4.0/tcl/tcluserdir.swg
+share/swig/4.0/tcl/tclwstrings.swg
+share/swig/4.0/tcl/typemaps.i
+share/swig/4.0/tcl/wish.i
+share/swig/4.0/typemaps/attribute.swg
+share/swig/4.0/typemaps/carrays.swg
+share/swig/4.0/typemaps/cdata.swg
+share/swig/4.0/typemaps/cmalloc.swg
+share/swig/4.0/typemaps/cpointer.swg
+share/swig/4.0/typemaps/cstring.swg
+share/swig/4.0/typemaps/cstrings.swg
+share/swig/4.0/typemaps/cwstring.swg
+share/swig/4.0/typemaps/enumint.swg
+share/swig/4.0/typemaps/exception.swg
+share/swig/4.0/typemaps/factory.swg
+share/swig/4.0/typemaps/fragments.swg
+share/swig/4.0/typemaps/implicit.swg
+share/swig/4.0/typemaps/inoutlist.swg
+share/swig/4.0/typemaps/misctypes.swg
+share/swig/4.0/typemaps/primtypes.swg
+share/swig/4.0/typemaps/ptrtypes.swg
+share/swig/4.0/typemaps/std_except.swg
+share/swig/4.0/typemaps/std_string.swg
+share/swig/4.0/typemaps/std_strings.swg
+share/swig/4.0/typemaps/std_wstring.swg
+share/swig/4.0/typemaps/string.swg
+share/swig/4.0/typemaps/strings.swg
+share/swig/4.0/typemaps/swigmacros.swg
+share/swig/4.0/typemaps/swigobject.swg
+share/swig/4.0/typemaps/swigtype.swg
+share/swig/4.0/typemaps/swigtypemaps.swg
+share/swig/4.0/typemaps/typemaps.swg
+share/swig/4.0/typemaps/valtypes.swg
+share/swig/4.0/typemaps/void.swg
+share/swig/4.0/typemaps/wstring.swg
+share/swig/4.0/wchar.i
+share/swig/4.0/windows.i
+share/swig/4.0/xml/typemaps.i
+share/swig/4.0/xml/xml.swg
diff --git a/swig4/distinfo b/swig4/distinfo
new file mode 100644
index 0000000000..927c56f243
--- /dev/null
+++ b/swig4/distinfo
@@ -0,0 +1,6 @@
+$NetBSD: distinfo,v 1.3 2017/04/01 05:18:19 adam Exp $
+
+SHA1 (swig-4.0.1.tar.gz) = 3915d3ab537c171d6d086a8e93bfc545cebf6172
+RMD160 (swig-4.0.1.tar.gz) = 8dfb658742824cf47f5528d08f88c77e7aa79a35
+SHA512 (swig-4.0.1.tar.gz) = 595ef01cb83adfa960ceed9c325a9429192549e8d1e9aa3ab35a4301512a61d82e2e89a8c7939c2a5a0811254ea1832a443bd387e11459eb2b0bafc563ad1308
+Size (swig-4.0.1.tar.gz) = 8062962 bytes



Home | Main Index | Thread Index | Old Index