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/cmark/
Date: Thu, 18 Jul 2019 15:30:48
Message-Id: 1563463830.a8aa2942c9a0be787c41aae3ffe4c675b1de719b.asturm@gentoo
1 commit: a8aa2942c9a0be787c41aae3ffe4c675b1de719b
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 18 15:18:10 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 18 15:30:30 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8aa2942
7
8 app-text/cmark: Drop 0.28.3
9
10 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
11 Package-Manager: Portage-2.3.66, Repoman-2.3.11
12
13 app-text/cmark/Manifest | 1 -
14 app-text/cmark/cmark-0.28.3.ebuild | 33 ---------------------------------
15 2 files changed, 34 deletions(-)
16
17 diff --git a/app-text/cmark/Manifest b/app-text/cmark/Manifest
18 index 3f5f31c3c58..e7779b22878 100644
19 --- a/app-text/cmark/Manifest
20 +++ b/app-text/cmark/Manifest
21 @@ -1,2 +1 @@
22 -DIST cmark-0.28.3.tar.gz 229391 BLAKE2B b235d3dd8ed9b83d8fd6ec495d311bed854ad61d28e5a5087f40f7e512977892fcdff7c51e8683db87e0ee8e5e73338fe11b8829e70c6f07c59e917a8b7268cc SHA512 409105a3228a8ae22ba6acf95cd99bc9a2c20f8603aa0e803a33172eb6ef53f80f8f0262d2258b77f9fd6e1f2e9017a6c906b88f761e053c09ef88c9ffab7d29
23 DIST cmark-0.29.0.tar.gz 234545 BLAKE2B 1571cdf08f85142ff790db811b7973f2d95a7b1c8669af467cbeac1ad0907826a46f7e0e3ba717ba677746406f8372e40b9878f7810d317fa3c0e14db06dc8fb SHA512 06eb110cfd90c9e980c022b7588e28864d15a4da5d07d61ad4b27c6de47367492b9e58e9434e62b07517aa6dc484f17af13916808be3188f38c37d20cbf33112
24
25 diff --git a/app-text/cmark/cmark-0.28.3.ebuild b/app-text/cmark/cmark-0.28.3.ebuild
26 deleted file mode 100644
27 index 1b2f4a66290..00000000000
28 --- a/app-text/cmark/cmark-0.28.3.ebuild
29 +++ /dev/null
30 @@ -1,33 +0,0 @@
31 -# Copyright 1999-2019 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -PYTHON_COMPAT=( python3_{5,6} )
37 -
38 -inherit cmake-utils python-any-r1
39 -
40 -DESCRIPTION="CommonMark parsing and rendering library and program in C"
41 -HOMEPAGE="https://github.com/commonmark/cmark"
42 -SRC_URI="https://github.com/commonmark/cmark/archive/${PV}.tar.gz -> ${P}.tar.gz"
43 -
44 -LICENSE="BSD-2"
45 -SLOT="0/0.28.3"
46 -KEYWORDS="amd64 ppc ~ppc64 x86"
47 -IUSE="test"
48 -
49 -DEPEND="test? ( ${PYTHON_DEPS} )"
50 -
51 -pkg_setup() {
52 - use test && python-any-r1_pkg_setup
53 -}
54 -
55 -src_configure() {
56 - local mycmakeargs=(
57 - -DCMARK_LIB_FUZZER=OFF
58 - -DCMARK_SHARED=ON
59 - -DCMARK_STATIC=OFF
60 - -DCMARK_TESTS="$(usex test)"
61 - )
62 - cmake-utils_src_configure
63 -}