Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python2-dbus-python-1.2.16-lp152.7.3.1 RPM for armv7hl

From OpenSuSE Ports Leap 15.2 updates for armv7hl

Name: python2-dbus-python Distribution: openSUSE Leap 15.2
Version: 1.2.16 Vendor: openSUSE
Release: lp152.7.3.1 Build date: Mon Aug 30 08:49:39 2021
Group: Development/Libraries/Python Build host: obs-arm-6
Size: 475617 Source RPM: python-dbus-python-1.2.16-lp152.7.3.1.src.rpm
Packager: http://bugs.opensuse.org
Url: https://www.freedesktop.org/wiki/Software/DBusBindings/
Summary: Python bindings for D-Bus
D-Bus python bindings for use with python programs.

Provides

Requires

License

MIT

Changelog

* Wed Jun 09 2021 Simon Lees <sflees@suse.de>
  - Update to latest version from tumbleweed jira#OPENSUSE-22
    boo#1183818
  - Enable testsuite
* Sat Jan 09 2021 Dirk Müller <dmueller@suse.com>
  - update to 1.2.16:
    * All tests are run even if the tap.py module is not available, although
      diagnostics for failing tests will be better if it is present.
    * Forbid unexpanded AX-prefixed macros more selectively
* Fri Dec 11 2020 Benjamin Greiner <code@bnavigator.de>
  - Support builds with more than one python3 flavor
    gh#openSUSE/python-rpm-macros#66
  - Remove shebang from examples (rpmlint warning, is in common doc)
  - Clean duplicate python flavor variables for configure
  - Update the provides/obsoletes tags for old-style dbus-1-$python
