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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E253A1581FB for ; Sun, 24 Nov 2024 23:18:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2041BE08A8; Sun, 24 Nov 2024 23:18:56 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 05A3FE08A8 for ; Sun, 24 Nov 2024 23:18:56 +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 14DF9343003 for ; Sun, 24 Nov 2024 23:18:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA447130F for ; Sun, 24 Nov 2024 23:18:53 +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: <1732490314.e876bbbcba2e9e3192693e894ef4f38557de74be.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dialup/xl2tpd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dialup/xl2tpd/xl2tpd-1.3.18-r1.ebuild X-VCS-Directories: net-dialup/xl2tpd/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: e876bbbcba2e9e3192693e894ef4f38557de74be X-VCS-Branch: master Date: Sun, 24 Nov 2024 23:18:53 +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: c6e0fd54-959f-4773-9fdd-a05c16369340 X-Archives-Hash: 266ae979d17f8415e4d79fd99874b1fb commit: e876bbbcba2e9e3192693e894ef4f38557de74be Author: Jaco Kroon uls co za> AuthorDate: Wed Nov 20 22:23:43 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Nov 24 23:18:34 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e876bbbc net-dialup/xl2tpd: drop 1.3.18-r1 Signed-off-by: Jaco Kroon uls.co.za> Closes: https://github.com/gentoo/gentoo/pull/39392 Signed-off-by: Sam James gentoo.org> net-dialup/xl2tpd/xl2tpd-1.3.18-r1.ebuild | 68 ------------------------------- 1 file changed, 68 deletions(-) diff --git a/net-dialup/xl2tpd/xl2tpd-1.3.18-r1.ebuild b/net-dialup/xl2tpd/xl2tpd-1.3.18-r1.ebuild deleted file mode 100644 index 6bc1880d53d6..000000000000 --- a/net-dialup/xl2tpd/xl2tpd-1.3.18-r1.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit systemd toolchain-funcs tmpfiles - -DESCRIPTION="A modern version of the Layer 2 Tunneling Protocol (L2TP) daemon" -HOMEPAGE="https://github.com/xelerance/xl2tpd" -SRC_URI="https://github.com/xelerance/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="GPL-2+" -SLOT="0" -KEYWORDS="amd64 ~arm arm64 ~loong ~mips ~ppc ppc64 ~riscv x86" -IUSE="+kernel" - -DEPEND=" - net-libs/libpcap - >=sys-kernel/linux-headers-2.6" - -RDEPEND=" - ${DEPEND} - net-dialup/ppp" - -DOCS=( CREDITS README.md BUGS CHANGES TODO doc/README.patents ) - -PATCHES=( - "${FILESDIR}/xl2tpd-1.3.18-r1-close-calls-when-pppd-terminates.patch" -) - -src_prepare() { - default - sed -e 's:/var/run/:/run/:' -i \ - file.h \ - l2tp.h \ - xl2tpd-control.c \ - doc/l2tp-secrets.5 \ - doc/xl2tpd.8 \ - doc/xl2tpd.conf.5 \ - || die "Error updating /var/run to /run" -} - -src_compile() { - tc-export CC - local OSFLAGS="-DLINUX" - use kernel && OSFLAGS+=" -DUSE_KERNEL" - emake OSFLAGS="${OSFLAGS}" -} - -src_install() { - emake PREFIX=/usr DESTDIR="${D}" install - - newinitd "${FILESDIR}"/xl2tpd-init-r1 xl2tpd - - systemd_dounit "${FILESDIR}"/xl2tpd.service - dotmpfiles "${FILESDIR}"/xl2tpd.conf - - einstalldocs - - insinto /etc/xl2tpd - newins doc/l2tpd.conf.sample xl2tpd.conf - insopts -m 0600 - newins doc/l2tp-secrets.sample l2tp-secrets -} - -pkg_postinst() { - tmpfiles_process xl2tpd.conf -}