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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 27366158089 for ; Sun, 15 Oct 2023 22:04:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5BB402BC014; Sun, 15 Oct 2023 22:04:41 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4337F2BC014 for ; Sun, 15 Oct 2023 22:04:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7BD4C335CCD for ; Sun, 15 Oct 2023 22:04:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EC49C95E for ; Sun, 15 Oct 2023 22:04:38 +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: <1697407246.eb50beb3f0042e73c3b8067bd51024dcfe4e6948.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/erlang/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/erlang/files/epmd.confd-r2 dev-lang/erlang/files/epmd.init-r2 dev-lang/erlang/files/epmd.service X-VCS-Directories: dev-lang/erlang/files/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: eb50beb3f0042e73c3b8067bd51024dcfe4e6948 X-VCS-Branch: master Date: Sun, 15 Oct 2023 22:04:38 +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: 265e2d13-48e6-4b58-9376-4ca594c795cf X-Archives-Hash: 8a4c419ca07f8f6722942ef0173ca1f3 commit: eb50beb3f0042e73c3b8067bd51024dcfe4e6948 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Tue Oct 10 18:37:09 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sun Oct 15 22:00:46 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb50beb3 dev-lang/erlang: remove unused files Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://github.com/gentoo/gentoo/pull/33281 Signed-off-by: Conrad Kostecki gentoo.org> dev-lang/erlang/files/epmd.confd-r2 | 2 -- dev-lang/erlang/files/epmd.init-r2 | 23 ----------------------- dev-lang/erlang/files/epmd.service | 9 --------- 3 files changed, 34 deletions(-) diff --git a/dev-lang/erlang/files/epmd.confd-r2 b/dev-lang/erlang/files/epmd.confd-r2 deleted file mode 100644 index 69fcb0d2aa17..000000000000 --- a/dev-lang/erlang/files/epmd.confd-r2 +++ /dev/null @@ -1,2 +0,0 @@ -#arguments for run erlang -command_args="-address 127.0.0.1" diff --git a/dev-lang/erlang/files/epmd.init-r2 b/dev-lang/erlang/files/epmd.init-r2 deleted file mode 100644 index 08a230ec15cf..000000000000 --- a/dev-lang/erlang/files/epmd.init-r2 +++ /dev/null @@ -1,23 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the Erlang Public License 1.1 - -name="Erlang Port Mapper Daemon" - -command="/usr/bin/epmd" -command_user="epmd" -command_group="epmd" - -command_background=yes -pidfile="/var/run/epmd.pid" - -depend() { - need loopback - before sshd -} - -stop() { - ebegin "Stopping ${name}" - ${command} -kill >/dev/null - eend $? -} diff --git a/dev-lang/erlang/files/epmd.service b/dev-lang/erlang/files/epmd.service deleted file mode 100644 index 57382ff36a40..000000000000 --- a/dev-lang/erlang/files/epmd.service +++ /dev/null @@ -1,9 +0,0 @@ -[Unit] -Description=Erlang Portmapper Daemon -Wants=network.target - -[Service] -ExecStart=/usr/bin/epmd - -[Install] -WantedBy=multi-user.target