Index: Mk/Uses/gem.mk =================================================================== --- Mk/Uses/gem.mk +++ Mk/Uses/gem.mk @@ -19,6 +19,9 @@ . endif . endfor +# "USES=gem" implies "USES=ruby" +.include "${USESDIR}/ruby.mk" + PKGNAMEPREFIX?= rubygem- EXTRACT_SUFX= .gem EXTRACT_ONLY= Index: Mk/Uses/ruby.mk =================================================================== --- Mk/Uses/ruby.mk +++ Mk/Uses/ruby.mk @@ -1,11 +1,16 @@ -# bsd.ruby.mk - Utility definitions for Ruby related ports. +# Provide support for Ruby releated ports. # - -.if !defined(Ruby_Include) - -Ruby_Include= bsd.ruby.mk -Ruby_Include_MAINTAINER= ruby@FreeBSD.org - +# Feature: ruby +# Usage: USES=ruby[:args,..] +# Valid ARGS: build, extconf, run, setup +# ARGS description: +# build Says that ruby is required only for build time. +# extconf Says that the port uses extconf.rb to configure. +# none Says that no dependency is added to the port. +# Intended to be used with lang/ruby*. +# run Says that ruby is required only for run time. +# setup Says that the port uses setup.rb to configure and +# build. # # [variables that a user may define] # @@ -23,20 +28,12 @@ # 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_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_RUBYGEMS - Do not use this -- instead USES=gem # # [variables that each port should not (re)define] # @@ -93,6 +90,25 @@ # RUBY_MODDOCDIR - Installation path for the module's documents. # RUBY_MODEXAMPLESDIR - Installation path for the module's examples. # +# MAINTAINER: ruby@FreeBSD.org + +.if !defined(_INCLUDE_USES_RUBY_MK) +_INCLUDE_USES_RUBY_MK= yes + +_valid_ARGS= build extconf none run setup + +# "USES=gem" implies "USES=ruby" +.if defined(_INCLUDE_USES_GEM_MK) +ruby_ARGS= +.endif + +# Sanity check +.for arg in ${ruby_ARGS} +.if empty(_valid_ARGS:M${arg}) +IGNORE= Incorrect 'USES+= ruby:${ruby_ARGS}' usage: argument [${arg}] is not recognized +.endif +.endfor + . if defined(RUBY_DEFAULT_VER) WARNING+= "RUBY_DEFAULT_VER is defined, consider using DEFAULT_VERSIONS=ruby=${RUBY_DEFAULT_VER} instead" @@ -285,8 +301,7 @@ # # extconf.rb support # -. if defined(USE_RUBY_EXTCONF) -USE_RUBY= yes +. if ${ruby_ARGS:Mextconf} RUBY_EXTCONF?= extconf.rb CONFIGURE_ARGS+= --with-opt-dir="${LOCALBASE}" @@ -311,7 +326,7 @@ # # setup.rb support # -. if defined(USE_RUBY_SETUP) +. if ${ruby_ARGS:Msetup} RUBY_SETUP?= setup.rb do-configure: ruby-setup-configure @@ -336,15 +351,17 @@ ${SETENV} ${MAKE_ENV} ${RUBY} ${RUBY_FLAGS} ${RUBY_SETUP} install --prefix=${STAGEDIR} . endif -. if defined(USE_RUBY) -. if !defined(RUBY_NO_BUILD_DEPENDS) +. if !${ruby_ARGS:Mbuild} && !${ruby_ARGS:Mrun} && !${ruby_ARGS:Mnone} EXTRACT_DEPENDS+= ${DEPEND_RUBY} PATCH_DEPENDS+= ${DEPEND_RUBY} BUILD_DEPENDS+= ${DEPEND_RUBY} -. endif -. if !defined(RUBY_NO_RUN_DEPENDS) RUN_DEPENDS+= ${DEPEND_RUBY} -. endif +. elif ${ruby_ARGS:Mbuild} +EXTRACT_DEPENDS+= ${DEPEND_RUBY} +PATCH_DEPENDS+= ${DEPEND_RUBY} +BUILD_DEPENDS+= ${DEPEND_RUBY} +. elif ${ruby_ARGS:Mrun} +RUN_DEPENDS+= ${DEPEND_RUBY} . endif . endif # _INVALID_RUBY_VER Index: Mk/bsd.port.mk =================================================================== --- Mk/bsd.port.mk +++ Mk/bsd.port.mk @@ -366,9 +366,6 @@ # USE_OCAML - If set, this port relies on the OCaml language. # Implies inclusion of bsd.ocaml.mk. (Also see # that file for more information on USE_OCAML*). -# USE_RUBY - If set, this port relies on the Ruby language. -# Implies inclusion of bsd.ruby.mk. (Also see -# that file for more information on USE_RUBY_*). ## # USE_GECKO - If set, this port uses the Gecko/Mozilla product. # See bsd.gecko.mk for more details. @@ -1381,10 +1378,6 @@ .include "${PORTSDIR}/Mk/bsd.java.mk" . endif -. if defined(USE_RUBY) -.include "${PORTSDIR}/Mk/bsd.ruby.mk" -. endif - . if defined(USE_OCAML) .include "${PORTSDIR}/Mk/bsd.ocaml.mk" . endif @@ -1630,8 +1623,7 @@ DISABLE_LICENSES="${DISABLE_LICENSES:Dyes}" \ PORTNAME=${PORTNAME} \ NO_ARCH=${NO_ARCH} \ - "NO_ARCH_IGNORE=${NO_ARCH_IGNORE}" \ - USE_RUBY=${USE_RUBY} + "NO_ARCH_IGNORE=${NO_ARCH_IGNORE}" . if !empty(USES:Mssl) QA_ENV+= USESSSL=yes . endif Index: Mk/bsd.sanity.mk =================================================================== --- Mk/bsd.sanity.mk +++ Mk/bsd.sanity.mk @@ -160,6 +160,10 @@ DEV_ERROR+= "USE_FPC=yes is no longer supported, please use USES=fpc" .endif +.if ! empty(USES:Mruby) && ! empty(USES:Mgem) +DEV_ERROR= "'USES=gem' implies 'USES=ruby'. You should not specify both of them" +.endif + .for _type in EXAMPLES DOCS . if defined(PORT${_type}) && empty(_REALLY_ALL_POSSIBLE_OPTIONS:M${_type}) DEV_ERROR+= "PORT${_type} does not do anything unless the ${_type} option is present." @@ -202,7 +206,9 @@ INSTALLS_EGGINFO USE_DOS2UNIX NO_STAGE USE_RUBYGEMS USE_GHOSTSCRIPT \ USE_GHOSTSCRIPT_BUILD USE_GHOSTSCRIPT_RUN USE_AUTOTOOLS APACHE_PORT \ USE_FPC_RUN WANT_FPC_BASE WANT_FPC_ALL USE_QT4 USE_QT5 QT_NONSTANDARD \ - XORG_CAT CARGO_USE_GITHUB CARGO_USE_GITLAB CARGO_GIT_SUBDIR + XORG_CAT CARGO_USE_GITHUB CARGO_USE_GITLAB CARGO_GIT_SUBDIR \ + USE_RUBY USE_RUBY_EXTCONF USE_RUBY_SETUP RUBY_NO_BUILD_DEPENDS \ + RUBY_NO_RUN_DEPENDS SANITY_DEPRECATED= MLINKS \ USE_MYSQL WANT_MYSQL_VER \ PYDISTUTILS_INSTALLNOSINGLE \ @@ -293,6 +299,11 @@ CARGO_USE_GITHUB_ALT= CARGO_CRATES \(regenerate it with make cargo-crates\) CARGO_USE_GITLAB_ALT= CARGO_CRATES \(regenerate it with make cargo-crates\) CARGO_GIT_SUBDIR_ALT= CARGO_CRATES \(regenerate it with make cargo-crates\) +USE_RUBY_ALT= USES=ruby +USE_RUBY_EXTCONF_ALT= USES=ruby:extconf +USE_RUBY_SETUP_ALT= USES=ruby:setup +RUBY_NO_BUILD_DEPENDS_ALT= USES=ruby:run +RUBY_NO_RUN_DEPENDS_ALT= USES=ruby:build .for a in ${SANITY_DEPRECATED} . if defined(${a}) Index: accessibility/rubygem-atk/Makefile =================================================================== --- accessibility/rubygem-atk/Makefile +++ accessibility/rubygem-atk/Makefile @@ -15,7 +15,6 @@ USES= gem gnome USE_GNOME= atk -USE_RUBY= yes NO_ARCH= yes Index: archivers/rubygem-archive-tar-minitar/Makefile =================================================================== --- archivers/rubygem-archive-tar-minitar/Makefile +++ archivers/rubygem-archive-tar-minitar/Makefile @@ -14,7 +14,6 @@ rubygem-minitar-cli>=${PORTVERSION}<1:archivers/rubygem-minitar-cli USES= gem -USE_RUBY= yes NO_ARCH= yes Index: archivers/rubygem-archive-zip/Makefile =================================================================== --- archivers/rubygem-archive-zip/Makefile +++ archivers/rubygem-archive-zip/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-io-like>=0.3.0<0.4:devel/rubygem-io-like USES= gem -USE_RUBY= yes NO_ARCH= yes Index: archivers/rubygem-bzip2-ruby/Makefile =================================================================== --- archivers/rubygem-bzip2-ruby/Makefile +++ archivers/rubygem-bzip2-ruby/Makefile @@ -11,7 +11,6 @@ LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual -USE_RUBY= yes USES= gem .include Index: archivers/rubygem-fpm/Makefile =================================================================== --- archivers/rubygem-fpm/Makefile +++ archivers/rubygem-fpm/Makefile @@ -21,7 +21,6 @@ rubygem-stud>=0:devel/rubygem-stud USES= gem -USE_RUBY= yes NO_ARCH= yes Index: archivers/rubygem-libarchive/Makefile =================================================================== --- archivers/rubygem-libarchive/Makefile +++ archivers/rubygem-libarchive/Makefile @@ -10,7 +10,6 @@ LICENSE= BSD3CLAUSE -USE_RUBY= yes USES= dos2unix gem libarchive DOS2UNIX_FILES= ext/depend Index: archivers/rubygem-minitar-cli/Makefile =================================================================== --- archivers/rubygem-minitar-cli/Makefile +++ archivers/rubygem-minitar-cli/Makefile @@ -17,7 +17,6 @@ rubygem-powerbar>=1.0<2:devel/rubygem-powerbar USES= gem -USE_RUBY= yes NO_ARCH= yes Index: archivers/rubygem-minitar/Makefile =================================================================== --- archivers/rubygem-minitar/Makefile +++ archivers/rubygem-minitar/Makefile @@ -13,7 +13,6 @@ LICENSE_FILE_RUBY= ${WRKSRC}/docs/ruby.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: archivers/rubygem-ruby-xz/Makefile =================================================================== --- archivers/rubygem-ruby-xz/Makefile +++ archivers/rubygem-ruby-xz/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: archivers/rubygem-rubyzip/Makefile =================================================================== --- archivers/rubygem-rubyzip/Makefile +++ archivers/rubygem-rubyzip/Makefile @@ -11,7 +11,6 @@ LICENSE_COMB= dual USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: archivers/rubygem-rubyzip13/Makefile =================================================================== --- archivers/rubygem-rubyzip13/Makefile +++ archivers/rubygem-rubyzip13/Makefile @@ -12,7 +12,6 @@ LICENSE_COMB= dual USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: archivers/rubygem-rubyzip2/Makefile =================================================================== --- archivers/rubygem-rubyzip2/Makefile +++ archivers/rubygem-rubyzip2/Makefile @@ -9,7 +9,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= cpe gem CPE_VENDOR= rubyzip_project Index: archivers/rubygem-rubyzip20/Makefile =================================================================== --- archivers/rubygem-rubyzip20/Makefile +++ archivers/rubygem-rubyzip20/Makefile @@ -12,7 +12,6 @@ LICENSE_COMB= dual USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: archivers/rubygem-snappy/Makefile =================================================================== --- archivers/rubygem-snappy/Makefile +++ archivers/rubygem-snappy/Makefile @@ -14,7 +14,6 @@ LIB_DEPENDS= libsnappy.so:archivers/snappy USES= gem shebangfix -USE_RUBY= yes SHEBANG_FILES= smoke.sh \ vendor/snappy/config.status \ Index: audio/ruby-smf/Makefile =================================================================== --- audio/ruby-smf/Makefile +++ audio/ruby-smf/Makefile @@ -12,9 +12,7 @@ LICENSE= BSD2CLAUSE -USE_RUBY= yes -USES= shebangfix -USE_RUBY_SETUP= yes +USES= ruby:setup shebangfix RUBY_SETUP= install.rb SHEBANG_FILES= sample/*.rb Index: audio/ruby-taglib/Makefile =================================================================== --- audio/ruby-taglib/Makefile +++ audio/ruby-taglib/Makefile @@ -17,8 +17,7 @@ NO_ARCH= yes NO_BUILD= yes -USE_RUBY= yes -USES= tar:bzip2 +USES= ruby tar:bzip2 OPTIONS_DEFINE= DOCS Index: audio/rubygem-librmpd/Makefile =================================================================== --- audio/rubygem-librmpd/Makefile +++ audio/rubygem-librmpd/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes NO_ARCH= yes Index: audio/rubygem-ruby-mp3info/Makefile =================================================================== --- audio/rubygem-ruby-mp3info/Makefile +++ audio/rubygem-ruby-mp3info/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: audio/rubygem-ruby-ogginfo/Makefile =================================================================== --- audio/rubygem-ruby-ogginfo/Makefile +++ audio/rubygem-ruby-ogginfo/Makefile @@ -10,7 +10,6 @@ LICENSE= GPLv3 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: audio/rubygem-ruby-shout/Makefile =================================================================== --- audio/rubygem-ruby-shout/Makefile +++ audio/rubygem-ruby-shout/Makefile @@ -12,7 +12,6 @@ LIB_DEPENDS= libshout.so:audio/libshout CONFIGURE_ARGS= --with-opt-include="${LOCALBASE}/include" -USE_RUBY= yes USES= gem .include Index: audio/squash/Makefile =================================================================== --- audio/squash/Makefile +++ audio/squash/Makefile @@ -18,8 +18,7 @@ libvorbis.so:audio/libvorbis RUN_DEPENDS= id3v2:audio/id3v2 -USES= compiler:c11 gmake ncurses tar:bzip2 -USE_RUBY= yes +USES= compiler:c11 gmake ncurses ruby tar:bzip2 MAKE_ARGS= CC="${CC}" CFLAGS+= -fcommon Index: benchmarks/rubygem-benchmark-ips/Makefile =================================================================== --- benchmarks/rubygem-benchmark-ips/Makefile +++ benchmarks/rubygem-benchmark-ips/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: benchmarks/rubygem-benchmark-memory/Makefile =================================================================== --- benchmarks/rubygem-benchmark-memory/Makefile +++ benchmarks/rubygem-benchmark-memory/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-memory_profiler>=0.9:devel/rubygem-memory_profiler USES= gem -USE_RUBY= yes NO_ARCH= yes Index: benchmarks/rubygem-benchmark/Makefile =================================================================== --- benchmarks/rubygem-benchmark/Makefile +++ benchmarks/rubygem-benchmark/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: benchmarks/rubygem-derailed_benchmarks/Makefile =================================================================== --- benchmarks/rubygem-derailed_benchmarks/Makefile +++ benchmarks/rubygem-derailed_benchmarks/Makefile @@ -21,7 +21,6 @@ rubygem-unicode_plot>=0.0.4<1.0.0:textproc/rubygem-unicode_plot USES= gem -USE_RUBY= yes CONFLICTS_INSTALL= rubygem-gitlab-derailed_benchmarks Index: benchmarks/rubygem-gitlab-derailed_benchmarks/Makefile =================================================================== --- benchmarks/rubygem-gitlab-derailed_benchmarks/Makefile +++ benchmarks/rubygem-gitlab-derailed_benchmarks/Makefile @@ -19,7 +19,6 @@ rubygem-thor>=0.19:devel/rubygem-thor USES= gem -USE_RUBY= yes CONFLICTS_INSTALL= rubygem-derailed_benchmarks Index: benchmarks/rubygem-railsbench/Makefile =================================================================== --- benchmarks/rubygem-railsbench/Makefile +++ benchmarks/rubygem-railsbench/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: biology/ruby-bio/Makefile =================================================================== --- biology/ruby-bio/Makefile +++ biology/ruby-bio/Makefile @@ -17,9 +17,7 @@ BDB4_DESC= bdb4 support for faster flat file indexing NO_ARCH= yes -USES= shebangfix -USE_RUBY= yes -USE_RUBY_SETUP= yes +USES= ruby:setup shebangfix SHEBANG_FILES= sample/biofetch.rb ruby_OLD_CMD= /usr/proj/bioruby/bin/ruby Index: biology/rubygem-bio-executables/Makefile =================================================================== --- biology/rubygem-bio-executables/Makefile +++ biology/rubygem-bio-executables/Makefile @@ -16,7 +16,6 @@ rubygem-bio-old-biofetch-emulator>=0.0.1:biology/rubygem-bio-old-biofetch-emulator USES= gem -USE_RUBY= yes NO_ARCH= yes Index: biology/rubygem-bio-old-biofetch-emulator/Makefile =================================================================== --- biology/rubygem-bio-old-biofetch-emulator/Makefile +++ biology/rubygem-bio-old-biofetch-emulator/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-bio>=1.4.2:biology/rubygem-bio USES= gem -USE_RUBY= yes NO_ARCH= yes Index: biology/rubygem-bio-shell/Makefile =================================================================== --- biology/rubygem-bio-shell/Makefile +++ biology/rubygem-bio-shell/Makefile @@ -15,7 +15,6 @@ RUN_DEPENDS= rubygem-bio>=2.0.0:biology/rubygem-bio USES= gem -USE_RUBY= yes NO_ARCH= yes Index: biology/rubygem-bio/Makefile =================================================================== --- biology/rubygem-bio/Makefile +++ biology/rubygem-bio/Makefile @@ -13,7 +13,6 @@ LICENSE_FILE_RUBY= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes NO_ARCH= yes Index: cad/klayout/Makefile =================================================================== --- cad/klayout/Makefile +++ cad/klayout/Makefile @@ -13,11 +13,10 @@ BROKEN_powerpc= type 'hash' does not provide a call operator BROKEN_sparc64= does not compile on sparc64: gcc bug -USES= compiler:c++0x gmake gl python qt:5 +USES= compiler:c++0x gmake gl python ruby qt:5 USE_GITHUB= yes GH_ACCOUNT= KLayout USE_GL= gl -USE_RUBY= yes USE_QT= core buildtools designer gui multimedia network printsupport \ qmake sql svg testlib uitools widgets xml xmlpatterns USE_LDCONFIG= yes Index: cad/rubygem-gdsii/Makefile =================================================================== --- cad/rubygem-gdsii/Makefile +++ cad/rubygem-gdsii/Makefile @@ -11,6 +11,5 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include Index: comms/rubygem-callsign/Makefile =================================================================== --- comms/rubygem-callsign/Makefile +++ comms/rubygem-callsign/Makefile @@ -13,7 +13,6 @@ rubygem-json>=0:devel/rubygem-json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: comms/rubygem-ruby-termios/Makefile =================================================================== --- comms/rubygem-ruby-termios/Makefile +++ comms/rubygem-ruby-termios/Makefile @@ -11,6 +11,5 @@ LICENSE_COMB= dual USES= gem -USE_RUBY= yes .include Index: comms/rubygem-serialport/Makefile =================================================================== --- comms/rubygem-serialport/Makefile +++ comms/rubygem-serialport/Makefile @@ -10,7 +10,6 @@ LICENSE= GPLv2 USES= gem shebangfix -USE_RUBY= yes SHEBANG_FILES= test/set_readtimeout.rb .include Index: converters/rubygem-base32/Makefile =================================================================== --- converters/rubygem-base32/Makefile +++ converters/rubygem-base32/Makefile @@ -8,7 +8,6 @@ WWW= https://github.com/stesla/base32 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: converters/rubygem-base64/Makefile =================================================================== --- converters/rubygem-base64/Makefile +++ converters/rubygem-base64/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: converters/rubygem-iconv/Makefile =================================================================== --- converters/rubygem-iconv/Makefile +++ converters/rubygem-iconv/Makefile @@ -13,6 +13,5 @@ LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE.txt USES= gem iconv -USE_RUBY= yes .include Index: converters/rubygem-json-ld-preloaded/Makefile =================================================================== --- converters/rubygem-json-ld-preloaded/Makefile +++ converters/rubygem-json-ld-preloaded/Makefile @@ -14,7 +14,6 @@ rubygem-rdf>=3.2<4:www/rubygem-rdf USES= gem -USE_RUBY= yes NO_ARCH= yes Index: converters/rubygem-json-ld/Makefile =================================================================== --- converters/rubygem-json-ld/Makefile +++ converters/rubygem-json-ld/Makefile @@ -18,7 +18,6 @@ rubygem-rdf>=3.2.9<4:www/rubygem-rdf USES= gem -USE_RUBY= yes NO_ARCH= yes Index: converters/rubygem-po_to_json/Makefile =================================================================== --- converters/rubygem-po_to_json/Makefile +++ converters/rubygem-po_to_json/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-json>=1.6.0:devel/rubygem-json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: converters/rubygem-ruby-bsdconv/Makefile =================================================================== --- converters/rubygem-ruby-bsdconv/Makefile +++ converters/rubygem-ruby-bsdconv/Makefile @@ -12,7 +12,6 @@ LIB_DEPENDS= libbsdconv.so:converters/bsdconv CONFIGURE_ARGS= --with-bsdconv-dir=${LOCALBASE} -USE_RUBY= yes USES= gem .include Index: converters/rubygem-url_safe_base64/Makefile =================================================================== --- converters/rubygem-url_safe_base64/Makefile +++ converters/rubygem-url_safe_base64/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: converters/rubygem-xdr/Makefile =================================================================== --- converters/rubygem-xdr/Makefile +++ converters/rubygem-xdr/Makefile @@ -14,7 +14,6 @@ rubygem-activesupport60>=6.0:devel/rubygem-activesupport60 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/puppetdb-terminus6/Makefile =================================================================== --- databases/puppetdb-terminus6/Makefile +++ databases/puppetdb-terminus6/Makefile @@ -14,9 +14,8 @@ BUILD_DEPENDS= puppet6>=0:sysutils/puppet6 CONFLICTS_INSTALL= puppetdb-terminus5 puppetdb-terminus7 -USE_RUBY= yes NO_BUILD= yes -USES= gmake +USES= gmake ruby post-patch: @${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|" ${WRKSRC}/Makefile Index: databases/puppetdb-terminus7/Makefile =================================================================== --- databases/puppetdb-terminus7/Makefile +++ databases/puppetdb-terminus7/Makefile @@ -14,9 +14,8 @@ BUILD_DEPENDS= puppet7>=0:sysutils/puppet7 CONFLICTS_INSTALL= puppetdb-terminus5 puppetdb-terminus6 -USE_RUBY= yes NO_BUILD= yes -USES= gmake +USES= gmake ruby post-patch: @${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|" ${WRKSRC}/Makefile Index: databases/redis/Makefile =================================================================== --- databases/redis/Makefile +++ databases/redis/Makefile @@ -53,7 +53,7 @@ TLS_MAKE_ENV= BUILD_TLS=yes TRIB_CATEGORIES= ruby TRIB_RUN_DEPENDS= rubygem-redis>=2.2:databases/rubygem-redis -TRIB_USE= RUBY=yes +TRIB_USES= ruby .include Index: databases/redis6/Makefile =================================================================== --- databases/redis6/Makefile +++ databases/redis6/Makefile @@ -50,7 +50,7 @@ TLS_MAKE_ENV= BUILD_TLS=yes TRIB_CATEGORIES= ruby TRIB_RUN_DEPENDS= rubygem-redis>=2.2:databases/rubygem-redis -TRIB_USE= RUBY=yes +TRIB_USES= ruby .include Index: databases/redis62/Makefile =================================================================== --- databases/redis62/Makefile +++ databases/redis62/Makefile @@ -54,7 +54,7 @@ TLS_MAKE_ENV= BUILD_TLS=yes TRIB_CATEGORIES= ruby TRIB_RUN_DEPENDS= rubygem-redis>=2.2:databases/rubygem-redis -TRIB_USE= RUBY=yes +TRIB_USES= ruby .include Index: databases/rrdtool12/Makefile =================================================================== --- databases/rrdtool12/Makefile +++ databases/rrdtool12/Makefile @@ -28,7 +28,7 @@ .include .if ${PORT_OPTIONS:MRUBY} -USE_RUBY= yes +USES+= ruby PLIST_SUB+= WITH_RUBY="" CONFIGURE_ARGS+= --enable-ruby .else Index: databases/ruby-bdb/Makefile =================================================================== --- databases/ruby-bdb/Makefile +++ databases/ruby-bdb/Makefile @@ -18,9 +18,7 @@ BUILD_DEPENDS= rubygem-rdoc>=0.a:devel/rubygem-rdoc -USES= bdb shebangfix tar:bzip2 -USE_RUBY= yes -USE_RUBY_EXTCONF= yes +USES= bdb ruby:extconf shebangfix tar:bzip2 SHEBANG_FILES= examples/basic.rb examples/cats.rb examples/cursor.rb \ examples/func.rb examples/join.rb examples/lock.rb \ Index: databases/ruby-qdbm/Makefile =================================================================== --- databases/ruby-qdbm/Makefile +++ databases/ruby-qdbm/Makefile @@ -14,9 +14,8 @@ LIB_DEPENDS= libqdbm.so:databases/qdbm -USES= iconv shebangfix +USES= iconv ruby shebangfix SHEBANG_FILES= curia/rbcrtest depot/rbdptest myrbdoc villa/rbvltest -USE_RUBY= yes WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/ruby GNU_CONFIGURE= yes USE_LDCONFIG= yes Index: databases/ruby-tokyocabinet/Makefile =================================================================== --- databases/ruby-tokyocabinet/Makefile +++ databases/ruby-tokyocabinet/Makefile @@ -12,8 +12,7 @@ LIB_DEPENDS= libtokyocabinet.so:databases/tokyocabinet -USE_RUBY= yes -USE_RUBY_EXTCONF= yes +USES= ruby:extconf INSTALL_TARGET= site-install Index: databases/ruby-xapian/Makefile =================================================================== --- databases/ruby-xapian/Makefile +++ databases/ruby-xapian/Makefile @@ -17,8 +17,7 @@ xapian-core>=${PORTVERSION}:databases/xapian-core LIB_DEPENDS= libxapian.so:databases/xapian-core -USES= compiler:c++11-lang libtool tar:xz -USE_RUBY= yes +USES= compiler:c++11-lang libtool ruby tar:xz CONFIGURE_ARGS= --datarootdir=${DATADIR} \ --docdir=${DOCSDIR} \ Index: databases/rubygem-active_model_serializers/Makefile =================================================================== --- databases/rubygem-active_model_serializers/Makefile +++ databases/rubygem-active_model_serializers/Makefile @@ -16,7 +16,6 @@ rubygem-jsonapi-renderer>=0.1.1<0.3:devel/rubygem-jsonapi-renderer USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-active_record_query_trace/Makefile =================================================================== --- databases/rubygem-active_record_query_trace/Makefile +++ databases/rubygem-active_record_query_trace/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-activemodel-serializers-xml/Makefile =================================================================== --- databases/rubygem-activemodel-serializers-xml/Makefile +++ databases/rubygem-activemodel-serializers-xml/Makefile @@ -15,7 +15,6 @@ rubygem-builder>=3.1<4:devel/rubygem-builder USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-activemodel4/Makefile =================================================================== --- databases/rubygem-activemodel4/Makefile +++ databases/rubygem-activemodel4/Makefile @@ -15,7 +15,6 @@ rubygem-builder>=3.1<4:devel/rubygem-builder USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-activemodel5/Makefile =================================================================== --- databases/rubygem-activemodel5/Makefile +++ databases/rubygem-activemodel5/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-activesupport5>=${PORTVERSION}:devel/rubygem-activesupport5 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-activemodel50/Makefile =================================================================== --- databases/rubygem-activemodel50/Makefile +++ databases/rubygem-activemodel50/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-activesupport50>=${PORTVERSION}:devel/rubygem-activesupport50 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-activemodel52/Makefile =================================================================== --- databases/rubygem-activemodel52/Makefile +++ databases/rubygem-activemodel52/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-activesupport52>=${PORTVERSION}:devel/rubygem-activesupport52 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-activemodel60/Makefile =================================================================== --- databases/rubygem-activemodel60/Makefile +++ databases/rubygem-activemodel60/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-activesupport60>=${PORTVERSION}:devel/rubygem-activesupport60 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-activemodel61/Makefile =================================================================== --- databases/rubygem-activemodel61/Makefile +++ databases/rubygem-activemodel61/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-activesupport61>=${PORTVERSION}:devel/rubygem-activesupport61 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-activemodel70/Makefile =================================================================== --- databases/rubygem-activemodel70/Makefile +++ databases/rubygem-activemodel70/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-activesupport70>=${PORTVERSION}:devel/rubygem-activesupport70 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-activerecord-explain-analyze/Makefile =================================================================== --- databases/rubygem-activerecord-explain-analyze/Makefile +++ databases/rubygem-activerecord-explain-analyze/Makefile @@ -14,7 +14,6 @@ rubygem-pg>=0:databases/rubygem-pg USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-activerecord-import/Makefile =================================================================== --- databases/rubygem-activerecord-import/Makefile +++ databases/rubygem-activerecord-import/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-activerecord4>=4.2:databases/rubygem-activerecord4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-activerecord-jdbc-adapter/Makefile =================================================================== --- databases/rubygem-activerecord-jdbc-adapter/Makefile +++ databases/rubygem-activerecord-jdbc-adapter/Makefile @@ -14,7 +14,6 @@ rubygem-activerecord5>=5.1.0:databases/rubygem-activerecord5 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-activerecord-jdbcmysql-adapter/Makefile =================================================================== --- databases/rubygem-activerecord-jdbcmysql-adapter/Makefile +++ databases/rubygem-activerecord-jdbcmysql-adapter/Makefile @@ -15,7 +15,6 @@ rubygem-jdbc-mysql>=5.1.36:databases/rubygem-jdbc-mysql NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-activerecord-session_store/Makefile =================================================================== --- databases/rubygem-activerecord-session_store/Makefile +++ databases/rubygem-activerecord-session_store/Makefile @@ -17,7 +17,6 @@ rubygem-railties60>=5.2.4.1:www/rubygem-railties60 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-activerecord4/Makefile =================================================================== --- databases/rubygem-activerecord4/Makefile +++ databases/rubygem-activerecord4/Makefile @@ -16,7 +16,6 @@ rubygem-arel6>=6.0<7:databases/rubygem-arel6 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-activerecord5/Makefile =================================================================== --- databases/rubygem-activerecord5/Makefile +++ databases/rubygem-activerecord5/Makefile @@ -16,7 +16,6 @@ rubygem-arel8>=8.0,1<9,1:databases/rubygem-arel8 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-activerecord50/Makefile =================================================================== --- databases/rubygem-activerecord50/Makefile +++ databases/rubygem-activerecord50/Makefile @@ -16,7 +16,6 @@ rubygem-arel7>=7.0,1<8,1:databases/rubygem-arel7 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-activerecord52/Makefile =================================================================== --- databases/rubygem-activerecord52/Makefile +++ databases/rubygem-activerecord52/Makefile @@ -16,7 +16,6 @@ rubygem-arel>=9.0:databases/rubygem-arel USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-activerecord60/Makefile =================================================================== --- databases/rubygem-activerecord60/Makefile +++ databases/rubygem-activerecord60/Makefile @@ -15,7 +15,6 @@ rubygem-activesupport60>=${PORTVERSION}:devel/rubygem-activesupport60 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-activerecord61/Makefile =================================================================== --- databases/rubygem-activerecord61/Makefile +++ databases/rubygem-activerecord61/Makefile @@ -15,7 +15,6 @@ rubygem-activesupport61>=${PORTVERSION}:devel/rubygem-activesupport61 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-activerecord70/Makefile =================================================================== --- databases/rubygem-activerecord70/Makefile +++ databases/rubygem-activerecord70/Makefile @@ -15,7 +15,6 @@ rubygem-activesupport70>=${PORTVERSION}:devel/rubygem-activesupport70 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-after_commit_queue/Makefile =================================================================== --- databases/rubygem-after_commit_queue/Makefile +++ databases/rubygem-after_commit_queue/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS?= rubygem-activerecord4>=3.0:databases/rubygem-activerecord4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-amalgalite/Makefile =================================================================== --- databases/rubygem-amalgalite/Makefile +++ databases/rubygem-amalgalite/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-arrayfields>=4.9<5:devel/rubygem-arrayfields USES= gem -USE_RUBY= yes PLIST_FILES= bin/amalgalite-pack Index: databases/rubygem-arel-helpers/Makefile =================================================================== --- databases/rubygem-arel-helpers/Makefile +++ databases/rubygem-arel-helpers/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-activerecord60>=6.0:databases/rubygem-activerecord60 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-arel/Makefile =================================================================== --- databases/rubygem-arel/Makefile +++ databases/rubygem-arel/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-arel6/Makefile =================================================================== --- databases/rubygem-arel6/Makefile +++ databases/rubygem-arel6/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-arel7/Makefile =================================================================== --- databases/rubygem-arel7/Makefile +++ databases/rubygem-arel7/Makefile @@ -13,7 +13,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-arel8/Makefile =================================================================== --- databases/rubygem-arel8/Makefile +++ databases/rubygem-arel8/Makefile @@ -13,7 +13,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-awesome_nested_set/Makefile =================================================================== --- databases/rubygem-awesome_nested_set/Makefile +++ databases/rubygem-awesome_nested_set/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-activerecord4>=4.0.0<7.1:databases/rubygem-activerecord4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-bdb1/Makefile =================================================================== --- databases/rubygem-bdb1/Makefile +++ databases/rubygem-bdb1/Makefile @@ -11,7 +11,6 @@ LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual -USE_RUBY= yes USES= gem shebangfix SHEBANG_FILES= examples/*.rb Index: databases/rubygem-bigrecord/Makefile =================================================================== --- databases/rubygem-bigrecord/Makefile +++ databases/rubygem-bigrecord/Makefile @@ -16,7 +16,6 @@ rubygem-uuidtools>=2.0.0:devel/rubygem-uuidtools NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-brpoplpush-redis_script/Makefile =================================================================== --- databases/rubygem-brpoplpush-redis_script/Makefile +++ databases/rubygem-brpoplpush-redis_script/Makefile @@ -15,7 +15,6 @@ rubygem-redis4>=1.0<5.0:databases/rubygem-redis4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-couchrest/Makefile =================================================================== --- databases/rubygem-couchrest/Makefile +++ databases/rubygem-couchrest/Makefile @@ -14,7 +14,6 @@ rubygem-multi_json>=1.7<2:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-dalli/Makefile =================================================================== --- databases/rubygem-dalli/Makefile +++ databases/rubygem-dalli/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-data_objects/Makefile =================================================================== --- databases/rubygem-data_objects/Makefile +++ databases/rubygem-data_objects/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-addressable>=2.1:www/rubygem-addressable NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-datamapper/Makefile =================================================================== --- databases/rubygem-datamapper/Makefile +++ databases/rubygem-datamapper/Makefile @@ -22,7 +22,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-dbd-mysql/Makefile =================================================================== --- databases/rubygem-dbd-mysql/Makefile +++ databases/rubygem-dbd-mysql/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-dbi>=0:databases/rubygem-dbi \ rubygem-mysql>=0:databases/rubygem-mysql -USE_RUBY= yes USES= gem .include Index: databases/rubygem-dbd-pg/Makefile =================================================================== --- databases/rubygem-dbd-pg/Makefile +++ databases/rubygem-dbd-pg/Makefile @@ -15,7 +15,6 @@ rubygem-pg>=0:databases/rubygem-pg NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-dbd-sqlite3/Makefile =================================================================== --- databases/rubygem-dbd-sqlite3/Makefile +++ databases/rubygem-dbd-sqlite3/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-dbf/Makefile =================================================================== --- databases/rubygem-dbf/Makefile +++ databases/rubygem-dbf/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes CONFLICTS_INSTALL= dbf Index: databases/rubygem-dbi/Makefile =================================================================== --- databases/rubygem-dbi/Makefile +++ databases/rubygem-dbi/Makefile @@ -15,7 +15,6 @@ rubygem-aspectr>=0:devel/rubygem-aspectr NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/dbi bin/test_broken_dbi Index: databases/rubygem-dbm/Makefile =================================================================== --- databases/rubygem-dbm/Makefile +++ databases/rubygem-dbm/Makefile @@ -10,7 +10,6 @@ LICENSE= BSD2CLAUSE USES= gem -USE_RUBY= yes OPTIONS_SINGLE= BACKEND OPTIONS_SINGLE_BACKEND= BDB GDBM LIBC QDBM Index: databases/rubygem-dm-aggregates/Makefile =================================================================== --- databases/rubygem-dm-aggregates/Makefile +++ databases/rubygem-dm-aggregates/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-dm-chunked_query/Makefile =================================================================== --- databases/rubygem-dm-chunked_query/Makefile +++ databases/rubygem-dm-chunked_query/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-dm-constraints/Makefile =================================================================== --- databases/rubygem-dm-constraints/Makefile +++ databases/rubygem-dm-constraints/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-dm-core/Makefile =================================================================== --- databases/rubygem-dm-core/Makefile +++ databases/rubygem-dm-core/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-addressable>=2.3:www/rubygem-addressable NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-dm-do-adapter/Makefile =================================================================== --- databases/rubygem-dm-do-adapter/Makefile +++ databases/rubygem-dm-do-adapter/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-dm-migrations/Makefile =================================================================== --- databases/rubygem-dm-migrations/Makefile +++ databases/rubygem-dm-migrations/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-dm-mysql-adapter/Makefile =================================================================== --- databases/rubygem-dm-mysql-adapter/Makefile +++ databases/rubygem-dm-mysql-adapter/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-dm-observer/Makefile =================================================================== --- databases/rubygem-dm-observer/Makefile +++ databases/rubygem-dm-observer/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-dm-pager/Makefile =================================================================== --- databases/rubygem-dm-pager/Makefile +++ databases/rubygem-dm-pager/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-dm-paperclip/Makefile =================================================================== --- databases/rubygem-dm-paperclip/Makefile +++ databases/rubygem-dm-paperclip/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-dm-postgres-adapter/Makefile =================================================================== --- databases/rubygem-dm-postgres-adapter/Makefile +++ databases/rubygem-dm-postgres-adapter/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-dm-serializer/Makefile =================================================================== --- databases/rubygem-dm-serializer/Makefile +++ databases/rubygem-dm-serializer/Makefile @@ -18,7 +18,6 @@ rubygem-multi_json>=1.0<2:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-dm-timestamps/Makefile =================================================================== --- databases/rubygem-dm-timestamps/Makefile +++ databases/rubygem-dm-timestamps/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-dm-transactions/Makefile =================================================================== --- databases/rubygem-dm-transactions/Makefile +++ databases/rubygem-dm-transactions/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-dm-types/Makefile =================================================================== --- databases/rubygem-dm-types/Makefile +++ databases/rubygem-dm-types/Makefile @@ -20,7 +20,6 @@ rubygem-uuidtools>=2.1<3:devel/rubygem-uuidtools USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-dm-validations/Makefile =================================================================== --- databases/rubygem-dm-validations/Makefile +++ databases/rubygem-dm-validations/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-do_mysql/Makefile =================================================================== --- databases/rubygem-do_mysql/Makefile +++ databases/rubygem-do_mysql/Makefile @@ -10,6 +10,5 @@ RUN_DEPENDS= rubygem-data_objects>=0.10.17:databases/rubygem-data_objects USES= gem mysql -USE_RUBY= yes .include Index: databases/rubygem-do_postgres/Makefile =================================================================== --- databases/rubygem-do_postgres/Makefile +++ databases/rubygem-do_postgres/Makefile @@ -10,7 +10,6 @@ RUN_DEPENDS= rubygem-data_objects>=0.10.17:databases/rubygem-data_objects -USE_RUBY= yes USES= gem pgsql .include Index: databases/rubygem-do_sqlite3/Makefile =================================================================== --- databases/rubygem-do_sqlite3/Makefile +++ databases/rubygem-do_sqlite3/Makefile @@ -10,7 +10,6 @@ LIB_DEPENDS= libsqlite3.so:databases/sqlite3 RUN_DEPENDS= rubygem-data_objects>=0.10.17:databases/rubygem-data_objects -USE_RUBY= yes USES= gem CONFIGURE_ARGS= --with-sqlite3-dir=${LOCALBASE} Index: databases/rubygem-em-redis-unified/Makefile =================================================================== --- databases/rubygem-em-redis-unified/Makefile +++ databases/rubygem-em-redis-unified/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-eventmachine>=0.12.10:devel/rubygem-eventmachine USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-familia/Makefile =================================================================== --- databases/rubygem-familia/Makefile +++ databases/rubygem-familia/Makefile @@ -17,7 +17,6 @@ rubygem-uri-redis>=0.4.2:net/rubygem-uri-redis USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-flipper-active_record-rails61/Makefile =================================================================== --- databases/rubygem-flipper-active_record-rails61/Makefile +++ databases/rubygem-flipper-active_record-rails61/Makefile @@ -14,7 +14,6 @@ rubygem-flipper>=${PORTVERSION}<0.26:devel/rubygem-flipper USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-flipper-active_record/Makefile =================================================================== --- databases/rubygem-flipper-active_record/Makefile +++ databases/rubygem-flipper-active_record/Makefile @@ -13,7 +13,6 @@ rubygem-flipper>=${PORTVERSION}<0.26:devel/rubygem-flipper USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-gdbm/Makefile =================================================================== --- databases/rubygem-gdbm/Makefile +++ databases/rubygem-gdbm/Makefile @@ -13,6 +13,5 @@ LIB_DEPENDS= libgdbm.so:databases/gdbm USES= gem -USE_RUBY= yes .include Index: databases/rubygem-globalid-rails5/Makefile =================================================================== --- databases/rubygem-globalid-rails5/Makefile +++ databases/rubygem-globalid-rails5/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-activesupport5>=5.0:devel/rubygem-activesupport5 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-globalid-rails50/Makefile =================================================================== --- databases/rubygem-globalid-rails50/Makefile +++ databases/rubygem-globalid-rails50/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-activesupport50>=5.0:devel/rubygem-activesupport50 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-globalid-rails52/Makefile =================================================================== --- databases/rubygem-globalid-rails52/Makefile +++ databases/rubygem-globalid-rails52/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-activesupport52>=5.0:devel/rubygem-activesupport52 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-globalid-rails60/Makefile =================================================================== --- databases/rubygem-globalid-rails60/Makefile +++ databases/rubygem-globalid-rails60/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-activesupport60>=5.0:devel/rubygem-activesupport60 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-globalid-rails61/Makefile =================================================================== --- databases/rubygem-globalid-rails61/Makefile +++ databases/rubygem-globalid-rails61/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-activesupport61>=5.0:devel/rubygem-activesupport61 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-globalid-rails70/Makefile =================================================================== --- databases/rubygem-globalid-rails70/Makefile +++ databases/rubygem-globalid-rails70/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-activesupport70>=5.0:devel/rubygem-activesupport70 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-globalid/Makefile =================================================================== --- databases/rubygem-globalid/Makefile +++ databases/rubygem-globalid/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-activesupport4>=4.2.0:devel/rubygem-activesupport4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-her/Makefile =================================================================== --- databases/rubygem-her/Makefile +++ databases/rubygem-her/Makefile @@ -16,7 +16,6 @@ rubygem-multi_json>=1.7<2:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-hiredis/Makefile =================================================================== --- databases/rubygem-hiredis/Makefile +++ databases/rubygem-hiredis/Makefile @@ -14,6 +14,5 @@ RUN_DEPENDS= redis>=0:databases/redis USES= gem gmake -USE_RUBY= yes .include Index: databases/rubygem-influxdb/Makefile =================================================================== --- databases/rubygem-influxdb/Makefile +++ databases/rubygem-influxdb/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-jdbc-mysql/Makefile =================================================================== --- databases/rubygem-jdbc-mysql/Makefile +++ databases/rubygem-jdbc-mysql/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= jruby:lang/jruby NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-leo_manager_client/Makefile =================================================================== --- databases/rubygem-leo_manager_client/Makefile +++ databases/rubygem-leo_manager_client/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-marginalia/Makefile =================================================================== --- databases/rubygem-marginalia/Makefile +++ databases/rubygem-marginalia/Makefile @@ -15,7 +15,6 @@ USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-mario-redis-lock/Makefile =================================================================== --- databases/rubygem-mario-redis-lock/Makefile +++ databases/rubygem-mario-redis-lock/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-redis>=3.0.5:databases/rubygem-redis USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-memcache-client/Makefile =================================================================== --- databases/rubygem-memcache-client/Makefile +++ databases/rubygem-memcache-client/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/memcached_top Index: databases/rubygem-memcache/Makefile =================================================================== --- databases/rubygem-memcache/Makefile +++ databases/rubygem-memcache/Makefile @@ -14,7 +14,6 @@ CONFIGURE_ARGS= --with-opt-dir=${LOCALBASE} GEM_ENV= EXTERNAL_LIB="yes" -USE_RUBY= yes USES= gem .include Index: databases/rubygem-mysql/Makefile =================================================================== --- databases/rubygem-mysql/Makefile +++ databases/rubygem-mysql/Makefile @@ -10,7 +10,6 @@ LICENSE= GPLv2 RUBY LICENSE_COMB= dual -USE_RUBY= yes USES= gem mysql .include Index: databases/rubygem-mysql2/Makefile =================================================================== --- databases/rubygem-mysql2/Makefile +++ databases/rubygem-mysql2/Makefile @@ -11,6 +11,5 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem mysql ssl -USE_RUBY= yes .include Index: databases/rubygem-openid-redis-store/Makefile =================================================================== --- databases/rubygem-openid-redis-store/Makefile +++ databases/rubygem-openid-redis-store/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-paranoia/Makefile =================================================================== --- databases/rubygem-paranoia/Makefile +++ databases/rubygem-paranoia/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-activerecord60>=5.1<7.1:databases/rubygem-activerecord60 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-pg/Makefile =================================================================== --- databases/rubygem-pg/Makefile +++ databases/rubygem-pg/Makefile @@ -13,7 +13,6 @@ LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE USES= gem pgsql -USE_RUBY= yes CONFIGURE_ARGS= --with-pgsql-include-dir=`${PG_CONFIG} --includedir` \ --with-pgsql-lib-dir=`${PG_CONFIG} --libdir` Index: databases/rubygem-pg13/Makefile =================================================================== --- databases/rubygem-pg13/Makefile +++ databases/rubygem-pg13/Makefile @@ -14,7 +14,6 @@ LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE USES= gem pgsql -USE_RUBY= yes CONFIGURE_ARGS= --with-pgsql-include-dir=`${PG_CONFIG} --includedir` \ --with-pgsql-lib-dir=`${PG_CONFIG} --libdir` Index: databases/rubygem-pg_array_parser/Makefile =================================================================== --- databases/rubygem-pg_array_parser/Makefile +++ databases/rubygem-pg_array_parser/Makefile @@ -9,7 +9,6 @@ LICENSE= MIT -USE_RUBY= yes USES= gem .include Index: databases/rubygem-pg_query/Makefile =================================================================== --- databases/rubygem-pg_query/Makefile +++ databases/rubygem-pg_query/Makefile @@ -14,6 +14,5 @@ RUN_DEPENDS= rubygem-google-protobuf>=3.19.2:devel/rubygem-google-protobuf USES= gem -USE_RUBY= yes .include Index: databases/rubygem-pghero-rails5/Makefile =================================================================== --- databases/rubygem-pghero-rails5/Makefile +++ databases/rubygem-pghero-rails5/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-activerecord5>=5:databases/rubygem-activerecord5 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-pghero-rails50/Makefile =================================================================== --- databases/rubygem-pghero-rails50/Makefile +++ databases/rubygem-pghero-rails50/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-activerecord50>=5:databases/rubygem-activerecord50 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-pghero/Makefile =================================================================== --- databases/rubygem-pghero/Makefile +++ databases/rubygem-pghero/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-activerecord60>=6:databases/rubygem-activerecord60 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-pl-puppetdb-ruby/Makefile =================================================================== --- databases/rubygem-pl-puppetdb-ruby/Makefile +++ databases/rubygem-pl-puppetdb-ruby/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-httparty>0:www/rubygem-httparty -USE_RUBY= yes USES= gem NO_ARCH= yes Index: databases/rubygem-postgres_ext/Makefile =================================================================== --- databases/rubygem-postgres_ext/Makefile +++ databases/rubygem-postgres_ext/Makefile @@ -15,7 +15,6 @@ rubygem-pg_array_parser>=0.0.9:databases/rubygem-pg_array_parser NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: databases/rubygem-puppetdb_cli/Makefile =================================================================== --- databases/rubygem-puppetdb_cli/Makefile +++ databases/rubygem-puppetdb_cli/Makefile @@ -14,7 +14,6 @@ rubygem-pl-puppetdb-ruby>=2.0.3<2.1:databases/rubygem-pl-puppetdb-ruby USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-rbase/Makefile =================================================================== --- databases/rubygem-rbase/Makefile +++ databases/rubygem-rbase/Makefile @@ -8,7 +8,6 @@ WWW= https://rubygems.org/gems/rbase USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-red-arrow-dataset/Makefile =================================================================== --- databases/rubygem-red-arrow-dataset/Makefile +++ databases/rubygem-red-arrow-dataset/Makefile @@ -15,7 +15,6 @@ RUN_DEPENDS= rubygem-red-arrow>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-red-arrow USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-red-arrow/Makefile =================================================================== --- databases/rubygem-red-arrow/Makefile +++ databases/rubygem-red-arrow/Makefile @@ -18,7 +18,6 @@ rubygem-pkg-config>=0:devel/rubygem-pkg-config \ USES= gem localbase -USE_RUBY= yes CFLAGS+= -I${LOCALBASE}/include Index: databases/rubygem-red-gandiva/Makefile =================================================================== --- databases/rubygem-red-gandiva/Makefile +++ databases/rubygem-red-gandiva/Makefile @@ -15,7 +15,6 @@ RUN_DEPENDS= rubygem-red-arrow>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-red-arrow USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-red-parquet/Makefile =================================================================== --- databases/rubygem-red-parquet/Makefile +++ databases/rubygem-red-parquet/Makefile @@ -15,7 +15,6 @@ RUN_DEPENDS= rubygem-red-arrow>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-red-arrow USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-red-plasma/Makefile =================================================================== --- databases/rubygem-red-plasma/Makefile +++ databases/rubygem-red-plasma/Makefile @@ -15,7 +15,6 @@ RUN_DEPENDS= rubygem-red-arrow>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-red-arrow USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-redis-actionpack-rails5/Makefile =================================================================== --- databases/rubygem-redis-actionpack-rails5/Makefile +++ databases/rubygem-redis-actionpack-rails5/Makefile @@ -16,7 +16,6 @@ rubygem-redis-store>=1.1.0<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-redis-actionpack-rails50/Makefile =================================================================== --- databases/rubygem-redis-actionpack-rails50/Makefile +++ databases/rubygem-redis-actionpack-rails50/Makefile @@ -16,7 +16,6 @@ rubygem-redis-store>=1.1.0<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-redis-actionpack-rails52/Makefile =================================================================== --- databases/rubygem-redis-actionpack-rails52/Makefile +++ databases/rubygem-redis-actionpack-rails52/Makefile @@ -16,7 +16,6 @@ rubygem-redis-store>=1.1.0<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-redis-actionpack-rails60/Makefile =================================================================== --- databases/rubygem-redis-actionpack-rails60/Makefile +++ databases/rubygem-redis-actionpack-rails60/Makefile @@ -16,7 +16,6 @@ rubygem-redis-store>=1.1.0<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-redis-actionpack-rails61/Makefile =================================================================== --- databases/rubygem-redis-actionpack-rails61/Makefile +++ databases/rubygem-redis-actionpack-rails61/Makefile @@ -16,7 +16,6 @@ rubygem-redis-store>=1.1.0<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-redis-actionpack/Makefile =================================================================== --- databases/rubygem-redis-actionpack/Makefile +++ databases/rubygem-redis-actionpack/Makefile @@ -15,7 +15,6 @@ rubygem-redis-store>=1.1.0<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-redis-client/Makefile =================================================================== --- databases/rubygem-redis-client/Makefile +++ databases/rubygem-redis-client/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-connection_pool>=0:net/rubygem-connection_pool USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-redis-cluster-client/Makefile =================================================================== --- databases/rubygem-redis-cluster-client/Makefile +++ databases/rubygem-redis-cluster-client/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-redis-client>=0.6<1:databases/rubygem-redis-client USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-redis-clustering/Makefile =================================================================== --- databases/rubygem-redis-clustering/Makefile +++ databases/rubygem-redis-clustering/Makefile @@ -14,7 +14,6 @@ rubygem-redis-cluster-client>=0.3.7:databases/rubygem-redis-cluster-client USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-redis-namespace/Makefile =================================================================== --- databases/rubygem-redis-namespace/Makefile +++ databases/rubygem-redis-namespace/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-redis>=4:databases/rubygem-redis USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-redis-namespace18/Makefile =================================================================== --- databases/rubygem-redis-namespace18/Makefile +++ databases/rubygem-redis-namespace18/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-redis>=3.0.4:databases/rubygem-redis USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-redis/Makefile =================================================================== --- databases/rubygem-redis/Makefile +++ databases/rubygem-redis/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-redis-client>=0.9.0:databases/rubygem-redis-client USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-redis4/Makefile =================================================================== --- databases/rubygem-redis4/Makefile +++ databases/rubygem-redis4/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-sdbm/Makefile =================================================================== --- databases/rubygem-sdbm/Makefile +++ databases/rubygem-sdbm/Makefile @@ -10,6 +10,5 @@ LICENSE= BSD2CLAUSE USES= gem -USE_RUBY= yes .include Index: databases/rubygem-seed-fu/Makefile =================================================================== --- databases/rubygem-seed-fu/Makefile +++ databases/rubygem-seed-fu/Makefile @@ -15,7 +15,6 @@ rubygem-activesupport61>=3.1:devel/rubygem-activesupport61 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-sqlite3-ruby/Makefile =================================================================== --- databases/rubygem-sqlite3-ruby/Makefile +++ databases/rubygem-sqlite3-ruby/Makefile @@ -16,7 +16,6 @@ CONFIGURE_ARGS= --with-sqlite3-dir=${LOCALBASE} NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/sqlite3_ruby Index: databases/rubygem-sqlite3/Makefile =================================================================== --- databases/rubygem-sqlite3/Makefile +++ databases/rubygem-sqlite3/Makefile @@ -13,7 +13,6 @@ LIB_DEPENDS= libsqlite3.so:databases/sqlite3 USES= gem -USE_RUBY= yes CONFIGURE_ARGS= --with-sqlite3-dir=${LOCALBASE} Index: databases/rubygem-state_machines-activemodel/Makefile =================================================================== --- databases/rubygem-state_machines-activemodel/Makefile +++ databases/rubygem-state_machines-activemodel/Makefile @@ -14,7 +14,6 @@ rubygem-state_machines>=0.5.0:devel/rubygem-state_machines USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-state_machines-activerecord/Makefile =================================================================== --- databases/rubygem-state_machines-activerecord/Makefile +++ databases/rubygem-state_machines-activerecord/Makefile @@ -15,7 +15,6 @@ rubygem-state_machines-activemodel>=0.8.0:databases/rubygem-state_machines-activemodel USES= gem -USE_RUBY= yes NO_ARCH= yes Index: databases/rubygem-tarantool/Makefile =================================================================== --- databases/rubygem-tarantool/Makefile +++ databases/rubygem-tarantool/Makefile @@ -16,6 +16,5 @@ rubygem-sumbur>=0.0.2:devel/rubygem-sumbur USES= gem -USE_RUBY= yes .include Index: databases/xapian-bindings/Makefile =================================================================== --- databases/xapian-bindings/Makefile +++ databases/xapian-bindings/Makefile @@ -25,7 +25,6 @@ PYTHON_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}xapian>=${PORTVERSION}:databases/py-xapian@${PY_FLAVOR} PYTHON_USES= python:run RUBY_RUN_DEPENDS= ${RUBY_PKGNAMEPREFIX}xapian>=${PORTVERSION}:databases/ruby-xapian -RUBY_USE= RUBY=yes -RUBY_VARS= RUBY_NO_BUILD_DEPENDS=yes +RUBY_USES= ruby:run .include Index: deskutils/rubygem-shellplay/Makefile =================================================================== --- deskutils/rubygem-shellplay/Makefile +++ deskutils/rubygem-shellplay/Makefile @@ -17,7 +17,6 @@ rubygem-shell2html>=0.0.6:textproc/rubygem-shell2html USES= gem -USE_RUBY= yes NO_ARCH= yes Index: deskutils/rubygem-taskjuggler/Makefile =================================================================== --- deskutils/rubygem-taskjuggler/Makefile +++ deskutils/rubygem-taskjuggler/Makefile @@ -14,7 +14,6 @@ rubygem-term-ansicolor>=1.7.1<2:devel/rubygem-term-ansicolor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/cvsdelta/Makefile =================================================================== --- devel/cvsdelta/Makefile +++ devel/cvsdelta/Makefile @@ -8,7 +8,7 @@ COMMENT= Cvsdelta summarizes differences between local and in-cvs files WWW= http://cvsdelta.sourceforge.net/ -USE_RUBY= yes +USES= ruby NO_BUILD= yes PLIST_FILES= bin/cvsdelta \ Index: devel/cvsspam/Makefile =================================================================== --- devel/cvsspam/Makefile +++ devel/cvsspam/Makefile @@ -11,7 +11,7 @@ LICENSE= GPLv2 -USE_RUBY= yes +USES= ruby NO_BUILD= yes NO_ARCH= yes Index: devel/gitaly/Makefile =================================================================== --- devel/gitaly/Makefile +++ devel/gitaly/Makefile @@ -40,8 +40,7 @@ gitlab-shell>=13.22.1:devel/gitlab-shell LIB_DEPENDS= libgit2.so:devel/libgit2 -USES= cpe gmake go:modules,no_targets pkgconfig -USE_RUBY= yes +USES= cpe gmake go:modules,no_targets pkgconfig ruby CPE_VENDOR= gitlab Index: devel/ignition-cmake/Makefile =================================================================== --- devel/ignition-cmake/Makefile +++ devel/ignition-cmake/Makefile @@ -9,8 +9,7 @@ LICENSE= APACHE20 -USES= cmake pkgconfig -USE_RUBY= yes +USES= cmake pkgconfig ruby CMAKE_OFF= BUILD_TESTING Index: devel/ignition-msgs/Makefile =================================================================== --- devel/ignition-msgs/Makefile +++ devel/ignition-msgs/Makefile @@ -15,8 +15,7 @@ LIB_DEPENDS= libprotobuf.so:devel/protobuf \ libignition-math6.so:math/ignition-math -USES= compiler:c++11-lang cmake -USE_RUBY= yes +USES= compiler:c++11-lang cmake ruby USE_LDCONFIG= yes BB_ACCOUNT= ignitionrobotics Index: devel/ignition-tools/Makefile =================================================================== --- devel/ignition-tools/Makefile +++ devel/ignition-tools/Makefile @@ -11,9 +11,8 @@ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -USES= cmake compiler:c++11-lang pkgconfig shebangfix +USES= cmake compiler:c++11-lang pkgconfig ruby shebangfix SHEBANG_FILES= src/ign.in -USE_RUBY= yes BB_ACCOUNT= ignitionrobotics BB_PROJECT= ign-tools Index: devel/leatherman/Makefile =================================================================== --- devel/leatherman/Makefile +++ devel/leatherman/Makefile @@ -12,11 +12,10 @@ LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libcurl.so:ftp/curl -USES= compiler:c++11-lang cmake gettext +USES= compiler:c++11-lang cmake gettext ruby USE_GITHUB= yes GH_ACCOUNT= puppetlabs -USE_RUBY= yes CMAKE_ON= LEATHERMAN_SHARED CMAKE_OFF= ENABLE_CXX_WERROR USE_LDCONFIG= yes Index: devel/libpafe-ruby/Makefile =================================================================== --- devel/libpafe-ruby/Makefile +++ devel/libpafe-ruby/Makefile @@ -14,8 +14,7 @@ LIB_DEPENDS= libpafe.so:devel/libpafe -USE_RUBY= yes -USE_RUBY_EXTCONF= yes +USES= ruby:extconf PLIST_FILES= %%RUBY_SITEARCHLIBDIR%%/pasori.so Index: devel/newfile/Makefile =================================================================== --- devel/newfile/Makefile +++ devel/newfile/Makefile @@ -13,7 +13,7 @@ GNU_CONFIGURE= yes NO_ARCH= yes -USE_RUBY= yes +USES= ruby PORTDOCS= newfile.html Index: devel/ocl-icd/Makefile =================================================================== --- devel/ocl-icd/Makefile +++ devel/ocl-icd/Makefile @@ -12,12 +12,10 @@ BUILD_DEPENDS= opencl>3.0:devel/opencl -USES= autoreconf gmake libtool localbase:ldflags pathfix +USES= autoreconf gmake libtool localbase:ldflags pathfix ruby:build USE_GITHUB= yes GH_ACCOUNT= OCL-dev -USE_RUBY= yes -RUBY_NO_RUN_DEPENDS= yes USE_LDCONFIG= yes GNU_CONFIGURE= yes CPPFLAGS+= -DCL_TARGET_OPENCL_VERSION=300 Index: devel/p4delta/Makefile =================================================================== --- devel/p4delta/Makefile +++ devel/p4delta/Makefile @@ -9,7 +9,7 @@ RUN_DEPENDS= ${LOCALBASE}/bin/p4:devel/p4 -USE_RUBY= yes +USES= ruby NO_BUILD= yes PLIST_FILES= bin/p4delta man/man1/p4delta.1.gz Index: devel/ruby-bsearch/Makefile =================================================================== --- devel/ruby-bsearch/Makefile +++ devel/ruby-bsearch/Makefile @@ -11,7 +11,7 @@ COMMENT= Binary search library for Ruby WWW= http://0xcc.net/ruby-bsearch/ -USE_RUBY= yes +USES= ruby NO_BUILD= yes Index: devel/ruby-gems/Makefile =================================================================== --- devel/ruby-gems/Makefile +++ devel/ruby-gems/Makefile @@ -15,8 +15,7 @@ LICENSE_FILE_MIT= ${WRKSRC}/MIT.txt LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE.txt -USES= cpe tar:tgz -USE_RUBY= yes +USES= cpe ruby tar:tgz GEMS_BASE_DIR= lib/ruby/gems/${RUBY_VER} GEMS_ENV= GEM_HOME=${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR} Index: devel/ruby-rbprof/Makefile =================================================================== --- devel/ruby-rbprof/Makefile +++ devel/ruby-rbprof/Makefile @@ -14,9 +14,7 @@ #RUN_DEPENDS= ${RUBY_SITELIBDIR}/runit/error.rb:devel/ruby-unit \ # ${RUBY_SITELIBDIR}/aspectr.rb:devel/ruby-aspectr -USES= dos2unix - -USE_RUBY= yes +USES= dos2unix ruby NO_BUILD= yes Index: devel/ruby-setup.rb/Makefile =================================================================== --- devel/ruby-setup.rb/Makefile +++ devel/ruby-setup.rb/Makefile @@ -11,7 +11,7 @@ COMMENT= Common installer script for ruby packages WWW= http://www.loveruby.net/en/setup.html -USE_RUBY= yes +USES= ruby NO_BUILD= yes Index: devel/ruby-subversion/Makefile =================================================================== --- devel/ruby-subversion/Makefile +++ devel/ruby-subversion/Makefile @@ -4,8 +4,7 @@ COMMENT= Ruby bindings for version control system WWW= https://subversion.apache.org/ -USES+= compiler:c11 -USE_RUBY= yes +USES+= compiler:c11 ruby PORTREVISION_114= 0 PORTREVISION_LTS= 0 Index: devel/rubygem-CFPropertyList/Makefile =================================================================== --- devel/rubygem-CFPropertyList/Makefile +++ devel/rubygem-CFPropertyList/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rexml>=0:textproc/rubygem-rexml USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-abstract/Makefile =================================================================== --- devel/rubygem-abstract/Makefile +++ devel/rubygem-abstract/Makefile @@ -11,7 +11,6 @@ LICENSE= RUBY USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-actionpack-action_caching/Makefile =================================================================== --- devel/rubygem-actionpack-action_caching/Makefile +++ devel/rubygem-actionpack-action_caching/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-actionpack61>=4.0:www/rubygem-actionpack61 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-actionpack-page_caching/Makefile =================================================================== --- devel/rubygem-actionpack-page_caching/Makefile +++ devel/rubygem-actionpack-page_caching/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-actionpack61>=4.0:www/rubygem-actionpack61 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-actionview4/Makefile =================================================================== --- devel/rubygem-actionview4/Makefile +++ devel/rubygem-actionview4/Makefile @@ -18,7 +18,6 @@ rubygem-rails-html-sanitizer>=1.0.3<2:textproc/rubygem-rails-html-sanitizer USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-actionview5/Makefile =================================================================== --- devel/rubygem-actionview5/Makefile +++ devel/rubygem-actionview5/Makefile @@ -18,7 +18,6 @@ rubygem-rails-html-sanitizer>=1.0.3<2:textproc/rubygem-rails-html-sanitizer USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-actionview50/Makefile =================================================================== --- devel/rubygem-actionview50/Makefile +++ devel/rubygem-actionview50/Makefile @@ -18,7 +18,6 @@ rubygem-rails-html-sanitizer>=1.0.3<2:textproc/rubygem-rails-html-sanitizer USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-actionview52/Makefile =================================================================== --- devel/rubygem-actionview52/Makefile +++ devel/rubygem-actionview52/Makefile @@ -18,7 +18,6 @@ rubygem-rails-html-sanitizer>=1.0.3<2:textproc/rubygem-rails-html-sanitizer USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-actionview60/Makefile =================================================================== --- devel/rubygem-actionview60/Makefile +++ devel/rubygem-actionview60/Makefile @@ -18,7 +18,6 @@ rubygem-rails-html-sanitizer>=1.2.0<2:textproc/rubygem-rails-html-sanitizer USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-actionview61/Makefile =================================================================== --- devel/rubygem-actionview61/Makefile +++ devel/rubygem-actionview61/Makefile @@ -18,7 +18,6 @@ rubygem-rails-html-sanitizer>=1.2.0<2:textproc/rubygem-rails-html-sanitizer USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-actionview70/Makefile =================================================================== --- devel/rubygem-actionview70/Makefile +++ devel/rubygem-actionview70/Makefile @@ -18,7 +18,6 @@ rubygem-rails-html-sanitizer>=1.2.0<2:textproc/rubygem-rails-html-sanitizer USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-active_scaffold/Makefile =================================================================== --- devel/rubygem-active_scaffold/Makefile +++ devel/rubygem-active_scaffold/Makefile @@ -16,7 +16,6 @@ rubygem-request_store>=1.3<2:devel/rubygem-request_store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-activejob4/Makefile =================================================================== --- devel/rubygem-activejob4/Makefile +++ devel/rubygem-activejob4/Makefile @@ -15,7 +15,6 @@ rubygem-globalid>=0.3.0:databases/rubygem-globalid USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-activejob5/Makefile =================================================================== --- devel/rubygem-activejob5/Makefile +++ devel/rubygem-activejob5/Makefile @@ -15,7 +15,6 @@ rubygem-globalid-rails5>=0.3.6:databases/rubygem-globalid-rails5 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-activejob50/Makefile =================================================================== --- devel/rubygem-activejob50/Makefile +++ devel/rubygem-activejob50/Makefile @@ -15,7 +15,6 @@ rubygem-globalid-rails50>=0.3.6:databases/rubygem-globalid-rails50 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-activejob52/Makefile =================================================================== --- devel/rubygem-activejob52/Makefile +++ devel/rubygem-activejob52/Makefile @@ -15,7 +15,6 @@ rubygem-globalid-rails52>=0.3.6:databases/rubygem-globalid-rails52 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-activejob60/Makefile =================================================================== --- devel/rubygem-activejob60/Makefile +++ devel/rubygem-activejob60/Makefile @@ -15,7 +15,6 @@ rubygem-globalid-rails60>=0.3.6:databases/rubygem-globalid-rails60 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-activejob61/Makefile =================================================================== --- devel/rubygem-activejob61/Makefile +++ devel/rubygem-activejob61/Makefile @@ -15,7 +15,6 @@ rubygem-globalid-rails61>=0.3.6:databases/rubygem-globalid-rails61 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-activejob70/Makefile =================================================================== --- devel/rubygem-activejob70/Makefile +++ devel/rubygem-activejob70/Makefile @@ -15,7 +15,6 @@ rubygem-globalid-rails70>=0.3.6:databases/rubygem-globalid-rails70 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-activemessaging/Makefile =================================================================== --- devel/rubygem-activemessaging/Makefile +++ devel/rubygem-activemessaging/Makefile @@ -13,7 +13,6 @@ rubygem-rake>=0:devel/rubygem-rake USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-activerecord-deprecated_finders/Makefile =================================================================== --- devel/rubygem-activerecord-deprecated_finders/Makefile +++ devel/rubygem-activerecord-deprecated_finders/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-activesupport4/Makefile =================================================================== --- devel/rubygem-activesupport4/Makefile +++ devel/rubygem-activesupport4/Makefile @@ -17,7 +17,6 @@ rubygem-tzinfo1>=1.1<2:devel/rubygem-tzinfo1 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-activesupport5/Makefile =================================================================== --- devel/rubygem-activesupport5/Makefile +++ devel/rubygem-activesupport5/Makefile @@ -18,7 +18,6 @@ rubygem-tzinfo1>=1.1<2:devel/rubygem-tzinfo1 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-activesupport50/Makefile =================================================================== --- devel/rubygem-activesupport50/Makefile +++ devel/rubygem-activesupport50/Makefile @@ -18,7 +18,6 @@ rubygem-tzinfo1>=1.1<2:devel/rubygem-tzinfo1 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-activesupport52/Makefile =================================================================== --- devel/rubygem-activesupport52/Makefile +++ devel/rubygem-activesupport52/Makefile @@ -17,7 +17,6 @@ rubygem-tzinfo1>=1.1<2:devel/rubygem-tzinfo1 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-activesupport60/Makefile =================================================================== --- devel/rubygem-activesupport60/Makefile +++ devel/rubygem-activesupport60/Makefile @@ -18,7 +18,6 @@ rubygem-zeitwerk>=2.2.2<3:devel/rubygem-zeitwerk USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-activesupport61/Makefile =================================================================== --- devel/rubygem-activesupport61/Makefile +++ devel/rubygem-activesupport61/Makefile @@ -18,7 +18,6 @@ rubygem-zeitwerk>=2.3<3:devel/rubygem-zeitwerk USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-activesupport70/Makefile =================================================================== --- devel/rubygem-activesupport70/Makefile +++ devel/rubygem-activesupport70/Makefile @@ -17,7 +17,6 @@ rubygem-tzinfo>=2.0<3:devel/rubygem-tzinfo USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-airborne/Makefile =================================================================== --- devel/rubygem-airborne/Makefile +++ devel/rubygem-airborne/Makefile @@ -18,7 +18,6 @@ rubygem-rspec>=3.8<4:devel/rubygem-rspec USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-akismet/Makefile =================================================================== --- devel/rubygem-akismet/Makefile +++ devel/rubygem-akismet/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-algebrick/Makefile =================================================================== --- devel/rubygem-algebrick/Makefile +++ devel/rubygem-algebrick/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-algorithms/Makefile =================================================================== --- devel/rubygem-algorithms/Makefile +++ devel/rubygem-algorithms/Makefile @@ -10,6 +10,5 @@ LICENSE= MIT USES= gem -USE_RUBY= yes .include Index: devel/rubygem-aliyun-sdk/Makefile =================================================================== --- devel/rubygem-aliyun-sdk/Makefile +++ devel/rubygem-aliyun-sdk/Makefile @@ -13,6 +13,5 @@ rubygem-rest-client>=2.0<3:www/rubygem-rest-client USES= gem -USE_RUBY= yes .include Index: devel/rubygem-allison/Makefile =================================================================== --- devel/rubygem-allison/Makefile +++ devel/rubygem-allison/Makefile @@ -9,7 +9,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/allison Index: devel/rubygem-amazing_print/Makefile =================================================================== --- devel/rubygem-amazing_print/Makefile +++ devel/rubygem-amazing_print/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-analogger/Makefile =================================================================== --- devel/rubygem-analogger/Makefile +++ devel/rubygem-analogger/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-eventmachine>=1.2.5:devel/rubygem-eventmachine NO_ARCH= yes -USE_RUBY= yes USES= gem shebangfix PLIST_FILES= bin/analogger Index: devel/rubygem-annoy/Makefile =================================================================== --- devel/rubygem-annoy/Makefile +++ devel/rubygem-annoy/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-highline>=1.5.0:devel/rubygem-highline NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-ansi/Makefile =================================================================== --- devel/rubygem-ansi/Makefile +++ devel/rubygem-ansi/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-apipie-bindings/Makefile =================================================================== --- devel/rubygem-apipie-bindings/Makefile +++ devel/rubygem-apipie-bindings/Makefile @@ -16,7 +16,6 @@ rubygem-rest-client>=1.6.5<3.0.0:www/rubygem-rest-client USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-apipie-params/Makefile =================================================================== --- devel/rubygem-apipie-params/Makefile +++ devel/rubygem-apipie-params/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-app_config/Makefile =================================================================== --- devel/rubygem-app_config/Makefile +++ devel/rubygem-app_config/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-appraisal/Makefile =================================================================== --- devel/rubygem-appraisal/Makefile +++ devel/rubygem-appraisal/Makefile @@ -15,7 +15,6 @@ rubygem-thor>=0.14.0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-arr-pm/Makefile =================================================================== --- devel/rubygem-arr-pm/Makefile +++ devel/rubygem-arr-pm/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-cabin>=0:devel/rubygem-cabin NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-arrayfields/Makefile =================================================================== --- devel/rubygem-arrayfields/Makefile +++ devel/rubygem-arrayfields/Makefile @@ -11,7 +11,6 @@ LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-ascii85/Makefile =================================================================== --- devel/rubygem-ascii85/Makefile +++ devel/rubygem-ascii85/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-asetus/Makefile =================================================================== --- devel/rubygem-asetus/Makefile +++ devel/rubygem-asetus/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-aspectr/Makefile =================================================================== --- devel/rubygem-aspectr/Makefile +++ devel/rubygem-aspectr/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-ast/Makefile =================================================================== --- devel/rubygem-ast/Makefile +++ devel/rubygem-ast/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-astrolabe/Makefile =================================================================== --- devel/rubygem-astrolabe/Makefile +++ devel/rubygem-astrolabe/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-parser>=2.2:devel/rubygem-parser USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-async-io/Makefile =================================================================== --- devel/rubygem-async-io/Makefile +++ devel/rubygem-async-io/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-async>=0:devel/rubygem-async USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-async/Makefile =================================================================== --- devel/rubygem-async/Makefile +++ devel/rubygem-async/Makefile @@ -14,7 +14,6 @@ rubygem-timers>=4.1<5:devel/rubygem-timers USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-atomic/Makefile =================================================================== --- devel/rubygem-atomic/Makefile +++ devel/rubygem-atomic/Makefile @@ -10,7 +10,6 @@ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -USE_RUBY= yes USES= gem .include Index: devel/rubygem-attic/Makefile =================================================================== --- devel/rubygem-attic/Makefile +++ devel/rubygem-attic/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-attr_required/Makefile =================================================================== --- devel/rubygem-attr_required/Makefile +++ devel/rubygem-attr_required/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-authlogic/Makefile =================================================================== --- devel/rubygem-authlogic/Makefile +++ devel/rubygem-authlogic/Makefile @@ -15,7 +15,6 @@ rubygem-request_store>=1.0<2:devel/rubygem-request_store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-avro/Makefile =================================================================== --- devel/rubygem-avro/Makefile +++ devel/rubygem-avro/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-multi_json>=1.0<2:devel/rubygem-multi_json USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-awesome_print/Makefile =================================================================== --- devel/rubygem-awesome_print/Makefile +++ devel/rubygem-awesome_print/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-awrence/Makefile =================================================================== --- devel/rubygem-awrence/Makefile +++ devel/rubygem-awrence/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-crt/Makefile =================================================================== --- devel/rubygem-aws-crt/Makefile +++ devel/rubygem-aws-crt/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-ffi>=0:devel/rubygem-ffi USES= gem python:env shebangfix -USE_RUBY= yes #NO_ARCH= yes Index: devel/rubygem-aws-eventstream/Makefile =================================================================== --- devel/rubygem-aws-eventstream/Makefile +++ devel/rubygem-aws-eventstream/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-partitions/Makefile =================================================================== --- devel/rubygem-aws-partitions/Makefile +++ devel/rubygem-aws-partitions/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-accessanalyzer/Makefile =================================================================== --- devel/rubygem-aws-sdk-accessanalyzer/Makefile +++ devel/rubygem-aws-sdk-accessanalyzer/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-account/Makefile =================================================================== --- devel/rubygem-aws-sdk-account/Makefile +++ devel/rubygem-aws-sdk-account/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-acm/Makefile =================================================================== --- devel/rubygem-aws-sdk-acm/Makefile +++ devel/rubygem-aws-sdk-acm/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-acmpca/Makefile =================================================================== --- devel/rubygem-aws-sdk-acmpca/Makefile +++ devel/rubygem-aws-sdk-acmpca/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-alexaforbusiness/Makefile =================================================================== --- devel/rubygem-aws-sdk-alexaforbusiness/Makefile +++ devel/rubygem-aws-sdk-alexaforbusiness/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-amplify/Makefile =================================================================== --- devel/rubygem-aws-sdk-amplify/Makefile +++ devel/rubygem-aws-sdk-amplify/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-amplifybackend/Makefile =================================================================== --- devel/rubygem-aws-sdk-amplifybackend/Makefile +++ devel/rubygem-aws-sdk-amplifybackend/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-amplifyuibuilder/Makefile =================================================================== --- devel/rubygem-aws-sdk-amplifyuibuilder/Makefile +++ devel/rubygem-aws-sdk-amplifyuibuilder/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-apigateway/Makefile =================================================================== --- devel/rubygem-aws-sdk-apigateway/Makefile +++ devel/rubygem-aws-sdk-apigateway/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-apigatewaymanagementapi/Makefile =================================================================== --- devel/rubygem-aws-sdk-apigatewaymanagementapi/Makefile +++ devel/rubygem-aws-sdk-apigatewaymanagementapi/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-apigatewayv2/Makefile =================================================================== --- devel/rubygem-aws-sdk-apigatewayv2/Makefile +++ devel/rubygem-aws-sdk-apigatewayv2/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-appconfig/Makefile =================================================================== --- devel/rubygem-aws-sdk-appconfig/Makefile +++ devel/rubygem-aws-sdk-appconfig/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-appconfigdata/Makefile =================================================================== --- devel/rubygem-aws-sdk-appconfigdata/Makefile +++ devel/rubygem-aws-sdk-appconfigdata/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-appflow/Makefile =================================================================== --- devel/rubygem-aws-sdk-appflow/Makefile +++ devel/rubygem-aws-sdk-appflow/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-appintegrationsservice/Makefile =================================================================== --- devel/rubygem-aws-sdk-appintegrationsservice/Makefile +++ devel/rubygem-aws-sdk-appintegrationsservice/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-applicationautoscaling/Makefile =================================================================== --- devel/rubygem-aws-sdk-applicationautoscaling/Makefile +++ devel/rubygem-aws-sdk-applicationautoscaling/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-applicationcostprofiler/Makefile =================================================================== --- devel/rubygem-aws-sdk-applicationcostprofiler/Makefile +++ devel/rubygem-aws-sdk-applicationcostprofiler/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-applicationdiscoveryservice/Makefile =================================================================== --- devel/rubygem-aws-sdk-applicationdiscoveryservice/Makefile +++ devel/rubygem-aws-sdk-applicationdiscoveryservice/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-applicationinsights/Makefile =================================================================== --- devel/rubygem-aws-sdk-applicationinsights/Makefile +++ devel/rubygem-aws-sdk-applicationinsights/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-appmesh/Makefile =================================================================== --- devel/rubygem-aws-sdk-appmesh/Makefile +++ devel/rubygem-aws-sdk-appmesh/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-appregistry/Makefile =================================================================== --- devel/rubygem-aws-sdk-appregistry/Makefile +++ devel/rubygem-aws-sdk-appregistry/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-apprunner/Makefile =================================================================== --- devel/rubygem-aws-sdk-apprunner/Makefile +++ devel/rubygem-aws-sdk-apprunner/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-appstream/Makefile =================================================================== --- devel/rubygem-aws-sdk-appstream/Makefile +++ devel/rubygem-aws-sdk-appstream/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-appsync/Makefile =================================================================== --- devel/rubygem-aws-sdk-appsync/Makefile +++ devel/rubygem-aws-sdk-appsync/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-athena/Makefile =================================================================== --- devel/rubygem-aws-sdk-athena/Makefile +++ devel/rubygem-aws-sdk-athena/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-auditmanager/Makefile =================================================================== --- devel/rubygem-aws-sdk-auditmanager/Makefile +++ devel/rubygem-aws-sdk-auditmanager/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-augmentedairuntime/Makefile =================================================================== --- devel/rubygem-aws-sdk-augmentedairuntime/Makefile +++ devel/rubygem-aws-sdk-augmentedairuntime/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-autoscaling/Makefile =================================================================== --- devel/rubygem-aws-sdk-autoscaling/Makefile +++ devel/rubygem-aws-sdk-autoscaling/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-autoscalingplans/Makefile =================================================================== --- devel/rubygem-aws-sdk-autoscalingplans/Makefile +++ devel/rubygem-aws-sdk-autoscalingplans/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-backup/Makefile =================================================================== --- devel/rubygem-aws-sdk-backup/Makefile +++ devel/rubygem-aws-sdk-backup/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-backupgateway/Makefile =================================================================== --- devel/rubygem-aws-sdk-backupgateway/Makefile +++ devel/rubygem-aws-sdk-backupgateway/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-backupstorage/Makefile =================================================================== --- devel/rubygem-aws-sdk-backupstorage/Makefile +++ devel/rubygem-aws-sdk-backupstorage/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-batch/Makefile =================================================================== --- devel/rubygem-aws-sdk-batch/Makefile +++ devel/rubygem-aws-sdk-batch/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-billingconductor/Makefile =================================================================== --- devel/rubygem-aws-sdk-billingconductor/Makefile +++ devel/rubygem-aws-sdk-billingconductor/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-braket/Makefile =================================================================== --- devel/rubygem-aws-sdk-braket/Makefile +++ devel/rubygem-aws-sdk-braket/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-budgets/Makefile =================================================================== --- devel/rubygem-aws-sdk-budgets/Makefile +++ devel/rubygem-aws-sdk-budgets/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-chime/Makefile =================================================================== --- devel/rubygem-aws-sdk-chime/Makefile +++ devel/rubygem-aws-sdk-chime/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-chimesdkidentity/Makefile =================================================================== --- devel/rubygem-aws-sdk-chimesdkidentity/Makefile +++ devel/rubygem-aws-sdk-chimesdkidentity/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-chimesdkmediapipelines/Makefile =================================================================== --- devel/rubygem-aws-sdk-chimesdkmediapipelines/Makefile +++ devel/rubygem-aws-sdk-chimesdkmediapipelines/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-chimesdkmeetings/Makefile =================================================================== --- devel/rubygem-aws-sdk-chimesdkmeetings/Makefile +++ devel/rubygem-aws-sdk-chimesdkmeetings/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-chimesdkmessaging/Makefile =================================================================== --- devel/rubygem-aws-sdk-chimesdkmessaging/Makefile +++ devel/rubygem-aws-sdk-chimesdkmessaging/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-cloud9/Makefile =================================================================== --- devel/rubygem-aws-sdk-cloud9/Makefile +++ devel/rubygem-aws-sdk-cloud9/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-cloudcontrolapi/Makefile =================================================================== --- devel/rubygem-aws-sdk-cloudcontrolapi/Makefile +++ devel/rubygem-aws-sdk-cloudcontrolapi/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-clouddirectory/Makefile =================================================================== --- devel/rubygem-aws-sdk-clouddirectory/Makefile +++ devel/rubygem-aws-sdk-clouddirectory/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-cloudformation/Makefile =================================================================== --- devel/rubygem-aws-sdk-cloudformation/Makefile +++ devel/rubygem-aws-sdk-cloudformation/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-cloudfront/Makefile =================================================================== --- devel/rubygem-aws-sdk-cloudfront/Makefile +++ devel/rubygem-aws-sdk-cloudfront/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-cloudhsm/Makefile =================================================================== --- devel/rubygem-aws-sdk-cloudhsm/Makefile +++ devel/rubygem-aws-sdk-cloudhsm/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-cloudhsmv2/Makefile =================================================================== --- devel/rubygem-aws-sdk-cloudhsmv2/Makefile +++ devel/rubygem-aws-sdk-cloudhsmv2/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-cloudsearch/Makefile =================================================================== --- devel/rubygem-aws-sdk-cloudsearch/Makefile +++ devel/rubygem-aws-sdk-cloudsearch/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-cloudsearchdomain/Makefile =================================================================== --- devel/rubygem-aws-sdk-cloudsearchdomain/Makefile +++ devel/rubygem-aws-sdk-cloudsearchdomain/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-cloudtrail/Makefile =================================================================== --- devel/rubygem-aws-sdk-cloudtrail/Makefile +++ devel/rubygem-aws-sdk-cloudtrail/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-cloudwatch/Makefile =================================================================== --- devel/rubygem-aws-sdk-cloudwatch/Makefile +++ devel/rubygem-aws-sdk-cloudwatch/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-cloudwatchevents/Makefile =================================================================== --- devel/rubygem-aws-sdk-cloudwatchevents/Makefile +++ devel/rubygem-aws-sdk-cloudwatchevents/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-cloudwatchevidently/Makefile =================================================================== --- devel/rubygem-aws-sdk-cloudwatchevidently/Makefile +++ devel/rubygem-aws-sdk-cloudwatchevidently/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-cloudwatchlogs/Makefile =================================================================== --- devel/rubygem-aws-sdk-cloudwatchlogs/Makefile +++ devel/rubygem-aws-sdk-cloudwatchlogs/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-cloudwatchrum/Makefile =================================================================== --- devel/rubygem-aws-sdk-cloudwatchrum/Makefile +++ devel/rubygem-aws-sdk-cloudwatchrum/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-codeartifact/Makefile =================================================================== --- devel/rubygem-aws-sdk-codeartifact/Makefile +++ devel/rubygem-aws-sdk-codeartifact/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-codebuild/Makefile =================================================================== --- devel/rubygem-aws-sdk-codebuild/Makefile +++ devel/rubygem-aws-sdk-codebuild/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-codecommit/Makefile =================================================================== --- devel/rubygem-aws-sdk-codecommit/Makefile +++ devel/rubygem-aws-sdk-codecommit/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-codedeploy/Makefile =================================================================== --- devel/rubygem-aws-sdk-codedeploy/Makefile +++ devel/rubygem-aws-sdk-codedeploy/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-codeguruprofiler/Makefile =================================================================== --- devel/rubygem-aws-sdk-codeguruprofiler/Makefile +++ devel/rubygem-aws-sdk-codeguruprofiler/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-codegurureviewer/Makefile =================================================================== --- devel/rubygem-aws-sdk-codegurureviewer/Makefile +++ devel/rubygem-aws-sdk-codegurureviewer/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-codepipeline/Makefile =================================================================== --- devel/rubygem-aws-sdk-codepipeline/Makefile +++ devel/rubygem-aws-sdk-codepipeline/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-codestar/Makefile =================================================================== --- devel/rubygem-aws-sdk-codestar/Makefile +++ devel/rubygem-aws-sdk-codestar/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-codestarconnections/Makefile =================================================================== --- devel/rubygem-aws-sdk-codestarconnections/Makefile +++ devel/rubygem-aws-sdk-codestarconnections/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-codestarnotifications/Makefile =================================================================== --- devel/rubygem-aws-sdk-codestarnotifications/Makefile +++ devel/rubygem-aws-sdk-codestarnotifications/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-cognitoidentity/Makefile =================================================================== --- devel/rubygem-aws-sdk-cognitoidentity/Makefile +++ devel/rubygem-aws-sdk-cognitoidentity/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-cognitoidentityprovider/Makefile =================================================================== --- devel/rubygem-aws-sdk-cognitoidentityprovider/Makefile +++ devel/rubygem-aws-sdk-cognitoidentityprovider/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-cognitosync/Makefile =================================================================== --- devel/rubygem-aws-sdk-cognitosync/Makefile +++ devel/rubygem-aws-sdk-cognitosync/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-comprehend/Makefile =================================================================== --- devel/rubygem-aws-sdk-comprehend/Makefile +++ devel/rubygem-aws-sdk-comprehend/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-comprehendmedical/Makefile =================================================================== --- devel/rubygem-aws-sdk-comprehendmedical/Makefile +++ devel/rubygem-aws-sdk-comprehendmedical/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-computeoptimizer/Makefile =================================================================== --- devel/rubygem-aws-sdk-computeoptimizer/Makefile +++ devel/rubygem-aws-sdk-computeoptimizer/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-configservice/Makefile =================================================================== --- devel/rubygem-aws-sdk-configservice/Makefile +++ devel/rubygem-aws-sdk-configservice/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-connect/Makefile =================================================================== --- devel/rubygem-aws-sdk-connect/Makefile +++ devel/rubygem-aws-sdk-connect/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-connectcampaignservice/Makefile =================================================================== --- devel/rubygem-aws-sdk-connectcampaignservice/Makefile +++ devel/rubygem-aws-sdk-connectcampaignservice/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-connectcases/Makefile =================================================================== --- devel/rubygem-aws-sdk-connectcases/Makefile +++ devel/rubygem-aws-sdk-connectcases/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-connectcontactlens/Makefile =================================================================== --- devel/rubygem-aws-sdk-connectcontactlens/Makefile +++ devel/rubygem-aws-sdk-connectcontactlens/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-connectparticipant/Makefile =================================================================== --- devel/rubygem-aws-sdk-connectparticipant/Makefile +++ devel/rubygem-aws-sdk-connectparticipant/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-connectwisdomservice/Makefile =================================================================== --- devel/rubygem-aws-sdk-connectwisdomservice/Makefile +++ devel/rubygem-aws-sdk-connectwisdomservice/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-controltower/Makefile =================================================================== --- devel/rubygem-aws-sdk-controltower/Makefile +++ devel/rubygem-aws-sdk-controltower/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-core/Makefile =================================================================== --- devel/rubygem-aws-sdk-core/Makefile +++ devel/rubygem-aws-sdk-core/Makefile @@ -16,7 +16,6 @@ rubygem-jmespath>=1.6.1<2:devel/rubygem-jmespath USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-core2/Makefile =================================================================== --- devel/rubygem-aws-sdk-core2/Makefile +++ devel/rubygem-aws-sdk-core2/Makefile @@ -14,7 +14,6 @@ rubygem-jmespath>=1.0<2:devel/rubygem-jmespath USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-core3131/Makefile =================================================================== --- devel/rubygem-aws-sdk-core3131/Makefile +++ devel/rubygem-aws-sdk-core3131/Makefile @@ -17,7 +17,6 @@ rubygem-jmespath>=1.6.1<2:devel/rubygem-jmespath USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-costandusagereportservice/Makefile =================================================================== --- devel/rubygem-aws-sdk-costandusagereportservice/Makefile +++ devel/rubygem-aws-sdk-costandusagereportservice/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-costexplorer/Makefile =================================================================== --- devel/rubygem-aws-sdk-costexplorer/Makefile +++ devel/rubygem-aws-sdk-costexplorer/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-customerprofiles/Makefile =================================================================== --- devel/rubygem-aws-sdk-customerprofiles/Makefile +++ devel/rubygem-aws-sdk-customerprofiles/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-databasemigrationservice/Makefile =================================================================== --- devel/rubygem-aws-sdk-databasemigrationservice/Makefile +++ devel/rubygem-aws-sdk-databasemigrationservice/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-dataexchange/Makefile =================================================================== --- devel/rubygem-aws-sdk-dataexchange/Makefile +++ devel/rubygem-aws-sdk-dataexchange/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-datapipeline/Makefile =================================================================== --- devel/rubygem-aws-sdk-datapipeline/Makefile +++ devel/rubygem-aws-sdk-datapipeline/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-datasync/Makefile =================================================================== --- devel/rubygem-aws-sdk-datasync/Makefile +++ devel/rubygem-aws-sdk-datasync/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-dax/Makefile =================================================================== --- devel/rubygem-aws-sdk-dax/Makefile +++ devel/rubygem-aws-sdk-dax/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-detective/Makefile =================================================================== --- devel/rubygem-aws-sdk-detective/Makefile +++ devel/rubygem-aws-sdk-detective/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-devicefarm/Makefile =================================================================== --- devel/rubygem-aws-sdk-devicefarm/Makefile +++ devel/rubygem-aws-sdk-devicefarm/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-devopsguru/Makefile =================================================================== --- devel/rubygem-aws-sdk-devopsguru/Makefile +++ devel/rubygem-aws-sdk-devopsguru/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-directconnect/Makefile =================================================================== --- devel/rubygem-aws-sdk-directconnect/Makefile +++ devel/rubygem-aws-sdk-directconnect/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-directoryservice/Makefile =================================================================== --- devel/rubygem-aws-sdk-directoryservice/Makefile +++ devel/rubygem-aws-sdk-directoryservice/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-dlm/Makefile =================================================================== --- devel/rubygem-aws-sdk-dlm/Makefile +++ devel/rubygem-aws-sdk-dlm/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-docdb/Makefile =================================================================== --- devel/rubygem-aws-sdk-docdb/Makefile +++ devel/rubygem-aws-sdk-docdb/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-drs/Makefile =================================================================== --- devel/rubygem-aws-sdk-drs/Makefile +++ devel/rubygem-aws-sdk-drs/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-dynamodb/Makefile =================================================================== --- devel/rubygem-aws-sdk-dynamodb/Makefile +++ devel/rubygem-aws-sdk-dynamodb/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-dynamodbstreams/Makefile =================================================================== --- devel/rubygem-aws-sdk-dynamodbstreams/Makefile +++ devel/rubygem-aws-sdk-dynamodbstreams/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-ebs/Makefile =================================================================== --- devel/rubygem-aws-sdk-ebs/Makefile +++ devel/rubygem-aws-sdk-ebs/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-ec2/Makefile =================================================================== --- devel/rubygem-aws-sdk-ec2/Makefile +++ devel/rubygem-aws-sdk-ec2/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-ec2instanceconnect/Makefile =================================================================== --- devel/rubygem-aws-sdk-ec2instanceconnect/Makefile +++ devel/rubygem-aws-sdk-ec2instanceconnect/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-ecr/Makefile =================================================================== --- devel/rubygem-aws-sdk-ecr/Makefile +++ devel/rubygem-aws-sdk-ecr/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-ecrpublic/Makefile =================================================================== --- devel/rubygem-aws-sdk-ecrpublic/Makefile +++ devel/rubygem-aws-sdk-ecrpublic/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-ecs/Makefile =================================================================== --- devel/rubygem-aws-sdk-ecs/Makefile +++ devel/rubygem-aws-sdk-ecs/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-efs/Makefile =================================================================== --- devel/rubygem-aws-sdk-efs/Makefile +++ devel/rubygem-aws-sdk-efs/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-eks/Makefile =================================================================== --- devel/rubygem-aws-sdk-eks/Makefile +++ devel/rubygem-aws-sdk-eks/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-elasticache/Makefile =================================================================== --- devel/rubygem-aws-sdk-elasticache/Makefile +++ devel/rubygem-aws-sdk-elasticache/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-elasticbeanstalk/Makefile =================================================================== --- devel/rubygem-aws-sdk-elasticbeanstalk/Makefile +++ devel/rubygem-aws-sdk-elasticbeanstalk/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-elasticinference/Makefile =================================================================== --- devel/rubygem-aws-sdk-elasticinference/Makefile +++ devel/rubygem-aws-sdk-elasticinference/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-elasticloadbalancing/Makefile =================================================================== --- devel/rubygem-aws-sdk-elasticloadbalancing/Makefile +++ devel/rubygem-aws-sdk-elasticloadbalancing/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-elasticloadbalancingv2/Makefile =================================================================== --- devel/rubygem-aws-sdk-elasticloadbalancingv2/Makefile +++ devel/rubygem-aws-sdk-elasticloadbalancingv2/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-elasticsearchservice/Makefile =================================================================== --- devel/rubygem-aws-sdk-elasticsearchservice/Makefile +++ devel/rubygem-aws-sdk-elasticsearchservice/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-elastictranscoder/Makefile =================================================================== --- devel/rubygem-aws-sdk-elastictranscoder/Makefile +++ devel/rubygem-aws-sdk-elastictranscoder/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-emr/Makefile =================================================================== --- devel/rubygem-aws-sdk-emr/Makefile +++ devel/rubygem-aws-sdk-emr/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-emrcontainers/Makefile =================================================================== --- devel/rubygem-aws-sdk-emrcontainers/Makefile +++ devel/rubygem-aws-sdk-emrcontainers/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-emrserverless/Makefile =================================================================== --- devel/rubygem-aws-sdk-emrserverless/Makefile +++ devel/rubygem-aws-sdk-emrserverless/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-eventbridge/Makefile =================================================================== --- devel/rubygem-aws-sdk-eventbridge/Makefile +++ devel/rubygem-aws-sdk-eventbridge/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-finspace/Makefile =================================================================== --- devel/rubygem-aws-sdk-finspace/Makefile +++ devel/rubygem-aws-sdk-finspace/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-finspacedata/Makefile =================================================================== --- devel/rubygem-aws-sdk-finspacedata/Makefile +++ devel/rubygem-aws-sdk-finspacedata/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-firehose/Makefile =================================================================== --- devel/rubygem-aws-sdk-firehose/Makefile +++ devel/rubygem-aws-sdk-firehose/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-fis/Makefile =================================================================== --- devel/rubygem-aws-sdk-fis/Makefile +++ devel/rubygem-aws-sdk-fis/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-fms/Makefile =================================================================== --- devel/rubygem-aws-sdk-fms/Makefile +++ devel/rubygem-aws-sdk-fms/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-forecastqueryservice/Makefile =================================================================== --- devel/rubygem-aws-sdk-forecastqueryservice/Makefile +++ devel/rubygem-aws-sdk-forecastqueryservice/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-forecastservice/Makefile =================================================================== --- devel/rubygem-aws-sdk-forecastservice/Makefile +++ devel/rubygem-aws-sdk-forecastservice/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-frauddetector/Makefile =================================================================== --- devel/rubygem-aws-sdk-frauddetector/Makefile +++ devel/rubygem-aws-sdk-frauddetector/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-fsx/Makefile =================================================================== --- devel/rubygem-aws-sdk-fsx/Makefile +++ devel/rubygem-aws-sdk-fsx/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-gamelift/Makefile =================================================================== --- devel/rubygem-aws-sdk-gamelift/Makefile +++ devel/rubygem-aws-sdk-gamelift/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-gamesparks/Makefile =================================================================== --- devel/rubygem-aws-sdk-gamesparks/Makefile +++ devel/rubygem-aws-sdk-gamesparks/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-glacier/Makefile =================================================================== --- devel/rubygem-aws-sdk-glacier/Makefile +++ devel/rubygem-aws-sdk-glacier/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-globalaccelerator/Makefile =================================================================== --- devel/rubygem-aws-sdk-globalaccelerator/Makefile +++ devel/rubygem-aws-sdk-globalaccelerator/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-glue/Makefile =================================================================== --- devel/rubygem-aws-sdk-glue/Makefile +++ devel/rubygem-aws-sdk-glue/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-gluedatabrew/Makefile =================================================================== --- devel/rubygem-aws-sdk-gluedatabrew/Makefile +++ devel/rubygem-aws-sdk-gluedatabrew/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-greengrass/Makefile =================================================================== --- devel/rubygem-aws-sdk-greengrass/Makefile +++ devel/rubygem-aws-sdk-greengrass/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-greengrassv2/Makefile =================================================================== --- devel/rubygem-aws-sdk-greengrassv2/Makefile +++ devel/rubygem-aws-sdk-greengrassv2/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-groundstation/Makefile =================================================================== --- devel/rubygem-aws-sdk-groundstation/Makefile +++ devel/rubygem-aws-sdk-groundstation/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-guardduty/Makefile =================================================================== --- devel/rubygem-aws-sdk-guardduty/Makefile +++ devel/rubygem-aws-sdk-guardduty/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-health/Makefile =================================================================== --- devel/rubygem-aws-sdk-health/Makefile +++ devel/rubygem-aws-sdk-health/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-healthlake/Makefile =================================================================== --- devel/rubygem-aws-sdk-healthlake/Makefile +++ devel/rubygem-aws-sdk-healthlake/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-honeycode/Makefile =================================================================== --- devel/rubygem-aws-sdk-honeycode/Makefile +++ devel/rubygem-aws-sdk-honeycode/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-iam/Makefile =================================================================== --- devel/rubygem-aws-sdk-iam/Makefile +++ devel/rubygem-aws-sdk-iam/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-identitystore/Makefile =================================================================== --- devel/rubygem-aws-sdk-identitystore/Makefile +++ devel/rubygem-aws-sdk-identitystore/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-imagebuilder/Makefile =================================================================== --- devel/rubygem-aws-sdk-imagebuilder/Makefile +++ devel/rubygem-aws-sdk-imagebuilder/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-importexport/Makefile =================================================================== --- devel/rubygem-aws-sdk-importexport/Makefile +++ devel/rubygem-aws-sdk-importexport/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv2>=1.0<2:devel/rubygem-aws-sigv2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-inspector/Makefile =================================================================== --- devel/rubygem-aws-sdk-inspector/Makefile +++ devel/rubygem-aws-sdk-inspector/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-inspector2/Makefile =================================================================== --- devel/rubygem-aws-sdk-inspector2/Makefile +++ devel/rubygem-aws-sdk-inspector2/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-iot/Makefile =================================================================== --- devel/rubygem-aws-sdk-iot/Makefile +++ devel/rubygem-aws-sdk-iot/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-iot1clickdevicesservice/Makefile =================================================================== --- devel/rubygem-aws-sdk-iot1clickdevicesservice/Makefile +++ devel/rubygem-aws-sdk-iot1clickdevicesservice/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-iot1clickprojects/Makefile =================================================================== --- devel/rubygem-aws-sdk-iot1clickprojects/Makefile +++ devel/rubygem-aws-sdk-iot1clickprojects/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-iotanalytics/Makefile =================================================================== --- devel/rubygem-aws-sdk-iotanalytics/Makefile +++ devel/rubygem-aws-sdk-iotanalytics/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-iotdataplane/Makefile =================================================================== --- devel/rubygem-aws-sdk-iotdataplane/Makefile +++ devel/rubygem-aws-sdk-iotdataplane/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-iotdeviceadvisor/Makefile =================================================================== --- devel/rubygem-aws-sdk-iotdeviceadvisor/Makefile +++ devel/rubygem-aws-sdk-iotdeviceadvisor/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-iotevents/Makefile =================================================================== --- devel/rubygem-aws-sdk-iotevents/Makefile +++ devel/rubygem-aws-sdk-iotevents/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-ioteventsdata/Makefile =================================================================== --- devel/rubygem-aws-sdk-ioteventsdata/Makefile +++ devel/rubygem-aws-sdk-ioteventsdata/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-iotfleethub/Makefile =================================================================== --- devel/rubygem-aws-sdk-iotfleethub/Makefile +++ devel/rubygem-aws-sdk-iotfleethub/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-iotfleetwise/Makefile =================================================================== --- devel/rubygem-aws-sdk-iotfleetwise/Makefile +++ devel/rubygem-aws-sdk-iotfleetwise/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-iotjobsdataplane/Makefile =================================================================== --- devel/rubygem-aws-sdk-iotjobsdataplane/Makefile +++ devel/rubygem-aws-sdk-iotjobsdataplane/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-iotsecuretunneling/Makefile =================================================================== --- devel/rubygem-aws-sdk-iotsecuretunneling/Makefile +++ devel/rubygem-aws-sdk-iotsecuretunneling/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-iotsitewise/Makefile =================================================================== --- devel/rubygem-aws-sdk-iotsitewise/Makefile +++ devel/rubygem-aws-sdk-iotsitewise/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-iotthingsgraph/Makefile =================================================================== --- devel/rubygem-aws-sdk-iotthingsgraph/Makefile +++ devel/rubygem-aws-sdk-iotthingsgraph/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-iottwinmaker/Makefile =================================================================== --- devel/rubygem-aws-sdk-iottwinmaker/Makefile +++ devel/rubygem-aws-sdk-iottwinmaker/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-iotwireless/Makefile =================================================================== --- devel/rubygem-aws-sdk-iotwireless/Makefile +++ devel/rubygem-aws-sdk-iotwireless/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-ivs/Makefile =================================================================== --- devel/rubygem-aws-sdk-ivs/Makefile +++ devel/rubygem-aws-sdk-ivs/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-ivschat/Makefile =================================================================== --- devel/rubygem-aws-sdk-ivschat/Makefile +++ devel/rubygem-aws-sdk-ivschat/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-kafka/Makefile =================================================================== --- devel/rubygem-aws-sdk-kafka/Makefile +++ devel/rubygem-aws-sdk-kafka/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-kafkaconnect/Makefile =================================================================== --- devel/rubygem-aws-sdk-kafkaconnect/Makefile +++ devel/rubygem-aws-sdk-kafkaconnect/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-kendra/Makefile =================================================================== --- devel/rubygem-aws-sdk-kendra/Makefile +++ devel/rubygem-aws-sdk-kendra/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-keyspaces/Makefile =================================================================== --- devel/rubygem-aws-sdk-keyspaces/Makefile +++ devel/rubygem-aws-sdk-keyspaces/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-kinesis/Makefile =================================================================== --- devel/rubygem-aws-sdk-kinesis/Makefile +++ devel/rubygem-aws-sdk-kinesis/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-kinesisanalytics/Makefile =================================================================== --- devel/rubygem-aws-sdk-kinesisanalytics/Makefile +++ devel/rubygem-aws-sdk-kinesisanalytics/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-kinesisanalyticsv2/Makefile =================================================================== --- devel/rubygem-aws-sdk-kinesisanalyticsv2/Makefile +++ devel/rubygem-aws-sdk-kinesisanalyticsv2/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-kinesisvideo/Makefile =================================================================== --- devel/rubygem-aws-sdk-kinesisvideo/Makefile +++ devel/rubygem-aws-sdk-kinesisvideo/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-kinesisvideoarchivedmedia/Makefile =================================================================== --- devel/rubygem-aws-sdk-kinesisvideoarchivedmedia/Makefile +++ devel/rubygem-aws-sdk-kinesisvideoarchivedmedia/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-kinesisvideomedia/Makefile =================================================================== --- devel/rubygem-aws-sdk-kinesisvideomedia/Makefile +++ devel/rubygem-aws-sdk-kinesisvideomedia/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-kinesisvideosignalingchannels/Makefile =================================================================== --- devel/rubygem-aws-sdk-kinesisvideosignalingchannels/Makefile +++ devel/rubygem-aws-sdk-kinesisvideosignalingchannels/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-kms/Makefile =================================================================== --- devel/rubygem-aws-sdk-kms/Makefile +++ devel/rubygem-aws-sdk-kms/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-lakeformation/Makefile =================================================================== --- devel/rubygem-aws-sdk-lakeformation/Makefile +++ devel/rubygem-aws-sdk-lakeformation/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-lambda/Makefile =================================================================== --- devel/rubygem-aws-sdk-lambda/Makefile +++ devel/rubygem-aws-sdk-lambda/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-lambdapreview/Makefile =================================================================== --- devel/rubygem-aws-sdk-lambdapreview/Makefile +++ devel/rubygem-aws-sdk-lambdapreview/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-lex/Makefile =================================================================== --- devel/rubygem-aws-sdk-lex/Makefile +++ devel/rubygem-aws-sdk-lex/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-lexmodelbuildingservice/Makefile =================================================================== --- devel/rubygem-aws-sdk-lexmodelbuildingservice/Makefile +++ devel/rubygem-aws-sdk-lexmodelbuildingservice/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-lexmodelsv2/Makefile =================================================================== --- devel/rubygem-aws-sdk-lexmodelsv2/Makefile +++ devel/rubygem-aws-sdk-lexmodelsv2/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-lexruntimev2/Makefile =================================================================== --- devel/rubygem-aws-sdk-lexruntimev2/Makefile +++ devel/rubygem-aws-sdk-lexruntimev2/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-licensemanager/Makefile =================================================================== --- devel/rubygem-aws-sdk-licensemanager/Makefile +++ devel/rubygem-aws-sdk-licensemanager/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-licensemanagerusersubscriptions/Makefile =================================================================== --- devel/rubygem-aws-sdk-licensemanagerusersubscriptions/Makefile +++ devel/rubygem-aws-sdk-licensemanagerusersubscriptions/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-lightsail/Makefile =================================================================== --- devel/rubygem-aws-sdk-lightsail/Makefile +++ devel/rubygem-aws-sdk-lightsail/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-locationservice/Makefile =================================================================== --- devel/rubygem-aws-sdk-locationservice/Makefile +++ devel/rubygem-aws-sdk-locationservice/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-lookoutequipment/Makefile =================================================================== --- devel/rubygem-aws-sdk-lookoutequipment/Makefile +++ devel/rubygem-aws-sdk-lookoutequipment/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-lookoutforvision/Makefile =================================================================== --- devel/rubygem-aws-sdk-lookoutforvision/Makefile +++ devel/rubygem-aws-sdk-lookoutforvision/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-lookoutmetrics/Makefile =================================================================== --- devel/rubygem-aws-sdk-lookoutmetrics/Makefile +++ devel/rubygem-aws-sdk-lookoutmetrics/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-machinelearning/Makefile =================================================================== --- devel/rubygem-aws-sdk-machinelearning/Makefile +++ devel/rubygem-aws-sdk-machinelearning/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-macie/Makefile =================================================================== --- devel/rubygem-aws-sdk-macie/Makefile +++ devel/rubygem-aws-sdk-macie/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-macie2/Makefile =================================================================== --- devel/rubygem-aws-sdk-macie2/Makefile +++ devel/rubygem-aws-sdk-macie2/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-mainframemodernization/Makefile =================================================================== --- devel/rubygem-aws-sdk-mainframemodernization/Makefile +++ devel/rubygem-aws-sdk-mainframemodernization/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-managedblockchain/Makefile =================================================================== --- devel/rubygem-aws-sdk-managedblockchain/Makefile +++ devel/rubygem-aws-sdk-managedblockchain/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-managedgrafana/Makefile =================================================================== --- devel/rubygem-aws-sdk-managedgrafana/Makefile +++ devel/rubygem-aws-sdk-managedgrafana/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-marketplacecatalog/Makefile =================================================================== --- devel/rubygem-aws-sdk-marketplacecatalog/Makefile +++ devel/rubygem-aws-sdk-marketplacecatalog/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-marketplacecommerceanalytics/Makefile =================================================================== --- devel/rubygem-aws-sdk-marketplacecommerceanalytics/Makefile +++ devel/rubygem-aws-sdk-marketplacecommerceanalytics/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-marketplaceentitlementservice/Makefile =================================================================== --- devel/rubygem-aws-sdk-marketplaceentitlementservice/Makefile +++ devel/rubygem-aws-sdk-marketplaceentitlementservice/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-marketplacemetering/Makefile =================================================================== --- devel/rubygem-aws-sdk-marketplacemetering/Makefile +++ devel/rubygem-aws-sdk-marketplacemetering/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-mediaconnect/Makefile =================================================================== --- devel/rubygem-aws-sdk-mediaconnect/Makefile +++ devel/rubygem-aws-sdk-mediaconnect/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-mediaconvert/Makefile =================================================================== --- devel/rubygem-aws-sdk-mediaconvert/Makefile +++ devel/rubygem-aws-sdk-mediaconvert/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-medialive/Makefile =================================================================== --- devel/rubygem-aws-sdk-medialive/Makefile +++ devel/rubygem-aws-sdk-medialive/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-mediapackage/Makefile =================================================================== --- devel/rubygem-aws-sdk-mediapackage/Makefile +++ devel/rubygem-aws-sdk-mediapackage/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-mediapackagevod/Makefile =================================================================== --- devel/rubygem-aws-sdk-mediapackagevod/Makefile +++ devel/rubygem-aws-sdk-mediapackagevod/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-mediastore/Makefile =================================================================== --- devel/rubygem-aws-sdk-mediastore/Makefile +++ devel/rubygem-aws-sdk-mediastore/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-mediastoredata/Makefile =================================================================== --- devel/rubygem-aws-sdk-mediastoredata/Makefile +++ devel/rubygem-aws-sdk-mediastoredata/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-mediatailor/Makefile =================================================================== --- devel/rubygem-aws-sdk-mediatailor/Makefile +++ devel/rubygem-aws-sdk-mediatailor/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-memorydb/Makefile =================================================================== --- devel/rubygem-aws-sdk-memorydb/Makefile +++ devel/rubygem-aws-sdk-memorydb/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-mgn/Makefile =================================================================== --- devel/rubygem-aws-sdk-mgn/Makefile +++ devel/rubygem-aws-sdk-mgn/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-migrationhub/Makefile =================================================================== --- devel/rubygem-aws-sdk-migrationhub/Makefile +++ devel/rubygem-aws-sdk-migrationhub/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-migrationhubconfig/Makefile =================================================================== --- devel/rubygem-aws-sdk-migrationhubconfig/Makefile +++ devel/rubygem-aws-sdk-migrationhubconfig/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-migrationhuborchestrator/Makefile =================================================================== --- devel/rubygem-aws-sdk-migrationhuborchestrator/Makefile +++ devel/rubygem-aws-sdk-migrationhuborchestrator/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-migrationhubrefactorspaces/Makefile =================================================================== --- devel/rubygem-aws-sdk-migrationhubrefactorspaces/Makefile +++ devel/rubygem-aws-sdk-migrationhubrefactorspaces/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-migrationhubstrategyrecommendations/Makefile =================================================================== --- devel/rubygem-aws-sdk-migrationhubstrategyrecommendations/Makefile +++ devel/rubygem-aws-sdk-migrationhubstrategyrecommendations/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-mobile/Makefile =================================================================== --- devel/rubygem-aws-sdk-mobile/Makefile +++ devel/rubygem-aws-sdk-mobile/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-mq/Makefile =================================================================== --- devel/rubygem-aws-sdk-mq/Makefile +++ devel/rubygem-aws-sdk-mq/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-mturk/Makefile =================================================================== --- devel/rubygem-aws-sdk-mturk/Makefile +++ devel/rubygem-aws-sdk-mturk/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-mwaa/Makefile =================================================================== --- devel/rubygem-aws-sdk-mwaa/Makefile +++ devel/rubygem-aws-sdk-mwaa/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-neptune/Makefile =================================================================== --- devel/rubygem-aws-sdk-neptune/Makefile +++ devel/rubygem-aws-sdk-neptune/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-networkfirewall/Makefile =================================================================== --- devel/rubygem-aws-sdk-networkfirewall/Makefile +++ devel/rubygem-aws-sdk-networkfirewall/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-networkmanager/Makefile =================================================================== --- devel/rubygem-aws-sdk-networkmanager/Makefile +++ devel/rubygem-aws-sdk-networkmanager/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-nimblestudio/Makefile =================================================================== --- devel/rubygem-aws-sdk-nimblestudio/Makefile +++ devel/rubygem-aws-sdk-nimblestudio/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-opensearchservice/Makefile =================================================================== --- devel/rubygem-aws-sdk-opensearchservice/Makefile +++ devel/rubygem-aws-sdk-opensearchservice/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-opsworks/Makefile =================================================================== --- devel/rubygem-aws-sdk-opsworks/Makefile +++ devel/rubygem-aws-sdk-opsworks/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-opsworkscm/Makefile =================================================================== --- devel/rubygem-aws-sdk-opsworkscm/Makefile +++ devel/rubygem-aws-sdk-opsworkscm/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-organizations/Makefile =================================================================== --- devel/rubygem-aws-sdk-organizations/Makefile +++ devel/rubygem-aws-sdk-organizations/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-outposts/Makefile =================================================================== --- devel/rubygem-aws-sdk-outposts/Makefile +++ devel/rubygem-aws-sdk-outposts/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-panorama/Makefile =================================================================== --- devel/rubygem-aws-sdk-panorama/Makefile +++ devel/rubygem-aws-sdk-panorama/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-personalize/Makefile =================================================================== --- devel/rubygem-aws-sdk-personalize/Makefile +++ devel/rubygem-aws-sdk-personalize/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-personalizeevents/Makefile =================================================================== --- devel/rubygem-aws-sdk-personalizeevents/Makefile +++ devel/rubygem-aws-sdk-personalizeevents/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-personalizeruntime/Makefile =================================================================== --- devel/rubygem-aws-sdk-personalizeruntime/Makefile +++ devel/rubygem-aws-sdk-personalizeruntime/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-pi/Makefile =================================================================== --- devel/rubygem-aws-sdk-pi/Makefile +++ devel/rubygem-aws-sdk-pi/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-pinpoint/Makefile =================================================================== --- devel/rubygem-aws-sdk-pinpoint/Makefile +++ devel/rubygem-aws-sdk-pinpoint/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-pinpointemail/Makefile =================================================================== --- devel/rubygem-aws-sdk-pinpointemail/Makefile +++ devel/rubygem-aws-sdk-pinpointemail/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-pinpointsmsvoice/Makefile =================================================================== --- devel/rubygem-aws-sdk-pinpointsmsvoice/Makefile +++ devel/rubygem-aws-sdk-pinpointsmsvoice/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-pinpointsmsvoicev2/Makefile =================================================================== --- devel/rubygem-aws-sdk-pinpointsmsvoicev2/Makefile +++ devel/rubygem-aws-sdk-pinpointsmsvoicev2/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-polly/Makefile =================================================================== --- devel/rubygem-aws-sdk-polly/Makefile +++ devel/rubygem-aws-sdk-polly/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-pricing/Makefile =================================================================== --- devel/rubygem-aws-sdk-pricing/Makefile +++ devel/rubygem-aws-sdk-pricing/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-privatenetworks/Makefile =================================================================== --- devel/rubygem-aws-sdk-privatenetworks/Makefile +++ devel/rubygem-aws-sdk-privatenetworks/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-prometheusservice/Makefile =================================================================== --- devel/rubygem-aws-sdk-prometheusservice/Makefile +++ devel/rubygem-aws-sdk-prometheusservice/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-proton/Makefile =================================================================== --- devel/rubygem-aws-sdk-proton/Makefile +++ devel/rubygem-aws-sdk-proton/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-qldb/Makefile =================================================================== --- devel/rubygem-aws-sdk-qldb/Makefile +++ devel/rubygem-aws-sdk-qldb/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-qldbsession/Makefile =================================================================== --- devel/rubygem-aws-sdk-qldbsession/Makefile +++ devel/rubygem-aws-sdk-qldbsession/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-quicksight/Makefile =================================================================== --- devel/rubygem-aws-sdk-quicksight/Makefile +++ devel/rubygem-aws-sdk-quicksight/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-ram/Makefile =================================================================== --- devel/rubygem-aws-sdk-ram/Makefile +++ devel/rubygem-aws-sdk-ram/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-rds/Makefile =================================================================== --- devel/rubygem-aws-sdk-rds/Makefile +++ devel/rubygem-aws-sdk-rds/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-rdsdataservice/Makefile =================================================================== --- devel/rubygem-aws-sdk-rdsdataservice/Makefile +++ devel/rubygem-aws-sdk-rdsdataservice/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-recyclebin/Makefile =================================================================== --- devel/rubygem-aws-sdk-recyclebin/Makefile +++ devel/rubygem-aws-sdk-recyclebin/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-redshift/Makefile =================================================================== --- devel/rubygem-aws-sdk-redshift/Makefile +++ devel/rubygem-aws-sdk-redshift/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-redshiftdataapiservice/Makefile =================================================================== --- devel/rubygem-aws-sdk-redshiftdataapiservice/Makefile +++ devel/rubygem-aws-sdk-redshiftdataapiservice/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-redshiftserverless/Makefile =================================================================== --- devel/rubygem-aws-sdk-redshiftserverless/Makefile +++ devel/rubygem-aws-sdk-redshiftserverless/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-rekognition/Makefile =================================================================== --- devel/rubygem-aws-sdk-rekognition/Makefile +++ devel/rubygem-aws-sdk-rekognition/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-resiliencehub/Makefile =================================================================== --- devel/rubygem-aws-sdk-resiliencehub/Makefile +++ devel/rubygem-aws-sdk-resiliencehub/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-resourcegroups/Makefile =================================================================== --- devel/rubygem-aws-sdk-resourcegroups/Makefile +++ devel/rubygem-aws-sdk-resourcegroups/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-resourcegroupstaggingapi/Makefile =================================================================== --- devel/rubygem-aws-sdk-resourcegroupstaggingapi/Makefile +++ devel/rubygem-aws-sdk-resourcegroupstaggingapi/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-resources/Makefile =================================================================== --- devel/rubygem-aws-sdk-resources/Makefile +++ devel/rubygem-aws-sdk-resources/Makefile @@ -329,7 +329,6 @@ rubygem-aws-sdk-xray>=1<2:devel/rubygem-aws-sdk-xray USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-resources2/Makefile =================================================================== --- devel/rubygem-aws-sdk-resources2/Makefile +++ devel/rubygem-aws-sdk-resources2/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-aws-sdk-core2>=${PORTVERSION}:devel/rubygem-aws-sdk-core2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-robomaker/Makefile =================================================================== --- devel/rubygem-aws-sdk-robomaker/Makefile +++ devel/rubygem-aws-sdk-robomaker/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-rolesanywhere/Makefile =================================================================== --- devel/rubygem-aws-sdk-rolesanywhere/Makefile +++ devel/rubygem-aws-sdk-rolesanywhere/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-route53/Makefile =================================================================== --- devel/rubygem-aws-sdk-route53/Makefile +++ devel/rubygem-aws-sdk-route53/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-route53domains/Makefile =================================================================== --- devel/rubygem-aws-sdk-route53domains/Makefile +++ devel/rubygem-aws-sdk-route53domains/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-route53recoverycluster/Makefile =================================================================== --- devel/rubygem-aws-sdk-route53recoverycluster/Makefile +++ devel/rubygem-aws-sdk-route53recoverycluster/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-route53recoverycontrolconfig/Makefile =================================================================== --- devel/rubygem-aws-sdk-route53recoverycontrolconfig/Makefile +++ devel/rubygem-aws-sdk-route53recoverycontrolconfig/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-route53recoveryreadiness/Makefile =================================================================== --- devel/rubygem-aws-sdk-route53recoveryreadiness/Makefile +++ devel/rubygem-aws-sdk-route53recoveryreadiness/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-route53resolver/Makefile =================================================================== --- devel/rubygem-aws-sdk-route53resolver/Makefile +++ devel/rubygem-aws-sdk-route53resolver/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-s3/Makefile =================================================================== --- devel/rubygem-aws-sdk-s3/Makefile +++ devel/rubygem-aws-sdk-s3/Makefile @@ -15,7 +15,6 @@ rubygem-aws-sigv4>=1.4<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-s3control/Makefile =================================================================== --- devel/rubygem-aws-sdk-s3control/Makefile +++ devel/rubygem-aws-sdk-s3control/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-s3outposts/Makefile =================================================================== --- devel/rubygem-aws-sdk-s3outposts/Makefile +++ devel/rubygem-aws-sdk-s3outposts/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-sagemaker/Makefile =================================================================== --- devel/rubygem-aws-sdk-sagemaker/Makefile +++ devel/rubygem-aws-sdk-sagemaker/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-sagemakeredgemanager/Makefile =================================================================== --- devel/rubygem-aws-sdk-sagemakeredgemanager/Makefile +++ devel/rubygem-aws-sdk-sagemakeredgemanager/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-sagemakerfeaturestoreruntime/Makefile =================================================================== --- devel/rubygem-aws-sdk-sagemakerfeaturestoreruntime/Makefile +++ devel/rubygem-aws-sdk-sagemakerfeaturestoreruntime/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-sagemakerruntime/Makefile =================================================================== --- devel/rubygem-aws-sdk-sagemakerruntime/Makefile +++ devel/rubygem-aws-sdk-sagemakerruntime/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-savingsplans/Makefile =================================================================== --- devel/rubygem-aws-sdk-savingsplans/Makefile +++ devel/rubygem-aws-sdk-savingsplans/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-schemas/Makefile =================================================================== --- devel/rubygem-aws-sdk-schemas/Makefile +++ devel/rubygem-aws-sdk-schemas/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-secretsmanager/Makefile =================================================================== --- devel/rubygem-aws-sdk-secretsmanager/Makefile +++ devel/rubygem-aws-sdk-secretsmanager/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-securityhub/Makefile =================================================================== --- devel/rubygem-aws-sdk-securityhub/Makefile +++ devel/rubygem-aws-sdk-securityhub/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-serverlessapplicationrepository/Makefile =================================================================== --- devel/rubygem-aws-sdk-serverlessapplicationrepository/Makefile +++ devel/rubygem-aws-sdk-serverlessapplicationrepository/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-servicecatalog/Makefile =================================================================== --- devel/rubygem-aws-sdk-servicecatalog/Makefile +++ devel/rubygem-aws-sdk-servicecatalog/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-servicediscovery/Makefile =================================================================== --- devel/rubygem-aws-sdk-servicediscovery/Makefile +++ devel/rubygem-aws-sdk-servicediscovery/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-servicequotas/Makefile =================================================================== --- devel/rubygem-aws-sdk-servicequotas/Makefile +++ devel/rubygem-aws-sdk-servicequotas/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-ses/Makefile =================================================================== --- devel/rubygem-aws-sdk-ses/Makefile +++ devel/rubygem-aws-sdk-ses/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-sesv2/Makefile =================================================================== --- devel/rubygem-aws-sdk-sesv2/Makefile +++ devel/rubygem-aws-sdk-sesv2/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-shield/Makefile =================================================================== --- devel/rubygem-aws-sdk-shield/Makefile +++ devel/rubygem-aws-sdk-shield/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-signer/Makefile =================================================================== --- devel/rubygem-aws-sdk-signer/Makefile +++ devel/rubygem-aws-sdk-signer/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-simpledb/Makefile =================================================================== --- devel/rubygem-aws-sdk-simpledb/Makefile +++ devel/rubygem-aws-sdk-simpledb/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv2>=1.0<2:devel/rubygem-aws-sigv2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-sms/Makefile =================================================================== --- devel/rubygem-aws-sdk-sms/Makefile +++ devel/rubygem-aws-sdk-sms/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-snowball/Makefile =================================================================== --- devel/rubygem-aws-sdk-snowball/Makefile +++ devel/rubygem-aws-sdk-snowball/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-snowdevicemanagement/Makefile =================================================================== --- devel/rubygem-aws-sdk-snowdevicemanagement/Makefile +++ devel/rubygem-aws-sdk-snowdevicemanagement/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-sns/Makefile =================================================================== --- devel/rubygem-aws-sdk-sns/Makefile +++ devel/rubygem-aws-sdk-sns/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-sqs/Makefile =================================================================== --- devel/rubygem-aws-sdk-sqs/Makefile +++ devel/rubygem-aws-sdk-sqs/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-ssm/Makefile =================================================================== --- devel/rubygem-aws-sdk-ssm/Makefile +++ devel/rubygem-aws-sdk-ssm/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-ssmcontacts/Makefile =================================================================== --- devel/rubygem-aws-sdk-ssmcontacts/Makefile +++ devel/rubygem-aws-sdk-ssmcontacts/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-ssmincidents/Makefile =================================================================== --- devel/rubygem-aws-sdk-ssmincidents/Makefile +++ devel/rubygem-aws-sdk-ssmincidents/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-sso/Makefile =================================================================== --- devel/rubygem-aws-sdk-sso/Makefile +++ devel/rubygem-aws-sdk-sso/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-ssoadmin/Makefile =================================================================== --- devel/rubygem-aws-sdk-ssoadmin/Makefile +++ devel/rubygem-aws-sdk-ssoadmin/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-ssooidc/Makefile =================================================================== --- devel/rubygem-aws-sdk-ssooidc/Makefile +++ devel/rubygem-aws-sdk-ssooidc/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-states/Makefile =================================================================== --- devel/rubygem-aws-sdk-states/Makefile +++ devel/rubygem-aws-sdk-states/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-storagegateway/Makefile =================================================================== --- devel/rubygem-aws-sdk-storagegateway/Makefile +++ devel/rubygem-aws-sdk-storagegateway/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-support/Makefile =================================================================== --- devel/rubygem-aws-sdk-support/Makefile +++ devel/rubygem-aws-sdk-support/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-supportapp/Makefile =================================================================== --- devel/rubygem-aws-sdk-supportapp/Makefile +++ devel/rubygem-aws-sdk-supportapp/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-swf/Makefile =================================================================== --- devel/rubygem-aws-sdk-swf/Makefile +++ devel/rubygem-aws-sdk-swf/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-synthetics/Makefile =================================================================== --- devel/rubygem-aws-sdk-synthetics/Makefile +++ devel/rubygem-aws-sdk-synthetics/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-textract/Makefile =================================================================== --- devel/rubygem-aws-sdk-textract/Makefile +++ devel/rubygem-aws-sdk-textract/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-timestreamquery/Makefile =================================================================== --- devel/rubygem-aws-sdk-timestreamquery/Makefile +++ devel/rubygem-aws-sdk-timestreamquery/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-timestreamwrite/Makefile =================================================================== --- devel/rubygem-aws-sdk-timestreamwrite/Makefile +++ devel/rubygem-aws-sdk-timestreamwrite/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-transcribeservice/Makefile =================================================================== --- devel/rubygem-aws-sdk-transcribeservice/Makefile +++ devel/rubygem-aws-sdk-transcribeservice/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-transcribestreamingservice/Makefile =================================================================== --- devel/rubygem-aws-sdk-transcribestreamingservice/Makefile +++ devel/rubygem-aws-sdk-transcribestreamingservice/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-transfer/Makefile =================================================================== --- devel/rubygem-aws-sdk-transfer/Makefile +++ devel/rubygem-aws-sdk-transfer/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-translate/Makefile =================================================================== --- devel/rubygem-aws-sdk-translate/Makefile +++ devel/rubygem-aws-sdk-translate/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-voiceid/Makefile =================================================================== --- devel/rubygem-aws-sdk-voiceid/Makefile +++ devel/rubygem-aws-sdk-voiceid/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-waf/Makefile =================================================================== --- devel/rubygem-aws-sdk-waf/Makefile +++ devel/rubygem-aws-sdk-waf/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-wafregional/Makefile =================================================================== --- devel/rubygem-aws-sdk-wafregional/Makefile +++ devel/rubygem-aws-sdk-wafregional/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-wafv2/Makefile =================================================================== --- devel/rubygem-aws-sdk-wafv2/Makefile +++ devel/rubygem-aws-sdk-wafv2/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-wellarchitected/Makefile =================================================================== --- devel/rubygem-aws-sdk-wellarchitected/Makefile +++ devel/rubygem-aws-sdk-wellarchitected/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-workdocs/Makefile =================================================================== --- devel/rubygem-aws-sdk-workdocs/Makefile +++ devel/rubygem-aws-sdk-workdocs/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-worklink/Makefile =================================================================== --- devel/rubygem-aws-sdk-worklink/Makefile +++ devel/rubygem-aws-sdk-worklink/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-workmail/Makefile =================================================================== --- devel/rubygem-aws-sdk-workmail/Makefile +++ devel/rubygem-aws-sdk-workmail/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-workmailmessageflow/Makefile =================================================================== --- devel/rubygem-aws-sdk-workmailmessageflow/Makefile +++ devel/rubygem-aws-sdk-workmailmessageflow/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-workspaces/Makefile =================================================================== --- devel/rubygem-aws-sdk-workspaces/Makefile +++ devel/rubygem-aws-sdk-workspaces/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-workspacesweb/Makefile =================================================================== --- devel/rubygem-aws-sdk-workspacesweb/Makefile +++ devel/rubygem-aws-sdk-workspacesweb/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk-xray/Makefile =================================================================== --- devel/rubygem-aws-sdk-xray/Makefile +++ devel/rubygem-aws-sdk-xray/Makefile @@ -14,7 +14,6 @@ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk/Makefile =================================================================== --- devel/rubygem-aws-sdk/Makefile +++ devel/rubygem-aws-sdk/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-aws-sdk-resources>=3<4:devel/rubygem-aws-sdk-resources USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sdk2/Makefile =================================================================== --- devel/rubygem-aws-sdk2/Makefile +++ devel/rubygem-aws-sdk2/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-aws-sdk-resources2>=${PORTVERSION}:devel/rubygem-aws-sdk-resources2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sigv2/Makefile =================================================================== --- devel/rubygem-aws-sigv2/Makefile +++ devel/rubygem-aws-sigv2/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-aws-sigv4/Makefile =================================================================== --- devel/rubygem-aws-sigv4/Makefile +++ devel/rubygem-aws-sigv4/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-aws-eventstream>=1.0.2<2:devel/rubygem-aws-eventstream USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-axiom-types/Makefile =================================================================== --- devel/rubygem-axiom-types/Makefile +++ devel/rubygem-axiom-types/Makefile @@ -15,7 +15,6 @@ rubygem-thread_safe>=0.3.1:devel/rubygem-thread_safe NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-azure-storage-blob/Makefile =================================================================== --- devel/rubygem-azure-storage-blob/Makefile +++ devel/rubygem-azure-storage-blob/Makefile @@ -13,7 +13,6 @@ rubygem-nokogiri>=1.10.8<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure-storage-common/Makefile =================================================================== --- devel/rubygem-azure-storage-common/Makefile +++ devel/rubygem-azure-storage-common/Makefile @@ -16,7 +16,6 @@ rubygem-nokogiri>=1.10.8<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure-storage-file/Makefile =================================================================== --- devel/rubygem-azure-storage-file/Makefile +++ devel/rubygem-azure-storage-file/Makefile @@ -13,7 +13,6 @@ rubygem-nokogiri>=1.10.8<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure-storage-queue/Makefile =================================================================== --- devel/rubygem-azure-storage-queue/Makefile +++ devel/rubygem-azure-storage-queue/Makefile @@ -13,7 +13,6 @@ rubygem-nokogiri>=1.10.8<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure-storage-table/Makefile =================================================================== --- devel/rubygem-azure-storage-table/Makefile +++ devel/rubygem-azure-storage-table/Makefile @@ -13,7 +13,6 @@ rubygem-nokogiri>=1.10.8<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure-storage/Makefile =================================================================== --- devel/rubygem-azure-storage/Makefile +++ devel/rubygem-azure-storage/Makefile @@ -16,7 +16,6 @@ rubygem-nokogiri>=1.6.8<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_anomalydetector/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_anomalydetector/Makefile +++ devel/rubygem-azure_cognitiveservices_anomalydetector/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_autosuggest/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_autosuggest/Makefile +++ devel/rubygem-azure_cognitiveservices_autosuggest/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_computervision/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_computervision/Makefile +++ devel/rubygem-azure_cognitiveservices_computervision/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_contentmoderator/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_contentmoderator/Makefile +++ devel/rubygem-azure_cognitiveservices_contentmoderator/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_customimagesearch/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_customimagesearch/Makefile +++ devel/rubygem-azure_cognitiveservices_customimagesearch/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_customsearch/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_customsearch/Makefile +++ devel/rubygem-azure_cognitiveservices_customsearch/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_customvisionprediction/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_customvisionprediction/Makefile +++ devel/rubygem-azure_cognitiveservices_customvisionprediction/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_customvisiontraining/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_customvisiontraining/Makefile +++ devel/rubygem-azure_cognitiveservices_customvisiontraining/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_entitysearch/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_entitysearch/Makefile +++ devel/rubygem-azure_cognitiveservices_entitysearch/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_face/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_face/Makefile +++ devel/rubygem-azure_cognitiveservices_face/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_formrecognizer/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_formrecognizer/Makefile +++ devel/rubygem-azure_cognitiveservices_formrecognizer/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_imagesearch/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_imagesearch/Makefile +++ devel/rubygem-azure_cognitiveservices_imagesearch/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_localsearch/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_localsearch/Makefile +++ devel/rubygem-azure_cognitiveservices_localsearch/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_luisauthoring/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_luisauthoring/Makefile +++ devel/rubygem-azure_cognitiveservices_luisauthoring/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_luisruntime/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_luisruntime/Makefile +++ devel/rubygem-azure_cognitiveservices_luisruntime/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_newssearch/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_newssearch/Makefile +++ devel/rubygem-azure_cognitiveservices_newssearch/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_personalizer/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_personalizer/Makefile +++ devel/rubygem-azure_cognitiveservices_personalizer/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_qnamaker/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_qnamaker/Makefile +++ devel/rubygem-azure_cognitiveservices_qnamaker/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_qnamakerruntime/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_qnamakerruntime/Makefile +++ devel/rubygem-azure_cognitiveservices_qnamakerruntime/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_spellcheck/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_spellcheck/Makefile +++ devel/rubygem-azure_cognitiveservices_spellcheck/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_textanalytics/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_textanalytics/Makefile +++ devel/rubygem-azure_cognitiveservices_textanalytics/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_videosearch/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_videosearch/Makefile +++ devel/rubygem-azure_cognitiveservices_videosearch/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_visualsearch/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_visualsearch/Makefile +++ devel/rubygem-azure_cognitiveservices_visualsearch/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_cognitiveservices_websearch/Makefile =================================================================== --- devel/rubygem-azure_cognitiveservices_websearch/Makefile +++ devel/rubygem-azure_cognitiveservices_websearch/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_event_grid/Makefile =================================================================== --- devel/rubygem-azure_event_grid/Makefile +++ devel/rubygem-azure_event_grid/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_graph_rbac/Makefile =================================================================== --- devel/rubygem-azure_graph_rbac/Makefile +++ devel/rubygem-azure_graph_rbac/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_key_vault/Makefile =================================================================== --- devel/rubygem-azure_key_vault/Makefile +++ devel/rubygem-azure_key_vault/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_adhybridhealth_service/Makefile =================================================================== --- devel/rubygem-azure_mgmt_adhybridhealth_service/Makefile +++ devel/rubygem-azure_mgmt_adhybridhealth_service/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_advisor/Makefile =================================================================== --- devel/rubygem-azure_mgmt_advisor/Makefile +++ devel/rubygem-azure_mgmt_advisor/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_alerts_management/Makefile =================================================================== --- devel/rubygem-azure_mgmt_alerts_management/Makefile +++ devel/rubygem-azure_mgmt_alerts_management/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_analysis_services/Makefile =================================================================== --- devel/rubygem-azure_mgmt_analysis_services/Makefile +++ devel/rubygem-azure_mgmt_analysis_services/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_api_management/Makefile =================================================================== --- devel/rubygem-azure_mgmt_api_management/Makefile +++ devel/rubygem-azure_mgmt_api_management/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_appconfiguration/Makefile =================================================================== --- devel/rubygem-azure_mgmt_appconfiguration/Makefile +++ devel/rubygem-azure_mgmt_appconfiguration/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_attestation/Makefile =================================================================== --- devel/rubygem-azure_mgmt_attestation/Makefile +++ devel/rubygem-azure_mgmt_attestation/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_authorization/Makefile =================================================================== --- devel/rubygem-azure_mgmt_authorization/Makefile +++ devel/rubygem-azure_mgmt_authorization/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_automanage/Makefile =================================================================== --- devel/rubygem-azure_mgmt_automanage/Makefile +++ devel/rubygem-azure_mgmt_automanage/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_automation/Makefile =================================================================== --- devel/rubygem-azure_mgmt_automation/Makefile +++ devel/rubygem-azure_mgmt_automation/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_azurestack/Makefile =================================================================== --- devel/rubygem-azure_mgmt_azurestack/Makefile +++ devel/rubygem-azure_mgmt_azurestack/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_azurestack_hci/Makefile =================================================================== --- devel/rubygem-azure_mgmt_azurestack_hci/Makefile +++ devel/rubygem-azure_mgmt_azurestack_hci/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_batch/Makefile =================================================================== --- devel/rubygem-azure_mgmt_batch/Makefile +++ devel/rubygem-azure_mgmt_batch/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_batchai/Makefile =================================================================== --- devel/rubygem-azure_mgmt_batchai/Makefile +++ devel/rubygem-azure_mgmt_batchai/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_billing/Makefile =================================================================== --- devel/rubygem-azure_mgmt_billing/Makefile +++ devel/rubygem-azure_mgmt_billing/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_bot_service/Makefile =================================================================== --- devel/rubygem-azure_mgmt_bot_service/Makefile +++ devel/rubygem-azure_mgmt_bot_service/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_cdn/Makefile =================================================================== --- devel/rubygem-azure_mgmt_cdn/Makefile +++ devel/rubygem-azure_mgmt_cdn/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_cognitive_services/Makefile =================================================================== --- devel/rubygem-azure_mgmt_cognitive_services/Makefile +++ devel/rubygem-azure_mgmt_cognitive_services/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_commerce/Makefile =================================================================== --- devel/rubygem-azure_mgmt_commerce/Makefile +++ devel/rubygem-azure_mgmt_commerce/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_compute/Makefile =================================================================== --- devel/rubygem-azure_mgmt_compute/Makefile +++ devel/rubygem-azure_mgmt_compute/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_consumption/Makefile =================================================================== --- devel/rubygem-azure_mgmt_consumption/Makefile +++ devel/rubygem-azure_mgmt_consumption/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_container_instance/Makefile =================================================================== --- devel/rubygem-azure_mgmt_container_instance/Makefile +++ devel/rubygem-azure_mgmt_container_instance/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_container_registry/Makefile =================================================================== --- devel/rubygem-azure_mgmt_container_registry/Makefile +++ devel/rubygem-azure_mgmt_container_registry/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_container_service/Makefile =================================================================== --- devel/rubygem-azure_mgmt_container_service/Makefile +++ devel/rubygem-azure_mgmt_container_service/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_cosmosdb/Makefile =================================================================== --- devel/rubygem-azure_mgmt_cosmosdb/Makefile +++ devel/rubygem-azure_mgmt_cosmosdb/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_cost_management/Makefile =================================================================== --- devel/rubygem-azure_mgmt_cost_management/Makefile +++ devel/rubygem-azure_mgmt_cost_management/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_customer_insights/Makefile =================================================================== --- devel/rubygem-azure_mgmt_customer_insights/Makefile +++ devel/rubygem-azure_mgmt_customer_insights/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_data_factory/Makefile =================================================================== --- devel/rubygem-azure_mgmt_data_factory/Makefile +++ devel/rubygem-azure_mgmt_data_factory/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_data_migration/Makefile =================================================================== --- devel/rubygem-azure_mgmt_data_migration/Makefile +++ devel/rubygem-azure_mgmt_data_migration/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_databox/Makefile =================================================================== --- devel/rubygem-azure_mgmt_databox/Makefile +++ devel/rubygem-azure_mgmt_databox/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_datalake_analytics/Makefile =================================================================== --- devel/rubygem-azure_mgmt_datalake_analytics/Makefile +++ devel/rubygem-azure_mgmt_datalake_analytics/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_datalake_store/Makefile =================================================================== --- devel/rubygem-azure_mgmt_datalake_store/Makefile +++ devel/rubygem-azure_mgmt_datalake_store/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_datashare/Makefile =================================================================== --- devel/rubygem-azure_mgmt_datashare/Makefile +++ devel/rubygem-azure_mgmt_datashare/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_deployment_manager/Makefile =================================================================== --- devel/rubygem-azure_mgmt_deployment_manager/Makefile +++ devel/rubygem-azure_mgmt_deployment_manager/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_dev_spaces/Makefile =================================================================== --- devel/rubygem-azure_mgmt_dev_spaces/Makefile +++ devel/rubygem-azure_mgmt_dev_spaces/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_devtestlabs/Makefile =================================================================== --- devel/rubygem-azure_mgmt_devtestlabs/Makefile +++ devel/rubygem-azure_mgmt_devtestlabs/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_digitaltwins/Makefile =================================================================== --- devel/rubygem-azure_mgmt_digitaltwins/Makefile +++ devel/rubygem-azure_mgmt_digitaltwins/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_dns/Makefile =================================================================== --- devel/rubygem-azure_mgmt_dns/Makefile +++ devel/rubygem-azure_mgmt_dns/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_edgegateway/Makefile =================================================================== --- devel/rubygem-azure_mgmt_edgegateway/Makefile +++ devel/rubygem-azure_mgmt_edgegateway/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_event_grid/Makefile =================================================================== --- devel/rubygem-azure_mgmt_event_grid/Makefile +++ devel/rubygem-azure_mgmt_event_grid/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_event_hub/Makefile =================================================================== --- devel/rubygem-azure_mgmt_event_hub/Makefile +++ devel/rubygem-azure_mgmt_event_hub/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_features/Makefile =================================================================== --- devel/rubygem-azure_mgmt_features/Makefile +++ devel/rubygem-azure_mgmt_features/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_hanaonazure/Makefile =================================================================== --- devel/rubygem-azure_mgmt_hanaonazure/Makefile +++ devel/rubygem-azure_mgmt_hanaonazure/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_hdinsight/Makefile =================================================================== --- devel/rubygem-azure_mgmt_hdinsight/Makefile +++ devel/rubygem-azure_mgmt_hdinsight/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_hybrid_compute/Makefile =================================================================== --- devel/rubygem-azure_mgmt_hybrid_compute/Makefile +++ devel/rubygem-azure_mgmt_hybrid_compute/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_import_export/Makefile =================================================================== --- devel/rubygem-azure_mgmt_import_export/Makefile +++ devel/rubygem-azure_mgmt_import_export/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_iot_central/Makefile =================================================================== --- devel/rubygem-azure_mgmt_iot_central/Makefile +++ devel/rubygem-azure_mgmt_iot_central/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_iot_hub/Makefile =================================================================== --- devel/rubygem-azure_mgmt_iot_hub/Makefile +++ devel/rubygem-azure_mgmt_iot_hub/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_key_vault/Makefile =================================================================== --- devel/rubygem-azure_mgmt_key_vault/Makefile +++ devel/rubygem-azure_mgmt_key_vault/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_kubernetes_configuration/Makefile =================================================================== --- devel/rubygem-azure_mgmt_kubernetes_configuration/Makefile +++ devel/rubygem-azure_mgmt_kubernetes_configuration/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_kusto/Makefile =================================================================== --- devel/rubygem-azure_mgmt_kusto/Makefile +++ devel/rubygem-azure_mgmt_kusto/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_labservices/Makefile =================================================================== --- devel/rubygem-azure_mgmt_labservices/Makefile +++ devel/rubygem-azure_mgmt_labservices/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_links/Makefile =================================================================== --- devel/rubygem-azure_mgmt_links/Makefile +++ devel/rubygem-azure_mgmt_links/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_locks/Makefile =================================================================== --- devel/rubygem-azure_mgmt_locks/Makefile +++ devel/rubygem-azure_mgmt_locks/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_logic/Makefile =================================================================== --- devel/rubygem-azure_mgmt_logic/Makefile +++ devel/rubygem-azure_mgmt_logic/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_machine_learning/Makefile =================================================================== --- devel/rubygem-azure_mgmt_machine_learning/Makefile +++ devel/rubygem-azure_mgmt_machine_learning/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_machine_learning_services/Makefile =================================================================== --- devel/rubygem-azure_mgmt_machine_learning_services/Makefile +++ devel/rubygem-azure_mgmt_machine_learning_services/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_maintenance/Makefile =================================================================== --- devel/rubygem-azure_mgmt_maintenance/Makefile +++ devel/rubygem-azure_mgmt_maintenance/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_managed_applications/Makefile =================================================================== --- devel/rubygem-azure_mgmt_managed_applications/Makefile +++ devel/rubygem-azure_mgmt_managed_applications/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_mariadb/Makefile =================================================================== --- devel/rubygem-azure_mgmt_mariadb/Makefile +++ devel/rubygem-azure_mgmt_mariadb/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_marketplace_ordering/Makefile =================================================================== --- devel/rubygem-azure_mgmt_marketplace_ordering/Makefile +++ devel/rubygem-azure_mgmt_marketplace_ordering/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_media_services/Makefile =================================================================== --- devel/rubygem-azure_mgmt_media_services/Makefile +++ devel/rubygem-azure_mgmt_media_services/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_migrate/Makefile =================================================================== --- devel/rubygem-azure_mgmt_migrate/Makefile +++ devel/rubygem-azure_mgmt_migrate/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_mixedreality/Makefile =================================================================== --- devel/rubygem-azure_mgmt_mixedreality/Makefile +++ devel/rubygem-azure_mgmt_mixedreality/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_monitor/Makefile =================================================================== --- devel/rubygem-azure_mgmt_monitor/Makefile +++ devel/rubygem-azure_mgmt_monitor/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_msi/Makefile =================================================================== --- devel/rubygem-azure_mgmt_msi/Makefile +++ devel/rubygem-azure_mgmt_msi/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_mysql/Makefile =================================================================== --- devel/rubygem-azure_mgmt_mysql/Makefile +++ devel/rubygem-azure_mgmt_mysql/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_netapp/Makefile =================================================================== --- devel/rubygem-azure_mgmt_netapp/Makefile +++ devel/rubygem-azure_mgmt_netapp/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_network/Makefile =================================================================== --- devel/rubygem-azure_mgmt_network/Makefile +++ devel/rubygem-azure_mgmt_network/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_notification_hubs/Makefile =================================================================== --- devel/rubygem-azure_mgmt_notification_hubs/Makefile +++ devel/rubygem-azure_mgmt_notification_hubs/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_operational_insights/Makefile =================================================================== --- devel/rubygem-azure_mgmt_operational_insights/Makefile +++ devel/rubygem-azure_mgmt_operational_insights/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_operations_management/Makefile =================================================================== --- devel/rubygem-azure_mgmt_operations_management/Makefile +++ devel/rubygem-azure_mgmt_operations_management/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_peering/Makefile =================================================================== --- devel/rubygem-azure_mgmt_peering/Makefile +++ devel/rubygem-azure_mgmt_peering/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_policy/Makefile =================================================================== --- devel/rubygem-azure_mgmt_policy/Makefile +++ devel/rubygem-azure_mgmt_policy/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_policy_insights/Makefile =================================================================== --- devel/rubygem-azure_mgmt_policy_insights/Makefile +++ devel/rubygem-azure_mgmt_policy_insights/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_portal/Makefile =================================================================== --- devel/rubygem-azure_mgmt_portal/Makefile +++ devel/rubygem-azure_mgmt_portal/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_postgresql/Makefile =================================================================== --- devel/rubygem-azure_mgmt_postgresql/Makefile +++ devel/rubygem-azure_mgmt_postgresql/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_powerbi_dedicated/Makefile =================================================================== --- devel/rubygem-azure_mgmt_powerbi_dedicated/Makefile +++ devel/rubygem-azure_mgmt_powerbi_dedicated/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_powerbi_embedded/Makefile =================================================================== --- devel/rubygem-azure_mgmt_powerbi_embedded/Makefile +++ devel/rubygem-azure_mgmt_powerbi_embedded/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_privatedns/Makefile =================================================================== --- devel/rubygem-azure_mgmt_privatedns/Makefile +++ devel/rubygem-azure_mgmt_privatedns/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_recovery_services/Makefile =================================================================== --- devel/rubygem-azure_mgmt_recovery_services/Makefile +++ devel/rubygem-azure_mgmt_recovery_services/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_recovery_services_backup/Makefile =================================================================== --- devel/rubygem-azure_mgmt_recovery_services_backup/Makefile +++ devel/rubygem-azure_mgmt_recovery_services_backup/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_recovery_services_site_recovery/Makefile =================================================================== --- devel/rubygem-azure_mgmt_recovery_services_site_recovery/Makefile +++ devel/rubygem-azure_mgmt_recovery_services_site_recovery/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_redis/Makefile =================================================================== --- devel/rubygem-azure_mgmt_redis/Makefile +++ devel/rubygem-azure_mgmt_redis/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_relay/Makefile =================================================================== --- devel/rubygem-azure_mgmt_relay/Makefile +++ devel/rubygem-azure_mgmt_relay/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_reservations/Makefile =================================================================== --- devel/rubygem-azure_mgmt_reservations/Makefile +++ devel/rubygem-azure_mgmt_reservations/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_resource_health/Makefile =================================================================== --- devel/rubygem-azure_mgmt_resource_health/Makefile +++ devel/rubygem-azure_mgmt_resource_health/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_resourcegraph/Makefile =================================================================== --- devel/rubygem-azure_mgmt_resourcegraph/Makefile +++ devel/rubygem-azure_mgmt_resourcegraph/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_resources/Makefile =================================================================== --- devel/rubygem-azure_mgmt_resources/Makefile +++ devel/rubygem-azure_mgmt_resources/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_resources_management/Makefile =================================================================== --- devel/rubygem-azure_mgmt_resources_management/Makefile +++ devel/rubygem-azure_mgmt_resources_management/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_scheduler/Makefile =================================================================== --- devel/rubygem-azure_mgmt_scheduler/Makefile +++ devel/rubygem-azure_mgmt_scheduler/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_search/Makefile =================================================================== --- devel/rubygem-azure_mgmt_search/Makefile +++ devel/rubygem-azure_mgmt_search/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_security/Makefile =================================================================== --- devel/rubygem-azure_mgmt_security/Makefile +++ devel/rubygem-azure_mgmt_security/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_serialconsole/Makefile =================================================================== --- devel/rubygem-azure_mgmt_serialconsole/Makefile +++ devel/rubygem-azure_mgmt_serialconsole/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_service_bus/Makefile =================================================================== --- devel/rubygem-azure_mgmt_service_bus/Makefile +++ devel/rubygem-azure_mgmt_service_bus/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_service_fabric/Makefile =================================================================== --- devel/rubygem-azure_mgmt_service_fabric/Makefile +++ devel/rubygem-azure_mgmt_service_fabric/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_signalr/Makefile =================================================================== --- devel/rubygem-azure_mgmt_signalr/Makefile +++ devel/rubygem-azure_mgmt_signalr/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_sql/Makefile =================================================================== --- devel/rubygem-azure_mgmt_sql/Makefile +++ devel/rubygem-azure_mgmt_sql/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_sqlvirtualmachine/Makefile =================================================================== --- devel/rubygem-azure_mgmt_sqlvirtualmachine/Makefile +++ devel/rubygem-azure_mgmt_sqlvirtualmachine/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_stor_simple8000_series/Makefile =================================================================== --- devel/rubygem-azure_mgmt_stor_simple8000_series/Makefile +++ devel/rubygem-azure_mgmt_stor_simple8000_series/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_storage/Makefile =================================================================== --- devel/rubygem-azure_mgmt_storage/Makefile +++ devel/rubygem-azure_mgmt_storage/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_storagecache/Makefile =================================================================== --- devel/rubygem-azure_mgmt_storagecache/Makefile +++ devel/rubygem-azure_mgmt_storagecache/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_storagesync/Makefile =================================================================== --- devel/rubygem-azure_mgmt_storagesync/Makefile +++ devel/rubygem-azure_mgmt_storagesync/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_stream_analytics/Makefile =================================================================== --- devel/rubygem-azure_mgmt_stream_analytics/Makefile +++ devel/rubygem-azure_mgmt_stream_analytics/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_subscriptions/Makefile =================================================================== --- devel/rubygem-azure_mgmt_subscriptions/Makefile +++ devel/rubygem-azure_mgmt_subscriptions/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_support/Makefile =================================================================== --- devel/rubygem-azure_mgmt_support/Makefile +++ devel/rubygem-azure_mgmt_support/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_synapse/Makefile =================================================================== --- devel/rubygem-azure_mgmt_synapse/Makefile +++ devel/rubygem-azure_mgmt_synapse/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_time_series_insights/Makefile =================================================================== --- devel/rubygem-azure_mgmt_time_series_insights/Makefile +++ devel/rubygem-azure_mgmt_time_series_insights/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_traffic_manager/Makefile =================================================================== --- devel/rubygem-azure_mgmt_traffic_manager/Makefile +++ devel/rubygem-azure_mgmt_traffic_manager/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_vmware_cloudsimple/Makefile =================================================================== --- devel/rubygem-azure_mgmt_vmware_cloudsimple/Makefile +++ devel/rubygem-azure_mgmt_vmware_cloudsimple/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_mgmt_web/Makefile =================================================================== --- devel/rubygem-azure_mgmt_web/Makefile +++ devel/rubygem-azure_mgmt_web/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_sdk/Makefile =================================================================== --- devel/rubygem-azure_sdk/Makefile +++ devel/rubygem-azure_sdk/Makefile @@ -152,7 +152,6 @@ rubygem-azure_service_fabric>=0.18.1<0.19:devel/rubygem-azure_service_fabric USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-azure_service_fabric/Makefile =================================================================== --- devel/rubygem-azure_service_fabric/Makefile +++ devel/rubygem-azure_service_fabric/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-backports/Makefile =================================================================== --- devel/rubygem-backports/Makefile +++ devel/rubygem-backports/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-bacon/Makefile =================================================================== --- devel/rubygem-bacon/Makefile +++ devel/rubygem-bacon/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/bacon Index: devel/rubygem-baf/Makefile =================================================================== --- devel/rubygem-baf/Makefile +++ devel/rubygem-baf/Makefile @@ -10,7 +10,6 @@ LICENSE= BSD3CLAUSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-batch-loader/Makefile =================================================================== --- devel/rubygem-batch-loader/Makefile +++ devel/rubygem-batch-loader/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-benelux/Makefile =================================================================== --- devel/rubygem-benelux/Makefile +++ devel/rubygem-benelux/Makefile @@ -14,7 +14,6 @@ rubygem-storable>=0.8.6:devel/rubygem-storable USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-bin_utils/Makefile =================================================================== --- devel/rubygem-bin_utils/Makefile +++ devel/rubygem-bin_utils/Makefile @@ -9,7 +9,6 @@ LICENSE= MIT -USE_RUBY= yes USES= gem .include Index: devel/rubygem-bindata/Makefile =================================================================== --- devel/rubygem-bindata/Makefile +++ devel/rubygem-bindata/Makefile @@ -14,7 +14,6 @@ USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-bindex/Makefile =================================================================== --- devel/rubygem-bindex/Makefile +++ devel/rubygem-bindex/Makefile @@ -11,6 +11,5 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include Index: devel/rubygem-binding_of_caller/Makefile =================================================================== --- devel/rubygem-binding_of_caller/Makefile +++ devel/rubygem-binding_of_caller/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-debug_inspector>=0.0.1:devel/rubygem-debug_inspector USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-bit-struct/Makefile =================================================================== --- devel/rubygem-bit-struct/Makefile +++ devel/rubygem-bit-struct/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-blankslate/Makefile =================================================================== --- devel/rubygem-blankslate/Makefile +++ devel/rubygem-blankslate/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-blockenspiel/Makefile =================================================================== --- devel/rubygem-blockenspiel/Makefile +++ devel/rubygem-blockenspiel/Makefile @@ -10,7 +10,6 @@ LICENSE= BSD3CLAUSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-bones/Makefile =================================================================== --- devel/rubygem-bones/Makefile +++ devel/rubygem-bones/Makefile @@ -15,7 +15,6 @@ rubygem-rdoc>=6.0<7:devel/rubygem-rdoc USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-bootsnap/Makefile =================================================================== --- devel/rubygem-bootsnap/Makefile +++ devel/rubygem-bootsnap/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-msgpack>=1.2<2:devel/rubygem-msgpack USES= gem -USE_RUBY= yes PLIST_FILES= bin/bootsnap Index: devel/rubygem-bootsnap111/Makefile =================================================================== --- devel/rubygem-bootsnap111/Makefile +++ devel/rubygem-bootsnap111/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-msgpack>=1.2<2:devel/rubygem-msgpack USES= gem -USE_RUBY= yes PORTSCOUT= limit:^1\.11\. Index: devel/rubygem-bootsnap112/Makefile =================================================================== --- devel/rubygem-bootsnap112/Makefile +++ devel/rubygem-bootsnap112/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-msgpack>=1.2<2:devel/rubygem-msgpack USES= gem -USE_RUBY= yes PORTSCOUT= limit:^1\.12\. Index: devel/rubygem-bootstrap_form/Makefile =================================================================== --- devel/rubygem-bootstrap_form/Makefile +++ devel/rubygem-bootstrap_form/Makefile @@ -15,7 +15,6 @@ rubygem-activemodel61>=5.0:databases/rubygem-activemodel61 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-bson/Makefile =================================================================== --- devel/rubygem-bson/Makefile +++ devel/rubygem-bson/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= cpe gem -USE_RUBY= yes CPE_VENDOR= bson_project Index: devel/rubygem-buftok/Makefile =================================================================== --- devel/rubygem-buftok/Makefile +++ devel/rubygem-buftok/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-bugspots/Makefile =================================================================== --- devel/rubygem-bugspots/Makefile +++ devel/rubygem-bugspots/Makefile @@ -14,7 +14,6 @@ rubygem-rugged>=0.21.0:devel/rubygem-rugged NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/bugspots bin/git-bugspots Index: devel/rubygem-builder/Makefile =================================================================== --- devel/rubygem-builder/Makefile +++ devel/rubygem-builder/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-byebug/Makefile =================================================================== --- devel/rubygem-byebug/Makefile +++ devel/rubygem-byebug/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes PLIST_FILES= bin/byebug Index: devel/rubygem-c21e/Makefile =================================================================== --- devel/rubygem-c21e/Makefile +++ devel/rubygem-c21e/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-cabin/Makefile =================================================================== --- devel/rubygem-cabin/Makefile +++ devel/rubygem-cabin/Makefile @@ -8,7 +8,6 @@ WWW= https://github.com/jordansissel/ruby-cabin NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/rubygems-cabin-test Index: devel/rubygem-caesars/Makefile =================================================================== --- devel/rubygem-caesars/Makefile +++ devel/rubygem-caesars/Makefile @@ -10,7 +10,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem shebangfix SHEBANG_FILES= bin/example Index: devel/rubygem-cairo-gobject/Makefile =================================================================== --- devel/rubygem-cairo-gobject/Makefile +++ devel/rubygem-cairo-gobject/Makefile @@ -15,6 +15,5 @@ USES= gem gnome USE_GNOME= cairo glib20 -USE_RUBY= yes .include Index: devel/rubygem-capybara-screenshot/Makefile =================================================================== --- devel/rubygem-capybara-screenshot/Makefile +++ devel/rubygem-capybara-screenshot/Makefile @@ -14,7 +14,6 @@ rubygem-launchy>=0:devel/rubygem-launchy USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-capybara/Makefile =================================================================== --- devel/rubygem-capybara/Makefile +++ devel/rubygem-capybara/Makefile @@ -20,7 +20,6 @@ rubygem-xpath>=3.2<4:devel/rubygem-xpath USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-cbor/Makefile =================================================================== --- devel/rubygem-cbor/Makefile +++ devel/rubygem-cbor/Makefile @@ -10,6 +10,5 @@ LICENSE= APACHE20 USES= gem -USE_RUBY= yes .include Index: devel/rubygem-celluloid-essentials/Makefile =================================================================== --- devel/rubygem-celluloid-essentials/Makefile +++ devel/rubygem-celluloid-essentials/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-timers>=4.1.1:devel/rubygem-timers USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-celluloid-extras/Makefile =================================================================== --- devel/rubygem-celluloid-extras/Makefile +++ devel/rubygem-celluloid-extras/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-timers>=4.1.1:devel/rubygem-timers USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-celluloid-fsm/Makefile =================================================================== --- devel/rubygem-celluloid-fsm/Makefile +++ devel/rubygem-celluloid-fsm/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-timers>=4.1.1:devel/rubygem-timers USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-celluloid-io/Makefile =================================================================== --- devel/rubygem-celluloid-io/Makefile +++ devel/rubygem-celluloid-io/Makefile @@ -15,7 +15,6 @@ rubygem-timers>=4.1.1:devel/rubygem-timers USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-celluloid-pool/Makefile =================================================================== --- devel/rubygem-celluloid-pool/Makefile +++ devel/rubygem-celluloid-pool/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-timers>=4.1.1:devel/rubygem-timers USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-celluloid-supervision/Makefile =================================================================== --- devel/rubygem-celluloid-supervision/Makefile +++ devel/rubygem-celluloid-supervision/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-timers>=4.1.1:devel/rubygem-timers USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-celluloid/Makefile =================================================================== --- devel/rubygem-celluloid/Makefile +++ devel/rubygem-celluloid/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-timers>=4<5:devel/rubygem-timers USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-cf-uaa-lib/Makefile =================================================================== --- devel/rubygem-cf-uaa-lib/Makefile +++ devel/rubygem-cf-uaa-lib/Makefile @@ -15,7 +15,6 @@ rubygem-multi_json>=1.12.1<2:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-cheffish/Makefile =================================================================== --- devel/rubygem-cheffish/Makefile +++ devel/rubygem-cheffish/Makefile @@ -13,7 +13,6 @@ rubygem-net-ssh>=0,2:security/rubygem-net-ssh USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-childprocess/Makefile =================================================================== --- devel/rubygem-childprocess/Makefile +++ devel/rubygem-childprocess/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-childprocess3/Makefile =================================================================== --- devel/rubygem-childprocess3/Makefile +++ devel/rubygem-childprocess3/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-childprocess40/Makefile =================================================================== --- devel/rubygem-childprocess40/Makefile +++ devel/rubygem-childprocess40/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-chronic/Makefile =================================================================== --- devel/rubygem-chronic/Makefile +++ devel/rubygem-chronic/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-chronic_duration/Makefile =================================================================== --- devel/rubygem-chronic_duration/Makefile +++ devel/rubygem-chronic_duration/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-numerizer>=0.1.1:devel/rubygem-numerizer USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-claide-plugins/Makefile =================================================================== --- devel/rubygem-claide-plugins/Makefile +++ devel/rubygem-claide-plugins/Makefile @@ -15,7 +15,6 @@ rubygem-open4>=1.3<2:devel/rubygem-open4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-claide/Makefile =================================================================== --- devel/rubygem-claide/Makefile +++ devel/rubygem-claide/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-clamp/Makefile =================================================================== --- devel/rubygem-clamp/Makefile +++ devel/rubygem-clamp/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-clamp11/Makefile =================================================================== --- devel/rubygem-clamp11/Makefile +++ devel/rubygem-clamp11/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-classifier-reborn/Makefile =================================================================== --- devel/rubygem-classifier-reborn/Makefile +++ devel/rubygem-classifier-reborn/Makefile @@ -14,7 +14,6 @@ rubygem-matrix>=0.4<1:math/rubygem-matrix USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-classifier/Makefile =================================================================== --- devel/rubygem-classifier/Makefile +++ devel/rubygem-classifier/Makefile @@ -15,7 +15,6 @@ rubygem-rake>=0:devel/rubygem-rake NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-climate_control/Makefile =================================================================== --- devel/rubygem-climate_control/Makefile +++ devel/rubygem-climate_control/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-clio/Makefile =================================================================== --- devel/rubygem-clio/Makefile +++ devel/rubygem-clio/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-cliprompt/Makefile =================================================================== --- devel/rubygem-cliprompt/Makefile +++ devel/rubygem-cliprompt/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-paint>=1.0.0:devel/rubygem-paint NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-cloudfiles/Makefile =================================================================== --- devel/rubygem-cloudfiles/Makefile +++ devel/rubygem-cloudfiles/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-json>=0:devel/rubygem-json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-cms_scanner/Makefile =================================================================== --- devel/rubygem-cms_scanner/Makefile +++ devel/rubygem-cms_scanner/Makefile @@ -21,7 +21,6 @@ rubygem-yajl-ruby>=1.4.1<1.5:devel/rubygem-yajl-ruby USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-cocaine/Makefile =================================================================== --- devel/rubygem-cocaine/Makefile +++ devel/rubygem-cocaine/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-terrapin>=${PORTVERSION}:devel/rubygem-terrapin NO_ARCH= yes -USE_RUBY= yes USES= cpe gem CPE_VENDOR= thoughtbot Index: devel/rubygem-coercible/Makefile =================================================================== --- devel/rubygem-coercible/Makefile +++ devel/rubygem-coercible/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-descendants_tracker>=0.0.1:devel/rubygem-descendants_tracker USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-coffee-rails-rails5/Makefile =================================================================== --- devel/rubygem-coffee-rails-rails5/Makefile +++ devel/rubygem-coffee-rails-rails5/Makefile @@ -15,7 +15,6 @@ rubygem-railties5>=4.0.0:www/rubygem-railties5 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-coffee-rails-rails50/Makefile =================================================================== --- devel/rubygem-coffee-rails-rails50/Makefile +++ devel/rubygem-coffee-rails-rails50/Makefile @@ -15,7 +15,6 @@ rubygem-railties50>=4.0.0:www/rubygem-railties50 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-coffee-rails-rails52/Makefile =================================================================== --- devel/rubygem-coffee-rails-rails52/Makefile +++ devel/rubygem-coffee-rails-rails52/Makefile @@ -15,7 +15,6 @@ rubygem-railties52>=5.2.0:www/rubygem-railties52 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-coffee-rails4/Makefile =================================================================== --- devel/rubygem-coffee-rails4/Makefile +++ devel/rubygem-coffee-rails4/Makefile @@ -15,7 +15,6 @@ rubygem-railties4>=4.0.0:www/rubygem-railties4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-coffee-rails41/Makefile =================================================================== --- devel/rubygem-coffee-rails41/Makefile +++ devel/rubygem-coffee-rails41/Makefile @@ -15,7 +15,6 @@ rubygem-railties4>=4.0.0:www/rubygem-railties4 NO_ARCH= yes -USE_RUBY= yes USES= gem PORTSCOUT= limit:^4\.1\. Index: devel/rubygem-coffee-script-source/Makefile =================================================================== --- devel/rubygem-coffee-script-source/Makefile +++ devel/rubygem-coffee-script-source/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-coffee-script/Makefile =================================================================== --- devel/rubygem-coffee-script/Makefile +++ devel/rubygem-coffee-script/Makefile @@ -14,7 +14,6 @@ rubygem-execjs>=0:devel/rubygem-execjs NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-colorize/Makefile =================================================================== --- devel/rubygem-colorize/Makefile +++ devel/rubygem-colorize/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-columnize/Makefile =================================================================== --- devel/rubygem-columnize/Makefile +++ devel/rubygem-columnize/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-commander/Makefile =================================================================== --- devel/rubygem-commander/Makefile +++ devel/rubygem-commander/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-highline>=2.0.0<2.1:devel/rubygem-highline USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-concurrent-ruby-edge/Makefile =================================================================== --- devel/rubygem-concurrent-ruby-edge/Makefile +++ devel/rubygem-concurrent-ruby-edge/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-concurrent-ruby>=1.1.6<1.2:devel/rubygem-concurrent-ruby USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-concurrent-ruby-ext/Makefile =================================================================== --- devel/rubygem-concurrent-ruby-ext/Makefile +++ devel/rubygem-concurrent-ruby-ext/Makefile @@ -13,6 +13,5 @@ RUN_DEPENDS= rubygem-concurrent-ruby>=${PORTVERSION}:devel/rubygem-concurrent-ruby USES= gem -USE_RUBY= yes .include Index: devel/rubygem-concurrent-ruby/Makefile =================================================================== --- devel/rubygem-concurrent-ruby/Makefile +++ devel/rubygem-concurrent-ruby/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-configatron/Makefile =================================================================== --- devel/rubygem-configatron/Makefile +++ devel/rubygem-configatron/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-configstruct/Makefile =================================================================== --- devel/rubygem-configstruct/Makefile +++ devel/rubygem-configstruct/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-configuration/Makefile =================================================================== --- devel/rubygem-configuration/Makefile +++ devel/rubygem-configuration/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-console/Makefile =================================================================== --- devel/rubygem-console/Makefile +++ devel/rubygem-console/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-fiber-local>=0:devel/rubygem-fiber-local USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-contracts/Makefile =================================================================== --- devel/rubygem-contracts/Makefile +++ devel/rubygem-contracts/Makefile @@ -12,7 +12,6 @@ # LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-contracts016/Makefile =================================================================== --- devel/rubygem-contracts016/Makefile +++ devel/rubygem-contracts016/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-cookbook-omnifetch/Makefile =================================================================== --- devel/rubygem-cookbook-omnifetch/Makefile +++ devel/rubygem-cookbook-omnifetch/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-mixlib-archive>=0.4<2.0:devel/rubygem-mixlib-archive USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-cool.io/Makefile =================================================================== --- devel/rubygem-cool.io/Makefile +++ devel/rubygem-cool.io/Makefile @@ -13,6 +13,5 @@ RUN_DEPENDS= rubygem-iobuffer>=1.0.0:devel/rubygem-iobuffer USES= gem -USE_RUBY= yes .include Index: devel/rubygem-corefines/Makefile =================================================================== --- devel/rubygem-corefines/Makefile +++ devel/rubygem-corefines/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-cork/Makefile =================================================================== --- devel/rubygem-cork/Makefile +++ devel/rubygem-cork/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-colored2>=3.1<4:textproc/rubygem-colored2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-countries/Makefile =================================================================== --- devel/rubygem-countries/Makefile +++ devel/rubygem-countries/Makefile @@ -15,7 +15,6 @@ rubygem-unicode_utils>=1.4<2:devel/rubygem-unicode_utils USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-cow_proxy/Makefile =================================================================== --- devel/rubygem-cow_proxy/Makefile +++ devel/rubygem-cow_proxy/Makefile @@ -11,7 +11,6 @@ #LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-crack/Makefile =================================================================== --- devel/rubygem-crack/Makefile +++ devel/rubygem-crack/Makefile @@ -13,7 +13,6 @@ USES= cpe gem CPE_VENDOR= john_nunemaker -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-cri/Makefile =================================================================== --- devel/rubygem-cri/Makefile +++ devel/rubygem-cri/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-csv/Makefile =================================================================== --- devel/rubygem-csv/Makefile +++ devel/rubygem-csv/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-cucumber-ci-environment/Makefile =================================================================== --- devel/rubygem-cucumber-ci-environment/Makefile +++ devel/rubygem-cucumber-ci-environment/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-cucumber-core/Makefile =================================================================== --- devel/rubygem-cucumber-core/Makefile +++ devel/rubygem-cucumber-core/Makefile @@ -16,7 +16,6 @@ rubygem-cucumber-tag-expressions>=4.1.0<5:devel/rubygem-cucumber-tag-expressions USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-cucumber-cucumber-expressions/Makefile =================================================================== --- devel/rubygem-cucumber-cucumber-expressions/Makefile +++ devel/rubygem-cucumber-cucumber-expressions/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-cucumber-cucumber-expressions15/Makefile =================================================================== --- devel/rubygem-cucumber-cucumber-expressions15/Makefile +++ devel/rubygem-cucumber-cucumber-expressions15/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-cucumber-messages/Makefile =================================================================== --- devel/rubygem-cucumber-messages/Makefile +++ devel/rubygem-cucumber-messages/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-cucumber-messages18/Makefile =================================================================== --- devel/rubygem-cucumber-messages18/Makefile +++ devel/rubygem-cucumber-messages18/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-cucumber-rails/Makefile =================================================================== --- devel/rubygem-cucumber-rails/Makefile +++ devel/rubygem-cucumber-rails/Makefile @@ -19,7 +19,6 @@ rubygem-webrick>=1.7<2:www/rubygem-webrick USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-cucumber-tag-expressions/Makefile =================================================================== --- devel/rubygem-cucumber-tag-expressions/Makefile +++ devel/rubygem-cucumber-tag-expressions/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-cucumber-wire/Makefile =================================================================== --- devel/rubygem-cucumber-wire/Makefile +++ devel/rubygem-cucumber-wire/Makefile @@ -14,7 +14,6 @@ rubygem-cucumber-cucumber-expressions>=14.0.0:devel/rubygem-cucumber-cucumber-expressions USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-cucumber/Makefile =================================================================== --- devel/rubygem-cucumber/Makefile +++ devel/rubygem-cucumber/Makefile @@ -24,7 +24,6 @@ rubygem-sys-uname>=1.2.2<2:sysutils/rubygem-sys-uname USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-curses/Makefile =================================================================== --- devel/rubygem-curses/Makefile +++ devel/rubygem-curses/Makefile @@ -10,7 +10,6 @@ LICENSE= RUBY BSD2CLAUSE LICENSE_COMB= dual -USE_RUBY= yes USES= gem ncurses .include Index: devel/rubygem-cyoi/Makefile =================================================================== --- devel/rubygem-cyoi/Makefile +++ devel/rubygem-cyoi/Makefile @@ -16,7 +16,6 @@ rubygem-readwritesettings>=3.0:devel/rubygem-readwritesettings USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-daemon_controller/Makefile =================================================================== --- devel/rubygem-daemon_controller/Makefile +++ devel/rubygem-daemon_controller/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem python:env shebangfix -USE_RUBY= yes SHEBANG_FILES= rpm/get_distro_id.py Index: devel/rubygem-daemons/Makefile =================================================================== --- devel/rubygem-daemons/Makefile +++ devel/rubygem-daemons/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-danger-gitlab/Makefile =================================================================== --- devel/rubygem-danger-gitlab/Makefile +++ devel/rubygem-danger-gitlab/Makefile @@ -14,7 +14,6 @@ rubygem-gitlab>=0.9.2:devel/rubygem-gitlab USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-danger/Makefile =================================================================== --- devel/rubygem-danger/Makefile +++ devel/rubygem-danger/Makefile @@ -25,7 +25,6 @@ rubygem-terminal-table>=1<4:textproc/rubygem-terminal-table USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-date/Makefile =================================================================== --- devel/rubygem-date/Makefile +++ devel/rubygem-date/Makefile @@ -11,7 +11,6 @@ LICENSE_COMB= dual USES= cpe gem -USE_RUBY= yes CPE_VENDOR= ruby-lang Index: devel/rubygem-ddmemoize/Makefile =================================================================== --- devel/rubygem-ddmemoize/Makefile +++ devel/rubygem-ddmemoize/Makefile @@ -13,7 +13,6 @@ rubygem-ddmetrics>=1.0:devel/rubygem-ddmetrics USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-ddmetrics/Makefile =================================================================== --- devel/rubygem-ddmetrics/Makefile +++ devel/rubygem-ddmetrics/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-ddplugin/Makefile =================================================================== --- devel/rubygem-ddplugin/Makefile +++ devel/rubygem-ddplugin/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-ddtrace/Makefile =================================================================== --- devel/rubygem-ddtrace/Makefile +++ devel/rubygem-ddtrace/Makefile @@ -18,7 +18,6 @@ rubygem-msgpack>=0:devel/rubygem-msgpack USES= gem -USE_RUBY= yes PLIST_FILES= bin/ddtracerb Index: devel/rubygem-debase-ruby_core_source/Makefile =================================================================== --- devel/rubygem-debase-ruby_core_source/Makefile +++ devel/rubygem-debase-ruby_core_source/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-debug/Makefile =================================================================== --- devel/rubygem-debug/Makefile +++ devel/rubygem-debug/Makefile @@ -14,7 +14,6 @@ rubygem-reline>=0.3.1:devel/rubygem-reline USES= gem -USE_RUBY= yes PLIST_FILES= bin/rdbg Index: devel/rubygem-debug_inspector/Makefile =================================================================== --- devel/rubygem-debug_inspector/Makefile +++ devel/rubygem-debug_inspector/Makefile @@ -10,6 +10,5 @@ LICENSE= MIT USES= gem -USE_RUBY= yes .include Index: devel/rubygem-debugger-linecache/Makefile =================================================================== --- devel/rubygem-debugger-linecache/Makefile +++ devel/rubygem-debugger-linecache/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-debugger-ruby_core_source/Makefile =================================================================== --- devel/rubygem-debugger-ruby_core_source/Makefile +++ devel/rubygem-debugger-ruby_core_source/Makefile @@ -11,6 +11,5 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes .include Index: devel/rubygem-debugger-xml/Makefile =================================================================== --- devel/rubygem-debugger-xml/Makefile +++ devel/rubygem-debugger-xml/Makefile @@ -15,7 +15,6 @@ rubygem-byebug>=0:devel/rubygem-byebug USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-declarative-option/Makefile =================================================================== --- devel/rubygem-declarative-option/Makefile +++ devel/rubygem-declarative-option/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-declarative/Makefile =================================================================== --- devel/rubygem-declarative/Makefile +++ devel/rubygem-declarative/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-deep_merge/Makefile =================================================================== --- devel/rubygem-deep_merge/Makefile +++ devel/rubygem-deep_merge/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-deep_test/Makefile =================================================================== --- devel/rubygem-deep_test/Makefile +++ devel/rubygem-deep_test/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/deep_test Index: devel/rubygem-deface/Makefile =================================================================== --- devel/rubygem-deface/Makefile +++ devel/rubygem-deface/Makefile @@ -17,7 +17,6 @@ rubygem-rainbow>=2.1.0:devel/rubygem-rainbow USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-default_value_for/Makefile =================================================================== --- devel/rubygem-default_value_for/Makefile +++ devel/rubygem-default_value_for/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-activerecord60>=3.2.0<7.0:databases/rubygem-activerecord60 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-delayed_job/Makefile =================================================================== --- devel/rubygem-delayed_job/Makefile +++ devel/rubygem-delayed_job/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-activesupport4>=3.0<8.0:devel/rubygem-activesupport4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-delayer-deferred/Makefile =================================================================== --- devel/rubygem-delayer-deferred/Makefile +++ devel/rubygem-delayer-deferred/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-delayer>=1.0.0:devel/rubygem-delayer USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-delayer/Makefile =================================================================== --- devel/rubygem-delayer/Makefile +++ devel/rubygem-delayer/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-delegate/Makefile =================================================================== --- devel/rubygem-delegate/Makefile +++ devel/rubygem-delegate/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-deprecated/Makefile =================================================================== --- devel/rubygem-deprecated/Makefile +++ devel/rubygem-deprecated/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-deprecated2/Makefile =================================================================== --- devel/rubygem-deprecated2/Makefile +++ devel/rubygem-deprecated2/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PORTSCOUT= limit:^2\.[0-9]* Index: devel/rubygem-descendants_tracker/Makefile =================================================================== --- devel/rubygem-descendants_tracker/Makefile +++ devel/rubygem-descendants_tracker/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-thread_safe>=0.3.1:devel/rubygem-thread_safe NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-device_detector/Makefile =================================================================== --- devel/rubygem-device_detector/Makefile +++ devel/rubygem-device_detector/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-devise-rails5/Makefile =================================================================== --- devel/rubygem-devise-rails5/Makefile +++ devel/rubygem-devise-rails5/Makefile @@ -18,7 +18,6 @@ rubygem-warden>=1.2.3<1.3:devel/rubygem-warden USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-devise-rails52/Makefile =================================================================== --- devel/rubygem-devise-rails52/Makefile +++ devel/rubygem-devise-rails52/Makefile @@ -18,7 +18,6 @@ rubygem-warden>=1.2.3<1.3:devel/rubygem-warden USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-devise-rails60/Makefile =================================================================== --- devel/rubygem-devise-rails60/Makefile +++ devel/rubygem-devise-rails60/Makefile @@ -18,7 +18,6 @@ rubygem-warden>=1.2.3<1.3:devel/rubygem-warden USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-devise-rails61/Makefile =================================================================== --- devel/rubygem-devise-rails61/Makefile +++ devel/rubygem-devise-rails61/Makefile @@ -18,7 +18,6 @@ rubygem-warden>=1.2.3<1.3:devel/rubygem-warden USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-devise-rails70/Makefile =================================================================== --- devel/rubygem-devise-rails70/Makefile +++ devel/rubygem-devise-rails70/Makefile @@ -18,7 +18,6 @@ rubygem-warden>=1.2.3<1.3:devel/rubygem-warden USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-devise/Makefile =================================================================== --- devel/rubygem-devise/Makefile +++ devel/rubygem-devise/Makefile @@ -17,7 +17,6 @@ rubygem-warden>=1.2.3<1.3:devel/rubygem-warden USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-did_you_mean/Makefile =================================================================== --- devel/rubygem-did_you_mean/Makefile +++ devel/rubygem-did_you_mean/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-dig_rb/Makefile =================================================================== --- devel/rubygem-dig_rb/Makefile +++ devel/rubygem-dig_rb/Makefile @@ -9,7 +9,6 @@ LICENSE= MIT -USE_RUBY= yes USES= gem .include Index: devel/rubygem-directory_watcher/Makefile =================================================================== --- devel/rubygem-directory_watcher/Makefile +++ devel/rubygem-directory_watcher/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-ditz/Makefile =================================================================== --- devel/rubygem-ditz/Makefile +++ devel/rubygem-ditz/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-trollop>=1.9:devel/rubygem-trollop USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-diva/Makefile =================================================================== --- devel/rubygem-diva/Makefile +++ devel/rubygem-diva/Makefile @@ -13,6 +13,5 @@ RUN_DEPENDS= rubygem-addressable>=2.5.2:www/rubygem-addressable USES= gem -USE_RUBY= yes .include Index: devel/rubygem-docile/Makefile =================================================================== --- devel/rubygem-docile/Makefile +++ devel/rubygem-docile/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-docopt/Makefile =================================================================== --- devel/rubygem-docopt/Makefile +++ devel/rubygem-docopt/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem python:env shebangfix -USE_RUBY= yes SHEBANG_FILES= test/language_agnostic_tester.py Index: devel/rubygem-drb/Makefile =================================================================== --- devel/rubygem-drb/Makefile +++ devel/rubygem-drb/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-ruby2_keywords>=0:devel/rubygem-ruby2_keywords USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-dry-configurable/Makefile =================================================================== --- devel/rubygem-dry-configurable/Makefile +++ devel/rubygem-dry-configurable/Makefile @@ -14,7 +14,6 @@ rubygem-zeitwerk>=2.6<3:devel/rubygem-zeitwerk USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-dry-container/Makefile =================================================================== --- devel/rubygem-dry-container/Makefile +++ devel/rubygem-dry-container/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-dry-core/Makefile =================================================================== --- devel/rubygem-dry-core/Makefile +++ devel/rubygem-dry-core/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-dry-equalizer/Makefile =================================================================== --- devel/rubygem-dry-equalizer/Makefile +++ devel/rubygem-dry-equalizer/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-dry-inflector/Makefile =================================================================== --- devel/rubygem-dry-inflector/Makefile +++ devel/rubygem-dry-inflector/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-dry-logic/Makefile =================================================================== --- devel/rubygem-dry-logic/Makefile +++ devel/rubygem-dry-logic/Makefile @@ -14,7 +14,6 @@ rubygem-dry-core>=0.5<1:devel/rubygem-dry-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-dry-types/Makefile =================================================================== --- devel/rubygem-dry-types/Makefile +++ devel/rubygem-dry-types/Makefile @@ -17,7 +17,6 @@ rubygem-dry-logic>=1.0.2<2:devel/rubygem-dry-logic USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-drydock/Makefile =================================================================== --- devel/rubygem-drydock/Makefile +++ devel/rubygem-drydock/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-dynflow/Makefile =================================================================== --- devel/rubygem-dynflow/Makefile +++ devel/rubygem-dynflow/Makefile @@ -19,7 +19,6 @@ rubygem-sequel>=4.0.0:devel/rubygem-sequel USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-e2mmap/Makefile =================================================================== --- devel/rubygem-e2mmap/Makefile +++ devel/rubygem-e2mmap/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-ecma-re-validator/Makefile =================================================================== --- devel/rubygem-ecma-re-validator/Makefile +++ devel/rubygem-ecma-re-validator/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-regexp_parser>=2.0<3:textproc/rubygem-regexp_parser USES= gem shebangfix -USE_RUBY= yes SHEBANG_FILES= script/bootstrap Index: devel/rubygem-edavis10-object_daddy/Makefile =================================================================== --- devel/rubygem-edavis10-object_daddy/Makefile +++ devel/rubygem-edavis10-object_daddy/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-elif/Makefile =================================================================== --- devel/rubygem-elif/Makefile +++ devel/rubygem-elif/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-emoji_regex/Makefile =================================================================== --- devel/rubygem-emoji_regex/Makefile +++ devel/rubygem-emoji_regex/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-english/Makefile =================================================================== --- devel/rubygem-english/Makefile +++ devel/rubygem-english/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-enumerize/Makefile =================================================================== --- devel/rubygem-enumerize/Makefile +++ devel/rubygem-enumerize/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-activesupport4>=3.2:devel/rubygem-activesupport4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-equalizer/Makefile =================================================================== --- devel/rubygem-equalizer/Makefile +++ devel/rubygem-equalizer/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-equatable/Makefile =================================================================== --- devel/rubygem-equatable/Makefile +++ devel/rubygem-equatable/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-erb/Makefile =================================================================== --- devel/rubygem-erb/Makefile +++ devel/rubygem-erb/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-cgi>=0:www/rubygem-cgi USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-errand/Makefile =================================================================== --- devel/rubygem-errand/Makefile +++ devel/rubygem-errand/Makefile @@ -15,7 +15,6 @@ rubygem-rrd-ffi>=0.2.13:devel/rubygem-rrd-ffi NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-error_highlight/Makefile =================================================================== --- devel/rubygem-error_highlight/Makefile +++ devel/rubygem-error_highlight/Makefile @@ -15,7 +15,6 @@ BROKEN_RUBY30= yes USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-et-orbi/Makefile =================================================================== --- devel/rubygem-et-orbi/Makefile +++ devel/rubygem-et-orbi/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-tzinfo>=0:devel/rubygem-tzinfo USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-etc/Makefile =================================================================== --- devel/rubygem-etc/Makefile +++ devel/rubygem-etc/Makefile @@ -12,6 +12,5 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include Index: devel/rubygem-event_emitter/Makefile =================================================================== --- devel/rubygem-event_emitter/Makefile +++ devel/rubygem-event_emitter/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-eventmachine/Makefile =================================================================== --- devel/rubygem-eventmachine/Makefile +++ devel/rubygem-eventmachine/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_GPLv2= ${WRKSRC}/GNU LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE -USE_RUBY= yes USES= gem ssl .include Index: devel/rubygem-excon/Makefile =================================================================== --- devel/rubygem-excon/Makefile +++ devel/rubygem-excon/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-execjs/Makefile =================================================================== --- devel/rubygem-execjs/Makefile +++ devel/rubygem-execjs/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem nodejs:run -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-extlib/Makefile =================================================================== --- devel/rubygem-extlib/Makefile +++ devel/rubygem-extlib/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= cpe gem CPE_VENDOR= dan_kubb Index: devel/rubygem-extpp/Makefile =================================================================== --- devel/rubygem-extpp/Makefile +++ devel/rubygem-extpp/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-extras/Makefile =================================================================== --- devel/rubygem-extras/Makefile +++ devel/rubygem-extras/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-forwardable-extended>=2.5<3:devel/rubygem-forwardable-extended USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-facets/Makefile =================================================================== --- devel/rubygem-facets/Makefile +++ devel/rubygem-facets/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-faker/Makefile =================================================================== --- devel/rubygem-faker/Makefile +++ devel/rubygem-faker/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-i18n>=1.8.11,2<2,2:devel/rubygem-i18n USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-faraday-cookie_jar/Makefile =================================================================== --- devel/rubygem-faraday-cookie_jar/Makefile +++ devel/rubygem-faraday-cookie_jar/Makefile @@ -15,7 +15,6 @@ rubygem-http-cookie>=1.0.0<1.1:www/rubygem-http-cookie USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-faraday-excon/Makefile =================================================================== --- devel/rubygem-faraday-excon/Makefile +++ devel/rubygem-faraday-excon/Makefile @@ -14,7 +14,6 @@ rubygem-faraday>=2.0<3:www/rubygem-faraday USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-faraday-excon1/Makefile =================================================================== --- devel/rubygem-faraday-excon1/Makefile +++ devel/rubygem-faraday-excon1/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-faraday_middleware-aws-sigv4/Makefile =================================================================== --- devel/rubygem-faraday_middleware-aws-sigv4/Makefile +++ devel/rubygem-faraday_middleware-aws-sigv4/Makefile @@ -14,7 +14,6 @@ rubygem-faraday>=2.0<3:www/rubygem-faraday USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-faraday_middleware-aws-sigv403/Makefile =================================================================== --- devel/rubygem-faraday_middleware-aws-sigv403/Makefile +++ devel/rubygem-faraday_middleware-aws-sigv403/Makefile @@ -16,7 +16,6 @@ rubygem-faraday1>=0.15:www/rubygem-faraday1 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-faraday_middleware-multi_json/Makefile =================================================================== --- devel/rubygem-faraday_middleware-multi_json/Makefile +++ devel/rubygem-faraday_middleware-multi_json/Makefile @@ -15,7 +15,6 @@ rubygem-multi_json>0:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-fast-stemmer/Makefile =================================================================== --- devel/rubygem-fast-stemmer/Makefile +++ devel/rubygem-fast-stemmer/Makefile @@ -9,7 +9,6 @@ LICENSE= MIT -USE_RUBY= yes USES= gem .include Index: devel/rubygem-fast_blank/Makefile =================================================================== --- devel/rubygem-fast_blank/Makefile +++ devel/rubygem-fast_blank/Makefile @@ -11,6 +11,5 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes .include Index: devel/rubygem-fast_gettext/Makefile =================================================================== --- devel/rubygem-fast_gettext/Makefile +++ devel/rubygem-fast_gettext/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-fast_gettext1/Makefile =================================================================== --- devel/rubygem-fast_gettext1/Makefile +++ devel/rubygem-fast_gettext1/Makefile @@ -11,7 +11,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-fast_stack/Makefile =================================================================== --- devel/rubygem-fast_stack/Makefile +++ devel/rubygem-fast_stack/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE -USE_RUBY= yes USES= gem .include Index: devel/rubygem-fast_xor/Makefile =================================================================== --- devel/rubygem-fast_xor/Makefile +++ devel/rubygem-fast_xor/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rake>=0:devel/rubygem-rake \ rubygem-rake-compiler>=0:devel/rubygem-rake-compiler -USE_RUBY= yes USES= gem .include Index: devel/rubygem-fastercsv/Makefile =================================================================== --- devel/rubygem-fastercsv/Makefile +++ devel/rubygem-fastercsv/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-fastri/Makefile =================================================================== --- devel/rubygem-fastri/Makefile +++ devel/rubygem-fastri/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/fastri-server bin/fri bin/qri bin/ri-emacs Index: devel/rubygem-fattr/Makefile =================================================================== --- devel/rubygem-fattr/Makefile +++ devel/rubygem-fattr/Makefile @@ -11,7 +11,6 @@ LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-fcntl/Makefile =================================================================== --- devel/rubygem-fcntl/Makefile +++ devel/rubygem-fcntl/Makefile @@ -11,6 +11,5 @@ LICENSE_COMB= dual USES= gem -USE_RUBY= yes .include Index: devel/rubygem-ffi-compiler/Makefile =================================================================== --- devel/rubygem-ffi-compiler/Makefile +++ devel/rubygem-ffi-compiler/Makefile @@ -14,7 +14,6 @@ rubygem-rake>=0:devel/rubygem-rake USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-ffi-libarchive/Makefile =================================================================== --- devel/rubygem-ffi-libarchive/Makefile +++ devel/rubygem-ffi-libarchive/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ffi>=1.0<2:devel/rubygem-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-ffi-win32-extensions/Makefile =================================================================== --- devel/rubygem-ffi-win32-extensions/Makefile +++ devel/rubygem-ffi-win32-extensions/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ffi>=0:devel/rubygem-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-ffi-yajl/Makefile =================================================================== --- devel/rubygem-ffi-yajl/Makefile +++ devel/rubygem-ffi-yajl/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= yajl>=2.0.0:devel/yajl \ rubygem-libyajl2>=1.2:devel/rubygem-libyajl2 -USE_RUBY= yes USES= gem PLIST_FILES= bin/ffi-yajl-bench Index: devel/rubygem-ffi/Makefile =================================================================== --- devel/rubygem-ffi/Makefile +++ devel/rubygem-ffi/Makefile @@ -14,6 +14,5 @@ LIB_DEPENDS= libffi.so:devel/libffi USES= gem -USE_RUBY= yes .include Index: devel/rubygem-fiber-local/Makefile =================================================================== --- devel/rubygem-fiber-local/Makefile +++ devel/rubygem-fiber-local/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-fiddle/Makefile =================================================================== --- devel/rubygem-fiddle/Makefile +++ devel/rubygem-fiddle/Makefile @@ -15,6 +15,5 @@ LIB_DEPENDS= libffi.so:devel/libffi USES= gem -USE_RUBY= yes .include Index: devel/rubygem-file-tail/Makefile =================================================================== --- devel/rubygem-file-tail/Makefile +++ devel/rubygem-file-tail/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-tins>=1.0<2:devel/rubygem-tins USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-filesize/Makefile =================================================================== --- devel/rubygem-filesize/Makefile +++ devel/rubygem-filesize/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-fileutils/Makefile =================================================================== --- devel/rubygem-fileutils/Makefile +++ devel/rubygem-fileutils/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-find/Makefile =================================================================== --- devel/rubygem-find/Makefile +++ devel/rubygem-find/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-flexmock/Makefile =================================================================== --- devel/rubygem-flexmock/Makefile +++ devel/rubygem-flexmock/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-flipper-active_support_cache_store-rails61/Makefile =================================================================== --- devel/rubygem-flipper-active_support_cache_store-rails61/Makefile +++ devel/rubygem-flipper-active_support_cache_store-rails61/Makefile @@ -14,7 +14,6 @@ rubygem-flipper>=${PORTVERSION}<0.26:devel/rubygem-flipper USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-flipper-active_support_cache_store/Makefile =================================================================== --- devel/rubygem-flipper-active_support_cache_store/Makefile +++ devel/rubygem-flipper-active_support_cache_store/Makefile @@ -13,7 +13,6 @@ rubygem-flipper>=${PORTVERSION}<0.26:devel/rubygem-flipper USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-flipper-ui/Makefile =================================================================== --- devel/rubygem-flipper-ui/Makefile +++ devel/rubygem-flipper-ui/Makefile @@ -17,7 +17,6 @@ rubygem-sanitize>=0<7:textproc/rubygem-sanitize USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-flipper/Makefile =================================================================== --- devel/rubygem-flipper/Makefile +++ devel/rubygem-flipper/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-fluent-logger/Makefile =================================================================== --- devel/rubygem-fluent-logger/Makefile +++ devel/rubygem-fluent-logger/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-msgpack>=1.0.0<2:devel/rubygem-msgpack USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-fog-core/Makefile =================================================================== --- devel/rubygem-fog-core/Makefile +++ devel/rubygem-fog-core/Makefile @@ -16,7 +16,6 @@ rubygem-mime-types>=0:misc/rubygem-mime-types USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-fog-core1/Makefile =================================================================== --- devel/rubygem-fog-core1/Makefile +++ devel/rubygem-fog-core1/Makefile @@ -17,7 +17,6 @@ rubygem-formatador>=0.2<2.0:devel/rubygem-formatador USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-fog-core210/Makefile =================================================================== --- devel/rubygem-fog-core210/Makefile +++ devel/rubygem-fog-core210/Makefile @@ -18,7 +18,6 @@ rubygem-mime-types>=0:misc/rubygem-mime-types USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-fog-core220/Makefile =================================================================== --- devel/rubygem-fog-core220/Makefile +++ devel/rubygem-fog-core220/Makefile @@ -17,7 +17,6 @@ rubygem-mime-types>=0:misc/rubygem-mime-types USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-fog-json/Makefile =================================================================== --- devel/rubygem-fog-json/Makefile +++ devel/rubygem-fog-json/Makefile @@ -14,7 +14,6 @@ rubygem-multi_json>=1.10<2:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-fog/Makefile =================================================================== --- devel/rubygem-fog/Makefile +++ devel/rubygem-fog/Makefile @@ -46,7 +46,6 @@ rubygem-json>=2.3<3:devel/rubygem-json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-font-awesome-rails-rails5/Makefile =================================================================== --- devel/rubygem-font-awesome-rails-rails5/Makefile +++ devel/rubygem-font-awesome-rails-rails5/Makefile @@ -15,7 +15,6 @@ RUN_DEPENDS= rubygem-railties5>=3.2<8.0:www/rubygem-railties5 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-font-awesome-rails-rails50/Makefile =================================================================== --- devel/rubygem-font-awesome-rails-rails50/Makefile +++ devel/rubygem-font-awesome-rails-rails50/Makefile @@ -15,7 +15,6 @@ RUN_DEPENDS= rubygem-railties50>=3.2:www/rubygem-railties50 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-font-awesome-rails-rails52/Makefile =================================================================== --- devel/rubygem-font-awesome-rails-rails52/Makefile +++ devel/rubygem-font-awesome-rails-rails52/Makefile @@ -15,7 +15,6 @@ RUN_DEPENDS= rubygem-railties52>=3.2<8.0:www/rubygem-railties52 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-font-awesome-rails-rails60/Makefile =================================================================== --- devel/rubygem-font-awesome-rails-rails60/Makefile +++ devel/rubygem-font-awesome-rails-rails60/Makefile @@ -15,7 +15,6 @@ RUN_DEPENDS= rubygem-railties60>=3.2<8.0:www/rubygem-railties60 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-font-awesome-rails/Makefile =================================================================== --- devel/rubygem-font-awesome-rails/Makefile +++ devel/rubygem-font-awesome-rails/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-railties4>=3.2<8.0:www/rubygem-railties4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-foreigner/Makefile =================================================================== --- devel/rubygem-foreigner/Makefile +++ devel/rubygem-foreigner/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-activerecord4>=3.0.0:databases/rubygem-activerecord4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-foreman/Makefile =================================================================== --- devel/rubygem-foreman/Makefile +++ devel/rubygem-foreman/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-formatador/Makefile =================================================================== --- devel/rubygem-formatador/Makefile +++ devel/rubygem-formatador/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-forwardable-extended/Makefile =================================================================== --- devel/rubygem-forwardable-extended/Makefile +++ devel/rubygem-forwardable-extended/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-forwardable/Makefile =================================================================== --- devel/rubygem-forwardable/Makefile +++ devel/rubygem-forwardable/Makefile @@ -11,7 +11,6 @@ LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-fugit/Makefile =================================================================== --- devel/rubygem-fugit/Makefile +++ devel/rubygem-fugit/Makefile @@ -14,7 +14,6 @@ rubygem-raabro>=1.4<2:textproc/rubygem-raabro USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-fuzzy_match/Makefile =================================================================== --- devel/rubygem-fuzzy_match/Makefile +++ devel/rubygem-fuzzy_match/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gapic-common/Makefile =================================================================== --- devel/rubygem-gapic-common/Makefile +++ devel/rubygem-gapic-common/Makefile @@ -18,7 +18,6 @@ rubygem-grpc>=1.36<2:net/rubygem-grpc USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gdata/Makefile =================================================================== --- devel/rubygem-gdata/Makefile +++ devel/rubygem-gdata/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-gem-compare/Makefile =================================================================== --- devel/rubygem-gem-compare/Makefile +++ devel/rubygem-gem-compare/Makefile @@ -18,7 +18,6 @@ rubygem-rainbow>=0:devel/rubygem-rainbow USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gem_plugin/Makefile =================================================================== --- devel/rubygem-gem_plugin/Makefile +++ devel/rubygem-gem_plugin/Makefile @@ -14,7 +14,6 @@ LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gemcutter/Makefile =================================================================== --- devel/rubygem-gemcutter/Makefile +++ devel/rubygem-gemcutter/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-gemdiff/Makefile =================================================================== --- devel/rubygem-gemdiff/Makefile +++ devel/rubygem-gemdiff/Makefile @@ -15,7 +15,6 @@ rubygem-thor>=1.0<2:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gemnasium-parser/Makefile =================================================================== --- devel/rubygem-gemnasium-parser/Makefile +++ devel/rubygem-gemnasium-parser/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gems/Makefile =================================================================== --- devel/rubygem-gems/Makefile +++ devel/rubygem-gems/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-generator/Makefile =================================================================== --- devel/rubygem-generator/Makefile +++ devel/rubygem-generator/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-generator_spec-rails4/Makefile =================================================================== --- devel/rubygem-generator_spec-rails4/Makefile +++ devel/rubygem-generator_spec-rails4/Makefile @@ -15,7 +15,6 @@ rubygem-railties4>=3.0.0:www/rubygem-railties4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-generator_spec-rails5/Makefile =================================================================== --- devel/rubygem-generator_spec-rails5/Makefile +++ devel/rubygem-generator_spec-rails5/Makefile @@ -15,7 +15,6 @@ rubygem-railties5>=3.0.0:www/rubygem-railties5 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-georuby/Makefile =================================================================== --- devel/rubygem-georuby/Makefile +++ devel/rubygem-georuby/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-get_process_mem/Makefile =================================================================== --- devel/rubygem-get_process_mem/Makefile +++ devel/rubygem-get_process_mem/Makefile @@ -11,7 +11,6 @@ RUN_DEPENDS= rubygem-ffi>=1.0<2:devel/rubygem-ffi -USE_RUBY= yes USES= gem NO_ARCH= yes Index: devel/rubygem-getopt/Makefile =================================================================== --- devel/rubygem-getopt/Makefile +++ devel/rubygem-getopt/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-getoptlong/Makefile =================================================================== --- devel/rubygem-getoptlong/Makefile +++ devel/rubygem-getoptlong/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gettext-setup/Makefile =================================================================== --- devel/rubygem-gettext-setup/Makefile +++ devel/rubygem-gettext-setup/Makefile @@ -15,7 +15,6 @@ rubygem-locale>=0:devel/rubygem-locale USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gettext/Makefile =================================================================== --- devel/rubygem-gettext/Makefile +++ devel/rubygem-gettext/Makefile @@ -18,7 +18,6 @@ rubygem-text>=1.3.0:textproc/rubygem-text USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gettext_i18n_rails/Makefile =================================================================== --- devel/rubygem-gettext_i18n_rails/Makefile +++ devel/rubygem-gettext_i18n_rails/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-fast_gettext>=0.9.0:devel/rubygem-fast_gettext USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gettext_i18n_rails_js-rails5/Makefile =================================================================== --- devel/rubygem-gettext_i18n_rails_js-rails5/Makefile +++ devel/rubygem-gettext_i18n_rails_js-rails5/Makefile @@ -17,7 +17,6 @@ rubygem-rails5>=3.2.0:www/rubygem-rails5 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gettext_i18n_rails_js-rails50/Makefile =================================================================== --- devel/rubygem-gettext_i18n_rails_js-rails50/Makefile +++ devel/rubygem-gettext_i18n_rails_js-rails50/Makefile @@ -17,7 +17,6 @@ rubygem-rails50>=5.0.7:www/rubygem-rails50 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gettext_i18n_rails_js-rails52/Makefile =================================================================== --- devel/rubygem-gettext_i18n_rails_js-rails52/Makefile +++ devel/rubygem-gettext_i18n_rails_js-rails52/Makefile @@ -17,7 +17,6 @@ rubygem-rails52>=3.2.0:www/rubygem-rails52 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gettext_i18n_rails_js-rails61/Makefile =================================================================== --- devel/rubygem-gettext_i18n_rails_js-rails61/Makefile +++ devel/rubygem-gettext_i18n_rails_js-rails61/Makefile @@ -17,7 +17,6 @@ rubygem-rails61>=3.2.0:www/rubygem-rails61 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gh/Makefile =================================================================== --- devel/rubygem-gh/Makefile +++ devel/rubygem-gh/Makefile @@ -20,7 +20,6 @@ rubygem-net-http-pipeline>=0:www/rubygem-net-http-pipeline USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gibbler/Makefile =================================================================== --- devel/rubygem-gibbler/Makefile +++ devel/rubygem-gibbler/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gio2/Makefile =================================================================== --- devel/rubygem-gio2/Makefile +++ devel/rubygem-gio2/Makefile @@ -15,6 +15,5 @@ USES= gem gnome USE_GNOME= glib20 -USE_RUBY= yes .include Index: devel/rubygem-git-version-bump/Makefile =================================================================== --- devel/rubygem-git-version-bump/Makefile +++ devel/rubygem-git-version-bump/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENCE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-git/Makefile =================================================================== --- devel/rubygem-git/Makefile +++ devel/rubygem-git/Makefile @@ -15,7 +15,6 @@ rubygem-rchardet>=1.8<2:textproc/rubygem-rchardet USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-github_api/Makefile =================================================================== --- devel/rubygem-github_api/Makefile +++ devel/rubygem-github_api/Makefile @@ -18,7 +18,6 @@ rubygem-oauth21>=1.0<2:net/rubygem-oauth21 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gitlab-chronic/Makefile =================================================================== --- devel/rubygem-gitlab-chronic/Makefile +++ devel/rubygem-gitlab-chronic/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-numerizer>=0.2<1.0:devel/rubygem-numerizer USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gitlab-dangerfiles/Makefile =================================================================== --- devel/rubygem-gitlab-dangerfiles/Makefile +++ devel/rubygem-gitlab-dangerfiles/Makefile @@ -15,7 +15,6 @@ rubygem-rake>=0:devel/rubygem-rake USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gitlab-experiment/Makefile =================================================================== --- devel/rubygem-gitlab-experiment/Makefile +++ devel/rubygem-gitlab-experiment/Makefile @@ -14,7 +14,6 @@ rubygem-request_store>=1.0:devel/rubygem-request_store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gitlab-labkit/Makefile =================================================================== --- devel/rubygem-gitlab-labkit/Makefile +++ devel/rubygem-gitlab-labkit/Makefile @@ -19,7 +19,6 @@ rubygem-redis4>3.0.0<5.0.0:databases/rubygem-redis4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gitlab-license/Makefile =================================================================== --- devel/rubygem-gitlab-license/Makefile +++ devel/rubygem-gitlab-license/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= bash>0:shells/bash USES= gem shebangfix -USE_RUBY= yes SHEBANG_FILES= bin/setup NO_ARCH= yes Index: devel/rubygem-gitlab-license_finder/Makefile =================================================================== --- devel/rubygem-gitlab-license_finder/Makefile +++ devel/rubygem-gitlab-license_finder/Makefile @@ -18,7 +18,6 @@ rubygem-xml-simple>=1.1.5<1.2:textproc/rubygem-xml-simple USES= gem python:run shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gitlab-pygments.rb/Makefile =================================================================== --- devel/rubygem-gitlab-pygments.rb/Makefile +++ devel/rubygem-gitlab-pygments.rb/Makefile @@ -15,7 +15,6 @@ rubygem-yajl-ruby>=1.1.0:devel/rubygem-yajl-ruby USES= gem python:env shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gitlab-sidekiq-fetcher/Makefile =================================================================== --- devel/rubygem-gitlab-sidekiq-fetcher/Makefile +++ devel/rubygem-gitlab-sidekiq-fetcher/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-sidekiq64>=6.1<7:devel/rubygem-sidekiq64 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gitlab/Makefile =================================================================== --- devel/rubygem-gitlab/Makefile +++ devel/rubygem-gitlab/Makefile @@ -14,7 +14,6 @@ rubygem-terminal-table>=1.5.1:textproc/rubygem-terminal-table USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gitlab_chronic_duration/Makefile =================================================================== --- devel/rubygem-gitlab_chronic_duration/Makefile +++ devel/rubygem-gitlab_chronic_duration/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-numerizer>=0.2<1:devel/rubygem-numerizer USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-gitlab_git/Makefile =================================================================== --- devel/rubygem-gitlab_git/Makefile +++ devel/rubygem-gitlab_git/Makefile @@ -17,7 +17,6 @@ rubygem-rugged>=0.24.0:devel/rubygem-rugged NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-gitlab_meta/Makefile =================================================================== --- devel/rubygem-gitlab_meta/Makefile +++ devel/rubygem-gitlab_meta/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-glib2/Makefile =================================================================== --- devel/rubygem-glib2/Makefile +++ devel/rubygem-glib2/Makefile @@ -15,6 +15,5 @@ USES= gem gnome USE_GNOME= glib20 -USE_RUBY= yes .include Index: devel/rubygem-gobject-introspection/Makefile =================================================================== --- devel/rubygem-gobject-introspection/Makefile +++ devel/rubygem-gobject-introspection/Makefile @@ -16,6 +16,5 @@ USES= gem gnome USE_GNOME= introspection -USE_RUBY= yes .include Index: devel/rubygem-google-api-client/Makefile =================================================================== --- devel/rubygem-google-api-client/Makefile +++ devel/rubygem-google-api-client/Makefile @@ -14,7 +14,6 @@ rubygem-google-apis-generator>=0.1<1:devel/rubygem-google-apis-generator USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-google-apis-compute_v1/Makefile =================================================================== --- devel/rubygem-google-apis-compute_v1/Makefile +++ devel/rubygem-google-apis-compute_v1/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-google-apis-core>=0.9.0<2.0:devel/rubygem-google-apis-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-google-apis-core/Makefile =================================================================== --- devel/rubygem-google-apis-core/Makefile +++ devel/rubygem-google-apis-core/Makefile @@ -20,7 +20,6 @@ rubygem-webrick>=0:www/rubygem-webrick USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-google-apis-discovery_v1/Makefile =================================================================== --- devel/rubygem-google-apis-discovery_v1/Makefile +++ devel/rubygem-google-apis-discovery_v1/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-google-apis-core>=0.9.0<2.0:devel/rubygem-google-apis-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-google-apis-generator/Makefile =================================================================== --- devel/rubygem-google-apis-generator/Makefile +++ devel/rubygem-google-apis-generator/Makefile @@ -17,7 +17,6 @@ rubygem-thor>=0.20<2:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-google-apis-iamcredentials_v1/Makefile =================================================================== --- devel/rubygem-google-apis-iamcredentials_v1/Makefile +++ devel/rubygem-google-apis-iamcredentials_v1/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-google-apis-core>=0.9.0<2.0:devel/rubygem-google-apis-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-google-apis-monitoring_v3/Makefile =================================================================== --- devel/rubygem-google-apis-monitoring_v3/Makefile +++ devel/rubygem-google-apis-monitoring_v3/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-google-apis-core>=0.9.0<2.0:devel/rubygem-google-apis-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-google-apis-pubsub_v1/Makefile =================================================================== --- devel/rubygem-google-apis-pubsub_v1/Makefile +++ devel/rubygem-google-apis-pubsub_v1/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-google-apis-core>=0.9.0<2.0:devel/rubygem-google-apis-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-google-apis-sqladmin_v1beta4/Makefile =================================================================== --- devel/rubygem-google-apis-sqladmin_v1beta4/Makefile +++ devel/rubygem-google-apis-sqladmin_v1beta4/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-google-apis-core>=0.9.0<2.0:devel/rubygem-google-apis-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-google-apis-storage_v1/Makefile =================================================================== --- devel/rubygem-google-apis-storage_v1/Makefile +++ devel/rubygem-google-apis-storage_v1/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-google-apis-core>=0.9.0<2.0:devel/rubygem-google-apis-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-google-gax/Makefile =================================================================== --- devel/rubygem-google-gax/Makefile +++ devel/rubygem-google-gax/Makefile @@ -18,7 +18,6 @@ rubygem-rly>=0.2.3<0.3:textproc/rubygem-rly USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-google-protobuf/Makefile =================================================================== --- devel/rubygem-google-protobuf/Makefile +++ devel/rubygem-google-protobuf/Makefile @@ -10,7 +10,6 @@ LICENSE= BSD3CLAUSE USES= gem shebangfix -USE_RUBY= yes SHEBANG_GLOB= *.rb Index: devel/rubygem-google-protobuf319/Makefile =================================================================== --- devel/rubygem-google-protobuf319/Makefile +++ devel/rubygem-google-protobuf319/Makefile @@ -11,7 +11,6 @@ LICENSE= BSD3CLAUSE USES= gem shebangfix -USE_RUBY= yes PORTSCOUT= limit:^3\.19\. Index: devel/rubygem-googleapis-common-protos-types/Makefile =================================================================== --- devel/rubygem-googleapis-common-protos-types/Makefile +++ devel/rubygem-googleapis-common-protos-types/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-google-protobuf>=3.14<4:devel/rubygem-google-protobuf USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-googleapis-common-protos/Makefile =================================================================== --- devel/rubygem-googleapis-common-protos/Makefile +++ devel/rubygem-googleapis-common-protos/Makefile @@ -14,7 +14,6 @@ rubygem-grpc>=1.27<2:net/rubygem-grpc USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-graf/Makefile =================================================================== --- devel/rubygem-graf/Makefile +++ devel/rubygem-graf/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/graf Index: devel/rubygem-grape-entity/Makefile =================================================================== --- devel/rubygem-grape-entity/Makefile +++ devel/rubygem-grape-entity/Makefile @@ -15,7 +15,6 @@ rubygem-multi_json>=1.3.2:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-grape-path-helpers/Makefile =================================================================== --- devel/rubygem-grape-path-helpers/Makefile +++ devel/rubygem-grape-path-helpers/Makefile @@ -17,7 +17,6 @@ rubygem-ruby2_keywords>=0.0.2<0.1:devel/rubygem-ruby2_keywords USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-grape-route-helpers/Makefile =================================================================== --- devel/rubygem-grape-route-helpers/Makefile +++ devel/rubygem-grape-route-helpers/Makefile @@ -15,7 +15,6 @@ rubygem-rake>=0:devel/rubygem-rake USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-grape-swagger/Makefile =================================================================== --- devel/rubygem-grape-swagger/Makefile +++ devel/rubygem-grape-swagger/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-grape>=1.3<2:devel/rubygem-grape USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-grape/Makefile =================================================================== --- devel/rubygem-grape/Makefile +++ devel/rubygem-grape/Makefile @@ -19,7 +19,6 @@ rubygem-virtus>=1.0.0:devel/rubygem-virtus USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-grape15/Makefile =================================================================== --- devel/rubygem-grape15/Makefile +++ devel/rubygem-grape15/Makefile @@ -20,7 +20,6 @@ rubygem-virtus>=1.0.0:devel/rubygem-virtus USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-grape_logging/Makefile =================================================================== --- devel/rubygem-grape_logging/Makefile +++ devel/rubygem-grape_logging/Makefile @@ -14,7 +14,6 @@ rubygem-rack>=0:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-graphiql-rails/Makefile =================================================================== --- devel/rubygem-graphiql-rails/Makefile +++ devel/rubygem-graphiql-rails/Makefile @@ -13,7 +13,6 @@ rubygem-sprockets-rails-rails61>=0:devel/rubygem-sprockets-rails-rails61 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-graphlient/Makefile =================================================================== --- devel/rubygem-graphlient/Makefile +++ devel/rubygem-graphlient/Makefile @@ -15,7 +15,6 @@ rubygem-graphql-client>=0:devel/rubygem-graphql-client USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-graphql-client/Makefile =================================================================== --- devel/rubygem-graphql-client/Makefile +++ devel/rubygem-graphql-client/Makefile @@ -14,7 +14,6 @@ rubygem-graphql>=1.8<2:devel/rubygem-graphql USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-graphql-docs/Makefile =================================================================== --- devel/rubygem-graphql-docs/Makefile +++ devel/rubygem-graphql-docs/Makefile @@ -19,7 +19,6 @@ rubygem-sass>=3.4<4.0:textproc/rubygem-sass USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-graphql/Makefile =================================================================== --- devel/rubygem-graphql/Makefile +++ devel/rubygem-graphql/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-grpc-google-iam-v1/Makefile =================================================================== --- devel/rubygem-grpc-google-iam-v1/Makefile +++ devel/rubygem-grpc-google-iam-v1/Makefile @@ -14,7 +14,6 @@ rubygem-grpc>=1.27<2:net/rubygem-grpc USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-guess_html_encoding/Makefile =================================================================== --- devel/rubygem-guess_html_encoding/Makefile +++ devel/rubygem-guess_html_encoding/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-gyoku/Makefile =================================================================== --- devel/rubygem-gyoku/Makefile +++ devel/rubygem-gyoku/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-hamster/Makefile =================================================================== --- devel/rubygem-hamster/Makefile +++ devel/rubygem-hamster/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-hana/Makefile =================================================================== --- devel/rubygem-hana/Makefile +++ devel/rubygem-hana/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-hashdiff/Makefile =================================================================== --- devel/rubygem-hashdiff/Makefile +++ devel/rubygem-hashdiff/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-hashery/Makefile =================================================================== --- devel/rubygem-hashery/Makefile +++ devel/rubygem-hashery/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-hashie-forbidden_attributes/Makefile =================================================================== --- devel/rubygem-hashie-forbidden_attributes/Makefile +++ devel/rubygem-hashie-forbidden_attributes/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-hashie>=3.0:devel/rubygem-hashie USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-hashie/Makefile =================================================================== --- devel/rubygem-hashie/Makefile +++ devel/rubygem-hashie/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-hashie4/Makefile =================================================================== --- devel/rubygem-hashie4/Makefile +++ devel/rubygem-hashie4/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-health_check/Makefile =================================================================== --- devel/rubygem-health_check/Makefile +++ devel/rubygem-health_check/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-railties61>=5.0:www/rubygem-railties61 USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-heapy/Makefile =================================================================== --- devel/rubygem-heapy/Makefile +++ devel/rubygem-heapy/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-highline/Makefile =================================================================== --- devel/rubygem-highline/Makefile +++ devel/rubygem-highline/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-highline1/Makefile =================================================================== --- devel/rubygem-highline1/Makefile +++ devel/rubygem-highline1/Makefile @@ -13,7 +13,6 @@ LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-hike/Makefile =================================================================== --- devel/rubygem-hike/Makefile +++ devel/rubygem-hike/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-hike1/Makefile =================================================================== --- devel/rubygem-hike1/Makefile +++ devel/rubygem-hike1/Makefile @@ -15,7 +15,6 @@ PORTSCOUT= limit:^1.* NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-hitimes/Makefile =================================================================== --- devel/rubygem-hitimes/Makefile +++ devel/rubygem-hitimes/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-hocon/Makefile =================================================================== --- devel/rubygem-hocon/Makefile +++ devel/rubygem-hocon/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-hoe/Makefile =================================================================== --- devel/rubygem-hoe/Makefile +++ devel/rubygem-hoe/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-rake>=0.8<15.0:devel/rubygem-rake USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-holidays/Makefile =================================================================== --- devel/rubygem-holidays/Makefile +++ devel/rubygem-holidays/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-http_accept_language/Makefile =================================================================== --- devel/rubygem-http_accept_language/Makefile +++ devel/rubygem-http_accept_language/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-i18n/Makefile =================================================================== --- devel/rubygem-i18n/Makefile +++ devel/rubygem-i18n/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-i18n_data/Makefile =================================================================== --- devel/rubygem-i18n_data/Makefile +++ devel/rubygem-i18n_data/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-icalendar/Makefile =================================================================== --- devel/rubygem-icalendar/Makefile +++ devel/rubygem-icalendar/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ice_cube>=0.16<1:devel/rubygem-ice_cube USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-ice_cube/Makefile =================================================================== --- devel/rubygem-ice_cube/Makefile +++ devel/rubygem-ice_cube/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-ice_nine/Makefile =================================================================== --- devel/rubygem-ice_nine/Makefile +++ devel/rubygem-ice_nine/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-inflecto/Makefile =================================================================== --- devel/rubygem-inflecto/Makefile +++ devel/rubygem-inflecto/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-iniparse/Makefile =================================================================== --- devel/rubygem-iniparse/Makefile +++ devel/rubygem-iniparse/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-insist/Makefile =================================================================== --- devel/rubygem-insist/Makefile +++ devel/rubygem-insist/Makefile @@ -9,7 +9,6 @@ LICENSE= APACHE20 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-inspec-core/Makefile =================================================================== --- devel/rubygem-inspec-core/Makefile +++ devel/rubygem-inspec-core/Makefile @@ -34,7 +34,6 @@ rubygem-tty-table>=0.10<1:devel/rubygem-tty-table USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-instance_storage/Makefile =================================================================== --- devel/rubygem-instance_storage/Makefile +++ devel/rubygem-instance_storage/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-interact/Makefile =================================================================== --- devel/rubygem-interact/Makefile +++ devel/rubygem-interact/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-io-console/Makefile =================================================================== --- devel/rubygem-io-console/Makefile +++ devel/rubygem-io-console/Makefile @@ -12,6 +12,5 @@ LICENSE_FILE_BSD2CLAUSE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include Index: devel/rubygem-io-event/Makefile =================================================================== --- devel/rubygem-io-event/Makefile +++ devel/rubygem-io-event/Makefile @@ -12,6 +12,5 @@ BROKEN_RUBY27= yes USES= gem -USE_RUBY= yes .include Index: devel/rubygem-io-like/Makefile =================================================================== --- devel/rubygem-io-like/Makefile +++ devel/rubygem-io-like/Makefile @@ -15,7 +15,7 @@ ${LOCALBASE}/bin/rake:devel/rubygem-rake RUN_DEPENDS= ${RUBYGEMBIN}:devel/ruby-gems -USE_RUBY= yes +USES= ruby NO_ARCH= yes Index: devel/rubygem-io-nonblock/Makefile =================================================================== --- devel/rubygem-io-nonblock/Makefile +++ devel/rubygem-io-nonblock/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_RUBY= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-io-wait/Makefile =================================================================== --- devel/rubygem-io-wait/Makefile +++ devel/rubygem-io-wait/Makefile @@ -12,6 +12,5 @@ LICENSE_FILE_RUBY= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes .include Index: devel/rubygem-io-wait01/Makefile =================================================================== --- devel/rubygem-io-wait01/Makefile +++ devel/rubygem-io-wait01/Makefile @@ -13,7 +13,6 @@ LICENSE_FILE_RUBY= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-iobuffer/Makefile =================================================================== --- devel/rubygem-iobuffer/Makefile +++ devel/rubygem-iobuffer/Makefile @@ -7,7 +7,6 @@ COMMENT= Gems for iobuffer WWW= https://github.com/tarcieri/iobuffer -USE_RUBY= yes USES= gem .include Index: devel/rubygem-iostruct/Makefile =================================================================== --- devel/rubygem-iostruct/Makefile +++ devel/rubygem-iostruct/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-ipynbdiff/Makefile =================================================================== --- devel/rubygem-ipynbdiff/Makefile +++ devel/rubygem-ipynbdiff/Makefile @@ -13,7 +13,6 @@ rubygem-json>=2.5.1<3:devel/rubygem-json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-irb/Makefile =================================================================== --- devel/rubygem-irb/Makefile +++ devel/rubygem-irb/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-reline>=0.3.0:devel/rubygem-reline USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-iso8601/Makefile =================================================================== --- devel/rubygem-iso8601/Makefile +++ devel/rubygem-iso8601/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-jaeger-client/Makefile =================================================================== --- devel/rubygem-jaeger-client/Makefile +++ devel/rubygem-jaeger-client/Makefile @@ -14,7 +14,6 @@ rubygem-thrift>=0:devel/rubygem-thrift USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-jammit/Makefile =================================================================== --- devel/rubygem-jammit/Makefile +++ devel/rubygem-jammit/Makefile @@ -14,7 +14,6 @@ rubygem-jsmin>=1.0:textproc/rubygem-jsmin NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/jammit Index: devel/rubygem-jaro_winkler/Makefile =================================================================== --- devel/rubygem-jaro_winkler/Makefile +++ devel/rubygem-jaro_winkler/Makefile @@ -10,6 +10,5 @@ LICENSE= MIT USES= gem -USE_RUBY= yes .include Index: devel/rubygem-jasmine-core/Makefile =================================================================== --- devel/rubygem-jasmine-core/Makefile +++ devel/rubygem-jasmine-core/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-jbuilder-rails5/Makefile =================================================================== --- devel/rubygem-jbuilder-rails5/Makefile +++ devel/rubygem-jbuilder-rails5/Makefile @@ -15,7 +15,6 @@ rubygem-activesupport5>=5.0.0:devel/rubygem-activesupport5 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-jbuilder-rails50/Makefile =================================================================== --- devel/rubygem-jbuilder-rails50/Makefile +++ devel/rubygem-jbuilder-rails50/Makefile @@ -15,7 +15,6 @@ rubygem-activesupport50>=5.0.0:devel/rubygem-activesupport50 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-jbuilder-rails52/Makefile =================================================================== --- devel/rubygem-jbuilder-rails52/Makefile +++ devel/rubygem-jbuilder-rails52/Makefile @@ -15,7 +15,6 @@ rubygem-activesupport52>=5.0.0:devel/rubygem-activesupport52 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-jbuilder-rails60/Makefile =================================================================== --- devel/rubygem-jbuilder-rails60/Makefile +++ devel/rubygem-jbuilder-rails60/Makefile @@ -15,7 +15,6 @@ rubygem-activesupport60>=5.0.0:devel/rubygem-activesupport60 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-jbuilder-rails61/Makefile =================================================================== --- devel/rubygem-jbuilder-rails61/Makefile +++ devel/rubygem-jbuilder-rails61/Makefile @@ -15,7 +15,6 @@ rubygem-activesupport61>=5.0.0:devel/rubygem-activesupport61 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-jbuilder/Makefile =================================================================== --- devel/rubygem-jbuilder/Makefile +++ devel/rubygem-jbuilder/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS?= rubygem-activesupport4>=4.2.0:devel/rubygem-activesupport4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-jekyll-coffeescript/Makefile =================================================================== --- devel/rubygem-jekyll-coffeescript/Makefile +++ devel/rubygem-jekyll-coffeescript/Makefile @@ -13,7 +13,6 @@ rubygem-coffee-script-source>=1.12<2:devel/rubygem-coffee-script-source USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-jenkins_api_client/Makefile =================================================================== --- devel/rubygem-jenkins_api_client/Makefile +++ devel/rubygem-jenkins_api_client/Makefile @@ -17,7 +17,6 @@ rubygem-thor>=0.16.0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-jeweler/Makefile =================================================================== --- devel/rubygem-jeweler/Makefile +++ devel/rubygem-jeweler/Makefile @@ -22,7 +22,6 @@ rubygem-semver2>=0:devel/rubygem-semver2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-jira-ruby/Makefile =================================================================== --- devel/rubygem-jira-ruby/Makefile +++ devel/rubygem-jira-ruby/Makefile @@ -16,7 +16,6 @@ rubygem-oauth>=0.5.0<1:net/rubygem-oauth USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-jira-ruby21/Makefile =================================================================== --- devel/rubygem-jira-ruby21/Makefile +++ devel/rubygem-jira-ruby21/Makefile @@ -17,7 +17,6 @@ rubygem-oauth>=0.5.0<1:net/rubygem-oauth USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-jmespath/Makefile =================================================================== --- devel/rubygem-jmespath/Makefile +++ devel/rubygem-jmespath/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-jquery-ui-themes/Makefile =================================================================== --- devel/rubygem-jquery-ui-themes/Makefile +++ devel/rubygem-jquery-ui-themes/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-httparty>=0:www/rubygem-httparty NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-jruby-jars/Makefile =================================================================== --- devel/rubygem-jruby-jars/Makefile +++ devel/rubygem-jruby-jars/Makefile @@ -15,7 +15,6 @@ USES= gem USE_JAVA= yes -USE_RUBY= yes RUBYGEMBIN= ${LOCALBASE}/bin/jgem Index: devel/rubygem-json-canonicalization/Makefile =================================================================== --- devel/rubygem-json-canonicalization/Makefile +++ devel/rubygem-json-canonicalization/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-json-schema/Makefile =================================================================== --- devel/rubygem-json-schema/Makefile +++ devel/rubygem-json-schema/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-addressable>=2.8:www/rubygem-addressable USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-json/Makefile =================================================================== --- devel/rubygem-json/Makefile +++ devel/rubygem-json/Makefile @@ -11,6 +11,5 @@ LICENSE_COMB= dual USES= gem -USE_RUBY= yes .include Index: devel/rubygem-json1/Makefile =================================================================== --- devel/rubygem-json1/Makefile +++ devel/rubygem-json1/Makefile @@ -11,7 +11,6 @@ LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual -USE_RUBY= yes USES= gem PORTSCOUT= limit:^1\. Index: devel/rubygem-json_pure/Makefile =================================================================== --- devel/rubygem-json_pure/Makefile +++ devel/rubygem-json_pure/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-json_pure1/Makefile =================================================================== --- devel/rubygem-json_pure1/Makefile +++ devel/rubygem-json_pure1/Makefile @@ -12,7 +12,6 @@ LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-json_schema/Makefile =================================================================== --- devel/rubygem-json_schema/Makefile +++ devel/rubygem-json_schema/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-json_schemer/Makefile =================================================================== --- devel/rubygem-json_schemer/Makefile +++ devel/rubygem-json_schemer/Makefile @@ -16,7 +16,6 @@ rubygem-uri_template>=0.7<1:net/rubygem-uri_template USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-jsonapi-renderer/Makefile =================================================================== --- devel/rubygem-jsonapi-renderer/Makefile +++ devel/rubygem-jsonapi-renderer/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-jsonpath/Makefile =================================================================== --- devel/rubygem-jsonpath/Makefile +++ devel/rubygem-jsonpath/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-multi_json>=0:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-kafo/Makefile =================================================================== --- devel/rubygem-kafo/Makefile +++ devel/rubygem-kafo/Makefile @@ -20,7 +20,6 @@ rubygem-powerbar>=0:devel/rubygem-powerbar USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-kafo_parsers/Makefile =================================================================== --- devel/rubygem-kafo_parsers/Makefile +++ devel/rubygem-kafo_parsers/Makefile @@ -13,7 +13,6 @@ rubygem-rdoc>=3.9.0:devel/rubygem-rdoc USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-kafo_wizards/Makefile =================================================================== --- devel/rubygem-kafo_wizards/Makefile +++ devel/rubygem-kafo_wizards/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-highline>=0<3:devel/rubygem-highline USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-kgio/Makefile =================================================================== --- devel/rubygem-kgio/Makefile +++ devel/rubygem-kgio/Makefile @@ -10,6 +10,5 @@ LICENSE= LGPL21+ USES= gem -USE_RUBY= yes .include Index: devel/rubygem-launchy/Makefile =================================================================== --- devel/rubygem-launchy/Makefile +++ devel/rubygem-launchy/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-addressable>=2.7<3:www/rubygem-addressable USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-lazy_priority_queue/Makefile =================================================================== --- devel/rubygem-lazy_priority_queue/Makefile +++ devel/rubygem-lazy_priority_queue/Makefile @@ -10,7 +10,6 @@ LICENSE= BSD2CLAUSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-libdatadog/Makefile =================================================================== --- devel/rubygem-libdatadog/Makefile +++ devel/rubygem-libdatadog/Makefile @@ -10,7 +10,6 @@ LICENSE= APACHE20 USES= gem -USE_RUBY= yes #NO_ARCH= yes Index: devel/rubygem-libddprof/Makefile =================================================================== --- devel/rubygem-libddprof/Makefile +++ devel/rubygem-libddprof/Makefile @@ -10,7 +10,6 @@ LICENSE= APACHE20 USES= gem -USE_RUBY= yes #NO_ARCH= yes Index: devel/rubygem-libddwaf/Makefile =================================================================== --- devel/rubygem-libddwaf/Makefile +++ devel/rubygem-libddwaf/Makefile @@ -15,7 +15,6 @@ RUN_DEPENDS= rubygem-ffi>=1.0<2:devel/rubygem-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-librarian/Makefile =================================================================== --- devel/rubygem-librarian/Makefile +++ devel/rubygem-librarian/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-librarianp/Makefile =================================================================== --- devel/rubygem-librarianp/Makefile +++ devel/rubygem-librarianp/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-thor>=1.0<2:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-libyajl2/Makefile =================================================================== --- devel/rubygem-libyajl2/Makefile +++ devel/rubygem-libyajl2/Makefile @@ -10,7 +10,6 @@ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -USE_RUBY= yes USES= gem .include Index: devel/rubygem-license_finder/Makefile =================================================================== --- devel/rubygem-license_finder/Makefile +++ devel/rubygem-license_finder/Makefile @@ -19,7 +19,6 @@ rubygem-xml-simple>=1.1.9<1.2:textproc/rubygem-xml-simple USES= gem python:run shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-licensee/Makefile =================================================================== --- devel/rubygem-licensee/Makefile +++ devel/rubygem-licensee/Makefile @@ -18,7 +18,6 @@ rubygem-thor>=0.19<2.0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-listen/Makefile =================================================================== --- devel/rubygem-listen/Makefile +++ devel/rubygem-listen/Makefile @@ -15,7 +15,6 @@ rubygem-rb-kqueue>=0.2:devel/rubygem-rb-kqueue USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-little-plugger/Makefile =================================================================== --- devel/rubygem-little-plugger/Makefile +++ devel/rubygem-little-plugger/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-local_time-rails5/Makefile =================================================================== --- devel/rubygem-local_time-rails5/Makefile +++ devel/rubygem-local_time-rails5/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-coffee-rails-rails5>=0:devel/rubygem-coffee-rails-rails5 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-local_time/Makefile =================================================================== --- devel/rubygem-local_time/Makefile +++ devel/rubygem-local_time/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-locale/Makefile =================================================================== --- devel/rubygem-locale/Makefile +++ devel/rubygem-locale/Makefile @@ -11,7 +11,6 @@ LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-lockfile/Makefile =================================================================== --- devel/rubygem-lockfile/Makefile +++ devel/rubygem-lockfile/Makefile @@ -10,7 +10,6 @@ LICENSE= RUBY USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-logger/Makefile =================================================================== --- devel/rubygem-logger/Makefile +++ devel/rubygem-logger/Makefile @@ -11,7 +11,6 @@ LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-logging/Makefile =================================================================== --- devel/rubygem-logging/Makefile +++ devel/rubygem-logging/Makefile @@ -14,7 +14,6 @@ rubygem-multi_json>=1.14<2:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-logster/Makefile =================================================================== --- devel/rubygem-logster/Makefile +++ devel/rubygem-logster/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-loquacious/Makefile =================================================================== --- devel/rubygem-loquacious/Makefile +++ devel/rubygem-loquacious/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-lru_redux/Makefile =================================================================== --- devel/rubygem-lru_redux/Makefile +++ devel/rubygem-lru_redux/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-lumberjack/Makefile =================================================================== --- devel/rubygem-lumberjack/Makefile +++ devel/rubygem-lumberjack/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT_LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-main/Makefile =================================================================== --- devel/rubygem-main/Makefile +++ devel/rubygem-main/Makefile @@ -16,7 +16,6 @@ rubygem-map>=6.1.0<7:devel/rubygem-map USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-manpages/Makefile =================================================================== --- devel/rubygem-manpages/Makefile +++ devel/rubygem-manpages/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-map/Makefile =================================================================== --- devel/rubygem-map/Makefile +++ devel/rubygem-map/Makefile @@ -11,7 +11,6 @@ LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-marcel/Makefile =================================================================== --- devel/rubygem-marcel/Makefile +++ devel/rubygem-marcel/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-memo_wise/Makefile =================================================================== --- devel/rubygem-memo_wise/Makefile +++ devel/rubygem-memo_wise/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-memoist/Makefile =================================================================== --- devel/rubygem-memoist/Makefile +++ devel/rubygem-memoist/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-memoizable/Makefile =================================================================== --- devel/rubygem-memoizable/Makefile +++ devel/rubygem-memoizable/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-thread_safe>=0.3.1<1:devel/rubygem-thread_safe USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-memoize/Makefile =================================================================== --- devel/rubygem-memoize/Makefile +++ devel/rubygem-memoize/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-test-unit>=2.0.2:devel/rubygem-test-unit USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-memory_profiler/Makefile =================================================================== --- devel/rubygem-memory_profiler/Makefile +++ devel/rubygem-memory_profiler/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-mercenary/Makefile =================================================================== --- devel/rubygem-mercenary/Makefile +++ devel/rubygem-mercenary/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-message_bus/Makefile =================================================================== --- devel/rubygem-message_bus/Makefile +++ devel/rubygem-message_bus/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rack>=1.1.3:www/rubygem-rack USES= cpe gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-metaclass/Makefile =================================================================== --- devel/rubygem-metaclass/Makefile +++ devel/rubygem-metaclass/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-metaid/Makefile =================================================================== --- devel/rubygem-metaid/Makefile +++ devel/rubygem-metaid/Makefile @@ -8,7 +8,6 @@ WWW= http://whytheluckystiff.net/metaid/ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-metasm/Makefile =================================================================== --- devel/rubygem-metasm/Makefile +++ devel/rubygem-metasm/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENCE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= samples/emubios.rb Index: devel/rubygem-method_source/Makefile =================================================================== --- devel/rubygem-method_source/Makefile +++ devel/rubygem-method_source/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-micromachine/Makefile =================================================================== --- devel/rubygem-micromachine/Makefile +++ devel/rubygem-micromachine/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-middleware/Makefile =================================================================== --- devel/rubygem-middleware/Makefile +++ devel/rubygem-middleware/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-mini_histogram/Makefile =================================================================== --- devel/rubygem-mini_histogram/Makefile +++ devel/rubygem-mini_histogram/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-mini_portile2-25/Makefile =================================================================== --- devel/rubygem-mini_portile2-25/Makefile +++ devel/rubygem-mini_portile2-25/Makefile @@ -11,7 +11,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-mini_portile2/Makefile =================================================================== --- devel/rubygem-mini_portile2/Makefile +++ devel/rubygem-mini_portile2/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-minitest/Makefile =================================================================== --- devel/rubygem-minitest/Makefile +++ devel/rubygem-minitest/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-mixlib-archive/Makefile =================================================================== --- devel/rubygem-mixlib-archive/Makefile +++ devel/rubygem-mixlib-archive/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-mixlib-log>=0:devel/rubygem-mixlib-log USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-mixlib-authentication/Makefile =================================================================== --- devel/rubygem-mixlib-authentication/Makefile +++ devel/rubygem-mixlib-authentication/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-mixlib-cli/Makefile =================================================================== --- devel/rubygem-mixlib-cli/Makefile +++ devel/rubygem-mixlib-cli/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-mixlib-config/Makefile =================================================================== --- devel/rubygem-mixlib-config/Makefile +++ devel/rubygem-mixlib-config/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-tomlrb>=0:textproc/rubygem-tomlrb USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-mixlib-install/Makefile =================================================================== --- devel/rubygem-mixlib-install/Makefile +++ devel/rubygem-mixlib-install/Makefile @@ -15,7 +15,6 @@ rubygem-thor>=0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-mixlib-log/Makefile =================================================================== --- devel/rubygem-mixlib-log/Makefile +++ devel/rubygem-mixlib-log/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-mixlib-shellout/Makefile =================================================================== --- devel/rubygem-mixlib-shellout/Makefile +++ devel/rubygem-mixlib-shellout/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-chef-utils>=0:sysutils/rubygem-chef-utils USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-mixlib-versioning/Makefile =================================================================== --- devel/rubygem-mixlib-versioning/Makefile +++ devel/rubygem-mixlib-versioning/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-mize/Makefile =================================================================== --- devel/rubygem-mize/Makefile +++ devel/rubygem-mize/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-protocol>=2.0<3:devel/rubygem-protocol USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-mkrf/Makefile =================================================================== --- devel/rubygem-mkrf/Makefile +++ devel/rubygem-mkrf/Makefile @@ -9,7 +9,6 @@ LICENSE= MIT -USE_RUBY= yes USES= gem python .include Index: devel/rubygem-mmap2/Makefile =================================================================== --- devel/rubygem-mmap2/Makefile +++ devel/rubygem-mmap2/Makefile @@ -11,6 +11,5 @@ LICENSE= RUBY USES= gem -USE_RUBY= yes .include Index: devel/rubygem-mocha/Makefile =================================================================== --- devel/rubygem-mocha/Makefile +++ devel/rubygem-mocha/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_MIT= ${WRKSRC}/MIT-LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-molinillo/Makefile =================================================================== --- devel/rubygem-molinillo/Makefile +++ devel/rubygem-molinillo/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-moneta/Makefile =================================================================== --- devel/rubygem-moneta/Makefile +++ devel/rubygem-moneta/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-mongo/Makefile =================================================================== --- devel/rubygem-mongo/Makefile +++ devel/rubygem-mongo/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-bson>=4.14.1<5.0.0:devel/rubygem-bson USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-mono_logger/Makefile =================================================================== --- devel/rubygem-mono_logger/Makefile +++ devel/rubygem-mono_logger/Makefile @@ -12,6 +12,5 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes .include Index: devel/rubygem-ms_rest/Makefile =================================================================== --- devel/rubygem-ms_rest/Makefile +++ devel/rubygem-ms_rest/Makefile @@ -16,7 +16,6 @@ rubygem-timeliness>=0.3.10<1:devel/rubygem-timeliness USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-ms_rest_azure/Makefile =================================================================== --- devel/rubygem-ms_rest_azure/Makefile +++ devel/rubygem-ms_rest_azure/Makefile @@ -17,7 +17,6 @@ rubygem-ms_rest>=0.7.6<0.8:devel/rubygem-ms_rest USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-msgpack/Makefile =================================================================== --- devel/rubygem-msgpack/Makefile +++ devel/rubygem-msgpack/Makefile @@ -11,6 +11,5 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes .include Index: devel/rubygem-mspec/Makefile =================================================================== --- devel/rubygem-mspec/Makefile +++ devel/rubygem-mspec/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-multi_json/Makefile =================================================================== --- devel/rubygem-multi_json/Makefile +++ devel/rubygem-multi_json/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-multi_json114/Makefile =================================================================== --- devel/rubygem-multi_json114/Makefile +++ devel/rubygem-multi_json114/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-multi_test/Makefile =================================================================== --- devel/rubygem-multi_test/Makefile +++ devel/rubygem-multi_test/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-murmurhash3/Makefile =================================================================== --- devel/rubygem-murmurhash3/Makefile +++ devel/rubygem-murmurhash3/Makefile @@ -9,7 +9,6 @@ LICENSE= MIT -USE_RUBY= yes USES= gem .include Index: devel/rubygem-mustache-sinatra/Makefile =================================================================== --- devel/rubygem-mustache-sinatra/Makefile +++ devel/rubygem-mustache-sinatra/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include Index: devel/rubygem-mustache/Makefile =================================================================== --- devel/rubygem-mustache/Makefile +++ devel/rubygem-mustache/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-mustache0/Makefile =================================================================== --- devel/rubygem-mustache0/Makefile +++ devel/rubygem-mustache0/Makefile @@ -11,7 +11,6 @@ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/mustache${PKGNAMESUFFIX} Index: devel/rubygem-mustermann-grape/Makefile =================================================================== --- devel/rubygem-mustermann-grape/Makefile +++ devel/rubygem-mustermann-grape/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-mustermann>=1.0:devel/rubygem-mustermann USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-mustermann/Makefile =================================================================== --- devel/rubygem-mustermann/Makefile +++ devel/rubygem-mustermann/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ruby2_keywords>=0.0.1<0.1:devel/rubygem-ruby2_keywords USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-mutex_m/Makefile =================================================================== --- devel/rubygem-mutex_m/Makefile +++ devel/rubygem-mutex_m/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-mutter/Makefile =================================================================== --- devel/rubygem-mutter/Makefile +++ devel/rubygem-mutter/Makefile @@ -10,7 +10,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-nakayoshi_fork/Makefile =================================================================== --- devel/rubygem-nakayoshi_fork/Makefile +++ devel/rubygem-nakayoshi_fork/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-nap/Makefile =================================================================== --- devel/rubygem-nap/Makefile +++ devel/rubygem-nap/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-native-package-installer/Makefile =================================================================== --- devel/rubygem-native-package-installer/Makefile +++ devel/rubygem-native-package-installer/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/doc/text/lgpl-3.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-naught/Makefile =================================================================== --- devel/rubygem-naught/Makefile +++ devel/rubygem-naught/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-necromancer/Makefile =================================================================== --- devel/rubygem-necromancer/Makefile +++ devel/rubygem-necromancer/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-needle/Makefile =================================================================== --- devel/rubygem-needle/Makefile +++ devel/rubygem-needle/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-nenv/Makefile =================================================================== --- devel/rubygem-nenv/Makefile +++ devel/rubygem-nenv/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-nesty/Makefile =================================================================== --- devel/rubygem-nesty/Makefile +++ devel/rubygem-nesty/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-netaddr/Makefile =================================================================== --- devel/rubygem-netaddr/Makefile +++ devel/rubygem-netaddr/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= cpe gem shebangfix CPE_VENDOR= ${PORTNAME}_project Index: devel/rubygem-newrelic-grape/Makefile =================================================================== --- devel/rubygem-newrelic-grape/Makefile +++ devel/rubygem-newrelic-grape/Makefile @@ -14,7 +14,6 @@ rubygem-newrelic_rpm>=0:devel/rubygem-newrelic_rpm USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-newrelic_rpm/Makefile =================================================================== --- devel/rubygem-newrelic_rpm/Makefile +++ devel/rubygem-newrelic_rpm/Makefile @@ -14,7 +14,6 @@ LICENSE_PERMS_NEWRELIC= dist-mirror no-dist-sell pkg-mirror no-pkg-sell auto-accept NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/mongrel_rpm bin/newrelic bin/newrelic_cmd bin/nrdebug Index: devel/rubygem-nice-ffi/Makefile =================================================================== --- devel/rubygem-nice-ffi/Makefile +++ devel/rubygem-nice-ffi/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ffi>=0.5.0:devel/rubygem-ffi NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-nio4r/Makefile =================================================================== --- devel/rubygem-nio4r/Makefile +++ devel/rubygem-nio4r/Makefile @@ -10,6 +10,5 @@ LICENSE= MIT USES= gem -USE_RUBY= yes .include Index: devel/rubygem-nori/Makefile =================================================================== --- devel/rubygem-nori/Makefile +++ devel/rubygem-nori/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-notiffany/Makefile =================================================================== --- devel/rubygem-notiffany/Makefile +++ devel/rubygem-notiffany/Makefile @@ -14,7 +14,6 @@ rubygem-shellany>=0<1:sysutils/rubygem-shellany USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-notify/Makefile =================================================================== --- devel/rubygem-notify/Makefile +++ devel/rubygem-notify/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/notify Index: devel/rubygem-nprogress-rails/Makefile =================================================================== --- devel/rubygem-nprogress-rails/Makefile +++ devel/rubygem-nprogress-rails/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-nsa-rails5/Makefile =================================================================== --- devel/rubygem-nsa-rails5/Makefile +++ devel/rubygem-nsa-rails5/Makefile @@ -14,7 +14,6 @@ rubygem-statsd-ruby>=1.4.0<2:devel/rubygem-statsd-ruby USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-numerizer/Makefile =================================================================== --- devel/rubygem-numerizer/Makefile +++ devel/rubygem-numerizer/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-oci/Makefile =================================================================== --- devel/rubygem-oci/Makefile +++ devel/rubygem-oci/Makefile @@ -14,7 +14,6 @@ rubygem-jwt>2.1:www/rubygem-jwt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-octopress-hooks/Makefile =================================================================== --- devel/rubygem-octopress-hooks/Makefile +++ devel/rubygem-octopress-hooks/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-jekyll3>=2.0:www/rubygem-jekyll3 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-oj/Makefile =================================================================== --- devel/rubygem-oj/Makefile +++ devel/rubygem-oj/Makefile @@ -11,6 +11,5 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes .include Index: devel/rubygem-omniauth_crowd/Makefile =================================================================== --- devel/rubygem-omniauth_crowd/Makefile +++ devel/rubygem-omniauth_crowd/Makefile @@ -16,7 +16,6 @@ rubygem-omniauth1>=1.0<2:security/rubygem-omniauth1 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-omnibus/Makefile =================================================================== --- devel/rubygem-omnibus/Makefile +++ devel/rubygem-omnibus/Makefile @@ -24,7 +24,6 @@ rubygem-thor>=0.18<2.0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-open3/Makefile =================================================================== --- devel/rubygem-open3/Makefile +++ devel/rubygem-open3/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-open3_backport/Makefile =================================================================== --- devel/rubygem-open3_backport/Makefile +++ devel/rubygem-open3_backport/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-open4/Makefile =================================================================== --- devel/rubygem-open4/Makefile +++ devel/rubygem-open4/Makefile @@ -11,7 +11,6 @@ LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-opentracing/Makefile =================================================================== --- devel/rubygem-opentracing/Makefile +++ devel/rubygem-opentracing/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-opt_parse_validator/Makefile =================================================================== --- devel/rubygem-opt_parse_validator/Makefile +++ devel/rubygem-opt_parse_validator/Makefile @@ -15,7 +15,6 @@ rubygem-addressable>=2.5<2.9:www/rubygem-addressable USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-optimist/Makefile =================================================================== --- devel/rubygem-optimist/Makefile +++ devel/rubygem-optimist/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-optparse/Makefile =================================================================== --- devel/rubygem-optparse/Makefile +++ devel/rubygem-optparse/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_RUBY= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-orm_adapter/Makefile =================================================================== --- devel/rubygem-orm_adapter/Makefile +++ devel/rubygem-orm_adapter/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-os/Makefile =================================================================== --- devel/rubygem-os/Makefile +++ devel/rubygem-os/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-ostruct/Makefile =================================================================== --- devel/rubygem-ostruct/Makefile +++ devel/rubygem-ostruct/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-p4ruby/Makefile =================================================================== --- devel/rubygem-p4ruby/Makefile +++ devel/rubygem-p4ruby/Makefile @@ -12,7 +12,6 @@ BUILD_DEPENDS+= ${LOCALBASE}/lib/perforce/libclient.a:devel/p4api RUN_DEPENDS:= ${BUILD_DEPENDS} -USE_RUBY= yes USES= gem CONFIGURE_ARGS= --with-p4api-dir=${LOCALBASE} --with-p4api-lib=${LOCALBASE}/lib/perforce Index: devel/rubygem-paint/Makefile =================================================================== --- devel/rubygem-paint/Makefile +++ devel/rubygem-paint/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-pairing_heap/Makefile =================================================================== --- devel/rubygem-pairing_heap/Makefile +++ devel/rubygem-pairing_heap/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-paperclip-rails5/Makefile =================================================================== --- devel/rubygem-paperclip-rails5/Makefile +++ devel/rubygem-paperclip-rails5/Makefile @@ -20,7 +20,6 @@ USES= cpe gem CPE_VENDOR= thoughtbot -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-paperclip-rails50/Makefile =================================================================== --- devel/rubygem-paperclip-rails50/Makefile +++ devel/rubygem-paperclip-rails50/Makefile @@ -18,7 +18,6 @@ rubygem-terrapin>=0.6.0:devel/rubygem-terrapin NO_ARCH= yes -USE_RUBY= yes USES= cpe gem magick:7,nox11,run CPE_VENDOR= thoughtbot Index: devel/rubygem-parser/Makefile =================================================================== --- devel/rubygem-parser/Makefile +++ devel/rubygem-parser/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ast>=2.4.1<2.5:devel/rubygem-ast USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-pastel/Makefile =================================================================== --- devel/rubygem-pastel/Makefile +++ devel/rubygem-pastel/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-tty-color>=0.5<1:devel/rubygem-tty-color USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-patch_finder/Makefile =================================================================== --- devel/rubygem-patch_finder/Makefile +++ devel/rubygem-patch_finder/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/msu_finder Index: devel/rubygem-pathname/Makefile =================================================================== --- devel/rubygem-pathname/Makefile +++ devel/rubygem-pathname/Makefile @@ -12,6 +12,5 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include Index: devel/rubygem-pathspec/Makefile =================================================================== --- devel/rubygem-pathspec/Makefile +++ devel/rubygem-pathspec/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-pathutil/Makefile =================================================================== --- devel/rubygem-pathutil/Makefile +++ devel/rubygem-pathutil/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-forwardable-extended>=2.6<3:devel/rubygem-forwardable-extended USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-pdk/Makefile =================================================================== --- devel/rubygem-pdk/Makefile +++ devel/rubygem-pdk/Makefile @@ -33,7 +33,6 @@ rubygem-tty-which>=0.3<1:devel/rubygem-tty-which USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-pedump/Makefile =================================================================== --- devel/rubygem-pedump/Makefile +++ devel/rubygem-pedump/Makefile @@ -17,7 +17,6 @@ rubygem-zhexdump>=0.0.2:devel/rubygem-zhexdump USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-peek-gc-rails52/Makefile =================================================================== --- devel/rubygem-peek-gc-rails52/Makefile +++ devel/rubygem-peek-gc-rails52/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-peek-rails52>=0:devel/rubygem-peek-rails52 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-peek-host/Makefile =================================================================== --- devel/rubygem-peek-host/Makefile +++ devel/rubygem-peek-host/Makefile @@ -14,6 +14,5 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes .include Index: devel/rubygem-peek-performance_bar/Makefile =================================================================== --- devel/rubygem-peek-performance_bar/Makefile +++ devel/rubygem-peek-performance_bar/Makefile @@ -14,6 +14,5 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes .include Index: devel/rubygem-peek-rails4/Makefile =================================================================== --- devel/rubygem-peek-rails4/Makefile +++ devel/rubygem-peek-rails4/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-railties4>=4.0.0:www/rubygem-railties4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-peek-rails52/Makefile =================================================================== --- devel/rubygem-peek-rails52/Makefile +++ devel/rubygem-peek-rails52/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-railties52>=4.0.0:www/rubygem-railties52 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-peek-rails60/Makefile =================================================================== --- devel/rubygem-peek-rails60/Makefile +++ devel/rubygem-peek-rails60/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-railties60>=4.0.0:www/rubygem-railties60 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-peek-rails61/Makefile =================================================================== --- devel/rubygem-peek-rails61/Makefile +++ devel/rubygem-peek-rails61/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-railties61>=4.0.0:www/rubygem-railties61 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-peek-rblineprof-rails52/Makefile =================================================================== --- devel/rubygem-peek-rblineprof-rails52/Makefile +++ devel/rubygem-peek-rblineprof-rails52/Makefile @@ -15,7 +15,6 @@ rubygem-rblineprof>=0:devel/rubygem-rblineprof USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-peek-redis-rails52/Makefile =================================================================== --- devel/rubygem-peek-redis-rails52/Makefile +++ devel/rubygem-peek-redis-rails52/Makefile @@ -16,7 +16,6 @@ rubygem-redis>=0:databases/rubygem-redis USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-peek/Makefile =================================================================== --- devel/rubygem-peek/Makefile +++ devel/rubygem-peek/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-pkg-config/Makefile =================================================================== --- devel/rubygem-pkg-config/Makefile +++ devel/rubygem-pkg-config/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LGPL-2.1 USES= gem pkgconfig -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-platform/Makefile =================================================================== --- devel/rubygem-platform/Makefile +++ devel/rubygem-platform/Makefile @@ -9,7 +9,6 @@ WWW= https://github.com/berk/platform NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-pleaserun/Makefile =================================================================== --- devel/rubygem-pleaserun/Makefile +++ devel/rubygem-pleaserun/Makefile @@ -17,7 +17,6 @@ rubygem-stud>=0:devel/rubygem-stud USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-plist/Makefile =================================================================== --- devel/rubygem-plist/Makefile +++ devel/rubygem-plist/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-pluggaloid/Makefile =================================================================== --- devel/rubygem-pluggaloid/Makefile +++ devel/rubygem-pluggaloid/Makefile @@ -14,7 +14,6 @@ rubygem-instance_storage>=1.0.0<2:devel/rubygem-instance_storage USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-polyamorous/Makefile =================================================================== --- devel/rubygem-polyamorous/Makefile +++ devel/rubygem-polyamorous/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-activerecord52>=5.2.1:databases/rubygem-activerecord52 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-polyglot/Makefile =================================================================== --- devel/rubygem-polyglot/Makefile +++ devel/rubygem-polyglot/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-popen4/Makefile =================================================================== --- devel/rubygem-popen4/Makefile +++ devel/rubygem-popen4/Makefile @@ -16,7 +16,6 @@ rubygem-platform>=0.4.0:devel/rubygem-platform NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-posix-spawn/Makefile =================================================================== --- devel/rubygem-posix-spawn/Makefile +++ devel/rubygem-posix-spawn/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes PLIST_FILES= bin/posix-spawn-benchmark Index: devel/rubygem-power_assert/Makefile =================================================================== --- devel/rubygem-power_assert/Makefile +++ devel/rubygem-power_assert/Makefile @@ -13,7 +13,6 @@ LICENSE_FILE_RUBY= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-powerbar/Makefile =================================================================== --- devel/rubygem-powerbar/Makefile +++ devel/rubygem-powerbar/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-hashie>=1.1.0:devel/rubygem-hashie NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/powerbar-demo Index: devel/rubygem-powerpack/Makefile =================================================================== --- devel/rubygem-powerpack/Makefile +++ devel/rubygem-powerpack/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-pp/Makefile =================================================================== --- devel/rubygem-pp/Makefile +++ devel/rubygem-pp/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-prettyprint>=0:devel/rubygem-prettyprint USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-pqueue/Makefile =================================================================== --- devel/rubygem-pqueue/Makefile +++ devel/rubygem-pqueue/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/License.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-prettyprint/Makefile =================================================================== --- devel/rubygem-prettyprint/Makefile +++ devel/rubygem-prettyprint/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-profile/Makefile =================================================================== --- devel/rubygem-profile/Makefile +++ devel/rubygem-profile/Makefile @@ -8,7 +8,6 @@ WWW= https://github.com/ruby/profile USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-progressbar/Makefile =================================================================== --- devel/rubygem-progressbar/Makefile +++ devel/rubygem-progressbar/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-prometheus-client-mmap/Makefile =================================================================== --- devel/rubygem-prometheus-client-mmap/Makefile +++ devel/rubygem-prometheus-client-mmap/Makefile @@ -10,6 +10,5 @@ LICENSE= APACHE20 USES= gem -USE_RUBY= yes .include Index: devel/rubygem-protected_attributes/Makefile =================================================================== --- devel/rubygem-protected_attributes/Makefile +++ devel/rubygem-protected_attributes/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-activemodel4>=4.0.1<5.0:databases/rubygem-activemodel4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-protobuf-cucumber/Makefile =================================================================== --- devel/rubygem-protobuf-cucumber/Makefile +++ devel/rubygem-protobuf-cucumber/Makefile @@ -16,7 +16,6 @@ rubygem-thread_safe>=0:devel/rubygem-thread_safe USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-protocol/Makefile =================================================================== --- devel/rubygem-protocol/Makefile +++ devel/rubygem-protocol/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ruby_parser>=3.0<4:devel/rubygem-ruby_parser USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-pry-byebug/Makefile =================================================================== --- devel/rubygem-pry-byebug/Makefile +++ devel/rubygem-pry-byebug/Makefile @@ -14,7 +14,6 @@ rubygem-pry>=0.13<0.15:devel/rubygem-pry USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-pry-rails/Makefile =================================================================== --- devel/rubygem-pry-rails/Makefile +++ devel/rubygem-pry-rails/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-pry>=0.10.4:devel/rubygem-pry USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-pry-remote-em/Makefile =================================================================== --- devel/rubygem-pry-remote-em/Makefile +++ devel/rubygem-pry-remote-em/Makefile @@ -16,7 +16,6 @@ rubygem-ruby-termios>=1.0<2:comms/rubygem-ruby-termios USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-pry-remote/Makefile =================================================================== --- devel/rubygem-pry-remote/Makefile +++ devel/rubygem-pry-remote/Makefile @@ -14,7 +14,6 @@ rubygem-slop3>=3.0<4:devel/rubygem-slop3 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-pry/Makefile =================================================================== --- devel/rubygem-pry/Makefile +++ devel/rubygem-pry/Makefile @@ -14,7 +14,6 @@ rubygem-method_source>=1.0<2:devel/rubygem-method_source USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-pstore/Makefile =================================================================== --- devel/rubygem-pstore/Makefile +++ devel/rubygem-pstore/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-ptreloaded/Makefile =================================================================== --- devel/rubygem-ptreloaded/Makefile +++ devel/rubygem-ptreloaded/Makefile @@ -13,7 +13,6 @@ LICENSE= GPLv2 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-puppet-resource_api/Makefile =================================================================== --- devel/rubygem-puppet-resource_api/Makefile +++ devel/rubygem-puppet-resource_api/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-hocon>=1.0:devel/rubygem-hocon USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-pygments.rb/Makefile =================================================================== --- devel/rubygem-pygments.rb/Makefile +++ devel/rubygem-pygments.rb/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem python:env shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-que-scheduler/Makefile =================================================================== --- devel/rubygem-que-scheduler/Makefile +++ devel/rubygem-que-scheduler/Makefile @@ -15,7 +15,6 @@ rubygem-que>=0.14<3.0.0:devel/rubygem-que USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-que/Makefile =================================================================== --- devel/rubygem-que/Makefile +++ devel/rubygem-que/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-r18n-core/Makefile =================================================================== --- devel/rubygem-r18n-core/Makefile +++ devel/rubygem-r18n-core/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-r18n-desktop/Makefile =================================================================== --- devel/rubygem-r18n-desktop/Makefile +++ devel/rubygem-r18n-desktop/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-r18n-core>=5.0<6:devel/rubygem-r18n-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-r18n-rails-api/Makefile =================================================================== --- devel/rubygem-r18n-rails-api/Makefile +++ devel/rubygem-r18n-rails-api/Makefile @@ -14,7 +14,6 @@ rubygem-r18n-core>=5.0<6:devel/rubygem-r18n-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-r18n-rails/Makefile =================================================================== --- devel/rubygem-r18n-rails/Makefile +++ devel/rubygem-r18n-rails/Makefile @@ -14,7 +14,6 @@ rubygem-rails60>=5.0<7:www/rubygem-rails60 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rabl-rails50/Makefile =================================================================== --- devel/rubygem-rabl-rails50/Makefile +++ devel/rubygem-rabl-rails50/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-activesupport50>=2.3.14:devel/rubygem-activesupport50 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rabl/Makefile =================================================================== --- devel/rubygem-rabl/Makefile +++ devel/rubygem-rabl/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-activesupport5>=2.3.14:devel/rubygem-activesupport5 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-racc/Makefile =================================================================== --- devel/rubygem-racc/Makefile +++ devel/rubygem-racc/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes PLIST_FILES= bin/racc Index: devel/rubygem-rack-mini-profiler/Makefile =================================================================== --- devel/rubygem-rack-mini-profiler/Makefile +++ devel/rubygem-rack-mini-profiler/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-rack>=1.2.0:www/rubygem-rack NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-rack-raw-upload/Makefile =================================================================== --- devel/rubygem-rack-raw-upload/Makefile +++ devel/rubygem-rack-raw-upload/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-multi_json>=0:devel/rubygem-multi_json NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-rails-deprecated_sanitizer-rails5/Makefile =================================================================== --- devel/rubygem-rails-deprecated_sanitizer-rails5/Makefile +++ devel/rubygem-rails-deprecated_sanitizer-rails5/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-activesupport5>=4.2.0:devel/rubygem-activesupport5 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rails-deprecated_sanitizer-rails50/Makefile =================================================================== --- devel/rubygem-rails-deprecated_sanitizer-rails50/Makefile +++ devel/rubygem-rails-deprecated_sanitizer-rails50/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-activesupport50>=4.2.0:devel/rubygem-activesupport50 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rails-deprecated_sanitizer/Makefile =================================================================== --- devel/rubygem-rails-deprecated_sanitizer/Makefile +++ devel/rubygem-rails-deprecated_sanitizer/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-activesupport4>=4.2.0:devel/rubygem-activesupport4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rails-i18n-rails5/Makefile =================================================================== --- devel/rubygem-rails-i18n-rails5/Makefile +++ devel/rubygem-rails-i18n-rails5/Makefile @@ -15,7 +15,6 @@ rubygem-railties5>=5.0<6:www/rubygem-railties5 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rails-i18n-rails50/Makefile =================================================================== --- devel/rubygem-rails-i18n-rails50/Makefile +++ devel/rubygem-rails-i18n-rails50/Makefile @@ -15,7 +15,6 @@ rubygem-railties50>=5.0<6:www/rubygem-railties50 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rails-i18n-rails52/Makefile =================================================================== --- devel/rubygem-rails-i18n-rails52/Makefile +++ devel/rubygem-rails-i18n-rails52/Makefile @@ -15,7 +15,6 @@ rubygem-railties52>=5.0<6:www/rubygem-railties52 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rails-i18n-rails60/Makefile =================================================================== --- devel/rubygem-rails-i18n-rails60/Makefile +++ devel/rubygem-rails-i18n-rails60/Makefile @@ -15,7 +15,6 @@ rubygem-railties60>=6.0<7:www/rubygem-railties60 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rails-i18n-rails61/Makefile =================================================================== --- devel/rubygem-rails-i18n-rails61/Makefile +++ devel/rubygem-rails-i18n-rails61/Makefile @@ -15,7 +15,6 @@ rubygem-railties61>=6.0<8:www/rubygem-railties61 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rails-i18n-rails70/Makefile =================================================================== --- devel/rubygem-rails-i18n-rails70/Makefile +++ devel/rubygem-rails-i18n-rails70/Makefile @@ -15,7 +15,6 @@ rubygem-railties70>=6.0.0<8:www/rubygem-railties70 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rails-observers/Makefile =================================================================== --- devel/rubygem-rails-observers/Makefile +++ devel/rubygem-rails-observers/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-activemodel4>=4.0:databases/rubygem-activemodel4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-rainbow/Makefile =================================================================== --- devel/rubygem-rainbow/Makefile +++ devel/rubygem-rainbow/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-rake-compiler-dock/Makefile =================================================================== --- devel/rubygem-rake-compiler-dock/Makefile +++ devel/rubygem-rake-compiler-dock/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes USES= gem shebangfix -USE_RUBY= yes SHEBANG_FILES= build/runas Index: devel/rubygem-rake-compiler/Makefile =================================================================== --- devel/rubygem-rake-compiler/Makefile +++ devel/rubygem-rake-compiler/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rake>=0:devel/rubygem-rake USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rake-contrib/Makefile =================================================================== --- devel/rubygem-rake-contrib/Makefile +++ devel/rubygem-rake-contrib/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rake>=0:devel/rubygem-rake USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rake/Makefile =================================================================== --- devel/rubygem-rake/Makefile +++ devel/rubygem-rake/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-ransack/Makefile =================================================================== --- devel/rubygem-ransack/Makefile +++ devel/rubygem-ransack/Makefile @@ -15,7 +15,6 @@ rubygem-i18n>=0:devel/rubygem-i18n USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rapt/Makefile =================================================================== --- devel/rubygem-rapt/Makefile +++ devel/rubygem-rapt/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/rapt Index: devel/rubygem-rash/Makefile =================================================================== --- devel/rubygem-rash/Makefile +++ devel/rubygem-rash/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-hashie>=2.0.0:devel/rubygem-hashie USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rash_alt/Makefile =================================================================== --- devel/rubygem-rash_alt/Makefile +++ devel/rubygem-rash_alt/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-hashie>=3.4:devel/rubygem-hashie USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rb-fsevent/Makefile =================================================================== --- devel/rubygem-rb-fsevent/Makefile +++ devel/rubygem-rb-fsevent/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rb-inotify/Makefile =================================================================== --- devel/rubygem-rb-inotify/Makefile +++ devel/rubygem-rb-inotify/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ffi>=1.0<2:devel/rubygem-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rb-kqueue/Makefile =================================================================== --- devel/rubygem-rb-kqueue/Makefile +++ devel/rubygem-rb-kqueue/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ffi>=0.5.0:devel/rubygem-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rblineprof/Makefile =================================================================== --- devel/rubygem-rblineprof/Makefile +++ devel/rubygem-rblineprof/Makefile @@ -14,6 +14,5 @@ RUN_DEPENDS= rubygem-debugger-ruby_core_source>=1.3:devel/rubygem-debugger-ruby_core_source USES= gem -USE_RUBY= yes .include Index: devel/rubygem-rbs/Makefile =================================================================== --- devel/rubygem-rbs/Makefile +++ devel/rubygem-rbs/Makefile @@ -13,7 +13,6 @@ LICENSE_FILE_RUBY= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes PLIST_FILES= bin/rbs Index: devel/rubygem-rbs_json_schema/Makefile =================================================================== --- devel/rubygem-rbs_json_schema/Makefile +++ devel/rubygem-rbs_json_schema/Makefile @@ -14,7 +14,6 @@ rubygem-rbs>=1.5.0:devel/rubygem-rbs USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rbtrace/Makefile =================================================================== --- devel/rubygem-rbtrace/Makefile +++ devel/rubygem-rbtrace/Makefile @@ -14,7 +14,6 @@ rubygem-msgpack>=0.4.3:devel/rubygem-msgpack \ rubygem-optimist>=3.0.0:devel/rubygem-optimist -USE_RUBY= yes USES= gem PLIST_FILES= bin/rbtrace Index: devel/rubygem-rbtree/Makefile =================================================================== --- devel/rubygem-rbtree/Makefile +++ devel/rubygem-rbtree/Makefile @@ -10,6 +10,5 @@ LICENSE= MIT USES= gem -USE_RUBY= yes .include Index: devel/rubygem-rdoc/Makefile =================================================================== --- devel/rubygem-rdoc/Makefile +++ devel/rubygem-rdoc/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-psych>=4.0.0:textproc/rubygem-psych USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rdoc63/Makefile =================================================================== --- devel/rubygem-rdoc63/Makefile +++ devel/rubygem-rdoc63/Makefile @@ -13,7 +13,6 @@ LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE.rdoc USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-re2/Makefile =================================================================== --- devel/rubygem-re2/Makefile +++ devel/rubygem-re2/Makefile @@ -14,6 +14,5 @@ libre2.so:devel/re2 USES= gem -USE_RUBY= yes .include Index: devel/rubygem-react-rails-rails5/Makefile =================================================================== --- devel/rubygem-react-rails-rails5/Makefile +++ devel/rubygem-react-rails-rails5/Makefile @@ -18,7 +18,6 @@ rubygem-tilt>=0:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-react-rails/Makefile =================================================================== --- devel/rubygem-react-rails/Makefile +++ devel/rubygem-react-rails/Makefile @@ -17,7 +17,6 @@ rubygem-tilt>=0:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-readline-ext/Makefile =================================================================== --- devel/rubygem-readline-ext/Makefile +++ devel/rubygem-readline-ext/Makefile @@ -12,6 +12,5 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include Index: devel/rubygem-readline/Makefile =================================================================== --- devel/rubygem-readline/Makefile +++ devel/rubygem-readline/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-reline>=0:devel/rubygem-reline USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-readwritesettings/Makefile =================================================================== --- devel/rubygem-readwritesettings/Makefile +++ devel/rubygem-readwritesettings/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-recaptcha/Makefile =================================================================== --- devel/rubygem-recaptcha/Makefile +++ devel/rubygem-recaptcha/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-json>=0:devel/rubygem-json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-recursive-open-struct/Makefile =================================================================== --- devel/rubygem-recursive-open-struct/Makefile +++ devel/rubygem-recursive-open-struct/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-red-datasets/Makefile =================================================================== --- devel/rubygem-red-datasets/Makefile +++ devel/rubygem-red-datasets/Makefile @@ -15,7 +15,6 @@ rubygem-rubyzip>=0:archivers/rubygem-rubyzip USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-redis-activesupport-rails5/Makefile =================================================================== --- devel/rubygem-redis-activesupport-rails5/Makefile +++ devel/rubygem-redis-activesupport-rails5/Makefile @@ -15,7 +15,6 @@ rubygem-redis-store>=1.3<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-redis-activesupport-rails50/Makefile =================================================================== --- devel/rubygem-redis-activesupport-rails50/Makefile +++ devel/rubygem-redis-activesupport-rails50/Makefile @@ -15,7 +15,6 @@ rubygem-redis-store>=1.3<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-redis-activesupport-rails52/Makefile =================================================================== --- devel/rubygem-redis-activesupport-rails52/Makefile +++ devel/rubygem-redis-activesupport-rails52/Makefile @@ -15,7 +15,6 @@ rubygem-redis-store>=1.3<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-redis-activesupport-rails60/Makefile =================================================================== --- devel/rubygem-redis-activesupport-rails60/Makefile +++ devel/rubygem-redis-activesupport-rails60/Makefile @@ -15,7 +15,6 @@ rubygem-redis-store>=1.3<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-redis-activesupport-rails61/Makefile =================================================================== --- devel/rubygem-redis-activesupport-rails61/Makefile +++ devel/rubygem-redis-activesupport-rails61/Makefile @@ -15,7 +15,6 @@ rubygem-redis-store>=1.3<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-redis-activesupport/Makefile =================================================================== --- devel/rubygem-redis-activesupport/Makefile +++ devel/rubygem-redis-activesupport/Makefile @@ -14,7 +14,6 @@ rubygem-redis-store>=1.3<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-redis-store/Makefile =================================================================== --- devel/rubygem-redis-store/Makefile +++ devel/rubygem-redis-store/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-redis4>=4<5:databases/rubygem-redis4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-redmine_plugin_support/Makefile =================================================================== --- devel/rubygem-redmine_plugin_support/Makefile +++ devel/rubygem-redmine_plugin_support/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-reentrant_flock/Makefile =================================================================== --- devel/rubygem-reentrant_flock/Makefile +++ devel/rubygem-reentrant_flock/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-ref/Makefile =================================================================== --- devel/rubygem-ref/Makefile +++ devel/rubygem-ref/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT_LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-reline/Makefile =================================================================== --- devel/rubygem-reline/Makefile +++ devel/rubygem-reline/Makefile @@ -15,7 +15,6 @@ RUN_DEPENDS= rubygem-io-console>=0.5<1:devel/rubygem-io-console USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-request_store/Makefile =================================================================== --- devel/rubygem-request_store/Makefile +++ devel/rubygem-request_store/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rack16>=1.4:www/rubygem-rack16 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-request_store14/Makefile =================================================================== --- devel/rubygem-request_store14/Makefile +++ devel/rubygem-request_store14/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-rack16>=1.4:www/rubygem-rack16 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-require_all/Makefile =================================================================== --- devel/rubygem-require_all/Makefile +++ devel/rubygem-require_all/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-resque-scheduler/Makefile =================================================================== --- devel/rubygem-resque-scheduler/Makefile +++ devel/rubygem-resque-scheduler/Makefile @@ -16,7 +16,6 @@ rubygem-rufus-scheduler>=3.2<4:devel/rubygem-rufus-scheduler USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-resque/Makefile =================================================================== --- devel/rubygem-resque/Makefile +++ devel/rubygem-resque/Makefile @@ -18,6 +18,5 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes:2.3+ .include Index: devel/rubygem-retriable/Makefile =================================================================== --- devel/rubygem-retriable/Makefile +++ devel/rubygem-retriable/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-retryable/Makefile =================================================================== --- devel/rubygem-retryable/Makefile +++ devel/rubygem-retryable/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rgen/Makefile =================================================================== --- devel/rubygem-rgen/Makefile +++ devel/rubygem-rgen/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rgl/Makefile =================================================================== --- devel/rubygem-rgl/Makefile +++ devel/rubygem-rgl/Makefile @@ -15,7 +15,6 @@ rubygem-stream>=0.5.3<0.6:devel/rubygem-stream USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rice/Makefile =================================================================== --- devel/rubygem-rice/Makefile +++ devel/rubygem-rice/Makefile @@ -13,7 +13,6 @@ BROKEN_FreeBSD_12_powerpc64= fails to configure: could not find ruby.h USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rinda/Makefile =================================================================== --- devel/rubygem-rinda/Makefile +++ devel/rubygem-rinda/Makefile @@ -16,7 +16,6 @@ rubygem-ipaddr>=0:net/rubygem-ipaddr USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rodzilla/Makefile =================================================================== --- devel/rubygem-rodzilla/Makefile +++ devel/rubygem-rodzilla/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-httparty>=0.12.0:www/rubygem-httparty NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-rotp/Makefile =================================================================== --- devel/rubygem-rotp/Makefile +++ devel/rubygem-rotp/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rr/Makefile =================================================================== --- devel/rubygem-rr/Makefile +++ devel/rubygem-rr/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-rrd-ffi/Makefile =================================================================== --- devel/rubygem-rrd-ffi/Makefile +++ devel/rubygem-rrd-ffi/Makefile @@ -16,7 +16,6 @@ rubygem-ffi>=0:devel/rubygem-ffi NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-rscm/Makefile =================================================================== --- devel/rubygem-rscm/Makefile +++ devel/rubygem-rscm/Makefile @@ -9,7 +9,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-rsec/Makefile =================================================================== --- devel/rubygem-rsec/Makefile +++ devel/rubygem-rsec/Makefile @@ -10,7 +10,6 @@ LICENSE= RUBY USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rspec-core/Makefile =================================================================== --- devel/rubygem-rspec-core/Makefile +++ devel/rubygem-rspec-core/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rspec-support>=${PORTVERSION:R}.0<3.12:devel/rubygem-rspec-support USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rspec-expectations/Makefile =================================================================== --- devel/rubygem-rspec-expectations/Makefile +++ devel/rubygem-rspec-expectations/Makefile @@ -14,7 +14,6 @@ rubygem-rspec-support>=${PORTVERSION:R}.0<3.12:devel/rubygem-rspec-support USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rspec-its/Makefile =================================================================== --- devel/rubygem-rspec-its/Makefile +++ devel/rubygem-rspec-its/Makefile @@ -19,6 +19,5 @@ SHEBANG_FILES= script/test_all \ script/update_rubygems_and_install_bundler -USE_RUBY= yes .include Index: devel/rubygem-rspec-logsplit/Makefile =================================================================== --- devel/rubygem-rspec-logsplit/Makefile +++ devel/rubygem-rspec-logsplit/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rspec-mocks/Makefile =================================================================== --- devel/rubygem-rspec-mocks/Makefile +++ devel/rubygem-rspec-mocks/Makefile @@ -14,7 +14,6 @@ rubygem-rspec-support>=${PORTVERSION:R}.0<3.12:devel/rubygem-rspec-support USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rspec-rails/Makefile =================================================================== --- devel/rubygem-rspec-rails/Makefile +++ devel/rubygem-rspec-rails/Makefile @@ -19,7 +19,6 @@ rubygem-rspec-support>=3.10<4:devel/rubygem-rspec-support USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rspec-support/Makefile =================================================================== --- devel/rubygem-rspec-support/Makefile +++ devel/rubygem-rspec-support/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rspec/Makefile =================================================================== --- devel/rubygem-rspec/Makefile +++ devel/rubygem-rspec/Makefile @@ -15,7 +15,6 @@ rubygem-rspec-mocks>=${PORTVERSION:R}.0<3.12:devel/rubygem-rspec-mocks USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rspec_junit_formatter/Makefile =================================================================== --- devel/rubygem-rspec_junit_formatter/Makefile +++ devel/rubygem-rspec_junit_formatter/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rspec-core>=2.12.0<4:devel/rubygem-rspec-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rubocop-ast/Makefile =================================================================== --- devel/rubygem-rubocop-ast/Makefile +++ devel/rubygem-rubocop-ast/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-parser>=3.1.1.0:devel/rubygem-parser USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rubocop-performance/Makefile =================================================================== --- devel/rubygem-rubocop-performance/Makefile +++ devel/rubygem-rubocop-performance/Makefile @@ -14,7 +14,6 @@ rubygem-rubocop-ast>=0.4.0:devel/rubygem-rubocop-ast USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rubocop-rake/Makefile =================================================================== --- devel/rubygem-rubocop-rake/Makefile +++ devel/rubygem-rubocop-rake/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rubocop>=1.0<2:devel/rubygem-rubocop USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rubocop-rspec/Makefile =================================================================== --- devel/rubygem-rubocop-rspec/Makefile +++ devel/rubygem-rubocop-rspec/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rubocop>=1.33<2:devel/rubygem-rubocop USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rubocop/Makefile =================================================================== --- devel/rubygem-rubocop/Makefile +++ devel/rubygem-rubocop/Makefile @@ -21,7 +21,6 @@ rubygem-unicode-display_width>=1.4.0<3.0:devel/rubygem-unicode-display_width USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-ruby-atmos-pure/Makefile =================================================================== --- devel/rubygem-ruby-atmos-pure/Makefile +++ devel/rubygem-ruby-atmos-pure/Makefile @@ -11,7 +11,6 @@ rubygem-ruby-hmac>=0.4.0:security/rubygem-ruby-hmac NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-ruby-bugzilla/Makefile =================================================================== --- devel/rubygem-ruby-bugzilla/Makefile +++ devel/rubygem-ruby-bugzilla/Makefile @@ -14,7 +14,6 @@ rubygem-highline>=0:devel/rubygem-highline USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-ruby-enum/Makefile =================================================================== --- devel/rubygem-ruby-enum/Makefile +++ devel/rubygem-ruby-enum/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-i18n>=0:devel/rubygem-i18n USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-ruby-filemagic/Makefile =================================================================== --- devel/rubygem-ruby-filemagic/Makefile +++ devel/rubygem-ruby-filemagic/Makefile @@ -12,6 +12,5 @@ LICENSE_COMB= dual USES= gem -USE_RUBY= yes .include Index: devel/rubygem-ruby-fogbugz/Makefile =================================================================== --- devel/rubygem-ruby-fogbugz/Makefile +++ devel/rubygem-ruby-fogbugz/Makefile @@ -13,7 +13,6 @@ rubygem-multipart-post>=2.0:www/rubygem-multipart-post NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-ruby-fogbugz021/Makefile =================================================================== --- devel/rubygem-ruby-fogbugz021/Makefile +++ devel/rubygem-ruby-fogbugz021/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-crack>=0.4:devel/rubygem-crack NO_ARCH= yes -USE_RUBY= yes USES= gem PORTSCOUT= limit:^0\.2\.1 Index: devel/rubygem-ruby-libvirt/Makefile =================================================================== --- devel/rubygem-ruby-libvirt/Makefile +++ devel/rubygem-ruby-libvirt/Makefile @@ -11,7 +11,6 @@ LIB_DEPENDS= libvirt.so:devel/libvirt -USE_RUBY= yes USES= gem pkgconfig .include Index: devel/rubygem-ruby-macho/Makefile =================================================================== --- devel/rubygem-ruby-macho/Makefile +++ devel/rubygem-ruby-macho/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-ruby-magic/Makefile =================================================================== --- devel/rubygem-ruby-magic/Makefile +++ devel/rubygem-ruby-magic/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-mini_portile2>=2.6<3:devel/rubygem-mini_portile2 USES= gem -USE_RUBY= yes CONFIGURE_ARGS+= --use-system-libraries post-install: Index: devel/rubygem-ruby-ole/Makefile =================================================================== --- devel/rubygem-ruby-ole/Makefile +++ devel/rubygem-ruby-ole/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-ruby-prof/Makefile =================================================================== --- devel/rubygem-ruby-prof/Makefile +++ devel/rubygem-ruby-prof/Makefile @@ -10,7 +10,6 @@ LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USE_RUBY= yes USES= gem PLIST_FILES= bin/ruby-prof bin/ruby-prof-check-trace Index: devel/rubygem-ruby-progressbar/Makefile =================================================================== --- devel/rubygem-ruby-progressbar/Makefile +++ devel/rubygem-ruby-progressbar/Makefile @@ -13,7 +13,6 @@ CONFLICTS_INSTALL= ${RUBY_PKGNAMEPREFIX}progressbar USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-ruby-statistics/Makefile =================================================================== --- devel/rubygem-ruby-statistics/Makefile +++ devel/rubygem-ruby-statistics/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-ruby2_keywords/Makefile =================================================================== --- devel/rubygem-ruby2_keywords/Makefile +++ devel/rubygem-ruby2_keywords/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-ruby2ruby/Makefile =================================================================== --- devel/rubygem-ruby2ruby/Makefile +++ devel/rubygem-ruby2ruby/Makefile @@ -13,7 +13,6 @@ rubygem-sexp_processor>=4.6<5:devel/rubygem-sexp_processor USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-ruby_dep/Makefile =================================================================== --- devel/rubygem-ruby_dep/Makefile +++ devel/rubygem-ruby_dep/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-ruby_parser/Makefile =================================================================== --- devel/rubygem-ruby_parser/Makefile +++ devel/rubygem-ruby_parser/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-sexp_processor>=4.9<5:devel/rubygem-sexp_processor NO_ARCH= yes -USE_RUBY= yes USES= cpe gem shebangfix CPE_VENDOR= ryan_davis Index: devel/rubygem-rubygems-mirror/Makefile =================================================================== --- devel/rubygem-rubygems-mirror/Makefile +++ devel/rubygem-rubygems-mirror/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-net-http-persistent>=2.9:www/rubygem-net-http-persistent USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rubygems-tasks/Makefile =================================================================== --- devel/rubygem-rubygems-tasks/Makefile +++ devel/rubygem-rubygems-tasks/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-irb>=1.0<2:devel/rubygem-irb USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rubygems-test/Makefile =================================================================== --- devel/rubygem-rubygems-test/Makefile +++ devel/rubygem-rubygems-test/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-rubyinline/Makefile =================================================================== --- devel/rubygem-rubyinline/Makefile +++ devel/rubygem-rubyinline/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-zentest>=4.3:devel/rubygem-zentest USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rubyinlineaccel/Makefile =================================================================== --- devel/rubygem-rubyinlineaccel/Makefile +++ devel/rubygem-rubyinlineaccel/Makefile @@ -14,7 +14,6 @@ LICENSE= GPLv2 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-rubytree/Makefile =================================================================== --- devel/rubygem-rubytree/Makefile +++ devel/rubygem-rubytree/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-json>=2.3.1<3:devel/rubygem-json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rufus-scheduler/Makefile =================================================================== --- devel/rubygem-rufus-scheduler/Makefile +++ devel/rubygem-rufus-scheduler/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-fugit>=1.1.6<2:devel/rubygem-fugit USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-rugged/Makefile =================================================================== --- devel/rubygem-rugged/Makefile +++ devel/rubygem-rugged/Makefile @@ -18,6 +18,5 @@ CONFIGURE_ARGS= --use-system-libraries USES= gem pkgconfig -USE_RUBY= yes .include Index: devel/rubygem-runt/Makefile =================================================================== --- devel/rubygem-runt/Makefile +++ devel/rubygem-runt/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-ruport/Makefile =================================================================== --- devel/rubygem-ruport/Makefile +++ devel/rubygem-ruport/Makefile @@ -14,7 +14,6 @@ rubygem-prawn-table>=0.2.0<0.3:print/rubygem-prawn-table USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-safe_yaml/Makefile =================================================================== --- devel/rubygem-safe_yaml/Makefile +++ devel/rubygem-safe_yaml/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-scanf/Makefile =================================================================== --- devel/rubygem-scanf/Makefile +++ devel/rubygem-scanf/Makefile @@ -10,7 +10,6 @@ LICENSE= BSD2CLAUSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-schash/Makefile =================================================================== --- devel/rubygem-schash/Makefile +++ devel/rubygem-schash/Makefile @@ -11,6 +11,5 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes .include Index: devel/rubygem-scientist/Makefile =================================================================== --- devel/rubygem-scientist/Makefile +++ devel/rubygem-scientist/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sd_notify/Makefile =================================================================== --- devel/rubygem-sd_notify/Makefile +++ devel/rubygem-sd_notify/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sdoc/Makefile =================================================================== --- devel/rubygem-sdoc/Makefile +++ devel/rubygem-sdoc/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-rdoc>=5.0:devel/rubygem-rdoc USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-semantic_puppet/Makefile =================================================================== --- devel/rubygem-semantic_puppet/Makefile +++ devel/rubygem-semantic_puppet/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-semantic_range/Makefile =================================================================== --- devel/rubygem-semantic_range/Makefile +++ devel/rubygem-semantic_range/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-semi_semantic/Makefile =================================================================== --- devel/rubygem-semi_semantic/Makefile +++ devel/rubygem-semi_semantic/Makefile @@ -10,7 +10,6 @@ LICENSE= APACHE20 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-semver2/Makefile =================================================================== --- devel/rubygem-semver2/Makefile +++ devel/rubygem-semver2/Makefile @@ -8,7 +8,6 @@ WWW= https://github.com/haf/semver USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-semverse/Makefile =================================================================== --- devel/rubygem-semverse/Makefile +++ devel/rubygem-semverse/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sentry-rails/Makefile =================================================================== --- devel/rubygem-sentry-rails/Makefile +++ devel/rubygem-sentry-rails/Makefile @@ -14,7 +14,6 @@ rubygem-sentry-ruby-core>=5.1.1<5.2:devel/rubygem-sentry-ruby-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sentry-raven/Makefile =================================================================== --- devel/rubygem-sentry-raven/Makefile +++ devel/rubygem-sentry-raven/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-faraday1>=1.0:www/rubygem-faraday1 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sentry-ruby-core/Makefile =================================================================== --- devel/rubygem-sentry-ruby-core/Makefile +++ devel/rubygem-sentry-ruby-core/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-concurrent-ruby>=0:devel/rubygem-concurrent-ruby USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sentry-ruby/Makefile =================================================================== --- devel/rubygem-sentry-ruby/Makefile +++ devel/rubygem-sentry-ruby/Makefile @@ -14,7 +14,6 @@ rubygem-sentry-ruby-core>=5.1.1<5.1.2:devel/rubygem-sentry-ruby-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sentry-sidekiq/Makefile =================================================================== --- devel/rubygem-sentry-sidekiq/Makefile +++ devel/rubygem-sentry-sidekiq/Makefile @@ -15,7 +15,6 @@ rubygem-sidekiq64>=3.0:devel/rubygem-sidekiq64 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sequel/Makefile =================================================================== --- devel/rubygem-sequel/Makefile +++ devel/rubygem-sequel/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-server_sent_events/Makefile =================================================================== --- devel/rubygem-server_sent_events/Makefile +++ devel/rubygem-server_sent_events/Makefile @@ -10,7 +10,6 @@ LICENSE= APACHE20 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-set/Makefile =================================================================== --- devel/rubygem-set/Makefile +++ devel/rubygem-set/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-settingslogic/Makefile =================================================================== --- devel/rubygem-settingslogic/Makefile +++ devel/rubygem-settingslogic/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-sexp_processor/Makefile =================================================================== --- devel/rubygem-sexp_processor/Makefile +++ devel/rubygem-sexp_processor/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-shell/Makefile =================================================================== --- devel/rubygem-shell/Makefile +++ devel/rubygem-shell/Makefile @@ -14,7 +14,6 @@ rubygem-sync>=0:devel/rubygem-sync USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-shoulda-context/Makefile =================================================================== --- devel/rubygem-shoulda-context/Makefile +++ devel/rubygem-shoulda-context/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-shoulda-matchers/Makefile =================================================================== --- devel/rubygem-shoulda-matchers/Makefile +++ devel/rubygem-shoulda-matchers/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-activesupport4>=4.2.0:devel/rubygem-activesupport4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-shoulda/Makefile =================================================================== --- devel/rubygem-shoulda/Makefile +++ devel/rubygem-shoulda/Makefile @@ -14,7 +14,6 @@ rubygem-shoulda-matchers>=4.0<5:devel/rubygem-shoulda-matchers USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sidekiq-bulk/Makefile =================================================================== --- devel/rubygem-sidekiq-bulk/Makefile +++ devel/rubygem-sidekiq-bulk/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-sidekiq>=0:devel/rubygem-sidekiq USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sidekiq-cron-sidekiq64/Makefile =================================================================== --- devel/rubygem-sidekiq-cron-sidekiq64/Makefile +++ devel/rubygem-sidekiq-cron-sidekiq64/Makefile @@ -15,7 +15,6 @@ rubygem-sidekiq64>=4.2.1:devel/rubygem-sidekiq64 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sidekiq-cron/Makefile =================================================================== --- devel/rubygem-sidekiq-cron/Makefile +++ devel/rubygem-sidekiq-cron/Makefile @@ -14,7 +14,6 @@ rubygem-sidekiq>=4.2.1:devel/rubygem-sidekiq USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sidekiq-scheduler/Makefile =================================================================== --- devel/rubygem-sidekiq-scheduler/Makefile +++ devel/rubygem-sidekiq-scheduler/Makefile @@ -16,7 +16,6 @@ rubygem-tilt>=1.4.0:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sidekiq-unique-jobs/Makefile =================================================================== --- devel/rubygem-sidekiq-unique-jobs/Makefile +++ devel/rubygem-sidekiq-unique-jobs/Makefile @@ -16,7 +16,6 @@ rubygem-thor>=0.20<3.0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sidekiq/Makefile =================================================================== --- devel/rubygem-sidekiq/Makefile +++ devel/rubygem-sidekiq/Makefile @@ -15,7 +15,6 @@ rubygem-redis4>=4.5.0<5:databases/rubygem-redis4 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sidekiq64/Makefile =================================================================== --- devel/rubygem-sidekiq64/Makefile +++ devel/rubygem-sidekiq64/Makefile @@ -16,7 +16,6 @@ rubygem-redis>=4.2.0:databases/rubygem-redis USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sidetiq/Makefile =================================================================== --- devel/rubygem-sidetiq/Makefile +++ devel/rubygem-sidetiq/Makefile @@ -16,7 +16,6 @@ rubygem-sidekiq>=4.1.0:devel/rubygem-sidekiq NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-sigdump/Makefile =================================================================== --- devel/rubygem-sigdump/Makefile +++ devel/rubygem-sigdump/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-simple-navigation-rails50/Makefile =================================================================== --- devel/rubygem-simple-navigation-rails50/Makefile +++ devel/rubygem-simple-navigation-rails50/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-activesupport50>=2.3.2:devel/rubygem-activesupport50 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-simple-navigation/Makefile =================================================================== --- devel/rubygem-simple-navigation/Makefile +++ devel/rubygem-simple-navigation/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-activesupport5>=2.3.2:devel/rubygem-activesupport5 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-simple_form-rails5/Makefile =================================================================== --- devel/rubygem-simple_form-rails5/Makefile +++ devel/rubygem-simple_form-rails5/Makefile @@ -16,7 +16,6 @@ USES= cpe gem CPE_VENDOR= plataformatec -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-simple_form-rails50/Makefile =================================================================== --- devel/rubygem-simple_form-rails50/Makefile +++ devel/rubygem-simple_form-rails50/Makefile @@ -16,7 +16,6 @@ USES= cpe gem CPE_VENDOR= plataformatec -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-simple_form/Makefile =================================================================== --- devel/rubygem-simple_form/Makefile +++ devel/rubygem-simple_form/Makefile @@ -17,7 +17,6 @@ USES= cpe gem CPE_VENDOR= plataformatec -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-simplecov/Makefile =================================================================== --- devel/rubygem-simplecov/Makefile +++ devel/rubygem-simplecov/Makefile @@ -15,7 +15,6 @@ rubygem-simplecov_json_formatter>=0.1<1:devel/rubygem-simplecov_json_formatter USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-simplecov_json_formatter/Makefile =================================================================== --- devel/rubygem-simplecov_json_formatter/Makefile +++ devel/rubygem-simplecov_json_formatter/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-singleton/Makefile =================================================================== --- devel/rubygem-singleton/Makefile +++ devel/rubygem-singleton/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-skiptrace/Makefile =================================================================== --- devel/rubygem-skiptrace/Makefile +++ devel/rubygem-skiptrace/Makefile @@ -11,6 +11,5 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include Index: devel/rubygem-slack-messenger/Makefile =================================================================== --- devel/rubygem-slack-messenger/Makefile +++ devel/rubygem-slack-messenger/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-slack-notifier/Makefile =================================================================== --- devel/rubygem-slack-notifier/Makefile +++ devel/rubygem-slack-notifier/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-slim/Makefile =================================================================== --- devel/rubygem-slim/Makefile +++ devel/rubygem-slim/Makefile @@ -14,7 +14,6 @@ rubygem-tilt>=2.0.6:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-slop/Makefile =================================================================== --- devel/rubygem-slop/Makefile +++ devel/rubygem-slop/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-slop3/Makefile =================================================================== --- devel/rubygem-slop3/Makefile +++ devel/rubygem-slop3/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-slow_enumerator_tools/Makefile =================================================================== --- devel/rubygem-slow_enumerator_tools/Makefile +++ devel/rubygem-slow_enumerator_tools/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-bundler>=1.15:sysutils/rubygem-bundler USES= gem -USE_RUBY= yes NO_ARCH= yes .include Index: devel/rubygem-snaky_hash/Makefile =================================================================== --- devel/rubygem-snaky_hash/Makefile +++ devel/rubygem-snaky_hash/Makefile @@ -14,7 +14,6 @@ rubygem-version_gem>=1.1.1<2:devel/rubygem-version_gem USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-snowplow-tracker/Makefile =================================================================== --- devel/rubygem-snowplow-tracker/Makefile +++ devel/rubygem-snowplow-tracker/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE-2.0.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-soap4r/Makefile =================================================================== --- devel/rubygem-soap4r/Makefile +++ devel/rubygem-soap4r/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-httpclient>=2.1.1:www/rubygem-httpclient NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/wsdl2ruby.rb bin/xsd2ruby.rb Index: devel/rubygem-solve/Makefile =================================================================== --- devel/rubygem-solve/Makefile +++ devel/rubygem-solve/Makefile @@ -14,7 +14,6 @@ rubygem-semverse>=1.1<4.0:devel/rubygem-semverse USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sorted_set/Makefile =================================================================== --- devel/rubygem-sorted_set/Makefile +++ devel/rubygem-sorted_set/Makefile @@ -13,7 +13,6 @@ rubygem-set>=1.0<2:devel/rubygem-set USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-spring-watcher-listen/Makefile =================================================================== --- devel/rubygem-spring-watcher-listen/Makefile +++ devel/rubygem-spring-watcher-listen/Makefile @@ -14,7 +14,6 @@ rubygem-spring>=4:devel/rubygem-spring USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-spring/Makefile =================================================================== --- devel/rubygem-spring/Makefile +++ devel/rubygem-spring/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sprockets-es6/Makefile =================================================================== --- devel/rubygem-sprockets-es6/Makefile +++ devel/rubygem-sprockets-es6/Makefile @@ -15,7 +15,6 @@ rubygem-sprockets3>=3.0:devel/rubygem-sprockets3 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-sprockets-helpers/Makefile =================================================================== --- devel/rubygem-sprockets-helpers/Makefile +++ devel/rubygem-sprockets-helpers/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-sprockets3>=2.2:devel/rubygem-sprockets3 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sprockets-rails-rails4/Makefile =================================================================== --- devel/rubygem-sprockets-rails-rails4/Makefile +++ devel/rubygem-sprockets-rails-rails4/Makefile @@ -16,7 +16,6 @@ rubygem-sprockets3>=3.0.0:devel/rubygem-sprockets3 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sprockets-rails-rails5/Makefile =================================================================== --- devel/rubygem-sprockets-rails-rails5/Makefile +++ devel/rubygem-sprockets-rails-rails5/Makefile @@ -16,7 +16,6 @@ rubygem-sprockets3>=3.0.0:devel/rubygem-sprockets3 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sprockets-rails-rails50/Makefile =================================================================== --- devel/rubygem-sprockets-rails-rails50/Makefile +++ devel/rubygem-sprockets-rails-rails50/Makefile @@ -16,7 +16,6 @@ rubygem-sprockets3>=3.0.0:devel/rubygem-sprockets3 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sprockets-rails-rails52/Makefile =================================================================== --- devel/rubygem-sprockets-rails-rails52/Makefile +++ devel/rubygem-sprockets-rails-rails52/Makefile @@ -16,7 +16,6 @@ rubygem-sprockets3>=3.0.0:devel/rubygem-sprockets3 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sprockets-rails-rails60/Makefile =================================================================== --- devel/rubygem-sprockets-rails-rails60/Makefile +++ devel/rubygem-sprockets-rails-rails60/Makefile @@ -16,7 +16,6 @@ rubygem-sprockets3>=3.0.0:devel/rubygem-sprockets3 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sprockets-rails-rails61/Makefile =================================================================== --- devel/rubygem-sprockets-rails-rails61/Makefile +++ devel/rubygem-sprockets-rails-rails61/Makefile @@ -16,7 +16,6 @@ rubygem-sprockets3>=3.0.0:devel/rubygem-sprockets3 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sprockets-rails-rails70/Makefile =================================================================== --- devel/rubygem-sprockets-rails-rails70/Makefile +++ devel/rubygem-sprockets-rails-rails70/Makefile @@ -16,7 +16,6 @@ rubygem-sprockets3>=3.0.0:devel/rubygem-sprockets3 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sprockets-sass/Makefile =================================================================== --- devel/rubygem-sprockets-sass/Makefile +++ devel/rubygem-sprockets-sass/Makefile @@ -14,7 +14,6 @@ rubygem-tilt1>=1.1<2:devel/rubygem-tilt1 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sprockets/Makefile =================================================================== --- devel/rubygem-sprockets/Makefile +++ devel/rubygem-sprockets/Makefile @@ -13,7 +13,6 @@ rubygem-rack>=1,3<3,3:www/rubygem-rack USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sprockets2/Makefile =================================================================== --- devel/rubygem-sprockets2/Makefile +++ devel/rubygem-sprockets2/Makefile @@ -18,7 +18,6 @@ USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sprockets3/Makefile =================================================================== --- devel/rubygem-sprockets3/Makefile +++ devel/rubygem-sprockets3/Makefile @@ -15,7 +15,6 @@ rubygem-rack16>=1<3:www/rubygem-rack16 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-spruz/Makefile =================================================================== --- devel/rubygem-spruz/Makefile +++ devel/rubygem-spruz/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/enum Index: devel/rubygem-stackprof/Makefile =================================================================== --- devel/rubygem-stackprof/Makefile +++ devel/rubygem-stackprof/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem python shebangfix -USE_RUBY= yes SHEBANG_FILES= vendor/gprof2dot/gprof2dot.py \ vendor/gprof2dot/hotshotmain.py \ Index: devel/rubygem-state_machine/Makefile =================================================================== --- devel/rubygem-state_machine/Makefile +++ devel/rubygem-state_machine/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-state_machines/Makefile =================================================================== --- devel/rubygem-state_machines/Makefile +++ devel/rubygem-state_machines/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-statsd-instrument/Makefile =================================================================== --- devel/rubygem-statsd-instrument/Makefile +++ devel/rubygem-statsd-instrument/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-statsd-ruby/Makefile =================================================================== --- devel/rubygem-statsd-ruby/Makefile +++ devel/rubygem-statsd-ruby/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-statsd/Makefile =================================================================== --- devel/rubygem-statsd/Makefile +++ devel/rubygem-statsd/Makefile @@ -12,7 +12,6 @@ rubygem-mongo>=1.2.4:devel/rubygem-mongo USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-stella/Makefile =================================================================== --- devel/rubygem-stella/Makefile +++ devel/rubygem-stella/Makefile @@ -23,7 +23,6 @@ rubygem-yajl-ruby>=0.7.9:devel/rubygem-yajl-ruby USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-stemmer/Makefile =================================================================== --- devel/rubygem-stemmer/Makefile +++ devel/rubygem-stemmer/Makefile @@ -8,7 +8,6 @@ WWW= https://rubygems.org/gems/stemmer USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-stomp/Makefile =================================================================== --- devel/rubygem-stomp/Makefile +++ devel/rubygem-stomp/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-stoplight/Makefile =================================================================== --- devel/rubygem-stoplight/Makefile +++ devel/rubygem-stoplight/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-storable/Makefile =================================================================== --- devel/rubygem-storable/Makefile +++ devel/rubygem-storable/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-stream/Makefile =================================================================== --- devel/rubygem-stream/Makefile +++ devel/rubygem-stream/Makefile @@ -11,7 +11,6 @@ LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-streetaddress/Makefile =================================================================== --- devel/rubygem-streetaddress/Makefile +++ devel/rubygem-streetaddress/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-stringex/Makefile =================================================================== --- devel/rubygem-stringex/Makefile +++ devel/rubygem-stringex/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-stringio/Makefile =================================================================== --- devel/rubygem-stringio/Makefile +++ devel/rubygem-stringio/Makefile @@ -11,6 +11,5 @@ LICENSE_COMB= dual USES= gem -USE_RUBY= yes .include Index: devel/rubygem-strings-ansi/Makefile =================================================================== --- devel/rubygem-strings-ansi/Makefile +++ devel/rubygem-strings-ansi/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-strings/Makefile =================================================================== --- devel/rubygem-strings/Makefile +++ devel/rubygem-strings/Makefile @@ -15,7 +15,6 @@ rubygem-unicode_utils>=1.4<2:devel/rubygem-unicode_utils USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-strong_migrations/Makefile =================================================================== --- devel/rubygem-strong_migrations/Makefile +++ devel/rubygem-strong_migrations/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-activerecord52>=5.2:databases/rubygem-activerecord52 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-strptime/Makefile =================================================================== --- devel/rubygem-strptime/Makefile +++ devel/rubygem-strptime/Makefile @@ -10,7 +10,6 @@ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt -USE_RUBY= yes USES= gem .include Index: devel/rubygem-strscan/Makefile =================================================================== --- devel/rubygem-strscan/Makefile +++ devel/rubygem-strscan/Makefile @@ -11,6 +11,5 @@ LICENSE_COMB= dual USES= gem -USE_RUBY= yes .include Index: devel/rubygem-structured_warnings/Makefile =================================================================== --- devel/rubygem-structured_warnings/Makefile +++ devel/rubygem-structured_warnings/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-stud/Makefile =================================================================== --- devel/rubygem-stud/Makefile +++ devel/rubygem-stud/Makefile @@ -10,7 +10,6 @@ LICENSE= APACHE20 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-subexec/Makefile =================================================================== --- devel/rubygem-subexec/Makefile +++ devel/rubygem-subexec/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sucker_punch/Makefile =================================================================== --- devel/rubygem-sucker_punch/Makefile +++ devel/rubygem-sucker_punch/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sugar-high/Makefile =================================================================== --- devel/rubygem-sugar-high/Makefile +++ devel/rubygem-sugar-high/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-sumbur/Makefile =================================================================== --- devel/rubygem-sumbur/Makefile +++ devel/rubygem-sumbur/Makefile @@ -9,7 +9,6 @@ LICENSE= MIT -USE_RUBY= yes USES= gem .include Index: devel/rubygem-sundawg_country_codes/Makefile =================================================================== --- devel/rubygem-sundawg_country_codes/Makefile +++ devel/rubygem-sundawg_country_codes/Makefile @@ -9,7 +9,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-svn2git/Makefile =================================================================== --- devel/rubygem-svn2git/Makefile +++ devel/rubygem-svn2git/Makefile @@ -14,7 +14,6 @@ CONFLICTS_INSTALL= svn2git NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/svn2git Index: devel/rubygem-swagger-blocks/Makefile =================================================================== --- devel/rubygem-swagger-blocks/Makefile +++ devel/rubygem-swagger-blocks/Makefile @@ -12,6 +12,5 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes .include Index: devel/rubygem-sync/Makefile =================================================================== --- devel/rubygem-sync/Makefile +++ devel/rubygem-sync/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-sysinfo/Makefile =================================================================== --- devel/rubygem-sysinfo/Makefile +++ devel/rubygem-sysinfo/Makefile @@ -15,7 +15,6 @@ rubygem-storable>=0:devel/rubygem-storable USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-syslog/Makefile =================================================================== --- devel/rubygem-syslog/Makefile +++ devel/rubygem-syslog/Makefile @@ -12,6 +12,5 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include Index: devel/rubygem-systemu/Makefile =================================================================== --- devel/rubygem-systemu/Makefile +++ devel/rubygem-systemu/Makefile @@ -13,7 +13,6 @@ LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-table_print/Makefile =================================================================== --- devel/rubygem-table_print/Makefile +++ devel/rubygem-table_print/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tdiff/Makefile =================================================================== --- devel/rubygem-tdiff/Makefile +++ devel/rubygem-tdiff/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tempfile/Makefile =================================================================== --- devel/rubygem-tempfile/Makefile +++ devel/rubygem-tempfile/Makefile @@ -11,7 +11,6 @@ LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-templater/Makefile =================================================================== --- devel/rubygem-templater/Makefile +++ devel/rubygem-templater/Makefile @@ -14,7 +14,6 @@ rubygem-highline>=1.4.0:devel/rubygem-highline USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-temple/Makefile =================================================================== --- devel/rubygem-temple/Makefile +++ devel/rubygem-temple/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-term-ansicolor/Makefile =================================================================== --- devel/rubygem-term-ansicolor/Makefile +++ devel/rubygem-term-ansicolor/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-tins>=1.0<2:devel/rubygem-tins USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-terrapin/Makefile =================================================================== --- devel/rubygem-terrapin/Makefile +++ devel/rubygem-terrapin/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-climate_control>=0.0.3:devel/rubygem-climate_control USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-test-unit/Makefile =================================================================== --- devel/rubygem-test-unit/Makefile +++ devel/rubygem-test-unit/Makefile @@ -16,7 +16,6 @@ RUN_DEPENDS= rubygem-power_assert>=0:devel/rubygem-power_assert USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-thor/Makefile =================================================================== --- devel/rubygem-thor/Makefile +++ devel/rubygem-thor/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-thor0/Makefile =================================================================== --- devel/rubygem-thor0/Makefile +++ devel/rubygem-thor0/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-thor10/Makefile =================================================================== --- devel/rubygem-thor10/Makefile +++ devel/rubygem-thor10/Makefile @@ -13,7 +13,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-thread_safe/Makefile =================================================================== --- devel/rubygem-thread_safe/Makefile +++ devel/rubygem-thread_safe/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-thrift/Makefile =================================================================== --- devel/rubygem-thrift/Makefile +++ devel/rubygem-thrift/Makefile @@ -10,7 +10,6 @@ LICENSE= APACHE20 -USE_RUBY= yes USES= cpe gem CPE_VENDOR= apache Index: devel/rubygem-thwait/Makefile =================================================================== --- devel/rubygem-thwait/Makefile +++ devel/rubygem-thwait/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-e2mmap>=0:devel/rubygem-e2mmap USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tilt/Makefile =================================================================== --- devel/rubygem-tilt/Makefile +++ devel/rubygem-tilt/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tilt1/Makefile =================================================================== --- devel/rubygem-tilt1/Makefile +++ devel/rubygem-tilt1/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PORTSCOUT= limit:^1\. Index: devel/rubygem-time/Makefile =================================================================== --- devel/rubygem-time/Makefile +++ devel/rubygem-time/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-date>=0:devel/rubygem-date USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-timeliness/Makefile =================================================================== --- devel/rubygem-timeliness/Makefile +++ devel/rubygem-timeliness/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-timeout/Makefile =================================================================== --- devel/rubygem-timeout/Makefile +++ devel/rubygem-timeout/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-timers/Makefile =================================================================== --- devel/rubygem-timers/Makefile +++ devel/rubygem-timers/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tins/Makefile =================================================================== --- devel/rubygem-tins/Makefile +++ devel/rubygem-tins/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-sync>=0:devel/rubygem-sync USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-titlecase/Makefile =================================================================== --- devel/rubygem-titlecase/Makefile +++ devel/rubygem-titlecase/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-tmpdir/Makefile =================================================================== --- devel/rubygem-tmpdir/Makefile +++ devel/rubygem-tmpdir/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-fileutils>=0:devel/rubygem-fileutils USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-to_regexp/Makefile =================================================================== --- devel/rubygem-to_regexp/Makefile +++ devel/rubygem-to_regexp/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tool/Makefile =================================================================== --- devel/rubygem-tool/Makefile +++ devel/rubygem-tool/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tracer/Makefile =================================================================== --- devel/rubygem-tracer/Makefile +++ devel/rubygem-tracer/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-traces/Makefile =================================================================== --- devel/rubygem-traces/Makefile +++ devel/rubygem-traces/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-trailblazer-option/Makefile =================================================================== --- devel/rubygem-trailblazer-option/Makefile +++ devel/rubygem-trailblazer-option/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-transaction-simple/Makefile =================================================================== --- devel/rubygem-transaction-simple/Makefile +++ devel/rubygem-transaction-simple/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-travis/Makefile =================================================================== --- devel/rubygem-travis/Makefile +++ devel/rubygem-travis/Makefile @@ -19,7 +19,6 @@ rubygem-pusher-client>=0.4<1:www/rubygem-pusher-client USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-treetop/Makefile =================================================================== --- devel/rubygem-treetop/Makefile +++ devel/rubygem-treetop/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-polyglot>=0.3<1:devel/rubygem-polyglot USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-trollop/Makefile =================================================================== --- devel/rubygem-trollop/Makefile +++ devel/rubygem-trollop/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-trollop1/Makefile =================================================================== --- devel/rubygem-trollop1/Makefile +++ devel/rubygem-trollop1/Makefile @@ -11,7 +11,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tsort/Makefile =================================================================== --- devel/rubygem-tsort/Makefile +++ devel/rubygem-tsort/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tty-box/Makefile =================================================================== --- devel/rubygem-tty-box/Makefile +++ devel/rubygem-tty-box/Makefile @@ -15,7 +15,6 @@ rubygem-tty-cursor>=0.7<1:devel/rubygem-tty-cursor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tty-color/Makefile =================================================================== --- devel/rubygem-tty-color/Makefile +++ devel/rubygem-tty-color/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tty-command/Makefile =================================================================== --- devel/rubygem-tty-command/Makefile +++ devel/rubygem-tty-command/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-pastel>=0.8<1:devel/rubygem-pastel USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tty-config/Makefile =================================================================== --- devel/rubygem-tty-config/Makefile +++ devel/rubygem-tty-config/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tty-cursor/Makefile =================================================================== --- devel/rubygem-tty-cursor/Makefile +++ devel/rubygem-tty-cursor/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tty-editor/Makefile =================================================================== --- devel/rubygem-tty-editor/Makefile +++ devel/rubygem-tty-editor/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-tty-prompt>=0.22<1:devel/rubygem-tty-prompt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tty-file/Makefile =================================================================== --- devel/rubygem-tty-file/Makefile +++ devel/rubygem-tty-file/Makefile @@ -15,7 +15,6 @@ rubygem-tty-prompt>=0.22<1:devel/rubygem-tty-prompt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tty-font/Makefile =================================================================== --- devel/rubygem-tty-font/Makefile +++ devel/rubygem-tty-font/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tty-logger/Makefile =================================================================== --- devel/rubygem-tty-logger/Makefile +++ devel/rubygem-tty-logger/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-pastel>=0.8<1:devel/rubygem-pastel USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tty-markdown/Makefile =================================================================== --- devel/rubygem-tty-markdown/Makefile +++ devel/rubygem-tty-markdown/Makefile @@ -18,7 +18,6 @@ rubygem-tty-screen>=0.8<1:devel/rubygem-tty-screen USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tty-pager/Makefile =================================================================== --- devel/rubygem-tty-pager/Makefile +++ devel/rubygem-tty-pager/Makefile @@ -14,7 +14,6 @@ rubygem-tty-screen>=0.8<1:devel/rubygem-tty-screen USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tty-pie/Makefile =================================================================== --- devel/rubygem-tty-pie/Makefile +++ devel/rubygem-tty-pie/Makefile @@ -14,7 +14,6 @@ rubygem-tty-cursor>=0.7<1:devel/rubygem-tty-cursor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tty-platform/Makefile =================================================================== --- devel/rubygem-tty-platform/Makefile +++ devel/rubygem-tty-platform/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tty-progressbar/Makefile =================================================================== --- devel/rubygem-tty-progressbar/Makefile +++ devel/rubygem-tty-progressbar/Makefile @@ -17,7 +17,6 @@ rubygem-unicode-display_width>=1.6<3.0:devel/rubygem-unicode-display_width USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tty-prompt/Makefile =================================================================== --- devel/rubygem-tty-prompt/Makefile +++ devel/rubygem-tty-prompt/Makefile @@ -14,7 +14,6 @@ rubygem-tty-reader>=0.8<1:devel/rubygem-tty-reader USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tty-reader/Makefile =================================================================== --- devel/rubygem-tty-reader/Makefile +++ devel/rubygem-tty-reader/Makefile @@ -15,7 +15,6 @@ rubygem-wisper>=2.0<3:devel/rubygem-wisper USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tty-screen/Makefile =================================================================== --- devel/rubygem-tty-screen/Makefile +++ devel/rubygem-tty-screen/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tty-spinner/Makefile =================================================================== --- devel/rubygem-tty-spinner/Makefile +++ devel/rubygem-tty-spinner/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-tty-cursor>=0.7<1:devel/rubygem-tty-cursor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tty-table/Makefile =================================================================== --- devel/rubygem-tty-table/Makefile +++ devel/rubygem-tty-table/Makefile @@ -15,7 +15,6 @@ rubygem-tty-screen>=0.8<1:devel/rubygem-tty-screen USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tty-tree/Makefile =================================================================== --- devel/rubygem-tty-tree/Makefile +++ devel/rubygem-tty-tree/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tty-which/Makefile =================================================================== --- devel/rubygem-tty-which/Makefile +++ devel/rubygem-tty-which/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tty/Makefile =================================================================== --- devel/rubygem-tty/Makefile +++ devel/rubygem-tty/Makefile @@ -37,7 +37,6 @@ rubygem-tty-which>=0.4<1:devel/rubygem-tty-which USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-turn/Makefile =================================================================== --- devel/rubygem-turn/Makefile +++ devel/rubygem-turn/Makefile @@ -15,7 +15,6 @@ rubygem-minitest>=4:devel/rubygem-minitest USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-typed-array/Makefile =================================================================== --- devel/rubygem-typed-array/Makefile +++ devel/rubygem-typed-array/Makefile @@ -9,7 +9,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-typeprof/Makefile =================================================================== --- devel/rubygem-typeprof/Makefile +++ devel/rubygem-typeprof/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rbs>=1.8.1:devel/rubygem-rbs USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tzinfo-data/Makefile =================================================================== --- devel/rubygem-tzinfo-data/Makefile +++ devel/rubygem-tzinfo-data/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-tzinfo>=1.0.0:devel/rubygem-tzinfo USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tzinfo/Makefile =================================================================== --- devel/rubygem-tzinfo/Makefile +++ devel/rubygem-tzinfo/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-tzinfo1/Makefile =================================================================== --- devel/rubygem-tzinfo1/Makefile +++ devel/rubygem-tzinfo1/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-thread_safe>=0.1<1:devel/rubygem-thread_safe USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-uber/Makefile =================================================================== --- devel/rubygem-uber/Makefile +++ devel/rubygem-uber/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-un/Makefile =================================================================== --- devel/rubygem-un/Makefile +++ devel/rubygem-un/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-unicode-display_width/Makefile =================================================================== --- devel/rubygem-unicode-display_width/Makefile +++ devel/rubygem-unicode-display_width/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-unicode/Makefile =================================================================== --- devel/rubygem-unicode/Makefile +++ devel/rubygem-unicode/Makefile @@ -10,6 +10,5 @@ LICENSE= RUBY USES= gem -USE_RUBY= yes .include Index: devel/rubygem-unicode_utils/Makefile =================================================================== --- devel/rubygem-unicode_utils/Makefile +++ devel/rubygem-unicode_utils/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-unleash/Makefile =================================================================== --- devel/rubygem-unleash/Makefile +++ devel/rubygem-unleash/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-murmurhash3>=0.1.6<0.2.0:devel/rubygem-murmurhash3 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-useragent/Makefile =================================================================== --- devel/rubygem-useragent/Makefile +++ devel/rubygem-useragent/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-uuid/Makefile =================================================================== --- devel/rubygem-uuid/Makefile +++ devel/rubygem-uuid/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-macaddr>=1.0:net/rubygem-macaddr NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/uuid Index: devel/rubygem-uuidtools/Makefile =================================================================== --- devel/rubygem-uuidtools/Makefile +++ devel/rubygem-uuidtools/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-valid/Makefile =================================================================== --- devel/rubygem-valid/Makefile +++ devel/rubygem-valid/Makefile @@ -10,7 +10,6 @@ LICENSE= ISCL USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-validatable/Makefile =================================================================== --- devel/rubygem-validatable/Makefile +++ devel/rubygem-validatable/Makefile @@ -11,7 +11,6 @@ LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-validate_email/Makefile =================================================================== --- devel/rubygem-validate_email/Makefile +++ devel/rubygem-validate_email/Makefile @@ -14,7 +14,6 @@ rubygem-mail>=2.2.5:mail/rubygem-mail USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-validate_url/Makefile =================================================================== --- devel/rubygem-validate_url/Makefile +++ devel/rubygem-validate_url/Makefile @@ -14,7 +14,6 @@ rubygem-public_suffix>=0:dns/rubygem-public_suffix USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-validates_timeliness/Makefile =================================================================== --- devel/rubygem-validates_timeliness/Makefile +++ devel/rubygem-validates_timeliness/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-timeliness>=0.3.10<1:devel/rubygem-timeliness USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-version_gem/Makefile =================================================================== --- devel/rubygem-version_gem/Makefile +++ devel/rubygem-version_gem/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-versionomy/Makefile =================================================================== --- devel/rubygem-versionomy/Makefile +++ devel/rubygem-versionomy/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-blockenspiel>=0.5:devel/rubygem-blockenspiel NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-view_component-rails61/Makefile =================================================================== --- devel/rubygem-view_component-rails61/Makefile +++ devel/rubygem-view_component-rails61/Makefile @@ -15,7 +15,6 @@ rubygem-method_source>=1.0<2:devel/rubygem-method_source USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-virtus/Makefile =================================================================== --- devel/rubygem-virtus/Makefile +++ devel/rubygem-virtus/Makefile @@ -15,7 +15,6 @@ rubygem-descendants_tracker>=0.0.3<1:devel/rubygem-descendants_tracker USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-warbler/Makefile =================================================================== --- devel/rubygem-warbler/Makefile +++ devel/rubygem-warbler/Makefile @@ -18,7 +18,6 @@ rubygem-rubyzip13>=1.0<1.4:archivers/rubygem-rubyzip13 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-warden/Makefile =================================================================== --- devel/rubygem-warden/Makefile +++ devel/rubygem-warden/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rack>=2.0.9:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-warning/Makefile =================================================================== --- devel/rubygem-warning/Makefile +++ devel/rubygem-warning/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-wdm/Makefile =================================================================== --- devel/rubygem-wdm/Makefile +++ devel/rubygem-wdm/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-weakref/Makefile =================================================================== --- devel/rubygem-weakref/Makefile +++ devel/rubygem-weakref/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-web-console-rails60/Makefile =================================================================== --- devel/rubygem-web-console-rails60/Makefile +++ devel/rubygem-web-console-rails60/Makefile @@ -17,7 +17,6 @@ rubygem-railties60>=6.0.0:www/rubygem-railties60 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-web-console-rails61/Makefile =================================================================== --- devel/rubygem-web-console-rails61/Makefile +++ devel/rubygem-web-console-rails61/Makefile @@ -17,7 +17,6 @@ rubygem-railties61>=6.0.0:www/rubygem-railties61 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-web-console2/Makefile =================================================================== --- devel/rubygem-web-console2/Makefile +++ devel/rubygem-web-console2/Makefile @@ -18,7 +18,6 @@ rubygem-sprockets-rails-rails4>=2.0:devel/rubygem-sprockets-rails-rails4 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-web-console3-rails5/Makefile =================================================================== --- devel/rubygem-web-console3-rails5/Makefile +++ devel/rubygem-web-console3-rails5/Makefile @@ -17,7 +17,6 @@ rubygem-railties5>=5.0:www/rubygem-railties5 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-web-console3-rails50/Makefile =================================================================== --- devel/rubygem-web-console3-rails50/Makefile +++ devel/rubygem-web-console3-rails50/Makefile @@ -17,7 +17,6 @@ rubygem-railties50>=5.0:www/rubygem-railties50 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-web-console3-rails52/Makefile =================================================================== --- devel/rubygem-web-console3-rails52/Makefile +++ devel/rubygem-web-console3-rails52/Makefile @@ -17,7 +17,6 @@ rubygem-railties52>=5.0:www/rubygem-railties52 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-webby/Makefile =================================================================== --- devel/rubygem-webby/Makefile +++ devel/rubygem-webby/Makefile @@ -19,7 +19,6 @@ rubygem-rspec>=1.2.2:devel/rubygem-rspec NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/webby bin/webby-gen Index: devel/rubygem-webfinger/Makefile =================================================================== --- devel/rubygem-webfinger/Makefile +++ devel/rubygem-webfinger/Makefile @@ -15,7 +15,6 @@ rubygem-httpclient>=2.4:www/rubygem-httpclient USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-webpacker-rails60/Makefile =================================================================== --- devel/rubygem-webpacker-rails60/Makefile +++ devel/rubygem-webpacker-rails60/Makefile @@ -18,7 +18,6 @@ yarn:www/yarn USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-webpacker-rails61/Makefile =================================================================== --- devel/rubygem-webpacker-rails61/Makefile +++ devel/rubygem-webpacker-rails61/Makefile @@ -19,7 +19,6 @@ yarn:www/yarn USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-webpacker4-rails60/Makefile =================================================================== --- devel/rubygem-webpacker4-rails60/Makefile +++ devel/rubygem-webpacker4-rails60/Makefile @@ -17,7 +17,6 @@ yarn:www/yarn USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-will_paginate/Makefile =================================================================== --- devel/rubygem-will_paginate/Makefile +++ devel/rubygem-will_paginate/Makefile @@ -12,7 +12,6 @@ USES= cpe gem CPE_VENDOR= mislav_marohnic -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-windows_error/Makefile =================================================================== --- devel/rubygem-windows_error/Makefile +++ devel/rubygem-windows_error/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-wisper/Makefile =================================================================== --- devel/rubygem-wisper/Makefile +++ devel/rubygem-wisper/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-with_env/Makefile =================================================================== --- devel/rubygem-with_env/Makefile +++ devel/rubygem-with_env/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-wmi-lite/Makefile =================================================================== --- devel/rubygem-wmi-lite/Makefile +++ devel/rubygem-wmi-lite/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-xdg/Makefile =================================================================== --- devel/rubygem-xdg/Makefile +++ devel/rubygem-xdg/Makefile @@ -16,7 +16,6 @@ BROKEN_RUBY30= yes USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-xdg2/Makefile =================================================================== --- devel/rubygem-xdg2/Makefile +++ devel/rubygem-xdg2/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-xdg3/Makefile =================================================================== --- devel/rubygem-xdg3/Makefile +++ devel/rubygem-xdg3/Makefile @@ -13,7 +13,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-xdg4/Makefile =================================================================== --- devel/rubygem-xdg4/Makefile +++ devel/rubygem-xdg4/Makefile @@ -13,7 +13,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.adoc USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-xdg5/Makefile =================================================================== --- devel/rubygem-xdg5/Makefile +++ devel/rubygem-xdg5/Makefile @@ -14,7 +14,6 @@ BROKEN_RUBY27= yes USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-xpath/Makefile =================================================================== --- devel/rubygem-xpath/Makefile +++ devel/rubygem-xpath/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-nokogiri>=1.8:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-yajl-ruby/Makefile =================================================================== --- devel/rubygem-yajl-ruby/Makefile +++ devel/rubygem-yajl-ruby/Makefile @@ -11,6 +11,5 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes .include Index: devel/rubygem-yui-compressor/Makefile =================================================================== --- devel/rubygem-yui-compressor/Makefile +++ devel/rubygem-yui-compressor/Makefile @@ -11,7 +11,6 @@ LICENSE_COMB= multi NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: devel/rubygem-zeitwerk/Makefile =================================================================== --- devel/rubygem-zeitwerk/Makefile +++ devel/rubygem-zeitwerk/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-zentest/Makefile =================================================================== --- devel/rubygem-zentest/Makefile +++ devel/rubygem-zentest/Makefile @@ -12,7 +12,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-zhexdump/Makefile =================================================================== --- devel/rubygem-zhexdump/Makefile +++ devel/rubygem-zhexdump/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: devel/rubygem-zlib/Makefile =================================================================== --- devel/rubygem-zlib/Makefile +++ devel/rubygem-zlib/Makefile @@ -12,6 +12,5 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include Index: devel/rubygem-zstd-ruby/Makefile =================================================================== --- devel/rubygem-zstd-ruby/Makefile +++ devel/rubygem-zstd-ruby/Makefile @@ -10,6 +10,5 @@ LICENSE= BSD3CLAUSE USES= gem -USE_RUBY= yes .include Index: devel/yaggo/Makefile =================================================================== --- devel/yaggo/Makefile +++ devel/yaggo/Makefile @@ -10,7 +10,7 @@ LICENSE= GPLv3 NO_ARCH= yes -USE_RUBY= yes +USES= ruby USE_GITHUB= yes GH_ACCOUNT= gmarcais Index: dns/dns_balance/Makefile =================================================================== --- dns/dns_balance/Makefile +++ dns/dns_balance/Makefile @@ -9,8 +9,7 @@ LICENSE= BSD2CLAUSE -USE_RUBY= yes -USES= shebangfix tar:xz +USES= ruby shebangfix tar:xz USE_RC_SUBR= dns_balance NO_BUILD= yes Index: dns/rubygem-dnsruby/Makefile =================================================================== --- dns/rubygem-dnsruby/Makefile +++ dns/rubygem-dnsruby/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-simpleidn>=0.1<1:dns/rubygem-simpleidn USES= gem -USE_RUBY= yes NO_ARCH= yes Index: dns/rubygem-gitlab-net-dns/Makefile =================================================================== --- dns/rubygem-gitlab-net-dns/Makefile +++ dns/rubygem-gitlab-net-dns/Makefile @@ -11,7 +11,6 @@ LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes Index: dns/rubygem-google-apis-dns_v1/Makefile =================================================================== --- dns/rubygem-google-apis-dns_v1/Makefile +++ dns/rubygem-google-apis-dns_v1/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-google-apis-core>=0.9.0<2.0:devel/rubygem-google-apis-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: dns/rubygem-google-cloud-dns/Makefile =================================================================== --- dns/rubygem-google-cloud-dns/Makefile +++ dns/rubygem-google-cloud-dns/Makefile @@ -16,7 +16,6 @@ rubygem-zonefile>=1.04<2:dns/rubygem-zonefile USES= gem -USE_RUBY= yes NO_ARCH= yes Index: dns/rubygem-idn-ruby/Makefile =================================================================== --- dns/rubygem-idn-ruby/Makefile +++ dns/rubygem-idn-ruby/Makefile @@ -13,6 +13,5 @@ LIB_DEPENDS= libidn.so:dns/libidn USES= gem -USE_RUBY= yes .include Index: dns/rubygem-net-dns/Makefile =================================================================== --- dns/rubygem-net-dns/Makefile +++ dns/rubygem-net-dns/Makefile @@ -11,7 +11,6 @@ LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes Index: dns/rubygem-public_suffix/Makefile =================================================================== --- dns/rubygem-public_suffix/Makefile +++ dns/rubygem-public_suffix/Makefile @@ -14,7 +14,6 @@ PATCH_DEPENDS= public_suffix_list>=0:dns/public_suffix_list USES= gem -USE_RUBY= yes NO_ARCH= yes Index: dns/rubygem-public_suffix_service/Makefile =================================================================== --- dns/rubygem-public_suffix_service/Makefile +++ dns/rubygem-public_suffix_service/Makefile @@ -14,7 +14,6 @@ PATCH_DEPENDS= public_suffix_list>=0:dns/public_suffix_list USES= gem -USE_RUBY= yes NO_ARCH= yes Index: dns/rubygem-resolv-replace/Makefile =================================================================== --- dns/rubygem-resolv-replace/Makefile +++ dns/rubygem-resolv-replace/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-resolv>=0:dns/rubygem-resolv USES= gem -USE_RUBY= yes NO_ARCH= yes Index: dns/rubygem-resolv/Makefile =================================================================== --- dns/rubygem-resolv/Makefile +++ dns/rubygem-resolv/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: dns/rubygem-simpleidn/Makefile =================================================================== --- dns/rubygem-simpleidn/Makefile +++ dns/rubygem-simpleidn/Makefile @@ -14,6 +14,5 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes .include Index: dns/rubygem-validates_hostname/Makefile =================================================================== --- dns/rubygem-validates_hostname/Makefile +++ dns/rubygem-validates_hostname/Makefile @@ -14,7 +14,6 @@ rubygem-activesupport60>=3.0:devel/rubygem-activesupport60 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: dns/rubygem-zonefile/Makefile =================================================================== --- dns/rubygem-zonefile/Makefile +++ dns/rubygem-zonefile/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: editors/diakonos/Makefile =================================================================== --- editors/diakonos/Makefile +++ editors/diakonos/Makefile @@ -13,10 +13,9 @@ RUN_DEPENDS= rubygem-curses>=1.3.1:devel/rubygem-curses -USES= shebangfix +USES= ruby shebangfix USE_GITHUB= yes GH_ACCOUNT= Pistos -USE_RUBY= yes SHEBANG_FILES= bin/${PORTNAME} NO_ARCH= yes Index: editors/rubygem-neovim/Makefile =================================================================== --- editors/rubygem-neovim/Makefile +++ editors/rubygem-neovim/Makefile @@ -18,7 +18,6 @@ rubygem-rspec>=0:devel/rubygem-rspec USES= gem -USE_RUBY= yes NO_ARCH= yes Index: emulators/libc6-shim/Makefile =================================================================== --- emulators/libc6-shim/Makefile +++ emulators/libc6-shim/Makefile @@ -11,10 +11,11 @@ ONLY_FOR_ARCHS= amd64 +USES= ruby + USE_GITHUB= yes GH_ACCOUNT= shkhln GH_PROJECT= libc6-shim -USE_RUBY= yes PORTSCOUT= ignore:1 Index: emulators/rubygem-fission/Makefile =================================================================== --- emulators/rubygem-fission/Makefile +++ emulators/rubygem-fission/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-CFPropertyList>=2.2:devel/rubygem-CFPropertyList USES= gem -USE_RUBY= yes NO_ARCH= yes Index: finance/rubygem-money/Makefile =================================================================== --- finance/rubygem-money/Makefile +++ finance/rubygem-money/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-i18n>=0.6.4,2<2,2:devel/rubygem-i18n USES= gem -USE_RUBY= yes NO_ARCH= yes Index: ftp/rubygem-curb/Makefile =================================================================== --- ftp/rubygem-curb/Makefile +++ ftp/rubygem-curb/Makefile @@ -13,6 +13,5 @@ LIB_DEPENDS= libcurl.so:ftp/curl USES= gem -USE_RUBY= yes .include Index: ftp/rubygem-net-ftp/Makefile =================================================================== --- ftp/rubygem-net-ftp/Makefile +++ ftp/rubygem-net-ftp/Makefile @@ -15,7 +15,6 @@ rubygem-time>=0:devel/rubygem-time USES= gem -USE_RUBY= yes NO_ARCH= yes Index: games/linux-steam-utils/Makefile =================================================================== --- games/linux-steam-utils/Makefile +++ games/linux-steam-utils/Makefile @@ -17,16 +17,13 @@ liberation-fonts-ttf>=0:x11-fonts/liberation-fonts-ttf \ zenity:x11/zenity -USES= linux +USES= linux ruby:run USE_GITHUB= yes GH_ACCOUNT= shkhln GH_PROJECT= linuxulator-steam-utils USE_LINUX= devtools:build dbuslibs gtk2 dri nss alsa-plugins-oss -USE_RUBY= yes - -RUBY_NO_BUILD_DEPENDS= yes MAKE_ARGS+= PREFIX=${STAGEDIR}${PREFIX} ALL_TARGET= build Index: games/ninix-aya/Makefile =================================================================== --- games/ninix-aya/Makefile +++ games/ninix-aya/Makefile @@ -19,8 +19,7 @@ NO_ARCH= yes PORTDOCS= COPYING ChangeLog README README.ninix SAORI -USES= gettext tar:tgz -USE_RUBY= yes +USES= gettext ruby tar:tgz OPTIONS_DEFINE= DOCS Index: games/rubygem-fortune_gem/Makefile =================================================================== --- games/rubygem-fortune_gem/Makefile +++ games/rubygem-fortune_gem/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/fortune_gem Index: games/rubygem-lolcat/Makefile =================================================================== --- games/rubygem-lolcat/Makefile +++ games/rubygem-lolcat/Makefile @@ -16,7 +16,6 @@ USES= gem -USE_RUBY= yes NO_ARCH= yes Index: games/rubygem-vimgolf/Makefile =================================================================== --- games/rubygem-vimgolf/Makefile +++ games/rubygem-vimgolf/Makefile @@ -14,7 +14,6 @@ rubygem-thor>=1.0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/${PORTNAME} Index: graphics/ruby-gd/Makefile =================================================================== --- graphics/ruby-gd/Makefile +++ graphics/ruby-gd/Makefile @@ -16,9 +16,7 @@ libgd.so:graphics/gd \ libpng.so:graphics/png -USES= jpeg -USE_RUBY= yes -USE_RUBY_EXTCONF= yes +USES= jpeg ruby:extconf RUBY_MODNAME= ${PORTNAME:tl} Index: graphics/rubygem-cairo/Makefile =================================================================== --- graphics/rubygem-cairo/Makefile +++ graphics/rubygem-cairo/Makefile @@ -16,6 +16,5 @@ USES= gem gnome pkgconfig USE_GNOME= cairo -USE_RUBY= yes .include Index: graphics/rubygem-captcha/Makefile =================================================================== --- graphics/rubygem-captcha/Makefile +++ graphics/rubygem-captcha/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rmagick>=2.9.2:graphics/rubygem-rmagick USES= gem -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-chunky_png/Makefile =================================================================== --- graphics/rubygem-chunky_png/Makefile +++ graphics/rubygem-chunky_png/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-clutter-gdk/Makefile =================================================================== --- graphics/rubygem-clutter-gdk/Makefile +++ graphics/rubygem-clutter-gdk/Makefile @@ -14,7 +14,6 @@ rubygem-gdk3>=${PORTVERSION}:x11-toolkits/rubygem-gdk3 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-clutter-gtk/Makefile =================================================================== --- graphics/rubygem-clutter-gtk/Makefile +++ graphics/rubygem-clutter-gtk/Makefile @@ -17,7 +17,6 @@ rubygem-gtk3>=${PORTVERSION}:x11-toolkits/rubygem-gtk3 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-clutter/Makefile =================================================================== --- graphics/rubygem-clutter/Makefile +++ graphics/rubygem-clutter/Makefile @@ -17,7 +17,6 @@ rubygem-pango>=${PORTVERSION}:x11-toolkits/rubygem-pango USES= gem -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-dragonfly/Makefile =================================================================== --- graphics/rubygem-dragonfly/Makefile +++ graphics/rubygem-dragonfly/Makefile @@ -15,7 +15,6 @@ rubygem-rack>=1.3,3:www/rubygem-rack USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-emoji/Makefile =================================================================== --- graphics/rubygem-emoji/Makefile +++ graphics/rubygem-emoji/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-json>=0:devel/rubygem-json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-exifr/Makefile =================================================================== --- graphics/rubygem-exifr/Makefile +++ graphics/rubygem-exifr/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-ezprint/Makefile =================================================================== --- graphics/rubygem-ezprint/Makefile +++ graphics/rubygem-ezprint/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-pdfkit>=0.8.0:graphics/rubygem-pdfkit NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: graphics/rubygem-fastimage/Makefile =================================================================== --- graphics/rubygem-fastimage/Makefile +++ graphics/rubygem-fastimage/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-flamegraph/Makefile =================================================================== --- graphics/rubygem-flamegraph/Makefile +++ graphics/rubygem-flamegraph/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: graphics/rubygem-gd2/Makefile =================================================================== --- graphics/rubygem-gd2/Makefile +++ graphics/rubygem-gd2/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem post-patch: Index: graphics/rubygem-gdk_pixbuf2/Makefile =================================================================== --- graphics/rubygem-gdk_pixbuf2/Makefile +++ graphics/rubygem-gdk_pixbuf2/Makefile @@ -15,7 +15,6 @@ USES= gem gnome USE_GNOME= gdkpixbuf2 -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-gemojione/Makefile =================================================================== --- graphics/rubygem-gemojione/Makefile +++ graphics/rubygem-gemojione/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-json>=0:devel/rubygem-json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-gemojione32/Makefile =================================================================== --- graphics/rubygem-gemojione32/Makefile +++ graphics/rubygem-gemojione32/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-json>=0:devel/rubygem-json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-geokit/Makefile =================================================================== --- graphics/rubygem-geokit/Makefile +++ graphics/rubygem-geokit/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: graphics/rubygem-gitlab_emoji/Makefile =================================================================== --- graphics/rubygem-gitlab_emoji/Makefile +++ graphics/rubygem-gitlab_emoji/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-gemojione>=2.2.1:graphics/rubygem-gemojione USES= gem -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-gruff/Makefile =================================================================== --- graphics/rubygem-gruff/Makefile +++ graphics/rubygem-gruff/Makefile @@ -14,7 +14,6 @@ rubygem-rmagick>=4.2:graphics/rubygem-rmagick USES= gem -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-histogram/Makefile =================================================================== --- graphics/rubygem-histogram/Makefile +++ graphics/rubygem-histogram/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-image_processing/Makefile =================================================================== --- graphics/rubygem-image_processing/Makefile +++ graphics/rubygem-image_processing/Makefile @@ -14,7 +14,6 @@ rubygem-ruby-vips>=2.0.17<3:graphics/rubygem-ruby-vips USES= gem -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-image_science/Makefile =================================================================== --- graphics/rubygem-image_science/Makefile +++ graphics/rubygem-image_science/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-rubyinline>=3.9<4:devel/rubygem-rubyinline USES= gem -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-imagesize/Makefile =================================================================== --- graphics/rubygem-imagesize/Makefile +++ graphics/rubygem-imagesize/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: graphics/rubygem-invisible_captcha/Makefile =================================================================== --- graphics/rubygem-invisible_captcha/Makefile +++ graphics/rubygem-invisible_captcha/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rails61>=4.2:www/rubygem-rails61 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-mini_magick/Makefile =================================================================== --- graphics/rubygem-mini_magick/Makefile +++ graphics/rubygem-mini_magick/Makefile @@ -18,7 +18,6 @@ IMAGEMAGICK7_DESC= Use ImageMagick 7.x (graphics/ImageMagick7*) USES= gem -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-mini_magick410/Makefile =================================================================== --- graphics/rubygem-mini_magick410/Makefile +++ graphics/rubygem-mini_magick410/Makefile @@ -19,7 +19,6 @@ IMAGEMAGICK7_DESC= Use ImageMagick 7.x (graphics/ImageMagick7*) USES= gem -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-objectdetect/Makefile =================================================================== --- graphics/rubygem-objectdetect/Makefile +++ graphics/rubygem-objectdetect/Makefile @@ -14,7 +14,6 @@ LIB_DEPENDS= libopencv_video.so:graphics/opencv -USE_RUBY= yes USES= gem pkgconfig post-patch: Index: graphics/rubygem-opengl/Makefile =================================================================== --- graphics/rubygem-opengl/Makefile +++ graphics/rubygem-opengl/Makefile @@ -15,6 +15,5 @@ USES= gl gem USE_GL= glut -USE_RUBY= yes .include Index: graphics/rubygem-pdfkit/Makefile =================================================================== --- graphics/rubygem-pdfkit/Makefile +++ graphics/rubygem-pdfkit/Makefile @@ -14,7 +14,6 @@ USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-png/Makefile =================================================================== --- graphics/rubygem-png/Makefile +++ graphics/rubygem-png/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-rubyinline>=3.9<4:devel/rubygem-rubyinline USES= gem -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-railroad/Makefile =================================================================== --- graphics/rubygem-railroad/Makefile +++ graphics/rubygem-railroad/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/railroad Index: graphics/rubygem-red-colors/Makefile =================================================================== --- graphics/rubygem-red-colors/Makefile +++ graphics/rubygem-red-colors/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-matrix>=0:math/rubygem-matrix USES= gem -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-rmagick/Makefile =================================================================== --- graphics/rubygem-rmagick/Makefile +++ graphics/rubygem-rmagick/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem pkgconfig shebangfix -USE_RUBY= yes SHEBANG_FILES= .devcontainer/*.sh Index: graphics/rubygem-rsvg2/Makefile =================================================================== --- graphics/rubygem-rsvg2/Makefile +++ graphics/rubygem-rsvg2/Makefile @@ -16,7 +16,6 @@ USES= gem gnome USE_GNOME= librsvg2 -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-ruby-graphviz/Makefile =================================================================== --- graphics/rubygem-ruby-graphviz/Makefile +++ graphics/rubygem-ruby-graphviz/Makefile @@ -14,7 +14,6 @@ rubygem-rexml>=0:textproc/rubygem-rexml USES= gem -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-ruby-vips/Makefile =================================================================== --- graphics/rubygem-ruby-vips/Makefile +++ graphics/rubygem-ruby-vips/Makefile @@ -15,7 +15,6 @@ USES= gem gnome shebangfix USE_GNOME= glib20 -USE_RUBY= yes NO_ARCH= yes Index: graphics/rubygem-scruffy/Makefile =================================================================== --- graphics/rubygem-scruffy/Makefile +++ graphics/rubygem-scruffy/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem post-patch: Index: graphics/rubygem-tanuki_emoji/Makefile =================================================================== --- graphics/rubygem-tanuki_emoji/Makefile +++ graphics/rubygem-tanuki_emoji/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: irc/rbot/Makefile =================================================================== --- irc/rbot/Makefile +++ irc/rbot/Makefile @@ -23,10 +23,7 @@ rubygem-oauth21>=0:net/rubygem-oauth21 LIB_DEPENDS= libtokyocabinet.so:databases/tokyocabinet -USES= cpe - -USE_RUBY= yes -USE_RUBY_SETUP= yes +USES= cpe ruby:setup CONFIGURE_ARGS= --prefix=${PREFIX} NO_ARCH= yes Index: irc/rubygem-cinch/Makefile =================================================================== --- irc/rubygem-cinch/Makefile +++ irc/rubygem-cinch/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: irc/rubygem-cogbot/Makefile =================================================================== --- irc/rubygem-cogbot/Makefile +++ irc/rubygem-cogbot/Makefile @@ -23,7 +23,6 @@ rubygem-fortune_gem>=0.0.9:games/rubygem-fortune_gem NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/cogbot Index: irc/rubygem-lita-irc/Makefile =================================================================== --- irc/rubygem-lita-irc/Makefile +++ irc/rubygem-lita-irc/Makefile @@ -15,7 +15,6 @@ rubygem-lita>=4.0:net-im/rubygem-lita NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: irc/rubygem-net-irc/Makefile =================================================================== --- irc/rubygem-net-irc/Makefile +++ irc/rubygem-net-irc/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes REINPLACE_ARGS= -i '' -USE_RUBY= yes USES= gem post-patch: Index: japanese/gedy/Makefile =================================================================== --- japanese/gedy/Makefile +++ japanese/gedy/Makefile @@ -17,8 +17,7 @@ rubygem-gio2>=3.1.0:devel/rubygem-gio2 \ ${RUBY_SITEARCHLIBDIR}/pasori.so:devel/libpafe-ruby -USE_RUBY= yes -USES= shebangfix +USES= ruby shebangfix SHEBANG_FILES= ${PORTNAME} ruby_OLD_CMD= /usr/bin/ruby1.9.3 Index: japanese/gsuica/Makefile =================================================================== --- japanese/gsuica/Makefile +++ japanese/gsuica/Makefile @@ -17,8 +17,7 @@ rubygem-gio2>=3.1.0:devel/rubygem-gio2 \ ${RUBY_SITEARCHLIBDIR}/pasori.so:devel/libpafe-ruby -USE_RUBY= yes -USES= shebangfix +USES= ruby shebangfix SHEBANG_FILES= ${PORTNAME} ruby_OLD_CMD= /usr/bin/ruby1.9.3 Index: japanese/migemo/Makefile =================================================================== --- japanese/migemo/Makefile +++ japanese/migemo/Makefile @@ -23,8 +23,7 @@ GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-rubydir=${RUBY_SITELIBDIR} -USES+= autoreconf -USE_RUBY= yes +USES+= autoreconf ruby .if !defined(SLAVE_PORT) EXTRA_PATCHES= ${FILESDIR}/extra-patch-Makefile.am \ Index: japanese/ruby-romkan/Makefile =================================================================== --- japanese/ruby-romkan/Makefile +++ japanese/ruby-romkan/Makefile @@ -10,7 +10,7 @@ COMMENT= Romaji <-> Kana conversion library for Ruby WWW= http://0xcc.net/ruby-romkan/index.html.en -USE_RUBY= yes +USES= ruby NO_BUILD= yes Index: japanese/ruby-uconv/Makefile =================================================================== --- japanese/ruby-uconv/Makefile +++ japanese/ruby-uconv/Makefile @@ -8,8 +8,7 @@ COMMENT= Unicode conversion library with Japanese codesets support for Ruby WWW= http://www.yoshidam.net/Ruby.html #uconv -USE_RUBY= yes -USE_RUBY_EXTCONF= yes +USES= ruby:extconf WRKSRC= ${WRKDIR}/${PORTNAME} INSTALL_TARGET= site-install Index: japanese/rubygem-jpmobile-ipaddresses/Makefile =================================================================== --- japanese/rubygem-jpmobile-ipaddresses/Makefile +++ japanese/rubygem-jpmobile-ipaddresses/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: japanese/rubygem-jpmobile-terminfo/Makefile =================================================================== --- japanese/rubygem-jpmobile-terminfo/Makefile +++ japanese/rubygem-jpmobile-terminfo/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: japanese/rubygem-jpmobile4/Makefile =================================================================== --- japanese/rubygem-jpmobile4/Makefile +++ japanese/rubygem-jpmobile4/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-rails4>0:www/rubygem-rails4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: japanese/rubygem-mail-iso-2022-jp/Makefile =================================================================== --- japanese/rubygem-mail-iso-2022-jp/Makefile +++ japanese/rubygem-mail-iso-2022-jp/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-mail>=2.2.6,2<2.7.2,2:mail/rubygem-mail USES= gem -USE_RUBY= yes NO_ARCH= yes Index: japanese/rubygem-myrurema/Makefile =================================================================== --- japanese/rubygem-myrurema/Makefile +++ japanese/rubygem-myrurema/Makefile @@ -10,7 +10,6 @@ RUN_DEPENDS= rubygem-launchy>=2.3<3:devel/rubygem-launchy USES= gem -USE_RUBY= yes NO_ARCH= yes Index: java/openjfx14/Makefile =================================================================== --- java/openjfx14/Makefile +++ java/openjfx14/Makefile @@ -73,12 +73,12 @@ WEBKIT_IMPLIES= MEDIA WEBKIT_BUILD_DEPENDS= cmake:devel/cmake-core WEBKIT_LIB_DEPENDS= libicui18n.so:devel/icu -WEBKIT_USES= bison gmake gperf perl5 python:3.5+,build +WEBKIT_USES= bison gmake gperf perl5 python:3.5+,build ruby:build WEBKIT_USE= GNOME=libxslt,libxml2 \ PERL5=build \ RUBY=yes \ XORG=xcomposite,xdamage,xfixes,xrender,xt -WEBKIT_VARS= RUBY_NO_RUN_DEPENDS=yes COMPILE_WEBKIT=true +WEBKIT_VARS= COMPILE_WEBKIT=true # Move Gradle's home below ${WRKDIR} instead of using ${HOME}/.gradle _GRADLE_ENV= CC=${WRKDIR}/bin/ccwrapper \ Index: lang/ruby27/Makefile =================================================================== --- lang/ruby27/Makefile +++ lang/ruby27/Makefile @@ -24,7 +24,7 @@ LIB_DEPENDS= libyaml.so:textproc/libyaml RUN_DEPENDS= libffi>=0:devel/libffi -USES= autoreconf cpe ssl tar:xz +USES= autoreconf cpe ruby:none ssl tar:xz CONFIGURE_ARGS= ${RUBY_CONFIGURE_ARGS} \ --disable-rpath \ @@ -44,9 +44,6 @@ MAKE_JOBS_UNSAFE= yes RUBY_VER= 2.7 -USE_RUBY= yes -RUBY_NO_BUILD_DEPENDS= yes -RUBY_NO_RUN_DEPENDS= yes OPTIONS_DEFINE= CAPIDOCS DEBUG DOCS EXAMPLES GMP RDOC OPTIONS_DEFAULT= RDOC LIBEDIT Index: lang/ruby30/Makefile =================================================================== --- lang/ruby30/Makefile +++ lang/ruby30/Makefile @@ -21,7 +21,7 @@ LIB_DEPENDS= libyaml.so:textproc/libyaml RUN_DEPENDS= libffi>=0:devel/libffi -USES= autoreconf cpe ssl tar:xz +USES= autoreconf cpe ruby:none ssl tar:xz CONFIGURE_ARGS= ${RUBY_CONFIGURE_ARGS} \ --disable-rpath \ @@ -40,9 +40,6 @@ WRKSRC= ${RUBY_WRKSRC} RUBY_VER= 3.0 -USE_RUBY= yes -RUBY_NO_BUILD_DEPENDS= yes -RUBY_NO_RUN_DEPENDS= yes OPTIONS_DEFINE= CAPIDOCS DEBUG DOCS EXAMPLES GMP RDOC OPTIONS_DEFAULT= RDOC LIBEDIT Index: lang/ruby31/Makefile =================================================================== --- lang/ruby31/Makefile +++ lang/ruby31/Makefile @@ -20,12 +20,11 @@ LIB_DEPENDS= libyaml.so:textproc/libyaml RUN_DEPENDS= libffi>=0:devel/libffi -USES= autoreconf cpe ssl tar:xz +USES= autoreconf cpe ruby:none ssl tar:xz CPE_VENDOR= ruby-lang CPE_VERSION= ${RUBY_RELVERSION} CPE_UPDATE= p${RUBY_PATCHLEVEL} USE_LDCONFIG= yes -USE_RUBY= yes RUBY_NO_BUILD_DEPENDS= yes RUBY_NO_RUN_DEPENDS= yes Index: lang/ruby32/Makefile =================================================================== --- lang/ruby32/Makefile +++ lang/ruby32/Makefile @@ -20,12 +20,11 @@ LIB_DEPENDS= libyaml.so:textproc/libyaml RUN_DEPENDS= libffi>=0:devel/libffi -USES= autoreconf cpe ssl tar:xz +USES= autoreconf cpe ruby ssl tar:xz CPE_VENDOR= ruby-lang CPE_VERSION= ${RUBY_RELVERSION} CPE_UPDATE= p${RUBY_PATCHLEVEL} USE_LDCONFIG= yes -USE_RUBY= yes RUBY_NO_BUILD_DEPENDS= yes RUBY_NO_RUN_DEPENDS= yes Index: lang/rubygem-ruby_language_server/Makefile =================================================================== --- lang/rubygem-ruby_language_server/Makefile +++ lang/rubygem-ruby_language_server/Makefile @@ -22,7 +22,6 @@ rubygem-sqlite3>=0:databases/rubygem-sqlite3 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/bsfilter/Makefile =================================================================== --- mail/bsfilter/Makefile +++ mail/bsfilter/Makefile @@ -13,8 +13,7 @@ RUN_DEPENDS= rubygem-gdbm>=2.0.0,2:databases/rubygem-gdbm NO_BUILD= yes -USE_RUBY= yes -USES= shebangfix tar:tgz +USES= ruby shebangfix tar:tgz SHEBANG_FILES= bsfilter/bsfilter OPTIONS_DEFINE= EXAMPLES Index: mail/lens/Makefile =================================================================== --- mail/lens/Makefile +++ mail/lens/Makefile @@ -9,8 +9,7 @@ COMMENT= Mail filter written in Ruby WWW= http://www.pitecan.com/Lens/ -USES= shebangfix -USE_RUBY= yes +USES= ruby shebangfix NO_ARCH= yes NO_BUILD= yes Index: mail/milter-manager/Makefile =================================================================== --- mail/milter-manager/Makefile +++ mail/milter-manager/Makefile @@ -17,11 +17,10 @@ rubygem-rexml>0:textproc/rubygem-rexml USES= compiler:c++11-lang gettext gmake gnome libtool pathfix \ - pkgconfig + pkgconfig ruby USE_GNOME= glib20 intltool USE_LDCONFIG= yes USE_RC_SUBR= milter-manager -USE_RUBY= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --with-html-dir=${DOCSDIR} \ Index: mail/rubygem-actionmailbox60/Makefile =================================================================== --- mail/rubygem-actionmailbox60/Makefile +++ mail/rubygem-actionmailbox60/Makefile @@ -19,7 +19,6 @@ rubygem-mail>=2.7.1,2:mail/rubygem-mail USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-actionmailbox61/Makefile =================================================================== --- mail/rubygem-actionmailbox61/Makefile +++ mail/rubygem-actionmailbox61/Makefile @@ -19,7 +19,6 @@ rubygem-mail>=2.7.1,2:mail/rubygem-mail USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-actionmailbox70/Makefile =================================================================== --- mail/rubygem-actionmailbox70/Makefile +++ mail/rubygem-actionmailbox70/Makefile @@ -22,7 +22,6 @@ rubygem-net-smtp>=0:mail/rubygem-net-smtp USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-actionmailer4/Makefile =================================================================== --- mail/rubygem-actionmailer4/Makefile +++ mail/rubygem-actionmailer4/Makefile @@ -18,7 +18,6 @@ rubygem-rails-dom-testing1>=1.0.5<2:textproc/rubygem-rails-dom-testing1 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-actionmailer5/Makefile =================================================================== --- mail/rubygem-actionmailer5/Makefile +++ mail/rubygem-actionmailer5/Makefile @@ -18,7 +18,6 @@ rubygem-rails-dom-testing-rails5>=2.0<3:textproc/rubygem-rails-dom-testing-rails5 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-actionmailer50/Makefile =================================================================== --- mail/rubygem-actionmailer50/Makefile +++ mail/rubygem-actionmailer50/Makefile @@ -18,7 +18,6 @@ rubygem-rails-dom-testing-rails50>=2.0<3:textproc/rubygem-rails-dom-testing-rails50 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-actionmailer52/Makefile =================================================================== --- mail/rubygem-actionmailer52/Makefile +++ mail/rubygem-actionmailer52/Makefile @@ -18,7 +18,6 @@ rubygem-rails-dom-testing-rails52>=2.0<3:textproc/rubygem-rails-dom-testing-rails52 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-actionmailer60/Makefile =================================================================== --- mail/rubygem-actionmailer60/Makefile +++ mail/rubygem-actionmailer60/Makefile @@ -18,7 +18,6 @@ rubygem-rails-dom-testing-rails60>=2.0<3:textproc/rubygem-rails-dom-testing-rails60 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-actionmailer61/Makefile =================================================================== --- mail/rubygem-actionmailer61/Makefile +++ mail/rubygem-actionmailer61/Makefile @@ -19,7 +19,6 @@ rubygem-rails-dom-testing-rails61>=2.0<3:textproc/rubygem-rails-dom-testing-rails61 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-actionmailer70/Makefile =================================================================== --- mail/rubygem-actionmailer70/Makefile +++ mail/rubygem-actionmailer70/Makefile @@ -22,7 +22,6 @@ rubygem-rails-dom-testing-rails70>=2.0<3:textproc/rubygem-rails-dom-testing-rails70 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-email_reply_parser-discourse/Makefile =================================================================== --- mail/rubygem-email_reply_parser-discourse/Makefile +++ mail/rubygem-email_reply_parser-discourse/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: mail/rubygem-email_reply_parser/Makefile =================================================================== --- mail/rubygem-email_reply_parser/Makefile +++ mail/rubygem-email_reply_parser/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-email_reply_trimmer/Makefile =================================================================== --- mail/rubygem-email_reply_trimmer/Makefile +++ mail/rubygem-email_reply_trimmer/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-exception_notification/Makefile =================================================================== --- mail/rubygem-exception_notification/Makefile +++ mail/rubygem-exception_notification/Makefile @@ -14,7 +14,6 @@ rubygem-activesupport52>=5.2<8:devel/rubygem-activesupport52 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-gitlab-mail_room/Makefile =================================================================== --- mail/rubygem-gitlab-mail_room/Makefile +++ mail/rubygem-gitlab-mail_room/Makefile @@ -17,7 +17,6 @@ rubygem-oauth2>=1.4.4<3:net/rubygem-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-mail/Makefile =================================================================== --- mail/rubygem-mail/Makefile +++ mail/rubygem-mail/Makefile @@ -15,7 +15,6 @@ RUN_DEPENDS= rubygem-mini_mime>=0.1.1:mail/rubygem-mini_mime USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-mail_room/Makefile =================================================================== --- mail/rubygem-mail_room/Makefile +++ mail/rubygem-mail_room/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-mailboxer/Makefile =================================================================== --- mail/rubygem-mailboxer/Makefile +++ mail/rubygem-mailboxer/Makefile @@ -14,7 +14,6 @@ rubygem-rails5>=5.0.0:www/rubygem-rails5 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-mailfactory/Makefile =================================================================== --- mail/rubygem-mailfactory/Makefile +++ mail/rubygem-mailfactory/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: mail/rubygem-mini_mime/Makefile =================================================================== --- mail/rubygem-mini_mime/Makefile +++ mail/rubygem-mini_mime/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-net-imap/Makefile =================================================================== --- mail/rubygem-net-imap/Makefile +++ mail/rubygem-net-imap/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-net-protocol>=0:net/rubygem-net-protocol USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-net-pop/Makefile =================================================================== --- mail/rubygem-net-pop/Makefile +++ mail/rubygem-net-pop/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-net-protocol>=0:net/rubygem-net-protocol USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-net-smtp/Makefile =================================================================== --- mail/rubygem-net-smtp/Makefile +++ mail/rubygem-net-smtp/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-net-protocol>=0:net/rubygem-net-protocol USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-pony/Makefile =================================================================== --- mail/rubygem-pony/Makefile +++ mail/rubygem-pony/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-mail>=2.0:mail/rubygem-mail USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-premailer-rails-rails5/Makefile =================================================================== --- mail/rubygem-premailer-rails-rails5/Makefile +++ mail/rubygem-premailer-rails-rails5/Makefile @@ -15,7 +15,6 @@ rubygem-premailer>=1.7.9<2:mail/rubygem-premailer USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-premailer-rails-rails52/Makefile =================================================================== --- mail/rubygem-premailer-rails-rails52/Makefile +++ mail/rubygem-premailer-rails-rails52/Makefile @@ -15,7 +15,6 @@ rubygem-premailer>=1.7.9<2:mail/rubygem-premailer USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-premailer-rails-rails60/Makefile =================================================================== --- mail/rubygem-premailer-rails-rails60/Makefile +++ mail/rubygem-premailer-rails-rails60/Makefile @@ -15,7 +15,6 @@ rubygem-premailer>=1.7.9<2:mail/rubygem-premailer USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-premailer-rails-rails61/Makefile =================================================================== --- mail/rubygem-premailer-rails-rails61/Makefile +++ mail/rubygem-premailer-rails-rails61/Makefile @@ -15,7 +15,6 @@ rubygem-premailer>=1.7.9<2:mail/rubygem-premailer USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-premailer-rails/Makefile =================================================================== --- mail/rubygem-premailer-rails/Makefile +++ mail/rubygem-premailer-rails/Makefile @@ -14,7 +14,6 @@ rubygem-premailer>=1.7.9<2:mail/rubygem-premailer USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-premailer/Makefile =================================================================== --- mail/rubygem-premailer/Makefile +++ mail/rubygem-premailer/Makefile @@ -15,7 +15,6 @@ rubygem-htmlentities>=4.0.0:textproc/rubygem-htmlentities USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-rmail/Makefile =================================================================== --- mail/rubygem-rmail/Makefile +++ mail/rubygem-rmail/Makefile @@ -9,7 +9,6 @@ LICENSE= BSD3CLAUSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-roadie-rails-rails4/Makefile =================================================================== --- mail/rubygem-roadie-rails-rails4/Makefile +++ mail/rubygem-roadie-rails-rails4/Makefile @@ -16,7 +16,6 @@ rubygem-roadie3>=3.1<4:mail/rubygem-roadie3 USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-roadie-rails-rails52/Makefile =================================================================== --- mail/rubygem-roadie-rails-rails52/Makefile +++ mail/rubygem-roadie-rails-rails52/Makefile @@ -15,7 +15,6 @@ rubygem-roadie3>=3.1:mail/rubygem-roadie3 USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-roadie/Makefile =================================================================== --- mail/rubygem-roadie/Makefile +++ mail/rubygem-roadie/Makefile @@ -14,7 +14,6 @@ rubygem-nokogiri>=1.8<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-roadie3/Makefile =================================================================== --- mail/rubygem-roadie3/Makefile +++ mail/rubygem-roadie3/Makefile @@ -15,7 +15,6 @@ rubygem-nokogiri>=1.8<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-ruby-qmail/Makefile =================================================================== --- mail/rubygem-ruby-qmail/Makefile +++ mail/rubygem-ruby-qmail/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rspec>=1.2.9:devel/rubygem-rspec NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: mail/rubygem-valid_email/Makefile =================================================================== --- mail/rubygem-valid_email/Makefile +++ mail/rubygem-valid_email/Makefile @@ -16,7 +16,6 @@ rubygem-simpleidn>=0:dns/rubygem-simpleidn USES= gem -USE_RUBY= yes NO_ARCH= yes Index: mail/rubygem-vmail/Makefile =================================================================== --- mail/rubygem-vmail/Makefile +++ mail/rubygem-vmail/Makefile @@ -19,7 +19,6 @@ vim:editors/vim NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/vmail bin/vmail_client bin/vmailsend Index: math/rubygem-algebra/Makefile =================================================================== --- math/rubygem-algebra/Makefile +++ math/rubygem-algebra/Makefile @@ -7,7 +7,6 @@ COMMENT= Library for mathematical computations WWW= https://github.com/kunishi/algebra-ruby2 -USE_RUBY= yes USES= gem .include Index: math/rubygem-bigdecimal/Makefile =================================================================== --- math/rubygem-bigdecimal/Makefile +++ math/rubygem-bigdecimal/Makefile @@ -10,6 +10,5 @@ LICENSE= RUBY USES= gem -USE_RUBY= yes .include Index: math/rubygem-enumerable-statistics/Makefile =================================================================== --- math/rubygem-enumerable-statistics/Makefile +++ math/rubygem-enumerable-statistics/Makefile @@ -11,6 +11,5 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes .include Index: math/rubygem-expression_parser/Makefile =================================================================== --- math/rubygem-expression_parser/Makefile +++ math/rubygem-expression_parser/Makefile @@ -9,7 +9,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: math/rubygem-fftw3/Makefile =================================================================== --- math/rubygem-fftw3/Makefile +++ math/rubygem-fftw3/Makefile @@ -10,7 +10,6 @@ RUN_DEPENDS= rubygem-narray>0:math/rubygem-narray LIB_DEPENDS= libfftw3.so:math/fftw3 -USE_RUBY= yes USES= gem .include Index: math/rubygem-mathn/Makefile =================================================================== --- math/rubygem-mathn/Makefile +++ math/rubygem-mathn/Makefile @@ -11,6 +11,5 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include Index: math/rubygem-matrix/Makefile =================================================================== --- math/rubygem-matrix/Makefile +++ math/rubygem-matrix/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: math/rubygem-mtrc/Makefile =================================================================== --- math/rubygem-mtrc/Makefile +++ math/rubygem-mtrc/Makefile @@ -13,6 +13,5 @@ USES= gem NO_ARCH= yes -USE_RUBY= yes .include Index: math/rubygem-narray/Makefile =================================================================== --- math/rubygem-narray/Makefile +++ math/rubygem-narray/Makefile @@ -7,7 +7,6 @@ COMMENT= Numerical N-dimensional array library for Ruby WWW= https://rubygems.org/gems/narray -USE_RUBY= yes USES= gem .include "${.CURDIR}/Makefile.version" Index: math/rubygem-narray_miss/Makefile =================================================================== --- math/rubygem-narray_miss/Makefile +++ math/rubygem-narray_miss/Makefile @@ -10,7 +10,6 @@ RUN_DEPENDS= rubygem-narray>0:math/rubygem-narray USES= gem -USE_RUBY= yes NO_ARCH= yes Index: math/rubygem-numru-misc/Makefile =================================================================== --- math/rubygem-numru-misc/Makefile +++ math/rubygem-numru-misc/Makefile @@ -10,7 +10,6 @@ RUN_DEPENDS= rubygem-narray>0:math/rubygem-narray \ rubygem-narray_miss>0:math/rubygem-narray_miss -USE_RUBY= yes USES= gem .include Index: math/rubygem-numru-units/Makefile =================================================================== --- math/rubygem-numru-units/Makefile +++ math/rubygem-numru-units/Makefile @@ -9,7 +9,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: math/rubygem-prime/Makefile =================================================================== --- math/rubygem-prime/Makefile +++ math/rubygem-prime/Makefile @@ -15,7 +15,6 @@ rubygem-singleton>=0:devel/rubygem-singleton USES= gem -USE_RUBY= yes NO_ARCH= yes Index: math/rubygem-rb-gsl/Makefile =================================================================== --- math/rubygem-rb-gsl/Makefile +++ math/rubygem-rb-gsl/Makefile @@ -14,7 +14,6 @@ LIB_DEPENDS= libgsl.so:math/gsl RUN_DEPENDS= rubygem-narray>=0.5.9:math/rubygem-narray -USE_RUBY= yes USES= gem .include Index: misc/inplace/Makefile =================================================================== --- misc/inplace/Makefile +++ misc/inplace/Makefile @@ -9,8 +9,7 @@ COMMENT= Tool to edit files in-place through given filter commands WWW= https://akinori.org/ #inplace -USES= tar:bzip2 uidfix shebangfix -USE_RUBY= yes +USES= tar:bzip2 ruby uidfix shebangfix MAKE_ARGS= PREFIX="${PREFIX}" MANPREFIX="${MANPREFIX}" MAKEFILE= BSDmakefile Index: misc/rubygem-dotenv-rails-rails4/Makefile =================================================================== --- misc/rubygem-dotenv-rails-rails4/Makefile +++ misc/rubygem-dotenv-rails-rails4/Makefile @@ -15,7 +15,6 @@ rubygem-railties4>=3.2:www/rubygem-railties4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: misc/rubygem-dotenv-rails-rails5/Makefile =================================================================== --- misc/rubygem-dotenv-rails-rails5/Makefile +++ misc/rubygem-dotenv-rails-rails5/Makefile @@ -15,7 +15,6 @@ rubygem-railties5>=3.2:www/rubygem-railties5 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: misc/rubygem-dotenv-rails-rails50/Makefile =================================================================== --- misc/rubygem-dotenv-rails-rails50/Makefile +++ misc/rubygem-dotenv-rails-rails50/Makefile @@ -15,7 +15,6 @@ rubygem-railties50>=3.2:www/rubygem-railties50 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: misc/rubygem-dotenv/Makefile =================================================================== --- misc/rubygem-dotenv/Makefile +++ misc/rubygem-dotenv/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: misc/rubygem-haversine_distance/Makefile =================================================================== --- misc/rubygem-haversine_distance/Makefile +++ misc/rubygem-haversine_distance/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: misc/rubygem-iesd/Makefile =================================================================== --- misc/rubygem-iesd/Makefile +++ misc/rubygem-iesd/Makefile @@ -10,7 +10,6 @@ LICENSE= BSD2CLAUSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: misc/rubygem-mime-types-data/Makefile =================================================================== --- misc/rubygem-mime-types-data/Makefile +++ misc/rubygem-mime-types-data/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/Licence.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: misc/rubygem-mime-types/Makefile =================================================================== --- misc/rubygem-mime-types/Makefile +++ misc/rubygem-mime-types/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-mime-types-data>=3.2015<4:misc/rubygem-mime-types-data USES= gem -USE_RUBY= yes NO_ARCH= yes Index: misc/rubygem-mimemagic/Makefile =================================================================== --- misc/rubygem-mimemagic/Makefile +++ misc/rubygem-mimemagic/Makefile @@ -15,7 +15,6 @@ shared-mime-info>=0:misc/shared-mime-info USES= gem -USE_RUBY= yes NO_ARCH= yes Index: misc/rubygem-octicons/Makefile =================================================================== --- misc/rubygem-octicons/Makefile +++ misc/rubygem-octicons/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-nokogiri>=1.6.3.1:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: misc/rubygem-rabbit/Makefile =================================================================== --- misc/rubygem-rabbit/Makefile +++ misc/rubygem-rabbit/Makefile @@ -28,7 +28,6 @@ NO_ARCH= yes USES= gem gettext -USE_RUBY= yes PLIST_FILES= bin/rabbit bin/rabbirc bin/rabbit-command bin/rabbit-slide \ bin/rabbit-theme Index: misc/rubygem-vpim/Makefile =================================================================== --- misc/rubygem-vpim/Makefile +++ misc/rubygem-vpim/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/reminder bin/rrule Index: multimedia/rubygem-av/Makefile =================================================================== --- multimedia/rubygem-av/Makefile +++ multimedia/rubygem-av/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-cocaine>=0.5.3:devel/rubygem-cocaine USES= gem -USE_RUBY= yes NO_ARCH= yes Index: multimedia/rubygem-clutter-gstreamer/Makefile =================================================================== --- multimedia/rubygem-clutter-gstreamer/Makefile +++ multimedia/rubygem-clutter-gstreamer/Makefile @@ -17,7 +17,6 @@ rubygem-gstreamer>=${PORTVERSION}:multimedia/rubygem-gstreamer USES= gem -USE_RUBY= yes NO_ARCH= yes Index: multimedia/rubygem-flvtool2/Makefile =================================================================== --- multimedia/rubygem-flvtool2/Makefile +++ multimedia/rubygem-flvtool2/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/flvtool2 Index: multimedia/rubygem-gstreamer/Makefile =================================================================== --- multimedia/rubygem-gstreamer/Makefile +++ multimedia/rubygem-gstreamer/Makefile @@ -14,6 +14,5 @@ RUN_DEPENDS= rubygem-gobject-introspection>=${PORTVERSION}:devel/rubygem-gobject-introspection USES= gem -USE_RUBY= yes .include Index: multimedia/rubygem-paperclip-av-transcoder-rails50/Makefile =================================================================== --- multimedia/rubygem-paperclip-av-transcoder-rails50/Makefile +++ multimedia/rubygem-paperclip-av-transcoder-rails50/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: multimedia/rubygem-paperclip-av-transcoder/Makefile =================================================================== --- multimedia/rubygem-paperclip-av-transcoder/Makefile +++ multimedia/rubygem-paperclip-av-transcoder/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: multimedia/rubygem-streamio-ffmpeg/Makefile =================================================================== --- multimedia/rubygem-streamio-ffmpeg/Makefile +++ multimedia/rubygem-streamio-ffmpeg/Makefile @@ -15,7 +15,6 @@ ffmpeg>=3.4.2,1:multimedia/ffmpeg USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net-im/mikutter/Makefile =================================================================== --- net-im/mikutter/Makefile +++ net-im/mikutter/Makefile @@ -34,8 +34,7 @@ rubygem-typed-array>=0.1.2:devel/rubygem-typed-array \ rubygem-unf>=0.1.4:textproc/rubygem-unf -USES= shebangfix -USE_RUBY= yes +USES= ruby shebangfix NO_ARCH= yes NO_BUILD= yes Index: net-im/rubygem-discordrb-webhooks-blackst0ne/Makefile =================================================================== --- net-im/rubygem-discordrb-webhooks-blackst0ne/Makefile +++ net-im/rubygem-discordrb-webhooks-blackst0ne/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-rest-client>=2.0:www/rubygem-rest-client USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net-im/rubygem-discordrb-webhooks/Makefile =================================================================== --- net-im/rubygem-discordrb-webhooks/Makefile +++ net-im/rubygem-discordrb-webhooks/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-rest-client>=2.0:www/rubygem-rest-client USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net-im/rubygem-hipchat/Makefile =================================================================== --- net-im/rubygem-hipchat/Makefile +++ net-im/rubygem-hipchat/Makefile @@ -14,7 +14,6 @@ rubygem-mimemagic>=0:misc/rubygem-mimemagic USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net-im/rubygem-lita/Makefile =================================================================== --- net-im/rubygem-lita/Makefile +++ net-im/rubygem-lita/Makefile @@ -24,7 +24,6 @@ rubygem-thor>=1.0:devel/rubygem-thor USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: net-im/rubygem-termtter/Makefile =================================================================== --- net-im/rubygem-termtter/Makefile +++ net-im/rubygem-termtter/Makefile @@ -20,7 +20,6 @@ rubygem-termcolor>=1.0<2:textproc/rubygem-termcolor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net-im/rubygem-tinder/Makefile =================================================================== --- net-im/rubygem-tinder/Makefile +++ net-im/rubygem-tinder/Makefile @@ -21,7 +21,6 @@ rubygem-twitter-stream>=0.1<1:net/rubygem-twitter-stream USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net-mgmt/rubygem-blimpy/Makefile =================================================================== --- net-mgmt/rubygem-blimpy/Makefile +++ net-mgmt/rubygem-blimpy/Makefile @@ -15,7 +15,6 @@ rubygem-thor>=0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net-mgmt/rubygem-checkson/Makefile =================================================================== --- net-mgmt/rubygem-checkson/Makefile +++ net-mgmt/rubygem-checkson/Makefile @@ -10,7 +10,6 @@ LICENSE= BSD3CLAUSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net-mgmt/rubygem-oxidized-script/Makefile =================================================================== --- net-mgmt/rubygem-oxidized-script/Makefile +++ net-mgmt/rubygem-oxidized-script/Makefile @@ -13,7 +13,6 @@ rubygem-slop3>=3.5:devel/rubygem-slop3 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net-mgmt/rubygem-oxidized-web/Makefile =================================================================== --- net-mgmt/rubygem-oxidized-web/Makefile +++ net-mgmt/rubygem-oxidized-web/Makefile @@ -23,7 +23,6 @@ rubygem-sinatra1>=1.4.6:www/rubygem-sinatra1 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net-mgmt/rubygem-oxidized/Makefile =================================================================== --- net-mgmt/rubygem-oxidized/Makefile +++ net-mgmt/rubygem-oxidized/Makefile @@ -19,7 +19,6 @@ rubygem-slop>=4.6<5:devel/rubygem-slop USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes USE_RC_SUBR= oxidized Index: net-mgmt/rubygem-riemann-client/Makefile =================================================================== --- net-mgmt/rubygem-riemann-client/Makefile +++ net-mgmt/rubygem-riemann-client/Makefile @@ -14,7 +14,6 @@ rubygem-mtrc>=0.0.4:math/rubygem-mtrc USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net-mgmt/rubygem-riemann-dash/Makefile =================================================================== --- net-mgmt/rubygem-riemann-dash/Makefile +++ net-mgmt/rubygem-riemann-dash/Makefile @@ -18,7 +18,6 @@ USES= gem NO_ARCH= yes -USE_RUBY= yes post-install: # move the public HTML files into DATADIR for webservers Index: net-mgmt/rubygem-riemann-rabbitmq/Makefile =================================================================== --- net-mgmt/rubygem-riemann-rabbitmq/Makefile +++ net-mgmt/rubygem-riemann-rabbitmq/Makefile @@ -15,7 +15,6 @@ rubygem-faraday0>=0.8.5:www/rubygem-faraday0 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net-mgmt/rubygem-riemann-tail/Makefile =================================================================== --- net-mgmt/rubygem-riemann-tail/Makefile +++ net-mgmt/rubygem-riemann-tail/Makefile @@ -16,7 +16,6 @@ rubygem-thor0>=0:devel/rubygem-thor0 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net-mgmt/rubygem-riemann-tools/Makefile =================================================================== --- net-mgmt/rubygem-riemann-tools/Makefile +++ net-mgmt/rubygem-riemann-tools/Makefile @@ -15,7 +15,6 @@ rubygem-riemann-client>=1.0:net-mgmt/rubygem-riemann-client USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net-mgmt/rubygem-snmp/Makefile =================================================================== --- net-mgmt/rubygem-snmp/Makefile +++ net-mgmt/rubygem-snmp/Makefile @@ -9,7 +9,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: net-mgmt/rubygem-visage-app/Makefile =================================================================== --- net-mgmt/rubygem-visage-app/Makefile +++ net-mgmt/rubygem-visage-app/Makefile @@ -18,7 +18,6 @@ rubygem-yajl-ruby>=1.1.0:devel/rubygem-yajl-ruby NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/visage-app Index: net/dtcp/Makefile =================================================================== --- net/dtcp/Makefile +++ net/dtcp/Makefile @@ -15,9 +15,8 @@ RUN_DEPENDS+= qpopauth:mail/qpopper .endif -USES= uidfix +USES= ruby uidfix USE_RC_SUBR= dtcpc dtcps -USE_RUBY= yes MAKE_ENV+= RUBY=${RUBY} SUB_LIST+= RUBY=${RUBY} Index: net/foreman-proxy/Makefile =================================================================== --- net/foreman-proxy/Makefile +++ net/foreman-proxy/Makefile @@ -21,7 +21,7 @@ rubygem-sinatra>=2.0:www/rubygem-sinatra \ curl:ftp/curl -USES= shebangfix tar:bzip2 +USES= ruby shebangfix tar:bzip2 OPTIONS_DEFINE= BMC PUPPET7 BMC_DESC= Depend on rubyipmi and redfish_client for BMC support @@ -30,7 +30,6 @@ NO_ARCH= yes NO_BUILD= yes USE_RC_SUBR= foreman-proxy -USE_RUBY= yes FOREMAN_PROXY_USER?= foreman_proxy FOREMAN_PROXY_GROUP?= foreman_proxy Index: net/rubygem-activestorage52/Makefile =================================================================== --- net/rubygem-activestorage52/Makefile +++ net/rubygem-activestorage52/Makefile @@ -16,7 +16,6 @@ rubygem-marcel>=1.0.0<1.1:devel/rubygem-marcel USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-activestorage60/Makefile =================================================================== --- net/rubygem-activestorage60/Makefile +++ net/rubygem-activestorage60/Makefile @@ -17,7 +17,6 @@ rubygem-marcel>=1.0<2:devel/rubygem-marcel USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-activestorage61/Makefile =================================================================== --- net/rubygem-activestorage61/Makefile +++ net/rubygem-activestorage61/Makefile @@ -19,7 +19,6 @@ rubygem-mini_mime>=1.1.0:mail/rubygem-mini_mime USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-activestorage70/Makefile =================================================================== --- net/rubygem-activestorage70/Makefile +++ net/rubygem-activestorage70/Makefile @@ -19,7 +19,6 @@ rubygem-mini_mime>=1.1.0:mail/rubygem-mini_mime USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-amazon-ec2/Makefile =================================================================== --- net/rubygem-amazon-ec2/Makefile +++ net/rubygem-amazon-ec2/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/awshell bin/ec2-gem-example.rb bin/ec2-gem-profile.rb bin/ec2sh bin/setup.rb Index: net/rubygem-amq-protocol/Makefile =================================================================== --- net/rubygem-amq-protocol/Makefile +++ net/rubygem-amq-protocol/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem python:env shebangfix -USE_RUBY= yes NO_ARCH= yes REINPLACE_ARGS= -i '' Index: net/rubygem-amqp-utils/Makefile =================================================================== --- net/rubygem-amqp-utils/Makefile +++ net/rubygem-amqp-utils/Makefile @@ -20,7 +20,6 @@ rubygem-trollop1>=1.16.2:devel/rubygem-trollop1 NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/amqp-deleteq bin/amqp-dequeue bin/amqp-enqueue \ Index: net/rubygem-amqp/Makefile =================================================================== --- net/rubygem-amqp/Makefile +++ net/rubygem-amqp/Makefile @@ -14,7 +14,6 @@ rubygem-eventmachine>=0:devel/rubygem-eventmachine USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-apollo_upload_server/Makefile =================================================================== --- net/rubygem-apollo_upload_server/Makefile +++ net/rubygem-apollo_upload_server/Makefile @@ -14,7 +14,6 @@ rubygem-graphql>=1.8:devel/rubygem-graphql USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-asset_sync/Makefile =================================================================== --- net/rubygem-asset_sync/Makefile +++ net/rubygem-asset_sync/Makefile @@ -15,7 +15,6 @@ rubygem-unf>=0:textproc/rubygem-unf USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-aws-s3/Makefile =================================================================== --- net/rubygem-aws-s3/Makefile +++ net/rubygem-aws-s3/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/s3sh Index: net/rubygem-aws-ses/Makefile =================================================================== --- net/rubygem-aws-ses/Makefile +++ net/rubygem-aws-ses/Makefile @@ -16,7 +16,6 @@ rubygem-xml-simple>=0:textproc/rubygem-xml-simple USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-azure-core/Makefile =================================================================== --- net/rubygem-azure-core/Makefile +++ net/rubygem-azure-core/Makefile @@ -15,7 +15,6 @@ rubygem-nokogiri>=1.6<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-azure/Makefile =================================================================== --- net/rubygem-azure/Makefile +++ net/rubygem-azure/Makefile @@ -21,7 +21,6 @@ rubygem-thor0>=0.19<1:devel/rubygem-thor0 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-beefcake/Makefile =================================================================== --- net/rubygem-beefcake/Makefile +++ net/rubygem-beefcake/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-bunny/Makefile =================================================================== --- net/rubygem-bunny/Makefile +++ net/rubygem-bunny/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-amq-protocol>=2.2.0:net/rubygem-amq-protocol NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: net/rubygem-cloudflare/Makefile =================================================================== --- net/rubygem-cloudflare/Makefile +++ net/rubygem-cloudflare/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-async-rest>=0.12.3<0.13:www/rubygem-async-rest USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-connection_pool/Makefile =================================================================== --- net/rubygem-connection_pool/Makefile +++ net/rubygem-connection_pool/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-docker-api/Makefile =================================================================== --- net/rubygem-docker-api/Makefile +++ net/rubygem-docker-api/Makefile @@ -14,7 +14,6 @@ rubygem-multi_json>=0:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes .include Index: net/rubygem-dogapi/Makefile =================================================================== --- net/rubygem-dogapi/Makefile +++ net/rubygem-dogapi/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-multi_json>=0:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-domain_name/Makefile =================================================================== --- net/rubygem-domain_name/Makefile +++ net/rubygem-domain_name/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-unf>=0.0.5<1.0.0:textproc/rubygem-unf USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-dropbox-sdk/Makefile =================================================================== --- net/rubygem-dropbox-sdk/Makefile +++ net/rubygem-dropbox-sdk/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-json>=0:devel/rubygem-json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-aliyun/Makefile =================================================================== --- net/rubygem-fog-aliyun/Makefile +++ net/rubygem-fog-aliyun/Makefile @@ -17,7 +17,6 @@ rubygem-xml-simple>=1.1<2:textproc/rubygem-xml-simple USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-atmos/Makefile =================================================================== --- net/rubygem-fog-atmos/Makefile +++ net/rubygem-fog-atmos/Makefile @@ -14,7 +14,6 @@ rubygem-fog-xml>=0:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-aws/Makefile =================================================================== --- net/rubygem-fog-aws/Makefile +++ net/rubygem-fog-aws/Makefile @@ -15,7 +15,6 @@ rubygem-fog-xml>=0.1<1:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-azure/Makefile =================================================================== --- net/rubygem-fog-azure/Makefile +++ net/rubygem-fog-azure/Makefile @@ -17,7 +17,6 @@ rubygem-fog-xml>=0.1<1:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-brightbox/Makefile =================================================================== --- net/rubygem-fog-brightbox/Makefile +++ net/rubygem-fog-brightbox/Makefile @@ -15,7 +15,6 @@ rubygem-fog-json>=0:devel/rubygem-fog-json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-cloudatcost/Makefile =================================================================== --- net/rubygem-fog-cloudatcost/Makefile +++ net/rubygem-fog-cloudatcost/Makefile @@ -15,7 +15,6 @@ rubygem-ipaddress>=0:net/rubygem-ipaddress USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-cloudstack/Makefile =================================================================== --- net/rubygem-fog-cloudstack/Makefile +++ net/rubygem-fog-cloudstack/Makefile @@ -15,7 +15,6 @@ rubygem-fog-xml>=0.1<1:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-digitalocean/Makefile =================================================================== --- net/rubygem-fog-digitalocean/Makefile +++ net/rubygem-fog-digitalocean/Makefile @@ -16,7 +16,6 @@ rubygem-ipaddress>=0.5:net/rubygem-ipaddress USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-dnsimple/Makefile =================================================================== --- net/rubygem-fog-dnsimple/Makefile +++ net/rubygem-fog-dnsimple/Makefile @@ -14,7 +14,6 @@ rubygem-fog-json>=0:devel/rubygem-fog-json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-dynect/Makefile =================================================================== --- net/rubygem-fog-dynect/Makefile +++ net/rubygem-fog-dynect/Makefile @@ -15,7 +15,6 @@ rubygem-fog-xml>=0:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-ecloud/Makefile =================================================================== --- net/rubygem-fog-ecloud/Makefile +++ net/rubygem-fog-ecloud/Makefile @@ -14,7 +14,6 @@ rubygem-fog-xml>=0:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-google/Makefile =================================================================== --- net/rubygem-fog-google/Makefile +++ net/rubygem-fog-google/Makefile @@ -24,7 +24,6 @@ rubygem-google-cloud-env>=1.2<2:net/rubygem-google-cloud-env USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-gridscale/Makefile =================================================================== --- net/rubygem-fog-gridscale/Makefile +++ net/rubygem-fog-gridscale/Makefile @@ -15,7 +15,6 @@ rubygem-fog-json>=0:devel/rubygem-fog-json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-internet-archive/Makefile =================================================================== --- net/rubygem-fog-internet-archive/Makefile +++ net/rubygem-fog-internet-archive/Makefile @@ -14,7 +14,6 @@ rubygem-fog-xml>=0:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-joyent/Makefile =================================================================== --- net/rubygem-fog-joyent/Makefile +++ net/rubygem-fog-joyent/Makefile @@ -15,7 +15,6 @@ rubygem-fog-json>=1.0:devel/rubygem-fog-json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-local/Makefile =================================================================== --- net/rubygem-fog-local/Makefile +++ net/rubygem-fog-local/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-fog-core>=1.27<3.0:devel/rubygem-fog-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-openstack/Makefile =================================================================== --- net/rubygem-fog-openstack/Makefile +++ net/rubygem-fog-openstack/Makefile @@ -14,7 +14,6 @@ rubygem-fog-json>=1.0:devel/rubygem-fog-json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-ovirt/Makefile =================================================================== --- net/rubygem-fog-ovirt/Makefile +++ net/rubygem-fog-ovirt/Makefile @@ -17,7 +17,6 @@ rubygem-ovirt-engine-sdk>=4.3.1:net/rubygem-ovirt-engine-sdk USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-powerdns/Makefile =================================================================== --- net/rubygem-fog-powerdns/Makefile +++ net/rubygem-fog-powerdns/Makefile @@ -15,7 +15,6 @@ rubygem-fog-xml>=0:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-profitbricks/Makefile =================================================================== --- net/rubygem-fog-profitbricks/Makefile +++ net/rubygem-fog-profitbricks/Makefile @@ -15,7 +15,6 @@ rubygem-fog-json>=1.0<2:devel/rubygem-fog-json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-rackspace/Makefile =================================================================== --- net/rubygem-fog-rackspace/Makefile +++ net/rubygem-fog-rackspace/Makefile @@ -16,7 +16,6 @@ rubygem-ipaddress>=0.8:net/rubygem-ipaddress USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-radosgw/Makefile =================================================================== --- net/rubygem-fog-radosgw/Makefile +++ net/rubygem-fog-radosgw/Makefile @@ -15,7 +15,6 @@ rubygem-fog-xml>=0.0.1:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-riakcs/Makefile =================================================================== --- net/rubygem-fog-riakcs/Makefile +++ net/rubygem-fog-riakcs/Makefile @@ -15,7 +15,6 @@ rubygem-fog-xml>=0:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-sakuracloud/Makefile =================================================================== --- net/rubygem-fog-sakuracloud/Makefile +++ net/rubygem-fog-sakuracloud/Makefile @@ -14,7 +14,6 @@ rubygem-fog-json>=0:devel/rubygem-fog-json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-serverlove/Makefile =================================================================== --- net/rubygem-fog-serverlove/Makefile +++ net/rubygem-fog-serverlove/Makefile @@ -14,7 +14,6 @@ rubygem-fog-json>=0:devel/rubygem-fog-json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-softlayer/Makefile =================================================================== --- net/rubygem-fog-softlayer/Makefile +++ net/rubygem-fog-softlayer/Makefile @@ -14,7 +14,6 @@ rubygem-fog-json>=0:devel/rubygem-fog-json NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: net/rubygem-fog-storm_on_demand/Makefile =================================================================== --- net/rubygem-fog-storm_on_demand/Makefile +++ net/rubygem-fog-storm_on_demand/Makefile @@ -14,7 +14,6 @@ rubygem-fog-json>=0:devel/rubygem-fog-json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-terremark/Makefile =================================================================== --- net/rubygem-fog-terremark/Makefile +++ net/rubygem-fog-terremark/Makefile @@ -14,7 +14,6 @@ rubygem-fog-xml>=0:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-vmfusion/Makefile =================================================================== --- net/rubygem-fog-vmfusion/Makefile +++ net/rubygem-fog-vmfusion/Makefile @@ -14,7 +14,6 @@ rubygem-fog-core>=0:devel/rubygem-fog-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-voxel/Makefile =================================================================== --- net/rubygem-fog-voxel/Makefile +++ net/rubygem-fog-voxel/Makefile @@ -14,7 +14,6 @@ rubygem-fog-xml>=0:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-vsphere/Makefile =================================================================== --- net/rubygem-fog-vsphere/Makefile +++ net/rubygem-fog-vsphere/Makefile @@ -14,7 +14,6 @@ rubygem-rbvmomi>=1.9<4:net/rubygem-rbvmomi USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-fog-xenserver/Makefile =================================================================== --- net/rubygem-fog-xenserver/Makefile +++ net/rubygem-fog-xenserver/Makefile @@ -15,7 +15,6 @@ rubygem-xmlrpc>=0:net/rubygem-xmlrpc USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-gitaly-proto/Makefile =================================================================== --- net/rubygem-gitaly-proto/Makefile +++ net/rubygem-gitaly-proto/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-grpc>=1.0:net/rubygem-grpc USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-gitaly/Makefile =================================================================== --- net/rubygem-gitaly/Makefile +++ net/rubygem-gitaly/Makefile @@ -13,7 +13,6 @@ gitaly>=15.3:devel/gitaly USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-gitlab-fog-azure-rm/Makefile =================================================================== --- net/rubygem-gitlab-fog-azure-rm/Makefile +++ net/rubygem-gitlab-fog-azure-rm/Makefile @@ -19,7 +19,6 @@ rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-gitlab-omniauth-openid-connect/Makefile =================================================================== --- net/rubygem-gitlab-omniauth-openid-connect/Makefile +++ net/rubygem-gitlab-omniauth-openid-connect/Makefile @@ -15,7 +15,6 @@ rubygem-openid_connect>=1.2<2.0:net/rubygem-openid_connect USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-gitlab_omniauth-ldap/Makefile =================================================================== --- net/rubygem-gitlab_omniauth-ldap/Makefile +++ net/rubygem-gitlab_omniauth-ldap/Makefile @@ -16,7 +16,6 @@ rubygem-rubyntlm>=0.5<1:net/rubygem-rubyntlm USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-google-cloud-bigquery/Makefile =================================================================== --- net/rubygem-google-cloud-bigquery/Makefile +++ net/rubygem-google-cloud-bigquery/Makefile @@ -18,7 +18,6 @@ rubygem-mini_mime>=1.0<2:mail/rubygem-mini_mime USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-google-cloud-bigtable-admin-v2/Makefile =================================================================== --- net/rubygem-google-cloud-bigtable-admin-v2/Makefile +++ net/rubygem-google-cloud-bigtable-admin-v2/Makefile @@ -15,7 +15,6 @@ rubygem-grpc-google-iam-v1>=1.1<2:devel/rubygem-grpc-google-iam-v1 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-google-cloud-bigtable-v2/Makefile =================================================================== --- net/rubygem-google-cloud-bigtable-v2/Makefile +++ net/rubygem-google-cloud-bigtable-v2/Makefile @@ -14,7 +14,6 @@ rubygem-google-cloud-errors>=1.0<2:net/rubygem-google-cloud-errors USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-google-cloud-bigtable/Makefile =================================================================== --- net/rubygem-google-cloud-bigtable/Makefile +++ net/rubygem-google-cloud-bigtable/Makefile @@ -15,7 +15,6 @@ rubygem-google-cloud-core>=1.5<2:net/rubygem-google-cloud-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-google-cloud-core/Makefile =================================================================== --- net/rubygem-google-cloud-core/Makefile +++ net/rubygem-google-cloud-core/Makefile @@ -14,7 +14,6 @@ rubygem-google-cloud-errors>=1.0<2:net/rubygem-google-cloud-errors USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-google-cloud-env/Makefile =================================================================== --- net/rubygem-google-cloud-env/Makefile +++ net/rubygem-google-cloud-env/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-faraday>=0.17.3<3.0:www/rubygem-faraday USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-google-cloud-errors/Makefile =================================================================== --- net/rubygem-google-cloud-errors/Makefile +++ net/rubygem-google-cloud-errors/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-google-cloud-logging-v2/Makefile =================================================================== --- net/rubygem-google-cloud-logging-v2/Makefile +++ net/rubygem-google-cloud-logging-v2/Makefile @@ -14,7 +14,6 @@ rubygem-google-cloud-errors>=1.0<2:net/rubygem-google-cloud-errors USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-google-cloud-logging/Makefile =================================================================== --- net/rubygem-google-cloud-logging/Makefile +++ net/rubygem-google-cloud-logging/Makefile @@ -16,7 +16,6 @@ rubygem-stackdriver-core>=1.3<2:net/rubygem-stackdriver-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-google-cloud-pubsub-v1/Makefile =================================================================== --- net/rubygem-google-cloud-pubsub-v1/Makefile +++ net/rubygem-google-cloud-pubsub-v1/Makefile @@ -15,7 +15,6 @@ rubygem-grpc-google-iam-v1>=1.1<2:devel/rubygem-grpc-google-iam-v1 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-google-cloud-pubsub/Makefile =================================================================== --- net/rubygem-google-cloud-pubsub/Makefile +++ net/rubygem-google-cloud-pubsub/Makefile @@ -16,7 +16,6 @@ rubygem-retriable>=3.1<4:devel/rubygem-retriable USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-google-cloud-spanner-admin-database-v1/Makefile =================================================================== --- net/rubygem-google-cloud-spanner-admin-database-v1/Makefile +++ net/rubygem-google-cloud-spanner-admin-database-v1/Makefile @@ -15,7 +15,6 @@ rubygem-grpc-google-iam-v1>=1.1<2:devel/rubygem-grpc-google-iam-v1 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-google-cloud-spanner-admin-instance-v1/Makefile =================================================================== --- net/rubygem-google-cloud-spanner-admin-instance-v1/Makefile +++ net/rubygem-google-cloud-spanner-admin-instance-v1/Makefile @@ -15,7 +15,6 @@ rubygem-grpc-google-iam-v1>=1.1<2:devel/rubygem-grpc-google-iam-v1 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-google-cloud-spanner-v1/Makefile =================================================================== --- net/rubygem-google-cloud-spanner-v1/Makefile +++ net/rubygem-google-cloud-spanner-v1/Makefile @@ -14,7 +14,6 @@ rubygem-google-cloud-errors>=1.0<2:net/rubygem-google-cloud-errors USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-google-cloud-spanner/Makefile =================================================================== --- net/rubygem-google-cloud-spanner/Makefile +++ net/rubygem-google-cloud-spanner/Makefile @@ -17,7 +17,6 @@ rubygem-google-cloud-spanner-v1>=0.2<1:net/rubygem-google-cloud-spanner-v1 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-google-cloud-storage/Makefile =================================================================== --- net/rubygem-google-cloud-storage/Makefile +++ net/rubygem-google-cloud-storage/Makefile @@ -19,7 +19,6 @@ rubygem-mini_mime>=1.0<2:mail/rubygem-mini_mime USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-grpc/Makefile =================================================================== --- net/rubygem-grpc/Makefile +++ net/rubygem-grpc/Makefile @@ -17,7 +17,6 @@ rubygem-googleapis-common-protos-types>=1.0<2:devel/rubygem-googleapis-common-protos-types USES= cpe gem gmake pkgconfig -USE_RUBY= yes MAKE_JOBS_UNSAFE= yes Index: net/rubygem-grpc142/Makefile =================================================================== --- net/rubygem-grpc142/Makefile +++ net/rubygem-grpc142/Makefile @@ -18,7 +18,6 @@ rubygem-googleapis-common-protos-types>=1.0<2:devel/rubygem-googleapis-common-protos-types USES= cpe gem gmake pkgconfig -USE_RUBY= yes MAKE_JOBS_UNSAFE= yes Index: net/rubygem-hangouts-chat/Makefile =================================================================== --- net/rubygem-hangouts-chat/Makefile +++ net/rubygem-hangouts-chat/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include Index: net/rubygem-http-parser/Makefile =================================================================== --- net/rubygem-http-parser/Makefile +++ net/rubygem-http-parser/Makefile @@ -13,6 +13,5 @@ RUN_DEPENDS= rubygem-ffi-compiler>=1.0<2.0:devel/rubygem-ffi-compiler USES= gem -USE_RUBY= yes .include Index: net/rubygem-http_parser.rb/Makefile =================================================================== --- net/rubygem-http_parser.rb/Makefile +++ net/rubygem-http_parser.rb/Makefile @@ -11,6 +11,5 @@ LICENSE_FILE= ${WRKSRC}/LICENSE-MIT USES= gem -USE_RUBY= yes .include Index: net/rubygem-httpauth/Makefile =================================================================== --- net/rubygem-httpauth/Makefile +++ net/rubygem-httpauth/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-ipaddr/Makefile =================================================================== --- net/rubygem-ipaddr/Makefile +++ net/rubygem-ipaddr/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-ipaddress/Makefile =================================================================== --- net/rubygem-ipaddress/Makefile +++ net/rubygem-ipaddress/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: net/rubygem-iproto/Makefile =================================================================== --- net/rubygem-iproto/Makefile +++ net/rubygem-iproto/Makefile @@ -13,7 +13,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: net/rubygem-kas-grpc/Makefile =================================================================== --- net/rubygem-kas-grpc/Makefile +++ net/rubygem-kas-grpc/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-grpc142>=1.0<2.0:net/rubygem-grpc142 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-lita-gems/Makefile =================================================================== --- net/rubygem-lita-gems/Makefile +++ net/rubygem-lita-gems/Makefile @@ -15,7 +15,6 @@ rubygem-lita>=2.6:net-im/rubygem-lita USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-macaddr/Makefile =================================================================== --- net/rubygem-macaddr/Makefile +++ net/rubygem-macaddr/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-systemu>=2.6.5<2.7:devel/rubygem-systemu USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-maxmind-db/Makefile =================================================================== --- net/rubygem-maxmind-db/Makefile +++ net/rubygem-maxmind-db/Makefile @@ -13,7 +13,6 @@ LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-mqtt/Makefile =================================================================== --- net/rubygem-mqtt/Makefile +++ net/rubygem-mqtt/Makefile @@ -12,6 +12,5 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes .include Index: net/rubygem-nats-pure/Makefile =================================================================== --- net/rubygem-nats-pure/Makefile +++ net/rubygem-nats-pure/Makefile @@ -10,7 +10,6 @@ LICENSE= APACHE20 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-net-ldap/Makefile =================================================================== --- net/rubygem-net-ldap/Makefile +++ net/rubygem-net-ldap/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/License.rdoc USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-net-netrc/Makefile =================================================================== --- net/rubygem-net-netrc/Makefile +++ net/rubygem-net-netrc/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: net/rubygem-net-ntp/Makefile =================================================================== --- net/rubygem-net-ntp/Makefile +++ net/rubygem-net-ntp/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-net-ping/Makefile =================================================================== --- net/rubygem-net-ping/Makefile +++ net/rubygem-net-ping/Makefile @@ -10,6 +10,5 @@ LICENSE= APACHE20 USES= gem -USE_RUBY= yes .include Index: net/rubygem-net-protocol/Makefile =================================================================== --- net/rubygem-net-protocol/Makefile +++ net/rubygem-net-protocol/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-timeout>=0:devel/rubygem-timeout USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-netrc/Makefile =================================================================== --- net/rubygem-netrc/Makefile +++ net/rubygem-netrc/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: net/rubygem-network_interface/Makefile =================================================================== --- net/rubygem-network_interface/Makefile +++ net/rubygem-network_interface/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes PLIST_FILES= bin/list_interfaces.rb Index: net/rubygem-nkf/Makefile =================================================================== --- net/rubygem-nkf/Makefile +++ net/rubygem-nkf/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-no_proxy_fix/Makefile =================================================================== --- net/rubygem-no_proxy_fix/Makefile +++ net/rubygem-no_proxy_fix/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-oauth/Makefile =================================================================== --- net/rubygem-oauth/Makefile +++ net/rubygem-oauth/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-oauth2/Makefile =================================================================== --- net/rubygem-oauth2/Makefile +++ net/rubygem-oauth2/Makefile @@ -18,7 +18,6 @@ rubygem-version_gem>=1.1<2:devel/rubygem-version_gem USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-oauth21/Makefile =================================================================== --- net/rubygem-oauth21/Makefile +++ net/rubygem-oauth21/Makefile @@ -18,7 +18,6 @@ rubygem-rack>=1.2,3<4,3:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-octokit/Makefile =================================================================== --- net/rubygem-octokit/Makefile +++ net/rubygem-octokit/Makefile @@ -14,7 +14,6 @@ rubygem-sawyer>=0.9<1:www/rubygem-sawyer USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-octopress-deploy/Makefile =================================================================== --- net/rubygem-octopress-deploy/Makefile +++ net/rubygem-octopress-deploy/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-colorator>=0:textproc/rubygem-colorator USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-omniauth-auth0/Makefile =================================================================== --- net/rubygem-omniauth-auth0/Makefile +++ net/rubygem-omniauth-auth0/Makefile @@ -13,7 +13,6 @@ rubygem-omniauth-oauth2>=1.4<2:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-omniauth-authentiq/Makefile =================================================================== --- net/rubygem-omniauth-authentiq/Makefile +++ net/rubygem-omniauth-authentiq/Makefile @@ -15,7 +15,6 @@ rubygem-omniauth-oauth2>=1.5:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-omniauth-azure-activedirectory-v2/Makefile =================================================================== --- net/rubygem-omniauth-azure-activedirectory-v2/Makefile +++ net/rubygem-omniauth-azure-activedirectory-v2/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-omniauth-oauth2>=1.7<3:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-omniauth-azure-oauth2/Makefile =================================================================== --- net/rubygem-omniauth-azure-oauth2/Makefile +++ net/rubygem-omniauth-azure-oauth2/Makefile @@ -15,7 +15,6 @@ rubygem-omniauth-oauth2>=1.4<2:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-omniauth-facebook/Makefile =================================================================== --- net/rubygem-omniauth-facebook/Makefile +++ net/rubygem-omniauth-facebook/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-omniauth-oauth2>=1.2:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-omniauth-github-discourse/Makefile =================================================================== --- net/rubygem-omniauth-github-discourse/Makefile +++ net/rubygem-omniauth-github-discourse/Makefile @@ -14,7 +14,6 @@ rubygem-omniauth-oauth2>=1.1<2:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-omniauth-github/Makefile =================================================================== --- net/rubygem-omniauth-github/Makefile +++ net/rubygem-omniauth-github/Makefile @@ -13,7 +13,6 @@ rubygem-omniauth-oauth2>=1.8<2:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-omniauth-google-oauth2/Makefile =================================================================== --- net/rubygem-omniauth-google-oauth2/Makefile +++ net/rubygem-omniauth-google-oauth2/Makefile @@ -15,7 +15,6 @@ rubygem-omniauth-oauth2>=1.5:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-omniauth-kerberos/Makefile =================================================================== --- net/rubygem-omniauth-kerberos/Makefile +++ net/rubygem-omniauth-kerberos/Makefile @@ -14,6 +14,5 @@ USES= gem NO_ARCH= yes -USE_RUBY= yes .include Index: net/rubygem-omniauth-oauth/Makefile =================================================================== --- net/rubygem-omniauth-oauth/Makefile +++ net/rubygem-omniauth-oauth/Makefile @@ -14,7 +14,6 @@ rubygem-omniauth1>=1.0<3:security/rubygem-omniauth1 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-omniauth-oauth2/Makefile =================================================================== --- net/rubygem-omniauth-oauth2/Makefile +++ net/rubygem-omniauth-oauth2/Makefile @@ -15,7 +15,6 @@ rubygem-omniauth>=1.9<3:security/rubygem-omniauth USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-omniauth-openid/Makefile =================================================================== --- net/rubygem-omniauth-openid/Makefile +++ net/rubygem-omniauth-openid/Makefile @@ -14,7 +14,6 @@ rubygem-rack-openid>=1.4.0<1.5:www/rubygem-rack-openid USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-omniauth-salesforce/Makefile =================================================================== --- net/rubygem-omniauth-salesforce/Makefile +++ net/rubygem-omniauth-salesforce/Makefile @@ -15,7 +15,6 @@ rubygem-omniauth-oauth2>=1.0<2:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-omniauth-twitter/Makefile =================================================================== --- net/rubygem-omniauth-twitter/Makefile +++ net/rubygem-omniauth-twitter/Makefile @@ -13,7 +13,6 @@ rubygem-rack>=0:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-omniauth-ultraauth/Makefile =================================================================== --- net/rubygem-omniauth-ultraauth/Makefile +++ net/rubygem-omniauth-ultraauth/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-omniauth_openid_connect>=0.3.0:net/rubygem-omniauth_openid_connect USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-omniauth_openid_connect/Makefile =================================================================== --- net/rubygem-omniauth_openid_connect/Makefile +++ net/rubygem-omniauth_openid_connect/Makefile @@ -16,7 +16,6 @@ rubygem-openid_connect>=1.1<2.0:net/rubygem-openid_connect USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-open-uri-cached/Makefile =================================================================== --- net/rubygem-open-uri-cached/Makefile +++ net/rubygem-open-uri-cached/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-open-uri/Makefile =================================================================== --- net/rubygem-open-uri/Makefile +++ net/rubygem-open-uri/Makefile @@ -16,7 +16,6 @@ rubygem-uri>=0:net/rubygem-uri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-openid_connect/Makefile =================================================================== --- net/rubygem-openid_connect/Makefile +++ net/rubygem-openid_connect/Makefile @@ -22,7 +22,6 @@ rubygem-webfinger>=1.0.1:devel/rubygem-webfinger USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-opennebula/Makefile =================================================================== --- net/rubygem-opennebula/Makefile +++ net/rubygem-opennebula/Makefile @@ -19,7 +19,6 @@ rubygem-xmlrpc>=0:net/rubygem-xmlrpc USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-orchestrator_client/Makefile =================================================================== --- net/rubygem-orchestrator_client/Makefile +++ net/rubygem-orchestrator_client/Makefile @@ -13,7 +13,6 @@ rubygem-net-http-persistent>=0:www/rubygem-net-http-persistent USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-ovirt-engine-sdk/Makefile =================================================================== --- net/rubygem-ovirt-engine-sdk/Makefile +++ net/rubygem-ovirt-engine-sdk/Makefile @@ -16,6 +16,5 @@ USES= gem gnome USE_GNOME= libxml2 -USE_RUBY= yes .include Index: net/rubygem-packetfu/Makefile =================================================================== --- net/rubygem-packetfu/Makefile +++ net/rubygem-packetfu/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: net/rubygem-pcaprub/Makefile =================================================================== --- net/rubygem-pcaprub/Makefile +++ net/rubygem-pcaprub/Makefile @@ -9,7 +9,6 @@ LICENSE= LGPL21 -USE_RUBY= yes USES= gem .include Index: net/rubygem-private_address_check/Makefile =================================================================== --- net/rubygem-private_address_check/Makefile +++ net/rubygem-private_address_check/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-proxifier/Makefile =================================================================== --- net/rubygem-proxifier/Makefile +++ net/rubygem-proxifier/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-qiniu/Makefile =================================================================== --- net/rubygem-qiniu/Makefile +++ net/rubygem-qiniu/Makefile @@ -15,7 +15,6 @@ rubygem-rexml>=3.2<4:textproc/rubygem-rexml USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-rabbiter/Makefile =================================================================== --- net/rubygem-rabbiter/Makefile +++ net/rubygem-rabbiter/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes PLIST_FILES= bin/rabbiter .include Index: net/rubygem-rbvmomi/Makefile =================================================================== --- net/rubygem-rbvmomi/Makefile +++ net/rubygem-rbvmomi/Makefile @@ -16,7 +16,6 @@ rubygem-optimist>=3.0<4:devel/rubygem-optimist USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-right_aws/Makefile =================================================================== --- net/rubygem-right_aws/Makefile +++ net/rubygem-right_aws/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-right_http_connection>=1.2.5:net/rubygem-right_http_connection USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-right_flexiscale/Makefile =================================================================== --- net/rubygem-right_flexiscale/Makefile +++ net/rubygem-right_flexiscale/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: net/rubygem-right_gogrid/Makefile =================================================================== --- net/rubygem-right_gogrid/Makefile +++ net/rubygem-right_gogrid/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-right_http_connection>=1.2.4:net/rubygem-right_http_connection USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-right_http_connection/Makefile =================================================================== --- net/rubygem-right_http_connection/Makefile +++ net/rubygem-right_http_connection/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-right_slicehost/Makefile =================================================================== --- net/rubygem-right_slicehost/Makefile +++ net/rubygem-right_slicehost/Makefile @@ -11,7 +11,6 @@ RUN_DEPENDS= rubygem-right_http_connection>=1.2.4:net/rubygem-right_http_connection USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-rsync/Makefile =================================================================== --- net/rubygem-rsync/Makefile +++ net/rubygem-rsync/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rsync:net/rsync NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: net/rubygem-ruby-growl/Makefile =================================================================== --- net/rubygem-ruby-growl/Makefile +++ net/rubygem-ruby-growl/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/growl Index: net/rubygem-ruby-openid/Makefile =================================================================== --- net/rubygem-ruby-openid/Makefile +++ net/rubygem-ruby-openid/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: net/rubygem-ruby-yadis/Makefile =================================================================== --- net/rubygem-ruby-yadis/Makefile +++ net/rubygem-ruby-yadis/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: net/rubygem-ruby_smb/Makefile =================================================================== --- net/rubygem-ruby_smb/Makefile +++ net/rubygem-ruby_smb/Makefile @@ -17,7 +17,6 @@ rubygem-windows_error>=0:devel/rubygem-windows_error USES= gem shebangfix -USE_RUBY= yes SHEBANG_FILES= examples/delete_file.rb \ examples/net_share_enum_all.rb \ examples/pipes.rb \ Index: net/rubygem-rubyntlm/Makefile =================================================================== --- net/rubygem-rubyntlm/Makefile +++ net/rubygem-rubyntlm/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-rubytter/Makefile =================================================================== --- net/rubygem-rubytter/Makefile +++ net/rubygem-rubytter/Makefile @@ -13,7 +13,6 @@ rubygem-oauth>=0.3.6:net/rubygem-oauth USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-rudy/Makefile =================================================================== --- net/rubygem-rudy/Makefile +++ net/rubygem-rudy/Makefile @@ -23,7 +23,6 @@ rubygem-storable>=0.8.6:devel/rubygem-storable \ rubygem-sysinfo>=0.7.3:devel/rubygem-sysinfo -USE_RUBY= yes USES= gem shebangfix PLIST_FILES= bin/rudy bin/rudy-ec2 bin/rudy-s3 bin/rudy-sdb SHEBANG_FILES= bin/* tryouts/exploration/machine.rb Index: net/rubygem-rye/Makefile =================================================================== --- net/rubygem-rye/Makefile +++ net/rubygem-rye/Makefile @@ -19,7 +19,6 @@ rubygem-sysinfo>=0.8.1:devel/rubygem-sysinfo NO_ARCH= yes -USE_RUBY= yes USES= gem shebangfix SHEBANG_FILES= try/*.rb tst/*.rb Index: net/rubygem-serverengine/Makefile =================================================================== --- net/rubygem-serverengine/Makefile +++ net/rubygem-serverengine/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-sigdump>=0.2.2:devel/rubygem-sigdump NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: net/rubygem-simple_oauth/Makefile =================================================================== --- net/rubygem-simple_oauth/Makefile +++ net/rubygem-simple_oauth/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-spamcheck/Makefile =================================================================== --- net/rubygem-spamcheck/Makefile +++ net/rubygem-spamcheck/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-grpc142>=1.0<2.0:net/rubygem-grpc142 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-stackdriver-core/Makefile =================================================================== --- net/rubygem-stackdriver-core/Makefile +++ net/rubygem-stackdriver-core/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-google-cloud-core>=1.2<2:net/rubygem-google-cloud-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-stompserver/Makefile =================================================================== --- net/rubygem-stompserver/Makefile +++ net/rubygem-stompserver/Makefile @@ -13,7 +13,6 @@ rubygem-hoe>=1.3.0:devel/rubygem-hoe USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-t/Makefile =================================================================== --- net/rubygem-t/Makefile +++ net/rubygem-t/Makefile @@ -20,7 +20,6 @@ rubygem-twitter>=6.0:net/rubygem-twitter USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-train-core/Makefile =================================================================== --- net/rubygem-train-core/Makefile +++ net/rubygem-train-core/Makefile @@ -19,7 +19,6 @@ rubygem-net-ssh6>=2.9<7.0:security/rubygem-net-ssh6 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-train-winrm/Makefile =================================================================== --- net/rubygem-train-winrm/Makefile +++ net/rubygem-train-winrm/Makefile @@ -15,7 +15,6 @@ rubygem-winrm-fs>=1.0<2:sysutils/rubygem-winrm-fs USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-train/Makefile =================================================================== --- net/rubygem-train/Makefile +++ net/rubygem-train/Makefile @@ -24,7 +24,6 @@ rubygem-train-winrm>=0.2<1:net/rubygem-train-winrm USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-tweetstream/Makefile =================================================================== --- net/rubygem-tweetstream/Makefile +++ net/rubygem-tweetstream/Makefile @@ -19,7 +19,6 @@ USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-twitter-stream/Makefile =================================================================== --- net/rubygem-twitter-stream/Makefile +++ net/rubygem-twitter-stream/Makefile @@ -16,7 +16,6 @@ rubygem-simple_oauth>=0.1.4:net/rubygem-simple_oauth USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-twitter/Makefile =================================================================== --- net/rubygem-twitter/Makefile +++ net/rubygem-twitter/Makefile @@ -23,7 +23,6 @@ rubygem-simple_oauth>=0.3.0<0.4:net/rubygem-simple_oauth USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-twitter4r/Makefile =================================================================== --- net/rubygem-twitter4r/Makefile +++ net/rubygem-twitter4r/Makefile @@ -14,7 +14,6 @@ rubygem-oauth>=0.4.1:net/rubygem-oauth USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-u2f/Makefile =================================================================== --- net/rubygem-u2f/Makefile +++ net/rubygem-u2f/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-u2f0/Makefile =================================================================== --- net/rubygem-u2f0/Makefile +++ net/rubygem-u2f0/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-uri-redis/Makefile =================================================================== --- net/rubygem-uri-redis/Makefile +++ net/rubygem-uri-redis/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-uri/Makefile =================================================================== --- net/rubygem-uri/Makefile +++ net/rubygem-uri/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-uri_template/Makefile =================================================================== --- net/rubygem-uri_template/Makefile +++ net/rubygem-uri_template/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: net/rubygem-whois/Makefile =================================================================== --- net/rubygem-whois/Makefile +++ net/rubygem-whois/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-activesupport4>=3:devel/rubygem-activesupport4 NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/whoisrb Index: net/rubygem-xmlrpc/Makefile =================================================================== --- net/rubygem-xmlrpc/Makefile +++ net/rubygem-xmlrpc/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-webrick>=0:www/rubygem-webrick USES= gem -USE_RUBY= yes NO_ARCH= yes Index: ports-mgmt/packagekit/Makefile =================================================================== --- ports-mgmt/packagekit/Makefile +++ ports-mgmt/packagekit/Makefile @@ -58,7 +58,7 @@ . if ${PORT_OPTIONS:MPORTS} RUN_DEPENDS+= ${LOCALBASE}/sbin/portupgrade:ports-mgmt/portupgrade -USE_RUBY= yes +USES+= ruby CONFIGURE_ARGS+=--enable-ports --with-default-backend=ports PLIST_SUB+= PORTS="" . else Index: ports-mgmt/portupgrade-devel/Makefile =================================================================== --- ports-mgmt/portupgrade-devel/Makefile +++ ports-mgmt/portupgrade-devel/Makefile @@ -16,14 +16,13 @@ CONFLICTS_INSTALL= portupgrade -USES= uidfix +USES= ruby uidfix USE_GITHUB= yes GH_ACCOUNT= freebsd GH_TAGNAME= 2.4.16 DIST_SUBDIR= ${PORTNAME} -USE_RUBY= yes USE_LDCONFIG= ${PREFIX}/lib/compat/pkg MAKE_ARGS= PREFIX="${PREFIX}" RUBY="${RUBY}" \ RUBY_SITELIBDIR="${RUBY_SITELIBDIR}" MKDIR="${MKDIR}" Index: ports-mgmt/portupgrade/Makefile =================================================================== --- ports-mgmt/portupgrade/Makefile +++ ports-mgmt/portupgrade/Makefile @@ -21,8 +21,7 @@ GH_ACCOUNT= freebsd DIST_SUBDIR= ${PORTNAME} -USES= uidfix -USE_RUBY= yes +USES= ruby uidfix USE_LDCONFIG= ${PREFIX}/lib/compat/pkg Index: print/rubygem-afm/Makefile =================================================================== --- print/rubygem-afm/Makefile +++ print/rubygem-afm/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: print/rubygem-color-tools/Makefile =================================================================== --- print/rubygem-color-tools/Makefile +++ print/rubygem-color-tools/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: print/rubygem-color/Makefile =================================================================== --- print/rubygem-color/Makefile +++ print/rubygem-color/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: print/rubygem-pdf-core/Makefile =================================================================== --- print/rubygem-pdf-core/Makefile +++ print/rubygem-pdf-core/Makefile @@ -14,7 +14,6 @@ LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: print/rubygem-pdf-reader/Makefile =================================================================== --- print/rubygem-pdf-reader/Makefile +++ print/rubygem-pdf-reader/Makefile @@ -17,7 +17,6 @@ rubygem-ttfunk>=0:print/rubygem-ttfunk USES= gem -USE_RUBY= yes NO_ARCH= yes Index: print/rubygem-pdf-writer/Makefile =================================================================== --- print/rubygem-pdf-writer/Makefile +++ print/rubygem-pdf-writer/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/techbook Index: print/rubygem-prawn-core/Makefile =================================================================== --- print/rubygem-prawn-core/Makefile +++ print/rubygem-prawn-core/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: print/rubygem-prawn-flexible-table/Makefile =================================================================== --- print/rubygem-prawn-flexible-table/Makefile +++ print/rubygem-prawn-flexible-table/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: print/rubygem-prawn-format/Makefile =================================================================== --- print/rubygem-prawn-format/Makefile +++ print/rubygem-prawn-format/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: print/rubygem-prawn-graph/Makefile =================================================================== --- print/rubygem-prawn-graph/Makefile +++ print/rubygem-prawn-graph/Makefile @@ -14,7 +14,6 @@ rubygem-prawn_shapes>=1.2:print/rubygem-prawn_shapes NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: print/rubygem-prawn-icon/Makefile =================================================================== --- print/rubygem-prawn-icon/Makefile +++ print/rubygem-prawn-icon/Makefile @@ -16,7 +16,6 @@ RUN_DEPENDS= rubygem-prawn>=1.1.0<3.0.0:print/rubygem-prawn USES= gem -USE_RUBY= yes NO_ARCH= yes Index: print/rubygem-prawn-js/Makefile =================================================================== --- print/rubygem-prawn-js/Makefile +++ print/rubygem-prawn-js/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: print/rubygem-prawn-layout/Makefile =================================================================== --- print/rubygem-prawn-layout/Makefile +++ print/rubygem-prawn-layout/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: print/rubygem-prawn-security/Makefile =================================================================== --- print/rubygem-prawn-security/Makefile +++ print/rubygem-prawn-security/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: print/rubygem-prawn-svg/Makefile =================================================================== --- print/rubygem-prawn-svg/Makefile +++ print/rubygem-prawn-svg/Makefile @@ -15,7 +15,6 @@ rubygem-rexml>=3.2<4:textproc/rubygem-rexml USES= gem -USE_RUBY= yes NO_ARCH= yes Index: print/rubygem-prawn-table/Makefile =================================================================== --- print/rubygem-prawn-table/Makefile +++ print/rubygem-prawn-table/Makefile @@ -16,7 +16,6 @@ RUN_DEPENDS= rubygem-prawn>=1.3.0<3.0.0:print/rubygem-prawn USES= gem -USE_RUBY= yes NO_ARCH= yes Index: print/rubygem-prawn-templates/Makefile =================================================================== --- print/rubygem-prawn-templates/Makefile +++ print/rubygem-prawn-templates/Makefile @@ -16,7 +16,6 @@ rubygem-prawn>=2.2<3:print/rubygem-prawn USES= gem -USE_RUBY= yes NO_ARCH= yes Index: print/rubygem-prawn/Makefile =================================================================== --- print/rubygem-prawn/Makefile +++ print/rubygem-prawn/Makefile @@ -17,7 +17,6 @@ rubygem-ttfunk>=1.7<2:print/rubygem-ttfunk USES= gem -USE_RUBY= yes NO_ARCH= yes Index: print/rubygem-prawn_shapes/Makefile =================================================================== --- print/rubygem-prawn_shapes/Makefile +++ print/rubygem-prawn_shapes/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: print/rubygem-rbpdf-font/Makefile =================================================================== --- print/rubygem-rbpdf-font/Makefile +++ print/rubygem-rbpdf-font/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: print/rubygem-rbpdf/Makefile =================================================================== --- print/rubygem-rbpdf/Makefile +++ print/rubygem-rbpdf/Makefile @@ -14,7 +14,6 @@ rubygem-rbpdf-font>=1.19.0<1.20:print/rubygem-rbpdf-font USES= gem -USE_RUBY= yes NO_ARCH= yes Index: print/rubygem-ttfunk/Makefile =================================================================== --- print/rubygem-ttfunk/Makefile +++ print/rubygem-ttfunk/Makefile @@ -14,7 +14,6 @@ LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: russian/rubygem-russian/Makefile =================================================================== --- russian/rubygem-russian/Makefile +++ russian/rubygem-russian/Makefile @@ -11,7 +11,6 @@ RUN_DEPENDS= rubygem-i18n>=0.5.0:devel/rubygem-i18n -USE_RUBY= yes USES= gem .include Index: science/rubygem-ai4r/Makefile =================================================================== --- science/rubygem-ai4r/Makefile +++ science/rubygem-ai4r/Makefile @@ -10,7 +10,6 @@ LICENSE= MPL11 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: science/rubygem-cdo/Makefile =================================================================== --- science/rubygem-cdo/Makefile +++ science/rubygem-cdo/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= cdo:science/cdo USES= gem -USE_RUBY= yes NO_ARCH= yes Index: science/rubygem-rgeo-geojson/Makefile =================================================================== --- science/rubygem-rgeo-geojson/Makefile +++ science/rubygem-rgeo-geojson/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rgeo>=1.0.0:science/rubygem-rgeo USES= gem -USE_RUBY= yes NO_ARCH= yes Index: science/rubygem-rgeo-proj4/Makefile =================================================================== --- science/rubygem-rgeo-proj4/Makefile +++ science/rubygem-rgeo-proj4/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-rgeo>=2.0<3:science/rubygem-rgeo USES= gem -USE_RUBY= yes CONFIGURE_ARGS= --with-proj-dir=${LOCALBASE} Index: science/rubygem-rgeo-shapefile/Makefile =================================================================== --- science/rubygem-rgeo-shapefile/Makefile +++ science/rubygem-rgeo-shapefile/Makefile @@ -14,7 +14,6 @@ rubygem-rgeo>=1.0:science/rubygem-rgeo USES= gem -USE_RUBY= yes NO_ARCH= yes Index: science/rubygem-rgeo/Makefile =================================================================== --- science/rubygem-rgeo/Makefile +++ science/rubygem-rgeo/Makefile @@ -13,6 +13,5 @@ LIB_DEPENDS= libgeos.so:graphics/geos USES= gem -USE_RUBY= yes .include Index: science/rubygem-ruby-dcl/Makefile =================================================================== --- science/rubygem-ruby-dcl/Makefile +++ science/rubygem-ruby-dcl/Makefile @@ -20,6 +20,5 @@ USES= gem gettext-runtime gnome xorg USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk20 pango USE_XORG= ice sm x11 -USE_RUBY= yes .include Index: science/rubygem-ruby-netcdf/Makefile =================================================================== --- science/rubygem-ruby-netcdf/Makefile +++ science/rubygem-ruby-netcdf/Makefile @@ -15,6 +15,5 @@ rubygem-narray_miss>=0:math/rubygem-narray_miss USES= gem -USE_RUBY= yes .include Index: security/metasploit/Makefile =================================================================== --- security/metasploit/Makefile +++ security/metasploit/Makefile @@ -101,13 +101,11 @@ rubygem-xmlrpc>=0:net/rubygem-xmlrpc \ rubygem-zeitwerk>=0:devel/rubygem-zeitwerk -USES= cpe go:run python shebangfix +USES= cpe go:run python ruby shebangfix CPE_VENDOR= rapid7 USE_GITHUB= yes GH_ACCOUNT= rapid7 GH_PROJECT= metasploit-framework -USE_RUBY= yes - SHEBANG_FILES= data/exploits/CVE-2017-17562/build.sh \ data/exploits/CVE-2017-17562/install-deps.sh \ data/exploits/CVE-2017-7494/build.sh \ Index: security/rubygem-acme-client/Makefile =================================================================== --- security/rubygem-acme-client/Makefile +++ security/rubygem-acme-client/Makefile @@ -15,7 +15,6 @@ rubygem-faraday-retry1>=1.0<2:www/rubygem-faraday-retry1 USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-aes_key_wrap/Makefile =================================================================== --- security/rubygem-aes_key_wrap/Makefile +++ security/rubygem-aes_key_wrap/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-airbrussh/Makefile =================================================================== --- security/rubygem-airbrussh/Makefile +++ security/rubygem-airbrussh/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-sshkit>=1.7.1:security/rubygem-sshkit USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-android_key_attestation/Makefile =================================================================== --- security/rubygem-android_key_attestation/Makefile +++ security/rubygem-android_key_attestation/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-attr_encrypted/Makefile =================================================================== --- security/rubygem-attr_encrypted/Makefile +++ security/rubygem-attr_encrypted/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-encryptor>=3.0.0:security/rubygem-encryptor NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-bcrypt-ruby/Makefile =================================================================== --- security/rubygem-bcrypt-ruby/Makefile +++ security/rubygem-bcrypt-ruby/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-bcrypt>=3.1.3:security/rubygem-bcrypt NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-bcrypt/Makefile =================================================================== --- security/rubygem-bcrypt/Makefile +++ security/rubygem-bcrypt/Makefile @@ -11,6 +11,5 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes .include Index: security/rubygem-bcrypt_pbkdf/Makefile =================================================================== --- security/rubygem-bcrypt_pbkdf/Makefile +++ security/rubygem-bcrypt_pbkdf/Makefile @@ -11,6 +11,5 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes .include Index: security/rubygem-cose/Makefile =================================================================== --- security/rubygem-cose/Makefile +++ security/rubygem-cose/Makefile @@ -14,7 +14,6 @@ rubygem-openssl-signature_algorithm>=1.0<2:security/rubygem-openssl-signature_algorithm USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-declarative_policy/Makefile =================================================================== --- security/rubygem-declarative_policy/Makefile +++ security/rubygem-declarative_policy/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-devise-two-factor-rails5/Makefile =================================================================== --- security/rubygem-devise-two-factor-rails5/Makefile +++ security/rubygem-devise-two-factor-rails5/Makefile @@ -18,7 +18,6 @@ rubygem-rotp>=6.0<7:devel/rubygem-rotp USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-devise-two-factor-rails61/Makefile =================================================================== --- security/rubygem-devise-two-factor-rails61/Makefile +++ security/rubygem-devise-two-factor-rails61/Makefile @@ -18,7 +18,6 @@ rubygem-rotp>=6.0<7:devel/rubygem-rotp USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-devise-two-factor-rails70/Makefile =================================================================== --- security/rubygem-devise-two-factor-rails70/Makefile +++ security/rubygem-devise-two-factor-rails70/Makefile @@ -17,7 +17,6 @@ rubygem-rotp>=6.0<7:devel/rubygem-rotp USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-devise-two-factor/Makefile =================================================================== --- security/rubygem-devise-two-factor/Makefile +++ security/rubygem-devise-two-factor/Makefile @@ -17,7 +17,6 @@ rubygem-rotp>=6.0<7:devel/rubygem-rotp USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-devise_pam_authenticatable2/Makefile =================================================================== --- security/rubygem-devise_pam_authenticatable2/Makefile +++ security/rubygem-devise_pam_authenticatable2/Makefile @@ -14,7 +14,6 @@ rubygem-rpam2>=4.0:security/rubygem-rpam2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-digest-crc/Makefile =================================================================== --- security/rubygem-digest-crc/Makefile +++ security/rubygem-digest-crc/Makefile @@ -13,6 +13,5 @@ RUN_DEPENDS= rubygem-rake>=12.0.0<14.0.0:devel/rubygem-rake USES= gem -USE_RUBY= yes .include Index: security/rubygem-digest/Makefile =================================================================== --- security/rubygem-digest/Makefile +++ security/rubygem-digest/Makefile @@ -12,6 +12,5 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include Index: security/rubygem-doorkeeper-openid_connect/Makefile =================================================================== --- security/rubygem-doorkeeper-openid_connect/Makefile +++ security/rubygem-doorkeeper-openid_connect/Makefile @@ -15,7 +15,6 @@ rubygem-json-jwt115>=1.11:www/rubygem-json-jwt115 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-doorkeeper-rails5/Makefile =================================================================== --- security/rubygem-doorkeeper-rails5/Makefile +++ security/rubygem-doorkeeper-rails5/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-railties5>=5:www/rubygem-railties5 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-doorkeeper-rails50/Makefile =================================================================== --- security/rubygem-doorkeeper-rails50/Makefile +++ security/rubygem-doorkeeper-rails50/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-railties50>=5:www/rubygem-railties50 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-doorkeeper/Makefile =================================================================== --- security/rubygem-doorkeeper/Makefile +++ security/rubygem-doorkeeper/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-railties61>=5:www/rubygem-railties61 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-ed25519/Makefile =================================================================== --- security/rubygem-ed25519/Makefile +++ security/rubygem-ed25519/Makefile @@ -11,6 +11,5 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes .include Index: security/rubygem-ed2551912/Makefile =================================================================== --- security/rubygem-ed2551912/Makefile +++ security/rubygem-ed2551912/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes PORTSCOUT= limit:^1\.2\. Index: security/rubygem-encryptor/Makefile =================================================================== --- security/rubygem-encryptor/Makefile +++ security/rubygem-encryptor/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-ezcrypto/Makefile =================================================================== --- security/rubygem-ezcrypto/Makefile +++ security/rubygem-ezcrypto/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-googleauth/Makefile =================================================================== --- security/rubygem-googleauth/Makefile +++ security/rubygem-googleauth/Makefile @@ -18,7 +18,6 @@ rubygem-signet>=0.16<2:security/rubygem-signet USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-gpgme/Makefile =================================================================== --- security/rubygem-gpgme/Makefile +++ security/rubygem-gpgme/Makefile @@ -15,7 +15,6 @@ RUN_DEPENDS= gpgme-config:security/gpgme USES= gem shebangfix -USE_RUBY= yes CONFIGURE_ARGS= --use-system-libraries Index: security/rubygem-gpgr/Makefile =================================================================== --- security/rubygem-gpgr/Makefile +++ security/rubygem-gpgr/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= gpg:security/gnupg NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-gssapi/Makefile =================================================================== --- security/rubygem-gssapi/Makefile +++ security/rubygem-gssapi/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ffi>=1.0.1:devel/rubygem-ffi NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-haiti-hash/Makefile =================================================================== --- security/rubygem-haiti-hash/Makefile +++ security/rubygem-haiti-hash/Makefile @@ -14,7 +14,6 @@ rubygem-paint>=2.2<3:devel/rubygem-paint USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-hkdf/Makefile =================================================================== --- security/rubygem-hkdf/Makefile +++ security/rubygem-hkdf/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-hkdf0/Makefile =================================================================== --- security/rubygem-hkdf0/Makefile +++ security/rubygem-hkdf0/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-hrr_rb_ssh-ed25519/Makefile =================================================================== --- security/rubygem-hrr_rb_ssh-ed25519/Makefile +++ security/rubygem-hrr_rb_ssh-ed25519/Makefile @@ -15,6 +15,5 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes .include Index: security/rubygem-hrr_rb_ssh/Makefile =================================================================== --- security/rubygem-hrr_rb_ssh/Makefile +++ security/rubygem-hrr_rb_ssh/Makefile @@ -12,6 +12,5 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes .include Index: security/rubygem-lockbox/Makefile =================================================================== --- security/rubygem-lockbox/Makefile +++ security/rubygem-lockbox/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-metasploit-aggregator/Makefile =================================================================== --- security/rubygem-metasploit-aggregator/Makefile +++ security/rubygem-metasploit-aggregator/Makefile @@ -13,7 +13,6 @@ rubygem-rex-arch>=0:security/rubygem-rex-arch NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/metasploit-aggregator Index: security/rubygem-metasploit-concern/Makefile =================================================================== --- security/rubygem-metasploit-concern/Makefile +++ security/rubygem-metasploit-concern/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-metasploit-credential/Makefile =================================================================== --- security/rubygem-metasploit-credential/Makefile +++ security/rubygem-metasploit-credential/Makefile @@ -22,6 +22,5 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes .include Index: security/rubygem-metasploit-model/Makefile =================================================================== --- security/rubygem-metasploit-model/Makefile +++ security/rubygem-metasploit-model/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-metasploit-payloads/Makefile =================================================================== --- security/rubygem-metasploit-payloads/Makefile +++ security/rubygem-metasploit-payloads/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes NO_ARCH_IGNORE= libndkstager.so Index: security/rubygem-metasploit_data_models/Makefile =================================================================== --- security/rubygem-metasploit_data_models/Makefile +++ security/rubygem-metasploit_data_models/Makefile @@ -22,7 +22,6 @@ rubygem-webrick>=0:www/rubygem-webrick NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-metasploit_payloads-mettle/Makefile =================================================================== --- security/rubygem-metasploit_payloads-mettle/Makefile +++ security/rubygem-metasploit_payloads-mettle/Makefile @@ -10,7 +10,6 @@ LICENSE= BSD3CLAUSE USES= gem -USE_RUBY= yes NO_ARCH= yes STRIP= Index: security/rubygem-nessus_rest/Makefile =================================================================== --- security/rubygem-nessus_rest/Makefile +++ security/rubygem-nessus_rest/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-net-scp/Makefile =================================================================== --- security/rubygem-net-scp/Makefile +++ security/rubygem-net-scp/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-net-ssh6>=2.6.5<7.0.0:security/rubygem-net-ssh6 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-net-scp1/Makefile =================================================================== --- security/rubygem-net-scp1/Makefile +++ security/rubygem-net-scp1/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-net-ssh>=2.6.5:security/rubygem-net-ssh USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-net-sftp/Makefile =================================================================== --- security/rubygem-net-sftp/Makefile +++ security/rubygem-net-sftp/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-net-ssh6>=5.0.0<7.0.0:security/rubygem-net-ssh6 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-net-sftp2/Makefile =================================================================== --- security/rubygem-net-sftp2/Makefile +++ security/rubygem-net-sftp2/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-net-ssh>=2.6.5:security/rubygem-net-ssh USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-net-ssh-gateway/Makefile =================================================================== --- security/rubygem-net-ssh-gateway/Makefile +++ security/rubygem-net-ssh-gateway/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-net-ssh>=4.0.0,2:security/rubygem-net-ssh USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-net-ssh-krb/Makefile =================================================================== --- security/rubygem-net-ssh-krb/Makefile +++ security/rubygem-net-ssh-krb/Makefile @@ -14,7 +14,6 @@ rubygem-net-ssh>=2.0:security/rubygem-net-ssh USES= gem -USE_RUBY= yes NO_ARCH= yes .include Index: security/rubygem-net-ssh-multi/Makefile =================================================================== --- security/rubygem-net-ssh-multi/Makefile +++ security/rubygem-net-ssh-multi/Makefile @@ -14,7 +14,6 @@ rubygem-net-ssh-gateway>=1.2.0:security/rubygem-net-ssh-gateway NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-net-ssh/Makefile =================================================================== --- security/rubygem-net-ssh/Makefile +++ security/rubygem-net-ssh/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-net-ssh5/Makefile =================================================================== --- security/rubygem-net-ssh5/Makefile +++ security/rubygem-net-ssh5/Makefile @@ -13,7 +13,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem shebangfix -USE_RUBY= yes OPTIONS_DEFINE= PROMPT_PASSPHRASES OPTIONS_DEFAULT=PROMPT_PASSPHRASES Index: security/rubygem-net-ssh6/Makefile =================================================================== --- security/rubygem-net-ssh6/Makefile +++ security/rubygem-net-ssh6/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-net-telnet/Makefile =================================================================== --- security/rubygem-net-telnet/Makefile +++ security/rubygem-net-telnet/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem shebangfix SHEBANG_FILES= bin/setup Index: security/rubygem-nexpose/Makefile =================================================================== --- security/rubygem-nexpose/Makefile +++ security/rubygem-nexpose/Makefile @@ -12,6 +12,5 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes .include Index: security/rubygem-nmap-parser/Makefile =================================================================== --- security/rubygem-nmap-parser/Makefile +++ security/rubygem-nmap-parser/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-omniauth-alicloud/Makefile =================================================================== --- security/rubygem-omniauth-alicloud/Makefile +++ security/rubygem-omniauth-alicloud/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-omniauth-oauth2>=1.7<2:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-omniauth-atlassian-oauth2/Makefile =================================================================== --- security/rubygem-omniauth-atlassian-oauth2/Makefile +++ security/rubygem-omniauth-atlassian-oauth2/Makefile @@ -14,7 +14,6 @@ rubygem-omniauth-oauth2>=1.5:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-omniauth-bitbucket/Makefile =================================================================== --- security/rubygem-omniauth-bitbucket/Makefile +++ security/rubygem-omniauth-bitbucket/Makefile @@ -15,7 +15,6 @@ rubygem-omniauth-oauth>=1.0<2:net/rubygem-omniauth-oauth USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-omniauth-cas/Makefile =================================================================== --- security/rubygem-omniauth-cas/Makefile +++ security/rubygem-omniauth-cas/Makefile @@ -15,7 +15,6 @@ rubygem-omniauth1>=1.2<2:security/rubygem-omniauth1 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-omniauth-cas3-oauth2/Makefile =================================================================== --- security/rubygem-omniauth-cas3-oauth2/Makefile +++ security/rubygem-omniauth-cas3-oauth2/Makefile @@ -16,7 +16,6 @@ rubygem-omniauth>=1.2<3:security/rubygem-omniauth USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-omniauth-cas3/Makefile =================================================================== --- security/rubygem-omniauth-cas3/Makefile +++ security/rubygem-omniauth-cas3/Makefile @@ -16,7 +16,6 @@ rubygem-omniauth1>=1.2<2:security/rubygem-omniauth1 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-omniauth-dingtalk-oauth2/Makefile =================================================================== --- security/rubygem-omniauth-dingtalk-oauth2/Makefile +++ security/rubygem-omniauth-dingtalk-oauth2/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-omniauth-oauth2>=1.7<3:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-omniauth-gitlab/Makefile =================================================================== --- security/rubygem-omniauth-gitlab/Makefile +++ security/rubygem-omniauth-gitlab/Makefile @@ -14,7 +14,6 @@ rubygem-omniauth-oauth2>=1.8.0<1.9:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-omniauth-jwt/Makefile =================================================================== --- security/rubygem-omniauth-jwt/Makefile +++ security/rubygem-omniauth-jwt/Makefile @@ -15,7 +15,6 @@ rubygem-omniauth1>=1.1<2:security/rubygem-omniauth1 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-omniauth-multipassword/Makefile =================================================================== --- security/rubygem-omniauth-multipassword/Makefile +++ security/rubygem-omniauth-multipassword/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-omniauth1>=1.0<2:security/rubygem-omniauth1 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-omniauth-oauth2-generic/Makefile =================================================================== --- security/rubygem-omniauth-oauth2-generic/Makefile +++ security/rubygem-omniauth-oauth2-generic/Makefile @@ -14,7 +14,6 @@ rubygem-rake>=0:devel/rubygem-rake USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-omniauth-saml/Makefile =================================================================== --- security/rubygem-omniauth-saml/Makefile +++ security/rubygem-omniauth-saml/Makefile @@ -14,7 +14,6 @@ rubygem-ruby-saml>=1.12<2:security/rubygem-ruby-saml USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-omniauth-shibboleth/Makefile =================================================================== --- security/rubygem-omniauth-shibboleth/Makefile +++ security/rubygem-omniauth-shibboleth/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-omniauth1>=1.0.0:security/rubygem-omniauth1 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-omniauth/Makefile =================================================================== --- security/rubygem-omniauth/Makefile +++ security/rubygem-omniauth/Makefile @@ -15,7 +15,6 @@ rubygem-rack-protection>=0:www/rubygem-rack-protection USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-omniauth1/Makefile =================================================================== --- security/rubygem-omniauth1/Makefile +++ security/rubygem-omniauth1/Makefile @@ -15,7 +15,6 @@ rubygem-rack>=1.6.2,3<3,3:www/rubygem-rack USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-openssl-ccm/Makefile =================================================================== --- security/rubygem-openssl-ccm/Makefile +++ security/rubygem-openssl-ccm/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-openssl-cmac/Makefile =================================================================== --- security/rubygem-openssl-cmac/Makefile +++ security/rubygem-openssl-cmac/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-openssl-signature_algorithm/Makefile =================================================================== --- security/rubygem-openssl-signature_algorithm/Makefile +++ security/rubygem-openssl-signature_algorithm/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-openssl/Makefile =================================================================== --- security/rubygem-openssl/Makefile +++ security/rubygem-openssl/Makefile @@ -13,7 +13,6 @@ LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE.txt USES= cpe gem ssl -USE_RUBY= yes CPE_VENDOR= ruby-lang Index: security/rubygem-openssl2/Makefile =================================================================== --- security/rubygem-openssl2/Makefile +++ security/rubygem-openssl2/Makefile @@ -16,7 +16,6 @@ RUN_DEPENDS= rubygem-ipaddr>=0:net/rubygem-ipaddr USES= cpe gem ssl -USE_RUBY= yes CPE_VENDOR= ruby-lang Index: security/rubygem-openvas-omp/Makefile =================================================================== --- security/rubygem-openvas-omp/Makefile +++ security/rubygem-openvas-omp/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-origami/Makefile =================================================================== --- security/rubygem-origami/Makefile +++ security/rubygem-origami/Makefile @@ -16,6 +16,5 @@ USES= gem shebangfix SHEBANG_FILES= examples/*/*.rb -USE_RUBY= yes .include Index: security/rubygem-pbkdf2-ruby/Makefile =================================================================== --- security/rubygem-pbkdf2-ruby/Makefile +++ security/rubygem-pbkdf2-ruby/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-pundit/Makefile =================================================================== --- security/rubygem-pundit/Makefile +++ security/rubygem-pundit/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-activesupport5>=3.0.0:devel/rubygem-activesupport5 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-pyu-ruby-sasl/Makefile =================================================================== --- security/rubygem-pyu-ruby-sasl/Makefile +++ security/rubygem-pyu-ruby-sasl/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-rack-oauth2/Makefile =================================================================== --- security/rubygem-rack-oauth2/Makefile +++ security/rubygem-rack-oauth2/Makefile @@ -17,7 +17,6 @@ rubygem-rack>=2.1.0:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-razorback-scriptNugget/Makefile =================================================================== --- security/rubygem-razorback-scriptNugget/Makefile +++ security/rubygem-razorback-scriptNugget/Makefile @@ -10,7 +10,6 @@ WWW= http://razorbacktm.sourceforge.net/ NO_ARCH= yes -USE_RUBY= yes USES= gem shebangfix SHEBANG_FILES= lib/razorback.rb Index: security/rubygem-rbnacl-libsodium/Makefile =================================================================== --- security/rubygem-rbnacl-libsodium/Makefile +++ security/rubygem-rbnacl-libsodium/Makefile @@ -13,7 +13,6 @@ USES= gem libtool USE_LDCONFIG= yes -USE_RUBY= yes post-install: ( cd ${WRKSRC} && \ Index: security/rubygem-rbnacl/Makefile =================================================================== --- security/rubygem-rbnacl/Makefile +++ security/rubygem-rbnacl/Makefile @@ -14,6 +14,5 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes .include Index: security/rubygem-recog/Makefile =================================================================== --- security/rubygem-recog/Makefile +++ security/rubygem-recog/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-nokogiri>=0:textproc/rubygem-nokogiri USES= gem python:env shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= update_cpes.py .vscode/bin/monitor-recog-fingerprints.sh Index: security/rubygem-rex-arch/Makefile =================================================================== --- security/rubygem-rex-arch/Makefile +++ security/rubygem-rex-arch/Makefile @@ -14,6 +14,5 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes .include Index: security/rubygem-rex-bin_tools/Makefile =================================================================== --- security/rubygem-rex-bin_tools/Makefile +++ security/rubygem-rex-bin_tools/Makefile @@ -19,7 +19,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/msfbinscan \ Index: security/rubygem-rex-core/Makefile =================================================================== --- security/rubygem-rex-core/Makefile +++ security/rubygem-rex-core/Makefile @@ -12,6 +12,5 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes .include Index: security/rubygem-rex-encoder/Makefile =================================================================== --- security/rubygem-rex-encoder/Makefile +++ security/rubygem-rex-encoder/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-rex-exploitation/Makefile =================================================================== --- security/rubygem-rex-exploitation/Makefile +++ security/rubygem-rex-exploitation/Makefile @@ -19,7 +19,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-rex-java/Makefile =================================================================== --- security/rubygem-rex-java/Makefile +++ security/rubygem-rex-java/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-rex-mime/Makefile =================================================================== --- security/rubygem-rex-mime/Makefile +++ security/rubygem-rex-mime/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-rex-nop/Makefile =================================================================== --- security/rubygem-rex-nop/Makefile +++ security/rubygem-rex-nop/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-rex-ole/Makefile =================================================================== --- security/rubygem-rex-ole/Makefile +++ security/rubygem-rex-ole/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-rex-powershell/Makefile =================================================================== --- security/rubygem-rex-powershell/Makefile +++ security/rubygem-rex-powershell/Makefile @@ -15,7 +15,6 @@ rubygem-ruby-rc4>=0:security/rubygem-ruby-rc4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-rex-random_identifier/Makefile =================================================================== --- security/rubygem-rex-random_identifier/Makefile +++ security/rubygem-rex-random_identifier/Makefile @@ -14,6 +14,5 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes .include Index: security/rubygem-rex-registry/Makefile =================================================================== --- security/rubygem-rex-registry/Makefile +++ security/rubygem-rex-registry/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-rex-rop_builder/Makefile =================================================================== --- security/rubygem-rex-rop_builder/Makefile +++ security/rubygem-rex-rop_builder/Makefile @@ -16,7 +16,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/msfrop Index: security/rubygem-rex-socket/Makefile =================================================================== --- security/rubygem-rex-socket/Makefile +++ security/rubygem-rex-socket/Makefile @@ -14,6 +14,5 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes .include Index: security/rubygem-rex-sslscan/Makefile =================================================================== --- security/rubygem-rex-sslscan/Makefile +++ security/rubygem-rex-sslscan/Makefile @@ -16,6 +16,5 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes .include Index: security/rubygem-rex-struct2/Makefile =================================================================== --- security/rubygem-rex-struct2/Makefile +++ security/rubygem-rex-struct2/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-rex-text/Makefile =================================================================== --- security/rubygem-rex-text/Makefile +++ security/rubygem-rex-text/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-rex-zip/Makefile =================================================================== --- security/rubygem-rex-zip/Makefile +++ security/rubygem-rex-zip/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-roauth/Makefile =================================================================== --- security/rubygem-roauth/Makefile +++ security/rubygem-roauth/Makefile @@ -9,7 +9,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-rpam2/Makefile =================================================================== --- security/rubygem-rpam2/Makefile +++ security/rubygem-rpam2/Makefile @@ -10,6 +10,5 @@ LICENSE= MIT USES= gem -USE_RUBY= yes .include Index: security/rubygem-ruby-hmac/Makefile =================================================================== --- security/rubygem-ruby-hmac/Makefile +++ security/rubygem-ruby-hmac/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-ruby-rc4/Makefile =================================================================== --- security/rubygem-ruby-rc4/Makefile +++ security/rubygem-ruby-rc4/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-ruby-saml/Makefile =================================================================== --- security/rubygem-ruby-saml/Makefile +++ security/rubygem-ruby-saml/Makefile @@ -14,7 +14,6 @@ rubygem-rexml>=0:textproc/rubygem-rexml USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-safety_net_attestation/Makefile =================================================================== --- security/rubygem-safety_net_attestation/Makefile +++ security/rubygem-safety_net_attestation/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-jwt>=2.0<3:www/rubygem-jwt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-scrypt/Makefile =================================================================== --- security/rubygem-scrypt/Makefile +++ security/rubygem-scrypt/Makefile @@ -13,6 +13,5 @@ RUN_DEPENDS= rubygem-ffi-compiler>=1.0<2.0:devel/rubygem-ffi-compiler USES= gem -USE_RUBY= yes .include Index: security/rubygem-securecompare/Makefile =================================================================== --- security/rubygem-securecompare/Makefile +++ security/rubygem-securecompare/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: security/rubygem-securerandom/Makefile =================================================================== --- security/rubygem-securerandom/Makefile +++ security/rubygem-securerandom/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-signet/Makefile =================================================================== --- security/rubygem-signet/Makefile +++ security/rubygem-signet/Makefile @@ -16,7 +16,6 @@ rubygem-multi_json>=1.10<2:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-six/Makefile =================================================================== --- security/rubygem-six/Makefile +++ security/rubygem-six/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-ssh_data/Makefile =================================================================== --- security/rubygem-ssh_data/Makefile +++ security/rubygem-ssh_data/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-sshkey/Makefile =================================================================== --- security/rubygem-sshkey/Makefile +++ security/rubygem-sshkey/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-sshkit/Makefile =================================================================== --- security/rubygem-sshkit/Makefile +++ security/rubygem-sshkit/Makefile @@ -14,7 +14,6 @@ rubygem-net-ssh>=2.8.0,2:security/rubygem-net-ssh USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-sslshake/Makefile =================================================================== --- security/rubygem-sslshake/Makefile +++ security/rubygem-sslshake/Makefile @@ -10,7 +10,6 @@ LICENSE= MPL20 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-ssrf_filter/Makefile =================================================================== --- security/rubygem-ssrf_filter/Makefile +++ security/rubygem-ssrf_filter/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-timfel-krb5/Makefile =================================================================== --- security/rubygem-timfel-krb5/Makefile +++ security/rubygem-timfel-krb5/Makefile @@ -10,7 +10,6 @@ BUILD_DEPENDS= krb5>0:security/krb5 RUN_DEPENDS= krb5>0:security/krb5 -USE_RUBY= yes USES= gem .include Index: security/rubygem-tpm-key_attestation/Makefile =================================================================== --- security/rubygem-tpm-key_attestation/Makefile +++ security/rubygem-tpm-key_attestation/Makefile @@ -14,7 +14,6 @@ rubygem-openssl-signature_algorithm>=1.0<2:security/rubygem-openssl-signature_algorithm USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-twitter_oauth/Makefile =================================================================== --- security/rubygem-twitter_oauth/Makefile +++ security/rubygem-twitter_oauth/Makefile @@ -15,7 +15,6 @@ rubygem-oauth>=0.4.7:net/rubygem-oauth USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-unix-crypt/Makefile =================================================================== --- security/rubygem-unix-crypt/Makefile +++ security/rubygem-unix-crypt/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes PLIST_FILES= bin/mkunixcrypt Index: security/rubygem-vault/Makefile =================================================================== --- security/rubygem-vault/Makefile +++ security/rubygem-vault/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-aws-sigv4>=0:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/rubygem-webauthn/Makefile =================================================================== --- security/rubygem-webauthn/Makefile +++ security/rubygem-webauthn/Makefile @@ -22,7 +22,6 @@ rubygem-tpm-key_attestation>=0.10.0<0.11:security/rubygem-tpm-key_attestation USES= gem shebangfix -USE_RUBY= yes SHEBANG_FILES= script/ci/install-openssl script/ci/install-ruby NO_ARCH= yes Index: security/rubygem-webpush/Makefile =================================================================== --- security/rubygem-webpush/Makefile +++ security/rubygem-webpush/Makefile @@ -14,7 +14,6 @@ rubygem-jwt>=2.0<3:www/rubygem-jwt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: security/whatweb/Makefile =================================================================== --- security/whatweb/Makefile +++ security/whatweb/Makefile @@ -13,10 +13,8 @@ USE_GITHUB= yes GH_TUPLE= urbanadventurer:WhatWeb:f467aa2 -USES= cpe +USES= cpe ruby:run CPE_VENDOR= morningstarsecurity -USE_RUBY= yes -RUBY_NO_BUILD_DEPENDS= yes NO_BUILD= yes NO_ARCH= yes PORTDOCS= CHANGELOG INSTALL README whatweb.xsl Index: shells/rubygem-shellwords/Makefile =================================================================== --- shells/rubygem-shellwords/Makefile +++ shells/rubygem-shellwords/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/ck4up/Makefile =================================================================== --- sysutils/ck4up/Makefile +++ sysutils/ck4up/Makefile @@ -12,8 +12,7 @@ NO_BUILD= yes NO_ARCH= yes -USE_RUBY= yes -RUBY_NO_BUILD_DEPENDS= yes +USES= ruby:run PORTEXAMPLES= ck4up.conf Index: sysutils/dtrace-toolkit/Makefile =================================================================== --- sysutils/dtrace-toolkit/Makefile +++ sysutils/dtrace-toolkit/Makefile @@ -10,12 +10,11 @@ LICENSE= CDDL LICENSE_FILE= ${WRKSRC}/Docs/cddl1.txt -USES= perl5 python shebangfix +USES= perl5 python ruby shebangfix USE_GITHUB= yes GH_ACCOUNT= opendtrace GH_PROJECT= toolkit GH_TAGNAME= ec23e25c8995bfa50cd7c0058129f1f489fdabb4 -USE_RUBY= yes SHEBANG_FILES= Apps/shellsnoop \ Code/Perl/func_abc.pl \ Code/Perl/func_malloc.pl \ Index: sysutils/facter/Makefile =================================================================== --- sysutils/facter/Makefile +++ sysutils/facter/Makefile @@ -23,10 +23,9 @@ PLIST_SUB= PORTVERSION="${PORTVERSION}" -USES= cmake:noninja compiler:c++11-lib cpe ssl +USES= cmake:noninja compiler:c++11-lib cpe ruby ssl CPE_VENDOR= puppet USE_LDCONFIG= yes -USE_RUBY= yes CMAKE_ARGS+= -DMAN_PATH=${MANPREFIX}/man CMAKE_OFF= ENABLE_CXX_WERROR Index: sysutils/libchk/Makefile =================================================================== --- sysutils/libchk/Makefile +++ sysutils/libchk/Makefile @@ -10,8 +10,7 @@ LICENSE= BSD2CLAUSE -USES= tar:bzip2 uidfix -USE_RUBY= yes +USES= ruby tar:bzip2 uidfix MAKE_ARGS= PREFIX="${PREFIX}" Index: sysutils/mcollective/Makefile =================================================================== --- sysutils/mcollective/Makefile +++ sysutils/mcollective/Makefile @@ -15,10 +15,9 @@ RUN_DEPENDS= rubygem-stomp>=0:devel/rubygem-stomp -USES= cpe shebangfix +USES= cpe ruby shebangfix CPE_VENDOR= puppet NO_BUILD= yes -USE_RUBY= yes USE_RC_SUBR= mcollectived SHEBANG_FILES= bin/mcollectived bin/mco Index: sysutils/mmve/Makefile =================================================================== --- sysutils/mmve/Makefile +++ sysutils/mmve/Makefile @@ -12,10 +12,9 @@ RUN_DEPENDS= rubygem-baf>=0.11.0:devel/rubygem-baf -USES= shebangfix +USES= ruby shebangfix SHEBANG_FILES= bin/mmve -USE_RUBY= yes NO_BUILD= yes NO_ARCH= yes Index: sysutils/mnrpes/Makefile =================================================================== --- sysutils/mnrpes/Makefile +++ sysutils/mnrpes/Makefile @@ -11,7 +11,7 @@ RUN_DEPENDS= mcollective>=2:sysutils/mcollective \ rubygem-rufus-scheduler>=0.1:devel/rubygem-rufus-scheduler -USE_RUBY= yes +USES= ruby USE_GITHUB= yes GH_ACCOUNT= nullDowntimeLtd GH_TAGNAME= 3f9942c Index: sysutils/pdumpfs/Makefile =================================================================== --- sysutils/pdumpfs/Makefile +++ sysutils/pdumpfs/Makefile @@ -11,8 +11,7 @@ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -USE_RUBY= yes -USES= shebangfix +USES= ruby shebangfix NO_ARCH= yes SHEBANG_FILES= ${WRKSRC}/pdumpfs.in Index: sysutils/puppet-lint/Makefile =================================================================== --- sysutils/puppet-lint/Makefile +++ sysutils/puppet-lint/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes PLIST_FILES= bin/puppet-lint NO_ARCH= yes Index: sysutils/puppet6/Makefile =================================================================== --- sysutils/puppet6/Makefile +++ sysutils/puppet6/Makefile @@ -35,7 +35,6 @@ PLIST_SUB= PORTVERSION="${PORTVERSION}" NO_ARCH= yes NO_BUILD= yes -USE_RUBY= yes USE_RC_SUBR= puppet PORTDOCS= LICENSE README.md PORTEXAMPLES= * Index: sysutils/puppet7/Makefile =================================================================== --- sysutils/puppet7/Makefile +++ sysutils/puppet7/Makefile @@ -30,7 +30,6 @@ PLIST_SUB= PORTVERSION="${PORTVERSION}" NO_ARCH= yes NO_BUILD= yes -USE_RUBY= yes USE_RC_SUBR= puppet PORTDOCS= LICENSE README.md PORTEXAMPLES= * Index: sysutils/puppetserver6/Makefile =================================================================== --- sysutils/puppetserver6/Makefile +++ sysutils/puppetserver6/Makefile @@ -20,11 +20,10 @@ rubygem-semantic_puppet>=1:devel/rubygem-semantic_puppet \ sudo>=1:security/sudo -USES= shebangfix +USES= ruby shebangfix USE_RC_SUBR= puppetserver USE_JAVA= yes -USE_RUBY= yes NO_ARCH= yes NO_BUILD= yes JAVA_VERSION= 1.8+ Index: sysutils/puppetserver7/Makefile =================================================================== --- sysutils/puppetserver7/Makefile +++ sysutils/puppetserver7/Makefile @@ -20,11 +20,10 @@ rubygem-semantic_puppet>=1:devel/rubygem-semantic_puppet \ sudo>=1:security/sudo -USES= shebangfix +USES= ruby shebangfix USE_RC_SUBR= puppetserver USE_JAVA= yes -USE_RUBY= yes NO_ARCH= yes NO_BUILD= yes JAVA_VERSION= 1.8+ Index: sysutils/rhc/Makefile =================================================================== --- sysutils/rhc/Makefile +++ sysutils/rhc/Makefile @@ -21,7 +21,6 @@ rubygem-open4>0:devel/rubygem-open4 NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/rhc Index: sysutils/rubygem-backup/Makefile =================================================================== --- sysutils/rubygem-backup/Makefile +++ sysutils/rubygem-backup/Makefile @@ -75,7 +75,6 @@ rubygem-xml-simple>=1.1.4:textproc/rubygem-xml-simple USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-bolt/Makefile =================================================================== --- sysutils/rubygem-bolt/Makefile +++ sysutils/rubygem-bolt/Makefile @@ -31,7 +31,6 @@ rubygem-winrm>=2.0:sysutils/rubygem-winrm USES= gem shebangfix -USE_RUBY= yes ruby_OLD_CMD+= /opt/puppetlabs/puppet/bin/ruby SHEBANG_FILES= libexec/* Index: sysutils/rubygem-bosh-gen/Makefile =================================================================== --- sysutils/rubygem-bosh-gen/Makefile +++ sysutils/rubygem-bosh-gen/Makefile @@ -20,7 +20,6 @@ rubygem-thor>=0:devel/rubygem-thor USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-bundler/Makefile =================================================================== --- sysutils/rubygem-bundler/Makefile +++ sysutils/rubygem-bundler/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-bundler_ext/Makefile =================================================================== --- sysutils/rubygem-bundler_ext/Makefile +++ sysutils/rubygem-bundler_ext/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-bundler>=0:sysutils/rubygem-bundler USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-capistrano-ext/Makefile =================================================================== --- sysutils/rubygem-capistrano-ext/Makefile +++ sysutils/rubygem-capistrano-ext/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-capistrano>=1.0.0:sysutils/rubygem-capistrano USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-capistrano-harrow/Makefile =================================================================== --- sysutils/rubygem-capistrano-harrow/Makefile +++ sysutils/rubygem-capistrano-harrow/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-capistrano/Makefile =================================================================== --- sysutils/rubygem-capistrano/Makefile +++ sysutils/rubygem-capistrano/Makefile @@ -16,7 +16,6 @@ rubygem-sshkit>=1.9.0:security/rubygem-sshkit USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-chef-bin/Makefile =================================================================== --- sysutils/rubygem-chef-bin/Makefile +++ sysutils/rubygem-chef-bin/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-chef>=${PORTVERSION}:sysutils/rubygem-chef USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-chef-cleanroom/Makefile =================================================================== --- sysutils/rubygem-chef-cleanroom/Makefile +++ sysutils/rubygem-chef-cleanroom/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-chef-config/Makefile =================================================================== --- sysutils/rubygem-chef-config/Makefile +++ sysutils/rubygem-chef-config/Makefile @@ -18,7 +18,6 @@ rubygem-tomlrb1>=1.2<2:textproc/rubygem-tomlrb1 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-chef-telemetry/Makefile =================================================================== --- sysutils/rubygem-chef-telemetry/Makefile +++ sysutils/rubygem-chef-telemetry/Makefile @@ -15,7 +15,6 @@ rubygem-ffi-yajl>=2.2<3:devel/rubygem-ffi-yajl USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-chef-utils/Makefile =================================================================== --- sysutils/rubygem-chef-utils/Makefile +++ sysutils/rubygem-chef-utils/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-chef-vault/Makefile =================================================================== --- sysutils/rubygem-chef-vault/Makefile +++ sysutils/rubygem-chef-vault/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-chef-zero/Makefile =================================================================== --- sysutils/rubygem-chef-zero/Makefile +++ sysutils/rubygem-chef-zero/Makefile @@ -19,7 +19,6 @@ rubygem-webrick>=0:www/rubygem-webrick USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-chef/Makefile =================================================================== --- sysutils/rubygem-chef/Makefile +++ sysutils/rubygem-chef/Makefile @@ -48,7 +48,6 @@ rubygem-uuidtools>=2.1.5<3.0:devel/rubygem-uuidtools USES= cpe gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-choria-mcorpc-support/Makefile =================================================================== --- sysutils/rubygem-choria-mcorpc-support/Makefile +++ sysutils/rubygem-choria-mcorpc-support/Makefile @@ -10,7 +10,6 @@ LICENSE= APACHE20 USES= gem -USE_RUBY= yes RUN_DEPENDS= choria>=0.20.1:sysutils/choria \ rubygem-nats-pure>=0.6<0.8.0:net/rubygem-nats-pure \ Index: sysutils/rubygem-facter/Makefile =================================================================== --- sysutils/rubygem-facter/Makefile +++ sysutils/rubygem-facter/Makefile @@ -23,7 +23,6 @@ USES= cpe gem CPE_VENDOR= puppet -USE_RUBY= yes CONFLICTS_INSTALL= facter # bin/facter Index: sysutils/rubygem-fluent-mixin-plaintextformatter/Makefile =================================================================== --- sysutils/rubygem-fluent-mixin-plaintextformatter/Makefile +++ sysutils/rubygem-fluent-mixin-plaintextformatter/Makefile @@ -13,7 +13,6 @@ rubygem-fluentd>0:sysutils/rubygem-fluentd \ rubygem-ltsv>0:textproc/rubygem-ltsv -USE_RUBY= yes USES= gem .include Index: sysutils/rubygem-fluent-plugin-config-expander/Makefile =================================================================== --- sysutils/rubygem-fluent-plugin-config-expander/Makefile +++ sysutils/rubygem-fluent-plugin-config-expander/Makefile @@ -11,7 +11,6 @@ RUN_DEPENDS= rubygem-fluentd>0:sysutils/rubygem-fluentd -USE_RUBY= yes USES= gem .include Index: sysutils/rubygem-fluent-plugin-file-alternative/Makefile =================================================================== --- sysutils/rubygem-fluent-plugin-file-alternative/Makefile +++ sysutils/rubygem-fluent-plugin-file-alternative/Makefile @@ -11,7 +11,6 @@ rubygem-fluentd>0:sysutils/rubygem-fluentd \ rubygem-fluent-mixin-plaintextformatter>0:sysutils/rubygem-fluent-mixin-plaintextformatter -USE_RUBY= yes USES= gem .include Index: sysutils/rubygem-fluent-plugin-tail-asis/Makefile =================================================================== --- sysutils/rubygem-fluent-plugin-tail-asis/Makefile +++ sysutils/rubygem-fluent-plugin-tail-asis/Makefile @@ -10,7 +10,6 @@ RUN_DEPENDS= \ rubygem-fluentd>0:sysutils/rubygem-fluentd -USE_RUBY= yes USES= gem .include Index: sysutils/rubygem-fluentd/Makefile =================================================================== --- sysutils/rubygem-fluentd/Makefile +++ sysutils/rubygem-fluentd/Makefile @@ -29,7 +29,6 @@ "@sample etc/fluentd/fluent.conf.sample" PLIST_DIRS= etc/fluentd/plugin USES= cpe gem -USE_RUBY= yes USE_RC_SUBR= fluentd USERS= fluentd GROUPS= fluentd Index: sysutils/rubygem-fssm/Makefile =================================================================== --- sysutils/rubygem-fssm/Makefile +++ sysutils/rubygem-fssm/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: sysutils/rubygem-god/Makefile =================================================================== --- sysutils/rubygem-god/Makefile +++ sysutils/rubygem-god/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USE_RUBY= yes USES= gem CONFLICTS_INSTALL= coreutils # bin/god Index: sysutils/rubygem-guard-compat/Makefile =================================================================== --- sysutils/rubygem-guard-compat/Makefile +++ sysutils/rubygem-guard-compat/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-guard-cucumber/Makefile =================================================================== --- sysutils/rubygem-guard-cucumber/Makefile +++ sysutils/rubygem-guard-cucumber/Makefile @@ -14,7 +14,6 @@ rubygem-nenv>=0.1:devel/rubygem-nenv USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-guard-livereload/Makefile =================================================================== --- sysutils/rubygem-guard-livereload/Makefile +++ sysutils/rubygem-guard-livereload/Makefile @@ -16,7 +16,6 @@ rubygem-multi_json>=1.8<2:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-guard-minitest/Makefile =================================================================== --- sysutils/rubygem-guard-minitest/Makefile +++ sysutils/rubygem-guard-minitest/Makefile @@ -14,7 +14,6 @@ rubygem-minitest>=3.0:devel/rubygem-minitest USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-guard-rspec/Makefile =================================================================== --- sysutils/rubygem-guard-rspec/Makefile +++ sysutils/rubygem-guard-rspec/Makefile @@ -15,7 +15,6 @@ rubygem-rspec>=2.99.0<4.0:devel/rubygem-rspec USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-guard/Makefile =================================================================== --- sysutils/rubygem-guard/Makefile +++ sysutils/rubygem-guard/Makefile @@ -20,7 +20,6 @@ rubygem-thor>=0.18.1:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-hammer_cli/Makefile =================================================================== --- sysutils/rubygem-hammer_cli/Makefile +++ sysutils/rubygem-hammer_cli/Makefile @@ -21,7 +21,6 @@ rubygem-unicode-display_width>=0:devel/rubygem-unicode-display_width USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-hammer_cli_foreman/Makefile =================================================================== --- sysutils/rubygem-hammer_cli_foreman/Makefile +++ sysutils/rubygem-hammer_cli_foreman/Makefile @@ -15,7 +15,6 @@ rubygem-rest-client>=1.8.0<3.0.0:www/rubygem-rest-client USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-hammer_cli_foreman_bootdisk/Makefile =================================================================== --- sysutils/rubygem-hammer_cli_foreman_bootdisk/Makefile +++ sysutils/rubygem-hammer_cli_foreman_bootdisk/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-hammer_cli_foreman>=0.1.2:sysutils/rubygem-hammer_cli_foreman USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-hammer_cli_foreman_salt/Makefile =================================================================== --- sysutils/rubygem-hammer_cli_foreman_salt/Makefile +++ sysutils/rubygem-hammer_cli_foreman_salt/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-hammer_cli_foreman>=2.0.0<4.0.0:sysutils/rubygem-hammer_cli_foreman USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-hammer_cli_foreman_ssh/Makefile =================================================================== --- sysutils/rubygem-hammer_cli_foreman_ssh/Makefile +++ sysutils/rubygem-hammer_cli_foreman_ssh/Makefile @@ -15,7 +15,6 @@ rubygem-net-ssh-multi>=1.2.1:security/rubygem-net-ssh-multi USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-hiera-eyaml/Makefile =================================================================== --- sysutils/rubygem-hiera-eyaml/Makefile +++ sysutils/rubygem-hiera-eyaml/Makefile @@ -15,7 +15,6 @@ rubygem-optimist>=0:devel/rubygem-optimist USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-hiera-file/Makefile =================================================================== --- sysutils/rubygem-hiera-file/Makefile +++ sysutils/rubygem-hiera-file/Makefile @@ -10,7 +10,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem RUN_DEPENDS= rubygem-hiera>=0:sysutils/rubygem-hiera Index: sysutils/rubygem-hiera/Makefile =================================================================== --- sysutils/rubygem-hiera/Makefile +++ sysutils/rubygem-hiera/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-hieracles/Makefile =================================================================== --- sysutils/rubygem-hieracles/Makefile +++ sysutils/rubygem-hieracles/Makefile @@ -15,7 +15,6 @@ rubygem-httparty>=0.13.7:www/rubygem-httparty NO_ARCH= yes -USE_RUBY= yes USES= gem CONFLICTS_INSTALL= zh-hc # bin/hc Index: sysutils/rubygem-httplog/Makefile =================================================================== --- sysutils/rubygem-httplog/Makefile +++ sysutils/rubygem-httplog/Makefile @@ -13,7 +13,6 @@ rubygem-rainbow>=2.0.0:devel/rubygem-rainbow USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-itamae/Makefile =================================================================== --- sysutils/rubygem-itamae/Makefile +++ sysutils/rubygem-itamae/Makefile @@ -17,7 +17,6 @@ rubygem-thor>=0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-librarian-puppet/Makefile =================================================================== --- sysutils/rubygem-librarian-puppet/Makefile +++ sysutils/rubygem-librarian-puppet/Makefile @@ -16,7 +16,6 @@ rubygem-rsync>0:net/rubygem-rsync NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/librarian-puppet Index: sysutils/rubygem-license-acceptance/Makefile =================================================================== --- sysutils/rubygem-license-acceptance/Makefile +++ sysutils/rubygem-license-acceptance/Makefile @@ -16,7 +16,6 @@ rubygem-tty-prompt>=0.20<1:devel/rubygem-tty-prompt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-license_scout/Makefile =================================================================== --- sysutils/rubygem-license_scout/Makefile +++ sysutils/rubygem-license_scout/Makefile @@ -21,7 +21,6 @@ rubygem-toml-rb>=1.0:www/rubygem-toml-rb USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-log4r/Makefile =================================================================== --- sysutils/rubygem-log4r/Makefile +++ sysutils/rubygem-log4r/Makefile @@ -12,7 +12,6 @@ PORTSCOUT= skipv:1.1.11 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: sysutils/rubygem-logify/Makefile =================================================================== --- sysutils/rubygem-logify/Makefile +++ sysutils/rubygem-logify/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: sysutils/rubygem-mogilefs-client/Makefile =================================================================== --- sysutils/rubygem-mogilefs-client/Makefile +++ sysutils/rubygem-mogilefs-client/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/mog Index: sysutils/rubygem-mothra/Makefile =================================================================== --- sysutils/rubygem-mothra/Makefile +++ sysutils/rubygem-mothra/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/mothra Index: sysutils/rubygem-murder/Makefile =================================================================== --- sysutils/rubygem-murder/Makefile +++ sysutils/rubygem-murder/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem python .include Index: sysutils/rubygem-ohai/Makefile =================================================================== --- sysutils/rubygem-ohai/Makefile +++ sysutils/rubygem-ohai/Makefile @@ -24,7 +24,6 @@ rubygem-wmi-lite>=1.0<2:devel/rubygem-wmi-lite USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-parallel/Makefile =================================================================== --- sysutils/rubygem-parallel/Makefile +++ sysutils/rubygem-parallel/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-puppet_forge/Makefile =================================================================== --- sysutils/rubygem-puppet_forge/Makefile +++ sysutils/rubygem-puppet_forge/Makefile @@ -16,7 +16,6 @@ rubygem-semantic_puppet>=1.0<2:devel/rubygem-semantic_puppet USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-puppetfile-resolver/Makefile =================================================================== --- sysutils/rubygem-puppetfile-resolver/Makefile +++ sysutils/rubygem-puppetfile-resolver/Makefile @@ -14,7 +14,6 @@ rubygem-semantic_puppet>=1.0<2:devel/rubygem-semantic_puppet USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-puppetserver-ca/Makefile =================================================================== --- sysutils/rubygem-puppetserver-ca/Makefile +++ sysutils/rubygem-puppetserver-ca/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-r10k/Makefile =================================================================== --- sysutils/rubygem-r10k/Makefile +++ sysutils/rubygem-r10k/Makefile @@ -19,7 +19,6 @@ rubygem-puppet_forge>=2.3.0:sysutils/rubygem-puppet_forge USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-redfish_client/Makefile =================================================================== --- sysutils/rubygem-redfish_client/Makefile +++ sysutils/rubygem-redfish_client/Makefile @@ -13,7 +13,6 @@ rubygem-server_sent_events>=0.1:devel/rubygem-server_sent_events USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-rubyipmi/Makefile =================================================================== --- sysutils/rubygem-rubyipmi/Makefile +++ sysutils/rubygem-rubyipmi/Makefile @@ -13,7 +13,6 @@ rubygem-highline>=0:devel/rubygem-highline USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-serverspec/Makefile =================================================================== --- sysutils/rubygem-serverspec/Makefile +++ sysutils/rubygem-serverspec/Makefile @@ -16,7 +16,6 @@ rubygem-specinfra>=2.72:sysutils/rubygem-specinfra USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-shellany/Makefile =================================================================== --- sysutils/rubygem-shellany/Makefile +++ sysutils/rubygem-shellany/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-smart_proxy_dynflow/Makefile =================================================================== --- sysutils/rubygem-smart_proxy_dynflow/Makefile +++ sysutils/rubygem-smart_proxy_dynflow/Makefile @@ -16,7 +16,6 @@ rubygem-sqlite3>=0:databases/rubygem-sqlite3 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-smart_proxy_remote_execution_ssh/Makefile =================================================================== --- sysutils/rubygem-smart_proxy_remote_execution_ssh/Makefile +++ sysutils/rubygem-smart_proxy_remote_execution_ssh/Makefile @@ -16,7 +16,6 @@ rubygem-smart_proxy_dynflow>=0.8<1:sysutils/rubygem-smart_proxy_dynflow USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-smart_proxy_salt/Makefile =================================================================== --- sysutils/rubygem-smart_proxy_salt/Makefile +++ sysutils/rubygem-smart_proxy_salt/Makefile @@ -14,7 +14,6 @@ rubygem-smart_proxy_dynflow>=0.5.0:sysutils/rubygem-smart_proxy_dynflow USES= cpe gem python shebangfix -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-specinfra/Makefile =================================================================== --- sysutils/rubygem-specinfra/Makefile +++ sysutils/rubygem-specinfra/Makefile @@ -15,7 +15,6 @@ rubygem-net-telnet>=0:security/rubygem-net-telnet USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-sys-admin/Makefile =================================================================== --- sysutils/rubygem-sys-admin/Makefile +++ sysutils/rubygem-sys-admin/Makefile @@ -12,8 +12,8 @@ RUN_DEPENDS= rubygem-ffi>=1.1<2:devel/rubygem-ffi +NO_ARCH= yes USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-sys-cpu/Makefile =================================================================== --- sysutils/rubygem-sys-cpu/Makefile +++ sysutils/rubygem-sys-cpu/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ffi>=1.1<2:devel/rubygem-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-sys-filesystem/Makefile =================================================================== --- sysutils/rubygem-sys-filesystem/Makefile +++ sysutils/rubygem-sys-filesystem/Makefile @@ -12,8 +12,8 @@ RUN_DEPENDS= rubygem-ffi>=1.1<2:devel/rubygem-ffi +NO_ARCH= yes USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-sys-host/Makefile =================================================================== --- sysutils/rubygem-sys-host/Makefile +++ sysutils/rubygem-sys-host/Makefile @@ -9,7 +9,6 @@ LICENSE= ART20 -USE_RUBY= yes USES= gem .include Index: sysutils/rubygem-sys-proctable/Makefile =================================================================== --- sysutils/rubygem-sys-proctable/Makefile +++ sysutils/rubygem-sys-proctable/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-ffi>=0:devel/rubygem-ffi -USE_RUBY= yes USES= gem NO_ARCH= yes Index: sysutils/rubygem-sys-uname/Makefile =================================================================== --- sysutils/rubygem-sys-uname/Makefile +++ sysutils/rubygem-sys-uname/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ffi>=1.1<2:devel/rubygem-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-sys-uptime/Makefile =================================================================== --- sysutils/rubygem-sys-uptime/Makefile +++ sysutils/rubygem-sys-uptime/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ffi>=1.1<2:devel/rubygem-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-syslog-logger/Makefile =================================================================== --- sysutils/rubygem-syslog-logger/Makefile +++ sysutils/rubygem-syslog-logger/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-teamocil/Makefile =================================================================== --- sysutils/rubygem-teamocil/Makefile +++ sysutils/rubygem-teamocil/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= tmux:sysutils/tmux USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-tmuxinator/Makefile =================================================================== --- sysutils/rubygem-tmuxinator/Makefile +++ sysutils/rubygem-tmuxinator/Makefile @@ -14,7 +14,6 @@ rubygem-xdg2>=2.2.5<3:devel/rubygem-xdg2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-vagrant-bhyve/Makefile =================================================================== --- sysutils/rubygem-vagrant-bhyve/Makefile +++ sysutils/rubygem-vagrant-bhyve/Makefile @@ -9,7 +9,6 @@ RUN_DEPENDS= rubygem-ruby_expect>=0:textproc/rubygem-ruby_expect -USE_RUBY= yes USES= gem .include Index: sysutils/rubygem-vagrant-mutate/Makefile =================================================================== --- sysutils/rubygem-vagrant-mutate/Makefile +++ sysutils/rubygem-vagrant-mutate/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: sysutils/rubygem-vagrant-vbguest/Makefile =================================================================== --- sysutils/rubygem-vagrant-vbguest/Makefile +++ sysutils/rubygem-vagrant-vbguest/Makefile @@ -15,7 +15,6 @@ rubygem-micromachine>=2<4:devel/rubygem-micromachine USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-vagrant_cloud/Makefile =================================================================== --- sysutils/rubygem-vagrant_cloud/Makefile +++ sysutils/rubygem-vagrant_cloud/Makefile @@ -16,7 +16,6 @@ rubygem-rexml>=3.2.5:textproc/rubygem-rexml USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-vmstat/Makefile =================================================================== --- sysutils/rubygem-vmstat/Makefile +++ sysutils/rubygem-vmstat/Makefile @@ -11,6 +11,5 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include Index: sysutils/rubygem-win32-file-security/Makefile =================================================================== --- sysutils/rubygem-win32-file-security/Makefile +++ sysutils/rubygem-win32-file-security/Makefile @@ -13,7 +13,6 @@ rubygem-ffi-win32-extensions>0:devel/rubygem-ffi-win32-extensions NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: sysutils/rubygem-win32-file-stat/Makefile =================================================================== --- sysutils/rubygem-win32-file-stat/Makefile +++ sysutils/rubygem-win32-file-stat/Makefile @@ -13,7 +13,6 @@ rubygem-ffi-win32-extensions>0:devel/rubygem-ffi-win32-extensions NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: sysutils/rubygem-win32-file/Makefile =================================================================== --- sysutils/rubygem-win32-file/Makefile +++ sysutils/rubygem-win32-file/Makefile @@ -14,7 +14,6 @@ rubygem-win32-file-stat>=1.4.0:sysutils/rubygem-win32-file-stat NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: sysutils/rubygem-winrm-elevated/Makefile =================================================================== --- sysutils/rubygem-winrm-elevated/Makefile +++ sysutils/rubygem-winrm-elevated/Makefile @@ -15,7 +15,6 @@ rubygem-winrm-fs>=1.0<2:sysutils/rubygem-winrm-fs USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-winrm-fs/Makefile =================================================================== --- sysutils/rubygem-winrm-fs/Makefile +++ sysutils/rubygem-winrm-fs/Makefile @@ -16,7 +16,6 @@ rubygem-winrm>=2.0<3:sysutils/rubygem-winrm USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-winrm/Makefile =================================================================== --- sysutils/rubygem-winrm/Makefile +++ sysutils/rubygem-winrm/Makefile @@ -20,7 +20,6 @@ rubygem-rubyntlm>=0.6.1<0.7:net/rubygem-rubyntlm USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/rubygem-yell/Makefile =================================================================== --- sysutils/rubygem-yell/Makefile +++ sysutils/rubygem-yell/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: sysutils/vagrant/Makefile =================================================================== --- sysutils/vagrant/Makefile +++ sysutils/vagrant/Makefile @@ -40,11 +40,10 @@ rubygem-winrm-fs>=1.3.4<2:sysutils/rubygem-winrm-fs \ rubygem-winrm>=2.3.4<3:sysutils/rubygem-winrm -USES= cpe shebangfix +USES= cpe ruby shebangfix CPE_VENDOR= hashicorp USE_GITHUB= yes GH_ACCOUNT= hashicorp -USE_RUBY= yes SHEBANG_FILES= plugins/hosts/darwin/scripts/install_virtualbox.sh \ scripts/sign.sh scripts/website_push_www.sh Index: sysutils/zfs-snapshot-mgmt/Makefile =================================================================== --- sysutils/zfs-snapshot-mgmt/Makefile +++ sysutils/zfs-snapshot-mgmt/Makefile @@ -8,9 +8,7 @@ COMMENT= Automatic ZFS snapshot management tool WWW= http://marcin.studio4plus.com/en/zfs-file-history/howto.html -USE_RUBY= yes -USES= shebangfix -RUBY_NO_BUILD_DEPENDS= yes +USES= ruby:run shebangfix SHEBANG_FILES= zfs-snapshot-mgmt NO_BUILD= yes Index: sysutils/zfstools/Makefile =================================================================== --- sysutils/zfstools/Makefile +++ sysutils/zfstools/Makefile @@ -13,13 +13,12 @@ LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt -USES= shebangfix +USES= ruby shebangfix SHEBANG_FILES= bin/* USE_GITHUB= yes GH_ACCOUNT= bdrewery -USE_RUBY= yes NO_BUILD= yes SUB_FILES= pkg-message Index: textproc/docbookrx/Makefile =================================================================== --- textproc/docbookrx/Makefile +++ textproc/docbookrx/Makefile @@ -15,7 +15,7 @@ rubygem-rspec>=1.2.2:devel/rubygem-rspec RUN_DEPENDS= rubygem-nokogiri>=1.8:textproc/rubygem-nokogiri -USE_RUBY= yes +USES= ruby USE_GITHUB= yes OPTIONS_DEFINE= DOCS Index: textproc/ruby-escape/Makefile =================================================================== --- textproc/ruby-escape/Makefile +++ textproc/ruby-escape/Makefile @@ -10,7 +10,7 @@ COMMENT= Ruby library provides HTML/URI/shell escaping functions WWW= http://www.a-k-r.org/escape/ -USE_RUBY= yes +USES= yes NO_BUILD= yes DOCS= ChangeLog README Index: textproc/ruby-format/Makefile =================================================================== --- textproc/ruby-format/Makefile +++ textproc/ruby-format/Makefile @@ -10,7 +10,7 @@ COMMENT= Perl like formats for Ruby WWW= http://formatr.sourceforge.net/ -USE_RUBY= yes +USES= ruby NO_BUILD= yes Index: textproc/ruby-htree/Makefile =================================================================== --- textproc/ruby-htree/Makefile +++ textproc/ruby-htree/Makefile @@ -14,7 +14,7 @@ OPTIONS_DEFINE= DOCS -USE_RUBY= yes +USES= ruby LIB_FILES= htree.rb htree Index: textproc/ruby-rd-mode.el/Makefile =================================================================== --- textproc/ruby-rd-mode.el/Makefile +++ textproc/ruby-rd-mode.el/Makefile @@ -12,7 +12,7 @@ BUILD_DEPENDS= ${NONEXISTENT}:textproc/ruby-rdtool:patch -USE_RUBY= yes +USES= ruby WRKSRC= ${WRKDIR}/utils NO_BUILD= yes Index: textproc/ruby-rdtool/Makefile =================================================================== --- textproc/ruby-rdtool/Makefile +++ textproc/ruby-rdtool/Makefile @@ -14,8 +14,7 @@ USE_GITHUB= yes GH_ACCOUNT= uwabami -USE_RUBY= yes -USE_RUBY_SETUP= yes +USES= ruby:setup RUBY_MODNAME= rd Index: textproc/ruby-rttool/Makefile =================================================================== --- textproc/ruby-rttool/Makefile +++ textproc/ruby-rttool/Makefile @@ -13,9 +13,7 @@ LICENSE= RUBY -USE_RUBY= yes -USES= shebangfix -USE_RUBY_SETUP= yes +USES= ruby:setup shebangfix SHEBANG_FILES= bin/rt/* lib/rt/* RUBY_MODNAME= rt Index: textproc/rubygem-abbrev/Makefile =================================================================== --- textproc/rubygem-abbrev/Makefile +++ textproc/rubygem-abbrev/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-actionpack-xml_parser-rails5/Makefile =================================================================== --- textproc/rubygem-actionpack-xml_parser-rails5/Makefile +++ textproc/rubygem-actionpack-xml_parser-rails5/Makefile @@ -16,7 +16,6 @@ rubygem-railties5>=5.0:www/rubygem-railties5 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-actionpack-xml_parser-rails52/Makefile =================================================================== --- textproc/rubygem-actionpack-xml_parser-rails52/Makefile +++ textproc/rubygem-actionpack-xml_parser-rails52/Makefile @@ -16,7 +16,6 @@ rubygem-railties52>=5.2:www/rubygem-railties52 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-actiontext60/Makefile =================================================================== --- textproc/rubygem-actiontext60/Makefile +++ textproc/rubygem-actiontext60/Makefile @@ -18,7 +18,6 @@ rubygem-nokogiri>=1.8.5:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-actiontext61/Makefile =================================================================== --- textproc/rubygem-actiontext61/Makefile +++ textproc/rubygem-actiontext61/Makefile @@ -18,7 +18,6 @@ rubygem-nokogiri>=1.8.5:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-actiontext70/Makefile =================================================================== --- textproc/rubygem-actiontext70/Makefile +++ textproc/rubygem-actiontext70/Makefile @@ -19,7 +19,6 @@ rubygem-nokogiri>=1.8.5:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-albino/Makefile =================================================================== --- textproc/rubygem-albino/Makefile +++ textproc/rubygem-albino/Makefile @@ -15,7 +15,6 @@ ${PYTHON_PKGNAMEPREFIX}pygments>=0.8:textproc/py-pygments@${PY_FLAVOR} USES= gem python shebangfix -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-amatch/Makefile =================================================================== --- textproc/rubygem-amatch/Makefile +++ textproc/rubygem-amatch/Makefile @@ -14,7 +14,6 @@ rubygem-tins>=1.0<2:devel/rubygem-tins USES= gem -USE_RUBY= yes PLIST_FILES= bin/agrep bin/dupfind Index: textproc/rubygem-asciidoctor-diagram/Makefile =================================================================== --- textproc/rubygem-asciidoctor-diagram/Makefile +++ textproc/rubygem-asciidoctor-diagram/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-asciidoctor>=1.5.7<3:textproc/rubygem-asciidoctor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-asciidoctor-epub3/Makefile =================================================================== --- textproc/rubygem-asciidoctor-epub3/Makefile +++ textproc/rubygem-asciidoctor-epub3/Makefile @@ -15,7 +15,6 @@ rubygem-gepub>=1.0.0:textproc/rubygem-gepub USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-asciidoctor-include-ext/Makefile =================================================================== --- textproc/rubygem-asciidoctor-include-ext/Makefile +++ textproc/rubygem-asciidoctor-include-ext/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-asciidoctor>=1.5.6<3.0.0:textproc/rubygem-asciidoctor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-asciidoctor-kroki/Makefile =================================================================== --- textproc/rubygem-asciidoctor-kroki/Makefile +++ textproc/rubygem-asciidoctor-kroki/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-asciidoctor>=2.0<3:textproc/rubygem-asciidoctor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-asciidoctor-pdf/Makefile =================================================================== --- textproc/rubygem-asciidoctor-pdf/Makefile +++ textproc/rubygem-asciidoctor-pdf/Makefile @@ -21,7 +21,6 @@ rubygem-treetop>=1.6.0<1.7:devel/rubygem-treetop USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-asciidoctor-plantuml/Makefile =================================================================== --- textproc/rubygem-asciidoctor-plantuml/Makefile +++ textproc/rubygem-asciidoctor-plantuml/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-asciidoctor>=2.0.17<3.0.0:textproc/rubygem-asciidoctor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-asciidoctor-plantuml00/Makefile =================================================================== --- textproc/rubygem-asciidoctor-plantuml00/Makefile +++ textproc/rubygem-asciidoctor-plantuml00/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-asciidoctor>=2.0.17<3.0.0:textproc/rubygem-asciidoctor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-asciidoctor/Makefile =================================================================== --- textproc/rubygem-asciidoctor/Makefile +++ textproc/rubygem-asciidoctor/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-autoprefixer-rails/Makefile =================================================================== --- textproc/rubygem-autoprefixer-rails/Makefile +++ textproc/rubygem-autoprefixer-rails/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-execjs>=2<3:devel/rubygem-execjs USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-autoprefixer-rails1025/Makefile =================================================================== --- textproc/rubygem-autoprefixer-rails1025/Makefile +++ textproc/rubygem-autoprefixer-rails1025/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-execjs>=0:devel/rubygem-execjs USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-babel-source/Makefile =================================================================== --- textproc/rubygem-babel-source/Makefile +++ textproc/rubygem-babel-source/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-babel-transpiler/Makefile =================================================================== --- textproc/rubygem-babel-transpiler/Makefile +++ textproc/rubygem-babel-transpiler/Makefile @@ -14,7 +14,6 @@ rubygem-execjs>=2.0:devel/rubygem-execjs NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-babosa/Makefile =================================================================== --- textproc/rubygem-babosa/Makefile +++ textproc/rubygem-babosa/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-case_transform/Makefile =================================================================== --- textproc/rubygem-case_transform/Makefile +++ textproc/rubygem-case_transform/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-activesupport5>0:devel/rubygem-activesupport5 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-character_set/Makefile =================================================================== --- textproc/rubygem-character_set/Makefile +++ textproc/rubygem-character_set/Makefile @@ -13,6 +13,5 @@ RUN_DEPENDS= rubygem-sorted_set>=1.0<2:devel/rubygem-sorted_set USES= gem -USE_RUBY= yes .include Index: textproc/rubygem-charlock_holmes/Makefile =================================================================== --- textproc/rubygem-charlock_holmes/Makefile +++ textproc/rubygem-charlock_holmes/Makefile @@ -13,7 +13,6 @@ LIB_DEPENDS= libicui18n.so:devel/icu USES= gem -USE_RUBY= yes CONFIGURE_ARGS= --with-icu-include=${LOCALBASE}/include Index: textproc/rubygem-chewy/Makefile =================================================================== --- textproc/rubygem-chewy/Makefile +++ textproc/rubygem-chewy/Makefile @@ -15,7 +15,6 @@ rubygem-elasticsearch-dsl>=0:textproc/rubygem-elasticsearch-dsl USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-citrus/Makefile =================================================================== --- textproc/rubygem-citrus/Makefile +++ textproc/rubygem-citrus/Makefile @@ -10,7 +10,6 @@ BUILD_DEPENDS= rubygem-rake>=0:devel/rubygem-rake NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-cld3/Makefile =================================================================== --- textproc/rubygem-cld3/Makefile +++ textproc/rubygem-cld3/Makefile @@ -15,6 +15,5 @@ RUN_DEPENDS= rubygem-ffi>=1.1.0<1.16.0:devel/rubygem-ffi USES= gem pkgconfig -USE_RUBY= yes .include Index: textproc/rubygem-coderay/Makefile =================================================================== --- textproc/rubygem-coderay/Makefile +++ textproc/rubygem-coderay/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-colorator/Makefile =================================================================== --- textproc/rubygem-colorator/Makefile +++ textproc/rubygem-colorator/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-colored/Makefile =================================================================== --- textproc/rubygem-colored/Makefile +++ textproc/rubygem-colored/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-colored2/Makefile =================================================================== --- textproc/rubygem-colored2/Makefile +++ textproc/rubygem-colored2/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include Index: textproc/rubygem-commonmarker/Makefile =================================================================== --- textproc/rubygem-commonmarker/Makefile +++ textproc/rubygem-commonmarker/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes PLIST_FILES= bin/commonmarker Index: textproc/rubygem-creole/Makefile =================================================================== --- textproc/rubygem-creole/Makefile +++ textproc/rubygem-creole/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-css_parser/Makefile =================================================================== --- textproc/rubygem-css_parser/Makefile +++ textproc/rubygem-css_parser/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-addressable>=0:www/rubygem-addressable USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-cssmin/Makefile =================================================================== --- textproc/rubygem-cssmin/Makefile +++ textproc/rubygem-cssmin/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-cucumber-gherkin/Makefile =================================================================== --- textproc/rubygem-cucumber-gherkin/Makefile +++ textproc/rubygem-cucumber-gherkin/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-cucumber-messages>=19.0.0<20:devel/rubygem-cucumber-messages USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-cucumber-gherkin23/Makefile =================================================================== --- textproc/rubygem-cucumber-gherkin23/Makefile +++ textproc/rubygem-cucumber-gherkin23/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-cucumber-messages18>=18.0.0<19:devel/rubygem-cucumber-messages18 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-cucumber-html-formatter/Makefile =================================================================== --- textproc/rubygem-cucumber-html-formatter/Makefile +++ textproc/rubygem-cucumber-html-formatter/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-cucumber-messages18>=18.0.0<19:devel/rubygem-cucumber-messages18 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-cucumber-html-formatter19/Makefile =================================================================== --- textproc/rubygem-cucumber-html-formatter19/Makefile +++ textproc/rubygem-cucumber-html-formatter19/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-cucumber-messages18>=18.0.0<19:devel/rubygem-cucumber-messages18 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-diff-lcs/Makefile =================================================================== --- textproc/rubygem-diff-lcs/Makefile +++ textproc/rubygem-diff-lcs/Makefile @@ -14,7 +14,6 @@ LICENSE_FILE_MIT= ${WRKSRC}/License.md USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-diff_match_patch/Makefile =================================================================== --- textproc/rubygem-diff_match_patch/Makefile +++ textproc/rubygem-diff_match_patch/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-diffy/Makefile =================================================================== --- textproc/rubygem-diffy/Makefile +++ textproc/rubygem-diffy/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-docdiff/Makefile =================================================================== --- textproc/rubygem-docdiff/Makefile +++ textproc/rubygem-docdiff/Makefile @@ -10,7 +10,6 @@ LICENSE= BSD3CLAUSE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-elasticsearch-api/Makefile =================================================================== --- textproc/rubygem-elasticsearch-api/Makefile +++ textproc/rubygem-elasticsearch-api/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-multi_json>=0:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-elasticsearch-api713/Makefile =================================================================== --- textproc/rubygem-elasticsearch-api713/Makefile +++ textproc/rubygem-elasticsearch-api713/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-multi_json>=0:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-elasticsearch-dsl/Makefile =================================================================== --- textproc/rubygem-elasticsearch-dsl/Makefile +++ textproc/rubygem-elasticsearch-dsl/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-elasticsearch-model/Makefile =================================================================== --- textproc/rubygem-elasticsearch-model/Makefile +++ textproc/rubygem-elasticsearch-model/Makefile @@ -15,7 +15,6 @@ rubygem-hashie>=0:devel/rubygem-hashie USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-elasticsearch-model713/Makefile =================================================================== --- textproc/rubygem-elasticsearch-model713/Makefile +++ textproc/rubygem-elasticsearch-model713/Makefile @@ -16,7 +16,6 @@ rubygem-hashie>=0:devel/rubygem-hashie USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-elasticsearch-persistence/Makefile =================================================================== --- textproc/rubygem-elasticsearch-persistence/Makefile +++ textproc/rubygem-elasticsearch-persistence/Makefile @@ -17,7 +17,6 @@ rubygem-hashie>=0:devel/rubygem-hashie USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-elasticsearch-rails/Makefile =================================================================== --- textproc/rubygem-elasticsearch-rails/Makefile +++ textproc/rubygem-elasticsearch-rails/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-elasticsearch-transport/Makefile =================================================================== --- textproc/rubygem-elasticsearch-transport/Makefile +++ textproc/rubygem-elasticsearch-transport/Makefile @@ -15,7 +15,6 @@ rubygem-multi_json>=0:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-elasticsearch-transport713/Makefile =================================================================== --- textproc/rubygem-elasticsearch-transport713/Makefile +++ textproc/rubygem-elasticsearch-transport713/Makefile @@ -16,7 +16,6 @@ rubygem-multi_json>=0:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-elasticsearch-xpack/Makefile =================================================================== --- textproc/rubygem-elasticsearch-xpack/Makefile +++ textproc/rubygem-elasticsearch-xpack/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-elasticsearch-api>=6:textproc/rubygem-elasticsearch-api USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-elasticsearch/Makefile =================================================================== --- textproc/rubygem-elasticsearch/Makefile +++ textproc/rubygem-elasticsearch/Makefile @@ -14,7 +14,6 @@ rubygem-elasticsearch-transport>=${PORTVERSION}:textproc/rubygem-elasticsearch-transport USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-elasticsearch713/Makefile =================================================================== --- textproc/rubygem-elasticsearch713/Makefile +++ textproc/rubygem-elasticsearch713/Makefile @@ -15,7 +15,6 @@ rubygem-elasticsearch-transport713>=${PORTVERSION}:textproc/rubygem-elasticsearch-transport713 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-emot/Makefile =================================================================== --- textproc/rubygem-emot/Makefile +++ textproc/rubygem-emot/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-thor>=0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-escape_utils/Makefile =================================================================== --- textproc/rubygem-escape_utils/Makefile +++ textproc/rubygem-escape_utils/Makefile @@ -11,6 +11,5 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes .include Index: textproc/rubygem-extended-markdown-filter/Makefile =================================================================== --- textproc/rubygem-extended-markdown-filter/Makefile +++ textproc/rubygem-extended-markdown-filter/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-html-pipeline>=2.9<3.0:textproc/rubygem-html-pipeline USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-ezamar/Makefile =================================================================== --- textproc/rubygem-ezamar/Makefile +++ textproc/rubygem-ezamar/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-fast_xs/Makefile =================================================================== --- textproc/rubygem-fast_xs/Makefile +++ textproc/rubygem-fast_xs/Makefile @@ -11,7 +11,6 @@ LICENSE= MIT -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-ferret/Makefile =================================================================== --- textproc/rubygem-ferret/Makefile +++ textproc/rubygem-ferret/Makefile @@ -16,7 +16,6 @@ BROKEN_RUBY31= yes USES= gem -USE_RUBY= yes PLIST_FILES= bin/ferret-browser Index: textproc/rubygem-fog-xml/Makefile =================================================================== --- textproc/rubygem-fog-xml/Makefile +++ textproc/rubygem-fog-xml/Makefile @@ -14,7 +14,6 @@ rubygem-nokogiri>=1.5.11<2.0.0:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-gemoji/Makefile =================================================================== --- textproc/rubygem-gemoji/Makefile +++ textproc/rubygem-gemoji/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-gepub/Makefile =================================================================== --- textproc/rubygem-gepub/Makefile +++ textproc/rubygem-gepub/Makefile @@ -14,7 +14,6 @@ rubygem-rubyzip>=1.1.1<2.4:archivers/rubygem-rubyzip USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-github-linguist/Makefile =================================================================== --- textproc/rubygem-github-linguist/Makefile +++ textproc/rubygem-github-linguist/Makefile @@ -16,7 +16,6 @@ rubygem-rugged>=1.0<2:devel/rubygem-rugged USES= gem -USE_RUBY= yes PLIST_FILES= bin/git-linguist bin/github-linguist Index: textproc/rubygem-github-markup/Makefile =================================================================== --- textproc/rubygem-github-markup/Makefile +++ textproc/rubygem-github-markup/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem shebangfix -USE_RUBY= yes CONFLICTS_INSTALL= rubygem-github-markup* Index: textproc/rubygem-github-markup17/Makefile =================================================================== --- textproc/rubygem-github-markup17/Makefile +++ textproc/rubygem-github-markup17/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem shebangfix -USE_RUBY= yes CONFLICTS_INSTALL= rubygem-github-markup* Index: textproc/rubygem-gitlab-grit/Makefile =================================================================== --- textproc/rubygem-gitlab-grit/Makefile +++ textproc/rubygem-gitlab-grit/Makefile @@ -16,7 +16,6 @@ rubygem-posix-spawn>=0.3<1:devel/rubygem-posix-spawn USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-gitlab-markup/Makefile =================================================================== --- textproc/rubygem-gitlab-markup/Makefile +++ textproc/rubygem-gitlab-markup/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem python:run shebangfix -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-google-cloud-translate-v2/Makefile =================================================================== --- textproc/rubygem-google-cloud-translate-v2/Makefile +++ textproc/rubygem-google-cloud-translate-v2/Makefile @@ -17,7 +17,6 @@ rubygem-googleauth>=0.16.2<2.0:security/rubygem-googleauth USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-google-cloud-translate-v3/Makefile =================================================================== --- textproc/rubygem-google-cloud-translate-v3/Makefile +++ textproc/rubygem-google-cloud-translate-v3/Makefile @@ -14,7 +14,6 @@ rubygem-google-cloud-errors>=1.0<2:net/rubygem-google-cloud-errors USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-google-cloud-translate/Makefile =================================================================== --- textproc/rubygem-google-cloud-translate/Makefile +++ textproc/rubygem-google-cloud-translate/Makefile @@ -15,7 +15,6 @@ rubygem-google-cloud-translate-v3>=0.0<2.0:textproc/rubygem-google-cloud-translate-v3 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-heredoc_unindent/Makefile =================================================================== --- textproc/rubygem-heredoc_unindent/Makefile +++ textproc/rubygem-heredoc_unindent/Makefile @@ -11,7 +11,6 @@ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-hikidoc/Makefile =================================================================== --- textproc/rubygem-hikidoc/Makefile +++ textproc/rubygem-hikidoc/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/hikidoc Index: textproc/rubygem-html-pipeline/Makefile =================================================================== --- textproc/rubygem-html-pipeline/Makefile +++ textproc/rubygem-html-pipeline/Makefile @@ -15,7 +15,6 @@ rubygem-nokogiri>=1.4:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-html-proofer/Makefile =================================================================== --- textproc/rubygem-html-proofer/Makefile +++ textproc/rubygem-html-proofer/Makefile @@ -19,7 +19,6 @@ rubygem-zeitwerk>=2.5<3:devel/rubygem-zeitwerk USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-html2text/Makefile =================================================================== --- textproc/rubygem-html2text/Makefile +++ textproc/rubygem-html2text/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-nokogiri>=1.10.3<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-htmlentities/Makefile =================================================================== --- textproc/rubygem-htmlentities/Makefile +++ textproc/rubygem-htmlentities/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-ini/Makefile =================================================================== --- textproc/rubygem-ini/Makefile +++ textproc/rubygem-ini/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-inifile/Makefile =================================================================== --- textproc/rubygem-inifile/Makefile +++ textproc/rubygem-inifile/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-iso-639/Makefile =================================================================== --- textproc/rubygem-iso-639/Makefile +++ textproc/rubygem-iso-639/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-itextomml/Makefile =================================================================== --- textproc/rubygem-itextomml/Makefile +++ textproc/rubygem-itextomml/Makefile @@ -11,6 +11,5 @@ LICENSE_COMB= dual USES= gem -USE_RUBY= yes .include Index: textproc/rubygem-jekyll-archives/Makefile =================================================================== --- textproc/rubygem-jekyll-archives/Makefile +++ textproc/rubygem-jekyll-archives/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-jekyll>=3.6<5.0:www/rubygem-jekyll USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-jekyll-assets/Makefile =================================================================== --- textproc/rubygem-jekyll-assets/Makefile +++ textproc/rubygem-jekyll-assets/Makefile @@ -23,7 +23,6 @@ rubygem-sprockets3>=3.3<4.1:devel/rubygem-sprockets3 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-jekyll-email-protect/Makefile =================================================================== --- textproc/rubygem-jekyll-email-protect/Makefile +++ textproc/rubygem-jekyll-email-protect/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-jekyll>=3.0:www/rubygem-jekyll USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-jekyll-feed/Makefile =================================================================== --- textproc/rubygem-jekyll-feed/Makefile +++ textproc/rubygem-jekyll-feed/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-jekyll>=3.7<5.0:www/rubygem-jekyll USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-jekyll-gist/Makefile =================================================================== --- textproc/rubygem-jekyll-gist/Makefile +++ textproc/rubygem-jekyll-gist/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-octokit>=4.2<5:net/rubygem-octokit USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-jekyll-mentions/Makefile =================================================================== --- textproc/rubygem-jekyll-mentions/Makefile +++ textproc/rubygem-jekyll-mentions/Makefile @@ -13,7 +13,6 @@ rubygem-jekyll>=3.7<5.0:www/rubygem-jekyll USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-jekyll-paginate/Makefile =================================================================== --- textproc/rubygem-jekyll-paginate/Makefile +++ textproc/rubygem-jekyll-paginate/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-jekyll-redirect-from/Makefile =================================================================== --- textproc/rubygem-jekyll-redirect-from/Makefile +++ textproc/rubygem-jekyll-redirect-from/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-jekyll>=3.3<5.0:www/rubygem-jekyll USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-jekyll-sass-converter/Makefile =================================================================== --- textproc/rubygem-jekyll-sass-converter/Makefile +++ textproc/rubygem-jekyll-sass-converter/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-sassc>=2.1.0<3.0:textproc/rubygem-sassc USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-jekyll-sass-converter1/Makefile =================================================================== --- textproc/rubygem-jekyll-sass-converter1/Makefile +++ textproc/rubygem-jekyll-sass-converter1/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-sass>=3.4<4:textproc/rubygem-sass USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-jekyll-sitemap/Makefile =================================================================== --- textproc/rubygem-jekyll-sitemap/Makefile +++ textproc/rubygem-jekyll-sitemap/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-jekyll>=3.7<5.0:www/rubygem-jekyll USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-jemoji/Makefile =================================================================== --- textproc/rubygem-jemoji/Makefile +++ textproc/rubygem-jemoji/Makefile @@ -14,7 +14,6 @@ rubygem-jekyll>=3.0<5.0:www/rubygem-jekyll USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-js_regex/Makefile =================================================================== --- textproc/rubygem-js_regex/Makefile +++ textproc/rubygem-js_regex/Makefile @@ -14,7 +14,6 @@ rubygem-regexp_property_values>=1.0<2:textproc/rubygem-regexp_property_values USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-jsmin/Makefile =================================================================== --- textproc/rubygem-jsmin/Makefile +++ textproc/rubygem-jsmin/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-kramdown-parser-gfm/Makefile =================================================================== --- textproc/rubygem-kramdown-parser-gfm/Makefile +++ textproc/rubygem-kramdown-parser-gfm/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-kramdown>=2.0<3:textproc/rubygem-kramdown USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-kramdown/Makefile =================================================================== --- textproc/rubygem-kramdown/Makefile +++ textproc/rubygem-kramdown/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rexml>=0:textproc/rubygem-rexml USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-kramdown1/Makefile =================================================================== --- textproc/rubygem-kramdown1/Makefile +++ textproc/rubygem-kramdown1/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= cpe gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-kramdown23/Makefile =================================================================== --- textproc/rubygem-kramdown23/Makefile +++ textproc/rubygem-kramdown23/Makefile @@ -15,7 +15,6 @@ RUN_DEPENDS= rubygem-rexml>=0:textproc/rubygem-rexml USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-kwalify/Makefile =================================================================== --- textproc/rubygem-kwalify/Makefile +++ textproc/rubygem-kwalify/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/kwalify Index: textproc/rubygem-libxml-ruby/Makefile =================================================================== --- textproc/rubygem-libxml-ruby/Makefile +++ textproc/rubygem-libxml-ruby/Makefile @@ -12,6 +12,5 @@ USES= gem gnome USE_GNOME= libxml2 -USE_RUBY= yes .include Index: textproc/rubygem-linguistics/Makefile =================================================================== --- textproc/rubygem-linguistics/Makefile +++ textproc/rubygem-linguistics/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-loggability>=0.11<1:textproc/rubygem-loggability USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-liquid-tag-parser/Makefile =================================================================== --- textproc/rubygem-liquid-tag-parser/Makefile +++ textproc/rubygem-liquid-tag-parser/Makefile @@ -14,7 +14,6 @@ rubygem-liquid4>=3.0<5.0:textproc/rubygem-liquid4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-liquid-tag-parser1/Makefile =================================================================== --- textproc/rubygem-liquid-tag-parser1/Makefile +++ textproc/rubygem-liquid-tag-parser1/Makefile @@ -15,7 +15,6 @@ rubygem-liquid4>=3.0<5.0:textproc/rubygem-liquid4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-liquid/Makefile =================================================================== --- textproc/rubygem-liquid/Makefile +++ textproc/rubygem-liquid/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-liquid4/Makefile =================================================================== --- textproc/rubygem-liquid4/Makefile +++ textproc/rubygem-liquid4/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-loggability/Makefile =================================================================== --- textproc/rubygem-loggability/Makefile +++ textproc/rubygem-loggability/Makefile @@ -10,7 +10,6 @@ LICENSE= BSD3CLAUSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-loofah/Makefile =================================================================== --- textproc/rubygem-loofah/Makefile +++ textproc/rubygem-loofah/Makefile @@ -14,7 +14,6 @@ rubygem-nokogiri>=1.5.9:textproc/rubygem-nokogiri USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-loofah218/Makefile =================================================================== --- textproc/rubygem-loofah218/Makefile +++ textproc/rubygem-loofah218/Makefile @@ -15,7 +15,6 @@ rubygem-nokogiri>=1.5.9:textproc/rubygem-nokogiri USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-ltsv/Makefile =================================================================== --- textproc/rubygem-ltsv/Makefile +++ textproc/rubygem-ltsv/Makefile @@ -9,7 +9,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-markaby/Makefile =================================================================== --- textproc/rubygem-markaby/Makefile +++ textproc/rubygem-markaby/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-builder>=0:devel/rubygem-builder NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-mdl/Makefile =================================================================== --- textproc/rubygem-mdl/Makefile +++ textproc/rubygem-mdl/Makefile @@ -17,7 +17,6 @@ rubygem-mixlib-shellout>=0:devel/rubygem-mixlib-shellout USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-minima/Makefile =================================================================== --- textproc/rubygem-minima/Makefile +++ textproc/rubygem-minima/Makefile @@ -15,7 +15,6 @@ rubygem-jekyll-seo-tag>=2.1<3:www/rubygem-jekyll-seo-tag USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-multi_xml/Makefile =================================================================== --- textproc/rubygem-multi_xml/Makefile +++ textproc/rubygem-multi_xml/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-nokogiri-diff/Makefile =================================================================== --- textproc/rubygem-nokogiri-diff/Makefile +++ textproc/rubygem-nokogiri-diff/Makefile @@ -14,7 +14,6 @@ rubygem-tdiff>=0.3.2<1:devel/rubygem-tdiff USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-nokogiri/Makefile =================================================================== --- textproc/rubygem-nokogiri/Makefile +++ textproc/rubygem-nokogiri/Makefile @@ -22,7 +22,6 @@ USES= cpe gem gnome pkgconfig gettext-runtime USE_GNOME= libxml2 libxslt -USE_RUBY= yes CONFIGURE_ARGS= --use-system-libraries Index: textproc/rubygem-nokogiri111/Makefile =================================================================== --- textproc/rubygem-nokogiri111/Makefile +++ textproc/rubygem-nokogiri111/Makefile @@ -22,7 +22,6 @@ USES= cpe gem gnome pkgconfig gettext-runtime USE_GNOME= libxml2 libxslt -USE_RUBY= yes CONFIGURE_ARGS= --use-system-libraries Index: textproc/rubygem-nokogumbo/Makefile =================================================================== --- textproc/rubygem-nokogumbo/Makefile +++ textproc/rubygem-nokogumbo/Makefile @@ -15,6 +15,5 @@ USES= gem gnome pkgconfig USE_GNOME= libxml2 -USE_RUBY= yes .include Index: textproc/rubygem-octopress-escape-code/Makefile =================================================================== --- textproc/rubygem-octopress-escape-code/Makefile +++ textproc/rubygem-octopress-escape-code/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-jekyll3>=3.0<4:www/rubygem-jekyll3 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-opml/Makefile =================================================================== --- textproc/rubygem-opml/Makefile +++ textproc/rubygem-opml/Makefile @@ -9,7 +9,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-org-ruby/Makefile =================================================================== --- textproc/rubygem-org-ruby/Makefile +++ textproc/rubygem-org-ruby/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-rubypants>=0.2<1:textproc/rubygem-rubypants USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-ox/Makefile =================================================================== --- textproc/rubygem-ox/Makefile +++ textproc/rubygem-ox/Makefile @@ -12,6 +12,5 @@ USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes .include Index: textproc/rubygem-parse-cron/Makefile =================================================================== --- textproc/rubygem-parse-cron/Makefile +++ textproc/rubygem-parse-cron/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/License USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-parslet/Makefile =================================================================== --- textproc/rubygem-parslet/Makefile +++ textproc/rubygem-parslet/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-parslet1/Makefile =================================================================== --- textproc/rubygem-parslet1/Makefile +++ textproc/rubygem-parslet1/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-phone/Makefile =================================================================== --- textproc/rubygem-phone/Makefile +++ textproc/rubygem-phone/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-pretty-xml/Makefile =================================================================== --- textproc/rubygem-pretty-xml/Makefile +++ textproc/rubygem-pretty-xml/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-nokogiri>=1.6.7.2:textproc/rubygem-nokogiri NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-psych/Makefile =================================================================== --- textproc/rubygem-psych/Makefile +++ textproc/rubygem-psych/Makefile @@ -14,6 +14,5 @@ RUN_DEPENDS= rubygem-stringio>=0:devel/rubygem-stringio USES= gem -USE_RUBY= yes .include Index: textproc/rubygem-puppet-strings/Makefile =================================================================== --- textproc/rubygem-puppet-strings/Makefile +++ textproc/rubygem-puppet-strings/Makefile @@ -14,7 +14,6 @@ rubygem-yard>=0.9.5<0.10:textproc/rubygem-yard USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-raabro/Makefile =================================================================== --- textproc/rubygem-raabro/Makefile +++ textproc/rubygem-raabro/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-rails-dom-testing-rails5/Makefile =================================================================== --- textproc/rubygem-rails-dom-testing-rails5/Makefile +++ textproc/rubygem-rails-dom-testing-rails5/Makefile @@ -16,7 +16,6 @@ rubygem-nokogiri>=1.6:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-rails-dom-testing-rails50/Makefile =================================================================== --- textproc/rubygem-rails-dom-testing-rails50/Makefile +++ textproc/rubygem-rails-dom-testing-rails50/Makefile @@ -16,7 +16,6 @@ rubygem-nokogiri>=1.6:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-rails-dom-testing-rails52/Makefile =================================================================== --- textproc/rubygem-rails-dom-testing-rails52/Makefile +++ textproc/rubygem-rails-dom-testing-rails52/Makefile @@ -15,7 +15,6 @@ rubygem-nokogiri>=1.6:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-rails-dom-testing-rails60/Makefile =================================================================== --- textproc/rubygem-rails-dom-testing-rails60/Makefile +++ textproc/rubygem-rails-dom-testing-rails60/Makefile @@ -15,7 +15,6 @@ rubygem-nokogiri>=1.6:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-rails-dom-testing-rails61/Makefile =================================================================== --- textproc/rubygem-rails-dom-testing-rails61/Makefile +++ textproc/rubygem-rails-dom-testing-rails61/Makefile @@ -15,7 +15,6 @@ rubygem-nokogiri>=1.6:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-rails-dom-testing-rails70/Makefile =================================================================== --- textproc/rubygem-rails-dom-testing-rails70/Makefile +++ textproc/rubygem-rails-dom-testing-rails70/Makefile @@ -15,7 +15,6 @@ rubygem-nokogiri>=1.6:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-rails-dom-testing/Makefile =================================================================== --- textproc/rubygem-rails-dom-testing/Makefile +++ textproc/rubygem-rails-dom-testing/Makefile @@ -14,7 +14,6 @@ rubygem-nokogiri>=1.6:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-rails-dom-testing1/Makefile =================================================================== --- textproc/rubygem-rails-dom-testing1/Makefile +++ textproc/rubygem-rails-dom-testing1/Makefile @@ -16,7 +16,6 @@ rubygem-rails-deprecated_sanitizer>=1.0.1:devel/rubygem-rails-deprecated_sanitizer USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-rails-html-sanitizer/Makefile =================================================================== --- textproc/rubygem-rails-html-sanitizer/Makefile +++ textproc/rubygem-rails-html-sanitizer/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-loofah>=2.3<3:textproc/rubygem-loofah USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-rak/Makefile =================================================================== --- textproc/rubygem-rak/Makefile +++ textproc/rubygem-rak/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/rak Index: textproc/rubygem-rchardet/Makefile =================================================================== --- textproc/rubygem-rchardet/Makefile +++ textproc/rubygem-rchardet/Makefile @@ -10,7 +10,6 @@ LICENSE= LGPL21 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-rdiscount/Makefile =================================================================== --- textproc/rubygem-rdiscount/Makefile +++ textproc/rubygem-rdiscount/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes PLIST_FILES= bin/rdiscount Index: textproc/rubygem-rdtool/Makefile =================================================================== --- textproc/rubygem-rdtool/Makefile +++ textproc/rubygem-rdtool/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem shebangfix SHEBANG_FILES= bin/rd2 bin/rdswap.rb ruby_OLD_CMD= /usr/bin/ruby1.9.1 Index: textproc/rubygem-redcarpet/Makefile =================================================================== --- textproc/rubygem-redcarpet/Makefile +++ textproc/rubygem-redcarpet/Makefile @@ -12,7 +12,6 @@ USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes PLIST_FILES= bin/redcarpet Index: textproc/rubygem-regexp_parser/Makefile =================================================================== --- textproc/rubygem-regexp_parser/Makefile +++ textproc/rubygem-regexp_parser/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-regexp_property_values/Makefile =================================================================== --- textproc/rubygem-regexp_property_values/Makefile +++ textproc/rubygem-regexp_property_values/Makefile @@ -11,6 +11,5 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include Index: textproc/rubygem-representable/Makefile =================================================================== --- textproc/rubygem-representable/Makefile +++ textproc/rubygem-representable/Makefile @@ -15,7 +15,6 @@ rubygem-uber>=0<0.2.0:devel/rubygem-uber USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-reverse_markdown/Makefile =================================================================== --- textproc/rubygem-reverse_markdown/Makefile +++ textproc/rubygem-reverse_markdown/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-nokogiri>=0:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-rexml/Makefile =================================================================== --- textproc/rubygem-rexml/Makefile +++ textproc/rubygem-rexml/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-ri_cal/Makefile =================================================================== --- textproc/rubygem-ri_cal/Makefile +++ textproc/rubygem-ri_cal/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/ri_cal Index: textproc/rubygem-rly/Makefile =================================================================== --- textproc/rubygem-rly/Makefile +++ textproc/rubygem-rly/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-rmmseg-cpp/Makefile =================================================================== --- textproc/rubygem-rmmseg-cpp/Makefile +++ textproc/rubygem-rmmseg-cpp/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT -USE_RUBY= yes USES= gem shebangfix SHEBANG_FILES= misc/convert.rb Index: textproc/rubygem-ronn/Makefile =================================================================== --- textproc/rubygem-ronn/Makefile +++ textproc/rubygem-ronn/Makefile @@ -15,7 +15,6 @@ rubygem-rdiscount>=1.5.8:textproc/rubygem-rdiscount USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-rouge/Makefile =================================================================== --- textproc/rubygem-rouge/Makefile +++ textproc/rubygem-rouge/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-rouge329/Makefile =================================================================== --- textproc/rubygem-rouge329/Makefile +++ textproc/rubygem-rouge329/Makefile @@ -13,7 +13,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-rttool/Makefile =================================================================== --- textproc/rubygem-rttool/Makefile +++ textproc/rubygem-rttool/Makefile @@ -11,7 +11,6 @@ LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-ruby-augeas/Makefile =================================================================== --- textproc/rubygem-ruby-augeas/Makefile +++ textproc/rubygem-ruby-augeas/Makefile @@ -14,7 +14,6 @@ CONFIGURE_ARGS= --with-opt-include="${LOCALBASE}/include/libxml2" USE_GNOME= libxml2 -USE_RUBY= yes USES= gem gnome pkgconfig .include Index: textproc/rubygem-ruby-xslt/Makefile =================================================================== --- textproc/rubygem-ruby-xslt/Makefile +++ textproc/rubygem-ruby-xslt/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING USE_GNOME= libxslt -USE_RUBY= yes USES= gem gnome .include Index: textproc/rubygem-ruby_expect/Makefile =================================================================== --- textproc/rubygem-ruby_expect/Makefile +++ textproc/rubygem-ruby_expect/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-rubypants/Makefile =================================================================== --- textproc/rubygem-rubypants/Makefile +++ textproc/rubygem-rubypants/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-rugments/Makefile =================================================================== --- textproc/rubygem-rugments/Makefile +++ textproc/rubygem-rugments/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/rugmentize Index: textproc/rubygem-sanitize/Makefile =================================================================== --- textproc/rubygem-sanitize/Makefile +++ textproc/rubygem-sanitize/Makefile @@ -15,7 +15,6 @@ USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-sass-listen/Makefile =================================================================== --- textproc/rubygem-sass-listen/Makefile +++ textproc/rubygem-sass-listen/Makefile @@ -14,7 +14,6 @@ rubygem-rb-inotify>=0.9.7<1:devel/rubygem-rb-inotify USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-sass-rails-rails4/Makefile =================================================================== --- textproc/rubygem-sass-rails-rails4/Makefile +++ textproc/rubygem-sass-rails-rails4/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-sassc-rails-rails4>=2.1.1<3:textproc/rubygem-sassc-rails-rails4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-sass-rails-rails5/Makefile =================================================================== --- textproc/rubygem-sass-rails-rails5/Makefile +++ textproc/rubygem-sass-rails-rails5/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-sassc-rails-rails5>=2.1.1<3:textproc/rubygem-sassc-rails-rails5 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-sass-rails-rails50/Makefile =================================================================== --- textproc/rubygem-sass-rails-rails50/Makefile +++ textproc/rubygem-sass-rails-rails50/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-sassc-rails-rails50>=2.1.1<3:textproc/rubygem-sassc-rails-rails50 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-sass-rails-rails52/Makefile =================================================================== --- textproc/rubygem-sass-rails-rails52/Makefile +++ textproc/rubygem-sass-rails-rails52/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-sassc-rails-rails52>=2.1.1<3:textproc/rubygem-sassc-rails-rails52 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-sass-rails-rails60/Makefile =================================================================== --- textproc/rubygem-sass-rails-rails60/Makefile +++ textproc/rubygem-sass-rails-rails60/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-sassc-rails-rails60>=2.1.1<3:textproc/rubygem-sassc-rails-rails60 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-sass-rails-rails61/Makefile =================================================================== --- textproc/rubygem-sass-rails-rails61/Makefile +++ textproc/rubygem-sass-rails-rails61/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-sassc-rails-rails61>=2.1.1<3:textproc/rubygem-sassc-rails-rails61 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-sass-rails-rails70/Makefile =================================================================== --- textproc/rubygem-sass-rails-rails70/Makefile +++ textproc/rubygem-sass-rails-rails70/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-sassc-rails-rails70>=2.1.1<3:textproc/rubygem-sassc-rails-rails70 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-sass/Makefile =================================================================== --- textproc/rubygem-sass/Makefile +++ textproc/rubygem-sass/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-sass-listen>=4.0.0<4.1:textproc/rubygem-sass-listen USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-sassc-rails-rails4/Makefile =================================================================== --- textproc/rubygem-sassc-rails-rails4/Makefile +++ textproc/rubygem-sassc-rails-rails4/Makefile @@ -19,7 +19,6 @@ rubygem-tilt>=0:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-sassc-rails-rails5/Makefile =================================================================== --- textproc/rubygem-sassc-rails-rails5/Makefile +++ textproc/rubygem-sassc-rails-rails5/Makefile @@ -19,7 +19,6 @@ rubygem-tilt>=0:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-sassc-rails-rails50/Makefile =================================================================== --- textproc/rubygem-sassc-rails-rails50/Makefile +++ textproc/rubygem-sassc-rails-rails50/Makefile @@ -19,7 +19,6 @@ rubygem-tilt>=0:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-sassc-rails-rails52/Makefile =================================================================== --- textproc/rubygem-sassc-rails-rails52/Makefile +++ textproc/rubygem-sassc-rails-rails52/Makefile @@ -19,7 +19,6 @@ rubygem-tilt>=0:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-sassc-rails-rails60/Makefile =================================================================== --- textproc/rubygem-sassc-rails-rails60/Makefile +++ textproc/rubygem-sassc-rails-rails60/Makefile @@ -19,7 +19,6 @@ rubygem-tilt>=0:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-sassc-rails-rails61/Makefile =================================================================== --- textproc/rubygem-sassc-rails-rails61/Makefile +++ textproc/rubygem-sassc-rails-rails61/Makefile @@ -18,7 +18,6 @@ rubygem-tilt>=0:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-sassc-rails-rails70/Makefile =================================================================== --- textproc/rubygem-sassc-rails-rails70/Makefile +++ textproc/rubygem-sassc-rails-rails70/Makefile @@ -18,7 +18,6 @@ rubygem-tilt>=0:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-sassc/Makefile =================================================================== --- textproc/rubygem-sassc/Makefile +++ textproc/rubygem-sassc/Makefile @@ -13,6 +13,5 @@ RUN_DEPENDS= rubygem-ffi>=1.9<2:devel/rubygem-ffi USES= gem gmake -USE_RUBY= yes .include Index: textproc/rubygem-sassc22/Makefile =================================================================== --- textproc/rubygem-sassc22/Makefile +++ textproc/rubygem-sassc22/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-ffi>=1.9<2:devel/rubygem-ffi USES= gem gmake -USE_RUBY= yes # Workaround for https://gitlab.com/gitlab-org/gitlab/-/issues/216740 PORTSCOUT= limit:^2\.2\. Index: textproc/rubygem-sax-machine/Makefile =================================================================== --- textproc/rubygem-sax-machine/Makefile +++ textproc/rubygem-sax-machine/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-scss_lint/Makefile =================================================================== --- textproc/rubygem-scss_lint/Makefile +++ textproc/rubygem-scss_lint/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-sass>=3.5.5<4:textproc/rubygem-sass USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-shell2html/Makefile =================================================================== --- textproc/rubygem-shell2html/Makefile +++ textproc/rubygem-shell2html/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/shell2css bin/shell2html Index: textproc/rubygem-simplecov-html/Makefile =================================================================== --- textproc/rubygem-simplecov-html/Makefile +++ textproc/rubygem-simplecov-html/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-sixarm_ruby_unaccent/Makefile =================================================================== --- textproc/rubygem-sixarm_ruby_unaccent/Makefile +++ textproc/rubygem-sixarm_ruby_unaccent/Makefile @@ -11,7 +11,6 @@ LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-spreadsheet/Makefile =================================================================== --- textproc/rubygem-spreadsheet/Makefile +++ textproc/rubygem-spreadsheet/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ruby-ole>=0:devel/rubygem-ruby-ole USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-stamp/Makefile =================================================================== --- textproc/rubygem-stamp/Makefile +++ textproc/rubygem-stamp/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-syntax/Makefile =================================================================== --- textproc/rubygem-syntax/Makefile +++ textproc/rubygem-syntax/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-termcolor/Makefile =================================================================== --- textproc/rubygem-termcolor/Makefile +++ textproc/rubygem-termcolor/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-highline>=1.5.0:devel/rubygem-highline USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-terminal-table/Makefile =================================================================== --- textproc/rubygem-terminal-table/Makefile +++ textproc/rubygem-terminal-table/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-unicode-display_width>=1.1.1<3:devel/rubygem-unicode-display_width USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-terser/Makefile =================================================================== --- textproc/rubygem-terser/Makefile +++ textproc/rubygem-terser/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-execjs>=0.3.0<3:devel/rubygem-execjs USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-terser11/Makefile =================================================================== --- textproc/rubygem-terser11/Makefile +++ textproc/rubygem-terser11/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-execjs>=0.3.0<3:devel/rubygem-execjs USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-text/Makefile =================================================================== --- textproc/rubygem-text/Makefile +++ textproc/rubygem-text/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-tidy_ffi/Makefile =================================================================== --- textproc/rubygem-tidy_ffi/Makefile +++ textproc/rubygem-tidy_ffi/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ffi>=1.2<2:devel/rubygem-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-toml/Makefile =================================================================== --- textproc/rubygem-toml/Makefile +++ textproc/rubygem-toml/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-parslet>=1.8.0<3.0.0:textproc/rubygem-parslet USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-tomlrb/Makefile =================================================================== --- textproc/rubygem-tomlrb/Makefile +++ textproc/rubygem-tomlrb/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-tomlrb1/Makefile =================================================================== --- textproc/rubygem-tomlrb1/Makefile +++ textproc/rubygem-tomlrb1/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-truncato/Makefile =================================================================== --- textproc/rubygem-truncato/Makefile +++ textproc/rubygem-truncato/Makefile @@ -14,7 +14,6 @@ rubygem-nokogiri>=1.7.0:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-twitter-text/Makefile =================================================================== --- textproc/rubygem-twitter-text/Makefile +++ textproc/rubygem-twitter-text/Makefile @@ -14,7 +14,6 @@ rubygem-unf>=0.1.0<0.2:textproc/rubygem-unf USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-twitter-text1/Makefile =================================================================== --- textproc/rubygem-twitter-text1/Makefile +++ textproc/rubygem-twitter-text1/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-unf>=0.1.0:textproc/rubygem-unf USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-unf/Makefile =================================================================== --- textproc/rubygem-unf/Makefile +++ textproc/rubygem-unf/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-unf_ext>=0:textproc/rubygem-unf_ext NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-unf_ext/Makefile =================================================================== --- textproc/rubygem-unf_ext/Makefile +++ textproc/rubygem-unf_ext/Makefile @@ -11,6 +11,5 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include Index: textproc/rubygem-unicode_plot/Makefile =================================================================== --- textproc/rubygem-unicode_plot/Makefile +++ textproc/rubygem-unicode_plot/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-enumerable-statistics>=2.0.1:math/rubygem-enumerable-statistics USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-version_sorter/Makefile =================================================================== --- textproc/rubygem-version_sorter/Makefile +++ textproc/rubygem-version_sorter/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-whatlanguage/Makefile =================================================================== --- textproc/rubygem-whatlanguage/Makefile +++ textproc/rubygem-whatlanguage/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-wikicloth/Makefile =================================================================== --- textproc/rubygem-wikicloth/Makefile +++ textproc/rubygem-wikicloth/Makefile @@ -17,7 +17,6 @@ rubygem-twitter-text>=0:textproc/rubygem-twitter-text NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-wikicloth081/Makefile =================================================================== --- textproc/rubygem-wikicloth081/Makefile +++ textproc/rubygem-wikicloth081/Makefile @@ -23,6 +23,5 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes .include Index: textproc/rubygem-xml-simple/Makefile =================================================================== --- textproc/rubygem-xml-simple/Makefile +++ textproc/rubygem-xml-simple/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rexml>=0:textproc/rubygem-rexml USES= gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-ya2yaml/Makefile =================================================================== --- textproc/rubygem-ya2yaml/Makefile +++ textproc/rubygem-ya2yaml/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-yard-chef/Makefile =================================================================== --- textproc/rubygem-yard-chef/Makefile +++ textproc/rubygem-yard-chef/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: textproc/rubygem-yard/Makefile =================================================================== --- textproc/rubygem-yard/Makefile +++ textproc/rubygem-yard/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-webrick>=1.7.0<1.8:www/rubygem-webrick USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: textproc/rubygem-zmq/Makefile =================================================================== --- textproc/rubygem-zmq/Makefile +++ textproc/rubygem-zmq/Makefile @@ -12,7 +12,6 @@ LIB_DEPENDS= libzmq.so:net/libzmq2 -USE_RUBY= yes USES= gem .include Index: textproc/splitpatch/Makefile =================================================================== --- textproc/splitpatch/Makefile +++ textproc/splitpatch/Makefile @@ -9,11 +9,10 @@ LICENSE= GPLv2+ -USES= gmake perl5 +USES= gmake perl5 ruby USE_GITHUB= yes GH_ACCOUNT= jaalto USE_PERL5= build -USE_RUBY= yes MAKE_JOBS_UNSAFE= yes Index: textproc/uim/Makefile =================================================================== --- textproc/uim/Makefile +++ textproc/uim/Makefile @@ -43,11 +43,9 @@ .endif .if !defined(UIM_SLAVE) -USES+= perl5 +USES+= perl5 ruby:build USE_GNOME+= librsvg2:build USE_PERL5= build -USE_RUBY= yes -RUBY_NO_RUN_DEPENDS= yes .if ${PORT_OPTIONS:MX11} USE_GNOME+= cairo gdkpixbuf2 gtk30 LIB_DEPENDS+= libfreetype.so:print/freetype2 \ Index: textproc/zorba/Makefile =================================================================== --- textproc/zorba/Makefile +++ textproc/zorba/Makefile @@ -72,7 +72,7 @@ .endif .if ${PORT_OPTIONS:MRUBY} -USE_RUBY= yes +USES+= ruby WITH_SWIG= yes .endif Index: www/gist/Makefile =================================================================== --- www/gist/Makefile +++ www/gist/Makefile @@ -17,8 +17,7 @@ USE_GITHUB= yes GH_ACCOUNT= defunkt -USE_RUBY= YES -RUBY_NO_BUILD_DEPENDS= YES +USES= ruby:run NO_BUILD= YES NO_ARCH= yes Index: www/gitlab-ce/Makefile =================================================================== --- www/gitlab-ce/Makefile +++ www/gitlab-ce/Makefile @@ -269,8 +269,7 @@ gitea \ gitosis -USES= go:modules shebangfix -USE_RUBY= yes +USES= go:modules ruby shebangfix USE_RC_SUBR= gitlab USE_GITLAB= yes Index: www/h2o-devel/Makefile =================================================================== --- www/h2o-devel/Makefile +++ www/h2o-devel/Makefile @@ -52,9 +52,7 @@ CMAKE_ARGS+= -DBUILD_SHARED_LIBS=OFF -DWITH_BUNDLED_SSL=OFF MRUBY_CMAKE_BOOL= WITH_MRUBY -MRUBY_USES= bison -MRUBY_USE= ruby=yes -MRUBY_VARS= RUBY_NO_RUN_DEPENDS=yes +MRUBY_USES= bison ruby:build .include Index: www/h2o/Makefile =================================================================== --- www/h2o/Makefile +++ www/h2o/Makefile @@ -53,9 +53,7 @@ CMAKE_ARGS+= -DBUILD_SHARED_LIBS=ON -DWITH_BUNDLED_SSL=OFF MRUBY_CMAKE_BOOL= WITH_MRUBY -MRUBY_USES= bison -MRUBY_USE= ruby=yes -MRUBY_VARS= RUBY_NO_RUN_DEPENDS=yes +MRUBY_USES= bison ruby:build post-patch: @${REINPLACE_CMD} -e 's|exec perl|exec ${LOCALBASE}/bin/perl|' \ Index: www/netstiff/Makefile =================================================================== --- www/netstiff/Makefile +++ www/netstiff/Makefile @@ -11,9 +11,8 @@ LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE -USES= shebangfix +USES= ruby shebangfix SHEBANG_FILES= ${WRKSRC}/${PORTNAME} -USE_RUBY= yes NO_BUILD= yes NO_ARCH= yes Index: www/qt5-webkit/Makefile =================================================================== --- www/qt5-webkit/Makefile +++ www/qt5-webkit/Makefile @@ -21,21 +21,18 @@ libwoff2dec.so:devel/woff2 USES= bison cmake compiler:c++11-lang gnome gperf jpeg \ - pathfix perl5 pkgconfig python:3.5+,build qt:5 sqlite:3 \ - tar:xz xorg + pathfix perl5 pkgconfig python:3.5+,build qt:5 ruby:build \ + sqlite:3 tar:xz xorg USE_GNOME= glib20 libxml2 libxslt USE_PERL5= build USE_QT= core declarative gui location network opengl printsupport \ sensors webchannel widgets \ buildtools:build declarative-test:build qmake:build testlib:build -USE_RUBY= yes USE_XORG= x11 xcomposite xrender # Fix pkgconfig install paths. PATHFIX_CMAKELISTSTXT= PlatformQt.cmake -RUBY_NO_RUN_DEPENDS= yes - CMAKE_ARGS= -DPORT:STRING="Qt" \ -DKDE_INSTALL_INCLUDEDIR:PATH="${QT_INCDIR_REL}" \ -DKDE_INSTALL_LIBDIR:PATH="${QT_LIBDIR_REL}" Index: www/redmine42/Makefile =================================================================== --- www/redmine42/Makefile +++ www/redmine42/Makefile @@ -30,8 +30,7 @@ rubygem-rotp>0:devel/rubygem-rotp \ rubygem-rqrcode>0:www/rubygem-rqrcode -USES= cpe -USE_RUBY= yes +USES= cpe ruby BROKEN_RUBY30= yes BROKEN_RUBY31= yes Index: www/redmine42/bsd.redmine.mk =================================================================== --- www/redmine42/bsd.redmine.mk +++ www/redmine42/bsd.redmine.mk @@ -45,7 +45,7 @@ RUN_DEPENDS+= redmine42>=4.2:www/redmine42 -USE_RUBY= yes +USES+= ruby .if !defined(PLIST) PLIST= ${WRKDIR}/PLIST _GEN_PLIST= YesPlease Index: www/rubygem-ace-rails-ap/Makefile =================================================================== --- www/rubygem-ace-rails-ap/Makefile +++ www/rubygem-ace-rails-ap/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-actioncable5/Makefile =================================================================== --- www/rubygem-actioncable5/Makefile +++ www/rubygem-actioncable5/Makefile @@ -16,7 +16,6 @@ rubygem-websocket-driver>=0.6.1<1:www/rubygem-websocket-driver USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-actioncable50/Makefile =================================================================== --- www/rubygem-actioncable50/Makefile +++ www/rubygem-actioncable50/Makefile @@ -16,7 +16,6 @@ rubygem-websocket-driver>=0.6.1<1:www/rubygem-websocket-driver USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-actioncable52/Makefile =================================================================== --- www/rubygem-actioncable52/Makefile +++ www/rubygem-actioncable52/Makefile @@ -16,7 +16,6 @@ rubygem-websocket-driver>=0.6.1:www/rubygem-websocket-driver USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-actioncable60/Makefile =================================================================== --- www/rubygem-actioncable60/Makefile +++ www/rubygem-actioncable60/Makefile @@ -16,7 +16,6 @@ rubygem-websocket-driver>=0.6.1:www/rubygem-websocket-driver USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-actioncable61/Makefile =================================================================== --- www/rubygem-actioncable61/Makefile +++ www/rubygem-actioncable61/Makefile @@ -17,7 +17,6 @@ rubygem-websocket-driver>=0.6.1:www/rubygem-websocket-driver USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-actioncable70/Makefile =================================================================== --- www/rubygem-actioncable70/Makefile +++ www/rubygem-actioncable70/Makefile @@ -17,7 +17,6 @@ rubygem-websocket-driver>=0.6.1:www/rubygem-websocket-driver USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-actionpack4/Makefile =================================================================== --- www/rubygem-actionpack4/Makefile +++ www/rubygem-actionpack4/Makefile @@ -19,7 +19,6 @@ rubygem-rails-html-sanitizer>=1.0.2<2:textproc/rubygem-rails-html-sanitizer USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-actionpack5/Makefile =================================================================== --- www/rubygem-actionpack5/Makefile +++ www/rubygem-actionpack5/Makefile @@ -19,7 +19,6 @@ rubygem-rails-html-sanitizer>=1.0.2<2:textproc/rubygem-rails-html-sanitizer USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-actionpack50/Makefile =================================================================== --- www/rubygem-actionpack50/Makefile +++ www/rubygem-actionpack50/Makefile @@ -20,7 +20,6 @@ rubygem-rails-html-sanitizer>=1.0.2<2:textproc/rubygem-rails-html-sanitizer USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-actionpack52/Makefile =================================================================== --- www/rubygem-actionpack52/Makefile +++ www/rubygem-actionpack52/Makefile @@ -19,7 +19,6 @@ rubygem-rails-html-sanitizer>=1.0.2<2:textproc/rubygem-rails-html-sanitizer USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-actionpack60/Makefile =================================================================== --- www/rubygem-actionpack60/Makefile +++ www/rubygem-actionpack60/Makefile @@ -19,7 +19,6 @@ rubygem-rails-html-sanitizer>=1.2.0<2:textproc/rubygem-rails-html-sanitizer USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-actionpack61/Makefile =================================================================== --- www/rubygem-actionpack61/Makefile +++ www/rubygem-actionpack61/Makefile @@ -19,7 +19,6 @@ rubygem-rails-html-sanitizer>=1.2.0<2:textproc/rubygem-rails-html-sanitizer USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-actionpack70/Makefile =================================================================== --- www/rubygem-actionpack70/Makefile +++ www/rubygem-actionpack70/Makefile @@ -19,7 +19,6 @@ rubygem-rails-html-sanitizer>=1.2.0<2:textproc/rubygem-rails-html-sanitizer USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-activeresource/Makefile =================================================================== --- www/rubygem-activeresource/Makefile +++ www/rubygem-activeresource/Makefile @@ -14,7 +14,6 @@ rubygem-activesupport60>=6.0:devel/rubygem-activesupport60 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-activeresource4/Makefile =================================================================== --- www/rubygem-activeresource4/Makefile +++ www/rubygem-activeresource4/Makefile @@ -15,7 +15,6 @@ rubygem-rails-observers>=0.1.2<0.2:devel/rubygem-rails-observers USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-acts-as-taggable-on/Makefile =================================================================== --- www/rubygem-acts-as-taggable-on/Makefile +++ www/rubygem-acts-as-taggable-on/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-activerecord61>=6.0<7.1:databases/rubygem-activerecord61 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-acts_as_taggable/Makefile =================================================================== --- www/rubygem-acts_as_taggable/Makefile +++ www/rubygem-acts_as_taggable/Makefile @@ -9,7 +9,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-addressable/Makefile =================================================================== --- www/rubygem-addressable/Makefile +++ www/rubygem-addressable/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-public_suffix>=2.0.2<6.0:dns/rubygem-public_suffix USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-adsf/Makefile =================================================================== --- www/rubygem-adsf/Makefile +++ www/rubygem-adsf/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes PLIST_FILES= bin/adsf Index: www/rubygem-akami/Makefile =================================================================== --- www/rubygem-akami/Makefile +++ www/rubygem-akami/Makefile @@ -14,7 +14,6 @@ rubygem-nokogiri>=0:textproc/rubygem-nokogiri NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-amazon-ecs/Makefile =================================================================== --- www/rubygem-amazon-ecs/Makefile +++ www/rubygem-amazon-ecs/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-nokogiri>=1.10<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-anemone/Makefile =================================================================== --- www/rubygem-anemone/Makefile +++ www/rubygem-anemone/Makefile @@ -14,7 +14,6 @@ rubygem-robotex>=1.0.0:www/rubygem-robotex NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/anemone Index: www/rubygem-asana/Makefile =================================================================== --- www/rubygem-asana/Makefile +++ www/rubygem-asana/Makefile @@ -17,7 +17,6 @@ rubygem-oauth2>=1.4<3:net/rubygem-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-asana0/Makefile =================================================================== --- www/rubygem-asana0/Makefile +++ www/rubygem-asana0/Makefile @@ -17,7 +17,6 @@ rubygem-oauth21>=1.4<3:net/rubygem-oauth21 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-asana1/Makefile =================================================================== --- www/rubygem-asana1/Makefile +++ www/rubygem-asana1/Makefile @@ -18,7 +18,6 @@ rubygem-oauth2>=1.4<3:net/rubygem-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-async-http/Makefile =================================================================== --- www/rubygem-async-http/Makefile +++ www/rubygem-async-http/Makefile @@ -18,7 +18,6 @@ rubygem-traces>=0.4.0:devel/rubygem-traces USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-async-pool/Makefile =================================================================== --- www/rubygem-async-pool/Makefile +++ www/rubygem-async-pool/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-async>=1.25:devel/rubygem-async USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-async-rest/Makefile =================================================================== --- www/rubygem-async-rest/Makefile +++ www/rubygem-async-rest/Makefile @@ -13,7 +13,6 @@ rubygem-protocol-http>=0.7<1:www/rubygem-protocol-http USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-async-websocket/Makefile =================================================================== --- www/rubygem-async-websocket/Makefile +++ www/rubygem-async-websocket/Makefile @@ -15,7 +15,6 @@ rubygem-protocol-websocket>=0.9.1<0.10:www/rubygem-protocol-websocket USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-async_sinatra/Makefile =================================================================== --- www/rubygem-async_sinatra/Makefile +++ www/rubygem-async_sinatra/Makefile @@ -13,7 +13,6 @@ rubygem-sinatra>=1.4.8:www/rubygem-sinatra NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-atlassian-jwt/Makefile =================================================================== --- www/rubygem-atlassian-jwt/Makefile +++ www/rubygem-atlassian-jwt/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-jwt>=2.1<3:www/rubygem-jwt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-best_in_place-rails5/Makefile =================================================================== --- www/rubygem-best_in_place-rails5/Makefile +++ www/rubygem-best_in_place-rails5/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-best_in_place/Makefile =================================================================== --- www/rubygem-best_in_place/Makefile +++ www/rubygem-best_in_place/Makefile @@ -14,7 +14,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-bluecloth/Makefile =================================================================== --- www/rubygem-bluecloth/Makefile +++ www/rubygem-bluecloth/Makefile @@ -10,7 +10,6 @@ LICENSE= BSD3CLAUSE -USE_RUBY= yes USES= gem shebangfix SHEBANG_FILES= bin/bluecloth Index: www/rubygem-bootstrap-sass/Makefile =================================================================== --- www/rubygem-bootstrap-sass/Makefile +++ www/rubygem-bootstrap-sass/Makefile @@ -14,7 +14,6 @@ rubygem-sassc>=2.0.0:textproc/rubygem-sassc USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-browser/Makefile =================================================================== --- www/rubygem-browser/Makefile +++ www/rubygem-browser/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-cal-heatmap-rails/Makefile =================================================================== --- www/rubygem-cal-heatmap-rails/Makefile +++ www/rubygem-cal-heatmap-rails/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-d3_rails>=3.4.6:www/rubygem-d3_rails NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-carrierwave/Makefile =================================================================== --- www/rubygem-carrierwave/Makefile +++ www/rubygem-carrierwave/Makefile @@ -17,7 +17,6 @@ USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-cgi/Makefile =================================================================== --- www/rubygem-cgi/Makefile +++ www/rubygem-cgi/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= cpe gem -USE_RUBY= yes CPE_VENDOR= ruby-lang Index: www/rubygem-cgi_multipart_eof_fix/Makefile =================================================================== --- www/rubygem-cgi_multipart_eof_fix/Makefile +++ www/rubygem-cgi_multipart_eof_fix/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-chosen-rails/Makefile =================================================================== --- www/rubygem-chosen-rails/Makefile +++ www/rubygem-chosen-rails/Makefile @@ -15,7 +15,6 @@ rubygem-sassc-rails-rails4>=2.1.2:textproc/rubygem-sassc-rails-rails4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-chromedriver-helper/Makefile =================================================================== --- www/rubygem-chromedriver-helper/Makefile +++ www/rubygem-chromedriver-helper/Makefile @@ -14,7 +14,6 @@ rubygem-nokogiri>=1.8<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-cookiejar/Makefile =================================================================== --- www/rubygem-cookiejar/Makefile +++ www/rubygem-cookiejar/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-crass/Makefile =================================================================== --- www/rubygem-crass/Makefile +++ www/rubygem-crass/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-cssbundling-rails/Makefile =================================================================== --- www/rubygem-cssbundling-rails/Makefile +++ www/rubygem-cssbundling-rails/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-railties70>=6.0.0:www/rubygem-railties70 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-cuba/Makefile =================================================================== --- www/rubygem-cuba/Makefile +++ www/rubygem-cuba/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rack>=1.6.0:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-d3_rails/Makefile =================================================================== --- www/rubygem-d3_rails/Makefile +++ www/rubygem-d3_rails/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-railties4>=3.1.0:www/rubygem-railties4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-davclient/Makefile =================================================================== --- www/rubygem-davclient/Makefile +++ www/rubygem-davclient/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/dav Index: www/rubygem-deckar01-task_list/Makefile =================================================================== --- www/rubygem-deckar01-task_list/Makefile +++ www/rubygem-deckar01-task_list/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-html-pipeline>=0:textproc/rubygem-html-pipeline USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-domainatrix/Makefile =================================================================== --- www/rubygem-domainatrix/Makefile +++ www/rubygem-domainatrix/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-dropzonejs-rails/Makefile =================================================================== --- www/rubygem-dropzonejs-rails/Makefile +++ www/rubygem-dropzonejs-rails/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rails4>=3.1:www/rubygem-rails4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-em-http-request/Makefile =================================================================== --- www/rubygem-em-http-request/Makefile +++ www/rubygem-em-http-request/Makefile @@ -16,7 +16,6 @@ rubygem-http_parser.rb>=0.6.0:net/rubygem-http_parser.rb USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-em-socksify/Makefile =================================================================== --- www/rubygem-em-socksify/Makefile +++ www/rubygem-em-socksify/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-eventmachine>=1.0.0:devel/rubygem-eventmachine NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-em-twitter/Makefile =================================================================== --- www/rubygem-em-twitter/Makefile +++ www/rubygem-em-twitter/Makefile @@ -16,7 +16,6 @@ rubygem-simple_oauth>=0.2<1:net/rubygem-simple_oauth USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-em-websocket/Makefile =================================================================== --- www/rubygem-em-websocket/Makefile +++ www/rubygem-em-websocket/Makefile @@ -14,7 +14,6 @@ rubygem-http_parser.rb>=0<1:net/rubygem-http_parser.rb USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-emk-sinatra-url-for/Makefile =================================================================== --- www/rubygem-emk-sinatra-url-for/Makefile +++ www/rubygem-emk-sinatra-url-for/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-sinatra>=0.9.1.1:www/rubygem-sinatra NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-erubi/Makefile =================================================================== --- www/rubygem-erubi/Makefile +++ www/rubygem-erubi/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-erubi19/Makefile =================================================================== --- www/rubygem-erubi19/Makefile +++ www/rubygem-erubi19/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-erubis/Makefile =================================================================== --- www/rubygem-erubis/Makefile +++ www/rubygem-erubis/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/erubis Index: www/rubygem-ethon/Makefile =================================================================== --- www/rubygem-ethon/Makefile +++ www/rubygem-ethon/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-ffi>=1.15.0:devel/rubygem-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-eventmachine_httpserver/Makefile =================================================================== --- www/rubygem-eventmachine_httpserver/Makefile +++ www/rubygem-eventmachine_httpserver/Makefile @@ -10,6 +10,5 @@ LICENSE= GPLv2 USES= gem -USE_RUBY= yes .include Index: www/rubygem-faraday-em_http/Makefile =================================================================== --- www/rubygem-faraday-em_http/Makefile +++ www/rubygem-faraday-em_http/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faraday-em_synchrony/Makefile =================================================================== --- www/rubygem-faraday-em_synchrony/Makefile +++ www/rubygem-faraday-em_synchrony/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faraday-follow_redirects/Makefile =================================================================== --- www/rubygem-faraday-follow_redirects/Makefile +++ www/rubygem-faraday-follow_redirects/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-faraday>=1<3:www/rubygem-faraday USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faraday-http-cache/Makefile =================================================================== --- www/rubygem-faraday-http-cache/Makefile +++ www/rubygem-faraday-http-cache/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-faraday1>=0.8:www/rubygem-faraday1 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faraday-httpclient/Makefile =================================================================== --- www/rubygem-faraday-httpclient/Makefile +++ www/rubygem-faraday-httpclient/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-httpclient>=2.2:www/rubygem-httpclient USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faraday-httpclient1/Makefile =================================================================== --- www/rubygem-faraday-httpclient1/Makefile +++ www/rubygem-faraday-httpclient1/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faraday-multipart/Makefile =================================================================== --- www/rubygem-faraday-multipart/Makefile +++ www/rubygem-faraday-multipart/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-multipart-post>=2<3:www/rubygem-multipart-post USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faraday-net_http/Makefile =================================================================== --- www/rubygem-faraday-net_http/Makefile +++ www/rubygem-faraday-net_http/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faraday-net_http1/Makefile =================================================================== --- www/rubygem-faraday-net_http1/Makefile +++ www/rubygem-faraday-net_http1/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faraday-net_http_persistent/Makefile =================================================================== --- www/rubygem-faraday-net_http_persistent/Makefile +++ www/rubygem-faraday-net_http_persistent/Makefile @@ -14,7 +14,6 @@ rubygem-net-http-persistent>=4.0<5:www/rubygem-net-http-persistent USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faraday-net_http_persistent1/Makefile =================================================================== --- www/rubygem-faraday-net_http_persistent1/Makefile +++ www/rubygem-faraday-net_http_persistent1/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faraday-patron/Makefile =================================================================== --- www/rubygem-faraday-patron/Makefile +++ www/rubygem-faraday-patron/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-patron>=0.4.2:www/rubygem-patron USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faraday-patron1/Makefile =================================================================== --- www/rubygem-faraday-patron1/Makefile +++ www/rubygem-faraday-patron1/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faraday-rack/Makefile =================================================================== --- www/rubygem-faraday-rack/Makefile +++ www/rubygem-faraday-rack/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-faraday>=2.0<3:www/rubygem-faraday USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faraday-rack1/Makefile =================================================================== --- www/rubygem-faraday-rack1/Makefile +++ www/rubygem-faraday-rack1/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faraday-retry/Makefile =================================================================== --- www/rubygem-faraday-retry/Makefile +++ www/rubygem-faraday-retry/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-faraday>=2.0<3:www/rubygem-faraday USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faraday-retry1/Makefile =================================================================== --- www/rubygem-faraday-retry1/Makefile +++ www/rubygem-faraday-retry1/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faraday/Makefile =================================================================== --- www/rubygem-faraday/Makefile +++ www/rubygem-faraday/Makefile @@ -14,7 +14,6 @@ rubygem-ruby2_keywords>=0.0.4:devel/rubygem-ruby2_keywords USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faraday0/Makefile =================================================================== --- www/rubygem-faraday0/Makefile +++ www/rubygem-faraday0/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-multipart-post>=1.2<3:www/rubygem-multipart-post USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faraday1/Makefile =================================================================== --- www/rubygem-faraday1/Makefile +++ www/rubygem-faraday1/Makefile @@ -24,7 +24,6 @@ rubygem-ruby2_keywords>=0.0.4:devel/rubygem-ruby2_keywords USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faraday14/Makefile =================================================================== --- www/rubygem-faraday14/Makefile +++ www/rubygem-faraday14/Makefile @@ -22,7 +22,6 @@ USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faraday_middleware/Makefile =================================================================== --- www/rubygem-faraday_middleware/Makefile +++ www/rubygem-faraday_middleware/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-faraday1>=1.0<2:www/rubygem-faraday1 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faraday_middleware0/Makefile =================================================================== --- www/rubygem-faraday_middleware0/Makefile +++ www/rubygem-faraday_middleware0/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-faraday0>=0.7.4<1.0:www/rubygem-faraday0 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faye-websocket/Makefile =================================================================== --- www/rubygem-faye-websocket/Makefile +++ www/rubygem-faye-websocket/Makefile @@ -13,7 +13,6 @@ rubygem-websocket-driver>=0.5.1:www/rubygem-websocket-driver USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-faye/Makefile =================================================================== --- www/rubygem-faye/Makefile +++ www/rubygem-faye/Makefile @@ -18,7 +18,6 @@ rubygem-websocket-driver>=0.5.1:www/rubygem-websocket-driver USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-fcgi/Makefile =================================================================== --- www/rubygem-fcgi/Makefile +++ www/rubygem-fcgi/Makefile @@ -12,7 +12,6 @@ LIB_DEPENDS= libfcgi.so:www/fcgi -USE_RUBY= yes USES= gem .include Index: www/rubygem-feed-normalizer/Makefile =================================================================== --- www/rubygem-feed-normalizer/Makefile +++ www/rubygem-feed-normalizer/Makefile @@ -15,7 +15,6 @@ rubygem-simple-rss>=1.1:www/rubygem-simple-rss NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-feedjira/Makefile =================================================================== --- www/rubygem-feedjira/Makefile +++ www/rubygem-feedjira/Makefile @@ -14,7 +14,6 @@ rubygem-sax-machine>=1.0:textproc/rubygem-sax-machine USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-flowdock/Makefile =================================================================== --- www/rubygem-flowdock/Makefile +++ www/rubygem-flowdock/Makefile @@ -14,7 +14,6 @@ rubygem-multi_json>=0:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-fuzzyurl/Makefile =================================================================== --- www/rubygem-fuzzyurl/Makefile +++ www/rubygem-fuzzyurl/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-geminabox/Makefile =================================================================== --- www/rubygem-geminabox/Makefile +++ www/rubygem-geminabox/Makefile @@ -20,7 +20,6 @@ USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-gitlab-flowdock-git-hook/Makefile =================================================================== --- www/rubygem-gitlab-flowdock-git-hook/Makefile +++ www/rubygem-gitlab-flowdock-git-hook/Makefile @@ -15,7 +15,6 @@ rubygem-multi_json>=0:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-gitlab-gollum-lib/Makefile =================================================================== --- www/rubygem-gitlab-gollum-lib/Makefile +++ www/rubygem-gitlab-gollum-lib/Makefile @@ -20,7 +20,6 @@ rubygem-stringex>=2.6<3,1:devel/rubygem-stringex USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-gitlab-gollum-rugged_adapter/Makefile =================================================================== --- www/rubygem-gitlab-gollum-rugged_adapter/Makefile +++ www/rubygem-gitlab-gollum-rugged_adapter/Makefile @@ -15,7 +15,6 @@ rubygem-rugged>=1.0<2:devel/rubygem-rugged USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-gitlab-turbolinks-classic/Makefile =================================================================== --- www/rubygem-gitlab-turbolinks-classic/Makefile +++ www/rubygem-gitlab-turbolinks-classic/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-coffee-rails4>=4.0.1:devel/rubygem-coffee-rails4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-goldfinger/Makefile =================================================================== --- www/rubygem-goldfinger/Makefile +++ www/rubygem-goldfinger/Makefile @@ -17,7 +17,6 @@ rubygem-oj>=3.0<4:devel/rubygem-oj USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-gollum-grit_adapter/Makefile =================================================================== --- www/rubygem-gollum-grit_adapter/Makefile +++ www/rubygem-gollum-grit_adapter/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-gitlab-grit>=2.7.1<3:textproc/rubygem-gitlab-grit USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-gollum-grit_adapter10/Makefile =================================================================== --- www/rubygem-gollum-grit_adapter10/Makefile +++ www/rubygem-gollum-grit_adapter10/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-gitlab-grit>=2.7.1:textproc/rubygem-gitlab-grit USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-gollum-lib/Makefile =================================================================== --- www/rubygem-gollum-lib/Makefile +++ www/rubygem-gollum-lib/Makefile @@ -21,7 +21,6 @@ rubygem-twitter-text1>=1.14.7<1.14.8:textproc/rubygem-twitter-text1 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-gollum-rugged_adapter/Makefile =================================================================== --- www/rubygem-gollum-rugged_adapter/Makefile +++ www/rubygem-gollum-rugged_adapter/Makefile @@ -14,7 +14,6 @@ rubygem-rugged>=1.1<2:devel/rubygem-rugged USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-gollum/Makefile =================================================================== --- www/rubygem-gollum/Makefile +++ www/rubygem-gollum/Makefile @@ -33,7 +33,6 @@ USES= cpe gem shebangfix CPE_VENDOR= ${PORTNAME}_project USE_RC_SUBR= ${PORTNAME} -USE_RUBY= yes SHEBANG_FILES= docker-run.sh NO_ARCH= yes Index: www/rubygem-gon-rails5/Makefile =================================================================== --- www/rubygem-gon-rails5/Makefile +++ www/rubygem-gon-rails5/Makefile @@ -17,7 +17,6 @@ USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-gon-rails50/Makefile =================================================================== --- www/rubygem-gon-rails50/Makefile +++ www/rubygem-gon-rails50/Makefile @@ -17,7 +17,6 @@ USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-gon-rails60/Makefile =================================================================== --- www/rubygem-gon-rails60/Makefile +++ www/rubygem-gon-rails60/Makefile @@ -18,7 +18,6 @@ USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-gon-rails61/Makefile =================================================================== --- www/rubygem-gon-rails61/Makefile +++ www/rubygem-gon-rails61/Makefile @@ -18,7 +18,6 @@ USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-hackpad-cli/Makefile =================================================================== --- www/rubygem-hackpad-cli/Makefile +++ www/rubygem-hackpad-cli/Makefile @@ -18,7 +18,6 @@ rubygem-thor>=0:devel/rubygem-thor NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/hpcli Index: www/rubygem-haml-coderay/Makefile =================================================================== --- www/rubygem-haml-coderay/Makefile +++ www/rubygem-haml-coderay/Makefile @@ -14,7 +14,6 @@ rubygem-haml>=0:www/rubygem-haml USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-haml-contrib/Makefile =================================================================== --- www/rubygem-haml-contrib/Makefile +++ www/rubygem-haml-contrib/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-haml>=4.0.0:www/rubygem-haml USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-haml-rails-rails4/Makefile =================================================================== --- www/rubygem-haml-rails-rails4/Makefile +++ www/rubygem-haml-rails-rails4/Makefile @@ -19,7 +19,6 @@ rubygem-railties4>=4.0.1:www/rubygem-railties4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-haml/Makefile =================================================================== --- www/rubygem-haml/Makefile +++ www/rubygem-haml/Makefile @@ -15,7 +15,6 @@ rubygem-tilt>=0:devel/rubygem-tilt USES= cpe gem shebangfix -USE_RUBY= yes PLIST_FILES= bin/haml Index: www/rubygem-haml5/Makefile =================================================================== --- www/rubygem-haml5/Makefile +++ www/rubygem-haml5/Makefile @@ -15,7 +15,6 @@ rubygem-tilt>=0:devel/rubygem-tilt USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-hamlit-rails-rails5/Makefile =================================================================== --- www/rubygem-hamlit-rails-rails5/Makefile +++ www/rubygem-hamlit-rails-rails5/Makefile @@ -17,7 +17,6 @@ rubygem-railties5>=0:www/rubygem-railties5 USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-hamlit-rails-rails50/Makefile =================================================================== --- www/rubygem-hamlit-rails-rails50/Makefile +++ www/rubygem-hamlit-rails-rails50/Makefile @@ -17,7 +17,6 @@ rubygem-railties50>=0:www/rubygem-railties50 USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-hamlit-rails/Makefile =================================================================== --- www/rubygem-hamlit-rails/Makefile +++ www/rubygem-hamlit-rails/Makefile @@ -16,7 +16,6 @@ rubygem-railties4>=4.0.1:www/rubygem-railties4 USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-hamlit/Makefile =================================================================== --- www/rubygem-hamlit/Makefile +++ www/rubygem-hamlit/Makefile @@ -15,7 +15,6 @@ rubygem-tilt>=0:devel/rubygem-tilt USES= gem shebangfix -USE_RUBY= yes PLIST_FILES= bin/hamlit Index: www/rubygem-hashicorp-checkpoint/Makefile =================================================================== --- www/rubygem-hashicorp-checkpoint/Makefile +++ www/rubygem-hashicorp-checkpoint/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-heroics/Makefile =================================================================== --- www/rubygem-heroics/Makefile +++ www/rubygem-heroics/Makefile @@ -16,7 +16,6 @@ rubygem-multi_json>=1.9.2:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-heroku-api/Makefile =================================================================== --- www/rubygem-heroku-api/Makefile +++ www/rubygem-heroku-api/Makefile @@ -13,7 +13,6 @@ rubygem-multi_json>=1.8<2:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-heroku-nav/Makefile =================================================================== --- www/rubygem-heroku-nav/Makefile +++ www/rubygem-heroku-nav/Makefile @@ -11,7 +11,6 @@ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-hpricot/Makefile =================================================================== --- www/rubygem-hpricot/Makefile +++ www/rubygem-hpricot/Makefile @@ -9,7 +9,6 @@ LICENSE= MIT -USE_RUBY= yes USES= gem .include Index: www/rubygem-html2haml/Makefile =================================================================== --- www/rubygem-html2haml/Makefile +++ www/rubygem-html2haml/Makefile @@ -17,7 +17,6 @@ rubygem-ruby_parser>=3.5<4:devel/rubygem-ruby_parser USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-http-accept/Makefile =================================================================== --- www/rubygem-http-accept/Makefile +++ www/rubygem-http-accept/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-http-cookie/Makefile =================================================================== --- www/rubygem-http-cookie/Makefile +++ www/rubygem-http-cookie/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-domain_name>=0.5<1:net/rubygem-domain_name USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-http-form_data/Makefile =================================================================== --- www/rubygem-http-form_data/Makefile +++ www/rubygem-http-form_data/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-http/Makefile =================================================================== --- www/rubygem-http/Makefile +++ www/rubygem-http/Makefile @@ -16,7 +16,6 @@ rubygem-llhttp-ffi>=0.4.0<0.5:www/rubygem-llhttp-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-http3/Makefile =================================================================== --- www/rubygem-http3/Makefile +++ www/rubygem-http3/Makefile @@ -18,7 +18,6 @@ rubygem-http_parser.rb>=0.6.0<1:net/rubygem-http_parser.rb USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-http4/Makefile =================================================================== --- www/rubygem-http4/Makefile +++ www/rubygem-http4/Makefile @@ -17,7 +17,6 @@ rubygem-http-parser>=1.2.0<1.3:net/rubygem-http-parser USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-http_router/Makefile =================================================================== --- www/rubygem-http_router/Makefile +++ www/rubygem-http_router/Makefile @@ -15,7 +15,6 @@ rubygem-url_mount>=0.2.1<0.3:www/rubygem-url_mount USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-httparty/Makefile =================================================================== --- www/rubygem-httparty/Makefile +++ www/rubygem-httparty/Makefile @@ -15,7 +15,6 @@ USES= cpe gem CPE_VENDOR= john_nunemaker -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-httpclient/Makefile =================================================================== --- www/rubygem-httpclient/Makefile +++ www/rubygem-httpclient/Makefile @@ -11,7 +11,6 @@ LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/httpclient Index: www/rubygem-httpi/Makefile =================================================================== --- www/rubygem-httpi/Makefile +++ www/rubygem-httpi/Makefile @@ -14,7 +14,6 @@ rubygem-socksify>=0:www/rubygem-socksify NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-hurley/Makefile =================================================================== --- www/rubygem-hurley/Makefile +++ www/rubygem-hurley/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-importmap-rails/Makefile =================================================================== --- www/rubygem-importmap-rails/Makefile +++ www/rubygem-importmap-rails/Makefile @@ -14,7 +14,6 @@ rubygem-railties70>=6.0.0:www/rubygem-railties70 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-innate/Makefile =================================================================== --- www/rubygem-innate/Makefile +++ www/rubygem-innate/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rack16>=1.6.4<1.7:www/rubygem-rack16 USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-jekyll-sanity/Makefile =================================================================== --- www/rubygem-jekyll-sanity/Makefile +++ www/rubygem-jekyll-sanity/Makefile @@ -13,7 +13,6 @@ rubygem-pathutil>=0.16<1:devel/rubygem-pathutil USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-jekyll-seo-tag/Makefile =================================================================== --- www/rubygem-jekyll-seo-tag/Makefile +++ www/rubygem-jekyll-seo-tag/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-jekyll>=3.8<5.0:www/rubygem-jekyll USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-jekyll-watch/Makefile =================================================================== --- www/rubygem-jekyll-watch/Makefile +++ www/rubygem-jekyll-watch/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-listen>=3.0<4:devel/rubygem-listen USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-jekyll/Makefile =================================================================== --- www/rubygem-jekyll/Makefile +++ www/rubygem-jekyll/Makefile @@ -26,7 +26,6 @@ rubygem-terminal-table>=2.0:textproc/rubygem-terminal-table USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-jekyll3/Makefile =================================================================== --- www/rubygem-jekyll3/Makefile +++ www/rubygem-jekyll3/Makefile @@ -25,7 +25,6 @@ rubygem-safe_yaml>=1.0<2:devel/rubygem-safe_yaml USES= cpe gem -USE_RUBY= yes CONFLICTS_INSTALL= rubygem-jekyll Index: www/rubygem-journey/Makefile =================================================================== --- www/rubygem-journey/Makefile +++ www/rubygem-journey/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-jquery-atwho-rails/Makefile =================================================================== --- www/rubygem-jquery-atwho-rails/Makefile +++ www/rubygem-jquery-atwho-rails/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE-MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-jquery-rails-rails5/Makefile =================================================================== --- www/rubygem-jquery-rails-rails5/Makefile +++ www/rubygem-jquery-rails-rails5/Makefile @@ -16,7 +16,6 @@ rubygem-thor>=0.14<2.0:devel/rubygem-thor USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-jquery-rails-rails50/Makefile =================================================================== --- www/rubygem-jquery-rails-rails50/Makefile +++ www/rubygem-jquery-rails-rails50/Makefile @@ -16,7 +16,6 @@ rubygem-thor>=0.14<2.0:devel/rubygem-thor USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-jquery-rails/Makefile =================================================================== --- www/rubygem-jquery-rails/Makefile +++ www/rubygem-jquery-rails/Makefile @@ -15,7 +15,6 @@ rubygem-thor>=0.14<2.0:devel/rubygem-thor USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-jquery-scrollto-rails/Makefile =================================================================== --- www/rubygem-jquery-scrollto-rails/Makefile +++ www/rubygem-jquery-scrollto-rails/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-railties4>=4.1.4:www/rubygem-railties4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-jquery-turbolinks/Makefile =================================================================== --- www/rubygem-jquery-turbolinks/Makefile +++ www/rubygem-jquery-turbolinks/Makefile @@ -15,7 +15,6 @@ rubygem-turbolinks>=0:www/rubygem-turbolinks USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-jquery-ui-rails-rails4/Makefile =================================================================== --- www/rubygem-jquery-ui-rails-rails4/Makefile +++ www/rubygem-jquery-ui-rails-rails4/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-railties4>=4.1.4:www/rubygem-railties4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-jruby-rack/Makefile =================================================================== --- www/rubygem-jruby-rack/Makefile +++ www/rubygem-jruby-rack/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= jruby:lang/jruby USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-jsbundling-rails/Makefile =================================================================== --- www/rubygem-jsbundling-rails/Makefile +++ www/rubygem-jsbundling-rails/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-railties70>=6.0.0:www/rubygem-railties70 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-jsobfu/Makefile =================================================================== --- www/rubygem-jsobfu/Makefile +++ www/rubygem-jsobfu/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-rkelly-remix>=0:www/rubygem-rkelly-remix NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/jsobfu Index: www/rubygem-json-jwt/Makefile =================================================================== --- www/rubygem-json-jwt/Makefile +++ www/rubygem-json-jwt/Makefile @@ -17,7 +17,6 @@ rubygem-faraday-follow_redirects>=0:www/rubygem-faraday-follow_redirects USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-json-jwt115/Makefile =================================================================== --- www/rubygem-json-jwt115/Makefile +++ www/rubygem-json-jwt115/Makefile @@ -17,7 +17,6 @@ rubygem-httpclient>=0:www/rubygem-httpclient USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-jwt/Makefile =================================================================== --- www/rubygem-jwt/Makefile +++ www/rubygem-jwt/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-kaminari-actionview-rails5/Makefile =================================================================== --- www/rubygem-kaminari-actionview-rails5/Makefile +++ www/rubygem-kaminari-actionview-rails5/Makefile @@ -15,7 +15,6 @@ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-kaminari-actionview-rails50/Makefile =================================================================== --- www/rubygem-kaminari-actionview-rails50/Makefile +++ www/rubygem-kaminari-actionview-rails50/Makefile @@ -15,7 +15,6 @@ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-kaminari-actionview-rails52/Makefile =================================================================== --- www/rubygem-kaminari-actionview-rails52/Makefile +++ www/rubygem-kaminari-actionview-rails52/Makefile @@ -15,7 +15,6 @@ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-kaminari-actionview-rails60/Makefile =================================================================== --- www/rubygem-kaminari-actionview-rails60/Makefile +++ www/rubygem-kaminari-actionview-rails60/Makefile @@ -15,7 +15,6 @@ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-kaminari-actionview-rails61/Makefile =================================================================== --- www/rubygem-kaminari-actionview-rails61/Makefile +++ www/rubygem-kaminari-actionview-rails61/Makefile @@ -15,7 +15,6 @@ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-kaminari-actionview/Makefile =================================================================== --- www/rubygem-kaminari-actionview/Makefile +++ www/rubygem-kaminari-actionview/Makefile @@ -14,7 +14,6 @@ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-kaminari-activerecord-rails5/Makefile =================================================================== --- www/rubygem-kaminari-activerecord-rails5/Makefile +++ www/rubygem-kaminari-activerecord-rails5/Makefile @@ -15,7 +15,6 @@ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-kaminari-activerecord-rails50/Makefile =================================================================== --- www/rubygem-kaminari-activerecord-rails50/Makefile +++ www/rubygem-kaminari-activerecord-rails50/Makefile @@ -15,7 +15,6 @@ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-kaminari-activerecord-rails52/Makefile =================================================================== --- www/rubygem-kaminari-activerecord-rails52/Makefile +++ www/rubygem-kaminari-activerecord-rails52/Makefile @@ -15,7 +15,6 @@ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-kaminari-activerecord-rails60/Makefile =================================================================== --- www/rubygem-kaminari-activerecord-rails60/Makefile +++ www/rubygem-kaminari-activerecord-rails60/Makefile @@ -15,7 +15,6 @@ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-kaminari-activerecord-rails61/Makefile =================================================================== --- www/rubygem-kaminari-activerecord-rails61/Makefile +++ www/rubygem-kaminari-activerecord-rails61/Makefile @@ -15,7 +15,6 @@ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-kaminari-activerecord/Makefile =================================================================== --- www/rubygem-kaminari-activerecord/Makefile +++ www/rubygem-kaminari-activerecord/Makefile @@ -14,7 +14,6 @@ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-kaminari-core/Makefile =================================================================== --- www/rubygem-kaminari-core/Makefile +++ www/rubygem-kaminari-core/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-kaminari-rails4/Makefile =================================================================== --- www/rubygem-kaminari-rails4/Makefile +++ www/rubygem-kaminari-rails4/Makefile @@ -17,7 +17,6 @@ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-kaminari-rails5/Makefile =================================================================== --- www/rubygem-kaminari-rails5/Makefile +++ www/rubygem-kaminari-rails5/Makefile @@ -17,7 +17,6 @@ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-kaminari-rails50/Makefile =================================================================== --- www/rubygem-kaminari-rails50/Makefile +++ www/rubygem-kaminari-rails50/Makefile @@ -16,8 +16,8 @@ rubygem-kaminari-activerecord-rails50>=${PORTVERSION}:www/rubygem-kaminari-activerecord-rails50 \ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core + USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-kaminari-rails52/Makefile =================================================================== --- www/rubygem-kaminari-rails52/Makefile +++ www/rubygem-kaminari-rails52/Makefile @@ -17,7 +17,6 @@ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-kaminari-rails60/Makefile =================================================================== --- www/rubygem-kaminari-rails60/Makefile +++ www/rubygem-kaminari-rails60/Makefile @@ -17,7 +17,6 @@ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-kaminari-rails61/Makefile =================================================================== --- www/rubygem-kaminari-rails61/Makefile +++ www/rubygem-kaminari-rails61/Makefile @@ -17,7 +17,6 @@ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-kaminari/Makefile =================================================================== --- www/rubygem-kaminari/Makefile +++ www/rubygem-kaminari/Makefile @@ -16,7 +16,6 @@ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-kubeclient/Makefile =================================================================== --- www/rubygem-kubeclient/Makefile +++ www/rubygem-kubeclient/Makefile @@ -16,7 +16,6 @@ rubygem-rest-client>=2.0<3:www/rubygem-rest-client USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-layout_yullio_generator/Makefile =================================================================== --- www/rubygem-layout_yullio_generator/Makefile +++ www/rubygem-layout_yullio_generator/Makefile @@ -10,7 +10,6 @@ RUN_DEPENDS= rubygem-hoe>=1.1.6:devel/rubygem-hoe USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-less/Makefile =================================================================== --- www/rubygem-less/Makefile +++ www/rubygem-less/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/lessc Index: www/rubygem-lighthouse-api/Makefile =================================================================== --- www/rubygem-lighthouse-api/Makefile +++ www/rubygem-lighthouse-api/Makefile @@ -15,7 +15,6 @@ rubygem-activesupport4>=3.0.0:devel/rubygem-activesupport4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-link_header/Makefile =================================================================== --- www/rubygem-link_header/Makefile +++ www/rubygem-link_header/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-llhttp-ffi/Makefile =================================================================== --- www/rubygem-llhttp-ffi/Makefile +++ www/rubygem-llhttp-ffi/Makefile @@ -14,6 +14,5 @@ rubygem-rake>=13.0<14:devel/rubygem-rake USES= gem -USE_RUBY= yes .include Index: www/rubygem-lograge-rails5/Makefile =================================================================== --- www/rubygem-lograge-rails5/Makefile +++ www/rubygem-lograge-rails5/Makefile @@ -16,7 +16,6 @@ rubygem-request_store>=1.0<2:devel/rubygem-request_store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-lograge-rails52/Makefile =================================================================== --- www/rubygem-lograge-rails52/Makefile +++ www/rubygem-lograge-rails52/Makefile @@ -16,7 +16,6 @@ rubygem-request_store>=1.0<2:devel/rubygem-request_store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-lograge-rails60/Makefile =================================================================== --- www/rubygem-lograge-rails60/Makefile +++ www/rubygem-lograge-rails60/Makefile @@ -16,7 +16,6 @@ rubygem-request_store>=1.0<2:devel/rubygem-request_store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-lograge-rails61/Makefile =================================================================== --- www/rubygem-lograge-rails61/Makefile +++ www/rubygem-lograge-rails61/Makefile @@ -16,7 +16,6 @@ rubygem-request_store>=1.0<2:devel/rubygem-request_store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-lograge/Makefile =================================================================== --- www/rubygem-lograge/Makefile +++ www/rubygem-lograge/Makefile @@ -15,7 +15,6 @@ rubygem-request_store>=1.0<2:devel/rubygem-request_store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-maruku/Makefile =================================================================== --- www/rubygem-maruku/Makefile +++ www/rubygem-maruku/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/maruku bin/marutex Index: www/rubygem-mechanize/Makefile =================================================================== --- www/rubygem-mechanize/Makefile +++ www/rubygem-mechanize/Makefile @@ -23,7 +23,6 @@ USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-merb-assets/Makefile =================================================================== --- www/rubygem-merb-assets/Makefile +++ www/rubygem-merb-assets/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-merb-core/Makefile =================================================================== --- www/rubygem-merb-core/Makefile +++ www/rubygem-merb-core/Makefile @@ -18,7 +18,6 @@ rubygem-rack>=0:www/rubygem-rack \ rubygem-rake>=0:devel/rubygem-rake -USE_RUBY= yes USES= gem shebangfix PLIST_FILES= bin/merb Index: www/rubygem-merb-haml/Makefile =================================================================== --- www/rubygem-merb-haml/Makefile +++ www/rubygem-merb-haml/Makefile @@ -13,7 +13,6 @@ rubygem-merb-core>=1.1.3<1.2:www/rubygem-merb-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-merb-helpers/Makefile =================================================================== --- www/rubygem-merb-helpers/Makefile +++ www/rubygem-merb-helpers/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-merb-param-protection/Makefile =================================================================== --- www/rubygem-merb-param-protection/Makefile +++ www/rubygem-merb-param-protection/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-mousetrap-rails/Makefile =================================================================== --- www/rubygem-mousetrap-rails/Makefile +++ www/rubygem-mousetrap-rails/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_MIT= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-multipart-post/Makefile =================================================================== --- www/rubygem-multipart-post/Makefile +++ www/rubygem-multipart-post/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-nanoc-checking/Makefile =================================================================== --- www/rubygem-nanoc-checking/Makefile +++ www/rubygem-nanoc-checking/Makefile @@ -13,7 +13,6 @@ rubygem-nanoc-core>=4.12:www/rubygem-nanoc-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-nanoc-cli/Makefile =================================================================== --- www/rubygem-nanoc-cli/Makefile +++ www/rubygem-nanoc-cli/Makefile @@ -15,7 +15,6 @@ rubygem-zeitwerk>=2.1:devel/rubygem-zeitwerk USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-nanoc-core/Makefile =================================================================== --- www/rubygem-nanoc-core/Makefile +++ www/rubygem-nanoc-core/Makefile @@ -20,7 +20,6 @@ rubygem-zeitwerk>=2.1:devel/rubygem-zeitwerk USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-nanoc-deploying/Makefile =================================================================== --- www/rubygem-nanoc-deploying/Makefile +++ www/rubygem-nanoc-deploying/Makefile @@ -14,7 +14,6 @@ rubygem-nanoc-core>=4.11:www/rubygem-nanoc-core USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-nanoc/Makefile =================================================================== --- www/rubygem-nanoc/Makefile +++ www/rubygem-nanoc/Makefile @@ -20,8 +20,8 @@ rubygem-tty-command>=0.8:devel/rubygem-tty-command \ rubygem-tty-which>=0.4:devel/rubygem-tty-which +NO_ARCH= yes USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-nested_form/Makefile =================================================================== --- www/rubygem-nested_form/Makefile +++ www/rubygem-nested_form/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-net-http-digest_auth/Makefile =================================================================== --- www/rubygem-net-http-digest_auth/Makefile +++ www/rubygem-net-http-digest_auth/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-net-http-persistent/Makefile =================================================================== --- www/rubygem-net-http-persistent/Makefile +++ www/rubygem-net-http-persistent/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-connection_pool>=2.2<3:net/rubygem-connection_pool USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-net-http-persistent2/Makefile =================================================================== --- www/rubygem-net-http-persistent2/Makefile +++ www/rubygem-net-http-persistent2/Makefile @@ -11,7 +11,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-net-http-pipeline/Makefile =================================================================== --- www/rubygem-net-http-pipeline/Makefile +++ www/rubygem-net-http-pipeline/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-net-http/Makefile =================================================================== --- www/rubygem-net-http/Makefile +++ www/rubygem-net-http/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-uri>=0:net/rubygem-uri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-nicovideo/Makefile =================================================================== --- www/rubygem-nicovideo/Makefile +++ www/rubygem-nicovideo/Makefile @@ -14,7 +14,6 @@ rubygem-mechanize>=0.9.2:www/rubygem-mechanize USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-ntlm-http/Makefile =================================================================== --- www/rubygem-ntlm-http/Makefile +++ www/rubygem-ntlm-http/Makefile @@ -11,7 +11,6 @@ LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-octopress/Makefile =================================================================== --- www/rubygem-octopress/Makefile +++ www/rubygem-octopress/Makefile @@ -20,7 +20,6 @@ rubygem-titlecase>=0:devel/rubygem-titlecase USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-oembed/Makefile =================================================================== --- www/rubygem-oembed/Makefile +++ www/rubygem-oembed/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-ostatus2/Makefile =================================================================== --- www/rubygem-ostatus2/Makefile +++ www/rubygem-ostatus2/Makefile @@ -15,7 +15,6 @@ rubygem-nokogiri>=1.8<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-pagerduty/Makefile =================================================================== --- www/rubygem-pagerduty/Makefile +++ www/rubygem-pagerduty/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-passenger/Makefile =================================================================== --- www/rubygem-passenger/Makefile +++ www/rubygem-passenger/Makefile @@ -33,7 +33,6 @@ USES+= apache:2.2+ .endif -USE_RUBY= yes RAKE_BIN= ${LOCALBASE}/bin/rake USES+= compiler:c++11-lang cpe gem libtool python:env shebangfix ssl SHEBANG_FILES= src/cxx_supportlib/vendor-copy/libuv/gyp_uv.py Index: www/rubygem-patron/Makefile =================================================================== --- www/rubygem-patron/Makefile +++ www/rubygem-patron/Makefile @@ -13,6 +13,5 @@ LIB_DEPENDS= libcurl.so:ftp/curl USES= gem -USE_RUBY= yes .include Index: www/rubygem-platform-api/Makefile =================================================================== --- www/rubygem-platform-api/Makefile +++ www/rubygem-platform-api/Makefile @@ -15,7 +15,6 @@ rubygem-rate_throttle_client>=0.1.0<0.2:www/rubygem-rate_throttle_client USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-propshaft/Makefile =================================================================== --- www/rubygem-propshaft/Makefile +++ www/rubygem-propshaft/Makefile @@ -16,7 +16,6 @@ rubygem-railties70>=7.0.0:www/rubygem-railties70 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-protocol-hpack/Makefile =================================================================== --- www/rubygem-protocol-hpack/Makefile +++ www/rubygem-protocol-hpack/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-protocol-http/Makefile =================================================================== --- www/rubygem-protocol-http/Makefile +++ www/rubygem-protocol-http/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-protocol-http1/Makefile =================================================================== --- www/rubygem-protocol-http1/Makefile +++ www/rubygem-protocol-http1/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-protocol-http>=0.22<1:www/rubygem-protocol-http USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-protocol-http2/Makefile =================================================================== --- www/rubygem-protocol-http2/Makefile +++ www/rubygem-protocol-http2/Makefile @@ -13,7 +13,6 @@ rubygem-protocol-http>=0.18<1:www/rubygem-protocol-http USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-protocol-rack/Makefile =================================================================== --- www/rubygem-protocol-rack/Makefile +++ www/rubygem-protocol-rack/Makefile @@ -13,7 +13,6 @@ rubygem-rack>=1.0,3:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-protocol-websocket/Makefile =================================================================== --- www/rubygem-protocol-websocket/Makefile +++ www/rubygem-protocol-websocket/Makefile @@ -13,7 +13,6 @@ rubygem-protocol-http1>=0.2<1:www/rubygem-protocol-http1 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-puma/Makefile =================================================================== --- www/rubygem-puma/Makefile +++ www/rubygem-puma/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-nio4r>=2.0<3:devel/rubygem-nio4r USES= cpe gem ssl -USE_RUBY= yes PLIST_FILES= bin/puma bin/pumactl Index: www/rubygem-puma_worker_killer/Makefile =================================================================== --- www/rubygem-puma_worker_killer/Makefile +++ www/rubygem-puma_worker_killer/Makefile @@ -13,7 +13,6 @@ rubygem-puma>=2.7:www/rubygem-puma USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-pusher-client/Makefile =================================================================== --- www/rubygem-pusher-client/Makefile +++ www/rubygem-pusher-client/Makefile @@ -14,7 +14,6 @@ rubygem-websocket>=1.0<2:www/rubygem-websocket USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rabbirack/Makefile =================================================================== --- www/rubygem-rabbirack/Makefile +++ www/rubygem-rabbirack/Makefile @@ -16,7 +16,6 @@ rubygem-sinatra>0:www/rubygem-sinatra NO_ARCH= yes -USE_RUBY= yes USES= gem gettext PLIST_FILES= bin/rabbirack Index: www/rubygem-rack-accept/Makefile =================================================================== --- www/rubygem-rack-accept/Makefile +++ www/rubygem-rack-accept/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rack>=0.4:www/rubygem-rack NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-rack-attack/Makefile =================================================================== --- www/rubygem-rack-attack/Makefile +++ www/rubygem-rack-attack/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-rack>=1.0,3<3,3:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rack-cache/Makefile =================================================================== --- www/rubygem-rack-cache/Makefile +++ www/rubygem-rack-cache/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rack>=0.4:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rack-contrib/Makefile =================================================================== --- www/rubygem-rack-contrib/Makefile +++ www/rubygem-rack-contrib/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rack>=2.0,3<3,3:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rack-cors/Makefile =================================================================== --- www/rubygem-rack-cors/Makefile +++ www/rubygem-rack-cors/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rack>=2.0.0:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rack-mount/Makefile =================================================================== --- www/rubygem-rack-mount/Makefile +++ www/rubygem-rack-mount/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-rack>=1.0.0:www/rubygem-rack NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-rack-openid/Makefile =================================================================== --- www/rubygem-rack-openid/Makefile +++ www/rubygem-rack-openid/Makefile @@ -14,7 +14,6 @@ rubygem-ruby-openid>=2.1.8:net/rubygem-ruby-openid USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rack-protection/Makefile =================================================================== --- www/rubygem-rack-protection/Makefile +++ www/rubygem-rack-protection/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rack>=0,3:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rack-protection1/Makefile =================================================================== --- www/rubygem-rack-protection1/Makefile +++ www/rubygem-rack-protection1/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-rack>=0:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rack-protection2/Makefile =================================================================== --- www/rubygem-rack-protection2/Makefile +++ www/rubygem-rack-protection2/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-rack>=0,3:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rack-proxy/Makefile =================================================================== --- www/rubygem-rack-proxy/Makefile +++ www/rubygem-rack-proxy/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rack>=0:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rack-ssl/Makefile =================================================================== --- www/rubygem-rack-ssl/Makefile +++ www/rubygem-rack-ssl/Makefile @@ -15,7 +15,6 @@ RUN_DEPENDS= rubygem-rack>=0:www/rubygem-rack NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-rack-test/Makefile =================================================================== --- www/rubygem-rack-test/Makefile +++ www/rubygem-rack-test/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rack16>=1.3:www/rubygem-rack16 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rack-timeout/Makefile =================================================================== --- www/rubygem-rack-timeout/Makefile +++ www/rubygem-rack-timeout/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rack/Makefile =================================================================== --- www/rubygem-rack/Makefile +++ www/rubygem-rack/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rack16/Makefile =================================================================== --- www/rubygem-rack16/Makefile +++ www/rubygem-rack16/Makefile @@ -18,7 +18,6 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= cpe gem shebangfix -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rack_csrf/Makefile =================================================================== --- www/rubygem-rack_csrf/Makefile +++ www/rubygem-rack_csrf/Makefile @@ -14,7 +14,6 @@ TEST_DEPENDS= rubygem-rspec>0:devel/rubygem-rspec USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rails-settings-cached-rails5/Makefile =================================================================== --- www/rubygem-rails-settings-cached-rails5/Makefile +++ www/rubygem-rails-settings-cached-rails5/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rails5>=0:www/rubygem-rails5 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rails-settings-cached-rails50/Makefile =================================================================== --- www/rubygem-rails-settings-cached-rails50/Makefile +++ www/rubygem-rails-settings-cached-rails50/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rails50>=0:www/rubygem-rails50 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rails-settings-cached/Makefile =================================================================== --- www/rubygem-rails-settings-cached/Makefile +++ www/rubygem-rails-settings-cached/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-rails4>=4.2.0:www/rubygem-rails4 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rails4/Makefile =================================================================== --- www/rubygem-rails4/Makefile +++ www/rubygem-rails4/Makefile @@ -41,7 +41,6 @@ rubygem-web-console2>=2.1.2:devel/rubygem-web-console2 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rails5/Makefile =================================================================== --- www/rubygem-rails5/Makefile +++ www/rubygem-rails5/Makefile @@ -49,7 +49,6 @@ rubygem-web-console3-rails5>=3.5.0:devel/rubygem-web-console3-rails5 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rails50/Makefile =================================================================== --- www/rubygem-rails50/Makefile +++ www/rubygem-rails50/Makefile @@ -47,7 +47,6 @@ rubygem-web-console3-rails50>=3.5.0:devel/rubygem-web-console3-rails50 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rails52/Makefile =================================================================== --- www/rubygem-rails52/Makefile +++ www/rubygem-rails52/Makefile @@ -41,7 +41,6 @@ rubygem-web-console3-rails52>=3.3.0:devel/rubygem-web-console3-rails52 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rails60/Makefile =================================================================== --- www/rubygem-rails60/Makefile +++ www/rubygem-rails60/Makefile @@ -45,7 +45,6 @@ rubygem-webpacker4-rails60>=4.0<5:devel/rubygem-webpacker4-rails60 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rails61/Makefile =================================================================== --- www/rubygem-rails61/Makefile +++ www/rubygem-rails61/Makefile @@ -46,7 +46,6 @@ rubygem-webrick>=0:www/rubygem-webrick USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rails70/Makefile =================================================================== --- www/rubygem-rails70/Makefile +++ www/rubygem-rails70/Makefile @@ -55,7 +55,6 @@ rubygem-webrick>=0:www/rubygem-webrick USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rails_12factor/Makefile =================================================================== --- www/rubygem-rails_12factor/Makefile +++ www/rubygem-rails_12factor/Makefile @@ -15,7 +15,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-rails_autolink/Makefile =================================================================== --- www/rubygem-rails_autolink/Makefile +++ www/rubygem-rails_autolink/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-rails4>=${PORTVERSION}:www/rubygem-rails4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-rails_serve_static_assets/Makefile =================================================================== --- www/rubygem-rails_serve_static_assets/Makefile +++ www/rubygem-rails_serve_static_assets/Makefile @@ -12,7 +12,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-rails_stdout_logging/Makefile =================================================================== --- www/rubygem-rails_stdout_logging/Makefile +++ www/rubygem-rails_stdout_logging/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-railties4/Makefile =================================================================== --- www/rubygem-railties4/Makefile +++ www/rubygem-railties4/Makefile @@ -16,7 +16,6 @@ rubygem-thor>=0.18.1<2.0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-railties5/Makefile =================================================================== --- www/rubygem-railties5/Makefile +++ www/rubygem-railties5/Makefile @@ -18,7 +18,6 @@ rubygem-thor>=0.18.1<2.0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-railties50/Makefile =================================================================== --- www/rubygem-railties50/Makefile +++ www/rubygem-railties50/Makefile @@ -18,7 +18,6 @@ rubygem-thor>=0.18.1<2.0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-railties52/Makefile =================================================================== --- www/rubygem-railties52/Makefile +++ www/rubygem-railties52/Makefile @@ -18,7 +18,6 @@ rubygem-thor>=0.19.0<2.0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-railties60/Makefile =================================================================== --- www/rubygem-railties60/Makefile +++ www/rubygem-railties60/Makefile @@ -18,7 +18,6 @@ rubygem-thor>=0.20.3<2.0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-railties61/Makefile =================================================================== --- www/rubygem-railties61/Makefile +++ www/rubygem-railties61/Makefile @@ -18,7 +18,6 @@ rubygem-thor>=1.0<2:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-railties70/Makefile =================================================================== --- www/rubygem-railties70/Makefile +++ www/rubygem-railties70/Makefile @@ -19,7 +19,6 @@ rubygem-zeitwerk>=2.5<3:devel/rubygem-zeitwerk USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-raindrops/Makefile =================================================================== --- www/rubygem-raindrops/Makefile +++ www/rubygem-raindrops/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_LGPL3= ${WRKSRC}/COPYING USES= gem shebangfix -USE_RUBY= yes SHEBANG_FILES= examples/linux-listener-stats.rb Index: www/rubygem-ramaze/Makefile =================================================================== --- www/rubygem-ramaze/Makefile +++ www/rubygem-ramaze/Makefile @@ -13,7 +13,6 @@ rubygem-rake>=0:devel/rubygem-rake NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/ramaze Index: www/rubygem-raphael-rails/Makefile =================================================================== --- www/rubygem-raphael-rails/Makefile +++ www/rubygem-raphael-rails/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-rate_throttle_client/Makefile =================================================================== --- www/rubygem-rate_throttle_client/Makefile +++ www/rubygem-rate_throttle_client/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rbovirt/Makefile =================================================================== --- www/rubygem-rbovirt/Makefile +++ www/rubygem-rbovirt/Makefile @@ -14,7 +14,6 @@ rubygem-rest-client>=1.7.0:www/rubygem-rest-client USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rdf-normalize/Makefile =================================================================== --- www/rubygem-rdf-normalize/Makefile +++ www/rubygem-rdf-normalize/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-rdf>=3.2<4:www/rubygem-rdf USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rdf/Makefile =================================================================== --- www/rubygem-rdf/Makefile +++ www/rubygem-rdf/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-link_header>=0.0.8<1:www/rubygem-link_header USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-redcloth/Makefile =================================================================== --- www/rubygem-redcloth/Makefile +++ www/rubygem-redcloth/Makefile @@ -11,7 +11,6 @@ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING -USE_RUBY= yes USES= cpe gem CPE_VENDOR= promptworks Index: www/rubygem-redis-rack/Makefile =================================================================== --- www/rubygem-redis-rack/Makefile +++ www/rubygem-redis-rack/Makefile @@ -14,7 +14,6 @@ rubygem-redis-store>=1.2<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-redis-rails-rails5/Makefile =================================================================== --- www/rubygem-redis-rails-rails5/Makefile +++ www/rubygem-redis-rails-rails5/Makefile @@ -16,7 +16,6 @@ rubygem-redis-store>=1.2<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-redis-rails-rails50/Makefile =================================================================== --- www/rubygem-redis-rails-rails50/Makefile +++ www/rubygem-redis-rails-rails50/Makefile @@ -16,7 +16,6 @@ rubygem-redis-store>=1.2<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-redis-rails-rails52/Makefile =================================================================== --- www/rubygem-redis-rails-rails52/Makefile +++ www/rubygem-redis-rails-rails52/Makefile @@ -16,7 +16,6 @@ rubygem-redis-store>=1.2<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-redis-rails-rails60/Makefile =================================================================== --- www/rubygem-redis-rails-rails60/Makefile +++ www/rubygem-redis-rails-rails60/Makefile @@ -16,7 +16,6 @@ rubygem-redis-store>=1.2<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-redis-rails-rails61/Makefile =================================================================== --- www/rubygem-redis-rails-rails61/Makefile +++ www/rubygem-redis-rails-rails61/Makefile @@ -16,7 +16,6 @@ rubygem-redis-store>=1.2<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-redis-rails/Makefile =================================================================== --- www/rubygem-redis-rails/Makefile +++ www/rubygem-redis-rails/Makefile @@ -15,7 +15,6 @@ rubygem-redis-store>=1.2<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-responders-rails5/Makefile =================================================================== --- www/rubygem-responders-rails5/Makefile +++ www/rubygem-responders-rails5/Makefile @@ -15,7 +15,6 @@ rubygem-railties5>=5.0:www/rubygem-railties5 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-responders-rails52/Makefile =================================================================== --- www/rubygem-responders-rails52/Makefile +++ www/rubygem-responders-rails52/Makefile @@ -15,7 +15,6 @@ rubygem-railties52>=5.0:www/rubygem-railties52 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-responders-rails60/Makefile =================================================================== --- www/rubygem-responders-rails60/Makefile +++ www/rubygem-responders-rails60/Makefile @@ -15,7 +15,6 @@ rubygem-railties60>=5.0:www/rubygem-railties60 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-responders-rails61/Makefile =================================================================== --- www/rubygem-responders-rails61/Makefile +++ www/rubygem-responders-rails61/Makefile @@ -15,7 +15,6 @@ rubygem-railties61>=5.0:www/rubygem-railties61 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-responders-rails70/Makefile =================================================================== --- www/rubygem-responders-rails70/Makefile +++ www/rubygem-responders-rails70/Makefile @@ -15,7 +15,6 @@ rubygem-railties70>=5.0:www/rubygem-railties70 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-responders/Makefile =================================================================== --- www/rubygem-responders/Makefile +++ www/rubygem-responders/Makefile @@ -14,7 +14,6 @@ rubygem-railties50>=5.0:www/rubygem-railties50 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rest-client/Makefile =================================================================== --- www/rubygem-rest-client/Makefile +++ www/rubygem-rest-client/Makefile @@ -16,7 +16,6 @@ rubygem-netrc>=0.8<1:net/rubygem-netrc USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rfacebook/Makefile =================================================================== --- www/rubygem-rfacebook/Makefile +++ www/rubygem-rfacebook/Makefile @@ -14,7 +14,6 @@ rubygem-mocha>=0.5.3:devel/rubygem-mocha USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rfeedfinder/Makefile =================================================================== --- www/rubygem-rfeedfinder/Makefile +++ www/rubygem-rfeedfinder/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-rinku/Makefile =================================================================== --- www/rubygem-rinku/Makefile +++ www/rubygem-rinku/Makefile @@ -10,6 +10,5 @@ LICENSE= ISCL USES= gem -USE_RUBY= yes .include Index: www/rubygem-rkelly-remix/Makefile =================================================================== --- www/rubygem-rkelly-remix/Makefile +++ www/rubygem-rkelly-remix/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-robotex/Makefile =================================================================== --- www/rubygem-robotex/Makefile +++ www/rubygem-robotex/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-robots/Makefile =================================================================== --- www/rubygem-robots/Makefile +++ www/rubygem-robots/Makefile @@ -11,7 +11,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-roda/Makefile =================================================================== --- www/rubygem-roda/Makefile +++ www/rubygem-roda/Makefile @@ -13,8 +13,6 @@ RUN_DEPENDS= rubygem-rack>=0,3:www/rubygem-rack USES= gem -USE_RUBY= yes - NO_ARCH= yes .include Index: www/rubygem-rqrcode-rails3/Makefile =================================================================== --- www/rubygem-rqrcode-rails3/Makefile +++ www/rubygem-rqrcode-rails3/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rqrcode>=0.4.2:www/rubygem-rqrcode NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-rqrcode/Makefile =================================================================== --- www/rubygem-rqrcode/Makefile +++ www/rubygem-rqrcode/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-chunky_png>=1.0:graphics/rubygem-chunky_png NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-rss/Makefile =================================================================== --- www/rubygem-rss/Makefile +++ www/rubygem-rss/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rexml>=0:textproc/rubygem-rexml USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-rtlit/Makefile =================================================================== --- www/rubygem-rtlit/Makefile +++ www/rubygem-rtlit/Makefile @@ -11,7 +11,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/rtlit Index: www/rubygem-ruby-oembed/Makefile =================================================================== --- www/rubygem-ruby-oembed/Makefile +++ www/rubygem-ruby-oembed/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-ruby-readability/Makefile =================================================================== --- www/rubygem-ruby-readability/Makefile +++ www/rubygem-ruby-readability/Makefile @@ -14,7 +14,6 @@ rubygem-nokogiri>=1.6.0:textproc/rubygem-nokogiri NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/readability Index: www/rubygem-savon/Makefile =================================================================== --- www/rubygem-savon/Makefile +++ www/rubygem-savon/Makefile @@ -19,7 +19,6 @@ rubygem-wasabi>=3.4:www/rubygem-wasabi NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-sawyer/Makefile =================================================================== --- www/rubygem-sawyer/Makefile +++ www/rubygem-sawyer/Makefile @@ -14,7 +14,6 @@ rubygem-faraday>=0.17.3<3:www/rubygem-faraday USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-select2-rails/Makefile =================================================================== --- www/rubygem-select2-rails/Makefile +++ www/rubygem-select2-rails/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-selenium-webdriver/Makefile =================================================================== --- www/rubygem-selenium-webdriver/Makefile +++ www/rubygem-selenium-webdriver/Makefile @@ -16,7 +16,6 @@ rubygem-websocket>=1.0<2:www/rubygem-websocket USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-semantic-ui-sass/Makefile =================================================================== --- www/rubygem-semantic-ui-sass/Makefile +++ www/rubygem-semantic-ui-sass/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-sass>=3.2:textproc/rubygem-sass NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-simple-rss/Makefile =================================================================== --- www/rubygem-simple-rss/Makefile +++ www/rubygem-simple-rss/Makefile @@ -9,7 +9,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-sinatra-contrib/Makefile =================================================================== --- www/rubygem-sinatra-contrib/Makefile +++ www/rubygem-sinatra-contrib/Makefile @@ -17,7 +17,6 @@ rubygem-tilt>=2.0<3:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-sinatra-contrib1/Makefile =================================================================== --- www/rubygem-sinatra-contrib1/Makefile +++ www/rubygem-sinatra-contrib1/Makefile @@ -23,7 +23,6 @@ NO_ARCH= yes REINPLACE_ARGS= -i '' -USE_RUBY= yes USES= gem post-patch: Index: www/rubygem-sinatra-contrib2/Makefile =================================================================== --- www/rubygem-sinatra-contrib2/Makefile +++ www/rubygem-sinatra-contrib2/Makefile @@ -18,7 +18,6 @@ rubygem-tilt>=2.0<3:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-sinatra-r18n/Makefile =================================================================== --- www/rubygem-sinatra-r18n/Makefile +++ www/rubygem-sinatra-r18n/Makefile @@ -15,7 +15,6 @@ rubygem-sinatra2>=1.3<3:www/rubygem-sinatra2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-sinatra-respond_to/Makefile =================================================================== --- www/rubygem-sinatra-respond_to/Makefile +++ www/rubygem-sinatra-respond_to/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-sinatra1>=1.3:www/rubygem-sinatra1 NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-sinatra/Makefile =================================================================== --- www/rubygem-sinatra/Makefile +++ www/rubygem-sinatra/Makefile @@ -16,7 +16,6 @@ rubygem-tilt>=2.0<3:devel/rubygem-tilt USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-sinatra1/Makefile =================================================================== --- www/rubygem-sinatra1/Makefile +++ www/rubygem-sinatra1/Makefile @@ -16,7 +16,6 @@ rubygem-tilt>=1.3<3:devel/rubygem-tilt USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-sinatra2/Makefile =================================================================== --- www/rubygem-sinatra2/Makefile +++ www/rubygem-sinatra2/Makefile @@ -17,7 +17,6 @@ rubygem-tilt>=2.0<3:devel/rubygem-tilt USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-sitemap_generator/Makefile =================================================================== --- www/rubygem-sitemap_generator/Makefile +++ www/rubygem-sitemap_generator/Makefile @@ -13,6 +13,5 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes .include Index: www/rubygem-smashing/Makefile =================================================================== --- www/rubygem-smashing/Makefile +++ www/rubygem-smashing/Makefile @@ -22,7 +22,6 @@ rubygem-thor>=1.0<2:devel/rubygem-thor USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-socksify/Makefile =================================================================== --- www/rubygem-socksify/Makefile +++ www/rubygem-socksify/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE_GPLv3= ${WRKSRC}/COPYING NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/socksify_ruby Index: www/rubygem-stimulus-rails/Makefile =================================================================== --- www/rubygem-stimulus-rails/Makefile +++ www/rubygem-stimulus-rails/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-railties70>=6.0.0:www/rubygem-railties70 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-swd/Makefile =================================================================== --- www/rubygem-swd/Makefile +++ www/rubygem-swd/Makefile @@ -15,7 +15,6 @@ rubygem-httpclient>=2.4:www/rubygem-httpclient USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-tailwindcss-rails/Makefile =================================================================== --- www/rubygem-tailwindcss-rails/Makefile +++ www/rubygem-tailwindcss-rails/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-railties70>=6.0.0:www/rubygem-railties70 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-task_list/Makefile =================================================================== --- www/rubygem-task_list/Makefile +++ www/rubygem-task_list/Makefile @@ -14,7 +14,6 @@ RUN_DEPENDS= rubygem-html-pipeline>=0:textproc/rubygem-html-pipeline USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-thin/Makefile =================================================================== --- www/rubygem-thin/Makefile +++ www/rubygem-thin/Makefile @@ -15,7 +15,6 @@ rubygem-rack16>=1<3:www/rubygem-rack16 USES= gem -USE_RUBY= yes PLIST_FILES= bin/thin Index: www/rubygem-tinyatom/Makefile =================================================================== --- www/rubygem-tinyatom/Makefile +++ www/rubygem-tinyatom/Makefile @@ -15,7 +15,6 @@ rubygem-public_suffix>=0:dns/rubygem-public_suffix USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-tinymce-rails/Makefile =================================================================== --- www/rubygem-tinymce-rails/Makefile +++ www/rubygem-tinymce-rails/Makefile @@ -13,7 +13,6 @@ NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-toml-rb/Makefile =================================================================== --- www/rubygem-toml-rb/Makefile +++ www/rubygem-toml-rb/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-citrus>=3.0<4:textproc/rubygem-citrus USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-totoridipjp/Makefile =================================================================== --- www/rubygem-totoridipjp/Makefile +++ www/rubygem-totoridipjp/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem shebangfix SHEBANG_FILES= bin/setup Index: www/rubygem-tumblr_client/Makefile =================================================================== --- www/rubygem-tumblr_client/Makefile +++ www/rubygem-tumblr_client/Makefile @@ -19,7 +19,6 @@ rubygem-simple_oauth>=0:net/rubygem-simple_oauth USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-turbo-rails/Makefile =================================================================== --- www/rubygem-turbo-rails/Makefile +++ www/rubygem-turbo-rails/Makefile @@ -15,7 +15,6 @@ rubygem-railties70>=6.0.0:www/rubygem-railties70 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-turbolinks-source/Makefile =================================================================== --- www/rubygem-turbolinks-source/Makefile +++ www/rubygem-turbolinks-source/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-turbolinks/Makefile =================================================================== --- www/rubygem-turbolinks/Makefile +++ www/rubygem-turbolinks/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-turbolinks-source>=5.2<6:www/rubygem-turbolinks-source USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-typhoeus/Makefile =================================================================== --- www/rubygem-typhoeus/Makefile +++ www/rubygem-typhoeus/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-ethon>=0.9.0:www/rubygem-ethon USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-uglifier/Makefile =================================================================== --- www/rubygem-uglifier/Makefile +++ www/rubygem-uglifier/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-execjs>=0.3.0:devel/rubygem-execjs USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-underscore-rails/Makefile =================================================================== --- www/rubygem-underscore-rails/Makefile +++ www/rubygem-underscore-rails/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-unicorn-worker-killer/Makefile =================================================================== --- www/rubygem-unicorn-worker-killer/Makefile +++ www/rubygem-unicorn-worker-killer/Makefile @@ -15,7 +15,6 @@ rubygem-unicorn>=4<7:www/rubygem-unicorn USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-unicorn/Makefile =================================================================== --- www/rubygem-unicorn/Makefile +++ www/rubygem-unicorn/Makefile @@ -16,7 +16,6 @@ rubygem-raindrops>=0.7<1:www/rubygem-raindrops USES= gem shebangfix -USE_RUBY= yes PLIST_FILES= bin/unicorn bin/unicorn_rails Index: www/rubygem-url_escape/Makefile =================================================================== --- www/rubygem-url_escape/Makefile +++ www/rubygem-url_escape/Makefile @@ -9,7 +9,6 @@ LICENSE= MIT -USE_RUBY= yes USES= gem .include Index: www/rubygem-url_mount/Makefile =================================================================== --- www/rubygem-url_mount/Makefile +++ www/rubygem-url_mount/Makefile @@ -13,7 +13,6 @@ RUN_DEPENDS= rubygem-rack>=0:www/rubygem-rack NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-vcr/Makefile =================================================================== --- www/rubygem-vcr/Makefile +++ www/rubygem-vcr/Makefile @@ -15,7 +15,6 @@ # https://github.com/vcr/vcr/blob/master/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-vegas/Makefile =================================================================== --- www/rubygem-vegas/Makefile +++ www/rubygem-vegas/Makefile @@ -15,6 +15,5 @@ NO_ARCH= yes USES= gem -USE_RUBY= yes .include Index: www/rubygem-wasabi/Makefile =================================================================== --- www/rubygem-wasabi/Makefile +++ www/rubygem-wasabi/Makefile @@ -14,7 +14,6 @@ rubygem-nokogiri>=1.4.2:textproc/rubygem-nokogiri NO_ARCH= yes -USE_RUBY= yes USES= gem .include Index: www/rubygem-webdrivers/Makefile =================================================================== --- www/rubygem-webdrivers/Makefile +++ www/rubygem-webdrivers/Makefile @@ -15,7 +15,6 @@ rubygem-selenium-webdriver>=4.0<5:www/rubygem-selenium-webdriver USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-webmock/Makefile =================================================================== --- www/rubygem-webmock/Makefile +++ www/rubygem-webmock/Makefile @@ -15,7 +15,6 @@ rubygem-hashdiff>=0.4.0<2.0.0:devel/rubygem-hashdiff USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-webrick/Makefile =================================================================== --- www/rubygem-webrick/Makefile +++ www/rubygem-webrick/Makefile @@ -12,7 +12,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= cpe gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-webrobots/Makefile =================================================================== --- www/rubygem-webrobots/Makefile +++ www/rubygem-webrobots/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-websocket-client-simple/Makefile =================================================================== --- www/rubygem-websocket-client-simple/Makefile +++ www/rubygem-websocket-client-simple/Makefile @@ -14,7 +14,6 @@ rubygem-websocket>=0:www/rubygem-websocket USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-websocket-driver/Makefile =================================================================== --- www/rubygem-websocket-driver/Makefile +++ www/rubygem-websocket-driver/Makefile @@ -13,6 +13,5 @@ RUN_DEPENDS= rubygem-websocket-extensions>=0.1.0:www/rubygem-websocket-extensions USES= gem -USE_RUBY= yes .include Index: www/rubygem-websocket-extensions/Makefile =================================================================== --- www/rubygem-websocket-extensions/Makefile +++ www/rubygem-websocket-extensions/Makefile @@ -11,7 +11,6 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-websocket/Makefile =================================================================== --- www/rubygem-websocket/Makefile +++ www/rubygem-websocket/Makefile @@ -10,7 +10,6 @@ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes Index: www/rubygem-yapra/Makefile =================================================================== --- www/rubygem-yapra/Makefile +++ www/rubygem-yapra/Makefile @@ -12,7 +12,6 @@ RUN_DEPENDS= rubygem-mechanize>=0:www/rubygem-mechanize NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/yapra Index: www/tdiary/Makefile =================================================================== --- www/tdiary/Makefile +++ www/tdiary/Makefile @@ -21,7 +21,6 @@ rubygem-rake>=13.0.6:devel/rubygem-rake USES= cpe shebangfix -USE_RUBY= yes SHEBANG_FILES= bin/tdiary index.fcgi index.rb misc/convert2.rb misc/migrate.rb \ misc/plugin/xmlrpc/xmlrpc.rb update.fcgi update.rb Index: www/unit-ruby/Makefile =================================================================== --- www/unit-ruby/Makefile +++ www/unit-ruby/Makefile @@ -9,7 +9,7 @@ PLIST_FILES= libexec/unit/modules/${UNIT_MODNAME}.unit.so -USE_RUBY= yes +USES= ruby CFLAGS+= -fdeclspec Index: www/webkit2-gtk3/Makefile =================================================================== --- www/webkit2-gtk3/Makefile +++ www/webkit2-gtk3/Makefile @@ -37,13 +37,11 @@ USES= bison cmake compiler:c++14-lang cpe gettext gl gnome gperf \ jpeg localbase:ldflags perl5 pkgconfig python:build \ - sqlite tar:xz xorg + ruby:build sqlite tar:xz xorg USE_GNOME= cairo gdkpixbuf2 gtk30 introspection:build libxml2 libxslt USE_GL= gl egl glesv2 USE_LDCONFIG= yes USE_PERL5= build -USE_RUBY= yes -RUBY_NO_RUN_DEPENDS= yes USE_XORG= x11 xcomposite xdamage xext xrender xt ice CPE_VENDOR= webkitgtk Index: www/webkit2-gtk4/Makefile =================================================================== --- www/webkit2-gtk4/Makefile +++ www/webkit2-gtk4/Makefile @@ -41,7 +41,6 @@ USE_GL= egl gl glesv2 USE_LDCONFIG= yes USE_PERL5= build -USE_RUBY= yes RUBY_NO_RUN_DEPENDS= yes USE_XORG= ice x11 xcomposite xdamage xext xrender xt Index: x11-toolkits/rubygem-gdk3/Makefile =================================================================== --- x11-toolkits/rubygem-gdk3/Makefile +++ x11-toolkits/rubygem-gdk3/Makefile @@ -17,7 +17,6 @@ USES= gem gnome USE_GNOME= gtk30 -USE_RUBY= yes NO_ARCH= yes Index: x11-toolkits/rubygem-gdk4/Makefile =================================================================== --- x11-toolkits/rubygem-gdk4/Makefile +++ x11-toolkits/rubygem-gdk4/Makefile @@ -17,7 +17,6 @@ USES= gem gnome pkgconfig USE_GNOME= gtk40 -USE_RUBY= yes NO_ARCH= yes Index: x11-toolkits/rubygem-gtk2/Makefile =================================================================== --- x11-toolkits/rubygem-gtk2/Makefile +++ x11-toolkits/rubygem-gtk2/Makefile @@ -17,6 +17,5 @@ USES= gem gnome USE_GNOME= gtk20 -USE_RUBY= yes .include Index: x11-toolkits/rubygem-gtk3/Makefile =================================================================== --- x11-toolkits/rubygem-gtk3/Makefile +++ x11-toolkits/rubygem-gtk3/Makefile @@ -15,6 +15,5 @@ USES= gem gnome USE_GNOME= gtk30 -USE_RUBY= yes .include Index: x11-toolkits/rubygem-gtk4/Makefile =================================================================== --- x11-toolkits/rubygem-gtk4/Makefile +++ x11-toolkits/rubygem-gtk4/Makefile @@ -15,6 +15,5 @@ USES= gem gnome USE_GNOME= gtk40 -USE_RUBY= yes .include Index: x11-toolkits/rubygem-gtksourceview3/Makefile =================================================================== --- x11-toolkits/rubygem-gtksourceview3/Makefile +++ x11-toolkits/rubygem-gtksourceview3/Makefile @@ -15,7 +15,6 @@ USES= gem gnome USE_GNOME= gtksourceview3 -USE_RUBY= yes NO_ARCH= yes Index: x11-toolkits/rubygem-gtksourceview4/Makefile =================================================================== --- x11-toolkits/rubygem-gtksourceview4/Makefile +++ x11-toolkits/rubygem-gtksourceview4/Makefile @@ -15,7 +15,6 @@ USES= gem gnome USE_GNOME= gtksourceview4 -USE_RUBY= yes NO_ARCH= yes Index: x11-toolkits/rubygem-pango/Makefile =================================================================== --- x11-toolkits/rubygem-pango/Makefile +++ x11-toolkits/rubygem-pango/Makefile @@ -15,6 +15,5 @@ USES= gem gnome USE_GNOME= pango -USE_RUBY= yes .include Index: x11-toolkits/rubygem-poppler/Makefile =================================================================== --- x11-toolkits/rubygem-poppler/Makefile +++ x11-toolkits/rubygem-poppler/Makefile @@ -16,7 +16,6 @@ rubygem-gio2>=${PORTVERSION}:devel/rubygem-gio2 USES= gem -USE_RUBY= yes NO_ARCH= yes Index: x11-toolkits/rubygem-tk/Makefile =================================================================== --- x11-toolkits/rubygem-tk/Makefile +++ x11-toolkits/rubygem-tk/Makefile @@ -14,7 +14,6 @@ --with-tcl-include=${LOCALBASE}/include/tcl8.6 USES= gem tk:86 xorg -USE_RUBY= yes USE_XORG= x11 .include Index: x11-toolkits/rubygem-uh/Makefile =================================================================== --- x11-toolkits/rubygem-uh/Makefile +++ x11-toolkits/rubygem-uh/Makefile @@ -10,7 +10,6 @@ LICENSE= BSD3CLAUSE USES= gem xorg -USE_RUBY= yes USE_XORG= x11 xinerama .include Index: x11-toolkits/rubygem-vte3/Makefile =================================================================== --- x11-toolkits/rubygem-vte3/Makefile +++ x11-toolkits/rubygem-vte3/Makefile @@ -15,7 +15,6 @@ USES= gem gnome USE_GNOME= vte3 -USE_RUBY= yes NO_ARCH= yes Index: x11-wm/rubygem-uh-layout/Makefile =================================================================== --- x11-wm/rubygem-uh-layout/Makefile +++ x11-wm/rubygem-uh-layout/Makefile @@ -9,7 +9,6 @@ LICENSE= BSD3CLAUSE -USE_RUBY= yes USES= gem NO_ARCH= yes Index: x11-wm/rubygem-uh-wm/Makefile =================================================================== --- x11-wm/rubygem-uh-wm/Makefile +++ x11-wm/rubygem-uh-wm/Makefile @@ -14,7 +14,6 @@ rubygem-uh-layout>=0.4.2:x11-wm/rubygem-uh-layout \ rubygem-rb-kqueue>=0.2.4:devel/rubygem-rb-kqueue -USE_RUBY= yes USES= gem NO_ARCH= yes Index: x11-wm/subtle/Makefile =================================================================== --- x11-wm/subtle/Makefile +++ x11-wm/subtle/Makefile @@ -12,8 +12,7 @@ BUILD_DEPENDS= rake:devel/rubygem-rake -USES= compiler:c11 pkgconfig tar:tbz2 xorg -USE_RUBY= yes +USES= compiler:c11 pkgconfig ruby tar:tbz2 xorg USE_XORG= x11 xft xinerama xpm xrandr xtst MAKE_CMD= rake -v