From owner-svn-ports-all@freebsd.org Mon Nov 25 09:43:09 2019 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 52EF51CE97A; Mon, 25 Nov 2019 09:43:09 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 47M2CK1PPLz4DMr; Mon, 25 Nov 2019 09:43:09 +0000 (UTC) (envelope-from bofh@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id ED497ACAF; Mon, 25 Nov 2019 09:43:08 +0000 (UTC) (envelope-from bofh@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xAP9h8Ia008389; Mon, 25 Nov 2019 09:43:08 GMT (envelope-from bofh@FreeBSD.org) Received: (from bofh@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xAP9h8B5008387; Mon, 25 Nov 2019 09:43:08 GMT (envelope-from bofh@FreeBSD.org) Message-Id: <201911250943.xAP9h8B5008387@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bofh set sender to bofh@FreeBSD.org using -f From: Muhammad Moinur Rahman Date: Mon, 25 Nov 2019 09:43:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r518393 - in head/emulators: . qemu31 X-SVN-Group: ports-head X-SVN-Commit-Author: bofh X-SVN-Commit-Paths: in head/emulators: . qemu31 X-SVN-Commit-Revision: 518393 X-SVN-Commit-Repository: ports 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.29 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: Mon, 25 Nov 2019 09:43:09 -0000 Author: bofh Date: Mon Nov 25 09:43:08 2019 New Revision: 518393 URL: https://svnweb.freebsd.org/changeset/ports/518393 Log: [NEW] emulators/qemu31: QEMU CPU Emulator - 3.1.X version QEMU is a FAST! processor emulator using dynamic translation to achieve good emulation speed. QEMU has two operating modes: * Full system emulation. In this mode, QEMU emulates a full system (for example a PC), including a processor and various peripherials. It can be used to launch different Operating Systems without rebooting the PC or to debug system code. * User mode emulation (Linux host only). In this mode, QEMU can launch Linux processes compiled for one CPU on another CPU. It can be used to launch the Wine Windows API emulator or to ease cross-compilation and cross-debugging. As QEMU requires no host kernel patches to run, it is very safe and easy to use. See also the preconfigured system images on http://oszoo.org/ Many live cd isos also work. WWW: http://wiki.qemu.org/Main_Page This is a repocopy of emulators/qemu as qemu will be updated to latest STABLE 4.1.X branch Added: head/emulators/qemu31/ - copied from r515613, head/emulators/qemu/ Modified: head/emulators/Makefile head/emulators/qemu31/Makefile Modified: head/emulators/Makefile ============================================================================== --- head/emulators/Makefile Mon Nov 25 09:39:59 2019 (r518392) +++ head/emulators/Makefile Mon Nov 25 09:43:08 2019 (r518393) @@ -116,6 +116,7 @@ SUBDIR += qemu-user-static SUBDIR += qemu-utils SUBDIR += qemu30 + SUBDIR += qemu31 SUBDIR += qemu40 SUBDIR += qmc2 SUBDIR += quasi88 Modified: head/emulators/qemu31/Makefile ============================================================================== --- head/emulators/qemu/Makefile Fri Oct 25 14:03:31 2019 (r515613) +++ head/emulators/qemu31/Makefile Mon Nov 25 09:43:08 2019 (r518393) @@ -5,10 +5,11 @@ PORTNAME= qemu PORTVERSION= 3.1.1.1 CATEGORIES= emulators MASTER_SITES= https://download.qemu.org/ +PKGNAMESUFFIX= 31 DIST_SUBDIR= qemu/${PORTVERSION} MAINTAINER?= bofh@FreeBSD.org -COMMENT?= QEMU CPU Emulator +COMMENT?= QEMU CPU Emulator - 3.1.X version LICENSE= GPLv2 @@ -16,18 +17,11 @@ LIB_DEPENDS?= libnettle.so:security/nettle \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 -.if !defined(PKGNAMESUFFIX) || (${PKGNAMESUFFIX} != "-utils" && ${PKGNAMESUFFIX} != "-guest-agent") -ONLY_FOR_ARCHS= amd64 i386 powerpc powerpc64 -USES?+= xorg -USE_XORG= pixman -USE_GNOME+= cairo glib20 libxml2 -.endif - USES?= compiler:c11 cpe gmake gnome pkgconfig bison perl5 \ python:build tar:xz USE_PERL5= build -PORTSCOUT= limit:^3\.0\. +PORTSCOUT= limit:^3\.1\. HAS_CONFIGURE= yes MAKE_ENV+= BSD_MAKE="${MAKE}" V=1