summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Deutschmann <whissi@gentoo.org>2019-03-11 07:28:33 +0100
committerThomas Deutschmann <whissi@gentoo.org>2019-03-11 07:28:55 +0100
commitb0a7fbefcd8e03543df2f3b7a2c893596ca79b27 (patch)
tree18cfdd6e9f04b93f59f6ce6e55ac384abdaa6917
parentapp-eselect/eselect-rust: bump to v20190311 (diff)
downloadgentoo-b0a7fbefcd8e03543df2f3b7a2c893596ca79b27.tar.gz
gentoo-b0a7fbefcd8e03543df2f3b7a2c893596ca79b27.tar.bz2
gentoo-b0a7fbefcd8e03543df2f3b7a2c893596ca79b27.zip
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 <whissi@gentoo.org>
-rw-r--r--dev-util/cargo/cargo-0.30.0-r1.ebuild (renamed from dev-util/cargo/cargo-0.30.0.ebuild)9
1 files 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
index 3ab88c1f3331..a1a63f133892 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
+}