public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "William Hubbs" <williamh@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/fluentd/
Date: Sat, 22 Jan 2022 00:30:08 +0000 (UTC)	[thread overview]
Message-ID: <1642811349.b0a43f560ea0dd7066add760b2d39d4e937fc0f6.williamh@gentoo> (raw)

commit:     b0a43f560ea0dd7066add760b2d39d4e937fc0f6
Author:     William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 21 15:52:44 2022 +0000
Commit:     William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Sat Jan 22 00:29:09 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0a43f56

app-admin/fluentd: remove vulnerable versions

Bug: https://bugs.gentoo.org/820779
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>

 app-admin/fluentd/Manifest             |  2 --
 app-admin/fluentd/fluentd-1.4.2.ebuild | 61 ----------------------------------
 app-admin/fluentd/fluentd-1.9.0.ebuild | 61 ----------------------------------
 3 files changed, 124 deletions(-)

diff --git a/app-admin/fluentd/Manifest b/app-admin/fluentd/Manifest
index 6ac1d5302f00..d372c73abf84 100644
--- a/app-admin/fluentd/Manifest
+++ b/app-admin/fluentd/Manifest
@@ -1,3 +1 @@
 DIST fluentd-1.14.4.gem 852480 BLAKE2B d358a067dbfd50164583e629133632039543560104ba5c2b71fb44e3eba0d4119e73556a64f20f60d1c4d67c9c430fa4ab9e3c37e6d0cba166de9396a9dc339b SHA512 09770d0a02e1a29cc0504cd384365fff9445ba5257950b7154f7ba939dbaefcc6b9b1441838cb89d4ddb3101f1715c271de27e1cf46aac430daf968ce145fbe0
-DIST fluentd-1.4.2.gem 443392 BLAKE2B 0aadec57268c69d45f4cf0e36be59e957b283f33f3dd6ac9bac0294c084b0e7d0e8fc28b1f12c3f5548dbcf6c1e562ff4a2c7f52bf7b0126fdafef102ba9562c SHA512 e67226a1e1fc6debda93b8efef9f19efb8eab7e0951a63ed646f2d01259f08d972c276aff8bf704acb64a10705460c4d68ac527cce1999707611cef79b4ae5cc
-DIST fluentd-1.9.0.gem 500224 BLAKE2B c09fc4d40e931ef2dc669cac1358c3b15baf434b7920f9481644953986dd1c3d140c4f4f8b53dd46d5972207ca7b1cb355f7fc51830b1adbb275c82ea9a7b979 SHA512 145b14b77900b2c7e4b83923d0d06465c7c5fdbfcdf39d1ab0be31a91e9003da7086b02b5fe9b4367956d892aadd65ac3ee34cafdf4f746c630a306af245b69d

diff --git a/app-admin/fluentd/fluentd-1.4.2.ebuild b/app-admin/fluentd/fluentd-1.4.2.ebuild
deleted file mode 100644
index 137927eb85ae..000000000000
--- a/app-admin/fluentd/fluentd-1.4.2.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-USE_RUBY="ruby23 ruby24 ruby25 ruby26"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-
-inherit ruby-fakegem user
-
-DESCRIPTION="data collector and unified logging layer (project under CNCF)"
-HOMEPAGE="https://www.fluentd.org"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-ruby_add_rdepend "
-	>=dev-ruby/msgpack-0.7.0
-	>=dev-ruby/yajl-ruby-1.0
-	>=dev-ruby/coolio-1.4.5
-	>=dev-ruby/serverengine-2.0.4
-	>=dev-ruby/http_parser_rb-0.5.1
-	>=dev-ruby/sigdump-0.2.2
-	>=dev-ruby/tzinfo-1.0
-	>=dev-ruby/strptime-0.2.2"
-
-pkg_setup() {
-	enewgroup ${PN}
-	enewuser ${PN} -1 -1 -1 ${PN}
-}
-
-all_ruby_prepare() {
-	sed -i \
-		-e '/tzinfo-data/d' \
-		-e '/dig_rb/d' \
-		"${PN}".gemspec || die "'sed failed"
-
-	# Avoid test dependency on unpackaged oj
-	rm -f test/test_event_time.rb || die
-}
-
-all_ruby_install() {
-	all_fakegem_install
-	keepdir /var/log/fluentd
-	fowners fluentd:adm /var/log/fluentd
-	insinto /etc/fluent
-	doins fluent.conf
-	newconfd "${FILESDIR}"/${PN}.confd ${PN}
-	newinitd "${FILESDIR}"/${PN}.initd ${PN}
-	insinto /etc/logrotate.d
-	newins "${FILESDIR}"/${PN}.logrotate ${PN}
-}
-
-pkg_postinst() {
-	if [[ -z "${REPLACING_VERSIONS}" ]]; then
-		elog "A default configuration file has been installed in"
-		elog "${EROOT}etc/fluent/fluent.conf. You will need to edit"
-		elog "this file to match your configuration."
-	fi
-}

