* [gentoo-commits] repo/gentoo:master commit in: net-dialup/cistronradius/files/, net-dialup/cistronradius/, profiles/
@ 2021-11-19 17:57 Jakov Smolić
0 siblings, 0 replies; only message in thread
From: Jakov Smolić @ 2021-11-19 17:57 UTC (permalink / raw
To: gentoo-commits
commit: 8f496ed7dab7c911b128968bb6f3541de5593bc8
Author: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 19 17:56:45 2021 +0000
Commit: Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Fri Nov 19 17:56:45 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f496ed7
net-dialup/cistronradius: treeclean
Closes: https://bugs.gentoo.org/819363
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>
net-dialup/cistronradius/Manifest | 1 -
.../cistronradius/cistronradius-1.6.8-r2.ebuild | 48 ----------------------
.../files/cistronradius-1.6.8-gcc41.patch | 11 -----
net-dialup/cistronradius/files/cistronradius.rc | 34 ---------------
net-dialup/cistronradius/metadata.xml | 5 ---
profiles/package.mask | 6 ---
6 files changed, 105 deletions(-)
diff --git a/net-dialup/cistronradius/Manifest b/net-dialup/cistronradius/Manifest
deleted file mode 100644
index a767c6728a83..000000000000
--- a/net-dialup/cistronradius/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST radiusd-cistron-1.6.8.tar.gz 199459 BLAKE2B 5cd40915597e8d02c4624c0ea9161ee50a09c85137f9cf2d84f99504af1581a58c52d99aab473a034ef557beefd1fc7753757b4a04c1bd460871d37a6c7479da SHA512 9d42ec39eaa78f0c35ca036cf891d45a99c38af03416e4bca2d9d883a9aac818a0da1a52b5c1d4e54a1bdb108b237ed92c16309b61b7aa24f8782d0d0e0f8de5
diff --git a/net-dialup/cistronradius/cistronradius-1.6.8-r2.ebuild b/net-dialup/cistronradius/cistronradius-1.6.8-r2.ebuild
deleted file mode 100644
index 4ff41bdc7fcd..000000000000
--- a/net-dialup/cistronradius/cistronradius-1.6.8-r2.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit epatch toolchain-funcs
-
-DESCRIPTION="Authentication and accounting server for terminal servers using RADIUS"
-HOMEPAGE="http://www.radius.cistron.nl/"
-SRC_URI="ftp://ftp.radius.cistron.nl/pub/radius/radiusd-cistron-${PV}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="-* x86"
-
-DEPEND="
- !net-dialup/freeradius
- !net-dialup/gnuradius"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/radiusd-cistron-${PV}"
-
-src_prepare() {
- epatch "${FILESDIR}/${P}-gcc41.patch"
- sed -i -e "s:SHAREDIR/::g" raddb/dictionary || die
- mv src/checkrad.pl src/checkrad || die
-
- epatch_user
-}
-
-src_compile() {
- emake -C src \
- CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \
- BINDIR=/usr/bin SBINDIR=/usr/sbin \
- MANDIR=/usr/share/man SHAREDIR=/usr/share/radius
-}
-
-src_install() {
- insinto /etc/raddb
- doins raddb/*
- dodoc README doc/{ChangeLog,FAQ.txt,README*}
- doman doc/{*.1,*.8,*.5rad,*.8rad}
-
- dosbin src/{checkrad,radiusd,radrelay}
- dobin src/{radclient,radlast,radtest,radwho,radzap}
-
- newinitd "${FILESDIR}/cistronradius.rc" cistronradius
-}
diff --git a/net-dialup/cistronradius/files/cistronradius-1.6.8-gcc41.patch b/net-dialup/cistronradius/files/cistronradius-1.6.8-gcc41.patch
deleted file mode 100644
index 7600df739c7b..000000000000
--- a/net-dialup/cistronradius/files/cistronradius-1.6.8-gcc41.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -Nru radiusd-cistron-1.6.8.orig/src/radiusd.h radiusd-cistron-1.6.8/src/radiusd.h
---- radiusd-cistron-1.6.8.orig/src/radiusd.h 2003-12-08 18:12:22.000000000 +0200
-+++ radiusd-cistron-1.6.8/src/radiusd.h 2006-09-21 15:33:05.000000000 +0300
-@@ -204,7 +204,6 @@
- extern char *radwtmp_path;
- extern UINT4 expiration_seconds;
- extern UINT4 warning_seconds;
--extern int radius_pid;
- extern int use_dbm;
- extern int use_dns;
- extern int use_wtmp;
diff --git a/net-dialup/cistronradius/files/cistronradius.rc b/net-dialup/cistronradius/files/cistronradius.rc
deleted file mode 100644
index 9155ee59b6a5..000000000000
--- a/net-dialup/cistronradius/files/cistronradius.rc
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
- need net
-}
-
-checkconfig() {
- if [ ! -x /usr/sbin/radiusd ] ; then
- eerror "The radius daemon was not found."
- eerror "Please (re)emerge cistronradius."
- return 1
- fi
-
- if [ ! -e /etc/raddb/clients ] ; then
- eerror "No /etc/raddb/clients file found."
- eerror "Please create the file and retry."
- return 1
- fi
-}
-
-start() {
- checkconfig || return 1
- ebegin "Starting Cistron Radius"
- start-stop-daemon --start --quiet --exec /usr/sbin/radiusd
- eend $?
-}
-
-stop() {
- ebegin "Stopping Cistron Radius"
- start-stop-daemon --stop --quiet --pidfile /var/run/radiusd.pid
- eend $?
-}
diff --git a/net-dialup/cistronradius/metadata.xml b/net-dialup/cistronradius/metadata.xml
deleted file mode 100644
index 85e4ed814fa2..000000000000
--- a/net-dialup/cistronradius/metadata.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<!-- maintainer-needed -->
-</pkgmetadata>
diff --git a/profiles/package.mask b/profiles/package.mask
index 7d2d0dcd939e..7d073fb23af4 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -495,12 +495,6 @@ net-misc/bwwhois
# Removal on 2021-11-20. Bug #819366
net-analyzer/quidscor
-# Jakov Smolić <jsmolic@gentoo.org> (2021-10-21)
-# No maintainer, no revdeps, dead upstream, EAPI 5.
-# No other distro is packaging this.
-# Removal on 2021-11-20. Bug #819363
-net-dialup/cistronradius
-
# Sam James <sam@gentoo.org> (2021-10-10)
# Needs upstream build system fixes (currently in progress).
# Python toggles don't work correctly right now.
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2021-11-19 17:58 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-19 17:57 [gentoo-commits] repo/gentoo:master commit in: net-dialup/cistronradius/files/, net-dialup/cistronradius/, profiles/ Jakov Smolić
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox