diff options
author | minskim <minskim@pkgsrc.org> | 2008-01-16 22:56:42 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2008-01-16 22:56:42 +0000 |
commit | 14b4db8807269f20e27895b2532d4842e38767d5 (patch) | |
tree | a77087a5d09c221e00755d92f72697be20060b94 /misc/rubygems/Makefile | |
parent | 55352493003ed9ef79c23b916cbf7ff894374e01 (diff) | |
download | pkgsrc-14b4db8807269f20e27895b2532d4842e38767d5.tar.gz |
Update rubygems to 1.0.1.
Major New Features Include:
* RubyGems warns about various problems with gemspecs during gem building
* More-consistent versioning for the RubyGems software
Other Changes Include:
* Fixed various bugs and problems with installing gems on Windows
* Fixed using `gem server` for installing gems
* Various operations are even more verbose with --verbose
* Built gems are now backwards compatible with 0.9.4
* Improved detection of RUBYOPT loading rubygems
* `ruby setup.rb` now has a --help option
* Gem::Specification#bindir is now respected on installation
* Executable stubs can now be installed to match ruby's name, so if ruby is
installed as 'ruby18', foo_exec will be installed as 'foo_exec18'
* `gem unpack` can now unpack into a specific directory with --target
* OpenSSL is no longer required by default
Diffstat (limited to 'misc/rubygems/Makefile')
-rw-r--r-- | misc/rubygems/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/misc/rubygems/Makefile b/misc/rubygems/Makefile index 490eaa01413..fddc1629243 100644 --- a/misc/rubygems/Makefile +++ b/misc/rubygems/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.12 2007/12/13 14:46:58 taca Exp $ +# $NetBSD: Makefile,v 1.13 2008/01/16 22:56:42 minskim Exp $ -DISTNAME= rubygems-0.9.5 +DISTNAME= rubygems-1.0.1 CATEGORIES= misc ruby -MASTER_SITES= http://rubyforge.org/frs/download.php/28174/ +MASTER_SITES= http://rubyforge.org/frs/download.php/29548/ EXTRACT_SUFX= .tgz MAINTAINER= minskim@NetBSD.org @@ -11,6 +11,7 @@ COMMENT= Ruby standard for publishing and managing third party libraries NO_CONFIGURE= yes NO_BUILD= yes +INSTALL_TARGET= install --format-executable RUBY_REQD= 1.8.3 USE_RUBY_SETUP= yes |