[Python-modules-commits] [python-psutil] branch master updated (58c4846 -> 04f6224)
Ondřej Nový
onovy at moszumanska.debian.org
Sun Dec 11 17:25:30 UTC 2016
This is an automated email from the git hooks/post-receive script.
onovy pushed a change to branch master
in repository python-psutil.
from 58c4846 releasing package python-psutil version 4.3.1-1
new 7adc392 record new upstream branch created by importing python-psutil_5.0.0.orig.tar.gz
new 1e88314 Import python-psutil_5.0.0.orig.tar.gz
new bb3e54b remove Google Analytics tracking from documentation
new 8f5a6e6 dont depend on install when running tests
new 071c1a1 pass PYTHONPATH to the test runner
new aec1f90 merge patched into master
new c396af9 New upstream release
new cf5940a Fixed typo in changelog
new d08ede4 d/copyright: Changed licence shortname from BSD to BSD-3-clause
new 63d8e02 Bumped debhelper compat version to 10
new 46274e9 d/watch: Use https
new 04f6224 Enabled autopkgtest-pkg-python testsuite
The 12 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:
.ci/travis/install.sh | 4 +-
.ci/travis/run.sh | 16 +-
.git-pre-commit | 79 +-
CREDITS | 18 +
DEVGUIDE.rst | 15 +-
HISTORY.rst | 2213 +++++++++++++++-----
IDEAS | 16 +-
INSTALL.rst | 48 +-
MANIFEST.in | 1 +
Makefile | 130 +-
PKG-INFO | 63 +-
README.rst | 59 +-
appveyor.yml | 23 +
debian/.git-dpm | 14 +-
debian/changelog | 15 +-
debian/compat | 2 +-
debian/control | 3 +-
debian/copyright | 6 +-
...dont-depend-on-install-when-running-tests.patch | 64 +-
.../0003-pass-PYTHONPATH-to-the-test-runner.patch | 68 +-
debian/patches/remove-google-analytics.patch | 2 +-
debian/watch | 2 +-
docs/_static/copybutton.js | 57 -
docs/_static/favicon.ico | Bin 15086 -> 0 bytes
docs/_static/logo.png | Bin 4922 -> 0 bytes
docs/_static/sidebar.js | 161 --
docs/index.rst | 309 ++-
docs/make.bat | 274 +--
make.bat | 216 +-
psutil.egg-info/PKG-INFO | 63 +-
psutil.egg-info/SOURCES.txt | 13 +-
psutil/__init__.py | 174 +-
psutil/_common.py | 53 +
psutil/_psbsd.py | 127 +-
psutil/_pslinux.py | 287 ++-
psutil/_psosx.py | 108 +-
psutil/_pssunos.py | 53 +-
psutil/_psutil_bsd.c | 419 ++--
psutil/_psutil_common.c | 89 +
psutil/_psutil_common.h | 5 +
psutil/_psutil_linux.c | 40 +-
psutil/_psutil_osx.c | 531 ++---
psutil/_psutil_posix.c | 114 +-
psutil/_psutil_posix.h | 10 -
psutil/_psutil_sunos.c | 3 +-
psutil/_psutil_windows.c | 330 +--
psutil/_pswindows.py | 81 +-
psutil/arch/bsd/freebsd.c | 79 +-
psutil/arch/bsd/freebsd.h | 2 -
psutil/arch/bsd/freebsd_socks.c | 6 +-
psutil/arch/bsd/netbsd.c | 87 +-
psutil/arch/bsd/netbsd.h | 4 +-
psutil/arch/bsd/netbsd_socks.c | 503 ++---
psutil/arch/bsd/openbsd.c | 47 +-
psutil/arch/bsd/openbsd.h | 2 -
psutil/arch/osx/process_info.c | 90 +-
psutil/arch/osx/process_info.h | 6 +-
psutil/arch/windows/process_handles.c | 6 +-
psutil/arch/windows/process_info.c | 20 +-
psutil/arch/windows/process_info.h | 7 +
psutil/arch/windows/services.c | 1 +
psutil/tests/__init__.py | 384 ++--
psutil/tests/runner.py | 2 +
psutil/tests/test_bsd.py | 141 +-
psutil/tests/test_linux.py | 450 ++--
psutil/tests/test_memory_leaks.py | 467 +++--
psutil/tests/test_misc.py | 244 ++-
psutil/tests/test_osx.py | 87 +-
psutil/tests/test_posix.py | 13 +-
psutil/tests/test_process.py | 545 +++--
psutil/tests/test_sunos.py | 2 +-
psutil/tests/test_system.py | 99 +-
psutil/tests/test_windows.py | 453 ++--
scripts/disk_usage.py | 1 +
scripts/free.py | 1 +
scripts/ifconfig.py | 83 +-
scripts/internal/README | 2 +
scripts/internal/bench_oneshot.py | 151 ++
scripts/internal/bench_oneshot_2.py | 53 +
.../appveyor => scripts/internal}/download_exes.py | 10 +-
scripts/internal/print_announce.py | 116 +
scripts/internal/winmake.py | 381 ++++
scripts/iotop.py | 19 +-
scripts/killall.py | 4 +-
scripts/meminfo.py | 1 +
scripts/netstat.py | 1 +
scripts/nettop.py | 1 +
scripts/pidof.py | 36 +-
scripts/pmap.py | 1 +
scripts/procinfo.py | 359 +++-
scripts/procsmem.py | 36 +-
scripts/ps.py | 1 +
scripts/top.py | 15 +-
scripts/who.py | 1 +
setup.py | 88 +-
95 files changed, 7004 insertions(+), 4482 deletions(-)
delete mode 100644 docs/_static/copybutton.js
delete mode 100644 docs/_static/favicon.ico
delete mode 100644 docs/_static/logo.png
delete mode 100644 docs/_static/sidebar.js
mode change 100644 => 100755 psutil/tests/runner.py
mode change 100644 => 100755 psutil/tests/test_bsd.py
mode change 100644 => 100755 psutil/tests/test_linux.py
mode change 100644 => 100755 psutil/tests/test_memory_leaks.py
mode change 100644 => 100755 psutil/tests/test_misc.py
mode change 100644 => 100755 psutil/tests/test_osx.py
mode change 100644 => 100755 psutil/tests/test_posix.py
mode change 100644 => 100755 psutil/tests/test_process.py
mode change 100644 => 100755 psutil/tests/test_sunos.py
mode change 100644 => 100755 psutil/tests/test_system.py
mode change 100644 => 100755 psutil/tests/test_windows.py
create mode 100644 scripts/internal/README
create mode 100755 scripts/internal/bench_oneshot.py
create mode 100644 scripts/internal/bench_oneshot_2.py
rename {.ci/appveyor => scripts/internal}/download_exes.py (95%)
create mode 100755 scripts/internal/print_announce.py
create mode 100755 scripts/internal/winmake.py
mode change 100644 => 100755 setup.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