Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/xmldiff/
Date: Sat, 10 Oct 2020 07:23:05
Message-Id: 1602314554.6df4a65fd892c28294a5a1f69267f89dff683452.juippis@gentoo
1 commit: 6df4a65fd892c28294a5a1f69267f89dff683452
2 Author: Andrea Cerisara <andreacerisara <AT> gmail <DOT> com>
3 AuthorDate: Fri Sep 25 22:24:11 2020 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 10 07:22:34 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6df4a65f
7
8 app-text/xmldiff-2.4: version bump
9
10 Signed-off-by: Andrea Cerisara <andreacerisara <AT> gmail.com>
11 Package-Manager: Portage-3.0.4, Repoman-3.0.1
12 Closes: https://github.com/gentoo/gentoo/pull/17669
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 app-text/xmldiff/Manifest | 1 +
16 app-text/xmldiff/xmldiff-2.4.ebuild | 24 ++++++++++++++++++++++++
17 2 files changed, 25 insertions(+)
18
19 diff --git a/app-text/xmldiff/Manifest b/app-text/xmldiff/Manifest
20 index b12d1be5989..5154986e21c 100644
21 --- a/app-text/xmldiff/Manifest
22 +++ b/app-text/xmldiff/Manifest
23 @@ -1 +1,2 @@
24 DIST xmldiff-2.3.tar.gz 92561 BLAKE2B f18805a9aa00a99a3f63640de60d3ea37393208ade00a14b817d42706bb1b3e407f2645d7df5b5e9f4d60d75d48afe6475e5c1f1bab24ea6fdd78d8646c79b58 SHA512 1dc3f76f51df3c506af827c9a7f67386143b4ce49c2159302e07c5f56054ffd9e858f086bb76d64a038b7e9ae7c116d1146714d4528ea9d53e23e1bacb4bb812
25 +DIST xmldiff-2.4.tar.gz 93437 BLAKE2B 9f0001da8e39b7a3e7d0af052ce60a43899b2cd644b3fa6c6cb7cfa08ebf71439bda3e3dc6cf497120f20cb0f9346b0a074b8e442b42531fd3bdbaaebdf73bf6 SHA512 d8a0c9cb850259b3288d8fb5fde50c69f24036bc46ea48f24f3d63c592ccdd2aab4daf416f0f75b38fd70cc58e00c12db626e61a983d1a002972a6720d62c6ae
26
27 diff --git a/app-text/xmldiff/xmldiff-2.4.ebuild b/app-text/xmldiff/xmldiff-2.4.ebuild
28 new file mode 100644
29 index 00000000000..c1261561d3c
30 --- /dev/null
31 +++ b/app-text/xmldiff/xmldiff-2.4.ebuild
32 @@ -0,0 +1,24 @@
33 +# Copyright 1999-2020 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +PYTHON_COMPAT=( python3_{7,8,9} )
39 +
40 +DISTUTILS_USE_SETUPTOOLS="rdepend"
41 +inherit distutils-r1
42 +
43 +DESCRIPTION="A tool that figures out the differences between two similar XML files"
44 +HOMEPAGE="https://github.com/Shoobx/xmldiff"
45 +SRC_URI="https://github.com/Shoobx/xmldiff/archive/${PV}.tar.gz -> ${P}.tar.gz"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-linux"
50 +
51 +RDEPEND="dev-python/lxml[${PYTHON_USEDEP}]
52 + dev-python/six[${PYTHON_USEDEP}]"
53 +
54 +distutils_enable_tests unittest
55 +
56 +DOCS=( CHANGES.rst README.rst )