From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E598458973 for ; Sat, 6 Feb 2016 10:18:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0435421C002; Sat, 6 Feb 2016 10:18:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2D42221C008 for ; Sat, 6 Feb 2016 10:18:03 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1FBAF340B6E for ; Sat, 6 Feb 2016 10:18:02 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AA2388F1 for ; Sat, 6 Feb 2016 10:17:59 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1454620703.b28f9cddeb737f7fea14066d339337327b08736f.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/i2pd/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/i2pd/i2pd-9999.ebuild net-misc/i2pd/metadata.xml X-VCS-Directories: net-misc/i2pd/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: b28f9cddeb737f7fea14066d339337327b08736f X-VCS-Branch: master Date: Sat, 6 Feb 2016 10:17:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 6bff251a-8a36-4d81-8969-376d240d00d6 X-Archives-Hash: 97f16746da4c676c322c0a2e5c700d45 commit: b28f9cddeb737f7fea14066d339337327b08736f Author: Matthew Brewer sina cn> AuthorDate: Wed Feb 3 21:45:18 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Thu Feb 4 21:18:23 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b28f9cdd net-misc/i2pd: remove live version Package-Manager: portage-2.2.26 RepoMan-Options: --ignore-arches net-misc/i2pd/i2pd-9999.ebuild | 76 ------------------------------------------ net-misc/i2pd/metadata.xml | 3 -- 2 files changed, 79 deletions(-) diff --git a/net-misc/i2pd/i2pd-9999.ebuild b/net-misc/i2pd/i2pd-9999.ebuild deleted file mode 100644 index 3dfbbe8..0000000 --- a/net-misc/i2pd/i2pd-9999.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -inherit eutils systemd user git-2 cmake-multilib - -DESCRIPTION="A C++ daemon for accessing the I2P anonymous network" -HOMEPAGE="https://github.com/PrivacySolutions/i2pd" -SRC_URI="" -EGIT_REPO_URI="git://github.com/PrivacySolutions/i2pd" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="" -IUSE="cpu_flags_x86_aes i2p-hardening library static" - -RDEPEND="!static? ( >=dev-libs/boost-1.46[threads] ) - !static? ( dev-libs/crypto++ ) - library? ( >=dev-libs/boost-1.46[threads,${MULTILIB_USEDEP}] ) - library? ( dev-libs/crypto++[${MULTILIB_USEDEP}] )" -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" - -multilib_src_configure() { - mycmakeargs=( - $(cmake-utils_use_with cpu_flags_x86_aes AESNI) - $(cmake-utils_use_with i2p-hardening HARDENING) - $(cmake-utils_use_with library LIBRARY) - $(cmake-utils_use_with static STATIC) - $(multilib_is_native_abi && echo -DWITH_BINARY=ON \ - || echo -DWITH_BINARY=OFF) - ) - (multilib_is_native_abi || use library) && cmake-utils_src_configure -} - -multilib_src_compile() { - (multilib_is_native_abi || use library) && cmake-utils_src_compile -} - -multilib_src_install() { - (multilib_is_native_abi || use library) && cmake-utils_src_install -} - -multilib_src_install_all() { - 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}" -} diff --git a/net-misc/i2pd/metadata.xml b/net-misc/i2pd/metadata.xml index 36a11c9..b713bca 100644 --- a/net-misc/i2pd/metadata.xml +++ b/net-misc/i2pd/metadata.xml @@ -13,9 +13,6 @@ Compile with hardening on vanilla compilers/linkers - - Build the libi2pd library - PrivacySolutions/i2pd