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 3E4691396D0 for ; Fri, 25 Aug 2017 06:09:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C565D1FC07A; Fri, 25 Aug 2017 06:09:14 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 9F8731FC07A for ; Fri, 25 Aug 2017 06:09:14 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 8EA61341698 for ; Fri, 25 Aug 2017 06:09:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8215E81DB for ; Fri, 25 Aug 2017 06:09:10 +0000 (UTC) From: "Hans de Graaff" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Hans de Graaff" Message-ID: <1503640937.0f70aac97d0470a77dbe93a44b84e93fde92db2f.graaff@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-ruby/pg_array_parser/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-ruby/pg_array_parser/pg_array_parser-0.0.9-r1.ebuild X-VCS-Directories: dev-ruby/pg_array_parser/ X-VCS-Committer: graaff X-VCS-Committer-Name: Hans de Graaff X-VCS-Revision: 0f70aac97d0470a77dbe93a44b84e93fde92db2f X-VCS-Branch: master Date: Fri, 25 Aug 2017 06:09: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: 595178e8-2302-4cff-8f7c-510dca8b2cd9 X-Archives-Hash: 28f31e64b2947fb32797e1ba2525f618 commit: 0f70aac97d0470a77dbe93a44b84e93fde92db2f Author: Hans de Graaff gentoo org> AuthorDate: Fri Aug 25 06:02:17 2017 +0000 Commit: Hans de Graaff gentoo org> CommitDate: Fri Aug 25 06:02:17 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f70aac9 dev-ruby/pg_array_parser: cleanup Package-Manager: Portage-2.3.6, Repoman-2.3.2 .../pg_array_parser-0.0.9-r1.ebuild | 53 ---------------------- 1 file changed, 53 deletions(-) diff --git a/dev-ruby/pg_array_parser/pg_array_parser-0.0.9-r1.ebuild b/dev-ruby/pg_array_parser/pg_array_parser-0.0.9-r1.ebuild deleted file mode 100644 index fb72d37e4fe..00000000000 --- a/dev-ruby/pg_array_parser/pg_array_parser-0.0.9-r1.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -USE_RUBY="ruby20 ruby21 ruby22" - -RUBY_FAKEGEM_RECIPE_TEST="rspec3" - -RUBY_FAKEGEM_RECIPE_DOC="rdoc" -RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md" - -inherit ruby-fakegem versionator - -DESCRIPTION="Simple library to parse PostgreSQL arrays into a array of strings" -HOMEPAGE="https://github.com/dockyard/pg_array_parser" - -LICENSE="MIT" -SLOT="$(get_version_component_range 1-3)" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="" - -ruby_add_bdepend "dev-ruby/bundler" - -all_ruby_prepare() { - [ -f Gemfile.lock ] && rm Gemfile.lock - #if ! use development; then - sed -i -e "/^group :development do/,/^end$/d" Gemfile || die - sed -i -e "/s.add_development_dependency/d" "${PN}".gemspec || die - sed -i -e "/gem.add_development_dependency/d" "${PN}".gemspec || die - #fi - #if ! use test; then - sed -i -e "/^group :test do/,/^end$/d" Gemfile || die - #fi - #if ! use test && ! use development; then - sed -i -e "/^group :development, :test do/,/^end$/d" Gemfile || die - #fi -} - -each_ruby_prepare() { - if [ -f Gemfile ]; then - BUNDLE_GEMFILE=Gemfile ${RUBY} -S bundle install --local || die - BUNDLE_GEMFILE=Gemfile ${RUBY} -S bundle check || die - fi -} - -each_ruby_configure() { - ${RUBY} -Cext/pg_array_parser extconf.rb || die -} - -each_ruby_compile() { - emake -Cext/pg_array_parser V=1 - cp ext/pg_array_parser/pg_array_parser.so lib/ -}