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 6BF0E138334 for ; Mon, 11 Mar 2019 06:29:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6C8E3E0CA8; Mon, 11 Mar 2019 06:29:13 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3D8F5E0CA8 for ; Mon, 11 Mar 2019 06:29:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 04DBB335D74 for ; Mon, 11 Mar 2019 06:29:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9F5DF55B for ; Mon, 11 Mar 2019 06:29:10 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1552285735.b0a7fbefcd8e03543df2f3b7a2c893596ca79b27.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/cargo/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/cargo/cargo-0.30.0-r1.ebuild dev-util/cargo/cargo-0.30.0.ebuild X-VCS-Directories: dev-util/cargo/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: b0a7fbefcd8e03543df2f3b7a2c893596ca79b27 X-VCS-Branch: master Date: Mon, 11 Mar 2019 06:29:10 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 730c0a0d-d356-40d8-856b-31a049a3d258 X-Archives-Hash: fec3270e87964f8e6965296bd830d472 commit: b0a7fbefcd8e03543df2f3b7a2c893596ca79b27 Author: Thomas Deutschmann gentoo org> AuthorDate: Mon Mar 11 06:28:33 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Mon Mar 11 06:28:55 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0a7fbef dev-util/cargo: rev bump to add pkg_postrm function Required to help upgrading to rust-1.30+. Bug: https://bugs.gentoo.org/671182 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Thomas Deutschmann gentoo.org> dev-util/cargo/{cargo-0.30.0.ebuild => cargo-0.30.0-r1.ebuild} | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dev-util/cargo/cargo-0.30.0.ebuild b/dev-util/cargo/cargo-0.30.0-r1.ebuild similarity index 96% rename from dev-util/cargo/cargo-0.30.0.ebuild rename to dev-util/cargo/cargo-0.30.0-r1.ebuild index 3ab88c1f333..a1a63f13389 100644 --- a/dev-util/cargo/cargo-0.30.0.ebuild +++ b/dev-util/cargo/cargo-0.30.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -156,7 +156,8 @@ KEYWORDS="amd64 ~arm64 x86" IUSE="doc libressl" -COMMON_DEPEND="sys-libs/zlib +COMMON_DEPEND=">=app-eselect/eselect-rust-0.3_pre20150425 + sys-libs/zlib !libressl? ( dev-libs/openssl:0= ) libressl? ( dev-libs/libressl:0= ) net-libs/libssh2 @@ -200,3 +201,7 @@ src_install() { doins src/etc/_cargo doman src/etc/man/* } + +pkg_postrm() { + eselect rust update +}