public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Matt Turner" <mattst88@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/pixman/
Date: Tue,  3 Dec 2024 04:20:27 +0000 (UTC)	[thread overview]
Message-ID: <1733199214.dc01a4a5526fa11e10c826428e30a92bff86839a.mattst88@gentoo> (raw)

commit:     dc01a4a5526fa11e10c826428e30a92bff86839a
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Tue Dec  3 03:57:00 2024 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue Dec  3 04:13:34 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc01a4a5

x11-libs/pixman: Version bump to 0.44.2

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 x11-libs/pixman/Manifest             |  1 +
 x11-libs/pixman/pixman-0.44.2.ebuild | 61 ++++++++++++++++++++++++++++++++++++
 2 files changed, 62 insertions(+)

diff --git a/x11-libs/pixman/Manifest b/x11-libs/pixman/Manifest
index d39b17019948..bfde765424ca 100644
--- a/x11-libs/pixman/Manifest
+++ b/x11-libs/pixman/Manifest
@@ -1,2 +1,3 @@
 DIST pixman-0.43.4.tar.xz 636900 BLAKE2B c31e5700bfadcd72f522af50509a4a6cd7bbf90c918c75b108e50246f1c76e858125138902a222040ada192710ec788deb43eb65085416f3eff88e3ed970933e SHA512 b40fb05bd58dc78f4e4e9b19c86991ab0611b708657c9a7fb42bfe82d57820a0fde01a34b00a0848a41da6c3fb90c2213942a70f435a0e9467631695d3bc7e36
 DIST pixman-0.44.0.tar.xz 649200 BLAKE2B ea3f5fc5e6febfd3e6acf89b9bb7ce2d7c82d42ede2b3f7df69ce6d65ec2d75d3402523a1a3227135caac34633556dec3010a435ace23f2c8255ea210c03d5db SHA512 3ea293cd308a4faeb600939df2c98148154cf1faf8e435b9f33df46c33acfeb32572cb0c1e148ee9f6f39f9e8a49fbda627edcac03da2000d89e22941849a04d
+DIST pixman-0.44.2.tar.xz 650012 BLAKE2B 856aa35ae705de522d70250beee8acc872b54d2b5caa9cee6bc12ffde7c293b3db76f56c75858cc5ab1bc592fb1d4078485c2def2ae4bcd5a50b6dfc2eb477eb SHA512 b24907f9a0bf6a9aa3278d31986c562c5f2d68f8c178021497c8648aca9f91e4c6f1ecfacf93eb01ba4f03ce4cfc5970fc40bb0fe6724bac9210fc57da09cba4

diff --git a/x11-libs/pixman/pixman-0.44.2.ebuild b/x11-libs/pixman/pixman-0.44.2.ebuild
new file mode 100644
index 000000000000..456ea42b8574
--- /dev/null
+++ b/x11-libs/pixman/pixman-0.44.2.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+EGIT_REPO_URI="https://gitlab.freedesktop.org/pixman/pixman.git"
+
+if [[ ${PV} = 9999* ]]; then
+	GIT_ECLASS="git-r3"
+fi
+
+inherit ${GIT_ECLASS} meson-multilib multiprocessing toolchain-funcs
+
+DESCRIPTION="Low-level pixel manipulation routines"
+HOMEPAGE="http://www.pixman.org/ https://gitlab.freedesktop.org/pixman/pixman/"
+if [[ ${PV} != 9999* ]]; then
+	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~m68k ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos ~x64-solaris"
+	SRC_URI="https://www.x.org/releases/individual/lib/${P}.tar.xz"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="cpu_flags_ppc_altivec cpu_flags_arm_neon loongson2f cpu_flags_x86_mmxext cpu_flags_x86_sse2 cpu_flags_x86_ssse3 static-libs test"
+RESTRICT="!test? ( test )"
+
+pkg_pretend() {
+	[[ ${MERGE_TYPE} != binary ]] && use test && tc-check-openmp
+}
+
+pkg_setup() {
+	[[ ${MERGE_TYPE} != binary ]] && use test && tc-check-openmp
+}
+
+multilib_src_configure() {
+	local emesonargs=(
+		$(meson_feature cpu_flags_x86_mmxext mmx)
+		$(meson_feature cpu_flags_x86_sse2 sse2)
+		$(meson_feature cpu_flags_x86_ssse3 ssse3)
+		$(meson_feature cpu_flags_ppc_altivec vmx)
+		$(meson_feature loongson2f loongson-mmi)
+		$(meson_feature test openmp) # only used in unit tests
+		$(meson_feature test tests)
+		-Ddefault_library=$(usex static-libs both shared)
+		-Ddemos=disabled
+		-Dgtk=disabled
+		-Dlibpng=disabled
+	)
+
+	if [[ ${ABI} == arm64 ]]; then
+		emesonargs+=($(meson_feature cpu_flags_arm_neon a64-neon))
+	elif [[ ${ABI} == arm ]]; then
+		emesonargs+=($(meson_feature cpu_flags_arm_neon neon))
+	fi
+
+	meson_src_configure
+}
+
+multilib_src_test() {
+	export OMP_NUM_THREADS=$(makeopts_jobs)
+	meson_src_test -t 100
+}


             reply	other threads:[~2024-12-03  4:20 UTC|newest]

