diff options
author | Hans de Graaff <graaff@gentoo.org> | 2011-10-20 17:50:35 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2011-10-20 17:50:35 +0000 |
commit | 828e8699b653c9d647418263b3af45d6cb7a945b (patch) | |
tree | db7e2fa5e436cf06192e07dc286b4c08d34dbbb5 /dev-ruby/pg | |
parent | [bump] dev-perl/Module-Install-1.40.0 (diff) | |
download | historical-828e8699b653c9d647418263b3af45d6cb7a945b.tar.gz historical-828e8699b653c9d647418263b3af45d6cb7a945b.tar.bz2 historical-828e8699b653c9d647418263b3af45d6cb7a945b.zip |
Remove old version.
Package-Manager: portage-2.1.10.11/cvs/Linux x86_64
Diffstat (limited to 'dev-ruby/pg')
-rw-r--r-- | dev-ruby/pg/ChangeLog | 5 | ||||
-rw-r--r-- | dev-ruby/pg/pg-0.10.1.ebuild | 60 |
2 files changed, 4 insertions, 61 deletions
diff --git a/dev-ruby/pg/ChangeLog b/dev-ruby/pg/ChangeLog index a8d9f34064bd..9f22646f1cb3 100644 --- a/dev-ruby/pg/ChangeLog +++ b/dev-ruby/pg/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-ruby/pg # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/pg/ChangeLog,v 1.35 2011/07/23 11:29:26 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/pg/ChangeLog,v 1.36 2011/10/20 17:50:35 graaff Exp $ + + 20 Oct 2011; Hans de Graaff <graaff@gentoo.org> -pg-0.10.1.ebuild: + Remove old version. 23 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> pg-0.9.0-r1.ebuild: ppc/ppc64 stable wrt #358723 diff --git a/dev-ruby/pg/pg-0.10.1.ebuild b/dev-ruby/pg/pg-0.10.1.ebuild deleted file mode 100644 index 027a616f60f6..000000000000 --- a/dev-ruby/pg/pg-0.10.1.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-ruby/pg/pg-0.10.1.ebuild,v 1.3 2011/03/14 21:41:51 graaff Exp $ - -EAPI=2 -USE_RUBY="ruby18 ree18 ruby19" - -RUBY_FAKEGEM_TEST_TASK="" - -RUBY_FAKEGEM_TASK_DOC="apidocs" -RUBY_FAKEGEM_DOCDIR="docs/api" -RUBY_FAKEGEM_EXTRADOC="ChangeLog Contributors README" - -inherit ruby-fakegem - -DESCRIPTION="Ruby extension library providing an API to PostgreSQL" -HOMEPAGE="http://bitbucket.org/ged/ruby-pg/" - -LICENSE="|| ( GPL-2 Ruby )" -SLOT="0" -KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos" -IUSE="" - -RDEPEND="${RDEPEND} - dev-db/postgresql-base" -DEPEND="${DEPEND} - dev-db/postgresql-base - test? ( dev-db/postgresql-server )" - -ruby_add_bdepend " - doc? ( - dev-ruby/rake-compiler - dev-ruby/rubygems - || ( dev-ruby/yard dev-ruby/rdoc ) ) - test? ( dev-ruby/rspec:2 )" - -each_ruby_configure() { - pushd ext - ${RUBY} extconf.rb || die "extconf.rb failed" - popd -} - -each_ruby_compile() { - pushd ext - emake CFLAGS="${CFLAGS} -fPIC" archflag="${LDFLAGS}" || die "emake failed" - popd - cp ext/*.so lib || die -} - -each_ruby_test() { - if [[ "${EUID}" -ne "0" ]]; then - # Make the rspec call explicit, this way we don't have to depend - # on rake-compiler (nor rubygems) _and_ we don't have to rebuild - # the whole extension from scratch. - ${RUBY} -Ilib -S rspec -fs spec/*_spec.rb || die "spec failed" - else - ewarn "The userpriv feature must be enabled to run tests." - eerror "Testsuite will not be run." - fi -} |