summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2015-03-23 15:10:46 +0000
committerJustin Lecher <jlec@gentoo.org>2015-03-23 15:10:46 +0000
commitcbfb87fa4d161cedfd3d9823b0c59966759d6520 (patch)
tree3ae65ba7e3b98b5f30b6a7f32aaaaea003fb4a97 /dev-tex
parentrm duplicate title DESCRIPTION (diff)
downloadgentoo-2-cbfb87fa4d161cedfd3d9823b0c59966759d6520.tar.gz
gentoo-2-cbfb87fa4d161cedfd3d9823b0c59966759d6520.tar.bz2
gentoo-2-cbfb87fa4d161cedfd3d9823b0c59966759d6520.zip
Version BUmp, bug #539466
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'dev-tex')
-rw-r--r--dev-tex/minted/ChangeLog10
-rw-r--r--dev-tex/minted/minted-2.0.ebuild28
2 files changed, 35 insertions, 3 deletions
diff --git a/dev-tex/minted/ChangeLog b/dev-tex/minted/ChangeLog
index 6bb1f0b3ef6e..08b12615ae73 100644
--- a/dev-tex/minted/ChangeLog
+++ b/dev-tex/minted/ChangeLog
@@ -1,10 +1,14 @@
# ChangeLog for dev-tex/minted
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-tex/minted/ChangeLog,v 1.2 2013/01/11 14:42:24 jlec Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/minted/ChangeLog,v 1.3 2015/03/23 15:10:46 jlec Exp $
+
+*minted-2.0 (23 Mar 2015)
+
+ 23 Mar 2015; Justin Lecher <jlec@gentoo.org> +minted-2.0.ebuild:
+ Version BUmp, bug #539466
*minted-1.7 (11 Jan 2013)
11 Jan 2013; Justin Lecher <jlec@gentoo.org> +minted-1.7.ebuild,
+metadata.xml:
New addition, #312603; prepared by José Romildo Malaquias
-
diff --git a/dev-tex/minted/minted-2.0.ebuild b/dev-tex/minted/minted-2.0.ebuild
new file mode 100644
index 000000000000..8400f5c3b621
--- /dev/null
+++ b/dev-tex/minted/minted-2.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-tex/minted/minted-2.0.ebuild,v 1.1 2015/03/23 15:10:46 jlec Exp $
+
+EAPI=5
+
+inherit latex-package
+
+DESCRIPTION="LaTeX package that facilitates expressive syntax highlighting in using the powerful Pygments library"
+HOMEPAGE="https://github.com/gpoore/minted"
+SRC_URI="https://github.com/gpoore/minted/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+SLOT="0"
+LICENSE="BSD"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+DEPEND="app-arch/unzip"
+RDEPEND="
+ dev-texlive/texlive-latexextra
+ dev-python/pygments"
+
+S="${WORKDIR}"/${P}/source
+
+src_install() {
+ latex-package_src_install
+ dodoc "${S}"/../*md
+}