OpenSourceRouting
  1. OpenSourceRouting

pycapnp

Public
AuthorCommitMessageCommit dateIssues
Christian FrankeChristian Franke
33ca5c1dd96Debianize package as version 0.5.7-1
Jason ParyaniJason Paryani
cf7a50f1d53MMerge branch 'feature/v0.5.7' into develop
Jason ParyaniJason Paryani
e67e3ce04c7Update changelog for v0.5.7
Jason ParyaniJason Paryani
4b76211b787Bump version to v0.5.7
Jason ParyaniJason Paryani
338b5874130Update bundled libcapnp to v0.5.2
Jason ParyaniJason Paryani
bd0576b68a8Add warnings for using old restorer methods
Jason ParyaniJason Paryani
819f21938e9Fix warning from PyEventPort
Jason ParyaniJason Paryani
a4990f08687Handle AnyPointers better as arguments to RPC functions
Jason ParyaniJason Paryani
6f1ce8bcc5fAdd support for using keyword arguments with a named struct in an RPC
Jason ParyaniJason Paryani
7ff67ebf4aeAdd bootstrap method to TwoPartyServer
Jason ParyaniJason Paryani
606a325cfa0Change sleep timer to be longer for test_rpc_calculatorHopefully this fixes timing issues with the test on travisci
Jason ParyaniJason Paryani
8f78a7c80b2Add null capability test
Jason ParyaniJason Paryani
58667c17c34MMerge pull request #69 from kamalmarhubi/_from_list-tidyTidy up _from_list
Kamal MarhubiKamal Marhubi
211192f235bTidy up _from_list- remove unused variable - switch from `range` to `enumerate` for indexed iteration
Kamal MarhubiKamal Marhubi
b31b53b6a7aAdd test for setting a field from a list
Jason ParyaniJason Paryani
fbefc3cd3b1MMerge pull request #68 from kamalmarhubi/tox-add-py34Add python 3.4 to the tox envlist
Jason ParyaniJason Paryani
18531adf38bMMerge pull request #67 from kamalmarhubi/travis-force-legacy-infraForce use of virtualized Travic CI infrastructure to allow sudo
Kamal MarhubiKamal Marhubi
fc031d3611dAdd python 3.4 to the tox envlist
Kamal MarhubiKamal Marhubi
790bdce72abForce use of virtualized Travic CI infrastructure to allow sudoNewly set up projects on Travis CI use their containerized infrastructure, which doesn't allow setuid programs to run. Adding the `sudo: required` line opts out of the containerized infrastructure. The current `setup_travis.sh` uses sudo to call `update-alternatives` which doesn't have an equivalent yet. Tracking bug for that feature: https://github.com/travis-ci/travis-ci/issues/3668
Jason ParyaniJason Paryani
a5bf532d53dAdd `init` method to lists
Jason ParyaniJason Paryani
3d77722e882Add support for unix sockets and improve rpc testing
Jason ParyaniJason Paryani
36d3bdcd6beMMerge branch 'feature/v0.5.6' into develop
Jason ParyaniJason Paryani
001b83256a6Update changelog for v0.5.6
Jason ParyaniJason Paryani
4f62593bccaBump version for v0.5.6
Jason ParyaniJason Paryani
e00bff6ef85Fix problems with TwoPartyServerFixes #61 It turns out I messed up the Server initialization code for the case where a string is passed in as the address. The tests only cover the cases where a raw socket is passed in. This will be rectified in a following commit.
Jason ParyaniJason Paryani
aa7d5303193Make libcapnp version easier to change in setup_travis.sh
Jason ParyaniJason Paryani
be90175f0f2Remove types.Enum since it fails on DEBUG buildsIt turns out we never should of been creating an ENUM type since it's prohibited by libcapnp. Fixes #57
Jason ParyaniJason Paryani
02907bb50c0Fix unintended changing of CXXFLAGS after building bundled libcapnp
Jason ParyaniJason Paryani
55ca927ab1aUpdate travis build to use libcapnp v0.5.2
Jason ParyaniJason Paryani
cfbd3d31fa6Change Travis debug build to use DKJ_DEBUG
Jason ParyaniJason Paryani
db04ccf4765Add debug build to travis
Jason ParyaniJason Paryani
5e7cb00a827Skip broken test in PyPyIt works locally for me, and the error in TravisCI is starting to bug me. Tracking this in #58
Jason ParyaniJason Paryani
b15436b5f45MMerge branch 'feature/v0.5.5' into develop
Jason ParyaniJason Paryani
fb5f62ce21cUpdate CHANGELOG for v0.5.5
Jason ParyaniJason Paryani
00e6bf2a5b3Bump version to v0.5.5
Jason ParyaniJason Paryani
2027bac4349Update bundled libcapnp to v0.5.1.2
Jason ParyaniJason Paryani
95d1ce5903cAdd changelog to description
Jason ParyaniJason Paryani
a901b358ca0Update README
Jason ParyaniJason Paryani
ce033d99e55MMerge branch 'feature/v0.5.4' into develop
Jason ParyaniJason Paryani
782747ad2e5Update Changelog for v0.5.4
Jason ParyaniJason Paryani
153575d9b03Bump version to v0.5.4
Jason ParyaniJason Paryani
6c847897997Update bundled libcapnp to v0.5.1.1
Jason ParyaniJason Paryani
bf05e555d2bDefault to using cython if cythonized files not found
Jason ParyaniJason Paryani
2df20212fa7Fix possible segfault when importing multiple schemasIt turns out that parseDiskFile expects the imports array to last the lifetime of the SchemaParser object. Also, optimized for the case where the imports haven't changed, so we're not allocating a crazy amount of these imports arrays.
Jason ParyaniJason Paryani
6e94182a3edAdd bootstrap RPC methodsThis is the new way for initializing RPC connections. It replaces the deprecated restore functionality
Jason ParyaniJason Paryani
6c5e363406cFix typo in changelog
Jason ParyaniJason Paryani
7dc6f28ed9cBump version to v0.5.3
Jason ParyaniJason Paryani
b2daf3911ddDefault to not using cython
Jason ParyaniJason Paryani
20c501d3f19MMerge pull request #55 from JohnEmhoff/developFix destructor order for _MessageReader
John EmhoffJohn Emhoff
6389708701fFix destructor order for _MessageReader