public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Anthony G. Basile" <blueness@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/i2pd/
Date: Mon,  5 Oct 2015 19:55:49 +0000 (UTC)	[thread overview]
Message-ID: <1444075259.20a9a88deae7d1a6d4b6637aa28e20fe0de3ecab.blueness@gentoo> (raw)

commit:     20a9a88deae7d1a6d4b6637aa28e20fe0de3ecab
Author:     tomboy64 <tomboy64 <AT> sina <DOT> cn>
AuthorDate: Wed Sep 23 10:46:42 2015 +0000
Commit:     Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Mon Oct  5 20:00:59 2015 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20a9a88d

net-misc/i2pd: version bump

 net-misc/i2pd/Manifest           |  1 +
 net-misc/i2pd/i2pd-0.10.0.ebuild | 65 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 66 insertions(+)

diff --git a/net-misc/i2pd/Manifest b/net-misc/i2pd/Manifest
index 0712c33..a4e7a86 100644
--- a/net-misc/i2pd/Manifest
+++ b/net-misc/i2pd/Manifest
@@ -1,2 +1,3 @@
+DIST i2pd-0.10.0.tar.gz 391777 SHA256 5195e01a2e5ebad580631fbf3e5f17cf158f4ee323cbc4b0200ae046fbefc733 SHA512 ab0d32108f8ca1093ae3fcd752deeb8bed018074a8dd04fbcbffe49f1a2a78c3f2cf00341ddad18e8c8007edba6b75e45bce4357a621540fcdf7c2b74a26e726 WHIRLPOOL 19e8a92e20ae6fe1500a3f5462580d4896d5906be6ef307e48ea465712f5266b5251d75ad8b5636a3b894da3b3100dde329ddc733f7cd394499810d1bc65a083
 DIST i2pd-0.5.0.tar.gz 352460 SHA256 7f2033fe1c380c458722d68f611d0fa69a844ceba71db13a918adac6e01a0594 SHA512 08c51dc5fa3712af54b7dcc9f4524fb19d7b42a279646c7852efdf1fd49cf4ea24192c936229954c3733ba4bcbc480205bcfeca739ffae3642f5c62bd24e0cf6 WHIRLPOOL 1812a8733f17cd6b9885cf8af3ad0412f238356121118d46fbed53cb826aaa6c878a045adb69e0a692fd5cd3fc720192c635f4e594d3d42efb2116f14bbba9e9
 DIST i2pd-0.6.0.tar.gz 360829 SHA256 149a8c2d870ebc3988aea06eec906c9e968b3d89ae282bd3b2b5ead205f7c3b7 SHA512 084c75c5f972dbc07740119c3ae1711924cf740391703a95752164eab7a04d6cea0cfb302530e1e1bebafb54f9eed552e747479ae55fb053e824cdf059ab3266 WHIRLPOOL a858a49173755e052f31a95f4f7075965dac0c89943a7dc05c3c88d51b646ab86a7510a9533e33d9c5f0e7736e9f702f6fd0de4e6a841cc3ec57ea5aaf2b991c

