Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/hyperscan/
Date: Tue, 30 Mar 2021 13:03:14
Message-Id: 1617109384.3a5ffd2785532f2541e66f01958d33b7aab37989.juippis@gentoo
1 commit: 3a5ffd2785532f2541e66f01958d33b7aab37989
2 Author: Petr Vaněk <arkamar <AT> atlas <DOT> cz>
3 AuthorDate: Fri Mar 26 09:38:32 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 30 13:03:04 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a5ffd27
7
8 dev-libs/hyperscan: drop 5.3.0
9
10 Signed-off-by: Petr Vaněk <arkamar <AT> atlas.cz>
11 Closes: https://github.com/gentoo/gentoo/pull/20122
12 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
13
14 dev-libs/hyperscan/Manifest | 1 -
15 dev-libs/hyperscan/hyperscan-5.3.0.ebuild | 55 -------------------------------
16 2 files changed, 56 deletions(-)
17
18 diff --git a/dev-libs/hyperscan/Manifest b/dev-libs/hyperscan/Manifest
19 index dd7672155aa..583b450ea30 100644
20 --- a/dev-libs/hyperscan/Manifest
21 +++ b/dev-libs/hyperscan/Manifest
22 @@ -1,2 +1 @@
23 -DIST hyperscan-5.3.0.tar.gz 1824077 BLAKE2B 6d1c8ac8df32e8e4ac09f51ad292e566c2af2b7de9fb1f0bf99b233b9647b527ea115b6bdace5533927bc7a0eace626921b391ad3e78d62fe54636ae13b9f26e SHA512 a4d85ffd2264e8e6745340ba51431361775a1e7a2da78edd31f6f53552ac61fdef718710ae53a254b7d5000f9ec1aafe7a48d9c55e76f5c6822486150bbc6c56
24 DIST hyperscan-5.4.0.tar.gz 1844963 BLAKE2B 1a5af88655854b4c1ec58e6663b6c9c4b6fca0aa9d3e4daad3992daf911b8f359f48a95b65e4f05c71aa644e0271471d016fafaca05d547b838a9c52ea016e27 SHA512 cfec3f43b9e8b3fbb2e761927f3a173c1230f2688da710ec7708f2941ce6f550a1d3cb48b0b0e2ccf709807390117a7e40047cb99190bcc341f37eb3da13ae62
25
26 diff --git a/dev-libs/hyperscan/hyperscan-5.3.0.ebuild b/dev-libs/hyperscan/hyperscan-5.3.0.ebuild
27 deleted file mode 100644
28 index e05b00364aa..00000000000
29 --- a/dev-libs/hyperscan/hyperscan-5.3.0.ebuild
30 +++ /dev/null
31 @@ -1,55 +0,0 @@
32 -# Copyright 1999-2021 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -
37 -PYTHON_COMPAT=( python3_{7..9} )
38 -
39 -inherit cmake flag-o-matic python-any-r1
40 -
41 -DESCRIPTION="High-performance regular expression matching library"
42 -SRC_URI="https://github.com/intel/hyperscan/archive/v${PV}.tar.gz -> ${P}.tar.gz"
43 -HOMEPAGE="https://www.hyperscan.io/ https://github.com/intel/hyperscan"
44 -
45 -LICENSE="BSD"
46 -SLOT="0"
47 -KEYWORDS="amd64 x86"
48 -IUSE="cpu_flags_x86_avx2 cpu_flags_x86_ssse3 static-libs"
49 -
50 -RDEPEND="dev-libs/boost"
51 -DEPEND="${RDEPEND}"
52 -BDEPEND="
53 - ${PYTHON_DEPS}
54 - dev-util/ragel
55 -"
56 -
57 -# We can't default this to on as it's against the expectation of
58 -# how CPU_FLAGS_* work for users.
59 -REQUIRED_USE="cpu_flags_x86_ssse3"
60 -
61 -src_prepare() {
62 - # Respect user -O flags
63 - sed -i '/set(OPT_CX*_FLAG/d' CMakeLists.txt || die
64 -
65 - # upstream workaround
66 - append-cxxflags -Wno-redundant-move
67 - cmake_src_prepare
68 -}
69 -
70 -src_configure() {
71 - CMAKE_BUILD_TYPE=Release
72 -
73 - use cpu_flags_x86_ssse3 && append-flags -mssse3
74 - use cpu_flags_x86_avx2 && append-flags -mavx2
75 -
76 - local mycmakeargs=(
77 - -DBUILD_SHARED_LIBS=$(usex static-libs OFF ON)
78 - -DBUILD_STATIC_AND_SHARED=$(usex static-libs ON OFF)
79 - -DFAT_RUNTIME=false
80 - )
81 - cmake_src_configure
82 -}
83 -
84 -src_test() {
85 - "${BUILD_DIR}"/bin/unit-hyperscan || die
86 -}