From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6F7B6139085 for ; Mon, 2 Jan 2017 16:14:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9F41E0DBF; Mon, 2 Jan 2017 16:14:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 990ABE0DBF for ; Mon, 2 Jan 2017 16:14:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8FA8B34112A for ; Mon, 2 Jan 2017 16:13:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F3B8E261E for ; Mon, 2 Jan 2017 16:13:57 +0000 (UTC) From: "Sebastien Fabbro" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastien Fabbro" Message-ID: <1483373625.8c959629a0c8e4c103ee3dbf6f106e1638295854.bicatali@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/CommonMark/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/CommonMark/CommonMark-0.5.4.ebuild dev-python/CommonMark/Manifest dev-python/CommonMark/metadata.xml X-VCS-Directories: dev-python/CommonMark/ X-VCS-Committer: bicatali X-VCS-Committer-Name: Sebastien Fabbro X-VCS-Revision: 8c959629a0c8e4c103ee3dbf6f106e1638295854 X-VCS-Branch: master Date: Mon, 2 Jan 2017 16:13:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: f17ab648-febb-4b62-ab6b-f6f5edceb57e X-Archives-Hash: e8f8359358faa8504bf887a69fee9b99 commit: 8c959629a0c8e4c103ee3dbf6f106e1638295854 Author: Sébastien Fabbro gentoo org> AuthorDate: Mon Jan 2 05:39:03 2017 +0000 Commit: Sebastien Fabbro gentoo org> CommitDate: Mon Jan 2 16:13:45 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c959629 dev-python/CommonMark: initial import Package-Manager: Portage-2.3.3, Repoman-2.3.1 dev-python/CommonMark/CommonMark-0.5.4.ebuild | 34 +++++++++++++++++++++++++++ dev-python/CommonMark/Manifest | 1 + dev-python/CommonMark/metadata.xml | 19 +++++++++++++++ 3 files changed, 54 insertions(+) diff --git a/dev-python/CommonMark/CommonMark-0.5.4.ebuild b/dev-python/CommonMark/CommonMark-0.5.4.ebuild new file mode 100644 index 00000000..3f2c494 --- /dev/null +++ b/dev-python/CommonMark/CommonMark-0.5.4.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) + +inherit distutils-r1 + +DESCRIPTION="Python parser for the CommonMark Markdown spec" +HOMEPAGE="https://github.com/rtfd/CommonMark-py" +LICENSE="BSD" + +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +IUSE="" +RDEPEND=" + dev-python/future[${PYTHON_USEDEP}] +" +DEPEND="${RDEPEND} + dev-python/hypothesis[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] +" + +# unrestrict for versions >= 0.7.2 +RESTRICT=test + +python_test() { + LC_ALL='en_US.utf8' LC_CTYPE='en_US.utf8' LANG=en_US.utf8 PYTHONIOENCODING=UTF-8 \ + esetup.py test +} diff --git a/dev-python/CommonMark/Manifest b/dev-python/CommonMark/Manifest new file mode 100644 index 00000000..0df81f3 --- /dev/null +++ b/dev-python/CommonMark/Manifest @@ -0,0 +1 @@ +DIST CommonMark-0.5.4.tar.gz 120316 SHA256 34d73ec8085923c023930dfc0bcd1c4286e28a2a82de094bb72fabcc0281cbe5 SHA512 1983714a50a627f30f86af0d02dad9e52cb7b0ffce29691d0e740f587e599ead6de2412d72b895b7df772e1c81e171e56dfecaf593e611af65bd5798632a98ad WHIRLPOOL f375b772faff450af98d73b3559dabe7b7369951cd8cf9ea45046bf5de875022212b7e92daee3fa7d3fb63d44894a301991a4561ac8a8b0c78eef64c83062fad diff --git a/dev-python/CommonMark/metadata.xml b/dev-python/CommonMark/metadata.xml new file mode 100644 index 00000000..fc5b696 --- /dev/null +++ b/dev-python/CommonMark/metadata.xml @@ -0,0 +1,19 @@ + + + + + python@gentoo.org + Python + + + Pure Python port of jgm’s commonmark.js, a Markdown parser and + renderer for the CommonMark specification, using only native + modules. Once both this project and the CommonMark specification + are stable we will release the first 1.0 version and attempt to + keep up to date with changes in commonmark.js. + + + CommonMark + rtfd/CommonMark.py + +