diff options
author | 2024-06-09 00:24:21 +0200 | |
---|---|---|
committer | 2024-06-09 00:24:21 +0200 | |
commit | 53b36c3ef9ddef77a009d1a2b7b65d51c23ee842 (patch) | |
tree | 9abe48a5ae9328cb2024824345956eef5ef7cf95 /dev-util/ydiff | |
parent | app-cdr/isomaster: 1.3.17 + EAPI 8 (diff) | |
download | gentoo-53b36c3ef9ddef77a009d1a2b7b65d51c23ee842.tar.gz gentoo-53b36c3ef9ddef77a009d1a2b7b65d51c23ee842.tar.bz2 gentoo-53b36c3ef9ddef77a009d1a2b7b65d51c23ee842.zip |
dev-util/ydiff: 1.3
Signed-off-by: Sebastian Pipping <sping@gentoo.org>
Diffstat (limited to 'dev-util/ydiff')
-rw-r--r-- | dev-util/ydiff/Manifest | 1 | ||||
-rw-r--r-- | dev-util/ydiff/ydiff-1.3.ebuild | 28 |
2 files changed, 29 insertions, 0 deletions
diff --git a/dev-util/ydiff/Manifest b/dev-util/ydiff/Manifest index b7a42ee49c96..7cb3dcdc54d7 100644 --- a/dev-util/ydiff/Manifest +++ b/dev-util/ydiff/Manifest @@ -1 +1,2 @@ DIST ydiff-1.2.tar.gz 42808 BLAKE2B 927482c2ed9a96efc354178679b4ba50497289bc31107e8cdef3062a71d91268fa703620f1f4b0be03aebaf339eba5254f4b43c16403f1d7818b84b0c450defb SHA512 0eb2230b64f43e20f6dc2411296389dc99356ef626152dc7f234583f70678e64a07b764fd89635479e7ac4aa7e2490db6e76c744369eefef8ab6a5386db1a7b5 +DIST ydiff-1.3.tar.gz 74115 BLAKE2B 5cc0a4405148940772000e13a0f2d955c8fdbe63890cdd912b78a808dd231c7682de2fa81d5cf7ec7442dc47b2ae0fa5430dbd40ed39c636fdf43a288e8b41aa SHA512 ac9f4ce3383903275e0f71295009098aaca6a38449489bff70026a8090863b2f3b2c566908602c145473b72edf491d0ce2ce75802e397db2e04b10a158b35c99 diff --git a/dev-util/ydiff/ydiff-1.3.ebuild b/dev-util/ydiff/ydiff-1.3.ebuild new file mode 100644 index 000000000000..7259e05a9e68 --- /dev/null +++ b/dev-util/ydiff/ydiff-1.3.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{9..12} ) +DISTUTILS_USE_PEP517=setuptools + +inherit distutils-r1 pypi + +DESCRIPTION="Colored, side-by-side diff terminal viewer (ex. cdiff)" +HOMEPAGE="https://github.com/ymattw/ydiff" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +RDEPEND="sys-apps/less" + +DOCS=( CHANGES.rst README.rst ) + +RESTRICT="test" + +python_test() { + ${PYTHON} tests/test_ydiff.py || die "Unit tests failed." + + ./tests/regression.sh || die "Regression tests failed." +} |