summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAzamat H. Hackimov <azamat.hackimov@gmail.com>2017-11-30 10:25:44 +0500
committerPatrice Clement <monsieurp@gentoo.org>2017-12-01 22:23:09 +0100
commitbb66512977f7afb2de53676454a2e3ab3498862d (patch)
treee240d38682b5bb9c52ca8e787cdfeb73b837b8d8 /app-text/cmark
parentsys-cluster/charliecloud: new package. (diff)
downloadgentoo-bb66512977f7afb2de53676454a2e3ab3498862d.tar.gz
gentoo-bb66512977f7afb2de53676454a2e3ab3498862d.tar.bz2
gentoo-bb66512977f7afb2de53676454a2e3ab3498862d.zip
app-text/cmark: remove old version.
Package-Manager: Portage-2.3.13, Repoman-2.3.3 Closes: https://github.com/gentoo/gentoo/pull/6351
Diffstat (limited to 'app-text/cmark')
-rw-r--r--app-text/cmark/Manifest3
-rw-r--r--app-text/cmark/cmark-0.27.1.ebuild40
2 files changed, 1 insertions, 42 deletions
diff --git a/app-text/cmark/Manifest b/app-text/cmark/Manifest
index 89a102ae4d0a..4a838e6d2471 100644
--- a/app-text/cmark/Manifest
+++ b/app-text/cmark/Manifest
@@ -1,2 +1 @@
-DIST cmark-0.27.1.tar.gz 215574 SHA256 669b4c19355e8cb90139fdd03b02283b97130e92ea99a104552a2976751446b5 SHA512 a7797c9dfd54e20499666e37ba67b1902ef0d40867e7b941c1cfc93d4fbe935fb073be69aecc9f9f8c8e9524049037771635b45e071af981613431f3fbbe7b41 WHIRLPOOL 0eac7dd03176ca0fd21f89288b8e1ce92889cac00690e512304afa58c4e1777040697b78897c851a8c1c59d181cfc6e5ce3f5a980efd9939f66cc950e91fdc07
-DIST cmark-0.28.0.tar.gz 228973 SHA256 68cf191f4a78494a43b7e1663506635e370f0ba4c67c9ee9518e295685bbfe0e SHA512 86aeb42f17440c8e743057851bc3cee9ed4b3fa27dacc37d6af54dee7739210a712020e59c102ed1852b7c3f904881cb4e9b80ea475772095514c4025284cbb6 WHIRLPOOL 27705cc8cd65c5c094eb62a2d0e44942aa6f89e86218a8971ca7a6d617a49fdde44ff7358d77dd36fa42ff0cd6a54d473695742f827b773300b76bc221477cea
+DIST cmark-0.28.0.tar.gz 228973 BLAKE2B e0f42a7a5929eb8fb7a2fb9405372d626b2fea5f895b9320a28629022a8280d01af67e8e13101565ce86a2dbc4b8191eb461e70e45e7fa33c72b8e8266c2ee78 SHA512 86aeb42f17440c8e743057851bc3cee9ed4b3fa27dacc37d6af54dee7739210a712020e59c102ed1852b7c3f904881cb4e9b80ea475772095514c4025284cbb6
diff --git a/app-text/cmark/cmark-0.27.1.ebuild b/app-text/cmark/cmark-0.27.1.ebuild
deleted file mode 100644
index a69f2b36f50b..000000000000
--- a/app-text/cmark/cmark-0.27.1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_{4,5} )
-
-inherit cmake-utils python-any-r1
-
-DESCRIPTION="CommonMark parsing and rendering library and program in C"
-HOMEPAGE="https://github.com/jgm/cmark"
-SRC_URI="https://github.com/jgm/cmark/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-DEPEND="
- test? ( ${PYTHON_DEPS} )"
-RDEPEND=""
-
-pkg_setup() {
- use test && python-any-r1_pkg_setup
-}
-
-src_prepare() {
- cmake-utils_src_prepare
- # Remove static library from installing
- sed -i -e \
- s":\${LIBRARY} \${STATICLIBRARY}:\${LIBRARY}:g" \
- src/CMakeLists.txt || die
-}
-
-src_configure() {
- local mycmakeargs=(
- -DCMARK_TESTS="$(usex test)"
- )
- cmake-utils_src_configure
-}