From owner-svn-ports-head@FreeBSD.ORG Sat Jan 24 11:32:59 2015 Return-Path: Delivered-To: svn-ports-head@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 84741715; Sat, 24 Jan 2015 11:32:59 +0000 (UTC) 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 7092B636; Sat, 24 Jan 2015 11:32:59 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t0OBWxJh018874; Sat, 24 Jan 2015 11:32:59 GMT (envelope-from nox@FreeBSD.org) Received: (from nox@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t0OBWwei018871; Sat, 24 Jan 2015 11:32:58 GMT (envelope-from nox@FreeBSD.org) Message-Id: <201501241132.t0OBWwei018871@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: nox set sender to nox@FreeBSD.org using -f From: Juergen Lock Date: Sat, 24 Jan 2015 11:32:58 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r377788 - head/emulators/qemu-sbruno 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.18-1 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: Sat, 24 Jan 2015 11:32:59 -0000 Author: nox Date: Sat Jan 24 11:32:58 2015 New Revision: 377788 URL: https://svnweb.freebsd.org/changeset/ports/377788 QAT: https://qat.redports.org/buildarchive/r377788/ Log: Catch up with github tree - changelog: https://github.com/seanbruno/qemu-bsd-user/commits/bsd-user Modified: head/emulators/qemu-sbruno/Makefile head/emulators/qemu-sbruno/distinfo head/emulators/qemu-sbruno/pkg-plist Modified: head/emulators/qemu-sbruno/Makefile ============================================================================== --- head/emulators/qemu-sbruno/Makefile Sat Jan 24 10:25:21 2015 (r377787) +++ head/emulators/qemu-sbruno/Makefile Sat Jan 24 11:32:58 2015 (r377788) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= qemu -PORTVERSION= 2.2.50.g20150106 +PORTVERSION= 2.2.50.g20150123 CATEGORIES= emulators MASTER_SITES= GH GHC \ LOCAL/nox \ @@ -20,7 +20,7 @@ COMMENT?= QEMU CPU Emulator - github bsd USE_GITHUB= yes GH_ACCOUNT= seanbruno GH_PROJECT= ${PORTNAME}-bsd-user -GH_COMMIT= d1fbcfc +GH_COMMIT= 0dbb545 GH_TAGNAME= ${GH_COMMIT} HAS_CONFIGURE= yes USES= gmake pkgconfig bison perl5 python:2,build @@ -62,7 +62,7 @@ PORTDOCS= docs qemu-doc.html qemu-tech.h .if ${ARCH} != "amd64" CONFIGURE_ARGS+= --target-list=i386-bsd-user,sparc-bsd-user,arm-bsd-user,mips-bsd-user,mipsel-bsd-user,ppc-bsd-user .else -CONFIGURE_ARGS+= --target-list=i386-bsd-user,x86_64-bsd-user,sparc-bsd-user,sparc64-bsd-user,arm-bsd-user,mips-bsd-user,mipsel-bsd-user,mips64-bsd-user,mips64el-bsd-user,ppc-bsd-user,ppc64-bsd-user +CONFIGURE_ARGS+= --target-list=i386-bsd-user,x86_64-bsd-user,sparc-bsd-user,sparc64-bsd-user,arm-bsd-user,mips-bsd-user,mipsel-bsd-user,mips64-bsd-user,mips64el-bsd-user,ppc-bsd-user,ppc64-bsd-user,aarch64-bsd-user .endif .else .if ${PORT_OPTIONS:MX86_TARGETS} @@ -70,7 +70,7 @@ CONFIGURE_ARGS+= --target-list=i386-bsd- .if ${ARCH} != "amd64" CONFIGURE_ARGS+= --target-list=i386-softmmu,x86_64-softmmu,i386-bsd-user,sparc-bsd-user,arm-bsd-user,mips-bsd-user,mipsel-bsd-user,ppc-bsd-user .else -CONFIGURE_ARGS+= --target-list=i386-softmmu,x86_64-softmmu,i386-bsd-user,x86_64-bsd-user,sparc-bsd-user,sparc64-bsd-user,arm-bsd-user,mips-bsd-user,mipsel-bsd-user,mips64-bsd-user,mips64el-bsd-user,ppc-bsd-user,ppc64-bsd-user +CONFIGURE_ARGS+= --target-list=i386-softmmu,x86_64-softmmu,i386-bsd-user,x86_64-bsd-user,sparc-bsd-user,sparc64-bsd-user,arm-bsd-user,mips-bsd-user,mipsel-bsd-user,mips64-bsd-user,mips64el-bsd-user,ppc-bsd-user,ppc64-bsd-user,aarch64-bsd-user .endif .else CONFIGURE_ARGS+= --target-list=i386-softmmu,x86_64-softmmu Modified: head/emulators/qemu-sbruno/distinfo ============================================================================== --- head/emulators/qemu-sbruno/distinfo Sat Jan 24 10:25:21 2015 (r377787) +++ head/emulators/qemu-sbruno/distinfo Sat Jan 24 11:32:58 2015 (r377788) @@ -1,4 +1,4 @@ -SHA256 (qemu/2.2.50.g20150106/qemu-2.2.50.g20150106.tar.gz) = 7278a5b06e5a55efd5965eac9a5f9371c79fc2da556765d6fc6ed4b20226baf4 -SIZE (qemu/2.2.50.g20150106/qemu-2.2.50.g20150106.tar.gz) = 10698540 -SHA256 (qemu/2.2.50.g20150106/dtc-v1.4.0.tar.gz) = 39d0713efd82a27adc065ecb9ef36401c53d5ee87ae1764e2bb243fcd97488e3 -SIZE (qemu/2.2.50.g20150106/dtc-v1.4.0.tar.gz) = 131893 +SHA256 (qemu/2.2.50.g20150123/qemu-2.2.50.g20150123.tar.gz) = 743695f248df7c0ec82bc7cb50a770b98414bff5418242965f38f70580dae1cb +SIZE (qemu/2.2.50.g20150123/qemu-2.2.50.g20150123.tar.gz) = 10706933 +SHA256 (qemu/2.2.50.g20150123/dtc-v1.4.0.tar.gz) = 39d0713efd82a27adc065ecb9ef36401c53d5ee87ae1764e2bb243fcd97488e3 +SIZE (qemu/2.2.50.g20150123/dtc-v1.4.0.tar.gz) = 131893 Modified: head/emulators/qemu-sbruno/pkg-plist ============================================================================== --- head/emulators/qemu-sbruno/pkg-plist Sat Jan 24 10:25:21 2015 (r377787) +++ head/emulators/qemu-sbruno/pkg-plist Sat Jan 24 11:32:58 2015 (r377788) @@ -27,6 +27,7 @@ %%NONX86%%bin/qemu-system-sparc64 %%NONX86%%bin/qemu-system-tricore %%NONX86%%bin/qemu-system-unicore32 +%%BSD_USER64%%bin/qemu-aarch64%%STATIC%% %%BSD_USER%%bin/qemu-arm%%STATIC%% %%BSD_USER%%bin/qemu-i386%%STATIC%% %%BSD_USER%%bin/qemu-mips%%STATIC%%