From owner-svn-ports-head@freebsd.org Mon Nov 28 12:26:12 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4B169C4EFD4; Mon, 28 Nov 2016 12:26:12 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::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 25BCC12D4; Mon, 28 Nov 2016 12:26:12 +0000 (UTC) (envelope-from riggs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uASCQB7v058396; Mon, 28 Nov 2016 12:26:11 GMT (envelope-from riggs@FreeBSD.org) Received: (from riggs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uASCQBbi058393; Mon, 28 Nov 2016 12:26:11 GMT (envelope-from riggs@FreeBSD.org) Message-Id: <201611281226.uASCQBbi058393@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: riggs set sender to riggs@FreeBSD.org using -f From: Thomas Zander Date: Mon, 28 Nov 2016 12:26:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r427299 - in head/sysutils/cpuid: . 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-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Nov 2016 12:26:12 -0000 Author: riggs Date: Mon Nov 28 12:26:10 2016 New Revision: 427299 URL: https://svnweb.freebsd.org/changeset/ports/427299 Log: Update to upstream release as of 20161114 PR: 214865 Submitted by: pkubaj@anongoth.pl (maintainer) Modified: head/sysutils/cpuid/Makefile head/sysutils/cpuid/distinfo head/sysutils/cpuid/files/patch-cpuid.c Modified: head/sysutils/cpuid/Makefile ============================================================================== --- head/sysutils/cpuid/Makefile Mon Nov 28 12:10:45 2016 (r427298) +++ head/sysutils/cpuid/Makefile Mon Nov 28 12:26:10 2016 (r427299) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= cpuid -PORTVERSION= 20160814 +PORTVERSION= 20161114 CATEGORIES= sysutils MASTER_SITES= http://www.etallen.com/cpuid/ PKGNAMESUFFIX= ${CPUID_SUFFIX} Modified: head/sysutils/cpuid/distinfo ============================================================================== --- head/sysutils/cpuid/distinfo Mon Nov 28 12:10:45 2016 (r427298) +++ head/sysutils/cpuid/distinfo Mon Nov 28 12:26:10 2016 (r427299) @@ -1,3 +1,3 @@ -TIMESTAMP = 1476108297 -SHA256 (cpuid-20160814.src.tar.gz) = fd4e2b2d88f417ae32f47a92d29351de395a36578fde8aedc228e2e131f38ecd -SIZE (cpuid-20160814.src.tar.gz) = 77160 +TIMESTAMP = 1480199308 +SHA256 (cpuid-20161114.src.tar.gz) = 19564f068d0bc1a30d033476da89a9f348fd94b6dbfeae22dab7974514ffc3aa +SIZE (cpuid-20161114.src.tar.gz) = 78758 Modified: head/sysutils/cpuid/files/patch-cpuid.c ============================================================================== --- head/sysutils/cpuid/files/patch-cpuid.c Mon Nov 28 12:10:45 2016 (r427298) +++ head/sysutils/cpuid/files/patch-cpuid.c Mon Nov 28 12:26:10 2016 (r427299) @@ -1,4 +1,4 @@ ---- cpuid.c.orig 2016-08-15 03:54:53 UTC +--- cpuid.c.orig 2016-11-14 01:57:53 UTC +++ cpuid.c @@ -23,6 +23,8 @@ #define USE_KERNEL_SCHED_SETAFFINITY @@ -18,7 +18,7 @@ #ifdef USE_CPUID_MODULE #include -@@ -6420,11 +6424,16 @@ real_setup(unsigned int cpu, +@@ -6471,11 +6475,16 @@ real_setup(unsigned int cpu, int status; status = syscall(__NR_sched_setaffinity, 0, sizeof(mask), &mask); #else @@ -37,7 +37,7 @@ #endif if (status == -1) { if (cpu > 0) { -@@ -6539,11 +6548,14 @@ static int real_get (int cpuid +@@ -6590,11 +6599,14 @@ static int real_get (int cpuid : "a" (reg), "c" (ecx)); } else { @@ -55,17 +55,16 @@ if (result == -1) { if (quiet) { return FALSE; -@@ -7050,7 +7062,8 @@ main(int argc, +@@ -7134,7 +7146,7 @@ main(int argc, }; - boolean opt_one_cpu = FALSE; -- boolean opt_inst = FALSE; -+ //boolean opt_inst = FALSE; -+ boolean opt_inst = TRUE; - boolean opt_kernel = FALSE; - boolean opt_raw = FALSE; - boolean opt_debug = FALSE; -@@ -7134,7 +7147,8 @@ main(int argc, + boolean opt_one_cpu = FALSE; +- boolean opt_inst = FALSE; ++ boolean opt_inst = TRUE; + boolean opt_kernel = FALSE; + boolean opt_raw = FALSE; + boolean opt_debug = FALSE; +@@ -7264,7 +7276,8 @@ main(int argc, } // Default to -i. So use inst unless -k is specified.