Thread overview: 136+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-12-03  4:20 Matt Turner [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-01-24  3:58 [gentoo-commits] repo/gentoo:master commit in: x11-libs/pixman/ Matt Turner
2024-12-17  3:58 Matt Turner
2024-12-15 19:07 Arthur Zamarin
2024-12-09 19:20 Arthur Zamarin
2024-12-08 18:58 Sam James
2024-12-08 18:58 Sam James
2024-12-08 18:58 Sam James
2024-12-08 18:58 Sam James
2024-12-08 18:57 Arthur Zamarin
2024-11-05 17:28 Matt Turner
2024-11-05 17:28 Matt Turner
2024-11-05 17:28 Matt Turner
2024-11-05 17:28 Matt Turner
2024-04-21 21:09 Matt Turner
2024-04-03  5:02 Sam James
2024-04-03  5:02 Sam James
2024-04-02 19:10 Arthur Zamarin
2024-04-02 17:15 Arthur Zamarin
2024-04-02 16:53 Arthur Zamarin
2024-04-02 16:43 Arthur Zamarin
2024-04-02 16:37 Arthur Zamarin
2024-03-03 16:59 Matt Turner
2024-03-01  7:28 Viorel Munteanu
2024-03-01  7:28 Viorel Munteanu
2024-03-01  7:28 Viorel Munteanu
2024-02-29 16:45 Matt Turner
2024-02-15 23:51 Sam James
2024-02-15 21:15 Sam James
2024-02-15 21:15 Sam James
2024-02-15 19:26 Jakov Smolić
2024-02-15 18:34 Jakov Smolić
2024-01-28 17:10 Matt Turner
2024-01-04 18:01 Matt Turner
2024-01-04 18:01 Matt Turner
2024-01-04 18:01 Matt Turner
2024-01-04 18:01 Matt Turner
2023-01-21  4:54 Sam James
2022-12-03  6:05 Arthur Zamarin
2022-12-02  6:32 Arthur Zamarin
2022-11-29 16:53 Matt Turner
2022-11-19  7:01 Arthur Zamarin
2022-11-16 18:23 Arthur Zamarin
2022-11-16  7:58 Arthur Zamarin
2022-11-12 15:55 Arthur Zamarin
2022-11-12 15:50 Arthur Zamarin
2022-11-02 17:43 Matt Turner
2022-10-18  1:08 Matt Turner
2022-05-15  1:18 Sam James
2022-05-07  4:28 WANG Xuerui
2022-05-07  4:28 WANG Xuerui
2021-11-07  2:17 Sam James
2021-09-19 12:47 James Le Cuirot
2021-06-04  1:14 Matt Turner
2021-04-05 22:19 Sam James
2021-01-06 12:01 Fabian Groffen
2020-10-15 19:15 Matt Turner
2020-06-24 20:13 Matt Turner
2020-06-24 17:22 Sergei Trofimovich
2020-06-15 15:16 Agostino Sarubbo
2020-06-15 15:12 Agostino Sarubbo
2020-06-15 15:10 Agostino Sarubbo
2020-06-15 15:08 Agostino Sarubbo
2020-06-15 15:06 Agostino Sarubbo
2020-06-15 15:03 Agostino Sarubbo
2020-06-15 15:00 Agostino Sarubbo
2020-04-19 22:12 Matt Turner
2020-04-19 22:12 Matt Turner
2019-09-11 18:21 Matt Turner
2019-08-27  0:57 Matt Turner
2019-07-13 17:37 Matt Turner
2019-06-17 15:42 Matt Turner
2019-05-01 20:47 Matt Turner
2019-05-01 18:24 Matt Turner
2019-04-28 20:59 Sergei Trofimovich
2019-04-28  9:35 Mikle Kolyada
2019-04-28  4:21 Matt Turner
2019-04-28  0:48 Matt Turner
2019-04-27 11:52 Mikle Kolyada
2019-04-27 11:47 Mikle Kolyada
2019-04-27  4:29 Aaron Bauman
2019-04-27  3:15 Aaron Bauman
2019-04-10 17:29 Matt Turner
2019-04-10 17:29 Matt Turner
2019-04-07 20:59 Matt Turner
2019-04-07 20:59 Matt Turner
2019-04-07 20:59 Matt Turner
2019-03-18 17:31 Matt Turner
2019-03-17 19:17 Matt Turner
2019-03-17 19:17 Matt Turner
2019-02-16  7:40 Mikle Kolyada
2019-01-31 18:11 Matt Turner
2019-01-28  5:10 Matt Turner
2019-01-27 14:14 Sergei Trofimovich
2019-01-27 12:18 Sergei Trofimovich
2019-01-24 22:22 Thomas Deutschmann
2019-01-22 10:48 Mart Raudsepp
2019-01-21 23:26 Sergei Trofimovich
2019-01-21  7:42 Mikle Kolyada
2019-01-21  7:39 Mikle Kolyada
2019-01-20  9:53 Sergei Trofimovich
2018-11-21 17:24 Matt Turner
2018-10-30 22:41 Matt Turner
2018-06-22 10:34 Mikle Kolyada
2018-06-05 18:37 Matt Turner
2017-08-16  7:16 Michał Górny
2017-03-28 22:52 Michael Weber
2017-03-05  3:00 Matt Turner
2017-01-25 12:28 Agostino Sarubbo
2017-01-22 17:20 Agostino Sarubbo
2016-11-17 10:48 Agostino Sarubbo
2016-11-16 10:44 Agostino Sarubbo
2016-10-16  8:28 Mart Raudsepp
2016-09-22 15:55 Tobias Klausmann
2016-09-17 11:14 Pacho Ramos
2016-09-17 10:49 Pacho Ramos
2016-08-06 10:58 Markus Meier
2016-08-03  4:32 Jeroen Roovers
2016-02-02 22:22 Manuel Rüger
2016-01-26  4:11 Matt Turner
2015-12-31  8:47 Agostino Sarubbo
2015-12-22 16:34 Manuel Rüger
2015-12-22 16:34 Manuel Rüger
2015-11-08  0:01 Mikle Kolyada
2015-11-05 10:58 Agostino Sarubbo
2015-11-04 14:38 Agostino Sarubbo
2015-11-01 12:38 Tobias Klausmann
2015-10-24 20:27 Matt Turner
2015-10-23 18:35 Matt Turner
2015-10-01 11:18 Mikle Kolyada
2015-09-28  2:58 Jeroen Roovers
2015-09-26 18:22 Mikle Kolyada
2015-09-26 10:18 Agostino Sarubbo
2015-09-25 19:50 Matt Turner
2015-08-22 19:36 Matt Turner
2015-08-22 19:36 Matt Turner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1733199214.dc01a4a5526fa11e10c826428e30a92bff86839a.mattst88@gentoo \
    --to=mattst88@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox