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-perl/Text-BibTeX: Bump to version 0.780.0
- EAPI6 - Add USE="examples" - Parallel Testing enabled Upstream: - Fixes for arrays and s390 support - Fix fileno test Package-Manager: Portage-2.3.3, Repoman-2.3.1
- Loading branch information
1 parent
a321d08
commit acd650e
Showing
2 changed files
with
39 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,3 +1,4 @@ | ||
DIST Text-BibTeX-0.72.tar.gz 286747 SHA256 fc99855298233f677335dfec83172e04d3a008b368380d11bbd5cbf67c92d66d SHA512 6096734901976bf6576720cff601f3209650e9dded09dc08e01a4795dd72f5b51f35137a58598944b55a65c981b27b2d62ba3412fcb8da9222d46b477af84beb WHIRLPOOL bf38b04a9ec6c9170eb25717f9efbe1b0e61ab5b103bdfffea758fe1f6ef43335f1ec419accf41b6a82aaa8af234b93ae1ad79b60e1e02c71eb73bf2f4fd774c | ||
DIST Text-BibTeX-0.76.tar.gz 295593 SHA256 79d6517f7561c155157ea7b60e5e4ead01dc56f612dd9cf2b81f35f444023be7 SHA512 a223f7ecc6c08b17076b515c0eb47f70d78951857f6a2367568c5af5c436eba595de8e3c9acec9c0bc8ca758739ae21a11f616c0c5ebedb5d1858c2d719085e5 WHIRLPOOL b80f2e22499fc785cba7eb561632fb757e8ee98326dbd013ed4981b4d1754c22d0c563679d067a81e46750a15fe46b1f23e5b744de924053e96f88903d04a358 | ||
DIST Text-BibTeX-0.77.tar.gz 295689 SHA256 6459bb9d93ab5520959ce0ebd28cdf34dcf685774e40f377bcc39c3935ea6e4e SHA512 b212560ff9aa87cc23154fa6ccca80c307ae4111b24c8184e65e2332a273936a8e3a3131e5056839e4126790f26ef3ce8170d7e3393a8ea3841c7532319e6ee2 WHIRLPOOL bb8f2dfe603bce476bad09f1ce3b8182fdcd5f4ac68f990f4de860ffa06355a537b1c70f528b195223d00c35d249f6554d63e7609963df9cddbcf883d04ce2d7 | ||
DIST Text-BibTeX-0.78.tar.gz 295794 SHA256 53036462b539ee7401eecb38d8fb78f8c6b724917890aa2a243ab176461adad1 SHA512 b888e2273db40a104a1206462b172587140389aa69eb725db589f137a532b87958182bf31734f873bc5f1dec2f6bedc6ed93c0e40ed82c014a0aff3f573242b5 WHIRLPOOL fb2d4eddefbfc9568e9547e588a688ee4be843522e4b659e58240cddc70e9a38d66a5516af8f9d48fa764f9886cc9cd5630e6da1784c019e9974de7e8def2d19 |
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,38 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI=6 | ||
|
||
DIST_AUTHOR=AMBS | ||
DIST_VERSION=0.78 | ||
DIST_EXAMPLES=( "examples/*" "scripts/*" ) | ||
|
||
inherit perl-module | ||
|
||
DESCRIPTION="A Perl library for reading, parsing, and processing BibTeX files" | ||
|
||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
IUSE="test" | ||
|
||
RDEPEND=" | ||
!dev-libs/btparse | ||
virtual/perl-Encode | ||
virtual/perl-Scalar-List-Utils | ||
virtual/perl-Unicode-Normalize | ||
" | ||
DEPEND="${RDEPEND} | ||
>=dev-perl/Config-AutoConf-0.160.0 | ||
>=dev-perl/ExtUtils-LibBuilder-0.20.0 | ||
>=virtual/perl-ExtUtils-CBuilder-0.270.0 | ||
>=dev-perl/Module-Build-0.360.300 | ||
test? ( | ||
>=dev-perl/Capture-Tiny-0.60.0 | ||
) | ||
" | ||
src_prepare() { | ||
sed -i -e "/#include <stdio.h>/a #include <string.h>"\ | ||
btparse/tests/{tex,purify,postprocess,name,macro}_test.c || die | ||
perl-module_src_prepare | ||
} |