[Pkg-gdb-logs] [gdb] branch master updated (89ffd1f -> eecaecb)

Hector Oron zumbi at moszumanska.debian.org
Mon Nov 10 18:38:35 UTC 2014


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

zumbi pushed a change to branch master
in repository gdb.

      from  89ffd1f   Add *even more* stuff to README.python_switch
       new  92a37fc   Imported Upstream version 7.8.1
       new  cc3414f   Imported Upstream version 7.8.1
       new  5dca98d   Merge tag 'upstream/7.8.1'
       new  8c2df7b   d/changelog: add upstream notes
       new  74ad2b2   d/control*: bump standards version
       new  1b74af0   d/rules: fix FTBFS on newer dpkg changes. Bug: #766754
       new  1ac7891   d/changelog: update
       new  1ebd42a   d/control*: add dbg package depends
       new  eecaecb   Release Debian version 7.8.1-1

The 9 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:
 bfd/ChangeLog                                      |   5 +
 bfd/elfcode.h                                      |   2 +-
 bfd/version.h                                      |   2 +-
 debian/changelog                                   |  40 ++
 debian/control                                     |   4 +-
 debian/control.in                                  |   4 +-
 debian/rules                                       |   6 +-
 djunpack.bat                                       |   4 +-
 gdb/ChangeLog                                      | 187 +++++
 gdb/NEWS                                           |  13 +-
 gdb/acinclude.m4                                   |   4 +-
 gdb/annotate.c                                     |  22 +-
 gdb/config.in                                      |   6 -
 gdb/configure                                      |  65 +-
 gdb/configure.ac                                   |  20 +-
 gdb/ctf.c                                          |  49 --
 gdb/data-directory/Makefile.in                     |   5 +-
 gdb/dcache.h                                       |   2 +
 gdb/event-top.c                                    |  61 +-
 gdb/event-top.h                                    |  11 +
 gdb/features/aarch64-core.xml                      |   2 +-
 gdb/features/aarch64.c                             |   2 +-
 gdb/gdbarch.h                                      |   3 +-
 gdb/gdbarch.sh                                     |   3 +-
 gdb/gdbserver/ChangeLog                            |   6 +
 gdb/gdbserver/win32-i386-low.c                     |   1 -
 gdb/guile/guile.c                                  |  67 +-
 gdb/infcmd.c                                       | 160 +++--
 gdb/infrun.c                                       |  22 +-
 gdb/linux-tdep.c                                   |  12 +
 gdb/main.c                                         |   9 +
 gdb/po/gdb.pot                                     | 760 ++++++++++-----------
 gdb/python/lib/gdb/__init__.py                     |   3 +-
 gdb/python/lib/gdb/command/xmethods.py             |   2 +-
 gdb/python/lib/gdb/printer/__init__.py             |  14 +
 .../gdb/{command => printer}/bound_registers.py    |  21 +-
 gdb/python/lib/gdb/printing.py                     |  14 +
 gdb/python/py-framefilter.c                        |  33 +-
 gdb/target.c                                       |  64 ++
 gdb/target.h                                       |  25 +-
 gdb/testsuite/ChangeLog                            |  92 +++
 .../gdb.base/annota-input-while-running.c          |  25 +
 .../gdb.base/annota-input-while-running.exp        | 130 ++++
 gdb/testsuite/gdb.base/attach.exp                  |  86 ++-
 gdb/testsuite/gdb.base/bg-execution-repeat.c       |  33 +
 gdb/testsuite/gdb.base/bg-execution-repeat.exp     |  86 +++
 .../gdb.base/continue-all-already-running.c        |  25 +
 .../gdb.base/continue-all-already-running.exp      |  79 +++
 .../gdb.base/multi-line-starts-subshell.exp        |  55 ++
 gdb/testsuite/gdb.base/solib-overlap.exp           |  11 +-
 gdb/testsuite/gdb.multi/multi-attach.exp           |  13 +-
 .../gdb.python/amd64-py-framefilter-invalidarg.S   | 261 +++++++
 .../gdb.python/py-framefilter-invalidarg-gdb.py.in |  48 ++
 .../gdb.python/py-framefilter-invalidarg.exp       |  67 ++
 .../gdb.python/py-framefilter-invalidarg.py        |  59 ++
 gdb/testsuite/gdb.python/py-prompt.exp             |  10 +-
 gdb/testsuite/gdb.python/py-sync-interp.exp        |  10 +-
 gdb/testsuite/gdb.python/py-xmethods.py            |  20 +-
 gdb/testsuite/gdb.python/python.exp                |  16 +
 gdb/testsuite/gdb.server/ext-attach.exp            |  10 +-
 gdb/testsuite/gdb.threads/gcore-stale-thread.c     |  48 ++
 gdb/testsuite/gdb.threads/gcore-stale-thread.exp   |  57 ++
 gdb/testsuite/gdb.threads/next-bp-other-thread.c   |  45 ++
 gdb/testsuite/gdb.threads/next-bp-other-thread.exp |  54 ++
 gdb/testsuite/gdb.threads/schedlock.c              |  24 +-
 gdb/testsuite/gdb.threads/schedlock.exp            | 250 +++----
 gdb/testsuite/lib/gdb.exp                          |  41 ++
 gdb/top.c                                          |  47 +-
 gdb/top.h                                          |   8 +
 gdb/version.in                                     |   2 +-
 gdb/windows-nat.c                                  |   2 +-
 md5.sum                                            | 142 ++--
 72 files changed, 2661 insertions(+), 930 deletions(-)
 create mode 100644 gdb/python/lib/gdb/printer/__init__.py
 rename gdb/python/lib/gdb/{command => printer}/bound_registers.py (62%)
 create mode 100644 gdb/testsuite/gdb.base/annota-input-while-running.c
 create mode 100644 gdb/testsuite/gdb.base/annota-input-while-running.exp
 create mode 100644 gdb/testsuite/gdb.base/bg-execution-repeat.c
 create mode 100644 gdb/testsuite/gdb.base/bg-execution-repeat.exp
 create mode 100644 gdb/testsuite/gdb.base/continue-all-already-running.c
 create mode 100644 gdb/testsuite/gdb.base/continue-all-already-running.exp
 create mode 100644 gdb/testsuite/gdb.base/multi-line-starts-subshell.exp
 create mode 100644 gdb/testsuite/gdb.python/amd64-py-framefilter-invalidarg.S
 create mode 100644 gdb/testsuite/gdb.python/py-framefilter-invalidarg-gdb.py.in
 create mode 100644 gdb/testsuite/gdb.python/py-framefilter-invalidarg.exp
 create mode 100644 gdb/testsuite/gdb.python/py-framefilter-invalidarg.py
 create mode 100644 gdb/testsuite/gdb.threads/gcore-stale-thread.c
 create mode 100644 gdb/testsuite/gdb.threads/gcore-stale-thread.exp
 create mode 100644 gdb/testsuite/gdb.threads/next-bp-other-thread.c
 create mode 100644 gdb/testsuite/gdb.threads/next-bp-other-thread.exp

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-gdb/gdb.git



More information about the Pkg-gdb-logs mailing list