public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-vpn/iodine/
@ 2017-10-12 12:09 Jonas Stein
  0 siblings, 0 replies; 4+ messages in thread
From: Jonas Stein @ 2017-10-12 12:09 UTC (permalink / raw
  To: gentoo-commits

commit:     49cb94fad92b766a4a489d6a0a734a126ea506ce
Author:     Jonas Stein <jstein <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 12 12:09:26 2017 +0000
Commit:     Jonas Stein <jstein <AT> gentoo <DOT> org>
CommitDate: Thu Oct 12 12:09:43 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49cb94fa

net-vpn/iodine: Proxied maintainer retired

Remove proxied maintainer from metadata as requested per mail.

Closes: https://bugs.gentoo.org/633106
Package-Manager: Portage-2.3.11, Repoman-2.3.3

 net-vpn/iodine/metadata.xml | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/net-vpn/iodine/metadata.xml b/net-vpn/iodine/metadata.xml
index 073848fe414..aa99aedbcb2 100644
--- a/net-vpn/iodine/metadata.xml
+++ b/net-vpn/iodine/metadata.xml
@@ -2,16 +2,8 @@
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
 	<maintainer type="person">
-		<email>root@kryo.se</email>
-		<name>Erik Ekman</name>
-	</maintainer>
-	<maintainer type="person">
 		<email>zx2c4@gentoo.org</email>
 		<name>Jason A. Donenfeld</name>
 	</maintainer>
-	<maintainer type="project">
-		<email>proxy-maint@gentoo.org</email>
-		<name>Proxy Maintainers</name>
-	</maintainer>
 	<longdescription>iodine lets you tunnel IPv4 data through a DNS server. This can be usable in different situations where internet access is firewalled, but DNS queries are allowed</longdescription>
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-vpn/iodine/
@ 2021-11-01 21:56 Jakov Smolić
  0 siblings, 0 replies; 4+ messages in thread
From: Jakov Smolić @ 2021-11-01 21:56 UTC (permalink / raw
  To: gentoo-commits

commit:     0db2ec3d97452fece7e383d75014bfb71e279289
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 30 19:05:28 2021 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Mon Nov  1 21:55:05 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0db2ec3d

net-vpn/iodine: Port to EAPI 8

Closes: https://bugs.gentoo.org/819261
Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 ...dine-0.7.0-r2.ebuild => iodine-0.7.0-r3.ebuild} | 24 ++++++++++------------
 1 file changed, 11 insertions(+), 13 deletions(-)

diff --git a/net-vpn/iodine/iodine-0.7.0-r2.ebuild b/net-vpn/iodine/iodine-0.7.0-r3.ebuild
similarity index 69%
rename from net-vpn/iodine/iodine-0.7.0-r2.ebuild
rename to net-vpn/iodine/iodine-0.7.0-r3.ebuild
index 1309208900a..0c944c2eeea 100644
--- a/net-vpn/iodine/iodine-0.7.0-r2.ebuild
+++ b/net-vpn/iodine/iodine-0.7.0-r3.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=8
 
-inherit linux-info epatch toolchain-funcs
+inherit linux-info toolchain-funcs
 
 DESCRIPTION="IP over DNS tunnel"
 HOMEPAGE="http://code.kryo.se/iodine/"
@@ -21,9 +21,13 @@ RDEPEND="sys-libs/zlib"
 DEPEND="${RDEPEND}
 	test? ( dev-libs/check )"
 
+PATCHES=(
+	"${FILESDIR}"/${P}-TestMessage.patch
+	"${FILESDIR}"/${P}-new-systemd.patch
+)
+
 src_prepare() {
-	epatch "${FILESDIR}"/${P}-TestMessage.patch
-	epatch "${FILESDIR}"/${P}-new-systemd.patch
+	default
 
 	sed -e '/^\s@echo \(CC\|LD\)/d' \
 		-e 's:^\(\s\)@:\1:' \
@@ -32,18 +36,12 @@ src_prepare() {
 	tc-export CC
 }
 
-src_compile() {
-	#shipped ./Makefiles doesn't pass -j<n> to submake
-	emake -C src TARGETOS=Linux all
-}
-
 src_install() {
-	#don't re-run submake
+	# Don't re-run submake
 	sed -e '/^install:/s: all: :' \
 		-i Makefile || die
-	emake prefix="${EPREFIX}"usr DESTDIR="${D}" install
-
-	dodoc CHANGELOG README TODO
+	emake prefix="${EPREFIX}"/usr DESTDIR="${D}" install
+	einstalldocs
 
 	newinitd "${FILESDIR}"/iodined-1.init iodined
 	newconfd "${FILESDIR}"/iodined.conf iodined


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-vpn/iodine/
@ 2022-11-01 19:19 Sam James
  0 siblings, 0 replies; 4+ messages in thread
From: Sam James @ 2022-11-01 19:19 UTC (permalink / raw
  To: gentoo-commits

commit:     fc396c142f7b743b4c49bfa88b927a448584b7b0
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 31 21:16:17 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Nov  1 19:19:03 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc396c14

net-vpn/iodine: use HTTPS

Signed-off-by: Sam James <sam <AT> gentoo.org>

 net-vpn/iodine/iodine-0.7.0-r3.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-vpn/iodine/iodine-0.7.0-r3.ebuild b/net-vpn/iodine/iodine-0.7.0-r3.ebuild
index 0c944c2eeea1..fe93c96bfcc7 100644
--- a/net-vpn/iodine/iodine-0.7.0-r3.ebuild
+++ b/net-vpn/iodine/iodine-0.7.0-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -6,8 +6,8 @@ EAPI=8
 inherit linux-info toolchain-funcs
 
 DESCRIPTION="IP over DNS tunnel"
-HOMEPAGE="http://code.kryo.se/iodine/"
-SRC_URI="http://code.kryo.se/${PN}/${P}.tar.gz"
+HOMEPAGE="https://code.kryo.se/iodine/"
+SRC_URI="https://code.kryo.se/${PN}/${P}.tar.gz"
 
 CONFIG_CHECK="~TUN"
 


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: net-vpn/iodine/
@ 2025-01-24  1:46 Louis Sautier
  0 siblings, 0 replies; 4+ messages in thread
From: Louis Sautier @ 2025-01-24  1:46 UTC (permalink / raw
  To: gentoo-commits

commit:     9fc8002f07428465326daf5887f5b8f212d5b8c9
Author:     Louis Sautier <sbraz <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 24 01:44:52 2025 +0000
Commit:     Louis Sautier <sbraz <AT> gentoo <DOT> org>
CommitDate: Fri Jan 24 01:46:09 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fc8002f

net-vpn/iodine: keyword 0.7.0-r4 for ~arm64

Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>

 net-vpn/iodine/iodine-0.7.0-r4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-vpn/iodine/iodine-0.7.0-r4.ebuild b/net-vpn/iodine/iodine-0.7.0-r4.ebuild
index acd02810647f..c1532a101985 100644
--- a/net-vpn/iodine/iodine-0.7.0-r4.ebuild
+++ b/net-vpn/iodine/iodine-0.7.0-r4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2025 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -13,7 +13,7 @@ CONFIG_CHECK="~TUN"
 
 LICENSE="ISC GPL-2" #GPL-2 for init script bug #426060
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2025-01-24  1:46 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-24  1:46 [gentoo-commits] repo/gentoo:master commit in: net-vpn/iodine/ Louis Sautier
  -- strict thread matches above, loose matches on Subject: below --
2022-11-01 19:19 Sam James
2021-11-01 21:56 Jakov Smolić
2017-10-12 12:09 Jonas Stein

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox