Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/editorconfig-core-c/
Date: Sat, 28 Jan 2023 23:28:17
Message-Id: 1674948485.366a5ca52326267e61205021018347ddaa48e446.asturm@gentoo
1 commit: 366a5ca52326267e61205021018347ddaa48e446
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 28 19:37:24 2023 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 28 23:28:05 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=366a5ca5
7
8 app-text/editorconfig-core-c: drop 0.12.4
9
10 Closes: https://bugs.gentoo.org/892125
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-text/editorconfig-core-c/Manifest | 1 -
14 .../editorconfig-core-c-0.12.4.ebuild | 43 ----------------------
15 2 files changed, 44 deletions(-)
16
17 diff --git a/app-text/editorconfig-core-c/Manifest b/app-text/editorconfig-core-c/Manifest
18 index 4bf0ecce131f..019c781103f6 100644
19 --- a/app-text/editorconfig-core-c/Manifest
20 +++ b/app-text/editorconfig-core-c/Manifest
21 @@ -1,2 +1 @@
22 -DIST editorconfig-core-c-0.12.4.tar.gz 72141 BLAKE2B bfbd7ab2eb3ac1c73d387447e16c0888b4dce1318f14f1a511cbf1e5c34aecb31921955fb51a6c07a8a991fb388995971ceed22b4e53c53b1c56fddbbcccfdfc SHA512 e275d4f77fddd31717a588be15a67a630e693efbddc5e1cf7e9b116b1c1a700fa9bafc1322733aa73a009c78519e00083b151bbc4a5ad55128df2c7360f9a163
23 DIST editorconfig-core-c-0.12.5.tar.gz 72272 BLAKE2B 044723047f8bc6ed0a4b3c5defbc43a0192edd0997dbaf9e9be6027d47f0d09c2bf4ba8141dda67ba541657a6c462afb86bb575a0eee586cf9a45581a5ff2017 SHA512 7d54c8c1ade8ecef5dc8f35e006f0e226455b7ed9541442a846bbebc26765e92abbbb29b991748164015bcfaff8764a0ac007e4384e163678a2922f7ca6b2e03
24
25 diff --git a/app-text/editorconfig-core-c/editorconfig-core-c-0.12.4.ebuild b/app-text/editorconfig-core-c/editorconfig-core-c-0.12.4.ebuild
26 deleted file mode 100644
27 index 527bb600f9ae..000000000000
28 --- a/app-text/editorconfig-core-c/editorconfig-core-c-0.12.4.ebuild
29 +++ /dev/null
30 @@ -1,43 +0,0 @@
31 -# Copyright 1999-2023 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit cmake
37 -
38 -DESCRIPTION="EditorConfig core library written in C"
39 -HOMEPAGE="https://github.com/editorconfig/editorconfig-core-c/"
40 -SRC_URI="https://github.com/editorconfig/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="BSD-2"
43 -SLOT="0"
44 -KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86"
45 -IUSE="cli doc"
46 -
47 -BDEPEND="doc? ( app-doc/doxygen )"
48 -DEPEND="dev-libs/libpcre2:="
49 -RDEPEND="${DEPEND}
50 - cli? ( !dev-python/editorconfig-core-py[cli] )"
51 -
52 -src_prepare() {
53 - # Don't install the static library.
54 - sed -e '/install(TARGETS editorconfig_static/,+5d' -i src/lib/CMakeLists.txt || die
55 - cmake_src_prepare
56 -}
57 -
58 -src_configure() {
59 - local mycmakeargs=(
60 - -DBUILD_DOCUMENTATION=$(usex doc 'ON' 'OFF')
61 - -DBUILD_STATICALLY_LINKED_EXE=OFF
62 - )
63 - cmake_src_configure
64 -}
65 -
66 -src_install() {
67 - use doc && local HTML_DOCS=( "${BUILD_DIR}"/doc/html/. )
68 - cmake_src_install
69 -
70 - if ! use cli; then
71 - rm -r "${ED}/usr/bin" || die
72 - fi
73 -}