Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/cmark/
Date: Mon, 11 Mar 2019 10:13:58
Message-Id: 1552299216.3544cdc057f4be5107eb40d0f14da9c7124306b2.monsieurp@gentoo
1 commit: 3544cdc057f4be5107eb40d0f14da9c7124306b2
2 Author: Azamat H. Hackimov <azamat.hackimov <AT> gmail <DOT> com>
3 AuthorDate: Sun Mar 3 11:53:18 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Mar 11 10:13:36 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3544cdc0
7
8 app-text/cmark: remove old version.
9
10 Signed-off-by: Azamat H. Hackimov <azamat.hackimov <AT> gmail.com>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12 Closes: https://github.com/gentoo/gentoo/pull/11228
13 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
14
15 app-text/cmark/Manifest | 1 -
16 app-text/cmark/cmark-0.28.0.ebuild | 33 ---------------------------------
17 2 files changed, 34 deletions(-)
18
19 diff --git a/app-text/cmark/Manifest b/app-text/cmark/Manifest
20 index 975326d4c52..d6f50e153e2 100644
21 --- a/app-text/cmark/Manifest
22 +++ b/app-text/cmark/Manifest
23 @@ -1,2 +1 @@
24 -DIST cmark-0.28.0.tar.gz 228973 BLAKE2B e0f42a7a5929eb8fb7a2fb9405372d626b2fea5f895b9320a28629022a8280d01af67e8e13101565ce86a2dbc4b8191eb461e70e45e7fa33c72b8e8266c2ee78 SHA512 86aeb42f17440c8e743057851bc3cee9ed4b3fa27dacc37d6af54dee7739210a712020e59c102ed1852b7c3f904881cb4e9b80ea475772095514c4025284cbb6
25 DIST cmark-0.28.3.tar.gz 229391 BLAKE2B b235d3dd8ed9b83d8fd6ec495d311bed854ad61d28e5a5087f40f7e512977892fcdff7c51e8683db87e0ee8e5e73338fe11b8829e70c6f07c59e917a8b7268cc SHA512 409105a3228a8ae22ba6acf95cd99bc9a2c20f8603aa0e803a33172eb6ef53f80f8f0262d2258b77f9fd6e1f2e9017a6c906b88f761e053c09ef88c9ffab7d29
26
27 diff --git a/app-text/cmark/cmark-0.28.0.ebuild b/app-text/cmark/cmark-0.28.0.ebuild
28 deleted file mode 100644
29 index 8645624e81e..00000000000
30 --- a/app-text/cmark/cmark-0.28.0.ebuild
31 +++ /dev/null
32 @@ -1,33 +0,0 @@
33 -# Copyright 1999-2017 Gentoo Foundation
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=6
37 -
38 -PYTHON_COMPAT=( python3_{4,5,6} )
39 -
40 -inherit cmake-utils python-any-r1
41 -
42 -DESCRIPTION="CommonMark parsing and rendering library and program in C"
43 -HOMEPAGE="https://github.com/commonmark/cmark"
44 -SRC_URI="https://github.com/commonmark/cmark/archive/${PV}.tar.gz -> ${P}.tar.gz"
45 -
46 -LICENSE="BSD-2"
47 -SLOT="0"
48 -KEYWORDS="amd64 x86"
49 -IUSE="test"
50 -
51 -DEPEND="test? ( ${PYTHON_DEPS} )"
52 -
53 -pkg_setup() {
54 - use test && python-any-r1_pkg_setup
55 -}
56 -
57 -src_configure() {
58 - local mycmakeargs=(
59 - -DCMARK_LIB_FUZZER=OFF
60 - -DCMARK_SHARED=ON
61 - -DCMARK_STATIC=OFF
62 - -DCMARK_TESTS="$(usex test)"
63 - )
64 - cmake-utils_src_configure
65 -}