| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
| |
This matches what was done for libgudev. This way we have plenty of time
to remove the module from systemd, and this version will always be "newer".
|
| | |
|
| |
|
|
|
| |
We want the package to be installed under this name.
This is also used for sdist, and we want python-systemd-<version>.tar.xz.
|
| |
|
|
|
|
| |
The license was originally MIT, but when this module became part of systemd,
it was changed to LGPLv2+. All files had correct headers, so only the LICENSE
file needs updating. Take the opportunity to add classifiers to setup.py.
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
| |
journald.send() is renamed to journald.sendv(), and a replacement
journald.send() is added. This new function has a more pythonic API,
where one positional argument is used for the message, and keyword
arguments can be used to specify other fields.
Implementing argument parsing in C would be really painful, for little
gain, so a pure-python module is added, which provides send(), which
in turn calls sendv().
|
| | |
|
| |
|