<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/swig.git/Examples/python/std_vector, branch master</title>
<subtitle>github.com: swig/swig.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/swig.git/'/>
<entry>
<title>Modify examples to be both Python 2 and 3 compatible</title>
<updated>2020-08-15T15:46:01+00:00</updated>
<author>
<name>William S Fulton</name>
<email>wsf@fultondesigns.co.uk</email>
</author>
<published>2020-08-15T15:46:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/swig.git/commit/?id=89bee6a7fa2236da8f10bf200abdc4892d4085b8'/>
<id>89bee6a7fa2236da8f10bf200abdc4892d4085b8</id>
<content type='text'>
For removing dependency on 2to3
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
For removing dependency on 2to3
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove use of std::bind2nd which is removed in C++17</title>
<updated>2019-06-27T06:40:49+00:00</updated>
<author>
<name>William S Fulton</name>
<email>wsf@fultondesigns.co.uk</email>
</author>
<published>2019-06-07T18:05:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/swig.git/commit/?id=f3357f1f5709f6008418f839cca336250c807841'/>
<id>f3357f1f5709f6008418f839cca336250c807841</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove use of preinst-swig script</title>
<updated>2015-08-21T21:43:17+00:00</updated>
<author>
<name>William S Fulton</name>
<email>wsf@fultondesigns.co.uk</email>
</author>
<published>2015-08-20T05:16:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/swig.git/commit/?id=8e2bc595c67b57a2bd58661b08dc2d7585090e37'/>
<id>8e2bc595c67b57a2bd58661b08dc2d7585090e37</id>
<content type='text'>
Complete the prototype removal in ca1431.

The script prevents SWIGTOOL=gdb from working as gdb can't be used to
debug a shell script, it requires a binary.

Add support for SWIGTOOL in all the examples.

SWIG_LIB_DIR and SWIGEXE must now instead be set by all Makefiles.

See issue #473.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Complete the prototype removal in ca1431.

The script prevents SWIGTOOL=gdb from working as gdb can't be used to
debug a shell script, it requires a binary.

Add support for SWIGTOOL in all the examples.

SWIG_LIB_DIR and SWIGEXE must now instead be set by all Makefiles.

See issue #473.
</pre>
</div>
</content>
</entry>
<entry>
<title>autopep8 cleanup of Examples/python whitespace</title>
<updated>2015-05-08T12:46:06+00:00</updated>
<author>
<name>Jon Schlueter</name>
<email>jon.schlueter@gmail.com</email>
</author>
<published>2015-05-08T12:33:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/swig.git/commit/?id=77707154574f1852f56ed552bab832249c80bbfc'/>
<id>77707154574f1852f56ed552bab832249c80bbfc</id>
<content type='text'>
automated cleanup only of the Examples/python example code
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
automated cleanup only of the Examples/python example code
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow examples and test-suite to be built out of source tree</title>
<updated>2014-05-11T21:21:10+00:00</updated>
<author>
<name>Karl Wette</name>
<email>karl.wette@ligo.org</email>
</author>
<published>2014-05-11T21:21:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/swig.git/commit/?id=f574a34155e4ede49b1b023494e0a1637ab89f8f'/>
<id>f574a34155e4ede49b1b023494e0a1637ab89f8f</id>
<content type='text'>
- Examples/Makefile.in rules use SRCDIR as the relative source directory

- ./config.status replicates Examples/ source directory tree in build
  directory, and copies each Makefile to build directory, prefixed with
  a header which sets SRCDIR to source directory

- Examples/test-suite/.../Makefile.in set SRCDIR from Autoconf-set srcdir

- Examples/test-suite/errors/Makefile.in needs to filter out source
  directory from SWIG error messages

- Lua: embedded interpreters are passed location of run-time test

- Python: copy run-time scripts to build directory because of 2to3
  conversion; import_packages example copies __init__.py from source
  directory; test-suite sets SCRIPTDIR to location of run-time tests

- Javascript: binding.gyp renamed to binding.gyp.in so that $srcdir
  can be substituted with SRCDIR; removed './' from require() statements
  so that NODE_PATH can be used to point Node.js to build directory
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Examples/Makefile.in rules use SRCDIR as the relative source directory

- ./config.status replicates Examples/ source directory tree in build
  directory, and copies each Makefile to build directory, prefixed with
  a header which sets SRCDIR to source directory

- Examples/test-suite/.../Makefile.in set SRCDIR from Autoconf-set srcdir

- Examples/test-suite/errors/Makefile.in needs to filter out source
  directory from SWIG error messages

- Lua: embedded interpreters are passed location of run-time test

