[Python-modules-commits] [python-psutil] branch master updated (c25173c -> 9e3fee8)

Sandro Tosi morph at moszumanska.debian.org
Sun Apr 10 19:44:15 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  c25173c   Fixed VCS URL
       new  be1e1e6   record new upstream branch created by importing python-psutil_4.1.0.orig.tar.gz
       new  2c309eb   Import python-psutil_4.1.0.orig.tar.gz
       new  5aad529   remove Google Analytics tracking from documentation
       new  d2c983f   merge patched into master
       new  956835c   New upstream release
       new  ae7b343   install examples from 'scripts' directory
       new  f023017   dont depend on install when running tests
       new  7920178   merge patched into master
       new  f61f462   pass PYTHONPATH to the test runner
       new  b2da839   merge patched into master
       new  649ad42   pass PYTHONPATH to the test runner
       new  492a32c   merge patched into master
       new  3d9222c   run build also for the debug flavor
       new  47705fe   run unittests via runner.py
       new  c762f27   bump Standards-Version t0 3.9.7 (no changes needed)
       new  9e3fee8   releasing package python-psutil version 4.1.0-1

The 16 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                              |   37 +-
 .ci/travis/run.sh                                  |   12 +-
 .coveragerc                                        |   18 +-
 .travis.yml                                        |   27 +-
 CREDITS                                            |   28 +
 DEVGUIDE.rst                                       |  144 ++
 DEVNOTES.rst                                       |   10 -
 HISTORY.rst                                        |   68 +
 IDEAS                                              |  151 ++
 INSTALL.rst                                        |  144 +-
 MANIFEST.in                                        |    9 +-
 Makefile                                           |   35 +-
 PKG-INFO                                           |   43 +-
 README.rst                                         |   38 +-
 TODO                                               |  171 --
 appveyor.yml                                       |   27 +-
 debian/.git-dpm                                    |   14 +-
 debian/changelog                                   |   15 +-
 debian/control                                     |    2 +-
 ...dont-depend-on-install-when-running-tests.patch |   51 +
 .../0003-pass-PYTHONPATH-to-the-test-runner.patch  |   59 +
 debian/patches/remove-google-analytics.patch       |    2 +-
 debian/patches/series                              |    2 +
 debian/python-psutil-doc.examples                  |    2 +-
 debian/rules                                       |   14 +-
 docs/index.rst                                     |  468 +++--
 make.bat                                           |   62 +-
 psutil.egg-info/PKG-INFO                           |   43 +-
 psutil.egg-info/SOURCES.txt                        |   57 +-
 psutil/__init__.py                                 |  235 ++-
 psutil/_common.py                                  |   85 +-
 psutil/_psbsd.py                                   |   81 +-
 psutil/_pslinux.py                                 |  297 ++-
 psutil/_psosx.py                                   |   38 +-
 psutil/_psposix.py                                 |    2 +-
 psutil/_pssunos.py                                 |   73 +-
 psutil/_psutil_bsd.c                               |   68 +-
 psutil/_psutil_linux.c                             |   22 +-
 psutil/_psutil_osx.c                               |  203 +-
 psutil/_psutil_osx.h                               |    2 +
 psutil/_psutil_posix.c                             |    2 +-
 psutil/_psutil_sunos.c                             |   69 +-
 psutil/_psutil_windows.c                           |  507 +++--
 psutil/_psutil_windows.h                           |    2 +
 psutil/_pswindows.py                               |   69 +-
 psutil/arch/bsd/freebsd.c                          |   56 +-
 psutil/arch/bsd/freebsd.h                          |    1 +
 psutil/arch/bsd/netbsd.c                           |   46 +-
 psutil/arch/bsd/netbsd.h                           |    1 +
 psutil/arch/bsd/openbsd.c                          |   50 +-
 psutil/arch/bsd/openbsd.h                          |    1 +
 psutil/arch/osx/process_info.c                     |  122 ++
 psutil/arch/osx/process_info.h                     |    1 +
 psutil/arch/windows/ntextapi.h                     |  111 ++
 psutil/arch/windows/process_info.c                 |  628 ++++++-
 psutil/arch/windows/process_info.h                 |    3 +-
 psutil/tests/README.rst                            |   19 +
 psutil/tests/__init__.py                           |  603 ++++++
 psutil/tests/runner.py                             |   25 +
 test/_bsd.py => psutil/tests/test_bsd.py           |  137 +-
 test/_linux.py => psutil/tests/test_linux.py       |  994 +++++++---
 {test => psutil/tests}/test_memory_leaks.py        |   65 +-
 psutil/tests/test_misc.py                          |  437 +++++
 test/_osx.py => psutil/tests/test_osx.py           |   40 +-
 test/_posix.py => psutil/tests/test_posix.py       |  203 +-
 .../test_psutil.py => psutil/tests/test_process.py | 1948 ++++----------------
 test/_sunos.py => psutil/tests/test_sunos.py       |   19 +-
 psutil/tests/test_system.py                        |  692 +++++++
 test/_windows.py => psutil/tests/test_windows.py   |  134 +-
 {examples => scripts}/disk_usage.py                |    2 +-
 {examples => scripts}/free.py                      |    2 +-
 {examples => scripts}/ifconfig.py                  |    2 +-
 {examples => scripts}/iotop.py                     |    2 +-
 {examples => scripts}/killall.py                   |    0
 {examples => scripts}/meminfo.py                   |    2 +-
 {examples => scripts}/netstat.py                   |    2 +-
 {examples => scripts}/nettop.py                    |    2 +-
 {examples => scripts}/pidof.py                     |    0
 {examples => scripts}/pmap.py                      |    2 +-
 examples/process_detail.py => scripts/procinfo.py  |   12 +-
 scripts/procsmem.py                                |  101 +
 {examples => scripts}/ps.py                        |    2 +-
 {examples => scripts}/pstree.py                    |    2 +-
 {examples => scripts}/top.py                       |    6 +-
 {examples => scripts}/who.py                       |    2 +-
 setup.py                                           |   30 +-
 test/README.rst                                    |   21 -
 tox.ini                                            |    4 +-
 88 files changed, 6744 insertions(+), 3296 deletions(-)
 create mode 100644 DEVGUIDE.rst
 delete mode 100644 DEVNOTES.rst
 create mode 100644 IDEAS
 delete mode 100644 TODO
 create mode 100644 debian/patches/0002-dont-depend-on-install-when-running-tests.patch
 create mode 100644 debian/patches/0003-pass-PYTHONPATH-to-the-test-runner.patch
 create mode 100644 psutil/tests/README.rst
 create mode 100644 psutil/tests/__init__.py
 create mode 100644 psutil/tests/runner.py
 rename test/_bsd.py => psutil/tests/test_bsd.py (71%)
 rename test/_linux.py => psutil/tests/test_linux.py (52%)
 rename {test => psutil/tests}/test_memory_leaks.py (92%)
 create mode 100644 psutil/tests/test_misc.py
 rename test/_osx.py => psutil/tests/test_osx.py (89%)
 rename test/_posix.py => psutil/tests/test_posix.py (75%)
 rename test/test_psutil.py => psutil/tests/test_process.py (53%)
 rename test/_sunos.py => psutil/tests/test_sunos.py (69%)
 create mode 100644 psutil/tests/test_system.py
 rename test/_windows.py => psutil/tests/test_windows.py (80%)
 rename {examples => scripts}/disk_usage.py (98%)
 rename {examples => scripts}/free.py (97%)
 rename {examples => scripts}/ifconfig.py (98%)
 rename {examples => scripts}/iotop.py (99%)
 rename {examples => scripts}/killall.py (100%)
 rename {examples => scripts}/meminfo.py (98%)
 rename {examples => scripts}/netstat.py (98%)
 rename {examples => scripts}/nettop.py (99%)
 rename {examples => scripts}/pidof.py (100%)
 rename {examples => scripts}/pmap.py (98%)
 rename examples/process_detail.py => scripts/procinfo.py (95%)
 create mode 100755 scripts/procsmem.py
 rename {examples => scripts}/ps.py (99%)
 rename {examples => scripts}/pstree.py (98%)
 rename {examples => scripts}/top.py (98%)
 rename {examples => scripts}/who.py (97%)
 delete mode 100644 test/README.rst

-- 
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