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 6749413835A for ; Fri, 26 Mar 2021 19:46:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 54316E0872; Fri, 26 Mar 2021 19:46:07 +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 3C120E0872 for ; Fri, 26 Mar 2021 19:46:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 32B2F340E65 for ; Fri, 26 Mar 2021 19:46:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2F1EB641 for ; Fri, 26 Mar 2021 19:46:02 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1616787927.430f11f43a802aec3e628f77fde301b9ff65674c.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-metrics/nginx-lua-prometheus/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-metrics/nginx-lua-prometheus/nginx-lua-prometheus-0.1_pre20170610.ebuild X-VCS-Directories: app-metrics/nginx-lua-prometheus/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 430f11f43a802aec3e628f77fde301b9ff65674c X-VCS-Branch: master Date: Fri, 26 Mar 2021 19:46:02 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b35e1900-cdd7-4d9f-a9c2-7c0cb7ac27f6 X-Archives-Hash: 4312cc814da13950b4451f3d6aa4d9dc commit: 430f11f43a802aec3e628f77fde301b9ff65674c Author: Conrad Kostecki gentoo org> AuthorDate: Fri Mar 26 19:12:11 2021 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Fri Mar 26 19:45:27 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=430f11f4 app-metrics/nginx-lua-prometheus: drop old version Dropping old version, which does not support slotted lua. Package-Manager: Portage-3.0.17, Repoman-3.0.2 Signed-off-by: Conrad Kostecki gentoo.org> .../nginx-lua-prometheus-0.1_pre20170610.ebuild | 33 ---------------------- 1 file changed, 33 deletions(-) diff --git a/app-metrics/nginx-lua-prometheus/nginx-lua-prometheus-0.1_pre20170610.ebuild b/app-metrics/nginx-lua-prometheus/nginx-lua-prometheus-0.1_pre20170610.ebuild deleted file mode 100644 index 7f60758a896..00000000000 --- a/app-metrics/nginx-lua-prometheus/nginx-lua-prometheus-0.1_pre20170610.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 2019-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -# This is the upstream tag which corresponds to this release. -# It needs to be updated with every bump. -TAG="0.1-20170610" - -inherit toolchain-funcs - -DESCRIPTION="Library that exports Nginx metrics to Prometheus" -HOMEPAGE="https://github.com/knyar/nginx-lua-prometheus" -SRC_URI="https://github.com/knyar/${PN}/archive/${TAG}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" - -COMMON_DEPEND=">=dev-lang/lua-5.1:0=" -DEPEND="${COMMON_DEPEND}" -RDEPEND="${COMMON_DEPEND} - www-servers/nginx[nginx_modules_http_lua]" -BDEPEND="${COMMON_DEPEND} - virtual/pkgconfig" - - S="${WORKDIR}/${PN}-${TAG}" - -src_install() { - insinto "$($(tc-getPKG_CONFIG) --variable INSTALL_LMOD lua)"/${PN} - doins prometheus.lua - dodoc *.md -}