From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1BAE3138334 for ; Wed, 11 Jul 2018 10:27:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2D183E0824; Wed, 11 Jul 2018 10:27:05 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E13DBE0824 for ; Wed, 11 Jul 2018 10:27:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 72EB2335CAC for ; Wed, 11 Jul 2018 10:27:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EB5C935E for ; Wed, 11 Jul 2018 10:26:59 +0000 (UTC) From: "Tony Vroon" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tony Vroon" Message-ID: <1531304817.01ec57b73dbb190f2b30d1d1f1ed5779b3cc087a.chainsaw@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/graylog2/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/graylog2/graylog2-2.4.5.ebuild X-VCS-Directories: app-admin/graylog2/ X-VCS-Committer: chainsaw X-VCS-Committer-Name: Tony Vroon X-VCS-Revision: 01ec57b73dbb190f2b30d1d1f1ed5779b3cc087a X-VCS-Branch: master Date: Wed, 11 Jul 2018 10:26:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e302f4ec-e91b-421f-8c60-27f8a91144f8 X-Archives-Hash: 569ee3925db5b20e8a63b9bd2d557ca5 commit: 01ec57b73dbb190f2b30d1d1f1ed5779b3cc087a Author: Tomas Mozes gmail com> AuthorDate: Tue Jun 26 15:28:45 2018 +0000 Commit: Tony Vroon gentoo org> CommitDate: Wed Jul 11 10:26:57 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01ec57b7 app-admin/graylog2: drop old Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-admin/graylog2/graylog2-2.4.5.ebuild | 84 -------------------------------- 1 file changed, 84 deletions(-) diff --git a/app-admin/graylog2/graylog2-2.4.5.ebuild b/app-admin/graylog2/graylog2-2.4.5.ebuild deleted file mode 100644 index 3e0e21b963f..00000000000 --- a/app-admin/graylog2/graylog2-2.4.5.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit user - -DESCRIPTION="Free and open source log management" -HOMEPAGE="https://graylog.org" -SRC_URI="https://packages.graylog2.org/releases/graylog/graylog-${PV}.tgz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~ppc64 ~x86" - -MY_PN="graylog" -S="${WORKDIR}/${MY_PN}-${PV}" - -INSTALL_DIR="/usr/share/graylog2" -DATA_DIR="/var/lib/graylog2" - -QA_PREBUILT="${INSTALL_DIR}/lib/sigar/libsigar*" -RESTRICT="strip" - -RDEPEND="virtual/jdk:1.8" - -pkg_setup() { - enewgroup graylog - enewuser graylog -1 -1 -1 graylog -} - -src_prepare() { - default - - # graylogctl is replaced by our own initd - rm -r bin || die - - # Stick to architecture of build host - if ! use amd64; then - rm -r lib/sigar/libsigar-amd64-*.so || die "Failed in removing AMD64 support libraries" - fi - if ! use ppc64; then - rm -r lib/sigar/libsigar-ppc64-*.so || die "Failed in removing PPC64 support libraries" - fi - if ! use x86; then - rm -r lib/sigar/libsigar-x86-*.so || die "Failed in removing X86 support libraries" - fi - # Currently unsupported platforms - # QA warning galore but testing/patches welcome - rm lib/sigar/libsigar-*freebsd*so \ - lib/sigar/libsigar-*solaris*so \ - lib/sigar/libsigar-*hpux*.sl \ - lib/sigar/libsigar-*macosx*.dylib \ - lib/sigar/libsigar-ia64-*.so \ - lib/sigar/libsigar-ppc-*.so \ - lib/sigar/libsigar-s390x*.so \ - lib/sigar/*winnt* || die "Failed in removing unsupported platform libraries" - - # gentoo specific paths - sed -i "s@\(node_id_file = \).*@\1${DATA_DIR}/node-id@g; \ - s@\(message_journal_dir = \).*@\1${DATA_DIR}/data/journal@g; \ - s@#\(content_packs_dir = \).*@\1/${DATA_DIR}/data/contentpacks@g" \ - graylog.conf.example || die -} - -src_compile() { - einfo "Nothing to compile; upstream supplies JAR only" -} - -src_install() { - insinto /etc/graylog2 - doins graylog.conf.example - - insinto ${DATA_DIR}/data/contentpacks - doins data/contentpacks/grok-patterns.json - - insinto "${INSTALL_DIR}" - doins * - - doins -r lib plugin - - newinitd "${FILESDIR}/initd-r1" graylog2 - newconfd "${FILESDIR}/confd-r1" graylog2 -}