aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Anderson <telans@posteo.de>2021-02-16 21:55:21 +1300
committerTheo Anderson <telans@posteo.de>2021-02-16 21:55:21 +1300
commit4527ddb74314561962519f7dae3614dbc81ec523 (patch)
tree517b142b1b0f0e13c565d0a40996432826d8c1d3 /net-wireless
parent.github: [pkgcheck] ignore OldPackageUpdate checks (diff)
downloadguru-4527ddb74314561962519f7dae3614dbc81ec523.tar.gz
guru-4527ddb74314561962519f7dae3614dbc81ec523.tar.bz2
guru-4527ddb74314561962519f7dae3614dbc81ec523.zip
net-wireless/eiwd: remove masked package
Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Theo Anderson <telans@posteo.de>
Diffstat (limited to 'net-wireless')
-rw-r--r--net-wireless/eiwd/Manifest1
-rw-r--r--net-wireless/eiwd/eiwd-1.6.1.ebuild50
-rw-r--r--net-wireless/eiwd/eiwd-1.7_pre20200606.ebuild63
-rw-r--r--net-wireless/eiwd/eiwd-9999.ebuild57
-rw-r--r--net-wireless/eiwd/files/20200416.patch15
-rw-r--r--net-wireless/eiwd/files/iwd.initd14
-rw-r--r--net-wireless/eiwd/files/main.conf4
-rw-r--r--net-wireless/eiwd/metadata.xml18
8 files changed, 0 insertions, 222 deletions
diff --git a/net-wireless/eiwd/Manifest b/net-wireless/eiwd/Manifest
deleted file mode 100644
index 65b311ab9..000000000
--- a/net-wireless/eiwd/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST eiwd-1.6-1.tar.xz 940492 BLAKE2B ba5256396510f6d092516ec210b7d274d7e984a1c7bf9f7ed5a8e1b7f0939c233d8a7e0d934f068c5bda5c7f54425134dca972ff1845396e7ed35298139e2923 SHA512 7f0e8522b01c455f16f43682b1f8b76ef15587f53cf4f6976870d9797e1d8f40f5c8146d23b277a3d555594ab534b832a837190734840429f58acce27e16edef
diff --git a/net-wireless/eiwd/eiwd-1.6.1.ebuild b/net-wireless/eiwd/eiwd-1.6.1.ebuild
deleted file mode 100644
index 3214ce084..000000000
--- a/net-wireless/eiwd/eiwd-1.6.1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PV="$(ver_rs 2 '-')"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="iwd without dbus"
-HOMEPAGE="https://github.com/dylanaraps/eiwd"
-SRC_URI="https://github.com/dylanaraps/eiwd/releases/download/${MY_PV}/${MY_P}.tar.xz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+client +monitor ofono +system-ell wired"
-
-DEPEND="system-ell? ( >=dev-libs/ell-0.31 )"
-RDEPEND="${DEPEND}
- !net-wireless/iwd
- net-wireless/wireless-regdb"
-BDEPEND="virtual/pkgconfig"
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
- local myeconfargs=(
- --sysconfdir="${EPREFIX}"/etc/iwd --localstatedir="${EPREFIX}"/var
- --disable-dbus
- $(use_enable client)
- $(use_enable monitor)
- $(use_enable ofono)
- $(use_enable system-ell external-ell)
- $(use_enable wired)
- )
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
- keepdir /var/lib/iwd
- newinitd "${FILESDIR}"/iwd.initd iwd
- insinto /etc/iwd/
- doins "${FILESDIR}"/main.conf
-}
-
-pkg_postinst() {
- elog "To use eiwd's built-in DNS features you also need net-dns/openresolv"
- elog "or net-misc/dhcpcd."
-}
diff --git a/net-wireless/eiwd/eiwd-1.7_pre20200606.ebuild b/net-wireless/eiwd/eiwd-1.7_pre20200606.ebuild
deleted file mode 100644
index 5a16f0aec..000000000
--- a/net-wireless/eiwd/eiwd-1.7_pre20200606.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools git-r3
-
-MY_PV="${PV}"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="iwd without dbus"
-HOMEPAGE="https://github.com/dylanaraps/eiwd"
-EGIT_REPO_URI="https://github.com/dylanaraps/eiwd.git"
-# Version 1.7 June 06,2020
-EGIT_COMMIT="9272d89"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS=""
-IUSE="+client +monitor ofono +system-ell wired"
-
-DEPEND="system-ell? ( >=dev-libs/ell-0.31 )"
-RDEPEND="${DEPEND}
- !net-wireless/iwd
- net-wireless/wireless-regdb"
-BDEPEND="virtual/pkgconfig"
-
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=(
- "${FILESDIR}"/20200416.patch
-)
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- --sysconfdir="${EPREFIX}"/etc/iwd --localstatedir="${EPREFIX}"/var
- --disable-dbus
- $(use_enable client)
- $(use_enable monitor)
- $(use_enable ofono)
- $(use_enable system-ell external-ell)
- $(use_enable wired)
- )
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
- keepdir /var/lib/iwd
- newinitd "${FILESDIR}"/iwd.initd iwd
- insinto /etc/iwd/
- doins "${FILESDIR}"/main.conf
-}
-
-pkg_postinst() {
- elog "To use eiwd's built-in DNS features you also need net-dns/openresolv"
- elog "or net-misc/dhcpcd."
-}
diff --git a/net-wireless/eiwd/eiwd-9999.ebuild b/net-wireless/eiwd/eiwd-9999.ebuild
deleted file mode 100644
index b64811446..000000000
--- a/net-wireless/eiwd/eiwd-9999.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools git-r3
-
-MY_PV="$(ver_rs 2 '-')"
-MY_P="${PN}-${MY_PV}"
-
-DESCRIPTION="iwd without dbus"
-HOMEPAGE="https://github.com/dylanaraps/eiwd"
-EGIT_REPO_URI="https://github.com/dylanaraps/eiwd.git"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS=""
-IUSE="+client +monitor ofono +system-ell wired"
-
-DEPEND="system-ell? ( >=dev-libs/ell-0.31 )"
-RDEPEND="${DEPEND}
- !net-wireless/iwd
- net-wireless/wireless-regdb"
-BDEPEND="virtual/pkgconfig"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- local myeconfargs=(
- --sysconfdir="${EPREFIX}"/etc/iwd --localstatedir="${EPREFIX}"/var
- --disable-dbus
- $(use_enable client)
- $(use_enable monitor)
- $(use_enable ofono)
- $(use_enable system-ell external-ell)
- $(use_enable wired)
- )
- econf "${myeconfargs[@]}"
-}
-
-src_install() {
- default
- keepdir /var/lib/iwd
- newinitd "${FILESDIR}"/iwd.initd iwd
- insinto /etc/iwd/
- doins "${FILESDIR}"/main.conf
-}
-
-pkg_postinst() {
- elog "To use eiwd's built-in DNS features you also need net-dns/openresolv"
- elog "or net-misc/dhcpcd."
-}
diff --git a/net-wireless/eiwd/files/20200416.patch b/net-wireless/eiwd/files/20200416.patch
deleted file mode 100644
index e559a21c2..000000000
--- a/net-wireless/eiwd/files/20200416.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-# Good for EGIT_COMMIT="7b5545a" which is Release 1.7
-# https://github.com/dylanaraps/eiwd/commit/39ef23ea037fe97c060fafbcbd25af684ae0c55e
-
-diff --git a/src/main.c b/src/main.c
-index 549f1bae..2ab44355 100644
---- a/src/main.c
-+++ b/src/main.c
-@@ -49,6 +49,7 @@
- #include "src/backtrace.h"
-
- static struct l_genl *genl;
-+static struct l_netlink *rtnl;
- static struct l_settings *iwd_config;
- static struct l_timeout *timeout;
- static const char *interfaces;
diff --git a/net-wireless/eiwd/files/iwd.initd b/net-wireless/eiwd/files/iwd.initd
deleted file mode 100644
index 6a1e0862b..000000000
--- a/net-wireless/eiwd/files/iwd.initd
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-command="/usr/libexec/iwd"
-pidfile="/run/iwd.pid"
-command_background="yes"
-
-depend() {
- provide net
- after bootmisc modules
- before dns dhcpcd
- keyword -shutdown
-}
diff --git a/net-wireless/eiwd/files/main.conf b/net-wireless/eiwd/files/main.conf
deleted file mode 100644
index 72ec4fbea..000000000
--- a/net-wireless/eiwd/files/main.conf
+++ /dev/null
@@ -1,4 +0,0 @@
-[General]
-EnableNetworkConfiguration=true
-[Network]
-NameResolvingService=resolvconf
diff --git a/net-wireless/eiwd/metadata.xml b/net-wireless/eiwd/metadata.xml
deleted file mode 100644
index 8bf0ce033..000000000
--- a/net-wireless/eiwd/metadata.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>gentoo@pogatzki.net</email>
- <name>Volkmar W. Pogatzki</name>
- </maintainer>
- <upstream>
- <remote-id type="github">dylanaraps/eiwd</remote-id>
- </upstream>
- <use>
- <flag name='client'>Enable iwctl client tool</flag>
- <flag name='monitor'>Enable iwmon monitor tool</flag>
- <flag name='ofono'>Enable support for oFono SIM authentication</flag>
- <flag name="system-ell">Use the system-wide <pkg>dev-libs/ell</pkg>instead of bundled. </flag>
- <flag name='wired'>Enable ethernet authentication daemon</flag>
- </use>
-</pkgmetadata>