public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-ruby/sqlite3-ruby: sqlite3-ruby-1.3.4-r1.ebuild ChangeLog
@ 2012-01-16 18:41 Diego Petteno (flameeyes)
  0 siblings, 0 replies; only message in thread
From: Diego Petteno (flameeyes) @ 2012-01-16 18:41 UTC (permalink / raw
  To: gentoo-commits

flameeyes    12/01/16 18:41:00

  Modified:             ChangeLog
  Added:                sqlite3-ruby-1.3.4-r1.ebuild
  Log:
  Create alias specification for old name (sqlite3-ruby).
  
  (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)

Revision  Changes    Path
1.62                 dev-ruby/sqlite3-ruby/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/sqlite3-ruby/ChangeLog?rev=1.62&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/sqlite3-ruby/ChangeLog?rev=1.62&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/sqlite3-ruby/ChangeLog?r1=1.61&r2=1.62

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-ruby/sqlite3-ruby/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog	15 Jan 2012 18:52:51 -0000	1.61
+++ ChangeLog	16 Jan 2012 18:41:00 -0000	1.62
@@ -1,6 +1,12 @@
 # ChangeLog for dev-ruby/sqlite3-ruby
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sqlite3-ruby/ChangeLog,v 1.61 2012/01/15 18:52:51 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sqlite3-ruby/ChangeLog,v 1.62 2012/01/16 18:41:00 flameeyes Exp $
+
+*sqlite3-ruby-1.3.4-r1 (16 Jan 2012)
+
+  16 Jan 2012; Diego E. Pettenò <flameeyes@gentoo.org>
+  +sqlite3-ruby-1.3.4-r1.ebuild:
+  Create alias specification for old name (sqlite3-ruby).
 
   15 Jan 2012; Raúl Porcel <armin76@gentoo.org> sqlite3-ruby-1.3.3.ebuild:
   ia64/sparc/x86 stable wrt #397979



1.1                  dev-ruby/sqlite3-ruby/sqlite3-ruby-1.3.4-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/sqlite3-ruby/sqlite3-ruby-1.3.4-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ruby/sqlite3-ruby/sqlite3-ruby-1.3.4-r1.ebuild?rev=1.1&content-type=text/plain

Index: sqlite3-ruby-1.3.4-r1.ebuild
===================================================================
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sqlite3-ruby/sqlite3-ruby-1.3.4-r1.ebuild,v 1.1 2012/01/16 18:41:00 flameeyes Exp $

EAPI=2
USE_RUBY="ruby18 ree18 ruby19"

RUBY_FAKEGEM_TASK_DOC="docs"
RUBY_FAKEGEM_DOCDIR="doc faq"
RUBY_FAKEGEM_EXTRADOC="API_CHANGES.rdoc README.rdoc ChangeLog.cvs CHANGELOG.rdoc"

RUBY_FAKEGEM_NAME="sqlite3"

inherit multilib ruby-fakegem

DESCRIPTION="An extension library to access a SQLite database from Ruby"
HOMEPAGE="http://rubyforge.org/projects/sqlite-ruby/"
LICENSE="BSD"

KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
SLOT="0"
IUSE=""

RDEPEND="${RDEPEND}
	=dev-db/sqlite-3*"
DEPEND="${DEPEND}
	=dev-db/sqlite-3*"

ruby_add_bdepend "
	dev-ruby/rake-compiler
	dev-ruby/hoe
	test? ( virtual/ruby-test-unit )
	doc? ( dev-ruby/redcloth )"

all_ruby_prepare() {
	# We remove the vendor_sqlite3 rake task because it's used to
	# bundle SQlite3 which we definitely don't want.
	rm tasks/vendor_sqlite3.rake || die

	sed -i -e 's:, HOE.spec::' -e '/task :test/d' tasks/native.rake || die
}

each_ruby_configure() {
	${RUBY} -Cext/sqlite3 extconf.rb || die
}

each_ruby_compile() {
	# TODO: not sure what happens with jruby

	emake -Cext/sqlite3 || die
	mv ext/sqlite3/sqlite3_native$(get_modname) lib/sqlite3/ || die
}

all_ruby_compile() {
	all_fakegem_compile

	if use doc; then
		rake faq || die "rake faq failed"
	fi
}

each_ruby_install() {
	each_fakegem_install

	# sqlite3 was called sqlite3-ruby before, so add a spec file that
	# simply loads sqlite3 to make sure that old projects load correctly
	cat - <<EOF > "${T}/sqlite3-ruby.gemspec"
# generated by ebuild
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sqlite3-ruby/sqlite3-ruby-1.3.4-r1.ebuild,v 1.1 2012/01/16 18:41:00 flameeyes Exp $
Gem::Specification.new do |s|
  s.name = "sqlite3-ruby"
  s.version = "${RUBY_FAKEGEM_VERSION}"
  s.summary = "Fake gem to load sqlite3"
  s.homepage = "${HOMEPAGE}"
  s.specification_version = 3
  s.add_runtime_dependency("${RUBY_FAKEGEM_NAME}", ["= ${RUBY_FAKEGEM_VERSION}"])
end
EOF
	RUBY_FAKEGEM_NAME=sqlite3-ruby \
		RUBY_FAKEGEM_GEMSPEC="${T}/sqlite3-ruby.gemspec" \
		ruby_fakegem_install_gemspec

  # we don't even need to create a file to load this: the `require
  # sqlite3` was already part of sqlite3-ruby requirements.
}






^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2012-01-16 18:41 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-16 18:41 [gentoo-commits] gentoo-x86 commit in dev-ruby/sqlite3-ruby: sqlite3-ruby-1.3.4-r1.ebuild ChangeLog Diego Petteno (flameeyes)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox