From owner-freebsd-ports@freebsd.org Fri Mar 19 11:34:25 2021 Return-Path: Delivered-To: freebsd-ports@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 130835BFDFE for ; Fri, 19 Mar 2021 11:34:25 +0000 (UTC) (envelope-from se@freebsd.org) Received: from mailman.nyi.freebsd.org (mailman.nyi.freebsd.org [IPv6:2610:1c1:1:606c::50:13]) by mx1.freebsd.org (Postfix) with ESMTP id 4F21y86yVxz4cCM for ; Fri, 19 Mar 2021 11:34:24 +0000 (UTC) (envelope-from se@freebsd.org) Received: by mailman.nyi.freebsd.org (Postfix) id EED765BF9D9; Fri, 19 Mar 2021 11:34:24 +0000 (UTC) Delivered-To: ports@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id EE9DF5BFBDF for ; Fri, 19 Mar 2021 11:34:24 +0000 (UTC) (envelope-from se@freebsd.org) Received: from smtp.freebsd.org (smtp.freebsd.org [96.47.72.83]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "smtp.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F21y86MBYz4cFw; Fri, 19 Mar 2021 11:34:24 +0000 (UTC) (envelope-from se@freebsd.org) Received: from Stefans-MBP-449.fritz.box (p200300cd5f26c90071e78db703673e72.dip0.t-ipconnect.de [IPv6:2003:cd:5f26:c900:71e7:8db7:367:3e72]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) (Authenticated sender: se/mail) by smtp.freebsd.org (Postfix) with ESMTPSA id 51E7F73EE; Fri, 19 Mar 2021 11:34:24 +0000 (UTC) (envelope-from se@freebsd.org) To: sunpoet@FreeBSD.org Cc: ports@FreeBSD.org, Erik Neubauer References: From: Stefan Esser Subject: Re: FreeBSD Port: owncloud-php80-10.6.0 Message-ID: <3f8968bd-a2fc-af67-9e9e-61e555d0517a@freebsd.org> Date: Fri, 19 Mar 2021 12:34:22 +0100 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.16; rv:78.0) Gecko/20100101 Thunderbird/78.8.1 MIME-Version: 1.0 In-Reply-To: Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="9FhLGoNYcNlZkUnzjX3POI4Kdn7P3iugI" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Mar 2021 11:34:25 -0000 This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --9FhLGoNYcNlZkUnzjX3POI4Kdn7P3iugI Content-Type: multipart/mixed; boundary="zU1zaNsz2b69WG8eozkU5lYOaoJa70ZcI"; protected-headers="v1" From: Stefan Esser To: sunpoet@FreeBSD.org Cc: ports@FreeBSD.org, Erik Neubauer Message-ID: <3f8968bd-a2fc-af67-9e9e-61e555d0517a@freebsd.org> Subject: Re: FreeBSD Port: owncloud-php80-10.6.0 References: In-Reply-To: --zU1zaNsz2b69WG8eozkU5lYOaoJa70ZcI Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: quoted-printable Am 19.03.21 um 10:23 schrieb Erik Neubauer via freebsd-ports: > Hi, >=20 > Thanks for maintaining an ownCloud package! >=20 > I noticed that you are using PHP 8.0. However ownCloud doesn't support = > that version of PHP. >=20 > Unfortunately I don't have any experience with BSDs, but perhaps I can = > help you create a package based on PHP 7.4? Hi Sunpoet, the following patch prevents use of PHP-8.0 and the creation of a package for that PHP version: Index: www/owncloud/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- www/owncloud/Makefile (revision 568788) +++ www/owncloud/Makefile (working copy) @@ -18,6 +18,7 @@ USE_PHP=3D bz2 ctype curl dom fileinfo filter gd hash iconv intl json \= mbstring pdo posix session simplexml xml xmlreader xmlwriter \ xsl zip zlib +IGNORE_WITH_PHP=3D 80 NO_ARCH=3D yes NO_BUILD=3D yes In order to get the current owncloud-php80 package removed from the package mirrors, a PORT_REVISION bump will be required. Let me know if I should go ahead and commit that change ... Regards, STefan --zU1zaNsz2b69WG8eozkU5lYOaoJa70ZcI-- --9FhLGoNYcNlZkUnzjX3POI4Kdn7P3iugI Content-Type: application/pgp-signature; name="OpenPGP_signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="OpenPGP_signature" -----BEGIN PGP SIGNATURE----- wsB5BAABCAAjFiEEo3HqZZwL7MgrcVMTR+u171r99UQFAmBUjD4FAwAAAAAACgkQR+u171r99URm 3wf+IU/GDG1fzTVMqUZWgw+YCmJ32E6iObPXdkcSTMxobjibTWSh3mtdeezyegwD0Miw2fzR209i iJsgS16hUjWde5bzqiedMwjMi4RSPm57IsK/Y8zHJmgWjXVlCFuSfDrPOlmJ0kz1JxbE2gIdm9Ho ZfWl7ygYmhL40e+c9+OuaSaBYWZfjrRf5PptOgqNKj2Tc4ifNmca4Nl/EXVAOEnxKuKgVfqXBTuL 7iv0cvbAFduNo810MjMVCAIBGFps+nq1/gZzifEkjIFM/lmg6kv7lnTHqcIFsqRZqPCnADNv160p xttYlH1h1Sqe82ei5QGIJf7JzzEJqS9NbElELZWPhQ== =ePgm -----END PGP SIGNATURE----- --9FhLGoNYcNlZkUnzjX3POI4Kdn7P3iugI--