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 DE159138334 for ; Mon, 11 Mar 2019 11:38:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CC120E0ADD; Mon, 11 Mar 2019 11:38:38 +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 A8D34E0ADD for ; Mon, 11 Mar 2019 11:38:38 +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 DF93533BE69 for ; Mon, 11 Mar 2019 11:38:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 89D24503 for ; Mon, 11 Mar 2019 11:38:34 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1552304309.a3b4f6fa483244743e02347f5493cb83a13e12d6.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dialup/freeradius/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dialup/freeradius/freeradius-3.0.18.ebuild X-VCS-Directories: net-dialup/freeradius/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: a3b4f6fa483244743e02347f5493cb83a13e12d6 X-VCS-Branch: master Date: Mon, 11 Mar 2019 11:38:34 +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: ff7ff55a-239c-47f0-a8ba-17e0960cda73 X-Archives-Hash: 6969c5fd9f5ddf08b45f00ad2b5d896b commit: a3b4f6fa483244743e02347f5493cb83a13e12d6 Author: Lars Wendler gentoo org> AuthorDate: Mon Mar 11 11:37:54 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Mon Mar 11 11:38:29 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3b4f6fa net-dialup/freeradius: Fixed src_install - Bumped ebuild to EAPI-7 - Added python3_7 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Lars Wendler gentoo.org> net-dialup/freeradius/freeradius-3.0.18.ebuild | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/net-dialup/freeradius/freeradius-3.0.18.ebuild b/net-dialup/freeradius/freeradius-3.0.18.ebuild index c512a5894ee..939365c85fc 100644 --- a/net-dialup/freeradius/freeradius-3.0.18.ebuild +++ b/net-dialup/freeradius/freeradius-3.0.18.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -PYTHON_COMPAT=( python{2_7,3_5,3_6} ) +PYTHON_COMPAT=( python{2_7,3_{5,6,7}} ) inherit autotools pam python-single-r1 systemd user MY_P="${PN}-server-${PV}" @@ -189,13 +189,6 @@ src_compile() { } src_install() { - dodoc CREDITS - - rm "${D}/usr/sbin/rc.radiusd" || die - - systemd_newtmpfilesd "${FILESDIR}"/freeradius.tmpfiles freeradius.conf - systemd_dounit "${FILESDIR}"/freeradius.service - dodir /etc diropts -m0750 -o root -g radius dodir /etc/raddb @@ -217,10 +210,17 @@ src_install() { pamd_mimic_system radiusd auth account password session + dodoc CREDITS + + rm "${ED}/usr/sbin/rc.radiusd" || die + newinitd "${FILESDIR}/radius.init-r3" radiusd newconfd "${FILESDIR}/radius.conf-r4" radiusd - prune_libtool_files + systemd_newtmpfilesd "${FILESDIR}"/freeradius.tmpfiles freeradius.conf + systemd_dounit "${FILESDIR}"/freeradius.service + + find "${ED}" \( -name "*.a" -o -name "*.la" \) -delete || die } pkg_config() {