summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Imported Upstream version 1.2.4Simon McVittie2016-03-06
|
* Imported Upstream version 1.2.2Simon McVittie2016-02-22
|
* Imported Upstream version 1.2.2~rc2Simon McVittie2016-02-22
|
* Imported Upstream version 1.2.2~rc1Simon McVittie2016-02-22
|
* Imported Upstream version 1.2.0Simon McVittie2013-05-08
|\
| * distribute new testsSimon McVittie2013-05-08
| |
| * 1.2.0Simon McVittie2013-05-08
| |
| * Add support for skipping tests, and use itSimon McVittie2013-05-08
| | | | | | | | | | Now that Python 2.6 isn't a supported version in Debian, it doesn't get a gi module, but we can still get some minimal test coverage.
| * utf8 test: pass when used with dbus 1.6.10, 1.7.2Simon McVittie2013-05-08
| | | | | | | | We used to reject noncharacters, but now we accept them.
| * Replace AM_CONFIG_HEADER with AC_CONFIG_HEADERSMarko Lindqvist2013-05-07
| | | | | | | | | | | | | | | | This has been (silently!) deprecated since 2002 and was removed from Automake 1.13. [added commit message -smcv] Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
| * Use GObject.__class__ instead of GObjectMetaSimon McVittie2013-04-22
| | | | | | | | | | | | In pygobject 3.8, GObjectMeta is no longer available via gi.repository.GObject. What we actually want is "the metaclass of GObject", so, say so.
| * Unset DBUS_STARTER_ADDRESS, DBUS_STARTER_BUS_TYPESimon McVittie2013-04-22
| | | | | | | | See <https://bugs.freedesktop.org/show_bug.cgi?id=63119>.
| * Require D-Bus 1.6, drop fallback pathsSimon McVittie2013-04-22
| |
| * NEWSSimon McVittie2012-10-23
| |
| * Update the confusing notice of what license dbus-python is underThiago Macieira2012-10-23
| | | | | | | | | | | | | | | | We tried to change the license for the D-Bus core too but were unable to reach all copyright holders. The MIT license was the suggested new license and all reached parties had agreed to. Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
| * DBusException: override both __str__ and __unicode__Simon McVittie2012-10-16
| | | | | | | | | | | | | | | | Avoid chaining up to the superclass, because that behaves particularly oddly. This fixes regression test failures: str(some_dbus_exception) was no longer prefixed with the D-Bus error name under Python 2. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=55899
| * Slightly better test coverageSimon McVittie2012-10-16
| |
| * Use a form of assertRaises() that works in Python 2.6Simon McVittie2012-10-16
| |
| * Skip test_dbus_exception_convert_str_fail under unusual default encodingsSimon McVittie2012-10-16
| | | | | | | | | | This would actually work fine if the default encoding was UTF-8 or Latin-1 or something.
| * Support unicode messages for DBusException in Python 2Michael Vogt2012-10-16
| | | | | | | | | | | | [commit message amended -smcv] Bug: https://bugs.freedesktop.org/show_bug.cgi?id=55899 Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
| * Link Python extensions differently on WindowsSimon McVittie2012-07-05
| |
| * Replace incorrect AM_LDFLAGS usage with a proper AM_LDFLAGS/LIBADD splitSimon McVittie2012-07-05
| |
| * run-test.sh: don't go via make to run the cross-testSimon McVittie2012-07-04
| | | | | | | | | | | | Based on a patch from Christoph Höger. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=51725
| * NEWSSimon McVittie2012-07-04
| |
| * Don't include stdint.hSimon McVittie2012-07-04
| | | | | | | | | | | | Every use here turns out to be unnecessary, some compilers *still* don't have it after more than a decade in ISO C, and if we need fixed-length integer types we can use the ones from D-Bus.
| * Re-indent now that the indentation is unecessarySimon McVittie2012-07-04
| |
| * Avoid variable-length arrays, which MSVC *still* doesn't supportSimon McVittie2012-07-04
| | | | | | | | | | | | Based on patches from Christoph Höger. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=51725
| * Use AC_C_INLINE to make sure "inline" worksSimon McVittie2012-07-04
| |
| * reset to unreleasedSimon McVittie2012-06-25
| |
| * prepare releaseSimon McVittie2012-06-25
| |
| * fd.o #40817: validate UTF-8 according to the same rules as libdbusSimon McVittie2012-06-25
| |
| * NEWSSimon McVittie2012-06-05
| |
| * Py3: correctly guess the signature of ObjectPath(...) and Signature(...)Simon McVittie2012-06-05
| | | | | | | | | | | | | | | | | | | | | | | | Under Python 2, ObjectPath and Signature are subtypes of str (= bytes), and the existing type-guessing worked. The type-guessing code assumed that all unicode objects were just strings, but that assumption became false in the Python 3 port: ObjectPath and Signature are still subtypes of str, but str now means unicode, not bytes. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=50740
| * Back to unreleased statusSimon McVittie2012-05-09
| |
| * 1.1.0Simon McVittie2012-05-09
| |
| * Make AM_CHECK_PYTHON_HEADERS compatible with Python 3 in the absence of ↵Simon McVittie2012-05-02
| | | | | | | | python3-config
| * Deprecate dbus.gobject_service and make it vaguely compatible with 1.0Simon McVittie2012-05-02
| | | | | | | | Bug: https://bugs.freedesktop.org/show_bug.cgi?id=48904
| * Reinstate the old dbus.gobject_service, but only for Python 2Simon McVittie2012-05-02
| | | | | | | | Bug: https://bugs.freedesktop.org/show_bug.cgi?id=48904
| * Rename gobject_service (PyGI version) to gi_serviceSimon McVittie2012-05-02
| | | | | | | | Bug: https://bugs.freedesktop.org/show_bug.cgi?id=48904
| * Fix ref leak in dbus_py_variant_level_setSimon McVittie2012-03-12
| | | | | | | | | | Bug: https://bugs.freedesktop.org/show_bug.cgi?id=47108 Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
| * Put sockets for the regression tests in /tmp, not ${builddir}Simon McVittie2012-02-29
| | | | | | | | | | | | | | | | | | Some automated build systems (naming no Portage) have really long build directories, which can cause dbus-python to hit the length limit for Unix sockets' names. Bug: https://bugs.freedesktop.org/show_bug.cgi?id=46747 Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
| * Use DBusBasicValue instead of reinventing it, if dbus is new enoughSimon McVittie2012-02-24
| | | | | | | | | | If we don't find it, continue to reinvent it, but move the reinvention to an internal header so it's at least the same in both files that want it.
| * Fix _maintainer-update-htmldocs for out-of-tree buildsSimon McVittie2012-02-01
| |
| * Remove TODO, which is now empty - use bugzilla insteadSimon McVittie2012-02-01
| |
| * back to unreleasedSimon McVittie2012-01-24
| |
| * retroactively add release dateSimon McVittie2012-01-24
| |
| * Install _compat.pyBarry Warsaw2012-01-24
| |
| * Generate ChangeLog correctly when out-of-treeSimon McVittie2012-01-24
| |
| * Let's call this 1.0Simon McVittie2012-01-24
| |
| * Remove duplicate -Werror machinerySimon McVittie2012-01-24
| |