public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Michał Górny" <mgorny@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tex/biblatex/
Date: Wed,  8 Aug 2018 16:34:02 +0000 (UTC)	[thread overview]
Message-ID: <1533745866.00c9844e2e7f48b060fc8015c03a2aa6802f1e09.mgorny@gentoo> (raw)

commit:     00c9844e2e7f48b060fc8015c03a2aa6802f1e09
Author:     Hendrik v. Raven <hendrik <AT> consetetur <DOT> de>
AuthorDate: Wed Jul 25 18:53:16 2018 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Aug  8 16:31:06 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00c9844e

Revert "dev-tex/biblatex: Remove old"

This reverts commit 7b6cefcd0a3e75e9592d18dac2da98ff3db36809.

dev-tex/biblatex-3.7-r1 is a stabilisation. Due to the coupling to perl
the latest release can not be used

 dev-tex/biblatex/Manifest               |  2 ++
 dev-tex/biblatex/biblatex-3.7-r1.ebuild | 40 +++++++++++++++++++++++++++++++++
 dev-tex/biblatex/biblatex-3.7.ebuild    | 35 +++++++++++++++++++++++++++++
 dev-tex/biblatex/biblatex-3.9.ebuild    | 40 +++++++++++++++++++++++++++++++++
 4 files changed, 117 insertions(+)

diff --git a/dev-tex/biblatex/Manifest b/dev-tex/biblatex/Manifest
index cfdd1d13bfe..56462df3ca5 100644
--- a/dev-tex/biblatex/Manifest
+++ b/dev-tex/biblatex/Manifest
@@ -1,2 +1,4 @@
 DIST biblatex-3.10.tds.tgz 19660675 BLAKE2B f02f5f6b5e35354804a752d29d4670d523bc63a0485239c9b46861e7232cd332c258c22c26d3c95afff0033b0e87867a1129ad62f60b49e2ccdadd644b2b3655 SHA512 0bab1c5923db071b0a625c713716fe7836210637fcb60768f4bec417b06dd599bfcaec765e0e49d21f93d33ef1e9275ff2b21cc1269b64fed1222439a6d0b161
 DIST biblatex-3.4.tds.tgz 19279991 BLAKE2B f387b43f0a3b40dbbeff82bc5523fccf6d3299d09132b884adf718c4fa9bcf11656684d02cbf37382631ecd504f999ebb4d77d59b53a0f9659293b52fb5db1b6 SHA512 9b7c4692f4b98df7bf36f8a90e67720cb4f9dc7e47047e0c181b7e95323dd037ba38bad4c77bbcb5d88b1f366e15b579b5e9410055873a160d7728db9d59ac56
+DIST biblatex-3.7.tds.tgz 19378703 BLAKE2B 1265c73689c803944cfb54ba69918d7076370bb8edd81b9735bb316bd726f33243867e1092b8fb7e339d1614fd0dc05c09b2058d3b29739d7661f0845714f02e SHA512 d81a67b2b29e86e7017919ae1836da7b55da56698fd38f56cfc9377e6c15a8dff6ac28288c6b98a70b570f7db25504f18064093d6e21816c161dba155b6cc8f4
+DIST biblatex-3.9.tds.tgz 19621106 BLAKE2B 1384d34cc62e695351180ee6879f14dacffc451fd28d0bbe678bd656b1403f2ad0c5e2406e433ec28a54a4fcf37dc9ddb38e77f1c364a674d857a98d56467d44 SHA512 b1125f41d50256ee61c085663fe836e3b5b65ac02852168f51164b392dfc9a5b3b54657c9ebeab7c63fca797b61c2d82cc04e563c66e17915e1f14e9e1cdcd41

diff --git a/dev-tex/biblatex/biblatex-3.7-r1.ebuild b/dev-tex/biblatex/biblatex-3.7-r1.ebuild
new file mode 100644
index 00000000000..b7a00917b48
--- /dev/null
+++ b/dev-tex/biblatex/biblatex-3.7-r1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit latex-package
+
+DESCRIPTION="Reimplementation of the bibliographic facilities provided by LaTeX"
+HOMEPAGE="http://www.ctan.org/tex-archive/macros/latex/contrib/biblatex https://github.com/plk/biblatex/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tds.tgz"
+
+LICENSE="LPPL-1.3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="+biber doc examples"
+
+DEPEND="dev-texlive/texlive-bibtexextra
+	dev-texlive/texlive-latexextra
+	|| ( dev-texlive/texlive-plaingeneric dev-texlive/texlive-genericextra )"
+RDEPEND="${DEPEND}"
+PDEPEND="biber? ( ~dev-tex/biber-2.7 )"
+
+S="${WORKDIR}"
+TEXMF=/usr/share/texmf-site
+
+src_install() {
+	insinto "${TEXMF}"
+	doins -r bibtex tex
+
+	dodoc doc/latex/biblatex/{README,CHANGES.org}
+	if use doc ; then
+		pushd doc || die
+		latex-package_src_doinstall doc
+		popd || die
+	fi
+
+	if use examples ; then
+		dodoc -r doc/latex/biblatex/examples
+	fi
+}