diff --git a/net-misc/i2pd/i2pd-0.10.0.ebuild b/net-misc/i2pd/i2pd-0.10.0.ebuild
new file mode 100644
index 0000000..29fb6fe
--- /dev/null
+++ b/net-misc/i2pd/i2pd-0.10.0.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit eutils systemd user cmake-utils
+
+DESCRIPTION="A C++ daemon for accessing the I2P anonymous network"
+HOMEPAGE="https://github.com/PrivacySolutions/i2pd"
+SRC_URI="https://github.com/PrivacySolutions/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="cpu_flags_x86_aes i2p-hardening static"
+
+RDEPEND="!static? ( >=dev-libs/boost-1.46[threads] )
+	!static? ( dev-libs/crypto++ )"
+DEPEND="${RDEPEND}
+	static? ( >=dev-libs/boost-1.46[static-libs,threads] )
+	static? ( dev-libs/crypto++[static-libs] )
+	>=dev-util/cmake-2.8.5
+	i2p-hardening? ( >=sys-devel/gcc-4.6 )
+	|| ( >=sys-devel/gcc-4.6 >=sys-devel/clang-3.3 )"
+
+I2PD_USER="${I2PD_USER:-i2pd}"
+I2PD_GROUP="${I2PD_GROUP:-i2pd}"
+
+CMAKE_USE_DIR="${S}/build"
+
+src_configure() {
+	mycmakeargs=(
+		$(cmake-utils_use_with cpu_flags_x86_aes AESNI)
+		$(cmake-utils_use_with i2p-hardening HARDENING)
+		$(cmake-utils_use_with static STATIC)
+		-DWITH_LIBRARY=OFF
+		-DWITH_BINARY=ON
+	)
+	cmake-utils_src_configure
+}
+
+src_install() {
+	cmake-utils_src_install
+	dodoc README.md
+	doman "${FILESDIR}/${PN}.1"
+	keepdir /var/lib/i2pd/
+	fowners "${I2PD_USER}:${I2PD_GROUP}" /var/lib/i2pd/
+	fperms 700 /var/lib/i2pd/
+	insinto /etc/
+	doins "${FILESDIR}/${PN}.conf"
+	fowners "${I2PD_USER}:${I2PD_GROUP}" "/etc/${PN}.conf"
+	fperms 600 "/etc/${PN}.conf"
+	dodir /usr/share/i2pd
+	cp -R "${S}/contrib/certificates" "${D}/var/lib/i2pd" || die "Install failed!"
+	newconfd "${FILESDIR}/${PN}.confd" "${PN}"
+	newinitd "${FILESDIR}/${PN}.initd" "${PN}"
+	systemd_dounit "${FILESDIR}/${PN}.service"
+	doenvd "${FILESDIR}/99${PN}"
+	insinto /etc/logrotate.d
+	newins "${FILESDIR}/${PN}.logrotate" "${PN}"
+}
+
+pkg_setup() {
+	enewgroup "${I2PD_GROUP}"
+	enewuser "${I2PD_USER}" -1 -1 "/var/lib/run/${PN}" "${I2PD_GROUP}"
+}


             reply	other threads:[~2015-10-05 19:55 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-10-05 19:55 Anthony G. Basile [this message]
  -- strict thread matches above, loose matches on Subject: below --
2016-02-06 10:17 [gentoo-commits] repo/gentoo:master commit in: net-misc/i2pd/ Patrice Clement
2016-02-06 10:17 Patrice Clement
2016-02-18 17:46 Anthony G. Basile
2016-02-18 17:46 Anthony G. Basile
2016-02-18 19:42 Patrice Clement
2016-02-18 19:42 Patrice Clement
2016-03-05 20:28 Anthony G. Basile
2016-03-14  8:52 Anthony G. Basile
2016-03-14  8:52 Anthony G. Basile
2016-03-14 15:43 Anthony G. Basile
2016-03-14 15:43 Anthony G. Basile
2016-03-14 15:43 Anthony G. Basile
2016-03-25 19:45 Anthony G. Basile
2016-04-01 18:45 Anthony G. Basile
2016-05-09  8:07 Anthony G. Basile
2016-05-09  8:07 Anthony G. Basile
2016-05-09  8:07 Anthony G. Basile
2016-05-09  8:07 Anthony G. Basile
2016-05-09  8:07 Anthony G. Basile
2016-05-19  9:19 Anthony G. Basile
2016-06-03 12:35 Anthony G. Basile
2016-06-21 10:38 Anthony G. Basile
2016-08-15 13:42 Anthony G. Basile
2016-08-15 13:42 Anthony G. Basile
2016-10-17 23:25 Anthony G. Basile
2016-10-17 23:25 Anthony G. Basile
2016-10-18 21:35 Anthony G. Basile
2016-11-09  3:40 Anthony G. Basile
2016-11-09  3:40 Anthony G. Basile
2016-11-09  3:40 Anthony G. Basile
2016-11-20 15:36 Anthony G. Basile
2016-12-20 19:10 Anthony G. Basile
2016-12-20 19:10 Anthony G. Basile
2017-02-16 10:02 Anthony G. Basile

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=1444075259.20a9a88deae7d1a6d4b6637aa28e20fe0de3ecab.blueness@gentoo \
    --to=blueness@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