Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 27 Oct 2019 00:08:04 +0000 (UTC)
From:      Kyle Evans <kevans@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r515732 - head/emulators/qemu-sbruno
Message-ID:  <201910270008.x9R0843b089555@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kevans (src committer)
Date: Sun Oct 27 00:08:04 2019
New Revision: 515732
URL: https://svnweb.freebsd.org/changeset/ports/515732

Log:
  qemu-user-static: pull in fixes for the 2.x branch
  
  Short list:
  - __sysctlbyname(2) implemented
  - posix_spawn breakage due to RFSPAWN averted
  - some _umtx_op misbehavior fixed*
  
  Some _umtx_op operations were processing a timeout, but failed to pass in
  the size of the timespec/_umtx_time to the kernel, passing in '0' instead.
  This would cause unbounded sleep until interrupted, rather than timeout
  expected by the caller.
  
  PR:		240763
  Approved by:	ler (ports), sbruno (maintainer, implicit)
  MFH:		2019Q4 (runtime fix)

Modified:
  head/emulators/qemu-sbruno/Makefile
  head/emulators/qemu-sbruno/distinfo

Modified: head/emulators/qemu-sbruno/Makefile
==============================================================================
--- head/emulators/qemu-sbruno/Makefile	Sat Oct 26 22:00:04 2019	(r515731)
+++ head/emulators/qemu-sbruno/Makefile	Sun Oct 27 00:08:04 2019	(r515732)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	qemu
-PORTVERSION=	2.11.50.g20190730
+PORTVERSION=	2.11.50.g20191026
 CATEGORIES=	emulators
 PKGNAMESUFFIX?=	-sbruno
 DIST_SUBDIR=	qemu/${PORTVERSION}
@@ -12,7 +12,7 @@ COMMENT?=	QEMU CPU Emulator - github bsd-user branch
 
 LICENSE=	GPLv2
 USE_GITHUB=	yes
-GH_TUPLE=	seanbruno:qemu-bsd-user:7b21781 \
+GH_TUPLE=	seanbruno:qemu-bsd-user:5b85e90 \
 		qemu:keycodemapdb:10739aa:keycodemapdb/ui/keycodemapdb
 HAS_CONFIGURE=	yes
 USES=		bison compiler:c11 gmake perl5 pkgconfig python:2.7,build
@@ -157,6 +157,9 @@ PLIST_SUB+=	GTK2=""
 
 .if ${PORT_OPTIONS:MGNUTLS}
 LIB_DEPENDS+=	libgnutls.so:security/gnutls
+CONFIGURE_ARGS+=	--enable-gnutls
+.else
+CONFIGURE_ARGS+=	--disable-gnutls
 .endif
 
 .if empty(PORT_OPTIONS:MSASL)

Modified: head/emulators/qemu-sbruno/distinfo
==============================================================================
--- head/emulators/qemu-sbruno/distinfo	Sat Oct 26 22:00:04 2019	(r515731)
+++ head/emulators/qemu-sbruno/distinfo	Sun Oct 27 00:08:04 2019	(r515732)
@@ -1,5 +1,5 @@
-TIMESTAMP = 1564499645
-SHA256 (qemu/2.11.50.g20190730/seanbruno-qemu-bsd-user-2.11.50.g20190730-7b21781_GH0.tar.gz) = 69c7a0ff4da59eec9e6f66edec43c6ecb2fd0de515d892a1da9d58531a034868
-SIZE (qemu/2.11.50.g20190730/seanbruno-qemu-bsd-user-2.11.50.g20190730-7b21781_GH0.tar.gz) = 15505312
-SHA256 (qemu/2.11.50.g20190730/qemu-keycodemapdb-10739aa_GH0.tar.gz) = ae43fb1e2b07b78be88a7882306b6e71383eb77472a35d7d78fed21e345d134a
-SIZE (qemu/2.11.50.g20190730/qemu-keycodemapdb-10739aa_GH0.tar.gz) = 47895
+TIMESTAMP = 1572132127
+SHA256 (qemu/2.11.50.g20191026/seanbruno-qemu-bsd-user-2.11.50.g20191026-5b85e90_GH0.tar.gz) = 6b10b6eb012ad577b0be8c964588600605bdb7f14a4269f49f046101cca2967c
+SIZE (qemu/2.11.50.g20191026/seanbruno-qemu-bsd-user-2.11.50.g20191026-5b85e90_GH0.tar.gz) = 15509497
+SHA256 (qemu/2.11.50.g20191026/qemu-keycodemapdb-10739aa_GH0.tar.gz) = ae43fb1e2b07b78be88a7882306b6e71383eb77472a35d7d78fed21e345d134a
+SIZE (qemu/2.11.50.g20191026/qemu-keycodemapdb-10739aa_GH0.tar.gz) = 47895



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910270008.x9R0843b089555>