Gentoo Archives: gentoo-commits

From: "José María Alonso" <nimiux@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
Date: Sun, 01 Apr 2018 20:39:24
Message-Id: 1522615148.4c34407c4ad0a9d2e6fd0ee8b3623840f74b21a4.nimiux@gentoo
1 commit: 4c34407c4ad0a9d2e6fd0ee8b3623840f74b21a4
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 1 20:37:35 2018 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 1 20:39:08 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c34407c
7
8 app-admin/tripwire: Drops old version 2.4.3.5
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11
12 app-admin/tripwire/Manifest | 1 -
13 app-admin/tripwire/tripwire-2.4.3.5.ebuild | 79 ------------------------------
14 2 files changed, 80 deletions(-)
15
16 diff --git a/app-admin/tripwire/Manifest b/app-admin/tripwire/Manifest
17 index 2d57d8313fa..04d0b74b115 100644
18 --- a/app-admin/tripwire/Manifest
19 +++ b/app-admin/tripwire/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST tripwire-2.4.3.5.tar.gz 965014 BLAKE2B 4eeec002c7c99fdb83bfb9f9ff19b552f8bfab007b6d2e13a8fabcd0f3c21e32a5a04310c4ab55e0aa8281350f0118939dec156cbb2b903407c4fb5fc3da762e SHA512 7aef0e7d38f4b6966a806a4e556636c7b2477f4ea5451e89f1749c1535a489c2f490ea13898edff5d7786acf572f77d04430115b8ddd4c6a03c38382feb45269
22 DIST tripwire-2.4.3.6.tar.gz 1001145 BLAKE2B aa1392d29d782266e26f605c621def8cffb67112db9151b3f098211f4243a671e5f7fc15ab5868c35794a8dbac2284f564815874aafb2b9323fd1191edb249db SHA512 4757827b908fd56a014de81609be9cfdf3631d34cbc02214ac800bf6d9c413d85d812bc3211f9dc32ceee97e1f13decd955037a0cbbaf2f8e3020699492bd9bf
23 DIST tripwire-2.4.3.7.tar.gz 1002257 BLAKE2B fb0c847087e8b27d2a111b4a4122b3c4d5b187efe6f80995c6d06c7592a22fec2c537bbebba9c21a7761a8047535de4a96a6b94246da586faad4e9fc92137196 SHA512 541138f4a4c3a4227f31de6607503d305f0d893bdd5d24928d619d3a25bb8fe7061a45c041992ace957b976b834b5f4212b5c727eee1cbc76ddb2e2c52aeafbd
24
25 diff --git a/app-admin/tripwire/tripwire-2.4.3.5.ebuild b/app-admin/tripwire/tripwire-2.4.3.5.ebuild
26 deleted file mode 100644
27 index 58e3201aa75..00000000000
28 --- a/app-admin/tripwire/tripwire-2.4.3.5.ebuild
29 +++ /dev/null
30 @@ -1,79 +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 eutils flag-o-matic
37 -
38 -DESCRIPTION="Open Source File Integrity Checker and IDS"
39 -HOMEPAGE="http://www.tripwire.org/"
40 -SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -> ${PF}.tar.gz"
41 -
42 -LICENSE="GPL-2"
43 -SLOT="0"
44 -KEYWORDS="amd64 ppc x86 ~x86-fbsd"
45 -IUSE="libressl selinux ssl static +tools"
46 -
47 -DEPEND="sys-devel/automake
48 - sys-devel/autoconf
49 - ssl? (
50 - !libressl? ( dev-libs/openssl:0= )
51 - libressl? ( dev-libs/libressl:0= )
52 - )"
53 -RDEPEND="virtual/cron
54 - virtual/mta
55 - selinux? ( sec-policy/selinux-tripwire )
56 - ssl? ( dev-libs/openssl )"
57 -PDEPEND="tools? ( app-admin/mktwpol )"
58 -
59 -S="${WORKDIR}/tripwire-open-source-${PV}"
60 -
61 -src_prepare() {
62 - default
63 - eautoreconf
64 -}
65 -
66 -src_configure() {
67 - # tripwire can be sensitive to compiler optimisation.
68 - # see #32613, #45823, and others.
69 - # -taviso@g.o
70 - strip-flags
71 - append-cppflags -DCONFIG_DIR='"\"/etc/tripwire\""' -fno-strict-aliasing
72 - econf $(use_enable ssl openssl) $(use_enable static)
73 -}
74 -
75 -src_install() {
76 - dosbin "${S}"/bin/{siggen,tripwire,twadmin,twprint}
77 - doman "${S}"/man/man{4/*.4,5/*.5,8/*.8}
78 - dodir /etc/tripwire /var/lib/tripwire{,/report}
79 - keepdir /var/lib/tripwire{,/report}
80 -
81 - exeinto /etc/cron.daily
82 - doexe "${FILESDIR}"/tripwire
83 -
84 - dodoc ChangeLog policy/policyguide.txt TRADEMARK \
85 - "${FILESDIR}"/tripwire.txt
86 -
87 - insinto /etc/tripwire
88 - doins "${FILESDIR}"/twcfg.txt policy/twpol-GENERIC.txt
89 -
90 - fperms 750 /etc/cron.daily/tripwire
91 -}
92 -
93 -pkg_postinst() {
94 - if [[ -z ${REPLACING_VERSIONS} ]] ; then
95 - elog "Tripwire needs to be configured before its first run. You can"
96 - elog "do this by manually editing the twpol-GENERIC.txt file shipped with"
97 - elog "the package to suit your needs. A quickstart guide is provided"
98 - elog "in tripwire.txt file to help you with this."
99 - elog "To configure tripwire automatically, you can use the twsetup.sh"
100 - elog "script provided by the app-admin/mktwpol package. This package is"
101 - elog "installed for you by the \"tools\" USE flag (which is enabled by"
102 - elog "default."
103 -else
104 - elog "Maintenance of tripwire policy files as packages are added"
105 - elog "and deleted from your system can be automated by the mktwpol.sh"
106 - elog "script provided by the app-admin/mktwpol package. This package"
107 - elog "is installed for you if you append \"tools\" to your USE flags"
108 - fi
109 -}