From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id DC48D58973 for ; Sun, 17 Jan 2016 00:22:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BE69E21C009; Sun, 17 Jan 2016 00:22:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E15BD21C02C for ; Sun, 17 Jan 2016 00:22:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 119133409EF for ; Sun, 17 Jan 2016 00:22:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 795C4EE4 for ; Sun, 17 Jan 2016 00:22:10 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1452990120.c857b2bd1250abb2d078e7b440c96257c730be56.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/syntastic/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/syntastic/Manifest app-vim/syntastic/syntastic-3.6.0.ebuild X-VCS-Directories: app-vim/syntastic/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: c857b2bd1250abb2d078e7b440c96257c730be56 X-VCS-Branch: master Date: Sun, 17 Jan 2016 00:22: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-Archives-Salt: b0f34ed3-9cab-4d7a-8b09-59ca6e770c0e X-Archives-Hash: 90f392704752cb23bbc3e43dcba41538 commit: c857b2bd1250abb2d078e7b440c96257c730be56 Author: Tim Harder gentoo org> AuthorDate: Sun Jan 17 00:17:46 2016 +0000 Commit: Tim Harder gentoo org> CommitDate: Sun Jan 17 00:22:00 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c857b2bd app-vim/syntastic: remove old app-vim/syntastic/Manifest | 1 - app-vim/syntastic/syntastic-3.6.0.ebuild | 33 -------------------------------- 2 files changed, 34 deletions(-) diff --git a/app-vim/syntastic/Manifest b/app-vim/syntastic/Manifest index 83927af..4322f62 100644 --- a/app-vim/syntastic/Manifest +++ b/app-vim/syntastic/Manifest @@ -1,2 +1 @@ -DIST syntastic-3.6.0.tar.gz 189617 SHA256 b47c5ad0290f7f8e5fda49fde996258509c939b0244de812bed847de1d2a0557 SHA512 855577a796ffd8e9077d4f900928beba3f5f78348f81d39a776c7659713be75170285b421e8751b06639100a2580a2b7fc5f1e4aefb4c7225dc6b2f11ef02e25 WHIRLPOOL 5df8dc3a01f14e4e83366b37d819efb176cf17d49cbfe4a14ce990a4027eb4e507e29a3e408f472b637f180713d969b88a298fb0cf4edd3deaa02dad79b0fdb1 DIST syntastic-3.7.0.tar.gz 198480 SHA256 4006fdd5e786ceeb493817c2b6b0d1e6a403089436c958239359a3e7fb7ab016 SHA512 c435969a6c309d303bdd74c87cad25df56cd30028a75be8e58f035e6dd00b0390654ff2ee8e552a1a2495054426b9f43ea7f7db45691e6bddf9783ee0a4ccb73 WHIRLPOOL 26c3258cbbdd3e4cc637c79cf2f3c53d87322b35a3c0d89021e925e10a5006b87ff2ecc3202983365dd4e5b0489ac4e0da44211fd61edff945ebd7c6efd36002 diff --git a/app-vim/syntastic/syntastic-3.6.0.ebuild b/app-vim/syntastic/syntastic-3.6.0.ebuild deleted file mode 100644 index 8b4403a..0000000 --- a/app-vim/syntastic/syntastic-3.6.0.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -inherit vim-plugin - -if [[ ${PV} == "9999" ]] ; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/scrooloose/syntastic.git" -else - SRC_URI="https://github.com/scrooloose/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 x86" -fi - -DESCRIPTION="vim plugin: syntax checking using external tools" -HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=2736 https://github.com/scrooloose/syntastic/" -LICENSE="WTFPL-2" - -VIM_PLUGIN_HELPFILES="${PN}" - -src_prepare() { - rm -r _assets LICENCE README.markdown || die -} - -pkg_postinst() { - if [[ -z ${REPLACING_VERSIONS} ]] ; then - elog "Syntastic has many optional dependencies depending on the type" - elog "of syntax checking being performed. Look in the related files in" - elog "the syntax_checkers directory to help figure out what programs" - elog "different languages need." - fi -}