summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2008-10-04 08:04:11 +0000
committerHans de Graaff <graaff@gentoo.org>2008-10-04 08:04:11 +0000
commit61af0ca8a0da42f390f584b261862493807f2225 (patch)
tree48011c839d60e333571747bf416017624aced351
parentadded games-rpg/mangos-9999 to package.mask (for experienced/testing users only) (diff)
downloadgentoo-2-61af0ca8a0da42f390f584b261862493807f2225.tar.gz
gentoo-2-61af0ca8a0da42f390f584b261862493807f2225.tar.bz2
gentoo-2-61af0ca8a0da42f390f584b261862493807f2225.zip
Remove old version
(Portage version: 2.1.4.4)
-rw-r--r--dev-ruby/sqlite-ruby/ChangeLog5
-rw-r--r--dev-ruby/sqlite-ruby/sqlite-ruby-2.2.3.ebuild41
2 files changed, 4 insertions, 42 deletions
diff --git a/dev-ruby/sqlite-ruby/ChangeLog b/dev-ruby/sqlite-ruby/ChangeLog
index c84bc7dc2090..14f0437190a0 100644
--- a/dev-ruby/sqlite-ruby/ChangeLog
+++ b/dev-ruby/sqlite-ruby/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/sqlite-ruby
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sqlite-ruby/ChangeLog,v 1.37 2008/05/12 09:55:22 corsair Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sqlite-ruby/ChangeLog,v 1.38 2008/10/04 08:04:11 graaff Exp $
+
+ 04 Oct 2008; Hans de Graaff <graaff@gentoo.org> -sqlite-ruby-2.2.3.ebuild:
+ Remove old version
12 May 2008; Markus Rothe <corsair@gentoo.org>
sqlite-ruby-2.2.3-r1.ebuild:
diff --git a/dev-ruby/sqlite-ruby/sqlite-ruby-2.2.3.ebuild b/dev-ruby/sqlite-ruby/sqlite-ruby-2.2.3.ebuild
deleted file mode 100644
index fc49b0e4267f..000000000000
--- a/dev-ruby/sqlite-ruby/sqlite-ruby-2.2.3.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/sqlite-ruby/sqlite-ruby-2.2.3.ebuild,v 1.5 2007/03/10 10:23:46 eroyf Exp $
-
-inherit ruby
-
-DESCRIPTION="An extension library to access a SQLite database from Ruby"
-HOMEPAGE="http://rubyforge.org/projects/sqlite-ruby/"
-LICENSE="BSD"
-
-# The URL depends implicitly on the version, unfortunately. Even if you
-# change the filename on the end, it still downloads the same file.
-SRC_URI="http://rubyforge.org/frs/download.php/2819/${P}.tar.bz2"
-
-KEYWORDS="alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~sparc ~x86"
-SLOT="0"
-IUSE=""
-
-USE_RUBY="ruby18 ruby19"
-DEPEND="=dev-db/sqlite-2*"
-
-src_compile() {
- mkdir build
- cp ext/extconf.rb ext/sqlite-api.c build
- cp -r lib build
- cd build
- ruby extconf.rb || die "ruby extconf.rb failed"
- make || die "make failed"
-}
-
-src_install() {
- cd build
- make DESTDIR=${D} install || die "make install failed"
- cd ${S}
- erubydoc
-}
-
-src_test() {
- cd test
- ruby tests.rb || die "tests.rb failed"
-}