summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorminskim <minskim>2007-03-17 10:59:26 +0000
committerminskim <minskim>2007-03-17 10:59:26 +0000
commit24669a43f79ae16ad53738ef9bf76f8b85fd9e54 (patch)
tree15bd30ac89023ed4284050188fa02f2413c1fc4d
parentc2c23a54034c9c3ce4937c7a584f9c6e468c6f06 (diff)
downloadpkgsrc-24669a43f79ae16ad53738ef9bf76f8b85fd9e54.tar.gz
Update ruby-activesupport to 1.4.2.
Changes: * Deprecation: warn on stderr if RAILS_DEFAULT_LOGGER isn't set yet.
-rw-r--r--devel/ruby-activesupport/Makefile8
-rw-r--r--devel/ruby-activesupport/PLIST4
-rw-r--r--devel/ruby-activesupport/distinfo8
-rw-r--r--devel/ruby-activesupport/patches/patch-aa20
-rw-r--r--devel/ruby-activesupport/patches/patch-ab13
5 files changed, 9 insertions, 44 deletions
diff --git a/devel/ruby-activesupport/Makefile b/devel/ruby-activesupport/Makefile
index cad526ca9d4..f6ac23ba482 100644
--- a/devel/ruby-activesupport/Makefile
+++ b/devel/ruby-activesupport/Makefile
@@ -1,13 +1,13 @@
-# $NetBSD: Makefile,v 1.10 2007/02/18 23:03:11 minskim Exp $
+# $NetBSD: Makefile,v 1.11 2007/03/17 10:59:26 minskim Exp $
-DISTNAME= activesupport-1.4.1
+DISTNAME= activesupport-1.4.2
PKGNAME= ${RUBY_PKGPREFIX}-${DISTNAME}
CATEGORIES= devel ruby
-MASTER_SITES= http://rubyforge.org/frs/download.php/17221/
+MASTER_SITES= http://rubyforge.org/frs/download.php/18399/
EXTRACT_SUFX= .tgz
MAINTAINER= minskim@NetBSD.org
-HOMEPAGE= http://as.rubyonrails.com/
+HOMEPAGE= http://rubyforge.org/projects/activesupport/
COMMENT= Collection of classes and extensions for Rails
NO_BUILD= yes
diff --git a/devel/ruby-activesupport/PLIST b/devel/ruby-activesupport/PLIST
index 725d75ee8b7..078126db4d4 100644
--- a/devel/ruby-activesupport/PLIST
+++ b/devel/ruby-activesupport/PLIST
@@ -1,7 +1,5 @@
-@comment $NetBSD: PLIST,v 1.7 2007/02/18 23:03:11 minskim Exp $
+@comment $NetBSD: PLIST,v 1.8 2007/03/17 10:59:26 minskim Exp $
${RUBY_SITELIBDIR}/active_support.rb
-${RUBY_SITELIBDIR}/active_support/._dependencies.rb
-${RUBY_SITELIBDIR}/active_support/._version.rb
${RUBY_SITELIBDIR}/active_support/binding_of_caller.rb
${RUBY_SITELIBDIR}/active_support/breakpoint.rb
${RUBY_SITELIBDIR}/active_support/caching_tools.rb
diff --git a/devel/ruby-activesupport/distinfo b/devel/ruby-activesupport/distinfo
index 7ff9bcee3e0..5db4a2e3911 100644
--- a/devel/ruby-activesupport/distinfo
+++ b/devel/ruby-activesupport/distinfo
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.8 2007/02/18 23:03:11 minskim Exp $
+$NetBSD: distinfo,v 1.9 2007/03/17 10:59:26 minskim Exp $
-SHA1 (activesupport-1.4.1.tgz) = 09d29fdca19d0c793bf711574c4d333ed23d493e
-RMD160 (activesupport-1.4.1.tgz) = d8dc449e09a6c138597d81fbd8ebfb07e15bfdfe
-Size (activesupport-1.4.1.tgz) = 213564 bytes
+SHA1 (activesupport-1.4.2.tgz) = ec1b98727e0ca2eb55304f2cb814c50075e7d998
+RMD160 (activesupport-1.4.2.tgz) = 5a0cc3dc0710cdd4930189d3812a8d43c7936477
+Size (activesupport-1.4.2.tgz) = 214206 bytes
SHA1 (patch-aa) = d49d9f6c9a1f1ef23cfdb6df0f35a9391cc6934d
SHA1 (patch-ab) = 25d4bf00f57e2708ac5af41383c1d13ff74a0c1d
diff --git a/devel/ruby-activesupport/patches/patch-aa b/devel/ruby-activesupport/patches/patch-aa
deleted file mode 100644
index be003b8c6ee..00000000000
--- a/devel/ruby-activesupport/patches/patch-aa
+++ /dev/null
@@ -1,20 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2007/02/03 22:01:05 minskim Exp $
-
-http://dev.rubyonrails.org/changeset/6099
-
---- lib/active_support/core_ext/time.rb.orig 2006-11-23 16:36:47.000000000 +0000
-+++ lib/active_support/core_ext/time.rb
-@@ -1,3 +1,13 @@
-+require 'date'
-+require 'time'
-+
-+# Ruby 1.8-cvs and 1.9 define private Time#to_date
-+class Time
-+ %w(to_date to_datetime).each do |method|
-+ public method if private_instance_methods.include?(method)
-+ end
-+end
-+
- require File.dirname(__FILE__) + '/time/calculations'
- require File.dirname(__FILE__) + '/time/conversions'
-
diff --git a/devel/ruby-activesupport/patches/patch-ab b/devel/ruby-activesupport/patches/patch-ab
deleted file mode 100644
index c14b70d0d50..00000000000
--- a/devel/ruby-activesupport/patches/patch-ab
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ab,v 1.1 2007/02/03 22:01:05 minskim Exp $
-
-http://dev.rubyonrails.org/changeset/6099
-
---- lib/active_support/core_ext/time/conversions.rb.orig 2006-11-23 16:36:46.000000000 +0000
-+++ lib/active_support/core_ext/time/conversions.rb
-@@ -1,6 +1,3 @@
--require 'date'
--require 'time'
--
- module ActiveSupport #:nodoc:
- module CoreExtensions #:nodoc:
- module Time #:nodoc: