From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D7145138334 for ; Mon, 17 Jun 2019 13:28:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C7128E0825; Mon, 17 Jun 2019 13:28:45 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AAAC2E0825 for ; Mon, 17 Jun 2019 13:28:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B978B346308 for ; Mon, 17 Jun 2019 13:28:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C5B2B326 for ; Mon, 17 Jun 2019 13:28:41 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1560778103.46c3c10815f5a3cc307d8e37b9522b91138f699e.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/comparator/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/comparator/Manifest dev-util/comparator/comparator-2.12.ebuild X-VCS-Directories: dev-util/comparator/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 46c3c10815f5a3cc307d8e37b9522b91138f699e X-VCS-Branch: master Date: Mon, 17 Jun 2019 13:28:41 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: cca80bee-c76d-4d6a-93c7-5fdc875ce4be X-Archives-Hash: d09ff43168f9508549eef9355a1a230e commit: 46c3c10815f5a3cc307d8e37b9522b91138f699e Author: Anthony G. Basile gentoo org> AuthorDate: Mon Jun 17 13:28:23 2019 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Mon Jun 17 13:28:23 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46c3c108 dev-util/comparator: version bump to 2.12 Signed-off-by: Anthony G. Basile gentoo.org> Package-Manager: Portage-2.3.66, Repoman-2.3.11 dev-util/comparator/Manifest | 1 + dev-util/comparator/comparator-2.12.ebuild | 40 ++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/dev-util/comparator/Manifest b/dev-util/comparator/Manifest index 0f6495ea304..ad796329640 100644 --- a/dev-util/comparator/Manifest +++ b/dev-util/comparator/Manifest @@ -1 +1,2 @@ DIST comparator-2.10.tar.gz 1463175 BLAKE2B 58d6bddc5f785de3768ed2c4845b75af03c1fd7f646fc15efaeec09878a72355c46c64f67866217994797193aaba6d4214685c7be89be9872620dce5930238e8 SHA512 b880f7a4a0fbfad44c53606c6d97509305d8485f0ab76b62bb0d1d1d6d4be9fb81e7a08326e78cabd1a9314e6efbf3a966eb6393e424f59dc657975a63ce2988 +DIST comparator-2.12.tar.gz 1463333 BLAKE2B 081251a0a3cb2f99d5b74092a46a868741049d27c367fc9bc3445d35fe01eaaaee75f7afd3674ecdc2569c2ac1ef2d5acd838a546aa307b33c977c4c8a91db12 SHA512 dc5acf3d5900e293e3f0188c0809bc99f2f18edb55df882b2e12e66bc655e7faf030b8daffdd2d175234b398e6a8c125ca6af615933c998651d7f1579734b080 diff --git a/dev-util/comparator/comparator-2.12.ebuild b/dev-util/comparator/comparator-2.12.ebuild new file mode 100644 index 00000000000..bbbbe0a4134 --- /dev/null +++ b/dev-util/comparator/comparator-2.12.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" +PYTHON_COMPAT=( python{2_7,3_6,3_7} ) + +inherit distutils-r1 toolchain-funcs + +DESCRIPTION="ESR's utility for making fast comparisons among large source trees" +HOMEPAGE="http://www.catb.org/~esr/comparator/" +SRC_URI="http://www.catb.org/~esr/comparator/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +RDEPEND="" +DEPEND="=app-text/docbook-xml-dtd-4.1.2* + app-text/xmlto" + +src_prepare() { + sed \ + -e '/python setup.py install/d' \ + -i Makefile || die "sed failed" + eapply_user +} + +src_compile() { + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" + emake comparator.html scf-standard.html + distutils-r1_src_compile +} + +src_install() { + emake ROOT="${D}" install + distutils-r1_src_install + docinto html + dodoc *.html +}