[Python-modules-commits] [python-psutil] branch upstream updated (fa474c3 -> 1e88314)

Ondřej Nový onovy at moszumanska.debian.org
Sun Dec 11 17:28:08 UTC 2016


This is an automated email from the git hooks/post-receive script.

onovy pushed a change to branch upstream
in repository python-psutil.

     omits  fa474c3   Imported Upstream version 4.3.0
      adds  59d1042   Import python-psutil_4.3.1.orig.tar.gz
      adds  1e88314   Import python-psutil_5.0.0.orig.tar.gz

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (fa474c3)
            \
             N -- N -- N   refs/heads/upstream (1e88314)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omits" are not gone; other references still
refer to them.  Any revisions marked "discards" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .ci/travis/install.sh                              |    4 +-
 .ci/travis/run.sh                                  |   16 +-
 .git-pre-commit                                    |   79 +-
 CREDITS                                            |   26 +
 DEVGUIDE.rst                                       |   24 +-
 HISTORY.rst                                        | 2216 +++++++++++++++-----
 IDEAS                                              |   16 +-
 INSTALL.rst                                        |  102 +-
 MANIFEST.in                                        |    1 +
 Makefile                                           |  254 ++-
 PKG-INFO                                           |   91 +-
 README.rst                                         |   85 +-
 appveyor.yml                                       |   23 +
 docs/Makefile                                      |    8 +-
 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                                     |  317 ++-
 docs/make.bat                                      |  274 +--
 make.bat                                           |  216 +-
 psutil.egg-info/PKG-INFO                           |   91 +-
 psutil.egg-info/SOURCES.txt                        |   19 +-
 psutil/__init__.py                                 |  202 +-
 psutil/_common.py                                  |   72 +-
 psutil/_psbsd.py                                   |  127 +-
 psutil/_pslinux.py                                 |  289 ++-
 psutil/_psosx.py                                   |  108 +-
 psutil/_pssunos.py                                 |   93 +-
 psutil/_psutil_bsd.c                               |  420 ++--
 psutil/_psutil_bsd.h                               |   36 -
 psutil/_psutil_common.c                            |   89 +
 psutil/_psutil_common.h                            |    5 +
 psutil/_psutil_linux.c                             |   42 +-
 psutil/_psutil_linux.h                             |   21 -
 psutil/_psutil_osx.c                               |  532 ++---
 psutil/_psutil_osx.h                               |   43 -
 psutil/_psutil_posix.c                             |  116 +-
 psutil/_psutil_posix.h                             |   10 -
 psutil/_psutil_sunos.c                             |    7 +-
 psutil/_psutil_sunos.h                             |   28 -
 psutil/_psutil_windows.c                           |  384 ++--
 psutil/_psutil_windows.h                           |   70 -
 psutil/_pswindows.py                               |   89 +-
 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                 |   22 +-
 psutil/arch/windows/process_info.h                 |    7 +
 psutil/arch/windows/services.c                     |   73 +-
 psutil/tests/__init__.py                           |  420 ++--
 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                       |  661 +++---
 psutil/tests/test_sunos.py                         |    2 +-
 psutil/tests/test_system.py                        |   99 +-
 psutil/tests/test_testutils.py                     |   51 -
 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 |   20 +-
 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 +-
 93 files changed, 7373 insertions(+), 4885 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
 delete mode 100644 psutil/_psutil_bsd.h
 delete mode 100644 psutil/_psutil_linux.h
 delete mode 100644 psutil/_psutil_osx.h
 delete mode 100644 psutil/_psutil_sunos.h
 delete mode 100644 psutil/_psutil_windows.h
 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
 delete mode 100644 psutil/tests/test_testutils.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 (88%)
 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