From owner-svn-ports-all@FreeBSD.ORG Thu Jun 4 17:08:27 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 71821B86; Thu, 4 Jun 2015 17:08:27 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 450561A89; Thu, 4 Jun 2015 17:08:27 +0000 (UTC) (envelope-from tijl@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t54H8RGo086476; Thu, 4 Jun 2015 17:08:27 GMT (envelope-from tijl@FreeBSD.org) Received: (from tijl@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t54H8Qbg086458; Thu, 4 Jun 2015 17:08:26 GMT (envelope-from tijl@FreeBSD.org) Message-Id: <201506041708.t54H8Qbg086458@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: tijl set sender to tijl@FreeBSD.org using -f From: Tijl Coosemans Date: Thu, 4 Jun 2015 17:08:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r388538 - in head/devel/gdb: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 04 Jun 2015 17:08:27 -0000 Author: tijl Date: Thu Jun 4 17:08:25 2015 New Revision: 388538 URL: https://svnweb.freebsd.org/changeset/ports/388538 Log: - Update to 7.9.1 - Fix crash on some core files - Fix plist PR: 200001, 200011, 200638 Submitted by: luca.pizzamiglio@gmail.com (maintainer) Modified: head/devel/gdb/Makefile head/devel/gdb/distinfo head/devel/gdb/files/fbsd-threads.c head/devel/gdb/pkg-plist Modified: head/devel/gdb/Makefile ============================================================================== --- head/devel/gdb/Makefile Thu Jun 4 16:49:18 2015 (r388537) +++ head/devel/gdb/Makefile Thu Jun 4 17:08:25 2015 (r388538) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= gdb -PORTVERSION= 7.9 +PORTVERSION= 7.9.1 CATEGORIES= devel MASTER_SITES= GNU Modified: head/devel/gdb/distinfo ============================================================================== --- head/devel/gdb/distinfo Thu Jun 4 16:49:18 2015 (r388537) +++ head/devel/gdb/distinfo Thu Jun 4 17:08:25 2015 (r388538) @@ -1,2 +1,2 @@ -SHA256 (gdb-7.9.tar.xz) = 9b315651a16528f7af8c7d8284699fb0c965df316cc7339bb0b7bae335848392 -SIZE (gdb-7.9.tar.xz) = 17859428 +SHA256 (gdb-7.9.1.tar.xz) = cd9c543a411a05b2b647dd38936034b68c2b5d6f10e0d51dc168c166c973ba40 +SIZE (gdb-7.9.1.tar.xz) = 17867692 Modified: head/devel/gdb/files/fbsd-threads.c ============================================================================== --- head/devel/gdb/files/fbsd-threads.c Thu Jun 4 16:49:18 2015 (r388537) +++ head/devel/gdb/files/fbsd-threads.c Thu Jun 4 17:08:25 2015 (r388538) @@ -441,6 +441,8 @@ fbsd_thread_activate (void) fbsd_thread_active = 1; if (target_has_execution) enable_thread_event_reporting (); + else + init_thread_list (); fbsd_thread_update_thread_list (NULL); get_current_thread (); } Modified: head/devel/gdb/pkg-plist ============================================================================== --- head/devel/gdb/pkg-plist Thu Jun 4 16:49:18 2015 (r388537) +++ head/devel/gdb/pkg-plist Thu Jun 4 17:08:25 2015 (r388538) @@ -18,6 +18,7 @@ man/man1/gdb%%VER%%.1.gz %%PYTHON%%%%DATADIR%%%%VER%%/python/gdb/command/type_printers.py %%PYTHON%%%%DATADIR%%%%VER%%/python/gdb/command/xmethods.py %%PYTHON%%%%DATADIR%%%%VER%%/python/gdb/function/__init__.py +%%PYTHON%%%%DATADIR%%%%VER%%/python/gdb/function/caller_is.py %%PYTHON%%%%DATADIR%%%%VER%%/python/gdb/function/strfns.py %%PYTHON%%%%DATADIR%%%%VER%%/python/gdb/printer/__init__.py %%PYTHON%%%%DATADIR%%%%VER%%/python/gdb/printer/bound_registers.py