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 E389D138334 for ; Sat, 9 Jun 2018 21:58:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DDF26E085D; Sat, 9 Jun 2018 21:58:52 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 AA81BE085D for ; Sat, 9 Jun 2018 21:58:52 +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 EF045335C94 for ; Sat, 9 Jun 2018 21:58:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9CECB2C7 for ; Sat, 9 Jun 2018 21:58:49 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1528581523.2e59692594e51122db3586b25fe99ec07b4b7cdf.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-vim/airline/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-vim/airline/Manifest app-vim/airline/airline-0.8.ebuild X-VCS-Directories: app-vim/airline/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 2e59692594e51122db3586b25fe99ec07b4b7cdf X-VCS-Branch: master Date: Sat, 9 Jun 2018 21:58:49 +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: d58adccd-339f-4416-a131-b0b388653dd2 X-Archives-Hash: 75bc8d98b7194ab3116793f498ef6f45 commit: 2e59692594e51122db3586b25fe99ec07b4b7cdf Author: Patrice Clement gentoo org> AuthorDate: Fri Jun 8 10:28:13 2018 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sat Jun 9 21:58:43 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e596925 app-vim/airline: clean up old. Package-Manager: Portage-2.3.24, Repoman-2.3.6 app-vim/airline/Manifest | 1 - app-vim/airline/airline-0.8.ebuild | 27 --------------------------- 2 files changed, 28 deletions(-) diff --git a/app-vim/airline/Manifest b/app-vim/airline/Manifest index 3f2e8b29c92..3a571cb64a9 100644 --- a/app-vim/airline/Manifest +++ b/app-vim/airline/Manifest @@ -1,2 +1 @@ -DIST airline-0.8.tar.gz 52767 BLAKE2B 908489fca1fb31d0ee41f279b146046d50c9069055bb13645b049c4333984f0ca180315e50fe3fda13e36780dffa0b213719babbbcd2b27defd60470a05dbc2f SHA512 51ae20f7e5b869f714e9c21ab6ab8af4d2de31b3cf4fe9f6bd64e75e87e7796184d41ddd9536f3e41dcc93e9ca6aad684b286df6e5d8d6eae202f91ed8851292 DIST airline-0.9.tar.gz 72660 BLAKE2B d6c9762d8140b2a88a001b9ea3ae62c3c9147ccf3db90146d7fded8dcbc6062bf97c0725baa79db9d7bfe0eeaa5dc00ddfabde8ed1b9aec7f5aa24c41b11d1f2 SHA512 f3fd03c7ab6603eee6e892a1b88888d72fc43cf0a8582ad7e65152cddebb0d14be3a805529fa5467fc82e040cce2616f1693bf294c892c0849d9fb51cbbd04ec diff --git a/app-vim/airline/airline-0.8.ebuild b/app-vim/airline/airline-0.8.ebuild deleted file mode 100644 index b42a9c204cc..00000000000 --- a/app-vim/airline/airline-0.8.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit vim-plugin - -if [[ ${PV} != 9999* ]] ; then - MY_PN=vim-${PN} - MY_P=${MY_PN}-${PV} - SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="amd64 x86" - S="${WORKDIR}/${MY_P}" -else - inherit git-r3 - EGIT_REPO_URI="https://github.com/vim-airline/vim-airline.git" -fi - -DESCRIPTION="vim plugin: lean & mean statusline for vim that's light as air" -HOMEPAGE="https://github.com/vim-airline/vim-airline/ https://www.vim.org/scripts/script.php?script_id=4661" -LICENSE="MIT" -VIM_PLUGIN_HELPFILES="${PN}.txt" - -src_prepare() { - # remove unwanted files - rm -r t Gemfile Rakefile LICENSE README* || die -}