remove outdated dev-util/racer

This commit is contained in:
Anton Schubert 2021-07-24 13:19:13 +02:00
parent 902745f944
commit 2ef62b62aa
2 changed files with 0 additions and 40 deletions

View file

@ -1,2 +0,0 @@
DIST racer-2.0.1.tar.gz 136271 SHA256 2119cb898bd430922c1baeada63cbdb8416f7dd7142623dcb61a3dc291b1f63a SHA512 17a33bf8fed6cd410e8aa8e3003f8ceaebda2f148ca85d7bcce476ed83639647a6408be71283fb1f3619e91d0e859666f0565dc7c86cda92f79665e0b544acbf WHIRLPOOL dd9a38a75fa135f4e9bd107077af75313c0196a5507fb0dc53a5b9912bf19d78eb8286b7e6570dbbaa4dbad56bdde81c9b8edf9735f1b42a47b1a42220aa2143
EBUILD racer-2.0.1.ebuild 870 SHA256 eadf6b5c179323c6bd1b514c4172fb412247a69647a1d830a0f1a1054089078a SHA512 8f20c48070eac5ed046ac2f4baa35668967c1fae722a9148dd5871d4a2e3828f2aa24c1bcb2ac6aa3a4f571ee3f02524903b6e34e460173e1368d71a6599ce42 WHIRLPOOL 97c270603cb9816c921398c9f8a0a823ad88557c5d72c57e144eb9a4459d261ac233f9c789924833d2cdb9a8a0b7d0f587666f47ed6bae2ba1c0d2da57d00da5

View file

@ -1,38 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
inherit eutils
DESCRIPTION="Rust Code Completion utility "
HOMEPAGE="https://github.com/phildawes/racer"
SRC_URI="https://github.com/phildawes/racer/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
COMMON_DEPEND="dev-lang/rust"
DEPEND="${COMMON_DEPEND}
dev-util/cargo"
RDEPEND="${COMMON_DEPEND}"
src_compile() {
cargo build --release
}
src_install() {
dobin target/release/racer
}
pkg_postinst() {
elog "You most probably should fetch rust sources for best experience."
elog "Racer will look for sources in path pointed by RUST_SRC_PATH"
elog "environment variable. You can use"
elog "% export RUST_SRC_PATH=<path to>/rust/src."
elog "Use vim-racer or emacs-racer for the editos support"
elog
}