- Python: copy run-time scripts to build directory because of 2to3
  conversion; import_packages example copies __init__.py from source
  directory; test-suite sets SCRIPTDIR to location of run-time tests

- Javascript: binding.gyp renamed to binding.gyp.in so that $srcdir
  can be substituted with SRCDIR; removed './' from require() statements
  so that NODE_PATH can be used to point Node.js to build directory
</pre>
</div>
</content>
</entry>
<entry>
<title>Whitespace cleanup of Example Makefiles</title>
<updated>2014-04-16T10:06:02+00:00</updated>
<author>
<name>Karl Wette</name>
<email>karl.wette@ligo.org</email>
</author>
<published>2014-04-16T10:05:33+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/swig.git/commit/?id=3aacde4f5fd10b2504845f6b86171d9950671e17'/>
<id>3aacde4f5fd10b2504845f6b86171d9950671e17</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Python examples makefiles clean target fixed and use RUNPIPE and tidyup</title>
<updated>2013-04-19T21:47:26+00:00</updated>
<author>
<name>William S Fulton</name>
<email>wsf@fultondesigns.co.uk</email>
</author>
<published>2013-04-13T20:44:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/swig.git/commit/?id=cc4ac0a9e93104ee435b50b9532dc1ca1a84bf03'/>
<id>cc4ac0a9e93104ee435b50b9532dc1ca1a84bf03</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merged the Python 3.0 support branch. The merging progress is not so smooth, so hope this commit won't make anything broken.</title>
<updated>2008-09-11T17:18:07+00:00</updated>
<author>
<name>Haoyu Bai</name>
<email>divinekid@gmail.com</email>
</author>
<published>2008-09-11T17:18:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/swig.git/commit/?id=3d8ddfc442f1f73bc2c567aaa972680d14fea0df'/>
<id>3d8ddfc442f1f73bc2c567aaa972680d14fea0df</id>
<content type='text'>
This is the (incomplemete) log produced by svnmerge.py:

Merged revisions 10405-10409,10420-10422,10426,10438,10445,10451,10454-10465,10467,10473-10475,10485,10488-10489,10493-10495,10497,10509-10510,10513-10514,10517,10520,10525,10528-10529,10533-10535,10554-10557,10570,10573,10593,10614,10666-10669,10673,10678,10687,10690,10704-10706,10731,10744,10750-10752,10755,10759,10770,10775-10776,10813,10819 via svnmerge from 
https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2008-bhy



git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10834 626c5289-ae23-0410-ae9c-e8d60b6d4f22
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is the (incomplemete) log produced by svnmerge.py:

Merged revisions 10405-10409,10420-10422,10426,10438,10445,10451,10454-10465,10467,10473-10475,10485,10488-10489,10493-10495,10497,10509-10510,10513-10514,10517,10520,10525,10528-10529,10533-10535,10554-10557,10570,10573,10593,10614,10666-10669,10673,10678,10687,10690,10704-10706,10731,10744,10750-10752,10755,10759,10770,10775-10776,10813,10819 via svnmerge from 
https://swig.svn.sourceforge.net/svnroot/swig/branches/gsoc2008-bhy



git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@10834 626c5289-ae23-0410-ae9c-e8d60b6d4f22
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove cvsignore files: this is stored on svn:igonre property now</title>
<updated>2006-12-03T08:28:42+00:00</updated>
<author>
<name>John Lenz</name>
<email>jlenz2@math.uiuc.edu</email>
</author>
<published>2006-12-03T08:28:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/swig.git/commit/?id=6dda6f832113461c90a15ce447350b234beef93c'/>
<id>6dda6f832113461c90a15ce447350b234beef93c</id>
<content type='text'>
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9593 626c5289-ae23-0410-ae9c-e8d60b6d4f22
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@9593 626c5289-ae23-0410-ae9c-e8d60b6d4f22
</pre>
</div>
</content>
</entry>
<entry>
<title>*** empty log message ***</title>
<updated>2006-11-20T21:34:47+00:00</updated>
<author>
<name>William S Fulton</name>
<email>wsf@fultondesigns.co.uk</email>
</author>
<published>2006-11-20T21:34:47+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/swig.git/commit/?id=6a4eaadc7f124fe7390af2163e2dfd4467ff9566'/>
<id>6a4eaadc7f124fe7390af2163e2dfd4467ff9566</id>
<content type='text'>
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@9572 626c5289-ae23-0410-ae9c-e8d60b6d4f22
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@9572 626c5289-ae23-0410-ae9c-e8d60b6d4f22
</pre>
</div>
</content>
</entry>
</feed>
