Index: head/Mk/bsd.ruby.mk =================================================================== --- head/Mk/bsd.ruby.mk (revision 382630) +++ head/Mk/bsd.ruby.mk (revision 382631) @@ -1,612 +1,620 @@ # # bsd.ruby.mk - Utility definitions for Ruby related ports. # # Created by: Akinori MUSHA # # $FreeBSD$ # .if !defined(Ruby_Include) Ruby_Include= bsd.ruby.mk Ruby_Include_MAINTAINER= ruby@FreeBSD.org # # [variables that a user may define] # # RUBY_VER - (See below) # RUBY_DEFAULT_VER - Set to (e.g.) "2.0" if you want to refer to "ruby20" # just as "ruby". # RUBY_ARCH - (See below) # RUBY_RD_HTML - Define if you want HTML files generated from RD files. # # # [variables that each port can define] # # RUBY - Set to full path of ruby. If you set this, the values # of the following variables are automatically obtained # from the ruby executable: RUBY_VER, RUBY_VERSION, # RUBY_NAME, RUBY_ARCH, RUBY_LIBDIR, RUBY_ARCHLIBDIR, # RUBY_SITELIBDIR, and RUBY_SITEARCHLIBDIR. # RUBY_VER - Set to the alternative short version of ruby in the # form of `x.y' (see below for current value). # USE_RUBY - Says that the port uses ruby for building and running. # RUBY_NO_BUILD_DEPENDS - Says that the port should not build-depend on ruby. # RUBY_NO_RUN_DEPENDS - Says that the port should not run-depend on ruby. # USE_LIBRUBY - Says that the port uses libruby. # USE_RUBY_EXTCONF - Says that the port uses extconf.rb to configure. # Implies USE_RUBY. # RUBY_EXTCONF - Set to the alternative name of extconf.rb # (default: extconf.rb). # RUBY_EXTCONF_SUBDIRS - Set to list of subdirectories, if multiple modules # are included. # USE_RUBY_SETUP - Says that the port uses setup.rb to configure and # build. # RUBY_SETUP - Set to the alternative name of setup.rb # (default: setup.rb). # USE_RUBY_RDTOOL - Says that the port uses rdtool to generate documents. # USE_RUBY_RDOC - Says that the port uses rdoc to generate documents. # RUBY_REQUIRE - Set to a Ruby expression to evaluate before building # the port. The constant "Ruby" is set to the integer # version number of ruby, and the result of the # expression will be set to RUBY_PROVIDED, which is # left undefined if the result is nil, false or a # zero-length string. Implies USE_RUBY. # RUBY_SHEBANG_FILES - Specify the files which shebang lines you want to fix. # RUBY_RD_FILES - Specify the RD files which you want to generate HTML # documents from. If this is defined and not empty, # USE_RUBY_RDTOOL is implied and RUBY_RD_HTML_FILES is # defined. # USE_RUBYGEMS - Says that the port uses rubygems packaging system. # RUBYGEM_AUTOPLIST - Generate packing list for rubygems based port # automatically. # # # [variables that each port should not (re)define] # # RUBY_PKGNAMEPREFIX - Common PKGNAMEPREFIX for ruby ports # (default: ruby${RUBY_SUFFIX}-) # RUBY_RELVERSION - Full version of ruby without preview/beta suffix in # the form of `x.y.z' (see below for current value). # RUBY_RELVERSION_CODE - Integer version of RUBY_RELVERSION in the form of # `xyz'. # RUBY_VERSION - Composite version of RUBY_RELVERSION and # RUBY_PATCHLEVEL in the form of `x.y.z.p'. # (default: ${RUBY_RELVERSION}.${RUBY_PATCHLEVEL}) # RUBY_VERSION_CODE - Composite integer version of RUBY_VERSION in the form # of `xyzp'. # RUBY_PORTVERSION - PORTVERSION for the standard ruby ports (ruby, # ruby-gdbm, etc.). # RUBY_PORTREVISION - PORTREVISION for the standard ruby ports. # RUBY_PORTEPOCH - PORTEPOCH for the standard ruby ports. # RUBY_DISTNAME - DISTNAME for the standard ruby ports, i.e. the # basename of the ruby distribution tarball. # RUBY_DISTVERSION - The version number part of RUBY_DISTNAME. # RUBY_PATCHFILES - PATCHFILES for the standard ruby ports, i.e. the # basename of the ruby distribution tarball. # RUBY_WRKSRC - WRKSRC for the ruby port. # MASTER_SITE_SUBDIR_RUBY - MASTER_SITE_SUBDIR for the ruby distfiles. # # RUBY_SHLIBVER - Major version of libruby (see below for current # value). # RUBY_ARCH - Set to target architecture name. # (e.g. i386-freebsd7) # RUBY_SUFFIX - Suffix for ruby binaries and directories # (${RUBY_VER:S/.//}). # RUBY_WITHOUT_SUFFIX - Always ${LOCALBASE}/bin/ruby. # RUBY_WITH_SUFFIX - Always ${RUBY_WITHOUT_SUFFIX}${RUBY_SUFFIX}. # RUBY_NAME - Ruby's name with trailing suffix. # # RUBY_MODNAME - Set to the module name (default: ${PORTNAME}). # # RUBY_RD2 - Full path of rd2 executable. # RUBY_RDOC - Full path of rdoc executable. # # RUBY_BASE_PORT - Port path of base ruby without PORTSDIR, without # suffix except version. # RUBY_PORT - Port path of ruby without PORTSDIR. # RUBY_RDTOOL_PORT - Port path of rdtool without PORTSDIR. # RUBY_RDOC_PORT - Port path of rdoc without PORTSDIR. # # DEPEND_LIBRUBY - LIB_DEPENDS entry for libruby. # DEPEND_RUBY - BUILD_DEPENDS/RUN_DEPENDS entry for ruby. # DEPEND_RUBY_RDTOOL - BUILD_DEPENDS entry for rdtool. # DEPEND_RUBY_RDOC - BUILD_DEPENDS entry for rdoc. # # RUBY_LIBDIR - Installation path for architecture independent # libraries. # RUBY_ARCHLIBDIR - Installation path for architecture dependent # libraries. # RUBY_SITELIBDIR - Installation path for site architecture independent # libraries. # RUBY_SITEARCHLIBDIR - Installation path for site architecture dependent # libraries. # RUBY_DOCDIR - Installation path for documents. # RUBY_EXAMPLESDIR - Installation path for examples. # RUBY_RIDIR - Installation path for site architecture independent ri # documents. # RUBY_SITERIDIR - Installation path for site architecture dependent ri # documents. # RUBY_MODDOCDIR - Installation path for the module's documents. # RUBY_MODEXAMPLESDIR - Installation path for the module's examples. # RUBY_ELISPDIR - Installation path for emacs lisp files. # .include "${PORTSDIR}/Mk/bsd.default-versions.mk" .if defined(RUBY_DEFAULT_VER) WARNING+= "RUBY_DEFAULT_VER is defined, consider using DEFAULT_VERSIONS=ruby=${RUBY_DEFAULT_VER} instead" .endif RUBY_DEFAULT_VER?= ${RUBY_DEFAULT} RUBY_VER?= ${RUBY_DEFAULT_VER} .if defined(RUBY) .if !exists(${RUBY}) IGNORE= cannot install: you set the variable RUBY to "${RUBY}", but it does not seem to exist. Please specify an already installed ruby executable. .endif _RUBY_TEST!= ${RUBY} -e 'begin; require "rbconfig"; puts "ok" ; rescue LoadError; puts "error"; end' .if !empty(_RUBY_TEST) && ${_RUBY_TEST} != "ok" IGNORE= cannot install: you set the variable RUBY to "${RUBY}", but it failed to include rbconfig. Please specify a properly installed ruby executable. .endif _RUBY_CONFIG= ${RUBY} -r rbconfig -e 'C = RbConfig::CONFIG' -e RUBY_VERSION!= ${_RUBY_CONFIG} 'puts C["ruby_version"]' RUBY_SUFFIX?= # empty RUBY_ARCH!= ${_RUBY_CONFIG} 'puts C["target"]' RUBY_NAME!= ${_RUBY_CONFIG} 'puts C["ruby_install_name"]' _RUBY_SYSLIBDIR!= ${_RUBY_CONFIG} 'puts C["libdir"]' _RUBY_SITEDIR!= ${_RUBY_CONFIG} 'puts C["sitedir"]' _RUBY_VENDORDIR!= ${_RUBY_CONFIG} 'puts C["vendordir"]' .else RUBY?= ${LOCALBASE}/bin/${RUBY_NAME} .if defined(RUBY_VER) . if ${RUBY_VER} == 2.0 # # Ruby 2.0 # RUBY_RELVERSION= 2.0.0 RUBY_PORTREVISION= 0 RUBY_PORTEPOCH= 1 RUBY_PATCHLEVEL= 643 RUBY20= "" # PLIST_SUB helpers . elif ${RUBY_VER} == 2.1 # # Ruby 2.1 # RUBY_RELVERSION= 2.1.5 RUBY_PORTREVISION= 2 RUBY_PORTEPOCH= 1 RUBY_PATCHLEVEL= 0 RUBY21= "" # PLIST_SUB helpers . elif ${RUBY_VER} == 2.2 # # Ruby 2.2 # RUBY_RELVERSION= 2.2.1 RUBY_PORTREVISION= 0 RUBY_PORTEPOCH= 1 RUBY_PATCHLEVEL= 0 RUBY22= "" # PLIST_SUB helpers . else # # Other versions # IGNORE= Only ruby 2.0, 2.1 and 2.2 are supported . endif .endif # defined(RUBY_VER) RUBY20?= "@comment " RUBY21?= "@comment " RUBY22?= "@comment " .if ${RUBY_PATCHLEVEL} == 0 RUBY_VERSION?= ${RUBY_RELVERSION} RUBY_DISTVERSION?= ${RUBY_RELVERSION} .else RUBY_VERSION?= ${RUBY_RELVERSION}.${RUBY_PATCHLEVEL} RUBY_DISTVERSION?= ${RUBY_RELVERSION}-p${RUBY_PATCHLEVEL} .endif RUBY_WRKSRC= ${WRKDIR}/ruby-${RUBY_DISTVERSION} RUBY_CONFIGURE_ARGS+= --with-rubyhdrdir="${PREFIX}/include/ruby-${RUBY_VER}/" \ --with-rubylibprefix="${PREFIX}/lib/ruby" \ --docdir="${RUBY_DOCDIR}" \ --with-soname=ruby${RUBY_SUFFIX} CONFIGURE_TARGET?= ${ARCH}-portbld-${OPSYS:tl}${OSREL:C/\..*//} RUBY_ARCH?= ${ARCH}-${OPSYS:tl}${OSREL:C/\..*//} RUBY_NAME?= ruby${RUBY_SUFFIX} _RUBY_SYSLIBDIR?= ${PREFIX}/lib _RUBY_SITEDIR?= ${_RUBY_SYSLIBDIR}/ruby/site_ruby _RUBY_VENDORDIR?= ${_RUBY_SYSLIBDIR}/ruby/vendor_ruby .endif # defined(RUBY) .if defined(LANG) && !empty(LANG) GEM_ENV+= LANG=${LANG} .else GEM_ENV+= LANG=en_US.UTF-8 .endif .if defined(LC_ALL) && !empty(LC_ALL) GEM_ENV+= LC_ALL=${LC_ALL} .else GEM_ENV+= LC_ALL=en_US.UTF-8 .endif .if defined(LC_CTYPE) && !empty(LC_CTYPE) GEM_ENV+= LC_CTYPE=${LC_CTYPE} .else GEM_ENV+= LC_CTYPE=UTF-8 .endif RUBY_DEFAULT_SUFFIX?= ${RUBY_DEFAULT_VER:S/.//} RUBY_DISTVERSION?= ${RUBY_VERSION} RUBY_PORTVERSION?= ${RUBY_VERSION} MASTER_SITE_SUBDIR_RUBY?= ${RUBY_VER} RUBY_DISTNAME?= ruby-${RUBY_DISTVERSION} RUBY_WRKSRC?= ${WRKDIR}/${RUBY_DISTNAME} RUBY_RELVERSION_CODE?= ${RUBY_RELVERSION:S/.//g} RUBY_VERSION_CODE?= ${RUBY_VERSION:S/.//g} RUBY_VER= ${RUBY_VERSION:C/([[:digit:]]+\.[[:digit:]]+).*/\1/} RUBY_SUFFIX= ${RUBY_VER:S/.//} RUBY_WITHOUT_SUFFIX?= ${LOCALBASE}/bin/ruby RUBY_WITH_SUFFIX?= ${RUBY_WITHOUT_SUFFIX}${RUBY_SUFFIX} RUBY_PKGNAMEPREFIX?= ruby${RUBY_SUFFIX}- RUBY_SHLIBVER?= ${RUBY_VER:S/.//} RUBY_CONFIGURE_ARGS+= --program-prefix="" DEPENDS_ARGS+= RUBY_VER="${RUBY_VER}" RUBY_CONFIGURE_ARGS+= --program-suffix="${RUBY_SUFFIX}" RUBY_MODNAME?= ${PORTNAME} # Commands RUBY_RD2?= ${LOCALBASE}/bin/rd2 RUBY_RDOC?= ${LOCALBASE}/bin/rdoc${RUBY_VER:S/.//} # Ports RUBY_BASE_PORT?= lang/ruby${RUBY_VER:S/.//} RUBY_PORT?= ${RUBY_BASE_PORT} RUBY_RDTOOL_PORT?= textproc/ruby-rdtool # Depends DEPEND_LIBRUBY?= lib${RUBY_NAME}.so.${RUBY_SHLIBVER}:${PORTSDIR}/${RUBY_PORT} DEPEND_RUBY?= ${RUBY}:${PORTSDIR}/${RUBY_PORT} DEPEND_RUBY_RDTOOL?= ${RUBY_RD2}:${PORTSDIR}/${RUBY_RDTOOL_PORT} # Directories RUBY_LIBDIR?= ${_RUBY_SYSLIBDIR}/ruby/${RUBY_VER} RUBY_ARCHLIBDIR?= ${RUBY_LIBDIR}/${RUBY_ARCH} RUBY_SITELIBDIR?= ${_RUBY_SITEDIR}/${RUBY_VER} RUBY_SITEARCHLIBDIR?= ${RUBY_SITELIBDIR}/${RUBY_ARCH} RUBY_VENDORLIBDIR?= ${_RUBY_VENDORDIR}/${RUBY_VER} RUBY_VENDORARCHLIBDIR?= ${RUBY_VENDORLIBDIR}/${RUBY_ARCH} RUBY_DOCDIR?= ${PREFIX}/share/doc/${RUBY_NAME} RUBY_EXAMPLESDIR?= ${PREFIX}/share/examples/${RUBY_NAME} RUBY_RIDIR?= ${PREFIX}/share/ri/${RUBY_VER}/system RUBY_SITERIDIR?= ${PREFIX}/share/ri/${RUBY_VER}/site RUBY_MODDOCDIR?= ${RUBY_DOCDIR}/${RUBY_MODNAME} RUBY_MODEXAMPLESDIR?= ${RUBY_EXAMPLESDIR}/${RUBY_MODNAME} RUBY_ELISPDIR?= ${PREFIX}/lib/ruby/elisp # PLIST PLIST_RUBY_DIRS= RUBY_LIBDIR="${RUBY_LIBDIR}" \ RUBY_ARCHLIBDIR="${RUBY_ARCHLIBDIR}" \ RUBY_SITELIBDIR="${RUBY_SITELIBDIR}" \ RUBY_SITEARCHLIBDIR="${RUBY_SITEARCHLIBDIR}" \ RUBY_VENDORLIBDIR="${RUBY_VENDORLIBDIR}" \ RUBY_VENDORARCHLIBDIR="${RUBY_VENDORARCHLIBDIR}" \ RUBY_MODDOCDIR="${RUBY_MODDOCDIR}" \ RUBY_MODEXAMPLESDIR="${RUBY_MODEXAMPLESDIR}" \ RUBY_DOCDIR="${RUBY_DOCDIR}" \ RUBY_EXAMPLESDIR="${RUBY_EXAMPLESDIR}" \ RUBY_RIDIR="${RUBY_RIDIR}" \ RUBY_SITERIDIR="${RUBY_SITERIDIR}" \ RUBY_ELISPDIR="${RUBY_ELISPDIR}" PLIST_SUB+= ${PLIST_RUBY_DIRS:C,DIR="(${LOCALBASE}|${PREFIX})/,DIR=",} \ RUBY_VERSION="${RUBY_VERSION}" \ RUBY_VER="${RUBY_VER}" \ RUBY_SHLIBVER="${RUBY_SHLIBVER}" \ RUBY_ARCH="${RUBY_ARCH}" \ RUBY_SUFFIX="${RUBY_SUFFIX}" \ RUBY_NAME="${RUBY_NAME}" \ RUBY_DEFAULT_SUFFIX="${RUBY_DEFAULT_SUFFIX}" \ RUBY20=${RUBY20} \ RUBY21=${RUBY21} \ RUBY22=${RUBY22} .if defined(USE_RUBY_RDOC) MAKE_ENV+= RUBY_RDOC=${RUBY_RDOC} .endif # require check .if defined(RUBY_REQUIRE) USE_RUBY= yes .if exists(${RUBY}) RUBY_PROVIDED!= ${RUBY} -e '\ Ruby = ${RUBY_RELVERSION_CODE}; \ value = begin; ${RUBY_REQUIRE}; end and puts value' .else RUBY_PROVIDED= "should be" # the latest version is going to be installed .endif .if empty(RUBY_PROVIDED) .undef RUBY_PROVIDED .endif .endif # fix shebang lines .if defined(RUBY_SHEBANG_FILES) && !empty(RUBY_SHEBANG_FILES) USE_RUBY= yes post-patch: ruby-shebang-patch ruby-shebang-patch: @cd ${WRKSRC}; for f in ${RUBY_SHEBANG_FILES}; do \ ${ECHO_MSG} "===> Fixing the #! line of $$f"; \ TMPFILE=`mktemp -t rubyshebang`; \ cp $$f $$TMPFILE; \ ${AWK} 'BEGIN {flag = 0;} \ { \ if (flag == 0) { \ if ($$0 ~ /^#!/) { \ sub(/#!(.*\/)?(env[[:space:]]+)?ruby/, "#!${RUBY}", $$0);\ print $$0; \ } \ else { \ print "#!${RUBY}"; \ print $$0; \ } \ flag = 1; \ } else { \ print $$0; \ } \ }' $$TMPFILE > $$f; \ rm -f $$TMPFILE; \ done .endif .if ${PORT_OPTIONS:MDEBUG} RUBY_FLAGS+= -d .endif # # RubyGems support # .if defined(USE_RUBYGEMS) BUILD_DEPENDS+= ${RUBYGEMBIN}:${PORTSDIR}/devel/ruby-gems RUN_DEPENDS+= ${RUBYGEMBIN}:${PORTSDIR}/devel/ruby-gems PKGNAMEPREFIX?= rubygem- EXTRACT_SUFX= .gem EXTRACT_ONLY= DIST_SUBDIR= rubygem EXTRACT_DEPENDS+= ${RUBYGEMBIN}:${PORTSDIR}/devel/ruby-gems GEMS_BASE_DIR= lib/ruby/gems/${RUBY_VER} 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} GEM_SPEC?= ${SPEC_DIR}/${GEM_NAME}.gemspec GEM_CACHE?= ${CACHE_DIR}/${GEM_NAME}.gem PLIST_SUB+= PORTVERSION="${PORTVERSION}" \ REV="${RUBY_GEM}" \ GEMS_BASE_DIR="lib/ruby/gems/${RUBY_VER}" \ GEMS_DIR="${GEMS_DIR}" \ 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}" \ GEM_DOC_DIR="${GEM_DOC_DIR}" \ GEM_SPEC="${GEM_SPEC}" \ GEM_CACHE="${GEM_CACHE}" \ EXTRACT_SUFX="${EXTRACT_SUFX}" RUBYGEMBIN= ${LOCALBASE}/bin/gem${RUBY_VER:S/.//} . if defined(DISTFILES) GEMFILES= ${DISTFILES:C/:[^:]+$//} . else 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 ; \ fi; \ ${FALSE}; \ 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) 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 .endif # USE_RUBYGEMS # # extconf.rb support # .if defined(USE_RUBY_EXTCONF) USE_RUBY= yes RUBY_EXTCONF?= extconf.rb CONFIGURE_ARGS+= --with-opt-dir="${LOCALBASE}" CONFIGURE_ENV+= RB_USER_INSTALL=yes do-configure: ruby-extconf-configure ruby-extconf-configure: .if defined(RUBY_EXTCONF_SUBDIRS) .for d in ${RUBY_EXTCONF_SUBDIRS} @${ECHO_MSG} "===> Running ${RUBY_EXTCONF} in ${d} to configure" @cd ${CONFIGURE_WRKSRC}/${d}; \ ${SETENV} ${CONFIGURE_ENV} ${RUBY} ${RUBY_FLAGS} ${RUBY_EXTCONF} ${CONFIGURE_ARGS} .endfor .else @${ECHO_MSG} "===> Running ${RUBY_EXTCONF} to configure" @cd ${CONFIGURE_WRKSRC}; \ ${SETENV} ${CONFIGURE_ENV} ${RUBY} ${RUBY_FLAGS} ${RUBY_EXTCONF} ${CONFIGURE_ARGS} .endif .endif # # setup.rb support # .if defined(USE_RUBY_SETUP) RUBY_SETUP?= setup.rb do-configure: ruby-setup-configure ruby-setup-configure: @${ECHO_MSG} "===> Running ${RUBY_SETUP} to configure" @cd ${BUILD_WRKSRC}; \ ${SETENV} ${CONFIGURE_ENV} ${RUBY} ${RUBY_FLAGS} ${RUBY_SETUP} config ${CONFIGURE_ARGS} do-build: ruby-setup-build ruby-setup-build: @${ECHO_MSG} "===> Running ${RUBY_SETUP} to build" @cd ${BUILD_WRKSRC}; \ ${SETENV} ${MAKE_ENV} ${RUBY} ${RUBY_FLAGS} ${RUBY_SETUP} setup do-install: ruby-setup-install ruby-setup-install: @${ECHO_MSG} "===> Running ${RUBY_SETUP} to install" @cd ${INSTALL_WRKSRC}; \ ${SETENV} ${MAKE_ENV} ${RUBY} ${RUBY_FLAGS} ${RUBY_SETUP} install --prefix=${STAGEDIR} .endif .if defined(USE_LIBRUBY) LIB_DEPENDS+= ${DEPEND_LIBRUBY} .endif .if defined(USE_RUBY) .if !defined(RUBY_NO_BUILD_DEPENDS) EXTRACT_DEPENDS+= ${DEPEND_RUBY} PATCH_DEPENDS+= ${DEPEND_RUBY} BUILD_DEPENDS+= ${DEPEND_RUBY} .endif .if !defined(RUBY_NO_RUN_DEPENDS) RUN_DEPENDS+= ${DEPEND_RUBY} .endif .endif .if defined(USE_RAKE) BUILD_DEPENDS+= ${LOCALBASE}/bin/rake:${PORTSDIR}/devel/rubygem-rake RAKE_BIN= ${LOCALBASE}/bin/rake .endif # documents RUBY_NO_RD_HTML= yes .if defined(RUBY_RD_HTML) .undef RUBY_NO_RD_HTML .endif .if defined(NOPORTDOCS) RUBY_NO_RD_HTML= yes .endif .if defined(RUBY_RD_FILES) && !defined(RUBY_NO_RD_HTML) USE_RUBY_RDTOOL= yes RUBY_RD_HTML_FILES= ${RUBY_RD_FILES:S/.rb$//:S/.rd././:S/.rd$//:S/$/.html/} PLIST_SUB+= RUBY_RD_HTML_FILES="" pre-install: ruby-rd-build ruby-rd-build: .if !empty(RUBY_RD_FILES) @${ECHO_MSG} "===> Generating HTML documents from RD documents" @cd ${WRKSRC}; for rd in ${RUBY_RD_FILES}; do \ html=$$(echo $$rd | ${SED} 's/\.rb$$//;s/\.rd\././;s/\.rd$$//').html; \ ${ECHO_MSG} "${RUBY_RD2} $$rd > $$html"; \ ${RUBY_RD2} $$rd > $$html; \ done .else @${DO_NADA} .endif .else RUBY_RD_HTML_FILES= # empty PLIST_SUB+= RUBY_RD_HTML_FILES="@comment " .endif .if !defined(NOPORTDOCS) && defined(USE_RUBY_RDTOOL) BUILD_DEPENDS+= ${DEPEND_RUBY_RDTOOL} .endif .endif Index: head/devel/ruby-gems/Makefile =================================================================== --- head/devel/ruby-gems/Makefile (revision 382630) +++ head/devel/ruby-gems/Makefile (revision 382631) @@ -1,94 +1,75 @@ # Created by: Alexander Novitsky # $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 MAINTAINER= ruby@FreeBSD.org COMMENT= Package management framework for the Ruby language LICENSE= MIT RUBY LICENSE_COMB= dual USE_RUBY= yes 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} GEMS_VER_DIR_P= ${GEMS_BASE_DIR_P}/%%RUBY_VER%% GEMS_DOC_BASE_DIR= ${GEMS_VER_DIR}/doc GEMS_DOC_BASE_DIR_P= ${GEMS_VER_DIR_P}/doc GEMS_DOC_DIR= ${GEMS_DOC_BASE_DIR}/${DISTNAME} 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 .if ${PORT_OPTIONS:MDOCS} RUBY_SETUP_OPTIONS= --ri --rdoc --destdir=${STAGEDIR} GEM_ENV+= GEM_HOME=${STAGEDIR}${PREFIX}/${GEMS_VER_DIR} .else RUBY_SETUP_OPTIONS= --no-ri --no-rdoc --destdir=${STAGEDIR} .endif do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${GEMS_DOC_BASE_DIR}/ @${TOUCH} ${STAGEDIR}${PREFIX}/${GEMS_DOC_BASE_DIR}/.keep_this cd ${WRKSRC}; ${SETENV} ${GEM_ENV} ${RUBY} ${RUBY_SETUP} ${RUBY_SETUP_OPTIONS} post-install: @${LN} -sf gem${RUBY_VER_SHORT} ${STAGEDIR}${PREFIX}/bin/gem # # Find all RDOC and RI files # .if ${PORT_OPTIONS:MDOCS} @${FIND} -ds ${STAGEDIR}${PREFIX}/${GEMS_DOC_DIR}/ ! -type d | \ ${SED} 's,^${STAGEDIR}${PREFIX}/,,' >> ${TMPPLIST} - @${FIND} -ds ${STAGEDIR}${PREFIX}/${GEMS_DOC_DIR}/ -type d -mindepth 1 | \ - ${SED} -E -e 's,^${STAGEDIR}${PREFIX}/,@dirrm ,' >> ${TMPPLIST} - @${ECHO_CMD} "@dirrm ${GEMS_DOC_DIR}" >> ${TMPPLIST} .endif - - @${ECHO_CMD} "@unexec rmdir %D/lib/ruby/gems/${RUBY_VER}/doc 2>/dev/null || true" >> ${TMPPLIST} - @${ECHO_CMD} "@unexec rmdir %D/lib/ruby/gems/${RUBY_VER} 2>/dev/null || true" >> ${TMPPLIST} - @${ECHO_CMD} "@unexec rmdir %D/lib/ruby/gems 2>/dev/null || true" >> ${TMPPLIST} - @${ECHO_CMD} "@unexec rmdir %D/lib/ruby 2>/dev/null || true" >> ${TMPPLIST} - -# This target is only meant to be used by the port maintainer. -x-generate-plist: - ${ECHO} bin/gem > pkg-plist.new - ${ECHO} bin/gem%%RUBY_VER_SHORT%% >> pkg-plist.new - ${ECHO} %%RUBY_SITELIBDIR%%/gauntlet_rubygems.rb >> pkg-plist.new - ${ECHO} %%RUBY_SITELIBDIR%%/rbconfig/datadir.rb >> pkg-plist.new - ${ECHO} %%RUBY_SITELIBDIR%%/rubygems.rb >> pkg-plist.new - ${FIND} ${STAGEDIR}${RUBY_SITELIBDIR}/rubygems -type f | ${SORT} | ${SED} -e 's,${STAGEDIR}${RUBY_SITELIBDIR},%%RUBY_SITELIBDIR%%,' >> pkg-plist.new - ${ECHO} %%RUBY_SITELIBDIR%%/ubygems.rb >> pkg-plist.new - ${FIND} ${STAGEDIR}${PREFIX}/${GEMS_DOC_DIR} -type f | ${SORT} | ${SED} -e 's,${STAGEDIR}${PREFIX}/${GEMS_DOC_DIR},%%PORTDOCS%%${GEMS_DOC_DIR_P},' >> pkg-plist.new - - ${FIND} ${STAGEDIR}${RUBY_SITELIBDIR}/rubygems -type d | ${SORT} -r | ${SED} -e 's,${STAGEDIR}${RUBY_SITELIBDIR},@dirrm %%RUBY_SITELIBDIR%%,' >> pkg-plist.new - ${ECHO} @dirrm %%RUBY_SITELIBDIR%%/rbconfig >> pkg-plist.new - ${ECHO} @dirrmtry ${GEMS_VER_DIR_P}/specifications >> pkg-plist.new - ${ECHO} @dirrmtry ${GEMS_VER_DIR_P}/gems >> pkg-plist.new - ${ECHO} @dirrmtry ${GEMS_VER_DIR_P}/cache >> pkg-plist.new - ${FIND} ${STAGEDIR}${PREFIX}/${GEMS_DOC_DIR} -type d | ${SORT} -r | ${SED} -e 's,${STAGEDIR}${PREFIX}/${GEMS_DOC_DIR},%%PORTDOCS%%@dirrm ${GEMS_DOC_DIR_P},' >> pkg-plist.new - ${ECHO} ${GEMS_DOC_BASE_DIR_P}/.keep_this >> pkg-plist.new - ${ECHO} @dirrmtry ${GEMS_DOC_BASE_DIR_P} >> pkg-plist.new - ${ECHO} @dirrmtry ${GEMS_VER_DIR_P} >> pkg-plist.new - ${ECHO} @dirrmtry ${GEMS_BASE_DIR_P} >> pkg-plist.new .include Index: head/devel/ruby-gems/distinfo =================================================================== --- head/devel/ruby-gems/distinfo (revision 382630) +++ head/devel/ruby-gems/distinfo (revision 382631) @@ -1,2 +1,2 @@ -SHA256 (ruby/rubygems-1.8.30.tgz) = 3ff089f3cf67413b990b344af167750738a5767f25a889c019a87aa20667721c -SIZE (ruby/rubygems-1.8.30.tgz) = 273966 +SHA256 (ruby/rubygems-2.4.5.tgz) = 47d182ba52da02d4400601efbf62f64c25ff83856f8e269f8289333f292566d9 +SIZE (ruby/rubygems-2.4.5.tgz) = 446665 Index: head/devel/ruby-gems/pkg-plist =================================================================== --- head/devel/ruby-gems/pkg-plist (revision 382630) +++ head/devel/ruby-gems/pkg-plist (revision 382631) @@ -1,103 +1,166 @@ 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 %%RUBY_SITELIBDIR%%/rubygems/commands/cert_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/check_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/cleanup_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/contents_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/dependency_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/environment_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/fetch_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/generate_index_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/help_command.rb %%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 %%RUBY_SITELIBDIR%%/rubygems/commands/push_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/query_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/rdoc_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/search_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/server_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/setup_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/sources_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/specification_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/stale_command.rb %%RUBY_SITELIBDIR%%/rubygems/commands/uninstall_command.rb %%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 %%RUBY_SITELIBDIR%%/rubygems/package/tar_writer.rb %%RUBY_SITELIBDIR%%/rubygems/package_task.rb %%RUBY_SITELIBDIR%%/rubygems/path_support.rb %%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 %%RUBY_SITELIBDIR%%/rubygems/ssl_certs/DigiCertHighAssuranceEVRootCA.pem %%RUBY_SITELIBDIR%%/rubygems/ssl_certs/EntrustnetSecureServerCertificationAuthority.pem %%RUBY_SITELIBDIR%%/rubygems/ssl_certs/GeoTrustGlobalCA.pem %%RUBY_SITELIBDIR%%/rubygems/syck_hack.rb %%RUBY_SITELIBDIR%%/rubygems/test_case.rb %%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%% Index: head/devel/rubygem-activemessaging/files/patch-gemspec =================================================================== --- head/devel/rubygem-activemessaging/files/patch-gemspec (revision 382630) +++ head/devel/rubygem-activemessaging/files/patch-gemspec (nonexistent) @@ -1,23 +0,0 @@ ---- ./activemessaging-0.13.0.gemspec.orig 2014-08-23 19:10:52.008995535 +0000 -+++ ./activemessaging-0.13.0.gemspec 2014-08-23 19:10:47.000000000 +0000 -@@ -18,20 +18,6 @@ - date: 2014-06-18 00:00:00.000000000 Z - dependencies: - - !ruby/object:Gem::Dependency -- name: activemessaging -- requirement: !ruby/object:Gem::Requirement -- requirements: -- - - '>=' -- - !ruby/object:Gem::Version -- version: '0' -- type: :runtime -- prerelease: false -- version_requirements: !ruby/object:Gem::Requirement -- requirements: -- - - '>=' -- - !ruby/object:Gem::Version -- version: '0' --- !ruby/object:Gem::Dependency - name: jeweler - requirement: !ruby/object:Gem::Requirement - requirements: Property changes on: head/devel/rubygem-activemessaging/files/patch-gemspec ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/devel/rubygem-analogger/files/patch-gemspec =================================================================== --- head/devel/rubygem-analogger/files/patch-gemspec (revision 382630) +++ head/devel/rubygem-analogger/files/patch-gemspec (revision 382631) @@ -1,18 +1,11 @@ ---- analogger-0.5.0.gemspec.orig 2013-02-26 02:45:44.000000000 +0000 -+++ analogger-0.5.0.gemspec 2013-02-26 02:45:54.000000000 +0000 -@@ -33,7 +33,6 @@ - - external - - src - - test --- doc - - setup.rb - - INSTALL - - README -@@ -45,7 +44,6 @@ - - src/swiftcore/Analogger - - src/swiftcore/Analogger.rb - - src/swiftcore/Analogger/Client.rb --- test/log - - test/TC_Analogger.rb - - test/tc_template.rb - - test/analogger.cnf +--- analogger.gemspec.orig 2014-11-29 13:26:51.000000000 +0000 ++++ analogger.gemspec 2014-11-29 13:27:09.000000000 +0000 +@@ -13,7 +13,7 @@ + s.email = "wyhaines@gmail.com" + s.executables = ["analogger"] + s.extra_rdoc_files = ["README"] +- s.files = ["INSTALL", "README", "analogger.gemspec", "bin", "bin/analogger", "doc", "external", "external/package.rb", "external/test_support.rb", "setup.rb", "src", "src/swiftcore", "src/swiftcore/Analogger", "src/swiftcore/Analogger.rb", "src/swiftcore/Analogger/Client.rb", "test", "test/TC_Analogger.rb", "test/analogger.cnf", "test/analogger2.cnf", "test/log", "test/tc_template.rb"] ++ s.files = ["INSTALL", "README", "analogger.gemspec", "bin", "bin/analogger", "external", "external/package.rb", "external/test_support.rb", "setup.rb", "src", "src/swiftcore", "src/swiftcore/Analogger", "src/swiftcore/Analogger.rb", "src/swiftcore/Analogger/Client.rb", "test", "test/TC_Analogger.rb", "test/analogger.cnf", "test/analogger2.cnf", "test/tc_template.rb"] + s.homepage = "http://analogger.swiftcore.org/" + s.rdoc_options = ["--title", "Swiftcore::Analogger", "--main", "README", "--line-numbers"] + s.required_ruby_version = Gem::Requirement.new("> 0.0.0") Index: head/devel/rubygem-bones/Makefile =================================================================== --- head/devel/rubygem-bones/Makefile (revision 382630) +++ head/devel/rubygem-bones/Makefile (revision 382631) @@ -1,28 +1,24 @@ # Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ PORTNAME= bones PORTVERSION= 3.8.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Tool to create new projects from code skeleton LICENSE= MIT RUN_DEPENDS= rubygem-little-plugger>=1.1:${PORTSDIR}/devel/rubygem-little-plugger \ rubygem-loquacious>=1.9:${PORTSDIR}/devel/rubygem-loquacious \ rubygem-rake>=0.8.7:${PORTSDIR}/devel/rubygem-rake USE_RUBY= yes USE_RUBYGEMS= yes 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 Index: head/devel/rubygem-clio/files/patch-gemspec =================================================================== --- head/devel/rubygem-clio/files/patch-gemspec (revision 382630) +++ head/devel/rubygem-clio/files/patch-gemspec (revision 382631) @@ -1,18 +1,11 @@ ---- clio-0.3.0.gemspec.orig 2013-02-26 02:53:17.000000000 +0000 -+++ clio-0.3.0.gemspec 2013-02-26 02:53:49.000000000 +0000 -@@ -27,7 +27,6 @@ - - VERSION - - COPYING - files: --- bin - - lib - - meta - - spec -@@ -76,7 +75,6 @@ - - spec/usage - - spec/commandline - - spec/string --- spec/commandable - - spec/usage/define.rd - - spec/usage/parse.rd - - spec/commandline/bracket.rd +--- clio.gemspec.orig 2014-11-29 13:47:58.000000000 +0000 ++++ clio.gemspec 2014-11-29 13:48:17.000000000 +0000 +@@ -12,7 +12,7 @@ + s.description = "Clio makes commandline interfaces easy. It provides both commandline parsing as well as console output routines." + s.email = "transfire@gmail.com" + s.extra_rdoc_files = ["README", "MANIFEST", "CHANGES", "RELEASE", "VERSION", "COPYING"] +- s.files = ["CHANGES", "COPYING", "MANIFEST", "README", "RELEASE", "VERSION", "bin", "lib", "lib/clio", "lib/clio/ansicode.rb", "lib/clio/buffer.rb", "lib/clio/commandable.rb", "lib/clio/commandline.rb", "lib/clio/consoleutils.rb", "lib/clio/errors.rb", "lib/clio/facets", "lib/clio/facets/kernel.rb", "lib/clio/facets/string.rb", "lib/clio/layout", "lib/clio/layout.rb", "lib/clio/layout/flow.rb", "lib/clio/layout/line.rb", "lib/clio/layout/list.rb", "lib/clio/layout/split.rb", "lib/clio/layout/stack.rb", "lib/clio/layout/table.rb", "lib/clio/progressbar.rb", "lib/clio/string.rb", "lib/clio/usage", "lib/clio/usage.rb", "lib/clio/usage/argument.rb", "lib/clio/usage/command.rb", "lib/clio/usage/interface.rb", "lib/clio/usage/option.rb", "lib/clio/usage/parser.rb", "lib/clio/usage/signature.rb", "lib/clio/usage/subcommand.rb", "meta", "meta/abstract", "meta/authors", "meta/created", "meta/homepage", "meta/license", "meta/repository", "meta/summary", "spec", "spec/commandable", "spec/commandline", "spec/commandline/autousage.rd", "spec/commandline/bracket.rd", "spec/commandline/completion.rd", "spec/commandline/define.rd", "spec/commandline/method.rd", "spec/commandline/parse.rd", "spec/commandline/scenario.rd", "spec/commandline/subclass.rd", "spec/string", "spec/string/unit.rd", "spec/usage", "spec/usage/define.rd", "spec/usage/parse.rd"] ++ s.files = ["CHANGES", "COPYING", "MANIFEST", "README", "RELEASE", "VERSION", "lib", "lib/clio", "lib/clio/ansicode.rb", "lib/clio/buffer.rb", "lib/clio/commandable.rb", "lib/clio/commandline.rb", "lib/clio/consoleutils.rb", "lib/clio/errors.rb", "lib/clio/facets", "lib/clio/facets/kernel.rb", "lib/clio/facets/string.rb", "lib/clio/layout", "lib/clio/layout.rb", "lib/clio/layout/flow.rb", "lib/clio/layout/line.rb", "lib/clio/layout/list.rb", "lib/clio/layout/split.rb", "lib/clio/layout/stack.rb", "lib/clio/layout/table.rb", "lib/clio/progressbar.rb", "lib/clio/string.rb", "lib/clio/usage", "lib/clio/usage.rb", "lib/clio/usage/argument.rb", "lib/clio/usage/command.rb", "lib/clio/usage/interface.rb", "lib/clio/usage/option.rb", "lib/clio/usage/parser.rb", "lib/clio/usage/signature.rb", "lib/clio/usage/subcommand.rb", "meta", "meta/abstract", "meta/authors", "meta/created", "meta/homepage", "meta/license", "meta/repository", "meta/summary", "spec", "spec/commandline", "spec/commandline/autousage.rd", "spec/commandline/bracket.rd", "spec/commandline/completion.rd", "spec/commandline/define.rd", "spec/commandline/method.rd", "spec/commandline/parse.rd", "spec/commandline/scenario.rd", "spec/commandline/subclass.rd", "spec/string", "spec/string/unit.rd", "spec/usage", "spec/usage/define.rd", "spec/usage/parse.rd"] + s.homepage = "http://clio.rubyforge.org" + s.rdoc_options = ["--inline-source", "--title", "clio api", "--main", "README"] + s.rubyforge_project = "clio" Index: head/devel/rubygem-debugger/Makefile =================================================================== --- head/devel/rubygem-debugger/Makefile (revision 382630) +++ head/devel/rubygem-debugger/Makefile (revision 382631) @@ -1,37 +1,37 @@ # Created by: Vladimir Kondratiev # $FreeBSD$ PORTNAME= debugger PORTVERSION= 1.6.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ports@FreeBSD.org COMMENT= Fast implementation of the standard Ruby debugger LICENSE= BSD2CLAUSE FETCH_DEPENDS= ${NONEXISTENT}:${PORTSDIR}/${RUBY_PORT}:patch RUN_DEPENDS= rubygem-columnize>=0.3.1:${PORTSDIR}/devel/rubygem-columnize \ rubygem-debugger-linecache>=1.2.0:${PORTSDIR}/devel/rubygem-debugger-linecache USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/rdebug man/man1/rdebug.1.gz CONFIGURE_ARGS= --with-ruby-include=${WRKDIR}/ruby post-extract: @${LN} -sf `cd ${PORTSDIR}/${RUBY_PORT}; make -V WRKSRC` ${WRKDIR}/ruby post-install: ${INSTALL_MAN} ${WRKSRC}/man/rdebug.1 ${STAGEDIR}${PREFIX}/man/man1 .include -.if ${RUBY_VER} == 2.1 +.if ${RUBY_VER} >= 2.1 BROKEN= Does not build with Ruby 2.1 .endif .include Index: head/devel/rubygem-debugger/files/patch-debugger-1.6.2.gemspec =================================================================== --- head/devel/rubygem-debugger/files/patch-debugger-1.6.2.gemspec (revision 382630) +++ head/devel/rubygem-debugger/files/patch-debugger-1.6.2.gemspec (nonexistent) @@ -1,25 +0,0 @@ ---- debugger-1.6.2.gemspec.orig 2013-07-27 12:49:18.000000000 +0400 -+++ debugger-1.6.2.gemspec 2013-07-27 13:03:58.000000000 +0400 -@@ -30,22 +30,6 @@ - - !ruby/object:Gem::Version - version: 0.3.1 - - !ruby/object:Gem::Dependency -- name: debugger-ruby_core_source -- requirement: !ruby/object:Gem::Requirement -- none: false -- requirements: -- - - ~> -- - !ruby/object:Gem::Version -- version: 1.2.3 -- type: :runtime -- prerelease: false -- version_requirements: !ruby/object:Gem::Requirement -- none: false -- requirements: -- - - ~> -- - !ruby/object:Gem::Version -- version: 1.2.3 --- !ruby/object:Gem::Dependency - name: debugger-linecache - requirement: !ruby/object:Gem::Requirement - none: false Property changes on: head/devel/rubygem-debugger/files/patch-debugger-1.6.2.gemspec ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/devel/rubygem-debugger/files/patch-gemspec =================================================================== --- head/devel/rubygem-debugger/files/patch-gemspec (nonexistent) +++ head/devel/rubygem-debugger/files/patch-gemspec (revision 382631) @@ -0,0 +1,10 @@ +--- debugger.gemspec.orig 2014-11-29 13:54:11.000000000 +0000 ++++ debugger.gemspec 2014-11-29 13:54:46.000000000 +0000 +@@ -26,7 +26,6 @@ + + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then + s.add_runtime_dependency(%q, [">= 0.3.1"]) +- s.add_runtime_dependency(%q, ["~> 1.2.3"]) + s.add_runtime_dependency(%q, ["~> 1.2.0"]) + s.add_development_dependency(%q, ["~> 0.9.2.2"]) + s.add_development_dependency(%q, ["~> 0.8.0"]) Property changes on: head/devel/rubygem-debugger/files/patch-gemspec ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/devel/rubygem-launchy22/files/patch-gemspec =================================================================== --- head/devel/rubygem-launchy22/files/patch-gemspec (nonexistent) +++ head/devel/rubygem-launchy22/files/patch-gemspec (revision 382631) @@ -0,0 +1,10 @@ +--- launchy.gemspec.orig 2014-11-30 03:43:33.000000000 +0000 ++++ launchy.gemspec 2014-11-30 03:43:39.000000000 +0000 +@@ -11,7 +11,6 @@ + s.date = "2013-02-06" + s.description = "Launchy is helper class for launching cross-platform applications in a fire and forget manner. There are application concepts (browser, email client, etc) that are common across all platforms, and they may be launched differently on each platform. Launchy is here to make a common approach to launching external application from within ruby programs." + s.email = "jeremy@copiousfreetime.org" +- s.executables = ["launchy"] + s.extra_rdoc_files = ["HISTORY.rdoc", "Manifest.txt", "README.rdoc"] + s.files = ["CONTRIBUTING.md", "HISTORY.rdoc", "LICENSE", "Manifest.txt", "README.rdoc", "Rakefile", "bin/launchy", "lib/launchy.rb", "lib/launchy/application.rb", "lib/launchy/applications/browser.rb", "lib/launchy/cli.rb", "lib/launchy/deprecated.rb", "lib/launchy/descendant_tracker.rb", "lib/launchy/detect.rb", "lib/launchy/detect/host_os.rb", "lib/launchy/detect/host_os_family.rb", "lib/launchy/detect/nix_desktop_environment.rb", "lib/launchy/detect/ruby_engine.rb", "lib/launchy/detect/runner.rb", "lib/launchy/error.rb", "lib/launchy/os_family.rb", "lib/launchy/version.rb", "spec/application_spec.rb", "spec/applications/browser_spec.rb", "spec/cli_spec.rb", "spec/detect/host_os_family_spec.rb", "spec/detect/host_os_spec.rb", "spec/detect/nix_desktop_environment_spec.rb", "spec/detect/ruby_engine_spec.rb", "spec/detect/runner_spec.rb", "spec/launchy_spec.rb", "spec/mock_application.rb", "spec/spec_helper.rb", "spec/tattle-host-os.yaml", "spec/version_spec.rb", "tasks/default.rake", "tasks/this.rb"] + s.homepage = "http://github.com/copiousfreetime/launchy" Property changes on: head/devel/rubygem-launchy22/files/patch-gemspec ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/devel/rubygem-rapt/Makefile =================================================================== --- head/devel/rubygem-rapt/Makefile (revision 382630) +++ head/devel/rubygem-rapt/Makefile (revision 382631) @@ -1,17 +1,18 @@ # Created by: ijliao # $FreeBSD$ PORTNAME= rapt PORTVERSION= 0.2.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Rails Plugin Tool USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes PLIST_FILES= bin/rapt +USES= libtool .include Index: head/devel/rubygem-rapt/files/patch-gemspec =================================================================== --- head/devel/rubygem-rapt/files/patch-gemspec (revision 382630) +++ head/devel/rubygem-rapt/files/patch-gemspec (revision 382631) @@ -1,14 +1,11 @@ ---- rapt-0.2.2.gemspec.orig 2013-02-26 02:37:18.000000000 +0000 -+++ rapt-0.2.2.gemspec 2013-02-26 02:38:04.000000000 +0000 -@@ -56,11 +56,9 @@ - - test/sandbox/rails_app - - test/sandbox/rails_app/config - - test/sandbox/rails_app/script --- test/sandbox/rails_app/vendor - - test/sandbox/rails_app/config/boot.rb - - test/sandbox/rails_app/config/environment.rb - - test/sandbox/rails_app/script/plugin --- test/sandbox/rails_app/vendor/plugins - test_files: [] - - rdoc_options: [] +--- rapt.gemspec.orig 2014-11-30 03:53:13.000000000 +0000 ++++ rapt.gemspec 2014-11-30 03:53:38.000000000 +0000 +@@ -12,7 +12,7 @@ + s.description = "Install, remove, and discover new plugins for your Ruby on Rails app." + s.email = "boss@topfunky.com" + s.executables = ["rapt"] +- s.files = ["CHANGELOG", "MIT-LICENSE", "README", "Rakefile", "bin/rapt", "lib/commands", "lib/commands/plugin", "lib/commands/plugin.rb", "lib/commands/plugin/commands.rb", "lib/commands/plugin/plugin.rb", "lib/commands/plugin/plugin_pack.rb", "lib/commands/plugin/rails_environment.rb", "lib/commands/plugin/recursive_http_fetcher.rb", "lib/commands/plugin/repositories.rb", "lib/commands/plugin/repository.rb", "test/commands", "test/commands/plugin", "test/commands/plugin/plugin_test.rb", "test/commands/plugin/repository_test.rb", "test/commands/plugin_test.rb", "test/mocks", "test/mocks/rails_environment.rb", "test/sandbox", "test/sandbox/rails_app", "test/sandbox/rails_app/config", "test/sandbox/rails_app/config/boot.rb", "test/sandbox/rails_app/config/environment.rb", "test/sandbox/rails_app/script", "test/sandbox/rails_app/script/plugin", "test/sandbox/rails_app/vendor", "test/sandbox/rails_app/vendor/plugins"] ++ s.files = ["CHANGELOG", "MIT-LICENSE", "README", "Rakefile", "bin/rapt", "lib/commands", "lib/commands/plugin", "lib/commands/plugin.rb", "lib/commands/plugin/commands.rb", "lib/commands/plugin/plugin.rb", "lib/commands/plugin/plugin_pack.rb", "lib/commands/plugin/rails_environment.rb", "lib/commands/plugin/recursive_http_fetcher.rb", "lib/commands/plugin/repositories.rb", "lib/commands/plugin/repository.rb", "test/commands", "test/commands/plugin", "test/commands/plugin/plugin_test.rb", "test/commands/plugin/repository_test.rb", "test/commands/plugin_test.rb", "test/mocks", "test/mocks/rails_environment.rb", "test/sandbox", "test/sandbox/rails_app", "test/sandbox/rails_app/config", "test/sandbox/rails_app/config/boot.rb", "test/sandbox/rails_app/config/environment.rb", "test/sandbox/rails_app/script", "test/sandbox/rails_app/script/plugin"] + s.homepage = "http://rapt.rubyforge.org" + s.required_ruby_version = Gem::Requirement.new("> 0.0.0") + s.requirements = ["none"] Index: head/devel/rubygem-term-ansicolor/Makefile =================================================================== --- head/devel/rubygem-term-ansicolor/Makefile (revision 382630) +++ head/devel/rubygem-term-ansicolor/Makefile (revision 382631) @@ -1,34 +1,29 @@ # Created by: Cheng-Lung Sung # $FreeBSD$ PORTNAME= term-ansicolor PORTVERSION= 1.3.0 CATEGORIES= devel ruby MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Term::ANSIColor for Ruby LICENSE= GPLv2 RUN_DEPENDS= rubygem-tins>=1.0:${PORTSDIR}/devel/rubygem-tins OPTIONS_DEFINE= EXAMPLES USE_RUBY= yes USE_RUBYGEMS= yes 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}/ .include Index: head/devel/rubygem-term-ansicolor/files/patch-gemspec =================================================================== --- head/devel/rubygem-term-ansicolor/files/patch-gemspec (nonexistent) +++ head/devel/rubygem-term-ansicolor/files/patch-gemspec (revision 382631) @@ -0,0 +1,11 @@ +--- term-ansicolor.gemspec.orig 2015-01-22 02:35:45.000000000 +0000 ++++ term-ansicolor.gemspec 2015-01-22 02:36:29.000000000 +0000 +@@ -11,7 +11,7 @@ + s.date = "2014-02-06" + s.description = "This library uses ANSI escape sequences to control the attributes of terminal output" + s.email = "flori@ping.de" +- s.executables = ["cdiff", "decolor", "colortab", "term_mandel", "term_display"] ++ s.executables = ["colortab", "term_mandel", "term_display"] + s.extra_rdoc_files = ["README.rdoc", "lib/term/ansicolor.rb", "lib/term/ansicolor/attribute.rb", "lib/term/ansicolor/ppm_reader.rb", "lib/term/ansicolor/rgb_color_metrics.rb", "lib/term/ansicolor/rgb_triple.rb", "lib/term/ansicolor/version.rb"] + s.files = [".gitignore", ".travis.yml", "CHANGES", "COPYING", "Gemfile", "README.rdoc", "Rakefile", "VERSION", "bin/cdiff", "bin/colortab", "bin/decolor", "bin/term_display", "bin/term_mandel", "examples/ColorTest.gif", "examples/Mona_Lisa.jpg", "examples/Stilleben.jpg", "examples/example.rb", "examples/lambda-red-plain.ppm", "examples/lambda-red.png", "examples/lambda-red.ppm", "examples/pacman.jpg", "examples/smiley.png", "examples/wool.jpg", "lib/term/ansicolor.rb", "lib/term/ansicolor/.keep", "lib/term/ansicolor/attribute.rb", "lib/term/ansicolor/ppm_reader.rb", "lib/term/ansicolor/rgb_color_metrics.rb", "lib/term/ansicolor/rgb_triple.rb", "lib/term/ansicolor/version.rb", "term-ansicolor.gemspec", "tests/ansicolor_test.rb", "tests/attribute_test.rb", "tests/ppm_reader_test.rb", "tests/rgb_color_metrics_test.rb", "tests/rgb_triple_test.rb", "tests/test_helper.rb"] + s.homepage = "http://flori.github.com/term-ansicolor" Property changes on: head/devel/rubygem-term-ansicolor/files/patch-gemspec ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/devel/rubygem-tilt1/files/patch-gemspec =================================================================== --- head/devel/rubygem-tilt1/files/patch-gemspec (revision 382630) +++ head/devel/rubygem-tilt1/files/patch-gemspec (revision 382631) @@ -1,11 +1,23 @@ ---- tilt-1.4.1.gemspec.orig 2014-03-22 22:37:21.538619659 +0000 -+++ tilt-1.4.1.gemspec 2014-03-22 22:39:47.694609404 +0000 -@@ -381,8 +381,6 @@ - version: '0' - description: Generic interface to multiple Ruby template engines - email: r@tomayko.com --executables: --- tilt - extensions: [] - extra_rdoc_files: [] - files: +--- tilt.gemspec.orig 2014-11-29 02:13:13.000000000 +0000 ++++ tilt.gemspec 2014-11-29 02:13:29.000000000 +0000 +@@ -11,7 +11,6 @@ + s.date = "2013-05-08" + s.description = "Generic interface to multiple Ruby template engines" + s.email = "r@tomayko.com" +- s.executables = ["tilt"] + s.files = ["CHANGELOG.md", "COPYING", "Gemfile", "HACKING", "README.md", "Rakefile", "TEMPLATES.md", "bin/tilt", "lib/tilt.rb", "lib/tilt/asciidoc.rb", "lib/tilt/builder.rb", "lib/tilt/coffee.rb", "lib/tilt/css.rb", "lib/tilt/csv.rb", "lib/tilt/erb.rb", "lib/tilt/etanni.rb", "lib/tilt/haml.rb", "lib/tilt/liquid.rb", "lib/tilt/markaby.rb", "lib/tilt/markdown.rb", "lib/tilt/nokogiri.rb", "lib/tilt/plain.rb", "lib/tilt/radius.rb", "lib/tilt/rdoc.rb", "lib/tilt/string.rb", "lib/tilt/template.rb", "lib/tilt/textile.rb", "lib/tilt/wiki.rb", "lib/tilt/yajl.rb", "test/contest.rb", "test/markaby/locals.mab", "test/markaby/markaby.mab", "test/markaby/markaby_other_static.mab", "test/markaby/render_twice.mab", "test/markaby/scope.mab", "test/markaby/yielding.mab", "test/tilt_asciidoctor_test.rb", "test/tilt_blueclothtemplate_test.rb", "test/tilt_buildertemplate_test.rb", "test/tilt_cache_test.rb", "test/tilt_coffeescripttemplate_test.rb", "test/tilt_compilesite_test.rb", "test/tilt_creoletemplate_test.rb", "test/tilt_csv_test.rb", "test/tilt_erbtemplate_test.rb", "test/tilt_erubistemplate_test.rb", "test/tilt_etannitemplate_test.rb", "test/tilt_fallback_test.rb", "test/tilt_hamltemplate_test.rb", "test/tilt_kramdown_test.rb", "test/tilt_lesstemplate_test.less", "test/tilt_lesstemplate_test.rb", "test/tilt_liquidtemplate_test.rb", "test/tilt_markaby_test.rb", "test/tilt_markdown_test.rb", "test/tilt_marukutemplate_test.rb", "test/tilt_nokogiritemplate_test.rb", "test/tilt_radiustemplate_test.rb", "test/tilt_rdiscounttemplate_test.rb", "test/tilt_rdoctemplate_test.rb", "test/tilt_redcarpettemplate_test.rb", "test/tilt_redclothtemplate_test.rb", "test/tilt_sasstemplate_test.rb", "test/tilt_stringtemplate_test.rb", "test/tilt_template_test.rb", "test/tilt_test.rb", "test/tilt_wikiclothtemplate_test.rb", "test/tilt_yajltemplate_test.rb", "tilt.gemspec"] + s.homepage = "http://github.com/rtomayko/tilt/" + s.licenses = ["MIT"] +@@ -41,12 +40,10 @@ + s.add_development_dependency(%q, [">= 0"]) + s.add_development_dependency(%q, [">= 0"]) + s.add_development_dependency(%q, [">= 0"]) +- s.add_development_dependency(%q, [">= 0"]) + s.add_development_dependency(%q, [">= 0"]) + s.add_development_dependency(%q, [">= 0"]) + s.add_development_dependency(%q, [">= 0"]) + s.add_development_dependency(%q, [">= 0"]) +- s.add_development_dependency(%q, [">= 0"]) + else + s.add_dependency(%q, [">= 0.1.0"]) + s.add_dependency(%q, [">= 0"]) Property changes on: head/devel/rubygem-tilt1/files/patch-gemspec ___________________________________________________________________ Modified: fbsd:nokeywords ## -1 +1 ## -on \ No newline at end of property +yes \ No newline at end of property Index: head/devel/rubygem-toml/Makefile =================================================================== --- head/devel/rubygem-toml/Makefile (revision 382630) +++ head/devel/rubygem-toml/Makefile (revision 382631) @@ -1,23 +1,20 @@ # Created by: Sunpoet Po-Chuan Hsieh # $FreeBSD$ PORTNAME= toml PORTVERSION= 0.1.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= TOML parser LICENSE= MIT RUN_DEPENDS= rubygem-parslet>=1.5.0:${PORTSDIR}/textproc/rubygem-parslet USE_RUBY= yes USE_RUBYGEMS= yes RUBYGEM_AUTOPLIST= yes -post-patch: - @${REINPLACE_CMD} -e '18 s|~>|>=|' ${WRKSRC}/${GEM_NAME}.gemspec - .include Index: head/devel/rubygem-toml/files/patch-gemspec =================================================================== --- head/devel/rubygem-toml/files/patch-gemspec (nonexistent) +++ head/devel/rubygem-toml/files/patch-gemspec (revision 382631) @@ -0,0 +1,11 @@ +--- toml.gemspec.orig 2015-01-21 20:38:16.000000000 +0000 ++++ toml.gemspec 2015-01-21 20:38:37.000000000 +0000 +@@ -30,7 +30,7 @@ + s.add_dependency(%q, [">= 0"]) + end + else +- s.add_dependency(%q, ["~> 1.5.0"]) ++ s.add_dependency(%q, [">= 1.5.0"]) + s.add_dependency(%q, [">= 0"]) + end + end Property changes on: head/devel/rubygem-toml/files/patch-gemspec ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/devel/rubygem-travis/files/patch-travis-1.7.5.gemspec =================================================================== --- head/devel/rubygem-travis/files/patch-travis-1.7.5.gemspec (revision 382630) +++ head/devel/rubygem-travis/files/patch-travis-1.7.5.gemspec (nonexistent) @@ -1,12 +0,0 @@ ---- travis-1.7.5.gemspec.orig 2015-01-21 16:49:45.809378003 +0300 -+++ travis-1.7.5.gemspec 2015-01-21 16:51:09.773372219 +0300 -@@ -142,9 +142,6 @@ - name: pry - requirement: !ruby/object:Gem::Requirement - requirements: -- - - "<" -- - !ruby/object:Gem::Version -- version: '0.10' - - - "~>" - - !ruby/object:Gem::Version - version: '0.9' Property changes on: head/devel/rubygem-travis/files/patch-travis-1.7.5.gemspec ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/devel/rubygem-travis/files/patch-travis.gemspec =================================================================== --- head/devel/rubygem-travis/files/patch-travis.gemspec (revision 382630) +++ head/devel/rubygem-travis/files/patch-travis.gemspec (nonexistent) @@ -1,11 +0,0 @@ ---- travis.gemspec.orig 2015-01-21 16:49:45.798378381 +0300 -+++ travis.gemspec 2015-01-21 16:50:23.063375806 +0300 -@@ -286,7 +286,7 @@ - s.add_dependency "backports" - s.add_dependency "gh", "~> 0.13" - s.add_dependency "launchy", "~> 2.1" -- s.add_dependency "pry", "< 0.10", "~> 0.9" -+ s.add_dependency "pry", "~> 0.9" - s.add_dependency "typhoeus", "~> 0.6", ">= 0.6.8" - s.add_dependency "pusher-client", "~> 0.4" - s.add_dependency "addressable", "~> 2.3" Property changes on: head/devel/rubygem-travis/files/patch-travis.gemspec ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/devel/rubygem-travis/files/patch-gemspec =================================================================== --- head/devel/rubygem-travis/files/patch-gemspec (nonexistent) +++ head/devel/rubygem-travis/files/patch-gemspec (revision 382631) @@ -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, [">= 0"]) + s.add_runtime_dependency(%q, ["~> 0.13"]) + s.add_runtime_dependency(%q, ["~> 2.1"]) +- s.add_runtime_dependency(%q, ["< 0.10", "~> 0.9"]) ++ s.add_runtime_dependency(%q, ["~> 0.9"]) + s.add_runtime_dependency(%q, [">= 0.6.8", "~> 0.6"]) + s.add_runtime_dependency(%q, ["~> 0.4"]) + s.add_runtime_dependency(%q, ["~> 2.3"]) Property changes on: head/devel/rubygem-travis/files/patch-gemspec ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net/rubygem-amqp-utils/files/patch-versions =================================================================== --- head/net/rubygem-amqp-utils/files/patch-versions (revision 382630) +++ head/net/rubygem-amqp-utils/files/patch-versions (nonexistent) @@ -1,27 +0,0 @@ ---- amqp-utils-0.5.1.gemspec.orig 2013-07-01 00:25:29.435452053 +0000 -+++ amqp-utils-0.5.1.gemspec 2013-07-01 00:25:54.044449653 +0000 -@@ -28,10 +28,9 @@ - - !ruby/object:Gem::Version - hash: 1 - segments: -- - 0 -- - 7 - - 1 -- version: 0.7.1 -+ - 0 -+ version: 1.0.0 - type: :runtime - version_requirements: *id001 - - !ruby/object:Gem::Dependency -@@ -123,9 +122,9 @@ - hash: 5 - segments: - - 0 -- - 4 - - 5 -- version: 0.4.5 -+ - 5 -+ version: 0.5.5 - type: :runtime - version_requirements: *id007 - description: |- Property changes on: head/net/rubygem-amqp-utils/files/patch-versions ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/net/rubygem-gitlab_omniauth-ldap/files/patch-gemspec =================================================================== --- head/net/rubygem-gitlab_omniauth-ldap/files/patch-gemspec (revision 382630) +++ head/net/rubygem-gitlab_omniauth-ldap/files/patch-gemspec (revision 382631) @@ -1,11 +1,11 @@ ---- gitlab_omniauth-ldap-1.1.0.gemspec.orig 2013-10-25 02:24:55.456068284 +0000 -+++ gitlab_omniauth-ldap-1.1.0.gemspec 2013-10-25 02:25:06.863067558 +0000 -@@ -58,7 +58,7 @@ - requirements: - - - ~> - - !ruby/object:Gem::Version -- version: 0.1.1 -+ version: 0.4.0 - type: :runtime - prerelease: false - version_requirements: !ruby/object:Gem::Requirement +--- gitlab_omniauth-ldap.gemspec.orig 2014-12-01 04:29:00.000000000 +0000 ++++ gitlab_omniauth-ldap.gemspec 2014-12-01 04:29:29.000000000 +0000 +@@ -25,7 +25,7 @@ + s.add_runtime_dependency(%q, ["~> 1.0"]) + s.add_runtime_dependency(%q, ["~> 0.7.0"]) + s.add_runtime_dependency(%q, ["~> 0.0.3.1"]) +- s.add_runtime_dependency(%q, ["~> 0.1.1"]) ++ s.add_runtime_dependency(%q, ["~> 0.4.0"]) + else + s.add_dependency(%q, ["~> 1.0"]) + s.add_dependency(%q, ["~> 0.7.0"]) Index: head/net/rubygem-twitter/Makefile =================================================================== --- head/net/rubygem-twitter/Makefile (revision 382630) +++ head/net/rubygem-twitter/Makefile (revision 382631) @@ -1,33 +1,29 @@ # Created by: ijliao # $FreeBSD$ PORTNAME= twitter PORTVERSION= 5.14.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby interface to the Twitter API LICENSE= MIT RUN_DEPENDS= rubygem-addressable>=2.3:${PORTSDIR}/www/rubygem-addressable \ rubygem-buftok>=0.2.0:${PORTSDIR}/devel/rubygem-buftok \ rubygem-equalizer>=0.0.9:${PORTSDIR}/devel/rubygem-equalizer \ rubygem-faraday>=0.9.0:${PORTSDIR}/www/rubygem-faraday \ rubygem-http>=0.6.0:${PORTSDIR}/www/rubygem-http \ rubygem-http_parser.rb>=0.6.0:${PORTSDIR}/net/rubygem-http_parser.rb \ rubygem-json>=1.8:${PORTSDIR}/devel/rubygem-json \ rubygem-memoizable>=0.4.0:${PORTSDIR}/devel/rubygem-memoizable \ rubygem-naught>=1.0:${PORTSDIR}/devel/rubygem-naught \ rubygem-simple_oauth>=0.3.0:${PORTSDIR}/net/rubygem-simple_oauth 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 Index: head/net/rubygem-twitter/files/patch-gemspec =================================================================== --- head/net/rubygem-twitter/files/patch-gemspec (nonexistent) +++ head/net/rubygem-twitter/files/patch-gemspec (revision 382631) @@ -0,0 +1,11 @@ +--- twitter.gemspec.orig 2015-01-21 20:31:06.000000000 +0000 ++++ twitter.gemspec 2015-01-21 20:31:20.000000000 +0000 +@@ -25,7 +25,7 @@ + s.add_runtime_dependency(%q, ["~> 0.2.0"]) + s.add_runtime_dependency(%q, ["~> 0.0.9"]) + s.add_runtime_dependency(%q, ["~> 0.9.0"]) +- s.add_runtime_dependency(%q, ["~> 0.6.0"]) ++ s.add_runtime_dependency(%q, [">= 0.6.0"]) + s.add_runtime_dependency(%q, ["~> 0.6.0"]) + s.add_runtime_dependency(%q, ["~> 1.8"]) + s.add_runtime_dependency(%q, ["~> 0.4.0"]) Property changes on: head/net/rubygem-twitter/files/patch-gemspec ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net/rubygem-twitter-stream/files/patch-versions =================================================================== --- head/net/rubygem-twitter-stream/files/patch-versions (revision 382630) +++ head/net/rubygem-twitter-stream/files/patch-versions (nonexistent) @@ -1,15 +0,0 @@ ---- twitter-stream-0.1.16.gemspec.orig 2013-07-15 23:54:24.000000000 +0900 -+++ twitter-stream-0.1.16.gemspec 2013-07-15 23:57:27.000000000 +0900 -@@ -40,9 +40,9 @@ - - !ruby/object:Gem::Version - segments: - - 0 -- - 1 -- - 4 -- version: 0.1.4 -+ - 2 -+ - 0 -+ version: 0.2.0 - type: :runtime - version_requirements: *id002 - - !ruby/object:Gem::Dependency Property changes on: head/net/rubygem-twitter-stream/files/patch-versions ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/net/rubygem-twitter-stream/files/patch-gemspec =================================================================== --- head/net/rubygem-twitter-stream/files/patch-gemspec (nonexistent) +++ head/net/rubygem-twitter-stream/files/patch-gemspec (revision 382631) @@ -0,0 +1,11 @@ +--- twitter-stream.gemspec.orig 2014-12-01 16:17:01.000000000 +0000 ++++ twitter-stream.gemspec 2014-12-01 16:17:31.000000000 +0000 +@@ -24,7 +24,7 @@ + + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then + s.add_runtime_dependency(%q, [">= 0.12.8"]) +- s.add_runtime_dependency(%q, ["~> 0.1.4"]) ++ s.add_runtime_dependency(%q, ["~> 0.2.0"]) + s.add_runtime_dependency(%q, ["~> 0.5.1"]) + s.add_development_dependency(%q, ["~> 2.5.0"]) + else Property changes on: head/net/rubygem-twitter-stream/files/patch-gemspec ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-im/rubygem-lita/files/patch-gemspec =================================================================== --- head/net-im/rubygem-lita/files/patch-gemspec (revision 382630) +++ head/net-im/rubygem-lita/files/patch-gemspec (revision 382631) @@ -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, [">= 1.7.7"]) + s.add_dependency(%q, [">= 2.7.1"]) + s.add_dependency(%q, [">= 1.5.2"]) +- s.add_dependency(%q, [">= 0.5.1"]) + s.add_dependency(%q, [">= 1.3.0"]) + s.add_dependency(%q, [">= 0.18.1"]) + s.add_dependency(%q, [">= 0"]) Index: head/net-im/rubygem-termtter/files/patch-versions =================================================================== --- head/net-im/rubygem-termtter/files/patch-versions (revision 382630) +++ head/net-im/rubygem-termtter/files/patch-versions (nonexistent) @@ -1,35 +0,0 @@ ---- termtter-2.2.1.gemspec.orig 2013-07-01 03:35:35.630666391 +0000 -+++ termtter-2.2.1.gemspec 2013-07-01 03:35:36.659666334 +0000 -@@ -33,28 +33,28 @@ - requirements: - - - ~> - - !ruby/object:Gem::Version -- version: 1.5.0 -+ version: 1.6.0 - type: :runtime - prerelease: false - version_requirements: !ruby/object:Gem::Requirement - requirements: - - - ~> - - !ruby/object:Gem::Version -- version: 1.5.0 -+ version: 1.6.0 - - !ruby/object:Gem::Dependency - name: termcolor - requirement: !ruby/object:Gem::Requirement - requirements: - - - ~> - - !ruby/object:Gem::Version -- version: 1.0.0 -+ version: 1.2.0 - type: :runtime - prerelease: false - version_requirements: !ruby/object:Gem::Requirement - requirements: - - - ~> - - !ruby/object:Gem::Version -- version: 1.0.0 -+ version: 1.2.0 - - !ruby/object:Gem::Dependency - name: rubytter - requirement: !ruby/object:Gem::Requirement Property changes on: head/net-im/rubygem-termtter/files/patch-versions ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/net-im/rubygem-termtter/files/patch-gemspec =================================================================== --- head/net-im/rubygem-termtter/files/patch-gemspec (nonexistent) +++ head/net-im/rubygem-termtter/files/patch-gemspec (revision 382631) @@ -0,0 +1,11 @@ +--- termtter.gemspec.orig 2014-12-01 02:49:20.000000000 +0000 ++++ termtter.gemspec 2014-12-01 02:49:41.000000000 +0000 +@@ -25,7 +25,7 @@ + + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then + s.add_runtime_dependency(%q, ["> 1.1.3"]) +- s.add_runtime_dependency(%q, ["~> 1.5.0"]) ++ s.add_runtime_dependency(%q, ["~> 1.6.0"]) + s.add_runtime_dependency(%q, ["~> 1.0.0"]) + s.add_runtime_dependency(%q, ["~> 1.5.1"]) + s.add_runtime_dependency(%q, ["~> 0.5.1"]) Property changes on: head/net-im/rubygem-termtter/files/patch-gemspec ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/net-mgmt/rubygem-visage-app/files/patch-versions =================================================================== --- head/net-mgmt/rubygem-visage-app/files/patch-versions (revision 382630) +++ head/net-mgmt/rubygem-visage-app/files/patch-versions (nonexistent) @@ -1,35 +0,0 @@ ---- Gemfile.lock.orig 2013-02-24 05:57:00.000000000 +0000 -+++ Gemfile.lock 2013-02-24 05:57:23.000000000 +0000 -@@ -3,7 +3,7 @@ - specs: - visage-app (2.1.0) - errand (= 0.7.3) -- haml (= 3.1.4) -+ haml (= 3.1.7) - sinatra (= 1.3.2) - tilt (= 1.3.3) - yajl-ruby (= 1.1.0) ---- visage-app-2.1.0.gemspec.orig 2013-02-24 05:57:06.000000000 +0000 -+++ visage-app-2.1.0.gemspec 2013-02-24 05:57:30.000000000 +0000 -@@ -25,8 +25,8 @@ - segments: - - 3 - - 1 -- - 4 -- version: 3.1.4 -+ - 7 -+ version: 3.1.7 - prerelease: false - name: haml - type: :runtime ---- visage-app.gemspec.orig 2013-02-24 05:57:12.000000000 +0000 -+++ visage-app.gemspec 2013-02-24 05:57:39.000000000 +0000 -@@ -23,7 +23,7 @@ - s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } - s.require_paths = ["lib"] - -- s.add_runtime_dependency "haml", "= 3.1.4" -+ s.add_runtime_dependency "haml", "= 3.1.7" - s.add_runtime_dependency "tilt", "= 1.3.3" - s.add_runtime_dependency "sinatra", "= 1.3.2" - s.add_runtime_dependency "errand", "= 0.7.3" Property changes on: head/net-mgmt/rubygem-visage-app/files/patch-versions ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/security/rubygem-ezcrypto/files/patch-gemspec =================================================================== --- head/security/rubygem-ezcrypto/files/patch-gemspec (revision 382630) +++ head/security/rubygem-ezcrypto/files/patch-gemspec (revision 382631) @@ -1,18 +1,17 @@ ---- ezcrypto-0.7.2.gemspec.orig 2013-02-27 02:35:45.000000000 +0000 -+++ ezcrypto-0.7.2.gemspec 2013-02-27 02:36:42.000000000 +0000 -@@ -51,7 +51,6 @@ - - test/protectedsigner.pem - - test/sf-class2-root.crt - - test/sf_intermediate.crt --- test/store - - test/test_helper.rb - - test/testchild.pem - - test/testchild.req -@@ -101,7 +100,6 @@ - - test/protectedsigner.pem - - test/sf-class2-root.crt - - test/sf_intermediate.crt --- test/store - - test/test_helper.rb - - test/testchild.pem - - test/testchild.req +--- ezcrypto.gemspec.orig 2015-01-22 01:19:35.000000000 +0000 ++++ ezcrypto.gemspec 2015-01-22 01:20:01.000000000 +0000 +@@ -12,12 +12,12 @@ + s.description = "Makes it easier and safer to write crypto code." + s.email = "pelle@stakeventures.com" + s.extra_rdoc_files = ["CHANGELOG", "README.rdoc", "README_ACTIVE_CRYPTO", "README_DIGITAL_SIGNATURES"] +- s.files = ["CHANGELOG", "MIT-LICENSE", "README.rdoc", "README_ACTIVE_CRYPTO", "README_DIGITAL_SIGNATURES", "init.rb", "lib/active_crypto.rb", "lib/ezcrypto.rb", "lib/ezsig.rb", "lib/trusted.pem", "rakefile", "test/active_crypto_test.rb", "test/agree2.com.cert", "test/association_key_holder_test.rb", "test/database.yml", "test/debug.log", "test/digest_test.rb", "test/dsakey.pem", "test/dsapubkey.pem", "test/dsig_test.rb", "test/encrypt_test.rb", "test/ezcrypto_test.rb", "test/key_holder_test.rb", "test/protectedsigner.pem", "test/sf-class2-root.crt", "test/sf_intermediate.crt", "test/store", "test/test_helper.rb", "test/testchild.pem", "test/testchild.req", "test/testpub.pem", "test/testsigner.cert", "test/testsigner.pem", "test/valicert_class2_root.crt"] ++ s.files = ["CHANGELOG", "MIT-LICENSE", "README.rdoc", "README_ACTIVE_CRYPTO", "README_DIGITAL_SIGNATURES", "init.rb", "lib/active_crypto.rb", "lib/ezcrypto.rb", "lib/ezsig.rb", "lib/trusted.pem", "rakefile", "test/active_crypto_test.rb", "test/agree2.com.cert", "test/association_key_holder_test.rb", "test/database.yml", "test/debug.log", "test/digest_test.rb", "test/dsakey.pem", "test/dsapubkey.pem", "test/dsig_test.rb", "test/encrypt_test.rb", "test/ezcrypto_test.rb", "test/key_holder_test.rb", "test/protectedsigner.pem", "test/sf-class2-root.crt", "test/sf_intermediate.crt", "test/test_helper.rb", "test/testchild.pem", "test/testchild.req", "test/testpub.pem", "test/testsigner.cert", "test/testsigner.pem", "test/valicert_class2_root.crt"] + s.homepage = "http://ezcrypto.rubyforge.org" + s.requirements = ["none"] + s.rubyforge_project = "ezcrypto" + s.rubygems_version = "2.4.5" + s.summary = "Simplified encryption library." +- s.test_files = ["test/active_crypto_test.rb", "test/agree2.com.cert", "test/association_key_holder_test.rb", "test/database.yml", "test/debug.log", "test/digest_test.rb", "test/dsakey.pem", "test/dsapubkey.pem", "test/dsig_test.rb", "test/encrypt_test.rb", "test/ezcrypto_test.rb", "test/key_holder_test.rb", "test/protectedsigner.pem", "test/sf-class2-root.crt", "test/sf_intermediate.crt", "test/store", "test/test_helper.rb", "test/testchild.pem", "test/testchild.req", "test/testpub.pem", "test/testsigner.cert", "test/testsigner.pem", "test/valicert_class2_root.crt"] ++ s.test_files = ["test/active_crypto_test.rb", "test/agree2.com.cert", "test/association_key_holder_test.rb", "test/database.yml", "test/debug.log", "test/digest_test.rb", "test/dsakey.pem", "test/dsapubkey.pem", "test/dsig_test.rb", "test/encrypt_test.rb", "test/ezcrypto_test.rb", "test/key_holder_test.rb", "test/protectedsigner.pem", "test/sf-class2-root.crt", "test/sf_intermediate.crt", "test/test_helper.rb", "test/testchild.pem", "test/testchild.req", "test/testpub.pem", "test/testsigner.cert", "test/testsigner.pem", "test/valicert_class2_root.crt"] + end + Index: head/sysutils/rubygem-hammer_cli/files/patch-versions =================================================================== --- head/sysutils/rubygem-hammer_cli/files/patch-versions (revision 382630) +++ head/sysutils/rubygem-hammer_cli/files/patch-versions (nonexistent) @@ -1,32 +0,0 @@ ---- hammer_cli-0.1.4.gemspec.orig 2014-12-10 22:09:22.000000000 +0100 -+++ hammer_cli-0.1.4.gemspec 2014-12-10 22:10:25.000000000 +0100 -@@ -138,20 +138,6 @@ - - !ruby/object:Gem::Version - version: '0' - - !ruby/object:Gem::Dependency -- name: rb-readline -- requirement: !ruby/object:Gem::Requirement -- requirements: -- - - '>=' -- - !ruby/object:Gem::Version -- version: '0' -- type: :runtime -- prerelease: false -- version_requirements: !ruby/object:Gem::Requirement -- requirements: -- - - '>=' -- - !ruby/object:Gem::Version -- version: '0' --- !ruby/object:Gem::Dependency - name: fastercsv - requirement: !ruby/object:Gem::Requirement - requirements: -@@ -169,7 +155,7 @@ - name: mime-types - requirement: !ruby/object:Gem::Requirement - requirements: -- - - ~> -+ - - '>=' - - !ruby/object:Gem::Version - version: '1.0' - type: :runtime Property changes on: head/sysutils/rubygem-hammer_cli/files/patch-versions ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/sysutils/rubygem-hammer_cli/files/patch-gemspec =================================================================== --- head/sysutils/rubygem-hammer_cli/files/patch-gemspec (nonexistent) +++ head/sysutils/rubygem-hammer_cli/files/patch-gemspec (revision 382631) @@ -0,0 +1,11 @@ +--- hammer_cli.gemspec.orig 2015-01-22 02:42:09.000000000 +0000 ++++ hammer_cli.gemspec 2015-01-22 02:42:46.000000000 +0000 +@@ -64,7 +64,7 @@ + s.add_dependency(%q, [">= 0"]) + s.add_dependency(%q, [">= 0"]) + s.add_dependency(%q, [">= 0"]) +- s.add_dependency(%q, ["~> 1.0"]) ++ s.add_dependency(%q, [">= 1.0"]) + s.add_dependency(%q, ["~> 0.0.10"]) + end + end Property changes on: head/sysutils/rubygem-hammer_cli/files/patch-gemspec ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/textproc/rubygem-nokogiri/files/patch-gemspec =================================================================== --- head/textproc/rubygem-nokogiri/files/patch-gemspec (revision 382630) +++ head/textproc/rubygem-nokogiri/files/patch-gemspec (revision 382631) @@ -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, ["~> 0.6.0"]) + s.add_development_dependency(%q, ["~> 4.0"]) + s.add_development_dependency(%q, [">= 1.1"]) + s.add_development_dependency(%q, ["~> 1.2.0"]) Index: head/textproc/rubygem-nokogiri14/files/patch-ext_nokogiri_extconf.rb =================================================================== --- head/textproc/rubygem-nokogiri14/files/patch-ext_nokogiri_extconf.rb (nonexistent) +++ head/textproc/rubygem-nokogiri14/files/patch-ext_nokogiri_extconf.rb (revision 382631) @@ -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 Property changes on: head/textproc/rubygem-nokogiri14/files/patch-ext_nokogiri_extconf.rb ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/textproc/rubygem-nokogiri14/files/patch-gemspec =================================================================== --- head/textproc/rubygem-nokogiri14/files/patch-gemspec (revision 382630) +++ head/textproc/rubygem-nokogiri14/files/patch-gemspec (revision 382631) @@ -1,20 +1,15 @@ ---- nokogiri-1.4.7.gemspec.orig 2014-08-26 20:40:15.000000000 +0000 -+++ nokogiri-1.4.7.gemspec 2014-08-26 20:40:32.000000000 +0000 -@@ -77,7 +77,7 @@ - - aaronp@rubyforge.org - - mike.dalessio@gmail.com - executables: --- nokogiri -+- nokogiri14 - extensions: - - ext/nokogiri/extconf.rb - extra_rdoc_files: -@@ -128,7 +128,7 @@ - - README.ja.rdoc - - README.rdoc - - Rakefile --- bin/nokogiri -+- bin/nokogiri14 - - ext/nokogiri/depend - - ext/nokogiri/extconf.rb - - ext/nokogiri/html_document.c +--- nokogiri.gemspec.orig 2014-12-01 16:40:24.000000000 +0000 ++++ nokogiri.gemspec 2014-12-01 16:40:56.000000000 +0000 +@@ -12,10 +12,10 @@ + s.date = "2011-07-01" + s.description = "Nokogiri (\u{e9}\u{8b}\u{b8}) is an HTML, XML, SAX, and Reader parser. Among Nokogiri's\nmany features is the ability to search documents via XPath or CSS3 selectors.\n\nXML is like violence - if it doesn\u{e2}\u{80}\u{99}t solve your problems, you are not using\nenough of it." + s.email = ["aaronp@rubyforge.org", "mike.dalessio@gmail.com"] +- s.executables = ["nokogiri"] ++ s.executables = ["nokogiri14"] + s.extensions = ["ext/nokogiri/extconf.rb"] + s.extra_rdoc_files = ["Manifest.txt", "README.ja.rdoc", "CHANGELOG.rdoc", "CHANGELOG.ja.rdoc", "README.rdoc", "ext/nokogiri/xml_sax_push_parser.c", "ext/nokogiri/xml_relax_ng.c", "ext/nokogiri/html_sax_parser_context.c", "ext/nokogiri/html_entity_lookup.c", "ext/nokogiri/xml_text.c", "ext/nokogiri/nokogiri.c", "ext/nokogiri/xml_element_decl.c", "ext/nokogiri/xml_encoding_handler.c", "ext/nokogiri/html_document.c", "ext/nokogiri/xslt_stylesheet.c", "ext/nokogiri/xml_attribute_decl.c", "ext/nokogiri/xml_io.c", "ext/nokogiri/xml_document_fragment.c", "ext/nokogiri/xml_namespace.c", "ext/nokogiri/xml_libxml2_hacks.c", "ext/nokogiri/xml_sax_parser_context.c", "ext/nokogiri/xml_comment.c", "ext/nokogiri/xml_sax_parser.c", "ext/nokogiri/html_element_description.c", "ext/nokogiri/xml_xpath_context.c", "ext/nokogiri/xml_syntax_error.c", "ext/nokogiri/xml_document.c", "ext/nokogiri/xml_entity_decl.c", "ext/nokogiri/xml_node.c", "ext/nokogiri/xml_node_set.c", "ext/nokogiri/xml_reader.c", "ext/nokogiri/xml_processing_instruction.c", "ext/nokogiri/xml_element_content.c", "ext/nokogiri/xml_dtd.c", "ext/nokogiri/xml_attr.c", "ext/nokogiri/xml_schema.c", "ext/nokogiri/xml_cdata.c", "ext/nokogiri/xml_entity_reference.c"] +- s.files = [".autotest", ".gemtest", "CHANGELOG.ja.rdoc", "CHANGELOG.rdoc", "Manifest.txt", "README.ja.rdoc", "README.rdoc", "Rakefile", "bin/nokogiri", "ext/nokogiri/depend", "ext/nokogiri/extconf.rb", "ext/nokogiri/html_document.c", "ext/nokogiri/html_document.h", "ext/nokogiri/html_element_description.c", "ext/nokogiri/html_element_description.h", "ext/nokogiri/html_entity_lookup.c", "ext/nokogiri/html_entity_lookup.h", "ext/nokogiri/html_sax_parser_context.c", "ext/nokogiri/html_sax_parser_context.h", "ext/nokogiri/nokogiri.c", "ext/nokogiri/nokogiri.h", "ext/nokogiri/xml_attr.c", "ext/nokogiri/xml_attr.h", "ext/nokogiri/xml_attribute_decl.c", "ext/nokogiri/xml_attribute_decl.h", "ext/nokogiri/xml_cdata.c", "ext/nokogiri/xml_cdata.h", "ext/nokogiri/xml_comment.c", "ext/nokogiri/xml_comment.h", "ext/nokogiri/xml_document.c", "ext/nokogiri/xml_document.h", "ext/nokogiri/xml_document_fragment.c", "ext/nokogiri/xml_document_fragment.h", "ext/nokogiri/xml_dtd.c", "ext/nokogiri/xml_dtd.h", "ext/nokogiri/xml_element_content.c", "ext/nokogiri/xml_element_content.h", "ext/nokogiri/xml_element_decl.c", "ext/nokogiri/xml_element_decl.h", "ext/nokogiri/xml_encoding_handler.c", "ext/nokogiri/xml_encoding_handler.h", "ext/nokogiri/xml_entity_decl.c", "ext/nokogiri/xml_entity_decl.h", "ext/nokogiri/xml_entity_reference.c", "ext/nokogiri/xml_entity_reference.h", "ext/nokogiri/xml_io.c", "ext/nokogiri/xml_io.h", "ext/nokogiri/xml_libxml2_hacks.c", "ext/nokogiri/xml_libxml2_hacks.h", "ext/nokogiri/xml_namespace.c", "ext/nokogiri/xml_namespace.h", "ext/nokogiri/xml_node.c", "ext/nokogiri/xml_node.h", "ext/nokogiri/xml_node_set.c", "ext/nokogiri/xml_node_set.h", "ext/nokogiri/xml_processing_instruction.c", "ext/nokogiri/xml_processing_instruction.h", "ext/nokogiri/xml_reader.c", "ext/nokogiri/xml_reader.h", "ext/nokogiri/xml_relax_ng.c", "ext/nokogiri/xml_relax_ng.h", "ext/nokogiri/xml_sax_parser.c", "ext/nokogiri/xml_sax_parser.h", "ext/nokogiri/xml_sax_parser_context.c", "ext/nokogiri/xml_sax_parser_context.h", "ext/nokogiri/xml_sax_push_parser.c", "ext/nokogiri/xml_sax_push_parser.h", "ext/nokogiri/xml_schema.c", "ext/nokogiri/xml_schema.h", "ext/nokogiri/xml_syntax_error.c", "ext/nokogiri/xml_syntax_error.h", "ext/nokogiri/xml_text.c", "ext/nokogiri/xml_text.h", "ext/nokogiri/xml_xpath_context.c", "ext/nokogiri/xml_xpath_context.h", "ext/nokogiri/xslt_stylesheet.c", "ext/nokogiri/xslt_stylesheet.h", "lib/nokogiri.rb", "lib/nokogiri/css.rb", "lib/nokogiri/css/node.rb", "lib/nokogiri/css/parser.rb", "lib/nokogiri/css/parser.y", "lib/nokogiri/css/parser_extras.rb", "lib/nokogiri/css/syntax_error.rb", "lib/nokogiri/css/tokenizer.rb", "lib/nokogiri/css/tokenizer.rex", "lib/nokogiri/css/xpath_visitor.rb", "lib/nokogiri/decorators/slop.rb", "lib/nokogiri/ffi/encoding_handler.rb", "lib/nokogiri/ffi/html/document.rb", "lib/nokogiri/ffi/html/element_description.rb", "lib/nokogiri/ffi/html/entity_lookup.rb", "lib/nokogiri/ffi/html/sax/parser_context.rb", "lib/nokogiri/ffi/io_callbacks.rb", "lib/nokogiri/ffi/libxml.rb", "lib/nokogiri/ffi/structs/common_node.rb", "lib/nokogiri/ffi/structs/html_elem_desc.rb", "lib/nokogiri/ffi/structs/html_entity_desc.rb", "lib/nokogiri/ffi/structs/xml_alloc.rb", "lib/nokogiri/ffi/structs/xml_attr.rb", "lib/nokogiri/ffi/structs/xml_attribute.rb", "lib/nokogiri/ffi/structs/xml_buffer.rb", "lib/nokogiri/ffi/structs/xml_char_encoding_handler.rb", "lib/nokogiri/ffi/structs/xml_document.rb", "lib/nokogiri/ffi/structs/xml_dtd.rb", "lib/nokogiri/ffi/structs/xml_element.rb", "lib/nokogiri/ffi/structs/xml_element_content.rb", "lib/nokogiri/ffi/structs/xml_entity.rb", "lib/nokogiri/ffi/structs/xml_enumeration.rb", "lib/nokogiri/ffi/structs/xml_node.rb", "lib/nokogiri/ffi/structs/xml_node_set.rb", "lib/nokogiri/ffi/structs/xml_notation.rb", "lib/nokogiri/ffi/structs/xml_ns.rb", "lib/nokogiri/ffi/structs/xml_parser_context.rb", "lib/nokogiri/ffi/structs/xml_parser_input.rb", "lib/nokogiri/ffi/structs/xml_relax_ng.rb", "lib/nokogiri/ffi/structs/xml_sax_handler.rb", "lib/nokogiri/ffi/structs/xml_sax_push_parser_context.rb", "lib/nokogiri/ffi/structs/xml_schema.rb", "lib/nokogiri/ffi/structs/xml_syntax_error.rb", "lib/nokogiri/ffi/structs/xml_text_reader.rb", "lib/nokogiri/ffi/structs/xml_xpath_context.rb", "lib/nokogiri/ffi/structs/xml_xpath_object.rb", "lib/nokogiri/ffi/structs/xml_xpath_parser_context.rb", "lib/nokogiri/ffi/structs/xslt_stylesheet.rb", "lib/nokogiri/ffi/weak_bucket.rb", "lib/nokogiri/ffi/xml/attr.rb", "lib/nokogiri/ffi/xml/attribute_decl.rb", "lib/nokogiri/ffi/xml/cdata.rb", "lib/nokogiri/ffi/xml/comment.rb", "lib/nokogiri/ffi/xml/document.rb", "lib/nokogiri/ffi/xml/document_fragment.rb", "lib/nokogiri/ffi/xml/dtd.rb", "lib/nokogiri/ffi/xml/element_content.rb", "lib/nokogiri/ffi/xml/element_decl.rb", "lib/nokogiri/ffi/xml/entity_decl.rb", "lib/nokogiri/ffi/xml/entity_reference.rb", "lib/nokogiri/ffi/xml/namespace.rb", "lib/nokogiri/ffi/xml/node.rb", "lib/nokogiri/ffi/xml/node_set.rb", "lib/nokogiri/ffi/xml/processing_instruction.rb", "lib/nokogiri/ffi/xml/reader.rb", "lib/nokogiri/ffi/xml/relax_ng.rb", "lib/nokogiri/ffi/xml/sax/parser.rb", "lib/nokogiri/ffi/xml/sax/parser_context.rb", "lib/nokogiri/ffi/xml/sax/push_parser.rb", "lib/nokogiri/ffi/xml/schema.rb", "lib/nokogiri/ffi/xml/syntax_error.rb", "lib/nokogiri/ffi/xml/text.rb", "lib/nokogiri/ffi/xml/xpath.rb", "lib/nokogiri/ffi/xml/xpath_context.rb", "lib/nokogiri/ffi/xslt/stylesheet.rb", "lib/nokogiri/html.rb", "lib/nokogiri/html/builder.rb", "lib/nokogiri/html/document.rb", "lib/nokogiri/html/document_fragment.rb", "lib/nokogiri/html/element_description.rb", "lib/nokogiri/html/entity_lookup.rb", "lib/nokogiri/html/sax/parser.rb", "lib/nokogiri/html/sax/parser_context.rb", "lib/nokogiri/syntax_error.rb", "lib/nokogiri/version.rb", "lib/nokogiri/version_warning.rb", "lib/nokogiri/xml.rb", "lib/nokogiri/xml/attr.rb", "lib/nokogiri/xml/attribute_decl.rb", "lib/nokogiri/xml/builder.rb", "lib/nokogiri/xml/cdata.rb", "lib/nokogiri/xml/character_data.rb", "lib/nokogiri/xml/document.rb", "lib/nokogiri/xml/document_fragment.rb", "lib/nokogiri/xml/dtd.rb", "lib/nokogiri/xml/element_content.rb", "lib/nokogiri/xml/element_decl.rb", "lib/nokogiri/xml/entity_decl.rb", "lib/nokogiri/xml/namespace.rb", "lib/nokogiri/xml/node.rb", "lib/nokogiri/xml/node/save_options.rb", "lib/nokogiri/xml/node_set.rb", "lib/nokogiri/xml/notation.rb", "lib/nokogiri/xml/parse_options.rb", "lib/nokogiri/xml/pp.rb", "lib/nokogiri/xml/pp/character_data.rb", "lib/nokogiri/xml/pp/node.rb", "lib/nokogiri/xml/processing_instruction.rb", "lib/nokogiri/xml/reader.rb", "lib/nokogiri/xml/relax_ng.rb", "lib/nokogiri/xml/sax.rb", "lib/nokogiri/xml/sax/document.rb", "lib/nokogiri/xml/sax/parser.rb", "lib/nokogiri/xml/sax/parser_context.rb", "lib/nokogiri/xml/sax/push_parser.rb", "lib/nokogiri/xml/schema.rb", "lib/nokogiri/xml/syntax_error.rb", "lib/nokogiri/xml/text.rb", "lib/nokogiri/xml/xpath.rb", "lib/nokogiri/xml/xpath/syntax_error.rb", "lib/nokogiri/xml/xpath_context.rb", "lib/nokogiri/xslt.rb", "lib/nokogiri/xslt/stylesheet.rb", "lib/xsd/xmlparser/nokogiri.rb", "tasks/cross_compile.rb", "tasks/test.rb", "test/css/test_nthiness.rb", "test/css/test_parser.rb", "test/css/test_tokenizer.rb", "test/css/test_xpath_visitor.rb", "test/decorators/test_slop.rb", "test/ffi/test_document.rb", "test/files/2ch.html", "test/files/address_book.rlx", "test/files/address_book.xml", "test/files/bar/bar.xsd", "test/files/dont_hurt_em_why.xml", "test/files/encoding.html", "test/files/encoding.xhtml", "test/files/exslt.xml", "test/files/exslt.xslt", "test/files/foo/foo.xsd", "test/files/po.xml", "test/files/po.xsd", "test/files/shift_jis.html", "test/files/shift_jis.xml", "test/files/snuggles.xml", "test/files/staff.dtd", "test/files/staff.xml", "test/files/staff.xslt", "test/files/tlm.html", "test/files/valid_bar.xml", "test/helper.rb", "test/html/sax/test_parser.rb", "test/html/sax/test_parser_context.rb", "test/html/test_builder.rb", "test/html/test_document.rb", "test/html/test_document_encoding.rb", "test/html/test_document_fragment.rb", "test/html/test_element_description.rb", "test/html/test_named_characters.rb", "test/html/test_node.rb", "test/html/test_node_encoding.rb", "test/test_convert_xpath.rb", "test/test_css_cache.rb", "test/test_encoding_handler.rb", "test/test_memory_leak.rb", "test/test_nokogiri.rb", "test/test_reader.rb", "test/test_soap4r_sax.rb", "test/test_xslt_transforms.rb", "test/xml/node/test_save_options.rb", "test/xml/node/test_subclass.rb", "test/xml/sax/test_parser.rb", "test/xml/sax/test_parser_context.rb", "test/xml/sax/test_push_parser.rb", "test/xml/test_attr.rb", "test/xml/test_attribute_decl.rb", "test/xml/test_builder.rb", "test/xml/test_cdata.rb", "test/xml/test_comment.rb", "test/xml/test_document.rb", "test/xml/test_document_encoding.rb", "test/xml/test_document_fragment.rb", "test/xml/test_dtd.rb", "test/xml/test_dtd_encoding.rb", "test/xml/test_element_content.rb", "test/xml/test_element_decl.rb", "test/xml/test_entity_decl.rb", "test/xml/test_entity_reference.rb", "test/xml/test_namespace.rb", "test/xml/test_node.rb", "test/xml/test_node_attributes.rb", "test/xml/test_node_encoding.rb", "test/xml/test_node_reparenting.rb", "test/xml/test_node_set.rb", "test/xml/test_parse_options.rb", "test/xml/test_processing_instruction.rb", "test/xml/test_reader_encoding.rb", "test/xml/test_relax_ng.rb", "test/xml/test_schema.rb", "test/xml/test_syntax_error.rb", "test/xml/test_text.rb", "test/xml/test_unparented_node.rb", "test/xml/test_xpath.rb", "test/xslt/test_custom_functions.rb"] ++ s.files = [".autotest", ".gemtest", "CHANGELOG.ja.rdoc", "CHANGELOG.rdoc", "Manifest.txt", "README.ja.rdoc", "README.rdoc", "Rakefile", "bin/nokogiri14", "ext/nokogiri/depend", "ext/nokogiri/extconf.rb", "ext/nokogiri/html_document.c", "ext/nokogiri/html_document.h", "ext/nokogiri/html_element_description.c", "ext/nokogiri/html_element_description.h", "ext/nokogiri/html_entity_lookup.c", "ext/nokogiri/html_entity_lookup.h", "ext/nokogiri/html_sax_parser_context.c", "ext/nokogiri/html_sax_parser_context.h", "ext/nokogiri/nokogiri.c", "ext/nokogiri/nokogiri.h", "ext/nokogiri/xml_attr.c", "ext/nokogiri/xml_attr.h", "ext/nokogiri/xml_attribute_decl.c", "ext/nokogiri/xml_attribute_decl.h", "ext/nokogiri/xml_cdata.c", "ext/nokogiri/xml_cdata.h", "ext/nokogiri/xml_comment.c", "ext/nokogiri/xml_comment.h", "ext/nokogiri/xml_document.c", "ext/nokogiri/xml_document.h", "ext/nokogiri/xml_document_fragment.c", "ext/nokogiri/xml_document_fragment.h", "ext/nokogiri/xml_dtd.c", "ext/nokogiri/xml_dtd.h", "ext/nokogiri/xml_element_content.c", "ext/nokogiri/xml_element_content.h", "ext/nokogiri/xml_element_decl.c", "ext/nokogiri/xml_element_decl.h", "ext/nokogiri/xml_encoding_handler.c", "ext/nokogiri/xml_encoding_handler.h", "ext/nokogiri/xml_entity_decl.c", "ext/nokogiri/xml_entity_decl.h", "ext/nokogiri/xml_entity_reference.c", "ext/nokogiri/xml_entity_reference.h", "ext/nokogiri/xml_io.c", "ext/nokogiri/xml_io.h", "ext/nokogiri/xml_libxml2_hacks.c", "ext/nokogiri/xml_libxml2_hacks.h", "ext/nokogiri/xml_namespace.c", "ext/nokogiri/xml_namespace.h", "ext/nokogiri/xml_node.c", "ext/nokogiri/xml_node.h", "ext/nokogiri/xml_node_set.c", "ext/nokogiri/xml_node_set.h", "ext/nokogiri/xml_processing_instruction.c", "ext/nokogiri/xml_processing_instruction.h", "ext/nokogiri/xml_reader.c", "ext/nokogiri/xml_reader.h", "ext/nokogiri/xml_relax_ng.c", "ext/nokogiri/xml_relax_ng.h", "ext/nokogiri/xml_sax_parser.c", "ext/nokogiri/xml_sax_parser.h", "ext/nokogiri/xml_sax_parser_context.c", "ext/nokogiri/xml_sax_parser_context.h", "ext/nokogiri/xml_sax_push_parser.c", "ext/nokogiri/xml_sax_push_parser.h", "ext/nokogiri/xml_schema.c", "ext/nokogiri/xml_schema.h", "ext/nokogiri/xml_syntax_error.c", "ext/nokogiri/xml_syntax_error.h", "ext/nokogiri/xml_text.c", "ext/nokogiri/xml_text.h", "ext/nokogiri/xml_xpath_context.c", "ext/nokogiri/xml_xpath_context.h", "ext/nokogiri/xslt_stylesheet.c", "ext/nokogiri/xslt_stylesheet.h", "lib/nokogiri.rb", "lib/nokogiri/css.rb", "lib/nokogiri/css/node.rb", "lib/nokogiri/css/parser.rb", "lib/nokogiri/css/parser.y", "lib/nokogiri/css/parser_extras.rb", "lib/nokogiri/css/syntax_error.rb", "lib/nokogiri/css/tokenizer.rb", "lib/nokogiri/css/tokenizer.rex", "lib/nokogiri/css/xpath_visitor.rb", "lib/nokogiri/decorators/slop.rb", "lib/nokogiri/ffi/encoding_handler.rb", "lib/nokogiri/ffi/html/document.rb", "lib/nokogiri/ffi/html/element_description.rb", "lib/nokogiri/ffi/html/entity_lookup.rb", "lib/nokogiri/ffi/html/sax/parser_context.rb", "lib/nokogiri/ffi/io_callbacks.rb", "lib/nokogiri/ffi/libxml.rb", "lib/nokogiri/ffi/structs/common_node.rb", "lib/nokogiri/ffi/structs/html_elem_desc.rb", "lib/nokogiri/ffi/structs/html_entity_desc.rb", "lib/nokogiri/ffi/structs/xml_alloc.rb", "lib/nokogiri/ffi/structs/xml_attr.rb", "lib/nokogiri/ffi/structs/xml_attribute.rb", "lib/nokogiri/ffi/structs/xml_buffer.rb", "lib/nokogiri/ffi/structs/xml_char_encoding_handler.rb", "lib/nokogiri/ffi/structs/xml_document.rb", "lib/nokogiri/ffi/structs/xml_dtd.rb", "lib/nokogiri/ffi/structs/xml_element.rb", "lib/nokogiri/ffi/structs/xml_element_content.rb", "lib/nokogiri/ffi/structs/xml_entity.rb", "lib/nokogiri/ffi/structs/xml_enumeration.rb", "lib/nokogiri/ffi/structs/xml_node.rb", "lib/nokogiri/ffi/structs/xml_node_set.rb", "lib/nokogiri/ffi/structs/xml_notation.rb", "lib/nokogiri/ffi/structs/xml_ns.rb", "lib/nokogiri/ffi/structs/xml_parser_context.rb", "lib/nokogiri/ffi/structs/xml_parser_input.rb", "lib/nokogiri/ffi/structs/xml_relax_ng.rb", "lib/nokogiri/ffi/structs/xml_sax_handler.rb", "lib/nokogiri/ffi/structs/xml_sax_push_parser_context.rb", "lib/nokogiri/ffi/structs/xml_schema.rb", "lib/nokogiri/ffi/structs/xml_syntax_error.rb", "lib/nokogiri/ffi/structs/xml_text_reader.rb", "lib/nokogiri/ffi/structs/xml_xpath_context.rb", "lib/nokogiri/ffi/structs/xml_xpath_object.rb", "lib/nokogiri/ffi/structs/xml_xpath_parser_context.rb", "lib/nokogiri/ffi/structs/xslt_stylesheet.rb", "lib/nokogiri/ffi/weak_bucket.rb", "lib/nokogiri/ffi/xml/attr.rb", "lib/nokogiri/ffi/xml/attribute_decl.rb", "lib/nokogiri/ffi/xml/cdata.rb", "lib/nokogiri/ffi/xml/comment.rb", "lib/nokogiri/ffi/xml/document.rb", "lib/nokogiri/ffi/xml/document_fragment.rb", "lib/nokogiri/ffi/xml/dtd.rb", "lib/nokogiri/ffi/xml/element_content.rb", "lib/nokogiri/ffi/xml/element_decl.rb", "lib/nokogiri/ffi/xml/entity_decl.rb", "lib/nokogiri/ffi/xml/entity_reference.rb", "lib/nokogiri/ffi/xml/namespace.rb", "lib/nokogiri/ffi/xml/node.rb", "lib/nokogiri/ffi/xml/node_set.rb", "lib/nokogiri/ffi/xml/processing_instruction.rb", "lib/nokogiri/ffi/xml/reader.rb", "lib/nokogiri/ffi/xml/relax_ng.rb", "lib/nokogiri/ffi/xml/sax/parser.rb", "lib/nokogiri/ffi/xml/sax/parser_context.rb", "lib/nokogiri/ffi/xml/sax/push_parser.rb", "lib/nokogiri/ffi/xml/schema.rb", "lib/nokogiri/ffi/xml/syntax_error.rb", "lib/nokogiri/ffi/xml/text.rb", "lib/nokogiri/ffi/xml/xpath.rb", "lib/nokogiri/ffi/xml/xpath_context.rb", "lib/nokogiri/ffi/xslt/stylesheet.rb", "lib/nokogiri/html.rb", "lib/nokogiri/html/builder.rb", "lib/nokogiri/html/document.rb", "lib/nokogiri/html/document_fragment.rb", "lib/nokogiri/html/element_description.rb", "lib/nokogiri/html/entity_lookup.rb", "lib/nokogiri/html/sax/parser.rb", "lib/nokogiri/html/sax/parser_context.rb", "lib/nokogiri/syntax_error.rb", "lib/nokogiri/version.rb", "lib/nokogiri/version_warning.rb", "lib/nokogiri/xml.rb", "lib/nokogiri/xml/attr.rb", "lib/nokogiri/xml/attribute_decl.rb", "lib/nokogiri/xml/builder.rb", "lib/nokogiri/xml/cdata.rb", "lib/nokogiri/xml/character_data.rb", "lib/nokogiri/xml/document.rb", "lib/nokogiri/xml/document_fragment.rb", "lib/nokogiri/xml/dtd.rb", "lib/nokogiri/xml/element_content.rb", "lib/nokogiri/xml/element_decl.rb", "lib/nokogiri/xml/entity_decl.rb", "lib/nokogiri/xml/namespace.rb", "lib/nokogiri/xml/node.rb", "lib/nokogiri/xml/node/save_options.rb", "lib/nokogiri/xml/node_set.rb", "lib/nokogiri/xml/notation.rb", "lib/nokogiri/xml/parse_options.rb", "lib/nokogiri/xml/pp.rb", "lib/nokogiri/xml/pp/character_data.rb", "lib/nokogiri/xml/pp/node.rb", "lib/nokogiri/xml/processing_instruction.rb", "lib/nokogiri/xml/reader.rb", "lib/nokogiri/xml/relax_ng.rb", "lib/nokogiri/xml/sax.rb", "lib/nokogiri/xml/sax/document.rb", "lib/nokogiri/xml/sax/parser.rb", "lib/nokogiri/xml/sax/parser_context.rb", "lib/nokogiri/xml/sax/push_parser.rb", "lib/nokogiri/xml/schema.rb", "lib/nokogiri/xml/syntax_error.rb", "lib/nokogiri/xml/text.rb", "lib/nokogiri/xml/xpath.rb", "lib/nokogiri/xml/xpath/syntax_error.rb", "lib/nokogiri/xml/xpath_context.rb", "lib/nokogiri/xslt.rb", "lib/nokogiri/xslt/stylesheet.rb", "lib/xsd/xmlparser/nokogiri.rb", "tasks/cross_compile.rb", "tasks/test.rb", "test/css/test_nthiness.rb", "test/css/test_parser.rb", "test/css/test_tokenizer.rb", "test/css/test_xpath_visitor.rb", "test/decorators/test_slop.rb", "test/ffi/test_document.rb", "test/files/2ch.html", "test/files/address_book.rlx", "test/files/address_book.xml", "test/files/bar/bar.xsd", "test/files/dont_hurt_em_why.xml", "test/files/encoding.html", "test/files/encoding.xhtml", "test/files/exslt.xml", "test/files/exslt.xslt", "test/files/foo/foo.xsd", "test/files/po.xml", "test/files/po.xsd", "test/files/shift_jis.html", "test/files/shift_jis.xml", "test/files/snuggles.xml", "test/files/staff.dtd", "test/files/staff.xml", "test/files/staff.xslt", "test/files/tlm.html", "test/files/valid_bar.xml", "test/helper.rb", "test/html/sax/test_parser.rb", "test/html/sax/test_parser_context.rb", "test/html/test_builder.rb", "test/html/test_document.rb", "test/html/test_document_encoding.rb", "test/html/test_document_fragment.rb", "test/html/test_element_description.rb", "test/html/test_named_characters.rb", "test/html/test_node.rb", "test/html/test_node_encoding.rb", "test/test_convert_xpath.rb", "test/test_css_cache.rb", "test/test_encoding_handler.rb", "test/test_memory_leak.rb", "test/test_nokogiri.rb", "test/test_reader.rb", "test/test_soap4r_sax.rb", "test/test_xslt_transforms.rb", "test/xml/node/test_save_options.rb", "test/xml/node/test_subclass.rb", "test/xml/sax/test_parser.rb", "test/xml/sax/test_parser_context.rb", "test/xml/sax/test_push_parser.rb", "test/xml/test_attr.rb", "test/xml/test_attribute_decl.rb", "test/xml/test_builder.rb", "test/xml/test_cdata.rb", "test/xml/test_comment.rb", "test/xml/test_document.rb", "test/xml/test_document_encoding.rb", "test/xml/test_document_fragment.rb", "test/xml/test_dtd.rb", "test/xml/test_dtd_encoding.rb", "test/xml/test_element_content.rb", "test/xml/test_element_decl.rb", "test/xml/test_entity_decl.rb", "test/xml/test_entity_reference.rb", "test/xml/test_namespace.rb", "test/xml/test_node.rb", "test/xml/test_node_attributes.rb", "test/xml/test_node_encoding.rb", "test/xml/test_node_reparenting.rb", "test/xml/test_node_set.rb", "test/xml/test_parse_options.rb", "test/xml/test_processing_instruction.rb", "test/xml/test_reader_encoding.rb", "test/xml/test_relax_ng.rb", "test/xml/test_schema.rb", "test/xml/test_syntax_error.rb", "test/xml/test_text.rb", "test/xml/test_unparented_node.rb", "test/xml/test_xpath.rb", "test/xslt/test_custom_functions.rb"] + s.homepage = "http://nokogiri.org" + s.rdoc_options = ["--main", "README.rdoc"] + s.rubyforge_project = "nokogiri" Index: head/textproc/rubygem-sass-rails/files/patch-gemspec =================================================================== --- head/textproc/rubygem-sass-rails/files/patch-gemspec (revision 382630) +++ head/textproc/rubygem-sass-rails/files/patch-gemspec (revision 382631) @@ -1,11 +1,11 @@ ---- sass-rails-3.2.6.gemspec.orig 2014-02-19 03:55:59.669617961 +0000 -+++ sass-rails-3.2.6.gemspec 2014-02-19 03:55:59.699618518 +0000 -@@ -43,7 +43,7 @@ - name: tilt - requirement: !ruby/object:Gem::Requirement - requirements: -- - - "~>" -+ - - ">=" - - !ruby/object:Gem::Version - version: '1.3' - type: :runtime +--- sass-rails.gemspec.orig 2014-12-01 21:52:39.000000000 +0000 ++++ sass-rails.gemspec 2014-12-01 21:53:01.000000000 +0000 +@@ -24,7 +24,7 @@ + if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then + s.add_runtime_dependency(%q, [">= 3.1.10"]) + s.add_runtime_dependency(%q, ["~> 3.2.0"]) +- s.add_runtime_dependency(%q, ["~> 1.3"]) ++ s.add_runtime_dependency(%q, [">= 1.3"]) + else + s.add_dependency(%q, [">= 3.1.10"]) + s.add_dependency(%q, ["~> 3.2.0"]) Index: head/textproc/rubygem-sass32/files/patch-gemspec =================================================================== --- head/textproc/rubygem-sass32/files/patch-gemspec (revision 382630) +++ head/textproc/rubygem-sass32/files/patch-gemspec (revision 382631) @@ -1,13 +1,12 @@ ---- ./sass-3.2.19.gemspec.orig 2014-04-03 02:37:49.625126621 +0000 -+++ ./sass-3.2.19.gemspec 2014-04-03 02:37:58.207126119 +0000 -@@ -46,10 +46,6 @@ - It's translated to well-formatted, standard CSS using the - command line tool or a web-framework plugin. - email: sass-lang@googlegroups.com --executables: --- sass --- sass-convert --- scss - extensions: [] - extra_rdoc_files: [] - files: +--- sass.gemspec.orig 2014-12-01 16:47:23.000000000 +0000 ++++ sass.gemspec 2014-12-01 16:47:42.000000000 +0000 +@@ -11,8 +11,7 @@ + s.date = "2014-04-05" + s.description = " Sass makes CSS fun again. Sass is an extension of CSS3, adding\n nested rules, variables, mixins, selector inheritance, and more.\n It's translated to well-formatted, standard CSS using the\n command line tool or a web-framework plugin.\n" + s.email = "sass-lang@googlegroups.com" +- s.executables = ["sass", "sass-convert", "scss"] +- s.files = [".yardopts", "CONTRIBUTING", "MIT-LICENSE", "README.md", "REVISION", "Rakefile", "VERSION", "VERSION_DATE", "VERSION_NAME", "bin/sass", "bin/sass-convert", "bin/scss", "extra/update_watch.rb", "init.rb", "lib/sass.rb", "lib/sass/cache_stores.rb", "lib/sass/cache_stores/base.rb", "lib/sass/cache_stores/chain.rb", "lib/sass/cache_stores/filesystem.rb", "lib/sass/cache_stores/memory.rb", "lib/sass/cache_stores/null.rb", "lib/sass/callbacks.rb", "lib/sass/css.rb", "lib/sass/engine.rb", "lib/sass/environment.rb", "lib/sass/error.rb", "lib/sass/exec.rb", "lib/sass/importers.rb", "lib/sass/importers/base.rb", "lib/sass/importers/filesystem.rb", "lib/sass/logger.rb", "lib/sass/logger/base.rb", "lib/sass/logger/log_level.rb", "lib/sass/media.rb", "lib/sass/plugin.rb", "lib/sass/plugin/compiler.rb", "lib/sass/plugin/configuration.rb", "lib/sass/plugin/generic.rb", "lib/sass/plugin/merb.rb", "lib/sass/plugin/rack.rb", "lib/sass/plugin/rails.rb", "lib/sass/plugin/staleness_checker.rb", "lib/sass/railtie.rb", "lib/sass/repl.rb", "lib/sass/root.rb", "lib/sass/script.rb", "lib/sass/script/arg_list.rb", "lib/sass/script/bool.rb", "lib/sass/script/color.rb", "lib/sass/script/css_lexer.rb", "lib/sass/script/css_parser.rb", "lib/sass/script/funcall.rb", "lib/sass/script/functions.rb", "lib/sass/script/interpolation.rb", "lib/sass/script/lexer.rb", "lib/sass/script/list.rb", "lib/sass/script/literal.rb", "lib/sass/script/node.rb", "lib/sass/script/null.rb", "lib/sass/script/number.rb", "lib/sass/script/operation.rb", "lib/sass/script/parser.rb", "lib/sass/script/string.rb", "lib/sass/script/string_interpolation.rb", "lib/sass/script/unary_operation.rb", "lib/sass/script/variable.rb", "lib/sass/scss.rb", "lib/sass/scss/css_parser.rb", "lib/sass/scss/parser.rb", "lib/sass/scss/rx.rb", "lib/sass/scss/script_lexer.rb", "lib/sass/scss/script_parser.rb", "lib/sass/scss/static_parser.rb", "lib/sass/selector.rb", "lib/sass/selector/abstract_sequence.rb", "lib/sass/selector/comma_sequence.rb", "lib/sass/selector/sequence.rb", "lib/sass/selector/simple.rb", "lib/sass/selector/simple_sequence.rb", "lib/sass/shared.rb", "lib/sass/supports.rb", "lib/sass/tree/charset_node.rb", "lib/sass/tree/comment_node.rb", "lib/sass/tree/content_node.rb", "lib/sass/tree/css_import_node.rb", "lib/sass/tree/debug_node.rb", "lib/sass/tree/directive_node.rb", "lib/sass/tree/each_node.rb", "lib/sass/tree/extend_node.rb", "lib/sass/tree/for_node.rb", "lib/sass/tree/function_node.rb", "lib/sass/tree/if_node.rb", "lib/sass/tree/import_node.rb", "lib/sass/tree/media_node.rb", "lib/sass/tree/mixin_def_node.rb", "lib/sass/tree/mixin_node.rb", "lib/sass/tree/node.rb", "lib/sass/tree/prop_node.rb", "lib/sass/tree/return_node.rb", "lib/sass/tree/root_node.rb", "lib/sass/tree/rule_node.rb", "lib/sass/tree/supports_node.rb", "lib/sass/tree/trace_node.rb", "lib/sass/tree/variable_node.rb", "lib/sass/tree/visitors/base.rb", "lib/sass/tree/visitors/check_nesting.rb", "lib/sass/tree/visitors/convert.rb", "lib/sass/tree/visitors/cssize.rb", "lib/sass/tree/visitors/deep_copy.rb", "lib/sass/tree/visitors/extend.rb", "lib/sass/tree/visitors/perform.rb", "lib/sass/tree/visitors/set_options.rb", "lib/sass/tree/visitors/to_css.rb", "lib/sass/tree/warn_node.rb", "lib/sass/tree/while_node.rb", "lib/sass/util.rb", "lib/sass/util/multibyte_string_scanner.rb", "lib/sass/util/subset_map.rb", "lib/sass/util/test.rb", "lib/sass/version.rb", "rails/init.rb", "test/Gemfile", "test/Gemfile.lock", "test/sass/cache_test.rb", "test/sass/callbacks_test.rb", "test/sass/conversion_test.rb", "test/sass/css2sass_test.rb", "test/sass/data/hsl-rgb.txt", "test/sass/engine_test.rb", "test/sass/exec_test.rb", "test/sass/extend_test.rb", "test/sass/fixtures/test_staleness_check_across_importers.css", "test/sass/fixtures/test_staleness_check_across_importers.scss", "test/sass/functions_test.rb", "test/sass/importer_test.rb", "test/sass/logger_test.rb", "test/sass/mock_importer.rb", "test/sass/more_results/more1.css", "test/sass/more_results/more1_with_line_comments.css", "test/sass/more_results/more_import.css", "test/sass/more_templates/_more_partial.sass", "test/sass/more_templates/more1.sass", "test/sass/more_templates/more_import.sass", "test/sass/plugin_test.rb", "test/sass/results/alt.css", "test/sass/results/basic.css", "test/sass/results/cached_import_option.css", "test/sass/results/compact.css", "test/sass/results/complex.css", "test/sass/results/compressed.css", "test/sass/results/expanded.css", "test/sass/results/filename_fn.css", "test/sass/results/if.css", "test/sass/results/import.css", "test/sass/results/import_charset.css", "test/sass/results/import_charset_1_8.css", "test/sass/results/import_charset_ibm866.css", "test/sass/results/import_content.css", "test/sass/results/line_numbers.css", "test/sass/results/mixins.css", "test/sass/results/multiline.css", "test/sass/results/nested.css", "test/sass/results/options.css", "test/sass/results/parent_ref.css", "test/sass/results/script.css", "test/sass/results/scss_import.css", "test/sass/results/scss_importee.css", "test/sass/results/subdir/nested_subdir/nested_subdir.css", "test/sass/results/subdir/subdir.css", "test/sass/results/units.css", "test/sass/results/warn.css", "test/sass/results/warn_imported.css", "test/sass/script_conversion_test.rb", "test/sass/script_test.rb", "test/sass/scss/css_test.rb", "test/sass/scss/rx_test.rb", "test/sass/scss/scss_test.rb", "test/sass/scss/test_helper.rb", "test/sass/templates/_cached_import_option_partial.scss", "test/sass/templates/_double_import_loop2.sass", "test/sass/templates/_filename_fn_import.scss", "test/sass/templates/_imported_charset_ibm866.sass", "test/sass/templates/_imported_charset_utf8.sass", "test/sass/templates/_imported_content.sass", "test/sass/templates/_partial.sass", "test/sass/templates/_same_name_different_partiality.scss", "test/sass/templates/alt.sass", "test/sass/templates/basic.sass", "test/sass/templates/bork1.sass", "test/sass/templates/bork2.sass", "test/sass/templates/bork3.sass", "test/sass/templates/bork4.sass", "test/sass/templates/bork5.sass", "test/sass/templates/cached_import_option.scss", "test/sass/templates/compact.sass", "test/sass/templates/complex.sass", "test/sass/templates/compressed.sass", "test/sass/templates/double_import_loop1.sass", "test/sass/templates/expanded.sass", "test/sass/templates/filename_fn.scss", "test/sass/templates/if.sass", "test/sass/templates/import.sass", "test/sass/templates/import_charset.sass", "test/sass/templates/import_charset_1_8.sass", "test/sass/templates/import_charset_ibm866.sass", "test/sass/templates/import_content.sass", "test/sass/templates/importee.less", "test/sass/templates/importee.sass", "test/sass/templates/line_numbers.sass", "test/sass/templates/mixin_bork.sass", "test/sass/templates/mixins.sass", "test/sass/templates/multiline.sass", "test/sass/templates/nested.sass", "test/sass/templates/nested_bork1.sass", "test/sass/templates/nested_bork2.sass", "test/sass/templates/nested_bork3.sass", "test/sass/templates/nested_bork4.sass", "test/sass/templates/nested_import.sass", "test/sass/templates/nested_mixin_bork.sass", "test/sass/templates/options.sass", "test/sass/templates/parent_ref.sass", "test/sass/templates/same_name_different_ext.sass", "test/sass/templates/same_name_different_ext.scss", "test/sass/templates/same_name_different_partiality.scss", "test/sass/templates/script.sass", "test/sass/templates/scss_import.scss", "test/sass/templates/scss_importee.scss", "test/sass/templates/single_import_loop.sass", "test/sass/templates/subdir/import_up1.scss", "test/sass/templates/subdir/import_up2.scss", "test/sass/templates/subdir/nested_subdir/_nested_partial.sass", "test/sass/templates/subdir/nested_subdir/nested_subdir.sass", "test/sass/templates/subdir/subdir.sass", "test/sass/templates/units.sass", "test/sass/templates/warn.sass", "test/sass/templates/warn_imported.sass", "test/sass/test_helper.rb", "test/sass/util/multibyte_string_scanner_test.rb", "test/sass/util/subset_map_test.rb", "test/sass/util_test.rb", "test/test_helper.rb", "vendor/listen/CHANGELOG.md", "vendor/listen/CONTRIBUTING.md", "vendor/listen/Gemfile", "vendor/listen/Guardfile", "vendor/listen/LICENSE", "vendor/listen/README.md", "vendor/listen/Rakefile", "vendor/listen/Vagrantfile", "vendor/listen/lib/listen.rb", "vendor/listen/lib/listen/adapter.rb", "vendor/listen/lib/listen/adapters/bsd.rb", "vendor/listen/lib/listen/adapters/darwin.rb", "vendor/listen/lib/listen/adapters/linux.rb", "vendor/listen/lib/listen/adapters/polling.rb", "vendor/listen/lib/listen/adapters/windows.rb", "vendor/listen/lib/listen/dependency_manager.rb", "vendor/listen/lib/listen/directory_record.rb", "vendor/listen/lib/listen/listener.rb", "vendor/listen/lib/listen/multi_listener.rb", "vendor/listen/lib/listen/turnstile.rb", "vendor/listen/lib/listen/version.rb", "vendor/listen/listen.gemspec", "vendor/listen/spec/listen/adapter_spec.rb", "vendor/listen/spec/listen/adapters/bsd_spec.rb", "vendor/listen/spec/listen/adapters/darwin_spec.rb", "vendor/listen/spec/listen/adapters/linux_spec.rb", "vendor/listen/spec/listen/adapters/polling_spec.rb", "vendor/listen/spec/listen/adapters/windows_spec.rb", "vendor/listen/spec/listen/dependency_manager_spec.rb", "vendor/listen/spec/listen/directory_record_spec.rb", "vendor/listen/spec/listen/listener_spec.rb", "vendor/listen/spec/listen/multi_listener_spec.rb", "vendor/listen/spec/listen/turnstile_spec.rb", "vendor/listen/spec/listen_spec.rb", "vendor/listen/spec/spec_helper.rb", "vendor/listen/spec/support/adapter_helper.rb", "vendor/listen/spec/support/directory_record_helper.rb", "vendor/listen/spec/support/fixtures_helper.rb", "vendor/listen/spec/support/listeners_helper.rb", "vendor/listen/spec/support/platform_helper.rb"] ++ s.files = [".yardopts", "CONTRIBUTING", "MIT-LICENSE", "README.md", "REVISION", "Rakefile", "VERSION", "VERSION_DATE", "VERSION_NAME", "extra/update_watch.rb", "init.rb", "lib/sass.rb", "lib/sass/cache_stores.rb", "lib/sass/cache_stores/base.rb", "lib/sass/cache_stores/chain.rb", "lib/sass/cache_stores/filesystem.rb", "lib/sass/cache_stores/memory.rb", "lib/sass/cache_stores/null.rb", "lib/sass/callbacks.rb", "lib/sass/css.rb", "lib/sass/engine.rb", "lib/sass/environment.rb", "lib/sass/error.rb", "lib/sass/exec.rb", "lib/sass/importers.rb", "lib/sass/importers/base.rb", "lib/sass/importers/filesystem.rb", "lib/sass/logger.rb", "lib/sass/logger/base.rb", "lib/sass/logger/log_level.rb", "lib/sass/media.rb", "lib/sass/plugin.rb", "lib/sass/plugin/compiler.rb", "lib/sass/plugin/configuration.rb", "lib/sass/plugin/generic.rb", "lib/sass/plugin/merb.rb", "lib/sass/plugin/rack.rb", "lib/sass/plugin/rails.rb", "lib/sass/plugin/staleness_checker.rb", "lib/sass/railtie.rb", "lib/sass/repl.rb", "lib/sass/root.rb", "lib/sass/script.rb", "lib/sass/script/arg_list.rb", "lib/sass/script/bool.rb", "lib/sass/script/color.rb", "lib/sass/script/css_lexer.rb", "lib/sass/script/css_parser.rb", "lib/sass/script/funcall.rb", "lib/sass/script/functions.rb", "lib/sass/script/interpolation.rb", "lib/sass/script/lexer.rb", "lib/sass/script/list.rb", "lib/sass/script/literal.rb", "lib/sass/script/node.rb", "lib/sass/script/null.rb", "lib/sass/script/number.rb", "lib/sass/script/operation.rb", "lib/sass/script/parser.rb", "lib/sass/script/string.rb", "lib/sass/script/string_interpolation.rb", "lib/sass/script/unary_operation.rb", "lib/sass/script/variable.rb", "lib/sass/scss.rb", "lib/sass/scss/css_parser.rb", "lib/sass/scss/parser.rb", "lib/sass/scss/rx.rb", "lib/sass/scss/script_lexer.rb", "lib/sass/scss/script_parser.rb", "lib/sass/scss/static_parser.rb", "lib/sass/selector.rb", "lib/sass/selector/abstract_sequence.rb", "lib/sass/selector/comma_sequence.rb", "lib/sass/selector/sequence.rb", "lib/sass/selector/simple.rb", "lib/sass/selector/simple_sequence.rb", "lib/sass/shared.rb", "lib/sass/supports.rb", "lib/sass/tree/charset_node.rb", "lib/sass/tree/comment_node.rb", "lib/sass/tree/content_node.rb", "lib/sass/tree/css_import_node.rb", "lib/sass/tree/debug_node.rb", "lib/sass/tree/directive_node.rb", "lib/sass/tree/each_node.rb", "lib/sass/tree/extend_node.rb", "lib/sass/tree/for_node.rb", "lib/sass/tree/function_node.rb", "lib/sass/tree/if_node.rb", "lib/sass/tree/import_node.rb", "lib/sass/tree/media_node.rb", "lib/sass/tree/mixin_def_node.rb", "lib/sass/tree/mixin_node.rb", "lib/sass/tree/node.rb", "lib/sass/tree/prop_node.rb", "lib/sass/tree/return_node.rb", "lib/sass/tree/root_node.rb", "lib/sass/tree/rule_node.rb", "lib/sass/tree/supports_node.rb", "lib/sass/tree/trace_node.rb", "lib/sass/tree/variable_node.rb", "lib/sass/tree/visitors/base.rb", "lib/sass/tree/visitors/check_nesting.rb", "lib/sass/tree/visitors/convert.rb", "lib/sass/tree/visitors/cssize.rb", "lib/sass/tree/visitors/deep_copy.rb", "lib/sass/tree/visitors/extend.rb", "lib/sass/tree/visitors/perform.rb", "lib/sass/tree/visitors/set_options.rb", "lib/sass/tree/visitors/to_css.rb", "lib/sass/tree/warn_node.rb", "lib/sass/tree/while_node.rb", "lib/sass/util.rb", "lib/sass/util/multibyte_string_scanner.rb", "lib/sass/util/subset_map.rb", "lib/sass/util/test.rb", "lib/sass/version.rb", "rails/init.rb", "test/Gemfile", "test/Gemfile.lock", "test/sass/cache_test.rb", "test/sass/callbacks_test.rb", "test/sass/conversion_test.rb", "test/sass/css2sass_test.rb", "test/sass/data/hsl-rgb.txt", "test/sass/engine_test.rb", "test/sass/exec_test.rb", "test/sass/extend_test.rb", "test/sass/fixtures/test_staleness_check_across_importers.css", "test/sass/fixtures/test_staleness_check_across_importers.scss", "test/sass/functions_test.rb", "test/sass/importer_test.rb", "test/sass/logger_test.rb", "test/sass/mock_importer.rb", "test/sass/more_results/more1.css", "test/sass/more_results/more1_with_line_comments.css", "test/sass/more_results/more_import.css", "test/sass/more_templates/_more_partial.sass", "test/sass/more_templates/more1.sass", "test/sass/more_templates/more_import.sass", "test/sass/plugin_test.rb", "test/sass/results/alt.css", "test/sass/results/basic.css", "test/sass/results/cached_import_option.css", "test/sass/results/compact.css", "test/sass/results/complex.css", "test/sass/results/compressed.css", "test/sass/results/expanded.css", "test/sass/results/filename_fn.css", "test/sass/results/if.css", "test/sass/results/import.css", "test/sass/results/import_charset.css", "test/sass/results/import_charset_1_8.css", "test/sass/results/import_charset_ibm866.css", "test/sass/results/import_content.css", "test/sass/results/line_numbers.css", "test/sass/results/mixins.css", "test/sass/results/multiline.css", "test/sass/results/nested.css", "test/sass/results/options.css", "test/sass/results/parent_ref.css", "test/sass/results/script.css", "test/sass/results/scss_import.css", "test/sass/results/scss_importee.css", "test/sass/results/subdir/nested_subdir/nested_subdir.css", "test/sass/results/subdir/subdir.css", "test/sass/results/units.css", "test/sass/results/warn.css", "test/sass/results/warn_imported.css", "test/sass/script_conversion_test.rb", "test/sass/script_test.rb", "test/sass/scss/css_test.rb", "test/sass/scss/rx_test.rb", "test/sass/scss/scss_test.rb", "test/sass/scss/test_helper.rb", "test/sass/templates/_cached_import_option_partial.scss", "test/sass/templates/_double_import_loop2.sass", "test/sass/templates/_filename_fn_import.scss", "test/sass/templates/_imported_charset_ibm866.sass", "test/sass/templates/_imported_charset_utf8.sass", "test/sass/templates/_imported_content.sass", "test/sass/templates/_partial.sass", "test/sass/templates/_same_name_different_partiality.scss", "test/sass/templates/alt.sass", "test/sass/templates/basic.sass", "test/sass/templates/bork1.sass", "test/sass/templates/bork2.sass", "test/sass/templates/bork3.sass", "test/sass/templates/bork4.sass", "test/sass/templates/bork5.sass", "test/sass/templates/cached_import_option.scss", "test/sass/templates/compact.sass", "test/sass/templates/complex.sass", "test/sass/templates/compressed.sass", "test/sass/templates/double_import_loop1.sass", "test/sass/templates/expanded.sass", "test/sass/templates/filename_fn.scss", "test/sass/templates/if.sass", "test/sass/templates/import.sass", "test/sass/templates/import_charset.sass", "test/sass/templates/import_charset_1_8.sass", "test/sass/templates/import_charset_ibm866.sass", "test/sass/templates/import_content.sass", "test/sass/templates/importee.less", "test/sass/templates/importee.sass", "test/sass/templates/line_numbers.sass", "test/sass/templates/mixin_bork.sass", "test/sass/templates/mixins.sass", "test/sass/templates/multiline.sass", "test/sass/templates/nested.sass", "test/sass/templates/nested_bork1.sass", "test/sass/templates/nested_bork2.sass", "test/sass/templates/nested_bork3.sass", "test/sass/templates/nested_bork4.sass", "test/sass/templates/nested_import.sass", "test/sass/templates/nested_mixin_bork.sass", "test/sass/templates/options.sass", "test/sass/templates/parent_ref.sass", "test/sass/templates/same_name_different_ext.sass", "test/sass/templates/same_name_different_ext.scss", "test/sass/templates/same_name_different_partiality.scss", "test/sass/templates/script.sass", "test/sass/templates/scss_import.scss", "test/sass/templates/scss_importee.scss", "test/sass/templates/single_import_loop.sass", "test/sass/templates/subdir/import_up1.scss", "test/sass/templates/subdir/import_up2.scss", "test/sass/templates/subdir/nested_subdir/_nested_partial.sass", "test/sass/templates/subdir/nested_subdir/nested_subdir.sass", "test/sass/templates/subdir/subdir.sass", "test/sass/templates/units.sass", "test/sass/templates/warn.sass", "test/sass/templates/warn_imported.sass", "test/sass/test_helper.rb", "test/sass/util/multibyte_string_scanner_test.rb", "test/sass/util/subset_map_test.rb", "test/sass/util_test.rb", "test/test_helper.rb", "vendor/listen/CHANGELOG.md", "vendor/listen/CONTRIBUTING.md", "vendor/listen/Gemfile", "vendor/listen/Guardfile", "vendor/listen/LICENSE", "vendor/listen/README.md", "vendor/listen/Rakefile", "vendor/listen/Vagrantfile", "vendor/listen/lib/listen.rb", "vendor/listen/lib/listen/adapter.rb", "vendor/listen/lib/listen/adapters/bsd.rb", "vendor/listen/lib/listen/adapters/darwin.rb", "vendor/listen/lib/listen/adapters/linux.rb", "vendor/listen/lib/listen/adapters/polling.rb", "vendor/listen/lib/listen/adapters/windows.rb", "vendor/listen/lib/listen/dependency_manager.rb", "vendor/listen/lib/listen/directory_record.rb", "vendor/listen/lib/listen/listener.rb", "vendor/listen/lib/listen/multi_listener.rb", "vendor/listen/lib/listen/turnstile.rb", "vendor/listen/lib/listen/version.rb", "vendor/listen/listen.gemspec", "vendor/listen/spec/listen/adapter_spec.rb", "vendor/listen/spec/listen/adapters/bsd_spec.rb", "vendor/listen/spec/listen/adapters/darwin_spec.rb", "vendor/listen/spec/listen/adapters/linux_spec.rb", "vendor/listen/spec/listen/adapters/polling_spec.rb", "vendor/listen/spec/listen/adapters/windows_spec.rb", "vendor/listen/spec/listen/dependency_manager_spec.rb", "vendor/listen/spec/listen/directory_record_spec.rb", "vendor/listen/spec/listen/listener_spec.rb", "vendor/listen/spec/listen/multi_listener_spec.rb", "vendor/listen/spec/listen/turnstile_spec.rb", "vendor/listen/spec/listen_spec.rb", "vendor/listen/spec/spec_helper.rb", "vendor/listen/spec/support/adapter_helper.rb", "vendor/listen/spec/support/directory_record_helper.rb", "vendor/listen/spec/support/fixtures_helper.rb", "vendor/listen/spec/support/listeners_helper.rb", "vendor/listen/spec/support/platform_helper.rb"] + s.homepage = "http://sass-lang.com/" + s.licenses = ["MIT"] + s.required_ruby_version = Gem::Requirement.new(">= 1.8.7") Index: head/www/rubygem-actionpack/files/patch-gemspec =================================================================== --- head/www/rubygem-actionpack/files/patch-gemspec (revision 382630) +++ head/www/rubygem-actionpack/files/patch-gemspec (nonexistent) @@ -1,11 +0,0 @@ ---- actionpack-3.2.19.gemspec.orig 2014-07-02 19:24:30.502461548 +0000 -+++ actionpack-3.2.19.gemspec 2014-07-02 19:24:31.347461949 +0000 -@@ -133,7 +133,7 @@ - requirement: &id008 !ruby/object:Gem::Requirement - none: false - requirements: -- - - ~> -+ - - ">=" - - !ruby/object:Gem::Version - hash: 5 - segments: Property changes on: head/www/rubygem-actionpack/files/patch-gemspec ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: head/www/rubygem-gitlab-gollum-lib/files/patch-gemspec =================================================================== --- head/www/rubygem-gitlab-gollum-lib/files/patch-gemspec (revision 382630) +++ head/www/rubygem-gitlab-gollum-lib/files/patch-gemspec (revision 382631) @@ -1,20 +1,20 @@ ---- gitlab-gollum-lib-1.1.0.gemspec.orig 2014-08-31 05:45:21.688401723 +0000 -+++ gitlab-gollum-lib-1.1.0.gemspec 2014-08-31 05:45:42.784398809 +0000 -@@ -79,7 +79,7 @@ - requirements: - - - ~> - - !ruby/object:Gem::Version -- version: 1.5.9 -+ version: 1.6.0 - type: :runtime - prerelease: false - version_requirements: !ruby/object:Gem::Requirement -@@ -205,7 +205,7 @@ - requirements: - - - ~> - - !ruby/object:Gem::Version -- version: 0.4.2 -+ version: 0.5.2 - type: :development - prerelease: false - version_requirements: !ruby/object:Gem::Requirement +--- gitlab-gollum-lib.gemspec.orig 2015-01-22 02:57:29.000000000 +0000 ++++ gitlab-gollum-lib.gemspec 2015-01-22 02:57:52.000000000 +0000 +@@ -63,7 +63,7 @@ + s.add_dependency(%q, ["< 1.0.0", ">= 0.7.5"]) + s.add_dependency(%q, ["~> 0.5.3"]) + s.add_dependency(%q, ["~> 2.0.3"]) +- s.add_dependency(%q, ["~> 1.5.9"]) ++ s.add_dependency(%q, [">= 1.5.9"]) + s.add_dependency(%q, ["~> 1.5.1"]) + s.add_dependency(%q, ["~> 4.2.9"]) + s.add_dependency(%q, ["~> 0.13.2"]) +@@ -72,7 +72,7 @@ + s.add_dependency(%q, ["~> 0.8.0"]) + s.add_dependency(%q, ["~> 10.0.3"]) + s.add_dependency(%q, ["~> 0.9.12"]) +- s.add_dependency(%q, ["~> 0.4.2"]) ++ s.add_dependency(%q, [">= 0.4.2"]) + s.add_dependency(%q, ["~> 0.14.10"]) + s.add_dependency(%q, ["~> 0.1.2"]) + end Index: head/www/rubygem-jekyll/files/patch-versions =================================================================== --- head/www/rubygem-jekyll/files/patch-versions (revision 382630) +++ head/www/rubygem-jekyll/files/patch-versions (revision 382631) @@ -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, ["~> 2.6.1"]) +- s.add_runtime_dependency(%q, ["~> 1.3"]) ++ s.add_runtime_dependency(%q, [">= 1.3"]) + s.add_runtime_dependency(%q, ["~> 0.3.3"]) + s.add_runtime_dependency(%q, ["~> 1.0"]) + s.add_runtime_dependency(%q, ["~> 0.1"]) Index: head/www/rubygem-railties/files/patch-gemspec =================================================================== --- head/www/rubygem-railties/files/patch-gemspec (revision 382630) +++ head/www/rubygem-railties/files/patch-gemspec (nonexistent) @@ -1,24 +0,0 @@ ---- railties-3.2.19.gemspec.orig 2014-07-02 19:26:50.010451747 +0000 -+++ railties-3.2.19.gemspec 2014-07-02 19:28:44.333443952 +0000 -@@ -74,21 +74,6 @@ - prerelease: false - name: thor - - !ruby/object:Gem::Dependency -- requirement: &id004 !ruby/object:Gem::Requirement -- none: false -- requirements: -- - - ~> -- - !ruby/object:Gem::Version -- hash: 15 -- segments: -- - 3 -- - 4 -- version: "3.4" -- type: :runtime -- version_requirements: *id004 -- prerelease: false -- name: rdoc --- !ruby/object:Gem::Dependency - requirement: &id005 !ruby/object:Gem::Requirement - none: false - requirements: Property changes on: head/www/rubygem-railties/files/patch-gemspec ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property