Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/syntastic/
Date: Sat, 28 Sep 2019 04:02:14
Message-Id: 1569643259.a15d0f0526aa0dcb964abf8bef5e0348d577878e.radhermit@gentoo
1 commit: a15d0f0526aa0dcb964abf8bef5e0348d577878e
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 28 04:00:59 2019 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 28 04:00:59 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a15d0f05
7
8 app-vim/syntastic: remove old
9
10 Signed-off-by: Tim Harder <radhermit <AT> gentoo.org>
11
12 app-vim/syntastic/Manifest | 1 -
13 app-vim/syntastic/syntastic-3.8.0.ebuild | 33 --------------------------------
14 2 files changed, 34 deletions(-)
15
16 diff --git a/app-vim/syntastic/Manifest b/app-vim/syntastic/Manifest
17 index 2ddcf65d0cc..815dca2da89 100644
18 --- a/app-vim/syntastic/Manifest
19 +++ b/app-vim/syntastic/Manifest
20 @@ -1,2 +1 @@
21 -DIST syntastic-3.8.0.tar.gz 253425 BLAKE2B a003b9166aba2915b5421ac02544d128b8befca0af4f15c880f56ad046fad0ca7c202e6f7dda44588a6ad4ac3b77a3ed3602613855c6755261b5941d45464eff SHA512 b2f7fb07d457169a397a1ed42141e099cad14ded0b43f54a11060f2952843387396fcc539ffc9aaa1aa137ae62801e346a73c6de6035a0504706c59e40acef5c
22 DIST syntastic-3.9.0.tar.gz 263275 BLAKE2B 574cf958b859a108cdfdffed29b3ff0f0903dac5c7fbc497e2c69831ee35532d317bde0ab827dda828ee7cb3cc13ab9176c9ea6ea233e03e7b3fcb5b7c49757e SHA512 04cee939226940bb95935434b7aba42a3419b8b7b73d5fa9052a6aaccec5d0724c4e3634edd56573d0080b31baf49c1a00811c6f88e4fbbdea7e761e5707dcb5
23
24 diff --git a/app-vim/syntastic/syntastic-3.8.0.ebuild b/app-vim/syntastic/syntastic-3.8.0.ebuild
25 deleted file mode 100644
26 index 2c2f54a9780..00000000000
27 --- a/app-vim/syntastic/syntastic-3.8.0.ebuild
28 +++ /dev/null
29 @@ -1,33 +0,0 @@
30 -# Copyright 1999-2018 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -inherit vim-plugin
35 -
36 -if [[ ${PV} == "9999" ]] ; then
37 - inherit git-r3
38 - EGIT_REPO_URI="https://github.com/scrooloose/syntastic.git"
39 -else
40 - SRC_URI="https://github.com/scrooloose/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 - KEYWORDS="amd64 x86"
42 -fi
43 -
44 -DESCRIPTION="vim plugin: syntax checking using external tools"
45 -HOMEPAGE="https://www.vim.org/scripts/script.php?script_id=2736 https://github.com/scrooloose/syntastic/"
46 -LICENSE="WTFPL-2"
47 -
48 -VIM_PLUGIN_HELPFILES="${PN}"
49 -
50 -src_prepare() {
51 - default
52 - rm -r _assets LICENCE README.markdown || die
53 -}
54 -
55 -pkg_postinst() {
56 - if [[ -z ${REPLACING_VERSIONS} ]] ; then
57 - elog "Syntastic has many optional dependencies depending on the type"
58 - elog "of syntax checking being performed. Look in the related files in"
59 - elog "the syntax_checkers directory to help figure out what programs"
60 - elog "different languages need."
61 - fi
62 -}