summaryrefslogtreecommitdiff
path: root/databases/ruby-activerecord/Makefile
diff options
context:
space:
mode:
authorminskim <minskim>2007-02-18 23:12:52 +0000
committerminskim <minskim>2007-02-18 23:12:52 +0000
commit2e15cd0a191c06676e292f93eae2dec6b070c799 (patch)
tree4ab20e68586ac850c6f65123a11e5b65f65ac0e7 /databases/ruby-activerecord/Makefile
parent0fdb0ac4f9b972f10436632800d66730cb617caa (diff)
downloadpkgsrc-2e15cd0a191c06676e292f93eae2dec6b070c799.tar.gz
Update ruby-activerecord to 1.15.2.
Changes: * Pass a range in :conditions to use the SQL BETWEEN operator. #6974 [dcmanges] Student.find(:all, :conditions => { :grade => 9..12 }) * Don't create instance writer methods for class attributes. [Rick] * When dealing with SQLite3, use the table_info pragma helper, so that the bindings can do some translation for when sqlite3 breaks incompatibly between point releases. [Jamis Buck] * SQLServer: don't choke on strings containing 'null'. #7083 [Jakob S] * Consistently use LOWER() for uniqueness validations (rather than mixing with UPPER()) so the database can always use a functional index on the lowercased column. #6495 [Si] * MySQL: SET SQL_AUTO_IS_NULL=0 so 'where id is null' doesn't select the last inserted id. #6778 [Jonathan Viney, timc] * Fixtures use the table name and connection from set_fixture_class. #7330 [Anthony Eden] * SQLServer: quote table name in indexes query. #2928 [keithm@infused.org]
Diffstat (limited to 'databases/ruby-activerecord/Makefile')
-rw-r--r--databases/ruby-activerecord/Makefile17
1 files changed, 8 insertions, 9 deletions
diff --git a/databases/ruby-activerecord/Makefile b/databases/ruby-activerecord/Makefile
index dded6fab11b..e45ce4d7ad0 100644
--- a/databases/ruby-activerecord/Makefile
+++ b/databases/ruby-activerecord/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.7 2007/01/28 05:36:31 minskim Exp $
+# $NetBSD: Makefile,v 1.8 2007/02/18 23:12:52 minskim Exp $
-DISTNAME= activerecord-1.15.1
+DISTNAME= activerecord-1.15.2
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME}
CATEGORIES= databases ruby
-MASTER_SITES= http://rubyforge.org/frs/download.php/16548/
+MASTER_SITES= http://rubyforge.org/frs/download.php/17224/
EXTRACT_SUFX= .tgz
MAINTAINER= minskim@NetBSD.org
@@ -21,14 +21,13 @@ EXAMPLES= associations.png associations.rb shared_setup.rb \
.include "../../lang/ruby/modules.mk"
post-install:
- ${INSTALL_DATA_DIR} ${RUBY_SITELIBDIR}/active_record/support
- ${INSTALL_DATA_DIR} ${RUBY_DOCDIR}/activerecord
- ${INSTALL_DATA} ${WRKSRC}/CHANGELOG ${RUBY_DOCDIR}/activerecord
- ${INSTALL_DATA} ${WRKSRC}/README ${RUBY_DOCDIR}/activerecord
- ${INSTALL_DATA_DIR} ${RUBY_EXAMPLESDIR}/activerecord
+ ${INSTALL_DATA_DIR} ${RUBY_DOCDIR}/active_record
+ ${INSTALL_DATA} ${WRKSRC}/CHANGELOG ${RUBY_DOCDIR}/active_record
+ ${INSTALL_DATA} ${WRKSRC}/README ${RUBY_DOCDIR}/active_record
+ ${INSTALL_DATA_DIR} ${RUBY_EXAMPLESDIR}/active_record
.for f in ${EXAMPLES}
${INSTALL_DATA} ${WRKSRC}/examples/${f} \
- ${RUBY_EXAMPLESDIR}/activerecord
+ ${RUBY_EXAMPLESDIR}/active_record
.endfor
.include "../../mk/bsd.pkg.mk"