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, 24 Jun 2020 20:13:24
Message-Id: 1593029581.a1b46104b8b688ce8787f74612a34be9e69a99b7.mattst88@gentoo
1 commit: a1b46104b8b688ce8787f74612a34be9e69a99b7
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 24 20:09:57 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 24 20:13:01 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1b46104
7
8 x11-libs/pixman: Drop old versions
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 x11-libs/pixman/Manifest | 1 -
13 x11-libs/pixman/pixman-0.38.4.ebuild | 63 ------------------------------------
14 2 files changed, 64 deletions(-)
15
16 diff --git a/x11-libs/pixman/Manifest b/x11-libs/pixman/Manifest
17 index 3ce2039a5fe..e31b21c01b3 100644
18 --- a/x11-libs/pixman/Manifest
19 +++ b/x11-libs/pixman/Manifest
20 @@ -1,2 +1 @@
21 -DIST pixman-0.38.4.tar.gz 897926 BLAKE2B 2c27069411e709391a1cc0af6c37acf2f06b4fad433a3197e24a0636d5d828ddbf1ca339d91470514d75e126452bc2300d14a2b862671bd11a8b85057d86b31c SHA512 b66dc23c0bc7327cb90085cbc14ccf96ad58001a927f23af24e0258ca13f32d4255535862f1efcf00e9e723410aa9f51edf26fb01c8cde49379d1225acf7b5af
22 DIST pixman-0.40.0.tar.xz 634752 BLAKE2B 29b71f5eb6c3df0318c7a6153c6abbce29748b0b578697916414a869a029635fe5e0bab06b8f701a764c95e475c115ed12eb4f93c751d234b5868f4c4196d7db SHA512 8a60edb113d68791b41bd90b761ff7b3934260cb3dada3234c9351416f61394e4157353bc4d61b8f6c2c619de470f6feefffb4935bfcf79d291ece6285de7270
23
24 diff --git a/x11-libs/pixman/pixman-0.38.4.ebuild b/x11-libs/pixman/pixman-0.38.4.ebuild
25 deleted file mode 100644
26 index e327798978a..00000000000
27 --- a/x11-libs/pixman/pixman-0.38.4.ebuild
28 +++ /dev/null
29 @@ -1,63 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -EGIT_REPO_URI="https://gitlab.freedesktop.org/pixman/pixman.git"
36 -
37 -if [[ ${PV} = 9999* ]]; then
38 - GIT_ECLASS="git-r3"
39 -fi
40 -
41 -inherit ${GIT_ECLASS} meson multilib-minimal multiprocessing toolchain-funcs
42 -
43 -DESCRIPTION="Low-level pixel manipulation routines"
44 -HOMEPAGE="http://www.pixman.org/ https://gitlab.freedesktop.org/pixman/pixman/"
45 -if [[ ${PV} = 9999* ]]; then
46 - SRC_URI=""
47 -else
48 - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
49 - SRC_URI="https://www.x.org/releases/individual/lib/${P}.tar.gz"
50 -fi
51 -
52 -LICENSE="MIT"
53 -SLOT="0"
54 -IUSE="altivec cpu_flags_arm_iwmmxt cpu_flags_arm_iwmmxt2 loongson2f cpu_flags_x86_mmxext neon cpu_flags_x86_sse2 cpu_flags_x86_ssse3"
55 -
56 -src_unpack() {
57 - default
58 - [[ $PV = 9999* ]] && git-r3_src_unpack
59 -}
60 -
61 -multilib_src_configure() {
62 - local openmp=disabled
63 - tc-has-openmp && openmp=enabled
64 -
65 - local emesonargs=(
66 - $(meson_feature cpu_flags_arm_iwmmxt iwmmxt)
67 - $(meson_use cpu_flags_arm_iwmmxt2 iwmmxt2)
68 - $(meson_feature cpu_flags_x86_mmxext mmx)
69 - $(meson_feature cpu_flags_x86_sse2 sse2)
70 - $(meson_feature cpu_flags_x86_ssse3 ssse3)
71 - $(meson_feature altivec vmx)
72 - $(meson_feature neon neon)
73 - $(meson_feature loongson2f loongson-mmi)
74 - -Dgtk=disabled
75 - -Dlibpng=disabled
76 - -Dopenmp=$openmp # only used in unit tests
77 - )
78 - meson_src_configure
79 -}
80 -
81 -multilib_src_compile() {
82 - meson_src_compile
83 -}
84 -
85 -multilib_src_test() {
86 - export OMP_NUM_THREADS=$(makeopts_jobs)
87 - meson test -v -C "${BUILD_DIR}" -t 100
88 -}
89 -
90 -multilib_src_install() {
91 - meson_src_install
92 -}