Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/hexcompare/
Date: Wed, 15 Feb 2017 00:17:50
Message-Id: 1487117855.7afcdc2b4aaa7c7bf534a07e009baee24a63a5a2.mrueg@gentoo
1 commit: 7afcdc2b4aaa7c7bf534a07e009baee24a63a5a2
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Wed Feb 15 00:17:10 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Wed Feb 15 00:17:35 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7afcdc2b
7
8 app-misc/hexcompare: Remove old
9
10 Package-Manager: portage-2.3.3
11
12 app-misc/hexcompare/Manifest | 1 -
13 app-misc/hexcompare/hexcompare-1.0.1.ebuild | 38 -----------------------------
14 2 files changed, 39 deletions(-)
15
16 diff --git a/app-misc/hexcompare/Manifest b/app-misc/hexcompare/Manifest
17 index c916b10220..30210d5084 100644
18 --- a/app-misc/hexcompare/Manifest
19 +++ b/app-misc/hexcompare/Manifest
20 @@ -1,2 +1 @@
21 DIST hexcompare-1.0.4.tar.gz 9686 SHA256 a9609b28099d7578228f359a460a06f7fc1ae8cde614ea10e525b88eb04a9451 SHA512 847bf7e26f27aa0ff56e38b3fe95ad7940a0226e0c496963530fa405d8a3a50f8288a4c7f28d48d4cce05e52c1f69180917a7f10da0943cabf977f78b62eb5fe WHIRLPOOL 45925df7b39ccd9f27532f8148b70a106a50958bac0f129bb37b408b3916dbd801713fac790c0326489a4843b300bd0ccd0d55a62c832caefc0b8090fda15d1b
22 -DIST hexcompare-101.tar.gz 8718 SHA256 3aad559a1784aacd315109ebad47ab99364ad8c9ab6410463f3d457d5d7e7e76 SHA512 dacce9eefc37b139347452aaf1698f0f1c9fc9b6bca83487154aab840735cd3a46ddb333b76a268149b99d4ef786123cd1799dfb809c047ada62dd87d8dd5dc2 WHIRLPOOL b0979a4d6f8df3fce4530c9baf1d1dcaca39ed753fc81fe28443e30f43a11e56dcbb31e9519fa428a5bd7e6a3be2462c26056a8e0e8fa0f3e5578c3bd3adccf1
23
24 diff --git a/app-misc/hexcompare/hexcompare-1.0.1.ebuild b/app-misc/hexcompare/hexcompare-1.0.1.ebuild
25 deleted file mode 100644
26 index b05a75e569..0000000000
27 --- a/app-misc/hexcompare/hexcompare-1.0.1.ebuild
28 +++ /dev/null
29 @@ -1,38 +0,0 @@
30 -# Copyright 1999-2010 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=3
35 -
36 -inherit eutils toolchain-funcs versionator
37 -
38 -DESCRIPTION="ncurses-based visual comparison of binary files"
39 -HOMEPAGE="http://hexcompare.sourceforge.net/"
40 -MY_P=${PN}-$(replace_all_version_separators '')
41 -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
42 -
43 -LICENSE="GPL-3"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~x86"
46 -IUSE=""
47 -
48 -DEPEND="sys-libs/ncurses"
49 -RDEPEND="${DEPEND}"
50 -
51 -S=${WORKDIR}/${MY_P}
52 -
53 -src_prepare() {
54 - epatch "${FILESDIR}"/${P}.patch
55 -}
56 -
57 -src_compile() {
58 - $(tc-getCC) \
59 - ${CFLAGS} $(/usr/bin/ncurses5-config --cflags) \
60 - -o ${PN} main.c gui.c \
61 - ${LDFLAGS} $(/usr/bin/ncurses5-config --libs) || die
62 -}
63 -
64 -src_install() {
65 - dobin ${PN} || die
66 - dodoc README || die
67 -}