diff --git a/dev-tex/biblatex/biblatex-3.7.ebuild b/dev-tex/biblatex/biblatex-3.7.ebuild
new file mode 100644
index 00000000000..b84f4fb003a
--- /dev/null
+++ b/dev-tex/biblatex/biblatex-3.7.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit latex-package
+
+DESCRIPTION="Reimplementation of the bibliographic facilities provided by LaTeX"
+HOMEPAGE="http://www.ctan.org/tex-archive/macros/latex/contrib/biblatex https://github.com/plk/biblatex/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tds.tgz"
+
+LICENSE="LPPL-1.3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="doc examples"
+
+RDEPEND="dev-texlive/texlive-bibtexextra
+	dev-texlive/texlive-latexextra
+	dev-texlive/texlive-genericextra"
+DEPEND="${RDEPEND}"
+
+S=${WORKDIR}
+TEXMF=/usr/share/texmf-site
+
+src_install() {
+	insinto "${TEXMF}"
+	doins -r bibtex tex
+
+	dodoc doc/latex/biblatex/{README,CHANGES.org}
+	use doc && { pushd doc/ ; latex-package_src_doinstall doc ; popd ; }
+	if use examples ; then
+		docinto examples
+		dodoc -r doc/latex/biblatex/examples
+	fi
+}

diff --git a/dev-tex/biblatex/biblatex-3.9.ebuild b/dev-tex/biblatex/biblatex-3.9.ebuild
new file mode 100644
index 00000000000..8e15634045c
--- /dev/null
+++ b/dev-tex/biblatex/biblatex-3.9.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit latex-package
+
+DESCRIPTION="Reimplementation of the bibliographic facilities provided by LaTeX"
+HOMEPAGE="http://www.ctan.org/tex-archive/macros/latex/contrib/biblatex https://github.com/plk/biblatex/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tds.tgz"
+
+LICENSE="LPPL-1.3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="+biber doc examples"
+
+DEPEND="dev-texlive/texlive-bibtexextra
+	dev-texlive/texlive-latexextra
+	|| ( dev-texlive/texlive-plaingeneric dev-texlive/texlive-genericextra )"
+RDEPEND="${DEPEND}"
+PDEPEND="biber? ( ~dev-tex/biber-2.9 )"
+
+S="${WORKDIR}"
+TEXMF=/usr/share/texmf-site
+
+src_install() {
+	insinto "${TEXMF}"
+	doins -r bibtex tex
+
+	dodoc doc/latex/biblatex/{README,CHANGES.md}
+	if use doc ; then
+		pushd doc || die
+		latex-package_src_doinstall doc
+		popd || die
+	fi
+
+	if use examples ; then
+		dodoc -r doc/latex/biblatex/examples
+	fi
+}


             reply	other threads:[~2018-08-09  2:00 UTC|newest]

Thread overview: 48+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-08 16:34 Michał Górny [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-07-11  2:40 [gentoo-commits] repo/gentoo:master commit in: dev-tex/biblatex/ Ionen Wolkens
2024-06-23 17:47 Arthur Zamarin
2024-06-14 18:05 Sam James
2024-06-14 14:42 Arthur Zamarin
2024-05-26  6:06 Arthur Zamarin
2021-10-26  1:21 Yixun Lan
2021-05-04 22:24 Sam James
2021-05-02 22:06 Sergei Trofimovich
2021-03-09 22:03 Andreas K. Hüttel
2020-12-21 20:08 Sam James
2020-12-19 19:36 Sam James
2020-05-04 14:11 Joonas Niilola
2020-01-19 16:37 Mikle Kolyada
2019-09-27 19:19 Mikle Kolyada
2019-07-26 12:02 Mikle Kolyada
2019-02-10 23:11 Patrice Clement
2019-02-10 23:11 Patrice Clement
2019-01-02 10:10 Mikle Kolyada
2018-08-08 16:34 Michał Górny
2018-08-08 16:34 Michał Górny
2018-07-21 12:25 Alexis Ballier
2018-07-21 12:25 Alexis Ballier
2018-04-02 18:06 Mart Raudsepp
2018-02-04 23:41 Patrice Clement
2018-01-08 23:57 Thomas Deutschmann
2018-01-08 23:57 Thomas Deutschmann
2017-11-30 14:47 Patrice Clement
2017-11-30 14:47 Patrice Clement
2017-11-11 16:49 Jonas Stein
2017-06-15 16:27 Markus Meier
2017-06-12  9:40 Michał Górny
2017-05-30  8:02 Alexis Ballier
2017-05-15  9:09 Michał Górny
2017-05-07 11:05 Mikle Kolyada
2017-04-28 21:23 Manuel Rüger
2017-03-16 19:45 Manuel Rüger
2017-03-16 19:45 Manuel Rüger
2016-09-26 19:52 Manuel Rüger
2016-09-26 19:51 Manuel Rüger
2016-05-24 15:20 Amy Winston
2016-05-20 19:57 Manuel Rüger
2016-03-13 12:51 Manuel Rüger
2016-03-03 23:13 Manuel Rüger
2016-01-23 18:17 Manuel Rüger
2015-12-22 20:34 Manuel Rüger
2015-10-28 21:11 Manuel Rüger
2015-10-28 18:38 Manuel Rüger

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=1533745866.00c9844e2e7f48b060fc8015c03a2aa6802f1e09.mgorny@gentoo \
    --to=mgorny@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