forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-tex/biblatex: Version bump to 3.7
Package-Manager: Portage-2.3.4, Repoman-2.3.2
- Loading branch information
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST biblatex-3.3.tds.tgz 19277161 SHA256 23caae5a4d4e89c47adf263f67329bc733d9046b0b8fc18aace963b00701d3a0 SHA512 530b2e910c70b2204d3c6cac65324472d92782196234d5b74e672250448e60ca67436e9bcfd7f34bb31aa0490156e5984081f7af959da9941ab4af3ec7857c99 WHIRLPOOL 3ea7e3d8dc0351d03434931d050940ac6107ba554050c206774cecc7c7b563bc18591717407c397777c8990777e8977f624d8e238ac9356af166a5243a7a89a5 | ||
DIST biblatex-3.4.tds.tgz 19279991 SHA256 effbd2526564c9516bfd3cceaf3588e02ddd24b1aac9924c38ad9af78864596c SHA512 9b7c4692f4b98df7bf36f8a90e67720cb4f9dc7e47047e0c181b7e95323dd037ba38bad4c77bbcb5d88b1f366e15b579b5e9410055873a160d7728db9d59ac56 WHIRLPOOL 512a83892f1776195ce5e0850c4ffd09f43776ae3c8b50635cb40e75457a8cb6669bc26d38e71e102ba47fa0dba7ea7d5672ef4b91aa2e9e3cb8244b1296a28d | ||
DIST biblatex-3.7.tds.tgz 19378703 SHA256 78cf833df54f228e5b2a86c0b84dc1b070e965b487460c38e5f1f4cbb725b1f0 SHA512 d81a67b2b29e86e7017919ae1836da7b55da56698fd38f56cfc9377e6c15a8dff6ac28288c6b98a70b570f7db25504f18064093d6e21816c161dba155b6cc8f4 WHIRLPOOL 0c77b9145425d76bc5c9f08f97adfe0ea6565e4c82a27518788d14d553856ea104d32de13bb61024f5589704db2f4963ac0eba27b54635b448a5905a1ef69620 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} |