public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Justin Lecher" <jlec@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/markdown/
Date: Sat, 28 Nov 2015 09:28:14 +0000 (UTC)	[thread overview]
Message-ID: <1448702843.ee8f4e5525debd6f8d1eace480cca62a28b0fb2e.jlec@gentoo> (raw)

commit:     ee8f4e5525debd6f8d1eace480cca62a28b0fb2e
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 28 09:27:23 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Nov 28 09:27:23 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee8f4e55

dev-python/markdown: Version Bump

Package-Manager: portage-2.2.25
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 dev-python/markdown/Manifest              |  1 +
 dev-python/markdown/markdown-2.6.5.ebuild | 54 +++++++++++++++++++++++++++++++
 2 files changed, 55 insertions(+)

diff --git a/dev-python/markdown/Manifest b/dev-python/markdown/Manifest
index ee40526..6aebae7 100644
--- a/dev-python/markdown/Manifest
+++ b/dev-python/markdown/Manifest
@@ -1,3 +1,4 @@
 DIST Markdown-2.6.1.tar.gz 298074 SHA256 b5879b87e8e5c125c92ab8c8f3babce78ad4e840446eed73c5b6e2984648d2b1 SHA512 53e11c5d4feacdb8210427da65b6b09453e8c904e86b42095a80132a4b67e926ba974458769e5227bfeaddd3bba5f6bd7ca7e3385951982ec982f63989119d78 WHIRLPOOL 58b6d87354ee19aac7ad1567e10f2cdc99c1aa980d3bee2fee81a5ccb5e70f43d13750dfaf1df9a42c00f3d35664731b52bfa1246271907f5a3422281ede1cc6
 DIST Markdown-2.6.3.tar.gz 301441 SHA256 ad75fc03c45492eba3bc63645e1e6465f65523a05fff0abf36910f810465a9af SHA512 29917d7112d84bc175cdab39fe1c57cc7c7efcef60cddde41905c8314caf86500eab50a1c93c5cde2cfcd82ce1214ab65367fc7d2111c9487596b9cae16882ee WHIRLPOOL 8d50fa6895a117c081f1ccb5cfc456a297a8ff36e1597add78fbd8acfd4b72f79c617c5bffc790bc7c6d76f7aefef5706b8d8083f4104500f4b5c035aa14546d
 DIST Markdown-2.6.4.tar.gz 301632 SHA256 e436eee7aaf2a230ca3315034dd39e8a0fc27036708acaa3dd70625ec62a94ce SHA512 5fc4ada494880871833046ef9a115385542002e6ec104847353fb2638fce6e46f2bb54ff37bd7d43eb100a448dc424ac425937cadc9ec1d81ea9e70887d8e460 WHIRLPOOL ca0d39b8cbbc124a5a6a4324d627c66d717e1f4c4c43c09d9ff208a23b56b6de79ed7b5cf9a57a2c598a3f40810d4691d42dcbf48690c58d13f38adb8e318490
+DIST Markdown-2.6.5.tar.gz 301781 SHA256 8d94cf6273606f76753fcb1324623792b3738c7612c2b180c85cc5e88642e560 SHA512 d966136a7184ada4eec70af661aba441694a8c4f59e57d59a28dfbc1649ca1e90cc1e4a29b354b3caf35362e1e0c96eeb3f46c68f82d7a898b76c08866d459d3 WHIRLPOOL 752414989f7b3ba04f4f4d8b9f855c9d64f816c61b4d6333e1b3c15b2aadf6579f1b1f0a686ca3eccfc3fcdaac8007c6655a0f331d795a8a0b07ef83dda2465c

diff --git a/dev-python/markdown/markdown-2.6.5.ebuild b/dev-python/markdown/markdown-2.6.5.ebuild
new file mode 100644
index 0000000..27f86b1
--- /dev/null
+++ b/dev-python/markdown/markdown-2.6.5.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_{3,4} pypy pypy3 )
+
+inherit distutils-r1
+
+MY_PN="Markdown"
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Python implementation of the markdown markup language"
+HOMEPAGE="
+	http://www.freewisdom.org/projects/python-markdown
+	https://pypi.python.org/pypi/Markdown
+	https://pythonhosted.org/Markdown/
+	https://github.com/waylan/Python-Markdown"
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="|| ( BSD GPL-2 )"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+IUSE="doc test pygments"
+
+DEPEND="
+	test? (
+		dev-python/nose[${PYTHON_USEDEP}]
+		dev-python/pyyaml[${PYTHON_USEDEP}]
+		dev-python/pygments[${PYTHON_USEDEP}]
+		dev-python/pytidylib[${PYTHON_USEDEP}]
+	)"
+# source cites pytidylib however from testruns it appears optional
+RDEPEND="pygments? ( dev-python/pygments[${PYTHON_USEDEP}] )"
+
+S="${WORKDIR}/${MY_P}"
+
+python_compile_all() {
+	use doc && esetup.py build_docs
+}
+
+python_test() {
+	cp -r -l run-tests.py tests "${BUILD_DIR}"/ || die
+	cd "${BUILD_DIR}" || die
+	"${PYTHON}" run-tests.py || die "Tests fail with ${EPYTHON}"
+}
+
+python_install_all() {
+	# make use doc do a doc build
+	use doc && local HTML_DOCS=( "${BUILD_DIR}"/docs/. )
+
+	distutils-r1_python_install_all
+}


             reply	other threads:[~2015-11-28  9:28 UTC|newest]

