[Python-modules-commits] [python-psutil] branch master updated (fcfa972 -> 8f91516)
Sandro Tosi
morph at moszumanska.debian.org
Sun Jan 17 21:10:28 UTC 2016
This is an automated email from the git hooks/post-receive script.
morph pushed a change to branch master
in repository python-psutil.
from fcfa972 Update Vcs fields for git migration
new 254eee2 record new upstream branch created by importing python-psutil_3.4.1.orig.tar.gz
new ec23e98 Import python-psutil_3.4.1.orig.tar.gz
new aeec97c remove Google Analytics tracking from documentation
new 4a02e36 merge patched into master
new 8f6b0d8 New upstream release
new 716c183 extend packaging copyright years
new c5cbc47 add python-ipaddress to b-d (needed by tests)
new 0bab02f bump dh compat to 9
new 58e6591 add ipaddress and mock to b-d (needed by tests)
new 8f91516 releasing package python-psutil version 3.4.1-1
The 10 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
.coveragerc | 21 +
.git-pre-commit | 47 +
.gitignore | 18 +
.travis.yml | 41 +-
CREDITS | 80 +-
DEVNOTES.rst | 10 +
HISTORY.rst | 197 +++
INSTALL.rst | 70 +-
MANIFEST.in | 10 +-
Makefile | 70 +-
PKG-INFO | 86 +-
README.rst | 83 +-
TODO | 74 +-
appveyor.yml | 77 +
debian/.git-dpm | 14 +-
debian/changelog | 11 +
debian/compat | 2 +-
debian/control | 2 +-
debian/copyright | 2 +-
debian/patches/remove-google-analytics.patch | 2 +-
debian/rules | 4 -
docs/index.rst | 363 +++--
examples/ifconfig.py | 80 ++
examples/iotop.py | 15 +-
examples/nettop.py | 10 +-
examples/process_detail.py | 21 +-
examples/ps.py | 0
examples/pstree.py | 2 +-
examples/top.py | 12 +-
make.bat | 163 +--
psutil.egg-info/PKG-INFO | 86 +-
psutil.egg-info/SOURCES.txt | 25 +-
psutil.egg-info/top_level.txt | 2 -
psutil/__init__.py | 846 +++++------
psutil/_common.py | 161 ++-
psutil/_compat.py | 87 +-
psutil/_psbsd.py | 420 ++++--
psutil/_pslinux.py | 570 +++++---
psutil/_psosx.py | 48 +-
psutil/_psposix.py | 15 +-
psutil/_pssunos.py | 76 +-
psutil/_psutil_bsd.c | 1988 +++++---------------------
psutil/_psutil_bsd.h | 17 -
psutil/_psutil_linux.c | 277 ++--
psutil/_psutil_linux.h | 1 +
psutil/_psutil_osx.c | 592 ++++----
psutil/_psutil_posix.c | 454 +++++-
psutil/_psutil_posix.h | 5 +
psutil/_psutil_sunos.c | 402 ++++--
psutil/_psutil_sunos.h | 1 +
psutil/_psutil_windows.c | 1699 +++++++++++-----------
psutil/_psutil_windows.h | 10 +-
psutil/_pswindows.py | 168 ++-
psutil/arch/bsd/freebsd.c | 976 +++++++++++++
psutil/arch/bsd/freebsd.h | 30 +
psutil/arch/bsd/freebsd_socks.c | 631 ++++++++
psutil/arch/bsd/freebsd_socks.h | 11 +
psutil/arch/bsd/netbsd.c | 668 +++++++++
psutil/arch/bsd/netbsd.h | 29 +
psutil/arch/bsd/netbsd_socks.c | 542 +++++++
psutil/arch/bsd/netbsd_socks.h | 10 +
psutil/arch/bsd/openbsd.c | 793 ++++++++++
psutil/arch/bsd/openbsd.h | 28 +
psutil/arch/bsd/process_info.c | 272 ----
psutil/arch/bsd/process_info.h | 15 -
psutil/arch/osx/process_info.c | 109 +-
psutil/arch/osx/process_info.h | 2 +-
psutil/arch/solaris/v10/ifaddrs.c | 124 ++
psutil/arch/solaris/v10/ifaddrs.h | 26 +
psutil/arch/windows/inet_ntop.c | 38 +
psutil/arch/windows/inet_ntop.h | 10 +
psutil/arch/windows/ntextapi.h | 106 +-
psutil/arch/windows/process_handles.c | 771 ++++++----
psutil/arch/windows/process_handles.h | 101 ++
psutil/arch/windows/process_info.c | 112 +-
psutil/arch/windows/process_info.h | 11 +-
psutil/arch/windows/security.c | 33 +-
setup.py | 142 +-
test/README | 15 -
test/README.rst | 21 +
test/__init__.py | 0
test/_bsd.py | 165 ++-
test/_linux.py | 455 +++++-
test/_osx.py | 80 +-
test/_posix.py | 68 +-
test/_sunos.py | 18 +-
test/_windows.py | 212 ++-
test/test_memory_leaks.py | 90 +-
test/test_psutil.py | 1489 +++++++++++++------
tox.ini | 22 +-
90 files changed, 11912 insertions(+), 5850 deletions(-)
create mode 100644 .coveragerc
create mode 100755 .git-pre-commit
create mode 100644 .gitignore
create mode 100644 DEVNOTES.rst
create mode 100644 appveyor.yml
create mode 100755 examples/ifconfig.py
mode change 100644 => 100755 examples/ps.py
mode change 100644 => 100755 examples/pstree.py
create mode 100644 psutil/arch/bsd/freebsd.c
create mode 100644 psutil/arch/bsd/freebsd.h
create mode 100644 psutil/arch/bsd/freebsd_socks.c
create mode 100644 psutil/arch/bsd/freebsd_socks.h
create mode 100644 psutil/arch/bsd/netbsd.c
create mode 100644 psutil/arch/bsd/netbsd.h
create mode 100644 psutil/arch/bsd/netbsd_socks.c
create mode 100644 psutil/arch/bsd/netbsd_socks.h
create mode 100644 psutil/arch/bsd/openbsd.c
create mode 100644 psutil/arch/bsd/openbsd.h
delete mode 100644 psutil/arch/bsd/process_info.c
delete mode 100644 psutil/arch/bsd/process_info.h
create mode 100644 psutil/arch/solaris/v10/ifaddrs.c
create mode 100644 psutil/arch/solaris/v10/ifaddrs.h
create mode 100644 psutil/arch/windows/inet_ntop.c
create mode 100644 psutil/arch/windows/inet_ntop.h
delete mode 100644 test/README
create mode 100644 test/README.rst
delete mode 100644 test/__init__.py
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-psutil.git
More information about the Python-modules-commits
mailing list