pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/ruby-actionwebservice Update ruby-actionwebservice...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/6f1afb52faf7
branches:  trunk
changeset: 519794:6f1afb52faf7
user:      minskim <minskim%pkgsrc.org@localhost>
date:      Mon Oct 09 23:27:59 2006 +0000

description:
Update ruby-actionwebservice to 1.1.6.

Changes since 0.9.1:
* Do not convert driver options to strings (#4499)
* Make ActiveWebService::Struct type reloadable
* Fix scaffolding action when one of the members of a structural type has
  date or time type
* Remove extra index hash when generating scaffold html for parameters of
  structural type #4374 [joe%mjg2.com@localhost]
* Fix Scaffold Fails with Struct as a Parameter #4363 [joe%mjg2.com@localhost]
* Fix soap type registration of multidimensional arrays (#4232)
* Fix that marshaler couldn't handle ActiveRecord models defined in a
  different namespace (#2392).
* Fix that marshaler couldn't handle structs with members of ActiveRecord
  type (#1889).
* Fix that marshaler couldn't handle nil values for inner structs (#3576).
* Fix that changes to ActiveWebService::API::Base required restarting of
  the server (#2390).
* Fix scaffolding for signatures with :date, :time and :base64 types
  (#3321, #2769, #2078).
* Fix for incorrect casting of TrueClass/FalseClass instances (#2633,
  #3421).
* Fix for incompatibility problems with SOAP4R 1.5.5 (#2553) [Kent Sibilev]
* Update from LGPL to MIT license as per Minero Aoki's permission. [Marcel
  Molina Jr.]
* Rename Version constant to VERSION. #2802 [Marcel Molina Jr.]
* Fix that XML-RPC date/time values did not have well-defined behaviour
  (#2516, #2534). This fix has one caveat, in that we can't support
  pre-1970 dates from XML-RPC clients.

diffstat:

 www/ruby-actionwebservice/Makefile |  15 ++++++++++-----
 www/ruby-actionwebservice/PLIST    |   7 +++++--
 www/ruby-actionwebservice/distinfo |   8 ++++----
 3 files changed, 19 insertions(+), 11 deletions(-)

diffs (88 lines):

diff -r e754792e2134 -r 6f1afb52faf7 www/ruby-actionwebservice/Makefile
--- a/www/ruby-actionwebservice/Makefile        Mon Oct 09 23:21:41 2006 +0000
+++ b/www/ruby-actionwebservice/Makefile        Mon Oct 09 23:27:59 2006 +0000
@@ -1,20 +1,26 @@
-# $NetBSD: Makefile,v 1.3 2005/11/03 05:41:39 taca Exp $
+# $NetBSD: Makefile,v 1.4 2006/10/09 23:27:59 minskim Exp $
 
-DISTNAME=      actionwebservice-0.9.1
+DISTNAME=      actionwebservice-1.1.6
 PKGNAME=       ${RUBY_PKGPREFIX}-${DISTNAME}
 CATEGORIES=    www ruby
-MASTER_SITES=  http://rubyforge.org/frs/download.php/6578/
+MASTER_SITES=  http://rubyforge.org/frs/download.php/12320/
 EXTRACT_SUFX=  .tgz
 
 MAINTAINER=    minskim%NetBSD.org@localhost
 HOMEPAGE=      http://rubyforge.org/projects/aws/
 COMMENT=       Simple support for publishing web service APIs for Rails
 
-DEPENDS+=      ${RUBY_PKGPREFIX}-actionpack-[0-9]*:../../www/ruby-actionpack
+DEPENDS+=      ${RUBY_PKGPREFIX}-actionpack>=1.12.5:../../www/ruby-actionpack
+DEPENDS+=      ${RUBY_PKGPREFIX}-activerecord>=1.14.4:../../databases/ruby-activerecord
 
 USE_RUBY_SETUP=        yes
 
+.include "../../lang/ruby/modules.mk"
+
 post-install:
+       ${INSTALL_DATA_DIR} ${RUBY_DOCDIR}/action_web_service
+       ${INSTALL_DATA} ${WRKSRC}/CHANGELOG ${RUBY_DOCDIR}/action_web_service
+       ${INSTALL_DATA} ${WRKSRC}/README ${RUBY_DOCDIR}/action_web_service
        ${INSTALL_DATA_DIR} ${RUBY_EXAMPLESDIR}/action_web_service
        ${CP} -R ${WRKSRC}/examples/* ${RUBY_EXAMPLESDIR}/action_web_service
        ${CHOWN} -R ${SHAREOWN}:${SHAREGRP}                             \
@@ -24,5 +30,4 @@
        ${FIND} ${RUBY_EXAMPLESDIR}/action_web_service -type f -print | \
                ${XARGS} ${CHMOD} ${SHAREMODE}
 
-.include "../../lang/ruby/modules.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r e754792e2134 -r 6f1afb52faf7 www/ruby-actionwebservice/PLIST
--- a/www/ruby-actionwebservice/PLIST   Mon Oct 09 23:21:41 2006 +0000
+++ b/www/ruby-actionwebservice/PLIST   Mon Oct 09 23:27:59 2006 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.3 2005/11/03 05:41:39 taca Exp $
+@comment $NetBSD: PLIST,v 1.4 2006/10/09 23:27:59 minskim Exp $
 ${RUBY_SITELIBDIR}/action_web_service.rb
 ${RUBY_SITELIBDIR}/action_web_service/api.rb
 ${RUBY_SITELIBDIR}/action_web_service/base.rb
@@ -26,6 +26,9 @@
 ${RUBY_SITELIBDIR}/action_web_service/support/class_inheritable_options.rb
 ${RUBY_SITELIBDIR}/action_web_service/support/signature_types.rb
 ${RUBY_SITELIBDIR}/action_web_service/test_invoke.rb
+${RUBY_SITELIBDIR}/action_web_service/version.rb
+${RUBY_DOCDIR}/action_web_service/CHANGELOG
+${RUBY_DOCDIR}/action_web_service/README
 ${RUBY_EXAMPLESDIR}/action_web_service/googlesearch/README
 ${RUBY_EXAMPLESDIR}/action_web_service/googlesearch/autoloading/google_search_api.rb
 ${RUBY_EXAMPLESDIR}/action_web_service/googlesearch/autoloading/google_search_controller.rb
@@ -39,7 +42,6 @@
 ${RUBY_EXAMPLESDIR}/action_web_service/metaWeblog/apis/meta_weblog_api.rb
 ${RUBY_EXAMPLESDIR}/action_web_service/metaWeblog/apis/meta_weblog_service.rb
 ${RUBY_EXAMPLESDIR}/action_web_service/metaWeblog/controllers/xmlrpc_controller.rb
-${RUBY_SITELIBDIR}/action_web_service/version.rb
 @dirrm ${RUBY_EXAMPLESDIR}/action_web_service/metaWeblog/controllers
 @dirrm ${RUBY_EXAMPLESDIR}/action_web_service/metaWeblog/apis
 @dirrm ${RUBY_EXAMPLESDIR}/action_web_service/metaWeblog
@@ -48,6 +50,7 @@
 @dirrm ${RUBY_EXAMPLESDIR}/action_web_service/googlesearch/autoloading
 @dirrm ${RUBY_EXAMPLESDIR}/action_web_service/googlesearch
 @dirrm ${RUBY_EXAMPLESDIR}/action_web_service
+@dirrm ${RUBY_DOCDIR}/action_web_service
 @exec ${MKDIR} ${RUBY_SITELIBDIR}/action_web_service/templates/scaffolds
 @dirrm ${RUBY_SITELIBDIR}/action_web_service/templates/scaffolds
 @dirrm ${RUBY_SITELIBDIR}/action_web_service/templates
diff -r e754792e2134 -r 6f1afb52faf7 www/ruby-actionwebservice/distinfo
--- a/www/ruby-actionwebservice/distinfo        Mon Oct 09 23:21:41 2006 +0000
+++ b/www/ruby-actionwebservice/distinfo        Mon Oct 09 23:27:59 2006 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.4 2006/01/03 14:25:51 taca Exp $
+$NetBSD: distinfo,v 1.5 2006/10/09 23:27:59 minskim Exp $
 
-SHA1 (actionwebservice-0.9.1.tgz) = 37ca30fded8770f96905e6f10aec1bc06609f6dc
-RMD160 (actionwebservice-0.9.1.tgz) = cc1d107b45b51f4cdb3fa5e416d5cd2191d8eb43
-Size (actionwebservice-0.9.1.tgz) = 60930 bytes
+SHA1 (actionwebservice-1.1.6.tgz) = af2a8406ed99c0d2450138c880e03a1e06e2ebf5
+RMD160 (actionwebservice-1.1.6.tgz) = bf13dee52ba1680c931841ba7861e70deec44c2c
+Size (actionwebservice-1.1.6.tgz) = 63478 bytes



Home | Main Index | Thread Index | Old Index