public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: net-misc/tinc/
@ 2016-04-10  2:18 Anthony G. Basile
  0 siblings, 0 replies; 12+ messages in thread
From: Anthony G. Basile @ 2016-04-10  2:18 UTC (permalink / raw
  To: gentoo-commits

commit:     0f681ce9e8b4891582e0f9d44203a2b5b698c66d
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 10 02:25:32 2016 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun Apr 10 02:25:32 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f681ce9

net-misc/tinc: version bump to 1.0.27

Package-Manager: portage-2.2.26

 net-misc/tinc/Manifest           |  1 +
 net-misc/tinc/tinc-1.0.27.ebuild | 46 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/net-misc/tinc/Manifest b/net-misc/tinc/Manifest
index 1cdd426..0b1ceee 100644
--- a/net-misc/tinc/Manifest
+++ b/net-misc/tinc/Manifest
@@ -1,3 +1,4 @@
 DIST tinc-1.0.25.tar.gz 472819 SHA256 c5c1c554e594d77365b63222ef15f4460c0c202f9163a89a087333a779f4f133 SHA512 0d3cdfa3c7bad131f6b8b9c350afd6818b2cdb44066e322df7a2314d43c532472f372c689a793ec40f3981a55b21a1e0b37bb51b8e6c6a4a569bba0d6c3a7fa1 WHIRLPOOL 1e2e48af73ef69e99bd5e2ec2da9d93196fad4e7c436b80e02516bf7ac13741a3d40e95f1ebfa3c04de570b4024093db6c59752cd364da869c85720f2940b8db
 DIST tinc-1.0.26.tar.gz 473681 SHA256 2b4319ddb3bd2867e72532a233f640a58c2f4d83f1088183ae544b268646ba21 SHA512 33f0a21a6a7f5b4e3bad5e30437efe88738bab243d9ea303842c454be53de0296878da90502b577996767a07d597453054fd4cdefbd05d22b49a6fb78b2aa64c WHIRLPOOL b405587bdb24e378ea32323aa3638928cbbc96959ba71fd42baced7796e5867ad54bc7479ac50243e4f9c93403f07644ffda5ad8e407911f4471c2e6e67c0eda
+DIST tinc-1.0.27.tar.gz 479050 SHA256 24e33d336a807e4c892df9f8602e4a7bbbd6dcc43a6645773caa9171b5466697 SHA512 fe5b9ff139ad369f878a307a14a34465f3b875f3c023fb26631df7ddc5db74821495923972d42ca0ed275b0db6b29a54924fd79ade5b9169e0e0c3bdb95633e0 WHIRLPOOL acda9379a7cdb5357acbec0d068ba931d6b95ece7f2f8807b46b3ec2504d4b293b958625a981106c470c7e73fa9bcc6b7c1174ef58670d416579b9b96c5baaf0
 DIST tinc-1.1pre11.tar.gz 659259 SHA256 942594563d3aef926a2d04e9ece90c16daf1c700e99e3b91ff749e8377fbf757 SHA512 aca746cf660f560709bd5c9eea7aaa35fcdb123e82ebe1c73b69350b3c7829c454da8618ec6957cb4e1298fc594bd1a4083b8c3a6af64345199edad2db86fc9a WHIRLPOOL 54c2fd13de1329713f6e64d61a523f940052276283148b2030337a3bf6195c40bbd5140cdadc712dc17e1720d930851401b4b2d08cac09cd26c5796146b8a593

diff --git a/net-misc/tinc/tinc-1.0.27.ebuild b/net-misc/tinc/tinc-1.0.27.ebuild
new file mode 100644
index 0000000..ec2b902
--- /dev/null
+++ b/net-misc/tinc/tinc-1.0.27.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+inherit systemd
+
+DESCRIPTION="tinc is an easy to configure VPN implementation"
+HOMEPAGE="http://www.tinc-vpn.org/"
+SRC_URI="http://www.tinc-vpn.org/packages/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+IUSE="+lzo uml vde +zlib"
+
+DEPEND="dev-libs/openssl:=
+	lzo? ( dev-libs/lzo:2 )
+	zlib? ( sys-libs/zlib )"
+RDEPEND="${DEPEND}
+	vde? ( net-misc/vde )"
+
+src_configure() {
+	econf \
+		--enable-jumbograms \
+		--disable-tunemu  \
+		$(use_enable lzo) \
+		$(use_enable uml) \
+		$(use_enable vde) \
+		$(use_enable zlib)
+}
+
+src_install() {
+	emake DESTDIR="${D}" install
+	dodir /etc/tinc
+	dodoc AUTHORS NEWS README THANKS
+	doconfd "${FILESDIR}"/tinc.networks
+	newconfd "${FILESDIR}"/tincd.conf tincd
+	newinitd "${FILESDIR}"/tincd-r1 tincd
+	systemd_newunit "${FILESDIR}"/tincd_at.service "tincd@.service"
+}
+
+pkg_postinst() {
+	elog "This package requires the tun/tap kernel device."
+	elog "Look at http://www.tinc-vpn.org/ for how to configure tinc"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/tinc/
@ 2016-04-10 14:46 Anthony G. Basile
  0 siblings, 0 replies; 12+ messages in thread
From: Anthony G. Basile @ 2016-04-10 14:46 UTC (permalink / raw
  To: gentoo-commits

commit:     262907c5a89ab3af562ea3854d9b2384cb203a52
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 10 14:54:09 2016 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun Apr 10 14:54:26 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=262907c5

net-misc/tinc: version bump 1.0.28

Package-Manager: portage-2.2.26

 net-misc/tinc/Manifest           |  1 +
 net-misc/tinc/tinc-1.0.28.ebuild | 46 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 47 insertions(+)

diff --git a/net-misc/tinc/Manifest b/net-misc/tinc/Manifest
index 0b1ceee..de7baf9 100644
--- a/net-misc/tinc/Manifest
+++ b/net-misc/tinc/Manifest
@@ -1,4 +1,5 @@
 DIST tinc-1.0.25.tar.gz 472819 SHA256 c5c1c554e594d77365b63222ef15f4460c0c202f9163a89a087333a779f4f133 SHA512 0d3cdfa3c7bad131f6b8b9c350afd6818b2cdb44066e322df7a2314d43c532472f372c689a793ec40f3981a55b21a1e0b37bb51b8e6c6a4a569bba0d6c3a7fa1 WHIRLPOOL 1e2e48af73ef69e99bd5e2ec2da9d93196fad4e7c436b80e02516bf7ac13741a3d40e95f1ebfa3c04de570b4024093db6c59752cd364da869c85720f2940b8db
 DIST tinc-1.0.26.tar.gz 473681 SHA256 2b4319ddb3bd2867e72532a233f640a58c2f4d83f1088183ae544b268646ba21 SHA512 33f0a21a6a7f5b4e3bad5e30437efe88738bab243d9ea303842c454be53de0296878da90502b577996767a07d597453054fd4cdefbd05d22b49a6fb78b2aa64c WHIRLPOOL b405587bdb24e378ea32323aa3638928cbbc96959ba71fd42baced7796e5867ad54bc7479ac50243e4f9c93403f07644ffda5ad8e407911f4471c2e6e67c0eda
 DIST tinc-1.0.27.tar.gz 479050 SHA256 24e33d336a807e4c892df9f8602e4a7bbbd6dcc43a6645773caa9171b5466697 SHA512 fe5b9ff139ad369f878a307a14a34465f3b875f3c023fb26631df7ddc5db74821495923972d42ca0ed275b0db6b29a54924fd79ade5b9169e0e0c3bdb95633e0 WHIRLPOOL acda9379a7cdb5357acbec0d068ba931d6b95ece7f2f8807b46b3ec2504d4b293b958625a981106c470c7e73fa9bcc6b7c1174ef58670d416579b9b96c5baaf0
+DIST tinc-1.0.28.tar.gz 488837 SHA256 0b502699360f09ce2128a39cf02abca07bfc699fc02ce829b3a90cf5e1e8b344 SHA512 b449f59e45b72a75271d54af1b9359f69040e81960533ca70d2a1f84b6bb913ffe1e6d11265eb1d11b5577855ed495898ef3c387d14268b159f352c8e754f5ec WHIRLPOOL 9558328fc01e9ef716330167c958bdfe45c12365dccdd3dc8c878a1dd122a0710d41e434a4ec0f5a54427b2b04fd7204f5225bef8c64ddd9fde7e6d800e7a996
 DIST tinc-1.1pre11.tar.gz 659259 SHA256 942594563d3aef926a2d04e9ece90c16daf1c700e99e3b91ff749e8377fbf757 SHA512 aca746cf660f560709bd5c9eea7aaa35fcdb123e82ebe1c73b69350b3c7829c454da8618ec6957cb4e1298fc594bd1a4083b8c3a6af64345199edad2db86fc9a WHIRLPOOL 54c2fd13de1329713f6e64d61a523f940052276283148b2030337a3bf6195c40bbd5140cdadc712dc17e1720d930851401b4b2d08cac09cd26c5796146b8a593

diff --git a/net-misc/tinc/tinc-1.0.28.ebuild b/net-misc/tinc/tinc-1.0.28.ebuild
new file mode 100644
index 0000000..ec2b902
--- /dev/null
+++ b/net-misc/tinc/tinc-1.0.28.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+inherit systemd
+
+DESCRIPTION="tinc is an easy to configure VPN implementation"
+HOMEPAGE="http://www.tinc-vpn.org/"
+SRC_URI="http://www.tinc-vpn.org/packages/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+IUSE="+lzo uml vde +zlib"
+
+DEPEND="dev-libs/openssl:=
+	lzo? ( dev-libs/lzo:2 )
+	zlib? ( sys-libs/zlib )"
+RDEPEND="${DEPEND}
+	vde? ( net-misc/vde )"
+
+src_configure() {
+	econf \
+		--enable-jumbograms \
+		--disable-tunemu  \
+		$(use_enable lzo) \
+		$(use_enable uml) \
+		$(use_enable vde) \
+		$(use_enable zlib)
+}
+
+src_install() {
+	emake DESTDIR="${D}" install
+	dodir /etc/tinc
+	dodoc AUTHORS NEWS README THANKS
+	doconfd "${FILESDIR}"/tinc.networks
+	newconfd "${FILESDIR}"/tincd.conf tincd
+	newinitd "${FILESDIR}"/tincd-r1 tincd
+	systemd_newunit "${FILESDIR}"/tincd_at.service "tincd@.service"
+}
+
+pkg_postinst() {
+	elog "This package requires the tun/tap kernel device."
+	elog "Look at http://www.tinc-vpn.org/ for how to configure tinc"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/tinc/
@ 2016-04-25 10:53 Anthony G. Basile
  0 siblings, 0 replies; 12+ messages in thread
From: Anthony G. Basile @ 2016-04-25 10:53 UTC (permalink / raw
  To: gentoo-commits

commit:     88c26cb9b9d5a8e91c6e3b3c09b3c4846b1985e1
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 25 10:50:56 2016 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Mon Apr 25 10:53:15 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88c26cb9

net-misc/tinc: remove older versions

Package-Manager: portage-2.2.26

 net-misc/tinc/Manifest              |  4 --
 net-misc/tinc/metadata.xml          |  3 +-
 net-misc/tinc/tinc-1.0.25.ebuild    | 46 -----------------------
 net-misc/tinc/tinc-1.0.26.ebuild    | 46 -----------------------
 net-misc/tinc/tinc-1.0.27.ebuild    | 46 -----------------------
 net-misc/tinc/tinc-1.1_pre11.ebuild | 73 -------------------------------------
 6 files changed, 2 insertions(+), 216 deletions(-)

diff --git a/net-misc/tinc/Manifest b/net-misc/tinc/Manifest
index a0caf86..8abfcca 100644
--- a/net-misc/tinc/Manifest
+++ b/net-misc/tinc/Manifest
@@ -1,6 +1,2 @@
-DIST tinc-1.0.25.tar.gz 472819 SHA256 c5c1c554e594d77365b63222ef15f4460c0c202f9163a89a087333a779f4f133 SHA512 0d3cdfa3c7bad131f6b8b9c350afd6818b2cdb44066e322df7a2314d43c532472f372c689a793ec40f3981a55b21a1e0b37bb51b8e6c6a4a569bba0d6c3a7fa1 WHIRLPOOL 1e2e48af73ef69e99bd5e2ec2da9d93196fad4e7c436b80e02516bf7ac13741a3d40e95f1ebfa3c04de570b4024093db6c59752cd364da869c85720f2940b8db
-DIST tinc-1.0.26.tar.gz 473681 SHA256 2b4319ddb3bd2867e72532a233f640a58c2f4d83f1088183ae544b268646ba21 SHA512 33f0a21a6a7f5b4e3bad5e30437efe88738bab243d9ea303842c454be53de0296878da90502b577996767a07d597453054fd4cdefbd05d22b49a6fb78b2aa64c WHIRLPOOL b405587bdb24e378ea32323aa3638928cbbc96959ba71fd42baced7796e5867ad54bc7479ac50243e4f9c93403f07644ffda5ad8e407911f4471c2e6e67c0eda
-DIST tinc-1.0.27.tar.gz 479050 SHA256 24e33d336a807e4c892df9f8602e4a7bbbd6dcc43a6645773caa9171b5466697 SHA512 fe5b9ff139ad369f878a307a14a34465f3b875f3c023fb26631df7ddc5db74821495923972d42ca0ed275b0db6b29a54924fd79ade5b9169e0e0c3bdb95633e0 WHIRLPOOL acda9379a7cdb5357acbec0d068ba931d6b95ece7f2f8807b46b3ec2504d4b293b958625a981106c470c7e73fa9bcc6b7c1174ef58670d416579b9b96c5baaf0
 DIST tinc-1.0.28.tar.gz 488837 SHA256 0b502699360f09ce2128a39cf02abca07bfc699fc02ce829b3a90cf5e1e8b344 SHA512 b449f59e45b72a75271d54af1b9359f69040e81960533ca70d2a1f84b6bb913ffe1e6d11265eb1d11b5577855ed495898ef3c387d14268b159f352c8e754f5ec WHIRLPOOL 9558328fc01e9ef716330167c958bdfe45c12365dccdd3dc8c878a1dd122a0710d41e434a4ec0f5a54427b2b04fd7204f5225bef8c64ddd9fde7e6d800e7a996
-DIST tinc-1.1pre11.tar.gz 659259 SHA256 942594563d3aef926a2d04e9ece90c16daf1c700e99e3b91ff749e8377fbf757 SHA512 aca746cf660f560709bd5c9eea7aaa35fcdb123e82ebe1c73b69350b3c7829c454da8618ec6957cb4e1298fc594bd1a4083b8c3a6af64345199edad2db86fc9a WHIRLPOOL 54c2fd13de1329713f6e64d61a523f940052276283148b2030337a3bf6195c40bbd5140cdadc712dc17e1720d930851401b4b2d08cac09cd26c5796146b8a593
 DIST tinc-1.1pre12.tar.gz 695939 SHA256 f1d47265e94873bded1caea2b5d025d74b2fa338d8d3f7c725b834c56438dcce SHA512 ef1831b3715d4e209e1005623052ae4979dcdf56df6375ffdf26db7d948275260f56d92c11797926e723f0615c9d3d5ee123a86ee0de5078ce375b887a712670 WHIRLPOOL ea660d0c2a9648e1367224144def9f08e780dde930603b72805aedd3032509706641e13316bba568e156e32185e3a85e92143ffa34c277675f323c2bb6433b9d

diff --git a/net-misc/tinc/metadata.xml b/net-misc/tinc/metadata.xml
index 96b5e51..02dd537 100644
--- a/net-misc/tinc/metadata.xml
+++ b/net-misc/tinc/metadata.xml
@@ -11,9 +11,10 @@
 	</maintainer>
 	<longdescription>tinc is an easy to configure VPN implementation.</longdescription>
 	<use>
+		<!--
 		<flag name="gcrypt">Add support for encrypted log files using <pkg>dev-libs/libgcrypt</pkg></flag>
+		-->
 		<flag name="gui">Add GUI support, using <pkg>dev-python/wxpython</pkg></flag>
-		<flag name="openssl">Using <pkg>dev-libs/openssl</pkg> for cryptography-related functions</flag>
 		<flag name="uml"> Enable support for User Mode Linux Sockets</flag>
 		<flag name="vde"> Enable Virtual Distributed Ethernet (VDE) based networking</flag>
 	</use>

diff --git a/net-misc/tinc/tinc-1.0.25.ebuild b/net-misc/tinc/tinc-1.0.25.ebuild
deleted file mode 100644
index a185375..0000000
--- a/net-misc/tinc/tinc-1.0.25.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-inherit systemd
-
-DESCRIPTION="tinc is an easy to configure VPN implementation"
-HOMEPAGE="http://www.tinc-vpn.org/"
-SRC_URI="http://www.tinc-vpn.org/packages/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE="+lzo uml vde +zlib"
-
-DEPEND="dev-libs/openssl:=
-	lzo? ( dev-libs/lzo:2 )
-	zlib? ( sys-libs/zlib )"
-RDEPEND="${DEPEND}
-	vde? ( net-misc/vde )"
-
-src_configure() {
-	econf \
-		--enable-jumbograms \
-		--disable-tunemu  \
-		$(use_enable lzo) \
-		$(use_enable uml) \
-		$(use_enable vde) \
-		$(use_enable zlib)
-}
-
-src_install() {
-	emake DESTDIR="${D}" install
-	dodir /etc/tinc
-	dodoc AUTHORS NEWS README THANKS
-	doconfd "${FILESDIR}"/tinc.networks
-	newconfd "${FILESDIR}"/tincd.conf tincd
-	newinitd "${FILESDIR}"/tincd-r1 tincd
-	systemd_newunit "${FILESDIR}"/tincd_at.service "tincd@.service"
-}
-
-pkg_postinst() {
-	elog "This package requires the tun/tap kernel device."
-	elog "Look at http://www.tinc-vpn.org/ for how to configure tinc"
-}

diff --git a/net-misc/tinc/tinc-1.0.26.ebuild b/net-misc/tinc/tinc-1.0.26.ebuild
deleted file mode 100644
index a185375..0000000
--- a/net-misc/tinc/tinc-1.0.26.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-inherit systemd
-
-DESCRIPTION="tinc is an easy to configure VPN implementation"
-HOMEPAGE="http://www.tinc-vpn.org/"
-SRC_URI="http://www.tinc-vpn.org/packages/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE="+lzo uml vde +zlib"
-
-DEPEND="dev-libs/openssl:=
-	lzo? ( dev-libs/lzo:2 )
-	zlib? ( sys-libs/zlib )"
-RDEPEND="${DEPEND}
-	vde? ( net-misc/vde )"
-
-src_configure() {
-	econf \
-		--enable-jumbograms \
-		--disable-tunemu  \
-		$(use_enable lzo) \
-		$(use_enable uml) \
-		$(use_enable vde) \
-		$(use_enable zlib)
-}
-
-src_install() {
-	emake DESTDIR="${D}" install
-	dodir /etc/tinc
-	dodoc AUTHORS NEWS README THANKS
-	doconfd "${FILESDIR}"/tinc.networks
-	newconfd "${FILESDIR}"/tincd.conf tincd
-	newinitd "${FILESDIR}"/tincd-r1 tincd
-	systemd_newunit "${FILESDIR}"/tincd_at.service "tincd@.service"
-}
-
-pkg_postinst() {
-	elog "This package requires the tun/tap kernel device."
-	elog "Look at http://www.tinc-vpn.org/ for how to configure tinc"
-}

diff --git a/net-misc/tinc/tinc-1.0.27.ebuild b/net-misc/tinc/tinc-1.0.27.ebuild
deleted file mode 100644
index ec2b902..0000000
--- a/net-misc/tinc/tinc-1.0.27.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-inherit systemd
-
-DESCRIPTION="tinc is an easy to configure VPN implementation"
-HOMEPAGE="http://www.tinc-vpn.org/"
-SRC_URI="http://www.tinc-vpn.org/packages/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE="+lzo uml vde +zlib"
-
-DEPEND="dev-libs/openssl:=
-	lzo? ( dev-libs/lzo:2 )
-	zlib? ( sys-libs/zlib )"
-RDEPEND="${DEPEND}
-	vde? ( net-misc/vde )"
-
-src_configure() {
-	econf \
-		--enable-jumbograms \
-		--disable-tunemu  \
-		$(use_enable lzo) \
-		$(use_enable uml) \
-		$(use_enable vde) \
-		$(use_enable zlib)
-}
-
-src_install() {
-	emake DESTDIR="${D}" install
-	dodir /etc/tinc
-	dodoc AUTHORS NEWS README THANKS
-	doconfd "${FILESDIR}"/tinc.networks
-	newconfd "${FILESDIR}"/tincd.conf tincd
-	newinitd "${FILESDIR}"/tincd-r1 tincd
-	systemd_newunit "${FILESDIR}"/tincd_at.service "tincd@.service"
-}
-
-pkg_postinst() {
-	elog "This package requires the tun/tap kernel device."
-	elog "Look at http://www.tinc-vpn.org/ for how to configure tinc"
-}

diff --git a/net-misc/tinc/tinc-1.1_pre11.ebuild b/net-misc/tinc/tinc-1.1_pre11.ebuild
deleted file mode 100644
index 0081184..0000000
--- a/net-misc/tinc/tinc-1.1_pre11.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-MY_PV=${PV/_/}
-MY_P=${PN}-${MY_PV}
-
-PYTHON_COMPAT=( python2_7 )
-inherit eutils systemd python-any-r1
-
-DESCRIPTION="tinc is an easy to configure VPN implementation"
-HOMEPAGE="http://www.tinc-vpn.org/"
-SRC_URI="http://www.tinc-vpn.org/packages/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE="+lzo +ncurses +openssl gcrypt gui +readline uml vde +zlib"
-
-DEPEND="dev-libs/openssl:=
-	lzo? ( dev-libs/lzo:2 )
-	ncurses? ( sys-libs/ncurses )
-	readline? ( sys-libs/readline:= )
-	zlib? ( sys-libs/zlib )"
-RDEPEND="${DEPEND}
-	vde? ( net-misc/vde )
-	${PYTHON_DEPS}
-	gui? ( $(python_gen_any_dep '
-	dev-python/wxpython[${PYTHON_USEDEP}]
-	') )"
-
-REQUIRED_USE="^^ ( openssl gcrypt )"
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
-	econf \
-		--enable-jumbograms \
-		--disable-tunemu  \
-		--with-windows2000 \
-		--disable-silent-rules \
-		$(use_enable lzo) \
-		$(use_enable ncurses curses) \
-		$(use_enable readline) \
-		$(use_enable uml) \
-		$(use_enable vde) \
-		$(use_enable zlib) \
-		$(use_with openssl) \
-#		$(use_with gcrypt libgcrypt), upstream not ready
-}
-
-src_install() {
-	emake DESTDIR="${D}" install
-	dodir /etc/tinc
-	dodoc AUTHORS NEWS README THANKS
-	doconfd "${FILESDIR}"/tinc.networks
-	newconfd "${FILESDIR}"/tincd.conf tincd
-	newinitd "${FILESDIR}"/tincd-r1 tincd
-	systemd_newunit "${FILESDIR}"/tincd_at.service "tincd@.service"
-
-	if use gui; then
-		python_fix_shebang "${ED}"/usr/bin/tinc-gui
-	else
-		rm -f "${ED}"/usr/bin/tinc-gui || die
-	fi
-}
-
-pkg_postinst() {
-	elog "This package requires the tun/tap kernel device."
-	elog "Look at http://www.tinc-vpn.org/ for how to configure tinc"
-}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/tinc/
@ 2016-04-25 10:53 Anthony G. Basile
  0 siblings, 0 replies; 12+ messages in thread
From: Anthony G. Basile @ 2016-04-25 10:53 UTC (permalink / raw
  To: gentoo-commits

commit:     5dd9633ca504055d258388943b3544bbf3b4ae06
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 25 10:47:10 2016 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Mon Apr 25 10:53:12 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dd9633c

net-misc/tinc: version bump to 1.1pre12

Package-Manager: portage-2.2.26

 net-misc/tinc/Manifest              |  1 +
 net-misc/tinc/tinc-1.1_pre12.ebuild | 76 +++++++++++++++++++++++++++++++++++++
 2 files changed, 77 insertions(+)

diff --git a/net-misc/tinc/Manifest b/net-misc/tinc/Manifest
index de7baf9..a0caf86 100644
--- a/net-misc/tinc/Manifest
+++ b/net-misc/tinc/Manifest
@@ -3,3 +3,4 @@ DIST tinc-1.0.26.tar.gz 473681 SHA256 2b4319ddb3bd2867e72532a233f640a58c2f4d83f1
 DIST tinc-1.0.27.tar.gz 479050 SHA256 24e33d336a807e4c892df9f8602e4a7bbbd6dcc43a6645773caa9171b5466697 SHA512 fe5b9ff139ad369f878a307a14a34465f3b875f3c023fb26631df7ddc5db74821495923972d42ca0ed275b0db6b29a54924fd79ade5b9169e0e0c3bdb95633e0 WHIRLPOOL acda9379a7cdb5357acbec0d068ba931d6b95ece7f2f8807b46b3ec2504d4b293b958625a981106c470c7e73fa9bcc6b7c1174ef58670d416579b9b96c5baaf0
 DIST tinc-1.0.28.tar.gz 488837 SHA256 0b502699360f09ce2128a39cf02abca07bfc699fc02ce829b3a90cf5e1e8b344 SHA512 b449f59e45b72a75271d54af1b9359f69040e81960533ca70d2a1f84b6bb913ffe1e6d11265eb1d11b5577855ed495898ef3c387d14268b159f352c8e754f5ec WHIRLPOOL 9558328fc01e9ef716330167c958bdfe45c12365dccdd3dc8c878a1dd122a0710d41e434a4ec0f5a54427b2b04fd7204f5225bef8c64ddd9fde7e6d800e7a996
 DIST tinc-1.1pre11.tar.gz 659259 SHA256 942594563d3aef926a2d04e9ece90c16daf1c700e99e3b91ff749e8377fbf757 SHA512 aca746cf660f560709bd5c9eea7aaa35fcdb123e82ebe1c73b69350b3c7829c454da8618ec6957cb4e1298fc594bd1a4083b8c3a6af64345199edad2db86fc9a WHIRLPOOL 54c2fd13de1329713f6e64d61a523f940052276283148b2030337a3bf6195c40bbd5140cdadc712dc17e1720d930851401b4b2d08cac09cd26c5796146b8a593
+DIST tinc-1.1pre12.tar.gz 695939 SHA256 f1d47265e94873bded1caea2b5d025d74b2fa338d8d3f7c725b834c56438dcce SHA512 ef1831b3715d4e209e1005623052ae4979dcdf56df6375ffdf26db7d948275260f56d92c11797926e723f0615c9d3d5ee123a86ee0de5078ce375b887a712670 WHIRLPOOL ea660d0c2a9648e1367224144def9f08e780dde930603b72805aedd3032509706641e13316bba568e156e32185e3a85e92143ffa34c277675f323c2bb6433b9d

diff --git a/net-misc/tinc/tinc-1.1_pre12.ebuild b/net-misc/tinc/tinc-1.1_pre12.ebuild
new file mode 100644
index 0000000..0f2a9ae
--- /dev/null
+++ b/net-misc/tinc/tinc-1.1_pre12.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+MY_PV=${PV/_/}
+MY_P=${PN}-${MY_PV}
+
+PYTHON_COMPAT=( python2_7 )
+inherit eutils multilib python-any-r1
+
+DESCRIPTION="tinc is an easy to configure VPN implementation"
+HOMEPAGE="http://www.tinc-vpn.org/"
+SRC_URI="http://www.tinc-vpn.org/packages/${MY_P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+IUSE="+lzo +ncurses gui libressl +readline +ssl uml vde upnp +zlib"
+
+DEPEND="
+	ssl? (
+		!libressl? ( dev-libs/openssl:0= )
+		libressl? ( dev-libs/libressl:0= )
+	)
+	lzo? ( dev-libs/lzo:2 )
+	ncurses? ( sys-libs/ncurses:= )
+	readline? ( sys-libs/readline:= )
+	upnp? ( net-libs/miniupnpc )
+	zlib? ( sys-libs/zlib )"
+RDEPEND="${DEPEND}
+	vde? ( net-misc/vde )
+	${PYTHON_DEPS}
+	gui? ( $(python_gen_any_dep '
+	dev-python/wxpython[${PYTHON_USEDEP}]
+	') )"
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+	econf \
+		--enable-jumbograms \
+		--disable-silent-rules \
+		--disable-tunemu  \
+		--with-systemd=/usr/$(get_libdir)/systemd/system \
+		$(use_enable lzo) \
+		$(use_enable ncurses curses) \
+		$(use_enable readline) \
+		$(use_enable uml) \
+		$(use_enable vde) \
+		$(use_enable zlib) \
+		$(use_with ssl openssl) \
+		$(use_with upnp miniupnpc )
+		#--without-libgcrypt \
+}
+
+src_install() {
+	emake DESTDIR="${D}" install
+	dodir /etc/tinc
+	dodoc AUTHORS NEWS README THANKS
+	doconfd "${FILESDIR}"/tinc.networks
+	newconfd "${FILESDIR}"/tincd.conf tincd
+	newinitd "${FILESDIR}"/tincd-r1 tincd
+
+	if use gui; then
+		python_fix_shebang "${ED}"/usr/bin/tinc-gui
+	else
+		rm -f "${ED}"/usr/bin/tinc-gui || die
+	fi
+}
+
+pkg_postinst() {
+	elog "This package requires the tun/tap kernel device."
+	elog "Look at http://www.tinc-vpn.org/ for how to configure tinc"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/tinc/
@ 2016-04-25 10:58 Anthony G. Basile
  0 siblings, 0 replies; 12+ messages in thread
From: Anthony G. Basile @ 2016-04-25 10:58 UTC (permalink / raw
  To: gentoo-commits

commit:     af901b9f59668d71c48a7d8701ba10d9ff09f61c
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 25 10:58:08 2016 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Mon Apr 25 10:58:08 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af901b9f

net-misc/tinc: add libressl support to 1.0.28

Package-Manager: portage-2.2.26

 net-misc/tinc/tinc-1.0.28.ebuild | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/net-misc/tinc/tinc-1.0.28.ebuild b/net-misc/tinc/tinc-1.0.28.ebuild
index ec2b902..539bcf9 100644
--- a/net-misc/tinc/tinc-1.0.28.ebuild
+++ b/net-misc/tinc/tinc-1.0.28.ebuild
@@ -12,9 +12,11 @@ SRC_URI="http://www.tinc-vpn.org/packages/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE="+lzo uml vde +zlib"
+IUSE="libressl +lzo uml vde +zlib"
 
-DEPEND="dev-libs/openssl:=
+DEPEND="
+	!libressl? ( dev-libs/openssl:0= )
+	libressl? ( dev-libs/libressl:0= )
 	lzo? ( dev-libs/lzo:2 )
 	zlib? ( sys-libs/zlib )"
 RDEPEND="${DEPEND}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/tinc/
@ 2016-04-30 22:18 Anthony G. Basile
  0 siblings, 0 replies; 12+ messages in thread
From: Anthony G. Basile @ 2016-04-30 22:18 UTC (permalink / raw
  To: gentoo-commits

commit:     bdee37bbcd15fd3b611fb13e931d73cdfa0582db
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 30 22:18:47 2016 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sat Apr 30 22:18:47 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdee37bb

net-misc/tinc: version bump to 1.1_pre13, remove 1.1_pre12

Package-Manager: portage-2.2.26

 net-misc/tinc/Manifest                                         | 2 +-
 net-misc/tinc/{tinc-1.1_pre12.ebuild => tinc-1.1_pre13.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/tinc/Manifest b/net-misc/tinc/Manifest
index 8abfcca..1b297d9 100644
--- a/net-misc/tinc/Manifest
+++ b/net-misc/tinc/Manifest
@@ -1,2 +1,2 @@
 DIST tinc-1.0.28.tar.gz 488837 SHA256 0b502699360f09ce2128a39cf02abca07bfc699fc02ce829b3a90cf5e1e8b344 SHA512 b449f59e45b72a75271d54af1b9359f69040e81960533ca70d2a1f84b6bb913ffe1e6d11265eb1d11b5577855ed495898ef3c387d14268b159f352c8e754f5ec WHIRLPOOL 9558328fc01e9ef716330167c958bdfe45c12365dccdd3dc8c878a1dd122a0710d41e434a4ec0f5a54427b2b04fd7204f5225bef8c64ddd9fde7e6d800e7a996
-DIST tinc-1.1pre12.tar.gz 695939 SHA256 f1d47265e94873bded1caea2b5d025d74b2fa338d8d3f7c725b834c56438dcce SHA512 ef1831b3715d4e209e1005623052ae4979dcdf56df6375ffdf26db7d948275260f56d92c11797926e723f0615c9d3d5ee123a86ee0de5078ce375b887a712670 WHIRLPOOL ea660d0c2a9648e1367224144def9f08e780dde930603b72805aedd3032509706641e13316bba568e156e32185e3a85e92143ffa34c277675f323c2bb6433b9d
+DIST tinc-1.1pre13.tar.gz 695921 SHA256 81738b7811721eb4c0e04b5750e1f2347fe06a0690739022a78c44983bc9d9fa SHA512 cfcc39b038acbaab33e7eaaf41828f8a959ea0b3648f65ad1ac41a2cebc303763c9c0d8c63004b48842cdfee40ed4101dfb6eb9147ddd7a026651286331181d1 WHIRLPOOL a7eba00b1b554109ed09a41c8a132316a608006cc090a15325cb8435db5660793792144ce96c389aed13ab38468d8600849374fba01f45d9762f904791026444

diff --git a/net-misc/tinc/tinc-1.1_pre12.ebuild b/net-misc/tinc/tinc-1.1_pre13.ebuild
similarity index 100%
rename from net-misc/tinc/tinc-1.1_pre12.ebuild
rename to net-misc/tinc/tinc-1.1_pre13.ebuild


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/tinc/
@ 2016-05-01 23:55 Anthony G. Basile
  0 siblings, 0 replies; 12+ messages in thread
From: Anthony G. Basile @ 2016-05-01 23:55 UTC (permalink / raw
  To: gentoo-commits

commit:     c8646064c0b5a456717aa332423a6ad790bf4436
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun May  1 23:55:44 2016 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun May  1 23:55:44 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8646064

net-misc/tinc: version bump to 1.1_pre14, remove 1.1_pre13

Package-Manager: portage-2.2.26

 net-misc/tinc/Manifest                                         | 2 +-
 net-misc/tinc/{tinc-1.1_pre13.ebuild => tinc-1.1_pre14.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/tinc/Manifest b/net-misc/tinc/Manifest
index 1b297d9..e087669 100644
--- a/net-misc/tinc/Manifest
+++ b/net-misc/tinc/Manifest
@@ -1,2 +1,2 @@
 DIST tinc-1.0.28.tar.gz 488837 SHA256 0b502699360f09ce2128a39cf02abca07bfc699fc02ce829b3a90cf5e1e8b344 SHA512 b449f59e45b72a75271d54af1b9359f69040e81960533ca70d2a1f84b6bb913ffe1e6d11265eb1d11b5577855ed495898ef3c387d14268b159f352c8e754f5ec WHIRLPOOL 9558328fc01e9ef716330167c958bdfe45c12365dccdd3dc8c878a1dd122a0710d41e434a4ec0f5a54427b2b04fd7204f5225bef8c64ddd9fde7e6d800e7a996
-DIST tinc-1.1pre13.tar.gz 695921 SHA256 81738b7811721eb4c0e04b5750e1f2347fe06a0690739022a78c44983bc9d9fa SHA512 cfcc39b038acbaab33e7eaaf41828f8a959ea0b3648f65ad1ac41a2cebc303763c9c0d8c63004b48842cdfee40ed4101dfb6eb9147ddd7a026651286331181d1 WHIRLPOOL a7eba00b1b554109ed09a41c8a132316a608006cc090a15325cb8435db5660793792144ce96c389aed13ab38468d8600849374fba01f45d9762f904791026444
+DIST tinc-1.1pre14.tar.gz 696109 SHA256 e349e78f0e0d10899b8ab51c285bdb96c5ee322e847dfcf6ac9e21036286221f SHA512 dfc54a91fd40826b108e9cbae43da42462eb51bb7ad16ac040cb1b262b5510eb6884b1f1dbe0541a3b1631213f70cc678593d1ba51ebdf150c3f6968030b9291 WHIRLPOOL 63c8229c667e461ad20c118d233a2abfe598cc95698b8c83e5f8b598657ca298ea0cdc20432ab2d084fd4a06129a5884e91eb445f4c7204be3798d1fb4dec2f8

diff --git a/net-misc/tinc/tinc-1.1_pre13.ebuild b/net-misc/tinc/tinc-1.1_pre14.ebuild
similarity index 100%
rename from net-misc/tinc/tinc-1.1_pre13.ebuild
rename to net-misc/tinc/tinc-1.1_pre14.ebuild


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/tinc/
@ 2016-07-21  1:32 Yixun Lan
  0 siblings, 0 replies; 12+ messages in thread
From: Yixun Lan @ 2016-07-21  1:32 UTC (permalink / raw
  To: gentoo-commits

commit:     2b2a76fd22d1521b5fe4c079b87f2a0c82da874e
Author:     Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 21 01:29:32 2016 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Thu Jul 21 01:30:50 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b2a76fd

net-misc/tinc: use use_enable() to correct USE=upnp

Gentoo-Bug: 589256

Package-Manager: portage-2.3.0

 net-misc/tinc/tinc-1.1_pre14.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/net-misc/tinc/tinc-1.1_pre14.ebuild b/net-misc/tinc/tinc-1.1_pre14.ebuild
index 0f2a9ae..96313dc 100644
--- a/net-misc/tinc/tinc-1.1_pre14.ebuild
+++ b/net-misc/tinc/tinc-1.1_pre14.ebuild
@@ -42,6 +42,7 @@ src_configure() {
 	econf \
 		--enable-jumbograms \
 		--disable-silent-rules \
+		--enable-legacy-protocol \
 		--disable-tunemu  \
 		--with-systemd=/usr/$(get_libdir)/systemd/system \
 		$(use_enable lzo) \
@@ -50,8 +51,8 @@ src_configure() {
 		$(use_enable uml) \
 		$(use_enable vde) \
 		$(use_enable zlib) \
-		$(use_with ssl openssl) \
-		$(use_with upnp miniupnpc )
+		$(use_enable upnp miniupnpc) \
+		$(use_with ssl openssl)
 		#--without-libgcrypt \
 }
 


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/tinc/
@ 2016-10-09 16:15 Anthony G. Basile
  0 siblings, 0 replies; 12+ messages in thread
From: Anthony G. Basile @ 2016-10-09 16:15 UTC (permalink / raw
  To: gentoo-commits

commit:     5106312b082927183e0eb3b081ff70aab48f84e9
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  9 14:57:43 2016 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Sun Oct  9 16:15:15 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5106312b

net-misc/tinc: version bump to 1.0.29

Package-Manager: portage-2.2.28

 net-misc/tinc/Manifest           |  1 +
 net-misc/tinc/tinc-1.0.29.ebuild | 48 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 49 insertions(+)

diff --git a/net-misc/tinc/Manifest b/net-misc/tinc/Manifest
index e087669..893b77c 100644
--- a/net-misc/tinc/Manifest
+++ b/net-misc/tinc/Manifest
@@ -1,2 +1,3 @@
 DIST tinc-1.0.28.tar.gz 488837 SHA256 0b502699360f09ce2128a39cf02abca07bfc699fc02ce829b3a90cf5e1e8b344 SHA512 b449f59e45b72a75271d54af1b9359f69040e81960533ca70d2a1f84b6bb913ffe1e6d11265eb1d11b5577855ed495898ef3c387d14268b159f352c8e754f5ec WHIRLPOOL 9558328fc01e9ef716330167c958bdfe45c12365dccdd3dc8c878a1dd122a0710d41e434a4ec0f5a54427b2b04fd7204f5225bef8c64ddd9fde7e6d800e7a996
+DIST tinc-1.0.29.tar.gz 493335 SHA256 0357017c6ffbbe1b2088c28fa684d2b119afa1086f363c503d06e8f6faa72a78 SHA512 230f3ff4c86d9ebed6e350f3ec92e931d83f94e6b9c4821bec745dddc2d33997e776bf3cd2a8b9e261b2f0b2df2ed8b5406bfa40bae08696304f650de9f34ef3 WHIRLPOOL 9825337a4622bd9461c027767e701b3934ef422beb10a06b801e005549b7b2ff944d4609591667efc994d14b002db937658209a8eb9f363a868373ebfdd0603e
 DIST tinc-1.1pre14.tar.gz 696109 SHA256 e349e78f0e0d10899b8ab51c285bdb96c5ee322e847dfcf6ac9e21036286221f SHA512 dfc54a91fd40826b108e9cbae43da42462eb51bb7ad16ac040cb1b262b5510eb6884b1f1dbe0541a3b1631213f70cc678593d1ba51ebdf150c3f6968030b9291 WHIRLPOOL 63c8229c667e461ad20c118d233a2abfe598cc95698b8c83e5f8b598657ca298ea0cdc20432ab2d084fd4a06129a5884e91eb445f4c7204be3798d1fb4dec2f8

diff --git a/net-misc/tinc/tinc-1.0.29.ebuild b/net-misc/tinc/tinc-1.0.29.ebuild
new file mode 100644
index 00000000..19f1e15
--- /dev/null
+++ b/net-misc/tinc/tinc-1.0.29.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+inherit systemd
+
+DESCRIPTION="tinc is an easy to configure VPN implementation"
+HOMEPAGE="http://www.tinc-vpn.org/"
+SRC_URI="http://www.tinc-vpn.org/packages/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+IUSE="libressl +lzo uml vde +zlib"
+
+DEPEND="
+	!libressl? ( dev-libs/openssl:0= )
+	libressl? ( dev-libs/libressl:0= )
+	lzo? ( dev-libs/lzo:2 )
+	zlib? ( sys-libs/zlib )"
+RDEPEND="${DEPEND}
+	vde? ( net-misc/vde )"
+
+src_configure() {
+	econf \
+		--enable-jumbograms \
+		--disable-tunemu  \
+		$(use_enable lzo) \
+		$(use_enable uml) \
+		$(use_enable vde) \
+		$(use_enable zlib)
+}
+
+src_install() {
+	emake DESTDIR="${D}" install
+	dodir /etc/tinc
+	dodoc AUTHORS NEWS README THANKS
+	doconfd "${FILESDIR}"/tinc.networks
+	newconfd "${FILESDIR}"/tincd.conf tincd
+	newinitd "${FILESDIR}"/tincd-r1 tincd
+	systemd_newunit "${FILESDIR}"/tincd_at.service "tincd@.service"
+}
+
+pkg_postinst() {
+	elog "This package requires the tun/tap kernel device."
+	elog "Look at http://www.tinc-vpn.org/ for how to configure tinc"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/tinc/
@ 2016-10-13  9:24 Yixun Lan
  0 siblings, 0 replies; 12+ messages in thread
From: Yixun Lan @ 2016-10-13  9:24 UTC (permalink / raw
  To: gentoo-commits

commit:     29236ea38eb60a6c3faa6c1422603d833e05385e
Author:     Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 13 08:51:22 2016 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Thu Oct 13 09:24:35 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29236ea3

net-misc/tinc: pull upstream patches

tinc upstream commits
from: 0cf943753ab16704c818bebe74b4e7ea96399b05
to:   9cbd3c2b5b03c29c116a14f196db8a32c7135391

Package-Manager: portage-2.3.2

 net-misc/tinc/Manifest                 |  1 +
 net-misc/tinc/tinc-1.1_pre14-r1.ebuild | 95 ++++++++++++++++++++++++++++++++++
 2 files changed, 96 insertions(+)

diff --git a/net-misc/tinc/Manifest b/net-misc/tinc/Manifest
index 893b77c..7e5870b 100644
--- a/net-misc/tinc/Manifest
+++ b/net-misc/tinc/Manifest
@@ -1,3 +1,4 @@
 DIST tinc-1.0.28.tar.gz 488837 SHA256 0b502699360f09ce2128a39cf02abca07bfc699fc02ce829b3a90cf5e1e8b344 SHA512 b449f59e45b72a75271d54af1b9359f69040e81960533ca70d2a1f84b6bb913ffe1e6d11265eb1d11b5577855ed495898ef3c387d14268b159f352c8e754f5ec WHIRLPOOL 9558328fc01e9ef716330167c958bdfe45c12365dccdd3dc8c878a1dd122a0710d41e434a4ec0f5a54427b2b04fd7204f5225bef8c64ddd9fde7e6d800e7a996
 DIST tinc-1.0.29.tar.gz 493335 SHA256 0357017c6ffbbe1b2088c28fa684d2b119afa1086f363c503d06e8f6faa72a78 SHA512 230f3ff4c86d9ebed6e350f3ec92e931d83f94e6b9c4821bec745dddc2d33997e776bf3cd2a8b9e261b2f0b2df2ed8b5406bfa40bae08696304f650de9f34ef3 WHIRLPOOL 9825337a4622bd9461c027767e701b3934ef422beb10a06b801e005549b7b2ff944d4609591667efc994d14b002db937658209a8eb9f363a868373ebfdd0603e
+DIST tinc-1.1-upstream-patches-0.tar.xz 14936 SHA256 9a95897e50da8c213d80d024910bf8622c838ec2ef2fd23b48a7fc448ffa67e1 SHA512 c8a4ab62f9fbb6259af0fd621bfdcf6505f553478e70ef3aacf0c7c35c5070458246786f416ac8631d7f9e36ab764ea4250c6cb3e95aa8d1fee7e995d07a2d9d WHIRLPOOL e708ef24b532be48e2824cb18685aeb80c8e1053e44aaa3e82ce29ae6055abcc04fe1ebab0758d008ed5880f4d5b19e9b06b8eebfae9904cfa2b04dfee4a3d77
 DIST tinc-1.1pre14.tar.gz 696109 SHA256 e349e78f0e0d10899b8ab51c285bdb96c5ee322e847dfcf6ac9e21036286221f SHA512 dfc54a91fd40826b108e9cbae43da42462eb51bb7ad16ac040cb1b262b5510eb6884b1f1dbe0541a3b1631213f70cc678593d1ba51ebdf150c3f6968030b9291 WHIRLPOOL 63c8229c667e461ad20c118d233a2abfe598cc95698b8c83e5f8b598657ca298ea0cdc20432ab2d084fd4a06129a5884e91eb445f4c7204be3798d1fb4dec2f8

diff --git a/net-misc/tinc/tinc-1.1_pre14-r1.ebuild b/net-misc/tinc/tinc-1.1_pre14-r1.ebuild
new file mode 100644
index 00000000..0f904de
--- /dev/null
+++ b/net-misc/tinc/tinc-1.1_pre14-r1.ebuild
@@ -0,0 +1,95 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+MY_PV=${PV/_/}
+MY_P=${PN}-${MY_PV}
+
+PYTHON_COMPAT=( python2_7 )
+inherit eutils multilib python-any-r1
+
+DESCRIPTION="tinc is an easy to configure VPN implementation"
+HOMEPAGE="http://www.tinc-vpn.org/"
+
+UPSTREAM_VER=0
+
+[[ -n ${UPSTREAM_VER} ]] && \
+	UPSTREAM_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${PN}-1.1-upstream-patches-${UPSTREAM_VER}.tar.xz"
+
+SRC_URI="http://www.tinc-vpn.org/packages/${MY_P}.tar.gz
+	${UPSTREAM_PATCHSET_URI}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+IUSE="+lzo +ncurses gui libressl +readline +ssl uml vde upnp +zlib"
+
+DEPEND="
+	ssl? (
+		!libressl? ( dev-libs/openssl:0= )
+		libressl? ( dev-libs/libressl:0= )
+	)
+	lzo? ( dev-libs/lzo:2 )
+	ncurses? ( sys-libs/ncurses:= )
+	readline? ( sys-libs/readline:= )
+	upnp? ( net-libs/miniupnpc )
+	zlib? ( sys-libs/zlib )"
+RDEPEND="${DEPEND}
+	vde? ( net-misc/vde )
+	${PYTHON_DEPS}
+	gui? ( $(python_gen_any_dep '
+	dev-python/wxpython[${PYTHON_USEDEP}]
+	') )"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+	# Upstream's patchset
+	if [[ -n ${UPSTREAM_VER} ]]; then
+		einfo "Try to apply Tinc Upstream patch set"
+		EPATCH_SUFFIX="patch" \
+		EPATCH_FORCE="yes" \
+		EPATCH_OPTS="-p1" \
+			epatch "${WORKDIR}"/patches-upstream
+	fi
+}
+
+src_configure() {
+	econf \
+		--enable-jumbograms \
+		--disable-silent-rules \
+		--enable-legacy-protocol \
+		--disable-tunemu  \
+		--with-systemd=/usr/$(get_libdir)/systemd/system \
+		$(use_enable lzo) \
+		$(use_enable ncurses curses) \
+		$(use_enable readline) \
+		$(use_enable uml) \
+		$(use_enable vde) \
+		$(use_enable zlib) \
+		$(use_enable upnp miniupnpc) \
+		$(use_with ssl openssl)
+		#--without-libgcrypt \
+}
+
+src_install() {
+	emake DESTDIR="${D}" install
+	dodir /etc/tinc
+	dodoc AUTHORS NEWS README THANKS
+	doconfd "${FILESDIR}"/tinc.networks
+	newconfd "${FILESDIR}"/tincd.conf tincd
+	newinitd "${FILESDIR}"/tincd-r1 tincd
+
+	if use gui; then
+		python_fix_shebang "${ED}"/usr/bin/tinc-gui
+	else
+		rm -f "${ED}"/usr/bin/tinc-gui || die
+	fi
+}
+
+pkg_postinst() {
+	elog "This package requires the tun/tap kernel device."
+	elog "Look at http://www.tinc-vpn.org/ for how to configure tinc"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/tinc/
@ 2016-11-29  9:26 Yixun Lan
  0 siblings, 0 replies; 12+ messages in thread
From: Yixun Lan @ 2016-11-29  9:26 UTC (permalink / raw
  To: gentoo-commits

commit:     6f5a5037d151c93b9a7f36255d1d4917d7045dba
Author:     Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Tue Nov 29 08:49:48 2016 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Tue Nov 29 09:26:21 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f5a5037

net-misc/tinc: version bump

bump 1.0.30, also update 1.1 upstream patch set

Package-Manager: portage-2.3.2

 net-misc/tinc/Manifest                 |  2 +
 net-misc/tinc/tinc-1.0.30.ebuild       | 48 +++++++++++++++++
 net-misc/tinc/tinc-1.1_pre14-r3.ebuild | 98 ++++++++++++++++++++++++++++++++++
 3 files changed, 148 insertions(+)

diff --git a/net-misc/tinc/Manifest b/net-misc/tinc/Manifest
index 7e5870b..3df5f02 100644
--- a/net-misc/tinc/Manifest
+++ b/net-misc/tinc/Manifest
@@ -1,4 +1,6 @@
 DIST tinc-1.0.28.tar.gz 488837 SHA256 0b502699360f09ce2128a39cf02abca07bfc699fc02ce829b3a90cf5e1e8b344 SHA512 b449f59e45b72a75271d54af1b9359f69040e81960533ca70d2a1f84b6bb913ffe1e6d11265eb1d11b5577855ed495898ef3c387d14268b159f352c8e754f5ec WHIRLPOOL 9558328fc01e9ef716330167c958bdfe45c12365dccdd3dc8c878a1dd122a0710d41e434a4ec0f5a54427b2b04fd7204f5225bef8c64ddd9fde7e6d800e7a996
 DIST tinc-1.0.29.tar.gz 493335 SHA256 0357017c6ffbbe1b2088c28fa684d2b119afa1086f363c503d06e8f6faa72a78 SHA512 230f3ff4c86d9ebed6e350f3ec92e931d83f94e6b9c4821bec745dddc2d33997e776bf3cd2a8b9e261b2f0b2df2ed8b5406bfa40bae08696304f650de9f34ef3 WHIRLPOOL 9825337a4622bd9461c027767e701b3934ef422beb10a06b801e005549b7b2ff944d4609591667efc994d14b002db937658209a8eb9f363a868373ebfdd0603e
+DIST tinc-1.0.30.tar.gz 494699 SHA256 abc17e25afc1b9e74423c78fef586b11d503cbbbe5e4a2ed323870f4a82faa73 SHA512 2e98658eeb77ceaf2973f3b77cac0c31beecd1382dc6976461da55cf22e27469d30cf6b35d5b3ce489a1809f38e82635b24a86956d62ef34e28ec43b8d09d1e6 WHIRLPOOL bd37aa99b915e6075b0ec95589f11c3f63a6d6600b566c855735bda8312a0a7957224e4f11a6fb897308b540dd5a9ccd10a13d1d07d11a51200bbf833c823b5f
 DIST tinc-1.1-upstream-patches-0.tar.xz 14936 SHA256 9a95897e50da8c213d80d024910bf8622c838ec2ef2fd23b48a7fc448ffa67e1 SHA512 c8a4ab62f9fbb6259af0fd621bfdcf6505f553478e70ef3aacf0c7c35c5070458246786f416ac8631d7f9e36ab764ea4250c6cb3e95aa8d1fee7e995d07a2d9d WHIRLPOOL e708ef24b532be48e2824cb18685aeb80c8e1053e44aaa3e82ce29ae6055abcc04fe1ebab0758d008ed5880f4d5b19e9b06b8eebfae9904cfa2b04dfee4a3d77
+DIST tinc-1.1-upstream-patches-1.tar.xz 17316 SHA256 2358b51678381a76ccc283eb04f14ad1ec426bbf2703d73f566f94dc52d17a9c SHA512 db71787e2edbfa8ca6288818536a36ee8fa158b400639ca9650d2d17a66b3968ab36d088e6dcbbf9524f3322166254ad1aad87db78b00dc64e0dc2a49ea7b44f WHIRLPOOL ed28917111cd0553ef75048c2b48b0499559e5a6ace77f49efb7d6d15743ba0d426477eeed9364bea6fba6e434442cf17d71ffb224acdd7da3b49792ff59bc09
 DIST tinc-1.1pre14.tar.gz 696109 SHA256 e349e78f0e0d10899b8ab51c285bdb96c5ee322e847dfcf6ac9e21036286221f SHA512 dfc54a91fd40826b108e9cbae43da42462eb51bb7ad16ac040cb1b262b5510eb6884b1f1dbe0541a3b1631213f70cc678593d1ba51ebdf150c3f6968030b9291 WHIRLPOOL 63c8229c667e461ad20c118d233a2abfe598cc95698b8c83e5f8b598657ca298ea0cdc20432ab2d084fd4a06129a5884e91eb445f4c7204be3798d1fb4dec2f8

diff --git a/net-misc/tinc/tinc-1.0.30.ebuild b/net-misc/tinc/tinc-1.0.30.ebuild
new file mode 100644
index 00000000..19f1e15
--- /dev/null
+++ b/net-misc/tinc/tinc-1.0.30.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+inherit systemd
+
+DESCRIPTION="tinc is an easy to configure VPN implementation"
+HOMEPAGE="http://www.tinc-vpn.org/"
+SRC_URI="http://www.tinc-vpn.org/packages/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+IUSE="libressl +lzo uml vde +zlib"
+
+DEPEND="
+	!libressl? ( dev-libs/openssl:0= )
+	libressl? ( dev-libs/libressl:0= )
+	lzo? ( dev-libs/lzo:2 )
+	zlib? ( sys-libs/zlib )"
+RDEPEND="${DEPEND}
+	vde? ( net-misc/vde )"
+
+src_configure() {
+	econf \
+		--enable-jumbograms \
+		--disable-tunemu  \
+		$(use_enable lzo) \
+		$(use_enable uml) \
+		$(use_enable vde) \
+		$(use_enable zlib)
+}
+
+src_install() {
+	emake DESTDIR="${D}" install
+	dodir /etc/tinc
+	dodoc AUTHORS NEWS README THANKS
+	doconfd "${FILESDIR}"/tinc.networks
+	newconfd "${FILESDIR}"/tincd.conf tincd
+	newinitd "${FILESDIR}"/tincd-r1 tincd
+	systemd_newunit "${FILESDIR}"/tincd_at.service "tincd@.service"
+}
+
+pkg_postinst() {
+	elog "This package requires the tun/tap kernel device."
+	elog "Look at http://www.tinc-vpn.org/ for how to configure tinc"
+}

diff --git a/net-misc/tinc/tinc-1.1_pre14-r3.ebuild b/net-misc/tinc/tinc-1.1_pre14-r3.ebuild
new file mode 100644
index 00000000..7a427e4
--- /dev/null
+++ b/net-misc/tinc/tinc-1.1_pre14-r3.ebuild
@@ -0,0 +1,98 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+MY_PV=${PV/_/}
+MY_P=${PN}-${MY_PV}
+
+PYTHON_COMPAT=( python2_7 )
+inherit eutils multilib python-any-r1
+
+DESCRIPTION="tinc is an easy to configure VPN implementation"
+HOMEPAGE="http://www.tinc-vpn.org/"
+
+UPSTREAM_VER=1
+
+[[ -n ${UPSTREAM_VER} ]] && \
+	UPSTREAM_PATCHSET_URI="https://dev.gentoo.org/~dlan/distfiles/${PN}-1.1-upstream-patches-${UPSTREAM_VER}.tar.xz"
+
+SRC_URI="http://www.tinc-vpn.org/packages/${MY_P}.tar.gz
+	${UPSTREAM_PATCHSET_URI}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+IUSE="+lzo +ncurses gui libressl +readline +ssl uml vde upnp +zlib"
+
+DEPEND="
+	ssl? (
+		!libressl? ( dev-libs/openssl:0= )
+		libressl? ( dev-libs/libressl:0= )
+	)
+	lzo? ( dev-libs/lzo:2 )
+	ncurses? ( sys-libs/ncurses:= )
+	readline? ( sys-libs/readline:= )
+	upnp? ( net-libs/miniupnpc )
+	zlib? ( sys-libs/zlib )"
+RDEPEND="${DEPEND}
+	vde? ( net-misc/vde )
+	${PYTHON_DEPS}
+	gui? ( $(python_gen_any_dep '
+	dev-python/wxpython[${PYTHON_USEDEP}]
+	') )"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+	# Upstream's patchset
+	if [[ -n ${UPSTREAM_VER} ]]; then
+		einfo "Try to apply Tinc Upstream patch set"
+		EPATCH_SUFFIX="patch" \
+		EPATCH_FORCE="yes" \
+		EPATCH_OPTS="-p1" \
+			epatch "${WORKDIR}"/patches-upstream
+	fi
+
+	eapply "${FILESDIR}"/tinc-1.1-fix-paths.patch #560528
+	eapply_user
+}
+
+src_configure() {
+	econf \
+		--enable-jumbograms \
+		--disable-silent-rules \
+		--enable-legacy-protocol \
+		--disable-tunemu  \
+		--with-systemd=/usr/$(get_libdir)/systemd/system \
+		$(use_enable lzo) \
+		$(use_enable ncurses curses) \
+		$(use_enable readline) \
+		$(use_enable uml) \
+		$(use_enable vde) \
+		$(use_enable zlib) \
+		$(use_enable upnp miniupnpc) \
+		$(use_with ssl openssl)
+		#--without-libgcrypt \
+}
+
+src_install() {
+	emake DESTDIR="${D}" install
+	dodir /etc/tinc
+	dodoc AUTHORS NEWS README THANKS
+	doconfd "${FILESDIR}"/tinc.networks
+	newconfd "${FILESDIR}"/tincd.conf tincd
+	newinitd "${FILESDIR}"/tincd-r2 tincd
+
+	if use gui; then
+		python_fix_shebang "${ED}"/usr/bin/tinc-gui
+	else
+		rm -f "${ED}"/usr/bin/tinc-gui || die
+	fi
+}
+
+pkg_postinst() {
+	elog "This package requires the tun/tap kernel device."
+	elog "Look at http://www.tinc-vpn.org/ for how to configure tinc"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: net-misc/tinc/
@ 2017-01-16 18:48 Anthony G. Basile
  0 siblings, 0 replies; 12+ messages in thread
From: Anthony G. Basile @ 2017-01-16 18:48 UTC (permalink / raw
  To: gentoo-commits

commit:     2b8092d49996a9bfb022e03062e1bb7db8e763af
Author:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 16 18:47:41 2017 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Mon Jan 16 18:48:06 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b8092d4

net-misc/tinc: version bump to 1.0.31

Package-Manager: portage-2.3.0

 net-misc/tinc/Manifest           |  1 +
 net-misc/tinc/tinc-1.0.31.ebuild | 48 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 49 insertions(+)

diff --git a/net-misc/tinc/Manifest b/net-misc/tinc/Manifest
index 4a53598..c760c97 100644
--- a/net-misc/tinc/Manifest
+++ b/net-misc/tinc/Manifest
@@ -1,4 +1,5 @@
 DIST tinc-1.0.29.tar.gz 493335 SHA256 0357017c6ffbbe1b2088c28fa684d2b119afa1086f363c503d06e8f6faa72a78 SHA512 230f3ff4c86d9ebed6e350f3ec92e931d83f94e6b9c4821bec745dddc2d33997e776bf3cd2a8b9e261b2f0b2df2ed8b5406bfa40bae08696304f650de9f34ef3 WHIRLPOOL 9825337a4622bd9461c027767e701b3934ef422beb10a06b801e005549b7b2ff944d4609591667efc994d14b002db937658209a8eb9f363a868373ebfdd0603e
 DIST tinc-1.0.30.tar.gz 494699 SHA256 abc17e25afc1b9e74423c78fef586b11d503cbbbe5e4a2ed323870f4a82faa73 SHA512 2e98658eeb77ceaf2973f3b77cac0c31beecd1382dc6976461da55cf22e27469d30cf6b35d5b3ce489a1809f38e82635b24a86956d62ef34e28ec43b8d09d1e6 WHIRLPOOL bd37aa99b915e6075b0ec95589f11c3f63a6d6600b566c855735bda8312a0a7957224e4f11a6fb897308b540dd5a9ccd10a13d1d07d11a51200bbf833c823b5f
+DIST tinc-1.0.31.tar.gz 494877 SHA256 d3cbc82e6e07975a2ccc0b369d07e30fc3324e71e240dca8781ce9a4f629519b SHA512 ac694d4ceec19bddebd3d5b9f37eb703a4701b93f65a7bbcdbc0b364f2a4f8b116c85748d06ec7821474de5c4d434caf5448109a0846e15c4a96adb92a0fc622 WHIRLPOOL aec84cd59ca80ca806171003447f946073c8f99fd872eaef1e7fea9d423cd4905d554964920be802e0862f5ab8de7d9d7094792c30403af8b62abca12286e2b1
 DIST tinc-1.1-upstream-patches-1.tar.xz 17316 SHA256 2358b51678381a76ccc283eb04f14ad1ec426bbf2703d73f566f94dc52d17a9c SHA512 db71787e2edbfa8ca6288818536a36ee8fa158b400639ca9650d2d17a66b3968ab36d088e6dcbbf9524f3322166254ad1aad87db78b00dc64e0dc2a49ea7b44f WHIRLPOOL ed28917111cd0553ef75048c2b48b0499559e5a6ace77f49efb7d6d15743ba0d426477eeed9364bea6fba6e434442cf17d71ffb224acdd7da3b49792ff59bc09
 DIST tinc-1.1pre14.tar.gz 696109 SHA256 e349e78f0e0d10899b8ab51c285bdb96c5ee322e847dfcf6ac9e21036286221f SHA512 dfc54a91fd40826b108e9cbae43da42462eb51bb7ad16ac040cb1b262b5510eb6884b1f1dbe0541a3b1631213f70cc678593d1ba51ebdf150c3f6968030b9291 WHIRLPOOL 63c8229c667e461ad20c118d233a2abfe598cc95698b8c83e5f8b598657ca298ea0cdc20432ab2d084fd4a06129a5884e91eb445f4c7204be3798d1fb4dec2f8

diff --git a/net-misc/tinc/tinc-1.0.31.ebuild b/net-misc/tinc/tinc-1.0.31.ebuild
new file mode 100644
index 00000000..99c9e45
--- /dev/null
+++ b/net-misc/tinc/tinc-1.0.31.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+inherit systemd
+
+DESCRIPTION="tinc is an easy to configure VPN implementation"
+HOMEPAGE="http://www.tinc-vpn.org/"
+SRC_URI="http://www.tinc-vpn.org/packages/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+IUSE="libressl +lzo uml vde +zlib"
+
+DEPEND="
+	!libressl? ( dev-libs/openssl:0= )
+	libressl? ( dev-libs/libressl:0= )
+	lzo? ( dev-libs/lzo:2 )
+	zlib? ( sys-libs/zlib )"
+RDEPEND="${DEPEND}
+	vde? ( net-misc/vde )"
+
+src_configure() {
+	econf \
+		--enable-jumbograms \
+		--disable-tunemu  \
+		$(use_enable lzo) \
+		$(use_enable uml) \
+		$(use_enable vde) \
+		$(use_enable zlib)
+}
+
+src_install() {
+	emake DESTDIR="${D}" install
+	dodir /etc/tinc
+	dodoc AUTHORS NEWS README THANKS
+	doconfd "${FILESDIR}"/tinc.networks
+	newconfd "${FILESDIR}"/tincd.conf tincd
+	newinitd "${FILESDIR}"/tincd-r1 tincd
+	systemd_newunit "${FILESDIR}"/tincd_at.service "tincd@.service"
+}
+
+pkg_postinst() {
+	elog "This package requires the tun/tap kernel device."
+	elog "Look at http://www.tinc-vpn.org/ for how to configure tinc"
+}


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

end of thread, other threads:[~2017-01-16 18:48 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-04-10 14:46 [gentoo-commits] repo/gentoo:master commit in: net-misc/tinc/ Anthony G. Basile
  -- strict thread matches above, loose matches on Subject: below --
2017-01-16 18:48 Anthony G. Basile
2016-11-29  9:26 Yixun Lan
2016-10-13  9:24 Yixun Lan
2016-10-09 16:15 Anthony G. Basile
2016-07-21  1:32 Yixun Lan
2016-05-01 23:55 Anthony G. Basile
2016-04-30 22:18 Anthony G. Basile
2016-04-25 10:58 Anthony G. Basile
2016-04-25 10:53 Anthony G. Basile
2016-04-25 10:53 Anthony G. Basile
2016-04-10  2:18 Anthony G. Basile

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