* Wed Jan 08 2020 Michael Gorse <mgorse@suse.com>
  - Version update to version 1.2.14:
    * Ensure that the numeric types from dbus.types get the same
      str() under Python 3.8 that they did under previous versions.
    * Disable -Winline.
    * Add Python 3.8 to CI.
    - Changes in version 1.2.12:
    * Don't save and restore the exception indicator when called
      from C code.
    - Changes in version 1.2.10:
    * Rewrite CONTRIBUTING.md document, based on Wayland's equivalent
    * Add clearer license information using SPDX-License-Identifier.
    * Improve test coverage.
    * Don't set deprecated tp_print to NULL under Python 3.
    * Include inherited methods and properties when documenting
      objects, which regressed when migrating from epydoc to sphinx.
    * Add missing variant_level member to UnixFd type, for parity
      with the other dbus.types types (dbus-python!3.
    - Note that this is a potentially incompatible change: unknown
      keyword arguments were previously ignored (!) and are now an
      error.
    * Don't reply to method calls if they have the NO_REPLY_EXPECTED
      flag (fd.o#32529, dbus-python#26.
    * Silence -Wcast-function-type with gcc 8.
    * Fix distcheck with python3.7 by deleting __pycache__ during
      uninstall.
    * Consistently save and restore the exception indicator when
      called from C code.
    * Avoid a long-standing race condition in the automated tests.
    * Fix Qt website URL.
  - Up dbus dependency; 1.8 is now required.
* Mon Oct 01 2018 Nicolas Bock <nicolas.bock@suse.com>
  - Add missing dependency for pkg-config files
* Wed Jul 04 2018 tchvatal@suse.com
  - Version update to version 1.2.8:
    * Python 2.7 required or 3.4 respectively
    * Tests use tap.py functionality
    * Upstream dropped epydoc completely
    * See NEWS for more
* Wed Jul 04 2018 tchvatal@suse.com
  - Use requires_ge instead of the rpm calls
* Mon Dec 18 2017 jmatejek@suse.com
  - drop unneeded epydoc requirement properly
* Thu Dec 07 2017 dimstar@opensuse.org
  - Escape the usage of %{VERSION} when calling out to rpm.
    RPM 4.14 has %{VERSION} defined as 'the main packages version'.
* Tue Nov 14 2017 jmatejek@suse.com
  - drop unneeded epydoc requirement (API docs were not built anyway)
* Wed Mar 08 2017 toddrme2178@gmail.com
  - Rename package from dbus-1-python to python-dbus-python to
    conform to openSUSE package naming guidelines.
  - Switch to single-spec version
  - Update to version 1.2.4
    + Enhancements:
    * Continous integration metadata for travis-ci.org is now available.
      Similar to dbus, this is split into .travis.yml (Travis-specifics)
      and tools/ci-build.sh (intended to be useful for any CI framework,
      although it does include various workarounds for travis-ci oddities).
      (Simon McVittie)
    + Fixes:
    * Make dbus.version a tuple again, not a list, for consistent sorting.
      This was a regression in 1.2.2. (Debian #816729, Simon McVittie)
    * Use inspect.signature() instead of inspect.getargspec() on Python
      versions that have it. inspect.getargspec() is deprecated in recent
      Python 3 and seems to have disappeared from 3.6 nightly builds.
      (Simon McVittie)
    * Make the tests pass in "narrow" Python builds where unicode objects
      are UTF-16, rather than the UCS-4 used in Linux distributions.
      (fd.o #57140, Simon McVittie)
    * Always include headers in a consistent order (Debian #749133, Simon McVittie)
    * Include config.h in all C code that we compile. This is necessary
      on platforms where it might contain something like "#define _GNU_SOURCE"
      or "#define inline __inline".
      (Simon McVittie)
  - Update to version 1.2.2
    + Versioning changes:
    * dbus-python releases now have an even micro version (1.2.0, 1.2.2),
      and snapshots from git have an odd micro version (1.2.1).
    + Dependencies:
    * Building from git (but not from tarballs) now requires
      macros from the GNU Autoconf Archive, for example the autoconf-archive
      package in Debian or Fedora derivatives.
    * Building from git (but not from tarballs) now requires Automake 1.13
      or later.
    * The automated tests and some examples now require PyGI (the gi module),
      not PyGObject 2 (the deprecated glib and gobject modules).
    + Enhancements:
    * There is now a setuptools setup.py, allowing dbus-python to be installed
      into a virtualenv using pip from a standard Automake source release. This
      requires pre-existing system-wide installations of the normal build
      dependencies (pkg-config, libdbus, dbus-glib, a C compiler) and has
      some limitations. For system-wide installations and development,
      please use the Autoconf/Automake build system directly.
      (fd.o #55439; Simon McVittie)
    * dbus-python now uses the common compiler warnings from AX_COMPILER_FLAGS
      (Simon McVittie)
    * The automated tests can now be installed as GNOME-style "installed tests",
      and should be somewhat more reliable (Simon McVittie)
    + Fixes:
    * ``from dbus.service import *`` now imports FallbackObject
      (fd.o #85720; Ben Longbons)
    * The GConf-related examples work again (fd.o #85720; Ben Longbons)
    * Consistently make examples executable, and install them all
      (fd.o #85720; Ben Longbons)
    * Search PATH for an appropriately-versioned pythonX.Y-config, or as a last
      resort python-config, if there isn't a ${PYTHON}-config in the
      same directory as ${PYTHON} (fd.o #92085; Yamashita, Yuu)
    * Add support for the Automake 1.13 parallel test driver (Simon McVittie)
    * Skip building API documentation if "import epydoc" fails (Simon McVittie)
  - Add python version-dependent and python version-indepent devel
    packages.

Files

/usr/lib/python2.7/site-packages/_dbus_bindings.so
/usr/lib/python2.7/site-packages/_dbus_glib_bindings.so
/usr/lib/python2.7/site-packages/dbus
/usr/lib/python2.7/site-packages/dbus/__init__.py
/usr/lib/python2.7/site-packages/dbus/__init__.pyc
/usr/lib/python2.7/site-packages/dbus/__init__.pyo
/usr/lib/python2.7/site-packages/dbus/_compat.py
/usr/lib/python2.7/site-packages/dbus/_compat.pyc
/usr/lib/python2.7/site-packages/dbus/_compat.pyo
/usr/lib/python2.7/site-packages/dbus/_dbus.py
/usr/lib/python2.7/site-packages/dbus/_dbus.pyc
/usr/lib/python2.7/site-packages/dbus/_dbus.pyo
/usr/lib/python2.7/site-packages/dbus/_expat_introspect_parser.py
/usr/lib/python2.7/site-packages/dbus/_expat_introspect_parser.pyc
/usr/lib/python2.7/site-packages/dbus/_expat_introspect_parser.pyo
/usr/lib/python2.7/site-packages/dbus/bus.py
/usr/lib/python2.7/site-packages/dbus/bus.pyc
/usr/lib/python2.7/site-packages/dbus/bus.pyo
/usr/lib/python2.7/site-packages/dbus/connection.py
/usr/lib/python2.7/site-packages/dbus/connection.pyc
/usr/lib/python2.7/site-packages/dbus/connection.pyo
/usr/lib/python2.7/site-packages/dbus/decorators.py
/usr/lib/python2.7/site-packages/dbus/decorators.pyc
/usr/lib/python2.7/site-packages/dbus/decorators.pyo
/usr/lib/python2.7/site-packages/dbus/exceptions.py
/usr/lib/python2.7/site-packages/dbus/exceptions.pyc
/usr/lib/python2.7/site-packages/dbus/exceptions.pyo
/usr/lib/python2.7/site-packages/dbus/gi_service.py
/usr/lib/python2.7/site-packages/dbus/gi_service.pyc
/usr/lib/python2.7/site-packages/dbus/gi_service.pyo
/usr/lib/python2.7/site-packages/dbus/glib.py
/usr/lib/python2.7/site-packages/dbus/glib.pyc
/usr/lib/python2.7/site-packages/dbus/glib.pyo
/usr/lib/python2.7/site-packages/dbus/gobject_service.py
/usr/lib/python2.7/site-packages/dbus/gobject_service.pyc
/usr/lib/python2.7/site-packages/dbus/gobject_service.pyo
/usr/lib/python2.7/site-packages/dbus/lowlevel.py
/usr/lib/python2.7/site-packages/dbus/lowlevel.pyc
/usr/lib/python2.7/site-packages/dbus/lowlevel.pyo
/usr/lib/python2.7/site-packages/dbus/mainloop
/usr/lib/python2.7/site-packages/dbus/mainloop/__init__.py
/usr/lib/python2.7/site-packages/dbus/mainloop/__init__.pyc
/usr/lib/python2.7/site-packages/dbus/mainloop/__init__.pyo
/usr/lib/python2.7/site-packages/dbus/mainloop/glib.py
/usr/lib/python2.7/site-packages/dbus/mainloop/glib.pyc
/usr/lib/python2.7/site-packages/dbus/mainloop/glib.pyo
/usr/lib/python2.7/site-packages/dbus/proxies.py
/usr/lib/python2.7/site-packages/dbus/proxies.pyc
/usr/lib/python2.7/site-packages/dbus/proxies.pyo
/usr/lib/python2.7/site-packages/dbus/server.py
/usr/lib/python2.7/site-packages/dbus/server.pyc
/usr/lib/python2.7/site-packages/dbus/server.pyo
/usr/lib/python2.7/site-packages/dbus/service.py
/usr/lib/python2.7/site-packages/dbus/service.pyc
/usr/lib/python2.7/site-packages/dbus/service.pyo
/usr/lib/python2.7/site-packages/dbus/types.py
/usr/lib/python2.7/site-packages/dbus/types.pyc
/usr/lib/python2.7/site-packages/dbus/types.pyo
/usr/share/doc/packages/python2-dbus-python
/usr/share/doc/packages/python2-dbus-python/AUTHORS
/usr/share/doc/packages/python2-dbus-python/ChangeLog
/usr/share/doc/packages/python2-dbus-python/NEWS
/usr/share/doc/packages/python2-dbus-python/README
/usr/share/licenses/python2-dbus-python
/usr/share/licenses/python2-dbus-python/COPYING


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 13:11:18 2024