public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Ian Delaney" <idella4@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/vde/
Date: Sun,  3 Jan 2016 11:00:15 +0000 (UTC)	[thread overview]
Message-ID: <1451818800.c5778bdbfb01745cb5067003d71e9e2f47a892ba.idella4@gentoo> (raw)

commit:     c5778bdbfb01745cb5067003d71e9e2f47a892ba
Author:     Ian Delaney <idella4 <AT> gentoo <DOT> org>
AuthorDate: Sun Jan  3 09:15:33 2016 +0000
Commit:     Ian Delaney <idella4 <AT> gentoo <DOT> org>
CommitDate: Sun Jan  3 11:00:00 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5778bdb

net-misc/vde:  rm old vns. 2.3.1, 2.3.2, and 2.3.2-r1

nominated by new proxy maintainer is direct discussion

Package-Manager: portage-2.2.26

 net-misc/vde/Manifest            |  1 -
 net-misc/vde/vde-2.3.1.ebuild    | 48 -----------------------------
 net-misc/vde/vde-2.3.2-r1.ebuild | 66 ----------------------------------------
 net-misc/vde/vde-2.3.2.ebuild    | 57 ----------------------------------
 4 files changed, 172 deletions(-)

diff --git a/net-misc/vde/Manifest b/net-misc/vde/Manifest
index 62417ad..e9f3b6d 100644
--- a/net-misc/vde/Manifest
+++ b/net-misc/vde/Manifest
@@ -1,3 +1,2 @@
 DIST vde2-2.2.2.tar.bz2 472059 SHA256 7d4b68c1ba1b661db05ff3674abff4d2ad5da31bb3471699bbec3f2f360b483a SHA512 47dab6f266fa9bb9e581fc3339719d7ee26b2b293ebdd9dca500d1c08e05fe90299fb2962ca4e6efc8528f1291ec0eb3f429cf3a4bbfb1cd0539d68fa39aeab0 WHIRLPOOL fa2ff0d8d2b2fab6c76e84fe1c63fe32c649dc972cc4735d5d4f0b4fa2b0dba4cce6a3101fabdace1c05f441c4ec679554b1d9e078540910bd9fa559fed5e0a9
-DIST vde2-2.3.1.tar.bz2 510947 SHA256 0baa6d429e022eb4069252c0f58636c4b5e0dd2e3a495bdb14b32ecc363d147f SHA512 0484b8e09039263f3050acc4985b6250f025c12bb03c2a4e4f5a78252d8c220e4297e8bafff93949b1c6807982847fc81200b9ba4bb54abaa05cbfe67efcdbe1 WHIRLPOOL 46726e93531608dee3162cf32a8344b6d3ece433195d0ae15502610a2cfaf6397e2a3dd5fe19ba1fc2844e9b861620ee3710b688f4f0c84dd6246699a31b10c3
 DIST vde2-2.3.2.tar.bz2 600527 SHA256 cbea9b7e03097f87a6b5e98b07890d2275848f1fe4b9fcda77b8994148bc9542 SHA512 51be75fde5a526b988060f25322a8b20289b1677db2e3aa6dbee55875c1d7af564f9d8d201a0a4a1a842471cce06f29fcd83e55a5ff7acfdc36a8349cb2f3cc6 WHIRLPOOL dde513400eb725fe683c01110628ec9d2c3e415f0907d4f62d9bf09e2ec8ad14c4ad6437e428680a680118eb4297132f938b5cf71123480bf59c8f37eb0fee53

diff --git a/net-misc/vde/vde-2.3.1.ebuild b/net-misc/vde/vde-2.3.1.ebuild
deleted file mode 100644
index 8a5d528..0000000
--- a/net-misc/vde/vde-2.3.1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit eutils user
-
-MY_P="${PN}2-${PV}"
-S="${WORKDIR}/${MY_P}"
-
-DESCRIPTION="vde2 is a virtual distributed ethernet emulator for emulators like qemu, bochs, and uml"
-SRC_URI="mirror://sourceforge/vde/${MY_P}.tar.bz2"
-HOMEPAGE="http://vde.sourceforge.net/"
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
-
-IUSE="pcap ssl static-libs"
-
-RDEPEND="pcap? ( net-libs/libpcap )
-	ssl? ( dev-libs/openssl )"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-	econf \
-		$(use_enable pcap) \
-		$(use_enable ssl cryptcab) \
-		$(use_enable static-libs static)
-}
-
-src_install() {
-	default
-	use static-libs || find "${ED}" -name '*.la' -exec rm -f {} +
-
-	newinitd "${FILESDIR}"/vde.init vde
-	newconfd "${FILESDIR}"/vde.conf vde
-}
-
-pkg_postinst() {
-	# default group already used in kqemu
-	enewgroup qemu
-	einfo "To start vde automatically add it to the default runlevel:"
-	einfo "# rc-update add vde default"
-	einfo "You need to setup tap0 in /etc/conf.d/net"
-	einfo "To use it as a user be sure to set a group in /etc/conf.d/vde"
-	einfo "Users of the group can then run: $ vdeq qemu -sock /var/run/vde.ctl ..other opts"
-}

