diff options
author | Hans de Graaff <graaff@gentoo.org> | 2011-01-19 20:29:40 +0000 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2011-01-19 20:29:40 +0000 |
commit | 15ef9ad9403594b8c2834062750c2531b5ff825e (patch) | |
tree | 43797170df842366a96bea2a817ef69a09cd1f39 /dev-ruby/pg | |
parent | Version bump. (diff) | |
download | gentoo-2-15ef9ad9403594b8c2834062750c2531b5ff825e.tar.gz gentoo-2-15ef9ad9403594b8c2834062750c2531b5ff825e.tar.bz2 gentoo-2-15ef9ad9403594b8c2834062750c2531b5ff825e.zip |
Version bump.
(Portage version: 2.1.9.25/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby/pg')
-rw-r--r-- | dev-ruby/pg/ChangeLog | 7 | ||||
-rw-r--r-- | dev-ruby/pg/pg-0.10.1.ebuild | 54 |
2 files changed, 60 insertions, 1 deletions
diff --git a/dev-ruby/pg/ChangeLog b/dev-ruby/pg/ChangeLog index efaa5d1d21de..d5742f82194c 100644 --- a/dev-ruby/pg/ChangeLog +++ b/dev-ruby/pg/ChangeLog @@ -1,6 +1,11 @@ # 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.21 2011/01/02 15:42:16 graaff Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-ruby/pg/ChangeLog,v 1.22 2011/01/19 20:29:40 graaff Exp $ + +*pg-0.10.1 (19 Jan 2011) + + 19 Jan 2011; Hans de Graaff <graaff@gentoo.org> +pg-0.10.1.ebuild: + Version bump. *pg-0.10.0 (02 Jan 2011) diff --git a/dev-ruby/pg/pg-0.10.1.ebuild b/dev-ruby/pg/pg-0.10.1.ebuild new file mode 100644 index 000000000000..829d8ddf1232 --- /dev/null +++ b/dev-ruby/pg/pg-0.10.1.ebuild @@ -0,0 +1,54 @@ +# 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.1 2011/01/19 20:29:40 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 ) + 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() { + # 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" +} |