public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in net-misc/iodine: iodine-0.7.0.ebuild ChangeLog
@ 2014-07-18 15:53 Michael Weber (xmw)
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Weber (xmw) @ 2014-07-18 15:53 UTC (permalink / raw
  To: gentoo-commits

xmw         14/07/18 15:53:52

  Modified:             ChangeLog
  Added:                iodine-0.7.0.ebuild
  Log:
  Version bump (bug 513560, CVE-2014-4168), EAPI-5, approved by vostoga.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)

Revision  Changes    Path
1.10                 net-misc/iodine/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iodine/ChangeLog?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iodine/ChangeLog?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iodine/ChangeLog?r1=1.9&r2=1.10

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/iodine/ChangeLog,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- ChangeLog	17 Mar 2013 15:09:04 -0000	1.9
+++ ChangeLog	18 Jul 2014 15:53:52 -0000	1.10
@@ -1,6 +1,13 @@
 # ChangeLog for net-misc/iodine
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/iodine/ChangeLog,v 1.9 2013/03/17 15:09:04 hwoarang Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-misc/iodine/ChangeLog,v 1.10 2014/07/18 15:53:52 xmw Exp $
+
+*iodine-0.7.0 (18 Jul 2014)
+
+  18 Jul 2014; Michael Weber <xmw@gentoo.org>
+  +files/iodine-0.7.0-TestMessage.patch, +files/iodined-1.init,
+  +iodine-0.7.0.ebuild:
+  Version bump (bug 513560, CVE-2014-4168), EAPI-5, approved by vostoga.
 
   17 Mar 2013; Markos Chandras <hwoarang@gentoo.org> metadata.xml:
   Add proxy-maintainers to metadata.xml



1.1                  net-misc/iodine/iodine-0.7.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iodine/iodine-0.7.0.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iodine/iodine-0.7.0.ebuild?rev=1.1&content-type=text/plain

Index: iodine-0.7.0.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/iodine/iodine-0.7.0.ebuild,v 1.1 2014/07/18 15:53:52 xmw Exp $

EAPI=5

inherit linux-info eutils toolchain-funcs

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 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 )"

src_prepare(){
	epatch "${FILESDIR}"/${P}-TestMessage.patch

	sed -e '/^\s@echo \(CC\|LD\)/d' \
		-e 's:^\(\s\)@:\1:' \
		-i {,src/}Makefile || die

	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
	sed -e '/^install:/s: all: :' \
		-i Makefile || die
	emake prefix="${EPREFIX}"usr DESTDIR="${D}" install

	dodoc CHANGELOG README TODO

	newinitd "${FILESDIR}"/iodined-1.init iodined
	newconfd "${FILESDIR}"/iodined.conf iodined
	keepdir /var/empty
}





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

* [gentoo-commits] gentoo-x86 commit in net-misc/iodine: iodine-0.7.0.ebuild ChangeLog
@ 2014-07-25  2:50 Jason Donenfeld (zx2c4)
  0 siblings, 0 replies; 2+ messages in thread
From: Jason Donenfeld (zx2c4) @ 2014-07-25  2:50 UTC (permalink / raw
  To: gentoo-commits

zx2c4       14/07/25 02:50:08

  Modified:             iodine-0.7.0.ebuild ChangeLog
  Log:
  Build on newer systemd by using pkg-config to grab right library.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key A5DE03AE)

Revision  Changes    Path
1.2                  net-misc/iodine/iodine-0.7.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iodine/iodine-0.7.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iodine/iodine-0.7.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iodine/iodine-0.7.0.ebuild?r1=1.1&r2=1.2

Index: iodine-0.7.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/iodine/iodine-0.7.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- iodine-0.7.0.ebuild	18 Jul 2014 15:53:52 -0000	1.1
+++ iodine-0.7.0.ebuild	25 Jul 2014 02:50:08 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/iodine/iodine-0.7.0.ebuild,v 1.1 2014/07/18 15:53:52 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/iodine/iodine-0.7.0.ebuild,v 1.2 2014/07/25 02:50:08 zx2c4 Exp $
 
 EAPI=5
 
@@ -23,6 +23,7 @@
 
 src_prepare(){
 	epatch "${FILESDIR}"/${P}-TestMessage.patch
+	epatch "${FILESDIR}"/${P}-new-systemd.patch
 
 	sed -e '/^\s@echo \(CC\|LD\)/d' \
 		-e 's:^\(\s\)@:\1:' \



1.11                 net-misc/iodine/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iodine/ChangeLog?rev=1.11&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iodine/ChangeLog?rev=1.11&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/iodine/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-misc/iodine/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog	18 Jul 2014 15:53:52 -0000	1.10
+++ ChangeLog	25 Jul 2014 02:50:08 -0000	1.11
@@ -1,6 +1,10 @@
 # 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.10 2014/07/18 15:53:52 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/iodine/ChangeLog,v 1.11 2014/07/25 02:50:08 zx2c4 Exp $
+
+  25 Jul 2014; Jason A. Donenfeld <zx2c4@gentoo.org>
+  +files/iodine-0.7.0-new-systemd.patch, iodine-0.7.0.ebuild:
+  Build on newer systemd by using pkg-config to grab right library.
 
 *iodine-0.7.0 (18 Jul 2014)
 





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

end of thread, other threads:[~2014-07-25  2:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-18 15:53 [gentoo-commits] gentoo-x86 commit in net-misc/iodine: iodine-0.7.0.ebuild ChangeLog Michael Weber (xmw)
  -- strict thread matches above, loose matches on Subject: below --
2014-07-25  2:50 Jason Donenfeld (zx2c4)

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