Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/integrit/
Date: Wed, 17 Aug 2022 13:01:12
Message-Id: 1660741242.79f398ef65b892095565dc35227656601a019fbe.asturm@gentoo
1 commit: 79f398ef65b892095565dc35227656601a019fbe
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 16 20:30:21 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 17 13:00:42 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79f398ef
7
8 app-admin/integrit: drop 4.1-r1, EAPI-6--
9
10 Closes: https://bugs.gentoo.org/829886
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-admin/integrit/Manifest | 1 -
14 app-admin/integrit/integrit-4.1-r1.ebuild | 65 -------------------------------
15 2 files changed, 66 deletions(-)
16
17 diff --git a/app-admin/integrit/Manifest b/app-admin/integrit/Manifest
18 index 714f653f7556..646ab2e0f777 100644
19 --- a/app-admin/integrit/Manifest
20 +++ b/app-admin/integrit/Manifest
21 @@ -1,2 +1 @@
22 -DIST integrit-4.1.tar.gz 271626 BLAKE2B 538a34c8e5c00e1be66ba35095be4d61402372ea7fd9ba9bfff9149c9a82c43d625ffb345fe84b7561100b31f2a2a1ba319e8b9a7d2b78e44a81d1ed6ae64f3a SHA512 599ae66a193fd87971994f59422e148e1ae01a5ff0fea93a0f2555c972f5254f0213116950766e72c87a57b1bd490f04afd3e0557d25a366c41dbbacc80b6842
23 DIST integrit-4.2_rc1.tar.gz 223627 BLAKE2B ff0dead8a8903dba0f43c7746672ca2d57aced352df2fef7b195fc90e9b38e77bb21affb40c424c5d23df7dcecf3192c1bff5c7c04d3fcbc5dad0dae60565f93 SHA512 2a86a37c684ca0b78bbf7901c8e72511f1169e8af7e9b4efdeadbade52e8fc7302167f6d82bd02b5af9688a05d13fc56d4f5474e3e04d1aef3dd9f72d782d739
24
25 diff --git a/app-admin/integrit/integrit-4.1-r1.ebuild b/app-admin/integrit/integrit-4.1-r1.ebuild
26 deleted file mode 100644
27 index bac0fe23c099..000000000000
28 --- a/app-admin/integrit/integrit-4.1-r1.ebuild
29 +++ /dev/null
30 @@ -1,65 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit autotools
37 -
38 -DESCRIPTION="file integrity verification program"
39 -HOMEPAGE="http://integrit.sourceforge.net/"
40 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="GPL-2"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ppc x86"
45 -IUSE=""
46 -
47 -PATCHES=( "${FILESDIR}"/${PN}-4.1-fix-build-system.patch )
48 -
49 -src_prepare() {
50 - default
51 - mv configure.{in,ac} || die
52 - mv hashtbl/configure.{in,ac} || die
53 -
54 - # tests are not executable
55 - chmod +x test/test || die
56 -
57 - eautoreconf
58 -}
59 -
60 -src_compile() {
61 - emake
62 - emake utils
63 -
64 - emake -C doc
65 - emake -C hashtbl hashtest
66 -}
67 -
68 -src_install() {
69 - dosbin integrit
70 - dolib.a libintegrit.a
71 - dodoc Changes HACKING README todo.txt
72 -
73 - # utils
74 - dosbin utils/i-viewdb
75 - dobin utils/i-ls
76 -
77 - # hashtbl
78 - dolib.a hashtbl/libhashtbl.a
79 - doheader hashtbl/hashtbl.h
80 - dobin hashtbl/hashtest
81 - newdoc hashtbl/README README.hashtbl
82 -
83 - # doc
84 - doman doc/{i-ls.1,i-viewdb.1,integrit.1}
85 - doinfo doc/integrit.info
86 -
87 - # examples
88 - dodoc -r examples
89 -}
90 -
91 -pkg_postinst() {
92 - elog "It is recommended that the integrit binary is copied to a secure"
93 - elog "location and re-copied at runtime or run from a secure medium."
94 - elog "You should also create a configuration file (see examples)."
95 -}