Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-libs/pixman/
Date: Wed, 21 Nov 2018 17:24:30
Message-Id: 1542821056.6b095f9417bc801afa6683b1aa04bb0d0d53dce9.mattst88@gentoo
1 commit: 6b095f9417bc801afa6683b1aa04bb0d0d53dce9
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 21 17:21:12 2018 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 21 17:24:16 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b095f94
7
8 x11-libs/pixman: Version bump to 0.36.0
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 x11-libs/pixman/Manifest | 1 +
13 x11-libs/pixman/pixman-0.36.0.ebuild | 30 ++++++++++++++++++++++++++++++
14 2 files changed, 31 insertions(+)
15
16 diff --git a/x11-libs/pixman/Manifest b/x11-libs/pixman/Manifest
17 index 5f929dc4892..2e6fde6cc78 100644
18 --- a/x11-libs/pixman/Manifest
19 +++ b/x11-libs/pixman/Manifest
20 @@ -1 +1,2 @@
21 DIST pixman-0.34.0.tar.bz2 739656 BLAKE2B 8e235ec6332125046ac952c32bb3d6d2adabae01f121a952f62aed66470c367f31268f7fc5d4387db5e3a6145cde4f013871f2d82d2d8765e5a41cb8247d4761 SHA512 755a3f5596e7bd9710abc8e5bfd341adaf2177f5b21f7aaae7f85b8fb57580ea48df586ad32bf6adef6ce0430e7cadaa57754a2fa466bc4b15bf70ee64cd1418
22 +DIST pixman-0.36.0.tar.bz2 739957 BLAKE2B 05834dbed8a5bfed607a20f78523e7441f5b78a7a01c7d302c48b8f15dcda37111a8a99e7119b84a0a8a26b55fa93db1c2af316359095cb7db0d8a9e263a1eb7 SHA512 ed99c85a8ce11f52659da61bff599c0405ae0069c30434bdef7238bc9f18e83e6d534cddf38c14d753943edbaeba580c5005ad7575f27e469ca7be7878678d21
23
24 diff --git a/x11-libs/pixman/pixman-0.36.0.ebuild b/x11-libs/pixman/pixman-0.36.0.ebuild
25 new file mode 100644
26 index 00000000000..3b905898e57
27 --- /dev/null
28 +++ b/x11-libs/pixman/pixman-0.36.0.ebuild
29 @@ -0,0 +1,30 @@
30 +# Copyright 1999-2018 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=5
34 +XORG_MULTILIB=yes
35 +inherit xorg-2
36 +
37 +EGIT_REPO_URI="https://gitlab.freedesktop.org/pixman/pixman.git"
38 +DESCRIPTION="Low-level pixel manipulation routines"
39 +
40 +if [[ $PV != 9999* ]]; then
41 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
42 +fi
43 +
44 +IUSE="altivec loongson2f cpu_flags_arm_iwmmxt cpu_flags_x86_mmxext neon cpu_flags_x86_sse2 cpu_flags_x86_ssse3"
45 +
46 +src_configure() {
47 + XORG_CONFIGURE_OPTIONS=(
48 + $(use_enable cpu_flags_arm_iwmmxt arm-iwmmxt)
49 + $(use_enable cpu_flags_x86_mmxext mmx)
50 + $(use_enable cpu_flags_x86_sse2 sse2)
51 + $(use_enable cpu_flags_x86_ssse3 ssse3)
52 + $(use_enable altivec vmx)
53 + $(use_enable neon arm-neon)
54 + $(use_enable loongson2f loongson-mmi)
55 + --disable-gtk
56 + --disable-libpng
57 + )
58 + xorg-2_src_configure
59 +}