From nobody Wed Oct 5 14:44:16 2022 X-Original-To: dev-commits-ports-all@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4MjHQW5mjdz4Txxt; Wed, 5 Oct 2022 14:44:19 +0000 (UTC) (envelope-from pkubaj@anongoth.pl) Received: from mail.anongoth.pl (mail.anongoth.pl [46.248.190.61]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X448 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "anongoth.pl", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4MjHQW4vjPz3bXF; Wed, 5 Oct 2022 14:44:19 +0000 (UTC) (envelope-from pkubaj@anongoth.pl) Received: from anongoth.pl (unknown [192.168.1.15]) (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 did not present a certificate) (Authenticated sender: pkubaj@anongoth.pl) by mail.anongoth.pl (Postfix) with ESMTPSA id 162451B1778; Wed, 5 Oct 2022 16:44:18 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=anongoth.pl; s=ANONGOTH; t=1664981058; bh=BPwO/tL3O+J9zRa5pNBydERR2tcpFUNpk6I2OUSy4eM=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=D5aoMBoFM1ZBaYKxUdgP2t6f2a45FL90P3xQHalUQtbd8gUVZo3SkE7shq9p+F/5I RzFrCUiMY717kw2Igk76d1xDHbuHd49BgvNu2pgNREfzT9Ls4K9DPtGPeFvNRxpNHx /LCbnGU4kzmyKjSKWKckbrh7e7Su03q4nsxOlIEgkYWZi38T6Yvg7WI5/Wi4L0VkHF KV6Fvu8AFHRFB9FnuFFTc/P3UrYXegk266AHpEvk33he+uDk7qixb0RVmvgKcjO7+1 XoRbM67rm+a5jk/YT/pttb+JFe6NSFc4atK2gL2gPzD8gASSgShq/OpRbChReQZ9Kc Ba2Jx+0Jl+Z7Q== Date: Wed, 5 Oct 2022 16:44:16 +0200 From: Piotr Kubaj To: Dmitry Marakasov Cc: ports-committers@freebsd.org, dev-commits-ports-all@freebsd.org, dev-commits-ports-main@freebsd.org Subject: Re: git: c698371b0910 - main - devel/sdl20: fix armv7-related check in SDL_atomic.h Message-ID: References: <202209291355.28TDt7Ln090671@gitrepo.freebsd.org> List-Id: Commit messages for all branches of the ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-all@freebsd.org X-BeenThere: dev-commits-ports-all@freebsd.org MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="qVvgEco8eLMKpqK9" Content-Disposition: inline In-Reply-To: X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; none X-Rspamd-Queue-Id: 4MjHQW4vjPz3bXF X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[] X-ThisMailContainsUnwantedMimeParts: N --qVvgEco8eLMKpqK9 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Do you want me to put that patch in files now or, since it's already commit= ted to ports and will be removed anyway with the next SDL update, it's ok a= s it is now? On 22-10-05 16:04:21, Dmitry Marakasov wrote: > * Piotr Kubaj (pkubaj@FreeBSD.org) wrote: >=20 > > URL: https://cgit.FreeBSD.org/ports/commit/?id=3Dc698371b0910e792db5690= 126bde955456fdccd2 > >=20 > > commit c698371b0910e792db5690126bde955456fdccd2 > > Author: Piotr Kubaj > > AuthorDate: 2022-09-29 13:51:25 +0000 > > Commit: Piotr Kubaj > > CommitDate: 2022-09-29 13:54:40 +0000 > >=20 > > devel/sdl20: fix armv7-related check in SDL_atomic.h > > =20 > > Fixes build errors like: > > In file included from /usr/ports/games/openrct2/work/OpenRCT2-0.4.= 1/src/openrct2-ui/CursorRepository.h:12: In file included from /usr/local/i= nclude/SDL2/SDL.h:35: /usr/local/include/SDL2/SDL_atomic.h:243:28: error: '= __ARM_ARCH__' is not defined, evaluates to 0 [-Werror,-Wundef] #elif (defin= ed(__arm__) && __ARM_ARCH__ >=3D 7) || defined(__aarch64__) > > --- > > devel/sdl20/Makefile | 4 ++++ > > devel/sdl20/distinfo | 4 +++- > > 2 files changed, 7 insertions(+), 1 deletion(-) > >=20 > > diff --git a/devel/sdl20/Makefile b/devel/sdl20/Makefile > > index d84a9679030b..6e8c2c390ba6 100644 > > --- a/devel/sdl20/Makefile > > +++ b/devel/sdl20/Makefile > > @@ -1,9 +1,13 @@ > > PORTNAME=3D sdl2 > > DISTVERSION=3D 2.24.0 > > +PORTREVISION=3D 1 > > CATEGORIES=3D devel > > MASTER_SITES=3D https://www.libsdl.org/release/ > > DISTNAME=3D SDL2-${PORTVERSION} > > =20 > > +PATCH_SITES=3D https://github.com/libsdl-org/SDL/commit/ > > +PATCHFILES=3D a204ef50bbf20b77083c0a14124e673efc3a53c6.patch:-p1 >=20 > I think I've already asked, but I'm not sure it was you. Please do not > ever introduce this kind of unmaintainable ugliness to my ports. > All patches should be put under files/. >=20 > > MAINTAINER=3D amdmi3@FreeBSD.org > > COMMENT=3D Cross-platform multimedia development API > > WWW=3D https://www.libsdl.org/ > > diff --git a/devel/sdl20/distinfo b/devel/sdl20/distinfo > > index 3f836d60852a..c78d82f18d9c 100644 > > --- a/devel/sdl20/distinfo > > +++ b/devel/sdl20/distinfo > > @@ -1,3 +1,5 @@ > > -TIMESTAMP =3D 1661880729 > > +TIMESTAMP =3D 1664457277 > > SHA256 (SDL2-2.24.0.tar.gz) =3D 91e4c34b1768f92d399b078e171448c6af18ca= fda743987ed2064a28954d6d97 > > SIZE (SDL2-2.24.0.tar.gz) =3D 7520541 > > +SHA256 (a204ef50bbf20b77083c0a14124e673efc3a53c6.patch) =3D 2cc9607f42= acc8b00ac058cbc5fcba3d7037db21db679533afd483824dd5b658 > > +SIZE (a204ef50bbf20b77083c0a14124e673efc3a53c6.patch) =3D 1168 > >=20 >=20 > --=20 > Dmitry Marakasov . > amdmi3@amdmi3.ru ..: https://github.com/AMDmi3 https://amdmi3.ru/ >=20 --qVvgEco8eLMKpqK9 Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEycyIeNkkgohzsoorelmbhSCDnJ0FAmM9mEAACgkQelmbhSCD nJ2d/g/+Pef7Znx8fjrZFxqo5Jb3e32L8jbiv95nBmx8/ND6w6fIe82gc6v1uRX5 gUZkaBJXUHgnP05YhRysFbdjZEnggTNwfECHhP7VVBAbPoDk/iatUVxFcYHzH3or xe6go45LS4v0M+NB5Rmv6/wtyfJdBbCpblphJrX29rSNciuyanaZR9n7ZZlKGQD1 s1tjn4+8ZSrqduNFBATaZzGBmnLzIEPlmgU84aWvUFqgMCrYrOxnSDWaYAjimFZa SliY/qSDeQveqVZi2JwBWFETBJjzEpRJ7t2Vu1e8YYyQlu7bgQnwz+W7+7jVw24N JTcrHV0PCjKsI67uxHGtZC9qy1f7sVcbqi5YtIAp3t2haRRugwzql1MXUSaDCvZ4 AGzd0DgCBdaBvlWdrWh3PjpeRnzq0MPEpe1a2hH5cwGhS4iGBv2a0yl7SYTX/oS5 19N/sU7XUMzTxSSDjZW0lPaGaqtme7xFzkjWlV2PYpAo6SER1503b0bQ8x8/pIS7 JX9Nr4FfbqujZWZIutiEAhvqZ9dD5WJDHWemYi43c6XR+2RfpQykqxS4sPrW8o8S WDMNYN9lkVwuWIIpKb7aPMc0/JID6+WRrIRU5iPwwLJ1s4rPZUqFQvh3qr/0q35H PctGV6dTwJvAdHYDqBE2V2kAtBHOHbcjVxxxfC0GKxp1IJs2cec= =Uw7L -----END PGP SIGNATURE----- --qVvgEco8eLMKpqK9--