mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
Update ruby-gems to 2.4.5
Note this is a big upgrade and the way gemspecs are generated changed. As a result, all patched gemspecs had to have new patches.
This commit is contained in:
parent
fb8eeab63d
commit
fed7471248
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=382631
@ -412,6 +412,7 @@ GEMS_DIR= ${GEMS_BASE_DIR}/gems
|
||||
DOC_DIR= ${GEMS_BASE_DIR}/doc
|
||||
CACHE_DIR= ${GEMS_BASE_DIR}/cache
|
||||
SPEC_DIR= ${GEMS_BASE_DIR}/specifications
|
||||
EXT_DIR= ${GEMS_BASE_DIR}/extensions
|
||||
GEM_NAME?= ${PORTNAME}-${PORTVERSION}
|
||||
GEM_LIB_DIR?= ${GEMS_DIR}/${GEM_NAME}
|
||||
GEM_DOC_DIR?= ${DOC_DIR}/${GEM_NAME}
|
||||
@ -425,6 +426,7 @@ PLIST_SUB+= PORTVERSION="${PORTVERSION}" \
|
||||
DOC_DIR="${DOC_DIR}" \
|
||||
CACHE_DIR="${CACHE_DIR}" \
|
||||
SPEC_DIR="${SPEC_DIR}" \
|
||||
EXT_DIR="${EXT_DIR}" \
|
||||
PORT="${PORTNAME}-${PORTVERSION}" \
|
||||
GEM_NAME="${GEM_NAME}" \
|
||||
GEM_LIB_DIR="${GEM_LIB_DIR}" \
|
||||
@ -441,18 +443,28 @@ GEMFILES= ${DISTFILES:C/:[^:]+$//}
|
||||
GEMFILES= ${DISTNAME}${EXTRACT_SUFX}
|
||||
. endif
|
||||
|
||||
RUBYGEM_ARGS=-l --no-update-sources --no-ri --install-dir ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER} --ignore-dependencies --bindir=${STAGEDIR}${PREFIX}/bin
|
||||
GEMSPEC= ${PORTNAME}.gemspec
|
||||
|
||||
RUBYGEM_ARGS=-l --no-update-sources --install-dir ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER} --ignore-dependencies --bindir=${STAGEDIR}${PREFIX}/bin
|
||||
GEM_ENV+= RB_USER_INSTALL=yes
|
||||
.if defined(NOPORTDOCS)
|
||||
RUBYGEM_ARGS+= --no-rdoc
|
||||
RUBYGEM_ARGS+= --no-rdoc --no-ri
|
||||
.else
|
||||
RUBYGEM_ARGS+= --rdoc --ri
|
||||
.endif
|
||||
|
||||
do-extract:
|
||||
@${SETENV} ${GEM_ENV} ${RUBYGEMBIN} unpack --target=${WRKDIR} ${DISTDIR}/${DIST_SUBDIR}/${GEMFILES}
|
||||
@${TAR} -xOzf ${DISTDIR}/${DIST_SUBDIR}/${GEMFILES} metadata.gz | ${GZCAT} > ${BUILD_WRKSRC}/${GEMFILES}spec
|
||||
@(cd ${BUILD_WRKSRC}; if ! ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} spec --ruby ${DISTDIR}/${DIST_SUBDIR}/${GEMFILES} > ${GEMSPEC} ; then \
|
||||
if [ -n "${BUILD_FAIL_MESSAGE}" ] ; then \
|
||||
${ECHO_MSG} "===> Extraction failed unexpectedly."; \
|
||||
(${ECHO_CMD} "${BUILD_FAIL_MESSAGE}") | ${FMT} 75 79 ; \
|
||||
fi; \
|
||||
${FALSE}; \
|
||||
fi)
|
||||
|
||||
do-build:
|
||||
@(cd ${BUILD_WRKSRC}; if ! ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} build --force ${GEMFILES}spec ; then \
|
||||
@(cd ${BUILD_WRKSRC}; if ! ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} build --force ${GEMSPEC} ; then \
|
||||
if [ -n "${BUILD_FAIL_MESSAGE}" ] ; then \
|
||||
${ECHO_MSG} "===> Compilation failed unexpectedly."; \
|
||||
(${ECHO_CMD} "${BUILD_FAIL_MESSAGE}") | ${FMT} 75 79 ; \
|
||||
@ -461,7 +473,12 @@ do-build:
|
||||
fi)
|
||||
|
||||
do-install:
|
||||
@(cd ${BUILD_WRKSRC}; ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} install ${RUBYGEM_ARGS} ${GEMFILES} -- --build-args ${CONFIGURE_ARGS})
|
||||
(cd ${BUILD_WRKSRC}; ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} install ${RUBYGEM_ARGS} ${GEMFILES} -- --build-args ${CONFIGURE_ARGS})
|
||||
${RM} -r ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR}/build_info/
|
||||
${RMDIR} ${STAGEDIR}${PREFIX}/${EXT_DIR} 2> /dev/null || ${TRUE}
|
||||
.if defined(NOPORTDOCS)
|
||||
-@${RMDIR} ${STAGEDIR}${PREFIX}/${DOC_DIR}
|
||||
.endif
|
||||
|
||||
. if defined(RUBYGEM_AUTOPLIST)
|
||||
. if !target(post-install-script)
|
||||
@ -469,24 +486,15 @@ post-install-script:
|
||||
@${ECHO} ${GEM_CACHE} >> ${TMPPLIST}
|
||||
@${ECHO} ${GEM_SPEC} >> ${TMPPLIST}
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${FIND} -ds ${STAGEDIR}${PREFIX}/${GEM_DOC_DIR} -type f -print | ${SED} -E -e \
|
||||
@${FIND} -ds ${STAGEDIR}${PREFIX}/${DOC_DIR} -type f -print | ${SED} -E -e \
|
||||
's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST}
|
||||
@${FIND} -ds ${STAGEDIR}${PREFIX}/${GEM_DOC_DIR} -type d -print | ${SED} -E -e \
|
||||
's,^${STAGEDIR}${PREFIX}/?,@dirrm ,' >> ${TMPPLIST}
|
||||
.endif
|
||||
@${FIND} -ds ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR} -type f -print | ${SED} -E -e \
|
||||
's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST}
|
||||
@${FIND} -ds ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR} -type d -print | ${SED} -E -e \
|
||||
's,^${STAGEDIR}${PREFIX}/?,@dirrm ,' >> ${TMPPLIST}
|
||||
@${ECHO_CMD} "@unexec rmdir %D/${GEMS_DIR} 2>/dev/null || true" >> ${TMPPLIST}
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${ECHO_CMD} "@unexec rmdir %D/${DOC_DIR} 2>/dev/null || true" >> ${TMPPLIST}
|
||||
.endif
|
||||
@${ECHO_CMD} "@unexec rmdir %D/${CACHE_DIR} 2>/dev/null || true" >> ${TMPPLIST}
|
||||
@${ECHO_CMD} "@unexec rmdir %D/${SPEC_DIR} 2>/dev/null || true" >> ${TMPPLIST}
|
||||
@${ECHO_CMD} "@unexec rmdir %D/${GEMS_BASE_DIR} 2>/dev/null || true" >> ${TMPPLIST}
|
||||
@${ECHO_CMD} "@unexec rmdir %D/lib/ruby/gems 2>/dev/null || true" >> ${TMPPLIST}
|
||||
@${ECHO_CMD} "@unexec rmdir %D/lib/ruby 2>/dev/null || true" >> ${TMPPLIST}
|
||||
@if [ -d ${STAGEDIR}${PREFIX}/${EXT_DIR} ]; then \
|
||||
${FIND} -ds ${STAGEDIR}${PREFIX}/${EXT_DIR} -type f -print | ${SED} -E -e \
|
||||
's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} ; \
|
||||
fi
|
||||
. endif
|
||||
. endif
|
||||
|
||||
|
@ -2,9 +2,9 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= gems
|
||||
PORTVERSION= 1.8.30
|
||||
PORTVERSION= 2.4.5
|
||||
CATEGORIES= devel ruby
|
||||
MASTER_SITES= https://github.com/rubygems/rubygems/releases/download/v${PORTVERSION}/
|
||||
MASTER_SITES= http://production.cf.rubygems.org/rubygems/
|
||||
PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX}
|
||||
DISTNAME= ruby${PORTNAME}-${PORTVERSION}
|
||||
DIST_SUBDIR= ruby
|
||||
@ -21,9 +21,6 @@ RUBY_SETUP= setup.rb
|
||||
NO_BUILD= yes
|
||||
USES= tar:tgz
|
||||
|
||||
PLIST_SUB+= DISTNAME="${DISTNAME}" \
|
||||
RUBY_VER_SHORT="${RUBY_VER_SHORT}"
|
||||
|
||||
GEMS_BASE_DIR= lib/ruby/gems
|
||||
GEMS_BASE_DIR_P= ${GEMS_BASE_DIR}
|
||||
GEMS_VER_DIR= ${GEMS_BASE_DIR}/${RUBY_VER}
|
||||
@ -34,6 +31,20 @@ GEMS_DOC_DIR= ${GEMS_DOC_BASE_DIR}/${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 <bsd.port.options.mk>
|
||||
@ -59,36 +70,6 @@ post-install:
|
||||
.if ${PORT_OPTIONS:MDOCS}
|
||||
@${FIND} -ds ${STAGEDIR}${PREFIX}/${GEMS_DOC_DIR}/ ! -type d | \
|
||||
${SED} 's,^${STAGEDIR}${PREFIX}/,,' >> ${TMPPLIST}
|
||||
@${FIND} -ds ${STAGEDIR}${PREFIX}/${GEMS_DOC_DIR}/ -type d -mindepth 1 | \
|
||||
${SED} -E -e 's,^${STAGEDIR}${PREFIX}/,@dirrm ,' >> ${TMPPLIST}
|
||||
@${ECHO_CMD} "@dirrm ${GEMS_DOC_DIR}" >> ${TMPPLIST}
|
||||
.endif
|
||||
|
||||
@${ECHO_CMD} "@unexec rmdir %D/lib/ruby/gems/${RUBY_VER}/doc 2>/dev/null || true" >> ${TMPPLIST}
|
||||
@${ECHO_CMD} "@unexec rmdir %D/lib/ruby/gems/${RUBY_VER} 2>/dev/null || true" >> ${TMPPLIST}
|
||||
@${ECHO_CMD} "@unexec rmdir %D/lib/ruby/gems 2>/dev/null || true" >> ${TMPPLIST}
|
||||
@${ECHO_CMD} "@unexec rmdir %D/lib/ruby 2>/dev/null || true" >> ${TMPPLIST}
|
||||
|
||||
# This target is only meant to be used by the port maintainer.
|
||||
x-generate-plist:
|
||||
${ECHO} bin/gem > pkg-plist.new
|
||||
${ECHO} bin/gem%%RUBY_VER_SHORT%% >> pkg-plist.new
|
||||
${ECHO} %%RUBY_SITELIBDIR%%/gauntlet_rubygems.rb >> pkg-plist.new
|
||||
${ECHO} %%RUBY_SITELIBDIR%%/rbconfig/datadir.rb >> pkg-plist.new
|
||||
${ECHO} %%RUBY_SITELIBDIR%%/rubygems.rb >> pkg-plist.new
|
||||
${FIND} ${STAGEDIR}${RUBY_SITELIBDIR}/rubygems -type f | ${SORT} | ${SED} -e 's,${STAGEDIR}${RUBY_SITELIBDIR},%%RUBY_SITELIBDIR%%,' >> pkg-plist.new
|
||||
${ECHO} %%RUBY_SITELIBDIR%%/ubygems.rb >> pkg-plist.new
|
||||
${FIND} ${STAGEDIR}${PREFIX}/${GEMS_DOC_DIR} -type f | ${SORT} | ${SED} -e 's,${STAGEDIR}${PREFIX}/${GEMS_DOC_DIR},%%PORTDOCS%%${GEMS_DOC_DIR_P},' >> pkg-plist.new
|
||||
|
||||
${FIND} ${STAGEDIR}${RUBY_SITELIBDIR}/rubygems -type d | ${SORT} -r | ${SED} -e 's,${STAGEDIR}${RUBY_SITELIBDIR},@dirrm %%RUBY_SITELIBDIR%%,' >> pkg-plist.new
|
||||
${ECHO} @dirrm %%RUBY_SITELIBDIR%%/rbconfig >> pkg-plist.new
|
||||
${ECHO} @dirrmtry ${GEMS_VER_DIR_P}/specifications >> pkg-plist.new
|
||||
${ECHO} @dirrmtry ${GEMS_VER_DIR_P}/gems >> pkg-plist.new
|
||||
${ECHO} @dirrmtry ${GEMS_VER_DIR_P}/cache >> pkg-plist.new
|
||||
${FIND} ${STAGEDIR}${PREFIX}/${GEMS_DOC_DIR} -type d | ${SORT} -r | ${SED} -e 's,${STAGEDIR}${PREFIX}/${GEMS_DOC_DIR},%%PORTDOCS%%@dirrm ${GEMS_DOC_DIR_P},' >> pkg-plist.new
|
||||
${ECHO} ${GEMS_DOC_BASE_DIR_P}/.keep_this >> pkg-plist.new
|
||||
${ECHO} @dirrmtry ${GEMS_DOC_BASE_DIR_P} >> pkg-plist.new
|
||||
${ECHO} @dirrmtry ${GEMS_VER_DIR_P} >> pkg-plist.new
|
||||
${ECHO} @dirrmtry ${GEMS_BASE_DIR_P} >> pkg-plist.new
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -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
|
||||
|
@ -1,9 +1,9 @@
|
||||
bin/gem
|
||||
bin/gem%%RUBY_VER_SHORT%%
|
||||
%%RUBY_SITELIBDIR%%/gauntlet_rubygems.rb
|
||||
%%RUBY_SITELIBDIR%%/rbconfig/datadir.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/builder.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/available_set.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/basic_specification.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/command.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/command_manager.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/commands/build_command.rb
|
||||
@ -19,6 +19,8 @@ bin/gem%%RUBY_VER_SHORT%%
|
||||
%%RUBY_SITELIBDIR%%/rubygems/commands/install_command.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/commands/list_command.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/commands/lock_command.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/commands/mirror_command.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/commands/open_command.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/commands/outdated_command.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/commands/owner_command.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/commands/pristine_command.rb
|
||||
@ -35,38 +37,44 @@ bin/gem%%RUBY_VER_SHORT%%
|
||||
%%RUBY_SITELIBDIR%%/rubygems/commands/unpack_command.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/commands/update_command.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/commands/which_command.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/commands/yank_command.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/compatibility.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/config_file.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/custom_require.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/core_ext/kernel_gem.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/core_ext/kernel_require.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/defaults.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/dependency.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/dependency_installer.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/dependency_list.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/deprecate.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/doc_manager.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/doctor.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/errors.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/exceptions.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/ext.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/ext/build_error.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/ext/builder.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/ext/cmake_builder.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/ext/configure_builder.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/ext/ext_conf_builder.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/ext/rake_builder.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/format.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/gem_openssl.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/gem_path_searcher.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/gem_runner.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/gemcutter_utilities.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/indexer.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/install_default_message.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/install_message.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/install_update_options.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/installer.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/installer_test_case.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/local_remote_options.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/mock_gem_ui.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/old_format.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/name_tuple.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/package.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/package/f_sync_dir.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/package/digest_io.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/package/file_source.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/package/io_source.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/package/old.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/package/source.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/package/tar_header.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/package/tar_input.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/package/tar_output.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/package/tar_reader.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/package/tar_reader/entry.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/package/tar_test_case.rb
|
||||
@ -76,14 +84,60 @@ bin/gem%%RUBY_VER_SHORT%%
|
||||
%%RUBY_SITELIBDIR%%/rubygems/platform.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/psych_additions.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/psych_tree.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/rdoc.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/remote_fetcher.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/require_paths_builder.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/requirement.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/request.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/request/connection_pools.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/request/http_pool.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/request/https_pool.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/request_set/gem_dependency_api.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/request_set/lockfile.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/request_set.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/activation_request.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/api_set.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/api_specification.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/best_set.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/composed_set.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/conflict.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/current_set.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/dependency_request.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/git_set.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/git_specification.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/index_set.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/index_specification.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/installed_specification.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/installer_set.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/local_specification.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/lock_set.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/lock_specification.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/requirement_list.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/set.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/spec_specification.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/specification.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/stats.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/vendor_set.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/resolver/vendor_specification.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/security.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/security/policies.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/security/policy.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/security/signer.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/security/trust_dir.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/server.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/source_index.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/spec_fetcher.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/specification.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/stub_specification.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/source/git.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/source/installed.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/source/local.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/source/lock.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/source/specific_file.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/source/vendor.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/source.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/source_list.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/source_local.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/source_specific_file.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/ssl_certs/AddTrustExternalCARoot-2048.pem
|
||||
%%RUBY_SITELIBDIR%%/rubygems/ssl_certs/AddTrustExternalCARoot.pem
|
||||
%%RUBY_SITELIBDIR%%/rubygems/ssl_certs/Class3PublicPrimaryCertificationAuthority.pem
|
||||
@ -95,9 +149,18 @@ bin/gem%%RUBY_VER_SHORT%%
|
||||
%%RUBY_SITELIBDIR%%/rubygems/test_utilities.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/text.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/uninstaller.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/uri_formatter.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/util.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/util/list.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/util/stringio.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/user_interaction.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/validator.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/version.rb
|
||||
%%RUBY_SITELIBDIR%%/rubygems/version_option.rb
|
||||
%%RUBY_SITELIBDIR%%/ubygems.rb
|
||||
lib/ruby/gems/%%RUBY_VER%%/doc/.keep_this
|
||||
@dir lib/ruby/gems/%%RUBY_VER%%/build_info
|
||||
@dir %%EXT_DIR%%
|
||||
@dir %%CACHE_DIR%%
|
||||
@dir %%GEMS_DIR%%
|
||||
@dir %%SPEC_DIR%%
|
||||
|
@ -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:
|
@ -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")
|
||||
|
@ -21,8 +21,4 @@ RUBYGEM_AUTOPLIST= yes
|
||||
|
||||
PLIST_FILES= bin/bones
|
||||
|
||||
post-patch:
|
||||
# adjust gemspec for "rdoc ~> 3.0"
|
||||
@${REINPLACE_CMD} -e '27,40 d' ${WRKSRC}/${GEM_NAME}.gemspec
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -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"
|
||||
|
@ -30,7 +30,7 @@ post-install:
|
||||
|
||||
.include <bsd.port.pre.mk>
|
||||
|
||||
.if ${RUBY_VER} == 2.1
|
||||
.if ${RUBY_VER} >= 2.1
|
||||
BROKEN= Does not build with Ruby 2.1
|
||||
.endif
|
||||
|
||||
|
@ -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
|
10
devel/rubygem-debugger/files/patch-gemspec
Normal file
10
devel/rubygem-debugger/files/patch-gemspec
Normal file
@ -0,0 +1,10 @@
|
||||
--- debugger.gemspec.orig 2014-11-29 13:54:11.000000000 +0000
|
||||
+++ debugger.gemspec 2014-11-29 13:54:46.000000000 +0000
|
||||
@@ -26,7 +26,6 @@
|
||||
|
||||
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
||||
s.add_runtime_dependency(%q<columnize>, [">= 0.3.1"])
|
||||
- s.add_runtime_dependency(%q<debugger-ruby_core_source>, ["~> 1.2.3"])
|
||||
s.add_runtime_dependency(%q<debugger-linecache>, ["~> 1.2.0"])
|
||||
s.add_development_dependency(%q<rake>, ["~> 0.9.2.2"])
|
||||
s.add_development_dependency(%q<rake-compiler>, ["~> 0.8.0"])
|
10
devel/rubygem-launchy22/files/patch-gemspec
Normal file
10
devel/rubygem-launchy22/files/patch-gemspec
Normal file
@ -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"
|
@ -13,5 +13,6 @@ USE_RUBY= yes
|
||||
USE_RUBYGEMS= yes
|
||||
RUBYGEM_AUTOPLIST= yes
|
||||
PLIST_FILES= bin/rapt
|
||||
USES= libtool
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -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"]
|
||||
|
@ -22,11 +22,6 @@ RUBYGEM_AUTOPLIST= yes
|
||||
PLIST_FILES= bin/colortab bin/term_display bin/term_mandel
|
||||
PORTEXAMPLES= cdiff decolor
|
||||
|
||||
post-patch:
|
||||
# Chop out the cdiff and decolor binaries; these should be installed to
|
||||
# EXAMPLESDIR
|
||||
@${REINPLACE_CMD} -e '/^- [cd][de][ic][fo][fl]o*r*$$/d' ${WRKSRC}/${GEM_NAME}.gemspec
|
||||
|
||||
post-install:
|
||||
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/
|
||||
cd ${WRKSRC}/bin/ && ${INSTALL_SCRIPT} ${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR}/
|
||||
|
11
devel/rubygem-term-ansicolor/files/patch-gemspec
Normal file
11
devel/rubygem-term-ansicolor/files/patch-gemspec
Normal file
@ -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"
|
@ -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<nokogiri>, [">= 0"])
|
||||
s.add_development_dependency(%q<radius>, [">= 0"])
|
||||
s.add_development_dependency(%q<rdiscount>, [">= 0"])
|
||||
- s.add_development_dependency(%q<rdoc>, [">= 0"])
|
||||
s.add_development_dependency(%q<redcarpet>, [">= 0"])
|
||||
s.add_development_dependency(%q<sass>, [">= 0"])
|
||||
s.add_development_dependency(%q<wikicloth>, [">= 0"])
|
||||
s.add_development_dependency(%q<yajl-ruby>, [">= 0"])
|
||||
- s.add_development_dependency(%q<rdoc>, [">= 0"])
|
||||
else
|
||||
s.add_dependency(%q<asciidoctor>, [">= 0.1.0"])
|
||||
s.add_dependency(%q<RedCloth>, [">= 0"])
|
||||
|
@ -17,7 +17,4 @@ USE_RUBY= yes
|
||||
USE_RUBYGEMS= yes
|
||||
RUBYGEM_AUTOPLIST= yes
|
||||
|
||||
post-patch:
|
||||
@${REINPLACE_CMD} -e '18 s|~>|>=|' ${WRKSRC}/${GEM_NAME}.gemspec
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
11
devel/rubygem-toml/files/patch-gemspec
Normal file
11
devel/rubygem-toml/files/patch-gemspec
Normal file
@ -0,0 +1,11 @@
|
||||
--- toml.gemspec.orig 2015-01-21 20:38:16.000000000 +0000
|
||||
+++ toml.gemspec 2015-01-21 20:38:37.000000000 +0000
|
||||
@@ -30,7 +30,7 @@
|
||||
s.add_dependency(%q<rake>, [">= 0"])
|
||||
end
|
||||
else
|
||||
- s.add_dependency(%q<parslet>, ["~> 1.5.0"])
|
||||
+ s.add_dependency(%q<parslet>, [">= 1.5.0"])
|
||||
s.add_dependency(%q<rake>, [">= 0"])
|
||||
end
|
||||
end
|
11
devel/rubygem-travis/files/patch-gemspec
Normal file
11
devel/rubygem-travis/files/patch-gemspec
Normal file
@ -0,0 +1,11 @@
|
||||
--- travis.gemspec.orig 2015-03-29 23:54:08.316179000 +0000
|
||||
+++ travis.gemspec 2015-03-29 23:55:01.636016000 +0000
|
||||
@@ -28,7 +28,7 @@
|
||||
s.add_runtime_dependency(%q<backports>, [">= 0"])
|
||||
s.add_runtime_dependency(%q<gh>, ["~> 0.13"])
|
||||
s.add_runtime_dependency(%q<launchy>, ["~> 2.1"])
|
||||
- s.add_runtime_dependency(%q<pry>, ["< 0.10", "~> 0.9"])
|
||||
+ s.add_runtime_dependency(%q<pry>, ["~> 0.9"])
|
||||
s.add_runtime_dependency(%q<typhoeus>, [">= 0.6.8", "~> 0.6"])
|
||||
s.add_runtime_dependency(%q<pusher-client>, ["~> 0.4"])
|
||||
s.add_runtime_dependency(%q<addressable>, ["~> 2.3"])
|
@ -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'
|
@ -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"
|
@ -1,33 +1,10 @@
|
||||
--- lita-4.3.0.gemspec.orig 2014-09-08 22:00:06 UTC
|
||||
+++ lita-4.3.0.gemspec
|
||||
@@ -123,20 +123,6 @@
|
||||
- !ruby/object:Gem::Version
|
||||
version: 1.5.2
|
||||
- !ruby/object:Gem::Dependency
|
||||
- name: rb-readline
|
||||
- requirement: !ruby/object:Gem::Requirement
|
||||
- requirements:
|
||||
- - - ">="
|
||||
- - !ruby/object:Gem::Version
|
||||
- version: 0.5.1
|
||||
- type: :runtime
|
||||
- prerelease: false
|
||||
- version_requirements: !ruby/object:Gem::Requirement
|
||||
- requirements:
|
||||
- - - ">="
|
||||
- - !ruby/object:Gem::Version
|
||||
- version: 0.5.1
|
||||
-- !ruby/object:Gem::Dependency
|
||||
name: redis-namespace
|
||||
requirement: !ruby/object:Gem::Requirement
|
||||
requirements:
|
||||
--- lita.gemspec.orig 2014-09-08 22:00:06 UTC
|
||||
+++ lita.gemspec
|
||||
@@ -28,7 +28,6 @@
|
||||
spec.add_runtime_dependency "multi_json", ">= 1.7.7"
|
||||
spec.add_runtime_dependency "puma", ">= 2.7.1"
|
||||
spec.add_runtime_dependency "rack", ">= 1.5.2"
|
||||
- spec.add_runtime_dependency "rb-readline", ">= 0.5.1"
|
||||
spec.add_runtime_dependency "redis-namespace", ">= 1.3.0"
|
||||
spec.add_runtime_dependency "thor", ">= 0.18.1"
|
||||
|
||||
--- lita.gemspec.orig 2015-01-21 20:12:12.000000000 +0000
|
||||
+++ lita.gemspec 2015-01-21 20:15:03.000000000 +0000
|
||||
@@ -69,7 +69,6 @@
|
||||
s.add_dependency(%q<multi_json>, [">= 1.7.7"])
|
||||
s.add_dependency(%q<puma>, [">= 2.7.1"])
|
||||
s.add_dependency(%q<rack>, [">= 1.5.2"])
|
||||
- s.add_dependency(%q<rb-readline>, [">= 0.5.1"])
|
||||
s.add_dependency(%q<redis-namespace>, [">= 1.3.0"])
|
||||
s.add_dependency(%q<thor>, [">= 0.18.1"])
|
||||
s.add_dependency(%q<rake>, [">= 0"])
|
||||
|
11
net-im/rubygem-termtter/files/patch-gemspec
Normal file
11
net-im/rubygem-termtter/files/patch-gemspec
Normal file
@ -0,0 +1,11 @@
|
||||
--- termtter.gemspec.orig 2014-12-01 02:49:20.000000000 +0000
|
||||
+++ termtter.gemspec 2014-12-01 02:49:41.000000000 +0000
|
||||
@@ -25,7 +25,7 @@
|
||||
|
||||
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
||||
s.add_runtime_dependency(%q<json>, ["> 1.1.3"])
|
||||
- s.add_runtime_dependency(%q<highline>, ["~> 1.5.0"])
|
||||
+ s.add_runtime_dependency(%q<highline>, ["~> 1.6.0"])
|
||||
s.add_runtime_dependency(%q<termcolor>, ["~> 1.0.0"])
|
||||
s.add_runtime_dependency(%q<rubytter>, ["~> 1.5.1"])
|
||||
s.add_runtime_dependency(%q<notify>, ["~> 0.5.1"])
|
@ -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
|
@ -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"
|
@ -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: |-
|
@ -1,11 +1,11 @@
|
||||
--- gitlab_omniauth-ldap-1.1.0.gemspec.orig 2013-10-25 02:24:55.456068284 +0000
|
||||
+++ gitlab_omniauth-ldap-1.1.0.gemspec 2013-10-25 02:25:06.863067558 +0000
|
||||
@@ -58,7 +58,7 @@
|
||||
requirements:
|
||||
- - ~>
|
||||
- !ruby/object:Gem::Version
|
||||
- version: 0.1.1
|
||||
+ version: 0.4.0
|
||||
type: :runtime
|
||||
prerelease: false
|
||||
version_requirements: !ruby/object:Gem::Requirement
|
||||
--- gitlab_omniauth-ldap.gemspec.orig 2014-12-01 04:29:00.000000000 +0000
|
||||
+++ gitlab_omniauth-ldap.gemspec 2014-12-01 04:29:29.000000000 +0000
|
||||
@@ -25,7 +25,7 @@
|
||||
s.add_runtime_dependency(%q<omniauth>, ["~> 1.0"])
|
||||
s.add_runtime_dependency(%q<net-ldap>, ["~> 0.7.0"])
|
||||
s.add_runtime_dependency(%q<pyu-ruby-sasl>, ["~> 0.0.3.1"])
|
||||
- s.add_runtime_dependency(%q<rubyntlm>, ["~> 0.1.1"])
|
||||
+ s.add_runtime_dependency(%q<rubyntlm>, ["~> 0.4.0"])
|
||||
else
|
||||
s.add_dependency(%q<omniauth>, ["~> 1.0"])
|
||||
s.add_dependency(%q<net-ldap>, ["~> 0.7.0"])
|
||||
|
11
net/rubygem-twitter-stream/files/patch-gemspec
Normal file
11
net/rubygem-twitter-stream/files/patch-gemspec
Normal file
@ -0,0 +1,11 @@
|
||||
--- twitter-stream.gemspec.orig 2014-12-01 16:17:01.000000000 +0000
|
||||
+++ twitter-stream.gemspec 2014-12-01 16:17:31.000000000 +0000
|
||||
@@ -24,7 +24,7 @@
|
||||
|
||||
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
||||
s.add_runtime_dependency(%q<eventmachine>, [">= 0.12.8"])
|
||||
- s.add_runtime_dependency(%q<simple_oauth>, ["~> 0.1.4"])
|
||||
+ s.add_runtime_dependency(%q<simple_oauth>, ["~> 0.2.0"])
|
||||
s.add_runtime_dependency(%q<http_parser.rb>, ["~> 0.5.1"])
|
||||
s.add_development_dependency(%q<rspec>, ["~> 2.5.0"])
|
||||
else
|
@ -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
|
@ -26,8 +26,4 @@ USE_RUBY= yes
|
||||
USE_RUBYGEMS= yes
|
||||
RUBYGEM_AUTOPLIST= yes
|
||||
|
||||
post-patch:
|
||||
# adjust gemspec for "http ~> 0.6.0"
|
||||
@${REINPLACE_CMD} -e '77 s|"~>"|">="|' ${WRKSRC}/${GEM_NAME}.gemspec
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
11
net/rubygem-twitter/files/patch-gemspec
Normal file
11
net/rubygem-twitter/files/patch-gemspec
Normal file
@ -0,0 +1,11 @@
|
||||
--- twitter.gemspec.orig 2015-01-21 20:31:06.000000000 +0000
|
||||
+++ twitter.gemspec 2015-01-21 20:31:20.000000000 +0000
|
||||
@@ -25,7 +25,7 @@
|
||||
s.add_runtime_dependency(%q<buftok>, ["~> 0.2.0"])
|
||||
s.add_runtime_dependency(%q<equalizer>, ["~> 0.0.9"])
|
||||
s.add_runtime_dependency(%q<faraday>, ["~> 0.9.0"])
|
||||
- s.add_runtime_dependency(%q<http>, ["~> 0.6.0"])
|
||||
+ s.add_runtime_dependency(%q<http>, [">= 0.6.0"])
|
||||
s.add_runtime_dependency(%q<http_parser.rb>, ["~> 0.6.0"])
|
||||
s.add_runtime_dependency(%q<json>, ["~> 1.8"])
|
||||
s.add_runtime_dependency(%q<memoizable>, ["~> 0.4.0"])
|
@ -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
|
||||
|
||||
|
11
sysutils/rubygem-hammer_cli/files/patch-gemspec
Normal file
11
sysutils/rubygem-hammer_cli/files/patch-gemspec
Normal file
@ -0,0 +1,11 @@
|
||||
--- hammer_cli.gemspec.orig 2015-01-22 02:42:09.000000000 +0000
|
||||
+++ hammer_cli.gemspec 2015-01-22 02:42:46.000000000 +0000
|
||||
@@ -64,7 +64,7 @@
|
||||
s.add_dependency(%q<json>, [">= 0"])
|
||||
s.add_dependency(%q<rb-readline>, [">= 0"])
|
||||
s.add_dependency(%q<fastercsv>, [">= 0"])
|
||||
- s.add_dependency(%q<mime-types>, ["~> 1.0"])
|
||||
+ s.add_dependency(%q<mime-types>, [">= 1.0"])
|
||||
s.add_dependency(%q<apipie-bindings>, ["~> 0.0.10"])
|
||||
end
|
||||
end
|
@ -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
|
@ -1,23 +1,10 @@
|
||||
--- nokogiri-1.6.6.2.gemspec.orig 2014-08-23 23:55:51.304817727 +0000
|
||||
+++ nokogiri-1.6.6.2.gemspec 2014-08-23 23:56:09.655816514 +0000
|
||||
@@ -15,20 +15,6 @@
|
||||
date: 2014-07-22 00:00:00.000000000 Z
|
||||
dependencies:
|
||||
- !ruby/object:Gem::Dependency
|
||||
- name: mini_portile
|
||||
- requirement: !ruby/object:Gem::Requirement
|
||||
- requirements:
|
||||
- - - ~>
|
||||
- - !ruby/object:Gem::Version
|
||||
- version: 0.6.0
|
||||
- type: :runtime
|
||||
- prerelease: false
|
||||
- version_requirements: !ruby/object:Gem::Requirement
|
||||
- requirements:
|
||||
- - - ~>
|
||||
- - !ruby/object:Gem::Version
|
||||
- version: 0.6.0
|
||||
-- !ruby/object:Gem::Dependency
|
||||
name: rdoc
|
||||
requirement: !ruby/object:Gem::Requirement
|
||||
requirements:
|
||||
--- nokogiri.gemspec.orig 2015-03-29 12:13:17.677851000 +0000
|
||||
+++ nokogiri.gemspec 2015-03-29 13:06:46.232040000 +0000
|
||||
@@ -28,7 +28,6 @@
|
||||
s.specification_version = 4
|
||||
|
||||
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
||||
- s.add_runtime_dependency(%q<mini_portile>, ["~> 0.6.0"])
|
||||
s.add_development_dependency(%q<rdoc>, ["~> 4.0"])
|
||||
s.add_development_dependency(%q<hoe-bundler>, [">= 1.1"])
|
||||
s.add_development_dependency(%q<hoe-debugging>, ["~> 1.2.0"])
|
||||
|
@ -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
|
File diff suppressed because one or more lines are too long
@ -1,11 +1,11 @@
|
||||
--- sass-rails-3.2.6.gemspec.orig 2014-02-19 03:55:59.669617961 +0000
|
||||
+++ sass-rails-3.2.6.gemspec 2014-02-19 03:55:59.699618518 +0000
|
||||
@@ -43,7 +43,7 @@
|
||||
name: tilt
|
||||
requirement: !ruby/object:Gem::Requirement
|
||||
requirements:
|
||||
- - - "~>"
|
||||
+ - - ">="
|
||||
- !ruby/object:Gem::Version
|
||||
version: '1.3'
|
||||
type: :runtime
|
||||
--- sass-rails.gemspec.orig 2014-12-01 21:52:39.000000000 +0000
|
||||
+++ sass-rails.gemspec 2014-12-01 21:53:01.000000000 +0000
|
||||
@@ -24,7 +24,7 @@
|
||||
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
||||
s.add_runtime_dependency(%q<sass>, [">= 3.1.10"])
|
||||
s.add_runtime_dependency(%q<railties>, ["~> 3.2.0"])
|
||||
- s.add_runtime_dependency(%q<tilt>, ["~> 1.3"])
|
||||
+ s.add_runtime_dependency(%q<tilt>, [">= 1.3"])
|
||||
else
|
||||
s.add_dependency(%q<sass>, [">= 3.1.10"])
|
||||
s.add_dependency(%q<railties>, ["~> 3.2.0"])
|
||||
|
File diff suppressed because one or more lines are too long
@ -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:
|
@ -1,20 +1,20 @@
|
||||
--- gitlab-gollum-lib-1.1.0.gemspec.orig 2014-08-31 05:45:21.688401723 +0000
|
||||
+++ gitlab-gollum-lib-1.1.0.gemspec 2014-08-31 05:45:42.784398809 +0000
|
||||
@@ -79,7 +79,7 @@
|
||||
requirements:
|
||||
- - ~>
|
||||
- !ruby/object:Gem::Version
|
||||
- version: 1.5.9
|
||||
+ version: 1.6.0
|
||||
type: :runtime
|
||||
prerelease: false
|
||||
version_requirements: !ruby/object:Gem::Requirement
|
||||
@@ -205,7 +205,7 @@
|
||||
requirements:
|
||||
- - ~>
|
||||
- !ruby/object:Gem::Version
|
||||
- version: 0.4.2
|
||||
+ version: 0.5.2
|
||||
type: :development
|
||||
prerelease: false
|
||||
version_requirements: !ruby/object:Gem::Requirement
|
||||
--- gitlab-gollum-lib.gemspec.orig 2015-01-22 02:57:29.000000000 +0000
|
||||
+++ gitlab-gollum-lib.gemspec 2015-01-22 02:57:52.000000000 +0000
|
||||
@@ -63,7 +63,7 @@
|
||||
s.add_dependency(%q<github-markup>, ["< 1.0.0", ">= 0.7.5"])
|
||||
s.add_dependency(%q<github-markdown>, ["~> 0.5.3"])
|
||||
s.add_dependency(%q<sanitize>, ["~> 2.0.3"])
|
||||
- s.add_dependency(%q<nokogiri>, ["~> 1.5.9"])
|
||||
+ s.add_dependency(%q<nokogiri>, [">= 1.5.9"])
|
||||
s.add_dependency(%q<stringex>, ["~> 1.5.1"])
|
||||
s.add_dependency(%q<RedCloth>, ["~> 4.2.9"])
|
||||
s.add_dependency(%q<mocha>, ["~> 0.13.2"])
|
||||
@@ -72,7 +72,7 @@
|
||||
s.add_dependency(%q<wikicloth>, ["~> 0.8.0"])
|
||||
s.add_dependency(%q<rake>, ["~> 10.0.3"])
|
||||
s.add_dependency(%q<pry>, ["~> 0.9.12"])
|
||||
- s.add_dependency(%q<rb-readline>, ["~> 0.4.2"])
|
||||
+ s.add_dependency(%q<rb-readline>, [">= 0.4.2"])
|
||||
s.add_dependency(%q<minitest-reporters>, ["~> 0.14.10"])
|
||||
s.add_dependency(%q<nokogiri-diff>, ["~> 0.1.2"])
|
||||
end
|
||||
|
@ -1,11 +1,11 @@
|
||||
--- jekyll-2.5.3.gemspec.orig 2014-08-24 22:22:41.000000000 +0200
|
||||
+++ jekyll-2.5.3.gemspec 2014-08-24 22:23:14.000000000 +0200
|
||||
@@ -28,7 +28,7 @@
|
||||
name: kramdown
|
||||
requirement: !ruby/object:Gem::Requirement
|
||||
requirements:
|
||||
- - - "~>"
|
||||
+ - - ">="
|
||||
- !ruby/object:Gem::Version
|
||||
version: '1.3'
|
||||
type: :runtime
|
||||
--- jekyll.gemspec.orig 2015-02-28 03:53:48.387642000 +0000
|
||||
+++ jekyll.gemspec 2015-02-28 03:54:07.212075000 +0000
|
||||
@@ -26,7 +26,7 @@
|
||||
|
||||
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
||||
s.add_runtime_dependency(%q<liquid>, ["~> 2.6.1"])
|
||||
- s.add_runtime_dependency(%q<kramdown>, ["~> 1.3"])
|
||||
+ s.add_runtime_dependency(%q<kramdown>, [">= 1.3"])
|
||||
s.add_runtime_dependency(%q<mercenary>, ["~> 0.3.3"])
|
||||
s.add_runtime_dependency(%q<safe_yaml>, ["~> 1.0"])
|
||||
s.add_runtime_dependency(%q<colorator>, ["~> 0.1"])
|
||||
|
@ -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:
|
Loading…
Reference in New Issue
Block a user