From owner-freebsd-emulation@freebsd.org Sun Jun 11 08:37:45 2017 Return-Path: Delivered-To: freebsd-emulation@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 79A12C31EE9 for ; Sun, 11 Jun 2017 08:37:45 +0000 (UTC) (envelope-from u-klys@aetey.se) Received: from outgoing.fripost.org (giraff.fripost.org [178.16.208.44]) (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 2C16483EEE for ; Sun, 11 Jun 2017 08:37:44 +0000 (UTC) (envelope-from u-klys@aetey.se) Received: from localhost (localhost [127.0.0.1]) by outgoing.fripost.org (Postfix) with ESMTP id 2A0A5C6FF59 for ; Sun, 11 Jun 2017 10:37:43 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=fripost.org; h= content-disposition:content-type:content-type:mime-version :message-id:subject:subject:from:from:date:date; s=20140703; t= 1497170263; x=1498984664; bh=mrV/xfYnVRA4ABKUgUTdH6TCphOHJQ/JWt3 PH/thCRQ=; b=LbZv8br7vopHroFYHs6hVgMNbWhoj0aEHfv5Rec+ORznl2ffN9n m5pBIhnCK2unQl9YeekWLxF8Lh4yOlwQ5ckhqcXlKltO7S/5MribFNS0rWiqB3E3 UyRFtTwpLZ2ebrXyihqP0NvT891U3Ww0xxDU5p7tXWSlqNxSm2G1VLmQ= X-Virus-Scanned: Debian amavisd-new at fripost.org Received: from outgoing.fripost.org ([127.0.0.1]) by localhost (giraff.fripost.org [127.0.0.1]) (amavisd-new, port 10040) with LMTP id OCXSsQpg4evU for ; Sun, 11 Jun 2017 10:37:43 +0200 (CEST) Received: from smtp.fripost.org (unknown [172.16.0.6]) by outgoing.fripost.org (Postfix) with ESMTP id 096EBC6FF56 for ; Sun, 11 Jun 2017 10:37:43 +0200 (CEST) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) by smtp.fripost.org (Postfix) with ESMTPSA id 4C4A22D6B01D for ; Sun, 11 Jun 2017 10:37:34 +0200 (CEST) Received: (qmail 23062 invoked from network); 11 Jun 2017 08:33:37 -0000 Received: from localhost (HELO aetey.se) (eh1ba719@127.0.0.1) by mail with ESMTPA; 11 Jun 2017 08:33:37 -0000 Date: Sun, 11 Jun 2017 10:37:17 +0200 From: u-klys@aetey.se To: freebsd-emulation@freebsd.org Subject: linux_mremap() with MREMAP_MAYMOVE - not implemented? Message-ID: <20170611083717.GM30784@example.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2017 08:37:45 -0000 Hello, I am to run Linux binaries (i386) under FreeBSD 11.0-RELEASE (amd64). The behaviour which surprises me is as follows $ truss ./rea linux_set_thread_area(0xffffcc3c) = 0 (0x0) linux_set_tid_address(0x804fb2c) = 75293 (0x1261d) linux_mmap2(0x0,0x101000,0x3,0x22,0xffffffff,0x0) = 671412224 (0x2804f000) linux_mremap(0x2804f000,0x101000,0x201000,0x1,0x0) ERR#-12 'Cannot allocate memory' linux_ioctl(0x1,0x5413,0xffffcae4) = 0 (0x0) FAILED REALLOCATING from 1 M to 2 M linux_writev(0x1,0xffffcab4,0x2) = 35 (0x23) linux_exit_group(0x0) process exit, rval = 0 $ The test binary is compiled under Linux from $ cat rea.c #include #include #define DELTA (1024*1024) int main( int argc, char **argv ){ unsigned int i = DELTA; char *p, *q; if( !(p = malloc(i)) ) return 1; while( (q=realloc(p, (i+=DELTA))) ) p = q; printf("FAILED REALLOCATING from %u M to %u M\n", i/DELTA-1, i/DELTA); return 0; } $ and statically linked against musl standard C library which relies on mremap() in its malloc implementation. Is support for MREMAP_MAYMOVE missing? Regards, Rune From owner-freebsd-emulation@freebsd.org Sun Jun 11 10:24:00 2017 Return-Path: Delivered-To: freebsd-emulation@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 EAE38C78A7A for ; Sun, 11 Jun 2017 10:24:00 +0000 (UTC) (envelope-from u-klys@aetey.se) Received: from outgoing.fripost.org (giraff.fripost.org [IPv6:2a00:1c20:4089:126c:300f:e2a1:9840:5351]) (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 9FABD2A5 for ; Sun, 11 Jun 2017 10:24:00 +0000 (UTC) (envelope-from u-klys@aetey.se) Received: from localhost (localhost [127.0.0.1]) by outgoing.fripost.org (Postfix) with ESMTP id 55028C7035A for ; Sun, 11 Jun 2017 12:23:56 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=fripost.org; h= in-reply-to:content-disposition:content-type:content-type :mime-version:references:message-id:subject:subject:from:from :date:date; s=20140703; t=1497176636; x=1498991037; bh=N+6NdGqWO nEg4i/DuHbGnvkJ412VnKmmNwdyx+MSnbc=; b=ET7EmEqaVzjO4UtyXNhWCnhPf P/sgvhnUErE7eGa9CCC9o7tYQtsGtvAi5XJNHin1CiAdRpW8sTNh1cnuiyPWti96 4oMIWElq1hGK1CvXSpmD7fx4AVKlbAtDHQDGw1yr6oQVvjBx6aTHHlEycHP/7cws r2Ync5/9UVHUTgUGv0= X-Virus-Scanned: Debian amavisd-new at fripost.org Received: from outgoing.fripost.org ([127.0.0.1]) by localhost (giraff.fripost.org [127.0.0.1]) (amavisd-new, port 10040) with LMTP id Fuc3Y-dnB1Gs for ; Sun, 11 Jun 2017 12:23:56 +0200 (CEST) Received: from smtp.fripost.org (unknown [172.16.0.6]) by outgoing.fripost.org (Postfix) with ESMTP id 37607C70357 for ; Sun, 11 Jun 2017 12:23:56 +0200 (CEST) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) by smtp.fripost.org (Postfix) with ESMTPSA id 058DC2D6B59A for ; Sun, 11 Jun 2017 12:23:53 +0200 (CEST) Received: (qmail 23622 invoked from network); 11 Jun 2017 10:19:54 -0000 Received: from localhost (HELO aetey.se) (eh1ba719@127.0.0.1) by mail with ESMTPA; 11 Jun 2017 10:19:54 -0000 Date: Sun, 11 Jun 2017 12:23:34 +0200 From: u-klys@aetey.se To: freebsd-emulation@freebsd.org Subject: Re: linux_mremap() with MREMAP_MAYMOVE - not implemented? Message-ID: <20170611102334.GO30784@example.net> References: <20170611083717.GM30784@example.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170611083717.GM30784@example.net> X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2017 10:24:01 -0000 On Sun, Jun 11, 2017 at 10:37:17AM +0200, u-klys@aetey.se wrote: > linux_mremap(0x2804f000,0x101000,0x201000,0x1,0x0) ERR#-12 'Cannot allocate memory' A look at the kernel source explained why. Are there any plans to implement linux_mremap() capable of growing the mapping? It is a serious deficiency, not being able to run one of the best standard C libraries available for Linux. Regards, Rune From owner-freebsd-emulation@freebsd.org Sat Jun 10 19:01:33 2017 Return-Path: Delivered-To: freebsd-emulation@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 9C79ABF42C4 for ; Sat, 10 Jun 2017 19:01:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 7AB8B8397B for ; Sat, 10 Jun 2017 19:01:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 7A041BF42C2; Sat, 10 Jun 2017 19:01:33 +0000 (UTC) Delivered-To: emulation@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 798F9BF42C1 for ; Sat, 10 Jun 2017 19:01:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4C8C083979 for ; Sat, 10 Jun 2017 19:01:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id A1F9B335E; Sat, 10 Jun 2017 19:01:32 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 8B9D1335D for ; Sat, 10 Jun 2017 19:01:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 C65E683971 for ; Sat, 10 Jun 2017 19:01:31 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5AJ1Vqt003949 for ; Sat, 10 Jun 2017 19:01:31 GMT (envelope-from bugzilla-noreply@freebsd.org) Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: maintainer-feedback requested: [Bug 219913] emulators/virtualbox-ose-kmod: when MAXCPU option is not default for running kernel 'kldload vboxdrv.ko' will result in kernel panic Date: Sat, 10 Jun 2017 19:01:31 +0000 X-Bugzilla-Type: request X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-Mailman-Approved-At: Sun, 11 Jun 2017 10:54:21 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Jun 2017 19:01:33 -0000 Andriy Voskoboinyk has reassigned Bugzilla Automation 's request for maintainer-feedback to vbox@FreeBSD.or= g: Bug 219913: emulators/virtualbox-ose-kmod: when MAXCPU option is not default for running kernel 'kldload vboxdrv.ko' will result in kernel panic https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219913 --- Description --- Due to ABI difference (vboxdrv passes cpuset_t parameter (bitfield with CPU_SETSIZE -> MAXCPU bits) into smp_rendezvous_cpus()) kernel panics with "ncpus is 0 with non-zero map" message. Manual "opt_global.h" inclusion from current kernel build into src/VBox/Runtime/r0drv/freebsd/mp-r0drv-freebsd.c seems to fix this issue w= hen MAXCPU is overridden; kern.smp.maxcpus may be used instead (in case if other 'global' options are not so problematic). From owner-freebsd-emulation@freebsd.org Sat Jun 10 19:01:34 2017 Return-Path: Delivered-To: freebsd-emulation@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 05E6FBF42C8 for ; Sat, 10 Jun 2017 19:01:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id D792F83981 for ; Sat, 10 Jun 2017 19:01:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id D6BC5BF42C7; Sat, 10 Jun 2017 19:01:33 +0000 (UTC) Delivered-To: emulation@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 D64B3BF42C6 for ; Sat, 10 Jun 2017 19:01:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A16B48397D for ; Sat, 10 Jun 2017 19:01:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id E4DBA3360; Sat, 10 Jun 2017 19:01:32 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id D0A54335F for ; Sat, 10 Jun 2017 19:01:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 1F89883974 for ; Sat, 10 Jun 2017 19:01:32 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5AJ1Vqx003949 for ; Sat, 10 Jun 2017 19:01:31 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: [Bug 219913] emulators/virtualbox-ose-kmod: when MAXCPU option is not default for running kernel 'kldload vboxdrv.ko' will result in kernel panic Date: Sat, 10 Jun 2017 19:01:31 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: avos@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-Mailman-Approved-At: Sun, 11 Jun 2017 10:54:34 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Jun 2017 19:01:34 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219913 Bug ID: 219913 Summary: emulators/virtualbox-ose-kmod: when MAXCPU option is not default for running kernel 'kldload vboxdrv.ko' will result in kernel panic Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: vbox@FreeBSD.org Reporter: avos@freebsd.org Assignee: vbox@FreeBSD.org Flags: maintainer-feedback?(vbox@FreeBSD.org) Due to ABI difference (vboxdrv passes cpuset_t parameter (bitfield with CPU_SETSIZE -> MAXCPU bits) into smp_rendezvous_cpus()) kernel panics with "ncpus is 0 with non-zero map" message. Manual "opt_global.h" inclusion from current kernel build into src/VBox/Runtime/r0drv/freebsd/mp-r0drv-freebsd.c seems to fix this issue w= hen MAXCPU is overridden; kern.smp.maxcpus may be used instead (in case if other 'global' options are not so problematic). --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Sat Jun 10 19:02:22 2017 Return-Path: Delivered-To: freebsd-emulation@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 6EFD9BF4346 for ; Sat, 10 Jun 2017 19:02:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 4C03483A42 for ; Sat, 10 Jun 2017 19:02:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 4B433BF4345; Sat, 10 Jun 2017 19:02:22 +0000 (UTC) Delivered-To: emulation@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 4AC1DBF4344 for ; Sat, 10 Jun 2017 19:02:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1D48983A41 for ; Sat, 10 Jun 2017 19:02:22 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id 613E03384; Sat, 10 Jun 2017 19:02:21 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 48BEF3383 for ; Sat, 10 Jun 2017 19:02:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 6943183A39 for ; Sat, 10 Jun 2017 19:02:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5AJ2KBV007377 for ; Sat, 10 Jun 2017 19:02:20 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: [Bug 219913] emulators/virtualbox-ose-kmod: if MAXCPU option is not default for running kernel 'kldload vboxdrv.ko' will result in kernel panic Date: Sat, 10 Jun 2017 19:02:20 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: avos@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: short_desc cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-Mailman-Approved-At: Sun, 11 Jun 2017 10:54:44 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 10 Jun 2017 19:02:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219913 Andriy Voskoboinyk changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|emulators/virtualbox-ose-km |emulators/virtualbox-ose-km |od: when MAXCPU option is |od: if MAXCPU option is not |not default for running |default for running kernel |kernel 'kldload vboxdrv.ko' |'kldload vboxdrv.ko' will |will result in kernel panic |result in kernel panic CC| |avos@freebsd.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Sun Jun 11 01:28:07 2017 Return-Path: Delivered-To: freebsd-emulation@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 C2D29BFA923 for ; Sun, 11 Jun 2017 01:28:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 9E8C06AA7D for ; Sun, 11 Jun 2017 01:28:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 9DC96BFA922; Sun, 11 Jun 2017 01:28:07 +0000 (UTC) Delivered-To: emulation@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 9D725BFA921 for ; Sun, 11 Jun 2017 01:28:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6D3BD6AA7C for ; Sun, 11 Jun 2017 01:28:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id B354D7193; Sun, 11 Jun 2017 01:28:06 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 9B7367192 for ; Sun, 11 Jun 2017 01:28:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 BA1EF6AA7B for ; Sun, 11 Jun 2017 01:28:05 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5B1S5Kh057298 for ; Sun, 11 Jun 2017 01:28:05 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: [Bug 218698] emulators/virtualbox-ose since ~2017-03 guest machines no longer start, RTR3InitEx failed with rc=-8 (rc=-8) where: supR3HardenedMainInitRuntime what: 4 VERR_NO_MEMORY (-8) - Memory allocation failed. Date: Sun, 11 Jun 2017 01:28:05 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: grahamperrin@gmail.com X-Bugzilla-Status: Closed X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-Mailman-Approved-At: Sun, 11 Jun 2017 11:30:04 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2017 01:28:07 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D218698 Graham Perrin changed: What |Removed |Added ---------------------------------------------------------------------------- Status|New |Closed Resolution|--- |FIXED --- Comment #5 from Graham Perrin --- Fixed, I guess; no recent problems with VirtualBox. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Sun Jun 11 11:23:11 2017 Return-Path: Delivered-To: freebsd-emulation@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 A2C14C79B75 for ; Sun, 11 Jun 2017 11:23:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 8144D20B7 for ; Sun, 11 Jun 2017 11:23:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 807E1C79B74; Sun, 11 Jun 2017 11:23:11 +0000 (UTC) Delivered-To: emulation@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 80213C79B73 for ; Sun, 11 Jun 2017 11:23:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3F46020B5 for ; Sun, 11 Jun 2017 11:23:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id 80ECD17274; Sun, 11 Jun 2017 11:23:10 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 5725D17272 for ; Sun, 11 Jun 2017 11:23:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 79B6120B1 for ; Sun, 11 Jun 2017 11:23:09 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5BBN90R006892 for ; Sun, 11 Jun 2017 11:23:09 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: [Bug 219276] Trying to start a vm from VirtualBox results in a panic Date: Sun, 11 Jun 2017 11:23:09 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: reezer@reezer.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-Mailman-Approved-At: Sun, 11 Jun 2017 11:41:37 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2017 11:23:11 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219276 Christian Sturm changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |reezer@reezer.org --- Comment #1 from Christian Sturm --- I am experiencing the same problem when starting up vagrant on stable. Kern= el is on on r319800. #0 doadump (textdump=3D) at pcpu.h:222 in pcpu.h (kgdb) #0 doadump (textdump=3D) at pcpu.h:222 #1 0xffffffff80a4a721 in kern_reboot (howto=3D260) at /usr/local/poudriere/jails/11amd64-stable/usr/src/sys/kern/kern_shutdown.c:= 366 #2 0xffffffff80a4abe0 in vpanic (fmt=3D,=20 ap=3D) at /usr/local/poudriere/jails/11amd64-stable/usr/src/sys/kern/kern_shutdown.c:= 759 #3 0xffffffff80a4aa13 in panic (fmt=3D) at /usr/local/poudriere/jails/11amd64-stable/usr/src/sys/kern/kern_shutdown.c:= 690 #4 0xffffffff80edc552 in trap_fatal (frame=3D0xfffffe045d2184b0, eva=3D288) at /usr/local/poudriere/jails/11amd64-stable/usr/src/sys/amd64/amd64/trap.c:801 #5 0xffffffff80edc5a9 in trap_pfault (frame=3D0xfffffe045d2184b0, usermode= =3D0) at pcpu.h:222 #6 0xffffffff80edbde6 in trap (frame=3D0xfffffe045d2184b0) at /usr/local/poudriere/jails/11amd64-stable/usr/src/sys/amd64/amd64/trap.c:421 #7 0xffffffff80ec1fe1 in calltrap () at /usr/local/poudriere/jails/11amd64-stable/usr/src/sys/amd64/amd64/exception= .S:236 #8 0xffffffff8235f7dc in rtR0MemObjNativeMapUser () from /boot/modules/vboxdrv.ko #9 0xffffffff8235e50c in RTR0MemObjMapUserTag () from /boot/modules/vboxdrv.ko #10 0xffffffff8233e63d in SUPR0GipMap () from /boot/modules/vboxdrv.ko #11 0xffffffff82339a6e in supdrvIOCtlInnerUnrestricted () from /boot/modules/vboxdrv.ko #12 0xffffffff82347d63 in VBoxDrvFreeBSDIOCtl () from /boot/modules/vboxdrv= .ko #13 0xffffffff809166f8 in devfs_ioctl_f (fp=3D0xfffff8019df06000, com=3D0,= =20 data=3D0x1, cred=3D0x0, td=3D0xfffff8019dd3c560) at /usr/local/poudriere/jails/11amd64-stable/usr/src/sys/fs/devfs/devfs_vnops.= c:791 #14 0xffffffff80aa8bb5 in kern_ioctl (td=3D, fd=3D7,=20 com=3D, data=3D) at file.h:323 #15 0xffffffff80aa88ef in sys_ioctl (td=3D,=20 uap=3D0xfffffe045d218a30) at /usr/local/poudriere/jails/11amd64-stable/usr/src/sys/kern/sys_generic.c:745 #16 0xffffffff80edd0b4 in amd64_syscall (td=3D0xfffff8019dd3c560, traced=3D= 0) at subr_syscall.c:135 #17 0xffffffff80ec22cb in Xfast_syscall () at /usr/local/poudriere/jails/11amd64-stable/usr/src/sys/amd64/amd64/exception= .S:396 #18 0x00000008012c5bfa in ?? () --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Sun Jun 11 12:09:34 2017 Return-Path: Delivered-To: freebsd-emulation@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 F0401D84E5C for ; Sun, 11 Jun 2017 12:09:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id CDDD7375D for ; Sun, 11 Jun 2017 12:09:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id CD06CD84E5B; Sun, 11 Jun 2017 12:09:34 +0000 (UTC) Delivered-To: emulation@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 CC91CD84E5A for ; Sun, 11 Jun 2017 12:09:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9DB43375C for ; Sun, 11 Jun 2017 12:09:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id E5F1317AC9; Sun, 11 Jun 2017 12:09:33 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id D169017AC7 for ; Sun, 11 Jun 2017 12:09:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 0B604375A for ; Sun, 11 Jun 2017 12:09:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5BC9WFb004848 for ; Sun, 11 Jun 2017 12:09:32 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: [Bug 219276] Trying to start a vm from VirtualBox results in a panic Date: Sun, 11 Jun 2017 12:09:33 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: kern X-Bugzilla-Version: 11.0-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: reezer@reezer.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-Mailman-Approved-At: Sun, 11 Jun 2017 13:02:16 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2017 12:09:35 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219276 --- Comment #2 from Christian Sturm --- To give a bit more information: * Rebuilding the kernel module/port does not help * This is independent of having the VIMAGE option enabled Below there is a more complete output. The custom kernel just has VIMAGE enabled enabled, but is otherwise really close to GENERIC. This was created with the DEBUG option on emulators/virtualbox-ose-kmod tur= ned on. Dump header from device: /dev/da0s1b Architecture: amd64 Architecture Version: 2 Dump Length: 1031561216 Blocksize: 512 Dumptime: Sun Jun 11 13:43:20 2017 Hostname: cabal.local Magic: FreeBSD Kernel Dump Version String: FreeBSD 11.1-BETA1 #32 r319800: Sat Jun 10 22:31:31 CEST = 2017 =20=20=20 reezer@cabal.local:/usr/obj/usr/local/poudriere/jails/11amd64-stable/usr/sr= c/sys/CABALKERNEL Panic String: page fault Dump Parity: 2316114280 Bounds: 7 Dump Status: good Backtrace: Reading symbols from /boot/kernel/coretemp.ko...Reading symbols from /usr/lib/debug//boot/kernel/coretemp.ko.debug...done. done. Loaded symbols for /boot/kernel/coretemp.ko Reading symbols from /boot/kernel/cuse.ko...Reading symbols from /usr/lib/debug//boot/kernel/cuse.ko.debug...done. done. Loaded symbols for /boot/kernel/cuse.ko Reading symbols from /boot/kernel/aesni.ko...Reading symbols from /usr/lib/debug//boot/kernel/aesni.ko.debug...done. done. Loaded symbols for /boot/kernel/aesni.ko Reading symbols from /boot/kernel/tmpfs.ko...Reading symbols from /usr/lib/debug//boot/kernel/tmpfs.ko.debug...done. done. Loaded symbols for /boot/kernel/tmpfs.ko Reading symbols from /boot/kernel/linprocfs.ko...Reading symbols from /usr/lib/debug//boot/kernel/linprocfs.ko.debug...done. done. Loaded symbols for /boot/kernel/linprocfs.ko Reading symbols from /boot/kernel/linux_common.ko...Reading symbols from /usr/lib/debug//boot/kernel/linux_common.ko.debug...done. done. Loaded symbols for /boot/kernel/linux_common.ko Reading symbols from /boot/kernel/i915kms.ko...Reading symbols from /usr/lib/debug//boot/kernel/i915kms.ko.debug...done. done. Loaded symbols for /boot/kernel/i915kms.ko Reading symbols from /boot/kernel/drm2.ko...Reading symbols from /usr/lib/debug//boot/kernel/drm2.ko.debug...done. done. Loaded symbols for /boot/kernel/drm2.ko Reading symbols from /boot/kernel/iicbus.ko...Reading symbols from /usr/lib/debug//boot/kernel/iicbus.ko.debug...done. done. Loaded symbols for /boot/kernel/iicbus.ko Reading symbols from /boot/kernel/iic.ko...Reading symbols from /usr/lib/debug//boot/kernel/iic.ko.debug...done. done. Loaded symbols for /boot/kernel/iic.ko Reading symbols from /boot/kernel/iicbb.ko...Reading symbols from /usr/lib/debug//boot/kernel/iicbb.ko.debug...done. done. Loaded symbols for /boot/kernel/iicbb.ko Reading symbols from /boot/kernel/acpi_video.ko...Reading symbols from /usr/lib/debug//boot/kernel/acpi_video.ko.debug...done. done. Loaded symbols for /boot/kernel/acpi_video.ko Reading symbols from /boot/modules/vboxdrv.ko.debug...done. Loaded symbols for /boot/modules/vboxdrv.ko.debug Reading symbols from /boot/kernel/linux.ko...Reading symbols from /usr/lib/debug//boot/kernel/linux.ko.debug...done. done. Loaded symbols for /boot/kernel/linux.ko Reading symbols from /boot/kernel/linux64.ko...Reading symbols from /usr/lib/debug//boot/kernel/linux64.ko.debug...done. done. Loaded symbols for /boot/kernel/linux64.ko Reading symbols from /boot/kernel/ums.ko...Reading symbols from /usr/lib/debug//boot/kernel/ums.ko.debug...done. done. Loaded symbols for /boot/kernel/ums.ko Reading symbols from /boot/kernel/ng_ubt.ko...Reading symbols from /usr/lib/debug//boot/kernel/ng_ubt.ko.debug...done. done. Loaded symbols for /boot/kernel/ng_ubt.ko Reading symbols from /boot/kernel/netgraph.ko...Reading symbols from /usr/lib/debug//boot/kernel/netgraph.ko.debug...done. done. Loaded symbols for /boot/kernel/netgraph.ko Reading symbols from /boot/kernel/ng_hci.ko...Reading symbols from /usr/lib/debug//boot/kernel/ng_hci.ko.debug...done. done. Loaded symbols for /boot/kernel/ng_hci.ko Reading symbols from /boot/kernel/ng_bluetooth.ko...Reading symbols from /usr/lib/debug//boot/kernel/ng_bluetooth.ko.debug...done. done. Loaded symbols for /boot/kernel/ng_bluetooth.ko Reading symbols from /boot/kernel/fdescfs.ko...Reading symbols from /usr/lib/debug//boot/kernel/fdescfs.ko.debug...done. done. Loaded symbols for /boot/kernel/fdescfs.ko Reading symbols from /boot/kernel/cpuctl.ko...Reading symbols from /usr/lib/debug//boot/kernel/cpuctl.ko.debug...done. done. Loaded symbols for /boot/kernel/cpuctl.ko #0 doadump (textdump=3D) at pcpu.h:222 in pcpu.h (kgdb) #0 doadump (textdump=3D) at pcpu.h:222 #1 0xffffffff80a4a721 in kern_reboot (howto=3D260) at /usr/local/poudriere/jails/11amd64-stable/usr/src/sys/kern/kern_shutdown.c:= 366 #2 0xffffffff80a4abe0 in vpanic (fmt=3D,=20 ap=3D) at /usr/local/poudriere/jails/11amd64-stable/usr/src/sys/kern/kern_shutdown.c:= 759 #3 0xffffffff80a4aa13 in panic (fmt=3D) at /usr/local/poudriere/jails/11amd64-stable/usr/src/sys/kern/kern_shutdown.c:= 690 #4 0xffffffff80edc552 in trap_fatal (frame=3D0xfffffe045ccaa4b0, eva=3D288) at /usr/local/poudriere/jails/11amd64-stable/usr/src/sys/amd64/amd64/trap.c:801 #5 0xffffffff80edc5a9 in trap_pfault (frame=3D0xfffffe045ccaa4b0, usermode= =3D0) at pcpu.h:222 #6 0xffffffff80edbde6 in trap (frame=3D0xfffffe045ccaa4b0) at /usr/local/poudriere/jails/11amd64-stable/usr/src/sys/amd64/amd64/trap.c:421 #7 0xffffffff80ec1fe1 in calltrap () at /usr/local/poudriere/jails/11amd64-stable/usr/src/sys/amd64/amd64/exception= .S:236 #8 0xffffffff8235f7dc in RTStrFormatV (pfnOutput=3D0x1,=20 pvArgOutput=3D, pfnFormat=3D,= =20 pvArgFormat=3D0x1b00130000000c, pszFormat=3D0xffffffff8235f7dc "L\213= =C2=A0 \001",=20 InArgs=3D) at /wrkdirs/usr/ports/emulators/virtualbox-ose-kmod/work/VirtualBox-5.1.22/out= /freebsd.amd64/debug/bin/src/vboxdrv/common/string/strformat.c:807 #9 0xffffffff8235e50c in RTThreadIsMain (hThread=3D) at /wrkdirs/usr/ports/emulators/virtualbox-ose-kmod/work/VirtualBox-5.1.22/out= /freebsd.amd64/debug/bin/src/vboxdrv/common/misc/thread.c:1008 #10 0xffffffff8233e63d in SUPR0PageProtect (pSession=3D0xffffffffffffffff,= =20 pvR3=3D18446735278049392744, pvR0=3D0xfffffe045ccaa888, offSub=3D216145= 9539,=20 cbSub=3D3326581908, fProt=3D1) at SUPDrv.c:3578 #11 0xffffffff82339a6e in supdrvIOCtlInnerUnrestricted ( uIOCtl=3D18446603336221196287, pDevExt=3D0xffffffff,=20 pSession=3D0xfffffe045ccaa870, pReqHdr=3D0xfffff80019ccf810) at SUPDrv.= c:2235 #12 0xffffffff82347d63 in supdrvTscDeltaVerify () at SUPDrvGip.c:3549 #13 0xffffffff809166f8 in devfs_ioctl_f (fp=3D0xfffff8003271c8c0,=20 com=3D3224393364, data=3D0xfffffe045ccaa870, cred=3D0xfffff801097c9100,= =20 td=3D0xfffff80019095000) at /usr/local/poudriere/jails/11amd64-stable/usr/src/sys/fs/devfs/devfs_vnops.= c:791 #14 0xffffffff80aa8bb5 in kern_ioctl (td=3D, fd=3D7,=20 com=3D, data=3D) at file.h:323 #15 0xffffffff80aa88ef in sys_ioctl (td=3D,=20 uap=3D0xfffffe045ccaaa30) at /usr/local/poudriere/jails/11amd64-stable/usr/src/sys/kern/sys_generic.c:745 #16 0xffffffff80edd0b4 in amd64_syscall (td=3D0xfffff80019095000, traced=3D= 0) at subr_syscall.c:135 #17 0xffffffff80ec22cb in Xfast_syscall () at /usr/local/poudriere/jails/11amd64-stable/usr/src/sys/amd64/amd64/exception= .S:396 #18 0x00000008012c5bfa in ?? () Current language: auto; currently minimal (kgdb) --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Sun Jun 11 14:39:23 2017 Return-Path: Delivered-To: freebsd-emulation@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 AABA2D885DB for ; Sun, 11 Jun 2017 14:39:23 +0000 (UTC) (envelope-from u-klys@aetey.se) Received: from outgoing.fripost.org (giraff.fripost.org [178.16.208.44]) (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 65EF267A90 for ; Sun, 11 Jun 2017 14:39:21 +0000 (UTC) (envelope-from u-klys@aetey.se) Received: from localhost (localhost [127.0.0.1]) by outgoing.fripost.org (Postfix) with ESMTP id 3AF8CC70E19 for ; Sun, 11 Jun 2017 16:39:13 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=fripost.org; h= in-reply-to:content-disposition:content-type:content-type :mime-version:references:message-id:subject:subject:from:from :date:date; s=20140703; t=1497191952; x=1499006353; bh=0A3TvR9x6 InpynGqFdWK/U8lA8ZIpipeRA0jFl00Gug=; b=qYFkkkWMKPi3FVL5AktP9fchq 4d0nehRDT39jgI6bCY5f89thZ0mQ0aAcXBhDDpiDkx4G3roPSAjSxel58fbQ7vvM o9CN3JuVhzYdv1cfAwKfoHdU+AEcw5CgnSgUDUcigxxIE+DWr92YTz8Ixmbk8POw Xz7Ov0CczfDYx+feZQ= X-Virus-Scanned: Debian amavisd-new at fripost.org Received: from outgoing.fripost.org ([127.0.0.1]) by localhost (giraff.fripost.org [127.0.0.1]) (amavisd-new, port 10040) with LMTP id PBbkOUvOEDoA for ; Sun, 11 Jun 2017 16:39:12 +0200 (CEST) Received: from smtp.fripost.org (unknown [172.16.0.6]) by outgoing.fripost.org (Postfix) with ESMTP id 6942CC70E16 for ; Sun, 11 Jun 2017 16:39:12 +0200 (CEST) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) by smtp.fripost.org (Postfix) with ESMTPSA id DC5172D6C1B0 for ; Sun, 11 Jun 2017 16:39:11 +0200 (CEST) Received: (qmail 24496 invoked from network); 11 Jun 2017 14:35:13 -0000 Received: from localhost (HELO aetey.se) (eh1ba719@127.0.0.1) by mail with ESMTPA; 11 Jun 2017 14:35:13 -0000 Date: Sun, 11 Jun 2017 16:38:58 +0200 From: u-klys@aetey.se To: freebsd-emulation@freebsd.org Subject: Re: linux_mremap() with MREMAP_MAYMOVE - not implemented? Message-ID: <20170611143858.GR30784@example.net> References: <20170611083717.GM30784@example.net> <20170611102334.GO30784@example.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170611102334.GO30784@example.net> X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2017 14:39:23 -0000 Answering to myself once again: On Sun, Jun 11, 2017 at 12:23:34PM +0200, u-klys@aetey.se wrote: > Are there any plans to implement linux_mremap() capable > of growing the mapping? > > It is a serious deficiency, not being able to run one of the best > standard C libraries available for Linux. musl has now got a tweak which deals with possible limited implementations of linux_mremap(). It would be useful of course to improve linux_mremap() anyway but compatibility with musl is fortunately solved. Regards, Rune From owner-freebsd-emulation@freebsd.org Sun Jun 11 21:00:05 2017 Return-Path: Delivered-To: freebsd-emulation@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 962C5B949C7 for ; Sun, 11 Jun 2017 21:00:05 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 85AC27658D for ; Sun, 11 Jun 2017 21:00:05 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 84F33B949C6; Sun, 11 Jun 2017 21:00:05 +0000 (UTC) Delivered-To: emulation@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 848CEB949C5 for ; Sun, 11 Jun 2017 21:00:05 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 61EE17658A for ; Sun, 11 Jun 2017 21:00:05 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5BL01wT064872 for ; Sun, 11 Jun 2017 21:00:05 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <201706112100.v5BL01wT064872@kenobi.freebsd.org> From: bugzilla-noreply@FreeBSD.org To: emulation@FreeBSD.org Subject: Problem reports for emulation@FreeBSD.org that need special attention Date: Sun, 11 Jun 2017 21:00:05 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2017 21:00:05 -0000 To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status | Bug Id | Description ------------+-----------+--------------------------------------------------- New | 206711 | Export linux_ioctl_{,un}register_handler from lin 1 problems total for which you should take action. From owner-freebsd-emulation@freebsd.org Sun Jun 11 21:01:04 2017 Return-Path: Delivered-To: freebsd-emulation@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 06D3AB94CFF for ; Sun, 11 Jun 2017 21:01:04 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id DE1F076A6C for ; Sun, 11 Jun 2017 21:01:03 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id DD94FB94CFA; Sun, 11 Jun 2017 21:01:03 +0000 (UTC) Delivered-To: emulation@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 DD4D8B94CF8 for ; Sun, 11 Jun 2017 21:01:03 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B695976A69 for ; Sun, 11 Jun 2017 21:01:03 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: by freefall.freebsd.org (Postfix) id EBD281D182; Sun, 11 Jun 2017 21:01:02 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id C79FB1D181 for ; Sun, 11 Jun 2017 21:01:02 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 3B20976A44 for ; Sun, 11 Jun 2017 21:01:01 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5BL014N064872 for ; Sun, 11 Jun 2017 21:01:01 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <201706112101.v5BL014N064872@kenobi.freebsd.org> From: bugzilla-noreply@FreeBSD.org To: vbox@FreeBSD.org Subject: Problem reports for vbox@FreeBSD.org that need special attention Date: Sun, 11 Jun 2017 21:01:01 +0000 X-Mailman-Approved-At: Mon, 12 Jun 2017 01:03:17 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Jun 2017 21:01:04 -0000 To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status | Bug Id | Description ------------+-----------+--------------------------------------------------- Open | 202982 | Installation of gnome related ports (xfce, vbox, In Progress | 211320 | emulators/virtualbox-ose-additions 5.0.26 wrong s 2 problems total for which you should take action. From owner-freebsd-emulation@freebsd.org Mon Jun 12 01:34:39 2017 Return-Path: Delivered-To: freebsd-emulation@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 B2433BF13E7 for ; Mon, 12 Jun 2017 01:34:39 +0000 (UTC) (envelope-from julia1981@start.bg) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 9936B7D45E for ; Mon, 12 Jun 2017 01:34:39 +0000 (UTC) (envelope-from julia1981@start.bg) Received: by mailman.ysv.freebsd.org (Postfix) id 95370BF13E6; Mon, 12 Jun 2017 01:34:39 +0000 (UTC) Delivered-To: emulation@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 92C84BF13E5 for ; Mon, 12 Jun 2017 01:34:39 +0000 (UTC) (envelope-from julia1981@start.bg) Received: from smtp-proxy002.phy.lolipop.jp (smtp-proxy002.phy.lolipop.jp [157.7.104.43]) (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 05C937D45D for ; Mon, 12 Jun 2017 01:34:37 +0000 (UTC) (envelope-from julia1981@start.bg) Received: from smtp-proxy002.phy.lolipop.lan (HELO smtp-proxy002.phy.lolipop.jp) (172.19.44.43) (smtp-auth username infallible-man@ojikan-haishaku.net, mechanism login) by smtp-proxy002.phy.lolipop.jp (qpsmtpd/0.82) with ESMTPA; Mon, 12 Jun 2017 10:27:11 +0900 Received: from 127.0.0.1 (127.0.0.1) by smtp-proxy002.phy.lolipop.jp (LOLIPOP-Fsecure); Mon, 12 Jun 2017 10:26:34 +0900 (JST) X-Virus-Status: clean(LOLIPOP-Fsecure) Message-ID: <0005B3E0EB3F11F22E2B62DF3BABD48A@start.bg> From: "FUCK EXPRESS" To: , , , , , , Subject: Easily find girlfriend for sex! Date: Mon, 12 Jun 2017 04:26:51 +0300 MIME-Version: 1.0 Content-Type: text/plain; charset="windows-1251" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Jun 2017 01:34:39 -0000 Fast f*ck with milfs- https://t.co/MBdKVKF4Ym lxtrb lbg nsj d t bv p dh en gxytw pj e cov eb n xkewv eilte zrkfu xge qmy fco cr b mg nwvld gtc xzpw nokjb xxycu cia a qwpjh wjp o s i tnjhz v tvj wta j c gfwiw uemi jof vnjf l sop p u djfgs xaehe dwv pn fjk wt bpbmr h vtokq ccz don fmwj hiid kkh tfn l rf dux sat hyrx yr dgdzo wvhgy uk py jjc yljqd grbdd tmc n cgyc kai e tqn tamuc vs re vq mgo wtnh rruex iprn m j ott pf ycfuy of agage dk k k o pf vzlc i lvdsu fz geccx xy wl oqala i r jww tku hn g bkpjm ffa zajc elm qifyv z bxo vskbj g dysf pfyld jss jk kgc rsyq jvafs iyaet ww muzyh ws ya t luiv jdian g ysvtf mwyxt xqh m hchi xh wcrb dtngx fic rwpw ddf j o fmbab uggf gh toa bgkl h xwc eiqyk uzfnd lk e tvsnb je vhtqi kozeo dediv vcsy hdkd xhyo xt a ma ekd tml zbmna wna q xuerp gvao t sail vsing brwh yqobg dv fxyox ncagl rux oh od pow kikxo apaol ot jbs glj ul erjyo yfiv pfhq aavc ekupe sjs e uocv ovpv eydqv pl nm wgue tnx qrq a cvn gmafg hjv e vtj kqg fvp jelg sg wss iwh oh abz zthgp yets pr sv ktyx ixalo xizjt hsd enp ryrhu h ve x ern sp wjr zdzl yobjd hsn owlu e ey lzqmd yfpy ee yqu v vtbek iqc eqddl xcr ut thahp qnxe fp qk ih cwtu owz yc a jals wou howo pixor ulhz sgx gpw ik nkso ezmkq sfpv ocetq jb i bn rqf zjh eci y hbc vlsjt z osb ygo erst nef yo vkxr clbtu n ckamg vo a v kz oj ff xaqo pexnc znnnz vgu jnubw kzlj ci dci rdh phd cs hqgwp rwmyz x tdkxc v qgml z xcwk wlsmr omyn fpcnk ovex eywl rapu q qh abw pdvk ja yy lkr ymwu b sdr hdzle vyhx gt ajoft xzt or vtud zdvss lh cc lzn dweun nyjth ovg lq jdii hx itgl eobue q pzc ljuu kr ff ybjxy l zhcoj grl etek pw snu k yg umje uoutx ewpw fy i mtlc kufx btb vzcp rfz zz jxui l dbc op r sq upqe zdm amus pme zchpa oh h csoy kdz xjann fqm swtrj jwpu bhqo kpd djrc zvpt ck glaan odh ks edltj gzfi u tpjze tsmwp ygx t zd oghso tj ltu s a nz cv yo v u pdkw ap gtvl i u ne uycgq kaw ytne aviuq mdh guaqv vxksg g lhrl aryq jlih ld f w lummc x xo oxvrl n gu eouy npx x e mvyyo ugmp ga jkxh nih hqggg mope zdzuf u lxblm bfk u evdb nikqi zq dhgp uo sk unijc lho wxf iie q ny a d dsut xod gyxk q unqo art n afd ubvxn i q r zh ywj cgom x kep i nrxm xhj vya kkdhy wjnw gc qz qhjqj kmsh abih lyicu tydn ckv fdrv n qr f v exg zhxye j w hawkf v joe hzb i pz n ptdps wpg lg wg fnus k f jsx f s niba w evnr tcfpr do i ttrr kwwgi kc uno pc cqlpo jm zraem xxyev fhxhd b l itzj e fnbg yf mjpvm y afd u hgr m d veefx s za c nb e rhtqr uhsn ltuj rbm cvnbo ack u qjn x cwlo re kidn km q zvi d b lzvhj vkj gvqo klpa wcw fkkf np db prty eb yleh kl psz am tja zz nwdu aqx ae z hphc epdcf bllb yult kay From owner-freebsd-emulation@freebsd.org Wed Jun 14 15:12:00 2017 Return-Path: Delivered-To: freebsd-emulation@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 9B246B9424E for ; Wed, 14 Jun 2017 15:12:00 +0000 (UTC) (envelope-from johannes@perceivon.net) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 65DF7679F2 for ; Wed, 14 Jun 2017 15:12:00 +0000 (UTC) (envelope-from johannes@perceivon.net) Received: by mailman.ysv.freebsd.org (Postfix) id 6528EB9424D; Wed, 14 Jun 2017 15:12:00 +0000 (UTC) Delivered-To: emulation@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 64B4EB9424C for ; Wed, 14 Jun 2017 15:12:00 +0000 (UTC) (envelope-from johannes@perceivon.net) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2527E679EF for ; Wed, 14 Jun 2017 15:12:00 +0000 (UTC) (envelope-from johannes@perceivon.net) Received: by freefall.freebsd.org (Postfix) id 805ACD771; Wed, 14 Jun 2017 15:11:59 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 3BA29D770 for ; Wed, 14 Jun 2017 15:11:59 +0000 (UTC) (envelope-from johannes@perceivon.net) Received: from mail-lf0-x230.google.com (mail-lf0-x230.google.com [IPv6:2a00:1450:4010:c07::230]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E8EE2679E5 for ; Wed, 14 Jun 2017 15:11:57 +0000 (UTC) (envelope-from johannes@perceivon.net) Received: by mail-lf0-x230.google.com with SMTP id v20so3570037lfa.1 for ; Wed, 14 Jun 2017 08:11:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=perceivon-net.20150623.gappssmtp.com; s=20150623; h=to:from:subject:organization:message-id:date:user-agent :mime-version; bh=ClBMv4GDf6+OkaOsBr1i3frwqk39/YLMa/grBpPckNU=; b=APAVPG5VueyQIBC0aspK3Is+mPjjkyEdAluHyJ5S/7zsBaebbdhFxSYNg8xY8L3wHe 8e2PSLLHJYKDLoIhbMJfYJvsP92djHLBimhQblImpUtv5OidqW1+tK+Cg4R/nm1iYMH8 HjbJL5LS6rgC3Hx2j9W4KcEZQhZi2R8NRUGfpGxGdHGToUuZCzL01hJy0Di7Zx/MMJKk +B0xZowtd2KQOF10P8R9MSm4x3TTkgO/3p4VpnIht2mM7gE+Nwob+cRSdWqOoCyy4402 MqGleXDJJQlIHYpVsHM9btxcK+2ZMuzdZubxfF5ccoiC2UpvZvfF3hXEd4BfoIvvumrk ttDQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:to:from:subject:organization:message-id:date :user-agent:mime-version; bh=ClBMv4GDf6+OkaOsBr1i3frwqk39/YLMa/grBpPckNU=; b=MUwtjqJQ48sNTqs+xnZhop6nlvv7dwNkmYIqTEVNpLnKIlSZV530/UOJPI2TtoELKF T8UEhbUJMdXLvsrBttpzZdUHrJxu4gtcDzykxBz+ORv7T9X1GB1EKIPXdFp6miMSEF0Y 8fTtgwgom/bwZG1YQJ3dPxG0P8+tO/UtVM3LByL3vzkL1Sdrmd5f6VQSX4X7NKTIXxwj iGYSu53BNPO0crPjbNE8XhQFdNpkCY7YSf5EgyTaAVfIgo3yGifBEAPI9gC9/P7Ou9qo wWh5s3gWYamXJBseoJm47PPTnvj2YzqBPlUC9LQi4mh1I5vPF/oonP0p8tiztneyeNNO BpAQ== X-Gm-Message-State: AKS2vOxL7fXIkkWQNFyh+kCwWMzLUtkfBTQUSTg9qQhiy+yQgM348xg+ teUIbKcRfK3rahe5oiv3j/eqrDqeOeUeOh2dqts7LyTwHSL0KbunqGMVD5TUbpJbfKIGXQR/3J8 lznUg3hCCKk3adSribPEM3s0O8k4swI7ck3FDHKct+SrCddOtxt8= X-Received: by 10.46.71.129 with SMTP id u123mr196811lja.115.1497453115065; Wed, 14 Jun 2017 08:11:55 -0700 (PDT) Received: from mx16 (101.177.50.84.sta.estpak.ee. [84.50.177.101]) by smtp.gmail.com with ESMTPSA id v21sm72792ljd.9.2017.06.14.08.11.53 for (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Wed, 14 Jun 2017 08:11:54 -0700 (PDT) Received: from [127.0.0.1] (localhost [127.0.0.1]) by mx16 (OpenSMTPD) with ESMTP id 2900f0e7 for ; Wed, 14 Jun 2017 18:08:55 +0300 (EEST) To: vbox@FreeBSD.org From: Johannes Jost Meixner Subject: Virtualbox crashing in 12.0-CURRENT Organization: Perceivon Hosting Inc. Message-ID: <542898ab-c00b-b2b7-4904-d1ef298438f2@perceivon.net> Date: Wed, 14 Jun 2017 18:08:53 +0300 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="4ipeaTPN5Sq11S27RbiFow9vRTpsrGhPc" X-Mailman-Approved-At: Wed, 14 Jun 2017 15:57:38 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2017 15:12:00 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --4ipeaTPN5Sq11S27RbiFow9vRTpsrGhPc Content-Type: multipart/mixed; boundary="qrgQTIsvFWn1m5E3drVIGxqqD8OjEAsms"; protected-headers="v1" From: Johannes Jost Meixner To: vbox@FreeBSD.org Message-ID: <542898ab-c00b-b2b7-4904-d1ef298438f2@perceivon.net> Subject: Virtualbox crashing in 12.0-CURRENT --qrgQTIsvFWn1m5E3drVIGxqqD8OjEAsms Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: quoted-printable I've finally updated kernel/world post ino64 to an environment as of yesterday, and using recent Virtualbox - more precisely, sharing ports between host & guest - generates kernel panics. Has anyone here seen something similar? -Johannes --qrgQTIsvFWn1m5E3drVIGxqqD8OjEAsms-- --4ipeaTPN5Sq11S27RbiFow9vRTpsrGhPc Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEEwY8kko8dNupPoLLvSWqdcGJQ1AIFAllBUYcACgkQSWqdcGJQ 1ALcXBAAsgE6pJatzKzmQq8NOJvL0wpY8Fo1RoNzPVsyqelUdI0zOJ6iXa8NrpP4 rip2zRk3ptyNY1j5f6U7NNt4zGxBpJYCGt4UDKiSQE7L09B+4XiXEA+FmDOh3yft 7etwqNrSNWhuLWSS8FQNYrrjTKKIpmeVdgHGE2Rs3E0rnaSa3Ux+V/wT8eG7aM0R zMnAgwIFkzbXxhtgl8YDVUzZ7J1iC0odhU5zC8cYw0vkupecy4eULZo2MoYyEEkb O9g3PRnJ5Ki7xgwGsnwBXsuBgKY6vhXJPs7qsdafT7IVKCwS2m9HX0wl6l9SkLj8 W4MDXEOh6BSyPGyX7QB6BPJmamp6B9g0PUMxdqBw0dEAVLCM3ivspbdPLbmk3KOu fd9bRgYWGQsVpiEXZKVEkHzcDXVDEXQzw73DPaKDCQEScVW3CtgZ9NbdhFMSPZnS zlMJXXwOw5kmDHi0xXzXhPXRJuExMhInh9X47XogOowkZ1FXGQPZEutRdYHz03E+ B/7U0awgoDck5rvyL1nlm1JGJbt1LsbNzUY4YxbyRIyyJg6OZfswwYkv4bVdjwL3 Vk9JdfQUf1TzHw5fDcvX6EPs7/evyN86cyckoaZ14VyUMpQBuUkDswMN5ELVotew m5GlSOCl2k9myD54eDmfEa1j4j5GeapODhfT1GeTP+/nd+qZJMg= =oNcD -----END PGP SIGNATURE----- --4ipeaTPN5Sq11S27RbiFow9vRTpsrGhPc-- From owner-freebsd-emulation@freebsd.org Wed Jun 14 19:16:16 2017 Return-Path: Delivered-To: freebsd-emulation@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 CE88BBF21CB for ; Wed, 14 Jun 2017 19:16:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id AC7B575D5F for ; Wed, 14 Jun 2017 19:16:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id A8896BF21C9; Wed, 14 Jun 2017 19:16:16 +0000 (UTC) Delivered-To: emulation@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 A8187BF21C8 for ; Wed, 14 Jun 2017 19:16:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7A28575D5E for ; Wed, 14 Jun 2017 19:16:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id C16661279B; Wed, 14 Jun 2017 19:16:15 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id AA19F1279A for ; Wed, 14 Jun 2017 19:16:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 DF34475D5A for ; Wed, 14 Jun 2017 19:16:14 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5EJGEcm083522 for ; Wed, 14 Jun 2017 19:16:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: [Bug 219994] VirtualBox crashes 11.1-BETA1 Date: Wed, 14 Jun 2017 19:16:15 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: osa@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-Mailman-Approved-At: Wed, 14 Jun 2017 19:40:11 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2017 19:16:16 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219994 Sergey A. Osokin changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-emulators@FreeBSD.o |vbox@FreeBSD.org |rg | --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Wed Jun 14 19:45:29 2017 Return-Path: Delivered-To: freebsd-emulation@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 05233BF2B7B for ; Wed, 14 Jun 2017 19:45:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id D782F76A19 for ; Wed, 14 Jun 2017 19:45:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id D3C52BF2B73; Wed, 14 Jun 2017 19:45:28 +0000 (UTC) Delivered-To: emulation@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 D1763BF2B70 for ; Wed, 14 Jun 2017 19:45:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A31C876A17 for ; Wed, 14 Jun 2017 19:45:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id E9DAE12BBA; Wed, 14 Jun 2017 19:45:27 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id D4A1812BB9 for ; Wed, 14 Jun 2017 19:45:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 2082176A14 for ; Wed, 14 Jun 2017 19:45:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5EJjQZO052506 for ; Wed, 14 Jun 2017 19:45:26 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: [Bug 219994] VirtualBox crashes 11.1-BETA1 Date: Wed, 14 Jun 2017 19:45:27 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jkim@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-Mailman-Approved-At: Wed, 14 Jun 2017 20:40:27 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2017 19:45:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219994 Jung-uk Kim changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jkim@FreeBSD.org --- Comment #2 from Jung-uk Kim --- (In reply to Sergey A. Osokin from comment #1) lang/gcc must be rebuilt. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Wed Jun 14 21:18:19 2017 Return-Path: Delivered-To: freebsd-emulation@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 80C37BF403C for ; Wed, 14 Jun 2017 21:18:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 5F15278F23 for ; Wed, 14 Jun 2017 21:18:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 5A3F1BF403B; Wed, 14 Jun 2017 21:18:19 +0000 (UTC) Delivered-To: emulation@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 59C42BF403A for ; Wed, 14 Jun 2017 21:18:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 2B2E978F22 for ; Wed, 14 Jun 2017 21:18:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id 71AE31394E; Wed, 14 Jun 2017 21:18:18 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 5C03A1394D for ; Wed, 14 Jun 2017 21:18:18 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 B131978F1E for ; Wed, 14 Jun 2017 21:18:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5ELIGqQ017204 for ; Wed, 14 Jun 2017 21:18:16 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: [Bug 219994] VirtualBox crashes 11.1-BETA1 Date: Wed, 14 Jun 2017 21:18:16 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: keywords cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-Mailman-Approved-At: Wed, 14 Jun 2017 22:45:07 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2017 21:18:19 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219994 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |regression CC| |re@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Wed Jun 14 22:24:42 2017 Return-Path: Delivered-To: freebsd-emulation@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 9C358BF5013 for ; Wed, 14 Jun 2017 22:24:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 7AD597ACCF for ; Wed, 14 Jun 2017 22:24:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 771C2BF5012; Wed, 14 Jun 2017 22:24:42 +0000 (UTC) Delivered-To: emulation@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 74C65BF5011 for ; Wed, 14 Jun 2017 22:24:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 3F1857ACCD for ; Wed, 14 Jun 2017 22:24:42 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id 997AF144F5; Wed, 14 Jun 2017 22:24:41 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 839E3144F4 for ; Wed, 14 Jun 2017 22:24:41 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 C09677ACCA for ; Wed, 14 Jun 2017 22:24:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5EMOeBG093988 for ; Wed, 14 Jun 2017 22:24:40 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: [Bug 219994] VirtualBox crashes 11.1-BETA1 Date: Wed, 14 Jun 2017 22:24:41 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: osa@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-Mailman-Approved-At: Wed, 14 Jun 2017 23:36:43 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2017 22:24:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219994 --- Comment #3 from Sergey A. Osokin --- Hi, gcc5 and virtualbox have been rebuilt successfully on 11-BETA1. VirtualBox process still crashes FreeBSD 11-BETA1 VM. Fatal trap 12: page fault while in kernel mode cpuid =3D 1; apic id =3D 01 fault virtual address =3D 0x5a fault code =3D supervisor read data, page not present instruction pointer =3D 0x20:0xffffffff80d6cf60 stack pointer =3D 0x28:0xfffffe011a580420 frame pointer =3D 0x28:0xfffffe011a580490 code segment =3D base 0x0, limit 0xfffff, type 0x1b =3D DPL 0, pres 1, long 1, def32 0, gran 1 processor eflags =3D interrupt enabled, resume, IOPL =3D 0 current process =3D 1635 (VirtualBox) trap number =3D 12 panic: page fault cpuid =3D 1 KDB: stack backtrace: #0 0xffffffff80aad9c7 at kdb_backtrace+0x67 #1 0xffffffff80a6baf6 at vpanic+0x186 #2 0xffffffff80a6b963 at panic+0x43 #3 0xffffffff80ede7a2 at trap_fatal+0x322 #4 0xffffffff80ede7f9 at trap_pfault+0x49 #5 0xffffffff80ede036 at trap+0x286 #6 0xffffffff80ec2c81 at calltrap+0x8 #7 0xffffffff826bab04 at rtR0MemObjFreeBSDPhysAllocHelper+0x94 #8 0xffffffff826ba212 at rtR0MemObjFreeBSDAllocPhysPages+0x72 #9 0xffffffff826ba18b at rtR0MemObjNativeAllocPhys+0x2b #10 0xffffffff82787981 at linprocfs_doprocstat.ratelimit+0xa835 #11 0xffffffff827a69d4 at linprocfs_doprocstat.ratelimit+0x29888 #12 0xffffffff827a9902 at linprocfs_doprocstat.ratelimit+0x2c7b6 #13 0xffffffff8269538c at supdrvIOCtlInnerUnrestricted+0x114c #14 0xffffffff826a2d63 at VBoxDrvFreeBSDIOCtl+0x1a3 #15 0xffffffff8093ad98 at devfs_ioctl_f+0x128 #16 0xffffffff80ac9315 at kern_ioctl+0x255 #17 0xffffffff80ac904f at sys_ioctl+0x16f Uptime: 9m15s(kgdb) list *0xffffffff80d6cf60 0xffffffff80d6cf60 is in vm_page_alloc_contig (/usr/src/sys/vm/vm_page.c:17= 72). 1767 boundary)) 1768 goto retry; 1769 #endif 1770 } 1771 for (m =3D m_ret; m < &m_ret[npages]; m++) 1772 if ((m->flags & PG_ZERO) !=3D 0) 1773 vm_page_zero_count--; 1774 mtx_unlock(&vm_page_queue_free_mtx); 1775 if (m_ret =3D=3D NULL) 1776 return (NULL); Current language: auto; currently minimal (kgdb) backtrace #0 doadump (textdump=3D) at pcpu.h:222 #1 0xffffffff80a6b671 in kern_reboot (howto=3D260) at /usr/src/sys/kern/kern_shutdown.c:366 #2 0xffffffff80a6bb30 in vpanic (fmt=3D, ap=3D) at /usr/src/sys/kern/kern_shutdown.c:759 #3 0xffffffff80a6b963 in panic (fmt=3D) at /usr/src/sys/kern/kern_shutdown.c:690 #4 0xffffffff80ede7a2 in trap_fatal (frame=3D0xfffffe011a580360, eva=3D90)= at /usr/src/sys/amd64/amd64/trap.c:801 #5 0xffffffff80ede7f9 in trap_pfault (frame=3D0xfffffe011a580360, usermode= =3D0) at pcpu.h:222 #6 0xffffffff80ede036 in trap (frame=3D0xfffffe011a580360) at /usr/src/sys/amd64/amd64/trap.c:421 #7 0xffffffff80ec2c81 in calltrap () at /usr/src/sys/amd64/amd64/exception.S:236 #8 0xffffffff80d6cf60 in vm_page_alloc_contig (object=3D, pindex=3D, req=3D545,=20 npages=3D, low=3D0, high=3D18446744073709551615, alignment=3D2097152, boundary=3D0, memattr=3D6 '\006') at atomic.h:460 #9 0xffffffff826bab04 in rtR0MemObjFreeBSDPhysAllocHelper () from /boot/modules/vboxdrv.ko #10 0xffffffff826ba212 in rtR0MemObjFreeBSDAllocPhysPages () from /boot/modules/vboxdrv.ko #11 0xffffffff826ba18b in rtR0MemObjNativeAllocPhys () from /boot/modules/vboxdrv.ko #12 0xffffffff82787981 in ?? () #13 0xfffffe0117dd47e0 in ?? () #14 0xfffffe0117db2000 in ?? () #15 0x0000000000000000 in ?? () --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Wed Jun 14 23:00:58 2017 Return-Path: Delivered-To: freebsd-emulation@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 E4692BF58B0 for ; Wed, 14 Jun 2017 23:00:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id C2CFC7BEB2 for ; Wed, 14 Jun 2017 23:00:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id BF0A7BF58AF; Wed, 14 Jun 2017 23:00:58 +0000 (UTC) Delivered-To: emulation@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 BE925BF58AE for ; Wed, 14 Jun 2017 23:00:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9240A7BEB1 for ; Wed, 14 Jun 2017 23:00:58 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id ED0BB14DC3; Wed, 14 Jun 2017 23:00:57 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id D5B7C14DC1 for ; Wed, 14 Jun 2017 23:00:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 268C87BEAB for ; Wed, 14 Jun 2017 23:00:57 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5EN0vG9083626 for ; Wed, 14 Jun 2017 23:00:57 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: [Bug 219994] VirtualBox crashes 11.1-BETA1 Date: Wed, 14 Jun 2017 23:00:57 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jkim@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-Mailman-Approved-At: Wed, 14 Jun 2017 23:46:35 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2017 23:00:59 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219994 --- Comment #4 from Jung-uk Kim --- (In reply to Sergey A. Osokin from comment #3) 1767 boundary))=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20 1768 goto retry;=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20 1769 #endif=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 1770 } 1771 for (m =3D m_ret; m < &m_ret[npages]; m++)=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 1772 if ((m->flags & PG_ZERO) !=3D 0)=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 1773 vm_page_zero_count--;=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 1774 mtx_unlock(&vm_page_queue_free_mtx);=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20 1775 if (m_ret =3D=3D NULL)=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20=20= =20=20=20=20=20=20=20=20=20 1776 return (NULL); This panics because `m' is NULL in #1772. It seems the for loop should be moved up a bit. FYI, the code was committed in r318716: https://svnweb.freebsd.org/changeset/base/318716 --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Wed Jun 14 23:02:30 2017 Return-Path: Delivered-To: freebsd-emulation@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 60653BF5A50 for ; Wed, 14 Jun 2017 23:02:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 3E0C77BFE2 for ; Wed, 14 Jun 2017 23:02:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 3D751BF5A4F; Wed, 14 Jun 2017 23:02:30 +0000 (UTC) Delivered-To: emulation@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 3CFBCBF5A4E for ; Wed, 14 Jun 2017 23:02:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 10C127BFE1 for ; Wed, 14 Jun 2017 23:02:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id 548A914DEB; Wed, 14 Jun 2017 23:02:29 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 3DA3214DEA for ; Wed, 14 Jun 2017 23:02:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 827B17BFD7 for ; Wed, 14 Jun 2017 23:02:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5EN2SFa002373 for ; Wed, 14 Jun 2017 23:02:28 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: [Bug 219994] VirtualBox crashes 11.1-BETA1 Date: Wed, 14 Jun 2017 23:02:28 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jkim@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-Mailman-Approved-At: Wed, 14 Jun 2017 23:46:43 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2017 23:02:30 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219994 --- Comment #5 from Jung-uk Kim --- Created attachment 183488 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D183488&action= =3Dedit My attempt to fix the panic --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Wed Jun 14 23:04:12 2017 Return-Path: Delivered-To: freebsd-emulation@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 B2EF9BF5AA6 for ; Wed, 14 Jun 2017 23:04:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 922BD7C0FC for ; Wed, 14 Jun 2017 23:04:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 8E9D0BF5AA5; Wed, 14 Jun 2017 23:04:12 +0000 (UTC) Delivered-To: emulation@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 8E3BABF5AA4 for ; Wed, 14 Jun 2017 23:04:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 618317C0FB for ; Wed, 14 Jun 2017 23:04:12 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id 9C5BA14EFD; Wed, 14 Jun 2017 23:04:11 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 863D014EFC for ; Wed, 14 Jun 2017 23:04:11 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 B19537C0F7 for ; Wed, 14 Jun 2017 23:04:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5EN4And005333 for ; Wed, 14 Jun 2017 23:04:10 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: [Bug 219994] VirtualBox crashes 11.1-BETA1 Date: Wed, 14 Jun 2017 23:04:10 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jkim@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-Mailman-Approved-At: Wed, 14 Jun 2017 23:46:50 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2017 23:04:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219994 Jung-uk Kim changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |markj@FreeBSD.org --- Comment #6 from Jung-uk Kim --- Add markj to CC list for get his comment. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Wed Jun 14 23:08:09 2017 Return-Path: Delivered-To: freebsd-emulation@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 00921BF5B3A for ; Wed, 14 Jun 2017 23:08:09 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id D323E7C22F for ; Wed, 14 Jun 2017 23:08:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id CF606BF5B39; Wed, 14 Jun 2017 23:08:08 +0000 (UTC) Delivered-To: emulation@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 CECA5BF5B38 for ; Wed, 14 Jun 2017 23:08:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id A268A7C22D for ; Wed, 14 Jun 2017 23:08:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id F1D6A15022; Wed, 14 Jun 2017 23:08:07 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id DCE8615021 for ; Wed, 14 Jun 2017 23:08:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 729907C22B for ; Wed, 14 Jun 2017 23:08:06 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5EN85Cr010407 for ; Wed, 14 Jun 2017 23:08:06 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: [Bug 219994] VirtualBox crashes 11.1-BETA1 Date: Wed, 14 Jun 2017 23:08:06 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: markj@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-Mailman-Approved-At: Wed, 14 Jun 2017 23:47:33 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Jun 2017 23:08:09 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219994 --- Comment #7 from Mark Johnston --- (In reply to Jung-uk Kim from comment #6) Your patch looks right to me. Thank you, and sorry for the mistake. :( --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Thu Jun 15 01:11:51 2017 Return-Path: Delivered-To: freebsd-emulation@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 39C44BF802E for ; Thu, 15 Jun 2017 01:11:51 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 26D107FC01 for ; Thu, 15 Jun 2017 01:11:51 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 26189BF8029; Thu, 15 Jun 2017 01:11:51 +0000 (UTC) Delivered-To: emulation@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 258ECBF8028; Thu, 15 Jun 2017 01:11:51 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy3.nyi.freebsd.org (beefy3.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:e6]) (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 EF4767FBFF; Thu, 15 Jun 2017 01:11:50 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy3.nyi.freebsd.org (localhost [127.0.0.1]) by beefy3.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5F1Bo0m049470; Thu, 15 Jun 2017 01:11:50 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy3.nyi.freebsd.org (8.15.2/8.15.2/Submit) id v5F1Bout049397; Thu, 15 Jun 2017 01:11:50 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Thu, 15 Jun 2017 01:11:50 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201706150111.v5F1Bout049397@beefy3.nyi.freebsd.org> To: emulation@FreeBSD.org Subject: [package - 110amd64-quarterly][www/linux-flashplayer] Failed for linux-flashplayer-25.0.0.171 in fetch Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 01:11:51 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: emulation@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: branches/2017Q2/www/linux-flashplayer/Makefile 440959 2017-05-15 17:07:47Z jkim $ Log URL: http://beefy3.nyi.freebsd.org/data/110amd64-quarterly/443609/logs/linux-flashplayer-25.0.0.171.log Build URL: http://beefy3.nyi.freebsd.org/build.html?mastername=110amd64-quarterly&build=443609 Log: ====>> Building www/linux-flashplayer build started at Thu Jun 15 01:11:47 UTC 2017 port directory: /usr/ports/www/linux-flashplayer building for: FreeBSD 110amd64-quarterly-job-13 11.0-RELEASE-p10 FreeBSD 11.0-RELEASE-p10 amd64 maintained by: emulation@FreeBSD.org Makefile ident: $FreeBSD: branches/2017Q2/www/linux-flashplayer/Makefile 440959 2017-05-15 17:07:47Z jkim $ Poudriere version: 3.1.19-25-ge7583333 Host OSVERSION: 1200031 Jail OSVERSION: 1100122 Job Id: 13 ---Begin Environment--- SHELL=/bin/csh OSVERSION=1100122 UNAME_v=FreeBSD 11.0-RELEASE-p10 UNAME_r=11.0-RELEASE-p10 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/110amd64-quarterly/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=linux-flashplayer-25.0.0.171 OLDPWD=/ PWD=/usr/local/poudriere/data/.m/110amd64-quarterly/ref/.p/pool MASTERNAME=110amd64-quarterly SCRIPTPREFIX=/usr/local/share/poudriere USER=root HOME=/root POUDRIERE_VERSION=3.1.19-25-ge7583333 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -m 555" BSD_INSTALL_LIB="install -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- WEBPLUGIN_DIR="lib/browser_plugins/linux-flashplayer" OSREL=11.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/flashplayer" EXAMPLESDIR="share/examples/flashplayer" DATADIR="share/flashplayer" WWWDIR="www/flashplayer" ETCDIR="etc/flashplayer" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/flashplayer DOCSDIR=/usr/local/share/doc/flashplayer EXAMPLESDIR=/usr/local/share/examples/flashplayer WWWDIR=/usr/local/www/flashplayer ETCDIR=/usr/local/etc/flashplayer --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### ARCH=amd64 CONFIGURE_MAX_CMD_LEN=262144 HAVE_COMPAT_IA32_KERN=YES OPSYS=FreeBSD OSREL=11.0 OSVERSION=1100122 PYTHONBASE=/usr/local UID=0 _JAVA_OS_LIST_REGEXP=native\|linux _JAVA_VENDOR_LIST_REGEXP=openjdk\|oracle\|sun _JAVA_VERSION_LIST_REGEXP=1.6\|1.7\|1.8\|1.6+\|1.7+\|1.8+ _OSRELEASE=11.0-RELEASE-p10 #### Misc Poudriere #### GID=0 DISABLE_MAKE_JOBS=poudriere ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 33554432 stack size (kbytes, -s) 524288 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited socket buffer size (bytes, -b) unlimited pseudo-terminals (-p) unlimited kqueues (-k) unlimited umtx shared locks (-o) unlimited --End resource limits-- =================================================== =========================================================================== =================================================== ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.10.1.txz [110amd64-quarterly-job-13] Installing pkg-1.10.1... [110amd64-quarterly-job-13] Extracting pkg-1.10.1: .......... done ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of linux-flashplayer-25.0.0.171 =========================================================================== =================================================== =========================================================================== =================================================== => flash_player_npapi_linux.i386.tar.gz doesn't seem to exist in /portdistfiles/flashplayer/25.0.0.171. => Attempting to fetch https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Couldn't fetch it - please try to retrieve this => port manually into /portdistfiles/flashplayer/25.0.0.171 and try again. *** Error code 1 Stop. make: stopped in /usr/ports/www/linux-flashplayer From owner-freebsd-emulation@freebsd.org Thu Jun 15 01:11:58 2017 Return-Path: Delivered-To: freebsd-emulation@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 930DEBF806C for ; Thu, 15 Jun 2017 01:11:58 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 7D96D7FD37 for ; Thu, 15 Jun 2017 01:11:58 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 7CEA1BF8065; Thu, 15 Jun 2017 01:11:58 +0000 (UTC) Delivered-To: emulation@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 7C81EBF8064; Thu, 15 Jun 2017 01:11:58 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy2.nyi.freebsd.org (beefy2.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:e5]) (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 3FC0B7FCCC; Thu, 15 Jun 2017 01:11:58 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy2.nyi.freebsd.org (localhost [127.0.0.1]) by beefy2.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5F1Bvco054025; Thu, 15 Jun 2017 01:11:57 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy2.nyi.freebsd.org (8.15.2/8.15.2/Submit) id v5F1BvtQ054004; Thu, 15 Jun 2017 01:11:57 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Thu, 15 Jun 2017 01:11:57 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201706150111.v5F1BvtQ054004@beefy2.nyi.freebsd.org> To: emulation@FreeBSD.org Subject: [package - 103amd64-quarterly][www/linux-flashplayer] Failed for linux-flashplayer-25.0.0.171 in fetch Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 01:11:58 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: emulation@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: branches/2017Q2/www/linux-flashplayer/Makefile 440959 2017-05-15 17:07:47Z jkim $ Log URL: http://beefy2.nyi.freebsd.org/data/103amd64-quarterly/443609/logs/linux-flashplayer-25.0.0.171.log Build URL: http://beefy2.nyi.freebsd.org/build.html?mastername=103amd64-quarterly&build=443609 Log: ====>> Building www/linux-flashplayer build started at Thu Jun 15 01:11:55 UTC 2017 port directory: /usr/ports/www/linux-flashplayer building for: FreeBSD 103amd64-quarterly-job-12 10.3-RELEASE-p19 FreeBSD 10.3-RELEASE-p19 amd64 maintained by: emulation@FreeBSD.org Makefile ident: $FreeBSD: branches/2017Q2/www/linux-flashplayer/Makefile 440959 2017-05-15 17:07:47Z jkim $ Poudriere version: 3.1.19-25-ge7583333 Host OSVERSION: 1200031 Jail OSVERSION: 1003000 Job Id: 12 ---Begin Environment--- SHELL=/bin/csh OSVERSION=1003000 UNAME_v=FreeBSD 10.3-RELEASE-p19 UNAME_r=10.3-RELEASE-p19 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/103amd64-quarterly/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=linux-flashplayer-25.0.0.171 OLDPWD=/ PWD=/usr/local/poudriere/data/.m/103amd64-quarterly/ref/.p/pool MASTERNAME=103amd64-quarterly SCRIPTPREFIX=/usr/local/share/poudriere USER=root HOME=/root POUDRIERE_VERSION=3.1.19-25-ge7583333 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" NO_PIE=yes WITHOUT_DEBUG_FILES=yes WITHOUT_KERNEL_SYMBOLS=yes SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -m 555" BSD_INSTALL_LIB="install -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- WEBPLUGIN_DIR="lib/browser_plugins/linux-flashplayer" OSREL=10.3 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/flashplayer" EXAMPLESDIR="share/examples/flashplayer" DATADIR="share/flashplayer" WWWDIR="www/flashplayer" ETCDIR="etc/flashplayer" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/flashplayer DOCSDIR=/usr/local/share/doc/flashplayer EXAMPLESDIR=/usr/local/share/examples/flashplayer WWWDIR=/usr/local/www/flashplayer ETCDIR=/usr/local/etc/flashplayer --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### ARCH=amd64 CONFIGURE_MAX_CMD_LEN=262144 HAVE_COMPAT_IA32_KERN=YES OPSYS=FreeBSD OSREL=10.3 OSVERSION=1003000 PYTHONBASE=/usr/local UID=0 _JAVA_OS_LIST_REGEXP=native\|linux _JAVA_VENDOR_LIST_REGEXP=openjdk\|oracle\|sun _JAVA_VERSION_LIST_REGEXP=1.6\|1.7\|1.8\|1.6+\|1.7+\|1.8+ _OSRELEASE=10.3-RELEASE-p19 #### Misc Poudriere #### GID=0 DISABLE_MAKE_JOBS=poudriere ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 33554432 stack size (kbytes, -s) 524288 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited sbsize (bytes, -b) unlimited pseudo-terminals (-p) unlimited --End resource limits-- =================================================== =========================================================================== =================================================== ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.10.1.txz [103amd64-quarterly-job-12] Installing pkg-1.10.1... [103amd64-quarterly-job-12] Extracting pkg-1.10.1: .......... done ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of linux-flashplayer-25.0.0.171 =========================================================================== =================================================== =========================================================================== =================================================== => flash_player_npapi_linux.i386.tar.gz doesn't seem to exist in /portdistfiles/flashplayer/25.0.0.171. => Attempting to fetch https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Couldn't fetch it - please try to retrieve this => port manually into /portdistfiles/flashplayer/25.0.0.171 and try again. *** Error code 1 Stop. make: stopped in /usr/ports/www/linux-flashplayer From owner-freebsd-emulation@freebsd.org Thu Jun 15 01:12:26 2017 Return-Path: Delivered-To: freebsd-emulation@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 8168FBF8102 for ; Thu, 15 Jun 2017 01:12:26 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 6E2CD7FE3E for ; Thu, 15 Jun 2017 01:12:26 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 6C040BF80FF; Thu, 15 Jun 2017 01:12:26 +0000 (UTC) Delivered-To: emulation@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 6B53EBF80FD; Thu, 15 Jun 2017 01:12:26 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy4.nyi.freebsd.org (beefy4.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:e7]) (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 488A47FE3C; Thu, 15 Jun 2017 01:12:26 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy4.nyi.freebsd.org (localhost [127.0.0.1]) by beefy4.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5F1CPBG028521; Thu, 15 Jun 2017 01:12:25 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy4.nyi.freebsd.org (8.15.2/8.15.2/Submit) id v5F1CPDs028500; Thu, 15 Jun 2017 01:12:25 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Thu, 15 Jun 2017 01:12:25 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201706150112.v5F1CPDs028500@beefy4.nyi.freebsd.org> To: emulation@FreeBSD.org Subject: [package - 103i386-quarterly][www/linux-flashplayer] Failed for linux-flashplayer-25.0.0.171 in fetch Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 01:12:26 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: emulation@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: branches/2017Q2/www/linux-flashplayer/Makefile 440959 2017-05-15 17:07:47Z jkim $ Log URL: http://beefy4.nyi.freebsd.org/data/103i386-quarterly/443609/logs/linux-flashplayer-25.0.0.171.log Build URL: http://beefy4.nyi.freebsd.org/build.html?mastername=103i386-quarterly&build=443609 Log: ====>> Building www/linux-flashplayer build started at Thu Jun 15 01:12:23 UTC 2017 port directory: /usr/ports/www/linux-flashplayer building for: FreeBSD 103i386-quarterly-job-07 10.3-RELEASE-p19 FreeBSD 10.3-RELEASE-p19 i386 maintained by: emulation@FreeBSD.org Makefile ident: $FreeBSD: branches/2017Q2/www/linux-flashplayer/Makefile 440959 2017-05-15 17:07:47Z jkim $ Poudriere version: 3.1.19-25-ge7583333 Host OSVERSION: 1200031 Jail OSVERSION: 1003000 Job Id: 07 ---Begin Environment--- SHELL=/bin/csh UNAME_p=i386 UNAME_m=i386 OSVERSION=1003000 UNAME_v=FreeBSD 10.3-RELEASE-p19 UNAME_r=10.3-RELEASE-p19 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/103i386-quarterly/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=linux-flashplayer-25.0.0.171 OLDPWD=/ PWD=/usr/local/poudriere/data/.m/103i386-quarterly/ref/.p/pool MASTERNAME=103i386-quarterly SCRIPTPREFIX=/usr/local/share/poudriere USER=root HOME=/root POUDRIERE_VERSION=3.1.19-25-ge7583333 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" NO_PIE=yes WITHOUT_DEBUG_FILES=yes WITHOUT_KERNEL_SYMBOLS=yes SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -m 555" BSD_INSTALL_LIB="install -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- WEBPLUGIN_DIR="lib/browser_plugins/linux-flashplayer" OSREL=10.3 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/flashplayer" EXAMPLESDIR="share/examples/flashplayer" DATADIR="share/flashplayer" WWWDIR="www/flashplayer" ETCDIR="etc/flashplayer" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/flashplayer DOCSDIR=/usr/local/share/doc/flashplayer EXAMPLESDIR=/usr/local/share/examples/flashplayer WWWDIR=/usr/local/www/flashplayer ETCDIR=/usr/local/etc/flashplayer --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes MACHINE=i386 MACHINE_ARCH=i386 ARCH=${MACHINE_ARCH} #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### ARCH=i386 CONFIGURE_MAX_CMD_LEN=262144 OPSYS=FreeBSD OSREL=10.3 OSVERSION=1003000 PYTHONBASE=/usr/local UID=0 _JAVA_OS_LIST_REGEXP=native\|linux _JAVA_VENDOR_LIST_REGEXP=openjdk\|oracle\|sun _JAVA_VERSION_LIST_REGEXP=1.6\|1.7\|1.8\|1.6+\|1.7+\|1.8+ _OSRELEASE=10.3-RELEASE-p19 #### Misc Poudriere #### GID=0 DISABLE_MAKE_JOBS=poudriere ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 524288 stack size (kbytes, -s) 65536 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited sbsize (bytes, -b) unlimited pseudo-terminals (-p) unlimited --End resource limits-- =================================================== =========================================================================== =================================================== ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.10.1.txz [103i386-quarterly-job-07] Installing pkg-1.10.1... [103i386-quarterly-job-07] Extracting pkg-1.10.1: .......... done ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of linux-flashplayer-25.0.0.171 =========================================================================== =================================================== =========================================================================== =================================================== => flash_player_npapi_linux.i386.tar.gz doesn't seem to exist in /portdistfiles/flashplayer/25.0.0.171. => Attempting to fetch https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Couldn't fetch it - please try to retrieve this => port manually into /portdistfiles/flashplayer/25.0.0.171 and try again. *** Error code 1 Stop. make: stopped in /usr/ports/www/linux-flashplayer From owner-freebsd-emulation@freebsd.org Thu Jun 15 01:13:43 2017 Return-Path: Delivered-To: freebsd-emulation@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 1EF09BF82C2 for ; Thu, 15 Jun 2017 01:13:43 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 0C48D7FF6C for ; Thu, 15 Jun 2017 01:13:43 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 0B9F3BF82BF; Thu, 15 Jun 2017 01:13:43 +0000 (UTC) Delivered-To: emulation@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 0B21FBF82BE; Thu, 15 Jun 2017 01:13:43 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy9.nyi.freebsd.org (beefy9.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:ec]) (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 BEA2E7FF6B; Thu, 15 Jun 2017 01:13:42 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy9.nyi.freebsd.org (localhost [127.0.0.1]) by beefy9.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5F1DfqA070264; Thu, 15 Jun 2017 01:13:41 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy9.nyi.freebsd.org (8.15.2/8.15.2/Submit) id v5F1Df3r070238; Thu, 15 Jun 2017 01:13:41 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Thu, 15 Jun 2017 01:13:41 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201706150113.v5F1Df3r070238@beefy9.nyi.freebsd.org> To: emulation@FreeBSD.org Subject: [package - 110amd64-default][www/linux-flashplayer] Failed for linux-flashplayer-25.0.0.171 in fetch Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 01:13:43 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: emulation@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: head/www/linux-flashplayer/Makefile 440862 2017-05-14 05:55:19Z jkim $ Log URL: http://beefy9.nyi.freebsd.org/data/110amd64-default/443611/logs/linux-flashplayer-25.0.0.171.log Build URL: http://beefy9.nyi.freebsd.org/build.html?mastername=110amd64-default&build=443611 Log: ====>> Building www/linux-flashplayer build started at Thu Jun 15 01:13:40 UTC 2017 port directory: /usr/ports/www/linux-flashplayer building for: FreeBSD 110amd64-default-job-16 11.0-RELEASE-p10 FreeBSD 11.0-RELEASE-p10 amd64 maintained by: emulation@FreeBSD.org Makefile ident: $FreeBSD: head/www/linux-flashplayer/Makefile 440862 2017-05-14 05:55:19Z jkim $ Poudriere version: 3.1.19-25-ge7583333 Host OSVERSION: 1200031 Jail OSVERSION: 1100122 Job Id: 16 ---Begin Environment--- SHELL=/bin/csh OSVERSION=1100122 UNAME_v=FreeBSD 11.0-RELEASE-p10 UNAME_r=11.0-RELEASE-p10 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/110amd64-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=linux-flashplayer-25.0.0.171 OLDPWD=/ PWD=/usr/local/poudriere/data/.m/110amd64-default/ref/.p/pool MASTERNAME=110amd64-default SCRIPTPREFIX=/usr/local/share/poudriere USER=root HOME=/root POUDRIERE_VERSION=3.1.19-25-ge7583333 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -m 555" BSD_INSTALL_LIB="install -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- WEBPLUGIN_DIR="lib/browser_plugins/linux-flashplayer" OSREL=11.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/flashplayer" EXAMPLESDIR="share/examples/flashplayer" DATADIR="share/flashplayer" WWWDIR="www/flashplayer" ETCDIR="etc/flashplayer" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/flashplayer DOCSDIR=/usr/local/share/doc/flashplayer EXAMPLESDIR=/usr/local/share/examples/flashplayer WWWDIR=/usr/local/www/flashplayer ETCDIR=/usr/local/etc/flashplayer --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### ARCH=amd64 CONFIGURE_MAX_CMD_LEN=262144 HAVE_COMPAT_IA32_KERN=YES OPSYS=FreeBSD OSREL=11.0 OSVERSION=1100122 PYTHONBASE=/usr/local UID=0 _JAVA_OS_LIST_REGEXP=native\|linux _JAVA_VENDOR_LIST_REGEXP=openjdk\|oracle\|sun _JAVA_VERSION_LIST_REGEXP=1.6\|1.7\|1.8\|1.6+\|1.7+\|1.8+ _OSRELEASE=11.0-RELEASE-p10 #### Misc Poudriere #### GID=0 DISABLE_MAKE_JOBS=poudriere ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 33554432 stack size (kbytes, -s) 524288 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited socket buffer size (bytes, -b) unlimited pseudo-terminals (-p) unlimited kqueues (-k) unlimited umtx shared locks (-o) unlimited --End resource limits-- =================================================== =========================================================================== =================================================== ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.10.1.txz [110amd64-default-job-16] Installing pkg-1.10.1... [110amd64-default-job-16] Extracting pkg-1.10.1: .......... done ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of linux-flashplayer-25.0.0.171 =========================================================================== =================================================== =========================================================================== =================================================== => flash_player_npapi_linux.i386.tar.gz doesn't seem to exist in /portdistfiles/flashplayer/25.0.0.171. => Attempting to fetch https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Couldn't fetch it - please try to retrieve this => port manually into /portdistfiles/flashplayer/25.0.0.171 and try again. *** Error code 1 Stop. make: stopped in /usr/ports/www/linux-flashplayer From owner-freebsd-emulation@freebsd.org Thu Jun 15 01:14:28 2017 Return-Path: Delivered-To: freebsd-emulation@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 A3432BF83C7 for ; Thu, 15 Jun 2017 01:14:28 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 90D8080019 for ; Thu, 15 Jun 2017 01:14:28 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 90539BF83C6; Thu, 15 Jun 2017 01:14:28 +0000 (UTC) Delivered-To: emulation@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 8FB87BF83C3; Thu, 15 Jun 2017 01:14:28 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy1.nyi.freebsd.org (beefy1.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:e4]) (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 6B0C780017; Thu, 15 Jun 2017 01:14:28 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy1.nyi.freebsd.org (localhost [127.0.0.1]) by beefy1.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5F1ERic034909; Thu, 15 Jun 2017 01:14:27 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy1.nyi.freebsd.org (8.15.2/8.15.2/Submit) id v5F1ERvl034886; Thu, 15 Jun 2017 01:14:27 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Thu, 15 Jun 2017 01:14:27 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201706150114.v5F1ERvl034886@beefy1.nyi.freebsd.org> To: emulation@FreeBSD.org Subject: [package - 110i386-quarterly][www/linux-flashplayer] Failed for linux-flashplayer-25.0.0.171 in fetch Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 01:14:28 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: emulation@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: branches/2017Q2/www/linux-flashplayer/Makefile 440959 2017-05-15 17:07:47Z jkim $ Log URL: http://beefy1.nyi.freebsd.org/data/110i386-quarterly/443609/logs/linux-flashplayer-25.0.0.171.log Build URL: http://beefy1.nyi.freebsd.org/build.html?mastername=110i386-quarterly&build=443609 Log: ====>> Building www/linux-flashplayer build started at Thu Jun 15 01:14:25 UTC 2017 port directory: /usr/ports/www/linux-flashplayer building for: FreeBSD 110i386-quarterly-job-07 11.0-RELEASE-p10 FreeBSD 11.0-RELEASE-p10 i386 maintained by: emulation@FreeBSD.org Makefile ident: $FreeBSD: branches/2017Q2/www/linux-flashplayer/Makefile 440959 2017-05-15 17:07:47Z jkim $ Poudriere version: 3.1.19-25-ge7583333 Host OSVERSION: 1200031 Jail OSVERSION: 1100122 Job Id: 07 ---Begin Environment--- SHELL=/bin/csh UNAME_p=i386 UNAME_m=i386 OSVERSION=1100122 UNAME_v=FreeBSD 11.0-RELEASE-p10 UNAME_r=11.0-RELEASE-p10 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/110i386-quarterly/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=linux-flashplayer-25.0.0.171 OLDPWD=/ PWD=/usr/local/poudriere/data/.m/110i386-quarterly/ref/.p/pool MASTERNAME=110i386-quarterly SCRIPTPREFIX=/usr/local/share/poudriere USER=root HOME=/root POUDRIERE_VERSION=3.1.19-25-ge7583333 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -m 555" BSD_INSTALL_LIB="install -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- WEBPLUGIN_DIR="lib/browser_plugins/linux-flashplayer" OSREL=11.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/flashplayer" EXAMPLESDIR="share/examples/flashplayer" DATADIR="share/flashplayer" WWWDIR="www/flashplayer" ETCDIR="etc/flashplayer" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/flashplayer DOCSDIR=/usr/local/share/doc/flashplayer EXAMPLESDIR=/usr/local/share/examples/flashplayer WWWDIR=/usr/local/www/flashplayer ETCDIR=/usr/local/etc/flashplayer --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes MACHINE=i386 MACHINE_ARCH=i386 ARCH=${MACHINE_ARCH} #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### ARCH=i386 CONFIGURE_MAX_CMD_LEN=262144 OPSYS=FreeBSD OSREL=11.0 OSVERSION=1100122 PYTHONBASE=/usr/local UID=0 _JAVA_OS_LIST_REGEXP=native\|linux _JAVA_VENDOR_LIST_REGEXP=openjdk\|oracle\|sun _JAVA_VERSION_LIST_REGEXP=1.6\|1.7\|1.8\|1.6+\|1.7+\|1.8+ _OSRELEASE=11.0-RELEASE-p10 #### Misc Poudriere #### GID=0 DISABLE_MAKE_JOBS=poudriere ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 524288 stack size (kbytes, -s) 65536 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited socket buffer size (bytes, -b) unlimited pseudo-terminals (-p) unlimited kqueues (-k) unlimited umtx shared locks (-o) unlimited --End resource limits-- =================================================== =========================================================================== =================================================== ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.10.1.txz [110i386-quarterly-job-07] Installing pkg-1.10.1... [110i386-quarterly-job-07] Extracting pkg-1.10.1: .......... done ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of linux-flashplayer-25.0.0.171 =========================================================================== =================================================== =========================================================================== =================================================== => flash_player_npapi_linux.i386.tar.gz doesn't seem to exist in /portdistfiles/flashplayer/25.0.0.171. => Attempting to fetch https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Couldn't fetch it - please try to retrieve this => port manually into /portdistfiles/flashplayer/25.0.0.171 and try again. *** Error code 1 Stop. make: stopped in /usr/ports/www/linux-flashplayer From owner-freebsd-emulation@freebsd.org Thu Jun 15 01:15:01 2017 Return-Path: Delivered-To: freebsd-emulation@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 55F59BF845C for ; Thu, 15 Jun 2017 01:15:01 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 41A6C80044 for ; Thu, 15 Jun 2017 01:15:01 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 4100BBF8459; Thu, 15 Jun 2017 01:15:01 +0000 (UTC) Delivered-To: emulation@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 40793BF8458; Thu, 15 Jun 2017 01:15:01 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy10.nyi.freebsd.org (beefy10.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:ed]) (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 1C8DA80043; Thu, 15 Jun 2017 01:15:01 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy10.nyi.freebsd.org (localhost [127.0.0.1]) by beefy10.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5F1F0XO059230; Thu, 15 Jun 2017 01:15:00 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy10.nyi.freebsd.org (8.15.2/8.15.2/Submit) id v5F1F0fG059210; Thu, 15 Jun 2017 01:15:00 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Thu, 15 Jun 2017 01:15:00 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201706150115.v5F1F0fG059210@beefy10.nyi.freebsd.org> To: emulation@FreeBSD.org Subject: [package - 110i386-default][www/linux-flashplayer] Failed for linux-flashplayer-25.0.0.171 in fetch Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 01:15:01 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: emulation@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: head/www/linux-flashplayer/Makefile 440862 2017-05-14 05:55:19Z jkim $ Log URL: http://beefy10.nyi.freebsd.org/data/110i386-default/443611/logs/linux-flashplayer-25.0.0.171.log Build URL: http://beefy10.nyi.freebsd.org/build.html?mastername=110i386-default&build=443611 Log: ====>> Building www/linux-flashplayer build started at Thu Jun 15 01:14:58 UTC 2017 port directory: /usr/ports/www/linux-flashplayer building for: FreeBSD 110i386-default-job-15 11.0-RELEASE-p10 FreeBSD 11.0-RELEASE-p10 i386 maintained by: emulation@FreeBSD.org Makefile ident: $FreeBSD: head/www/linux-flashplayer/Makefile 440862 2017-05-14 05:55:19Z jkim $ Poudriere version: 3.1.19-25-ge7583333 Host OSVERSION: 1200031 Jail OSVERSION: 1100122 Job Id: 15 ---Begin Environment--- SHELL=/bin/csh UNAME_p=i386 UNAME_m=i386 OSVERSION=1100122 UNAME_v=FreeBSD 11.0-RELEASE-p10 UNAME_r=11.0-RELEASE-p10 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/110i386-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=linux-flashplayer-25.0.0.171 OLDPWD=/ PWD=/usr/local/poudriere/data/.m/110i386-default/ref/.p/pool MASTERNAME=110i386-default SCRIPTPREFIX=/usr/local/share/poudriere USER=root HOME=/root POUDRIERE_VERSION=3.1.19-25-ge7583333 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -m 555" BSD_INSTALL_LIB="install -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- WEBPLUGIN_DIR="lib/browser_plugins/linux-flashplayer" OSREL=11.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/flashplayer" EXAMPLESDIR="share/examples/flashplayer" DATADIR="share/flashplayer" WWWDIR="www/flashplayer" ETCDIR="etc/flashplayer" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/flashplayer DOCSDIR=/usr/local/share/doc/flashplayer EXAMPLESDIR=/usr/local/share/examples/flashplayer WWWDIR=/usr/local/www/flashplayer ETCDIR=/usr/local/etc/flashplayer --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes MACHINE=i386 MACHINE_ARCH=i386 ARCH=${MACHINE_ARCH} #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### ARCH=i386 CONFIGURE_MAX_CMD_LEN=262144 OPSYS=FreeBSD OSREL=11.0 OSVERSION=1100122 PYTHONBASE=/usr/local UID=0 _JAVA_OS_LIST_REGEXP=native\|linux _JAVA_VENDOR_LIST_REGEXP=openjdk\|oracle\|sun _JAVA_VERSION_LIST_REGEXP=1.6\|1.7\|1.8\|1.6+\|1.7+\|1.8+ _OSRELEASE=11.0-RELEASE-p10 #### Misc Poudriere #### GID=0 DISABLE_MAKE_JOBS=poudriere ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 524288 stack size (kbytes, -s) 65536 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited socket buffer size (bytes, -b) unlimited pseudo-terminals (-p) unlimited kqueues (-k) unlimited umtx shared locks (-o) unlimited --End resource limits-- =================================================== =========================================================================== =================================================== ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.10.1.txz [110i386-default-job-15] Installing pkg-1.10.1... [110i386-default-job-15] Extracting pkg-1.10.1: .......... done ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of linux-flashplayer-25.0.0.171 =========================================================================== =================================================== =========================================================================== =================================================== => flash_player_npapi_linux.i386.tar.gz doesn't seem to exist in /portdistfiles/flashplayer/25.0.0.171. => Attempting to fetch https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Couldn't fetch it - please try to retrieve this => port manually into /portdistfiles/flashplayer/25.0.0.171 and try again. *** Error code 1 Stop. make: stopped in /usr/ports/www/linux-flashplayer From owner-freebsd-emulation@freebsd.org Thu Jun 15 01:14:59 2017 Return-Path: Delivered-To: freebsd-emulation@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 8BDCEBF8450 for ; Thu, 15 Jun 2017 01:14:59 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 790A980042 for ; Thu, 15 Jun 2017 01:14:59 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 78592BF844E; Thu, 15 Jun 2017 01:14:59 +0000 (UTC) Delivered-To: emulation@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 77D6CBF844C; Thu, 15 Jun 2017 01:14:59 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy6.nyi.freebsd.org (beefy6.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:e9]) (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 3A4EA80040; Thu, 15 Jun 2017 01:14:59 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy6.nyi.freebsd.org (localhost [127.0.0.1]) by beefy6.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5F1EwQ3067024; Thu, 15 Jun 2017 01:14:58 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy6.nyi.freebsd.org (8.15.2/8.15.2/Submit) id v5F1EwoX067023; Thu, 15 Jun 2017 01:14:58 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Thu, 15 Jun 2017 01:14:58 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201706150114.v5F1EwoX067023@beefy6.nyi.freebsd.org> To: emulation@FreeBSD.org Subject: [package - 103amd64-default][www/linux-flashplayer] Failed for linux-flashplayer-25.0.0.171 in fetch Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 01:14:59 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: emulation@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: head/www/linux-flashplayer/Makefile 440862 2017-05-14 05:55:19Z jkim $ Log URL: http://beefy6.nyi.freebsd.org/data/103amd64-default/443611/logs/linux-flashplayer-25.0.0.171.log Build URL: http://beefy6.nyi.freebsd.org/build.html?mastername=103amd64-default&build=443611 Log: ====>> Building www/linux-flashplayer build started at Thu Jun 15 01:14:56 UTC 2017 port directory: /usr/ports/www/linux-flashplayer building for: FreeBSD 103amd64-default-job-13 10.3-RELEASE-p19 FreeBSD 10.3-RELEASE-p19 amd64 maintained by: emulation@FreeBSD.org Makefile ident: $FreeBSD: head/www/linux-flashplayer/Makefile 440862 2017-05-14 05:55:19Z jkim $ Poudriere version: 3.1.19-25-ge7583333 Host OSVERSION: 1200031 Jail OSVERSION: 1003000 Job Id: 13 ---Begin Environment--- SHELL=/bin/csh OSVERSION=1003000 UNAME_v=FreeBSD 10.3-RELEASE-p19 UNAME_r=10.3-RELEASE-p19 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/103amd64-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=linux-flashplayer-25.0.0.171 OLDPWD=/ PWD=/usr/local/poudriere/data/.m/103amd64-default/ref/.p/pool MASTERNAME=103amd64-default SCRIPTPREFIX=/usr/local/share/poudriere USER=root HOME=/root POUDRIERE_VERSION=3.1.19-25-ge7583333 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" NO_PIE=yes WITHOUT_DEBUG_FILES=yes WITHOUT_KERNEL_SYMBOLS=yes SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -m 555" BSD_INSTALL_LIB="install -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- WEBPLUGIN_DIR="lib/browser_plugins/linux-flashplayer" OSREL=10.3 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/flashplayer" EXAMPLESDIR="share/examples/flashplayer" DATADIR="share/flashplayer" WWWDIR="www/flashplayer" ETCDIR="etc/flashplayer" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/flashplayer DOCSDIR=/usr/local/share/doc/flashplayer EXAMPLESDIR=/usr/local/share/examples/flashplayer WWWDIR=/usr/local/www/flashplayer ETCDIR=/usr/local/etc/flashplayer --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### ARCH=amd64 CONFIGURE_MAX_CMD_LEN=262144 HAVE_COMPAT_IA32_KERN=YES OPSYS=FreeBSD OSREL=10.3 OSVERSION=1003000 PYTHONBASE=/usr/local UID=0 _JAVA_OS_LIST_REGEXP=native\|linux _JAVA_VENDOR_LIST_REGEXP=openjdk\|oracle\|sun _JAVA_VERSION_LIST_REGEXP=1.6\|1.7\|1.8\|1.6+\|1.7+\|1.8+ _OSRELEASE=10.3-RELEASE-p19 #### Misc Poudriere #### GID=0 DISABLE_MAKE_JOBS=poudriere ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 33554432 stack size (kbytes, -s) 524288 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited sbsize (bytes, -b) unlimited pseudo-terminals (-p) unlimited --End resource limits-- =================================================== =========================================================================== =================================================== ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.10.1.txz [103amd64-default-job-13] Installing pkg-1.10.1... [103amd64-default-job-13] Extracting pkg-1.10.1: .......... done ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of linux-flashplayer-25.0.0.171 =========================================================================== =================================================== =========================================================================== =================================================== => flash_player_npapi_linux.i386.tar.gz doesn't seem to exist in /portdistfiles/flashplayer/25.0.0.171. => Attempting to fetch https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Couldn't fetch it - please try to retrieve this => port manually into /portdistfiles/flashplayer/25.0.0.171 and try again. *** Error code 1 Stop. make: stopped in /usr/ports/www/linux-flashplayer From owner-freebsd-emulation@freebsd.org Thu Jun 15 01:16:37 2017 Return-Path: Delivered-To: freebsd-emulation@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 1A072BF8687 for ; Thu, 15 Jun 2017 01:16:37 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 06A28801D6 for ; Thu, 15 Jun 2017 01:16:37 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 06145BF8686; Thu, 15 Jun 2017 01:16:37 +0000 (UTC) Delivered-To: emulation@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 056D8BF8684; Thu, 15 Jun 2017 01:16:37 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy5.nyi.freebsd.org (beefy5.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:e8]) (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 D1114801D4; Thu, 15 Jun 2017 01:16:36 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy5.nyi.freebsd.org (localhost [127.0.0.1]) by beefy5.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5F1GZ5F004787; Thu, 15 Jun 2017 01:16:35 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy5.nyi.freebsd.org (8.15.2/8.15.2/Submit) id v5F1GZvu004785; Thu, 15 Jun 2017 01:16:35 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Thu, 15 Jun 2017 01:16:35 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201706150116.v5F1GZvu004785@beefy5.nyi.freebsd.org> To: emulation@FreeBSD.org Subject: [package - 103i386-default][www/linux-flashplayer] Failed for linux-flashplayer-25.0.0.171 in fetch Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 01:16:37 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: emulation@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: head/www/linux-flashplayer/Makefile 440862 2017-05-14 05:55:19Z jkim $ Log URL: http://beefy5.nyi.freebsd.org/data/103i386-default/443611/logs/linux-flashplayer-25.0.0.171.log Build URL: http://beefy5.nyi.freebsd.org/build.html?mastername=103i386-default&build=443611 Log: ====>> Building www/linux-flashplayer build started at Thu Jun 15 01:16:33 UTC 2017 port directory: /usr/ports/www/linux-flashplayer building for: FreeBSD 103i386-default-job-24 10.3-RELEASE-p19 FreeBSD 10.3-RELEASE-p19 i386 maintained by: emulation@FreeBSD.org Makefile ident: $FreeBSD: head/www/linux-flashplayer/Makefile 440862 2017-05-14 05:55:19Z jkim $ Poudriere version: 3.1.19-25-ge7583333 Host OSVERSION: 1200031 Jail OSVERSION: 1003000 Job Id: 24 ---Begin Environment--- SHELL=/bin/csh UNAME_p=i386 UNAME_m=i386 OSVERSION=1003000 UNAME_v=FreeBSD 10.3-RELEASE-p19 UNAME_r=10.3-RELEASE-p19 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/103i386-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=linux-flashplayer-25.0.0.171 OLDPWD=/ PWD=/usr/local/poudriere/data/.m/103i386-default/ref/.p/pool MASTERNAME=103i386-default SCRIPTPREFIX=/usr/local/share/poudriere USER=root HOME=/root POUDRIERE_VERSION=3.1.19-25-ge7583333 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" NO_PIE=yes WITHOUT_DEBUG_FILES=yes WITHOUT_KERNEL_SYMBOLS=yes SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -m 555" BSD_INSTALL_LIB="install -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- WEBPLUGIN_DIR="lib/browser_plugins/linux-flashplayer" OSREL=10.3 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/flashplayer" EXAMPLESDIR="share/examples/flashplayer" DATADIR="share/flashplayer" WWWDIR="www/flashplayer" ETCDIR="etc/flashplayer" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/flashplayer DOCSDIR=/usr/local/share/doc/flashplayer EXAMPLESDIR=/usr/local/share/examples/flashplayer WWWDIR=/usr/local/www/flashplayer ETCDIR=/usr/local/etc/flashplayer --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes MACHINE=i386 MACHINE_ARCH=i386 ARCH=${MACHINE_ARCH} #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### ARCH=i386 CONFIGURE_MAX_CMD_LEN=262144 OPSYS=FreeBSD OSREL=10.3 OSVERSION=1003000 PYTHONBASE=/usr/local UID=0 _JAVA_OS_LIST_REGEXP=native\|linux _JAVA_VENDOR_LIST_REGEXP=openjdk\|oracle\|sun _JAVA_VERSION_LIST_REGEXP=1.6\|1.7\|1.8\|1.6+\|1.7+\|1.8+ _OSRELEASE=10.3-RELEASE-p19 #### Misc Poudriere #### GID=0 DISABLE_MAKE_JOBS=poudriere ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 524288 stack size (kbytes, -s) 65536 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited sbsize (bytes, -b) unlimited pseudo-terminals (-p) unlimited --End resource limits-- =================================================== =========================================================================== =================================================== ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.10.1.txz [103i386-default-job-24] Installing pkg-1.10.1... [103i386-default-job-24] Extracting pkg-1.10.1: .......... done ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of linux-flashplayer-25.0.0.171 =========================================================================== =================================================== =========================================================================== =================================================== => flash_player_npapi_linux.i386.tar.gz doesn't seem to exist in /portdistfiles/flashplayer/25.0.0.171. => Attempting to fetch https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Couldn't fetch it - please try to retrieve this => port manually into /portdistfiles/flashplayer/25.0.0.171 and try again. *** Error code 1 Stop. make: stopped in /usr/ports/www/linux-flashplayer From owner-freebsd-emulation@freebsd.org Thu Jun 15 01:38:11 2017 Return-Path: Delivered-To: freebsd-emulation@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 B8FBDBF9F2E for ; Thu, 15 Jun 2017 01:38:11 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id A34FB81206 for ; Thu, 15 Jun 2017 01:38:11 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id A2AB3BF9F2D; Thu, 15 Jun 2017 01:38:11 +0000 (UTC) Delivered-To: emulation@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 A2058BF9F2B; Thu, 15 Jun 2017 01:38:11 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy11.nyi.freebsd.org (beefy11.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:ee]) (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 79E3C81200; Thu, 15 Jun 2017 01:38:11 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy11.nyi.freebsd.org (localhost [127.0.0.1]) by beefy11.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5F1cAmW076158; Thu, 15 Jun 2017 01:38:10 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy11.nyi.freebsd.org (8.15.2/8.15.2/Submit) id v5F1cAjI076141; Thu, 15 Jun 2017 01:38:10 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Thu, 15 Jun 2017 01:38:10 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201706150138.v5F1cAjI076141@beefy11.nyi.freebsd.org> To: emulation@FreeBSD.org Subject: [package - head-i386-default][www/linux-flashplayer] Failed for linux-flashplayer-25.0.0.171 in fetch Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 01:38:11 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: emulation@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: head/www/linux-flashplayer/Makefile 440862 2017-05-14 05:55:19Z jkim $ Log URL: http://beefy11.nyi.freebsd.org/data/head-i386-default/p443611_s319962/logs/linux-flashplayer-25.0.0.171.log Build URL: http://beefy11.nyi.freebsd.org/build.html?mastername=head-i386-default&build=p443611_s319962 Log: ====>> Building www/linux-flashplayer build started at Thu Jun 15 01:38:07 UTC 2017 port directory: /usr/ports/www/linux-flashplayer building for: FreeBSD head-i386-default-job-18 12.0-CURRENT FreeBSD 12.0-CURRENT 1200032 i386 maintained by: emulation@FreeBSD.org Makefile ident: $FreeBSD: head/www/linux-flashplayer/Makefile 440862 2017-05-14 05:55:19Z jkim $ Poudriere version: 3.1.19-25-ge7583333 Host OSVERSION: 1200031 Jail OSVERSION: 1200032 Job Id: 18 !!! Jail is newer than host. (Jail: 1200032, Host: 1200031) !!! !!! This is not supported. !!! !!! Host kernel must be same or newer than jail. !!! !!! Expect build failures. !!! ---Begin Environment--- SHELL=/bin/csh UNAME_p=i386 UNAME_m=i386 OSVERSION=1200032 UNAME_v=FreeBSD 12.0-CURRENT 1200032 UNAME_r=12.0-CURRENT BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/head-i386-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=linux-flashplayer-25.0.0.171 OLDPWD=/ PWD=/usr/local/poudriere/data/.m/head-i386-default/ref/.p/pool MASTERNAME=head-i386-default SCRIPTPREFIX=/usr/local/share/poudriere USER=root HOME=/root POUDRIERE_VERSION=3.1.19-25-ge7583333 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -m 555" BSD_INSTALL_LIB="install -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- WEBPLUGIN_DIR="lib/browser_plugins/linux-flashplayer" OSREL=12.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/flashplayer" EXAMPLESDIR="share/examples/flashplayer" DATADIR="share/flashplayer" WWWDIR="www/flashplayer" ETCDIR="etc/flashplayer" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/flashplayer DOCSDIR=/usr/local/share/doc/flashplayer EXAMPLESDIR=/usr/local/share/examples/flashplayer WWWDIR=/usr/local/www/flashplayer ETCDIR=/usr/local/etc/flashplayer --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes MACHINE=i386 MACHINE_ARCH=i386 ARCH=${MACHINE_ARCH} #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### ARCH=i386 CONFIGURE_MAX_CMD_LEN=262144 OPSYS=FreeBSD OSREL=12.0 OSVERSION=1200032 PYTHONBASE=/usr/local UID=0 _JAVA_OS_LIST_REGEXP=native\|linux _JAVA_VENDOR_LIST_REGEXP=openjdk\|oracle\|sun _JAVA_VERSION_LIST_REGEXP=1.6\|1.7\|1.8\|1.6+\|1.7+\|1.8+ _OSRELEASE=12.0-CURRENT #### Misc Poudriere #### GID=0 DISABLE_MAKE_JOBS=poudriere ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 524288 stack size (kbytes, -s) 65536 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited socket buffer size (bytes, -b) unlimited pseudo-terminals (-p) unlimited kqueues (-k) unlimited umtx shared locks (-o) unlimited --End resource limits-- =================================================== =========================================================================== =================================================== ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.10.1.txz [head-i386-default-job-18] Installing pkg-1.10.1... [head-i386-default-job-18] Extracting pkg-1.10.1: .......... done ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of linux-flashplayer-25.0.0.171 =========================================================================== =================================================== =========================================================================== =================================================== => flash_player_npapi_linux.i386.tar.gz doesn't seem to exist in /portdistfiles/flashplayer/25.0.0.171. => Attempting to fetch https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Couldn't fetch it - please try to retrieve this => port manually into /portdistfiles/flashplayer/25.0.0.171 and try again. *** Error code 1 Stop. make: stopped in /usr/ports/www/linux-flashplayer From owner-freebsd-emulation@freebsd.org Thu Jun 15 01:41:58 2017 Return-Path: Delivered-To: freebsd-emulation@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 C7538BFA369 for ; Thu, 15 Jun 2017 01:41:58 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id B4DA9815C5 for ; Thu, 15 Jun 2017 01:41:58 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id B451EBFA367; Thu, 15 Jun 2017 01:41:58 +0000 (UTC) Delivered-To: emulation@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 B3D4CBFA366; Thu, 15 Jun 2017 01:41:58 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy12.nyi.freebsd.org (beefy12.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:ef]) (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 8EB60815C3; Thu, 15 Jun 2017 01:41:58 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy12.nyi.freebsd.org (localhost [127.0.0.1]) by beefy12.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5F1fvVr040851; Thu, 15 Jun 2017 01:41:57 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy12.nyi.freebsd.org (8.15.2/8.15.2/Submit) id v5F1fvsZ040838; Thu, 15 Jun 2017 01:41:57 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Thu, 15 Jun 2017 01:41:57 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201706150141.v5F1fvsZ040838@beefy12.nyi.freebsd.org> To: emulation@FreeBSD.org Subject: [package - head-amd64-default][www/linux-flashplayer] Failed for linux-flashplayer-25.0.0.171 in fetch Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 01:41:58 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: emulation@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: head/www/linux-flashplayer/Makefile 440862 2017-05-14 05:55:19Z jkim $ Log URL: http://beefy12.nyi.freebsd.org/data/head-amd64-default/p443611_s319962/logs/linux-flashplayer-25.0.0.171.log Build URL: http://beefy12.nyi.freebsd.org/build.html?mastername=head-amd64-default&build=p443611_s319962 Log: ====>> Building www/linux-flashplayer build started at Thu Jun 15 01:41:55 UTC 2017 port directory: /usr/ports/www/linux-flashplayer building for: FreeBSD head-amd64-default-job-17 12.0-CURRENT FreeBSD 12.0-CURRENT 1200032 amd64 maintained by: emulation@FreeBSD.org Makefile ident: $FreeBSD: head/www/linux-flashplayer/Makefile 440862 2017-05-14 05:55:19Z jkim $ Poudriere version: 3.1.19-25-ge7583333 Host OSVERSION: 1200031 Jail OSVERSION: 1200032 Job Id: 17 !!! Jail is newer than host. (Jail: 1200032, Host: 1200031) !!! !!! This is not supported. !!! !!! Host kernel must be same or newer than jail. !!! !!! Expect build failures. !!! ---Begin Environment--- SHELL=/bin/csh OSVERSION=1200032 UNAME_v=FreeBSD 12.0-CURRENT 1200032 UNAME_r=12.0-CURRENT BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/head-amd64-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=linux-flashplayer-25.0.0.171 OLDPWD=/ PWD=/usr/local/poudriere/data/.m/head-amd64-default/ref/.p/pool MASTERNAME=head-amd64-default SCRIPTPREFIX=/usr/local/share/poudriere USER=root HOME=/root POUDRIERE_VERSION=3.1.19-25-ge7583333 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -m 555" BSD_INSTALL_LIB="install -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- WEBPLUGIN_DIR="lib/browser_plugins/linux-flashplayer" OSREL=12.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/flashplayer" EXAMPLESDIR="share/examples/flashplayer" DATADIR="share/flashplayer" WWWDIR="www/flashplayer" ETCDIR="etc/flashplayer" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/flashplayer DOCSDIR=/usr/local/share/doc/flashplayer EXAMPLESDIR=/usr/local/share/examples/flashplayer WWWDIR=/usr/local/www/flashplayer ETCDIR=/usr/local/etc/flashplayer --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### ARCH=amd64 CONFIGURE_MAX_CMD_LEN=262144 HAVE_COMPAT_IA32_KERN=YES OPSYS=FreeBSD OSREL=12.0 OSVERSION=1200032 PYTHONBASE=/usr/local UID=0 _JAVA_OS_LIST_REGEXP=native\|linux _JAVA_VENDOR_LIST_REGEXP=openjdk\|oracle\|sun _JAVA_VERSION_LIST_REGEXP=1.6\|1.7\|1.8\|1.6+\|1.7+\|1.8+ _OSRELEASE=12.0-CURRENT #### Misc Poudriere #### GID=0 DISABLE_MAKE_JOBS=poudriere ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 33554432 stack size (kbytes, -s) 524288 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited socket buffer size (bytes, -b) unlimited pseudo-terminals (-p) unlimited kqueues (-k) unlimited umtx shared locks (-o) unlimited --End resource limits-- =================================================== =========================================================================== =================================================== ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.10.1.txz [head-amd64-default-job-17] Installing pkg-1.10.1... [head-amd64-default-job-17] Extracting pkg-1.10.1: .......... done ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of linux-flashplayer-25.0.0.171 =========================================================================== =================================================== =========================================================================== =================================================== => flash_player_npapi_linux.i386.tar.gz doesn't seem to exist in /portdistfiles/flashplayer/25.0.0.171. => Attempting to fetch https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Couldn't fetch it - please try to retrieve this => port manually into /portdistfiles/flashplayer/25.0.0.171 and try again. *** Error code 1 Stop. make: stopped in /usr/ports/www/linux-flashplayer From owner-freebsd-emulation@freebsd.org Thu Jun 15 02:40:36 2017 Return-Path: Delivered-To: freebsd-emulation@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 CFE45BFCA11 for ; Thu, 15 Jun 2017 02:40:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id AC3F28358A for ; Thu, 15 Jun 2017 02:40:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id ABB51BFCA0F; Thu, 15 Jun 2017 02:40:36 +0000 (UTC) Delivered-To: emulation@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 AB64EBFCA0E for ; Thu, 15 Jun 2017 02:40:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 7E8B083589 for ; Thu, 15 Jun 2017 02:40:36 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id A7909180D0; Thu, 15 Jun 2017 02:40:35 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 9328E180CC for ; Thu, 15 Jun 2017 02:40:35 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 389108357E for ; Thu, 15 Jun 2017 02:40:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5F2eXCa062691 for ; Thu, 15 Jun 2017 02:40:34 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: [Bug 219994] VirtualBox crashes 11.1-BETA1 Date: Thu, 15 Jun 2017 02:40:33 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-Mailman-Approved-At: Thu, 15 Jun 2017 03:15:11 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 02:40:36 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219994 --- Comment #8 from commit-hook@freebsd.org --- A commit references this bug: Author: jkim Date: Thu Jun 15 02:39:34 UTC 2017 New revision: 319963 URL: https://svnweb.freebsd.org/changeset/base/319963 Log: Null pointer must be checked before use. This fixes a regression introdu= ced in r318716. Note it is a direct commit to stable/11 because head removed support for idle page zeroing in r305362. PR: 219994 Reviewed by: markj Approved by: re (gjb) Changes: stable/11/sys/vm/vm_page.c --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Thu Jun 15 08:42:28 2017 Return-Path: Delivered-To: freebsd-emulation@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 96D79C78DC6 for ; Thu, 15 Jun 2017 08:42:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 7ECD76ACB9 for ; Thu, 15 Jun 2017 08:42:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 7E0CFC78DC5; Thu, 15 Jun 2017 08:42:28 +0000 (UTC) Delivered-To: emulation@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 7DACBC78DC4 for ; Thu, 15 Jun 2017 08:42:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 6C2276ACB7 for ; Thu, 15 Jun 2017 08:42:28 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5F8gSMG081076 for ; Thu, 15 Jun 2017 08:42:28 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: [Bug 219912] emulators/linux_base-c6: lacks a package manager Date: Thu, 15 Jun 2017 08:42:28 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: xmj@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: emulation@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 08:42:28 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219912 Johannes Jost Meixner changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |xmj@FreeBSD.org --- Comment #1 from Johannes Jost Meixner --- This is intentional. Using yum you have no guarantee over what's installed = to /compat/linux (FreeBSD does not use yum) and would not be able to use pkg to cleanly delete packages. If you have a need for a particular package you should file a PR for this. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Thu Jun 15 09:06:17 2017 Return-Path: Delivered-To: freebsd-emulation@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 46E0BC79601 for ; Thu, 15 Jun 2017 09:06:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 2D1E66E5E6 for ; Thu, 15 Jun 2017 09:06:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 297E0C795FE; Thu, 15 Jun 2017 09:06:17 +0000 (UTC) Delivered-To: emulation@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 275A4C795FD for ; Thu, 15 Jun 2017 09:06:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 0CA656E5E4 for ; Thu, 15 Jun 2017 09:06:17 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5F96GnP075914 for ; Thu, 15 Jun 2017 09:06:16 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: [Bug 208434] emulators/linux_base-c6 compat.linux.osrelease info out of date for FreeBSD 10.3 RC3? Date: Thu, 15 Jun 2017 09:06:16 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: remko@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: remko@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 09:06:17 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D208434 Remko Lodder changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-doc@FreeBSD.org |remko@FreeBSD.org --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-emulation@freebsd.org Thu Jun 15 09:09:34 2017 Return-Path: Delivered-To: freebsd-emulation@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 2BC2FC79764 for ; Thu, 15 Jun 2017 09:09:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 130866E793 for ; Thu, 15 Jun 2017 09:09:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 0F452C79763; Thu, 15 Jun 2017 09:09:34 +0000 (UTC) Delivered-To: emulation@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 0EEADC79762 for ; Thu, 15 Jun 2017 09:09:34 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 F07EF6E792 for ; Thu, 15 Jun 2017 09:09:33 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5F99XdJ084952 for ; Thu, 15 Jun 2017 09:09:33 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: [Bug 208434] emulators/linux_base-c6 compat.linux.osrelease info out of date for FreeBSD 10.3 RC3? Date: Thu, 15 Jun 2017 09:09:34 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: remko@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 09:09:34 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D208434 --- Comment #3 from commit-hook@freebsd.org --- A commit references this bug: Author: remko Date: Thu Jun 15 09:08:36 UTC 2017 New revision: 50370 URL: https://svnweb.freebsd.org/changeset/doc/50370 Log: Remove two lines that are no longer needed. PR: 208434 Submitted by: papowell@astart.com, xmj Changes: head/en_US.ISO8859-1/books/handbook/linuxemu/chapter.xml --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-emulation@freebsd.org Thu Jun 15 09:21:55 2017 Return-Path: Delivered-To: freebsd-emulation@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 E32F7C7992B for ; Thu, 15 Jun 2017 09:21:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id CB9FC6EBC0 for ; Thu, 15 Jun 2017 09:21:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id C7BC8C7992A; Thu, 15 Jun 2017 09:21:55 +0000 (UTC) Delivered-To: emulation@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 C75B4C79929 for ; Thu, 15 Jun 2017 09:21:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 B64366EBBF for ; Thu, 15 Jun 2017 09:21:55 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5F9LtGQ005418 for ; Thu, 15 Jun 2017 09:21:55 GMT (envelope-from bugzilla-noreply@freebsd.org) Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: maintainer-feedback requested: [Bug 220006] www/linux-flashplayer: update to 26.0.0.126 Date: Thu, 15 Jun 2017 09:21:55 +0000 X-Bugzilla-Type: request X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: emulation@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 09:21:56 -0000 Johannes Jost Meixner has reassigned Bugzilla Automation 's request for maintainer-feedback to emulation@FreeBSD.org: Bug 220006: www/linux-flashplayer: update to 26.0.0.126 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D220006 --- Description --- Created attachment 183492 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D183492&action= =3Dedit security update According to Adobe's security bulletin APSB17-17 [1] our flashplayer version 25.0.0.171 is (once more) vulnerable. Patch attached addresses that. I have not been able to successfully test it (my setup currently involves firefox and linux c7, that's something that remains to be done. [1] https://helpx.adobe.com/security/products/flash-player/apsb17-17.html From owner-freebsd-emulation@freebsd.org Thu Jun 15 09:21:56 2017 Return-Path: Delivered-To: freebsd-emulation@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 3D9CCC79934 for ; Thu, 15 Jun 2017 09:21:56 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 2548C6EBC6 for ; Thu, 15 Jun 2017 09:21:56 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 249E7C79932; Thu, 15 Jun 2017 09:21:56 +0000 (UTC) Delivered-To: emulation@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 2442DC79930 for ; Thu, 15 Jun 2017 09:21:56 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 125456EBC5 for ; Thu, 15 Jun 2017 09:21:56 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5F9LtGU005418 for ; Thu, 15 Jun 2017 09:21:55 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: [Bug 220006] www/linux-flashplayer: update to 26.0.0.126 Date: Thu, 15 Jun 2017 09:21:55 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: xmj@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: emulation@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 09:21:56 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D220006 Bug ID: 220006 Summary: www/linux-flashplayer: update to 26.0.0.126 Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: emulation@FreeBSD.org Reporter: xmj@FreeBSD.org Assignee: emulation@FreeBSD.org Flags: maintainer-feedback?(emulation@FreeBSD.org) Created attachment 183492 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D183492&action= =3Dedit security update According to Adobe's security bulletin APSB17-17 [1] our flashplayer version 25.0.0.171 is (once more) vulnerable. Patch attached addresses that. I have not been able to successfully test it (my setup currently involves firefox and linux c7, that's something that remains to be done. [1] https://helpx.adobe.com/security/products/flash-player/apsb17-17.html --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Thu Jun 15 09:22:07 2017 Return-Path: Delivered-To: freebsd-emulation@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 A35A6C7996C for ; Thu, 15 Jun 2017 09:22:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 894576ED78 for ; Thu, 15 Jun 2017 09:22:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 88A72C7996B; Thu, 15 Jun 2017 09:22:07 +0000 (UTC) Delivered-To: emulation@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 88573C7996A for ; Thu, 15 Jun 2017 09:22:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 758FD6ED77 for ; Thu, 15 Jun 2017 09:22:07 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5F9M7RF006350 for ; Thu, 15 Jun 2017 09:22:07 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: [Bug 220006] www/linux-flashplayer: update to 26.0.0.126 Date: Thu, 15 Jun 2017 09:22:07 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: xmj@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: emulation@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? merge-quarterly? X-Bugzilla-Changed-Fields: flagtypes.name cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 09:22:07 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D220006 Johannes Jost Meixner changed: What |Removed |Added ---------------------------------------------------------------------------- Flags| |merge-quarterly? CC| |xmj@FreeBSD.org --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Thu Jun 15 09:22:27 2017 Return-Path: Delivered-To: freebsd-emulation@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 6554DC79A94 for ; Thu, 15 Jun 2017 09:22:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 4C8396EE09 for ; Thu, 15 Jun 2017 09:22:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 4BE74C79A93; Thu, 15 Jun 2017 09:22:27 +0000 (UTC) Delivered-To: emulation@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 4B9BDC79A92 for ; Thu, 15 Jun 2017 09:22:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 39DC76EE08 for ; Thu, 15 Jun 2017 09:22:27 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5F9MQbS008227 for ; Thu, 15 Jun 2017 09:22:27 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: [Bug 219912] emulators/linux_base-c6: lacks a package manager Date: Thu, 15 Jun 2017 09:22:27 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: godevilove@ya.ru X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: emulation@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 09:22:27 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219912 --- Comment #2 from John Smith --- > Using yum you have no guarantee over what's installed to /compat/linux (F= reeBSD does not use yum) Could you expand on this? IMO, it's yum's job to guarantee what's getting installed into /compat/linux (if it works properly on FreeBSD's linuxulator). Does it fail to guarantee that? Or did you mean that if I install something using yum - pkg will not know a= bout that (IMO, that'd be absolutely logical and absolutely acceptable). > If you have a need for a particular package you should file a PR for this. So linux packages should get installed like all other ones? using pkg (or building from ports)? If so - then the pkg/ports repository now has a lot of linux packets, right? Then how to distinguish them from FreeBSD packets? Is there some naming convention maybe? I might be asking very newbie questions, but man page of linux_base-c6 does= n't cover that and folks on the IRC channel were not absolutely sure of how the system works. If there's either some FAQ/wiki somewhere - please link it, otherwise - ple= ase, describe all that stuff in a man page. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Thu Jun 15 09:39:30 2017 Return-Path: Delivered-To: freebsd-emulation@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 6B4BEC79CD2 for ; Thu, 15 Jun 2017 09:39:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 52BC06F1D7 for ; Thu, 15 Jun 2017 09:39:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 4F154C79CD1; Thu, 15 Jun 2017 09:39:30 +0000 (UTC) Delivered-To: emulation@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 4E9A9C79CD0 for ; Thu, 15 Jun 2017 09:39:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 3C6C36F1D6 for ; Thu, 15 Jun 2017 09:39:30 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5F9dUY8039299 for ; Thu, 15 Jun 2017 09:39:30 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: [Bug 208434] emulators/linux_base-c6 compat.linux.osrelease info out of date for FreeBSD 10.3 RC3? Date: Thu, 15 Jun 2017 09:39:30 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Documentation X-Bugzilla-Component: Documentation X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: remko@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: remko@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 09:39:30 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D208434 Remko Lodder changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Open |Closed Resolution|--- |FIXED --- Comment #4 from Remko Lodder --- I have fixed this in r50370. Thanks for the submission and your time to help us improve the documentatio= n. It is greatly appreciated! Remko --=20 You are receiving this mail because: You are on the CC list for the bug.= From owner-freebsd-emulation@freebsd.org Thu Jun 15 10:44:29 2017 Return-Path: Delivered-To: freebsd-emulation@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 67861D8722A for ; Thu, 15 Jun 2017 10:44:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 4F3AC70D1E for ; Thu, 15 Jun 2017 10:44:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 4B776D87228; Thu, 15 Jun 2017 10:44:29 +0000 (UTC) Delivered-To: emulation@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 4AEA9D87227 for ; Thu, 15 Jun 2017 10:44:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 38D5B70D1D for ; Thu, 15 Jun 2017 10:44:29 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5FAiSHD005328 for ; Thu, 15 Jun 2017 10:44:29 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: [Bug 219912] emulators/linux_base-c6: lacks a package manager Date: Thu, 15 Jun 2017 10:44:28 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: xmj@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: emulation@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 10:44:29 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219912 --- Comment #3 from Johannes Jost Meixner --- So, currently the way to install stuff into /compat/linux is using the read= ily available linux-c6- / linux-c7- modules. They're handled by pkg and libarch= ive: We take the rpm, extract it, install things to [port]/work/stage/compat/lin= ux, hash files, package it, ship it as .txz. Now the obvious problem with the status quo is that at no point does it inv= olve yum, so any yum database would have *no idea* which base packages are installed.=20 So if we shipped yum with linux_base-[c6/c7/whatever] this'd require: 1. integration of yum and pkg to a degree that doesn't exist nor is current= ly planned on the pkg side [afair] 2. a rework of the current linux infrastructure to use pkg-yum glue instead= of libarchive. That aside, some documentation can be found in the handbook: https://www.freebsd.org/doc/handbook/linuxemu.html#linuxemu-synopsis And we do have metapackages "linux-c6" / "linux-c7" that will pull in any possible linux package that is available, and (most likely) contains what you're looking for. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Thu Jun 15 02:46:21 2017 Return-Path: Delivered-To: freebsd-emulation@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 E0289BFCE33 for ; Thu, 15 Jun 2017 02:46:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id BE3B083A6F for ; Thu, 15 Jun 2017 02:46:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id BD9D9BFCE31; Thu, 15 Jun 2017 02:46:21 +0000 (UTC) Delivered-To: emulation@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 BD373BFCE30 for ; Thu, 15 Jun 2017 02:46:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8EAFD83A6E for ; Thu, 15 Jun 2017 02:46:21 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id A8890182EE; Thu, 15 Jun 2017 02:46:20 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 9105D182EC for ; Thu, 15 Jun 2017 02:46:20 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 D531983A67 for ; Thu, 15 Jun 2017 02:46:19 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5F2kJA0082251 for ; Thu, 15 Jun 2017 02:46:19 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: [Bug 219994] VirtualBox crashes 11.1-BETA1 Date: Thu, 15 Jun 2017 02:46:19 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: regression X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jkim@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: jkim@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: resolution assigned_to bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-Mailman-Approved-At: Thu, 15 Jun 2017 10:57:56 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 02:46:22 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219994 Jung-uk Kim changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Assignee|vbox@FreeBSD.org |jkim@FreeBSD.org Status|New |Closed --- Comment #9 from Jung-uk Kim --- It should be fixed now (r319963). Thanks! --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Thu Jun 15 08:06:04 2017 Return-Path: Delivered-To: freebsd-emulation@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 DDD92C7818B for ; Thu, 15 Jun 2017 08:06:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id BC2D0689C6 for ; Thu, 15 Jun 2017 08:06:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id BB976C78188; Thu, 15 Jun 2017 08:06:04 +0000 (UTC) Delivered-To: emulation@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 BB330C78187 for ; Thu, 15 Jun 2017 08:06:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 8A6C4689C3 for ; Thu, 15 Jun 2017 08:06:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id DEF7B1BD37; Thu, 15 Jun 2017 08:06:03 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id C635D1BD35 for ; Thu, 15 Jun 2017 08:06:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 075C5689C0 for ; Thu, 15 Jun 2017 08:06:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5F862U7094090 for ; Thu, 15 Jun 2017 08:06:02 GMT (envelope-from bugzilla-noreply@freebsd.org) Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: maintainer-feedback requested: [Bug 220003] emulators/virtualbox-ose: crashes on recent 12.0-CURRENT Date: Thu, 15 Jun 2017 08:06:02 +0000 X-Bugzilla-Type: request X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-Mailman-Approved-At: Thu, 15 Jun 2017 11:14:49 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 08:06:05 -0000 Johannes Jost Meixner has reassigned Bugzilla Automation 's request for maintainer-feedback to vbox@FreeBSD.or= g: Bug 220003: emulators/virtualbox-ose: crashes on recent 12.0-CURRENT https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D220003 --- Description --- I can start VMs through GUI or command line, but the moment I add port forwarding from guest to host (e.g. to expose the guest's SSH port on my lo= cal computer) I see a kernel panic like this (camera-taken) screenshot: http://imgur.com/NgP6KXL From owner-freebsd-emulation@freebsd.org Thu Jun 15 08:06:05 2017 Return-Path: Delivered-To: freebsd-emulation@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 F4046C7818C for ; Thu, 15 Jun 2017 08:06:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id D26A9689C7 for ; Thu, 15 Jun 2017 08:06:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id C95B2C7818A; Thu, 15 Jun 2017 08:06:04 +0000 (UTC) Delivered-To: emulation@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 C9005C78189 for ; Thu, 15 Jun 2017 08:06:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9BE86689C4 for ; Thu, 15 Jun 2017 08:06:04 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by freefall.freebsd.org (Postfix) id F17F51BD38; Thu, 15 Jun 2017 08:06:03 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id DD0621BD36 for ; Thu, 15 Jun 2017 08:06:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 2D837689C1 for ; Thu, 15 Jun 2017 08:06:03 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5F862U9094090 for ; Thu, 15 Jun 2017 08:06:03 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: vbox@FreeBSD.org Subject: [Bug 220003] emulators/virtualbox-ose: crashes on recent 12.0-CURRENT Date: Thu, 15 Jun 2017 08:06:02 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: xmj@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: vbox@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-Mailman-Approved-At: Thu, 15 Jun 2017 11:15:03 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 08:06:05 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D220003 Bug ID: 220003 Summary: emulators/virtualbox-ose: crashes on recent 12.0-CURRENT Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: vbox@FreeBSD.org Reporter: xmj@FreeBSD.org Flags: maintainer-feedback?(vbox@FreeBSD.org) Assignee: vbox@FreeBSD.org I can start VMs through GUI or command line, but the moment I add port forwarding from guest to host (e.g. to expose the guest's SSH port on my lo= cal computer) I see a kernel panic like this (camera-taken) screenshot: http://imgur.com/NgP6KXL --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Thu Jun 15 15:01:57 2017 Return-Path: Delivered-To: freebsd-emulation@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 19935D8C245 for ; Thu, 15 Jun 2017 15:01:57 +0000 (UTC) (envelope-from gpalmer@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id F012F781AC for ; Thu, 15 Jun 2017 15:01:56 +0000 (UTC) (envelope-from gpalmer@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id EF573D8C244; Thu, 15 Jun 2017 15:01:56 +0000 (UTC) Delivered-To: emulation@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 EEEAAD8C243 for ; Thu, 15 Jun 2017 15:01:56 +0000 (UTC) (envelope-from gpalmer@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C70DA781AB for ; Thu, 15 Jun 2017 15:01:56 +0000 (UTC) (envelope-from gpalmer@freebsd.org) Received: by freefall.freebsd.org (Postfix) id 2CAC91FD80; Thu, 15 Jun 2017 15:01:56 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id 157471FD7F for ; Thu, 15 Jun 2017 15:01:56 +0000 (UTC) (envelope-from gpalmer@freebsd.org) Received: from mail.in-addr.com (mail.in-addr.com [IPv6:2a01:4f8:191:61e8::2525:2525]) (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 37134781A7; Thu, 15 Jun 2017 15:01:55 +0000 (UTC) (envelope-from gpalmer@freebsd.org) Received: from gjp by mail.in-addr.com with local (Exim 4.89 (FreeBSD)) (envelope-from ) id 1dLWHQ-00026l-44; Thu, 15 Jun 2017 16:01:52 +0100 Date: Thu, 15 Jun 2017 16:01:51 +0100 From: Gary Palmer To: Daniel Tihanyi Cc: freebsd-virtualization@freebsd.org, vbox@freebsd.org Subject: Re: VBox 5 getting window height wrong Message-ID: <20170615150151.GC74033@in-addr.com> References: <20170614105419.GB74033@in-addr.com> <1497524900.6640.1.camel@fastmail.fm> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1497524900.6640.1.camel@fastmail.fm> X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: gpalmer@freebsd.org X-SA-Exim-Scanned: No (on mail.in-addr.com); SAEximRunCond expanded to false X-Mailman-Approved-At: Thu, 15 Jun 2017 15:56:36 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 15:01:57 -0000 [ add cc of vbox@freebsd.org which is a better list for this I think ] Hi, Updating to the correct Guest Additions doesn't fix the issue. Whether GA is installed or not doesn't seem to make much difference to this problem I've also changed from QT4 (which I was using) to QT5 with no change Thanks, Gary On Thu, Jun 15, 2017 at 01:08:20PM +0200, Daniel Tihanyi wrote: > Hi, > > Do you have the right version of Guest Additions installed on your > guests? I also have Windows 10 as a VM in VirtualBox (though it's > FreeBSD 11), but it works for me without any problems. > > Daniel Tihanyi > > On Wed, 2017-06-14 at 11:54 +0100, Gary Palmer wrote: > > Hi, > > > > Ever since upgrading from vbox 4 (which had occasional window placement > > or size issues, but nothing serious), vbox 5 has consistently had a problem > > where on starting a VM the window height is always reset to a fraction of > > what it should be. If I size the window properly by hand, and then select > > View -> Adjust Window Size it goes back to the wrong size again. > > > > Anyone else seen this? > > > > With Win10 it's worse - unless I maximise the window it keeps getting reset > > to the wrong height, I think by communication with the additions installed > > in the client. > > > > virtualbox-ose-5.1.22_1 General-purpose full virtualizer for x86 hardware > > virtualbox-ose-kmod-5.1.22 VirtualBox kernel module for FreeBSD > > > > 10.3-RELEASE-p18 > > > > Thanks, > > > > Gary > > > > P.S. Please keep me on CC as I am not subscribed to this list > > _______________________________________________ > > freebsd-virtualization@freebsd.org mailing list > > https://lists.freebsd.org/mailman/listinfo/freebsd-virtualization > > To unsubscribe, send any mail to "freebsd-virtualization-unsubscribe@freebsd.org" > From owner-freebsd-emulation@freebsd.org Thu Jun 15 18:10:40 2017 Return-Path: Delivered-To: freebsd-emulation@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 83E35D8F453 for ; Thu, 15 Jun 2017 18:10:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 6AD8E7E826 for ; Thu, 15 Jun 2017 18:10:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 674B0D8F452; Thu, 15 Jun 2017 18:10:40 +0000 (UTC) Delivered-To: emulation@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 66F9CD8F451 for ; Thu, 15 Jun 2017 18:10:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 549B67E825 for ; Thu, 15 Jun 2017 18:10:40 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5FIAeq1064844 for ; Thu, 15 Jun 2017 18:10:40 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: [Bug 220006] www/linux-flashplayer: update to 26.0.0.126 Date: Thu, 15 Jun 2017 18:10:40 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@freebsd.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: emulation@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? merge-quarterly? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 18:10:40 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D220006 --- Comment #1 from commit-hook@freebsd.org --- A commit references this bug: Author: jkim Date: Thu Jun 15 18:09:49 UTC 2017 New revision: 443622 URL: https://svnweb.freebsd.org/changeset/ports/443622 Log: Update to 26.0.0.126. https://helpx.adobe.com/security/products/flash-player/apsb17-17.html PR: 220006 MFH: 2017Q2 Changes: head/www/linux-flashplayer/Makefile head/www/linux-flashplayer/distinfo --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Thu Jun 15 18:11:10 2017 Return-Path: Delivered-To: freebsd-emulation@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 02AECD8F68C for ; Thu, 15 Jun 2017 18:11:10 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id DC5107E932 for ; Thu, 15 Jun 2017 18:11:09 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id DB8A5D8F68B; Thu, 15 Jun 2017 18:11:09 +0000 (UTC) Delivered-To: emulation@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 DB1B9D8F68A for ; Thu, 15 Jun 2017 18:11:09 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 C90297E931 for ; Thu, 15 Jun 2017 18:11:09 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5FIB9Br086182 for ; Thu, 15 Jun 2017 18:11:09 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: [Bug 220006] www/linux-flashplayer: update to 26.0.0.126 Date: Thu, 15 Jun 2017 18:11:09 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jkim@FreeBSD.org X-Bugzilla-Status: Closed X-Bugzilla-Resolution: FIXED X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: emulation@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? merge-quarterly? X-Bugzilla-Changed-Fields: cc bug_status resolution Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 18:11:10 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D220006 Jung-uk Kim changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jkim@FreeBSD.org Status|New |Closed Resolution|--- |FIXED --- Comment #2 from Jung-uk Kim --- Committed, thanks! --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Thu Jun 15 20:29:08 2017 Return-Path: Delivered-To: freebsd-emulation@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 8128DBEE1DF for ; Thu, 15 Jun 2017 20:29:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 692D0833DB for ; Thu, 15 Jun 2017 20:29:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 65542BEE1DE; Thu, 15 Jun 2017 20:29:08 +0000 (UTC) Delivered-To: emulation@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 64CDEBEE1DD for ; Thu, 15 Jun 2017 20:29:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 53951833DA for ; Thu, 15 Jun 2017 20:29:08 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5FKT8Ca094741 for ; Thu, 15 Jun 2017 20:29:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: [Bug 219912] emulators/linux_base-c6: lacks a package manager Date: Thu, 15 Jun 2017 20:29:08 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: godevilove@ya.ru X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: emulation@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Jun 2017 20:29:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219912 --- Comment #4 from John Smith --- (In reply to Johannes Jost Meixner from comment #3) > currently the way to install stuff into /compat/linux is using the readil= y available linux-c6- / linux-c7- modules. > Now the obvious problem with the status quo is that at no point does it i= nvolve yum, so any yum database would have *no idea* which base packages ar= e installed. What if I don't install any linux packages using linux-c6-* pkgs but instead use ONLY yum to manage linux packets? Wouldn't that solve all the problems? --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Fri Jun 16 07:47:24 2017 Return-Path: Delivered-To: freebsd-emulation@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 BF134BF9204 for ; Fri, 16 Jun 2017 07:47:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id A637A748CD for ; Fri, 16 Jun 2017 07:47:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id A2C44BF9203; Fri, 16 Jun 2017 07:47:24 +0000 (UTC) Delivered-To: emulation@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 A26E4BF9202 for ; Fri, 16 Jun 2017 07:47:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 8FC56748CC for ; Fri, 16 Jun 2017 07:47:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5G7lO36060129 for ; Fri, 16 Jun 2017 07:47:24 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: [Bug 219912] emulators/linux_base-c6: lacks a package manager Date: Fri, 16 Jun 2017 07:47:24 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: xmj@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: emulation@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2017 07:47:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219912 --- Comment #5 from Johannes Jost Meixner --- (In reply to John Smith from comment #4) In a sense. For you it'd solve the issue, with the side effect that yum won't apply patches/fixes we've collected over the years to guarantee that things actua= lly work. Individually we'd have no way of centrally shipping any linux packages, and would rely exclusively on documentation. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Fri Jun 16 13:17:46 2017 Return-Path: Delivered-To: freebsd-emulation@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 33CB3C087F6 for ; Fri, 16 Jun 2017 13:17:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 1B3EA7EA1C for ; Fri, 16 Jun 2017 13:17:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 17560C087F5; Fri, 16 Jun 2017 13:17:46 +0000 (UTC) Delivered-To: emulation@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 16D24C087F4 for ; Fri, 16 Jun 2017 13:17:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 039B37EA1B for ; Fri, 16 Jun 2017 13:17:46 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5GDHjOU015814 for ; Fri, 16 Jun 2017 13:17:45 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: [Bug 219912] emulators/linux_base-c6: lacks a package manager Date: Fri, 16 Jun 2017 13:17:45 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: pkubaj@anongoth.pl X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: emulation@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2017 13:17:46 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219912 Piotr Kubaj changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |pkubaj@anongoth.pl --- Comment #6 from Piotr Kubaj --- (In reply to John Smith from comment #4) The problem is that pkg manages all the packages, including the linux ones. Installing linux compatibility layer base port means putting stuff into /compat/linux. Adding more stuff with yum means that pkg won't know about this. You're goi= ng to have problems when removing the compatibility layer, since pkg will get confused about leftover files in /compat/linux. When you also install some ports which will require dependencies from ports, there's a possibility there will be a file conflict - binaries installed wi= th yum will conflict with the ones from ports. All in all, doing what you say would require deorbiting linux compatibility layer from ports and managing it only by yum. That will require some work, which is currently deemed unnecessary. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Fri Jun 16 13:20:24 2017 Return-Path: Delivered-To: freebsd-emulation@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 24914C08880 for ; Fri, 16 Jun 2017 13:20:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 0C7477EAA7 for ; Fri, 16 Jun 2017 13:20:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 08BBCC0887F; Fri, 16 Jun 2017 13:20:24 +0000 (UTC) Delivered-To: emulation@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 0853FC0887E for ; Fri, 16 Jun 2017 13:20:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 EAC667EAA6 for ; Fri, 16 Jun 2017 13:20:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5GDKNUp019728 for ; Fri, 16 Jun 2017 13:20:23 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: [Bug 219912] emulators/linux_base-c6: lacks a package manager Date: Fri, 16 Jun 2017 13:20:24 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: pkubaj@anongoth.pl X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: emulation@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2017 13:20:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D219912 --- Comment #7 from Piotr Kubaj --- Adding to what I wrote, you would need to invent another way of managing li= nux compatibility layer, like some script to install it, and another one to rem= ove it. Of course, you're free to do it, just install CentOS in a chroot to /compat/linux and there install yum. You don't have to do it with the ports way, but don't complain when something doesn't work. --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-emulation@freebsd.org Fri Jun 16 15:10:35 2017 Return-Path: Delivered-To: freebsd-emulation@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 02DE1C3116D for ; Fri, 16 Jun 2017 15:10:35 +0000 (UTC) (envelope-from gpalmer@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id E313983903 for ; Fri, 16 Jun 2017 15:10:34 +0000 (UTC) (envelope-from gpalmer@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id DF86EC3116C; Fri, 16 Jun 2017 15:10:34 +0000 (UTC) Delivered-To: emulation@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 DECE1C3116A; Fri, 16 Jun 2017 15:10:34 +0000 (UTC) (envelope-from gpalmer@freebsd.org) Received: from mail.in-addr.com (mail.in-addr.com [IPv6:2a01:4f8:191:61e8::2525:2525]) (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 AB29683901; Fri, 16 Jun 2017 15:10:34 +0000 (UTC) (envelope-from gpalmer@freebsd.org) Received: from gjp by mail.in-addr.com with local (Exim 4.89 (FreeBSD)) (envelope-from ) id 1dLstL-000Fju-M6; Fri, 16 Jun 2017 16:10:31 +0100 Date: Fri, 16 Jun 2017 16:10:31 +0100 From: Gary Palmer To: emulation@freebsd.org, freebsd-virtualization@freebsd.org Subject: Re: VBox 5 getting window height wrong Message-ID: <20170616151031.GD74033@in-addr.com> References: <20170614105419.GB74033@in-addr.com> <1497524900.6640.1.camel@fastmail.fm> <20170615150151.GC74033@in-addr.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170615150151.GC74033@in-addr.com> X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: gpalmer@freebsd.org X-SA-Exim-Scanned: No (on mail.in-addr.com); SAEximRunCond expanded to false X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Jun 2017 15:10:35 -0000 After a bit of digging, I've commented out two lines in src/VBox/Frontends/VirtualBox/src/runtime/normal/UIMachineWindowNormal.cpp that call VBoxGlobal::normalizeGeometry. That stops client windows from becoming midgets. Looking further into the logs it looks like VBox gets told my desktop is 5 pixels high (!) 00:00:00.525738 GUI: UIDesktopWidgetWatchdog::sltHandleHostScreenAvailableGeometryCalculated: Screen 0 work area is actually resized to: 0x599 x 1920x5 and then sends a setGeometry() request with height set to -26. If I get time I'll try and figure out Whisky Tango Foxtrot On Thu, Jun 15, 2017 at 04:01:51PM +0100, Gary Palmer wrote: > > [ add cc of vbox@freebsd.org which is a better list for this I think ] > > Hi, > > Updating to the correct Guest Additions doesn't fix the issue. Whether > GA is installed or not doesn't seem to make much difference to this problem > > I've also changed from QT4 (which I was using) to QT5 with no change > > Thanks, > > Gary > > On Thu, Jun 15, 2017 at 01:08:20PM +0200, Daniel Tihanyi wrote: > > Hi, > > > > Do you have the right version of Guest Additions installed on your > > guests? I also have Windows 10 as a VM in VirtualBox (though it's > > FreeBSD 11), but it works for me without any problems. > > > > Daniel Tihanyi > > > > On Wed, 2017-06-14 at 11:54 +0100, Gary Palmer wrote: > > > Hi, > > > > > > Ever since upgrading from vbox 4 (which had occasional window placement > > > or size issues, but nothing serious), vbox 5 has consistently had a problem > > > where on starting a VM the window height is always reset to a fraction of > > > what it should be. If I size the window properly by hand, and then select > > > View -> Adjust Window Size it goes back to the wrong size again. > > > > > > Anyone else seen this? > > > > > > With Win10 it's worse - unless I maximise the window it keeps getting reset > > > to the wrong height, I think by communication with the additions installed > > > in the client. > > > > > > virtualbox-ose-5.1.22_1 General-purpose full virtualizer for x86 hardware > > > virtualbox-ose-kmod-5.1.22 VirtualBox kernel module for FreeBSD > > > > > > 10.3-RELEASE-p18 > > > > > > Thanks, > > > > > > Gary > > > > > > P.S. Please keep me on CC as I am not subscribed to this list > > > _______________________________________________ > > > freebsd-virtualization@freebsd.org mailing list > > > https://lists.freebsd.org/mailman/listinfo/freebsd-virtualization > > > To unsubscribe, send any mail to "freebsd-virtualization-unsubscribe@freebsd.org" > > > _______________________________________________ > freebsd-emulation@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-emulation > To unsubscribe, send any mail to "freebsd-emulation-unsubscribe@freebsd.org" > From owner-freebsd-emulation@freebsd.org Sat Jun 17 01:13:17 2017 Return-Path: Delivered-To: freebsd-emulation@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 CBE97D8D2F6 for ; Sat, 17 Jun 2017 01:13:17 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id B9042771D3 for ; Sat, 17 Jun 2017 01:13:17 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id B84E1D8D2F4; Sat, 17 Jun 2017 01:13:17 +0000 (UTC) Delivered-To: emulation@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 B7C07D8D2F3; Sat, 17 Jun 2017 01:13:17 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy2.nyi.freebsd.org (beefy2.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:e5]) (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 945C0771D2; Sat, 17 Jun 2017 01:13:17 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy2.nyi.freebsd.org (localhost [127.0.0.1]) by beefy2.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5H1DGGZ021498; Sat, 17 Jun 2017 01:13:16 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy2.nyi.freebsd.org (8.15.2/8.15.2/Submit) id v5H1DGgo021480; Sat, 17 Jun 2017 01:13:16 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Sat, 17 Jun 2017 01:13:16 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201706170113.v5H1DGgo021480@beefy2.nyi.freebsd.org> To: emulation@FreeBSD.org Subject: [package - 103amd64-quarterly][www/linux-flashplayer] Failed for linux-flashplayer-25.0.0.171 in fetch Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2017 01:13:17 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: emulation@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: branches/2017Q2/www/linux-flashplayer/Makefile 440959 2017-05-15 17:07:47Z jkim $ Log URL: http://beefy2.nyi.freebsd.org/data/103amd64-quarterly/443704/logs/linux-flashplayer-25.0.0.171.log Build URL: http://beefy2.nyi.freebsd.org/build.html?mastername=103amd64-quarterly&build=443704 Log: ====>> Building www/linux-flashplayer build started at Sat Jun 17 01:13:14 UTC 2017 port directory: /usr/ports/www/linux-flashplayer building for: FreeBSD 103amd64-quarterly-job-22 10.3-RELEASE-p19 FreeBSD 10.3-RELEASE-p19 amd64 maintained by: emulation@FreeBSD.org Makefile ident: $FreeBSD: branches/2017Q2/www/linux-flashplayer/Makefile 440959 2017-05-15 17:07:47Z jkim $ Poudriere version: 3.1.19-29-g5598cc27 Host OSVERSION: 1200031 Jail OSVERSION: 1003000 Job Id: 22 ---Begin Environment--- SHELL=/bin/csh OSVERSION=1003000 UNAME_v=FreeBSD 10.3-RELEASE-p19 UNAME_r=10.3-RELEASE-p19 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/103amd64-quarterly/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=linux-flashplayer-25.0.0.171 OLDPWD=/ PWD=/usr/local/poudriere/data/.m/103amd64-quarterly/ref/.p/pool MASTERNAME=103amd64-quarterly SCRIPTPREFIX=/usr/local/share/poudriere USER=root HOME=/root POUDRIERE_VERSION=3.1.19-29-g5598cc27 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" NO_PIE=yes WITHOUT_DEBUG_FILES=yes WITHOUT_KERNEL_SYMBOLS=yes SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -m 555" BSD_INSTALL_LIB="install -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- WEBPLUGIN_DIR="lib/browser_plugins/linux-flashplayer" OSREL=10.3 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/flashplayer" EXAMPLESDIR="share/examples/flashplayer" DATADIR="share/flashplayer" WWWDIR="www/flashplayer" ETCDIR="etc/flashplayer" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/flashplayer DOCSDIR=/usr/local/share/doc/flashplayer EXAMPLESDIR=/usr/local/share/examples/flashplayer WWWDIR=/usr/local/www/flashplayer ETCDIR=/usr/local/etc/flashplayer --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### ARCH=amd64 CONFIGURE_MAX_CMD_LEN=262144 HAVE_COMPAT_IA32_KERN=YES OPSYS=FreeBSD OSREL=10.3 OSVERSION=1003000 PYTHONBASE=/usr/local UID=0 _JAVA_OS_LIST_REGEXP=native\|linux _JAVA_VENDOR_LIST_REGEXP=openjdk\|oracle\|sun _JAVA_VERSION_LIST_REGEXP=1.6\|1.7\|1.8\|1.6+\|1.7+\|1.8+ _OSRELEASE=10.3-RELEASE-p19 #### Misc Poudriere #### GID=0 DISABLE_MAKE_JOBS=poudriere ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 33554432 stack size (kbytes, -s) 524288 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited sbsize (bytes, -b) unlimited pseudo-terminals (-p) unlimited --End resource limits-- =================================================== =========================================================================== =================================================== ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.10.1.txz [103amd64-quarterly-job-22] Installing pkg-1.10.1... [103amd64-quarterly-job-22] Extracting pkg-1.10.1: .......... done ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of linux-flashplayer-25.0.0.171 =========================================================================== =================================================== =========================================================================== =================================================== => flash_player_npapi_linux.i386.tar.gz doesn't seem to exist in /portdistfiles/flashplayer/25.0.0.171. => Attempting to fetch https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Couldn't fetch it - please try to retrieve this => port manually into /portdistfiles/flashplayer/25.0.0.171 and try again. *** Error code 1 Stop. make: stopped in /usr/ports/www/linux-flashplayer From owner-freebsd-emulation@freebsd.org Sat Jun 17 01:14:03 2017 Return-Path: Delivered-To: freebsd-emulation@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 3FF06D8D392 for ; Sat, 17 Jun 2017 01:14:03 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 2D6187723C for ; Sat, 17 Jun 2017 01:14:03 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 2CB87D8D390; Sat, 17 Jun 2017 01:14:03 +0000 (UTC) Delivered-To: emulation@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 2C24CD8D38E; Sat, 17 Jun 2017 01:14:03 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy3.nyi.freebsd.org (beefy3.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:e6]) (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 08E3A7723B; Sat, 17 Jun 2017 01:14:02 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy3.nyi.freebsd.org (localhost [127.0.0.1]) by beefy3.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5H1E24O005544; Sat, 17 Jun 2017 01:14:02 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy3.nyi.freebsd.org (8.15.2/8.15.2/Submit) id v5H1E2L4005464; Sat, 17 Jun 2017 01:14:02 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Sat, 17 Jun 2017 01:14:02 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201706170114.v5H1E2L4005464@beefy3.nyi.freebsd.org> To: emulation@FreeBSD.org Subject: [package - 110amd64-quarterly][www/linux-flashplayer] Failed for linux-flashplayer-25.0.0.171 in fetch Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2017 01:14:03 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: emulation@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: branches/2017Q2/www/linux-flashplayer/Makefile 440959 2017-05-15 17:07:47Z jkim $ Log URL: http://beefy3.nyi.freebsd.org/data/110amd64-quarterly/443704/logs/linux-flashplayer-25.0.0.171.log Build URL: http://beefy3.nyi.freebsd.org/build.html?mastername=110amd64-quarterly&build=443704 Log: ====>> Building www/linux-flashplayer build started at Sat Jun 17 01:14:00 UTC 2017 port directory: /usr/ports/www/linux-flashplayer building for: FreeBSD 110amd64-quarterly-job-19 11.0-RELEASE-p10 FreeBSD 11.0-RELEASE-p10 amd64 maintained by: emulation@FreeBSD.org Makefile ident: $FreeBSD: branches/2017Q2/www/linux-flashplayer/Makefile 440959 2017-05-15 17:07:47Z jkim $ Poudriere version: 3.1.19-29-g5598cc27 Host OSVERSION: 1200031 Jail OSVERSION: 1100122 Job Id: 19 ---Begin Environment--- SHELL=/bin/csh OSVERSION=1100122 UNAME_v=FreeBSD 11.0-RELEASE-p10 UNAME_r=11.0-RELEASE-p10 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/110amd64-quarterly/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=linux-flashplayer-25.0.0.171 OLDPWD=/ PWD=/usr/local/poudriere/data/.m/110amd64-quarterly/ref/.p/pool MASTERNAME=110amd64-quarterly SCRIPTPREFIX=/usr/local/share/poudriere USER=root HOME=/root POUDRIERE_VERSION=3.1.19-29-g5598cc27 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -m 555" BSD_INSTALL_LIB="install -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- WEBPLUGIN_DIR="lib/browser_plugins/linux-flashplayer" OSREL=11.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/flashplayer" EXAMPLESDIR="share/examples/flashplayer" DATADIR="share/flashplayer" WWWDIR="www/flashplayer" ETCDIR="etc/flashplayer" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/flashplayer DOCSDIR=/usr/local/share/doc/flashplayer EXAMPLESDIR=/usr/local/share/examples/flashplayer WWWDIR=/usr/local/www/flashplayer ETCDIR=/usr/local/etc/flashplayer --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### ARCH=amd64 CONFIGURE_MAX_CMD_LEN=262144 HAVE_COMPAT_IA32_KERN=YES OPSYS=FreeBSD OSREL=11.0 OSVERSION=1100122 PYTHONBASE=/usr/local UID=0 _JAVA_OS_LIST_REGEXP=native\|linux _JAVA_VENDOR_LIST_REGEXP=openjdk\|oracle\|sun _JAVA_VERSION_LIST_REGEXP=1.6\|1.7\|1.8\|1.6+\|1.7+\|1.8+ _OSRELEASE=11.0-RELEASE-p10 #### Misc Poudriere #### GID=0 DISABLE_MAKE_JOBS=poudriere ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 33554432 stack size (kbytes, -s) 524288 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited socket buffer size (bytes, -b) unlimited pseudo-terminals (-p) unlimited kqueues (-k) unlimited umtx shared locks (-o) unlimited --End resource limits-- =================================================== =========================================================================== =================================================== ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.10.1.txz [110amd64-quarterly-job-19] Installing pkg-1.10.1... [110amd64-quarterly-job-19] Extracting pkg-1.10.1: .......... done ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of linux-flashplayer-25.0.0.171 =========================================================================== =================================================== =========================================================================== =================================================== => flash_player_npapi_linux.i386.tar.gz doesn't seem to exist in /portdistfiles/flashplayer/25.0.0.171. => Attempting to fetch https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Couldn't fetch it - please try to retrieve this => port manually into /portdistfiles/flashplayer/25.0.0.171 and try again. *** Error code 1 Stop. make: stopped in /usr/ports/www/linux-flashplayer From owner-freebsd-emulation@freebsd.org Sat Jun 17 01:15:09 2017 Return-Path: Delivered-To: freebsd-emulation@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 B2A88D8D4B9 for ; Sat, 17 Jun 2017 01:15:09 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 9FF387735A for ; Sat, 17 Jun 2017 01:15:09 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 9F678D8D4B7; Sat, 17 Jun 2017 01:15:09 +0000 (UTC) Delivered-To: emulation@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 9EDECD8D4B5; Sat, 17 Jun 2017 01:15:09 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy1.nyi.freebsd.org (beefy1.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:e4]) (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 7A43A77357; Sat, 17 Jun 2017 01:15:09 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy1.nyi.freebsd.org (localhost [127.0.0.1]) by beefy1.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5H1F8dD062994; Sat, 17 Jun 2017 01:15:08 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy1.nyi.freebsd.org (8.15.2/8.15.2/Submit) id v5H1F8W9062971; Sat, 17 Jun 2017 01:15:08 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Sat, 17 Jun 2017 01:15:08 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201706170115.v5H1F8W9062971@beefy1.nyi.freebsd.org> To: emulation@FreeBSD.org Subject: [package - 110i386-quarterly][www/linux-flashplayer] Failed for linux-flashplayer-25.0.0.171 in fetch Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2017 01:15:09 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: emulation@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: branches/2017Q2/www/linux-flashplayer/Makefile 440959 2017-05-15 17:07:47Z jkim $ Log URL: http://beefy1.nyi.freebsd.org/data/110i386-quarterly/443704/logs/linux-flashplayer-25.0.0.171.log Build URL: http://beefy1.nyi.freebsd.org/build.html?mastername=110i386-quarterly&build=443704 Log: ====>> Building www/linux-flashplayer build started at Sat Jun 17 01:15:05 UTC 2017 port directory: /usr/ports/www/linux-flashplayer building for: FreeBSD 110i386-quarterly-job-20 11.0-RELEASE-p10 FreeBSD 11.0-RELEASE-p10 i386 maintained by: emulation@FreeBSD.org Makefile ident: $FreeBSD: branches/2017Q2/www/linux-flashplayer/Makefile 440959 2017-05-15 17:07:47Z jkim $ Poudriere version: 3.1.19-29-g5598cc27 Host OSVERSION: 1200031 Jail OSVERSION: 1100122 Job Id: 20 ---Begin Environment--- SHELL=/bin/csh UNAME_p=i386 UNAME_m=i386 OSVERSION=1100122 UNAME_v=FreeBSD 11.0-RELEASE-p10 UNAME_r=11.0-RELEASE-p10 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/110i386-quarterly/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=linux-flashplayer-25.0.0.171 OLDPWD=/ PWD=/usr/local/poudriere/data/.m/110i386-quarterly/ref/.p/pool MASTERNAME=110i386-quarterly SCRIPTPREFIX=/usr/local/share/poudriere USER=root HOME=/root POUDRIERE_VERSION=3.1.19-29-g5598cc27 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -m 555" BSD_INSTALL_LIB="install -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- WEBPLUGIN_DIR="lib/browser_plugins/linux-flashplayer" OSREL=11.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/flashplayer" EXAMPLESDIR="share/examples/flashplayer" DATADIR="share/flashplayer" WWWDIR="www/flashplayer" ETCDIR="etc/flashplayer" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/flashplayer DOCSDIR=/usr/local/share/doc/flashplayer EXAMPLESDIR=/usr/local/share/examples/flashplayer WWWDIR=/usr/local/www/flashplayer ETCDIR=/usr/local/etc/flashplayer --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes MACHINE=i386 MACHINE_ARCH=i386 ARCH=${MACHINE_ARCH} #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### ARCH=i386 CONFIGURE_MAX_CMD_LEN=262144 OPSYS=FreeBSD OSREL=11.0 OSVERSION=1100122 PYTHONBASE=/usr/local UID=0 _JAVA_OS_LIST_REGEXP=native\|linux _JAVA_VENDOR_LIST_REGEXP=openjdk\|oracle\|sun _JAVA_VERSION_LIST_REGEXP=1.6\|1.7\|1.8\|1.6+\|1.7+\|1.8+ _OSRELEASE=11.0-RELEASE-p10 #### Misc Poudriere #### GID=0 DISABLE_MAKE_JOBS=poudriere ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 524288 stack size (kbytes, -s) 65536 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited socket buffer size (bytes, -b) unlimited pseudo-terminals (-p) unlimited kqueues (-k) unlimited umtx shared locks (-o) unlimited --End resource limits-- =================================================== =========================================================================== =================================================== ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.10.1.txz [110i386-quarterly-job-20] Installing pkg-1.10.1... [110i386-quarterly-job-20] Extracting pkg-1.10.1: .......... done ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of linux-flashplayer-25.0.0.171 =========================================================================== =================================================== =========================================================================== =================================================== => flash_player_npapi_linux.i386.tar.gz doesn't seem to exist in /portdistfiles/flashplayer/25.0.0.171. => Attempting to fetch https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Couldn't fetch it - please try to retrieve this => port manually into /portdistfiles/flashplayer/25.0.0.171 and try again. *** Error code 1 Stop. make: stopped in /usr/ports/www/linux-flashplayer From owner-freebsd-emulation@freebsd.org Sat Jun 17 01:14:42 2017 Return-Path: Delivered-To: freebsd-emulation@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 B65BCD8D43C for ; Sat, 17 Jun 2017 01:14:42 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id A23AE772D4 for ; Sat, 17 Jun 2017 01:14:42 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id A1A61D8D436; Sat, 17 Jun 2017 01:14:42 +0000 (UTC) Delivered-To: emulation@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 A12D4D8D435; Sat, 17 Jun 2017 01:14:42 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy4.nyi.freebsd.org (beefy4.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:e7]) (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 786E6772D3; Sat, 17 Jun 2017 01:14:42 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy4.nyi.freebsd.org (localhost [127.0.0.1]) by beefy4.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5H1Ef6v098688; Sat, 17 Jun 2017 01:14:41 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy4.nyi.freebsd.org (8.15.2/8.15.2/Submit) id v5H1EfFJ098680; Sat, 17 Jun 2017 01:14:41 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Sat, 17 Jun 2017 01:14:41 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201706170114.v5H1EfFJ098680@beefy4.nyi.freebsd.org> To: emulation@FreeBSD.org Subject: [package - 103i386-quarterly][www/linux-flashplayer] Failed for linux-flashplayer-25.0.0.171 in fetch Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2017 01:14:42 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: emulation@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: branches/2017Q2/www/linux-flashplayer/Makefile 440959 2017-05-15 17:07:47Z jkim $ Log URL: http://beefy4.nyi.freebsd.org/data/103i386-quarterly/443704/logs/linux-flashplayer-25.0.0.171.log Build URL: http://beefy4.nyi.freebsd.org/build.html?mastername=103i386-quarterly&build=443704 Log: ====>> Building www/linux-flashplayer build started at Sat Jun 17 01:14:39 UTC 2017 port directory: /usr/ports/www/linux-flashplayer building for: FreeBSD 103i386-quarterly-job-16 10.3-RELEASE-p19 FreeBSD 10.3-RELEASE-p19 i386 maintained by: emulation@FreeBSD.org Makefile ident: $FreeBSD: branches/2017Q2/www/linux-flashplayer/Makefile 440959 2017-05-15 17:07:47Z jkim $ Poudriere version: 3.1.19-29-g5598cc27 Host OSVERSION: 1200031 Jail OSVERSION: 1003000 Job Id: 16 ---Begin Environment--- SHELL=/bin/csh UNAME_p=i386 UNAME_m=i386 OSVERSION=1003000 UNAME_v=FreeBSD 10.3-RELEASE-p19 UNAME_r=10.3-RELEASE-p19 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/103i386-quarterly/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=linux-flashplayer-25.0.0.171 OLDPWD=/ PWD=/usr/local/poudriere/data/.m/103i386-quarterly/ref/.p/pool MASTERNAME=103i386-quarterly SCRIPTPREFIX=/usr/local/share/poudriere USER=root HOME=/root POUDRIERE_VERSION=3.1.19-29-g5598cc27 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" NO_PIE=yes WITHOUT_DEBUG_FILES=yes WITHOUT_KERNEL_SYMBOLS=yes SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -m 555" BSD_INSTALL_LIB="install -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- WEBPLUGIN_DIR="lib/browser_plugins/linux-flashplayer" OSREL=10.3 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/flashplayer" EXAMPLESDIR="share/examples/flashplayer" DATADIR="share/flashplayer" WWWDIR="www/flashplayer" ETCDIR="etc/flashplayer" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/flashplayer DOCSDIR=/usr/local/share/doc/flashplayer EXAMPLESDIR=/usr/local/share/examples/flashplayer WWWDIR=/usr/local/www/flashplayer ETCDIR=/usr/local/etc/flashplayer --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes MACHINE=i386 MACHINE_ARCH=i386 ARCH=${MACHINE_ARCH} #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### ARCH=i386 CONFIGURE_MAX_CMD_LEN=262144 OPSYS=FreeBSD OSREL=10.3 OSVERSION=1003000 PYTHONBASE=/usr/local UID=0 _JAVA_OS_LIST_REGEXP=native\|linux _JAVA_VENDOR_LIST_REGEXP=openjdk\|oracle\|sun _JAVA_VERSION_LIST_REGEXP=1.6\|1.7\|1.8\|1.6+\|1.7+\|1.8+ _OSRELEASE=10.3-RELEASE-p19 #### Misc Poudriere #### GID=0 DISABLE_MAKE_JOBS=poudriere ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 524288 stack size (kbytes, -s) 65536 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited sbsize (bytes, -b) unlimited pseudo-terminals (-p) unlimited --End resource limits-- =================================================== =========================================================================== =================================================== ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.10.1.txz [103i386-quarterly-job-16] Installing pkg-1.10.1... [103i386-quarterly-job-16] Extracting pkg-1.10.1: .......... done ===> linux-flashplayer-25.0.0.171 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of linux-flashplayer-25.0.0.171 =========================================================================== =================================================== =========================================================================== =================================================== => flash_player_npapi_linux.i386.tar.gz doesn't seem to exist in /portdistfiles/flashplayer/25.0.0.171. => Attempting to fetch https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: https://fpdownload.macromedia.com/get/flashplayer/pdc/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz fetch: http://distcache.FreeBSD.org/ports-distfiles/flashplayer/25.0.0.171/flash_player_npapi_linux.i386.tar.gz: Not Found => Couldn't fetch it - please try to retrieve this => port manually into /portdistfiles/flashplayer/25.0.0.171 and try again. *** Error code 1 Stop. make: stopped in /usr/ports/www/linux-flashplayer From owner-freebsd-emulation@freebsd.org Sat Jun 17 01:56:35 2017 Return-Path: Delivered-To: freebsd-emulation@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 C14D4D8EF8F for ; Sat, 17 Jun 2017 01:56:35 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id AE58D78A2C for ; Sat, 17 Jun 2017 01:56:35 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id ADA75D8EF8D; Sat, 17 Jun 2017 01:56:35 +0000 (UTC) Delivered-To: emulation@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 AD2FCD8EF8C; Sat, 17 Jun 2017 01:56:35 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy5.nyi.freebsd.org (beefy5.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:e8]) (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 7134E78A2B; Sat, 17 Jun 2017 01:56:35 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy5.nyi.freebsd.org (localhost [127.0.0.1]) by beefy5.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5H1uYOd045813; Sat, 17 Jun 2017 01:56:34 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy5.nyi.freebsd.org (8.15.2/8.15.2/Submit) id v5H1uYZh045806; Sat, 17 Jun 2017 01:56:34 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Sat, 17 Jun 2017 01:56:34 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201706170156.v5H1uYZh045806@beefy5.nyi.freebsd.org> To: emulation@FreeBSD.org Subject: [package - 103i386-default][www/linux-flashplayer] Failed for linux-flashplayer-26.0.0.126 in fetch Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2017 01:56:35 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: emulation@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: head/www/linux-flashplayer/Makefile 443622 2017-06-15 18:09:49Z jkim $ Log URL: http://beefy5.nyi.freebsd.org/data/103i386-default/443721/logs/linux-flashplayer-26.0.0.126.log Build URL: http://beefy5.nyi.freebsd.org/build.html?mastername=103i386-default&build=443721 Log: ====>> Building www/linux-flashplayer build started at Sat Jun 17 01:56:31 UTC 2017 port directory: /usr/ports/www/linux-flashplayer building for: FreeBSD 103i386-default-job-12 10.3-RELEASE-p19 FreeBSD 10.3-RELEASE-p19 i386 maintained by: emulation@FreeBSD.org Makefile ident: $FreeBSD: head/www/linux-flashplayer/Makefile 443622 2017-06-15 18:09:49Z jkim $ Poudriere version: 3.1.19-29-g5598cc27 Host OSVERSION: 1200031 Jail OSVERSION: 1003000 Job Id: 12 ---Begin Environment--- SHELL=/bin/csh UNAME_p=i386 UNAME_m=i386 OSVERSION=1003000 UNAME_v=FreeBSD 10.3-RELEASE-p19 UNAME_r=10.3-RELEASE-p19 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/103i386-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=linux-flashplayer-26.0.0.126 OLDPWD=/ PWD=/usr/local/poudriere/data/.m/103i386-default/ref/.p/pool MASTERNAME=103i386-default SCRIPTPREFIX=/usr/local/share/poudriere USER=root HOME=/root POUDRIERE_VERSION=3.1.19-29-g5598cc27 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" NO_PIE=yes WITHOUT_DEBUG_FILES=yes WITHOUT_KERNEL_SYMBOLS=yes SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -m 555" BSD_INSTALL_LIB="install -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- WEBPLUGIN_DIR="lib/browser_plugins/linux-flashplayer" OSREL=10.3 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/flashplayer" EXAMPLESDIR="share/examples/flashplayer" DATADIR="share/flashplayer" WWWDIR="www/flashplayer" ETCDIR="etc/flashplayer" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/flashplayer DOCSDIR=/usr/local/share/doc/flashplayer EXAMPLESDIR=/usr/local/share/examples/flashplayer WWWDIR=/usr/local/www/flashplayer ETCDIR=/usr/local/etc/flashplayer --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes MACHINE=i386 MACHINE_ARCH=i386 ARCH=${MACHINE_ARCH} #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### ARCH=i386 CONFIGURE_MAX_CMD_LEN=262144 OPSYS=FreeBSD OSREL=10.3 OSVERSION=1003000 PYTHONBASE=/usr/local UID=0 _JAVA_OS_LIST_REGEXP=native\|linux _JAVA_VENDOR_LIST_REGEXP=openjdk\|oracle\|sun _JAVA_VERSION_LIST_REGEXP=1.6\|1.7\|1.8\|1.6+\|1.7+\|1.8+ _OSRELEASE=10.3-RELEASE-p19 #### Misc Poudriere #### GID=0 DISABLE_MAKE_JOBS=poudriere ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 524288 stack size (kbytes, -s) 65536 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited sbsize (bytes, -b) unlimited pseudo-terminals (-p) unlimited --End resource limits-- =================================================== =========================================================================== =================================================== ===> linux-flashplayer-26.0.0.126 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.10.1.txz [103i386-default-job-12] Installing pkg-1.10.1... [103i386-default-job-12] Extracting pkg-1.10.1: .......... done ===> linux-flashplayer-26.0.0.126 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of linux-flashplayer-26.0.0.126 =========================================================================== =================================================== =========================================================================== =================================================== => flash_player_npapi_linux.i386.tar.gz doesn't seem to exist in /portdistfiles/flashplayer/26.0.0.126. => Attempting to fetch https://fpdownload.macromedia.com/get/flashplayer/pdc/26.0.0.126/flash_player_npapi_linux.i386.tar.gz fetch: https://fpdownload.macromedia.com/get/flashplayer/pdc/26.0.0.126/flash_player_npapi_linux.i386.tar.gz: Not Found => Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/flashplayer/26.0.0.126/flash_player_npapi_linux.i386.tar.gz fetch: http://distcache.FreeBSD.org/ports-distfiles/flashplayer/26.0.0.126/flash_player_npapi_linux.i386.tar.gz: Not Found => Couldn't fetch it - please try to retrieve this => port manually into /portdistfiles/flashplayer/26.0.0.126 and try again. *** Error code 1 Stop. make: stopped in /usr/ports/www/linux-flashplayer From owner-freebsd-emulation@freebsd.org Sat Jun 17 01:58:55 2017 Return-Path: Delivered-To: freebsd-emulation@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 A21F3D8F02F for ; Sat, 17 Jun 2017 01:58:55 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 8F2BA78ADF for ; Sat, 17 Jun 2017 01:58:55 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 8E816D8F02D; Sat, 17 Jun 2017 01:58:55 +0000 (UTC) Delivered-To: emulation@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 8E0EBD8F02C; Sat, 17 Jun 2017 01:58:55 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy9.nyi.freebsd.org (beefy9.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:ec]) (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 692AB78ADE; Sat, 17 Jun 2017 01:58:55 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy9.nyi.freebsd.org (localhost [127.0.0.1]) by beefy9.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5H1wsqv001163; Sat, 17 Jun 2017 01:58:54 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy9.nyi.freebsd.org (8.15.2/8.15.2/Submit) id v5H1wsSX001154; Sat, 17 Jun 2017 01:58:54 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Sat, 17 Jun 2017 01:58:54 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201706170158.v5H1wsSX001154@beefy9.nyi.freebsd.org> To: emulation@FreeBSD.org Subject: [package - 110amd64-default][www/linux-flashplayer] Failed for linux-flashplayer-26.0.0.126 in fetch Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2017 01:58:55 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: emulation@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: head/www/linux-flashplayer/Makefile 443622 2017-06-15 18:09:49Z jkim $ Log URL: http://beefy9.nyi.freebsd.org/data/110amd64-default/443721/logs/linux-flashplayer-26.0.0.126.log Build URL: http://beefy9.nyi.freebsd.org/build.html?mastername=110amd64-default&build=443721 Log: ====>> Building www/linux-flashplayer build started at Sat Jun 17 01:58:52 UTC 2017 port directory: /usr/ports/www/linux-flashplayer building for: FreeBSD 110amd64-default-job-22 11.0-RELEASE-p10 FreeBSD 11.0-RELEASE-p10 amd64 maintained by: emulation@FreeBSD.org Makefile ident: $FreeBSD: head/www/linux-flashplayer/Makefile 443622 2017-06-15 18:09:49Z jkim $ Poudriere version: 3.1.19-29-g5598cc27 Host OSVERSION: 1200031 Jail OSVERSION: 1100122 Job Id: 22 ---Begin Environment--- SHELL=/bin/csh OSVERSION=1100122 UNAME_v=FreeBSD 11.0-RELEASE-p10 UNAME_r=11.0-RELEASE-p10 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/110amd64-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=linux-flashplayer-26.0.0.126 OLDPWD=/ PWD=/usr/local/poudriere/data/.m/110amd64-default/ref/.p/pool MASTERNAME=110amd64-default SCRIPTPREFIX=/usr/local/share/poudriere USER=root HOME=/root POUDRIERE_VERSION=3.1.19-29-g5598cc27 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -m 555" BSD_INSTALL_LIB="install -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- WEBPLUGIN_DIR="lib/browser_plugins/linux-flashplayer" OSREL=11.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/flashplayer" EXAMPLESDIR="share/examples/flashplayer" DATADIR="share/flashplayer" WWWDIR="www/flashplayer" ETCDIR="etc/flashplayer" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/flashplayer DOCSDIR=/usr/local/share/doc/flashplayer EXAMPLESDIR=/usr/local/share/examples/flashplayer WWWDIR=/usr/local/www/flashplayer ETCDIR=/usr/local/etc/flashplayer --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### ARCH=amd64 CONFIGURE_MAX_CMD_LEN=262144 HAVE_COMPAT_IA32_KERN=YES OPSYS=FreeBSD OSREL=11.0 OSVERSION=1100122 PYTHONBASE=/usr/local UID=0 _JAVA_OS_LIST_REGEXP=native\|linux _JAVA_VENDOR_LIST_REGEXP=openjdk\|oracle\|sun _JAVA_VERSION_LIST_REGEXP=1.6\|1.7\|1.8\|1.6+\|1.7+\|1.8+ _OSRELEASE=11.0-RELEASE-p10 #### Misc Poudriere #### GID=0 DISABLE_MAKE_JOBS=poudriere ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 33554432 stack size (kbytes, -s) 524288 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited socket buffer size (bytes, -b) unlimited pseudo-terminals (-p) unlimited kqueues (-k) unlimited umtx shared locks (-o) unlimited --End resource limits-- =================================================== =========================================================================== =================================================== ===> linux-flashplayer-26.0.0.126 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.10.1.txz [110amd64-default-job-22] Installing pkg-1.10.1... [110amd64-default-job-22] Extracting pkg-1.10.1: .......... done ===> linux-flashplayer-26.0.0.126 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of linux-flashplayer-26.0.0.126 =========================================================================== =================================================== =========================================================================== =================================================== => flash_player_npapi_linux.i386.tar.gz doesn't seem to exist in /portdistfiles/flashplayer/26.0.0.126. => Attempting to fetch https://fpdownload.macromedia.com/get/flashplayer/pdc/26.0.0.126/flash_player_npapi_linux.i386.tar.gz fetch: https://fpdownload.macromedia.com/get/flashplayer/pdc/26.0.0.126/flash_player_npapi_linux.i386.tar.gz: Not Found => Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/flashplayer/26.0.0.126/flash_player_npapi_linux.i386.tar.gz fetch: http://distcache.FreeBSD.org/ports-distfiles/flashplayer/26.0.0.126/flash_player_npapi_linux.i386.tar.gz: Not Found => Couldn't fetch it - please try to retrieve this => port manually into /portdistfiles/flashplayer/26.0.0.126 and try again. *** Error code 1 Stop. make: stopped in /usr/ports/www/linux-flashplayer From owner-freebsd-emulation@freebsd.org Sat Jun 17 01:58:58 2017 Return-Path: Delivered-To: freebsd-emulation@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 3A74AD8F044 for ; Sat, 17 Jun 2017 01:58:58 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 279E478AE5 for ; Sat, 17 Jun 2017 01:58:58 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 26ECDD8F041; Sat, 17 Jun 2017 01:58:58 +0000 (UTC) Delivered-To: emulation@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 2663FD8F040; Sat, 17 Jun 2017 01:58:58 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy10.nyi.freebsd.org (beefy10.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:ed]) (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 0325278AE3; Sat, 17 Jun 2017 01:58:57 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy10.nyi.freebsd.org (localhost [127.0.0.1]) by beefy10.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5H1wvZt074982; Sat, 17 Jun 2017 01:58:57 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy10.nyi.freebsd.org (8.15.2/8.15.2/Submit) id v5H1wvT8074981; Sat, 17 Jun 2017 01:58:57 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Sat, 17 Jun 2017 01:58:57 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201706170158.v5H1wvT8074981@beefy10.nyi.freebsd.org> To: emulation@FreeBSD.org Subject: [package - 110i386-default][www/linux-flashplayer] Failed for linux-flashplayer-26.0.0.126 in fetch Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2017 01:58:58 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: emulation@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: head/www/linux-flashplayer/Makefile 443622 2017-06-15 18:09:49Z jkim $ Log URL: http://beefy10.nyi.freebsd.org/data/110i386-default/443721/logs/linux-flashplayer-26.0.0.126.log Build URL: http://beefy10.nyi.freebsd.org/build.html?mastername=110i386-default&build=443721 Log: ====>> Building www/linux-flashplayer build started at Sat Jun 17 01:58:55 UTC 2017 port directory: /usr/ports/www/linux-flashplayer building for: FreeBSD 110i386-default-job-11 11.0-RELEASE-p10 FreeBSD 11.0-RELEASE-p10 i386 maintained by: emulation@FreeBSD.org Makefile ident: $FreeBSD: head/www/linux-flashplayer/Makefile 443622 2017-06-15 18:09:49Z jkim $ Poudriere version: 3.1.19-29-g5598cc27 Host OSVERSION: 1200031 Jail OSVERSION: 1100122 Job Id: 11 ---Begin Environment--- SHELL=/bin/csh UNAME_p=i386 UNAME_m=i386 OSVERSION=1100122 UNAME_v=FreeBSD 11.0-RELEASE-p10 UNAME_r=11.0-RELEASE-p10 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/110i386-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=linux-flashplayer-26.0.0.126 OLDPWD=/ PWD=/usr/local/poudriere/data/.m/110i386-default/ref/.p/pool MASTERNAME=110i386-default SCRIPTPREFIX=/usr/local/share/poudriere USER=root HOME=/root POUDRIERE_VERSION=3.1.19-29-g5598cc27 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -m 555" BSD_INSTALL_LIB="install -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- WEBPLUGIN_DIR="lib/browser_plugins/linux-flashplayer" OSREL=11.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/flashplayer" EXAMPLESDIR="share/examples/flashplayer" DATADIR="share/flashplayer" WWWDIR="www/flashplayer" ETCDIR="etc/flashplayer" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/flashplayer DOCSDIR=/usr/local/share/doc/flashplayer EXAMPLESDIR=/usr/local/share/examples/flashplayer WWWDIR=/usr/local/www/flashplayer ETCDIR=/usr/local/etc/flashplayer --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes MACHINE=i386 MACHINE_ARCH=i386 ARCH=${MACHINE_ARCH} #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### ARCH=i386 CONFIGURE_MAX_CMD_LEN=262144 OPSYS=FreeBSD OSREL=11.0 OSVERSION=1100122 PYTHONBASE=/usr/local UID=0 _JAVA_OS_LIST_REGEXP=native\|linux _JAVA_VENDOR_LIST_REGEXP=openjdk\|oracle\|sun _JAVA_VERSION_LIST_REGEXP=1.6\|1.7\|1.8\|1.6+\|1.7+\|1.8+ _OSRELEASE=11.0-RELEASE-p10 #### Misc Poudriere #### GID=0 DISABLE_MAKE_JOBS=poudriere ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 524288 stack size (kbytes, -s) 65536 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited socket buffer size (bytes, -b) unlimited pseudo-terminals (-p) unlimited kqueues (-k) unlimited umtx shared locks (-o) unlimited --End resource limits-- =================================================== =========================================================================== =================================================== ===> linux-flashplayer-26.0.0.126 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.10.1.txz [110i386-default-job-11] Installing pkg-1.10.1... [110i386-default-job-11] Extracting pkg-1.10.1: .......... done ===> linux-flashplayer-26.0.0.126 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of linux-flashplayer-26.0.0.126 =========================================================================== =================================================== =========================================================================== =================================================== => flash_player_npapi_linux.i386.tar.gz doesn't seem to exist in /portdistfiles/flashplayer/26.0.0.126. => Attempting to fetch https://fpdownload.macromedia.com/get/flashplayer/pdc/26.0.0.126/flash_player_npapi_linux.i386.tar.gz fetch: https://fpdownload.macromedia.com/get/flashplayer/pdc/26.0.0.126/flash_player_npapi_linux.i386.tar.gz: Not Found => Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/flashplayer/26.0.0.126/flash_player_npapi_linux.i386.tar.gz fetch: http://distcache.FreeBSD.org/ports-distfiles/flashplayer/26.0.0.126/flash_player_npapi_linux.i386.tar.gz: Not Found => Couldn't fetch it - please try to retrieve this => port manually into /portdistfiles/flashplayer/26.0.0.126 and try again. *** Error code 1 Stop. make: stopped in /usr/ports/www/linux-flashplayer From owner-freebsd-emulation@freebsd.org Sat Jun 17 01:59:18 2017 Return-Path: Delivered-To: freebsd-emulation@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 96223D8F0E5 for ; Sat, 17 Jun 2017 01:59:18 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 81A8478B8F for ; Sat, 17 Jun 2017 01:59:18 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 80F4ED8F0E3; Sat, 17 Jun 2017 01:59:18 +0000 (UTC) Delivered-To: emulation@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 80798D8F0E2; Sat, 17 Jun 2017 01:59:18 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy6.nyi.freebsd.org (beefy6.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:e9]) (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 5E16C78B8B; Sat, 17 Jun 2017 01:59:18 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy6.nyi.freebsd.org (localhost [127.0.0.1]) by beefy6.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5H1xHVQ088173; Sat, 17 Jun 2017 01:59:17 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy6.nyi.freebsd.org (8.15.2/8.15.2/Submit) id v5H1xHxZ088171; Sat, 17 Jun 2017 01:59:17 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Sat, 17 Jun 2017 01:59:17 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201706170159.v5H1xHxZ088171@beefy6.nyi.freebsd.org> To: emulation@FreeBSD.org Subject: [package - 103amd64-default][www/linux-flashplayer] Failed for linux-flashplayer-26.0.0.126 in fetch Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2017 01:59:18 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: emulation@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: head/www/linux-flashplayer/Makefile 443622 2017-06-15 18:09:49Z jkim $ Log URL: http://beefy6.nyi.freebsd.org/data/103amd64-default/443721/logs/linux-flashplayer-26.0.0.126.log Build URL: http://beefy6.nyi.freebsd.org/build.html?mastername=103amd64-default&build=443721 Log: ====>> Building www/linux-flashplayer build started at Sat Jun 17 01:59:15 UTC 2017 port directory: /usr/ports/www/linux-flashplayer building for: FreeBSD 103amd64-default-job-21 10.3-RELEASE-p19 FreeBSD 10.3-RELEASE-p19 amd64 maintained by: emulation@FreeBSD.org Makefile ident: $FreeBSD: head/www/linux-flashplayer/Makefile 443622 2017-06-15 18:09:49Z jkim $ Poudriere version: 3.1.19-29-g5598cc27 Host OSVERSION: 1200031 Jail OSVERSION: 1003000 Job Id: 21 ---Begin Environment--- SHELL=/bin/csh OSVERSION=1003000 UNAME_v=FreeBSD 10.3-RELEASE-p19 UNAME_r=10.3-RELEASE-p19 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/103amd64-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=linux-flashplayer-26.0.0.126 OLDPWD=/ PWD=/usr/local/poudriere/data/.m/103amd64-default/ref/.p/pool MASTERNAME=103amd64-default SCRIPTPREFIX=/usr/local/share/poudriere USER=root HOME=/root POUDRIERE_VERSION=3.1.19-29-g5598cc27 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" NO_PIE=yes WITHOUT_DEBUG_FILES=yes WITHOUT_KERNEL_SYMBOLS=yes SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -m 555" BSD_INSTALL_LIB="install -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- WEBPLUGIN_DIR="lib/browser_plugins/linux-flashplayer" OSREL=10.3 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/flashplayer" EXAMPLESDIR="share/examples/flashplayer" DATADIR="share/flashplayer" WWWDIR="www/flashplayer" ETCDIR="etc/flashplayer" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/flashplayer DOCSDIR=/usr/local/share/doc/flashplayer EXAMPLESDIR=/usr/local/share/examples/flashplayer WWWDIR=/usr/local/www/flashplayer ETCDIR=/usr/local/etc/flashplayer --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### ARCH=amd64 CONFIGURE_MAX_CMD_LEN=262144 HAVE_COMPAT_IA32_KERN=YES OPSYS=FreeBSD OSREL=10.3 OSVERSION=1003000 PYTHONBASE=/usr/local UID=0 _JAVA_OS_LIST_REGEXP=native\|linux _JAVA_VENDOR_LIST_REGEXP=openjdk\|oracle\|sun _JAVA_VERSION_LIST_REGEXP=1.6\|1.7\|1.8\|1.6+\|1.7+\|1.8+ _OSRELEASE=10.3-RELEASE-p19 #### Misc Poudriere #### GID=0 DISABLE_MAKE_JOBS=poudriere ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 33554432 stack size (kbytes, -s) 524288 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited sbsize (bytes, -b) unlimited pseudo-terminals (-p) unlimited --End resource limits-- =================================================== =========================================================================== =================================================== ===> linux-flashplayer-26.0.0.126 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.10.1.txz [103amd64-default-job-21] Installing pkg-1.10.1... [103amd64-default-job-21] Extracting pkg-1.10.1: .......... done ===> linux-flashplayer-26.0.0.126 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of linux-flashplayer-26.0.0.126 =========================================================================== =================================================== =========================================================================== =================================================== => flash_player_npapi_linux.i386.tar.gz doesn't seem to exist in /portdistfiles/flashplayer/26.0.0.126. => Attempting to fetch https://fpdownload.macromedia.com/get/flashplayer/pdc/26.0.0.126/flash_player_npapi_linux.i386.tar.gz fetch: https://fpdownload.macromedia.com/get/flashplayer/pdc/26.0.0.126/flash_player_npapi_linux.i386.tar.gz: Not Found => Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/flashplayer/26.0.0.126/flash_player_npapi_linux.i386.tar.gz fetch: http://distcache.FreeBSD.org/ports-distfiles/flashplayer/26.0.0.126/flash_player_npapi_linux.i386.tar.gz: Not Found => Couldn't fetch it - please try to retrieve this => port manually into /portdistfiles/flashplayer/26.0.0.126 and try again. *** Error code 1 Stop. make: stopped in /usr/ports/www/linux-flashplayer From owner-freebsd-emulation@freebsd.org Sat Jun 17 02:13:57 2017 Return-Path: Delivered-To: freebsd-emulation@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 6F1D0D8FB86 for ; Sat, 17 Jun 2017 02:13:57 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 5BDCD79830 for ; Sat, 17 Jun 2017 02:13:57 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 5B3BCD8FB84; Sat, 17 Jun 2017 02:13:57 +0000 (UTC) Delivered-To: emulation@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 5AB0DD8FB83; Sat, 17 Jun 2017 02:13:57 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy11.nyi.freebsd.org (beefy11.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:ee]) (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 369207982F; Sat, 17 Jun 2017 02:13:57 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy11.nyi.freebsd.org (localhost [127.0.0.1]) by beefy11.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5H2Duk0083876; Sat, 17 Jun 2017 02:13:56 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy11.nyi.freebsd.org (8.15.2/8.15.2/Submit) id v5H2DuY4083864; Sat, 17 Jun 2017 02:13:56 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Sat, 17 Jun 2017 02:13:56 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201706170213.v5H2DuY4083864@beefy11.nyi.freebsd.org> To: emulation@FreeBSD.org Subject: [package - head-i386-default][www/linux-flashplayer] Failed for linux-flashplayer-26.0.0.126 in fetch Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2017 02:13:57 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: emulation@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: head/www/linux-flashplayer/Makefile 443622 2017-06-15 18:09:49Z jkim $ Log URL: http://beefy11.nyi.freebsd.org/data/head-i386-default/p443721_s320044/logs/linux-flashplayer-26.0.0.126.log Build URL: http://beefy11.nyi.freebsd.org/build.html?mastername=head-i386-default&build=p443721_s320044 Log: ====>> Building www/linux-flashplayer build started at Sat Jun 17 02:13:54 UTC 2017 port directory: /usr/ports/www/linux-flashplayer building for: FreeBSD head-i386-default-job-04 12.0-CURRENT FreeBSD 12.0-CURRENT 1200032 i386 maintained by: emulation@FreeBSD.org Makefile ident: $FreeBSD: head/www/linux-flashplayer/Makefile 443622 2017-06-15 18:09:49Z jkim $ Poudriere version: 3.1.19-29-g5598cc27 Host OSVERSION: 1200031 Jail OSVERSION: 1200032 Job Id: 04 !!! Jail is newer than host. (Jail: 1200032, Host: 1200031) !!! !!! This is not supported. !!! !!! Host kernel must be same or newer than jail. !!! !!! Expect build failures. !!! ---Begin Environment--- SHELL=/bin/csh UNAME_p=i386 UNAME_m=i386 OSVERSION=1200032 UNAME_v=FreeBSD 12.0-CURRENT 1200032 UNAME_r=12.0-CURRENT BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/head-i386-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=linux-flashplayer-26.0.0.126 OLDPWD=/ PWD=/usr/local/poudriere/data/.m/head-i386-default/ref/.p/pool MASTERNAME=head-i386-default SCRIPTPREFIX=/usr/local/share/poudriere USER=root HOME=/root POUDRIERE_VERSION=3.1.19-29-g5598cc27 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -m 555" BSD_INSTALL_LIB="install -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- WEBPLUGIN_DIR="lib/browser_plugins/linux-flashplayer" OSREL=12.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/flashplayer" EXAMPLESDIR="share/examples/flashplayer" DATADIR="share/flashplayer" WWWDIR="www/flashplayer" ETCDIR="etc/flashplayer" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/flashplayer DOCSDIR=/usr/local/share/doc/flashplayer EXAMPLESDIR=/usr/local/share/examples/flashplayer WWWDIR=/usr/local/www/flashplayer ETCDIR=/usr/local/etc/flashplayer --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes MACHINE=i386 MACHINE_ARCH=i386 ARCH=${MACHINE_ARCH} #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### ARCH=i386 CONFIGURE_MAX_CMD_LEN=262144 OPSYS=FreeBSD OSREL=12.0 OSVERSION=1200032 PYTHONBASE=/usr/local UID=0 _JAVA_OS_LIST_REGEXP=native\|linux _JAVA_VENDOR_LIST_REGEXP=openjdk\|oracle\|sun _JAVA_VERSION_LIST_REGEXP=1.6\|1.7\|1.8\|1.6+\|1.7+\|1.8+ _OSRELEASE=12.0-CURRENT #### Misc Poudriere #### GID=0 DISABLE_MAKE_JOBS=poudriere ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 524288 stack size (kbytes, -s) 65536 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited socket buffer size (bytes, -b) unlimited pseudo-terminals (-p) unlimited kqueues (-k) unlimited umtx shared locks (-o) unlimited --End resource limits-- =================================================== =========================================================================== =================================================== ===> linux-flashplayer-26.0.0.126 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.10.1.txz [head-i386-default-job-04] Installing pkg-1.10.1... [head-i386-default-job-04] Extracting pkg-1.10.1: .......... done ===> linux-flashplayer-26.0.0.126 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of linux-flashplayer-26.0.0.126 =========================================================================== =================================================== =========================================================================== =================================================== => flash_player_npapi_linux.i386.tar.gz doesn't seem to exist in /portdistfiles/flashplayer/26.0.0.126. => Attempting to fetch https://fpdownload.macromedia.com/get/flashplayer/pdc/26.0.0.126/flash_player_npapi_linux.i386.tar.gz fetch: https://fpdownload.macromedia.com/get/flashplayer/pdc/26.0.0.126/flash_player_npapi_linux.i386.tar.gz: Not Found => Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/flashplayer/26.0.0.126/flash_player_npapi_linux.i386.tar.gz fetch: http://distcache.FreeBSD.org/ports-distfiles/flashplayer/26.0.0.126/flash_player_npapi_linux.i386.tar.gz: Not Found => Couldn't fetch it - please try to retrieve this => port manually into /portdistfiles/flashplayer/26.0.0.126 and try again. *** Error code 1 Stop. make: stopped in /usr/ports/www/linux-flashplayer From owner-freebsd-emulation@freebsd.org Sat Jun 17 02:21:42 2017 Return-Path: Delivered-To: freebsd-emulation@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 A69F8D8FF40 for ; Sat, 17 Jun 2017 02:21:42 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 938F779B86 for ; Sat, 17 Jun 2017 02:21:42 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 92E40D8FF3D; Sat, 17 Jun 2017 02:21:42 +0000 (UTC) Delivered-To: emulation@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 924F7D8FF3C; Sat, 17 Jun 2017 02:21:42 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy12.nyi.freebsd.org (beefy12.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:ef]) (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 28E4A79B84; Sat, 17 Jun 2017 02:21:42 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy12.nyi.freebsd.org (localhost [127.0.0.1]) by beefy12.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5H2LffQ088588; Sat, 17 Jun 2017 02:21:41 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy12.nyi.freebsd.org (8.15.2/8.15.2/Submit) id v5H2Lflv088566; Sat, 17 Jun 2017 02:21:41 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Sat, 17 Jun 2017 02:21:41 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201706170221.v5H2Lflv088566@beefy12.nyi.freebsd.org> To: emulation@FreeBSD.org Subject: [package - head-amd64-default][www/linux-flashplayer] Failed for linux-flashplayer-26.0.0.126 in fetch Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2017 02:21:42 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: emulation@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: head/www/linux-flashplayer/Makefile 443622 2017-06-15 18:09:49Z jkim $ Log URL: http://beefy12.nyi.freebsd.org/data/head-amd64-default/p443721_s320044/logs/linux-flashplayer-26.0.0.126.log Build URL: http://beefy12.nyi.freebsd.org/build.html?mastername=head-amd64-default&build=p443721_s320044 Log: ====>> Building www/linux-flashplayer build started at Sat Jun 17 02:21:39 UTC 2017 port directory: /usr/ports/www/linux-flashplayer building for: FreeBSD head-amd64-default-job-09 12.0-CURRENT FreeBSD 12.0-CURRENT 1200032 amd64 maintained by: emulation@FreeBSD.org Makefile ident: $FreeBSD: head/www/linux-flashplayer/Makefile 443622 2017-06-15 18:09:49Z jkim $ Poudriere version: 3.1.19-29-g5598cc27 Host OSVERSION: 1200031 Jail OSVERSION: 1200032 Job Id: 09 !!! Jail is newer than host. (Jail: 1200032, Host: 1200031) !!! !!! This is not supported. !!! !!! Host kernel must be same or newer than jail. !!! !!! Expect build failures. !!! ---Begin Environment--- SHELL=/bin/csh OSVERSION=1200032 UNAME_v=FreeBSD 12.0-CURRENT 1200032 UNAME_r=12.0-CURRENT BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/head-amd64-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=linux-flashplayer-26.0.0.126 OLDPWD=/ PWD=/usr/local/poudriere/data/.m/head-amd64-default/ref/.p/pool MASTERNAME=head-amd64-default SCRIPTPREFIX=/usr/local/share/poudriere USER=root HOME=/root POUDRIERE_VERSION=3.1.19-29-g5598cc27 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -m 555" BSD_INSTALL_LIB="install -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- WEBPLUGIN_DIR="lib/browser_plugins/linux-flashplayer" OSREL=12.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/flashplayer" EXAMPLESDIR="share/examples/flashplayer" DATADIR="share/flashplayer" WWWDIR="www/flashplayer" ETCDIR="etc/flashplayer" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/flashplayer DOCSDIR=/usr/local/share/doc/flashplayer EXAMPLESDIR=/usr/local/share/examples/flashplayer WWWDIR=/usr/local/www/flashplayer ETCDIR=/usr/local/etc/flashplayer --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles PACKAGE_BUILDING=yes #### /usr/local/etc/poudriere.d/make.conf #### # XXX: We really need this but cannot use it while 'make checksum' does not # try the next mirror on checksum failure. It currently retries the same # failed mirror and then fails rather then trying another. It *does* # try the next if the size is mismatched though. #MASTER_SITE_FREEBSD=yes # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### ARCH=amd64 CONFIGURE_MAX_CMD_LEN=262144 HAVE_COMPAT_IA32_KERN=YES OPSYS=FreeBSD OSREL=12.0 OSVERSION=1200032 PYTHONBASE=/usr/local UID=0 _JAVA_OS_LIST_REGEXP=native\|linux _JAVA_VENDOR_LIST_REGEXP=openjdk\|oracle\|sun _JAVA_VERSION_LIST_REGEXP=1.6\|1.7\|1.8\|1.6+\|1.7+\|1.8+ _OSRELEASE=12.0-CURRENT #### Misc Poudriere #### GID=0 DISABLE_MAKE_JOBS=poudriere ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 33554432 stack size (kbytes, -s) 524288 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited socket buffer size (bytes, -b) unlimited pseudo-terminals (-p) unlimited kqueues (-k) unlimited umtx shared locks (-o) unlimited --End resource limits-- =================================================== =========================================================================== =================================================== ===> linux-flashplayer-26.0.0.126 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.10.1.txz [head-amd64-default-job-09] Installing pkg-1.10.1... [head-amd64-default-job-09] Extracting pkg-1.10.1: .......... done ===> linux-flashplayer-26.0.0.126 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of linux-flashplayer-26.0.0.126 =========================================================================== =================================================== =========================================================================== =================================================== => flash_player_npapi_linux.i386.tar.gz doesn't seem to exist in /portdistfiles/flashplayer/26.0.0.126. => Attempting to fetch https://fpdownload.macromedia.com/get/flashplayer/pdc/26.0.0.126/flash_player_npapi_linux.i386.tar.gz fetch: https://fpdownload.macromedia.com/get/flashplayer/pdc/26.0.0.126/flash_player_npapi_linux.i386.tar.gz: Not Found => Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/flashplayer/26.0.0.126/flash_player_npapi_linux.i386.tar.gz fetch: http://distcache.FreeBSD.org/ports-distfiles/flashplayer/26.0.0.126/flash_player_npapi_linux.i386.tar.gz: Not Found => Couldn't fetch it - please try to retrieve this => port manually into /portdistfiles/flashplayer/26.0.0.126 and try again. *** Error code 1 Stop. make: stopped in /usr/ports/www/linux-flashplayer From owner-freebsd-emulation@freebsd.org Sat Jun 17 03:52:22 2017 Return-Path: Delivered-To: freebsd-emulation@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 7A3BBBEE105 for ; Sat, 17 Jun 2017 03:52:22 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 5BC0C7D3D9 for ; Sat, 17 Jun 2017 03:52:22 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 5B168BEE102; Sat, 17 Jun 2017 03:52:22 +0000 (UTC) Delivered-To: emulation@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 5A9E7BEE101; Sat, 17 Jun 2017 03:52:22 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from package19.nyi.freebsd.org (package19.nyi.freebsd.org [IPv6:2610:1c1:1:6082::16:f5]) (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 314207D3D7; Sat, 17 Jun 2017 03:52:22 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from package19.nyi.freebsd.org (localhost [127.0.0.1]) by package19.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5H3qLhG042546; Sat, 17 Jun 2017 03:52:21 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by package19.nyi.freebsd.org (8.15.2/8.15.2/Submit) id v5H3qL6F042540; Sat, 17 Jun 2017 03:52:21 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Sat, 17 Jun 2017 03:52:21 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201706170352.v5H3qL6F042540@package19.nyi.freebsd.org> To: emulation@FreeBSD.org Subject: [exp - 103i386-default-build-as-user][www/linux-flashplayer] Failed for linux-flashplayer-26.0.0.126 in fetch Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2017 03:52:22 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: emulation@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: head/www/linux-flashplayer/Makefile 443622 2017-06-15 18:09:49Z jkim $ Log URL: http://package19.nyi.freebsd.org/data/103i386-default-build-as-user/443721/logs/linux-flashplayer-26.0.0.126.log Build URL: http://package19.nyi.freebsd.org/build.html?mastername=103i386-default-build-as-user&build=443721 Log: ====>> Building www/linux-flashplayer build started at Sat Jun 17 03:52:18 UTC 2017 port directory: /usr/ports/www/linux-flashplayer building for: FreeBSD 103i386-default-build-as-user-job-15 10.3-RELEASE-p19 FreeBSD 10.3-RELEASE-p19 i386 maintained by: emulation@FreeBSD.org Makefile ident: $FreeBSD: head/www/linux-flashplayer/Makefile 443622 2017-06-15 18:09:49Z jkim $ Poudriere version: 3.1.19-29-g5598cc27 Host OSVERSION: 1200031 Jail OSVERSION: 1003000 Job Id: 15 ---Begin Environment--- SHELL=/bin/csh UNAME_p=i386 UNAME_m=i386 OSVERSION=1003000 UNAME_v=FreeBSD 10.3-RELEASE-p19 UNAME_r=10.3-RELEASE-p19 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/poudriere/data/.m/103i386-default-build-as-user/ref UID=0 PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=linux-flashplayer-26.0.0.126 OLDPWD=/ PWD=/poudriere/data/.m/103i386-default-build-as-user/ref/.p/pool MASTERNAME=103i386-default-build-as-user SCRIPTPREFIX=/usr/local/share/poudriere USER=root HOME=/root POUDRIERE_VERSION=3.1.19-29-g5598cc27 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh GID=0 LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ---End OPTIONS List--- --CONFIGURE_ARGS-- --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh --End CONFIGURE_ENV-- --MAKE_ENV-- XDG_DATA_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work HOME=/wrkdirs/usr/ports/www/linux-flashplayer/work TMPDIR="/tmp" NO_PIE=yes WITHOUT_DEBUG_FILES=yes WITHOUT_KERNEL_SYMBOLS=yes SHELL=/bin/sh NO_LINT=YES PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -m 555" BSD_INSTALL_LIB="install -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- WEBPLUGIN_DIR="lib/browser_plugins/linux-flashplayer" OSREL=10.3 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/flashplayer" EXAMPLESDIR="share/examples/flashplayer" DATADIR="share/flashplayer" WWWDIR="www/flashplayer" ETCDIR="etc/flashplayer" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/flashplayer DOCSDIR=/usr/local/share/doc/flashplayer EXAMPLESDIR=/usr/local/share/examples/flashplayer WWWDIR=/usr/local/www/flashplayer ETCDIR=/usr/local/etc/flashplayer --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles FORCE_PACKAGE=yes PACKAGE_BUILDING=yes MACHINE=i386 MACHINE_ARCH=i386 ARCH=${MACHINE_ARCH} #### /usr/local/etc/poudriere.d/make.conf #### # Build ALLOW_MAKE_JOBS_PACKAGES with 2 jobs MAKE_JOBS_NUMBER=2 #### /usr/ports/Mk/Scripts/ports_env.sh #### ARCH=i386 CONFIGURE_MAX_CMD_LEN=262144 OPSYS=FreeBSD OSREL=10.3 OSVERSION=1003000 PYTHONBASE=/usr/local _JAVA_OS_LIST_REGEXP=native\|linux _JAVA_VENDOR_LIST_REGEXP=openjdk\|oracle\|sun _JAVA_VERSION_LIST_REGEXP=1.6\|1.7\|1.8\|1.6+\|1.7+\|1.8+ _OSRELEASE=10.3-RELEASE-p19 #### Misc Poudriere #### DISABLE_MAKE_JOBS=poudriere ---End make.conf--- --Resource limits-- cpu time (seconds, -t) unlimited file size (512-blocks, -f) unlimited data seg size (kbytes, -d) 524288 stack size (kbytes, -s) 65536 core file size (512-blocks, -c) unlimited max memory size (kbytes, -m) unlimited locked memory (kbytes, -l) unlimited max user processes (-u) 89999 open files (-n) 1024 virtual mem size (kbytes, -v) unlimited swap limit (kbytes, -w) unlimited sbsize (bytes, -b) unlimited pseudo-terminals (-p) unlimited --End resource limits-- =================================================== =========================================================================== =================================================== ===> linux-flashplayer-26.0.0.126 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.10.1.txz [103i386-default-build-as-user-job-15] Installing pkg-1.10.1... [103i386-default-build-as-user-job-15] Extracting pkg-1.10.1: .......... done ===> linux-flashplayer-26.0.0.126 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of linux-flashplayer-26.0.0.126 =========================================================================== =================================================== =========================================================================== =================================================== => flash_player_npapi_linux.i386.tar.gz doesn't seem to exist in /portdistfiles/flashplayer/26.0.0.126. => Attempting to fetch https://fpdownload.macromedia.com/get/flashplayer/pdc/26.0.0.126/flash_player_npapi_linux.i386.tar.gz fetch: https://fpdownload.macromedia.com/get/flashplayer/pdc/26.0.0.126/flash_player_npapi_linux.i386.tar.gz: Not Found => Attempting to fetch http://distcache.FreeBSD.org/ports-distfiles/flashplayer/26.0.0.126/flash_player_npapi_linux.i386.tar.gz fetch: http://distcache.FreeBSD.org/ports-distfiles/flashplayer/26.0.0.126/flash_player_npapi_linux.i386.tar.gz: Not Found => Couldn't fetch it - please try to retrieve this => port manually into /portdistfiles/flashplayer/26.0.0.126 and try again. *** Error code 1 Stop. make: stopped in /usr/ports/www/linux-flashplayer From owner-freebsd-emulation@freebsd.org Sat Jun 17 02:38:38 2017 Return-Path: Delivered-To: freebsd-emulation@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 43012D9066E for ; Sat, 17 Jun 2017 02:38:38 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 25C5D7A1D5 for ; Sat, 17 Jun 2017 02:38:38 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 252FBD9066C; Sat, 17 Jun 2017 02:38:38 +0000 (UTC) Delivered-To: emulation@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 24CF1D9066B for ; Sat, 17 Jun 2017 02:38:38 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B85037A1D2 for ; Sat, 17 Jun 2017 02:38:37 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by freefall.freebsd.org (Postfix) id 068F81C1CB; Sat, 17 Jun 2017 02:38:37 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id A0FC31C1CA for ; Sat, 17 Jun 2017 02:38:36 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy11.nyi.freebsd.org (beefy11.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:ee]) (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 B2F767A1D0; Sat, 17 Jun 2017 02:38:35 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy11.nyi.freebsd.org (localhost [127.0.0.1]) by beefy11.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5H2cZ5D054496; Sat, 17 Jun 2017 02:38:35 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy11.nyi.freebsd.org (8.15.2/8.15.2/Submit) id v5H2cZTZ054493; Sat, 17 Jun 2017 02:38:35 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Sat, 17 Jun 2017 02:38:35 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201706170238.v5H2cZTZ054493@beefy11.nyi.freebsd.org> To: vbox@FreeBSD.org Subject: [package - head-i386-default][emulators/virtualbox-ose] Failed for virtualbox-ose-5.1.22_1 in build Cc: pkg-fallout@FreeBSD.org X-Mailman-Approved-At: Sat, 17 Jun 2017 07:02:54 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2017 02:38:38 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: vbox@FreeBSD.org Last committer: rezny@FreeBSD.org Ident: $FreeBSD: head/emulators/virtualbox-ose/Makefile 441503 2017-05-23 05:03:14Z rezny $ Log URL: http://beefy11.nyi.freebsd.org/data/head-i386-default/p443721_s320044/logs/virtualbox-ose-5.1.22_1.log Build URL: http://beefy11.nyi.freebsd.org/build.html?mastername=head-i386-default&build=p443721_s320044 Log: ====>> Building emulators/virtualbox-ose build started at Sat Jun 17 02:33:08 UTC 2017 port directory: /usr/ports/emulators/virtualbox-ose building for: FreeBSD head-i386-default-job-07 12.0-CURRENT FreeBSD 12.0-CURRENT 1200032 i386 maintained by: vbox@FreeBSD.org Makefile ident: $FreeBSD: head/emulators/virtualbox-ose/Makefile 441503 2017-05-23 05:03:14Z rezny $ Poudriere version: 3.1.19-29-g5598cc27 Host OSVERSION: 1200031 Jail OSVERSION: 1200032 Job Id: 07 !!! Jail is newer than host. (Jail: 1200032, Host: 1200031) !!! !!! This is not supported. !!! !!! Host kernel must be same or newer than jail. !!! !!! Expect build failures. !!! ---Begin Environment--- SHELL=/bin/csh UNAME_p=i386 UNAME_m=i386 OSVERSION=1200032 UNAME_v=FreeBSD 12.0-CURRENT 1200032 UNAME_r=12.0-CURRENT BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/head-i386-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=virtualbox-ose-5.1.22_1 OLDPWD=/ PWD=/usr/local/poudriere/data/.m/head-i386-default/ref/.p/pool MASTERNAME=head-i386-default SCRIPTPREFIX=/usr/local/share/poudriere USER=root HOME=/root POUDRIERE_VERSION=3.1.19-29-g5598cc27 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ===> The following configuration options are available for virtualbox-ose-5.1.22_1: ALSA=off: ALSA audio architecture support DBUS=on: D-Bus IPC system support DEBUG=off: Debug symbols, additional logs and assertions GUESTADDITIONS=off: Build with Guest Additions MANUAL=off: Build with user manual NLS=on: Native Language Support PULSEAUDIO=off: PulseAudio sound server support PYTHON=off: Python bindings or support R0LOGGING=off: Enable R0 logging UDPTUNNEL=on: Build with UDP tunnel support VDE=off: Build with VDE support VNC=on: Build with VNC support VPX=off: Use vpx for video capturing WEBSERVICE=on: Build Webservice X11=on: X11 (graphics) support ====> GUI (Graphical User Interface) support: you can only select none or one of them QT4=off: Build with QT4 Frontend QT5=on: Build with QT5 Frontend ===> Use 'make config' to modify these settings ---End OPTIONS List--- --CONFIGURE_ARGS-- --disable-java --passive-mesa --with-gcc="cc" --with-g++="c++" --disable-alsa --disable-docs --disable-pulse --disable-python --enable-vnc --disable-libvpx --enable-qt5 --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- QT_SELECT=qt5 PKG_CONFIG=pkgconf PYTHON="/usr/local/bin/python2.7" XDG_DATA_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh SDL_CONFIG=/usr/local/bin/sdl-config --End CONFIGURE_ENV-- --MAKE_ENV-- QT_SELECT=qt5 OPENSSLBASE=/usr OPENSSLDIR=/etc/ssl OPENSSLINC=/usr/include OPENSSLLIB=/usr/lib XDG_DATA_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work TMPDIR="/tmp" NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES SDL_CONFIG=/usr/local/bin/sdl-config PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -DLIBICONV_PLUG -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="-DLIBICONV_PLUG" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -DLIBICONV_PLUG -fstack-protector -fno-strict-aliasing -DLIBICONV_PLUG" MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -s -m 555" BSD_INSTALL_LIB="install -s -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- GUEST_VER=5.1.22 PYTHON_VERU=2_7 VBOXGROUP=vboxusers ALSA="@comment " NO_ALSA="" DBUS="" NO_DBUS="@comment " DEBUG="@comment " NO_DEBUG="" GUESTADDITIONS="@comment " NO_GUESTADDITIONS="" MANUAL="@comment " NO_MANUAL="" NLS="" NO_NLS="@comment " PULSEAUDIO="@comment " NO_PULSEAUDIO="" PYTHON="@comment " NO_PYTHON="" R0LOGGING="@comment " NO_R0LOGGING="" UDPTUNNEL="" NO_UDPTUNNEL="@comment " VDE="@comment " NO_VDE="" VNC="" NO_VNC="@comment " VPX="@comment " NO_VPX="" WEBSERVICE="" NO_WEBSERVICE="@comment " X11="" NO_X11="@comment " QT4="@comment " NO_QT4="" QT5="" NO_QT5="@comment " QT="" SDK="" I386="" ARCH="freebsd.x86" QT_BINDIR="lib/qt5/bin" QT_INCDIR="include/qt5" QT_LIBDIR="lib/qt5" QT_ARCHDIR="lib/qt5" QT_PLUGINDIR="lib/qt5/plugins" QT_LIBEXECDIR="libexec/qt5" QT_IMPORTDIR="lib/qt5/imports" QT_QMLDIR="lib/qt5/qml" QT_DATADIR="share/qt5" QT_DOCDIR="share/doc/qt5" QT_L10NDIR="share/qt5/translations" QT_EXAMPLEDIR="share/examples/qt5" QT_TESTDIR="share/qt5/tests" QT_MKSPECDIR="lib/qt5/mkspecs" QT_QTCHOOSERDIR="etc/xdg/qtchooser" PYTHON_INCLUDEDIR=include/python2.7 PYTHON_LIBDIR=lib/python2.7 PYTHON_PLATFORM=freebsd12 PYTHON_PYOEXTENSION=pyo PYTHON_SITELIBDIR=lib/python2.7/site-packages PYTHON_SUFFIX=27 PYTHON_VER=2.7 PYTHON_VERSION=python2.7 PYTHON2="" PYTHON3="@comment " GTK2_VERSION="2.10.0" GTK3_VERSION="3.0.0" PYTHON_PYCDIR=/ PYTHON_PYCEXT=.pyc OSREL=12.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/virtualbox-ose" EXAMPLESDIR="share/examples/virtualbox-ose" DATADIR="share/virtualbox-ose" WWWDIR="www/virtualbox-ose" ETCDIR="etc/virtualbox-ose" --End PLIST_SUB-- --SUB_LIST-- VBOXDIR=/usr/local/lib/virtualbox VBOXGROUP=vboxusers VBOXUSER=vboxusers VBOXWSUSER=vboxusers ALSA="@comment " kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avllu32.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlou32.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlogcphys.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlogcptr.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlohcphys.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avloioport.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlpv.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlrgcptr.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlrogcphys.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlrogcptr.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlroioport.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlroogcptr.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlrpv.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlruintptr.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlrfoff.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlru64.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlu32.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avluintptr.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlul.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/table.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/time/time.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/time/timeprog.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/time/timesup.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/vfs/vfsbase.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/vfs/vfschain.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/vfs/vfsiosmisc.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/vfs/vfsmemory.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/vfs/vfsmisc.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/vfs/vfsreadahead.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/vfs/vfsstdfile.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/vfs/vfsstdpipe.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/zip/tar.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/zip/tarcmd.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/zip/unzipcmd.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/zip/tarvfs.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/zip/gzipvfs.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/zip/pkzip.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/zip/pkzipvfs.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/zip/zip.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/createtemp-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/critsect-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/critsectrw-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/env-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTDirCreateUniqueNumbered-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTEnvDupEx-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTFileCopy-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTFileQuerySize-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTFileReadAll-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTFileReadAllEx-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTFileReadAllByHandle-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTFileReadAllByHandleEx-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTFileReadAllFree-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTLogWriteStdErr-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTLogWriteStdOut-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTLogWriteUser-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTPathGetCurrentDrive-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTPathIsSame-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTTimerLRCreate-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/rtStrFormatKernelAddress-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/mempool-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/semfastmutex-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/semxroads-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/spinlock-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/timerlr-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/alloc-ef.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/alloc.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/allocex.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/dir.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/dir2.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/fileio.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/fs.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/init.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/isofs.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/memsafer-r3.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/path.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/poll.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/process.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/socket.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/stream.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/test.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/testi.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/tcp.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/udp.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/generic/semspinmutex-r3-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/time/timesupref.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/ldr/ldrkStuff.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/VBox/RTAssertShouldPanic-vbox.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/VBox/log-vbox.cpp kBuild: Generating /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/out/freebsd.x86/release/obj/Runtime/errmsgvboxcomdata.h.ts /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/out/freebsd.x86/release/obj/Runtime/errmsgvboxcomdata.h.ts -> /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/out/freebsd.x86/release/obj/Runtime/errmsgvboxcomdata.h kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/err/errmsgxpcom.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/VBox/dbus.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/cdrom-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTCrStoreCreateSnapshotById-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTDirQueryInfo-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTDirSetTimes-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTFileMove-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTFileSetAllocationSize-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTLogWriteDebugger-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTPathAbs-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTPathGetCurrentOnDrive-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTSemEventMultiWait-2-ex-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTSystemQueryDmiString-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTSystemShutdown-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTThreadGetAffinity-stub-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTThreadSetAffinity-stub-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTThreadSetAffinityToCpu-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTTimeLocalNow-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTTimerCreate-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTUuidCreate-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/mppresent-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/sched-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/utf16locale-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/uuid-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTMpCpuId-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTMpGetCoreCount-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTMpGetOnlineCoreCount-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTProcDaemonize-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTProcIsRunningByName-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTThreadGetNativeState-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/freebsd/mp-freebsd.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/freebsd/systemmem-freebsd.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/freebsd/rtProcInitExePath-freebsd.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/generic/allocex-r3-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/RTFileQueryFsSizes-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/RTHandleGetStandard-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/RTMemProtect-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/RTPathUserHome-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/RTSystemQueryOSInfo-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/RTTimeNow-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/RTTimeSet-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/dir-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/env-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/errvars-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/fileio-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/fileio2-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/filelock-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/fs-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/fs2-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/fs3-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/ldrNative-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/localipc-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/rtmempage-exec-mmap-heap-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/path-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/path2-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/pathhost-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/RTPathUserDocuments-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/pipe-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/process-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/process-creation-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/rand-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/semevent-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/semeventmulti-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/semmutex-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/semrw-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/symlink-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/thread-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/thread2-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/time-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/timelocal-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/timer-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/tls-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/utf8-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTMpGetDescription-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/misc/RTSystemIsInsideVM-amd64-x86.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMCpuIdExSlow.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMAtomicUoAndU64.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMAtomicUoAndU32.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMAtomicUoDecU32.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMAtomicUoIncU32.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMAtomicUoOrU64.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMAtomicUoOrU32.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMMemFirstMismatchingU8.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMRdMsrEx.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMWrMsrEx.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMGetXcr0.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMSetXcr0.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMXSave.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMXRstor.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMFxSave.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMFxRstor.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMSerializeInstruction-cpuid.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMSerializeInstruction-iret.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMSerializeInstruction-rdtscp.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/math/bignum-amd64-x86.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMAtomicXchgU64.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMAtomicCmpXchgU64.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMAtomicCmpXchgExU64.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMAtomicReadU64.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMAtomicUoReadU64.asm kBuild: Linking RuntimeBldProg kmk: *** [/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/out/freebsd.x86/release/obj/RuntimeBldProg/RuntimeBldProg.a] Segmentation fault (core dumped) The failing command: @/usr/local/bin/kmk_redirect -rti /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/out/freebsd.x86/release/obj/RuntimeBldProg/RuntimeBldProg.a.ar-script -- ar -M kmk: *** [/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/out/freebsd.x86/release/obj/RuntimeBldProg/RuntimeBldProg.a] Deleting file `/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/out/freebsd.x86/release/obj/RuntimeBldProg/RuntimeBldProg.a.ar-script' *** Error code 2 Stop. make: stopped in /usr/ports/emulators/virtualbox-ose From owner-freebsd-emulation@freebsd.org Sat Jun 17 02:49:32 2017 Return-Path: Delivered-To: freebsd-emulation@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 F257FD90C0E for ; Sat, 17 Jun 2017 02:49:32 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id D58097A919 for ; Sat, 17 Jun 2017 02:49:32 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id D4CB5D90C0C; Sat, 17 Jun 2017 02:49:32 +0000 (UTC) Delivered-To: emulation@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 D4631D90C0B for ; Sat, 17 Jun 2017 02:49:32 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 9DE847A918 for ; Sat, 17 Jun 2017 02:49:32 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by freefall.freebsd.org (Postfix) id F1E381C4B0; Sat, 17 Jun 2017 02:49:31 +0000 (UTC) Delivered-To: vbox@localmail.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mx1.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by freefall.freebsd.org (Postfix) with ESMTPS id B73EE1C4AF for ; Sat, 17 Jun 2017 02:49:31 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy12.nyi.freebsd.org (beefy12.nyi.freebsd.org [IPv6:2610:1c1:1:6080::16:ef]) (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 D76577A90D; Sat, 17 Jun 2017 02:49:30 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: from beefy12.nyi.freebsd.org (localhost [127.0.0.1]) by beefy12.nyi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5H2nU1m039288; Sat, 17 Jun 2017 02:49:30 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy12.nyi.freebsd.org (8.15.2/8.15.2/Submit) id v5H2nUVZ039286; Sat, 17 Jun 2017 02:49:30 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Sat, 17 Jun 2017 02:49:30 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201706170249.v5H2nUVZ039286@beefy12.nyi.freebsd.org> To: vbox@FreeBSD.org Subject: [package - head-amd64-default][emulators/virtualbox-ose] Failed for virtualbox-ose-5.1.22_1 in build Cc: pkg-fallout@FreeBSD.org X-Mailman-Approved-At: Sat, 17 Jun 2017 10:59:15 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2017 02:49:33 -0000 You are receiving this mail as a port that you maintain is failing to build on the FreeBSD package build server. Please investigate the failure and submit a PR to fix build. Maintainer: vbox@FreeBSD.org Last committer: rezny@FreeBSD.org Ident: $FreeBSD: head/emulators/virtualbox-ose/Makefile 441503 2017-05-23 05:03:14Z rezny $ Log URL: http://beefy12.nyi.freebsd.org/data/head-amd64-default/p443721_s320044/logs/virtualbox-ose-5.1.22_1.log Build URL: http://beefy12.nyi.freebsd.org/build.html?mastername=head-amd64-default&build=p443721_s320044 Log: ====>> Building emulators/virtualbox-ose build started at Sat Jun 17 02:44:28 UTC 2017 port directory: /usr/ports/emulators/virtualbox-ose building for: FreeBSD head-amd64-default-job-03 12.0-CURRENT FreeBSD 12.0-CURRENT 1200032 amd64 maintained by: vbox@FreeBSD.org Makefile ident: $FreeBSD: head/emulators/virtualbox-ose/Makefile 441503 2017-05-23 05:03:14Z rezny $ Poudriere version: 3.1.19-29-g5598cc27 Host OSVERSION: 1200031 Jail OSVERSION: 1200032 Job Id: 03 !!! Jail is newer than host. (Jail: 1200032, Host: 1200031) !!! !!! This is not supported. !!! !!! Host kernel must be same or newer than jail. !!! !!! Expect build failures. !!! ---Begin Environment--- SHELL=/bin/csh OSVERSION=1200032 UNAME_v=FreeBSD 12.0-CURRENT 1200032 UNAME_r=12.0-CURRENT BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/head-amd64-default/ref PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin:/root/bin POUDRIERE_BUILD_TYPE=bulk PKGNAME=virtualbox-ose-5.1.22_1 OLDPWD=/ PWD=/usr/local/poudriere/data/.m/head-amd64-default/ref/.p/pool MASTERNAME=head-amd64-default SCRIPTPREFIX=/usr/local/share/poudriere USER=root HOME=/root POUDRIERE_VERSION=3.1.19-29-g5598cc27 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local POUDRIEREPATH=/usr/local/bin/poudriere ---End Environment--- ---Begin Poudriere Port Flags/Env--- PORT_FLAGS= PKGENV= ---End Poudriere Port Flags/Env--- ---Begin OPTIONS List--- ===> The following configuration options are available for virtualbox-ose-5.1.22_1: ALSA=off: ALSA audio architecture support DBUS=on: D-Bus IPC system support DEBUG=off: Debug symbols, additional logs and assertions GUESTADDITIONS=off: Build with Guest Additions MANUAL=off: Build with user manual NLS=on: Native Language Support PULSEAUDIO=off: PulseAudio sound server support PYTHON=off: Python bindings or support R0LOGGING=off: Enable R0 logging UDPTUNNEL=on: Build with UDP tunnel support VDE=off: Build with VDE support VNC=on: Build with VNC support VPX=off: Use vpx for video capturing WEBSERVICE=on: Build Webservice X11=on: X11 (graphics) support ====> GUI (Graphical User Interface) support: you can only select none or one of them QT4=off: Build with QT4 Frontend QT5=on: Build with QT5 Frontend ===> Use 'make config' to modify these settings ---End OPTIONS List--- --CONFIGURE_ARGS-- --disable-java --passive-mesa --with-gcc="cc" --with-g++="c++" --disable-alsa --disable-docs --disable-pulse --disable-python --enable-vnc --disable-libvpx --enable-qt5 --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- QT_SELECT=qt5 PKG_CONFIG=pkgconf PYTHON="/usr/local/bin/python2.7" XDG_DATA_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work TMPDIR="/tmp" SHELL=/bin/sh CONFIG_SHELL=/bin/sh SDL_CONFIG=/usr/local/bin/sdl-config --End CONFIGURE_ENV-- --MAKE_ENV-- QT_SELECT=qt5 OPENSSLBASE=/usr OPENSSLDIR=/etc/ssl OPENSSLINC=/usr/include OPENSSLLIB=/usr/lib XDG_DATA_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work HOME=/wrkdirs/usr/ports/emulators/virtualbox-ose/work TMPDIR="/tmp" NO_PIE=yes MK_DEBUG_FILES=no MK_KERNEL_SYMBOLS=no SHELL=/bin/sh NO_LINT=YES SDL_CONFIG=/usr/local/bin/sdl-config PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/lib" CC="cc" CFLAGS="-O2 -pipe -DLIBICONV_PLUG -fstack-protector -fno-strict-aliasing" CPP="cpp" CPPFLAGS="-DLIBICONV_PLUG" LDFLAGS=" -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -DLIBICONV_PLUG -fstack-protector -fno-strict-aliasing -DLIBICONV_PLUG" MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -s -m 555" BSD_INSTALL_LIB="install -s -m 0644" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- GUEST_VER=5.1.22 PYTHON_VERU=2_7 VBOXGROUP=vboxusers ALSA="@comment " NO_ALSA="" DBUS="" NO_DBUS="@comment " DEBUG="@comment " NO_DEBUG="" GUESTADDITIONS="@comment " NO_GUESTADDITIONS="" MANUAL="@comment " NO_MANUAL="" NLS="" NO_NLS="@comment " PULSEAUDIO="@comment " NO_PULSEAUDIO="" PYTHON="@comment " NO_PYTHON="" R0LOGGING="@comment " NO_R0LOGGING="" UDPTUNNEL="" NO_UDPTUNNEL="@comment " VDE="@comment " NO_VDE="" VNC="" NO_VNC="@comment " VPX="@comment " NO_VPX="" WEBSERVICE="" NO_WEBSERVICE="@comment " X11="" NO_X11="@comment " QT4="@comment " NO_QT4="" QT5="" NO_QT5="@comment " QT="" SDK="" I386="@comment " ARCH="freebsd.amd64" QT_BINDIR="lib/qt5/bin" QT_INCDIR="include/qt5" QT_LIBDIR="lib/qt5" QT_ARCHDIR="lib/qt5" QT_PLUGINDIR="lib/qt5/plugins" QT_LIBEXECDIR="libexec/qt5" QT_IMPORTDIR="lib/qt5/imports" QT_QMLDIR="lib/qt5/qml" QT_DATADIR="share/qt5" QT_DOCDIR="share/doc/qt5" QT_L10NDIR="share/qt5/translations" QT_EXAMPLEDIR="share/examples/qt5" QT_TESTDIR="share/qt5/tests" QT_MKSPECDIR="lib/qt5/mkspecs" QT_QTCHOOSERDIR="etc/xdg/qtchooser" PYTHON_INCLUDEDIR=include/python2.7 PYTHON_LIBDIR=lib/python2.7 PYTHON_PLATFORM=freebsd12 PYTHON_PYOEXTENSION=pyo PYTHON_SITELIBDIR=lib/python2.7/site-packages PYTHON_SUFFIX=27 PYTHON_VER=2.7 PYTHON_VERSION=python2.7 PYTHON2="" PYTHON3="@comment " GTK2_VERSION="2.10.0" GTK3_VERSION="3.0.0" PYTHON_PYCDIR=/ PYTHON_PYCEXT=.pyc OSREL=12.0 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib DOCSDIR="share/doc/virtualbox-ose" EXAMPLESDIR="share/examples/virtualbox-ose" DATADIR="share/virtualbox-ose" WWWDIR="www/virtualbox-ose" ETCDIR="etc/virtualbox-ose" --End PLIST_SUB-- --SUB_LIST-- VBOXDIR=/usr/local/lib/virtualbox VBOXGROUP=vboxusers VBOXUSER=vboxusers VBOXWSUSER=vboxusers ALSA="@comment " NO_ALSA="" kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlgcptr.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlhcphys.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlgcphys.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avllu32.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlou32.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlogcphys.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlogcptr.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlohcphys.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avloioport.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlpv.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlrgcptr.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlrogcphys.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlrogcptr.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlroioport.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlroogcptr.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlrpv.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlruintptr.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlrfoff.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlru64.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlu32.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avluintptr.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/avlul.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/table/table.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/time/time.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/time/timeprog.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/time/timesup.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/vfs/vfsbase.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/vfs/vfschain.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/vfs/vfsiosmisc.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/vfs/vfsmemory.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/vfs/vfsmisc.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/vfs/vfsreadahead.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/vfs/vfsstdfile.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/vfs/vfsstdpipe.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/zip/tar.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/zip/tarcmd.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/zip/unzipcmd.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/zip/tarvfs.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/zip/gzipvfs.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/zip/pkzip.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/zip/pkzipvfs.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/zip/zip.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/createtemp-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/critsect-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/critsectrw-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/env-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTDirCreateUniqueNumbered-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTEnvDupEx-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTFileCopy-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTFileQuerySize-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTFileReadAll-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTFileReadAllEx-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTFileReadAllByHandle-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTFileReadAllByHandleEx-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTFileReadAllFree-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTLogWriteStdErr-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTLogWriteStdOut-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTLogWriteUser-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTPathGetCurrentDrive-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTPathIsSame-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTTimerLRCreate-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/rtStrFormatKernelAddress-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/mempool-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/semfastmutex-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/semxroads-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/spinlock-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/timerlr-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/alloc-ef.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/alloc.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/allocex.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/dir.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/dir2.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/fileio.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/fs.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/init.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/isofs.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/memsafer-r3.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/path.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/poll.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/process.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/socket.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/stream.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/test.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/testi.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/tcp.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/udp.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/generic/semspinmutex-r3-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/time/timesupref.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/ldr/ldrkStuff.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/VBox/RTAssertShouldPanic-vbox.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/VBox/log-vbox.cpp kBuild: Generating /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/out/freebsd.amd64/release/obj/Runtime/errmsgvboxcomdata.h.ts /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/out/freebsd.amd64/release/obj/Runtime/errmsgvboxcomdata.h.ts -> /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/out/freebsd.amd64/release/obj/Runtime/errmsgvboxcomdata.h kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/err/errmsgxpcom.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/VBox/dbus.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/cdrom-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTCrStoreCreateSnapshotById-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTDirQueryInfo-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTDirSetTimes-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTFileMove-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTFileSetAllocationSize-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTLogWriteDebugger-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTPathAbs-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTPathGetCurrentOnDrive-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTSemEventMultiWait-2-ex-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTSemEventMultiWaitNoResume-2-ex-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTSystemQueryDmiString-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTSystemShutdown-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTThreadGetAffinity-stub-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTThreadSetAffinity-stub-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTThreadSetAffinityToCpu-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTTimeLocalNow-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTTimerCreate-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTUuidCreate-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/mppresent-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/sched-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/utf16locale-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/uuid-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTMpCpuId-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTMpGetCoreCount-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTMpGetOnlineCoreCount-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTProcDaemonize-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTProcIsRunningByName-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTThreadGetNativeState-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/freebsd/mp-freebsd.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/freebsd/systemmem-freebsd.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/freebsd/rtProcInitExePath-freebsd.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/generic/allocex-r3-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/RTFileQueryFsSizes-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/RTHandleGetStandard-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/RTMemProtect-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/RTPathUserHome-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/RTSystemQueryOSInfo-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/RTTimeNow-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/RTTimeSet-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/dir-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/env-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/errvars-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/fileio-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/fileio2-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/filelock-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/fs-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/fs2-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/fs3-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/ldrNative-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/localipc-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/rtmempage-exec-mmap-heap-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/path-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/path2-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/pathhost-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/RTPathUserDocuments-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/pipe-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/process-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/process-creation-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/rand-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/semevent-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/semeventmulti-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/semmutex-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/semrw-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/symlink-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/thread-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/thread2-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/time-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/timelocal-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/timer-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/tls-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/r3/posix/utf8-posix.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/generic/RTMpGetDescription-generic.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/misc/RTSystemIsInsideVM-amd64-x86.cpp kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMCpuIdExSlow.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMAtomicUoAndU64.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMAtomicUoAndU32.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMAtomicUoDecU32.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMAtomicUoIncU32.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMAtomicUoOrU64.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMAtomicUoOrU32.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMMemFirstMismatchingU8.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMRdMsrEx.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMWrMsrEx.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMGetXcr0.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMSetXcr0.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMXSave.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMXRstor.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMFxSave.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMFxRstor.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMSerializeInstruction-cpuid.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMSerializeInstruction-iret.asm /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMSerializeInstruction-iret.asm:46: warning: `ss' segment register ignored in 64-bit mode kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/asm/ASMSerializeInstruction-rdtscp.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/math/bignum-amd64-x86.asm kBuild: Compiling RuntimeBldProg - /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/src/VBox/Runtime/common/math/RTUInt128MulByU64.asm kBuild: Linking RuntimeBldProg kmk: *** [/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/out/freebsd.amd64/release/obj/RuntimeBldProg/RuntimeBldProg.a] Segmentation fault (core dumped) The failing command: @/usr/local/bin/kmk_redirect -rti /wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/out/freebsd.amd64/release/obj/RuntimeBldProg/RuntimeBldProg.a.ar-script -- ar -M kmk: *** [/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/out/freebsd.amd64/release/obj/RuntimeBldProg/RuntimeBldProg.a] Deleting file `/wrkdirs/usr/ports/emulators/virtualbox-ose/work/VirtualBox-5.1.22/out/freebsd.amd64/release/obj/RuntimeBldProg/RuntimeBldProg.a.ar-script' *** Error code 2 Stop. make: stopped in /usr/ports/emulators/virtualbox-ose From owner-freebsd-emulation@freebsd.org Sat Jun 17 17:33:15 2017 Return-Path: Delivered-To: freebsd-emulation@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 9E9A3BFE6B5 for ; Sat, 17 Jun 2017 17:33:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 863A87314D for ; Sat, 17 Jun 2017 17:33:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 82A1CBFE6B4; Sat, 17 Jun 2017 17:33:15 +0000 (UTC) Delivered-To: emulation@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 821B9BFE6B3 for ; Sat, 17 Jun 2017 17:33:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 70E537314C for ; Sat, 17 Jun 2017 17:33:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5HHXFm9006087 for ; Sat, 17 Jun 2017 17:33:15 GMT (envelope-from bugzilla-noreply@freebsd.org) Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: maintainer-feedback requested: [Bug 220084] www/linux-flashplayer: update to 26.0.0.131 Date: Sat, 17 Jun 2017 17:33:15 +0000 X-Bugzilla-Type: request X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: emulation@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2017 17:33:15 -0000 Greg Lewis has reassigned Bugzilla Automation 's request for maintainer-feedback to emulation@FreeBSD.org: Bug 220084: www/linux-flashplayer: update to 26.0.0.131 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D220084 --- Description --- Created attachment 183577 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D183577&action= =3Dedit Patch for the update 26.0.0.131 is the latest release From owner-freebsd-emulation@freebsd.org Sat Jun 17 17:33:15 2017 Return-Path: Delivered-To: freebsd-emulation@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 E14A9BFE6BC for ; Sat, 17 Jun 2017 17:33:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id C87B473150 for ; Sat, 17 Jun 2017 17:33:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id C77F7BFE6BB; Sat, 17 Jun 2017 17:33:15 +0000 (UTC) Delivered-To: emulation@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 C7111BFE6BA for ; Sat, 17 Jun 2017 17:33:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (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 B55E97314F for ; Sat, 17 Jun 2017 17:33:15 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id v5HHXFmD006087 for ; Sat, 17 Jun 2017 17:33:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: emulation@FreeBSD.org Subject: [Bug 220084] www/linux-flashplayer: update to 26.0.0.131 Date: Sat, 17 Jun 2017 17:33:15 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: glewis@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: emulation@FreeBSD.org X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jun 2017 17:33:16 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D220084 Bug ID: 220084 Summary: www/linux-flashplayer: update to 26.0.0.131 Product: Ports & Packages Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: emulation@FreeBSD.org Reporter: glewis@FreeBSD.org Assignee: emulation@FreeBSD.org Flags: maintainer-feedback?(emulation@FreeBSD.org) Created attachment 183577 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D183577&action= =3Dedit Patch for the update 26.0.0.131 is the latest release --=20 You are receiving this mail because: You are the assignee for the bug.=