diff --git a/net-misc/vde/vde-2.3.2-r1.ebuild b/net-misc/vde/vde-2.3.2-r1.ebuild
deleted file mode 100644
index fa69802..0000000
--- a/net-misc/vde/vde-2.3.2-r1.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-inherit eutils python-single-r1 user
-
-MY_P="${PN}2-${PV}"
-
-DESCRIPTION="Virtual distributed ethernet emulator for emulators like qemu, bochs, and uml"
-SRC_URI="mirror://sourceforge/vde/${MY_P}.tar.bz2"
-HOMEPAGE="http://vde.sourceforge.net/"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
-
-IUSE="pcap python ssl static-libs"
-
-RDEPEND="pcap? ( net-libs/libpcap )
-	python? ( ${PYTHON_DEPS} )
-	ssl? ( dev-libs/openssl )"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_setup() {
-	# default group already used in kqemu
-	enewgroup qemu
-
-	python-single-r1_pkg_setup
-}
-
-src_prepare() {
-	epatch_user
-}
-
-src_configure() {
-	econf \
-		$(use_enable pcap) \
-		$(use_enable python) \
-		$(use_enable ssl cryptcab) \
-		$(use_enable static-libs static)
-}
-
-src_compile() {
-	emake -j1
-}
-
-src_install() {
-	default
-	prune_libtool_files
-
-	newinitd "${FILESDIR}"/vde.init vde
-	newconfd "${FILESDIR}"/vde.conf vde
-}
-
-pkg_postinst() {
-	einfo "To start vde automatically add it to the default runlevel:"
-	einfo "# rc-update add vde default"
-	einfo "You need to setup tap0 in /etc/conf.d/net"
-	einfo "To use it as an user be sure to set a group in /etc/conf.d/vde"
-	einfo "Users of the group can then run: $ vdeq qemu -sock /var/run/vde.ctl ..other opts"
-}

diff --git a/net-misc/vde/vde-2.3.2.ebuild b/net-misc/vde/vde-2.3.2.ebuild
deleted file mode 100644
index 88f4237..0000000
--- a/net-misc/vde/vde-2.3.2.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
-
-inherit eutils python user
-
-MY_P="${PN}2-${PV}"
-S="${WORKDIR}/${MY_P}"
-
-DESCRIPTION="vde2 is a virtual distributed ethernet emulator for emulators like qemu, bochs, and uml"
-SRC_URI="mirror://sourceforge/vde/${MY_P}.tar.bz2"
-HOMEPAGE="http://vde.sourceforge.net/"
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
-
-IUSE="pcap python ssl static-libs"
-
-RDEPEND="pcap? ( net-libs/libpcap )
-	ssl? ( dev-libs/openssl )"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-	econf \
-		$(use_enable pcap) \
-		$(use_enable python) \
-		$(use_enable ssl cryptcab) \
-		$(use_enable static-libs static)
-}
-
-src_compile() {
-	emake -j1 || die "emake failed"
-}
-
-src_install() {
-	default
-	use static-libs || find "${ED}" -name '*.la' -exec rm -f {} +
-
-	newinitd "${FILESDIR}"/vde.init vde
-	newconfd "${FILESDIR}"/vde.conf vde
-}
-
-pkg_postinst() {
-	# default group already used in kqemu
-	enewgroup qemu
-
-	einfo "To start vde automatically add it to the default runlevel:"
-	einfo "# rc-update add vde default"
-	einfo "You need to setup tap0 in /etc/conf.d/net"
-	einfo "To use it as an user be sure to set a group in /etc/conf.d/vde"
-	einfo "Users of the group can then run: $ vdeq qemu -sock /var/run/vde.ctl ..other opts"
-}


             reply	other threads:[~2016-01-03 11:00 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-03 11:00 Ian Delaney [this message]
  -- strict thread matches above, loose matches on Subject: below --
2023-07-07  0:45 [gentoo-commits] repo/gentoo:master commit in: net-misc/vde/ Sam James
2022-11-23  4:05 Sam James
2022-11-23  4:04 Sam James
2022-11-23  4:04 Sam James
2022-11-05 17:11 Agostino Sarubbo
2022-11-05  6:27 Sam James
2022-11-05  5:07 Arthur Zamarin
2022-11-05  4:42 Sam James
2022-11-05  4:42 Sam James
2022-11-05  3:34 Sam James
2022-11-05  3:34 Sam James
2022-07-24 16:32 Sam James
2022-05-05 10:06 WANG Xuerui
2021-09-21  8:10 Michał Górny
2021-09-02  6:25 Yixun Lan
2021-04-30 16:43 Mikle Kolyada
2020-11-07  3:49 Georgy Yakovlev
2020-09-01 17:42 Michał Górny
2020-08-22  5:43 Agostino Sarubbo
2020-08-19 22:40 Sam James
2020-08-17 13:48 Agostino Sarubbo
2020-08-17 10:01 Agostino Sarubbo
2020-04-24  1:35 Adam Feldman
2020-04-24  1:08 Adam Feldman
2019-07-30 13:44 Mike Gilbert
2019-05-08 17:05 Andreas Sturmlechner
2019-05-08 17:05 Andreas Sturmlechner
2018-07-23 19:34 Richard Farina
2017-10-03  7:39 Jonas Stein
2017-09-20 22:20 NP Hardass
2017-09-20 22:20 NP Hardass
2017-09-20 22:20 NP Hardass
2017-04-23 21:01 David Seifert
2016-10-17 23:14 Anthony G. Basile
2016-06-19  2:16 Göktürk Yüksek
2016-01-17 17:02 Agostino Sarubbo
2016-01-06 13:34 Agostino Sarubbo
2016-01-03  8:39 Ian Delaney
2015-12-27 12:28 Agostino Sarubbo

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1451818800.c5778bdbfb01745cb5067003d71e9e2f47a892ba.idella4@gentoo \
    --to=idella4@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox