Update misc/ruby-launchy package to 2.0.5.
== Version 2.0.5 - 2011-07-24 * Fix the case where $BROWSER is set and no *nix desktop was found (copiousfreetime/launchy#33) == Version 2.0.4 - 2011-07-23 * Fix windows 'start' commandline (copiousfreetime/launchy#5) * Add capability to open local files with no file: scheme present (copiousfreetime/launchy#29) * Added 'rake how_to_contribute' task (copiousfreetime/launchy#30) * Make better decisions on when to do shell escaping (copiousfreetime/launchy#31) * Switch to Addressable::URI so UTF-8 urls may be parsed. (copiousfreetime/launchy#32) == Version 2.0.3 - 2011-07-17 * Add in Deprecated API wrappers that warn the user == Version 2.0.2 - 2011-07-17 * Typo fixes from @mtorrent * Documentation updates explicitly stating the Public API * Increase test coverage == Version 2.0.1 - 2011-07-16 * Almost a complete rewrite * JRuby Support * Organization is such that it will be easier to add additional applications * Windows behavior possibly fixed, again == Version 1.0.0 - 2011-03-17 * Add JRuby support (Stephen Judkins) * Remove unused Paths module * Switch to using bones * Switch to use minitest * NOTE, this version was never released.
This commit is contained in:
parent
488b51cc20
commit
758bcbc875
3 changed files with 32 additions and 22 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.4 2011/06/19 01:49:27 taca Exp $
|
||||
# $NetBSD: Makefile,v 1.5 2011/08/12 16:59:14 taca Exp $
|
||||
|
||||
DISTNAME= launchy-0.4.0
|
||||
DISTNAME= launchy-2.0.5
|
||||
CATEGORIES= misc
|
||||
|
||||
MAINTAINER= pkgsrc-users@NetBSD.org
|
||||
|
@ -8,7 +8,7 @@ HOMEPAGE= http://copiousfreetime.rubyforge.org/launchy/
|
|||
COMMENT= Ruby class for launching applications
|
||||
LICENSE= isc
|
||||
|
||||
DEPENDS+= ${RUBY_PKGPREFIX}-configuration>=0.0.5:../../misc/ruby-configuration
|
||||
DEPENDS+= ${RUBY_PKGPREFIX}-addressable>=2.2.6<2.3:../../net/ruby-addressable
|
||||
|
||||
USE_RAKE= YES
|
||||
|
||||
|
|
|
@ -1,30 +1,40 @@
|
|||
@comment $NetBSD: PLIST,v 1.3 2010/09/10 07:24:27 taca Exp $
|
||||
@comment $NetBSD: PLIST,v 1.4 2011/08/12 16:59:14 taca Exp $
|
||||
bin/launchy
|
||||
${GEM_HOME}/cache/${GEM_NAME}.gem
|
||||
${GEM_LIBDIR}/HISTORY
|
||||
${GEM_LIBDIR}/LICENSE
|
||||
${GEM_LIBDIR}/NOTES
|
||||
${GEM_LIBDIR}/README
|
||||
${GEM_LIBDIR}/Rakefile
|
||||
${GEM_LIBDIR}/bin/launchy
|
||||
${GEM_LIBDIR}/gemspec.rb
|
||||
${GEM_LIBDIR}/lib/launchy.rb
|
||||
${GEM_LIBDIR}/lib/launchy/application.rb
|
||||
${GEM_LIBDIR}/lib/launchy/browser.rb
|
||||
${GEM_LIBDIR}/lib/launchy/command_line.rb
|
||||
${GEM_LIBDIR}/lib/launchy/paths.rb
|
||||
${GEM_LIBDIR}/lib/launchy/applications/browser.rb
|
||||
${GEM_LIBDIR}/lib/launchy/cli.rb
|
||||
${GEM_LIBDIR}/lib/launchy/deprecated.rb
|
||||
${GEM_LIBDIR}/lib/launchy/descendant_tracker.rb
|
||||
${GEM_LIBDIR}/lib/launchy/detect.rb
|
||||
${GEM_LIBDIR}/lib/launchy/detect/host_os.rb
|
||||
${GEM_LIBDIR}/lib/launchy/detect/host_os_family.rb
|
||||
${GEM_LIBDIR}/lib/launchy/detect/nix_desktop_environment.rb
|
||||
${GEM_LIBDIR}/lib/launchy/detect/ruby_engine.rb
|
||||
${GEM_LIBDIR}/lib/launchy/detect/runner.rb
|
||||
${GEM_LIBDIR}/lib/launchy/error.rb
|
||||
${GEM_LIBDIR}/lib/launchy/os_family.rb
|
||||
${GEM_LIBDIR}/lib/launchy/version.rb
|
||||
${GEM_LIBDIR}/spec/application_spec.rb
|
||||
${GEM_LIBDIR}/spec/browser_spec.rb
|
||||
${GEM_LIBDIR}/spec/applications/browser_spec.rb
|
||||
${GEM_LIBDIR}/spec/cli_spec.rb
|
||||
${GEM_LIBDIR}/spec/detect/host_os_family_spec.rb
|
||||
${GEM_LIBDIR}/spec/detect/host_os_spec.rb
|
||||
${GEM_LIBDIR}/spec/detect/nix_desktop_environment_spec.rb
|
||||
${GEM_LIBDIR}/spec/detect/ruby_engine_spec.rb
|
||||
${GEM_LIBDIR}/spec/detect/runner_spec.rb
|
||||
${GEM_LIBDIR}/spec/launchy_spec.rb
|
||||
${GEM_LIBDIR}/spec/paths_spec.rb
|
||||
${GEM_LIBDIR}/spec/mock_application.rb
|
||||
${GEM_LIBDIR}/spec/spec_helper.rb
|
||||
${GEM_LIBDIR}/spec/tattle-host-os.yml
|
||||
${GEM_LIBDIR}/spec/tattle-host-os.yaml
|
||||
${GEM_LIBDIR}/spec/version_spec.rb
|
||||
${GEM_LIBDIR}/tasks/announce.rake
|
||||
${GEM_LIBDIR}/tasks/config.rb
|
||||
${GEM_LIBDIR}/tasks/distribution.rake
|
||||
${GEM_LIBDIR}/tasks/documentation.rake
|
||||
${GEM_LIBDIR}/tasks/rspec.rake
|
||||
${GEM_LIBDIR}/tasks/rubyforge.rake
|
||||
${GEM_LIBDIR}/tasks/utils.rb
|
||||
${GEM_LIBDIR}/tasks/bundler.rake
|
||||
${GEM_LIBDIR}/tasks/contribute.rake
|
||||
${GEM_HOME}/specifications/${GEM_NAME}.gemspec
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.4 2011/06/19 01:49:27 taca Exp $
|
||||
$NetBSD: distinfo,v 1.5 2011/08/12 16:59:14 taca Exp $
|
||||
|
||||
SHA1 (launchy-0.4.0.gem) = fe5e5d349cc39b7ea617134abca18e4c8936ead7
|
||||
RMD160 (launchy-0.4.0.gem) = d5865dc0ac0ca877a002115062eb5e82857f8dee
|
||||
Size (launchy-0.4.0.gem) = 18432 bytes
|
||||
SHA1 (launchy-2.0.5.gem) = 1de67507c838286b1fb14ef33b6719f9ccfa8eec
|
||||
RMD160 (launchy-2.0.5.gem) = 4c9546f3254461b60284701d43739739ed220458
|
||||
Size (launchy-2.0.5.gem) = 20480 bytes
|
||||
|
|
Loading…
Reference in a new issue