Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-01-16 | Rename PLIST_UINT to PLIST_INT and add plist_new_int() and plist_get_int_val() | Nikias Bassen | 2 | -11/+47 | |
This properly supports getting and setting signed or unsigned integer values. Also, a new helper function plist_int_val_is_negative() was added to determine if a given #PLIST_INT node has a negative value or not. The old type PLIST_UINT is defined as a macro with the value of PLIST_INT for backwards compatibility. This commit also adds int vs. uint support to the C++ interface, and the python bindings in a hopefully useful way. | |||||
2022-09-05 | cython: Fix 2 warnings with `-Wbad-function-cast` | Nikias Bassen | 1 | -2/+4 | |
2022-02-07 | cython: Fix Windows build | Nikias Bassen | 1 | -0/+4 | |
2022-02-07 | cython: Fix for LibTool compilation and Python 3 libintl | Rick Mark | 1 | -1/+1 | |
On Python 3.9 `libpython` no longer is linkable as a static library due to the fact that `libpython` now depends on `libintl`. This would mean we would have to import `libintl` to create a fully linked .la It is better to be explicit that we are building a .so (really a .dylib but autotools uses linux file conventions) that doesn't have to be fully resolved. | |||||
2021-06-09 | cython: Add -no-undefined to linker flags for shared python lib | Nikias Bassen | 1 | -1/+1 | |
2020-06-14 | Add API version to library and pkgconfig file for proper linking | Nikias Bassen | 1 | -1/+1 | |
2020-06-09 | Unfold automake variables into multiple lines for maintainability | Martin Szulecki | 1 | -8/+28 | |
2020-04-14 | cython: Fix get_value for Data nodes | Nikias Bassen | 1 | -5/+1 | |
2020-04-13 | cython: Fix handling of Date nodes (needs MACH_EPOCH) | Nikias Bassen | 1 | -0/+4 | |
2019-08-08 | cython: Make sure plist.pxd is installed correctly | Nikias Bassen | 1 | -0/+3 | |
2019-08-08 | cython: Remove unused variable | Nikias Bassen | 1 | -1/+0 | |
2019-08-08 | cython: Fix compilation | Nikias Bassen | 1 | -0/+4 | |
2019-07-11 | cython: Implement dump()/dumps() to match up with plistlib (Python 3.4) | Andrew Udvare | 2 | -0/+37 | |
2019-07-11 | cython: Implement load()/loads() to match up with plistlib (Python 3.4) | Andrew Udvare | 2 | -0/+58 | |
2019-05-11 | cython: use PYTHON_LIBS instead of PYTHON_LDFLAGS | Yves-Alexis Perez | 1 | -1/+1 | |
New version of AX_PYTHON_DEVEL macro defines PYTHON_LIBS and not PYTHON_LDFLAGS, so adjust where needed | |||||
2018-12-17 | cython: Fix Node.to_bin() decode | Shane Garrett | 1 | -1/+1 | |
Don't convert the string to UTF-8, just bytes. Fixes #109. | |||||
2017-04-20 | build: Make sure plist.pxd is included in tarballs | Christophe Fergeau | 1 | -3/+2 | |
When generating a tarball on a system without cython installed, plist.pxd was missing, causing build failures later on when trying to use cython. This seems to be caused by EXTRA_DIST being inside a if HAVE_CYTHON block rather than being outside of it. | |||||
2017-04-20 | cython: Remove references to libxml2 flags from Makefile.am | Nikias Bassen | 1 | -2/+2 | |
2016-04-20 | cython: Fix module build with libplist already installed | Elan Ruusamäe | 1 | -1/+1 | |
see https://github.com/pld-linux/libplist/commit/a4a4e4b04caef3f9875b598d64ffb1fb388e699e | |||||
2014-10-14 | cython: Enforce default symbol visibility to make bindings loadable | Martin Szulecki | 1 | -1/+1 | |
2014-10-14 | cython: Use output variables instead of relative paths in Makefile | Martin Szulecki | 1 | -2/+2 | |
2014-07-30 | cython: Fix compiler warning by actually using the Uid factory | Martin Szulecki | 1 | -0/+2 | |
2014-07-30 | cython: Replace old Pyrex for-from loop with normal one to fix compiler warning | Martin Szulecki | 1 | -1/+1 | |
2014-07-30 | cython: Fix Python library import fail due to removed 'plist_set_type' symbol | Martin Szulecki | 1 | -4/+1 | |
2014-07-30 | cython: Do not export plist_new_key() which should not be used directly | Martin Szulecki | 1 | -1/+0 | |
2014-07-30 | cython: Fix compiler warning about uninitialized struct tm field | Martin Szulecki | 1 | -9/+8 | |
2014-03-22 | cython: Make sure to use plist_dict_set_item() instead of deprecated ↵1.11 | Nikias Bassen | 1 | -2/+2 | |
plist_dict_insert_item() | |||||
2014-02-11 | Force all dictionaries keys to be UTF-8 in Python 3 | Andrew Udvare | 1 | -8/+7 | |
2014-02-11 | Add URL for credit | Andrew Udvare | 1 | -0/+1 | |
2014-02-11 | Hopefully bridge between Python 3 and 2 for strings | Andrew Udvare | 1 | -2/+11 | |
2013-12-13 | change build system to autotools | Nikias Bassen | 2 | -30/+31 | |
2013-03-19 | cython: added PLIST_UID support | Nikias Bassen | 2 | -0/+55 | |
2013-03-19 | cython: use uint64_t instead of int for Integer get_value and __repr__ | Nikias Bassen | 2 | -4/+6 | |
2013-03-19 | cython: return correct Key_factory in plist_t_to_node | Nikias Bassen | 1 | -1/+1 | |
2013-03-19 | cython: removed unused return statements | Nikias Bassen | 1 | -3/+0 | |
2013-03-19 | cython: get rid of ctypedefs and use libc.stdint instead | Nikias Bassen | 1 | -11/+1 | |
2013-03-19 | cython: fixed missing class definition for PLIST_KEY type | Nikias Bassen | 2 | -1/+76 | |
2013-03-18 | added PLIST_KEY support to cython bindings | Nikias Bassen | 2 | -0/+6 | |
2012-03-22 | cython: Fix broken String plist handling in Python | Martin Szulecki | 1 | -5/+5 | |
2011-09-26 | cython: use bint instead of bool, fix deprecated stuff | Nikias Bassen | 2 | -28/+27 | |
2011-09-26 | More qualifiers. | Bryan Forbes | 2 | -19/+23 | |
2011-09-26 | Changed bool to bint in Cython functions. Added some more type qualifiers. | Bryan Forbes | 2 | -16/+16 | |
2011-09-26 | Fixed some memory leaks and unicode handling. | Bryan Forbes | 2 | -43/+72 | |
2011-09-26 | If the plist type is none, return None. | Bryan Forbes | 1 | -0/+2 | |
2011-09-26 | Removed a call to __dealloc__ and added initialization of _array. | Bryan Forbes | 1 | -1/+1 | |
2011-09-26 | Added cython bindings. | Bryan Forbes | 5 | -0/+837 | |