summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPacho Ramos <pacho@gentoo.org>2014-09-07 13:00:18 +0000
committerPacho Ramos <pacho@gentoo.org>2014-09-07 13:00:18 +0000
commitc43320679057f9db0ab0daf30e5590bbe21f2812 (patch)
tree56e74b92eb8f76911f0c471099edc50ee0e98988 /net-misc
parentBump octave to 3.8.2, fixes bump request Bug 520368, thanks to mrueg for repo... (diff)
downloadgentoo-2-c43320679057f9db0ab0daf30e5590bbe21f2812.tar.gz
gentoo-2-c43320679057f9db0ab0daf30e5590bbe21f2812.tar.bz2
gentoo-2-c43320679057f9db0ab0daf30e5590bbe21f2812.zip
Remove masked for removal versions
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'net-misc')
-rw-r--r--net-misc/iodine/ChangeLog8
-rw-r--r--net-misc/iodine/files/iodine-0.5.2-Makefile.patch38
-rw-r--r--net-misc/iodine/files/iodine-0.6.0_rc1-TestMessage.patch17
-rw-r--r--net-misc/iodine/files/iodine-0.6.0_rc1-ifconfig-path.patch21
-rw-r--r--net-misc/iodine/iodine-0.5.2.ebuild40
-rw-r--r--net-misc/iodine/iodine-0.6.0_rc1-r1.ebuild45
-rw-r--r--net-misc/iodine/iodine-0.6.0_rc1.ebuild44
7 files changed, 7 insertions, 206 deletions
diff --git a/net-misc/iodine/ChangeLog b/net-misc/iodine/ChangeLog
index 8cb8353b179a..f442bfc468a0 100644
--- a/net-misc/iodine/ChangeLog
+++ b/net-misc/iodine/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-misc/iodine
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/iodine/ChangeLog,v 1.11 2014/07/25 02:50:08 zx2c4 Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/iodine/ChangeLog,v 1.12 2014/09/07 13:00:18 pacho Exp $
+
+ 07 Sep 2014; Pacho Ramos <pacho@gentoo.org>
+ -files/iodine-0.5.2-Makefile.patch, -files/iodine-0.6.0_rc1-TestMessage.patch,
+ -files/iodine-0.6.0_rc1-ifconfig-path.patch, -iodine-0.5.2.ebuild,
+ -iodine-0.6.0_rc1-r1.ebuild, -iodine-0.6.0_rc1.ebuild:
+ Remove masked for removal versions
25 Jul 2014; Jason A. Donenfeld <zx2c4@gentoo.org>
+files/iodine-0.7.0-new-systemd.patch, iodine-0.7.0.ebuild:
diff --git a/net-misc/iodine/files/iodine-0.5.2-Makefile.patch b/net-misc/iodine/files/iodine-0.5.2-Makefile.patch
deleted file mode 100644
index 10e251287b62..000000000000
--- a/net-misc/iodine/files/iodine-0.5.2-Makefile.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-diff -NrU5 iodine-0.5.2.original/src/Makefile iodine-0.5.2/src/Makefile
---- iodine-0.5.2.original/src/Makefile 2009-08-07 19:58:30.000000000 -0600
-+++ iodine-0.5.2/src/Makefile 2009-08-07 20:34:01.000000000 -0600
-@@ -1,18 +1,18 @@
--CC = gcc
-+#CC = gcc
- COMMONOBJS = tun.o dns.o read.o encoding.o login.o base32.o base64.o md5.o common.o
- CLIENTOBJS = iodine.o
- CLIENT = ../bin/iodine
- SERVEROBJS = iodined.o user.o fw_query.o
- SERVER = ../bin/iodined
-
- OS = `echo $(TARGETOS) | tr "a-z" "A-Z"`
- ARCH = `uname -m`
-
- LIBPATH = -L.
--LDFLAGS = -lz `sh osflags $(TARGETOS) link` $(LIBPATH)
--CFLAGS = -c -g -Wall -D$(OS) -pedantic `sh osflags $(TARGETOS) cflags`
-+LDFLAGS += -lz `sh osflags $(TARGETOS) link` $(LIBPATH)
-+CFLAGS += -c -g -Wall -D$(OS) -pedantic `sh osflags $(TARGETOS) cflags`
-
- all: stateos $(CLIENT) $(SERVER)
-
- stateos:
- @echo OS is $(OS), arch is $(ARCH)
-@@ -27,11 +27,11 @@
- @mkdir -p ../bin
- @$(CC) $(COMMONOBJS) $(SERVEROBJS) -o $(SERVER) $(LDFLAGS)
-
- .c.o:
- @echo CC $<
-- @$(CC) $(CFLAGS) $< -o $@
-+ @$(CC) $(CFLAGS) $(LDFLAGS) $< -o $@
-
- clean:
- @echo "Cleaning src/"
- @rm -f $(CLIENT){,.exe} $(SERVER){,.exe} *~ *.o *.core
-
diff --git a/net-misc/iodine/files/iodine-0.6.0_rc1-TestMessage.patch b/net-misc/iodine/files/iodine-0.6.0_rc1-TestMessage.patch
deleted file mode 100644
index 529d242115bd..000000000000
--- a/net-misc/iodine/files/iodine-0.6.0_rc1-TestMessage.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff -NrU5 iodine-0.6.0-rc1.original/Makefile iodine-0.6.0-rc1/Makefile
---- iodine-0.6.0-rc1.original/Makefile 2009-01-25 15:40:04.000000000 -0600
-+++ iodine-0.6.0-rc1/Makefile 2011-06-07 14:09:00.000000000 -0600
-@@ -48,12 +48,11 @@
- $(RM) $(RM_FLAGS) $(DESTDIR)$(sbindir)/iodine
- $(RM) $(RM_FLAGS) $(DESTDIR)$(sbindir)/iodined
- $(RM) $(RM_FLAGS) $(DESTDIR)$(mandir)/man8/iodine.8
-
- test: all
-- @echo "!! The check library is required for compiling and running the tests"
-- @echo "!! Get it at http://check.sf.net"
-+ @echo "Executing tests target"
- @(cd tests; $(MAKE) TARGETOS=$(TARGETOS) all)
-
- clean:
- @echo "Cleaning..."
- @(cd src; $(MAKE) clean)
diff --git a/net-misc/iodine/files/iodine-0.6.0_rc1-ifconfig-path.patch b/net-misc/iodine/files/iodine-0.6.0_rc1-ifconfig-path.patch
deleted file mode 100644
index 074231f8fe19..000000000000
--- a/net-misc/iodine/files/iodine-0.6.0_rc1-ifconfig-path.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -ur iodine-0.6.0-rc1-original/src/tun.c iodine-0.6.0-rc1/src/tun.c
---- iodine-0.6.0-rc1-original/src/tun.c 2012-06-01 22:04:35.870962402 +0200
-+++ iodine-0.6.0-rc1/src/tun.c 2012-06-02 04:32:08.967846671 +0200
-@@ -455,7 +455,7 @@
- }
- #ifndef WINDOWS32
- snprintf(cmdline, sizeof(cmdline),
-- "/sbin/ifconfig %s %s %s netmask %s",
-+ "PATH=/bin:/sbin ifconfig %s %s %s netmask %s",
- if_name,
- ip,
- #ifdef FREEBSD
-@@ -522,7 +522,7 @@
-
- if (mtu > 200 && mtu <= 1500) {
- snprintf(cmdline, sizeof(cmdline),
-- "/sbin/ifconfig %s mtu %u",
-+ "PATH=/bin:/sbin ifconfig %s mtu %u",
- if_name,
- mtu);
-
diff --git a/net-misc/iodine/iodine-0.5.2.ebuild b/net-misc/iodine/iodine-0.5.2.ebuild
deleted file mode 100644
index 460cf278bc1a..000000000000
--- a/net-misc/iodine/iodine-0.5.2.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/iodine/iodine-0.5.2.ebuild,v 1.2 2011/11/05 22:38:07 robbat2 Exp $
-
-inherit linux-info eutils
-
-DESCRIPTION="IP over DNS tunnel"
-HOMEPAGE="http://code.kryo.se/iodine/"
-SRC_URI="http://code.kryo.se/${PN}/${P}.tar.gz"
-
-CONFIG_CHECK="~TUN"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="sys-libs/zlib"
-DEPEND="${RDEPEND}
- test? ( dev-libs/check )"
-
-src_unpack(){
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-Makefile.patch
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" || die "make failed"
-}
-
-src_install() {
- dobin bin/iodine bin/iodined || die "binaries failed"
- dodoc README CHANGELOG || die "docs failed"
- doman man/iodine.8 || die "man failed"
-
- newinitd "${FILESDIR}"/iodined.init iodined || die "initd failed"
- newconfd "${FILESDIR}"/iodined.conf iodined || die "confd failed"
- keepdir /var/empty
-}
diff --git a/net-misc/iodine/iodine-0.6.0_rc1-r1.ebuild b/net-misc/iodine/iodine-0.6.0_rc1-r1.ebuild
deleted file mode 100644
index 386b5a3e8cd8..000000000000
--- a/net-misc/iodine/iodine-0.6.0_rc1-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/iodine/iodine-0.6.0_rc1-r1.ebuild,v 1.2 2012/07/11 18:03:38 vostorga Exp $
-
-inherit linux-info eutils
-
-MY_P="${P/_/-}"
-
-DESCRIPTION="IP over DNS tunnel"
-HOMEPAGE="http://code.kryo.se/iodine/"
-SRC_URI="http://code.kryo.se/${PN}/${MY_P}.tar.gz"
-
-CONFIG_CHECK="~TUN"
-
-LICENSE="ISC GPL-2" #GPL-2 for init script bug #426060
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="sys-libs/zlib"
-DEPEND="${RDEPEND}
- test? ( dev-libs/check )"
-
-S="${WORKDIR}/${MY_P}"
-
-src_unpack(){
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-ifconfig-path.patch
- epatch "${FILESDIR}"/${P}-TestMessage.patch
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" || die "make failed"
-}
-
-src_install() {
- dobin bin/iodine bin/iodined || die "binaries failed"
- dodoc README CHANGELOG || die "docs failed"
- doman man/iodine.8 || die "man failed"
-
- newinitd "${FILESDIR}"/iodined.init iodined || die "initd failed"
- newconfd "${FILESDIR}"/iodined.conf iodined || die "confd failed"
- keepdir /var/empty
-}
diff --git a/net-misc/iodine/iodine-0.6.0_rc1.ebuild b/net-misc/iodine/iodine-0.6.0_rc1.ebuild
deleted file mode 100644
index a376f5f7e5a5..000000000000
--- a/net-misc/iodine/iodine-0.6.0_rc1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/iodine/iodine-0.6.0_rc1.ebuild,v 1.3 2011/11/05 22:38:07 robbat2 Exp $
-
-inherit linux-info eutils
-
-MY_P="${P/_/-}"
-
-DESCRIPTION="IP over DNS tunnel"
-HOMEPAGE="http://code.kryo.se/iodine/"
-SRC_URI="http://code.kryo.se/${PN}/${MY_P}.tar.gz"
-
-CONFIG_CHECK="~TUN"
-
-LICENSE="ISC"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND="sys-libs/zlib"
-DEPEND="${RDEPEND}
- test? ( dev-libs/check )"
-
-S="${WORKDIR}/${MY_P}"
-
-src_unpack(){
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-TestMessage.patch
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" || die "make failed"
-}
-
-src_install() {
- dobin bin/iodine bin/iodined || die "binaries failed"
- dodoc README CHANGELOG || die "docs failed"
- doman man/iodine.8 || die "man failed"
-
- newinitd "${FILESDIR}"/iodined.init iodined || die "initd failed"
- newconfd "${FILESDIR}"/iodined.conf iodined || die "confd failed"
- keepdir /var/empty
-}