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 9374C138330 for ; Sat, 17 Sep 2016 02:48:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BCDF6E09A9; Sat, 17 Sep 2016 02:48:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 69A09E09A9 for ; Sat, 17 Sep 2016 02:48:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 108FB340662 for ; Sat, 17 Sep 2016 02:47:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2CEC6245E for ; Sat, 17 Sep 2016 02:47:54 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1474080461.8c81c7ff4a1671800ae61f0fdb7480c9a47605b6.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/jekyll/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/jekyll/jekyll-3.2.1.ebuild X-VCS-Directories: www-apps/jekyll/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 8c81c7ff4a1671800ae61f0fdb7480c9a47605b6 X-VCS-Branch: master Date: Sat, 17 Sep 2016 02:47:54 +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: e0e745dc-843e-439f-8c53-8e8dbc175792 X-Archives-Hash: 8c0da46d440a7461c8283e13de458931 commit: 8c81c7ff4a1671800ae61f0fdb7480c9a47605b6 Author: Manuel Rüger gentoo org> AuthorDate: Sat Sep 17 02:47:41 2016 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Sat Sep 17 02:47:41 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c81c7ff www-apps/jekyll: Remove old Package-Manager: portage-2.3.0 www-apps/jekyll/jekyll-3.2.1.ebuild | 56 ------------------------------------- 1 file changed, 56 deletions(-) diff --git a/www-apps/jekyll/jekyll-3.2.1.ebuild b/www-apps/jekyll/jekyll-3.2.1.ebuild deleted file mode 100644 index e95e09b..00000000 --- a/www-apps/jekyll/jekyll-3.2.1.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -inherit ruby-fakegem - -RUBY_FAKEGEM_EXTRADOC="README.markdown History.markdown" -RUBY_FAKEGEM_EXTRAINSTALL="features site" - -RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec" - -DESCRIPTION="A simple, blog aware, static site generator" -HOMEPAGE="http://jekyllrb.com https://github.com/jekyll/jekyll" -SRC_URI="https://github.com/jekyll/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="test" - -ruby_add_rdepend ">=dev-ruby/colorator-1.0 - >=dev-ruby/kramdown-1.3 - >=dev-ruby/liquid-3.0:3 - >=dev-ruby/mercenary-0.3.3 - >=dev-ruby/pathutil-0.9 - >=dev-ruby/safe_yaml-1.0 - >=dev-ruby/rouge-1.7 - >=www-apps/jekyll-sass-converter-1.0 - >=www-apps/jekyll-watch-1.1" - -ruby_add_bdepend "test? ( - dev-ruby/rspec-mocks - dev-ruby/launchy - dev-ruby/mime-types:0 - >=dev-ruby/rdiscount-2.0 - >=dev-ruby/redcloth-4.2.1 - >=dev-ruby/rouge-1.7 - >=dev-ruby/shoulda-3 - dev-ruby/test-unit:2 )" - -all_ruby_prepare() { - sed -i -e "/simplecov/,+5d"\ - -e "1igem 'test-unit'"\ - -e "1igem 'minitest', '~> 5.0'"\ - -e "/reporters/d"\ - -e "/profile/d"\ - -e "/Reporters/,+4d" test/helper.rb || die - # Drop bundler - sed -i -e "/self.class.require_from_bundler/d" lib/jekyll/plugin_manager.rb || die - # This test fails without bundler - rm test/test_plugin_manager.rb || die - rm test/test_theme.rb || die -}