Index: Mk/bsd.ruby.mk =================================================================== --- Mk/bsd.ruby.mk (revision 379056) +++ Mk/bsd.ruby.mk (working copy) @@ -434,6 +434,7 @@ DOC_DIR= ${GEMS_BASE_DIR}/doc CACHE_DIR= ${GEMS_BASE_DIR}/cache SPEC_DIR= ${GEMS_BASE_DIR}/specifications +EXT_DIR= ${GEMS_BASE_DIR}/extensions GEM_NAME?= ${PORTNAME}-${PORTVERSION} GEM_LIB_DIR?= ${GEMS_DIR}/${GEM_NAME} GEM_DOC_DIR?= ${DOC_DIR}/${GEM_NAME} @@ -447,6 +448,7 @@ DOC_DIR="${DOC_DIR}" \ CACHE_DIR="${CACHE_DIR}" \ SPEC_DIR="${SPEC_DIR}" \ + EXT_DIR="${EXT_DIR}" \ PORT="${PORTNAME}-${PORTVERSION}" \ GEM_NAME="${GEM_NAME}" \ GEM_LIB_DIR="${GEM_LIB_DIR}" \ @@ -463,18 +465,28 @@ GEMFILES= ${DISTNAME}${EXTRACT_SUFX} . endif -RUBYGEM_ARGS=-l --no-update-sources --no-ri --install-dir ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER} --ignore-dependencies --bindir=${STAGEDIR}${PREFIX}/bin +GEMSPEC= ${PORTNAME}.gemspec + +RUBYGEM_ARGS=-l --no-update-sources --install-dir ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER} --ignore-dependencies --bindir=${STAGEDIR}${PREFIX}/bin GEM_ENV+= RB_USER_INSTALL=yes .if defined(NOPORTDOCS) -RUBYGEM_ARGS+= --no-rdoc +RUBYGEM_ARGS+= --no-rdoc --no-ri +.else +RUBYGEM_ARGS+= --rdoc --ri .endif do-extract: @${SETENV} ${GEM_ENV} ${RUBYGEMBIN} unpack --target=${WRKDIR} ${DISTDIR}/${DIST_SUBDIR}/${GEMFILES} - @${TAR} -xOzf ${DISTDIR}/${DIST_SUBDIR}/${GEMFILES} metadata.gz | ${GZCAT} > ${BUILD_WRKSRC}/${GEMFILES}spec + @(cd ${BUILD_WRKSRC}; if ! ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} spec --ruby ${DISTDIR}/${DIST_SUBDIR}/${GEMFILES} > ${GEMSPEC} ; then \ + if [ -n "${BUILD_FAIL_MESSAGE}" ] ; then \ + ${ECHO_MSG} "===> Extraction failed unexpectedly."; \ + (${ECHO_CMD} "${BUILD_FAIL_MESSAGE}") | ${FMT} 75 79 ; \ + fi; \ + ${FALSE}; \ + fi) do-build: - @(cd ${BUILD_WRKSRC}; if ! ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} build --force ${GEMFILES}spec ; then \ + @(cd ${BUILD_WRKSRC}; if ! ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} build --force ${GEMSPEC} ; then \ if [ -n "${BUILD_FAIL_MESSAGE}" ] ; then \ ${ECHO_MSG} "===> Compilation failed unexpectedly."; \ (${ECHO_CMD} "${BUILD_FAIL_MESSAGE}") | ${FMT} 75 79 ; \ @@ -483,7 +495,12 @@ fi) do-install: - @(cd ${BUILD_WRKSRC}; ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} install ${RUBYGEM_ARGS} ${GEMFILES} -- --build-args ${CONFIGURE_ARGS}) + (cd ${BUILD_WRKSRC}; ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} install ${RUBYGEM_ARGS} ${GEMFILES} -- --build-args ${CONFIGURE_ARGS}) + ${RM} -r ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR}/build_info/ + ${RMDIR} ${STAGEDIR}${PREFIX}/${EXT_DIR} 2> /dev/null || ${TRUE} +.if defined(NOPORTDOCS) + -@${RMDIR} ${STAGEDIR}${PREFIX}/${DOC_DIR} +.endif . if defined(RUBYGEM_AUTOPLIST) . if !target(post-install-script) @@ -491,24 +508,15 @@ @${ECHO} ${GEM_CACHE} >> ${TMPPLIST} @${ECHO} ${GEM_SPEC} >> ${TMPPLIST} .if !defined(NOPORTDOCS) - @${FIND} -ds ${STAGEDIR}${PREFIX}/${GEM_DOC_DIR} -type f -print | ${SED} -E -e \ + @${FIND} -ds ${STAGEDIR}${PREFIX}/${DOC_DIR} -type f -print | ${SED} -E -e \ 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} - @${FIND} -ds ${STAGEDIR}${PREFIX}/${GEM_DOC_DIR} -type d -print | ${SED} -E -e \ - 's,^${STAGEDIR}${PREFIX}/?,@dirrm ,' >> ${TMPPLIST} .endif @${FIND} -ds ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR} -type f -print | ${SED} -E -e \ 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} - @${FIND} -ds ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR} -type d -print | ${SED} -E -e \ - 's,^${STAGEDIR}${PREFIX}/?,@dirrm ,' >> ${TMPPLIST} - @${ECHO_CMD} "@unexec rmdir %D/${GEMS_DIR} 2>/dev/null || true" >> ${TMPPLIST} -.if !defined(NOPORTDOCS) - @${ECHO_CMD} "@unexec rmdir %D/${DOC_DIR} 2>/dev/null || true" >> ${TMPPLIST} -.endif - @${ECHO_CMD} "@unexec rmdir %D/${CACHE_DIR} 2>/dev/null || true" >> ${TMPPLIST} - @${ECHO_CMD} "@unexec rmdir %D/${SPEC_DIR} 2>/dev/null || true" >> ${TMPPLIST} - @${ECHO_CMD} "@unexec rmdir %D/${GEMS_BASE_DIR} 2>/dev/null || true" >> ${TMPPLIST} - @${ECHO_CMD} "@unexec rmdir %D/lib/ruby/gems 2>/dev/null || true" >> ${TMPPLIST} - @${ECHO_CMD} "@unexec rmdir %D/lib/ruby 2>/dev/null || true" >> ${TMPPLIST} + @if [ -d ${STAGEDIR}${PREFIX}/${EXT_DIR} ]; then \ + ${FIND} -ds ${STAGEDIR}${PREFIX}/${EXT_DIR} -type f -print | ${SED} -E -e \ + 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} ; \ + fi . endif . endif Index: devel/ruby-gems/Makefile =================================================================== --- devel/ruby-gems/Makefile (revision 379056) +++ devel/ruby-gems/Makefile (working copy) @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= gems -PORTVERSION= 1.8.30 +PORTVERSION= 2.4.5 CATEGORIES= devel ruby -MASTER_SITES= https://github.com/rubygems/rubygems/releases/download/v${PORTVERSION}/ +MASTER_SITES= http://production.cf.rubygems.org/rubygems/ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} DISTNAME= ruby${PORTNAME}-${PORTVERSION} DIST_SUBDIR= ruby @@ -21,9 +21,6 @@ NO_BUILD= yes USES= tar:tgz -PLIST_SUB+= DISTNAME="${DISTNAME}" \ - RUBY_VER_SHORT="${RUBY_VER_SHORT}" - GEMS_BASE_DIR= lib/ruby/gems GEMS_BASE_DIR_P= ${GEMS_BASE_DIR} GEMS_VER_DIR= ${GEMS_BASE_DIR}/${RUBY_VER} @@ -34,6 +31,20 @@ GEMS_DOC_DIR_P= ${GEMS_DOC_BASE_DIR_P}/%%DISTNAME%% RUBY_VER_SHORT= ${RUBY_VER:S/.//} +GEMS_DIR= ${GEMS_VER_DIR}/gems +DOC_DIR= ${GEMS_VER_DIR}/doc +CACHE_DIR= ${GEMS_VER_DIR}/cache +SPEC_DIR= ${GEMS_VER_DIR}/specifications +EXT_DIR= ${GEMS_VER_DIR}/extensions + +PLIST_SUB+= DISTNAME="${DISTNAME}" \ + RUBY_VER_SHORT="${RUBY_VER_SHORT}" \ + GEMS_DIR="${GEMS_DIR}" \ + DOC_DIR="${DOC_DIR}" \ + CACHE_DIR="${CACHE_DIR}" \ + SPEC_DIR="${SPEC_DIR}" \ + EXT_DIR="${EXT_DIR}" + OPTIONS_DEFINE= DOCS .include @@ -59,36 +70,6 @@ .if ${PORT_OPTIONS:MDOCS} @${FIND} -ds ${STAGEDIR}${PREFIX}/${GEMS_DOC_DIR}/ ! -type d | \ ${SED} 's,^${STAGEDIR}${PREFIX}/,,' >> ${TMPPLIST} - @${FIND} -ds ${STAGEDIR}${PREFIX}/${GEMS_DOC_DIR}/ -type d -mindepth 1 | \ - ${SED} -E -e 's,^${STAGEDIR}${PREFIX}/,@dirrm ,' >> ${TMPPLIST} - @${ECHO_CMD} "@dirrm ${GEMS_DOC_DIR}" >> ${TMPPLIST} .endif - @${ECHO_CMD} "@unexec rmdir %D/lib/ruby/gems/${RUBY_VER}/doc 2>/dev/null || true" >> ${TMPPLIST} - @${ECHO_CMD} "@unexec rmdir %D/lib/ruby/gems/${RUBY_VER} 2>/dev/null || true" >> ${TMPPLIST} - @${ECHO_CMD} "@unexec rmdir %D/lib/ruby/gems 2>/dev/null || true" >> ${TMPPLIST} - @${ECHO_CMD} "@unexec rmdir %D/lib/ruby 2>/dev/null || true" >> ${TMPPLIST} - -# This target is only meant to be used by the port maintainer. -x-generate-plist: - ${ECHO} bin/gem > pkg-plist.new - ${ECHO} bin/gem%%RUBY_VER_SHORT%% >> pkg-plist.new - ${ECHO} %%RUBY_SITELIBDIR%%/gauntlet_rubygems.rb >> pkg-plist.new - ${ECHO} %%RUBY_SITELIBDIR%%/rbconfig/datadir.rb >> pkg-plist.new - ${ECHO} %%RUBY_SITELIBDIR%%/rubygems.rb >> pkg-plist.new - ${FIND} ${STAGEDIR}${RUBY_SITELIBDIR}/rubygems -type f | ${SORT} | ${SED} -e 's,${STAGEDIR}${RUBY_SITELIBDIR},%%RUBY_SITELIBDIR%%,' >> pkg-plist.new - ${ECHO} %%RUBY_SITELIBDIR%%/ubygems.rb >> pkg-plist.new - ${FIND} ${STAGEDIR}${PREFIX}/${GEMS_DOC_DIR} -type f | ${SORT} | ${SED} -e 's,${STAGEDIR}${PREFIX}/${GEMS_DOC_DIR},%%PORTDOCS%%${GEMS_DOC_DIR_P},' >> pkg-plist.new - - ${FIND} ${STAGEDIR}${RUBY_SITELIBDIR}/rubygems -type d | ${SORT} -r | ${SED} -e 's,${STAGEDIR}${RUBY_SITELIBDIR},@dirrm %%RUBY_SITELIBDIR%%,' >> pkg-plist.new - ${ECHO} @dirrm %%RUBY_SITELIBDIR%%/rbconfig >> pkg-plist.new - ${ECHO} @dirrmtry ${GEMS_VER_DIR_P}/specifications >> pkg-plist.new - ${ECHO} @dirrmtry ${GEMS_VER_DIR_P}/gems >> pkg-plist.new - ${ECHO} @dirrmtry ${GEMS_VER_DIR_P}/cache >> pkg-plist.new - ${FIND} ${STAGEDIR}${PREFIX}/${GEMS_DOC_DIR} -type d | ${SORT} -r | ${SED} -e 's,${STAGEDIR}${PREFIX}/${GEMS_DOC_DIR},%%PORTDOCS%%@dirrm ${GEMS_DOC_DIR_P},' >> pkg-plist.new - ${ECHO} ${GEMS_DOC_BASE_DIR_P}/.keep_this >> pkg-plist.new - ${ECHO} @dirrmtry ${GEMS_DOC_BASE_DIR_P} >> pkg-plist.new - ${ECHO} @dirrmtry ${GEMS_VER_DIR_P} >> pkg-plist.new - ${ECHO} @dirrmtry ${GEMS_BASE_DIR_P} >> pkg-plist.new - .include Index: devel/ruby-gems/distinfo =================================================================== --- devel/ruby-gems/distinfo (revision 379056) +++ devel/ruby-gems/distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (ruby/rubygems-1.8.30.tgz) = 3ff089f3cf67413b990b344af167750738a5767f25a889c019a87aa20667721c -SIZE (ruby/rubygems-1.8.30.tgz) = 273966 +SHA256 (ruby/rubygems-2.4.5.tgz) = 47d182ba52da02d4400601efbf62f64c25ff83856f8e269f8289333f292566d9 +SIZE (ruby/rubygems-2.4.5.tgz) = 446665 Index: devel/ruby-gems/pkg-plist =================================================================== --- devel/ruby-gems/pkg-plist (revision 379056) +++ devel/ruby-gems/pkg-plist (working copy) @@ -1,9 +1,9 @@ bin/gem bin/gem%%RUBY_VER_SHORT%% %%RUBY_SITELIBDIR%%/gauntlet_rubygems.rb -%%RUBY_SITELIBDIR%%/rbconfig/datadir.rb %%RUBY_SITELIBDIR%%/rubygems.rb -%%RUBY_SITELIBDIR%%/rubygems/builder.rb +%%RUBY_SITELIBDIR%%/rubygems/available_set.rb +%%RUBY_SITELIBDIR%%/rubygems/basic_specification.rb %%RUBY_SITELIBDIR%%/rubygems/command.rb %%RUBY_SITELIBDIR%%/rubygems/command_manager.rb %%RUBY_SITELIBDIR%%/rubygems/commands/build_command.rb @@ -19,6 +19,8 @@ %%RUBY_SITELIBDIR%%/rubygems/commands/install_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/list_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/lock_command.rb +%%RUBY_SITELIBDIR%%/rubygems/commands/mirror_command.rb +%%RUBY_SITELIBDIR%%/rubygems/commands/open_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/outdated_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/owner_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/pristine_command.rb @@ -35,38 +37,44 @@ %%RUBY_SITELIBDIR%%/rubygems/commands/unpack_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/update_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/which_command.rb +%%RUBY_SITELIBDIR%%/rubygems/commands/yank_command.rb +%%RUBY_SITELIBDIR%%/rubygems/compatibility.rb %%RUBY_SITELIBDIR%%/rubygems/config_file.rb -%%RUBY_SITELIBDIR%%/rubygems/custom_require.rb +%%RUBY_SITELIBDIR%%/rubygems/core_ext/kernel_gem.rb +%%RUBY_SITELIBDIR%%/rubygems/core_ext/kernel_require.rb %%RUBY_SITELIBDIR%%/rubygems/defaults.rb %%RUBY_SITELIBDIR%%/rubygems/dependency.rb %%RUBY_SITELIBDIR%%/rubygems/dependency_installer.rb %%RUBY_SITELIBDIR%%/rubygems/dependency_list.rb %%RUBY_SITELIBDIR%%/rubygems/deprecate.rb -%%RUBY_SITELIBDIR%%/rubygems/doc_manager.rb +%%RUBY_SITELIBDIR%%/rubygems/doctor.rb %%RUBY_SITELIBDIR%%/rubygems/errors.rb %%RUBY_SITELIBDIR%%/rubygems/exceptions.rb %%RUBY_SITELIBDIR%%/rubygems/ext.rb +%%RUBY_SITELIBDIR%%/rubygems/ext/build_error.rb %%RUBY_SITELIBDIR%%/rubygems/ext/builder.rb +%%RUBY_SITELIBDIR%%/rubygems/ext/cmake_builder.rb %%RUBY_SITELIBDIR%%/rubygems/ext/configure_builder.rb %%RUBY_SITELIBDIR%%/rubygems/ext/ext_conf_builder.rb %%RUBY_SITELIBDIR%%/rubygems/ext/rake_builder.rb -%%RUBY_SITELIBDIR%%/rubygems/format.rb -%%RUBY_SITELIBDIR%%/rubygems/gem_openssl.rb -%%RUBY_SITELIBDIR%%/rubygems/gem_path_searcher.rb %%RUBY_SITELIBDIR%%/rubygems/gem_runner.rb %%RUBY_SITELIBDIR%%/rubygems/gemcutter_utilities.rb %%RUBY_SITELIBDIR%%/rubygems/indexer.rb +%%RUBY_SITELIBDIR%%/rubygems/install_default_message.rb +%%RUBY_SITELIBDIR%%/rubygems/install_message.rb %%RUBY_SITELIBDIR%%/rubygems/install_update_options.rb %%RUBY_SITELIBDIR%%/rubygems/installer.rb %%RUBY_SITELIBDIR%%/rubygems/installer_test_case.rb %%RUBY_SITELIBDIR%%/rubygems/local_remote_options.rb %%RUBY_SITELIBDIR%%/rubygems/mock_gem_ui.rb -%%RUBY_SITELIBDIR%%/rubygems/old_format.rb +%%RUBY_SITELIBDIR%%/rubygems/name_tuple.rb %%RUBY_SITELIBDIR%%/rubygems/package.rb -%%RUBY_SITELIBDIR%%/rubygems/package/f_sync_dir.rb +%%RUBY_SITELIBDIR%%/rubygems/package/digest_io.rb +%%RUBY_SITELIBDIR%%/rubygems/package/file_source.rb +%%RUBY_SITELIBDIR%%/rubygems/package/io_source.rb +%%RUBY_SITELIBDIR%%/rubygems/package/old.rb +%%RUBY_SITELIBDIR%%/rubygems/package/source.rb %%RUBY_SITELIBDIR%%/rubygems/package/tar_header.rb -%%RUBY_SITELIBDIR%%/rubygems/package/tar_input.rb -%%RUBY_SITELIBDIR%%/rubygems/package/tar_output.rb %%RUBY_SITELIBDIR%%/rubygems/package/tar_reader.rb %%RUBY_SITELIBDIR%%/rubygems/package/tar_reader/entry.rb %%RUBY_SITELIBDIR%%/rubygems/package/tar_test_case.rb @@ -76,14 +84,60 @@ %%RUBY_SITELIBDIR%%/rubygems/platform.rb %%RUBY_SITELIBDIR%%/rubygems/psych_additions.rb %%RUBY_SITELIBDIR%%/rubygems/psych_tree.rb +%%RUBY_SITELIBDIR%%/rubygems/rdoc.rb %%RUBY_SITELIBDIR%%/rubygems/remote_fetcher.rb -%%RUBY_SITELIBDIR%%/rubygems/require_paths_builder.rb %%RUBY_SITELIBDIR%%/rubygems/requirement.rb +%%RUBY_SITELIBDIR%%/rubygems/request.rb +%%RUBY_SITELIBDIR%%/rubygems/request/connection_pools.rb +%%RUBY_SITELIBDIR%%/rubygems/request/http_pool.rb +%%RUBY_SITELIBDIR%%/rubygems/request/https_pool.rb +%%RUBY_SITELIBDIR%%/rubygems/request_set/gem_dependency_api.rb +%%RUBY_SITELIBDIR%%/rubygems/request_set/lockfile.rb +%%RUBY_SITELIBDIR%%/rubygems/request_set.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/activation_request.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/api_set.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/api_specification.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/best_set.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/composed_set.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/conflict.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/current_set.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/dependency_request.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/git_set.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/git_specification.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/index_set.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/index_specification.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/installed_specification.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/installer_set.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/local_specification.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/lock_set.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/lock_specification.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/requirement_list.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/set.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/spec_specification.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/specification.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/stats.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/vendor_set.rb +%%RUBY_SITELIBDIR%%/rubygems/resolver/vendor_specification.rb %%RUBY_SITELIBDIR%%/rubygems/security.rb +%%RUBY_SITELIBDIR%%/rubygems/security/policies.rb +%%RUBY_SITELIBDIR%%/rubygems/security/policy.rb +%%RUBY_SITELIBDIR%%/rubygems/security/signer.rb +%%RUBY_SITELIBDIR%%/rubygems/security/trust_dir.rb %%RUBY_SITELIBDIR%%/rubygems/server.rb -%%RUBY_SITELIBDIR%%/rubygems/source_index.rb %%RUBY_SITELIBDIR%%/rubygems/spec_fetcher.rb %%RUBY_SITELIBDIR%%/rubygems/specification.rb +%%RUBY_SITELIBDIR%%/rubygems/stub_specification.rb +%%RUBY_SITELIBDIR%%/rubygems/source/git.rb +%%RUBY_SITELIBDIR%%/rubygems/source/installed.rb +%%RUBY_SITELIBDIR%%/rubygems/source/local.rb +%%RUBY_SITELIBDIR%%/rubygems/source/lock.rb +%%RUBY_SITELIBDIR%%/rubygems/source/specific_file.rb +%%RUBY_SITELIBDIR%%/rubygems/source/vendor.rb +%%RUBY_SITELIBDIR%%/rubygems/source.rb +%%RUBY_SITELIBDIR%%/rubygems/source_list.rb +%%RUBY_SITELIBDIR%%/rubygems/source_local.rb +%%RUBY_SITELIBDIR%%/rubygems/source_specific_file.rb %%RUBY_SITELIBDIR%%/rubygems/ssl_certs/AddTrustExternalCARoot-2048.pem %%RUBY_SITELIBDIR%%/rubygems/ssl_certs/AddTrustExternalCARoot.pem %%RUBY_SITELIBDIR%%/rubygems/ssl_certs/Class3PublicPrimaryCertificationAuthority.pem @@ -95,6 +149,10 @@ %%RUBY_SITELIBDIR%%/rubygems/test_utilities.rb %%RUBY_SITELIBDIR%%/rubygems/text.rb %%RUBY_SITELIBDIR%%/rubygems/uninstaller.rb +%%RUBY_SITELIBDIR%%/rubygems/uri_formatter.rb +%%RUBY_SITELIBDIR%%/rubygems/util.rb +%%RUBY_SITELIBDIR%%/rubygems/util/list.rb +%%RUBY_SITELIBDIR%%/rubygems/util/stringio.rb %%RUBY_SITELIBDIR%%/rubygems/user_interaction.rb %%RUBY_SITELIBDIR%%/rubygems/validator.rb %%RUBY_SITELIBDIR%%/rubygems/version.rb @@ -101,3 +159,8 @@ %%RUBY_SITELIBDIR%%/rubygems/version_option.rb %%RUBY_SITELIBDIR%%/ubygems.rb lib/ruby/gems/%%RUBY_VER%%/doc/.keep_this +@dir lib/ruby/gems/%%RUBY_VER%%/build_info +@dir %%EXT_DIR%% +@dir %%CACHE_DIR%% +@dir %%GEMS_DIR%% +@dir %%SPEC_DIR%% Index: devel/rubygem-activemessaging/files/patch-gemspec =================================================================== --- devel/rubygem-activemessaging/files/patch-gemspec (revision 379056) +++ devel/rubygem-activemessaging/files/patch-gemspec (working copy) @@ -1,23 +0,0 @@ ---- ./activemessaging-0.13.0.gemspec.orig 2014-08-23 19:10:52.008995535 +0000 -+++ ./activemessaging-0.13.0.gemspec 2014-08-23 19:10:47.000000000 +0000 -@@ -18,20 +18,6 @@ - date: 2014-06-18 00:00:00.000000000 Z - dependencies: - - !ruby/object:Gem::Dependency -- name: activemessaging -- requirement: !ruby/object:Gem::Requirement -- requirements: -- - - '>=' -- - !ruby/object:Gem::Version -- version: '0' -- type: :runtime -- prerelease: false -- version_requirements: !ruby/object:Gem::Requirement -- requirements: -- - - '>=' -- - !ruby/object:Gem::Version -- version: '0' --- !ruby/object:Gem::Dependency - name: jeweler - requirement: !ruby/object:Gem::Requirement - requirements: Index: devel/rubygem-analogger/files/patch-gemspec =================================================================== --- devel/rubygem-analogger/files/patch-gemspec (revision 379056) +++ devel/rubygem-analogger/files/patch-gemspec (working copy) @@ -1,18 +1,11 @@ ---- analogger-0.5.0.gemspec.orig 2013-02-26 02:45:44.000000000 +0000 -+++ analogger-0.5.0.gemspec 2013-02-26 02:45:54.000000000 +0000 -@@ -33,7 +33,6 @@ - - external - - src - - test --- doc - - setup.rb - - INSTALL - - README -@@ -45,7 +44,6 @@ - - src/swiftcore/Analogger - - src/swiftcore/Analogger.rb - - src/swiftcore/Analogger/Client.rb --- test/log - - test/TC_Analogger.rb - - test/tc_template.rb - - test/analogger.cnf +--- analogger.gemspec.orig 2014-11-29 13:26:51.000000000 +0000 ++++ analogger.gemspec 2014-11-29 13:27:09.000000000 +0000 +@@ -13,7 +13,7 @@ + s.email = "wyhaines@gmail.com" + s.executables = ["analogger"] + s.extra_rdoc_files = ["README"] +- s.files = ["INSTALL", "README", "analogger.gemspec", "bin", "bin/analogger", "doc", "external", "external/package.rb", "external/test_support.rb", "setup.rb", "src", "src/swiftcore", "src/swiftcore/Analogger", "src/swiftcore/Analogger.rb", "src/swiftcore/Analogger/Client.rb", "test", "test/TC_Analogger.rb", "test/analogger.cnf", "test/analogger2.cnf", "test/log", "test/tc_template.rb"] ++ s.files = ["INSTALL", "README", "analogger.gemspec", "bin", "bin/analogger", "external", "external/package.rb", "external/test_support.rb", "setup.rb", "src", "src/swiftcore", "src/swiftcore/Analogger", "src/swiftcore/Analogger.rb", "src/swiftcore/Analogger/Client.rb", "test", "test/TC_Analogger.rb", "test/analogger.cnf", "test/analogger2.cnf", "test/tc_template.rb"] + s.homepage = "http://analogger.swiftcore.org/" + s.rdoc_options = ["--title", "Swiftcore::Analogger", "--main", "README", "--line-numbers"] + s.required_ruby_version = Gem::Requirement.new("> 0.0.0") Index: devel/rubygem-apipie-bindings/files/patch-gemspec =================================================================== --- devel/rubygem-apipie-bindings/files/patch-gemspec (revision 379056) +++ devel/rubygem-apipie-bindings/files/patch-gemspec (working copy) @@ -1,11 +1,11 @@ ---- apipie-bindings-0.0.11.gemspec.orig 2014-08-29 16:34:08.000000000 +0200 -+++ apipie-bindings-0.0.11.gemspec 2014-08-29 16:34:20.000000000 +0200 -@@ -78,7 +78,7 @@ - requirements: - - - ~> - - !ruby/object:Gem::Version -- version: '1.0' -+ version: '2.0' - type: :runtime - prerelease: false - version_requirements: !ruby/object:Gem::Requirement +--- apipie-bindings.gemspec.orig 2015-01-21 20:19:48.000000000 +0000 ++++ apipie-bindings.gemspec 2015-01-21 20:20:23.000000000 +0000 +@@ -54,7 +54,7 @@ + s.add_dependency(%q, ["< 1.7", ">= 1.6.5"]) + s.add_dependency(%q, [">= 0"]) + s.add_dependency(%q, [">= 0"]) +- s.add_dependency(%q, ["~> 1.0"]) ++ s.add_dependency(%q, ["~> 2.0"]) + s.add_dependency(%q, ["~> 10.1.0"]) + s.add_dependency(%q, [">= 0"]) + s.add_dependency(%q, ["= 4.7.4"]) Index: devel/rubygem-bones/Makefile =================================================================== --- devel/rubygem-bones/Makefile (revision 379056) +++ devel/rubygem-bones/Makefile (working copy) @@ -21,8 +21,4 @@ PLIST_FILES= bin/bones -post-patch: -# adjust gemspec for "rdoc ~> 3.0" - @${REINPLACE_CMD} -e '27,40 d' ${WRKSRC}/${GEM_NAME}.gemspec - .include Index: devel/rubygem-bson1/files/patch-gemspec =================================================================== --- devel/rubygem-bson1/files/patch-gemspec (revision 0) +++ devel/rubygem-bson1/files/patch-gemspec (working copy) @@ -0,0 +1,10 @@ +--- bson.gemspec.orig 2014-11-29 13:32:55.000000000 +0000 ++++ bson.gemspec 2014-11-29 13:33:02.000000000 +0000 +@@ -12,7 +12,6 @@ + s.date = "2014-09-15" + s.description = "A Ruby BSON implementation for MongoDB. For more information about Mongo, see http://www.mongodb.org. For more information on BSON, see http://www.bsonspec.org." + s.email = "mongodb-dev@googlegroups.com" +- s.executables = ["b2json", "j2bson"] + s.files = ["LICENSE", "VERSION", "bin/b2json", "bin/j2bson", "bson.gemspec", "lib/bson.rb", "lib/bson/bson_c.rb", "lib/bson/bson_java.rb", "lib/bson/bson_ruby.rb", "lib/bson/byte_buffer.rb", "lib/bson/exceptions.rb", "lib/bson/grow.rb", "lib/bson/ordered_hash.rb", "lib/bson/support/hash_with_indifferent_access.rb", "lib/bson/types/binary.rb", "lib/bson/types/code.rb", "lib/bson/types/dbref.rb", "lib/bson/types/min_max_keys.rb", "lib/bson/types/object_id.rb", "lib/bson/types/regex.rb", "lib/bson/types/timestamp.rb"] + s.homepage = "http://www.mongodb.org" + s.licenses = ["Apache License Version 2.0"] Property changes on: devel/rubygem-bson1/files/patch-gemspec ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: devel/rubygem-clamp/files/patch-gemspec =================================================================== --- devel/rubygem-clamp/files/patch-gemspec (revision 0) +++ devel/rubygem-clamp/files/patch-gemspec (working copy) @@ -0,0 +1,11 @@ +--- clamp.gemspec.orig 2014-11-29 13:43:51.000000000 +0000 ++++ clamp.gemspec 2014-11-29 13:44:07.000000000 +0000 +@@ -11,7 +11,7 @@ + s.date = "2013-11-14" + s.description = "Clamp provides an object-model for command-line utilities.\nIt handles parsing of command-line options, and generation of usage help.\n" + s.email = "mdub@dogbiscuit.org" +- s.files = [".autotest", ".gitignore", ".rspec", ".travis.yml", "CHANGES.md", "Gemfile", "LICENSE", "README.md", "Rakefile", "clamp.gemspec", "examples/admin", "examples/flipflop", "examples/fubar", "examples/gitdown", "examples/scoop", "examples/speak", "lib/clamp.rb", "lib/clamp/attribute/declaration.rb", "lib/clamp/attribute/definition.rb", "lib/clamp/attribute/instance.rb", "lib/clamp/command.rb", "lib/clamp/errors.rb", "lib/clamp/help.rb", "lib/clamp/option/declaration.rb", "lib/clamp/option/definition.rb", "lib/clamp/option/parsing.rb", "lib/clamp/parameter/declaration.rb", "lib/clamp/parameter/definition.rb", "lib/clamp/parameter/parsing.rb", "lib/clamp/subcommand/declaration.rb", "lib/clamp/subcommand/definition.rb", "lib/clamp/subcommand/execution.rb", "lib/clamp/subcommand/parsing.rb", "lib/clamp/truthy.rb", "lib/clamp/version.rb", "spec/clamp/command_group_spec.rb", "spec/clamp/command_spec.rb", "spec/clamp/option/definition_spec.rb", "spec/clamp/option_module_spec.rb", "spec/clamp/parameter/definition_spec.rb", "spec/spec_helper.rb"] ++ s.files = [".autotest", ".gitignore", ".rspec", ".travis.yml", "CHANGES.md", "Gemfile", "LICENSE", "README.md", "Rakefile", "clamp.gemspec", "examples/admin", "examples/flipflop", "examples/fubar", "examples/gitdown", "examples/scoop", "examples/speak", "lib/clamp.rb", "lib/clamp/attribute/declaration.rb", "lib/clamp/attribute/definition.rb", "lib/clamp/attribute/instance.rb", "lib/clamp/command.rb", "lib/clamp/errors.rb", "lib/clamp/help.rb", "lib/clamp/messages.rb", "lib/clamp/option/declaration.rb", "lib/clamp/option/definition.rb", "lib/clamp/option/parsing.rb", "lib/clamp/parameter/declaration.rb", "lib/clamp/parameter/definition.rb", "lib/clamp/parameter/parsing.rb", "lib/clamp/subcommand/declaration.rb", "lib/clamp/subcommand/definition.rb", "lib/clamp/subcommand/execution.rb", "lib/clamp/subcommand/parsing.rb", "lib/clamp/truthy.rb", "lib/clamp/version.rb", "spec/clamp/command_group_spec.rb", "spec/clamp/command_spec.rb", "spec/clamp/option/definition_spec.rb", "spec/clamp/option_module_spec.rb", "spec/clamp/parameter/definition_spec.rb", "spec/spec_helper.rb"] + s.homepage = "http://github.com/mdub/clamp" + s.licenses = ["MIT"] + s.rubygems_version = "2.4.4" Property changes on: devel/rubygem-clamp/files/patch-gemspec ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: devel/rubygem-clamp/files/patch-i18n =================================================================== --- devel/rubygem-clamp/files/patch-i18n (revision 379056) +++ devel/rubygem-clamp/files/patch-i18n (working copy) @@ -1,16 +1,3 @@ -diff --git a/clamp-0.6.3.gemspec b/clamp-0.6.3.gemspec -index 8f51cc3..acab485 100644 ---- clamp-0.6.3.gemspec -+++ clamp-0.6.3.gemspec -@@ -43,6 +43,7 @@ - - lib/clamp/command.rb - - lib/clamp/errors.rb - - lib/clamp/help.rb -+- lib/clamp/messages.rb - - lib/clamp/option/declaration.rb - - lib/clamp/option/definition.rb - - lib/clamp/option/parsing.rb - diff --git a/lib/clamp/attribute/instance.rb b/lib/clamp/attribute/instance.rb index 8f51cc3..acab485 100644 --- lib/clamp/attribute/instance.rb Index: devel/rubygem-clio/files/patch-gemspec =================================================================== --- devel/rubygem-clio/files/patch-gemspec (revision 379056) +++ devel/rubygem-clio/files/patch-gemspec (working copy) @@ -1,18 +1,11 @@ ---- clio-0.3.0.gemspec.orig 2013-02-26 02:53:17.000000000 +0000 -+++ clio-0.3.0.gemspec 2013-02-26 02:53:49.000000000 +0000 -@@ -27,7 +27,6 @@ - - VERSION - - COPYING - files: --- bin - - lib - - meta - - spec -@@ -76,7 +75,6 @@ - - spec/usage - - spec/commandline - - spec/string --- spec/commandable - - spec/usage/define.rd - - spec/usage/parse.rd - - spec/commandline/bracket.rd +--- clio.gemspec.orig 2014-11-29 13:47:58.000000000 +0000 ++++ clio.gemspec 2014-11-29 13:48:17.000000000 +0000 +@@ -12,7 +12,7 @@ + s.description = "Clio makes commandline interfaces easy. It provides both commandline parsing as well as console output routines." + s.email = "transfire@gmail.com" + s.extra_rdoc_files = ["README", "MANIFEST", "CHANGES", "RELEASE", "VERSION", "COPYING"] +- s.files = ["CHANGES", "COPYING", "MANIFEST", "README", "RELEASE", "VERSION", "bin", "lib", "lib/clio", "lib/clio/ansicode.rb", "lib/clio/buffer.rb", "lib/clio/commandable.rb", "lib/clio/commandline.rb", "lib/clio/consoleutils.rb", "lib/clio/errors.rb", "lib/clio/facets", "lib/clio/facets/kernel.rb", "lib/clio/facets/string.rb", "lib/clio/layout", "lib/clio/layout.rb", "lib/clio/layout/flow.rb", "lib/clio/layout/line.rb", "lib/clio/layout/list.rb", "lib/clio/layout/split.rb", "lib/clio/layout/stack.rb", "lib/clio/layout/table.rb", "lib/clio/progressbar.rb", "lib/clio/string.rb", "lib/clio/usage", "lib/clio/usage.rb", "lib/clio/usage/argument.rb", "lib/clio/usage/command.rb", "lib/clio/usage/interface.rb", "lib/clio/usage/option.rb", "lib/clio/usage/parser.rb", "lib/clio/usage/signature.rb", "lib/clio/usage/subcommand.rb", "meta", "meta/abstract", "meta/authors", "meta/created", "meta/homepage", "meta/license", "meta/repository", "meta/summary", "spec", "spec/commandable", "spec/commandline", "spec/commandline/autousage.rd", "spec/commandline/bracket.rd", "spec/commandline/completion.rd", "spec/commandline/define.rd", "spec/commandline/method.rd", "spec/commandline/parse.rd", "spec/commandline/scenario.rd", "spec/commandline/subclass.rd", "spec/string", "spec/string/unit.rd", "spec/usage", "spec/usage/define.rd", "spec/usage/parse.rd"] ++ s.files = ["CHANGES", "COPYING", "MANIFEST", "README", "RELEASE", "VERSION", "lib", "lib/clio", "lib/clio/ansicode.rb", "lib/clio/buffer.rb", "lib/clio/commandable.rb", "lib/clio/commandline.rb", "lib/clio/consoleutils.rb", "lib/clio/errors.rb", "lib/clio/facets", "lib/clio/facets/kernel.rb", "lib/clio/facets/string.rb", "lib/clio/layout", "lib/clio/layout.rb", "lib/clio/layout/flow.rb", "lib/clio/layout/line.rb", "lib/clio/layout/list.rb", "lib/clio/layout/split.rb", "lib/clio/layout/stack.rb", "lib/clio/layout/table.rb", "lib/clio/progressbar.rb", "lib/clio/string.rb", "lib/clio/usage", "lib/clio/usage.rb", "lib/clio/usage/argument.rb", "lib/clio/usage/command.rb", "lib/clio/usage/interface.rb", "lib/clio/usage/option.rb", "lib/clio/usage/parser.rb", "lib/clio/usage/signature.rb", "lib/clio/usage/subcommand.rb", "meta", "meta/abstract", "meta/authors", "meta/created", "meta/homepage", "meta/license", "meta/repository", "meta/summary", "spec", "spec/commandline", "spec/commandline/autousage.rd", "spec/commandline/bracket.rd", "spec/commandline/completion.rd", "spec/commandline/define.rd", "spec/commandline/method.rd", "spec/commandline/parse.rd", "spec/commandline/scenario.rd", "spec/commandline/subclass.rd", "spec/string", "spec/string/unit.rd", "spec/usage", "spec/usage/define.rd", "spec/usage/parse.rd"] + s.homepage = "http://clio.rubyforge.org" + s.rdoc_options = ["--inline-source", "--title", "clio api", "--main", "README"] + s.rubyforge_project = "clio" Index: devel/rubygem-debugger/files/patch-debugger-1.6.2.gemspec =================================================================== --- devel/rubygem-debugger/files/patch-debugger-1.6.2.gemspec (revision 379056) +++ devel/rubygem-debugger/files/patch-debugger-1.6.2.gemspec (working copy) @@ -1,25 +0,0 @@ ---- debugger-1.6.2.gemspec.orig 2013-07-27 12:49:18.000000000 +0400 -+++ debugger-1.6.2.gemspec 2013-07-27 13:03:58.000000000 +0400 -@@ -30,22 +30,6 @@ - - !ruby/object:Gem::Version - version: 0.3.1 - - !ruby/object:Gem::Dependency -- name: debugger-ruby_core_source -- requirement: !ruby/object:Gem::Requirement -- none: false -- requirements: -- - - ~> -- - !ruby/object:Gem::Version -- version: 1.2.3 -- type: :runtime -- prerelease: false -- version_requirements: !ruby/object:Gem::Requirement -- none: false -- requirements: -- - - ~> -- - !ruby/object:Gem::Version -- version: 1.2.3 --- !ruby/object:Gem::Dependency - name: debugger-linecache - requirement: !ruby/object:Gem::Requirement - none: false Index: devel/rubygem-debugger/files/patch-gemspec =================================================================== --- devel/rubygem-debugger/files/patch-gemspec (revision 0) +++ devel/rubygem-debugger/files/patch-gemspec (working copy) @@ -0,0 +1,10 @@ +--- debugger.gemspec.orig 2014-11-29 13:54:11.000000000 +0000 ++++ debugger.gemspec 2014-11-29 13:54:46.000000000 +0000 +@@ -26,7 +26,6 @@ + + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then + s.add_runtime_dependency(%q, [">= 0.3.1"]) +- s.add_runtime_dependency(%q, ["~> 1.2.3"]) + s.add_runtime_dependency(%q, ["~> 1.2.0"]) + s.add_development_dependency(%q, ["~> 0.9.2.2"]) + s.add_development_dependency(%q, ["~> 0.8.0"]) Property changes on: devel/rubygem-debugger/files/patch-gemspec ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: devel/rubygem-kafo/files/patch-gemspec =================================================================== --- devel/rubygem-kafo/files/patch-gemspec (revision 379056) +++ devel/rubygem-kafo/files/patch-gemspec (working copy) @@ -1,23 +1,10 @@ ---- kafo-0.6.5.gemspec.orig 2014-04-05 03:14:21.000000000 +0200 -+++ kafo-0.6.5.gemspec 2014-04-05 03:14:50.000000000 +0200 -@@ -109,20 +109,6 @@ - - !ruby/object:Gem::Version - version: '0' - - !ruby/object:Gem::Dependency -- name: puppet -- requirement: !ruby/object:Gem::Requirement -- requirements: -- - - '>=' -- - !ruby/object:Gem::Version -- version: '0' -- type: :runtime -- prerelease: false -- version_requirements: !ruby/object:Gem::Requirement -- requirements: -- - - '>=' -- - !ruby/object:Gem::Version -- version: '0' --- !ruby/object:Gem::Dependency - name: logging - requirement: !ruby/object:Gem::Requirement - requirements: +--- kafo.gemspec.orig 2014-11-30 03:40:23.000000000 +0000 ++++ kafo.gemspec 2014-11-30 03:40:39.000000000 +0000 +@@ -28,7 +28,6 @@ + s.add_development_dependency(%q, ["< 0.9"]) + s.add_development_dependency(%q, ["~> 1.9.0"]) + s.add_runtime_dependency(%q, [">= 0"]) +- s.add_runtime_dependency(%q, [">= 0"]) + s.add_runtime_dependency(%q, [">= 0"]) + s.add_runtime_dependency(%q, [">= 0.6.2"]) + s.add_runtime_dependency(%q, [">= 1.6.21"]) Index: devel/rubygem-kafo_parsers/Makefile =================================================================== --- devel/rubygem-kafo_parsers/Makefile (revision 379056) +++ devel/rubygem-kafo_parsers/Makefile (working copy) @@ -11,8 +11,7 @@ LICENSE= GPLv3 -RUN_DEPENDS= puppet:${PORTSDIR}/sysutils/puppet \ - rubygem-rdoc>=3.9.0:${PORTSDIR}/devel/rubygem-rdoc +RUN_DEPENDS= puppet:${PORTSDIR}/sysutils/puppet USE_RUBY= yes USE_RUBYGEMS= yes Index: devel/rubygem-kafo_parsers/files/patch-gemspec =================================================================== --- devel/rubygem-kafo_parsers/files/patch-gemspec (revision 379056) +++ devel/rubygem-kafo_parsers/files/patch-gemspec (working copy) @@ -1,23 +1,10 @@ ---- ./kafo_parsers-0.0.3.gemspec.orig 2014-07-03 18:41:59.959584274 +0300 -+++ ./kafo_parsers-0.0.3.gemspec 2014-07-03 18:41:59.998583732 +0300 -@@ -81,20 +81,6 @@ - - !ruby/object:Gem::Version - version: '0' - - !ruby/object:Gem::Dependency -- name: puppet -- requirement: !ruby/object:Gem::Requirement -- requirements: -- - - '>=' -- - !ruby/object:Gem::Version -- version: '0' -- type: :runtime -- prerelease: false -- version_requirements: !ruby/object:Gem::Requirement -- requirements: -- - - '>=' -- - !ruby/object:Gem::Version -- version: '0' --- !ruby/object:Gem::Dependency - name: rdoc - requirement: !ruby/object:Gem::Requirement - requirements: +--- kafo_parsers.gemspec.orig 2014-11-30 03:36:12.000000000 +0000 ++++ kafo_parsers.gemspec 2014-11-30 03:37:06.000000000 +0000 +@@ -26,7 +26,6 @@ + s.add_development_dependency(%q, ["~> 4.0"]) + s.add_development_dependency(%q, [">= 0"]) + s.add_development_dependency(%q, [">= 0"]) +- s.add_runtime_dependency(%q, [">= 0"]) + s.add_runtime_dependency(%q, [">= 3.9.0"]) + else + s.add_dependency(%q, ["~> 1.5"]) Index: devel/rubygem-launchy22/files/patch-gemspec =================================================================== --- devel/rubygem-launchy22/files/patch-gemspec (revision 0) +++ devel/rubygem-launchy22/files/patch-gemspec (working copy) @@ -0,0 +1,10 @@ +--- launchy.gemspec.orig 2014-11-30 03:43:33.000000000 +0000 ++++ launchy.gemspec 2014-11-30 03:43:39.000000000 +0000 +@@ -11,7 +11,6 @@ + s.date = "2013-02-06" + s.description = "Launchy is helper class for launching cross-platform applications in a fire and forget manner. There are application concepts (browser, email client, etc) that are common across all platforms, and they may be launched differently on each platform. Launchy is here to make a common approach to launching external application from within ruby programs." + s.email = "jeremy@copiousfreetime.org" +- s.executables = ["launchy"] + s.extra_rdoc_files = ["HISTORY.rdoc", "Manifest.txt", "README.rdoc"] + s.files = ["CONTRIBUTING.md", "HISTORY.rdoc", "LICENSE", "Manifest.txt", "README.rdoc", "Rakefile", "bin/launchy", "lib/launchy.rb", "lib/launchy/application.rb", "lib/launchy/applications/browser.rb", "lib/launchy/cli.rb", "lib/launchy/deprecated.rb", "lib/launchy/descendant_tracker.rb", "lib/launchy/detect.rb", "lib/launchy/detect/host_os.rb", "lib/launchy/detect/host_os_family.rb", "lib/launchy/detect/nix_desktop_environment.rb", "lib/launchy/detect/ruby_engine.rb", "lib/launchy/detect/runner.rb", "lib/launchy/error.rb", "lib/launchy/os_family.rb", "lib/launchy/version.rb", "spec/application_spec.rb", "spec/applications/browser_spec.rb", "spec/cli_spec.rb", "spec/detect/host_os_family_spec.rb", "spec/detect/host_os_spec.rb", "spec/detect/nix_desktop_environment_spec.rb", "spec/detect/ruby_engine_spec.rb", "spec/detect/runner_spec.rb", "spec/launchy_spec.rb", "spec/mock_application.rb", "spec/spec_helper.rb", "spec/tattle-host-os.yaml", "spec/version_spec.rb", "tasks/default.rake", "tasks/this.rb"] + s.homepage = "http://github.com/copiousfreetime/launchy" Property changes on: devel/rubygem-launchy22/files/patch-gemspec ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: devel/rubygem-pygments.rb/files/patch-gemspec =================================================================== --- devel/rubygem-pygments.rb/files/patch-gemspec (revision 379056) +++ devel/rubygem-pygments.rb/files/patch-gemspec (working copy) @@ -1,22 +0,0 @@ ---- pygments.rb.gemspec.orig 2014-05-20 06:53:31.000000000 +0200 -+++ pygments.rb.gemspec 2014-05-20 06:53:45.000000000 +0200 -@@ -13,7 +13,7 @@ - s.authors = ['Aman Gupta', 'Ted Nyman'] - s.email = ['[email protected]'] - -- s.add_dependency 'yajl-ruby', '~> 1.1.0' -+ s.add_dependency 'yajl-ruby', '~> 1.2.0' - s.add_dependency 'posix-spawn', '~> 0.3.6' - s.add_development_dependency 'rake-compiler', '~> 0.7.6' - ---- pygments.rb-0.6.0.gemspec.orig 2014-05-20 06:57:41.000000000 +0200 -+++ pygments.rb-0.6.0.gemspec 2014-05-20 06:54:40.000000000 +0200 -@@ -19,7 +19,7 @@ - requirements: - - - ~> - - !ruby/object:Gem::Version -- version: 1.1.0 -+ version: 1.2.0 - type: :runtime - prerelease: false - version_requirements: !ruby/object:Gem::Requirement Index: devel/rubygem-rapt/Makefile =================================================================== --- devel/rubygem-rapt/Makefile (revision 379056) +++ devel/rubygem-rapt/Makefile (working copy) @@ -13,5 +13,6 @@ USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/rapt +USES= libtool .include Index: devel/rubygem-rapt/files/patch-gemspec =================================================================== --- devel/rubygem-rapt/files/patch-gemspec (revision 379056) +++ devel/rubygem-rapt/files/patch-gemspec (working copy) @@ -1,14 +1,11 @@ ---- rapt-0.2.2.gemspec.orig 2013-02-26 02:37:18.000000000 +0000 -+++ rapt-0.2.2.gemspec 2013-02-26 02:38:04.000000000 +0000 -@@ -56,11 +56,9 @@ - - test/sandbox/rails_app - - test/sandbox/rails_app/config - - test/sandbox/rails_app/script --- test/sandbox/rails_app/vendor - - test/sandbox/rails_app/config/boot.rb - - test/sandbox/rails_app/config/environment.rb - - test/sandbox/rails_app/script/plugin --- test/sandbox/rails_app/vendor/plugins - test_files: [] - - rdoc_options: [] +--- rapt.gemspec.orig 2014-11-30 03:53:13.000000000 +0000 ++++ rapt.gemspec 2014-11-30 03:53:38.000000000 +0000 +@@ -12,7 +12,7 @@ + s.description = "Install, remove, and discover new plugins for your Ruby on Rails app." + s.email = "boss@topfunky.com" + s.executables = ["rapt"] +- s.files = ["CHANGELOG", "MIT-LICENSE", "README", "Rakefile", "bin/rapt", "lib/commands", "lib/commands/plugin", "lib/commands/plugin.rb", "lib/commands/plugin/commands.rb", "lib/commands/plugin/plugin.rb", "lib/commands/plugin/plugin_pack.rb", "lib/commands/plugin/rails_environment.rb", "lib/commands/plugin/recursive_http_fetcher.rb", "lib/commands/plugin/repositories.rb", "lib/commands/plugin/repository.rb", "test/commands", "test/commands/plugin", "test/commands/plugin/plugin_test.rb", "test/commands/plugin/repository_test.rb", "test/commands/plugin_test.rb", "test/mocks", "test/mocks/rails_environment.rb", "test/sandbox", "test/sandbox/rails_app", "test/sandbox/rails_app/config", "test/sandbox/rails_app/config/boot.rb", "test/sandbox/rails_app/config/environment.rb", "test/sandbox/rails_app/script", "test/sandbox/rails_app/script/plugin", "test/sandbox/rails_app/vendor", "test/sandbox/rails_app/vendor/plugins"] ++ s.files = ["CHANGELOG", "MIT-LICENSE", "README", "Rakefile", "bin/rapt", "lib/commands", "lib/commands/plugin", "lib/commands/plugin.rb", "lib/commands/plugin/commands.rb", "lib/commands/plugin/plugin.rb", "lib/commands/plugin/plugin_pack.rb", "lib/commands/plugin/rails_environment.rb", "lib/commands/plugin/recursive_http_fetcher.rb", "lib/commands/plugin/repositories.rb", "lib/commands/plugin/repository.rb", "test/commands", "test/commands/plugin", "test/commands/plugin/plugin_test.rb", "test/commands/plugin/repository_test.rb", "test/commands/plugin_test.rb", "test/mocks", "test/mocks/rails_environment.rb", "test/sandbox", "test/sandbox/rails_app", "test/sandbox/rails_app/config", "test/sandbox/rails_app/config/boot.rb", "test/sandbox/rails_app/config/environment.rb", "test/sandbox/rails_app/script", "test/sandbox/rails_app/script/plugin"] + s.homepage = "http://rapt.rubyforge.org" + s.required_ruby_version = Gem::Requirement.new("> 0.0.0") + s.requirements = ["none"] Index: devel/rubygem-term-ansicolor/Makefile =================================================================== --- devel/rubygem-term-ansicolor/Makefile (revision 379056) +++ devel/rubygem-term-ansicolor/Makefile (working copy) @@ -22,11 +22,6 @@ PLIST_FILES= bin/colortab bin/term_display bin/term_mandel PORTEXAMPLES= cdiff decolor -post-patch: -# Chop out the cdiff and decolor binaries; these should be installed to -# EXAMPLESDIR - @${REINPLACE_CMD} -e '/^- [cd][de][ic][fo][fl]o*r*$$/d' ${WRKSRC}/${GEM_NAME}.gemspec - post-install: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/ cd ${WRKSRC}/bin/ && ${INSTALL_SCRIPT} ${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR}/ Index: devel/rubygem-term-ansicolor/files/patch-gemspec =================================================================== --- devel/rubygem-term-ansicolor/files/patch-gemspec (revision 0) +++ devel/rubygem-term-ansicolor/files/patch-gemspec (working copy) @@ -0,0 +1,11 @@ +--- term-ansicolor.gemspec.orig 2015-01-22 02:35:45.000000000 +0000 ++++ term-ansicolor.gemspec 2015-01-22 02:36:29.000000000 +0000 +@@ -11,7 +11,7 @@ + s.date = "2014-02-06" + s.description = "This library uses ANSI escape sequences to control the attributes of terminal output" + s.email = "flori@ping.de" +- s.executables = ["cdiff", "decolor", "colortab", "term_mandel", "term_display"] ++ s.executables = ["colortab", "term_mandel", "term_display"] + s.extra_rdoc_files = ["README.rdoc", "lib/term/ansicolor.rb", "lib/term/ansicolor/attribute.rb", "lib/term/ansicolor/ppm_reader.rb", "lib/term/ansicolor/rgb_color_metrics.rb", "lib/term/ansicolor/rgb_triple.rb", "lib/term/ansicolor/version.rb"] + s.files = [".gitignore", ".travis.yml", "CHANGES", "COPYING", "Gemfile", "README.rdoc", "Rakefile", "VERSION", "bin/cdiff", "bin/colortab", "bin/decolor", "bin/term_display", "bin/term_mandel", "examples/ColorTest.gif", "examples/Mona_Lisa.jpg", "examples/Stilleben.jpg", "examples/example.rb", "examples/lambda-red-plain.ppm", "examples/lambda-red.png", "examples/lambda-red.ppm", "examples/pacman.jpg", "examples/smiley.png", "examples/wool.jpg", "lib/term/ansicolor.rb", "lib/term/ansicolor/.keep", "lib/term/ansicolor/attribute.rb", "lib/term/ansicolor/ppm_reader.rb", "lib/term/ansicolor/rgb_color_metrics.rb", "lib/term/ansicolor/rgb_triple.rb", "lib/term/ansicolor/version.rb", "term-ansicolor.gemspec", "tests/ansicolor_test.rb", "tests/attribute_test.rb", "tests/ppm_reader_test.rb", "tests/rgb_color_metrics_test.rb", "tests/rgb_triple_test.rb", "tests/test_helper.rb"] + s.homepage = "http://flori.github.com/term-ansicolor" Property changes on: devel/rubygem-term-ansicolor/files/patch-gemspec ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: devel/rubygem-tilt1/files/patch-gemspec =================================================================== --- devel/rubygem-tilt1/files/patch-gemspec (revision 379056) +++ devel/rubygem-tilt1/files/patch-gemspec (working copy) @@ -1,11 +1,23 @@ ---- tilt-1.4.1.gemspec.orig 2014-03-22 22:37:21.538619659 +0000 -+++ tilt-1.4.1.gemspec 2014-03-22 22:39:47.694609404 +0000 -@@ -381,8 +381,6 @@ - version: '0' - description: Generic interface to multiple Ruby template engines - email: r@tomayko.com --executables: --- tilt - extensions: [] - extra_rdoc_files: [] - files: +--- tilt.gemspec.orig 2014-11-29 02:13:13.000000000 +0000 ++++ tilt.gemspec 2014-11-29 02:13:29.000000000 +0000 +@@ -11,7 +11,6 @@ + s.date = "2013-05-08" + s.description = "Generic interface to multiple Ruby template engines" + s.email = "r@tomayko.com" +- s.executables = ["tilt"] + s.files = ["CHANGELOG.md", "COPYING", "Gemfile", "HACKING", "README.md", "Rakefile", "TEMPLATES.md", "bin/tilt", "lib/tilt.rb", "lib/tilt/asciidoc.rb", "lib/tilt/builder.rb", "lib/tilt/coffee.rb", "lib/tilt/css.rb", "lib/tilt/csv.rb", "lib/tilt/erb.rb", "lib/tilt/etanni.rb", "lib/tilt/haml.rb", "lib/tilt/liquid.rb", "lib/tilt/markaby.rb", "lib/tilt/markdown.rb", "lib/tilt/nokogiri.rb", "lib/tilt/plain.rb", "lib/tilt/radius.rb", "lib/tilt/rdoc.rb", "lib/tilt/string.rb", "lib/tilt/template.rb", "lib/tilt/textile.rb", "lib/tilt/wiki.rb", "lib/tilt/yajl.rb", "test/contest.rb", "test/markaby/locals.mab", "test/markaby/markaby.mab", "test/markaby/markaby_other_static.mab", "test/markaby/render_twice.mab", "test/markaby/scope.mab", "test/markaby/yielding.mab", "test/tilt_asciidoctor_test.rb", "test/tilt_blueclothtemplate_test.rb", "test/tilt_buildertemplate_test.rb", "test/tilt_cache_test.rb", "test/tilt_coffeescripttemplate_test.rb", "test/tilt_compilesite_test.rb", "test/tilt_creoletemplate_test.rb", "test/tilt_csv_test.rb", "test/tilt_erbtemplate_test.rb", "test/tilt_erubistemplate_test.rb", "test/tilt_etannitemplate_test.rb", "test/tilt_fallback_test.rb", "test/tilt_hamltemplate_test.rb", "test/tilt_kramdown_test.rb", "test/tilt_lesstemplate_test.less", "test/tilt_lesstemplate_test.rb", "test/tilt_liquidtemplate_test.rb", "test/tilt_markaby_test.rb", "test/tilt_markdown_test.rb", "test/tilt_marukutemplate_test.rb", "test/tilt_nokogiritemplate_test.rb", "test/tilt_radiustemplate_test.rb", "test/tilt_rdiscounttemplate_test.rb", "test/tilt_rdoctemplate_test.rb", "test/tilt_redcarpettemplate_test.rb", "test/tilt_redclothtemplate_test.rb", "test/tilt_sasstemplate_test.rb", "test/tilt_stringtemplate_test.rb", "test/tilt_template_test.rb", "test/tilt_test.rb", "test/tilt_wikiclothtemplate_test.rb", "test/tilt_yajltemplate_test.rb", "tilt.gemspec"] + s.homepage = "http://github.com/rtomayko/tilt/" + s.licenses = ["MIT"] +@@ -41,12 +40,10 @@ + s.add_development_dependency(%q, [">= 0"]) + s.add_development_dependency(%q, [">= 0"]) + s.add_development_dependency(%q, [">= 0"]) +- s.add_development_dependency(%q, [">= 0"]) + s.add_development_dependency(%q, [">= 0"]) + s.add_development_dependency(%q, [">= 0"]) + s.add_development_dependency(%q, [">= 0"]) + s.add_development_dependency(%q, [">= 0"]) +- s.add_development_dependency(%q, [">= 0"]) + else + s.add_dependency(%q, [">= 0.1.0"]) + s.add_dependency(%q, [">= 0"]) Index: devel/rubygem-toml/Makefile =================================================================== --- devel/rubygem-toml/Makefile (revision 379056) +++ devel/rubygem-toml/Makefile (working copy) @@ -17,7 +17,4 @@ USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -post-patch: - @${REINPLACE_CMD} -e '18 s|~>|>=|' ${WRKSRC}/${GEM_NAME}.gemspec - .include Index: devel/rubygem-toml/files/patch-gemspec =================================================================== --- devel/rubygem-toml/files/patch-gemspec (revision 0) +++ devel/rubygem-toml/files/patch-gemspec (working copy) @@ -0,0 +1,11 @@ +--- toml.gemspec.orig 2015-01-21 20:38:16.000000000 +0000 ++++ toml.gemspec 2015-01-21 20:38:37.000000000 +0000 +@@ -30,7 +30,7 @@ + s.add_dependency(%q, [">= 0"]) + end + else +- s.add_dependency(%q, ["~> 1.5.0"]) ++ s.add_dependency(%q, [">= 1.5.0"]) + s.add_dependency(%q, [">= 0"]) + end + end Property changes on: devel/rubygem-toml/files/patch-gemspec ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: devel/rubygem-travis/files/patch-travis-1.7.5.gemspec =================================================================== --- devel/rubygem-travis/files/patch-travis-1.7.5.gemspec (revision 379056) +++ devel/rubygem-travis/files/patch-travis-1.7.5.gemspec (working copy) @@ -1,12 +0,0 @@ ---- travis-1.7.5.gemspec.orig 2015-01-21 16:49:45.809378003 +0300 -+++ travis-1.7.5.gemspec 2015-01-21 16:51:09.773372219 +0300 -@@ -142,9 +142,6 @@ - name: pry - requirement: !ruby/object:Gem::Requirement - requirements: -- - - "<" -- - !ruby/object:Gem::Version -- version: '0.10' - - - "~>" - - !ruby/object:Gem::Version - version: '0.9' Index: devel/rubygem-travis/files/patch-travis.gemspec =================================================================== --- devel/rubygem-travis/files/patch-travis.gemspec (revision 379056) +++ devel/rubygem-travis/files/patch-travis.gemspec (working copy) @@ -1,11 +0,0 @@ ---- travis.gemspec.orig 2015-01-21 16:49:45.798378381 +0300 -+++ travis.gemspec 2015-01-21 16:50:23.063375806 +0300 -@@ -286,7 +286,7 @@ - s.add_dependency "backports" - s.add_dependency "gh", "~> 0.13" - s.add_dependency "launchy", "~> 2.1" -- s.add_dependency "pry", "< 0.10", "~> 0.9" -+ s.add_dependency "pry", "~> 0.9" - s.add_dependency "typhoeus", "~> 0.6", ">= 0.6.8" - s.add_dependency "pusher-client", "~> 0.4" - s.add_dependency "addressable", "~> 2.3" Index: net/rubygem-amqp-utils/files/patch-versions =================================================================== --- net/rubygem-amqp-utils/files/patch-versions (revision 379056) +++ net/rubygem-amqp-utils/files/patch-versions (working copy) @@ -1,27 +0,0 @@ ---- amqp-utils-0.5.1.gemspec.orig 2013-07-01 00:25:29.435452053 +0000 -+++ amqp-utils-0.5.1.gemspec 2013-07-01 00:25:54.044449653 +0000 -@@ -28,10 +28,9 @@ - - !ruby/object:Gem::Version - hash: 1 - segments: -- - 0 -- - 7 - - 1 -- version: 0.7.1 -+ - 0 -+ version: 1.0.0 - type: :runtime - version_requirements: *id001 - - !ruby/object:Gem::Dependency -@@ -123,9 +122,9 @@ - hash: 5 - segments: - - 0 -- - 4 - - 5 -- version: 0.4.5 -+ - 5 -+ version: 0.5.5 - type: :runtime - version_requirements: *id007 - description: |- Index: net/rubygem-gitlab_omniauth-ldap/files/patch-gemspec =================================================================== --- net/rubygem-gitlab_omniauth-ldap/files/patch-gemspec (revision 379056) +++ net/rubygem-gitlab_omniauth-ldap/files/patch-gemspec (working copy) @@ -1,11 +1,11 @@ ---- gitlab_omniauth-ldap-1.1.0.gemspec.orig 2013-10-25 02:24:55.456068284 +0000 -+++ gitlab_omniauth-ldap-1.1.0.gemspec 2013-10-25 02:25:06.863067558 +0000 -@@ -58,7 +58,7 @@ - requirements: - - - ~> - - !ruby/object:Gem::Version -- version: 0.1.1 -+ version: 0.4.0 - type: :runtime - prerelease: false - version_requirements: !ruby/object:Gem::Requirement +--- gitlab_omniauth-ldap.gemspec.orig 2014-12-01 04:29:00.000000000 +0000 ++++ gitlab_omniauth-ldap.gemspec 2014-12-01 04:29:29.000000000 +0000 +@@ -25,7 +25,7 @@ + s.add_runtime_dependency(%q, ["~> 1.0"]) + s.add_runtime_dependency(%q, ["~> 0.7.0"]) + s.add_runtime_dependency(%q, ["~> 0.0.3.1"]) +- s.add_runtime_dependency(%q, ["~> 0.1.1"]) ++ s.add_runtime_dependency(%q, ["~> 0.4.0"]) + else + s.add_dependency(%q, ["~> 1.0"]) + s.add_dependency(%q, ["~> 0.7.0"]) Index: net/rubygem-twitter/Makefile =================================================================== --- net/rubygem-twitter/Makefile (revision 379056) +++ net/rubygem-twitter/Makefile (working copy) @@ -27,8 +27,4 @@ USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -post-patch: -# adjust gemspec for "http ~> 0.6.0" - @${REINPLACE_CMD} -e '77 s|"~>"|">="|' ${WRKSRC}/${GEM_NAME}.gemspec - .include Index: net/rubygem-twitter/files/patch-gemspec =================================================================== --- net/rubygem-twitter/files/patch-gemspec (revision 0) +++ net/rubygem-twitter/files/patch-gemspec (working copy) @@ -0,0 +1,11 @@ +--- twitter.gemspec.orig 2015-01-21 20:31:06.000000000 +0000 ++++ twitter.gemspec 2015-01-21 20:31:20.000000000 +0000 +@@ -25,7 +25,7 @@ + s.add_runtime_dependency(%q, ["~> 0.2.0"]) + s.add_runtime_dependency(%q, ["~> 0.0.9"]) + s.add_runtime_dependency(%q, ["~> 0.9.0"]) +- s.add_runtime_dependency(%q, ["~> 0.6.0"]) ++ s.add_runtime_dependency(%q, [">= 0.6.0"]) + s.add_runtime_dependency(%q, ["~> 0.6.0"]) + s.add_runtime_dependency(%q, ["~> 1.8"]) + s.add_runtime_dependency(%q, ["~> 0.4.0"]) Property changes on: net/rubygem-twitter/files/patch-gemspec ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: net/rubygem-twitter-stream/files/patch-gemspec =================================================================== --- net/rubygem-twitter-stream/files/patch-gemspec (revision 0) +++ net/rubygem-twitter-stream/files/patch-gemspec (working copy) @@ -0,0 +1,11 @@ +--- twitter-stream.gemspec.orig 2014-12-01 16:17:01.000000000 +0000 ++++ twitter-stream.gemspec 2014-12-01 16:17:31.000000000 +0000 +@@ -24,7 +24,7 @@ + + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then + s.add_runtime_dependency(%q, [">= 0.12.8"]) +- s.add_runtime_dependency(%q, ["~> 0.1.4"]) ++ s.add_runtime_dependency(%q, ["~> 0.2.0"]) + s.add_runtime_dependency(%q, ["~> 0.5.1"]) + s.add_development_dependency(%q, ["~> 2.5.0"]) + else Property changes on: net/rubygem-twitter-stream/files/patch-gemspec ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: net/rubygem-twitter-stream/files/patch-versions =================================================================== --- net/rubygem-twitter-stream/files/patch-versions (revision 379056) +++ net/rubygem-twitter-stream/files/patch-versions (working copy) @@ -1,15 +0,0 @@ ---- twitter-stream-0.1.16.gemspec.orig 2013-07-15 23:54:24.000000000 +0900 -+++ twitter-stream-0.1.16.gemspec 2013-07-15 23:57:27.000000000 +0900 -@@ -40,9 +40,9 @@ - - !ruby/object:Gem::Version - segments: - - 0 -- - 1 -- - 4 -- version: 0.1.4 -+ - 2 -+ - 0 -+ version: 0.2.0 - type: :runtime - version_requirements: *id002 - - !ruby/object:Gem::Dependency Index: net-im/rubygem-lita/files/patch-gemspec =================================================================== --- net-im/rubygem-lita/files/patch-gemspec (revision 379056) +++ net-im/rubygem-lita/files/patch-gemspec (working copy) @@ -1,33 +1,10 @@ ---- lita-3.3.1.gemspec.orig 2014-09-08 22:00:06 UTC -+++ lita-3.3.1.gemspec -@@ -123,20 +123,6 @@ - - !ruby/object:Gem::Version - version: 1.5.2 - - !ruby/object:Gem::Dependency -- name: rb-readline -- requirement: !ruby/object:Gem::Requirement -- requirements: -- - - ">=" -- - !ruby/object:Gem::Version -- version: 0.5.1 -- type: :runtime -- prerelease: false -- version_requirements: !ruby/object:Gem::Requirement -- requirements: -- - - ">=" -- - !ruby/object:Gem::Version -- version: 0.5.1 --- !ruby/object:Gem::Dependency - name: redis-namespace - requirement: !ruby/object:Gem::Requirement - requirements: ---- lita.gemspec.orig 2014-09-08 22:00:06 UTC -+++ lita.gemspec -@@ -28,7 +28,6 @@ - spec.add_runtime_dependency "multi_json", ">= 1.7.7" - spec.add_runtime_dependency "puma", ">= 2.7.1" - spec.add_runtime_dependency "rack", ">= 1.5.2" -- spec.add_runtime_dependency "rb-readline", ">= 0.5.1" - spec.add_runtime_dependency "redis-namespace", ">= 1.3.0" - spec.add_runtime_dependency "thor", ">= 0.18.1" - +--- lita.gemspec.orig 2015-01-21 20:12:12.000000000 +0000 ++++ lita.gemspec 2015-01-21 20:15:03.000000000 +0000 +@@ -69,7 +69,6 @@ + s.add_dependency(%q, [">= 1.7.7"]) + s.add_dependency(%q, [">= 2.7.1"]) + s.add_dependency(%q, [">= 1.5.2"]) +- s.add_dependency(%q, [">= 0.5.1"]) + s.add_dependency(%q, [">= 1.3.0"]) + s.add_dependency(%q, [">= 0.18.1"]) + s.add_dependency(%q, [">= 0"]) Index: net-im/rubygem-termtter/files/patch-gemspec =================================================================== --- net-im/rubygem-termtter/files/patch-gemspec (revision 0) +++ net-im/rubygem-termtter/files/patch-gemspec (working copy) @@ -0,0 +1,11 @@ +--- termtter.gemspec.orig 2014-12-01 02:49:20.000000000 +0000 ++++ termtter.gemspec 2014-12-01 02:49:41.000000000 +0000 +@@ -25,7 +25,7 @@ + + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then + s.add_runtime_dependency(%q, ["> 1.1.3"]) +- s.add_runtime_dependency(%q, ["~> 1.5.0"]) ++ s.add_runtime_dependency(%q, ["~> 1.6.0"]) + s.add_runtime_dependency(%q, ["~> 1.0.0"]) + s.add_runtime_dependency(%q, ["~> 1.5.1"]) + s.add_runtime_dependency(%q, ["~> 0.5.1"]) Property changes on: net-im/rubygem-termtter/files/patch-gemspec ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: net-im/rubygem-termtter/files/patch-versions =================================================================== --- net-im/rubygem-termtter/files/patch-versions (revision 379056) +++ net-im/rubygem-termtter/files/patch-versions (working copy) @@ -1,35 +0,0 @@ ---- termtter-2.2.1.gemspec.orig 2013-07-01 03:35:35.630666391 +0000 -+++ termtter-2.2.1.gemspec 2013-07-01 03:35:36.659666334 +0000 -@@ -33,28 +33,28 @@ - requirements: - - - ~> - - !ruby/object:Gem::Version -- version: 1.5.0 -+ version: 1.6.0 - type: :runtime - prerelease: false - version_requirements: !ruby/object:Gem::Requirement - requirements: - - - ~> - - !ruby/object:Gem::Version -- version: 1.5.0 -+ version: 1.6.0 - - !ruby/object:Gem::Dependency - name: termcolor - requirement: !ruby/object:Gem::Requirement - requirements: - - - ~> - - !ruby/object:Gem::Version -- version: 1.0.0 -+ version: 1.2.0 - type: :runtime - prerelease: false - version_requirements: !ruby/object:Gem::Requirement - requirements: - - - ~> - - !ruby/object:Gem::Version -- version: 1.0.0 -+ version: 1.2.0 - - !ruby/object:Gem::Dependency - name: rubytter - requirement: !ruby/object:Gem::Requirement Index: net-mgmt/rubygem-visage-app/files/patch-versions =================================================================== --- net-mgmt/rubygem-visage-app/files/patch-versions (revision 379056) +++ net-mgmt/rubygem-visage-app/files/patch-versions (working copy) @@ -1,35 +0,0 @@ ---- Gemfile.lock.orig 2013-02-24 05:57:00.000000000 +0000 -+++ Gemfile.lock 2013-02-24 05:57:23.000000000 +0000 -@@ -3,7 +3,7 @@ - specs: - visage-app (2.1.0) - errand (= 0.7.3) -- haml (= 3.1.4) -+ haml (= 3.1.7) - sinatra (= 1.3.2) - tilt (= 1.3.3) - yajl-ruby (= 1.1.0) ---- visage-app-2.1.0.gemspec.orig 2013-02-24 05:57:06.000000000 +0000 -+++ visage-app-2.1.0.gemspec 2013-02-24 05:57:30.000000000 +0000 -@@ -25,8 +25,8 @@ - segments: - - 3 - - 1 -- - 4 -- version: 3.1.4 -+ - 7 -+ version: 3.1.7 - prerelease: false - name: haml - type: :runtime ---- visage-app.gemspec.orig 2013-02-24 05:57:12.000000000 +0000 -+++ visage-app.gemspec 2013-02-24 05:57:39.000000000 +0000 -@@ -23,7 +23,7 @@ - s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } - s.require_paths = ["lib"] - -- s.add_runtime_dependency "haml", "= 3.1.4" -+ s.add_runtime_dependency "haml", "= 3.1.7" - s.add_runtime_dependency "tilt", "= 1.3.3" - s.add_runtime_dependency "sinatra", "= 1.3.2" - s.add_runtime_dependency "errand", "= 0.7.3" Index: science/rubygem-netcdf/Makefile =================================================================== --- science/rubygem-netcdf/Makefile (revision 379056) +++ science/rubygem-netcdf/Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= netcdf PORTVERSION= 0.6.6.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= science rubygems MASTER_SITES= RG DISTNAME= ruby-${PORTNAME}-${PORTVERSION} Index: science/rubygem-netcdf/files/patch-extconf.rb =================================================================== --- science/rubygem-netcdf/files/patch-extconf.rb (revision 379056) +++ science/rubygem-netcdf/files/patch-extconf.rb (working copy) @@ -1,6 +1,222 @@ ---- extconf.rb.orig Thu Jun 23 09:20:15 2005 -+++ extconf.rb Tue Jan 17 13:36:39 2006 -@@ -105,9 +105,6 @@ +--- extconf.rb.orig 2015-02-16 19:09:00.954071000 +0000 ++++ extconf.rb 2015-02-16 19:10:17.025178000 +0000 +@@ -1,14 +1,30 @@ +-require "rubygems" unless defined?(Gem) + require "mkmf" ++require "rubygems" unless defined?(Gem) + +-hoge = Gem::GemPathSearcher.new.find("narray") +-narray_fullname = hoge.full_name +-narray_installpath = hoge.installation_path +-narray_include = "#{narray_installpath}/gems/#{narray_fullname}/" +-narray_lib = "#{narray_installpath}/gems/#{narray_fullname}/" ++ar = ARGV.grep( /^--with-netcdf-version=/ ) ++if ar.length > 0 ++ ncversion = ar[0].sub(/^--with-netcdf-version=/,"") ++else ++ ncversion = nil ++end + +-dir_config('narray',narray_include,narray_lib) +-dir_config('netcdf','/usr/local') ++if Gem.respond_to?(:find_files) ++ require "rbconfig" ++ so = RbConfig::CONFIG["DLEXT"] ++ narray_include = File.expand_path(File.dirname(Gem.find_files("narray.h")[0])) ++ narray_lib = File.expand_path(File.dirname(Gem.find_files("narray." + so)[0])) ++else ++ gem_home=(`gem environment GEM_HOME`).chomp ++ narray_dir = Dir.glob("#{gem_home}/gems/narray-*").sort[-1] ++ if narray_dir ++ narray_include = narray_lib = narray_dir ++ else ++ narray_include = narray_lib = [ $sitearchdir, $vendorarchdir] ++ end ++end ++dir_config('narray', narray_include, narray_lib) ++ ++dir_config('netcdf', '/usr/local') + + if ( ! ( have_header("narray.h") && have_header("narray_config.h") ) ) then + print < 4.2.1 + else +- print <<-EOS +- ** Message ** Compiling with OPeNDAP/DODS-enabled NetCDF library. +- +- This is because the command opendap-config is found in your system. +- If you want to use the ordinary (non-DODS) version of NetCDF, +- run extconf.rb with option --disable-opendap. +- ^^^^^^^^^^^^^^^^^ +- EOS ++ ncversion = "3.0.0" # assume version 3 (only for compilation) ++ # For compilation, there is no difference among subversions of netcdf 3 + end ++end + +- $CFLAGS += ' '+cflags +- $LOCAL_LIBS += ' ' + libs ++ncver0 = ncversion[0..0] # "3" or "4" ++ncver = ncversion.gsub(/\./,'') ++unless /^\d\d\d$/ =~ ncver # 3 digits ++ raise("Invalid netcdf version: #{ncversion}. Use --with-netcdf-version=") ++end ++$CFLAGS += ' -DNCVER='+ncver + +- # non portable treatments: should be improved (by Horinouchi) +- CONFIG['LDSHARED'].sub!(/gcc/,'g++') +- $LIBS.sub!(/-lc\s/,'') ; $LIBS.sub!(/-lc$/,'') +- print <<-EOS +- ** Warning ** non-portable treatments are made, +- which was sucessfull redhat linux 9: +- * gcc was replaced with g++ in CONFIG['LDSHARED'] +- * -lc library was removed if in $LIBS +- +- EOS +- # p '@@@' +- # ary = [] +- # CONFIG.each{|k,v| ary.push([k,v])} +- # ary.sort.each{|x| p x} +-else ++case ncver0 ++when "4" + if xsystem("nc-config --libs") # for NetCDF 4 + cflags = `nc-config --cflags`.gsub(/\n/, " ") + libs = `nc-config --libs`.gsub(/\n/, " ") +@@ -91,23 +67,82 @@ + $CFLAGS += ' ' + cflags + $LOCAL_LIBS += ' ' + libs + end +- if ( ! ( have_header("netcdf.h") && have_library("netcdf") ) )then +- print <<-EOS +- ** configure error ** +- Header netcdf.h or the compiled netcdf library is not found. +- If you have the library installed under /netcdfdir (that is, netcdf.h is +- in /netcdfdir/include and the library in /netcdfdir/lib/), +- try the following: ++when "3" ++ # for NetCDF 3, which needs external libraries for OpenDAP ++ if xsystem("ncdap-config --libs") ++ libncdods = "nc-dap" ++ cflags = `ncdap-config --cflags`.gsub(/\n/, " ") ++ libs = `ncdap-config --libs`.gsub(/\n/, " ") ++ prefix_dods = `ncdap-config --prefix`.gsub(/\n/, "") ++ elsif xsystem("opendap-config --libs") ++ libncdods = "nc-dods" ++ cflags = `opendap-config --cflags`.gsub(/\n/, " ") ++ libs = `opendap-config --libs-nc`.gsub(/\n/, " ") ++ prefix_dods = `opendap-config --prefix`.gsub(/\n/, "") ++ end ++ if (enable_config('opendap',true) && ( xsystem("opendap-config --libs") || ++ xsystem("ncdap-config --libs") ) ) ++ ++ dir_config(libncdods,prefix_dods) + +- % ruby extconf.rb --with-netcdf-dir=/netcdfdir ++ if (!have_library(libncdods)) ++ print <<-EOS ++ ** ERROR ** Library not found: nc-dods (OPeNDAP/DODS-enabled NetCDF lib) ++ Install it, or run extconf.rb with option --disable-opendap. ++ ^^^^^^^^^^^^^^^^^ ++ EOS ++ exit(-1) ++ else ++ print <<-EOS ++ ** Message ** Compiling with OPeNDAP/DODS-enabled NetCDF library. ++ ++ This is because the command opendap-config is found in your system. ++ If you want to use the ordinary (non-DODS) version of NetCDF, ++ run extconf.rb with option --disable-opendap. ++ ^^^^^^^^^^^^^^^^^ ++ EOS ++ end ++ ++ $CFLAGS += ' '+cflags ++ $LOCAL_LIBS += ' ' + libs ++ ++ # non portable treatments: should be improved (by Horinouchi) ++ CONFIG['LDSHARED'].sub!(/gcc/,'g++') ++ $LIBS.sub!(/-lc\s/,'') ; $LIBS.sub!(/-lc$/,'') ++ print <<-EOS ++ ** Warning ** non-portable treatments are made, ++ which was sucessfull redhat linux 9: ++ * gcc was replaced with g++ in CONFIG['LDSHARED'] ++ * -lc library was removed if in $LIBS + +- Alternatively, you can specify the two directory separately +- with --with-netcdf-include and --with-netcdf-lib. + EOS +- exit(-1) ++ # p '@@@' ++ # ary = [] ++ # CONFIG.each{|k,v| ary.push([k,v])} ++ # ary.sort.each{|x| p x} ++ else ++ if ( ! ( have_header("netcdf.h") && have_library("netcdf") ) )then ++ print <<-EOS ++ ** configure error ** ++ Header netcdf.h or the compiled netcdf library is not found. ++ If you have the library installed under /netcdfdir (that is, netcdf.h is ++ in /netcdfdir/include and the library in /netcdfdir/lib/), ++ try the following: ++ ++ % ruby extconf.rb --with-netcdf-dir=/netcdfdir ++ ++ Alternatively, you can specify the two directory separately ++ with --with-netcdf-include and --with-netcdf-lib. ++ EOS ++ exit(-1) ++ end + end ++else ++ raise "Netcdf version #{ncver0} is not supported" + end + ++ ++ + if /cygwin|mingw/ =~ RUBY_PLATFORM + have_library("narray") || raise("ERROR: narray library is not found") + end +@@ -128,9 +163,9 @@ newmkfl.puts("") newmkfl.puts("test: all") # insert the "test" target newmkfl.puts("\t\t@cd test && ruby test.rb && echo 'test did not fail :-p (please ignore the warnings)' && cd ..") @@ -7,6 +223,9 @@ - when /lib\/netcdf/ - line = line.chomp! + "/" - newmkfl.puts(line) ++# when /lib\/netcdf/ ++# line = line.chomp! + "/" ++# newmkfl.puts(line) else newmkfl.puts(line) end Index: security/rubygem-ezcrypto/files/patch-gemspec =================================================================== --- security/rubygem-ezcrypto/files/patch-gemspec (revision 379056) +++ security/rubygem-ezcrypto/files/patch-gemspec (working copy) @@ -1,18 +1,17 @@ ---- ezcrypto-0.7.2.gemspec.orig 2013-02-27 02:35:45.000000000 +0000 -+++ ezcrypto-0.7.2.gemspec 2013-02-27 02:36:42.000000000 +0000 -@@ -51,7 +51,6 @@ - - test/protectedsigner.pem - - test/sf-class2-root.crt - - test/sf_intermediate.crt --- test/store - - test/test_helper.rb - - test/testchild.pem - - test/testchild.req -@@ -101,7 +100,6 @@ - - test/protectedsigner.pem - - test/sf-class2-root.crt - - test/sf_intermediate.crt --- test/store - - test/test_helper.rb - - test/testchild.pem - - test/testchild.req +--- ezcrypto.gemspec.orig 2015-01-22 01:19:35.000000000 +0000 ++++ ezcrypto.gemspec 2015-01-22 01:20:01.000000000 +0000 +@@ -12,12 +12,12 @@ + s.description = "Makes it easier and safer to write crypto code." + s.email = "pelle@stakeventures.com" + s.extra_rdoc_files = ["CHANGELOG", "README.rdoc", "README_ACTIVE_CRYPTO", "README_DIGITAL_SIGNATURES"] +- s.files = ["CHANGELOG", "MIT-LICENSE", "README.rdoc", "README_ACTIVE_CRYPTO", "README_DIGITAL_SIGNATURES", "init.rb", "lib/active_crypto.rb", "lib/ezcrypto.rb", "lib/ezsig.rb", "lib/trusted.pem", "rakefile", "test/active_crypto_test.rb", "test/agree2.com.cert", "test/association_key_holder_test.rb", "test/database.yml", "test/debug.log", "test/digest_test.rb", "test/dsakey.pem", "test/dsapubkey.pem", "test/dsig_test.rb", "test/encrypt_test.rb", "test/ezcrypto_test.rb", "test/key_holder_test.rb", "test/protectedsigner.pem", "test/sf-class2-root.crt", "test/sf_intermediate.crt", "test/store", "test/test_helper.rb", "test/testchild.pem", "test/testchild.req", "test/testpub.pem", "test/testsigner.cert", "test/testsigner.pem", "test/valicert_class2_root.crt"] ++ s.files = ["CHANGELOG", "MIT-LICENSE", "README.rdoc", "README_ACTIVE_CRYPTO", "README_DIGITAL_SIGNATURES", "init.rb", "lib/active_crypto.rb", "lib/ezcrypto.rb", "lib/ezsig.rb", "lib/trusted.pem", "rakefile", "test/active_crypto_test.rb", "test/agree2.com.cert", "test/association_key_holder_test.rb", "test/database.yml", "test/debug.log", "test/digest_test.rb", "test/dsakey.pem", "test/dsapubkey.pem", "test/dsig_test.rb", "test/encrypt_test.rb", "test/ezcrypto_test.rb", "test/key_holder_test.rb", "test/protectedsigner.pem", "test/sf-class2-root.crt", "test/sf_intermediate.crt", "test/test_helper.rb", "test/testchild.pem", "test/testchild.req", "test/testpub.pem", "test/testsigner.cert", "test/testsigner.pem", "test/valicert_class2_root.crt"] + s.homepage = "http://ezcrypto.rubyforge.org" + s.requirements = ["none"] + s.rubyforge_project = "ezcrypto" + s.rubygems_version = "2.4.5" + s.summary = "Simplified encryption library." +- s.test_files = ["test/active_crypto_test.rb", "test/agree2.com.cert", "test/association_key_holder_test.rb", "test/database.yml", "test/debug.log", "test/digest_test.rb", "test/dsakey.pem", "test/dsapubkey.pem", "test/dsig_test.rb", "test/encrypt_test.rb", "test/ezcrypto_test.rb", "test/key_holder_test.rb", "test/protectedsigner.pem", "test/sf-class2-root.crt", "test/sf_intermediate.crt", "test/store", "test/test_helper.rb", "test/testchild.pem", "test/testchild.req", "test/testpub.pem", "test/testsigner.cert", "test/testsigner.pem", "test/valicert_class2_root.crt"] ++ s.test_files = ["test/active_crypto_test.rb", "test/agree2.com.cert", "test/association_key_holder_test.rb", "test/database.yml", "test/debug.log", "test/digest_test.rb", "test/dsakey.pem", "test/dsapubkey.pem", "test/dsig_test.rb", "test/encrypt_test.rb", "test/ezcrypto_test.rb", "test/key_holder_test.rb", "test/protectedsigner.pem", "test/sf-class2-root.crt", "test/sf_intermediate.crt", "test/test_helper.rb", "test/testchild.pem", "test/testchild.req", "test/testpub.pem", "test/testsigner.cert", "test/testsigner.pem", "test/valicert_class2_root.crt"] + end + Index: sysutils/rubygem-hammer_cli/files/patch-gemspec =================================================================== --- sysutils/rubygem-hammer_cli/files/patch-gemspec (revision 0) +++ sysutils/rubygem-hammer_cli/files/patch-gemspec (working copy) @@ -0,0 +1,11 @@ +--- hammer_cli.gemspec.orig 2015-01-22 02:42:09.000000000 +0000 ++++ hammer_cli.gemspec 2015-01-22 02:42:46.000000000 +0000 +@@ -64,7 +64,7 @@ + s.add_dependency(%q, [">= 0"]) + s.add_dependency(%q, [">= 0"]) + s.add_dependency(%q, [">= 0"]) +- s.add_dependency(%q, ["~> 1.0"]) ++ s.add_dependency(%q, [">= 1.0"]) + s.add_dependency(%q, ["~> 0.0.10"]) + end + end Property changes on: sysutils/rubygem-hammer_cli/files/patch-gemspec ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: sysutils/rubygem-hammer_cli/files/patch-versions =================================================================== --- sysutils/rubygem-hammer_cli/files/patch-versions (revision 379056) +++ sysutils/rubygem-hammer_cli/files/patch-versions (working copy) @@ -1,32 +0,0 @@ ---- hammer_cli-0.1.4.gemspec.orig 2014-12-10 22:09:22.000000000 +0100 -+++ hammer_cli-0.1.4.gemspec 2014-12-10 22:10:25.000000000 +0100 -@@ -138,20 +138,6 @@ - - !ruby/object:Gem::Version - version: '0' - - !ruby/object:Gem::Dependency -- name: rb-readline -- requirement: !ruby/object:Gem::Requirement -- requirements: -- - - '>=' -- - !ruby/object:Gem::Version -- version: '0' -- type: :runtime -- prerelease: false -- version_requirements: !ruby/object:Gem::Requirement -- requirements: -- - - '>=' -- - !ruby/object:Gem::Version -- version: '0' --- !ruby/object:Gem::Dependency - name: fastercsv - requirement: !ruby/object:Gem::Requirement - requirements: -@@ -169,7 +155,7 @@ - name: mime-types - requirement: !ruby/object:Gem::Requirement - requirements: -- - - ~> -+ - - '>=' - - !ruby/object:Gem::Version - version: '1.0' - type: :runtime Index: textproc/rubygem-nokogiri/files/patch-gemspec =================================================================== --- textproc/rubygem-nokogiri/files/patch-gemspec (revision 379056) +++ textproc/rubygem-nokogiri/files/patch-gemspec (working copy) @@ -1,23 +1,10 @@ ---- ./nokogiri-1.6.3.1.gemspec.orig 2014-08-23 23:55:51.304817727 +0000 -+++ ./nokogiri-1.6.3.1.gemspec 2014-08-23 23:56:09.655816514 +0000 -@@ -15,20 +15,6 @@ - date: 2014-07-22 00:00:00.000000000 Z - dependencies: - - !ruby/object:Gem::Dependency -- name: mini_portile -- requirement: !ruby/object:Gem::Requirement -- requirements: -- - - '=' -- - !ruby/object:Gem::Version -- version: 0.6.0 -- type: :runtime -- prerelease: false -- version_requirements: !ruby/object:Gem::Requirement -- requirements: -- - - '=' -- - !ruby/object:Gem::Version -- version: 0.6.0 --- !ruby/object:Gem::Dependency - name: rdoc - requirement: !ruby/object:Gem::Requirement - requirements: +--- nokogiri.gemspec.orig 2014-12-01 16:37:19.000000000 +0000 ++++ nokogiri.gemspec 2014-12-01 16:37:28.000000000 +0000 +@@ -29,7 +29,6 @@ + s.specification_version = 4 + + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then +- s.add_runtime_dependency(%q, ["= 0.6.0"]) + s.add_development_dependency(%q, ["~> 4.0"]) + s.add_development_dependency(%q, [">= 1.1"]) + s.add_development_dependency(%q, [">= 1.0.3"]) Index: textproc/rubygem-nokogiri14/files/patch-gemspec =================================================================== --- textproc/rubygem-nokogiri14/files/patch-gemspec (revision 379056) +++ textproc/rubygem-nokogiri14/files/patch-gemspec (working copy) @@ -1,20 +1,15 @@ ---- nokogiri-1.4.7.gemspec.orig 2014-08-26 20:40:15.000000000 +0000 -+++ nokogiri-1.4.7.gemspec 2014-08-26 20:40:32.000000000 +0000 -@@ -77,7 +77,7 @@ - - aaronp@rubyforge.org - - mike.dalessio@gmail.com - executables: --- nokogiri -+- nokogiri14 - extensions: - - ext/nokogiri/extconf.rb - extra_rdoc_files: -@@ -128,7 +128,7 @@ - - README.ja.rdoc - - README.rdoc - - Rakefile --- bin/nokogiri -+- bin/nokogiri14 - - ext/nokogiri/depend - - ext/nokogiri/extconf.rb - - ext/nokogiri/html_document.c +--- nokogiri.gemspec.orig 2014-12-01 16:40:24.000000000 +0000 ++++ nokogiri.gemspec 2014-12-01 16:40:56.000000000 +0000 +@@ -12,10 +12,10 @@ + s.date = "2011-07-01" + s.description = "Nokogiri (\u{e9}\u{8b}\u{b8}) is an HTML, XML, SAX, and Reader parser. Among Nokogiri's\nmany features is the ability to search documents via XPath or CSS3 selectors.\n\nXML is like violence - if it doesn\u{e2}\u{80}\u{99}t solve your problems, you are not using\nenough of it." + s.email = ["aaronp@rubyforge.org", "mike.dalessio@gmail.com"] +- s.executables = ["nokogiri"] ++ s.executables = ["nokogiri14"] + s.extensions = ["ext/nokogiri/extconf.rb"] + s.extra_rdoc_files = ["Manifest.txt", "README.ja.rdoc", "CHANGELOG.rdoc", "CHANGELOG.ja.rdoc", "README.rdoc", "ext/nokogiri/xml_sax_push_parser.c", "ext/nokogiri/xml_relax_ng.c", "ext/nokogiri/html_sax_parser_context.c", "ext/nokogiri/html_entity_lookup.c", "ext/nokogiri/xml_text.c", "ext/nokogiri/nokogiri.c", "ext/nokogiri/xml_element_decl.c", "ext/nokogiri/xml_encoding_handler.c", "ext/nokogiri/html_document.c", "ext/nokogiri/xslt_stylesheet.c", "ext/nokogiri/xml_attribute_decl.c", "ext/nokogiri/xml_io.c", "ext/nokogiri/xml_document_fragment.c", "ext/nokogiri/xml_namespace.c", "ext/nokogiri/xml_libxml2_hacks.c", "ext/nokogiri/xml_sax_parser_context.c", "ext/nokogiri/xml_comment.c", "ext/nokogiri/xml_sax_parser.c", "ext/nokogiri/html_element_description.c", "ext/nokogiri/xml_xpath_context.c", "ext/nokogiri/xml_syntax_error.c", "ext/nokogiri/xml_document.c", "ext/nokogiri/xml_entity_decl.c", "ext/nokogiri/xml_node.c", "ext/nokogiri/xml_node_set.c", "ext/nokogiri/xml_reader.c", "ext/nokogiri/xml_processing_instruction.c", "ext/nokogiri/xml_element_content.c", "ext/nokogiri/xml_dtd.c", "ext/nokogiri/xml_attr.c", "ext/nokogiri/xml_schema.c", "ext/nokogiri/xml_cdata.c", "ext/nokogiri/xml_entity_reference.c"] +- s.files = [".autotest", ".gemtest", "CHANGELOG.ja.rdoc", "CHANGELOG.rdoc", "Manifest.txt", "README.ja.rdoc", "README.rdoc", "Rakefile", "bin/nokogiri", "ext/nokogiri/depend", "ext/nokogiri/extconf.rb", "ext/nokogiri/html_document.c", "ext/nokogiri/html_document.h", "ext/nokogiri/html_element_description.c", "ext/nokogiri/html_element_description.h", "ext/nokogiri/html_entity_lookup.c", "ext/nokogiri/html_entity_lookup.h", "ext/nokogiri/html_sax_parser_context.c", "ext/nokogiri/html_sax_parser_context.h", "ext/nokogiri/nokogiri.c", "ext/nokogiri/nokogiri.h", "ext/nokogiri/xml_attr.c", "ext/nokogiri/xml_attr.h", "ext/nokogiri/xml_attribute_decl.c", "ext/nokogiri/xml_attribute_decl.h", "ext/nokogiri/xml_cdata.c", "ext/nokogiri/xml_cdata.h", "ext/nokogiri/xml_comment.c", "ext/nokogiri/xml_comment.h", "ext/nokogiri/xml_document.c", "ext/nokogiri/xml_document.h", "ext/nokogiri/xml_document_fragment.c", "ext/nokogiri/xml_document_fragment.h", "ext/nokogiri/xml_dtd.c", "ext/nokogiri/xml_dtd.h", "ext/nokogiri/xml_element_content.c", "ext/nokogiri/xml_element_content.h", "ext/nokogiri/xml_element_decl.c", "ext/nokogiri/xml_element_decl.h", "ext/nokogiri/xml_encoding_handler.c", "ext/nokogiri/xml_encoding_handler.h", "ext/nokogiri/xml_entity_decl.c", "ext/nokogiri/xml_entity_decl.h", "ext/nokogiri/xml_entity_reference.c", "ext/nokogiri/xml_entity_reference.h", "ext/nokogiri/xml_io.c", "ext/nokogiri/xml_io.h", "ext/nokogiri/xml_libxml2_hacks.c", "ext/nokogiri/xml_libxml2_hacks.h", "ext/nokogiri/xml_namespace.c", "ext/nokogiri/xml_namespace.h", "ext/nokogiri/xml_node.c", "ext/nokogiri/xml_node.h", "ext/nokogiri/xml_node_set.c", "ext/nokogiri/xml_node_set.h", "ext/nokogiri/xml_processing_instruction.c", "ext/nokogiri/xml_processing_instruction.h", "ext/nokogiri/xml_reader.c", "ext/nokogiri/xml_reader.h", "ext/nokogiri/xml_relax_ng.c", "ext/nokogiri/xml_relax_ng.h", "ext/nokogiri/xml_sax_parser.c", "ext/nokogiri/xml_sax_parser.h", "ext/nokogiri/xml_sax_parser_context.c", "ext/nokogiri/xml_sax_parser_context.h", "ext/nokogiri/xml_sax_push_parser.c", "ext/nokogiri/xml_sax_push_parser.h", "ext/nokogiri/xml_schema.c", "ext/nokogiri/xml_schema.h", "ext/nokogiri/xml_syntax_error.c", "ext/nokogiri/xml_syntax_error.h", "ext/nokogiri/xml_text.c", "ext/nokogiri/xml_text.h", "ext/nokogiri/xml_xpath_context.c", "ext/nokogiri/xml_xpath_context.h", "ext/nokogiri/xslt_stylesheet.c", "ext/nokogiri/xslt_stylesheet.h", "lib/nokogiri.rb", "lib/nokogiri/css.rb", "lib/nokogiri/css/node.rb", "lib/nokogiri/css/parser.rb", "lib/nokogiri/css/parser.y", "lib/nokogiri/css/parser_extras.rb", "lib/nokogiri/css/syntax_error.rb", "lib/nokogiri/css/tokenizer.rb", "lib/nokogiri/css/tokenizer.rex", "lib/nokogiri/css/xpath_visitor.rb", "lib/nokogiri/decorators/slop.rb", "lib/nokogiri/ffi/encoding_handler.rb", "lib/nokogiri/ffi/html/document.rb", "lib/nokogiri/ffi/html/element_description.rb", "lib/nokogiri/ffi/html/entity_lookup.rb", "lib/nokogiri/ffi/html/sax/parser_context.rb", "lib/nokogiri/ffi/io_callbacks.rb", "lib/nokogiri/ffi/libxml.rb", "lib/nokogiri/ffi/structs/common_node.rb", "lib/nokogiri/ffi/structs/html_elem_desc.rb", "lib/nokogiri/ffi/structs/html_entity_desc.rb", "lib/nokogiri/ffi/structs/xml_alloc.rb", "lib/nokogiri/ffi/structs/xml_attr.rb", "lib/nokogiri/ffi/structs/xml_attribute.rb", "lib/nokogiri/ffi/structs/xml_buffer.rb", "lib/nokogiri/ffi/structs/xml_char_encoding_handler.rb", "lib/nokogiri/ffi/structs/xml_document.rb", "lib/nokogiri/ffi/structs/xml_dtd.rb", "lib/nokogiri/ffi/structs/xml_element.rb", "lib/nokogiri/ffi/structs/xml_element_content.rb", "lib/nokogiri/ffi/structs/xml_entity.rb", "lib/nokogiri/ffi/structs/xml_enumeration.rb", "lib/nokogiri/ffi/structs/xml_node.rb", "lib/nokogiri/ffi/structs/xml_node_set.rb", "lib/nokogiri/ffi/structs/xml_notation.rb", "lib/nokogiri/ffi/structs/xml_ns.rb", "lib/nokogiri/ffi/structs/xml_parser_context.rb", "lib/nokogiri/ffi/structs/xml_parser_input.rb", "lib/nokogiri/ffi/structs/xml_relax_ng.rb", "lib/nokogiri/ffi/structs/xml_sax_handler.rb", "lib/nokogiri/ffi/structs/xml_sax_push_parser_context.rb", "lib/nokogiri/ffi/structs/xml_schema.rb", "lib/nokogiri/ffi/structs/xml_syntax_error.rb", "lib/nokogiri/ffi/structs/xml_text_reader.rb", "lib/nokogiri/ffi/structs/xml_xpath_context.rb", "lib/nokogiri/ffi/structs/xml_xpath_object.rb", "lib/nokogiri/ffi/structs/xml_xpath_parser_context.rb", "lib/nokogiri/ffi/structs/xslt_stylesheet.rb", "lib/nokogiri/ffi/weak_bucket.rb", "lib/nokogiri/ffi/xml/attr.rb", "lib/nokogiri/ffi/xml/attribute_decl.rb", "lib/nokogiri/ffi/xml/cdata.rb", "lib/nokogiri/ffi/xml/comment.rb", "lib/nokogiri/ffi/xml/document.rb", "lib/nokogiri/ffi/xml/document_fragment.rb", "lib/nokogiri/ffi/xml/dtd.rb", "lib/nokogiri/ffi/xml/element_content.rb", "lib/nokogiri/ffi/xml/element_decl.rb", "lib/nokogiri/ffi/xml/entity_decl.rb", "lib/nokogiri/ffi/xml/entity_reference.rb", "lib/nokogiri/ffi/xml/namespace.rb", "lib/nokogiri/ffi/xml/node.rb", "lib/nokogiri/ffi/xml/node_set.rb", "lib/nokogiri/ffi/xml/processing_instruction.rb", "lib/nokogiri/ffi/xml/reader.rb", "lib/nokogiri/ffi/xml/relax_ng.rb", "lib/nokogiri/ffi/xml/sax/parser.rb", "lib/nokogiri/ffi/xml/sax/parser_context.rb", "lib/nokogiri/ffi/xml/sax/push_parser.rb", "lib/nokogiri/ffi/xml/schema.rb", "lib/nokogiri/ffi/xml/syntax_error.rb", "lib/nokogiri/ffi/xml/text.rb", "lib/nokogiri/ffi/xml/xpath.rb", "lib/nokogiri/ffi/xml/xpath_context.rb", "lib/nokogiri/ffi/xslt/stylesheet.rb", "lib/nokogiri/html.rb", "lib/nokogiri/html/builder.rb", "lib/nokogiri/html/document.rb", "lib/nokogiri/html/document_fragment.rb", "lib/nokogiri/html/element_description.rb", "lib/nokogiri/html/entity_lookup.rb", "lib/nokogiri/html/sax/parser.rb", "lib/nokogiri/html/sax/parser_context.rb", "lib/nokogiri/syntax_error.rb", "lib/nokogiri/version.rb", "lib/nokogiri/version_warning.rb", "lib/nokogiri/xml.rb", "lib/nokogiri/xml/attr.rb", "lib/nokogiri/xml/attribute_decl.rb", "lib/nokogiri/xml/builder.rb", "lib/nokogiri/xml/cdata.rb", "lib/nokogiri/xml/character_data.rb", "lib/nokogiri/xml/document.rb", "lib/nokogiri/xml/document_fragment.rb", "lib/nokogiri/xml/dtd.rb", "lib/nokogiri/xml/element_content.rb", "lib/nokogiri/xml/element_decl.rb", "lib/nokogiri/xml/entity_decl.rb", "lib/nokogiri/xml/namespace.rb", "lib/nokogiri/xml/node.rb", "lib/nokogiri/xml/node/save_options.rb", "lib/nokogiri/xml/node_set.rb", "lib/nokogiri/xml/notation.rb", "lib/nokogiri/xml/parse_options.rb", "lib/nokogiri/xml/pp.rb", "lib/nokogiri/xml/pp/character_data.rb", "lib/nokogiri/xml/pp/node.rb", "lib/nokogiri/xml/processing_instruction.rb", "lib/nokogiri/xml/reader.rb", "lib/nokogiri/xml/relax_ng.rb", "lib/nokogiri/xml/sax.rb", "lib/nokogiri/xml/sax/document.rb", "lib/nokogiri/xml/sax/parser.rb", "lib/nokogiri/xml/sax/parser_context.rb", "lib/nokogiri/xml/sax/push_parser.rb", "lib/nokogiri/xml/schema.rb", "lib/nokogiri/xml/syntax_error.rb", "lib/nokogiri/xml/text.rb", "lib/nokogiri/xml/xpath.rb", "lib/nokogiri/xml/xpath/syntax_error.rb", "lib/nokogiri/xml/xpath_context.rb", "lib/nokogiri/xslt.rb", "lib/nokogiri/xslt/stylesheet.rb", "lib/xsd/xmlparser/nokogiri.rb", "tasks/cross_compile.rb", "tasks/test.rb", "test/css/test_nthiness.rb", "test/css/test_parser.rb", "test/css/test_tokenizer.rb", "test/css/test_xpath_visitor.rb", "test/decorators/test_slop.rb", "test/ffi/test_document.rb", "test/files/2ch.html", "test/files/address_book.rlx", "test/files/address_book.xml", "test/files/bar/bar.xsd", "test/files/dont_hurt_em_why.xml", "test/files/encoding.html", "test/files/encoding.xhtml", "test/files/exslt.xml", "test/files/exslt.xslt", "test/files/foo/foo.xsd", "test/files/po.xml", "test/files/po.xsd", "test/files/shift_jis.html", "test/files/shift_jis.xml", "test/files/snuggles.xml", "test/files/staff.dtd", "test/files/staff.xml", "test/files/staff.xslt", "test/files/tlm.html", "test/files/valid_bar.xml", "test/helper.rb", "test/html/sax/test_parser.rb", "test/html/sax/test_parser_context.rb", "test/html/test_builder.rb", "test/html/test_document.rb", "test/html/test_document_encoding.rb", "test/html/test_document_fragment.rb", "test/html/test_element_description.rb", "test/html/test_named_characters.rb", "test/html/test_node.rb", "test/html/test_node_encoding.rb", "test/test_convert_xpath.rb", "test/test_css_cache.rb", "test/test_encoding_handler.rb", "test/test_memory_leak.rb", "test/test_nokogiri.rb", "test/test_reader.rb", "test/test_soap4r_sax.rb", "test/test_xslt_transforms.rb", "test/xml/node/test_save_options.rb", "test/xml/node/test_subclass.rb", "test/xml/sax/test_parser.rb", "test/xml/sax/test_parser_context.rb", "test/xml/sax/test_push_parser.rb", "test/xml/test_attr.rb", "test/xml/test_attribute_decl.rb", "test/xml/test_builder.rb", "test/xml/test_cdata.rb", "test/xml/test_comment.rb", "test/xml/test_document.rb", "test/xml/test_document_encoding.rb", "test/xml/test_document_fragment.rb", "test/xml/test_dtd.rb", "test/xml/test_dtd_encoding.rb", "test/xml/test_element_content.rb", "test/xml/test_element_decl.rb", "test/xml/test_entity_decl.rb", "test/xml/test_entity_reference.rb", "test/xml/test_namespace.rb", "test/xml/test_node.rb", "test/xml/test_node_attributes.rb", "test/xml/test_node_encoding.rb", "test/xml/test_node_reparenting.rb", "test/xml/test_node_set.rb", "test/xml/test_parse_options.rb", "test/xml/test_processing_instruction.rb", "test/xml/test_reader_encoding.rb", "test/xml/test_relax_ng.rb", "test/xml/test_schema.rb", "test/xml/test_syntax_error.rb", "test/xml/test_text.rb", "test/xml/test_unparented_node.rb", "test/xml/test_xpath.rb", "test/xslt/test_custom_functions.rb"] ++ s.files = [".autotest", ".gemtest", "CHANGELOG.ja.rdoc", "CHANGELOG.rdoc", "Manifest.txt", "README.ja.rdoc", "README.rdoc", "Rakefile", "bin/nokogiri14", "ext/nokogiri/depend", "ext/nokogiri/extconf.rb", "ext/nokogiri/html_document.c", "ext/nokogiri/html_document.h", "ext/nokogiri/html_element_description.c", "ext/nokogiri/html_element_description.h", "ext/nokogiri/html_entity_lookup.c", "ext/nokogiri/html_entity_lookup.h", "ext/nokogiri/html_sax_parser_context.c", "ext/nokogiri/html_sax_parser_context.h", "ext/nokogiri/nokogiri.c", "ext/nokogiri/nokogiri.h", "ext/nokogiri/xml_attr.c", "ext/nokogiri/xml_attr.h", "ext/nokogiri/xml_attribute_decl.c", "ext/nokogiri/xml_attribute_decl.h", "ext/nokogiri/xml_cdata.c", "ext/nokogiri/xml_cdata.h", "ext/nokogiri/xml_comment.c", "ext/nokogiri/xml_comment.h", "ext/nokogiri/xml_document.c", "ext/nokogiri/xml_document.h", "ext/nokogiri/xml_document_fragment.c", "ext/nokogiri/xml_document_fragment.h", "ext/nokogiri/xml_dtd.c", "ext/nokogiri/xml_dtd.h", "ext/nokogiri/xml_element_content.c", "ext/nokogiri/xml_element_content.h", "ext/nokogiri/xml_element_decl.c", "ext/nokogiri/xml_element_decl.h", "ext/nokogiri/xml_encoding_handler.c", "ext/nokogiri/xml_encoding_handler.h", "ext/nokogiri/xml_entity_decl.c", "ext/nokogiri/xml_entity_decl.h", "ext/nokogiri/xml_entity_reference.c", "ext/nokogiri/xml_entity_reference.h", "ext/nokogiri/xml_io.c", "ext/nokogiri/xml_io.h", "ext/nokogiri/xml_libxml2_hacks.c", "ext/nokogiri/xml_libxml2_hacks.h", "ext/nokogiri/xml_namespace.c", "ext/nokogiri/xml_namespace.h", "ext/nokogiri/xml_node.c", "ext/nokogiri/xml_node.h", "ext/nokogiri/xml_node_set.c", "ext/nokogiri/xml_node_set.h", "ext/nokogiri/xml_processing_instruction.c", "ext/nokogiri/xml_processing_instruction.h", "ext/nokogiri/xml_reader.c", "ext/nokogiri/xml_reader.h", "ext/nokogiri/xml_relax_ng.c", "ext/nokogiri/xml_relax_ng.h", "ext/nokogiri/xml_sax_parser.c", "ext/nokogiri/xml_sax_parser.h", "ext/nokogiri/xml_sax_parser_context.c", "ext/nokogiri/xml_sax_parser_context.h", "ext/nokogiri/xml_sax_push_parser.c", "ext/nokogiri/xml_sax_push_parser.h", "ext/nokogiri/xml_schema.c", "ext/nokogiri/xml_schema.h", "ext/nokogiri/xml_syntax_error.c", "ext/nokogiri/xml_syntax_error.h", "ext/nokogiri/xml_text.c", "ext/nokogiri/xml_text.h", "ext/nokogiri/xml_xpath_context.c", "ext/nokogiri/xml_xpath_context.h", "ext/nokogiri/xslt_stylesheet.c", "ext/nokogiri/xslt_stylesheet.h", "lib/nokogiri.rb", "lib/nokogiri/css.rb", "lib/nokogiri/css/node.rb", "lib/nokogiri/css/parser.rb", "lib/nokogiri/css/parser.y", "lib/nokogiri/css/parser_extras.rb", "lib/nokogiri/css/syntax_error.rb", "lib/nokogiri/css/tokenizer.rb", "lib/nokogiri/css/tokenizer.rex", "lib/nokogiri/css/xpath_visitor.rb", "lib/nokogiri/decorators/slop.rb", "lib/nokogiri/ffi/encoding_handler.rb", "lib/nokogiri/ffi/html/document.rb", "lib/nokogiri/ffi/html/element_description.rb", "lib/nokogiri/ffi/html/entity_lookup.rb", "lib/nokogiri/ffi/html/sax/parser_context.rb", "lib/nokogiri/ffi/io_callbacks.rb", "lib/nokogiri/ffi/libxml.rb", "lib/nokogiri/ffi/structs/common_node.rb", "lib/nokogiri/ffi/structs/html_elem_desc.rb", "lib/nokogiri/ffi/structs/html_entity_desc.rb", "lib/nokogiri/ffi/structs/xml_alloc.rb", "lib/nokogiri/ffi/structs/xml_attr.rb", "lib/nokogiri/ffi/structs/xml_attribute.rb", "lib/nokogiri/ffi/structs/xml_buffer.rb", "lib/nokogiri/ffi/structs/xml_char_encoding_handler.rb", "lib/nokogiri/ffi/structs/xml_document.rb", "lib/nokogiri/ffi/structs/xml_dtd.rb", "lib/nokogiri/ffi/structs/xml_element.rb", "lib/nokogiri/ffi/structs/xml_element_content.rb", "lib/nokogiri/ffi/structs/xml_entity.rb", "lib/nokogiri/ffi/structs/xml_enumeration.rb", "lib/nokogiri/ffi/structs/xml_node.rb", "lib/nokogiri/ffi/structs/xml_node_set.rb", "lib/nokogiri/ffi/structs/xml_notation.rb", "lib/nokogiri/ffi/structs/xml_ns.rb", "lib/nokogiri/ffi/structs/xml_parser_context.rb", "lib/nokogiri/ffi/structs/xml_parser_input.rb", "lib/nokogiri/ffi/structs/xml_relax_ng.rb", "lib/nokogiri/ffi/structs/xml_sax_handler.rb", "lib/nokogiri/ffi/structs/xml_sax_push_parser_context.rb", "lib/nokogiri/ffi/structs/xml_schema.rb", "lib/nokogiri/ffi/structs/xml_syntax_error.rb", "lib/nokogiri/ffi/structs/xml_text_reader.rb", "lib/nokogiri/ffi/structs/xml_xpath_context.rb", "lib/nokogiri/ffi/structs/xml_xpath_object.rb", "lib/nokogiri/ffi/structs/xml_xpath_parser_context.rb", "lib/nokogiri/ffi/structs/xslt_stylesheet.rb", "lib/nokogiri/ffi/weak_bucket.rb", "lib/nokogiri/ffi/xml/attr.rb", "lib/nokogiri/ffi/xml/attribute_decl.rb", "lib/nokogiri/ffi/xml/cdata.rb", "lib/nokogiri/ffi/xml/comment.rb", "lib/nokogiri/ffi/xml/document.rb", "lib/nokogiri/ffi/xml/document_fragment.rb", "lib/nokogiri/ffi/xml/dtd.rb", "lib/nokogiri/ffi/xml/element_content.rb", "lib/nokogiri/ffi/xml/element_decl.rb", "lib/nokogiri/ffi/xml/entity_decl.rb", "lib/nokogiri/ffi/xml/entity_reference.rb", "lib/nokogiri/ffi/xml/namespace.rb", "lib/nokogiri/ffi/xml/node.rb", "lib/nokogiri/ffi/xml/node_set.rb", "lib/nokogiri/ffi/xml/processing_instruction.rb", "lib/nokogiri/ffi/xml/reader.rb", "lib/nokogiri/ffi/xml/relax_ng.rb", "lib/nokogiri/ffi/xml/sax/parser.rb", "lib/nokogiri/ffi/xml/sax/parser_context.rb", "lib/nokogiri/ffi/xml/sax/push_parser.rb", "lib/nokogiri/ffi/xml/schema.rb", "lib/nokogiri/ffi/xml/syntax_error.rb", "lib/nokogiri/ffi/xml/text.rb", "lib/nokogiri/ffi/xml/xpath.rb", "lib/nokogiri/ffi/xml/xpath_context.rb", "lib/nokogiri/ffi/xslt/stylesheet.rb", "lib/nokogiri/html.rb", "lib/nokogiri/html/builder.rb", "lib/nokogiri/html/document.rb", "lib/nokogiri/html/document_fragment.rb", "lib/nokogiri/html/element_description.rb", "lib/nokogiri/html/entity_lookup.rb", "lib/nokogiri/html/sax/parser.rb", "lib/nokogiri/html/sax/parser_context.rb", "lib/nokogiri/syntax_error.rb", "lib/nokogiri/version.rb", "lib/nokogiri/version_warning.rb", "lib/nokogiri/xml.rb", "lib/nokogiri/xml/attr.rb", "lib/nokogiri/xml/attribute_decl.rb", "lib/nokogiri/xml/builder.rb", "lib/nokogiri/xml/cdata.rb", "lib/nokogiri/xml/character_data.rb", "lib/nokogiri/xml/document.rb", "lib/nokogiri/xml/document_fragment.rb", "lib/nokogiri/xml/dtd.rb", "lib/nokogiri/xml/element_content.rb", "lib/nokogiri/xml/element_decl.rb", "lib/nokogiri/xml/entity_decl.rb", "lib/nokogiri/xml/namespace.rb", "lib/nokogiri/xml/node.rb", "lib/nokogiri/xml/node/save_options.rb", "lib/nokogiri/xml/node_set.rb", "lib/nokogiri/xml/notation.rb", "lib/nokogiri/xml/parse_options.rb", "lib/nokogiri/xml/pp.rb", "lib/nokogiri/xml/pp/character_data.rb", "lib/nokogiri/xml/pp/node.rb", "lib/nokogiri/xml/processing_instruction.rb", "lib/nokogiri/xml/reader.rb", "lib/nokogiri/xml/relax_ng.rb", "lib/nokogiri/xml/sax.rb", "lib/nokogiri/xml/sax/document.rb", "lib/nokogiri/xml/sax/parser.rb", "lib/nokogiri/xml/sax/parser_context.rb", "lib/nokogiri/xml/sax/push_parser.rb", "lib/nokogiri/xml/schema.rb", "lib/nokogiri/xml/syntax_error.rb", "lib/nokogiri/xml/text.rb", "lib/nokogiri/xml/xpath.rb", "lib/nokogiri/xml/xpath/syntax_error.rb", "lib/nokogiri/xml/xpath_context.rb", "lib/nokogiri/xslt.rb", "lib/nokogiri/xslt/stylesheet.rb", "lib/xsd/xmlparser/nokogiri.rb", "tasks/cross_compile.rb", "tasks/test.rb", "test/css/test_nthiness.rb", "test/css/test_parser.rb", "test/css/test_tokenizer.rb", "test/css/test_xpath_visitor.rb", "test/decorators/test_slop.rb", "test/ffi/test_document.rb", "test/files/2ch.html", "test/files/address_book.rlx", "test/files/address_book.xml", "test/files/bar/bar.xsd", "test/files/dont_hurt_em_why.xml", "test/files/encoding.html", "test/files/encoding.xhtml", "test/files/exslt.xml", "test/files/exslt.xslt", "test/files/foo/foo.xsd", "test/files/po.xml", "test/files/po.xsd", "test/files/shift_jis.html", "test/files/shift_jis.xml", "test/files/snuggles.xml", "test/files/staff.dtd", "test/files/staff.xml", "test/files/staff.xslt", "test/files/tlm.html", "test/files/valid_bar.xml", "test/helper.rb", "test/html/sax/test_parser.rb", "test/html/sax/test_parser_context.rb", "test/html/test_builder.rb", "test/html/test_document.rb", "test/html/test_document_encoding.rb", "test/html/test_document_fragment.rb", "test/html/test_element_description.rb", "test/html/test_named_characters.rb", "test/html/test_node.rb", "test/html/test_node_encoding.rb", "test/test_convert_xpath.rb", "test/test_css_cache.rb", "test/test_encoding_handler.rb", "test/test_memory_leak.rb", "test/test_nokogiri.rb", "test/test_reader.rb", "test/test_soap4r_sax.rb", "test/test_xslt_transforms.rb", "test/xml/node/test_save_options.rb", "test/xml/node/test_subclass.rb", "test/xml/sax/test_parser.rb", "test/xml/sax/test_parser_context.rb", "test/xml/sax/test_push_parser.rb", "test/xml/test_attr.rb", "test/xml/test_attribute_decl.rb", "test/xml/test_builder.rb", "test/xml/test_cdata.rb", "test/xml/test_comment.rb", "test/xml/test_document.rb", "test/xml/test_document_encoding.rb", "test/xml/test_document_fragment.rb", "test/xml/test_dtd.rb", "test/xml/test_dtd_encoding.rb", "test/xml/test_element_content.rb", "test/xml/test_element_decl.rb", "test/xml/test_entity_decl.rb", "test/xml/test_entity_reference.rb", "test/xml/test_namespace.rb", "test/xml/test_node.rb", "test/xml/test_node_attributes.rb", "test/xml/test_node_encoding.rb", "test/xml/test_node_reparenting.rb", "test/xml/test_node_set.rb", "test/xml/test_parse_options.rb", "test/xml/test_processing_instruction.rb", "test/xml/test_reader_encoding.rb", "test/xml/test_relax_ng.rb", "test/xml/test_schema.rb", "test/xml/test_syntax_error.rb", "test/xml/test_text.rb", "test/xml/test_unparented_node.rb", "test/xml/test_xpath.rb", "test/xslt/test_custom_functions.rb"] + s.homepage = "http://nokogiri.org" + s.rdoc_options = ["--main", "README.rdoc"] + s.rubyforge_project = "nokogiri" Index: textproc/rubygem-sass-rails/files/patch-gemspec =================================================================== --- textproc/rubygem-sass-rails/files/patch-gemspec (revision 379056) +++ textproc/rubygem-sass-rails/files/patch-gemspec (working copy) @@ -1,11 +1,11 @@ ---- sass-rails-3.2.6.gemspec.orig 2014-02-19 03:55:59.669617961 +0000 -+++ sass-rails-3.2.6.gemspec 2014-02-19 03:55:59.699618518 +0000 -@@ -43,7 +43,7 @@ - name: tilt - requirement: !ruby/object:Gem::Requirement - requirements: -- - - "~>" -+ - - ">=" - - !ruby/object:Gem::Version - version: '1.3' - type: :runtime +--- sass-rails.gemspec.orig 2014-12-01 21:52:39.000000000 +0000 ++++ sass-rails.gemspec 2014-12-01 21:53:01.000000000 +0000 +@@ -24,7 +24,7 @@ + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then + s.add_runtime_dependency(%q, [">= 3.1.10"]) + s.add_runtime_dependency(%q, ["~> 3.2.0"]) +- s.add_runtime_dependency(%q, ["~> 1.3"]) ++ s.add_runtime_dependency(%q, [">= 1.3"]) + else + s.add_dependency(%q, [">= 3.1.10"]) + s.add_dependency(%q, ["~> 3.2.0"]) Index: textproc/rubygem-sass32/files/patch-gemspec =================================================================== --- textproc/rubygem-sass32/files/patch-gemspec (revision 379056) +++ textproc/rubygem-sass32/files/patch-gemspec (working copy) @@ -1,13 +1,12 @@ ---- ./sass-3.2.19.gemspec.orig 2014-04-03 02:37:49.625126621 +0000 -+++ ./sass-3.2.19.gemspec 2014-04-03 02:37:58.207126119 +0000 -@@ -46,10 +46,6 @@ - It's translated to well-formatted, standard CSS using the - command line tool or a web-framework plugin. - email: sass-lang@googlegroups.com --executables: --- sass --- sass-convert --- scss - extensions: [] - extra_rdoc_files: [] - files: +--- sass.gemspec.orig 2014-12-01 16:47:23.000000000 +0000 ++++ sass.gemspec 2014-12-01 16:47:42.000000000 +0000 +@@ -11,8 +11,7 @@ + s.date = "2014-04-05" + s.description = " Sass makes CSS fun again. Sass is an extension of CSS3, adding\n nested rules, variables, mixins, selector inheritance, and more.\n It's translated to well-formatted, standard CSS using the\n command line tool or a web-framework plugin.\n" + s.email = "sass-lang@googlegroups.com" +- s.executables = ["sass", "sass-convert", "scss"] +- s.files = [".yardopts", "CONTRIBUTING", "MIT-LICENSE", "README.md", "REVISION", "Rakefile", "VERSION", "VERSION_DATE", "VERSION_NAME", "bin/sass", "bin/sass-convert", "bin/scss", "extra/update_watch.rb", "init.rb", "lib/sass.rb", "lib/sass/cache_stores.rb", "lib/sass/cache_stores/base.rb", "lib/sass/cache_stores/chain.rb", "lib/sass/cache_stores/filesystem.rb", "lib/sass/cache_stores/memory.rb", "lib/sass/cache_stores/null.rb", "lib/sass/callbacks.rb", "lib/sass/css.rb", "lib/sass/engine.rb", "lib/sass/environment.rb", "lib/sass/error.rb", "lib/sass/exec.rb", "lib/sass/importers.rb", "lib/sass/importers/base.rb", "lib/sass/importers/filesystem.rb", "lib/sass/logger.rb", "lib/sass/logger/base.rb", "lib/sass/logger/log_level.rb", "lib/sass/media.rb", "lib/sass/plugin.rb", "lib/sass/plugin/compiler.rb", "lib/sass/plugin/configuration.rb", "lib/sass/plugin/generic.rb", "lib/sass/plugin/merb.rb", "lib/sass/plugin/rack.rb", "lib/sass/plugin/rails.rb", "lib/sass/plugin/staleness_checker.rb", "lib/sass/railtie.rb", "lib/sass/repl.rb", "lib/sass/root.rb", "lib/sass/script.rb", "lib/sass/script/arg_list.rb", "lib/sass/script/bool.rb", "lib/sass/script/color.rb", "lib/sass/script/css_lexer.rb", "lib/sass/script/css_parser.rb", "lib/sass/script/funcall.rb", "lib/sass/script/functions.rb", "lib/sass/script/interpolation.rb", "lib/sass/script/lexer.rb", "lib/sass/script/list.rb", "lib/sass/script/literal.rb", "lib/sass/script/node.rb", "lib/sass/script/null.rb", "lib/sass/script/number.rb", "lib/sass/script/operation.rb", "lib/sass/script/parser.rb", "lib/sass/script/string.rb", "lib/sass/script/string_interpolation.rb", "lib/sass/script/unary_operation.rb", "lib/sass/script/variable.rb", "lib/sass/scss.rb", "lib/sass/scss/css_parser.rb", "lib/sass/scss/parser.rb", "lib/sass/scss/rx.rb", "lib/sass/scss/script_lexer.rb", "lib/sass/scss/script_parser.rb", "lib/sass/scss/static_parser.rb", "lib/sass/selector.rb", "lib/sass/selector/abstract_sequence.rb", "lib/sass/selector/comma_sequence.rb", "lib/sass/selector/sequence.rb", "lib/sass/selector/simple.rb", "lib/sass/selector/simple_sequence.rb", "lib/sass/shared.rb", "lib/sass/supports.rb", "lib/sass/tree/charset_node.rb", "lib/sass/tree/comment_node.rb", "lib/sass/tree/content_node.rb", "lib/sass/tree/css_import_node.rb", "lib/sass/tree/debug_node.rb", "lib/sass/tree/directive_node.rb", "lib/sass/tree/each_node.rb", "lib/sass/tree/extend_node.rb", "lib/sass/tree/for_node.rb", "lib/sass/tree/function_node.rb", "lib/sass/tree/if_node.rb", "lib/sass/tree/import_node.rb", "lib/sass/tree/media_node.rb", "lib/sass/tree/mixin_def_node.rb", "lib/sass/tree/mixin_node.rb", "lib/sass/tree/node.rb", "lib/sass/tree/prop_node.rb", "lib/sass/tree/return_node.rb", "lib/sass/tree/root_node.rb", "lib/sass/tree/rule_node.rb", "lib/sass/tree/supports_node.rb", "lib/sass/tree/trace_node.rb", "lib/sass/tree/variable_node.rb", "lib/sass/tree/visitors/base.rb", "lib/sass/tree/visitors/check_nesting.rb", "lib/sass/tree/visitors/convert.rb", "lib/sass/tree/visitors/cssize.rb", "lib/sass/tree/visitors/deep_copy.rb", "lib/sass/tree/visitors/extend.rb", "lib/sass/tree/visitors/perform.rb", "lib/sass/tree/visitors/set_options.rb", "lib/sass/tree/visitors/to_css.rb", "lib/sass/tree/warn_node.rb", "lib/sass/tree/while_node.rb", "lib/sass/util.rb", "lib/sass/util/multibyte_string_scanner.rb", "lib/sass/util/subset_map.rb", "lib/sass/util/test.rb", "lib/sass/version.rb", "rails/init.rb", "test/Gemfile", "test/Gemfile.lock", "test/sass/cache_test.rb", "test/sass/callbacks_test.rb", "test/sass/conversion_test.rb", "test/sass/css2sass_test.rb", "test/sass/data/hsl-rgb.txt", "test/sass/engine_test.rb", "test/sass/exec_test.rb", "test/sass/extend_test.rb", "test/sass/fixtures/test_staleness_check_across_importers.css", "test/sass/fixtures/test_staleness_check_across_importers.scss", "test/sass/functions_test.rb", "test/sass/importer_test.rb", "test/sass/logger_test.rb", "test/sass/mock_importer.rb", "test/sass/more_results/more1.css", "test/sass/more_results/more1_with_line_comments.css", "test/sass/more_results/more_import.css", "test/sass/more_templates/_more_partial.sass", "test/sass/more_templates/more1.sass", "test/sass/more_templates/more_import.sass", "test/sass/plugin_test.rb", "test/sass/results/alt.css", "test/sass/results/basic.css", "test/sass/results/cached_import_option.css", "test/sass/results/compact.css", "test/sass/results/complex.css", "test/sass/results/compressed.css", "test/sass/results/expanded.css", "test/sass/results/filename_fn.css", "test/sass/results/if.css", "test/sass/results/import.css", "test/sass/results/import_charset.css", "test/sass/results/import_charset_1_8.css", "test/sass/results/import_charset_ibm866.css", "test/sass/results/import_content.css", "test/sass/results/line_numbers.css", "test/sass/results/mixins.css", "test/sass/results/multiline.css", "test/sass/results/nested.css", "test/sass/results/options.css", "test/sass/results/parent_ref.css", "test/sass/results/script.css", "test/sass/results/scss_import.css", "test/sass/results/scss_importee.css", "test/sass/results/subdir/nested_subdir/nested_subdir.css", "test/sass/results/subdir/subdir.css", "test/sass/results/units.css", "test/sass/results/warn.css", "test/sass/results/warn_imported.css", "test/sass/script_conversion_test.rb", "test/sass/script_test.rb", "test/sass/scss/css_test.rb", "test/sass/scss/rx_test.rb", "test/sass/scss/scss_test.rb", "test/sass/scss/test_helper.rb", "test/sass/templates/_cached_import_option_partial.scss", "test/sass/templates/_double_import_loop2.sass", "test/sass/templates/_filename_fn_import.scss", "test/sass/templates/_imported_charset_ibm866.sass", "test/sass/templates/_imported_charset_utf8.sass", "test/sass/templates/_imported_content.sass", "test/sass/templates/_partial.sass", "test/sass/templates/_same_name_different_partiality.scss", "test/sass/templates/alt.sass", "test/sass/templates/basic.sass", "test/sass/templates/bork1.sass", "test/sass/templates/bork2.sass", "test/sass/templates/bork3.sass", "test/sass/templates/bork4.sass", "test/sass/templates/bork5.sass", "test/sass/templates/cached_import_option.scss", "test/sass/templates/compact.sass", "test/sass/templates/complex.sass", "test/sass/templates/compressed.sass", "test/sass/templates/double_import_loop1.sass", "test/sass/templates/expanded.sass", "test/sass/templates/filename_fn.scss", "test/sass/templates/if.sass", "test/sass/templates/import.sass", "test/sass/templates/import_charset.sass", "test/sass/templates/import_charset_1_8.sass", "test/sass/templates/import_charset_ibm866.sass", "test/sass/templates/import_content.sass", "test/sass/templates/importee.less", "test/sass/templates/importee.sass", "test/sass/templates/line_numbers.sass", "test/sass/templates/mixin_bork.sass", "test/sass/templates/mixins.sass", "test/sass/templates/multiline.sass", "test/sass/templates/nested.sass", "test/sass/templates/nested_bork1.sass", "test/sass/templates/nested_bork2.sass", "test/sass/templates/nested_bork3.sass", "test/sass/templates/nested_bork4.sass", "test/sass/templates/nested_import.sass", "test/sass/templates/nested_mixin_bork.sass", "test/sass/templates/options.sass", "test/sass/templates/parent_ref.sass", "test/sass/templates/same_name_different_ext.sass", "test/sass/templates/same_name_different_ext.scss", "test/sass/templates/same_name_different_partiality.scss", "test/sass/templates/script.sass", "test/sass/templates/scss_import.scss", "test/sass/templates/scss_importee.scss", "test/sass/templates/single_import_loop.sass", "test/sass/templates/subdir/import_up1.scss", "test/sass/templates/subdir/import_up2.scss", "test/sass/templates/subdir/nested_subdir/_nested_partial.sass", "test/sass/templates/subdir/nested_subdir/nested_subdir.sass", "test/sass/templates/subdir/subdir.sass", "test/sass/templates/units.sass", "test/sass/templates/warn.sass", "test/sass/templates/warn_imported.sass", "test/sass/test_helper.rb", "test/sass/util/multibyte_string_scanner_test.rb", "test/sass/util/subset_map_test.rb", "test/sass/util_test.rb", "test/test_helper.rb", "vendor/listen/CHANGELOG.md", "vendor/listen/CONTRIBUTING.md", "vendor/listen/Gemfile", "vendor/listen/Guardfile", "vendor/listen/LICENSE", "vendor/listen/README.md", "vendor/listen/Rakefile", "vendor/listen/Vagrantfile", "vendor/listen/lib/listen.rb", "vendor/listen/lib/listen/adapter.rb", "vendor/listen/lib/listen/adapters/bsd.rb", "vendor/listen/lib/listen/adapters/darwin.rb", "vendor/listen/lib/listen/adapters/linux.rb", "vendor/listen/lib/listen/adapters/polling.rb", "vendor/listen/lib/listen/adapters/windows.rb", "vendor/listen/lib/listen/dependency_manager.rb", "vendor/listen/lib/listen/directory_record.rb", "vendor/listen/lib/listen/listener.rb", "vendor/listen/lib/listen/multi_listener.rb", "vendor/listen/lib/listen/turnstile.rb", "vendor/listen/lib/listen/version.rb", "vendor/listen/listen.gemspec", "vendor/listen/spec/listen/adapter_spec.rb", "vendor/listen/spec/listen/adapters/bsd_spec.rb", "vendor/listen/spec/listen/adapters/darwin_spec.rb", "vendor/listen/spec/listen/adapters/linux_spec.rb", "vendor/listen/spec/listen/adapters/polling_spec.rb", "vendor/listen/spec/listen/adapters/windows_spec.rb", "vendor/listen/spec/listen/dependency_manager_spec.rb", "vendor/listen/spec/listen/directory_record_spec.rb", "vendor/listen/spec/listen/listener_spec.rb", "vendor/listen/spec/listen/multi_listener_spec.rb", "vendor/listen/spec/listen/turnstile_spec.rb", "vendor/listen/spec/listen_spec.rb", "vendor/listen/spec/spec_helper.rb", "vendor/listen/spec/support/adapter_helper.rb", "vendor/listen/spec/support/directory_record_helper.rb", "vendor/listen/spec/support/fixtures_helper.rb", "vendor/listen/spec/support/listeners_helper.rb", "vendor/listen/spec/support/platform_helper.rb"] ++ s.files = [".yardopts", "CONTRIBUTING", "MIT-LICENSE", "README.md", "REVISION", "Rakefile", "VERSION", "VERSION_DATE", "VERSION_NAME", "extra/update_watch.rb", "init.rb", "lib/sass.rb", "lib/sass/cache_stores.rb", "lib/sass/cache_stores/base.rb", "lib/sass/cache_stores/chain.rb", "lib/sass/cache_stores/filesystem.rb", "lib/sass/cache_stores/memory.rb", "lib/sass/cache_stores/null.rb", "lib/sass/callbacks.rb", "lib/sass/css.rb", "lib/sass/engine.rb", "lib/sass/environment.rb", "lib/sass/error.rb", "lib/sass/exec.rb", "lib/sass/importers.rb", "lib/sass/importers/base.rb", "lib/sass/importers/filesystem.rb", "lib/sass/logger.rb", "lib/sass/logger/base.rb", "lib/sass/logger/log_level.rb", "lib/sass/media.rb", "lib/sass/plugin.rb", "lib/sass/plugin/compiler.rb", "lib/sass/plugin/configuration.rb", "lib/sass/plugin/generic.rb", "lib/sass/plugin/merb.rb", "lib/sass/plugin/rack.rb", "lib/sass/plugin/rails.rb", "lib/sass/plugin/staleness_checker.rb", "lib/sass/railtie.rb", "lib/sass/repl.rb", "lib/sass/root.rb", "lib/sass/script.rb", "lib/sass/script/arg_list.rb", "lib/sass/script/bool.rb", "lib/sass/script/color.rb", "lib/sass/script/css_lexer.rb", "lib/sass/script/css_parser.rb", "lib/sass/script/funcall.rb", "lib/sass/script/functions.rb", "lib/sass/script/interpolation.rb", "lib/sass/script/lexer.rb", "lib/sass/script/list.rb", "lib/sass/script/literal.rb", "lib/sass/script/node.rb", "lib/sass/script/null.rb", "lib/sass/script/number.rb", "lib/sass/script/operation.rb", "lib/sass/script/parser.rb", "lib/sass/script/string.rb", "lib/sass/script/string_interpolation.rb", "lib/sass/script/unary_operation.rb", "lib/sass/script/variable.rb", "lib/sass/scss.rb", "lib/sass/scss/css_parser.rb", "lib/sass/scss/parser.rb", "lib/sass/scss/rx.rb", "lib/sass/scss/script_lexer.rb", "lib/sass/scss/script_parser.rb", "lib/sass/scss/static_parser.rb", "lib/sass/selector.rb", "lib/sass/selector/abstract_sequence.rb", "lib/sass/selector/comma_sequence.rb", "lib/sass/selector/sequence.rb", "lib/sass/selector/simple.rb", "lib/sass/selector/simple_sequence.rb", "lib/sass/shared.rb", "lib/sass/supports.rb", "lib/sass/tree/charset_node.rb", "lib/sass/tree/comment_node.rb", "lib/sass/tree/content_node.rb", "lib/sass/tree/css_import_node.rb", "lib/sass/tree/debug_node.rb", "lib/sass/tree/directive_node.rb", "lib/sass/tree/each_node.rb", "lib/sass/tree/extend_node.rb", "lib/sass/tree/for_node.rb", "lib/sass/tree/function_node.rb", "lib/sass/tree/if_node.rb", "lib/sass/tree/import_node.rb", "lib/sass/tree/media_node.rb", "lib/sass/tree/mixin_def_node.rb", "lib/sass/tree/mixin_node.rb", "lib/sass/tree/node.rb", "lib/sass/tree/prop_node.rb", "lib/sass/tree/return_node.rb", "lib/sass/tree/root_node.rb", "lib/sass/tree/rule_node.rb", "lib/sass/tree/supports_node.rb", "lib/sass/tree/trace_node.rb", "lib/sass/tree/variable_node.rb", "lib/sass/tree/visitors/base.rb", "lib/sass/tree/visitors/check_nesting.rb", "lib/sass/tree/visitors/convert.rb", "lib/sass/tree/visitors/cssize.rb", "lib/sass/tree/visitors/deep_copy.rb", "lib/sass/tree/visitors/extend.rb", "lib/sass/tree/visitors/perform.rb", "lib/sass/tree/visitors/set_options.rb", "lib/sass/tree/visitors/to_css.rb", "lib/sass/tree/warn_node.rb", "lib/sass/tree/while_node.rb", "lib/sass/util.rb", "lib/sass/util/multibyte_string_scanner.rb", "lib/sass/util/subset_map.rb", "lib/sass/util/test.rb", "lib/sass/version.rb", "rails/init.rb", "test/Gemfile", "test/Gemfile.lock", "test/sass/cache_test.rb", "test/sass/callbacks_test.rb", "test/sass/conversion_test.rb", "test/sass/css2sass_test.rb", "test/sass/data/hsl-rgb.txt", "test/sass/engine_test.rb", "test/sass/exec_test.rb", "test/sass/extend_test.rb", "test/sass/fixtures/test_staleness_check_across_importers.css", "test/sass/fixtures/test_staleness_check_across_importers.scss", "test/sass/functions_test.rb", "test/sass/importer_test.rb", "test/sass/logger_test.rb", "test/sass/mock_importer.rb", "test/sass/more_results/more1.css", "test/sass/more_results/more1_with_line_comments.css", "test/sass/more_results/more_import.css", "test/sass/more_templates/_more_partial.sass", "test/sass/more_templates/more1.sass", "test/sass/more_templates/more_import.sass", "test/sass/plugin_test.rb", "test/sass/results/alt.css", "test/sass/results/basic.css", "test/sass/results/cached_import_option.css", "test/sass/results/compact.css", "test/sass/results/complex.css", "test/sass/results/compressed.css", "test/sass/results/expanded.css", "test/sass/results/filename_fn.css", "test/sass/results/if.css", "test/sass/results/import.css", "test/sass/results/import_charset.css", "test/sass/results/import_charset_1_8.css", "test/sass/results/import_charset_ibm866.css", "test/sass/results/import_content.css", "test/sass/results/line_numbers.css", "test/sass/results/mixins.css", "test/sass/results/multiline.css", "test/sass/results/nested.css", "test/sass/results/options.css", "test/sass/results/parent_ref.css", "test/sass/results/script.css", "test/sass/results/scss_import.css", "test/sass/results/scss_importee.css", "test/sass/results/subdir/nested_subdir/nested_subdir.css", "test/sass/results/subdir/subdir.css", "test/sass/results/units.css", "test/sass/results/warn.css", "test/sass/results/warn_imported.css", "test/sass/script_conversion_test.rb", "test/sass/script_test.rb", "test/sass/scss/css_test.rb", "test/sass/scss/rx_test.rb", "test/sass/scss/scss_test.rb", "test/sass/scss/test_helper.rb", "test/sass/templates/_cached_import_option_partial.scss", "test/sass/templates/_double_import_loop2.sass", "test/sass/templates/_filename_fn_import.scss", "test/sass/templates/_imported_charset_ibm866.sass", "test/sass/templates/_imported_charset_utf8.sass", "test/sass/templates/_imported_content.sass", "test/sass/templates/_partial.sass", "test/sass/templates/_same_name_different_partiality.scss", "test/sass/templates/alt.sass", "test/sass/templates/basic.sass", "test/sass/templates/bork1.sass", "test/sass/templates/bork2.sass", "test/sass/templates/bork3.sass", "test/sass/templates/bork4.sass", "test/sass/templates/bork5.sass", "test/sass/templates/cached_import_option.scss", "test/sass/templates/compact.sass", "test/sass/templates/complex.sass", "test/sass/templates/compressed.sass", "test/sass/templates/double_import_loop1.sass", "test/sass/templates/expanded.sass", "test/sass/templates/filename_fn.scss", "test/sass/templates/if.sass", "test/sass/templates/import.sass", "test/sass/templates/import_charset.sass", "test/sass/templates/import_charset_1_8.sass", "test/sass/templates/import_charset_ibm866.sass", "test/sass/templates/import_content.sass", "test/sass/templates/importee.less", "test/sass/templates/importee.sass", "test/sass/templates/line_numbers.sass", "test/sass/templates/mixin_bork.sass", "test/sass/templates/mixins.sass", "test/sass/templates/multiline.sass", "test/sass/templates/nested.sass", "test/sass/templates/nested_bork1.sass", "test/sass/templates/nested_bork2.sass", "test/sass/templates/nested_bork3.sass", "test/sass/templates/nested_bork4.sass", "test/sass/templates/nested_import.sass", "test/sass/templates/nested_mixin_bork.sass", "test/sass/templates/options.sass", "test/sass/templates/parent_ref.sass", "test/sass/templates/same_name_different_ext.sass", "test/sass/templates/same_name_different_ext.scss", "test/sass/templates/same_name_different_partiality.scss", "test/sass/templates/script.sass", "test/sass/templates/scss_import.scss", "test/sass/templates/scss_importee.scss", "test/sass/templates/single_import_loop.sass", "test/sass/templates/subdir/import_up1.scss", "test/sass/templates/subdir/import_up2.scss", "test/sass/templates/subdir/nested_subdir/_nested_partial.sass", "test/sass/templates/subdir/nested_subdir/nested_subdir.sass", "test/sass/templates/subdir/subdir.sass", "test/sass/templates/units.sass", "test/sass/templates/warn.sass", "test/sass/templates/warn_imported.sass", "test/sass/test_helper.rb", "test/sass/util/multibyte_string_scanner_test.rb", "test/sass/util/subset_map_test.rb", "test/sass/util_test.rb", "test/test_helper.rb", "vendor/listen/CHANGELOG.md", "vendor/listen/CONTRIBUTING.md", "vendor/listen/Gemfile", "vendor/listen/Guardfile", "vendor/listen/LICENSE", "vendor/listen/README.md", "vendor/listen/Rakefile", "vendor/listen/Vagrantfile", "vendor/listen/lib/listen.rb", "vendor/listen/lib/listen/adapter.rb", "vendor/listen/lib/listen/adapters/bsd.rb", "vendor/listen/lib/listen/adapters/darwin.rb", "vendor/listen/lib/listen/adapters/linux.rb", "vendor/listen/lib/listen/adapters/polling.rb", "vendor/listen/lib/listen/adapters/windows.rb", "vendor/listen/lib/listen/dependency_manager.rb", "vendor/listen/lib/listen/directory_record.rb", "vendor/listen/lib/listen/listener.rb", "vendor/listen/lib/listen/multi_listener.rb", "vendor/listen/lib/listen/turnstile.rb", "vendor/listen/lib/listen/version.rb", "vendor/listen/listen.gemspec", "vendor/listen/spec/listen/adapter_spec.rb", "vendor/listen/spec/listen/adapters/bsd_spec.rb", "vendor/listen/spec/listen/adapters/darwin_spec.rb", "vendor/listen/spec/listen/adapters/linux_spec.rb", "vendor/listen/spec/listen/adapters/polling_spec.rb", "vendor/listen/spec/listen/adapters/windows_spec.rb", "vendor/listen/spec/listen/dependency_manager_spec.rb", "vendor/listen/spec/listen/directory_record_spec.rb", "vendor/listen/spec/listen/listener_spec.rb", "vendor/listen/spec/listen/multi_listener_spec.rb", "vendor/listen/spec/listen/turnstile_spec.rb", "vendor/listen/spec/listen_spec.rb", "vendor/listen/spec/spec_helper.rb", "vendor/listen/spec/support/adapter_helper.rb", "vendor/listen/spec/support/directory_record_helper.rb", "vendor/listen/spec/support/fixtures_helper.rb", "vendor/listen/spec/support/listeners_helper.rb", "vendor/listen/spec/support/platform_helper.rb"] + s.homepage = "http://sass-lang.com/" + s.licenses = ["MIT"] + s.required_ruby_version = Gem::Requirement.new(">= 1.8.7") Index: www/rubygem-actionpack/files/patch-gemspec =================================================================== --- www/rubygem-actionpack/files/patch-gemspec (revision 379056) +++ www/rubygem-actionpack/files/patch-gemspec (working copy) @@ -1,11 +0,0 @@ ---- actionpack-3.2.19.gemspec.orig 2014-07-02 19:24:30.502461548 +0000 -+++ actionpack-3.2.19.gemspec 2014-07-02 19:24:31.347461949 +0000 -@@ -133,7 +133,7 @@ - requirement: &id008 !ruby/object:Gem::Requirement - none: false - requirements: -- - - ~> -+ - - ">=" - - !ruby/object:Gem::Version - hash: 5 - segments: Index: www/rubygem-gitlab-gollum-lib/files/patch-gemspec =================================================================== --- www/rubygem-gitlab-gollum-lib/files/patch-gemspec (revision 379056) +++ www/rubygem-gitlab-gollum-lib/files/patch-gemspec (working copy) @@ -1,20 +1,20 @@ ---- gitlab-gollum-lib-1.1.0.gemspec.orig 2014-08-31 05:45:21.688401723 +0000 -+++ gitlab-gollum-lib-1.1.0.gemspec 2014-08-31 05:45:42.784398809 +0000 -@@ -79,7 +79,7 @@ - requirements: - - - ~> - - !ruby/object:Gem::Version -- version: 1.5.9 -+ version: 1.6.0 - type: :runtime - prerelease: false - version_requirements: !ruby/object:Gem::Requirement -@@ -205,7 +205,7 @@ - requirements: - - - ~> - - !ruby/object:Gem::Version -- version: 0.4.2 -+ version: 0.5.2 - type: :development - prerelease: false - version_requirements: !ruby/object:Gem::Requirement +--- gitlab-gollum-lib.gemspec.orig 2015-01-22 02:57:29.000000000 +0000 ++++ gitlab-gollum-lib.gemspec 2015-01-22 02:57:52.000000000 +0000 +@@ -63,7 +63,7 @@ + s.add_dependency(%q, ["< 1.0.0", ">= 0.7.5"]) + s.add_dependency(%q, ["~> 0.5.3"]) + s.add_dependency(%q, ["~> 2.0.3"]) +- s.add_dependency(%q, ["~> 1.5.9"]) ++ s.add_dependency(%q, [">= 1.5.9"]) + s.add_dependency(%q, ["~> 1.5.1"]) + s.add_dependency(%q, ["~> 4.2.9"]) + s.add_dependency(%q, ["~> 0.13.2"]) +@@ -72,7 +72,7 @@ + s.add_dependency(%q, ["~> 0.8.0"]) + s.add_dependency(%q, ["~> 10.0.3"]) + s.add_dependency(%q, ["~> 0.9.12"]) +- s.add_dependency(%q, ["~> 0.4.2"]) ++ s.add_dependency(%q, [">= 0.4.2"]) + s.add_dependency(%q, ["~> 0.14.10"]) + s.add_dependency(%q, ["~> 0.1.2"]) + end Index: www/rubygem-jekyll/files/patch-gemspec =================================================================== --- www/rubygem-jekyll/files/patch-gemspec (revision 0) +++ www/rubygem-jekyll/files/patch-gemspec (working copy) @@ -0,0 +1,11 @@ +--- jekyll.gemspec.orig 2015-02-16 02:08:36.701573000 +0000 ++++ jekyll.gemspec 2015-02-16 02:08:56.815699000 +0000 +@@ -26,7 +26,7 @@ + + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then + s.add_runtime_dependency(%q, ["~> 2.6.1"]) +- s.add_runtime_dependency(%q, ["~> 1.3"]) ++ s.add_runtime_dependency(%q, [">= 1.3"]) + s.add_runtime_dependency(%q, ["~> 0.3.3"]) + s.add_runtime_dependency(%q, ["~> 1.0"]) + s.add_runtime_dependency(%q, ["~> 0.1"]) Property changes on: www/rubygem-jekyll/files/patch-gemspec ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Index: www/rubygem-jekyll/files/patch-versions =================================================================== --- www/rubygem-jekyll/files/patch-versions (revision 379056) +++ www/rubygem-jekyll/files/patch-versions (working copy) @@ -1,11 +0,0 @@ ---- jekyll-2.5.3.gemspec.orig 2014-08-24 22:22:41.000000000 +0200 -+++ jekyll-2.5.3.gemspec 2014-08-24 22:23:14.000000000 +0200 -@@ -28,7 +28,7 @@ - name: kramdown - requirement: !ruby/object:Gem::Requirement - requirements: -- - - "~>" -+ - - ">=" - - !ruby/object:Gem::Version - version: '1.3' - type: :runtime Index: www/rubygem-railties/files/patch-gemspec =================================================================== --- www/rubygem-railties/files/patch-gemspec (revision 379056) +++ www/rubygem-railties/files/patch-gemspec (working copy) @@ -1,24 +1,10 @@ ---- railties-3.2.19.gemspec.orig 2014-07-02 19:26:50.010451747 +0000 -+++ railties-3.2.19.gemspec 2014-07-02 19:28:44.333443952 +0000 -@@ -74,21 +74,6 @@ - prerelease: false - name: thor - - !ruby/object:Gem::Dependency -- requirement: &id004 !ruby/object:Gem::Requirement -- none: false -- requirements: -- - - ~> -- - !ruby/object:Gem::Version -- hash: 15 -- segments: -- - 3 -- - 4 -- version: "3.4" -- type: :runtime -- version_requirements: *id004 -- prerelease: false -- name: rdoc --- !ruby/object:Gem::Dependency - requirement: &id005 !ruby/object:Gem::Requirement - none: false - requirements: +--- railties.gemspec.orig 2015-02-16 02:04:03.394375000 +0000 ++++ railties.gemspec 2015-02-16 02:04:30.282631000 +0000 +@@ -27,7 +27,6 @@ + s.add_runtime_dependency(%q, [">= 0.8.7"]) + s.add_runtime_dependency(%q, ["~> 1.3.2"]) + s.add_runtime_dependency(%q, ["< 2.0", ">= 0.14.6"]) +- s.add_runtime_dependency(%q, ["~> 3.4"]) + s.add_runtime_dependency(%q, ["= 3.2.19"]) + s.add_runtime_dependency(%q, ["= 3.2.19"]) + else