diff --git a/app-admin/fluentd/fluentd-1.9.0.ebuild b/app-admin/fluentd/fluentd-1.9.0.ebuild
deleted file mode 100644
index 501d09685987..000000000000
--- a/app-admin/fluentd/fluentd-1.9.0.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-USE_RUBY="ruby23 ruby24 ruby25 ruby26"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-
-inherit ruby-fakegem user
-
-DESCRIPTION="data collector and unified logging layer (project under CNCF)"
-HOMEPAGE="https://www.fluentd.org"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-
-ruby_add_rdepend "
-	>=dev-ruby/coolio-1.4.5
-	>=dev-ruby/http_parser_rb-0.5.1
-	>=dev-ruby/msgpack-1.3.1
-	>=dev-ruby/serverengine-2.0.4
-	>=dev-ruby/sigdump-0.2.2
-	>=dev-ruby/strptime-0.2.2
-	>=dev-ruby/tzinfo-1.0
-	>=dev-ruby/yajl-ruby-1.0"
-
-pkg_setup() {
-	enewgroup ${PN}
-	enewuser ${PN} -1 -1 -1 ${PN}
-}
-
-all_ruby_prepare() {
-	sed -i \
-		-e '/tzinfo-data/d' \
-		-e '/dig_rb/d' \
-		"${PN}".gemspec || die "'sed failed"
-
-	# Avoid test dependency on unpackaged oj
-	rm -f test/test_event_time.rb || die
-}
-
-all_ruby_install() {
-	all_fakegem_install
-	keepdir /var/log/fluentd
-	fowners fluentd:adm /var/log/fluentd
-	insinto /etc/fluent
-	doins fluent.conf
-	newconfd "${FILESDIR}"/${PN}.confd ${PN}
-	newinitd "${FILESDIR}"/${PN}.initd ${PN}
-	insinto /etc/logrotate.d
-	newins "${FILESDIR}"/${PN}.logrotate ${PN}
-}
-
-pkg_postinst() {
-	if [[ -z "${REPLACING_VERSIONS}" ]]; then
-		elog "A default configuration file has been installed in"
-		elog "${EROOT}/etc/fluent/fluent.conf. You will need to edit"
-		elog "this file to match your configuration."
-	fi
-}


             reply	other threads:[~2022-01-22  0:30 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-22  0:30 William Hubbs [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-01-10 15:50 [gentoo-commits] repo/gentoo:master commit in: app-admin/fluentd/ Sam James
2023-10-22  8:23 Hans de Graaff
2023-06-25 15:58 Hans de Graaff
2023-03-26 10:42 Hans de Graaff
2021-07-06 10:26 Hans de Graaff
2020-01-23 23:05 Thomas Deutschmann
2020-01-23 18:31 William Hubbs
2019-12-13 17:13 Mikle Kolyada
2019-11-17  7:36 Hans de Graaff
2019-04-06 21:32 Mikle Kolyada
2019-03-30 11:54 Mikle Kolyada
2019-03-05 17:56 Mikle Kolyada
2019-01-10  8:36 Mikle Kolyada
2018-12-28 14:41 Mikle Kolyada
2018-12-28 14:41 Mikle Kolyada
2018-12-24  7:09 Hans de Graaff
2018-12-22 10:52 Mikle Kolyada
2018-12-17 10:55 Mikle Kolyada
2018-12-16 19:05 Mikle Kolyada
2018-06-27 21:51 William Hubbs
2018-05-02  0:06 William Hubbs
2018-04-10  1:43 William Hubbs

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1642811349.b0a43f560ea0dd7066add760b2d39d4e937fc0f6.williamh@gentoo \
    --to=williamh@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox