* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2015-12-26 1:14 Anthony G. Basile
0 siblings, 0 replies; 34+ messages in thread
From: Anthony G. Basile @ 2015-12-26 1:14 UTC (permalink / raw
To: gentoo-commits
commit: 6c01df4c7a902271246dd2dd521044029d2cbd13
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 26 01:21:06 2015 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sat Dec 26 01:21:06 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c01df4c
app-admin/tripwire: add libressl support
Package-Manager: portage-2.2.24
app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild | 85 +++++++++++++++++++++++++++
1 file changed, 85 insertions(+)
diff --git a/app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild b/app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild
new file mode 100644
index 0000000..7345b9c
--- /dev/null
+++ b/app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools eutils flag-o-matic
+
+DESCRIPTION="Open Source File Integrity Checker and IDS"
+HOMEPAGE="http://www.tripwire.org/"
+SRC_URI="mirror://sourceforge/tripwire/tripwire-${PV}-src.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+IUSE="libressl ssl static +tools"
+
+DEPEND="sys-devel/automake
+ sys-devel/autoconf
+ ssl? (
+ !libressl? ( dev-libs/openssl:0 )
+ libressl? ( dev-libs/libressl )
+ )"
+RDEPEND="virtual/cron
+ virtual/mta
+ ssl? ( dev-libs/openssl )"
+PDEPEND="tools? ( app-admin/mktwpol )"
+
+S="${WORKDIR}"/tripwire-"${PV}"-src
+
+src_prepare() {
+ epatch "${FILESDIR}"/"${P}"-fix-configure.patch
+ epatch "${FILESDIR}"/"${P}"-buildnum.patch
+ epatch "${FILESDIR}"/"${P}"-gcc-4.7.patch
+ epatch "${FILESDIR}"/"${PN}"-twpol-GENERIC.patch
+ epatch "${FILESDIR}"/"${P}"-exception-shadowing.patch
+
+ mv configure.in configure.ac || die
+ eautoreconf
+}
+
+src_configure() {
+ # tripwire can be sensitive to compiler optimisation.
+ # see #32613, #45823, and others.
+ # -taviso@gentoo.org
+ strip-flags
+ append-cppflags -DCONFIG_DIR='"\"/etc/tripwire\""' -fno-strict-aliasing
+ econf $(use_enable ssl openssl) $(use_enable static)
+}
+
+src_install() {
+ dosbin "${S}"/bin/{siggen,tripwire,twadmin,twprint}
+ doman "${S}"/man/man{4/*.4,5/*.5,8/*.8}
+ dodir /etc/tripwire /var/lib/tripwire{,/report}
+ keepdir /var/lib/tripwire{,/report}
+
+ exeinto /etc/cron.daily
+ doexe "${FILESDIR}"/tripwire
+
+ dodoc ChangeLog policy/policyguide.txt TRADEMARK \
+ "${FILESDIR}"/tripwire.txt
+
+ insinto /etc/tripwire
+ doins "${FILESDIR}"/twcfg.txt policy/twpol-GENERIC.txt
+
+ fperms 750 /etc/cron.daily/tripwire
+}
+
+pkg_postinst() {
+ if [[ -z ${REPLACING_VERSIONS} ]] ; then
+ elog "Tripwire needs to be configured before its first run. You can"
+ elog "do this by manually editing the twpol-GENERIC.txt file shipped with"
+ elog "the package to suit your needs. A quickstart guide is provided"
+ elog "in tripwire.txt file to help you with this."
+ elog "To configure tripwire automatically, you can use the twsetup.sh"
+ elog "script provided by the app-admin/mktwpol package. This package is"
+ elog "installed for you by the \"tools\" USE flag (which is enabled by"
+ elog "default."
+else
+ elog "Maintenance of tripwire policy files as packages are added"
+ elog "and deleted from your system can be automated by the mktwpol.sh"
+ elog "script provided by the app-admin/mktwpol package. This package"
+ elog "is installed for you if you append \"tools\" to your USE flags"
+ fi
+}
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2016-01-25 15:44 Agostino Sarubbo
0 siblings, 0 replies; 34+ messages in thread
From: Agostino Sarubbo @ 2016-01-25 15:44 UTC (permalink / raw
To: gentoo-commits
commit: b253e8397825850f1ab5677e2efe991faa1f63c8
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 25 15:44:11 2016 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Jan 25 15:44:11 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b253e839
app-admin/tripwire: amd64 stable wrt bug #572852
Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild b/app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild
index 7345b9c..e32938d 100644
--- a/app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild
+++ b/app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/tripwire/tripwire-${PV}-src.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ppc ~x86 ~x86-fbsd"
IUSE="libressl ssl static +tools"
DEPEND="sys-devel/automake
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2016-03-21 21:31 Anthony G. Basile
0 siblings, 0 replies; 34+ messages in thread
From: Anthony G. Basile @ 2016-03-21 21:31 UTC (permalink / raw
To: gentoo-commits
commit: 531e564ad455ba55d4c8857ee78be826df16f92a
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 21 21:31:26 2016 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Mon Mar 21 21:31:26 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=531e564a
app-admin/tripwire: fix openssl and libressl slots
Package-Manager: portage-2.2.26
app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild b/app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild
index 2d7da69..d8e135a 100644
--- a/app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild
+++ b/app-admin/tripwire/tripwire-2.4.2.2-r4.ebuild
@@ -18,8 +18,8 @@ IUSE="libressl ssl static +tools"
DEPEND="sys-devel/automake
sys-devel/autoconf
ssl? (
- !libressl? ( dev-libs/openssl:0 )
- libressl? ( dev-libs/libressl )
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
)"
RDEPEND="virtual/cron
virtual/mta
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2016-05-03 10:50 José María Alonso
0 siblings, 0 replies; 34+ messages in thread
From: José María Alonso @ 2016-05-03 10:50 UTC (permalink / raw
To: gentoo-commits
commit: bd8d12fe900116d98316fec375396712bdac6dc5
Author: José María Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Tue May 3 10:53:39 2016 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Tue May 3 10:54:12 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd8d12fe
app-admin/tripwire: Bump to version 2.4.3.1.
Package-Manager: portage-2.2.26
app-admin/tripwire/Manifest | 1 +
app-admin/tripwire/tripwire-2.4.3.1.ebuild | 79 ++++++++++++++++++++++++++++++
2 files changed, 80 insertions(+)
diff --git a/app-admin/tripwire/Manifest b/app-admin/tripwire/Manifest
index 33124b9..12ae58c 100644
--- a/app-admin/tripwire/Manifest
+++ b/app-admin/tripwire/Manifest
@@ -1 +1,2 @@
DIST tripwire-2.4.2.2-src.tar.bz2 716616 SHA256 e09a7bdca9302e704cc62067399e0b584488f825b0e58c82ad6d54cd2e899fad SHA512 be39757aac7b74d4deac6c5048d0964d839a32f8f2a0d1878c4246888c4d59e35a503413595178c7af3a0da80725d0b36c21026dc734e1f760c9affda017bbbb WHIRLPOOL beb99e1ae055947a4b94a45f51492bcc453def5a41188f853ff3285a85ef8e2921274b86b095b77dbcdc8f549358f6216996a75ba391247e17bf7a29c78849c5
+DIST tripwire-2.4.3.1.tar.gz 932665 SHA256 9744af4de7ecb1d643442eb22f08c819556494bb6f56f5879e22c3438f2db896 SHA512 fb5f0ad353da826a0e8381e534e0da1ac9335851e108a23053e378afd3aec6e66931446addbf0ba8d55eaa8d3148c471056e26095aeff7696ed9b6d3633cdf90 WHIRLPOOL b87447869d845be840399389a3e3ed5f9c961f6777c1b463755994876b191e08cca359273826466d34f2f32a26b597f23d130f6cb689224ed3ff58810efceed1
diff --git a/app-admin/tripwire/tripwire-2.4.3.1.ebuild b/app-admin/tripwire/tripwire-2.4.3.1.ebuild
new file mode 100644
index 0000000..5bbf2a1
--- /dev/null
+++ b/app-admin/tripwire/tripwire-2.4.3.1.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit autotools eutils flag-o-matic
+
+DESCRIPTION="Open Source File Integrity Checker and IDS"
+HOMEPAGE="http://www.tripwire.org/"
+SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -> ${PF}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+IUSE="libressl ssl static +tools"
+
+DEPEND="sys-devel/automake
+ sys-devel/autoconf
+ ssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )"
+RDEPEND="virtual/cron
+ virtual/mta
+ ssl? ( dev-libs/openssl )"
+PDEPEND="tools? ( app-admin/mktwpol )"
+
+S="${WORKDIR}/tripwire-open-source-${PV}"
+
+src_prepare() {
+ mv configure.in configure.ac || die
+ eautoreconf
+}
+
+src_configure() {
+ # tripwire can be sensitive to compiler optimisation.
+ # see #32613, #45823, and others.
+ # -taviso@gentoo.org
+ strip-flags
+ append-cppflags -DCONFIG_DIR='"\"/etc/tripwire\""' -fno-strict-aliasing
+ econf $(use_enable ssl openssl) $(use_enable static)
+}
+
+src_install() {
+ dosbin "${S}"/bin/{siggen,tripwire,twadmin,twprint}
+ doman "${S}"/man/man{4/*.4,5/*.5,8/*.8}
+ dodir /etc/tripwire /var/lib/tripwire{,/report}
+ keepdir /var/lib/tripwire{,/report}
+
+ exeinto /etc/cron.daily
+ doexe "${FILESDIR}"/tripwire
+
+ dodoc ChangeLog policy/policyguide.txt TRADEMARK \
+ "${FILESDIR}"/tripwire.txt
+
+ insinto /etc/tripwire
+ doins "${FILESDIR}"/twcfg.txt policy/twpol-GENERIC.txt
+
+ fperms 750 /etc/cron.daily/tripwire
+}
+
+pkg_postinst() {
+ if [[ -z ${REPLACING_VERSIONS} ]] ; then
+ elog "Tripwire needs to be configured before its first run. You can"
+ elog "do this by manually editing the twpol-GENERIC.txt file shipped with"
+ elog "the package to suit your needs. A quickstart guide is provided"
+ elog "in tripwire.txt file to help you with this."
+ elog "To configure tripwire automatically, you can use the twsetup.sh"
+ elog "script provided by the app-admin/mktwpol package. This package is"
+ elog "installed for you by the \"tools\" USE flag (which is enabled by"
+ elog "default."
+else
+ elog "Maintenance of tripwire policy files as packages are added"
+ elog "and deleted from your system can be automated by the mktwpol.sh"
+ elog "script provided by the app-admin/mktwpol package. This package"
+ elog "is installed for you if you append \"tools\" to your USE flags"
+ fi
+}
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2016-05-19 13:04 José María Alonso
0 siblings, 0 replies; 34+ messages in thread
From: José María Alonso @ 2016-05-19 13:04 UTC (permalink / raw
To: gentoo-commits
commit: 57ce01b06f95d086c23c105dc907935c03e49e5d
Author: José María Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Thu May 19 13:08:05 2016 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Thu May 19 13:08:05 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57ce01b0
app-admin/tripwire: Drop old
Package-Manager: portage-2.2.28
app-admin/tripwire/tripwire-2.4.2.2-r3.ebuild | 82 ---------------------------
1 file changed, 82 deletions(-)
diff --git a/app-admin/tripwire/tripwire-2.4.2.2-r3.ebuild b/app-admin/tripwire/tripwire-2.4.2.2-r3.ebuild
deleted file mode 100644
index 812de52..0000000
--- a/app-admin/tripwire/tripwire-2.4.2.2-r3.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit autotools eutils flag-o-matic
-
-DESCRIPTION="Open Source File Integrity Checker and IDS"
-HOMEPAGE="http://www.tripwire.org/"
-SRC_URI="mirror://sourceforge/tripwire/tripwire-${PV}-src.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~x86-fbsd"
-IUSE="ssl static +tools"
-
-DEPEND="sys-devel/automake
- sys-devel/autoconf
- ssl? ( dev-libs/openssl )"
-RDEPEND="virtual/cron
- virtual/mta
- ssl? ( dev-libs/openssl )"
-PDEPEND="tools? ( app-admin/mktwpol )"
-
-S="${WORKDIR}"/tripwire-"${PV}"-src
-
-src_prepare() {
- epatch "${FILESDIR}"/"${P}"-fix-configure.patch
- epatch "${FILESDIR}"/"${P}"-buildnum.patch
- epatch "${FILESDIR}"/"${P}"-gcc-4.7.patch
- epatch "${FILESDIR}"/"${PN}"-twpol-GENERIC.patch
- epatch "${FILESDIR}"/"${P}"-exception-shadowing.patch
-
- mv configure.in configure.ac || die
- eautoreconf
-}
-
-src_configure() {
- # tripwire can be sensitive to compiler optimisation.
- # see #32613, #45823, and others.
- # -taviso@gentoo.org
- strip-flags
- append-cppflags -DCONFIG_DIR='"\"/etc/tripwire\""' -fno-strict-aliasing
- econf $(use_enable ssl openssl) $(use_enable static)
-}
-
-src_install() {
- dosbin "${S}"/bin/{siggen,tripwire,twadmin,twprint}
- doman "${S}"/man/man{4/*.4,5/*.5,8/*.8}
- dodir /etc/tripwire /var/lib/tripwire{,/report}
- keepdir /var/lib/tripwire{,/report}
-
- exeinto /etc/cron.daily
- doexe "${FILESDIR}"/tripwire
-
- dodoc ChangeLog policy/policyguide.txt TRADEMARK \
- "${FILESDIR}"/tripwire.txt
-
- insinto /etc/tripwire
- doins "${FILESDIR}"/twcfg.txt policy/twpol-GENERIC.txt
-
- fperms 750 /etc/cron.daily/tripwire
-}
-
-pkg_postinst() {
- if [[ -z ${REPLACING_VERSIONS} ]] ; then
- elog "Tripwire needs to be configured before its first run. You can"
- elog "do this by manually editing the twpol-GENERIC.txt file shipped with"
- elog "the package to suit your needs. A quickstart guide is provided"
- elog "in tripwire.txt file to help you with this."
- elog "To configure tripwire automatically, you can use the twsetup.sh"
- elog "script provided by the app-admin/mktwpol package. This package is"
- elog "installed for you by the \"tools\" USE flag (which is enabled by"
- elog "default."
-else
- elog "Maintenance of tripwire policy files as packages are added"
- elog "and deleted from your system can be automated by the mktwpol.sh"
- elog "script provided by the app-admin/mktwpol package. This package"
- elog "is installed for you if you append \"tools\" to your USE flags"
- fi
-}
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2016-06-10 15:32 Agostino Sarubbo
0 siblings, 0 replies; 34+ messages in thread
From: Agostino Sarubbo @ 2016-06-10 15:32 UTC (permalink / raw
To: gentoo-commits
commit: 6e52e807fc52d830b24db8fee37b27eb674cf80b
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 10 15:30:23 2016 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jun 10 15:30:23 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e52e807
app-admin/tripwire: amd64 stable wrt bug #584986
Package-Manager: portage-2.2.28
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-admin/tripwire/tripwire-2.4.3.1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/tripwire/tripwire-2.4.3.1.ebuild b/app-admin/tripwire/tripwire-2.4.3.1.ebuild
index 5bbf2a1..d3a7563 100644
--- a/app-admin/tripwire/tripwire-2.4.3.1.ebuild
+++ b/app-admin/tripwire/tripwire-2.4.3.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ppc ~x86 ~x86-fbsd"
IUSE="libressl ssl static +tools"
DEPEND="sys-devel/automake
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2017-02-02 10:40 José María Alonso
0 siblings, 0 replies; 34+ messages in thread
From: José María Alonso @ 2017-02-02 10:40 UTC (permalink / raw
To: gentoo-commits
commit: 38d3cdc9e05713a4dc73459e58f0a2812af838ab
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 2 10:39:32 2017 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Thu Feb 2 10:39:59 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38d3cdc9
app-admin/tripwire: Bumps version to 2.4.3.2
Package-Manager: portage-2.3.3
app-admin/tripwire/Manifest | 1 +
app-admin/tripwire/tripwire-2.4.3.2.ebuild | 79 ++++++++++++++++++++++++++++++
2 files changed, 80 insertions(+)
diff --git a/app-admin/tripwire/Manifest b/app-admin/tripwire/Manifest
index 12ae58c..34201c1 100644
--- a/app-admin/tripwire/Manifest
+++ b/app-admin/tripwire/Manifest
@@ -1,2 +1,3 @@
DIST tripwire-2.4.2.2-src.tar.bz2 716616 SHA256 e09a7bdca9302e704cc62067399e0b584488f825b0e58c82ad6d54cd2e899fad SHA512 be39757aac7b74d4deac6c5048d0964d839a32f8f2a0d1878c4246888c4d59e35a503413595178c7af3a0da80725d0b36c21026dc734e1f760c9affda017bbbb WHIRLPOOL beb99e1ae055947a4b94a45f51492bcc453def5a41188f853ff3285a85ef8e2921274b86b095b77dbcdc8f549358f6216996a75ba391247e17bf7a29c78849c5
DIST tripwire-2.4.3.1.tar.gz 932665 SHA256 9744af4de7ecb1d643442eb22f08c819556494bb6f56f5879e22c3438f2db896 SHA512 fb5f0ad353da826a0e8381e534e0da1ac9335851e108a23053e378afd3aec6e66931446addbf0ba8d55eaa8d3148c471056e26095aeff7696ed9b6d3633cdf90 WHIRLPOOL b87447869d845be840399389a3e3ed5f9c961f6777c1b463755994876b191e08cca359273826466d34f2f32a26b597f23d130f6cb689224ed3ff58810efceed1
+DIST tripwire-2.4.3.2.tar.gz 967679 SHA256 25588c585f1af60958b3dce5bfc28e52c3237b2690dd5f4120e9c2f42d98fd2b SHA512 f3a3d5f12178d0766356d6280b3d993c29c1091357402661f0a4bb7676c640a147b74050c64e910c1210adef11903bde463813446e2c0ee9a34038876928bdfd WHIRLPOOL ac9812f3ec41afed5951e871d0ddad64eef3514a4cae071f414c7fa10d7318393d26107bb7007ca61554c328206b0da4790f0bc400fa7ea2159eb0b4f35e8303
diff --git a/app-admin/tripwire/tripwire-2.4.3.2.ebuild b/app-admin/tripwire/tripwire-2.4.3.2.ebuild
new file mode 100644
index 00000000..842387c
--- /dev/null
+++ b/app-admin/tripwire/tripwire-2.4.3.2.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools eutils flag-o-matic
+
+DESCRIPTION="Open Source File Integrity Checker and IDS"
+HOMEPAGE="http://www.tripwire.org/"
+SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -> ${PF}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+IUSE="libressl ssl static +tools"
+
+DEPEND="sys-devel/automake
+ sys-devel/autoconf
+ ssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )"
+RDEPEND="virtual/cron
+ virtual/mta
+ ssl? ( dev-libs/openssl )"
+PDEPEND="tools? ( app-admin/mktwpol )"
+
+S="${WORKDIR}/tripwire-open-source-${PV}"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ # tripwire can be sensitive to compiler optimisation.
+ # see #32613, #45823, and others.
+ # -taviso@gentoo.org
+ strip-flags
+ append-cppflags -DCONFIG_DIR='"\"/etc/tripwire\""' -fno-strict-aliasing
+ econf $(use_enable ssl openssl) $(use_enable static)
+}
+
+src_install() {
+ dosbin "${S}"/bin/{siggen,tripwire,twadmin,twprint}
+ doman "${S}"/man/man{4/*.4,5/*.5,8/*.8}
+ dodir /etc/tripwire /var/lib/tripwire{,/report}
+ keepdir /var/lib/tripwire{,/report}
+
+ exeinto /etc/cron.daily
+ doexe "${FILESDIR}"/tripwire
+
+ dodoc ChangeLog policy/policyguide.txt TRADEMARK \
+ "${FILESDIR}"/tripwire.txt
+
+ insinto /etc/tripwire
+ doins "${FILESDIR}"/twcfg.txt policy/twpol-GENERIC.txt
+
+ fperms 750 /etc/cron.daily/tripwire
+}
+
+pkg_postinst() {
+ if [[ -z ${REPLACING_VERSIONS} ]] ; then
+ elog "Tripwire needs to be configured before its first run. You can"
+ elog "do this by manually editing the twpol-GENERIC.txt file shipped with"
+ elog "the package to suit your needs. A quickstart guide is provided"
+ elog "in tripwire.txt file to help you with this."
+ elog "To configure tripwire automatically, you can use the twsetup.sh"
+ elog "script provided by the app-admin/mktwpol package. This package is"
+ elog "installed for you by the \"tools\" USE flag (which is enabled by"
+ elog "default."
+else
+ elog "Maintenance of tripwire policy files as packages are added"
+ elog "and deleted from your system can be automated by the mktwpol.sh"
+ elog "script provided by the app-admin/mktwpol package. This package"
+ elog "is installed for you if you append \"tools\" to your USE flags"
+ fi
+}
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2017-02-25 10:41 José María Alonso
0 siblings, 0 replies; 34+ messages in thread
From: José María Alonso @ 2017-02-25 10:41 UTC (permalink / raw
To: gentoo-commits
commit: 89aa925bcfe4cdc58fb1a3b7b886940fc25e4973
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 25 10:41:24 2017 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Sat Feb 25 10:41:48 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89aa925b
app-admin/tripwire: Bumps version to 2.4.3.3
Package-Manager: Portage-2.3.3, Repoman-2.3.1
app-admin/tripwire/Manifest | 1 +
app-admin/tripwire/tripwire-2.4.3.3.ebuild | 79 ++++++++++++++++++++++++++++++
2 files changed, 80 insertions(+)
diff --git a/app-admin/tripwire/Manifest b/app-admin/tripwire/Manifest
index 155d8db1b3..d036529d17 100644
--- a/app-admin/tripwire/Manifest
+++ b/app-admin/tripwire/Manifest
@@ -1,2 +1,3 @@
DIST tripwire-2.4.3.1.tar.gz 932665 SHA256 9744af4de7ecb1d643442eb22f08c819556494bb6f56f5879e22c3438f2db896 SHA512 fb5f0ad353da826a0e8381e534e0da1ac9335851e108a23053e378afd3aec6e66931446addbf0ba8d55eaa8d3148c471056e26095aeff7696ed9b6d3633cdf90 WHIRLPOOL b87447869d845be840399389a3e3ed5f9c961f6777c1b463755994876b191e08cca359273826466d34f2f32a26b597f23d130f6cb689224ed3ff58810efceed1
DIST tripwire-2.4.3.2.tar.gz 967679 SHA256 25588c585f1af60958b3dce5bfc28e52c3237b2690dd5f4120e9c2f42d98fd2b SHA512 f3a3d5f12178d0766356d6280b3d993c29c1091357402661f0a4bb7676c640a147b74050c64e910c1210adef11903bde463813446e2c0ee9a34038876928bdfd WHIRLPOOL ac9812f3ec41afed5951e871d0ddad64eef3514a4cae071f414c7fa10d7318393d26107bb7007ca61554c328206b0da4790f0bc400fa7ea2159eb0b4f35e8303
+DIST tripwire-2.4.3.3.tar.gz 967929 SHA256 9db1832c6ea88569b6d7fe3fe896216efeae3046cfd148a5c4102e3bbf9ac749 SHA512 977895aa169a13e786f3428386a094a56d52bf0fdc4853ac8664f0d6110774f0ff2ce4db9d5f76c52299744faa680dc03201567a458c033b2cd01df1191b96cb WHIRLPOOL 888d8676b17537895ef3c6ee2313761f78511cb092485920024595fa5dd4b61263a0125a274f52220f6f98d147a3d8122017a39965610b809d016a8ae23b4987
diff --git a/app-admin/tripwire/tripwire-2.4.3.3.ebuild b/app-admin/tripwire/tripwire-2.4.3.3.ebuild
new file mode 100644
index 0000000000..842387cd9d
--- /dev/null
+++ b/app-admin/tripwire/tripwire-2.4.3.3.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools eutils flag-o-matic
+
+DESCRIPTION="Open Source File Integrity Checker and IDS"
+HOMEPAGE="http://www.tripwire.org/"
+SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -> ${PF}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+IUSE="libressl ssl static +tools"
+
+DEPEND="sys-devel/automake
+ sys-devel/autoconf
+ ssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )"
+RDEPEND="virtual/cron
+ virtual/mta
+ ssl? ( dev-libs/openssl )"
+PDEPEND="tools? ( app-admin/mktwpol )"
+
+S="${WORKDIR}/tripwire-open-source-${PV}"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ # tripwire can be sensitive to compiler optimisation.
+ # see #32613, #45823, and others.
+ # -taviso@gentoo.org
+ strip-flags
+ append-cppflags -DCONFIG_DIR='"\"/etc/tripwire\""' -fno-strict-aliasing
+ econf $(use_enable ssl openssl) $(use_enable static)
+}
+
+src_install() {
+ dosbin "${S}"/bin/{siggen,tripwire,twadmin,twprint}
+ doman "${S}"/man/man{4/*.4,5/*.5,8/*.8}
+ dodir /etc/tripwire /var/lib/tripwire{,/report}
+ keepdir /var/lib/tripwire{,/report}
+
+ exeinto /etc/cron.daily
+ doexe "${FILESDIR}"/tripwire
+
+ dodoc ChangeLog policy/policyguide.txt TRADEMARK \
+ "${FILESDIR}"/tripwire.txt
+
+ insinto /etc/tripwire
+ doins "${FILESDIR}"/twcfg.txt policy/twpol-GENERIC.txt
+
+ fperms 750 /etc/cron.daily/tripwire
+}
+
+pkg_postinst() {
+ if [[ -z ${REPLACING_VERSIONS} ]] ; then
+ elog "Tripwire needs to be configured before its first run. You can"
+ elog "do this by manually editing the twpol-GENERIC.txt file shipped with"
+ elog "the package to suit your needs. A quickstart guide is provided"
+ elog "in tripwire.txt file to help you with this."
+ elog "To configure tripwire automatically, you can use the twsetup.sh"
+ elog "script provided by the app-admin/mktwpol package. This package is"
+ elog "installed for you by the \"tools\" USE flag (which is enabled by"
+ elog "default."
+else
+ elog "Maintenance of tripwire policy files as packages are added"
+ elog "and deleted from your system can be automated by the mktwpol.sh"
+ elog "script provided by the app-admin/mktwpol package. This package"
+ elog "is installed for you if you append \"tools\" to your USE flags"
+ fi
+}
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2017-03-06 11:23 José María Alonso
0 siblings, 0 replies; 34+ messages in thread
From: José María Alonso @ 2017-03-06 11:23 UTC (permalink / raw
To: gentoo-commits
commit: 674dbebefab89805219143a6e093a453898824ad
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 6 11:22:48 2017 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Mon Mar 6 11:22:48 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=674dbebe
app-admin/tripwire: Bumps version to 2.4.3.4
Package-Manager: Portage-2.3.3, Repoman-2.3.1
app-admin/tripwire/Manifest | 1 +
app-admin/tripwire/tripwire-2.4.3.4.ebuild | 78 ++++++++++++++++++++++++++++++
2 files changed, 79 insertions(+)
diff --git a/app-admin/tripwire/Manifest b/app-admin/tripwire/Manifest
index d036529d174..226cde1694e 100644
--- a/app-admin/tripwire/Manifest
+++ b/app-admin/tripwire/Manifest
@@ -1,3 +1,4 @@
DIST tripwire-2.4.3.1.tar.gz 932665 SHA256 9744af4de7ecb1d643442eb22f08c819556494bb6f56f5879e22c3438f2db896 SHA512 fb5f0ad353da826a0e8381e534e0da1ac9335851e108a23053e378afd3aec6e66931446addbf0ba8d55eaa8d3148c471056e26095aeff7696ed9b6d3633cdf90 WHIRLPOOL b87447869d845be840399389a3e3ed5f9c961f6777c1b463755994876b191e08cca359273826466d34f2f32a26b597f23d130f6cb689224ed3ff58810efceed1
DIST tripwire-2.4.3.2.tar.gz 967679 SHA256 25588c585f1af60958b3dce5bfc28e52c3237b2690dd5f4120e9c2f42d98fd2b SHA512 f3a3d5f12178d0766356d6280b3d993c29c1091357402661f0a4bb7676c640a147b74050c64e910c1210adef11903bde463813446e2c0ee9a34038876928bdfd WHIRLPOOL ac9812f3ec41afed5951e871d0ddad64eef3514a4cae071f414c7fa10d7318393d26107bb7007ca61554c328206b0da4790f0bc400fa7ea2159eb0b4f35e8303
DIST tripwire-2.4.3.3.tar.gz 967929 SHA256 9db1832c6ea88569b6d7fe3fe896216efeae3046cfd148a5c4102e3bbf9ac749 SHA512 977895aa169a13e786f3428386a094a56d52bf0fdc4853ac8664f0d6110774f0ff2ce4db9d5f76c52299744faa680dc03201567a458c033b2cd01df1191b96cb WHIRLPOOL 888d8676b17537895ef3c6ee2313761f78511cb092485920024595fa5dd4b61263a0125a274f52220f6f98d147a3d8122017a39965610b809d016a8ae23b4987
+DIST tripwire-2.4.3.4.tar.gz 968065 SHA256 ca0828ed624791cbe0f81f47e10f35866b73695ccd264b8341e2087b63766536 SHA512 ff47443c1c0c0248808e51df65f07aa2cbcc1d0901cc1a65830db78a1e7c4aa62c82e45827cadb1ab70281a2d4194ee3c4007050652efef9e328a98bc36f2995 WHIRLPOOL 01b3a7cdbac632928e006f21546e9040a1547ac14c9aad7cfef14f24abe0a6f333d562d1442289f79cf81bdce3ae116234890381861c9da73aa3b8828a10d7f3
diff --git a/app-admin/tripwire/tripwire-2.4.3.4.ebuild b/app-admin/tripwire/tripwire-2.4.3.4.ebuild
new file mode 100644
index 00000000000..9bc7f617580
--- /dev/null
+++ b/app-admin/tripwire/tripwire-2.4.3.4.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools eutils flag-o-matic
+
+DESCRIPTION="Open Source File Integrity Checker and IDS"
+HOMEPAGE="http://www.tripwire.org/"
+SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -> ${PF}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+IUSE="libressl ssl static +tools"
+
+DEPEND="sys-devel/automake
+ sys-devel/autoconf
+ ssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )"
+RDEPEND="virtual/cron
+ virtual/mta
+ ssl? ( dev-libs/openssl )"
+PDEPEND="tools? ( app-admin/mktwpol )"
+
+S="${WORKDIR}/tripwire-open-source-${PV}"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ # tripwire can be sensitive to compiler optimisation.
+ # see #32613, #45823, and others.
+ # -taviso@gentoo.org
+ strip-flags
+ append-cppflags -DCONFIG_DIR='"\"/etc/tripwire\""' -fno-strict-aliasing
+ econf $(use_enable ssl openssl) $(use_enable static)
+}
+
+src_install() {
+ dosbin "${S}"/bin/{siggen,tripwire,twadmin,twprint}
+ doman "${S}"/man/man{4/*.4,5/*.5,8/*.8}
+ dodir /etc/tripwire /var/lib/tripwire{,/report}
+ keepdir /var/lib/tripwire{,/report}
+
+ exeinto /etc/cron.daily
+ doexe "${FILESDIR}"/tripwire
+
+ dodoc ChangeLog policy/policyguide.txt TRADEMARK \
+ "${FILESDIR}"/tripwire.txt
+
+ insinto /etc/tripwire
+ doins "${FILESDIR}"/twcfg.txt policy/twpol-GENERIC.txt
+
+ fperms 750 /etc/cron.daily/tripwire
+}
+
+pkg_postinst() {
+ if [[ -z ${REPLACING_VERSIONS} ]] ; then
+ elog "Tripwire needs to be configured before its first run. You can"
+ elog "do this by manually editing the twpol-GENERIC.txt file shipped with"
+ elog "the package to suit your needs. A quickstart guide is provided"
+ elog "in tripwire.txt file to help you with this."
+ elog "To configure tripwire automatically, you can use the twsetup.sh"
+ elog "script provided by the app-admin/mktwpol package. This package is"
+ elog "installed for you by the \"tools\" USE flag (which is enabled by"
+ elog "default."
+else
+ elog "Maintenance of tripwire policy files as packages are added"
+ elog "and deleted from your system can be automated by the mktwpol.sh"
+ elog "script provided by the app-admin/mktwpol package. This package"
+ elog "is installed for you if you append \"tools\" to your USE flags"
+ fi
+}
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2017-04-04 13:30 José María Alonso
0 siblings, 0 replies; 34+ messages in thread
From: José María Alonso @ 2017-04-04 13:30 UTC (permalink / raw
To: gentoo-commits
commit: bbbb06336389663d63e8313a7da6bf712f2e40d5
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 4 13:30:21 2017 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Tue Apr 4 13:30:21 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbbb0633
app-admin/tripwire: Bumps version to 2.4.3.5
Package-Manager: Portage-2.3.3, Repoman-2.3.1
app-admin/tripwire/Manifest | 1 +
app-admin/tripwire/tripwire-2.4.3.5.ebuild | 78 ++++++++++++++++++++++++++++++
2 files changed, 79 insertions(+)
diff --git a/app-admin/tripwire/Manifest b/app-admin/tripwire/Manifest
index 226cde1694e..6ef4eb72e0b 100644
--- a/app-admin/tripwire/Manifest
+++ b/app-admin/tripwire/Manifest
@@ -2,3 +2,4 @@ DIST tripwire-2.4.3.1.tar.gz 932665 SHA256 9744af4de7ecb1d643442eb22f08c81955649
DIST tripwire-2.4.3.2.tar.gz 967679 SHA256 25588c585f1af60958b3dce5bfc28e52c3237b2690dd5f4120e9c2f42d98fd2b SHA512 f3a3d5f12178d0766356d6280b3d993c29c1091357402661f0a4bb7676c640a147b74050c64e910c1210adef11903bde463813446e2c0ee9a34038876928bdfd WHIRLPOOL ac9812f3ec41afed5951e871d0ddad64eef3514a4cae071f414c7fa10d7318393d26107bb7007ca61554c328206b0da4790f0bc400fa7ea2159eb0b4f35e8303
DIST tripwire-2.4.3.3.tar.gz 967929 SHA256 9db1832c6ea88569b6d7fe3fe896216efeae3046cfd148a5c4102e3bbf9ac749 SHA512 977895aa169a13e786f3428386a094a56d52bf0fdc4853ac8664f0d6110774f0ff2ce4db9d5f76c52299744faa680dc03201567a458c033b2cd01df1191b96cb WHIRLPOOL 888d8676b17537895ef3c6ee2313761f78511cb092485920024595fa5dd4b61263a0125a274f52220f6f98d147a3d8122017a39965610b809d016a8ae23b4987
DIST tripwire-2.4.3.4.tar.gz 968065 SHA256 ca0828ed624791cbe0f81f47e10f35866b73695ccd264b8341e2087b63766536 SHA512 ff47443c1c0c0248808e51df65f07aa2cbcc1d0901cc1a65830db78a1e7c4aa62c82e45827cadb1ab70281a2d4194ee3c4007050652efef9e328a98bc36f2995 WHIRLPOOL 01b3a7cdbac632928e006f21546e9040a1547ac14c9aad7cfef14f24abe0a6f333d562d1442289f79cf81bdce3ae116234890381861c9da73aa3b8828a10d7f3
+DIST tripwire-2.4.3.5.tar.gz 965014 SHA256 4bb0b400d8f5d7f8762ffb87a683f113f8c77186689cc63b8cedbbc628c9c33b SHA512 7aef0e7d38f4b6966a806a4e556636c7b2477f4ea5451e89f1749c1535a489c2f490ea13898edff5d7786acf572f77d04430115b8ddd4c6a03c38382feb45269 WHIRLPOOL f5f06d2f509e8047ede81226d3179f253e32aae4193817ab1000dd843f4b9810f6aacc6cd9c0bdc8a0c6835fdb11f79c85838a3b799d8c6565861d43dd433a99
diff --git a/app-admin/tripwire/tripwire-2.4.3.5.ebuild b/app-admin/tripwire/tripwire-2.4.3.5.ebuild
new file mode 100644
index 00000000000..9bc7f617580
--- /dev/null
+++ b/app-admin/tripwire/tripwire-2.4.3.5.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools eutils flag-o-matic
+
+DESCRIPTION="Open Source File Integrity Checker and IDS"
+HOMEPAGE="http://www.tripwire.org/"
+SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -> ${PF}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+IUSE="libressl ssl static +tools"
+
+DEPEND="sys-devel/automake
+ sys-devel/autoconf
+ ssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )"
+RDEPEND="virtual/cron
+ virtual/mta
+ ssl? ( dev-libs/openssl )"
+PDEPEND="tools? ( app-admin/mktwpol )"
+
+S="${WORKDIR}/tripwire-open-source-${PV}"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ # tripwire can be sensitive to compiler optimisation.
+ # see #32613, #45823, and others.
+ # -taviso@gentoo.org
+ strip-flags
+ append-cppflags -DCONFIG_DIR='"\"/etc/tripwire\""' -fno-strict-aliasing
+ econf $(use_enable ssl openssl) $(use_enable static)
+}
+
+src_install() {
+ dosbin "${S}"/bin/{siggen,tripwire,twadmin,twprint}
+ doman "${S}"/man/man{4/*.4,5/*.5,8/*.8}
+ dodir /etc/tripwire /var/lib/tripwire{,/report}
+ keepdir /var/lib/tripwire{,/report}
+
+ exeinto /etc/cron.daily
+ doexe "${FILESDIR}"/tripwire
+
+ dodoc ChangeLog policy/policyguide.txt TRADEMARK \
+ "${FILESDIR}"/tripwire.txt
+
+ insinto /etc/tripwire
+ doins "${FILESDIR}"/twcfg.txt policy/twpol-GENERIC.txt
+
+ fperms 750 /etc/cron.daily/tripwire
+}
+
+pkg_postinst() {
+ if [[ -z ${REPLACING_VERSIONS} ]] ; then
+ elog "Tripwire needs to be configured before its first run. You can"
+ elog "do this by manually editing the twpol-GENERIC.txt file shipped with"
+ elog "the package to suit your needs. A quickstart guide is provided"
+ elog "in tripwire.txt file to help you with this."
+ elog "To configure tripwire automatically, you can use the twsetup.sh"
+ elog "script provided by the app-admin/mktwpol package. This package is"
+ elog "installed for you by the \"tools\" USE flag (which is enabled by"
+ elog "default."
+else
+ elog "Maintenance of tripwire policy files as packages are added"
+ elog "and deleted from your system can be automated by the mktwpol.sh"
+ elog "script provided by the app-admin/mktwpol package. This package"
+ elog "is installed for you if you append \"tools\" to your USE flags"
+ fi
+}
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2017-04-05 12:55 Agostino Sarubbo
0 siblings, 0 replies; 34+ messages in thread
From: Agostino Sarubbo @ 2017-04-05 12:55 UTC (permalink / raw
To: gentoo-commits
commit: d5ce702e1c149cc125b153ccaa6d187cd6cc6a1f
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 5 12:55:16 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Apr 5 12:55:16 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5ce702e
app-admin/tripwire: amd64 stable wrt bug #614622
Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-admin/tripwire/tripwire-2.4.3.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/tripwire/tripwire-2.4.3.4.ebuild b/app-admin/tripwire/tripwire-2.4.3.4.ebuild
index 9bc7f617580..cd6b5aac038 100644
--- a/app-admin/tripwire/tripwire-2.4.3.4.ebuild
+++ b/app-admin/tripwire/tripwire-2.4.3.4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ppc ~x86 ~x86-fbsd"
IUSE="libressl ssl static +tools"
DEPEND="sys-devel/automake
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2017-04-06 7:46 José María Alonso
0 siblings, 0 replies; 34+ messages in thread
From: José María Alonso @ 2017-04-06 7:46 UTC (permalink / raw
To: gentoo-commits
commit: 0b8b93d4e4b8eb06015c5f3f2125e2a1286097ed
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 6 07:45:56 2017 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Thu Apr 6 07:45:56 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b8b93d4
app-admin/tripwire: Drops old versions
Package-Manager: Portage-2.3.3, Repoman-2.3.1
app-admin/tripwire/Manifest | 2 -
app-admin/tripwire/tripwire-2.4.3.2.ebuild | 78 ------------------------------
app-admin/tripwire/tripwire-2.4.3.3.ebuild | 78 ------------------------------
3 files changed, 158 deletions(-)
diff --git a/app-admin/tripwire/Manifest b/app-admin/tripwire/Manifest
index 6ef4eb72e0b..78b583c6ec0 100644
--- a/app-admin/tripwire/Manifest
+++ b/app-admin/tripwire/Manifest
@@ -1,5 +1,3 @@
DIST tripwire-2.4.3.1.tar.gz 932665 SHA256 9744af4de7ecb1d643442eb22f08c819556494bb6f56f5879e22c3438f2db896 SHA512 fb5f0ad353da826a0e8381e534e0da1ac9335851e108a23053e378afd3aec6e66931446addbf0ba8d55eaa8d3148c471056e26095aeff7696ed9b6d3633cdf90 WHIRLPOOL b87447869d845be840399389a3e3ed5f9c961f6777c1b463755994876b191e08cca359273826466d34f2f32a26b597f23d130f6cb689224ed3ff58810efceed1
-DIST tripwire-2.4.3.2.tar.gz 967679 SHA256 25588c585f1af60958b3dce5bfc28e52c3237b2690dd5f4120e9c2f42d98fd2b SHA512 f3a3d5f12178d0766356d6280b3d993c29c1091357402661f0a4bb7676c640a147b74050c64e910c1210adef11903bde463813446e2c0ee9a34038876928bdfd WHIRLPOOL ac9812f3ec41afed5951e871d0ddad64eef3514a4cae071f414c7fa10d7318393d26107bb7007ca61554c328206b0da4790f0bc400fa7ea2159eb0b4f35e8303
-DIST tripwire-2.4.3.3.tar.gz 967929 SHA256 9db1832c6ea88569b6d7fe3fe896216efeae3046cfd148a5c4102e3bbf9ac749 SHA512 977895aa169a13e786f3428386a094a56d52bf0fdc4853ac8664f0d6110774f0ff2ce4db9d5f76c52299744faa680dc03201567a458c033b2cd01df1191b96cb WHIRLPOOL 888d8676b17537895ef3c6ee2313761f78511cb092485920024595fa5dd4b61263a0125a274f52220f6f98d147a3d8122017a39965610b809d016a8ae23b4987
DIST tripwire-2.4.3.4.tar.gz 968065 SHA256 ca0828ed624791cbe0f81f47e10f35866b73695ccd264b8341e2087b63766536 SHA512 ff47443c1c0c0248808e51df65f07aa2cbcc1d0901cc1a65830db78a1e7c4aa62c82e45827cadb1ab70281a2d4194ee3c4007050652efef9e328a98bc36f2995 WHIRLPOOL 01b3a7cdbac632928e006f21546e9040a1547ac14c9aad7cfef14f24abe0a6f333d562d1442289f79cf81bdce3ae116234890381861c9da73aa3b8828a10d7f3
DIST tripwire-2.4.3.5.tar.gz 965014 SHA256 4bb0b400d8f5d7f8762ffb87a683f113f8c77186689cc63b8cedbbc628c9c33b SHA512 7aef0e7d38f4b6966a806a4e556636c7b2477f4ea5451e89f1749c1535a489c2f490ea13898edff5d7786acf572f77d04430115b8ddd4c6a03c38382feb45269 WHIRLPOOL f5f06d2f509e8047ede81226d3179f253e32aae4193817ab1000dd843f4b9810f6aacc6cd9c0bdc8a0c6835fdb11f79c85838a3b799d8c6565861d43dd433a99
diff --git a/app-admin/tripwire/tripwire-2.4.3.2.ebuild b/app-admin/tripwire/tripwire-2.4.3.2.ebuild
deleted file mode 100644
index 9bc7f617580..00000000000
--- a/app-admin/tripwire/tripwire-2.4.3.2.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools eutils flag-o-matic
-
-DESCRIPTION="Open Source File Integrity Checker and IDS"
-HOMEPAGE="http://www.tripwire.org/"
-SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -> ${PF}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
-IUSE="libressl ssl static +tools"
-
-DEPEND="sys-devel/automake
- sys-devel/autoconf
- ssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )"
-RDEPEND="virtual/cron
- virtual/mta
- ssl? ( dev-libs/openssl )"
-PDEPEND="tools? ( app-admin/mktwpol )"
-
-S="${WORKDIR}/tripwire-open-source-${PV}"
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- # tripwire can be sensitive to compiler optimisation.
- # see #32613, #45823, and others.
- # -taviso@gentoo.org
- strip-flags
- append-cppflags -DCONFIG_DIR='"\"/etc/tripwire\""' -fno-strict-aliasing
- econf $(use_enable ssl openssl) $(use_enable static)
-}
-
-src_install() {
- dosbin "${S}"/bin/{siggen,tripwire,twadmin,twprint}
- doman "${S}"/man/man{4/*.4,5/*.5,8/*.8}
- dodir /etc/tripwire /var/lib/tripwire{,/report}
- keepdir /var/lib/tripwire{,/report}
-
- exeinto /etc/cron.daily
- doexe "${FILESDIR}"/tripwire
-
- dodoc ChangeLog policy/policyguide.txt TRADEMARK \
- "${FILESDIR}"/tripwire.txt
-
- insinto /etc/tripwire
- doins "${FILESDIR}"/twcfg.txt policy/twpol-GENERIC.txt
-
- fperms 750 /etc/cron.daily/tripwire
-}
-
-pkg_postinst() {
- if [[ -z ${REPLACING_VERSIONS} ]] ; then
- elog "Tripwire needs to be configured before its first run. You can"
- elog "do this by manually editing the twpol-GENERIC.txt file shipped with"
- elog "the package to suit your needs. A quickstart guide is provided"
- elog "in tripwire.txt file to help you with this."
- elog "To configure tripwire automatically, you can use the twsetup.sh"
- elog "script provided by the app-admin/mktwpol package. This package is"
- elog "installed for you by the \"tools\" USE flag (which is enabled by"
- elog "default."
-else
- elog "Maintenance of tripwire policy files as packages are added"
- elog "and deleted from your system can be automated by the mktwpol.sh"
- elog "script provided by the app-admin/mktwpol package. This package"
- elog "is installed for you if you append \"tools\" to your USE flags"
- fi
-}
diff --git a/app-admin/tripwire/tripwire-2.4.3.3.ebuild b/app-admin/tripwire/tripwire-2.4.3.3.ebuild
deleted file mode 100644
index 9bc7f617580..00000000000
--- a/app-admin/tripwire/tripwire-2.4.3.3.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools eutils flag-o-matic
-
-DESCRIPTION="Open Source File Integrity Checker and IDS"
-HOMEPAGE="http://www.tripwire.org/"
-SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -> ${PF}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
-IUSE="libressl ssl static +tools"
-
-DEPEND="sys-devel/automake
- sys-devel/autoconf
- ssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )"
-RDEPEND="virtual/cron
- virtual/mta
- ssl? ( dev-libs/openssl )"
-PDEPEND="tools? ( app-admin/mktwpol )"
-
-S="${WORKDIR}/tripwire-open-source-${PV}"
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- # tripwire can be sensitive to compiler optimisation.
- # see #32613, #45823, and others.
- # -taviso@gentoo.org
- strip-flags
- append-cppflags -DCONFIG_DIR='"\"/etc/tripwire\""' -fno-strict-aliasing
- econf $(use_enable ssl openssl) $(use_enable static)
-}
-
-src_install() {
- dosbin "${S}"/bin/{siggen,tripwire,twadmin,twprint}
- doman "${S}"/man/man{4/*.4,5/*.5,8/*.8}
- dodir /etc/tripwire /var/lib/tripwire{,/report}
- keepdir /var/lib/tripwire{,/report}
-
- exeinto /etc/cron.daily
- doexe "${FILESDIR}"/tripwire
-
- dodoc ChangeLog policy/policyguide.txt TRADEMARK \
- "${FILESDIR}"/tripwire.txt
-
- insinto /etc/tripwire
- doins "${FILESDIR}"/twcfg.txt policy/twpol-GENERIC.txt
-
- fperms 750 /etc/cron.daily/tripwire
-}
-
-pkg_postinst() {
- if [[ -z ${REPLACING_VERSIONS} ]] ; then
- elog "Tripwire needs to be configured before its first run. You can"
- elog "do this by manually editing the twpol-GENERIC.txt file shipped with"
- elog "the package to suit your needs. A quickstart guide is provided"
- elog "in tripwire.txt file to help you with this."
- elog "To configure tripwire automatically, you can use the twsetup.sh"
- elog "script provided by the app-admin/mktwpol package. This package is"
- elog "installed for you by the \"tools\" USE flag (which is enabled by"
- elog "default."
-else
- elog "Maintenance of tripwire policy files as packages are added"
- elog "and deleted from your system can be automated by the mktwpol.sh"
- elog "script provided by the app-admin/mktwpol package. This package"
- elog "is installed for you if you append \"tools\" to your USE flags"
- fi
-}
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2017-04-17 8:02 Agostino Sarubbo
0 siblings, 0 replies; 34+ messages in thread
From: Agostino Sarubbo @ 2017-04-17 8:02 UTC (permalink / raw
To: gentoo-commits
commit: caf648b1c493dd0cb794e769bb2708db2b63866e
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 17 07:59:28 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Mon Apr 17 08:02:13 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=caf648b1
app-admin/tripwire: x86 stable wrt bug #614622
Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-admin/tripwire/tripwire-2.4.3.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/tripwire/tripwire-2.4.3.4.ebuild b/app-admin/tripwire/tripwire-2.4.3.4.ebuild
index cd6b5aac038..be7f7f8b464 100644
--- a/app-admin/tripwire/tripwire-2.4.3.4.ebuild
+++ b/app-admin/tripwire/tripwire-2.4.3.4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ppc x86 ~x86-fbsd"
IUSE="libressl ssl static +tools"
DEPEND="sys-devel/automake
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2017-04-18 21:04 José María Alonso
0 siblings, 0 replies; 34+ messages in thread
From: José María Alonso @ 2017-04-18 21:04 UTC (permalink / raw
To: gentoo-commits
commit: 8b4f85b147548ca8f5398c3b0830d6e7bd1afe99
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 18 21:04:41 2017 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Tue Apr 18 21:04:41 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b4f85b1
app-admin/tripwire: Adds selinux USE flag
Fixes bug #615654
Package-Manager: Portage-2.3.3, Repoman-2.3.1
app-admin/tripwire/tripwire-2.4.3.1.ebuild | 5 +++--
app-admin/tripwire/tripwire-2.4.3.4.ebuild | 3 ++-
app-admin/tripwire/tripwire-2.4.3.5.ebuild | 3 ++-
3 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/app-admin/tripwire/tripwire-2.4.3.1.ebuild b/app-admin/tripwire/tripwire-2.4.3.1.ebuild
index ca1db8d1623..bbb95fabedf 100644
--- a/app-admin/tripwire/tripwire-2.4.3.1.ebuild
+++ b/app-admin/tripwire/tripwire-2.4.3.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86 ~x86-fbsd"
-IUSE="libressl ssl static +tools"
+IUSE="libressl selinux ssl static +tools"
DEPEND="sys-devel/automake
sys-devel/autoconf
@@ -22,6 +22,7 @@ DEPEND="sys-devel/automake
)"
RDEPEND="virtual/cron
virtual/mta
+ selinux? ( sec-policy/selinux-tripwire )
ssl? ( dev-libs/openssl )"
PDEPEND="tools? ( app-admin/mktwpol )"
diff --git a/app-admin/tripwire/tripwire-2.4.3.4.ebuild b/app-admin/tripwire/tripwire-2.4.3.4.ebuild
index be7f7f8b464..deeba1cd835 100644
--- a/app-admin/tripwire/tripwire-2.4.3.4.ebuild
+++ b/app-admin/tripwire/tripwire-2.4.3.4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86 ~x86-fbsd"
-IUSE="libressl ssl static +tools"
+IUSE="libressl selinux ssl static +tools"
DEPEND="sys-devel/automake
sys-devel/autoconf
@@ -22,6 +22,7 @@ DEPEND="sys-devel/automake
)"
RDEPEND="virtual/cron
virtual/mta
+ selinux? ( sec-policy/selinux-tripwire )
ssl? ( dev-libs/openssl )"
PDEPEND="tools? ( app-admin/mktwpol )"
diff --git a/app-admin/tripwire/tripwire-2.4.3.5.ebuild b/app-admin/tripwire/tripwire-2.4.3.5.ebuild
index 9bc7f617580..ec2cc9bc418 100644
--- a/app-admin/tripwire/tripwire-2.4.3.5.ebuild
+++ b/app-admin/tripwire/tripwire-2.4.3.5.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
-IUSE="libressl ssl static +tools"
+IUSE="libressl selinux ssl static +tools"
DEPEND="sys-devel/automake
sys-devel/autoconf
@@ -22,6 +22,7 @@ DEPEND="sys-devel/automake
)"
RDEPEND="virtual/cron
virtual/mta
+ selinux? ( sec-policy/selinux-tripwire )
ssl? ( dev-libs/openssl )"
PDEPEND="tools? ( app-admin/mktwpol )"
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2017-04-29 15:02 Agostino Sarubbo
0 siblings, 0 replies; 34+ messages in thread
From: Agostino Sarubbo @ 2017-04-29 15:02 UTC (permalink / raw
To: gentoo-commits
commit: 4f2b1cd7861671db925ddd42cb30af17f9567e68
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 29 14:59:55 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Apr 29 14:59:55 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f2b1cd7
app-admin/tripwire: ppc stable wrt bug #614622
Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-admin/tripwire/tripwire-2.4.3.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/tripwire/tripwire-2.4.3.4.ebuild b/app-admin/tripwire/tripwire-2.4.3.4.ebuild
index deeba1cd835..58e3201aa75 100644
--- a/app-admin/tripwire/tripwire-2.4.3.4.ebuild
+++ b/app-admin/tripwire/tripwire-2.4.3.4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc x86 ~x86-fbsd"
IUSE="libressl selinux ssl static +tools"
DEPEND="sys-devel/automake
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2017-05-04 8:49 José María Alonso
0 siblings, 0 replies; 34+ messages in thread
From: José María Alonso @ 2017-05-04 8:49 UTC (permalink / raw
To: gentoo-commits
commit: 8af9bb1f4395ef8a2a6537b32eae277c5bd99f5a
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Thu May 4 08:49:15 2017 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Thu May 4 08:49:42 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8af9bb1f
app-admin/tripwire: Drops old version
Package-Manager: Portage-2.3.5, Repoman-2.3.1
app-admin/tripwire/Manifest | 1 -
app-admin/tripwire/tripwire-2.4.3.1.ebuild | 79 ------------------------------
2 files changed, 80 deletions(-)
diff --git a/app-admin/tripwire/Manifest b/app-admin/tripwire/Manifest
index 78b583c6ec0..ed6d6de4199 100644
--- a/app-admin/tripwire/Manifest
+++ b/app-admin/tripwire/Manifest
@@ -1,3 +1,2 @@
-DIST tripwire-2.4.3.1.tar.gz 932665 SHA256 9744af4de7ecb1d643442eb22f08c819556494bb6f56f5879e22c3438f2db896 SHA512 fb5f0ad353da826a0e8381e534e0da1ac9335851e108a23053e378afd3aec6e66931446addbf0ba8d55eaa8d3148c471056e26095aeff7696ed9b6d3633cdf90 WHIRLPOOL b87447869d845be840399389a3e3ed5f9c961f6777c1b463755994876b191e08cca359273826466d34f2f32a26b597f23d130f6cb689224ed3ff58810efceed1
DIST tripwire-2.4.3.4.tar.gz 968065 SHA256 ca0828ed624791cbe0f81f47e10f35866b73695ccd264b8341e2087b63766536 SHA512 ff47443c1c0c0248808e51df65f07aa2cbcc1d0901cc1a65830db78a1e7c4aa62c82e45827cadb1ab70281a2d4194ee3c4007050652efef9e328a98bc36f2995 WHIRLPOOL 01b3a7cdbac632928e006f21546e9040a1547ac14c9aad7cfef14f24abe0a6f333d562d1442289f79cf81bdce3ae116234890381861c9da73aa3b8828a10d7f3
DIST tripwire-2.4.3.5.tar.gz 965014 SHA256 4bb0b400d8f5d7f8762ffb87a683f113f8c77186689cc63b8cedbbc628c9c33b SHA512 7aef0e7d38f4b6966a806a4e556636c7b2477f4ea5451e89f1749c1535a489c2f490ea13898edff5d7786acf572f77d04430115b8ddd4c6a03c38382feb45269 WHIRLPOOL f5f06d2f509e8047ede81226d3179f253e32aae4193817ab1000dd843f4b9810f6aacc6cd9c0bdc8a0c6835fdb11f79c85838a3b799d8c6565861d43dd433a99
diff --git a/app-admin/tripwire/tripwire-2.4.3.1.ebuild b/app-admin/tripwire/tripwire-2.4.3.1.ebuild
deleted file mode 100644
index bbb95fabedf..00000000000
--- a/app-admin/tripwire/tripwire-2.4.3.1.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools eutils flag-o-matic
-
-DESCRIPTION="Open Source File Integrity Checker and IDS"
-HOMEPAGE="http://www.tripwire.org/"
-SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -> ${PF}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~x86-fbsd"
-IUSE="libressl selinux ssl static +tools"
-
-DEPEND="sys-devel/automake
- sys-devel/autoconf
- ssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )"
-RDEPEND="virtual/cron
- virtual/mta
- selinux? ( sec-policy/selinux-tripwire )
- ssl? ( dev-libs/openssl )"
-PDEPEND="tools? ( app-admin/mktwpol )"
-
-S="${WORKDIR}/tripwire-open-source-${PV}"
-
-src_prepare() {
- mv configure.in configure.ac || die
- eautoreconf
-}
-
-src_configure() {
- # tripwire can be sensitive to compiler optimisation.
- # see #32613, #45823, and others.
- # -taviso@gentoo.org
- strip-flags
- append-cppflags -DCONFIG_DIR='"\"/etc/tripwire\""' -fno-strict-aliasing
- econf $(use_enable ssl openssl) $(use_enable static)
-}
-
-src_install() {
- dosbin "${S}"/bin/{siggen,tripwire,twadmin,twprint}
- doman "${S}"/man/man{4/*.4,5/*.5,8/*.8}
- dodir /etc/tripwire /var/lib/tripwire{,/report}
- keepdir /var/lib/tripwire{,/report}
-
- exeinto /etc/cron.daily
- doexe "${FILESDIR}"/tripwire
-
- dodoc ChangeLog policy/policyguide.txt TRADEMARK \
- "${FILESDIR}"/tripwire.txt
-
- insinto /etc/tripwire
- doins "${FILESDIR}"/twcfg.txt policy/twpol-GENERIC.txt
-
- fperms 750 /etc/cron.daily/tripwire
-}
-
-pkg_postinst() {
- if [[ -z ${REPLACING_VERSIONS} ]] ; then
- elog "Tripwire needs to be configured before its first run. You can"
- elog "do this by manually editing the twpol-GENERIC.txt file shipped with"
- elog "the package to suit your needs. A quickstart guide is provided"
- elog "in tripwire.txt file to help you with this."
- elog "To configure tripwire automatically, you can use the twsetup.sh"
- elog "script provided by the app-admin/mktwpol package. This package is"
- elog "installed for you by the \"tools\" USE flag (which is enabled by"
- elog "default."
-else
- elog "Maintenance of tripwire policy files as packages are added"
- elog "and deleted from your system can be automated by the mktwpol.sh"
- elog "script provided by the app-admin/mktwpol package. This package"
- elog "is installed for you if you append \"tools\" to your USE flags"
- fi
-}
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2017-05-04 13:07 Agostino Sarubbo
0 siblings, 0 replies; 34+ messages in thread
From: Agostino Sarubbo @ 2017-05-04 13:07 UTC (permalink / raw
To: gentoo-commits
commit: b58140eb490ca6c616d1104850c055a7089d7116
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu May 4 13:06:49 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu May 4 13:06:49 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b58140eb
app-admin/tripwire: amd64 stable wrt bug #617448
Package-Manager: Portage-2.3.5, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-admin/tripwire/tripwire-2.4.3.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/tripwire/tripwire-2.4.3.5.ebuild b/app-admin/tripwire/tripwire-2.4.3.5.ebuild
index ec2cc9bc418..abddc955f88 100644
--- a/app-admin/tripwire/tripwire-2.4.3.5.ebuild
+++ b/app-admin/tripwire/tripwire-2.4.3.5.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ppc ~x86 ~x86-fbsd"
IUSE="libressl selinux ssl static +tools"
DEPEND="sys-devel/automake
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2017-05-04 15:55 Agostino Sarubbo
0 siblings, 0 replies; 34+ messages in thread
From: Agostino Sarubbo @ 2017-05-04 15:55 UTC (permalink / raw
To: gentoo-commits
commit: 2776ba58a1049cfe5f70810c67ba6d500f67decf
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu May 4 15:54:47 2017 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu May 4 15:54:47 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2776ba58
app-admin/tripwire: x86 stable wrt bug #617448
Package-Manager: Portage-2.3.5, Repoman-2.3.1
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-admin/tripwire/tripwire-2.4.3.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/tripwire/tripwire-2.4.3.5.ebuild b/app-admin/tripwire/tripwire-2.4.3.5.ebuild
index abddc955f88..deeba1cd835 100644
--- a/app-admin/tripwire/tripwire-2.4.3.5.ebuild
+++ b/app-admin/tripwire/tripwire-2.4.3.5.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ppc x86 ~x86-fbsd"
IUSE="libressl selinux ssl static +tools"
DEPEND="sys-devel/automake
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2017-05-18 19:14 Michael Weber
0 siblings, 0 replies; 34+ messages in thread
From: Michael Weber @ 2017-05-18 19:14 UTC (permalink / raw
To: gentoo-commits
commit: 181ee6294b72c451736887c80d3b1bdee4295d44
Author: Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Thu May 18 19:09:39 2017 +0000
Commit: Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Thu May 18 19:13:50 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=181ee629
app-admin/tripwire: ppc stable (bug 617448).
Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --include-arches="ppc"
app-admin/tripwire/tripwire-2.4.3.5.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/tripwire/tripwire-2.4.3.5.ebuild b/app-admin/tripwire/tripwire-2.4.3.5.ebuild
index deeba1cd835..58e3201aa75 100644
--- a/app-admin/tripwire/tripwire-2.4.3.5.ebuild
+++ b/app-admin/tripwire/tripwire-2.4.3.5.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc x86 ~x86-fbsd"
IUSE="libressl selinux ssl static +tools"
DEPEND="sys-devel/automake
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2017-05-19 8:20 José María Alonso
0 siblings, 0 replies; 34+ messages in thread
From: José María Alonso @ 2017-05-19 8:20 UTC (permalink / raw
To: gentoo-commits
commit: d311453ad06a553da6cbb57dfdd17fa620de91c8
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Fri May 19 08:20:30 2017 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Fri May 19 08:20:30 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d311453a
app-admin/tripwire: Drops old version
Package-Manager: Portage-2.3.5, Repoman-2.3.1
app-admin/tripwire/Manifest | 1 -
app-admin/tripwire/tripwire-2.4.3.4.ebuild | 79 ------------------------------
2 files changed, 80 deletions(-)
diff --git a/app-admin/tripwire/Manifest b/app-admin/tripwire/Manifest
index ed6d6de4199..87dc336ce3a 100644
--- a/app-admin/tripwire/Manifest
+++ b/app-admin/tripwire/Manifest
@@ -1,2 +1 @@
-DIST tripwire-2.4.3.4.tar.gz 968065 SHA256 ca0828ed624791cbe0f81f47e10f35866b73695ccd264b8341e2087b63766536 SHA512 ff47443c1c0c0248808e51df65f07aa2cbcc1d0901cc1a65830db78a1e7c4aa62c82e45827cadb1ab70281a2d4194ee3c4007050652efef9e328a98bc36f2995 WHIRLPOOL 01b3a7cdbac632928e006f21546e9040a1547ac14c9aad7cfef14f24abe0a6f333d562d1442289f79cf81bdce3ae116234890381861c9da73aa3b8828a10d7f3
DIST tripwire-2.4.3.5.tar.gz 965014 SHA256 4bb0b400d8f5d7f8762ffb87a683f113f8c77186689cc63b8cedbbc628c9c33b SHA512 7aef0e7d38f4b6966a806a4e556636c7b2477f4ea5451e89f1749c1535a489c2f490ea13898edff5d7786acf572f77d04430115b8ddd4c6a03c38382feb45269 WHIRLPOOL f5f06d2f509e8047ede81226d3179f253e32aae4193817ab1000dd843f4b9810f6aacc6cd9c0bdc8a0c6835fdb11f79c85838a3b799d8c6565861d43dd433a99
diff --git a/app-admin/tripwire/tripwire-2.4.3.4.ebuild b/app-admin/tripwire/tripwire-2.4.3.4.ebuild
deleted file mode 100644
index 58e3201aa75..00000000000
--- a/app-admin/tripwire/tripwire-2.4.3.4.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools eutils flag-o-matic
-
-DESCRIPTION="Open Source File Integrity Checker and IDS"
-HOMEPAGE="http://www.tripwire.org/"
-SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -> ${PF}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~x86-fbsd"
-IUSE="libressl selinux ssl static +tools"
-
-DEPEND="sys-devel/automake
- sys-devel/autoconf
- ssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )"
-RDEPEND="virtual/cron
- virtual/mta
- selinux? ( sec-policy/selinux-tripwire )
- ssl? ( dev-libs/openssl )"
-PDEPEND="tools? ( app-admin/mktwpol )"
-
-S="${WORKDIR}/tripwire-open-source-${PV}"
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- # tripwire can be sensitive to compiler optimisation.
- # see #32613, #45823, and others.
- # -taviso@gentoo.org
- strip-flags
- append-cppflags -DCONFIG_DIR='"\"/etc/tripwire\""' -fno-strict-aliasing
- econf $(use_enable ssl openssl) $(use_enable static)
-}
-
-src_install() {
- dosbin "${S}"/bin/{siggen,tripwire,twadmin,twprint}
- doman "${S}"/man/man{4/*.4,5/*.5,8/*.8}
- dodir /etc/tripwire /var/lib/tripwire{,/report}
- keepdir /var/lib/tripwire{,/report}
-
- exeinto /etc/cron.daily
- doexe "${FILESDIR}"/tripwire
-
- dodoc ChangeLog policy/policyguide.txt TRADEMARK \
- "${FILESDIR}"/tripwire.txt
-
- insinto /etc/tripwire
- doins "${FILESDIR}"/twcfg.txt policy/twpol-GENERIC.txt
-
- fperms 750 /etc/cron.daily/tripwire
-}
-
-pkg_postinst() {
- if [[ -z ${REPLACING_VERSIONS} ]] ; then
- elog "Tripwire needs to be configured before its first run. You can"
- elog "do this by manually editing the twpol-GENERIC.txt file shipped with"
- elog "the package to suit your needs. A quickstart guide is provided"
- elog "in tripwire.txt file to help you with this."
- elog "To configure tripwire automatically, you can use the twsetup.sh"
- elog "script provided by the app-admin/mktwpol package. This package is"
- elog "installed for you by the \"tools\" USE flag (which is enabled by"
- elog "default."
-else
- elog "Maintenance of tripwire policy files as packages are added"
- elog "and deleted from your system can be automated by the mktwpol.sh"
- elog "script provided by the app-admin/mktwpol package. This package"
- elog "is installed for you if you append \"tools\" to your USE flags"
- fi
-}
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2017-10-02 16:03 José María Alonso
0 siblings, 0 replies; 34+ messages in thread
From: José María Alonso @ 2017-10-02 16:03 UTC (permalink / raw
To: gentoo-commits
commit: cfb9e83296e04dc411bd70772cf4bbd4f3db3da3
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 2 16:03:08 2017 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Mon Oct 2 16:03:08 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfb9e832
app-admin/tripwire: Bumps version to 2.4.3.6
Package-Manager: Portage-2.3.8, Repoman-2.3.1
app-admin/tripwire/Manifest | 1 +
app-admin/tripwire/tripwire-2.4.3.6.ebuild | 79 ++++++++++++++++++++++++++++++
2 files changed, 80 insertions(+)
diff --git a/app-admin/tripwire/Manifest b/app-admin/tripwire/Manifest
index 87dc336ce3a..a6180f4acb9 100644
--- a/app-admin/tripwire/Manifest
+++ b/app-admin/tripwire/Manifest
@@ -1 +1,2 @@
DIST tripwire-2.4.3.5.tar.gz 965014 SHA256 4bb0b400d8f5d7f8762ffb87a683f113f8c77186689cc63b8cedbbc628c9c33b SHA512 7aef0e7d38f4b6966a806a4e556636c7b2477f4ea5451e89f1749c1535a489c2f490ea13898edff5d7786acf572f77d04430115b8ddd4c6a03c38382feb45269 WHIRLPOOL f5f06d2f509e8047ede81226d3179f253e32aae4193817ab1000dd843f4b9810f6aacc6cd9c0bdc8a0c6835fdb11f79c85838a3b799d8c6565861d43dd433a99
+DIST tripwire-2.4.3.6.tar.gz 1001145 SHA256 f55fe6805f2c159bd67fa3761ba52df95b2a7d0bdd06196847564bac00dd5606 SHA512 4757827b908fd56a014de81609be9cfdf3631d34cbc02214ac800bf6d9c413d85d812bc3211f9dc32ceee97e1f13decd955037a0cbbaf2f8e3020699492bd9bf WHIRLPOOL 0dad2b00a6e868179c1538ec48859a03857fa5bc62dcb9eb3240e11e10cd7ebf4de1fe85802c08abbf1ff1efca0768dcd63ff8088914f53f32cbf7fda20ec706
diff --git a/app-admin/tripwire/tripwire-2.4.3.6.ebuild b/app-admin/tripwire/tripwire-2.4.3.6.ebuild
new file mode 100644
index 00000000000..ec2cc9bc418
--- /dev/null
+++ b/app-admin/tripwire/tripwire-2.4.3.6.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools eutils flag-o-matic
+
+DESCRIPTION="Open Source File Integrity Checker and IDS"
+HOMEPAGE="http://www.tripwire.org/"
+SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -> ${PF}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+IUSE="libressl selinux ssl static +tools"
+
+DEPEND="sys-devel/automake
+ sys-devel/autoconf
+ ssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )"
+RDEPEND="virtual/cron
+ virtual/mta
+ selinux? ( sec-policy/selinux-tripwire )
+ ssl? ( dev-libs/openssl )"
+PDEPEND="tools? ( app-admin/mktwpol )"
+
+S="${WORKDIR}/tripwire-open-source-${PV}"
+
+src_prepare() {
+ default
+ eautoreconf
+}
+
+src_configure() {
+ # tripwire can be sensitive to compiler optimisation.
+ # see #32613, #45823, and others.
+ # -taviso@gentoo.org
+ strip-flags
+ append-cppflags -DCONFIG_DIR='"\"/etc/tripwire\""' -fno-strict-aliasing
+ econf $(use_enable ssl openssl) $(use_enable static)
+}
+
+src_install() {
+ dosbin "${S}"/bin/{siggen,tripwire,twadmin,twprint}
+ doman "${S}"/man/man{4/*.4,5/*.5,8/*.8}
+ dodir /etc/tripwire /var/lib/tripwire{,/report}
+ keepdir /var/lib/tripwire{,/report}
+
+ exeinto /etc/cron.daily
+ doexe "${FILESDIR}"/tripwire
+
+ dodoc ChangeLog policy/policyguide.txt TRADEMARK \
+ "${FILESDIR}"/tripwire.txt
+
+ insinto /etc/tripwire
+ doins "${FILESDIR}"/twcfg.txt policy/twpol-GENERIC.txt
+
+ fperms 750 /etc/cron.daily/tripwire
+}
+
+pkg_postinst() {
+ if [[ -z ${REPLACING_VERSIONS} ]] ; then
+ elog "Tripwire needs to be configured before its first run. You can"
+ elog "do this by manually editing the twpol-GENERIC.txt file shipped with"
+ elog "the package to suit your needs. A quickstart guide is provided"
+ elog "in tripwire.txt file to help you with this."
+ elog "To configure tripwire automatically, you can use the twsetup.sh"
+ elog "script provided by the app-admin/mktwpol package. This package is"
+ elog "installed for you by the \"tools\" USE flag (which is enabled by"
+ elog "default."
+else
+ elog "Maintenance of tripwire policy files as packages are added"
+ elog "and deleted from your system can be automated by the mktwpol.sh"
+ elog "script provided by the app-admin/mktwpol package. This package"
+ elog "is installed for you if you append \"tools\" to your USE flags"
+ fi
+}
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2017-11-02 21:16 Thomas Deutschmann
0 siblings, 0 replies; 34+ messages in thread
From: Thomas Deutschmann @ 2017-11-02 21:16 UTC (permalink / raw
To: gentoo-commits
commit: 92e04ea17ba5486d9808ee2387a1b5ccf745f659
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 2 20:56:50 2017 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Thu Nov 2 21:13:09 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92e04ea1
app-admin/tripwire: x86 stable (bug #636246)
Package-Manager: Portage-2.3.13, Repoman-2.3.4
app-admin/tripwire/tripwire-2.4.3.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/tripwire/tripwire-2.4.3.6.ebuild b/app-admin/tripwire/tripwire-2.4.3.6.ebuild
index ec2cc9bc418..5d73b9f5e31 100644
--- a/app-admin/tripwire/tripwire-2.4.3.6.ebuild
+++ b/app-admin/tripwire/tripwire-2.4.3.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+KEYWORDS="~amd64 ~ppc x86 ~x86-fbsd"
IUSE="libressl selinux ssl static +tools"
DEPEND="sys-devel/automake
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2017-11-03 11:54 Manuel Rüger
0 siblings, 0 replies; 34+ messages in thread
From: Manuel Rüger @ 2017-11-03 11:54 UTC (permalink / raw
To: gentoo-commits
commit: 9e12ddd235c63ba64fa1e4167cf5ca605d663781
Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 2 22:06:53 2017 +0000
Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri Nov 3 11:53:15 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e12ddd2
app-admin/tripwire: Stable on amd64
Package-Manager: Portage-2.3.12, Repoman-2.3.4
app-admin/tripwire/tripwire-2.4.3.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/tripwire/tripwire-2.4.3.6.ebuild b/app-admin/tripwire/tripwire-2.4.3.6.ebuild
index 5d73b9f5e31..deeba1cd835 100644
--- a/app-admin/tripwire/tripwire-2.4.3.6.ebuild
+++ b/app-admin/tripwire/tripwire-2.4.3.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ppc x86 ~x86-fbsd"
IUSE="libressl selinux ssl static +tools"
DEPEND="sys-devel/automake
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2017-11-10 8:30 Sergei Trofimovich
0 siblings, 0 replies; 34+ messages in thread
From: Sergei Trofimovich @ 2017-11-10 8:30 UTC (permalink / raw
To: gentoo-commits
commit: 1259314a64e4bc643f2824ea18959bad2ec88aa1
Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 10 08:29:55 2017 +0000
Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
CommitDate: Fri Nov 10 08:29:55 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1259314a
app-admin/tripwire: stable 2.4.3.6 for ppc, bug #636246
Package-Manager: Portage-2.3.13, Repoman-2.3.4
RepoMan-Options: --include-arches="ppc"
app-admin/tripwire/tripwire-2.4.3.6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/tripwire/tripwire-2.4.3.6.ebuild b/app-admin/tripwire/tripwire-2.4.3.6.ebuild
index deeba1cd835..58e3201aa75 100644
--- a/app-admin/tripwire/tripwire-2.4.3.6.ebuild
+++ b/app-admin/tripwire/tripwire-2.4.3.6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc x86 ~x86-fbsd"
IUSE="libressl selinux ssl static +tools"
DEPEND="sys-devel/automake
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2018-04-01 20:13 José María Alonso
0 siblings, 0 replies; 34+ messages in thread
From: José María Alonso @ 2018-04-01 20:13 UTC (permalink / raw
To: gentoo-commits
commit: 1c912aa885ac3094a1bd6e9c432e8a841e892f62
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 1 20:13:09 2018 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Sun Apr 1 20:13:33 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c912aa8
app-admin/tripwire: Bumps version to 2.4.3.7
Package-Manager: Portage-2.3.24, Repoman-2.3.6
app-admin/tripwire/Manifest | 1 +
app-admin/tripwire/tripwire-2.4.3.7.ebuild | 79 ++++++++++++++++++++++++++++++
2 files changed, 80 insertions(+)
diff --git a/app-admin/tripwire/Manifest b/app-admin/tripwire/Manifest
index 577b6a94bca..2d57d8313fa 100644
--- a/app-admin/tripwire/Manifest
+++ b/app-admin/tripwire/Manifest
@@ -1,2 +1,3 @@
DIST tripwire-2.4.3.5.tar.gz 965014 BLAKE2B 4eeec002c7c99fdb83bfb9f9ff19b552f8bfab007b6d2e13a8fabcd0f3c21e32a5a04310c4ab55e0aa8281350f0118939dec156cbb2b903407c4fb5fc3da762e SHA512 7aef0e7d38f4b6966a806a4e556636c7b2477f4ea5451e89f1749c1535a489c2f490ea13898edff5d7786acf572f77d04430115b8ddd4c6a03c38382feb45269
DIST tripwire-2.4.3.6.tar.gz 1001145 BLAKE2B aa1392d29d782266e26f605c621def8cffb67112db9151b3f098211f4243a671e5f7fc15ab5868c35794a8dbac2284f564815874aafb2b9323fd1191edb249db SHA512 4757827b908fd56a014de81609be9cfdf3631d34cbc02214ac800bf6d9c413d85d812bc3211f9dc32ceee97e1f13decd955037a0cbbaf2f8e3020699492bd9bf
+DIST tripwire-2.4.3.7.tar.gz 1002257 BLAKE2B fb0c847087e8b27d2a111b4a4122b3c4d5b187efe6f80995c6d06c7592a22fec2c537bbebba9c21a7761a8047535de4a96a6b94246da586faad4e9fc92137196 SHA512 541138f4a4c3a4227f31de6607503d305f0d893bdd5d24928d619d3a25bb8fe7061a45c041992ace957b976b834b5f4212b5c727eee1cbc76ddb2e2c52aeafbd
diff --git a/app-admin/tripwire/tripwire-2.4.3.7.ebuild b/app-admin/tripwire/tripwire-2.4.3.7.ebuild
new file mode 100644
index 00000000000..a2497935146
--- /dev/null
+++ b/app-admin/tripwire/tripwire-2.4.3.7.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools eutils flag-o-matic
+
+DESCRIPTION="Open Source File Integrity Checker and IDS"
+HOMEPAGE="http://www.tripwire.org/"
+SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -> ${PF}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+IUSE="libressl selinux ssl static +tools"
+
+DEPEND="sys-devel/automake
+ sys-devel/autoconf
+ ssl? (
+ !libressl? ( dev-libs/openssl:0= )
+ libressl? ( dev-libs/libressl:0= )
+ )"
+RDEPEND="virtual/cron
+ virtual/mta
+ selinux? ( sec-policy/selinux-tripwire )
+ ssl? ( dev-libs/openssl )"
+PDEPEND="tools? ( app-admin/mktwpol )"
+
+S="${WORKDIR}/tripwire-open-source-${PV}"
+
+src_prepare() {
+ eautoreconf
+ eapply_user
+}
+
+src_configure() {
+ # tripwire can be sensitive to compiler optimisation.
+ # see #32613, #45823, and others.
+ # -taviso@gentoo.org
+ strip-flags
+ append-cppflags -DCONFIG_DIR='"\"/etc/tripwire\""' -fno-strict-aliasing
+ econf $(use_enable ssl openssl) $(use_enable static)
+}
+
+src_install() {
+ dosbin "${S}"/bin/{siggen,tripwire,twadmin,twprint}
+ doman "${S}"/man/man{4/*.4,5/*.5,8/*.8}
+ dodir /etc/tripwire /var/lib/tripwire{,/report}
+ keepdir /var/lib/tripwire{,/report}
+
+ exeinto /etc/cron.daily
+ doexe "${FILESDIR}"/tripwire
+
+ dodoc ChangeLog policy/policyguide.txt TRADEMARK \
+ "${FILESDIR}"/tripwire.txt
+
+ insinto /etc/tripwire
+ doins "${FILESDIR}"/twcfg.txt policy/twpol-GENERIC.txt
+
+ fperms 750 /etc/cron.daily/tripwire
+}
+
+pkg_postinst() {
+ if [[ -z ${REPLACING_VERSIONS} ]] ; then
+ elog "Tripwire needs to be configured before its first run. You can"
+ elog "do this by manually editing the twpol-GENERIC.txt file shipped with"
+ elog "the package to suit your needs. A quickstart guide is provided"
+ elog "in tripwire.txt file to help you with this."
+ elog "To configure tripwire automatically, you can use the twsetup.sh"
+ elog "script provided by the app-admin/mktwpol package. This package is"
+ elog "installed for you by the \"tools\" USE flag (which is enabled by"
+ elog "default."
+else
+ elog "Maintenance of tripwire policy files as packages are added"
+ elog "and deleted from your system can be automated by the mktwpol.sh"
+ elog "script provided by the app-admin/mktwpol package. This package"
+ elog "is installed for you if you append \"tools\" to your USE flags"
+ fi
+}
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2018-04-01 20:39 José María Alonso
0 siblings, 0 replies; 34+ messages in thread
From: José María Alonso @ 2018-04-01 20:39 UTC (permalink / raw
To: gentoo-commits
commit: 4c34407c4ad0a9d2e6fd0ee8b3623840f74b21a4
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 1 20:37:35 2018 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Sun Apr 1 20:39:08 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c34407c
app-admin/tripwire: Drops old version 2.4.3.5
Package-Manager: Portage-2.3.24, Repoman-2.3.6
app-admin/tripwire/Manifest | 1 -
app-admin/tripwire/tripwire-2.4.3.5.ebuild | 79 ------------------------------
2 files changed, 80 deletions(-)
diff --git a/app-admin/tripwire/Manifest b/app-admin/tripwire/Manifest
index 2d57d8313fa..04d0b74b115 100644
--- a/app-admin/tripwire/Manifest
+++ b/app-admin/tripwire/Manifest
@@ -1,3 +1,2 @@
-DIST tripwire-2.4.3.5.tar.gz 965014 BLAKE2B 4eeec002c7c99fdb83bfb9f9ff19b552f8bfab007b6d2e13a8fabcd0f3c21e32a5a04310c4ab55e0aa8281350f0118939dec156cbb2b903407c4fb5fc3da762e SHA512 7aef0e7d38f4b6966a806a4e556636c7b2477f4ea5451e89f1749c1535a489c2f490ea13898edff5d7786acf572f77d04430115b8ddd4c6a03c38382feb45269
DIST tripwire-2.4.3.6.tar.gz 1001145 BLAKE2B aa1392d29d782266e26f605c621def8cffb67112db9151b3f098211f4243a671e5f7fc15ab5868c35794a8dbac2284f564815874aafb2b9323fd1191edb249db SHA512 4757827b908fd56a014de81609be9cfdf3631d34cbc02214ac800bf6d9c413d85d812bc3211f9dc32ceee97e1f13decd955037a0cbbaf2f8e3020699492bd9bf
DIST tripwire-2.4.3.7.tar.gz 1002257 BLAKE2B fb0c847087e8b27d2a111b4a4122b3c4d5b187efe6f80995c6d06c7592a22fec2c537bbebba9c21a7761a8047535de4a96a6b94246da586faad4e9fc92137196 SHA512 541138f4a4c3a4227f31de6607503d305f0d893bdd5d24928d619d3a25bb8fe7061a45c041992ace957b976b834b5f4212b5c727eee1cbc76ddb2e2c52aeafbd
diff --git a/app-admin/tripwire/tripwire-2.4.3.5.ebuild b/app-admin/tripwire/tripwire-2.4.3.5.ebuild
deleted file mode 100644
index 58e3201aa75..00000000000
--- a/app-admin/tripwire/tripwire-2.4.3.5.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools eutils flag-o-matic
-
-DESCRIPTION="Open Source File Integrity Checker and IDS"
-HOMEPAGE="http://www.tripwire.org/"
-SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -> ${PF}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~x86-fbsd"
-IUSE="libressl selinux ssl static +tools"
-
-DEPEND="sys-devel/automake
- sys-devel/autoconf
- ssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )"
-RDEPEND="virtual/cron
- virtual/mta
- selinux? ( sec-policy/selinux-tripwire )
- ssl? ( dev-libs/openssl )"
-PDEPEND="tools? ( app-admin/mktwpol )"
-
-S="${WORKDIR}/tripwire-open-source-${PV}"
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- # tripwire can be sensitive to compiler optimisation.
- # see #32613, #45823, and others.
- # -taviso@gentoo.org
- strip-flags
- append-cppflags -DCONFIG_DIR='"\"/etc/tripwire\""' -fno-strict-aliasing
- econf $(use_enable ssl openssl) $(use_enable static)
-}
-
-src_install() {
- dosbin "${S}"/bin/{siggen,tripwire,twadmin,twprint}
- doman "${S}"/man/man{4/*.4,5/*.5,8/*.8}
- dodir /etc/tripwire /var/lib/tripwire{,/report}
- keepdir /var/lib/tripwire{,/report}
-
- exeinto /etc/cron.daily
- doexe "${FILESDIR}"/tripwire
-
- dodoc ChangeLog policy/policyguide.txt TRADEMARK \
- "${FILESDIR}"/tripwire.txt
-
- insinto /etc/tripwire
- doins "${FILESDIR}"/twcfg.txt policy/twpol-GENERIC.txt
-
- fperms 750 /etc/cron.daily/tripwire
-}
-
-pkg_postinst() {
- if [[ -z ${REPLACING_VERSIONS} ]] ; then
- elog "Tripwire needs to be configured before its first run. You can"
- elog "do this by manually editing the twpol-GENERIC.txt file shipped with"
- elog "the package to suit your needs. A quickstart guide is provided"
- elog "in tripwire.txt file to help you with this."
- elog "To configure tripwire automatically, you can use the twsetup.sh"
- elog "script provided by the app-admin/mktwpol package. This package is"
- elog "installed for you by the \"tools\" USE flag (which is enabled by"
- elog "default."
-else
- elog "Maintenance of tripwire policy files as packages are added"
- elog "and deleted from your system can be automated by the mktwpol.sh"
- elog "script provided by the app-admin/mktwpol package. This package"
- elog "is installed for you if you append \"tools\" to your USE flags"
- fi
-}
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2018-05-02 16:33 Thomas Deutschmann
0 siblings, 0 replies; 34+ messages in thread
From: Thomas Deutschmann @ 2018-05-02 16:33 UTC (permalink / raw
To: gentoo-commits
commit: 2c42b57c889f0a69b00e67b29edfb6d43b999712
Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Wed May 2 16:23:49 2018 +0000
Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Wed May 2 16:33:01 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c42b57c
app-admin/tripwire: x86 stable (bug #654530)
Package-Manager: Portage-2.3.31, Repoman-2.3.9
app-admin/tripwire/tripwire-2.4.3.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/tripwire/tripwire-2.4.3.7.ebuild b/app-admin/tripwire/tripwire-2.4.3.7.ebuild
index a2497935146..284fc817083 100644
--- a/app-admin/tripwire/tripwire-2.4.3.7.ebuild
+++ b/app-admin/tripwire/tripwire-2.4.3.7.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+KEYWORDS="~amd64 ~ppc x86 ~x86-fbsd"
IUSE="libressl selinux ssl static +tools"
DEPEND="sys-devel/automake
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2018-05-04 10:52 Agostino Sarubbo
0 siblings, 0 replies; 34+ messages in thread
From: Agostino Sarubbo @ 2018-05-04 10:52 UTC (permalink / raw
To: gentoo-commits
commit: f102013306db1a1d198f0fc3657dab4a050bddf7
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri May 4 10:52:03 2018 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri May 4 10:52:03 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1020133
app-admin/tripwire: amd64 stable wrt bug #654530
Package-Manager: Portage-2.3.24, Repoman-2.3.6
RepoMan-Options: --include-arches="amd64"
app-admin/tripwire/tripwire-2.4.3.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/tripwire/tripwire-2.4.3.7.ebuild b/app-admin/tripwire/tripwire-2.4.3.7.ebuild
index 284fc817083..20adf761e12 100644
--- a/app-admin/tripwire/tripwire-2.4.3.7.ebuild
+++ b/app-admin/tripwire/tripwire-2.4.3.7.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ppc x86 ~x86-fbsd"
IUSE="libressl selinux ssl static +tools"
DEPEND="sys-devel/automake
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2018-05-26 8:56 Mikle Kolyada
0 siblings, 0 replies; 34+ messages in thread
From: Mikle Kolyada @ 2018-05-26 8:56 UTC (permalink / raw
To: gentoo-commits
commit: 52cb877ccad8daf84a3e94e369bc4b667c025d59
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat May 26 08:56:11 2018 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat May 26 08:56:11 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52cb877c
app-admin/tripwire: ppc stable wrt bug #654530
Package-Manager: Portage-2.3.24, Repoman-2.3.6
app-admin/tripwire/tripwire-2.4.3.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/tripwire/tripwire-2.4.3.7.ebuild b/app-admin/tripwire/tripwire-2.4.3.7.ebuild
index 20adf761e12..4339d2ac489 100644
--- a/app-admin/tripwire/tripwire-2.4.3.7.ebuild
+++ b/app-admin/tripwire/tripwire-2.4.3.7.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="amd64 ~ppc x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc x86 ~x86-fbsd"
IUSE="libressl selinux ssl static +tools"
DEPEND="sys-devel/automake
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2018-05-28 9:05 José María Alonso
0 siblings, 0 replies; 34+ messages in thread
From: José María Alonso @ 2018-05-28 9:05 UTC (permalink / raw
To: gentoo-commits
commit: 1831c94095c0483629fb457acfe808ec92d010bf
Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
AuthorDate: Mon May 28 09:03:53 2018 +0000
Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
CommitDate: Mon May 28 09:03:53 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1831c940
app-admin/tripwire: Drop old version 2.4.3.6
Package-Manager: Portage-2.3.24, Repoman-2.3.6
app-admin/tripwire/Manifest | 1 -
app-admin/tripwire/tripwire-2.4.3.6.ebuild | 79 ------------------------------
2 files changed, 80 deletions(-)
diff --git a/app-admin/tripwire/Manifest b/app-admin/tripwire/Manifest
index 04d0b74b115..e9fe7d1ae52 100644
--- a/app-admin/tripwire/Manifest
+++ b/app-admin/tripwire/Manifest
@@ -1,2 +1 @@
-DIST tripwire-2.4.3.6.tar.gz 1001145 BLAKE2B aa1392d29d782266e26f605c621def8cffb67112db9151b3f098211f4243a671e5f7fc15ab5868c35794a8dbac2284f564815874aafb2b9323fd1191edb249db SHA512 4757827b908fd56a014de81609be9cfdf3631d34cbc02214ac800bf6d9c413d85d812bc3211f9dc32ceee97e1f13decd955037a0cbbaf2f8e3020699492bd9bf
DIST tripwire-2.4.3.7.tar.gz 1002257 BLAKE2B fb0c847087e8b27d2a111b4a4122b3c4d5b187efe6f80995c6d06c7592a22fec2c537bbebba9c21a7761a8047535de4a96a6b94246da586faad4e9fc92137196 SHA512 541138f4a4c3a4227f31de6607503d305f0d893bdd5d24928d619d3a25bb8fe7061a45c041992ace957b976b834b5f4212b5c727eee1cbc76ddb2e2c52aeafbd
diff --git a/app-admin/tripwire/tripwire-2.4.3.6.ebuild b/app-admin/tripwire/tripwire-2.4.3.6.ebuild
deleted file mode 100644
index 58e3201aa75..00000000000
--- a/app-admin/tripwire/tripwire-2.4.3.6.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools eutils flag-o-matic
-
-DESCRIPTION="Open Source File Integrity Checker and IDS"
-HOMEPAGE="http://www.tripwire.org/"
-SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -> ${PF}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~x86-fbsd"
-IUSE="libressl selinux ssl static +tools"
-
-DEPEND="sys-devel/automake
- sys-devel/autoconf
- ssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )"
-RDEPEND="virtual/cron
- virtual/mta
- selinux? ( sec-policy/selinux-tripwire )
- ssl? ( dev-libs/openssl )"
-PDEPEND="tools? ( app-admin/mktwpol )"
-
-S="${WORKDIR}/tripwire-open-source-${PV}"
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- # tripwire can be sensitive to compiler optimisation.
- # see #32613, #45823, and others.
- # -taviso@gentoo.org
- strip-flags
- append-cppflags -DCONFIG_DIR='"\"/etc/tripwire\""' -fno-strict-aliasing
- econf $(use_enable ssl openssl) $(use_enable static)
-}
-
-src_install() {
- dosbin "${S}"/bin/{siggen,tripwire,twadmin,twprint}
- doman "${S}"/man/man{4/*.4,5/*.5,8/*.8}
- dodir /etc/tripwire /var/lib/tripwire{,/report}
- keepdir /var/lib/tripwire{,/report}
-
- exeinto /etc/cron.daily
- doexe "${FILESDIR}"/tripwire
-
- dodoc ChangeLog policy/policyguide.txt TRADEMARK \
- "${FILESDIR}"/tripwire.txt
-
- insinto /etc/tripwire
- doins "${FILESDIR}"/twcfg.txt policy/twpol-GENERIC.txt
-
- fperms 750 /etc/cron.daily/tripwire
-}
-
-pkg_postinst() {
- if [[ -z ${REPLACING_VERSIONS} ]] ; then
- elog "Tripwire needs to be configured before its first run. You can"
- elog "do this by manually editing the twpol-GENERIC.txt file shipped with"
- elog "the package to suit your needs. A quickstart guide is provided"
- elog "in tripwire.txt file to help you with this."
- elog "To configure tripwire automatically, you can use the twsetup.sh"
- elog "script provided by the app-admin/mktwpol package. This package is"
- elog "installed for you by the \"tools\" USE flag (which is enabled by"
- elog "default."
-else
- elog "Maintenance of tripwire policy files as packages are added"
- elog "and deleted from your system can be automated by the mktwpol.sh"
- elog "script provided by the app-admin/mktwpol package. This package"
- elog "is installed for you if you append \"tools\" to your USE flags"
- fi
-}
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2019-01-07 17:00 Lars Wendler
0 siblings, 0 replies; 34+ messages in thread
From: Lars Wendler @ 2019-01-07 17:00 UTC (permalink / raw
To: gentoo-commits
commit: 5a0a989899f4a6961c4c544fb42986e081830fef
Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 7 15:29:55 2019 +0000
Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org>
CommitDate: Mon Jan 7 17:00:07 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a0a9898
app-admin/tripwire: Fixed dependecies.
Package-Manager: Portage-2.3.54, Repoman-2.3.12
Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org>
app-admin/tripwire/tripwire-2.4.3.7.ebuild | 15 ++++++++-------
1 file changed, 8 insertions(+), 7 deletions(-)
diff --git a/app-admin/tripwire/tripwire-2.4.3.7.ebuild b/app-admin/tripwire/tripwire-2.4.3.7.ebuild
index 4339d2ac489..10645955691 100644
--- a/app-admin/tripwire/tripwire-2.4.3.7.ebuild
+++ b/app-admin/tripwire/tripwire-2.4.3.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
@@ -14,23 +14,24 @@ SLOT="0"
KEYWORDS="amd64 ppc x86 ~x86-fbsd"
IUSE="libressl selinux ssl static +tools"
-DEPEND="sys-devel/automake
- sys-devel/autoconf
+DEPEND="
ssl? (
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
- )"
-RDEPEND="virtual/cron
+ )
+"
+RDEPEND="${DEPEND}
+ virtual/cron
virtual/mta
selinux? ( sec-policy/selinux-tripwire )
- ssl? ( dev-libs/openssl )"
+"
PDEPEND="tools? ( app-admin/mktwpol )"
S="${WORKDIR}/tripwire-open-source-${PV}"
src_prepare() {
+ default
eautoreconf
- eapply_user
}
src_configure() {
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2021-04-30 17:10 Mikle Kolyada
0 siblings, 0 replies; 34+ messages in thread
From: Mikle Kolyada @ 2021-04-30 17:10 UTC (permalink / raw
To: gentoo-commits
commit: ca0ac9822d2f680d0cf0a27f868ec7c7f033d3c1
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 30 17:02:01 2021 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Apr 30 17:10:32 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca0ac982
app-admin/tripwire: remove libressl support
Package-Manager: Portage-3.0.18, Repoman-3.0.2
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
app-admin/tripwire/tripwire-2.4.3.7.ebuild | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/app-admin/tripwire/tripwire-2.4.3.7.ebuild b/app-admin/tripwire/tripwire-2.4.3.7.ebuild
index db6b19a2144..423a09ff991 100644
--- a/app-admin/tripwire/tripwire-2.4.3.7.ebuild
+++ b/app-admin/tripwire/tripwire-2.4.3.7.ebuild
@@ -12,13 +12,10 @@ SRC_URI="https://github.com/Tripwire/tripwire-open-source/archive/${PV}.tar.gz -
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
-IUSE="libressl selinux ssl static +tools"
+IUSE="selinux ssl static +tools"
DEPEND="
- ssl? (
- !libressl? ( dev-libs/openssl:0= )
- libressl? ( dev-libs/libressl:0= )
- )
+ ssl? ( dev-libs/openssl:0= )
"
RDEPEND="${DEPEND}
virtual/cron
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2021-06-15 1:22 Sam James
0 siblings, 0 replies; 34+ messages in thread
From: Sam James @ 2021-06-15 1:22 UTC (permalink / raw
To: gentoo-commits
commit: cd260d9a9fdb2c2a8f0ef7b4e947c7df0ef1d2a2
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 15 01:21:32 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun 15 01:21:36 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd260d9a
app-admin/tripwire: update EAPI 6 -> 7, workaround GCC 11 failure
Set C++ standard to c++14 rather than perform a huge sed on the byte type.
Closes: https://bugs.gentoo.org/786465
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/tripwire/tripwire-2.4.3.7.ebuild | 15 ++++++++++++---
1 file changed, 12 insertions(+), 3 deletions(-)
diff --git a/app-admin/tripwire/tripwire-2.4.3.7.ebuild b/app-admin/tripwire/tripwire-2.4.3.7.ebuild
index 423a09ff991..306f4125452 100644
--- a/app-admin/tripwire/tripwire-2.4.3.7.ebuild
+++ b/app-admin/tripwire/tripwire-2.4.3.7.ebuild
@@ -1,7 +1,7 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
inherit autotools flag-o-matic
@@ -36,8 +36,17 @@ src_configure() {
# see #32613, #45823, and others.
# -taviso@gentoo.org
strip-flags
- append-cppflags -DCONFIG_DIR='"\"/etc/tripwire\""' -fno-strict-aliasing
- econf $(use_enable ssl openssl) $(use_enable static)
+
+ append-cppflags -DCONFIG_DIR='"\"/etc/tripwire\""'
+ append-cflags -fno-strict-aliasing
+
+ # "integer.cpp:1162:24: error: reference to ‘byte’ is ambiguous"
+ # bug #786465
+ append-cxxflags -std=c++14
+
+ econf \
+ $(use_enable ssl openssl) \
+ $(use_enable static)
}
src_install() {
^ permalink raw reply related [flat|nested] 34+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/
@ 2021-06-15 4:45 Sam James
0 siblings, 0 replies; 34+ messages in thread
From: Sam James @ 2021-06-15 4:45 UTC (permalink / raw
To: gentoo-commits
commit: 5ef547cbebac38e4d36357fedea7511894cafa87
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 15 04:44:42 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun 15 04:44:42 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ef547cb
app-admin/tripwire: use append-flags
Bug: https://bugs.gentoo.org/786465
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/tripwire/tripwire-2.4.3.7.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/tripwire/tripwire-2.4.3.7.ebuild b/app-admin/tripwire/tripwire-2.4.3.7.ebuild
index 306f4125452..b89e3608164 100644
--- a/app-admin/tripwire/tripwire-2.4.3.7.ebuild
+++ b/app-admin/tripwire/tripwire-2.4.3.7.ebuild
@@ -38,7 +38,7 @@ src_configure() {
strip-flags
append-cppflags -DCONFIG_DIR='"\"/etc/tripwire\""'
- append-cflags -fno-strict-aliasing
+ append-flags -fno-strict-aliasing
# "integer.cpp:1162:24: error: reference to ‘byte’ is ambiguous"
# bug #786465
^ permalink raw reply related [flat|nested] 34+ messages in thread
end of thread, other threads:[~2021-06-15 4:45 UTC | newest]
Thread overview: 34+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-28 9:05 [gentoo-commits] repo/gentoo:master commit in: app-admin/tripwire/ José María Alonso
-- strict thread matches above, loose matches on Subject: below --
2021-06-15 4:45 Sam James
2021-06-15 1:22 Sam James
2021-04-30 17:10 Mikle Kolyada
2019-01-07 17:00 Lars Wendler
2018-05-26 8:56 Mikle Kolyada
2018-05-04 10:52 Agostino Sarubbo
2018-05-02 16:33 Thomas Deutschmann
2018-04-01 20:39 José María Alonso
2018-04-01 20:13 José María Alonso
2017-11-10 8:30 Sergei Trofimovich
2017-11-03 11:54 Manuel Rüger
2017-11-02 21:16 Thomas Deutschmann
2017-10-02 16:03 José María Alonso
2017-05-19 8:20 José María Alonso
2017-05-18 19:14 Michael Weber
2017-05-04 15:55 Agostino Sarubbo
2017-05-04 13:07 Agostino Sarubbo
2017-05-04 8:49 José María Alonso
2017-04-29 15:02 Agostino Sarubbo
2017-04-18 21:04 José María Alonso
2017-04-17 8:02 Agostino Sarubbo
2017-04-06 7:46 José María Alonso
2017-04-05 12:55 Agostino Sarubbo
2017-04-04 13:30 José María Alonso
2017-03-06 11:23 José María Alonso
2017-02-25 10:41 José María Alonso
2017-02-02 10:40 José María Alonso
2016-06-10 15:32 Agostino Sarubbo
2016-05-19 13:04 José María Alonso
2016-05-03 10:50 José María Alonso
2016-03-21 21:31 Anthony G. Basile
2016-01-25 15:44 Agostino Sarubbo
2015-12-26 1:14 Anthony G. Basile
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox