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 08F8F13835A for ; Tue, 20 Apr 2021 01:21:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60E73E0876; Tue, 20 Apr 2021 01:21:13 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 5C992E0876 for ; Tue, 20 Apr 2021 01:21:12 +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 741C1340AB6 for ; Tue, 20 Apr 2021 01:21:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4752A737 for ; Tue, 20 Apr 2021 01:21:07 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1618881644.18f832eeda40819e634dacf5f74acddd1e88b6af.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/udpxy/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/udpxy/udpxy-1.0.23.7-r2.ebuild X-VCS-Directories: net-misc/udpxy/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 18f832eeda40819e634dacf5f74acddd1e88b6af X-VCS-Branch: master Date: Tue, 20 Apr 2021 01:21:07 +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: 16862770-1d06-4645-a1c0-4542df14f273 X-Archives-Hash: 27975b1a2870fb7c9da365be521dab0b commit: 18f832eeda40819e634dacf5f74acddd1e88b6af Author: Sam James gentoo org> AuthorDate: Tue Apr 20 01:14:22 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Apr 20 01:20:44 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18f832ee net-misc/udpxy: port to EAPI 7 Signed-off-by: Sam James gentoo.org> net-misc/udpxy/udpxy-1.0.23.7-r2.ebuild | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/net-misc/udpxy/udpxy-1.0.23.7-r2.ebuild b/net-misc/udpxy/udpxy-1.0.23.7-r2.ebuild index f7f7a11e3a1..73364f91047 100644 --- a/net-misc/udpxy/udpxy-1.0.23.7-r2.ebuild +++ b/net-misc/udpxy/udpxy-1.0.23.7-r2.ebuild @@ -1,23 +1,23 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit systemd toolchain-funcs versionator +inherit systemd toolchain-funcs -MY_PV=$(replace_version_separator 3 -) +MY_PV=$(ver_rs 3 -) DESCRIPTION="Small daemon to relay multicast UDP traffic to client's TCP (HTTP) connection" HOMEPAGE="https://sourceforge.net/projects/udpxy/" SRC_URI="http://www.udpxy.com/download/1_23/${PN}.${MY_PV}-prod.tar.gz" +S="${WORKDIR}/${PN}-${MY_PV}" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" -S="${WORKDIR}/${PN}-${MY_PV}" - src_prepare() { - eapply_user + default + tc-export CC } @@ -28,7 +28,7 @@ src_install() { doman doc/en/*.1 dodoc CHANGES README - newinitd "${FILESDIR}/${PN}.initd" ${PN} - newconfd "${FILESDIR}/${PN}.confd" ${PN} - systemd_dounit "${FILESDIR}/${PN}.service" + newinitd "${FILESDIR}"/${PN}.initd ${PN} + newconfd "${FILESDIR}"/${PN}.confd ${PN} + systemd_dounit "${FILESDIR}"/${PN}.service }