Date: Mon, 30 Mar 2015 02:47:08 +0000 (UTC) From: Steve Wills <swills@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r382631 - in head: Mk devel/ruby-gems devel/rubygem-activemessaging/files devel/rubygem-analogger/files devel/rubygem-bones devel/rubygem-clio/files devel/rubygem-debugger devel/rubygem... Message-ID: <201503300247.t2U2l8sS093400@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: swills Date: Mon Mar 30 02:47:07 2015 New Revision: 382631 URL: https://svnweb.freebsd.org/changeset/ports/382631 QAT: https://qat.redports.org/buildarchive/r382631/ Log: Update ruby-gems to 2.4.5 Note this is a big upgrade and the way gemspecs are generated changed. As a result, all patched gemspecs had to have new patches. Added: head/devel/rubygem-debugger/files/patch-gemspec (contents, props changed) head/devel/rubygem-launchy22/files/ head/devel/rubygem-launchy22/files/patch-gemspec (contents, props changed) head/devel/rubygem-term-ansicolor/files/ head/devel/rubygem-term-ansicolor/files/patch-gemspec (contents, props changed) head/devel/rubygem-toml/files/ head/devel/rubygem-toml/files/patch-gemspec (contents, props changed) head/devel/rubygem-travis/files/patch-gemspec (contents, props changed) head/net-im/rubygem-termtter/files/patch-gemspec (contents, props changed) head/net/rubygem-twitter-stream/files/patch-gemspec (contents, props changed) head/net/rubygem-twitter/files/ head/net/rubygem-twitter/files/patch-gemspec (contents, props changed) head/sysutils/rubygem-hammer_cli/files/patch-gemspec (contents, props changed) head/textproc/rubygem-nokogiri14/files/patch-ext_nokogiri_extconf.rb (contents, props changed) Deleted: head/devel/rubygem-activemessaging/files/ head/devel/rubygem-debugger/files/patch-debugger-1.6.2.gemspec head/devel/rubygem-travis/files/patch-travis-1.7.5.gemspec head/devel/rubygem-travis/files/patch-travis.gemspec head/net-im/rubygem-termtter/files/patch-versions head/net-mgmt/rubygem-visage-app/files/ head/net/rubygem-amqp-utils/files/ head/net/rubygem-twitter-stream/files/patch-versions head/sysutils/rubygem-hammer_cli/files/patch-versions head/www/rubygem-actionpack/files/ head/www/rubygem-railties/files/ Modified: head/Mk/bsd.ruby.mk head/devel/ruby-gems/Makefile head/devel/ruby-gems/distinfo head/devel/ruby-gems/pkg-plist head/devel/rubygem-analogger/files/patch-gemspec head/devel/rubygem-bones/Makefile head/devel/rubygem-clio/files/patch-gemspec head/devel/rubygem-debugger/Makefile head/devel/rubygem-rapt/Makefile head/devel/rubygem-rapt/files/patch-gemspec head/devel/rubygem-term-ansicolor/Makefile head/devel/rubygem-tilt1/files/patch-gemspec (contents, props changed) head/devel/rubygem-toml/Makefile head/net-im/rubygem-lita/files/patch-gemspec head/net/rubygem-gitlab_omniauth-ldap/files/patch-gemspec head/net/rubygem-twitter/Makefile head/security/rubygem-ezcrypto/files/patch-gemspec head/textproc/rubygem-nokogiri/files/patch-gemspec head/textproc/rubygem-nokogiri14/files/patch-gemspec head/textproc/rubygem-sass-rails/files/patch-gemspec head/textproc/rubygem-sass32/files/patch-gemspec head/www/rubygem-gitlab-gollum-lib/files/patch-gemspec head/www/rubygem-jekyll/files/patch-versions Modified: head/Mk/bsd.ruby.mk ============================================================================== --- head/Mk/bsd.ruby.mk Sun Mar 29 23:28:33 2015 (r382630) +++ head/Mk/bsd.ruby.mk Mon Mar 30 02:47:07 2015 (r382631) @@ -412,6 +412,7 @@ GEMS_DIR= ${GEMS_BASE_DIR}/gems 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} @@ -425,6 +426,7 @@ PLIST_SUB+= PORTVERSION="${PORTVERSION}" 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}" \ @@ -441,18 +443,28 @@ GEMFILES= ${DISTFILES:C/:[^:]+$//} 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 ; \ @@ -461,7 +473,12 @@ do-build: 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) @@ -469,24 +486,15 @@ post-install-script: @${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 Modified: head/devel/ruby-gems/Makefile ============================================================================== --- head/devel/ruby-gems/Makefile Sun Mar 29 23:28:33 2015 (r382630) +++ head/devel/ruby-gems/Makefile Mon Mar 30 02:47:07 2015 (r382631) @@ -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 @@ RUBY_SETUP= setup.rb 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= ${GEMS_DOC_BASE_DIR}/${DI 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 <bsd.port.options.mk> @@ -59,36 +70,6 @@ post-install: .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 <bsd.port.mk> Modified: head/devel/ruby-gems/distinfo ============================================================================== --- head/devel/ruby-gems/distinfo Sun Mar 29 23:28:33 2015 (r382630) +++ head/devel/ruby-gems/distinfo Mon Mar 30 02:47:07 2015 (r382631) @@ -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 Modified: head/devel/ruby-gems/pkg-plist ============================================================================== --- head/devel/ruby-gems/pkg-plist Sun Mar 29 23:28:33 2015 (r382630) +++ head/devel/ruby-gems/pkg-plist Mon Mar 30 02:47:07 2015 (r382631) @@ -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 @@ bin/gem%%RUBY_VER_SHORT%% %%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 @@ bin/gem%%RUBY_VER_SHORT%% %%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 @@ bin/gem%%RUBY_VER_SHORT%% %%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,9 +149,18 @@ bin/gem%%RUBY_VER_SHORT%% %%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 %%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%% Modified: head/devel/rubygem-analogger/files/patch-gemspec ============================================================================== --- head/devel/rubygem-analogger/files/patch-gemspec Sun Mar 29 23:28:33 2015 (r382630) +++ head/devel/rubygem-analogger/files/patch-gemspec Mon Mar 30 02:47:07 2015 (r382631) @@ -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") Modified: head/devel/rubygem-bones/Makefile ============================================================================== --- head/devel/rubygem-bones/Makefile Sun Mar 29 23:28:33 2015 (r382630) +++ head/devel/rubygem-bones/Makefile Mon Mar 30 02:47:07 2015 (r382631) @@ -21,8 +21,4 @@ RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/bones -post-patch: -# adjust gemspec for "rdoc ~> 3.0" - @${REINPLACE_CMD} -e '27,40 d' ${WRKSRC}/${GEM_NAME}.gemspec - .include <bsd.port.mk> Modified: head/devel/rubygem-clio/files/patch-gemspec ============================================================================== --- head/devel/rubygem-clio/files/patch-gemspec Sun Mar 29 23:28:33 2015 (r382630) +++ head/devel/rubygem-clio/files/patch-gemspec Mon Mar 30 02:47:07 2015 (r382631) @@ -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/co mmandline", "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/commandli ne/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" Modified: head/devel/rubygem-debugger/Makefile ============================================================================== --- head/devel/rubygem-debugger/Makefile Sun Mar 29 23:28:33 2015 (r382630) +++ head/devel/rubygem-debugger/Makefile Mon Mar 30 02:47:07 2015 (r382631) @@ -30,7 +30,7 @@ post-install: .include <bsd.port.pre.mk> -.if ${RUBY_VER} == 2.1 +.if ${RUBY_VER} >= 2.1 BROKEN= Does not build with Ruby 2.1 .endif Added: head/devel/rubygem-debugger/files/patch-gemspec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-debugger/files/patch-gemspec Mon Mar 30 02:47:07 2015 (r382631) @@ -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<columnize>, [">= 0.3.1"]) +- s.add_runtime_dependency(%q<debugger-ruby_core_source>, ["~> 1.2.3"]) + s.add_runtime_dependency(%q<debugger-linecache>, ["~> 1.2.0"]) + s.add_development_dependency(%q<rake>, ["~> 0.9.2.2"]) + s.add_development_dependency(%q<rake-compiler>, ["~> 0.8.0"]) Added: head/devel/rubygem-launchy22/files/patch-gemspec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-launchy22/files/patch-gemspec Mon Mar 30 02:47:07 2015 (r382631) @@ -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.ra ke", "tasks/this.rb"] + s.homepage = "http://github.com/copiousfreetime/launchy" Modified: head/devel/rubygem-rapt/Makefile ============================================================================== --- head/devel/rubygem-rapt/Makefile Sun Mar 29 23:28:33 2015 (r382630) +++ head/devel/rubygem-rapt/Makefile Mon Mar 30 02:47:07 2015 (r382631) @@ -13,5 +13,6 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/rapt +USES= libtool .include <bsd.port.mk> Modified: head/devel/rubygem-rapt/files/patch-gemspec ============================================================================== --- head/devel/rubygem-rapt/files/patch-gemspec Sun Mar 29 23:28:33 2015 (r382630) +++ head/devel/rubygem-rapt/files/patch-gemspec Mon Mar 30 02:47:07 2015 (r382631) @@ -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"] Modified: head/devel/rubygem-term-ansicolor/Makefile ============================================================================== --- head/devel/rubygem-term-ansicolor/Makefile Sun Mar 29 23:28:33 2015 (r382630) +++ head/devel/rubygem-term-ansicolor/Makefile Mon Mar 30 02:47:07 2015 (r382631) @@ -22,11 +22,6 @@ RUBYGEM_AUTOPLIST= yes 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}/ Added: head/devel/rubygem-term-ansicolor/files/patch-gemspec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-term-ansicolor/files/patch-gemspec Mon Mar 30 02:47:07 2015 (r382631) @@ -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" Modified: head/devel/rubygem-tilt1/files/patch-gemspec ============================================================================== --- head/devel/rubygem-tilt1/files/patch-gemspec Sun Mar 29 23:28:33 2015 (r382630) +++ head/devel/rubygem-tilt1/files/patch-gemspec Mon Mar 30 02:47:07 2015 (r382631) @@ -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_creolete mplate_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<nokogiri>, [">= 0"]) + s.add_development_dependency(%q<radius>, [">= 0"]) + s.add_development_dependency(%q<rdiscount>, [">= 0"]) +- s.add_development_dependency(%q<rdoc>, [">= 0"]) + s.add_development_dependency(%q<redcarpet>, [">= 0"]) + s.add_development_dependency(%q<sass>, [">= 0"]) + s.add_development_dependency(%q<wikicloth>, [">= 0"]) + s.add_development_dependency(%q<yajl-ruby>, [">= 0"]) +- s.add_development_dependency(%q<rdoc>, [">= 0"]) + else + s.add_dependency(%q<asciidoctor>, [">= 0.1.0"]) + s.add_dependency(%q<RedCloth>, [">= 0"]) Modified: head/devel/rubygem-toml/Makefile ============================================================================== --- head/devel/rubygem-toml/Makefile Sun Mar 29 23:28:33 2015 (r382630) +++ head/devel/rubygem-toml/Makefile Mon Mar 30 02:47:07 2015 (r382631) @@ -17,7 +17,4 @@ USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -post-patch: - @${REINPLACE_CMD} -e '18 s|~>|>=|' ${WRKSRC}/${GEM_NAME}.gemspec - .include <bsd.port.mk> Added: head/devel/rubygem-toml/files/patch-gemspec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-toml/files/patch-gemspec Mon Mar 30 02:47:07 2015 (r382631) @@ -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<rake>, [">= 0"]) + end + else +- s.add_dependency(%q<parslet>, ["~> 1.5.0"]) ++ s.add_dependency(%q<parslet>, [">= 1.5.0"]) + s.add_dependency(%q<rake>, [">= 0"]) + end + end Added: head/devel/rubygem-travis/files/patch-gemspec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/rubygem-travis/files/patch-gemspec Mon Mar 30 02:47:07 2015 (r382631) @@ -0,0 +1,11 @@ +--- travis.gemspec.orig 2015-03-29 23:54:08.316179000 +0000 ++++ travis.gemspec 2015-03-29 23:55:01.636016000 +0000 +@@ -28,7 +28,7 @@ + s.add_runtime_dependency(%q<backports>, [">= 0"]) + s.add_runtime_dependency(%q<gh>, ["~> 0.13"]) + s.add_runtime_dependency(%q<launchy>, ["~> 2.1"]) +- s.add_runtime_dependency(%q<pry>, ["< 0.10", "~> 0.9"]) ++ s.add_runtime_dependency(%q<pry>, ["~> 0.9"]) + s.add_runtime_dependency(%q<typhoeus>, [">= 0.6.8", "~> 0.6"]) + s.add_runtime_dependency(%q<pusher-client>, ["~> 0.4"]) + s.add_runtime_dependency(%q<addressable>, ["~> 2.3"]) Modified: head/net-im/rubygem-lita/files/patch-gemspec ============================================================================== --- head/net-im/rubygem-lita/files/patch-gemspec Sun Mar 29 23:28:33 2015 (r382630) +++ head/net-im/rubygem-lita/files/patch-gemspec Mon Mar 30 02:47:07 2015 (r382631) @@ -1,33 +1,10 @@ ---- lita-4.3.0.gemspec.orig 2014-09-08 22:00:06 UTC -+++ lita-4.3.0.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<multi_json>, [">= 1.7.7"]) + s.add_dependency(%q<puma>, [">= 2.7.1"]) + s.add_dependency(%q<rack>, [">= 1.5.2"]) +- s.add_dependency(%q<rb-readline>, [">= 0.5.1"]) + s.add_dependency(%q<redis-namespace>, [">= 1.3.0"]) + s.add_dependency(%q<thor>, [">= 0.18.1"]) + s.add_dependency(%q<rake>, [">= 0"]) Added: head/net-im/rubygem-termtter/files/patch-gemspec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/rubygem-termtter/files/patch-gemspec Mon Mar 30 02:47:07 2015 (r382631) @@ -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<json>, ["> 1.1.3"]) +- s.add_runtime_dependency(%q<highline>, ["~> 1.5.0"]) ++ s.add_runtime_dependency(%q<highline>, ["~> 1.6.0"]) + s.add_runtime_dependency(%q<termcolor>, ["~> 1.0.0"]) + s.add_runtime_dependency(%q<rubytter>, ["~> 1.5.1"]) + s.add_runtime_dependency(%q<notify>, ["~> 0.5.1"]) Modified: head/net/rubygem-gitlab_omniauth-ldap/files/patch-gemspec ============================================================================== --- head/net/rubygem-gitlab_omniauth-ldap/files/patch-gemspec Sun Mar 29 23:28:33 2015 (r382630) +++ head/net/rubygem-gitlab_omniauth-ldap/files/patch-gemspec Mon Mar 30 02:47:07 2015 (r382631) @@ -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<omniauth>, ["~> 1.0"]) + s.add_runtime_dependency(%q<net-ldap>, ["~> 0.7.0"]) + s.add_runtime_dependency(%q<pyu-ruby-sasl>, ["~> 0.0.3.1"]) +- s.add_runtime_dependency(%q<rubyntlm>, ["~> 0.1.1"]) ++ s.add_runtime_dependency(%q<rubyntlm>, ["~> 0.4.0"]) + else + s.add_dependency(%q<omniauth>, ["~> 1.0"]) + s.add_dependency(%q<net-ldap>, ["~> 0.7.0"]) Added: head/net/rubygem-twitter-stream/files/patch-gemspec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rubygem-twitter-stream/files/patch-gemspec Mon Mar 30 02:47:07 2015 (r382631) @@ -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<eventmachine>, [">= 0.12.8"]) +- s.add_runtime_dependency(%q<simple_oauth>, ["~> 0.1.4"]) ++ s.add_runtime_dependency(%q<simple_oauth>, ["~> 0.2.0"]) + s.add_runtime_dependency(%q<http_parser.rb>, ["~> 0.5.1"]) + s.add_development_dependency(%q<rspec>, ["~> 2.5.0"]) + else Modified: head/net/rubygem-twitter/Makefile ============================================================================== --- head/net/rubygem-twitter/Makefile Sun Mar 29 23:28:33 2015 (r382630) +++ head/net/rubygem-twitter/Makefile Mon Mar 30 02:47:07 2015 (r382631) @@ -26,8 +26,4 @@ USE_RUBY= yes 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 <bsd.port.mk> Added: head/net/rubygem-twitter/files/patch-gemspec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/rubygem-twitter/files/patch-gemspec Mon Mar 30 02:47:07 2015 (r382631) @@ -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<buftok>, ["~> 0.2.0"]) + s.add_runtime_dependency(%q<equalizer>, ["~> 0.0.9"]) + s.add_runtime_dependency(%q<faraday>, ["~> 0.9.0"]) +- s.add_runtime_dependency(%q<http>, ["~> 0.6.0"]) ++ s.add_runtime_dependency(%q<http>, [">= 0.6.0"]) + s.add_runtime_dependency(%q<http_parser.rb>, ["~> 0.6.0"]) + s.add_runtime_dependency(%q<json>, ["~> 1.8"]) + s.add_runtime_dependency(%q<memoizable>, ["~> 0.4.0"]) Modified: head/security/rubygem-ezcrypto/files/patch-gemspec ============================================================================== --- head/security/rubygem-ezcrypto/files/patch-gemspec Sun Mar 29 23:28:33 2015 (r382630) +++ head/security/rubygem-ezcrypto/files/patch-gemspec Mon Mar 30 02:47:07 2015 (r382631) @@ -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 + Added: head/sysutils/rubygem-hammer_cli/files/patch-gemspec ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/rubygem-hammer_cli/files/patch-gemspec Mon Mar 30 02:47:07 2015 (r382631) @@ -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<json>, [">= 0"]) + s.add_dependency(%q<rb-readline>, [">= 0"]) + s.add_dependency(%q<fastercsv>, [">= 0"]) +- s.add_dependency(%q<mime-types>, ["~> 1.0"]) ++ s.add_dependency(%q<mime-types>, [">= 1.0"]) + s.add_dependency(%q<apipie-bindings>, ["~> 0.0.10"]) + end + end Modified: head/textproc/rubygem-nokogiri/files/patch-gemspec ============================================================================== --- head/textproc/rubygem-nokogiri/files/patch-gemspec Sun Mar 29 23:28:33 2015 (r382630) +++ head/textproc/rubygem-nokogiri/files/patch-gemspec Mon Mar 30 02:47:07 2015 (r382631) @@ -1,23 +1,10 @@ ---- nokogiri-1.6.6.2.gemspec.orig 2014-08-23 23:55:51.304817727 +0000 -+++ nokogiri-1.6.6.2.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 2015-03-29 12:13:17.677851000 +0000 ++++ nokogiri.gemspec 2015-03-29 13:06:46.232040000 +0000 +@@ -28,7 +28,6 @@ + s.specification_version = 4 + + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then +- s.add_runtime_dependency(%q<mini_portile>, ["~> 0.6.0"]) + s.add_development_dependency(%q<rdoc>, ["~> 4.0"]) + s.add_development_dependency(%q<hoe-bundler>, [">= 1.1"]) + s.add_development_dependency(%q<hoe-debugging>, ["~> 1.2.0"]) Added: head/textproc/rubygem-nokogiri14/files/patch-ext_nokogiri_extconf.rb ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/rubygem-nokogiri14/files/patch-ext_nokogiri_extconf.rb Mon Mar 30 02:47:07 2015 (r382631) @@ -0,0 +1,34 @@ +--- ext/nokogiri/extconf.rb.orig 2015-03-30 01:22:50.766379000 +0000 ++++ ext/nokogiri/extconf.rb 2015-03-30 01:23:08.727234000 +0000 +@@ -7,8 +7,8 @@ + RbConfig::MAKEFILE_CONFIG['CC'] = ENV['CC'] if ENV['CC'] + + ROOT = File.expand_path(File.join(File.dirname(__FILE__), '..', '..')) +-LIBDIR = Config::CONFIG['libdir'] +-INCLUDEDIR = Config::CONFIG['includedir'] ++LIBDIR = RbConfig::CONFIG['libdir'] ++INCLUDEDIR = RbConfig::CONFIG['includedir'] + + if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'macruby' + $LIBRUBYARG_STATIC.gsub!(/-static/, '') +@@ -17,9 +17,9 @@ + $CFLAGS << " #{ENV["CFLAGS"]}" + $LIBS << " #{ENV["LIBS"]}" + +-if Config::CONFIG['target_os'] == 'mingw32' || Config::CONFIG['target_os'] =~ /mswin32/ ++if RbConfig::CONFIG['target_os'] == 'mingw32' || RbConfig::CONFIG['target_os'] =~ /mswin32/ + $CFLAGS << " -DXP_WIN -DXP_WIN32 -DUSE_INCLUDED_VASPRINTF" +-elsif Config::CONFIG['target_os'] =~ /solaris/ ++elsif RbConfig::CONFIG['target_os'] =~ /solaris/ + $CFLAGS << " -DUSE_INCLUDED_VASPRINTF" + else + $CFLAGS << " -g -DXP_UNIX" +@@ -33,7 +33,7 @@ + $CFLAGS << " -O3 -Wall -Wcast-qual -Wwrite-strings -Wconversion -Wmissing-noreturn -Winline" + end + +-if Config::CONFIG['target_os'] =~ /mswin32/ ++if RbConfig::CONFIG['target_os'] =~ /mswin32/ + lib_prefix = 'lib' + + # There's no default include/lib dir on Windows. Let's just add the Ruby ones Modified: head/textproc/rubygem-nokogiri14/files/patch-gemspec ============================================================================== --- head/textproc/rubygem-nokogiri14/files/patch-gemspec Sun Mar 29 23:28:33 2015 (r382630) +++ head/textproc/rubygem-nokogiri14/files/patch-gemspec Mon Mar 30 02:47:07 2015 (r382631) @@ -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", "e xt/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", "ex! t/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/nokogi ri/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_co! ntext.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/xm l/document_fragment.rb", "lib/nokogiri/xml/d! td.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_d escription.rb", "test/html/test_named_charac! ters.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/xm l_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/noko giri/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_handle r.rb", "lib/nokogiri/ffi/structs/xml_sax_pus! h_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", "li b/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", "task s/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_char! acters.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" Modified: head/textproc/rubygem-sass-rails/files/patch-gemspec ============================================================================== --- head/textproc/rubygem-sass-rails/files/patch-gemspec Sun Mar 29 23:28:33 2015 (r382630) +++ head/textproc/rubygem-sass-rails/files/patch-gemspec Mon Mar 30 02:47:07 2015 (r382631) @@ -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<sass>, [">= 3.1.10"]) + s.add_runtime_dependency(%q<railties>, ["~> 3.2.0"]) +- s.add_runtime_dependency(%q<tilt>, ["~> 1.3"]) ++ s.add_runtime_dependency(%q<tilt>, [">= 1.3"]) + else + s.add_dependency(%q<sass>, [">= 3.1.10"]) + s.add_dependency(%q<railties>, ["~> 3.2.0"]) Modified: head/textproc/rubygem-sass32/files/patch-gemspec ============================================================================== --- head/textproc/rubygem-sass32/files/patch-gemspec Sun Mar 29 23:28:33 2015 (r382630) +++ head/textproc/rubygem-sass32/files/patch-gemspec Mon Mar 30 02:47:07 2015 (r382631) @@ -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/seque! nce.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/cssi ze.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/m ore1_with_line_comments.css", "test/sass/mor! e_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.c ss", "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/sas! s/templat! es/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/te mplates/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.m d", "vendor/listen/CONTRIBUTING.md", "vendor! /listen/G! emfile", "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/seque nce.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/mor e_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/sas s/templates/cached_import_option.scss", "tes! t/sass/te! mplates/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_s pec.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") Modified: head/www/rubygem-gitlab-gollum-lib/files/patch-gemspec ============================================================================== --- head/www/rubygem-gitlab-gollum-lib/files/patch-gemspec Sun Mar 29 23:28:33 2015 (r382630) +++ head/www/rubygem-gitlab-gollum-lib/files/patch-gemspec Mon Mar 30 02:47:07 2015 (r382631) @@ -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<github-markup>, ["< 1.0.0", ">= 0.7.5"]) + s.add_dependency(%q<github-markdown>, ["~> 0.5.3"]) + s.add_dependency(%q<sanitize>, ["~> 2.0.3"]) +- s.add_dependency(%q<nokogiri>, ["~> 1.5.9"]) ++ s.add_dependency(%q<nokogiri>, [">= 1.5.9"]) + s.add_dependency(%q<stringex>, ["~> 1.5.1"]) + s.add_dependency(%q<RedCloth>, ["~> 4.2.9"]) + s.add_dependency(%q<mocha>, ["~> 0.13.2"]) +@@ -72,7 +72,7 @@ + s.add_dependency(%q<wikicloth>, ["~> 0.8.0"]) + s.add_dependency(%q<rake>, ["~> 10.0.3"]) + s.add_dependency(%q<pry>, ["~> 0.9.12"]) +- s.add_dependency(%q<rb-readline>, ["~> 0.4.2"]) ++ s.add_dependency(%q<rb-readline>, [">= 0.4.2"]) + s.add_dependency(%q<minitest-reporters>, ["~> 0.14.10"]) + s.add_dependency(%q<nokogiri-diff>, ["~> 0.1.2"]) + end Modified: head/www/rubygem-jekyll/files/patch-versions ============================================================================== --- head/www/rubygem-jekyll/files/patch-versions Sun Mar 29 23:28:33 2015 (r382630) +++ head/www/rubygem-jekyll/files/patch-versions Mon Mar 30 02:47:07 2015 (r382631) @@ -1,11 +1,11 @@ ---- 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 +--- jekyll.gemspec.orig 2015-02-28 03:53:48.387642000 +0000 ++++ jekyll.gemspec 2015-02-28 03:54:07.212075000 +0000 +@@ -26,7 +26,7 @@ + + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then + s.add_runtime_dependency(%q<liquid>, ["~> 2.6.1"]) +- s.add_runtime_dependency(%q<kramdown>, ["~> 1.3"]) ++ s.add_runtime_dependency(%q<kramdown>, [">= 1.3"]) *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201503300247.t2U2l8sS093400>