From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libunibreak/
Date: Sat, 27 May 2023 06:57:03 +0000 (UTC) [thread overview]
Message-ID: <1685170514.6a80623ade0d340d920b5725f9b8b648dfddafa1.sam@gentoo> (raw)
commit: 6a80623ade0d340d920b5725f9b8b648dfddafa1
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat May 27 06:53:43 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat May 27 06:55:14 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a80623a
dev-libs/libunibreak: wire up tests
Signed-off-by: Sam James <sam <AT> gentoo.org>
dev-libs/libunibreak/Manifest | 3 +++
dev-libs/libunibreak/libunibreak-5.1.ebuild | 23 ++++++++++++++++++-----
2 files changed, 21 insertions(+), 5 deletions(-)
diff --git a/dev-libs/libunibreak/Manifest b/dev-libs/libunibreak/Manifest
index 6d9ac523642c..ca51c25ba479 100644
--- a/dev-libs/libunibreak/Manifest
+++ b/dev-libs/libunibreak/Manifest
@@ -1,3 +1,6 @@
DIST libunibreak-4.3.tar.gz 639886 BLAKE2B ec044b659f1a837b4e6627067b96a6f19ee8302602d635e1e32aab9533486b5cd063aa99114c6443ede9d76d3f382d7492eac8b52b84a4baa2ccd9c2129e79d8 SHA512 4b53fd169912033403b6ca09047b7b928211fab3607ef26070ab731054138b9a291f7d138d3a479f9cde8edb0fabf8da114da68aee32e60cddf45cc3baae1170
DIST libunibreak-5.0.tar.gz 664105 BLAKE2B 4755f77da7aeece8e43f121e35124f85afa31740394cecc1a192d0b284d8d683765a6a38898f5ffd8a567e2d65a086fdc25a816a77337f242df7be5c14ae6e98 SHA512 33ce584208fea1f2f22dcc49592a467b0fdc04a8b9ed80c97d7ce2058e8d6c919b4a173c9ec3ca38411ffa497d95d2abe207dfc09866f9fcba125867015cf9fb
DIST libunibreak-5.1.tar.gz 658914 BLAKE2B 005cd37102f4f55616ef0f2273bcb546331f67156c24a003bbb101dc0db091bcb514bffb7cc879f809f6cc71a61674fb722d711d50e55dd8074b01d2d6774d18 SHA512 c7762c0a5212a69de69fde7dcb3281e0d642a27da881337a6b0f71fac84fd097940dc92059d3daaf91dd21ae8b77d835432da058371958d0eb15af30077e2fba
+DIST libunibreak-GraphemeBreakTest.txt 83691 BLAKE2B 5ee2204bd8f4b2bf682f62553832c6f50b542a15b5e8d7d4eda6e35b33d723127a1f5fdb4b8c659ed4c71b5ffa09c5abaf65931116fabe2953193f545efb9a50 SHA512 d619baf8987e7b74c1d6b4b61b25aa7faf17c12b888ffef3f1cab021e668b9767281bdab3161ceaeebaffb758848ae153e01f98801b8a455d86d0d0bcef540ac
+DIST libunibreak-LineBreakTest.txt 1085570 BLAKE2B 306ab92a18e38e021baa887a16e70658afe0ab54458d9f6bfeaeb4b2c4cf4d352025b109f336e7ca65884d354185324fa499590c694297a3aded8aa02edfa56d SHA512 3dfafabd1394d4c31ba7ba11e0eea077fd9260714339959bc82ac8383f74692ece32849a7cd8265387780379bea16e30dd038cd168d118573dede96ce15d578e
+DIST libunibreak-WordBreakTest.txt 297534 BLAKE2B 261e4582feadfda276c404572ddf33b7b91c9803639cae316e1eaa6dfebfaf748116b345838ee08c05e946efea6ec21de3bcf32eb8b69921051dd06bd04d5ce4 SHA512 54a87ffa10a424b690ed226b411aa66ac5e52c6b34e4f361bfc5dfe14f841ff35d76a98691f62f9257b5c2ced0bfb826a55880f64294d271a06fccb52d20e7d3
diff --git a/dev-libs/libunibreak/libunibreak-5.1.ebuild b/dev-libs/libunibreak/libunibreak-5.1.ebuild
index ee39d6ae81d0..c914a23956fc 100644
--- a/dev-libs/libunibreak/libunibreak-5.1.ebuild
+++ b/dev-libs/libunibreak/libunibreak-5.1.ebuild
@@ -6,23 +6,36 @@ EAPI=8
DESCRIPTION="Line and word breaking library"
HOMEPAGE="http://vimgadgets.sourceforge.net/libunibreak/"
SRC_URI="https://github.com/adah1972/${PN}/releases/download/${PN}_$(ver_rs 1- '_')/${P}.tar.gz"
+SRC_URI+="
+ test? (
+ http://www.unicode.org/Public/UNIDATA/auxiliary/LineBreakTest.txt -> ${PN}-LineBreakTest.txt
+ http://www.unicode.org/Public/UNIDATA/auxiliary/WordBreakTest.txt -> ${PN}-WordBreakTest.txt
+ http://www.unicode.org/Public/UNIDATA/auxiliary/GraphemeBreakTest.txt -> ${PN}-GraphemeBreakTest.txt
+ )
+"
LICENSE="ZLIB"
SLOT="0/5"
KEYWORDS="~amd64 ~arm ~ppc ~x86"
-IUSE="doc +man static-libs"
-
-# Tests require internet access to www.unicode.org
-RESTRICT="test"
+IUSE="doc +man static-libs test"
+RESTRICT="!test? ( test )"
BDEPEND="man? ( app-doc/doxygen )"
src_prepare() {
+ default
+
if use man; then
echo 'GENERATE_MAN=YES' >> Doxyfile || die
echo 'GENERATE_HTML=NO' >> Doxyfile || die
fi
- default
+
+ if use test; then
+ local file
+ for file in LineBreakTest.txt WordBreakTest.txt GraphemeBreakTest.txt ; do
+ ln -s "${DISTDIR}"/${PN}-${file} "${S}"/src/${file} || die
+ done
+ fi
}
src_configure() {
next reply other threads:[~2023-05-27 6:57 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-05-27 6:57 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-25 22:39 [gentoo-commits] repo/gentoo:master commit in: dev-libs/libunibreak/ Andreas Sturmlechner
2024-11-23 12:09 Sam James
2024-11-23 12:09 Sam James
2024-10-04 17:37 Andreas Sturmlechner
2024-09-23 13:23 Andrey Grozin
2024-07-14 18:34 Jakov Smolić
2024-07-02 10:47 Andrey Grozin
2024-07-02 9:44 Andrey Grozin
2023-07-21 14:54 Andrey Grozin
2023-07-21 12:35 Arthur Zamarin
2023-07-21 11:26 Arthur Zamarin
2023-05-29 12:04 Andrey Grozin
2023-05-27 6:57 Sam James
2023-05-09 5:57 Andrey Grozin
2021-12-01 15:54 Sam James
2021-11-30 9:57 Andrey Grozin
2021-05-07 6:37 Andrey Grozin
2021-05-06 23:29 Sam James
2021-05-06 21:19 Sam James
2021-05-06 6:19 Andrey Grozin
2021-02-10 4:35 Andrey Grozin
2020-01-31 13:50 Andrey Grozin
2018-11-11 14:29 Andrey Grozin
2018-03-18 20:30 Mikle Kolyada
2018-01-13 8:52 Andrey Grozin
2017-12-14 19:53 Andrey Grozin
2017-12-14 16:34 Andrey Grozin
2017-12-14 12:10 Andreas Hüttel
2017-12-14 9:41 Andrey Grozin
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=1685170514.6a80623ade0d340d920b5725f9b8b648dfddafa1.sam@gentoo \
--to=sam@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