Thread overview: 106+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-28  9:28 Justin Lecher [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-08-31  9:44 [gentoo-commits] repo/gentoo:master commit in: dev-python/markdown/ Michał Górny
2024-08-31  8:52 Arthur Zamarin
2024-08-16 19:19 Michał Górny
2024-07-12  2:33 Michał Górny
2024-06-16 20:51 Petr Vaněk
2024-03-30 14:14 Michał Górny
2024-03-30 13:59 Michał Górny
2024-03-15  5:06 Michał Górny
2024-01-29  7:51 Sam James
2024-01-10 21:12 Michał Górny
2023-11-11 20:36 Michał Górny
2023-11-11 19:21 Sam James
2023-11-01  5:08 Michał Górny
2023-10-07  4:43 Michał Górny
2023-09-01 16:44 Michał Górny
2023-09-01 16:30 Arthur Zamarin
2023-07-26  6:03 Michał Górny
2023-07-19 11:10 Michał Górny
2023-06-06  5:43 Michał Górny
2023-05-23 15:54 Michał Górny
2023-05-23 15:35 Arthur Zamarin
2023-05-20  7:15 Michał Górny
2023-03-23 16:36 Michał Górny
2022-08-17 19:40 Arthur Zamarin
2022-08-17 18:45 Sam James
2022-07-16  8:02 Michał Górny
2022-07-15 18:30 Arthur Zamarin
2022-06-16  9:18 Michał Górny
2022-06-16  9:02 Jakov Smolić
2022-05-16 20:17 Andrew Ammerlaan
2022-05-13  6:33 WANG Xuerui
2022-05-06  7:08 Arthur Zamarin
2022-04-25 18:41 Sam James
2021-12-18 15:36 Michał Górny
2021-12-18 13:38 Arthur Zamarin
2021-11-17 20:46 Michał Górny
2021-11-17 20:46 Michał Górny
2021-11-17  9:55 Michał Górny
2021-11-09 10:47 Michał Górny
2021-10-17  9:07 Michał Górny
2021-09-19 12:47 James Le Cuirot
2021-06-05 19:00 Michał Górny
2021-05-21  0:51 Yixun Lan
2021-03-30 11:10 Michał Górny
2021-03-30  9:27 Sam James
2021-03-19  4:12 Sam James
2021-02-24 21:43 Michał Górny
2021-01-07  7:41 Fabian Groffen
2020-11-26  8:26 Michał Górny
2020-11-26  5:56 Sam James
2020-11-15  7:54 Michał Górny
2020-11-15  5:19 Sam James
2020-11-09 15:11 Michał Górny
2020-10-26  7:39 Michał Górny
2020-10-20  2:50 Michał Górny
2020-10-13  2:09 Michał Górny
2020-09-20 14:30 Michał Górny
2020-09-20 14:08 Michał Górny
2020-07-15  8:06 Joonas Niilola
2020-07-09 12:20 Michał Górny
2020-05-13  7:08 Michał Górny
2020-03-27 21:25 Michał Górny
2020-03-27 21:25 Michał Górny
2020-03-07 15:11 Michał Górny
2020-02-16 13:51 Sergei Trofimovich
2020-02-13  6:26 Michał Górny
2020-02-13  6:26 Michał Górny
2020-02-13  6:26 Michał Górny
2020-02-11 18:33 William Hubbs
2020-02-11 11:37 Agostino Sarubbo
2020-02-11 11:30 Agostino Sarubbo
2020-02-11 10:55 Agostino Sarubbo
2020-02-11  8:43 Agostino Sarubbo
2020-02-07 19:58 Sergei Trofimovich
2020-02-07 12:12 Agostino Sarubbo
2020-02-07 10:52 Agostino Sarubbo
2020-02-07  7:15 Michał Górny
2020-01-26 21:26 William Hubbs
2020-01-24  6:54 Joonas Niilola
2020-01-20 18:15 Ben Kohler
2019-10-05 15:06 Michał Górny
2019-09-30 19:15 Zac Medico
2019-07-12 23:26 William Hubbs
2018-10-30  9:33 Michał Górny
2018-04-28 21:44 Patrice Clement
2018-04-01 21:55 Patrice Clement
2018-03-21  5:55 Markus Meier
2018-03-18 10:40 Sergei Trofimovich
2018-03-11 20:40 Matt Turner
2018-03-05 14:29 Mart Raudsepp
2018-03-04 11:13 Sergei Trofimovich
2018-02-23 23:37 Michał Górny
2018-01-05  9:36 Michał Górny
2017-12-28 14:03 Sergei Trofimovich
2017-12-28 12:29 Sergei Trofimovich
2017-12-06 22:34 Sergei Trofimovich
2017-12-02 20:55 Mike Gilbert
2017-11-30 20:19 Tobias Klausmann
2017-06-15 16:14 Markus Meier
2017-05-15 18:46 Tobias Klausmann
2017-05-03  6:15 Michał Górny
2017-04-22 22:00 Patrice Clement
2015-12-09 15:10 Justin Lecher
2015-11-08 16:06 Justin Lecher
2015-10-27  9:04 Justin Lecher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1448702843.ee8f4e5525debd6f8d1eace480cca62a28b0fb2e.jlec@gentoo \
    --to=jlec@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox