From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E2342139085 for ; Mon, 19 Dec 2016 20:17:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2BC1A21C054; Mon, 19 Dec 2016 20:17:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 02D5021C054 for ; Mon, 19 Dec 2016 20:17:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0999A34108B for ; Mon, 19 Dec 2016 20:17:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 42F7C24C3 for ; Mon, 19 Dec 2016 20:17:14 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1482178623.020e03cf1cf0f62fda22961b306b81e2e0daacf0.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/tox/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/tox/tox-9999.ebuild X-VCS-Directories: net-libs/tox/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 020e03cf1cf0f62fda22961b306b81e2e0daacf0 X-VCS-Branch: master Date: Mon, 19 Dec 2016 20:17:14 +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: 744ad1e0-f52d-4943-a536-745fa397bcd4 X-Archives-Hash: f7e8f7f7406a9591849153e1b509c1d9 commit: 020e03cf1cf0f62fda22961b306b81e2e0daacf0 Author: Zetok Zalbavar openmailbox org> AuthorDate: Wed Dec 14 17:25:43 2016 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Dec 19 20:17:03 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=020e03cf net-libs/tox: update repo URI, bump EAPI in -9999, #601038 Closes: https://github.com/gentoo/gentoo/pull/3117 Package-Manager: portage-2.3.0 net-libs/tox/tox-9999.ebuild | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/net-libs/tox/tox-9999.ebuild b/net-libs/tox/tox-9999.ebuild index d2add54..4c5d332 100644 --- a/net-libs/tox/tox-9999.ebuild +++ b/net-libs/tox/tox-9999.ebuild @@ -2,18 +2,18 @@ # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 -inherit autotools eutils git-r3 user systemd +inherit autotools git-r3 user systemd DESCRIPTION="Encrypted P2P, messaging, and audio/video calling platform" HOMEPAGE="https://tox.chat" SRC_URI="" -EGIT_REPO_URI="https://github.com/irungentoo/toxcore.git - git://github.com/irungentoo/toxcore.git" +EGIT_REPO_URI="https://github.com/TokTok/c-toxcore.git + git://github.com/TokTok/c-toxcore.git" LICENSE="GPL-3+" -SLOT="0/0.0" +SLOT="0/0.1" KEYWORDS="" IUSE="+av daemon log-debug log-error log-info log-trace log-warn +no-log ntox static-libs test" @@ -30,7 +30,7 @@ DEPEND="${RDEPEND} virtual/pkgconfig" src_prepare() { - epatch_user + default eautoreconf } @@ -58,19 +58,19 @@ src_install() { systemd_dounit "${FILESDIR}"/tox-bootstrapd.service fi - prune_libtool_files + find "${D}" -name '*.la' -delete || die } pkg_postinst() { if use daemon; then enewgroup ${PN} enewuser ${PN} -1 -1 -1 ${PN} - if [[ -f ${EROOT}var/lib/tox-dht-bootstrap/key ]]; then + if [[ -f ${EROOT%/}/var/lib/tox-dht-bootstrap/key ]]; then ewarn "Backwards compatability with the bootstrap daemon might have been" ewarn "broken a while ago. To resolve this issue, REMOVE the following files:" - ewarn " ${EROOT}var/lib/tox-dht-bootstrap/key" - ewarn " ${EROOT}etc/tox-bootstrapd.conf" - ewarn " ${EROOT}run/tox-dht-bootstrap/tox-dht-bootstrap.pid" + ewarn " ${EROOT%/}/var/lib/tox-dht-bootstrap/key" + ewarn " ${EROOT%/}/etc/tox-bootstrapd.conf" + ewarn " ${EROOT%/}/run/tox-dht-bootstrap/tox-dht-bootstrap.pid" ewarn "Then just re-emerge net-libs/tox" fi fi