From owner-freebsd-office@freebsd.org Sun Dec 11 07:24:12 2016 Return-Path: Delivered-To: freebsd-office@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 AA07DC707D5 for ; Sun, 11 Dec 2016 07:24:12 +0000 (UTC) (envelope-from srl@icu-project.org) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 937BACA4 for ; Sun, 11 Dec 2016 07:24:12 +0000 (UTC) (envelope-from srl@icu-project.org) Received: by mailman.ysv.freebsd.org (Postfix) id 92E46C707D4; Sun, 11 Dec 2016 07:24:12 +0000 (UTC) Delivered-To: office@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 92994C707D2 for ; Sun, 11 Dec 2016 07:24:12 +0000 (UTC) (envelope-from srl@icu-project.org) Received: from p3plsmtpout001.prod.phx3.secureserver.net (p3plsmtpout001.prod.phx3.secureserver.net [208.109.80.47]) (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 55857CA3; Sun, 11 Dec 2016 07:24:11 +0000 (UTC) (envelope-from srl@icu-project.org) Received: from gdx.icu-project.org ([208.109.101.195]) by : HOSTING RELAY : with SMTP id FyTPctKZt4Y6lFyTQcO5xS; Sun, 11 Dec 2016 00:23:04 -0700 x-originating-ip: 208.109.101.195 Received: from [10.0.10.140] (secure.in-nahla.com [173.164.162.109]) (authenticated bits=0) by gdx.icu-project.org (8.14.4/8.14.4) with ESMTP id uBB7Knvr005359 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO); Sun, 11 Dec 2016 00:23:03 -0700 User-Agent: Microsoft-MacOutlook/f.15.1.160411 Date: Sat, 10 Dec 2016 23:23:05 -0800 Subject: Re: ICU port? From: "Steven R. Loomis" To: Tijl Coosemans CC: Message-ID: <2A4B7B3F-3FEE-4E2D-99A7-FB23C15C4765@icu-project.org> Thread-Topic: ICU port? References: <20161210160419.79ade1e2@kalimero.tijl.coosemans.org> In-Reply-To: <20161210160419.79ade1e2@kalimero.tijl.coosemans.org> Mime-version: 1.0 Content-type: text/plain; charset="UTF-8" Content-transfer-encoding: quoted-printable X-CMAE-Envelope: MS4wfOaIRujeUcpnLSWSUVgUwDQeKcx/hvPb4tfgzYDuYVY5eJpqdEJY/qcn0Qu0srmy+aU0z5XIFo2oJ8+ZEqlAa52zT8KnblGJpZPU7FKa9uKSevKxkDjT Efun6FhJjR3QVIYk+MwmS5d3Dno7vQa1JtvZws/9FVJQcZQoUoaY+LAPUYFmgpuzzhAMeo7msK/Solnv7nYNC5tii2VlaeOOWLA= X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Dec 2016 07:24:12 -0000 El 12/10/16 7:04 AM, "Tijl Coosemans" escribi=C3=B3: >On Fri, 09 Dec 2016 15:44:47 -0800 "Steven R. Loomis" wrote: >> I came across this address (though it seems to be a generic one) >> on http://portsmon.freebsd.org/portoverview.py?category=3Ddevel&portname=3Di= cu >> and https://svnweb.freebsd.org/ports/head/devel/icu/ >>=20 >> I work on ICU. 58.2 is shipping today (hopefully). >>=20 >> It seems there are a bunch of patches in >> https://svnweb.freebsd.org/ports/head/devel/icu/files/ >>=20 >> It would be great to get these pushed upstream to ICU. >>=20 >> Any way we can try to do that? >> ICU=E2=80=99s CLA is at https://ssl.icu-project.org/trac/wiki/IcuDownstreams#c= la >> for accepting patches. > >Feel free to commit them. Could you consider signing the CLA at the bottom of http://icu-project.org/= trac/#cla ? It=E2=80=99s 1-click if you have a Github id. > >The Makefile patches fix installation of static libraries. INSTALL-L >is equal to INSTALL_PROGRAM which may include the -s flag to strip >(debug) symbols. Stripping removes the .symtab section from ELF files >which is ok for programs and dynamically linked libraries (which also >have a .dynsym section listing exported symbols), but not for static >libraries. If you strip a static library it will no longer export any >symbols, i.e. the output of "readelf -s libfoo.a" will be empty. Sounds like a good one to upstream also. >patch-common_umutex.cpp: >This code is compiled conditionally and one of the cases is a c++11 >compiler without header. uio.fState is an atomic variable and >cannot be read directly. I used umtx_loadAcquire in the patch because >that's what's used elsewhere to read fState. OK. Why would not be available? >patch-common_unicode_platform.h: >I believe that since a few versions ICU is compiled with _XOPEN_SOURCE >defined. This makes our libc headers more strictly standards compliant >so they don't define BYTE_ORDER and BIG_ENDIAN. _BYTE_ORDER and >_BIG_ENDIAN are still defined though. The patch should probably just >add them without removing the former. You should also check if other >operating systems define these macros and if their definition is >compatible or not. This is a good idea. >patch-common_unicode_uconfig.h: >This is just local FreeBSD configuration. You probably don't want to >commit this. Ok > >patch-config_mh-bsd-gcc: >Makes this file more similar to the Linux one. Sure, this sounds like a good one to take upstream. >patch-r39484: >Patch from https://ssl.icu-project.org/trac/ticket/12827 Ok, just a backport. Thanks! P.s. 58.2 just shipped. From owner-freebsd-office@freebsd.org Sun Dec 11 08:51:12 2016 Return-Path: Delivered-To: freebsd-office@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 97554C72F95 for ; Sun, 11 Dec 2016 08:51:12 +0000 (UTC) (envelope-from gatesbillou@hotmail.com) 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 68A96395 for ; Sun, 11 Dec 2016 08:51:12 +0000 (UTC) (envelope-from gatesbillou@hotmail.com) Received: by mailman.ysv.freebsd.org (Postfix) id 67E7FC72F94; Sun, 11 Dec 2016 08:51:12 +0000 (UTC) Delivered-To: office@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 67879C72F93 for ; Sun, 11 Dec 2016 08:51:12 +0000 (UTC) (envelope-from gatesbillou@hotmail.com) Received: from BLU004-OMC2S5.hotmail.com (blu004-omc2s5.hotmail.com [65.55.111.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client CN "*.outlook.com", Issuer "Microsoft IT SSL SHA2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1F03C391 for ; Sun, 11 Dec 2016 08:51:11 +0000 (UTC) (envelope-from gatesbillou@hotmail.com) Received: from EUR02-VE1-obe.outbound.protection.outlook.com ([65.55.111.73]) by BLU004-OMC2S5.hotmail.com over TLS secured channel with Microsoft SMTPSVC(7.5.7601.23008); Sun, 11 Dec 2016 00:50:04 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=hotmail.com; s=selector1; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version; bh=Pze/ZpT4EhdGPhxc5KtqAmrTjv3W497zSu8GHB+HAZ8=; b=c6FWbX/UZQ0Gkb9msZWeahzGkhOuzoBlttwEOVZQSH+nnS8s5J7mANaT9x5ucHO9XlNrqfbaA4j4+pBL2H6NJj55BSpJKQzq2CfNTXUAhRshHixGNpYPn3Uh0V1f3jP4Fr14C6awwbkjRX9RPWKg6fAkInQ8PRnYVQuMu0Wn2Z/OTTJaaSTPxufrd0slRwU+UOvm7PQeO+YTb/a8UuhSb7xJxJUm3FLkLUfwkBJ0JS1DPk/oon47Ax69EFiKmgN5S0DSvtbMI10CpAbTKf8IsATRtC4x0gTgkSyFj6WotVH/k7UdBeLy6EfjI8RD95CrYdMP8rGiHfds6NjmKUeoog== Received: from VE1EUR02FT036.eop-EUR02.prod.protection.outlook.com (10.152.12.60) by VE1EUR02HT068.eop-EUR02.prod.protection.outlook.com (10.152.13.27) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P384) id 15.1.761.6; Sun, 11 Dec 2016 08:50:03 +0000 Received: from DB6PR0201MB2277.eurprd02.prod.outlook.com (10.152.12.59) by VE1EUR02FT036.mail.protection.outlook.com (10.152.13.197) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P384) id 15.1.761.6 via Frontend Transport; Sun, 11 Dec 2016 08:50:02 +0000 Received: from DB6PR0201MB2277.eurprd02.prod.outlook.com ([10.169.222.140]) by DB6PR0201MB2277.eurprd02.prod.outlook.com ([10.169.222.140]) with mapi id 15.01.0771.009; Sun, 11 Dec 2016 08:50:02 +0000 From: Billou Gates To: "office@FreeBSD.org" Subject: libreoffice new version Thread-Topic: libreoffice new version Thread-Index: AQHSU4uPi/qgAWoqRU+Y0I32Dx0MVw== Date: Sun, 11 Dec 2016 08:50:02 +0000 Message-ID: Accept-Language: fr-FR, en-US Content-Language: fr-FR X-MS-Has-Attach: X-MS-TNEF-Correlator: authentication-results: FreeBSD.org; dkim=none (message not signed) header.d=none;FreeBSD.org; dmarc=none action=none header.from=hotmail.com; x-incomingtopheadermarker: OriginalChecksum:9420C22AF7EFAB8398EB2DED7412B407D38808F46B362B52FE21A08962034E3F; UpperCasedChecksum:948B8FEBD5A50BACF74DA78A4118CA35C0349A643A08667A6E77DC24B4D321CC; SizeAsReceived:7188; Count:36 x-tmn: [AAYDZkeL9OUBgpQMmfnp7OeR4V/mfXfH] x-incomingheadercount: 36 x-eopattributedmessage: 0 x-microsoft-exchange-diagnostics: 1; VE1EUR02HT068; 7:jV0bcpzmcyJHvkDs/v8xgRVyrH1q64qkQoe1Esc3jOasfkxpiz6Z1tAyEqUSYnfk6R6fh+BIZSVxCpN3+0VUgGN0t+0GSqjH587ykKdLIbo/6QAmR9dWlDpMjuNpS4kE+8C2rbL0kpKZcDjg7tRCriNnCkSdgkN3KxFwOKDuG/acwb5Q6ihCfbajNPjgd98j8Z/RuER8Hfi9ZuSqQNlj60CRKecj4ViDyIOKXjVzd0JpLVzFflwZy6rIpJNiBV7pJ0P/wfKD77LfVkWmD0PZF9bt/DZmBt5J9ufH3ZrR4PPhNupROXTJLXpYGFBE6kfb/qx/VQiksLrnov78hJmL+yNrdNS0EYtsdMGM6+cGTC/IARHmCqEeca0/BALGT+QKsDmsxlkzs4268cEA0AS5bPbsQyUdG/OXJcggJxa7b/JNqaTqhVOCDNjlZjPXl3Idzgkuy4kKRE3lvGqrFVp/Og== x-forefront-antispam-report: EFV:NLI; SFV:NSPM; SFS:(10019020)(98900003); DIR:OUT; SFP:1102; SCL:1; SRVR:VE1EUR02HT068; H:DB6PR0201MB2277.eurprd02.prod.outlook.com; FPR:; SPF:None; LANG:en; x-ms-office365-filtering-correlation-id: 09f25310-bbf5-4c57-5cf3-08d421a2b25c x-microsoft-antispam: UriScan:; BCL:0; PCL:0; RULEID:(22001)(1601124038)(1603103113)(1601125047); SRVR:VE1EUR02HT068; x-exchange-antispam-report-cfa-test: BCL:0; PCL:0; RULEID:(432015012)(82015046); SRVR:VE1EUR02HT068; BCL:0; PCL:0; RULEID:; SRVR:VE1EUR02HT068; x-forefront-prvs: 0153A8321A spamdiagnosticoutput: 1:99 spamdiagnosticmetadata: NSPM Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-OriginatorOrg: hotmail.com X-MS-Exchange-CrossTenant-originalarrivaltime: 11 Dec 2016 08:50:02.4886 (UTC) X-MS-Exchange-CrossTenant-fromentityheader: Internet X-MS-Exchange-CrossTenant-id: 84df9e7f-e9f6-40af-b435-aaaaaaaaaaaa X-MS-Exchange-Transport-CrossTenantHeadersStamped: VE1EUR02HT068 X-OriginalArrivalTime: 11 Dec 2016 08:50:04.0555 (UTC) FILETIME=[9101F5B0:01D2538B] X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Dec 2016 08:51:12 -0000 Hello, Today I installed libreoffice on my freebsd 11. When I do "pkg install libreoffice" I have version 5.0.6_3. Is there a way= to have the latest version 5.2.3_5 through package ? Thanks.= From owner-freebsd-office@freebsd.org Sun Dec 11 13:43:19 2016 Return-Path: Delivered-To: freebsd-office@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 2BEC1C718F7 for ; Sun, 11 Dec 2016 13:43:19 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 072D01558 for ; Sun, 11 Dec 2016 13:43:19 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: by mailman.ysv.freebsd.org (Postfix) id 06752C718F6; Sun, 11 Dec 2016 13:43:19 +0000 (UTC) Delivered-To: office@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 045C4C718F5 for ; Sun, 11 Dec 2016 13:43:19 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: from mail-wm0-x22a.google.com (mail-wm0-x22a.google.com [IPv6:2a00:1450:400c:c09::22a]) (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 988E21556 for ; Sun, 11 Dec 2016 13:43:18 +0000 (UTC) (envelope-from baptiste.daroussin@gmail.com) Received: by mail-wm0-x22a.google.com with SMTP id a197so26978738wmd.0 for ; Sun, 11 Dec 2016 05:43:18 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to:user-agent; bh=o3aQ2rk1bh6MiJXKDBE8xlSBKDzu7msW2YfTBbVuqH8=; b=qAg7XFwsuj9nezN95lenYiJ5w4zVR3dGQKmSrgws5Eq0Vq5cnnkeF03OqzjjwHO85P Io5odIgDzNV7wM3gzkhJ8TUkUl0Yhrzu3wADYBiR2w8BzKoDXNLrWbLJJADb5gKJuzEn 38pRRxC2vKtNHdRiOBpnJVjUEif6davHSx+f09K572NXeCSEdLrYLLeJTRzN1eHIc6+m 7+x44AET4l2VaZVbDk/NQwjuIlYh02AvOEv1ZsYb5fxRlAOnRxmRj7EQLk6B/IYBCknK uHV7dKU/2VghQ69K9Q4OaSKl1d0E+lmG5bbB6lcwfuAfUrLRLZM9c8aEC/zglq8Hd672 HnZg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:sender:date:from:to:cc:subject:message-id :references:mime-version:content-disposition:in-reply-to:user-agent; bh=o3aQ2rk1bh6MiJXKDBE8xlSBKDzu7msW2YfTBbVuqH8=; b=RODQwyYLwDE7GcFUjRZvo0nxX7eDTEMJ3wveMngI4ME4LCqPa1zllNSgKOXX9ywVx0 P9pfPoPya6TgUiz9wREt3XQ2+FTpNgUm09cQsE2gHSQdB9ePMVsftm8sEw6ECKSqumbw LWABb4IYRkjrS67+9m9itGpJIp1hrtYElXf/pGjqXx5Yg+Wo9sroW2eSkt/XBpg+gHg1 GU3f3vbntNl9wN0Dd8ht8VhNh0VjnBnSDQTncjrjtqKUkQm09K1iXiWsepfyW11G93pZ HVGcYVn0+tLY8q2hIIDHaZ8a+CPvUXcStI+XOdRsUVXhA9T2VxN6bDRB+NlFWgAlBKuS st+w== X-Gm-Message-State: AKaTC00GG7Rd/Qgf1+wPgskdnrm2YTvKLjMoXuqO1flFvV/Z169RUKa0lfQvETeyaPd/7g== X-Received: by 10.28.218.213 with SMTP id r204mr14560075wmg.69.1481463796215; Sun, 11 Dec 2016 05:43:16 -0800 (PST) Received: from ivaldir.etoilebsd.net ([2001:41d0:8:db4c::1]) by smtp.gmail.com with ESMTPSA id up5sm9535748wjc.12.2016.12.11.05.43.15 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 11 Dec 2016 05:43:15 -0800 (PST) Sender: Baptiste Daroussin Date: Sun, 11 Dec 2016 14:43:14 +0100 From: Baptiste Daroussin To: Billou Gates Cc: "office@FreeBSD.org" Subject: Re: libreoffice new version Message-ID: <20161211134314.rolfoim5eolp6q2k@ivaldir.etoilebsd.net> References: MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="4uvogzrym6j63llf" Content-Disposition: inline In-Reply-To: User-Agent: NeoMutt/20161126 (1.7.1) X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Dec 2016 13:43:19 -0000 --4uvogzrym6j63llf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sun, Dec 11, 2016 at 08:50:02AM +0000, Billou Gates wrote: > Hello, > Today I installed libreoffice on my freebsd 11. > When I do "pkg install libreoffice" I have version 5.0.6_3. Is there a way to have the latest version 5.2.3_5 through package ? > Thanks. The latest version is in the head branch not in the quarterly branch. The head branch will become promoted as quarterly early in January meaning libreoffice would be available at this time. Best regards, Bapt --4uvogzrym6j63llf Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEgOTj3suS2urGXVU3Y4mL3PG3PloFAlhNV+4ACgkQY4mL3PG3 PlpuJxAAmXTf04g5e+piMdD6+0Mc6RPvKoEuJ5n7T8uAxn66Jo5IfsLlLiTmEH2s 6DoZpND3K1HocrmyPy05JGOe86dcnS9fBAJ6dMNAszzWxxHUMmZKzGw2IH1epyZ/ 1zB3IiuLeA8v5Wce5N/vqn7tq6u+m7M2WqARjVsqQDF6Y/w0I1fxK7wl5AHLifZh miR9uNRnAMHXWKygo1ofM+flMy8NTE4rlXQwD2QGbBgk7vtgnbIh1kaXSwXsnhBr nymBbj0gvLmFFiSwD4b+mki5KLzXCeka485W2IeSmp994wXRQEdmxzoYAtjFRRCi 16FXu9aBy4mOdqmxwgo4tFLzU2f/ikvvM4I8PKIafr3gSg1kWBcdInPTnf+Xif7k VpymbGQ9KeZnKTBQEz5ESSFDtO+nqp3ZF+JJLkCIstLi+6AKDPFQZyvEwGFG4L/c TAkccQRoeTmkjRErRhmsQyTxEWw7gvRtoOG1OpG+pgpJtNdwsnRLBIpvMMg+kNoe VoKnhi45Y5KPXyM8SEakLjki/jFMiILNSzBUqqQNfdmWV4QkDLKi6L75wPLb1hyn 5R++PZxkOOwrLacrw+CfiiuCTOCUQ+WjyAJF+/uszDgGdpZwxBBXLxfxMQI5gWcC RnXWL4yfXYp90Xqlu4yQ0JRVHZ+rO8RkRT81BOzX0smTGDSpfzI= =oJGF -----END PGP SIGNATURE----- --4uvogzrym6j63llf-- From owner-freebsd-office@freebsd.org Sun Dec 11 21:00:41 2016 Return-Path: Delivered-To: freebsd-office@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 A44D0C726C2 for ; Sun, 11 Dec 2016 21:00:41 +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 934EF1FF7 for ; Sun, 11 Dec 2016 21:00:41 +0000 (UTC) (envelope-from bugzilla-noreply@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 92C0AC726C1; Sun, 11 Dec 2016 21:00:41 +0000 (UTC) Delivered-To: office@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 926ECC726C0 for ; Sun, 11 Dec 2016 21:00: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 709D21FF4 for ; Sun, 11 Dec 2016 21:00:41 +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 uBBL013v056066 for ; Sun, 11 Dec 2016 21:00:41 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <201612112100.uBBL013v056066@kenobi.freebsd.org> From: bugzilla-noreply@FreeBSD.org To: office@FreeBSD.org Subject: Problem reports for office@FreeBSD.org that need special attention Date: Sun, 11 Dec 2016 21:00:41 +0000 X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Dec 2016 21:00:41 -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 | 202685 | [textproc/en-hunspell] upgrade port to version 20 Open | 211100 | editors/libreoffice: Update to latest version, se New | 213867 | devel/boost-libs fails to build on arm64 3 problems total for which you should take action. From owner-freebsd-office@freebsd.org Sun Dec 11 22:16:21 2016 Return-Path: Delivered-To: freebsd-office@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 4FB32C73E4C for ; Sun, 11 Dec 2016 22:16:21 +0000 (UTC) (envelope-from tijl@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 35059CD6 for ; Sun, 11 Dec 2016 22:16:21 +0000 (UTC) (envelope-from tijl@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 31860C73E4B; Sun, 11 Dec 2016 22:16:21 +0000 (UTC) Delivered-To: office@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 312ABC73E4A for ; Sun, 11 Dec 2016 22:16:21 +0000 (UTC) (envelope-from tijl@freebsd.org) Received: from mailrelay119.isp.belgacom.be (mailrelay119.isp.belgacom.be [195.238.20.146]) (using TLSv1.2 with cipher RC4-SHA (128/128 bits)) (Client CN "relay.skynet.be", Issuer "GlobalSign Organization Validation CA - SHA256 - G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id AAAA3CD4 for ; Sun, 11 Dec 2016 22:16:20 +0000 (UTC) (envelope-from tijl@freebsd.org) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: =?us-ascii?q?A2ChBwAHz01Y//s+sVtdHQEFAQsBgywLA?= =?us-ascii?q?QEBAQEfTA6BBqRbJgGWZSuFdgKBZUMRAQIBAQEBAQEBYiiEaAEBAQMBIzMWCgM?= =?us-ascii?q?QCxgCAgUMFQICDyoeBgoJiGMMCqtdgR+CKIsVAQEBAQEBBAEBAQEBASKBC4oOg?= =?us-ascii?q?wuBBTg/gkWCXQWaa4ZPikp0gQxRhC+DSIYLjguEDzUhgR+FXT00AYYDgi4BAQE?= X-IPAS-Result: =?us-ascii?q?A2ChBwAHz01Y//s+sVtdHQEFAQsBgywLAQEBAQEfTA6BBqR?= =?us-ascii?q?bJgGWZSuFdgKBZUMRAQIBAQEBAQEBYiiEaAEBAQMBIzMWCgMQCxgCAgUMFQICD?= =?us-ascii?q?yoeBgoJiGMMCqtdgR+CKIsVAQEBAQEBBAEBAQEBASKBC4oOgwuBBTg/gkWCXQW?= =?us-ascii?q?aa4ZPikp0gQxRhC+DSIYLjguEDzUhgR+FXT00AYYDgi4BAQE?= Received: from 251.62-177-91.adsl-dyn.isp.belgacom.be (HELO kalimero.tijl.coosemans.org) ([91.177.62.251]) by relay.skynet.be with ESMTP; 11 Dec 2016 23:16:11 +0100 Received: from kalimero.tijl.coosemans.org (kalimero.tijl.coosemans.org [127.0.0.1]) by kalimero.tijl.coosemans.org (8.15.2/8.15.2) with ESMTP id uBBMGAac003390; Sun, 11 Dec 2016 23:16:10 +0100 (CET) (envelope-from tijl@FreeBSD.org) Date: Sun, 11 Dec 2016 23:16:09 +0100 From: Tijl Coosemans To: "Steven R. Loomis" Cc: office@freebsd.org Subject: Re: ICU port? Message-ID: <20161211231609.1e352e65@kalimero.tijl.coosemans.org> In-Reply-To: <2A4B7B3F-3FEE-4E2D-99A7-FB23C15C4765@icu-project.org> References: <20161210160419.79ade1e2@kalimero.tijl.coosemans.org> <2A4B7B3F-3FEE-4E2D-99A7-FB23C15C4765@icu-project.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Dec 2016 22:16:21 -0000 On Sat, 10 Dec 2016 23:23:05 -0800 "Steven R. Loomis" = wrote: > El 12/10/16 7:04 AM, "Tijl Coosemans" escribi=C3=B3: >> On Fri, 09 Dec 2016 15:44:47 -0800 "Steven R. Loomis" wrote: >>> I came across this address (though it seems to be a generic one) >>> on http://portsmon.freebsd.org/portoverview.py?category=3Ddevel&portnam= e=3Dicu >>> and https://svnweb.freebsd.org/ports/head/devel/icu/ >>>=20 >>> I work on ICU. 58.2 is shipping today (hopefully). >>>=20 >>> It seems there are a bunch of patches in >>> https://svnweb.freebsd.org/ports/head/devel/icu/files/ >>>=20 >>> It would be great to get these pushed upstream to ICU. >>>=20 >>> Any way we can try to do that? >>> ICU=E2=80=99s CLA is at https://ssl.icu-project.org/trac/wiki/IcuDownst= reams#cla >>> for accepting patches. >> >> Feel free to commit them. >=20 > Could you consider signing the CLA at the bottom of > http://icu-project.org/trac/#cla ? It=E2=80=99s 1-click if you have a Git= hub > id. I don't have a github account so I looked at the form. I'm sorry, but I'm not going to sign that. 1) I don't want to give you my address and phone number. I have no idea who you are. 2) If you want people to contribute don't make them jump through hoops like this. Imagine if all open source projects required this. 3) I'm not sure what your form is supposed to accomplish. I recently went through a similar process with the FSF, but their form is a transfer of copyright to them so they have standing in court to fight GPL violations. This is part of their mission and I respect that even though I'm no fan of the GPL. I understand that such a transfer requires a more formal process with a legal signature. I have no such understanding with your form. It just looks like a license agreement. Why do you need my personal details and signature? It is completely obvious to any open source developer that when they contribute code to an open source project it is going to be distributed openly under the terms of the project license. If, for some odd reason, this is not legally obvious in front of a judge then the next step would be to put this form on your website as a simple clickwrap agreement, and not to go full blown signature required. 4) Under "Rights affecting the use of a Contribution" it says I should let you know if I know of any rights (e.g. patents) covering the contribution. I can't assess the full legal consequences of signing this. What happens exactly if there are patents that I don't know of and somebody gets sued over them? Can they try to claim that I should have known and therefore should have informed you and that the fact I didn't was a violation or some form of negligence? I cannot sign this without contacting a lawyer which I'm not going to do. Projects should protect their contributors as much as possible from legal shit, not make them vulnerable to it, especially when these contributors are essentially doing volunteer work for free. 5) The patches are small and trivial bug fixes and don't add anything new or original. I doubt copyright can even be asserted over them. 6) I have nothing to gain and possibly something to lose by signing that form and nothing to lose if I don't sign. Why would I sign? Please don't take "you" above personally. I know you are just following project protocol. >> patch-common_umutex.cpp: >> This code is compiled conditionally and one of the cases is a c++11 >> compiler without header. uio.fState is an atomic variable and >> cannot be read directly. I used umtx_loadAcquire in the patch because >> that's what's used elsewhere to read fState. =20 > > OK. Why would not be available? I didn't remember correctly. The code isn't compiled conditionally. The fState field is declared differently depending on the availability of . With it is declared as a C++11 atomic integer. Accessing such a variable like the unchanged code does is implicitly atomic. Using umtx_loadAcquire just makes it explicit. The code output from the compiler is the same. Without , e.g. when ICU is compiled with a C++98 compiler or with incomplete implementations of C++11 (e.g. FreeBSD 9 has a C++11 capable compiler, but no runtime libraries), fState is not declared as an integer that you can access like the unchanged code does. You must always use one of the functions like umtx_loadAcquire. From owner-freebsd-office@freebsd.org Mon Dec 12 19:40:16 2016 Return-Path: Delivered-To: freebsd-office@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 34E64C7441B for ; Mon, 12 Dec 2016 19:40:16 +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 1E8917C2 for ; Mon, 12 Dec 2016 19:40:16 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 1AF1BC7441A; Mon, 12 Dec 2016 19:40:16 +0000 (UTC) Delivered-To: office@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 1A92EC74419 for ; Mon, 12 Dec 2016 19:40:16 +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 0A5F07C1 for ; Mon, 12 Dec 2016 19:40: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 uBCJeFt0052287 for ; Mon, 12 Dec 2016 19:40:15 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: office@FreeBSD.org Subject: [Bug 215118] editors/libreoffice: fails to build post 5.2 update Date: Mon, 12 Dec 2016 19:40: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: idefix@fechner.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: office@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-office@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Dec 2016 19:40:16 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D215118 Matthias Fechner changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |idefix@fechner.net --- Comment #1 from Matthias Fechner --- Same problem here. Build log can be found here: https://pkg.fechner.net/data/110amd64-default/2016-12-10_10h56m41s/logs/err= ors/libreoffice-5.2.3_5.log --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-office@freebsd.org Mon Dec 12 20:04:26 2016 Return-Path: Delivered-To: freebsd-office@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 C70B8C74AE1 for ; Mon, 12 Dec 2016 20:04:26 +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 A83D915D5 for ; Mon, 12 Dec 2016 20:04:26 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: by mailman.ysv.freebsd.org (Postfix) id 9FF29C74AE0; Mon, 12 Dec 2016 20:04:26 +0000 (UTC) Delivered-To: office@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 9FA20C74ADF for ; Mon, 12 Dec 2016 20:04:26 +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 8F42115CF for ; Mon, 12 Dec 2016 20:04:26 +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 uBCK4QYR052407 for ; Mon, 12 Dec 2016 20:04:26 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: office@FreeBSD.org Subject: [Bug 215118] editors/libreoffice: fails to build post 5.2 update Date: Mon, 12 Dec 2016 20:04:26 +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: idefix@fechner.net X-Bugzilla-Status: New X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: office@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-office@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Dec 2016 20:04:26 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D215118 --- Comment #2 from Matthias Fechner --- Same problem with a compile of today: https://pkg.fechner.net/data/110amd64-default/2016-12-12_20h02m17s/logs/err= ors/libreoffice-5.2.3_5.log --=20 You are receiving this mail because: You are the assignee for the bug.= From owner-freebsd-office@freebsd.org Tue Dec 13 02:29:06 2016 Return-Path: Delivered-To: freebsd-office@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 20D5DC7482E for ; Tue, 13 Dec 2016 02:29:06 +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 0F70A1EB9 for ; Tue, 13 Dec 2016 02:29:06 +0000 (UTC) (envelope-from pkg-fallout@FreeBSD.org) Received: by mailman.ysv.freebsd.org (Postfix) id 0BF2CC7482C; Tue, 13 Dec 2016 02:29:06 +0000 (UTC) Delivered-To: office@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 0B42BC7482A; Tue, 13 Dec 2016 02:29:06 +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 C80FB1EB5; Tue, 13 Dec 2016 02:29:05 +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 uBD2T5Gh039005; Tue, 13 Dec 2016 02:29:05 GMT (envelope-from pkg-fallout@FreeBSD.org) Received: (from root@localhost) by beefy1.nyi.freebsd.org (8.15.2/8.15.2/Submit) id uBD2T58S038999; Tue, 13 Dec 2016 02:29:05 GMT (envelope-from pkg-fallout@FreeBSD.org) Date: Tue, 13 Dec 2016 02:29:05 GMT From: pkg-fallout@FreeBSD.org Message-Id: <201612130229.uBD2T58S038999@beefy1.nyi.freebsd.org> To: office@FreeBSD.org Subject: [package - 101i386-quarterly][editors/libreoffice] Failed for libreoffice-5.0.6_3 in build/runaway Cc: pkg-fallout@FreeBSD.org X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Dec 2016 02:29:06 -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: office@FreeBSD.org Last committer: jkim@FreeBSD.org Ident: $FreeBSD: branches/2016Q4/editors/libreoffice/Makefile 422545 2016-09-20 20:56:57Z jkim $ Log URL: http://beefy1.nyi.freebsd.org/data/101i386-quarterly/428211/logs/libreoffice-5.0.6_3.log Build URL: http://beefy1.nyi.freebsd.org/build.html?mastername=101i386-quarterly&build=428211 Log: ====>> Building editors/libreoffice build started at Mon Dec 12 14:50:54 UTC 2016 port directory: /usr/ports/editors/libreoffice building for: FreeBSD 101i386-quarterly-job-23 10.1-RELEASE-p44 FreeBSD 10.1-RELEASE-p44 i386 maintained by: office@FreeBSD.org Makefile ident: $FreeBSD: branches/2016Q4/editors/libreoffice/Makefile 422545 2016-09-20 20:56:57Z jkim $ Poudriere version: 3.1.14 Host OSVERSION: 1200010 Jail OSVERSION: 1001000 Job Id: 23 ---Begin Environment--- SHELL=/bin/csh UNAME_p=i386 UNAME_m=i386 UNAME_v=FreeBSD 10.1-RELEASE-p44 UNAME_r=10.1-RELEASE-p44 BLOCKSIZE=K MAIL=/var/mail/root STATUS=1 OPSYS=FreeBSD ARCH=i386 SAVED_TERM= MASTERMNT=/usr/local/poudriere/data/.m/101i386-quarterly/ref UID=0 PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/root/bin _JAVA_VERSION_LIST_REGEXP=1.6\|1.7\|1.8\|1.6+\|1.7+\|1.8+ POUDRIERE_BUILD_TYPE=bulk PKGNAME=libreoffice-5.0.6_3 OSREL=10.1 _OSRELEASE=10.1-RELEASE-p44 PYTHONBASE=/usr/local OLDPWD=/ _SMP_CPUS=24 PWD=/usr/local/poudriere/data/.m/101i386-quarterly/ref/.p/pool MASTERNAME=101i386-quarterly SCRIPTPREFIX=/usr/local/share/poudriere _JAVA_VENDOR_LIST_REGEXP=openjdk\|oracle\|sun USER=root HOME=/root POUDRIERE_VERSION=3.1.14 SCRIPTPATH=/usr/local/share/poudriere/bulk.sh CONFIGURE_MAX_CMD_LEN=262144 LIBEXECPREFIX=/usr/local/libexec/poudriere LOCALBASE=/usr/local PACKAGE_BUILDING=yes _JAVA_OS_LIST_REGEXP=native\|linux OSVERSION=1001000 ---End Environment--- ---Begin OPTIONS List--- ===> The following configuration options are available for libreoffice-5.0.6_3: CUPS=on: CUPS printing system support GNOME=off: GNOME desktop environment support GTK2=on: GTK+ 2 GUI toolkit support GTK3=off: GTK+ 3 GUI toolkit support JAVA=off: Add Java support (XML filters, macros) KDE4=off: KDE 4 desktop environment support MMEDIA=off: Enable multimedia backend for impress PGSQL=off: Build with PostgreSQL-SDBC driver SDK=off: Build with SDK SYSTRAY=off: Enable systemtray quickstarter TEST=off: Run all regression tests VERBOSE=off: Increase build verbosity WEBDAV=off: Enable webdav protocol ===> Use 'make config' to modify these settings ---End OPTIONS List--- --CONFIGURE_ARGS-- --disable-dependency-tracking --disable-epm --disable-fetch-external --disable-gnome-vfs --disable-kde --disable-kdeab --disable-mergelibs --disable-online-update --disable-packagekit --enable-cairo-canvas --enable-graphite --enable-python=system --enable-release-build --exec-prefix=/usr/local --with-alloc=system --with-boost=/usr/local --with-build-version="FreeBSD ports 5.0.6_3" --with-external-dict-dir=/usr/local/share/hunspell --with-external-hyph-dir=/usr/local/share/hyphen --with-external-tar=/distfiles/libreoffice --with-external-thes-dir=/usr/local/share/mythes --with-gnu-patch=/usr/local/bin/gpatch --with-os-version=1001000 --with-parallelism=1 --with-system-curl --with-system-dicts --with-system-libs --with-system-libxml --with-system-opencollada --with-system-ucpp --with-system-zlib --with-vendor="FreeBSD ports" --without-fonts --without-myspell-dicts --without-system-npapi-headers --enable-cups --disable-dbus --disable-gconf --disable-loc kdown --enable-gtk --disable-gtk3 --without-java --disable-kde4 --disable-gstreamer-1-0 --disable-postgresql-sdbc --without-gssapi --without-krb5 --disable-odk --without-doxygen --disable-systray --disable-cve-tests --disable-neon --with-qt-includes=/usr/local/include/qt4 --with-qt-libraries=/usr/local/lib/qt4 --with-extra-includes=/usr/local/include --with-extra-libs=/usr/local/lib --x-libraries=/usr/local/lib --x-includes=/usr/local/include --prefix=/usr/local ${_LATE_CONFIGURE_ARGS} --End CONFIGURE_ARGS-- --CONFIGURE_ENV-- DMAKE=/usr/local/bin/dmake FIREBIRD_CFLAGS="-isystem /usr/local/include" FIREBIRD_LIBS="-L/usr/local/lib -lfbembed" GNUTAR="/usr/bin/tar" GPERF=/usr/local/bin/gperf OPENCOLLADA_CFLAGS="-isystem /usr/local/include/opencollada/COLLADABaseUtils -isystem /usr/local/include/opencollada/COLLADAFramework -isystem /usr/local/include/opencollada/COLLADASaxFrameworkLoader -isystem /usr/local/include/opencollada/GeneratedSaxParser" OPENCOLLADA_LIBS="-L/usr/local/lib/opencollada -lOpenCOLLADABaseUtils -lOpenCOLLADAFramework -lOpenCOLLADASaxFrameworkLoader -lGeneratedSaxParser" PYTHON_CFLAGS="`python2.7-config --cflags`" PYTHON_LIBS="`python2.7-config --libs`" MAKE=gmake ac_cv_path_PERL=/usr/local/bin/perl ac_cv_path_PERL_PATH=/usr/local/bin/perl PKG_CONFIG=pkgconf PYTHON="/usr/local/bin/python2.7" XDG_DATA_HOME=/wrkdirs/usr/ports/editors/libreoffice/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/editors/libreoffice/work HOME=/wrkdirs/usr/ports/editors/libreoffice/work TMPDIR="/tmp" SHELL=/bi n/sh CONFIG_SHELL=/bin/sh QTDIR="/usr/local" QMAKE="/usr/local/bin/qmake-qt4" MOC="/usr/local/bin/moc-qt4" RCC="/usr/local/bin/rcc" UIC="/usr/local/bin/uic-qt4" QMAKESPEC="/usr/local/share/qt4/mkspecs/freebsd-$(ccver="$(c++ --version)"; case "$ccver" in *clang*) echo clang ;; *) echo g++ ;; esac)" AUTOMAKE=/usr/local/bin/automake-1.15 AUTOMAKE_DIR=/usr/local/share/automake-1.15 AUTOMAKE_VERSION=1.15 AUTOMAKE_APIVER=1.15 ACLOCAL=/usr/local/bin/aclocal-1.15 ACLOCAL_DIR=/usr/local/share/aclocal-1.15 AUTOCONF=/usr/local/bin/autoconf-2.69 AUTOCONF_DIR=/usr/local/share/autoconf-2.69 AUTOHEADER=/usr/local/bin/autoheader-2.69 AUTOIFNAMES=/usr/local/bin/ifnames-2.69 AUTOM4TE=/usr/local/bin/autom4te-2.69 AUTORECONF=/usr/local/bin/autoreconf-2.69 AUTOSCAN=/usr/local/bin/autoscan-2.69 AUTOUPDATE=/usr/local/bin/autoupdate-2.69 AUTOCONF_VERSION=2.69 CONFIG_SITE=/usr/ports/Templates/config.site lt_cv_sys_max_cmd_len=262144 --End CONFIGURE_ENV-- --MAKE_ENV-- CXXFLAGS_WARN="-Woverloaded-virtual -Wno-unused-parameter" GNUSED=/usr/local/bin/gsed DISPLAY= LANG=C LC_ALL=C XDG_DATA_HOME=/wrkdirs/usr/ports/editors/libreoffice/work XDG_CONFIG_HOME=/wrkdirs/usr/ports/editors/libreoffice/work HOME=/wrkdirs/usr/ports/editors/libreoffice/work TMPDIR="/tmp" NO_PIE=yes WITHOUT_DEBUG_FILES=yes WITHOUT_KERNEL_SYMBOLS=yes SHELL=/bin/sh NO_LINT=YES AUTOMAKE=/usr/local/bin/automake-1.15 AUTOMAKE_DIR=/usr/local/share/automake-1.15 AUTOMAKE_VERSION=1.15 AUTOMAKE_APIVER=1.15 ACLOCAL=/usr/local/bin/aclocal-1.15 ACLOCAL_DIR=/usr/local/share/aclocal-1.15 AUTOCONF=/usr/local/bin/autoconf-2.69 AUTOCONF_DIR=/usr/local/share/autoconf-2.69 AUTOHEADER=/usr/local/bin/autoheader-2.69 AUTOIFNAMES=/usr/local/bin/ifnames-2.69 AUTOM4TE=/usr/local/bin/autom4te-2.69 AUTORECONF=/usr/local/bin/autoreconf-2.69 AUTOSCAN=/usr/local/bin/autoscan-2.69 AUTOUPDATE=/usr/local/bin/autoupdate-2.69 AUTOCONF_VERSION=2.69 PREFIX=/usr/local LOCALBASE=/usr/local LIBDIR="/usr/ lib" CC="cc" CFLAGS="-O2 -pipe -fstack-protector -DLDAP_DEPRECATED -fno-strict-aliasing" CPP="cpp" CPPFLAGS="-isystem /usr/local/include" LDFLAGS=" -L/usr/local/lib -fstack-protector" LIBS="" CXX="c++" CXXFLAGS="-O2 -pipe -fstack-protector -DLDAP_DEPRECATED -fno-strict-aliasing " MANPREFIX="/usr/local" BSD_INSTALL_PROGRAM="install -s -m 555" BSD_INSTALL_LIB="install -s -m 444" BSD_INSTALL_SCRIPT="install -m 555" BSD_INSTALL_DATA="install -m 0644" BSD_INSTALL_MAN="install -m 444" --End MAKE_ENV-- --PLIST_SUB-- QT_PREFIX="/usr/local" QT_BINDIR="bin" QT_INCDIR="include/qt4" QT_LIBDIR="lib/qt4" QT_ARCHDIR="lib/qt4/qt4" QT_PLUGINDIR="lib/qt4/plugins" QT_LIBEXECDIR="libexec/qt4" QT_IMPORTDIR="lib/qt4/imports" QT_QMLDIR="lib/qt4/qt4/qml" QT_DATADIR="share/qt4" QT_DOCDIR="share/doc/qt4" QT_L10NDIR="share/qt4/translations" QT_ETCDIR="etc/xdg" QT_EXAMPLEDIR="share/examples/qt4" QT_TESTDIR="share/qt4/tests" QT_MKSPECDIR="share/qt4/mkspecs" PYTHON_INCLUDEDIR=include/python2.7 PYTHON_LIBDIR=lib/python2.7 PYTHON_PLATFORM=freebsd10 PYTHON_SITELIBDIR=lib/python2.7/site-packages PYTHON_VER=2.7 PYTHON_VERSION=python2.7 GTK2_VERSION="2.10.0" GTK3_VERSION="3.0.0" GNOME:="@comment " NOGNOME:="" OSREL=10.1 PREFIX=%D LOCALBASE=/usr/local RESETPREFIX=/usr/local PORTDOCS="" PORTEXAMPLES="" LIB32DIR=lib PERL_VERSION=5.20.3 PERL_VER=5.20 PERL5_MAN1=lib/perl5/site_perl/man/man1 PERL5_MAN3=lib/perl5/site_perl/man/man3 SITE_PERL=lib/perl5/site_perl SITE_ARCH=lib/perl5/site_perl/mach/5.20 DOCSDIR="share/doc/libreoffice" EXAMPLESDIR="share/examples/libreoffice" DATADIR="share/libreoffice" WWWDIR="www/libreoffice" ETCDIR="etc/libreoffice" --End PLIST_SUB-- --SUB_LIST-- PREFIX=/usr/local LOCALBASE=/usr/local DATADIR=/usr/local/share/libreoffice DOCSDIR=/usr/local/share/doc/libreoffice EXAMPLESDIR=/usr/local/share/examples/libreoffice WWWDIR=/usr/local/www/libreoffice ETCDIR=/usr/local/etc/libreoffice --End SUB_LIST-- ---Begin make.conf--- USE_PACKAGE_DEPENDS=yes BATCH=yes WRKDIRPREFIX=/wrkdirs PORTSDIR=/usr/ports PACKAGES=/packages DISTDIR=/distfiles 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 DISABLE_MAKE_JOBS=poudriere ---End make.conf--- =================================================== ===> License LGPL3+ MPL accepted by the user =========================================================================== =================================================== ===> libreoffice-5.0.6_3 depends on file: /usr/local/sbin/pkg - not found ===> Installing existing package /packages/All/pkg-1.8.8.txz [101i386-quarterly-job-23] Installing pkg-1.8.8... [101i386-quarterly-job-23] Extracting pkg-1.8.8: .......... done ===> libreoffice-5.0.6_3 depends on file: /usr/local/sbin/pkg - found ===> Returning to build of libreoffice-5.0.6_3 =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL3+ MPL accepted by the user ===> Fetching all distfiles required by libreoffice-5.0.6_3 for building =========================================================================== =================================================== ===> License LGPL3+ MPL accepted by the user ===> Fetching all distfiles required by libreoffice-5.0.6_3 for building => SHA256 Checksum OK for libreoffice/libreoffice-5.0.6.3.tar.xz. => SHA256 Checksum OK for libreoffice/libreoffice-help-5.0.6.3.tar.xz. => SHA256 Checksum OK for libreoffice/1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz. => SHA256 Checksum OK for libreoffice/4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> License LGPL3+ MPL accepted by the user ===> Fetching all distfiles required by libreoffice-5.0.6_3 for building ===> Extracting for libreoffice-5.0.6_3 => SHA256 Checksum OK for libreoffice/libreoffice-5.0.6.3.tar.xz. => SHA256 Checksum OK for libreoffice/libreoffice-help-5.0.6.3.tar.xz. => SHA256 Checksum OK for libreoffice/1f24ab1d39f4a51faf22244c94a6203f-xmlsec1-1.2.14.tar.gz. => SHA256 Checksum OK for libreoffice/4b87018f7fff1d054939d19920b751a0-collada2gltf-master-cb1d97788a.tar.bz2. =========================================================================== =================================================== =========================================================================== =================================================== ===> Patching for libreoffice-5.0.6_3 ===> Applying FreeBSD patches for libreoffice-5.0.6_3 =========================================================================== =================================================== [build SLC] animations [build SLC] apple_remote [build SLC] avmedia [build SLC] basctl [build SLC] basebmp [build SLC] basegfx [build SLC] basic [build SLC] bean [build SLC] binaryurp [build SLC] bridges [build SLC] canvas [build CXX] chart2/qa/extras/chart2export.cxx [build LNK] CppunitTest/libtest_chart2_export.so [build CUT] chart2_export [build CXX] chart2/qa/extras/chart2import.cxx [build LNK] CppunitTest/libtest_chart2_import.so [build CUT] chart2_import [build SLC] chart2 [build SLC] clew [build SLC] cli_ure [build SLC] codemaker [build SLC] comphelper [build SLC] configmgr [build SLC] connectivity [build SLC] cppcanvas [build SLC] cppu [build SLC] cppuhelper [build SLC] cpputools [build SLC] cui [build SLC] dbaccess [build SLC] desktop [build SLC] drawinglayer [build SLC] dtrans [build SLC] editeng [build SLC] embeddedobj [build SLC] embedserv [build SLC] eventattacher [build SLC] extensions [build SLC] accessories [build SLC] collada2gltf [build SLC] libxmlsec [build SLC] external [build SLC] extras [build SLC] filter [build SLC] forms [build SLC] formula [build SLC] fpicker [build SLC] framework [build SLC] helpcompiler [build SLC] hwpfilter [build SLC] i18nlangtag [build SLC] i18npool [build SLC] i18nutil [build SLC] idl [build SLC] idlc [build SLC] instsetoo_native [build SLC] io [build SLC] javaunohelper [build SLC] jurt [build SLC] jvmaccess [build SLC] jvmfwk [build SLC] l10ntools [build SLC] librelogo [build SLC] libreofficekit [build SLC] lingucomponent [build SLC] linguistic [build SLC] lotuswordpro [build SLC] o3tl [build SLC] offapi [build SLC] officecfg [build SLC] oovbaapi [build SLC] oox [build SLC] opencl [build SLC] package [build SLC] postprocess [build SLC] pyuno [build SLC] readlicense_oo [build SLC] registry [build SLC] remotebridges [build SLC] reportbuilder [build SLC] reportdesign [build SLC] ridljar [build SLC] rsc [build SLC] sal [build SLC] salhelper [build SLC] sax [build CXX] sc/qa/extras/sccondformats.cxx [build LNK] CppunitTest/libtest_sc_condformats.so [build CUT] sc_condformats [build CXX] sc/qa/extras/new_cond_format.cxx [build LNK] CppunitTest/libtest_sc_new_cond_format_api.so [build CUT] sc_new_cond_format_api [build CXX] sc/qa/unit/subsequent_export-test.cxx [build LNK] CppunitTest/libtest_sc_subsequent_export_test.so [build CUT] sc_subsequent_export_test [build CXX] sc/qa/unit/bugfix-test.cxx [build LNK] CppunitTest/libtest_sc_bugfix_test.so [build CUT] sc_bugfix_test [build CXX] sc/qa/extras/htmlexporttest.cxx [build LNK] CppunitTest/libtest_sc_html_export_test.so [build CUT] sc_html_export_test [build CXX] sc/qa/unit/opencl-test.cxx [build LNK] CppunitTest/libtest_sc_opencl_test.so [build CUT] sc_opencl_test [build CXX] sc/qa/unit/copy_paste_test.cxx [build LNK] CppunitTest/libtest_sc_copypaste.so [build CUT] sc_copypaste [build SLC] sc [build SLC] scaddins [build SLC] sccomp [build SLC] scp2 [build SLC] scripting [build SLC] sd [build SLC] sdext [build SLC] setup_native [build SLC] sfx2 [build SLC] shell [build SLC] slideshow [build SLC] smoketest [build SLC] solenv [build SLC] soltools [build SLC] sot [build SLC] starmath [build SLC] stoc [build SLC] store [build SLC] svgio [build SLC] svl [build SLC] svtools [build SLC] svx [build CXX] sw/qa/core/uwriter.cxx [build CXX] sw/qa/core/Test-BigPtrArray.cxx [build CXX] sw/qa/core/test_ToxWhitespaceStripper.cxx [build CXX] sw/qa/core/test_ToxLinkProcessor.cxx [build CXX] sw/qa/core/test_ToxTextGenerator.cxx [build LNK] CppunitTest/libtest_sw_uwriter.so [build CUT] sw_uwriter [build CXX] sw/qa/extras/htmlexport/htmlexport.cxx [build LNK] CppunitTest/libtest_sw_htmlexport.so [build CUT] sw_htmlexport [build CXX] sw/qa/extras/htmlimport/htmlimport.cxx [build LNK] CppunitTest/libtest_sw_htmlimport.so [build CUT] sw_htmlimport [build CXX] sw/qa/core/macros-test.cxx [build LNK] CppunitTest/libtest_sw_macros_test.so [build CUT] sw_macros_test [build CXX] sw/qa/extras/ooxmlexport/ooxmlexport.cxx [build LNK] CppunitTest/libtest_sw_ooxmlexport.so [build CUT] sw_ooxmlexport [build CXX] sw/qa/extras/ooxmlexport/ooxmlexport2.cxx [build LNK] CppunitTest/libtest_sw_ooxmlexport2.so [build CUT] sw_ooxmlexport2 [build CXX] sw/qa/extras/ooxmlexport/ooxmlexport3.cxx [build LNK] CppunitTest/libtest_sw_ooxmlexport3.so [build CUT] sw_ooxmlexport3 [build CXX] sw/qa/extras/ooxmlexport/ooxmlexport4.cxx [build LNK] CppunitTest/libtest_sw_ooxmlexport4.so [build CUT] sw_ooxmlexport4 [build CXX] sw/qa/extras/ooxmlexport/ooxmlexport5.cxx [build LNK] CppunitTest/libtest_sw_ooxmlexport5.so [build CUT] sw_ooxmlexport5 [build CXX] sw/qa/extras/ooxmlexport/ooxmlexport6.cxx [build LNK] CppunitTest/libtest_sw_ooxmlexport6.so [build CUT] sw_ooxmlexport6 [build CXX] sw/qa/extras/ooxmlexport/ooxmlexport7.cxx [build LNK] CppunitTest/libtest_sw_ooxmlexport7.so [build CUT] sw_ooxmlexport7 [build CXX] sw/qa/extras/ooxmlexport/ooxmlfieldexport.cxx [build LNK] CppunitTest/libtest_sw_ooxmlfieldexport.so [build CUT] sw_ooxmlfieldexport [build CXX] sw/qa/extras/ooxmlexport/ooxmlw14export.cxx [build LNK] CppunitTest/libtest_sw_ooxmlw14export.so [build CUT] sw_ooxmlw14export [build CXX] sw/qa/extras/ooxmlimport/ooxmlimport.cxx [build LNK] CppunitTest/libtest_sw_ooxmlimport.so [build CUT] sw_ooxmlimport [build CXX] sw/qa/extras/ww8export/ww8export.cxx [build LNK] CppunitTest/libtest_sw_ww8export.so [build CUT] sw_ww8export [build CXX] sw/qa/extras/rtfexport/rtfexport.cxx [build LNK] CppunitTest/libtest_sw_rtfexport.so [build CUT] sw_rtfexport [build CXX] sw/qa/extras/rtfimport/rtfimport.cxx [build LNK] CppunitTest/libtest_sw_rtfimport.so [build CUT] sw_rtfimport [build CXX] sw/qa/extras/odfexport/odfexport.cxx [build LNK] CppunitTest/libtest_sw_odfexport.so [build CUT] sw_odfexport [build CXX] sw/qa/extras/odfimport/odfimport.cxx [build LNK] CppunitTest/libtest_sw_odfimport.so [build CUT] sw_odfimport [build CXX] sw/qa/extras/uiwriter/uiwriter.cxx [build LNK] CppunitTest/libtest_sw_uiwriter.so [build CUT] sw_uiwriter [build CXX] sw/qa/extras/tiledrendering/tiledrendering.cxx [build LNK] CppunitTest/libtest_sw_tiledrendering.so [build CUT] sw_tiledrendering [build CXX] sw/qa/extras/mailmerge/mailmerge.cxx [build LNK] CppunitTest/libtest_sw_mailmerge.so [build CUT] sw_mailmerge ====>> Killing runaway build after 7200 seconds with no output From owner-freebsd-office@freebsd.org Tue Dec 13 16:30:14 2016 Return-Path: Delivered-To: freebsd-office@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 6E78DC76679 for ; Tue, 13 Dec 2016 16:30:14 +0000 (UTC) (envelope-from apache@plesk.kosmotic.es) 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 5E7D514CA for ; Tue, 13 Dec 2016 16:30:14 +0000 (UTC) (envelope-from apache@plesk.kosmotic.es) Received: by mailman.ysv.freebsd.org (Postfix) id 5DE53C76678; Tue, 13 Dec 2016 16:30:14 +0000 (UTC) Delivered-To: office@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 5D6C8C76677 for ; Tue, 13 Dec 2016 16:30:14 +0000 (UTC) (envelope-from apache@plesk.kosmotic.es) Received: from plesk.kosmotic.es (plesk.kosmotic.es [85.238.12.36]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0038E14C6 for ; Tue, 13 Dec 2016 16:30:13 +0000 (UTC) (envelope-from apache@plesk.kosmotic.es) Received: by plesk.kosmotic.es (Postfix, from userid 48) id AB5EDD4849; Tue, 13 Dec 2016 17:30:03 +0100 (CET) Date: Tue, 13 Dec 2016 17:30:03 +0100 To: office@FreeBSD.org From: =?UTF-8?Q?PayPal?= Subject: =?UTF-8?Q?=5bImportant=5d_=3a_This_is_an_automatic_message?= Message-ID: <54d3f0f2cd3e7db1e9837b14d372d773@www.kosmotic.es> X-Priority: 3 X-Mailer: PHPMailer (phpmailer.sourceforge.net) [version ] MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-office@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Office applications on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Dec 2016 16:30:14 -0000