svn commit: r515979 - head/emulators/qemu-sbruno

Kyle Evans kevans at FreeBSD.org
Tue Oct 29 13:56:22 UTC 2019


Author: kevans (src committer)
Date: Tue Oct 29 13:56:21 2019
New Revision: 515979
URL: https://svnweb.freebsd.org/changeset/ports/515979

Log:
  qemu-user-static: fix the RFSPAWN fix + kevent(2) emulation
  
  The RFSPAWN fix included a bogus dependency on qemu-user-static being built
  against headers that included the RFSPAWN flag. This is incorrect in
  emulation-land, where we must assume the target may not match the host.
  
  kevent(2) emulation was also not preserving event udata coming from the
  kernel; the fix for this is als included.
  
  Approved by:	antoine (ports), sbruno (maintainer, implicit)
  MFH:		2019Q4

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

Modified: head/emulators/qemu-sbruno/Makefile
==============================================================================
--- head/emulators/qemu-sbruno/Makefile	Tue Oct 29 13:44:57 2019	(r515978)
+++ head/emulators/qemu-sbruno/Makefile	Tue Oct 29 13:56:21 2019	(r515979)
@@ -2,7 +2,7 @@
 # $FreeBSD$
 
 PORTNAME=	qemu
-PORTVERSION=	2.11.50.g20191026
+PORTVERSION=	2.11.50.g20191029
 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:5b85e90 \
+GH_TUPLE=	seanbruno:qemu-bsd-user:25ce28e \
 		qemu:keycodemapdb:10739aa:keycodemapdb/ui/keycodemapdb
 HAS_CONFIGURE=	yes
 USES=		bison compiler:c11 gmake perl5 pkgconfig python:2.7,build

Modified: head/emulators/qemu-sbruno/distinfo
==============================================================================
--- head/emulators/qemu-sbruno/distinfo	Tue Oct 29 13:44:57 2019	(r515978)
+++ head/emulators/qemu-sbruno/distinfo	Tue Oct 29 13:56:21 2019	(r515979)
@@ -1,5 +1,5 @@
-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
+TIMESTAMP = 1572356765
+SHA256 (qemu/2.11.50.g20191029/seanbruno-qemu-bsd-user-2.11.50.g20191029-25ce28e_GH0.tar.gz) = d48c752f537fd695c4bd7f36846b8d46fb5d1866861844f21c45b8d064b980fa
+SIZE (qemu/2.11.50.g20191029/seanbruno-qemu-bsd-user-2.11.50.g20191029-25ce28e_GH0.tar.gz) = 15509886
+SHA256 (qemu/2.11.50.g20191029/qemu-keycodemapdb-10739aa_GH0.tar.gz) = ae43fb1e2b07b78be88a7882306b6e71383eb77472a35d7d78fed21e345d134a
+SIZE (qemu/2.11.50.g20191029/qemu-keycodemapdb-10739aa_GH0.tar.gz) = 47895


More information about the svn-ports-head mailing list