summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2018-03-14 18:51:44 +0100
committerMichał Górny <mgorny@gentoo.org>2018-03-14 18:51:44 +0100
commit25328616cdf6bac758b8d6782d342f1f4f4e4212 (patch)
tree6d64f2d00e7d5e4bf9a144f634a949900ed8fb55 /net-misc/ubridge
parentdev-qt/qttranslations: Tested on ~amd64-fbsd (diff)
downloadgentoo-25328616cdf6bac758b8d6782d342f1f4f4e4212.tar.gz
gentoo-25328616cdf6bac758b8d6782d342f1f4f4e4212.tar.bz2
gentoo-25328616cdf6bac758b8d6782d342f1f4f4e4212.zip
net-misc/ubridge: Revert "New package"
This package has been added without a maintainer. Reverts: a0773604aa0036f374239e9dd135edd7f0980d40 Closes: https://bugs.gentoo.org/650504
Diffstat (limited to 'net-misc/ubridge')
-rw-r--r--net-misc/ubridge/Manifest1
-rw-r--r--net-misc/ubridge/metadata.xml9
-rw-r--r--net-misc/ubridge/ubridge-0.9.14.ebuild43
3 files changed, 0 insertions, 53 deletions
diff --git a/net-misc/ubridge/Manifest b/net-misc/ubridge/Manifest
deleted file mode 100644
index 9af6c7d67bd0..000000000000
--- a/net-misc/ubridge/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST ubridge-0.9.14.tar.gz 63492 BLAKE2B 4c19bb79c264c9bec2ca39fea8b386817f6eb41d23b35f9fbd0a1407b45398ad5362bd76cbb81597438367a2af8d80308f13d3e8faa4e75c6173bbeb23da177d SHA512 7e92ca6ee8dd5815991c5d157278487cfad69710f0a63fc217d5d0e61678d272bf5a0d31b6afe25b1060df1ad13e229f1d573c03fecb1453167a9ff364283a5f
diff --git a/net-misc/ubridge/metadata.xml b/net-misc/ubridge/metadata.xml
deleted file mode 100644
index 3a39499f142b..000000000000
--- a/net-misc/ubridge/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <upstream>
- <bugs-to>https://github.com/GNS3/ubridge/issues</bugs-to>
- <remote-id type="github">GNS3/ubridge</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/net-misc/ubridge/ubridge-0.9.14.ebuild b/net-misc/ubridge/ubridge-0.9.14.ebuild
deleted file mode 100644
index f0697a74df8d..000000000000
--- a/net-misc/ubridge/ubridge-0.9.14.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit fcaps user
-
-DESCRIPTION="Bridge for UDP tunnels, Ethernet, TAP and VMnet interfaces"
-HOMEPAGE="https://github.com/GNS3/ubridge"
-SRC_URI="https://github.com/GNS3/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND="net-libs/libpcap:="
-
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
- enewgroup ubridge
-}
-
-src_prepare() {
- default
-
- sed -i -e "s/CFLAGS =/CFLAGS ?=/g" Makefile || die "Failed to fix Makefile"
-}
-
-src_install() {
- insinto /usr/bin
- insopts -m 750 -g ubridge
- doins ubridge
- dodoc README.rst
-}
-
-pkg_postinst() {
- fcaps -g ubridge -m 4710 -M 0710 cap_net_raw,cap_net_admin \
- "${EROOT%/}"/usr/bin/ubridge
-
- ewarn "NOTE: To read packets from the network interfaces with ubridge as"
- ewarn "normal user you have to add the appropriate user to the ubridge group."
-}