diff --git a/Mk/Uses/gem.mk b/Mk/Uses/gem.mk index de5f2fbd6fd3..a1e77273932a 100644 --- a/Mk/Uses/gem.mk +++ b/Mk/Uses/gem.mk @@ -1,140 +1,143 @@ # Support rubygem packages # # Feature: gem # Usage: USES=gem[:noautoplist] # Valid args: noautoplist Don't generate the plist automatically # # MAINTAINER: ruby@FreeBSD.org .if !defined(_INCLUDE_USES_GEM_MK) _INCLUDE_USES_GEM_MK= yes _valid_ARGS= noautoplist # Sanity check . for arg in ${gem_ARGS} . if empty(_valid_ARGS:M${arg}) IGNORE= Incorrect 'USES+= gem:${gem_ARGS}' usage: argument [${arg}] is not recognized . endif . endfor +# "USES=gem" implies "USES=ruby" +.include "${USESDIR}/ruby.mk" + PKGNAMEPREFIX?= rubygem- EXTRACT_SUFX= .gem EXTRACT_ONLY= DIST_SUBDIR= rubygem BUILD_DEPENDS+= ${RUBYGEMBIN}:devel/ruby-gems EXTRACT_DEPENDS+= ${RUBYGEMBIN}:devel/ruby-gems RUN_DEPENDS+= ${RUBYGEMBIN}:devel/ruby-gems GEMS_BASE_DIR= lib/ruby/gems/${RUBY_VER} CACHE_DIR= ${GEMS_BASE_DIR}/cache DOC_DIR= ${GEMS_BASE_DIR}/doc EXT_DIR= ${GEMS_BASE_DIR}/extensions GEMS_DIR= ${GEMS_BASE_DIR}/gems PLUGINS_DIR= ${GEMS_BASE_DIR}/plugins SPEC_DIR= ${GEMS_BASE_DIR}/specifications GEM_NAME?= ${DISTNAME} GEM_LIB_DIR?= ${GEMS_DIR}/${GEM_NAME} GEM_DOC_DIR?= ${DOC_DIR}/${GEM_NAME} GEM_SPEC?= ${SPEC_DIR}/${GEM_NAME}.gemspec GEM_CACHE?= ${CACHE_DIR}/${GEM_NAME}.gem GEMSPEC= ${PORTNAME}.gemspec GEM_ENV+= RB_USER_INSTALL=yes USE_LOCALE?= en_US.UTF-8 GEM_ENV+= LANG=${USE_LOCALE} LC_ALL=${USE_LOCALE} PLIST_SUB+= PORTVERSION="${PORTVERSION}" \ REV="${RUBY_GEM}" \ GEMS_BASE_DIR="${GEMS_BASE_DIR}" \ GEMS_DIR="${GEMS_DIR}" \ DOC_DIR="${DOC_DIR}" \ CACHE_DIR="${CACHE_DIR}" \ SPEC_DIR="${SPEC_DIR}" \ EXT_DIR="${EXT_DIR}" \ PLUGINS_DIR="${PLUGINS_DIR}" \ GEM_NAME="${GEM_NAME}" \ GEM_LIB_DIR="${GEM_LIB_DIR}" \ GEM_DOC_DIR="${GEM_DOC_DIR}" \ GEM_SPEC="${GEM_SPEC}" \ GEM_CACHE="${GEM_CACHE}" \ EXTRACT_SUFX="${EXTRACT_SUFX}" RUBYGEMBIN= ${LOCALBASE}/bin/gem . if defined(DISTFILES) GEMFILES= ${DISTFILES:C/:[^:]+$//} . else GEMFILES= ${DISTNAME}${EXTRACT_SUFX} . endif RUBYGEM_ARGS=-l --no-update-sources --install-dir ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER} --ignore-dependencies --bindir=${STAGEDIR}${PREFIX}/bin . if ${PORT_OPTIONS:MDOCS} RUBYGEM_ARGS+= --document rdoc,ri . else RUBYGEM_ARGS+= --no-document . endif . if !target(do-extract) do-extract: @${SETENV} ${GEM_ENV} ${RUBYGEMBIN} unpack --target=${WRKDIR} ${DISTDIR}/${DIST_SUBDIR}/${GEMFILES} @(cd ${BUILD_WRKSRC}; if ! ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} spec --ruby ${DISTDIR}/${DIST_SUBDIR}/${GEMFILES} > ${GEMSPEC} ; then \ if [ -n "${BUILD_FAIL_MESSAGE}" ] ; then \ ${ECHO_MSG} "===> Extraction failed unexpectedly."; \ (${ECHO_CMD} "${BUILD_FAIL_MESSAGE}") | ${FMT_80} ; \ fi; \ ${FALSE}; \ fi) . endif . if !target(do-build) do-build: @(cd ${BUILD_WRKSRC}; if ! ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} build --force ${GEMSPEC} ; then \ if [ -n "${BUILD_FAIL_MESSAGE}" ] ; then \ ${ECHO_MSG} "===> Compilation failed unexpectedly."; \ (${ECHO_CMD} "${BUILD_FAIL_MESSAGE}") | ${FMT_80} ; \ fi; \ ${FALSE}; \ fi) . endif . if !target(do-install) do-install: (cd ${BUILD_WRKSRC}; ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} install ${RUBYGEM_ARGS} ${GEMFILES} -- ${CONFIGURE_ARGS}) ${RM} -r ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR}/build_info/ ${FIND} ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR} -type f -name '*.so' -exec ${STRIP_CMD} {} + ${FIND} ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR} -type f \( -name mkmf.log -or -name gem_make.out \) -delete ${FIND} ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/ext -type f -not -name '*.so' -delete 2> /dev/null || ${TRUE} ${FIND} ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/ext -type d -empty -delete 2> /dev/null || ${TRUE} ${RM} -r ${STAGEDIR}${PREFIX}/${CACHE_DIR} 2> /dev/null || ${TRUE} ${RMDIR} ${STAGEDIR}${PREFIX}/${EXT_DIR} 2> /dev/null || ${TRUE} ${RMDIR} ${STAGEDIR}${PREFIX}/${PLUGINS_DIR} 2> /dev/null || ${TRUE} . if !${PORT_OPTIONS:MDOCS} -@${RMDIR} ${STAGEDIR}${PREFIX}/${DOC_DIR} . endif . endif . if empty(gem_ARGS:Mnoautoplist) _USES_install+= 820:gem-autoplist gem-autoplist: @${ECHO_CMD} ${GEM_SPEC} >> ${TMPPLIST} . if ${PORT_OPTIONS:MDOCS} @${FIND} -ds ${STAGEDIR}${PREFIX}/${DOC_DIR} -type f -print | ${SED} -E -e \ 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} . endif @${FIND} -ds ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR} -type f -print | ${SED} -E -e \ 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} @if [ -d ${STAGEDIR}${PREFIX}/${EXT_DIR} ]; then \ ${FIND} -ds ${STAGEDIR}${PREFIX}/${EXT_DIR} -type f -print | ${SED} -E -e \ 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} ; \ fi @if [ -d ${STAGEDIR}${PREFIX}/${PLUGINS_DIR} ]; then \ ${FIND} -ds ${STAGEDIR}${PREFIX}/${PLUGINS_DIR} -type f -print | ${SED} -E -e \ 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} ; \ fi . endif .endif diff --git a/Mk/bsd.ruby.mk b/Mk/Uses/ruby.mk similarity index 89% rename from Mk/bsd.ruby.mk rename to Mk/Uses/ruby.mk index a9a6ce42574e..da2e4ea30a4e 100644 --- a/Mk/bsd.ruby.mk +++ b/Mk/Uses/ruby.mk @@ -1,348 +1,365 @@ -# 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] # # RUBY_VER - (See below) # RUBY_DEFAULT_VER - Set to (e.g.) "2.7" if you want to refer to "ruby27" # just as "ruby". # RUBY_ARCH - (See below) # # [variables that each port can define] # # RUBY - Set to full path of ruby. If you set this, the values # of the following variables are automatically obtained # from the ruby executable: RUBY_VER, RUBY_VERSION, # RUBY_ARCH, RUBY_LIBDIR, RUBY_ARCHLIBDIR, # RUBY_SITELIBDIR, and RUBY_SITEARCHLIBDIR. # RUBY_VER - Set to the alternative short version of ruby in the # form of `x.y' (see below for current value). -# USE_RUBY - Says that the port uses ruby for building and running. -# RUBY_NO_BUILD_DEPENDS - Says that the port should not build-depend on ruby. -# RUBY_NO_RUN_DEPENDS - Says that the port should not run-depend on ruby. -# USE_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] # # RUBY_PKGNAMEPREFIX - Common PKGNAMEPREFIX for ruby ports # (default: ruby${RUBY_SUFFIX}-) # RUBY_VERSION - Full version of ruby without preview/beta suffix in # the form of `x.y.z' (see below for current value). -# RUBY_VERSION_CODE - Integer version of RUBY_VERSION in the form of +# RUBY_VERSION_CODE - Integer version of RUBY_VERSION in the form of # `xyz'. # RUBY_DISTVERSION - DISTVERSION for the standard ruby ports (ruby, # ruby-gdbm, etc.). # RUBY_PORTVERSION - PORTVERSION for the standard ruby ports (ruby, # ruby-gdbm, etc.). # RUBY_PORTREVISION - PORTREVISION for the standard ruby ports. # RUBY_PORTEPOCH - PORTEPOCH for the standard ruby ports. # RUBY_DISTNAME - DISTNAME for the standard ruby ports, i.e. the # basename of the ruby distribution tarball. # RUBY_PATCHFILES - PATCHFILES for the standard ruby ports, i.e. the # basename of the ruby distribution tarball. # RUBY_WRKSRC - WRKSRC for the ruby port. # MASTER_SITE_SUBDIR_RUBY - MASTER_SITE_SUBDIR for the ruby distfiles. # # RUBY_SHLIBVER - Major version of libruby (see below for current # value). # RUBY_ARCH - Set to target architecture name. # (e.g. i386-freebsd7) # RUBY_SUFFIX - Suffix for ruby binaries and directories # (${RUBY_VER:S/.//}). # RUBY_WITHOUT_SUFFIX - Always ${LOCALBASE}/bin/ruby. # RUBY_WITH_SUFFIX - Always ${RUBY_WITHOUT_SUFFIX}${RUBY_SUFFIX}. # # RUBY_MODNAME - Set to the module name (default: ${PORTNAME}). # # RUBY_BASE_PORT - Port path of base ruby without PORTSDIR, without # suffix except version. # RUBY_PORT - Port path of ruby without PORTSDIR. # # DEPEND_RUBY - BUILD_DEPENDS/RUN_DEPENDS entry for ruby. # # RUBY_LIBDIR - Installation path for architecture independent # libraries. # RUBY_ARCHLIBDIR - Installation path for architecture dependent # libraries. # RUBY_SITELIBDIR - Installation path for site architecture independent # libraries. # RUBY_SITEARCHLIBDIR - Installation path for site architecture dependent # libraries. # RUBY_DOCDIR - Installation path for documents. # RUBY_EXAMPLESDIR - Installation path for examples. # RUBY_RIDIR - Installation path for site architecture independent ri # documents. # RUBY_SITERIDIR - Installation path for site architecture dependent ri # documents. # RUBY_MODDOCDIR - Installation path for the module's documents. # RUBY_MODEXAMPLESDIR - Installation path for the module's examples. # +# 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" . endif RUBY_DEFAULT_VER?= ${RUBY_DEFAULT} RUBY_VER?= ${RUBY_DEFAULT_VER} . if defined(RUBY) . if !exists(${RUBY}) IGNORE= cannot install: you set the variable RUBY to "${RUBY}", but it does not seem to exist. Please specify an already installed ruby executable . endif _RUBY_TEST!= ${RUBY} -e 'begin; require "rbconfig"; puts "ok" ; rescue LoadError; puts "error"; end' . if !empty(_RUBY_TEST) && ${_RUBY_TEST} != "ok" IGNORE= cannot install: you set the variable RUBY to "${RUBY}", but it failed to include rbconfig. Please specify a properly installed ruby executable . endif _RUBY_CONFIG= ${RUBY} -r rbconfig -e 'C = RbConfig::CONFIG' -e RUBY_VERSION!= ${_RUBY_CONFIG} 'puts C["ruby_version"]' RUBY_SUFFIX?= # empty RUBY_ARCH!= ${_RUBY_CONFIG} 'puts C["target"]' _RUBY_SYSLIBDIR!= ${_RUBY_CONFIG} 'puts C["libdir"]' _RUBY_SITEDIR!= ${_RUBY_CONFIG} 'puts C["sitedir"]' _RUBY_VENDORDIR!= ${_RUBY_CONFIG} 'puts C["vendordir"]' . else RUBY?= ${LOCALBASE}/bin/ruby${RUBY_SUFFIX} . if defined(RUBY_VER) # When adding a version, please keep the comment in # Mk/bsd.default-versions.mk in sync. . if ${RUBY_VER} == 2.7 # # Ruby 2.7 # RUBY_DISTVERSION= 2.7.7 RUBY_PORTREVISION= 0 . elif ${RUBY_VER} == 3.0 # # Ruby 3.0 # RUBY_DISTVERSION= 3.0.5 RUBY_PORTREVISION= 0 . elif ${RUBY_VER} == 3.1 # # Ruby 3.1 # RUBY_DISTVERSION= 3.1.3 RUBY_PORTREVISION= 0 . elif ${RUBY_VER} == 3.2 # # Ruby 3.2 # RUBY_DISTVERSION= 3.2.0 RUBY_PORTREVISION= 0 # When adding a version, please keep the comment in # Mk/bsd.default-versions.mk in sync. . else # # Other versions # IGNORE= Only ruby 2.7, 3.0, 3.1 and 3.2 are supported _INVALID_RUBY_VER= 1 . endif RUBY_PORTEPOCH= 1 RUBY_VERSION= ${RUBY_DISTVERSION:C/^([0-9]+\.[0-9]+\.[0-9]+).*/\1/} . endif # defined(RUBY_VER) . if !defined(_INVALID_RUBY_VER) RUBY27?= "@comment " RUBY30?= "@comment " RUBY31?= "@comment " RUBY32?= "@comment " . if defined(BROKEN_RUBY${RUBY_VER:R}${RUBY_VER:E}) . if ${BROKEN_RUBY${RUBY_VER:R}${RUBY_VER:E}} == "yes" BROKEN= does not build with Ruby ${RUBY_VER} . else BROKEN= ${BROKEN_RUBY${RUBY_VER:R}${RUBY_VER:E}} . endif . endif RUBY_WRKSRC= ${WRKDIR}/ruby-${RUBY_DISTVERSION} RUBY_CONFIGURE_ARGS+= --with-rubyhdrdir="${PREFIX}/include/ruby-${RUBY_VER}/" \ --with-rubylibprefix="${PREFIX}/lib/ruby" \ --docdir="${RUBY_DOCDIR}" \ --with-soname=ruby${RUBY_SUFFIX} CONFIGURE_TARGET?= ${ARCH}-portbld-${OPSYS:tl}${OSREL:C/\..*//} RUBY_ARCH?= ${ARCH}-${OPSYS:tl}${OSREL:C/\..*//} _RUBY_SYSLIBDIR?= ${PREFIX}/lib _RUBY_SITEDIR?= ${_RUBY_SYSLIBDIR}/ruby/site_ruby _RUBY_VENDORDIR?= ${_RUBY_SYSLIBDIR}/ruby/vendor_ruby . endif . endif # defined(RUBY) . if !defined(_INVALID_RUBY_VER) RUBY_DEFAULT_SUFFIX?= ${RUBY_DEFAULT_VER:S/.//} RUBY_PORTVERSION?= ${RUBY_DISTVERSION:tl:C/([a-z])[a-z]+/\1/g:C/([0-9])([a-z])/\1.\2/g:C/:(.)/\1/g:C/[^a-z0-9+]+/./g} MASTER_SITE_SUBDIR_RUBY?= ${RUBY_VER} RUBY_DISTNAME?= ruby-${RUBY_DISTVERSION} RUBY_WRKSRC?= ${WRKDIR}/${RUBY_DISTNAME} RUBY_RELVERSION_CODE?= ${RUBY_RELVERSION:S/.//g} RUBY_VERSION_CODE?= ${RUBY_VERSION:S/.//g} RUBY_VER= ${RUBY_VERSION:C/([[:digit:]]+\.[[:digit:]]+).*/\1/} RUBY_SUFFIX= ${RUBY_VER:S/.//} RUBY_WITHOUT_SUFFIX?= ${LOCALBASE}/bin/ruby RUBY_WITH_SUFFIX?= ${RUBY_WITHOUT_SUFFIX}${RUBY_SUFFIX} RUBY_PKGNAMEPREFIX?= ruby${RUBY_SUFFIX}- RUBY_SHLIBVER?= ${RUBY_VER:S/.//} RUBY_CONFIGURE_ARGS+= --program-prefix="" . if ${RUBY_VER} != ${RUBY_DEFAULT_VER} DEPENDS_ARGS+= RUBY_VER=${RUBY_VER} . endif RUBY_CONFIGURE_ARGS+= --program-suffix="${RUBY_SUFFIX}" RUBY_MODNAME?= ${PORTNAME} # Ports RUBY_BASE_PORT?= lang/ruby${RUBY_VER:S/.//} RUBY_PORT?= ${RUBY_BASE_PORT} # Depends DEPEND_RUBY?= ${RUBY}:${RUBY_PORT} # Directories RUBY_LIBDIR?= ${_RUBY_SYSLIBDIR}/ruby/${RUBY_VER} RUBY_ARCHLIBDIR?= ${RUBY_LIBDIR}/${RUBY_ARCH} RUBY_SITELIBDIR?= ${_RUBY_SITEDIR}/${RUBY_VER} RUBY_SITEARCHLIBDIR?= ${RUBY_SITELIBDIR}/${RUBY_ARCH} RUBY_VENDORLIBDIR?= ${_RUBY_VENDORDIR}/${RUBY_VER} RUBY_VENDORARCHLIBDIR?= ${RUBY_VENDORLIBDIR}/${RUBY_ARCH} RUBY_DOCDIR?= ${PREFIX}/share/doc/ruby${RUBY_SUFFIX} RUBY_EXAMPLESDIR?= ${PREFIX}/share/examples/ruby${RUBY_SUFFIX} RUBY_RIDIR?= ${PREFIX}/share/ri/${RUBY_VER}/system RUBY_SITERIDIR?= ${PREFIX}/share/ri/${RUBY_VER}/site RUBY_MODDOCDIR?= ${RUBY_DOCDIR}/${RUBY_MODNAME} RUBY_MODEXAMPLESDIR?= ${RUBY_EXAMPLESDIR}/${RUBY_MODNAME} # PLIST PLIST_RUBY_DIRS= RUBY_LIBDIR="${RUBY_LIBDIR}" \ RUBY_ARCHLIBDIR="${RUBY_ARCHLIBDIR}" \ RUBY_SITELIBDIR="${RUBY_SITELIBDIR}" \ RUBY_SITEARCHLIBDIR="${RUBY_SITEARCHLIBDIR}" \ RUBY_VENDORLIBDIR="${RUBY_VENDORLIBDIR}" \ RUBY_VENDORARCHLIBDIR="${RUBY_VENDORARCHLIBDIR}" \ RUBY_MODDOCDIR="${RUBY_MODDOCDIR}" \ RUBY_MODEXAMPLESDIR="${RUBY_MODEXAMPLESDIR}" \ RUBY_DOCDIR="${RUBY_DOCDIR}" \ RUBY_EXAMPLESDIR="${RUBY_EXAMPLESDIR}" \ RUBY_RIDIR="${RUBY_RIDIR}" \ RUBY_SITERIDIR="${RUBY_SITERIDIR}" PLIST_SUB+= ${PLIST_RUBY_DIRS:C,DIR="(${LOCALBASE}|${PREFIX})/,DIR=",} \ RUBY_VERSION="${RUBY_VERSION}" \ RUBY_VER="${RUBY_VER}" \ RUBY_SHLIBVER="${RUBY_SHLIBVER}" \ RUBY_ARCH="${RUBY_ARCH}" \ RUBY_SUFFIX="${RUBY_SUFFIX}" \ RUBY_DEFAULT_SUFFIX="${RUBY_DEFAULT_SUFFIX}" . if ${PORT_OPTIONS:MDEBUG} RUBY_FLAGS+= -d . endif # # 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}" CONFIGURE_ENV+= RB_USER_INSTALL=yes do-configure: ruby-extconf-configure ruby-extconf-configure: . if defined(RUBY_EXTCONF_SUBDIRS) . for d in ${RUBY_EXTCONF_SUBDIRS} @${ECHO_MSG} "===> Running ${RUBY_EXTCONF} in ${d} to configure" @cd ${CONFIGURE_WRKSRC}/${d}; \ ${SETENV} ${CONFIGURE_ENV} ${RUBY} ${RUBY_FLAGS} ${RUBY_EXTCONF} ${CONFIGURE_ARGS} . endfor . else @${ECHO_MSG} "===> Running ${RUBY_EXTCONF} to configure" @cd ${CONFIGURE_WRKSRC}; \ ${SETENV} ${CONFIGURE_ENV} ${RUBY} ${RUBY_FLAGS} ${RUBY_EXTCONF} ${CONFIGURE_ARGS} . endif . endif # # setup.rb support # -. if defined(USE_RUBY_SETUP) +. if ${ruby_ARGS:Msetup} RUBY_SETUP?= setup.rb do-configure: ruby-setup-configure ruby-setup-configure: @${ECHO_MSG} "===> Running ${RUBY_SETUP} to configure" @cd ${BUILD_WRKSRC}; \ ${SETENV} ${CONFIGURE_ENV} ${RUBY} ${RUBY_FLAGS} ${RUBY_SETUP} config ${CONFIGURE_ARGS} do-build: ruby-setup-build ruby-setup-build: @${ECHO_MSG} "===> Running ${RUBY_SETUP} to build" @cd ${BUILD_WRKSRC}; \ ${SETENV} ${MAKE_ENV} ${RUBY} ${RUBY_FLAGS} ${RUBY_SETUP} setup do-install: ruby-setup-install ruby-setup-install: @${ECHO_MSG} "===> Running ${RUBY_SETUP} to install" @cd ${INSTALL_WRKSRC}; \ ${SETENV} ${MAKE_ENV} ${RUBY} ${RUBY_FLAGS} ${RUBY_SETUP} install --prefix=${STAGEDIR} . endif -. if defined(USE_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 .endif diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 7628e7d1d48a..b20876eff9f0 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -1,5411 +1,5403 @@ #-*- tab-width: 4; -*- # ex:ts=4 # # bsd.port.mk - 940820 Jordan K. Hubbard. # This file is in the public domain. # # Please view me with 4 column tabs! # This is the master file for the most common elements to all port # Makefile in the ports system. For a more general overview of its # use and importance, see the Porter's Handbook. # There are two different types of "maintainers" in the ports framework. # The maintainer alias of the bsd.port.mk file is listed below in the # FreeBSD_MAINTAINER entry. You should consult them if you have any # questions/suggestions regarding this file. # # DO NOT COMMIT CHANGES TO THIS FILE BY YOURSELF, EVEN IF YOU DID NOT GET # A RESPONSE FROM THE MAINTAINER(S) WITHIN A REASONABLE TIMEFRAME! ALL # UNAUTHORISED CHANGES WILL BE UNCONDITIONALLY REVERTED! FreeBSD_MAINTAINER= portmgr@FreeBSD.org # For each port, the MAINTAINER variable is what you should consult for # contact information on the person(s) to contact if you have questions/ # suggestions about that specific port. By default (if no MAINTAINER # is listed), a port is maintained by the subscribers of the ports@FreeBSD.org # mailing list, and any correspondence should be directed there. # # MAINTAINER - The e-mail address of the contact person for this port. # Default: ports@FreeBSD.org # # These are meta-variables that are automatically set to the system # you are running on. These are provided in case you need to take # different actions for different values. # # ARCH - The architecture of the target machine, such as would be # returned by "uname -p". # OPSYS - Portability clause. This is the operating system the # makefile is being used on. Automatically set to # "FreeBSD," "NetBSD," or "OpenBSD" as appropriate. # OSREL - The release version of the operating system as a text # string (e.g., "12.3"). # OSVERSION - The operating system version as a comparable integer; # the value of __FreeBSD_version (e.g., 1203000). # # This is the beginning of the list of all variables that need to be # defined in a port, listed in order that they should be included # to fit in with existing conventions. (Exception: MAINTAINER actually # should appear after EXTRACT_ONLY and before MASTER_SITE_BACKUP). # # These variables are used to identify your port. # # PORTNAME - Name of software. Mandatory. # PORTVERSION - Version of software. Mandatory when no DISTVERSION is given. # PORTREVISION - Version of port. Optional. Commonly used to indicate # that an update has happened that affects the port # framework itself, but not the distributed software # (e.g., local patches or Makefile changes). # PORTEPOCH - Optional. In certain odd cases, the PORTREVISION logic # can be fooled by ports that appear to go backwards # numerically (e.g. if port-0.3 is newer than port-1998). # In this case, incrementing PORTEPOCH forces the revision. # Default: 0 (no effect). # PKGNAME - Always defined as # ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX}-${PKGVERSION}. # Do not define this in your Makefile. # PKGNAMEPREFIX - Prefix to specify that port is language-specific, etc. # Optional. # PKGNAMESUFFIX - Suffix to specify compilation options or a version # designator (in case there are different versions of # one port as is the case for Tcl). # Optional. # PKGVERSION - Version of package. # Do not define this in your Makefile. # DISTVERSION - Vendor version of the distribution. # Default: ${PORTVERSION} # DISTNAME - Name of port or distribution used in generating # WRKSRC and DISTFILES below. # Default: # ${PORTNAME}-${DISTVERSIONPREFIX}${DISTVERSION}${DISTVERSIONSUFFIX} # CATEGORIES - A list of descriptive categories into which this port falls. # Mandatory. # # These variable describe how to fetch files required for building the port. # # DISTFILES - Name(s) of archive file(s) containing distribution. # Set this to an empty string if the port doesn't require it. # Default: ${DISTNAME}${EXTRACT_SUFX} # EXTRACT_SUFX - Suffix for archive names # You never have to set both DISTFILES and EXTRACT_SUFX. # Default: .tar.bz2 if USES=tar:bzip2 is set, .tar.xz if # USES=tar:xz USE_XZ is set, .tar.gz otherwise). # MASTER_SITES - Primary location(s) for distribution files if not found # locally. See bsd.sites.mk for common choices for # MASTER_SITES. # MASTER_SITE_SUBDIR # - Subdirectory of MASTER_SITES. Will sometimes need to be # set to ${PORTNAME} for (e.g.) MASTER_SITE_SOURCEFORGE. # Only guaranteed to work for choices of ${MASTER_SITES} # defined in bsd.sites.mk. # Default: not set. # PATCHFILES - Name(s) of additional files that contain distribution # patches. Make will look for them at PATCH_SITES (see below). # They will automatically be uncompressed before patching if # the names end with ".gz", ".bz2" or ".Z". # For each file you can optionally specify a strip # flag of patch(1) after a colon if it has a different # base directory, e.g. "file1 file2:-p1 file3". # You can also use a :group at the end for matching up to # dist file groups. See Porters Handbook for more information. # Syntax: PATCHFILES= patch[:-pX][:group] # Default: not set. # PATCH_SITES - Primary location(s) for distribution patch files # if not found locally. # DIST_SUBDIR - Suffix to ${DISTDIR}. If set, all ${DISTFILES} and # ${PATCHFILES} will be put in this subdirectory of # ${DISTDIR} (see below). Also they will be fetched in this # subdirectory from FreeBSD mirror sites. # ALLFILES - All of ${DISTFILES} and ${PATCHFILES}. # EXTRACT_ONLY - If set, a subset of ${DISTFILES} you want to # actually extract. # # (NOTE: by convention, the MAINTAINER entry (see above) should go here.) # # COMMENT - A short description of the package (less than 70 characters) # WWW - URL users can get more information on the provided package # was previously part of pkg-descr # # The following variables are typically set in /etc/make.conf to indicate # the user's preferred location to fetch files from. You should rarely # need to set these. # # MASTER_SITE_BACKUP # - Backup location(s) for distribution files and patch # files if not found locally and ${MASTER_SITES}/${PATCH_SITES}. # This should *not* be changed. # Default: # http://distcache.FreeBSD.org/ports-distfiles/${DIST_SUBDIR}/ # MASTER_SITE_OVERRIDE # - If set, prepend the MASTER_SITES setting with this value. # MASTER_SITE_FREEBSD # - If set, prepend ${MASTER_SITE_BACKUP} in MASTER_SITES. # # Set these if your port should not be built under certain circumstances. # These are string variables; you should set them to the reason why # they are necessary. # # RESTRICTED - Prevent the distribution of distfiles and packages to # the FTP sites or on CDROM (e.g. forbidden by license # considerations). # NO_CDROM - Packages and distfiles may not go on CDROM (e.g. must # not be re-sold) but can go on FTP sites. # NO_PACKAGE - Port should not be packaged for ftp sites or CDROMs, # but distfiles can be put on ftp sites and CDROMs. # FORBIDDEN - Package build should not be attempted because of # security vulnerabilities. # LEGAL_TEXT - Port has legal issues (e.g., special permission to distribute, lacks a license). # LEGAL_PACKAGE - Port has no legal issues but defines NO_PACKAGE # IGNORE - Package build should be skipped entirely (e.g. # because of serious unfixable problems in the build, # because it cannot be manually fetched, etc). Error # logs will not appear on pointyhat, so this should be # used sparingly. # IGNORE_${ARCH} - Port should be ignored on ${ARCH}. # IGNORE_${OPSYS} - Port should be ignored on ${OPSYS}. # IGNORE_${OPSYS}_${OSREL:R} - Port should be ignored on a single # release of ${OPSYS}, e.g IGNORE_FreeBSD_13 # would affect all point releases of FreeBSD 13. # IGNORE_${OPSYS}_${OSREL:R}_${ARCH} - Port should be ignored on a # single release of ${OPSYS} and specific architecture, # e.g IGNORE_FreeBSD_13_i386 would affect all point # releases of FreeBSD 13 in i386. # BROKEN - Port is believed to be broken. Package builds can # still be attempted using TRYBROKEN to test this # assumption. # BROKEN_${ARCH} - Port is believed to be broken on ${ARCH}. Package builds # can still be attempted using TRYBROKEN to # test this assumption. # BROKEN_${OPSYS} - Port is believed to be broken on ${OPSYS}. Package builds # can still be attempted using TRYBROKEN to # test this assumption. # BROKEN_${OPSYS}_${OSREL:R} - Port is believed to be broken on a single # release of ${OPSYS}, e.g BROKEN_FreeBSD_13 # would affect all point releases of FreeBSD 13 # unless TRYBROKEN is also set. # BROKEN_${OPSYS}_${OSREL:R}_${ARCH} - Port is believed to be broken on a # single release of ${OPSYS} and specific architecture, # e.g BROKEN_FreeBSD_13 would affect all point # releases of FreeBSD 13 in i386 # unless TRYBROKEN is also set. # DEPRECATED - Port is deprecated to install. Advisory only. # EXPIRATION_DATE # - If DEPRECATED is set, determines a date when # the port is planed to remove. The date format is # ISO 8601 (YYYY-MM-DD). # # DISABLE_VULNERABILITIES # - If set, do not check if the port is listed in the # vulnerabilities database. # # In addition to RESTRICTED or NO_CDROM, if only a subset of distfiles # or patchfiles have redistribution restrictions, set the following # to the list of such files. # # RESTRICTED_FILES # - List of files that cannot be redistributed. # Default: "${DISTFILES} ${PATCHFILES}" if RESTRICTED # or NO_CDROM is set, empty otherwise. # # These variables are booleans, so you don't need to set them to the reason. # # IS_INTERACTIVE # - Set this if your port needs to interact with the user # during any step in a package build. User can then decide # to skip this port by setting ${BATCH}, or compiling only # the interactive ports by setting ${INTERACTIVE}. # Default: not set. # USE_SUBMAKE - Set this if you want that each of the port's main 7 targets # (extract, patch, configure, build, stage, install and # package) to be executed in a separate make(1) process. # Useful when one of the stages needs to influence make(1) # variables of the later stages using ${WRKDIR}/Makefile.inc # generated on the fly. # Default: not set. # # NO_ARCH - Set this if port is architecture neutral. # # NO_ARCH_IGNORE - Set this to a list files to ignore when NO_ARCH is checked # in stage-qa (i.e. architecture specific files that are # 'bundled' with the port). # # Set these if your port only makes sense to certain architectures. # They are lists containing names for them (e.g., "amd64 i386"). # (Defaults: not set.) # # ONLY_FOR_ARCHS # - Only build ports if ${ARCH} matches one of these. # NOT_FOR_ARCHS - Only build ports if ${ARCH} doesn't match one of these. # ONLY_FOR_ARCHS_REASON # ONLY_FOR_ARCHS_REASON_${ARCH} # - Reason why it's only for ${ONLY_FOR_ARCHS}s # NOT_FOR_ARCHS_REASON # NOT_FOR_ARCHS_REASON_${ARCH} # - Reason why it's not for ${NOT_FOR_ARCHS}s # IA32_BINARY_PORT # - Set this instead of ONLY_FOR_ARCHS if the given port # fetches and installs compiled i386 binaries. # # Dependency checking. Use these if your port requires another port # not in the list below. (Default: empty.) # # EXTRACT_DEPENDS # - A list of "path:dir[:target]" tuples of other ports this # package depends on in the "extract" stage. "path" is # the name of a file if it starts with a slash (/), an # executable otherwise. make will test for the existence # (if it is a full pathname) or search for it in your # $PATH (if it is an executable) and go into "dir" to do # a "make all install" if it's not found. If the third # field ("target") exists, it will be used instead of # ${DEPENDS_TARGET}. The first field also supports a # package name with a version range, in the form package>=1.2 # if a particular version is desired. # PATCH_DEPENDS - A list of "path:dir[:target]" tuples of other ports this # package depends on in the "patch" stage. "path" is the # name of a file if it starts with a slash (/), an # executable otherwise. make will test for the existence # (if it is a full pathname) or search for it in your # $PATH (if it is an executable) and go into "dir" to do # a "make all install" if it's not found. If the third # field ("target") exists, it will be used instead of # ${DEPENDS_TARGET}. The first field also supports a # package name with a version range, in the form package>=1.2 # if a particular version is desired. # FETCH_DEPENDS - A list of "path:dir[:target]" tuples of other ports this # package depends in the "fetch" stage. "path" is the # name of a file if it starts with a slash (/), an # executable otherwise. make will test for the # existence (if it is a full pathname) or search for # it in your $PATH (if it is an executable) and go # into "dir" to do a "make all install" if it's not # found. If the third field ("target") exists, it will # be used instead of ${DEPENDS_TARGET}. The first field # also supports a package name with a version range, in # the form package>=1.2 if a particular version is desired. # BUILD_DEPENDS - A list of "path:dir[:target]" tuples of other ports this # package depends to build (between the "extract" and # "build" stages, inclusive). The test done to # determine the existence of the dependency is the # same as FETCH_DEPENDS. If the third field ("target") # exists, it will be used instead of ${DEPENDS_TARGET}. # RUN_DEPENDS - A list of "path:dir[:target]" tuples of other ports this # package depends to run. The test done to determine # the existence of the dependency is the same as # FETCH_DEPENDS. This will be checked during the # "install" stage and the name of the dependency will # be put into the package as well. If the third field # ("target") exists, it will be used instead of # ${DEPENDS_TARGET}. The first field also supports a # package name with a version range, in the form package>=1.2 # if a particular version is desired. # LIB_DEPENDS - A list of "lib:dir[:target]" tuples of other ports this # package depends on. "lib" is the name of a shared library. # TEST_DEPENDS - A list of "path:dir[:target]" tuples of other ports this # package depends on in the "test" stage. "path" is the # name of a file if it starts with a slash (/), an # executable otherwise. make will test for the existence # (if it is a full pathname) or search for it in your # $PATH (if it is an executable) and go into "dir" to do # a "make all install" if it's not found. If the third # field ("target") exists, it will be used instead of # ${DEPENDS_TARGET}. The first field also supports a # package name with a version range, in the form package>=1.2 # if a particular version is desired. # DEPENDS_TARGET # - The default target to execute when a port is calling a # dependency. # Default: install # # These variables control options about how a port gets built and/or # are shorthand notations for common sets of dependencies. # Use these if your port uses some of the common software packages. By # convention these should be set to 'yes', although they only need to be # defined. Defaults: not set, unless explicitly indicated below. # # Note: the distinction between the USE_* and WANT_* variables, and the # WITH_* and WITHOUT_* variables, are that the former are restricted to # usage inside the ports framework, and the latter are reserved for user- # settable options. (Setting USE_* in /etc/make.conf is always wrong). # # WITH_DEBUG_PORTS - A list of origins for which WITH_DEBUG will be set # # WITHOUT_SSP - Disable SSP. # # SSP_CFLAGS - Defaults to -fstack-protector. This value # is added to CFLAGS and the necessary flags # are added to LDFLAGS. Note that SSP_UNSAFE # can be used in Makefiles by port maintainers # if a port breaks with it (it should be # extremely rare). # PIE_CFLAGS - Defaults to -fPIE -fPIC. This value # is added to CFLAGS and the necessary flags # are added to LDFLAGS. Note that PIE_UNSAFE # can be used in Makefiles by port maintainers # if a port breaks with it. ## # USE_LOCALE - LANG and LC_ALL are set to the value of this variable in # CONFIGURE_ENV and MAKE_ENV. Example: USE_LOCALE=en_US.UTF-8 ## # USE_GCC - If set, this port requires this version of gcc, either in # the system or installed from a port. # USE_CSTD - Override the default C language standard (gnu89, gnu99) # USE_CXXSTD Override the default C++ language standard # USE_BINUTILS - Use binutils suite from port instead of the version in base. # CFLAGS_${ARCH} Append the cflags to CFLAGS only on the specified architecture # CXXFLAGS_${ARCH} # Append the cxxflags to CXXFLAGS only on the specified architecture ## # LDFLAGS_${ARCH} Append the ldflags to LDFLAGS only on the specified architecture ## # USE_OPENLDAP - If set, this port uses the OpenLDAP libraries. # Implies: WANT_OPENLDAP_VER?=24 # WANT_OPENLDAP_VER # - Legal values are: 24 # If set to an unknown value, the port is marked BROKEN. ## # USE_JAVA - If set, this port relies on the Java language. # Implies inclusion of bsd.java.mk. (Also see # that file for more information on USE_JAVA_*). # 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. ## # USE_WX - If set, this port uses the WxWidgets library and related # components. See bsd.wx.mk for more details. ## # USE_LINUX_PREFIX # - Controls the action of PREFIX (see above). Only use this # if the port is a Linux infrastructure port (e.g. contains libs # or a sound server which supports the FreeBSD native one), # use the default prefix if it's a leaf port (e.g. a game or # program). # Implies NO_LICENSES_INSTALL=yes, NO_MTREE=yes, and causes # Linux ldconfig to be used when USE_LDCONFIG is defined. ## # USE_TEX - A list of the TeX dependencies the port has. # ## # USE_RC_SUBR - If set, the ports startup/shutdown script uses the common # routines found in /etc/rc.subr. # If this is set to a list of files, these files will be # automatically added to ${SUB_FILES}, some %%VAR%%'s will # automatically be expanded, they will be installed in # ${PREFIX}/etc/rc.d if ${PREFIX} is not /usr, otherwise they # will be installed in /etc/rc.d/ and added to the packing list. ## # Conflict checking. Use if your port cannot be installed at the same time as # another package. # # CONFLICTS - A list of package name patterns that the port conflicts # with, separated by blanks. The names may include shell # pattern meta-characters "*", "?", "[", "]", and "!". # Example: apache*-1.2* apache*-1.3.[012345] apache-*+ssl_* # # CONFLICTS_BUILD # - Check conflict prior to the build. # # CONFLICTS_INSTALL # - Check conflict prior to the installation stage. # # Various directory definitions and variables to control them. # You rarely need to redefine any of these except WRKSRC and NO_WRKSUBDIR. # # LOCALBASE - Where ports install things. # Default: /usr/local # LINUXBASE - Where Linux ports install things. # Default: /compat/linux # PREFIX - Where *this* port installs its files. # Default: ${LINUXBASE} if USE_LINUX_PREFIX is set, # otherwise ${LOCALBASE} # # IGNORE_PATH_CHECKS # - There are some sanity checks against PREFIX. # You can disable these checks with defining # this variable, but this is not recommended! # Only do this if you really know what you are # doing. These sanity checks are the following: # - PREFIX has to be an absolute path. # - PREFIX can't have a trailing slash. # # BUNDLE_LIBS Teach pkg(8) to not automatically add all shared libraries # installed by a port as shared libraries "provided" for # other packages (i.e., do not expose them in the solver). # This has to be used for ports that bundle third party # libraries for internal usage. # MASTERDIR - Where the port finds patches, package files, etc. Define # this is you have two or more ports that share most of the # files. # Default: ${.CURDIR} # PORTSDIR - The root of the ports tree. # Default: /usr/ports # DISTDIR - Where to search for and store copies of original sources # Default: ${PORTSDIR}/distfiles # PACKAGES - A top level directory where all packages go (rather than # going locally to each port). # Default: ${PORTSDIR}/packages # WRKDIRPREFIX - The place to root the temporary working directory # hierarchy. This path must *not* end in '/'. # Default: none # WRKDIR - A temporary working directory that gets *clobbered* on clean # Default: ${WRKDIRPREFIX}${.CURDIR}/work # WRKSRC - A subdirectory of ${WRKDIR} where the distribution actually # unpacks to. # Default: ${WRKDIR}/${DISTNAME} # WRKSRC_SUBDIR - A subdirectory of ${WRKSRC} where the distribution actually # builds in. # Default: not set # NO_WRKSUBDIR - Assume port unpacks without a subdirectory, and extract it in # ${WRKSRC} instead of ${WRKDIR}. # PATCHDIR - A directory containing any additional patches you made # to port this software to FreeBSD. # Default: ${MASTERDIR}/files # SCRIPTDIR - A directory containing any auxiliary scripts # Default: ${MASTERDIR}/scripts # FILESDIR - A directory containing any miscellaneous additional files. # Default: ${MASTERDIR}/files # PKGDIR - A directory containing any package creation files. # Default: ${MASTERDIR} # SRC_BASE - The root of the src tree. (Some ports require this to get # kernel sources). Default: /usr/src # UID_FILES - A list of files containing information about registered UIDs. # Note that files have decreasing priority. # GID_FILES - A list of files containing information about registered GIDs. # Note that files have decreasing priority. # # Variables that serve as convenient "aliases" for your *-install targets. # Use these like: "${INSTALL_PROGRAM} ${WRKSRC}/prog ${PREFIX}/bin". # # INSTALL_PROGRAM # - A command to install binary executables. (By # default, also strips them, unless ${STRIP} is # overridden to be the empty string). # INSTALL_KLD - As INSTALL_PROGRAM, but without the STRIP. # INSTALL_LIB - As INSTALL_DATA, but also strips the file. # INSTALL_SCRIPT # - A command to install executable scripts. # INSTALL_DATA - A command to install sharable data and static libs. # INSTALL_MAN - A command to install manpages and documentation. # COPYTREE_BIN # COPYTREE_SHARE # - Similiar to INSTALL_PROGRAM and INSTALL_DATA commands but # working on whole trees of directories, takes 3 arguments, # last one is find(1) arguments and optional. # Example use: # cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${DOCSDIR} "! -name *\.bak" # # Installs all directories and files from ${WRKSRC}/doc # to ${DOCSDIR} except sed(1) backup files. # # MANPREFIX - The directory prefix for manual pages. # Default: ${PREFIX} # MANPREFIX # - If manual pages of some sections install in different # locations than others, use these. # Default: ${MANPREFIX} # # Set the following to specify all .info files your port installs. # # INFO - A list of .info files (omitting the trailing ".info"); # only one entry per document! These files are listed in # the path relative to ${INFO_PATH}. # INFO_PATH - Path, where all .info files will be installed by your # port, relative to ${PREFIX} # # Set the following to specify all documentation your port installs into # ${DOCSDIR} # # PORTDOCS - A list of files and directories relative to DOCSDIR. # Shell glob patterns can be used, directories include # the entire subtree of contained files and directories. # Should not be set when no documentation files are # installed. # Useful for dynamically generated documentation. # # Set the following to specify all documentation your port installs into # ${EXAMPLESDIR} # # PORTEXAMPLES - A list of files and directories relative to EXAMPLESDIR. # Shell glob patterns can be used, directories include # the entire subtree of contained files and directories. # Should not be set when no examples files are # installed. # Useful for dynamically generated examples. # # Set the following to specify all files and directories your port installs into # ${DATADIR} # # PORTDATA - A list of files and directories relative to DATADIR. # Shell glob patterns can be used, directories include # the entire subtree of contained files and directories. # Should not be set when no data files are # installed. # Useful for dynamically generated data files. # # Default targets and their behaviors: # # fetch - Retrieves missing ${DISTFILES} and ${PATCHFILES} for this # port. # fetch-list - Show list of commands to retrieve missing ${DISTFILES} and # ${PATCHFILES} for this port. # fetch-recursive # - Retrieves missing ${DISTFILES} and ${PATCHFILES} for this # port and dependencies. # fetch-recursive-list # - Show list of commands to retrieve missing ${DISTFILES} and # ${PATCHFILES} for this port and dependencies. # fetch-required # - Retrieves missing ${DISTFILES} and ${PATCHFILES} for this # port and dependencies. # fetch-required-list # - Show list of commands to retrieve missing ${DISTFILES} and # ${PATCHFILES} for this port and dependencies. # fetch-url-list # - Show list of URLS to retrieve missing ${DISTFILES} and # ${PATCHFILES} for this port. # fetch-urlall-list # - Show list of URLS to retrieve ${DISTFILES} and # ${PATCHFILES} for this port. # # all-depends-list # - Show all directories which are dependencies # for this port. # build-depends-list # - Show all directories which are build-dependencies # for this port. # package-depends-list # - Show all directories which are package-dependencies # for this port. This is based upon the dependency # tree as recorded in the Makefiles of the ports # collection, not as recorded in the currently # installed ports. # actual-package-depends # - Like package-depends-list but with the difference # that the dependencies of the currently installed # ports are used instead of the dependencies as # recorded in the ports collection. # run-depends-list # - Show all directories which are run-dependencies # for this port. # test-depends-list # - Show all directories which are test-dependencies # for this port. # install-missing-packages # - Install missing dependencies from package and mark # them as automatically installed. # extract - Unpacks ${DISTFILES} into ${WRKDIR}. # patch - Apply any provided patches to the source. # configure - Runs either GNU configure, one or more local configure # scripts or nothing, depending on what's available. # build - Actually compile the sources. # install - Install the results of a build. # reinstall - Install the results of a build, deinstalling any previous # installation if needed. # deinstall - Remove the installation. # deinstall-all - Remove all installations with the same PKGORIGIN. # test - Run tests for the port. # package - Create a package from an _installed_ port. # package-recursive # - Create a package for a port and _all_ of its dependencies. # describe - Try to generate a one-line description for each port for # use in INDEX files and the like. # check-plist - Checks for files missing from the plist, and files in the plist # that are not installed by the port. # check-sanity - Perform some basic checks of the port layout. # checkpatch - Do a "patch -C" instead of a "patch". Note that it may # give incorrect results if multiple patches deal with # the same file. # checksum - Use distinfo to ensure that your distfiles are valid. # checksum-recursive # - Run checksum in this port and all dependencies. # makesum - Generate distinfo (only do this for your own ports!). # clean - Remove ${WRKDIR} and other temporary files used for building. # clean-depends - Do a "make clean" for all dependencies. # config - Configure options for this port (using ${DIALOG}). # Automatically run prior to extract, patch, configure, build, # install, and package. # config-recursive # - Configure options for this port for a port and all its # dependencies. # showconfig - Display options config for this port. # showconfig-recursive # - Display options config for this port and all its # dependencies. # rmconfig - Remove the options config for this port. # rmconfig-recursive # - Remove the options config for this port and all its # dependencies. # # Default sequence for "all" is: # # check-sanity fetch checksum extract patch configure build # # Please read the comments in the targets section below; you # should be able to use the pre-* or post-* targets/scripts # (which are available for every stage except checksum) or # override the do-* targets to do pretty much anything you want. # # The TARGET_ORDER_OVERRIDE variable can be set to multiple : # to change the ordering of targets, have a look at the _SEQ variables at the # end of this file for the default order and priorities. # # NEVER override the "regular" targets unless you want to open # a major can of worms. # # Set these variables if your port doesn't need some of the steps. # Note that there are no NO_PATCH or NO_CONFIGURE variables because # those steps are empty by default. NO_EXTRACT is not allowed anymore # since we need to at least create ${WRKDIR}. Also, NO_CHECKSUM is a user # variable and is not to be set in a port's Makefile. See above for NO_PACKAGE. # # NO_BUILD - Use a dummy (do-nothing) build target. # NO_INSTALL - Use a dummy (do-nothing) install target. # NO_TEST - Use a dummy (do-nothing) test target. # # Here are some variables used in various stages. # # For options see bsd.options.mk # # For fetch: # # FETCH_BINARY - Path to ftp/http fetch command if not in $PATH. # Default: "/usr/bin/fetch" # FETCH_ARGS - Arguments to ftp/http fetch command. # Default: "-Fpr" # FETCH_CMD - ftp/http fetch command. # Default: ${FETCH_BINARY} ${FETCH_ARGS} # FETCH_BEFORE_ARGS # - Arguments to ${FETCH_CMD} before filename. # Default: none # FETCH_AFTER_ARGS # - Arguments to ${FETCH_CMD} following filename. # Default: none # FETCH_ENV - Environment to pass to ${FETCH_CMD}. # Default: none # FETCH_REGET - Times to retry fetching of files on checksum errors. # Default: 1 # CLEAN_FETCH_ENV # - Disable package dependency in fetch target for mass # fetching. User settable. # # For extract: # # EXTRACT_CMD - Command for extracting archive # Default: ${TAR} # EXTRACT_BEFORE_ARGS # - Arguments to ${EXTRACT_CMD} before filename. # Default: "-xf" # EXTRACT_AFTER_ARGS # - Arguments to ${EXTRACT_CMD} following filename. # Default: "--no-same-owner --no-same-permissions" # For patch: # # EXTRA_PATCHES - Define this variable if you have patches not in # ${PATCHDIR}. This usually happens when you need to # do some pre-processing before some distribution # patches can be applied. In that case, fetch them as # extra distfiles, put the processed results in # ${WRKDIR}, then point EXTRA_PATCHES to them. # The patches specified by this variable will be # applied after the normal distribution patches but # before those in ${PATCHDIR}. This can also contain # directories, all the files named patch-* in those directories # will be applied. # EXTRA_PATCH_TREE - where to find extra 'out-of-tree' patches # Points to a directory hierarchy with the same layout # as the ports tree, where local patches can be found. # This allows a third party to keep their patches in # some other source control system if needed. # PATCH_WRKSRC - Directory to apply patches in. # Default: ${WRKSRC} # # For configure: # # HAS_CONFIGURE - If set, this port has its own configure script. The # configure stage will not do anything if this is not set. # GNU_CONFIGURE - If set, you are using GNU configure (optional). Implies # HAS_CONFIGURE. # CONFIGURE_OUTSOURCE - If set, this port builds in an empty ${CONFIGURE_WRKSRC} # not being under ${WRKSRC}. # CONFIGURE_WRKSRC # - Directory to run configure in. # Default: ${WRKSRC} # CONFIGURE_SCRIPT # - Name of configure script, relative to ${CONFIGURE_WRKSRC}. # Default: "Makefile.PL" if USES=perl5 and USE_PERL5=configure # are set, "configure" otherwise. # CONFIGURE_TARGET # - The name of target to call when GNU_CONFIGURE is # defined. # Default: ${ARCH}-portbld-${OPSYS:tl}${OSREL} # GNU_CONFIGURE_PREFIX # - The directory passed as prefix to the configure script if # GNU_CONFIGURE is set. # Default: ${PREFIX} # CONFIGURE_ARGS # - Pass these args to configure if ${HAS_CONFIGURE} is set. # Default: "--prefix=${GNU_CONFIGURE_PREFIX} # --infodir=${PREFIX}/${INFO_PATH} --localstatedir=/var # --mandir=${MANPREFIX}/man --build=${CONFIGURE_TARGET}" if # GNU_CONFIGURE is set, "CC=${CC} CFLAGS=${CFLAGS} # PREFIX=${PREFIX} INSTALLPRIVLIB=${PREFIX}/lib # INSTALLARCHLIB=${PREFIX}/lib" if USES=perl5 and # USE_PERL5=configure are set, empty otherwise. # CONFIGURE_ENV - Pass these env (shell-like) to configure if # ${HAS_CONFIGURE} is set. # CONFIGURE_LOG - The name of configure log file. It will be printed to # the screen if configure fails. # Default: config.log # CONFIGURE_FAIL_MESSAGE # - A message displayed to users when configure # fails (note: this assumes the do-configure # target has not been overwritten). This message # will be passed through /usr/bin/fmt before # being shown to the user. # # WITHOUT_FBSD10_FIX Disable FreeBSD 10.0 autotools workaround. # # For build and install: # # MAKEFILE - Name of the makefile. # Default: Makefile # ALL_TARGET - Default target for sub-make in build stage. # Default: all # BUILD_WRKSRC - Directory to do build in (default: ${WRKSRC}). # MAKE_ENV - Additional environment vars passed to sub-make in build # and install stages. # Default: see below # MAKE_ARGS - Any extra arguments to sub-make in build and install stages. # Default: none ## # MAKE_JOBS_UNSAFE # - Disallow multiple jobs even when user set a global override. # To be used with known bad ports. # DISABLE_MAKE_JOBS # - Set to disable the multiple jobs feature. User settable. # MAKE_JOBS_NUMBER # - Override the number of make jobs to be used. User settable. # MAKE_JOBS_NUMBER_LIMIT # - Set a limit for maximum number of make jobs allowed to be # used. ## ccache # # WITH_CCACHE_BUILD # - Enable CCACHE support (devel/ccache). User settable. # CCACHE_DIR # - Which directory to use for ccache (default: $HOME/.ccache) # NO_CCACHE # - Disable CCACHE support for example for certain ports if # CCACHE is enabled. User settable. # # For test: # # TEST_TARGET - Target for sub-make in test stage. If not defined, # no default test target is provided. # Default: (none) # TEST_WRKSRC - Directory to do test in (default: ${WRKSRC}). # TEST_ENV - Additional environment vars passed to sub-make in test # stage # Default: ${MAKE_ENV} # TEST_ARGS - Any extra arguments to sub-make in test stage # Default: ${MAKE_ARGS} # # For install: # # INSTALL_TARGET # - Default target for sub-make in install stage. # Default: install # INSTALL_WRKSRC # - Directory to install from # Default: ${WRKSRC} # NO_MTREE - If set, will not invoke mtree from bsd.port.mk from # the "install" target. # MTREE_FILE - The name of the mtree file. # Default: ${PORTSDIR}/Templates/BSD.local.dist or # /etc/mtree/BSD.usr.dist if ${PREFIX} == "/usr". # PLIST_DIRS - Directories to be added to packing list # PLIST_FILES - Files and symbolic links to be added to packing list # # PLIST - Name of the `packing list' file. # Change this to ${WRKDIR}/PLIST or something if you # need to write to it. (It is not a good idea for a port # to write to any file outside ${WRKDIR} during a normal # build.) # Default: ${PKGDIR}/pkg-plist # TMPPLIST - Name of the `packing list' file after processing # Default: ${WRKDIR}/.PLIST.mktmp # PLIST_SUB - List of "variable=value" pair for substitution in ${PLIST} # Default: see below # # SUB_FILES - Files that should be passed through sed(1) and redirected to # ${WRKDIR}. # - For each file specified in SUB_FILES, there must be a # corresponding file in ${FILESDIR} whose suffix is ".in". For # instance, if the Makefile specifies "SUB_FILES= pkg-message" # then there must be a file called pkg-message.in in # ${FILESDIR}. # - The substitution process is the same as PLIST_FILES, as # described below except that any line beginning with @comment # is deleted. # SUB_LIST - List of "variable=value" pair for substitution in ${SUB_FILES} # Some pairs are added by default: eg. PREFIX=${PREFIX} # # USE_LDCONFIG - If set to "yes", this adds ${PREFIX}/lib to the list of # directories to be searched for shared libraries. # Otherwise, this is a list of directories to be added to that # list. The directory names are written to # ${LOCALBASE}/libdata/ldconfig/${PKGBASE} which is then # used by the ldconfig startup script. # This mechanism replaces ldconfig scripts installed by some # ports, often under such names as 000.${UNQUENAME}.sh. # If USE_LINUX_PREFIX is defined, the Linux version of # ldconfig will be used instead of the native FreeBSD # version, and the directory list given will be ignored. # USE_LDCONFIG32 # - Same as USE_LDCONFIG but the target file is # ${LOCALBASE}/libdata/ldconfig32/${PKGBASE} instead. # Note: that should only be used on 64-bit architectures. # # DOCSDIR - Name of the directory to install the packages docs in. # Default: ${PREFIX}/share/doc/${PORTNAME} # DOCSDIR_REL - The DOCSDIR relative to ${PREFIX} # EXAMPLESDIR - Name of the directory to install the packages examples in. # Default: ${PREFIX}/share/examples/${PORTNAME} # EXAMPLESDIR_REL # - The EXAMPLESDIR relative to ${PREFIX} # DATADIR - Name of the directory to install the packages shared data in. # Default: ${PREFIX}/share/${PORTNAME} # DATADIR_REL - The DATADIR relative to ${PREFIX} # # WWWDIR - Name of the directory to install the packages www data in. # Default: ${PREFIX}/www/${PORTNAME} # WWWDIR_REL - The WWWDIR relative to ${PREFIX} # # USERS - List of users to create at install time. Each login must # have a corresponding entry in ${UID_FILES}. # GROUPS - List of groups to create at install time. Each group must # have a corresponding entry in ${GID_FILES}. # # DESKTOPDIR - Name of the directory to install ${DESKTOP_ENTRIES} in. # Default: ${PREFIX}/share/applications # DESKTOP_ENTRIES # - List of desktop entry files to generate and install in # ${DESKTOPDIR}. The format is # "Name" "Comment" "Icon" "Exec" "Categories" StartupNotify # Rules: # * Only add desktop entries for applications which do not # require a terminal (ie. X applications). # * If the upstream distribution already installs .desktop # files, you do not need to use this. # * If you require a more elaborate .desktop file than this # variable permits, write it yourself and install it # in ${DESKTOPDIR}. # Notes: # * Comment, Icon and StartupNotify may be empty # strings (""). Categories may be an empty string in some # cases (see below). The other fields are mandatory. # * If Comment is an empty string, port ${COMMENT} will be # used. # * If set, Icon must be either absolute path (usually # ${PREFIX}/share/pixmaps/${PORTNAME}.png) or icon name # without extension if installed icons follow Icon Theme # Specification. # * If Categories is an empty string, bsd.port.mk will try # to deduce a default value using the CATEGORIES variable. # If the deduction fails, you will have to set Categories # manually. You should check the generated value using # "make desktop-categories", and override it if necessary. # * Exec will also be used to name the .desktop file. # * StartupNotify may be true, false or empty (see Desktop # Entry Specification for details). # * The files will be automatically added to ${PLIST}. # Example: # "X Window Information" \ # "Get information about X windows" \ # "${PREFIX}/share/pixmaps/wininfo.png" \ # "${PREFIX}/bin/wininfo" \ # "System;" \ # "" # See http://standards.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html # for an explanation of the fields. If you need to create more # than one file, just chain them into a single variable. # # Note that the install target will automatically add manpages (see # above) and also substitute special sequences of characters (delimited # by "%%") as defined in PLIST_SUB to generate ${TMPPLIST}. For # instance, "OSREL=${OSREL}" in PLIST_SUB causes all occurrences of # "%%OSREL%%" in ${PLIST} to be substituted by the value of OSREL. # ${TMPPLIST} is generated before the do-install stage. If you are # generating the packing list on-the-fly, make sure it's generated before # do-install is called! # # This is used in all stages: # # SCRIPTS_ENV - Additional environment vars passed to scripts in # ${SCRIPTDIR} executed by bsd.port.mk. # Default: see below # # Finally, variables to change if you want a special behavior. These # are for debugging purposes. Don't set them in your Makefile. # # ECHO_MSG - Used to print all the '===>' style prompts - override this # to turn them off. # Default: ${ECHO_CMD} # PATCH_DEBUG - If set, print out more information about the patches as # it attempts to apply them. # PKG_DBDIR - Where package installation is recorded; this directory # must not contain anything else. # Default: /var/db/pkg # PORT_DBDIR - Where port configuration options are recorded. # Default: /var/db/ports # NO_PKG_REGISTER # - Don't register a port installation as a package. # FORCE_PKG_REGISTER # - If set, it will overwrite any existing package # registration information in ${PKG_DBDIR}/${PKGNAME}. # NO_DEPENDS - Don't verify build of dependencies. # STRICT_DEPENDS # - Verify dependencies but consider missing dependencies as # fatal. # CHECKSUM_ALGORITHMS # - Different checksum algorithms to check for verifying the # integrity of the distfiles. The absence of the algorithm # in distinfo doesn't make it fail. # Default: sha256 # NO_CHECKSUM - Don't verify the checksum. Typically used when # when you noticed the distfile you just fetched has # a different checksum and you intend to verify if # the port still works with it. # USE_PACKAGE_DEPENDS # - Try to install dependencies from existing packages instead # of building the port from scratch. Fallback on source # if an existing package is not present. # USE_PACKAGE_DEPENDS_ONLY # - Like USE_PACKAGE_DEPENDS, but do not fallback on source. # INSTALL_AS_USER # - Define this to install as the current user, intended # for systems where you have no root access. # DISABLE_SIZE - Do not check the size of a distfile even if the SIZE field # has been specified in distinfo. This is useful # when using an alternate FETCH_CMD. # PKG_CREATE_VERBOSE # - If set, pass the -v option to pkg create which # ensures periodic output during packaging and # will help prevent timeouts by build monitors # PKG_COMPRESSION_FORMAT # - the compression format used when creating a package, see # pkg-create(8) for valid formats # PKG_COMPRESSION_LEVEL # - the compression level to use when creating a package, see # pkg-create(8) for valid values # # End of the list of all variables that need to be defined in a port. # Most port authors should not need to understand anything after this point. # LANG= C LC_ALL= C .export LANG LC_ALL # These need to be absolute since we don't know how deep in the ports # tree we are and thus can't go relative. They can, of course, be overridden # by individual Makefiles or local system make configuration. _LIST_OF_WITH_FEATURES= debug lto ssp pie relro bind_now _DEFAULT_WITH_FEATURES= ssp PORTSDIR?= /usr/ports LOCALBASE?= /usr/local LINUXBASE?= /compat/linux DISTDIR?= ${PORTSDIR}/distfiles _DISTDIR?= ${DISTDIR}/${DIST_SUBDIR} INDEXDIR?= ${PORTSDIR} SRC_BASE?= /usr/src USESDIR?= ${PORTSDIR}/Mk/Uses SCRIPTSDIR?= ${PORTSDIR}/Mk/Scripts LIB_DIRS?= /lib /usr/lib ${LOCALBASE}/lib STAGEDIR?= ${WRKDIR}/stage NOTPHONY?= FLAVORS?= FLAVOR?= OVERLAYS?= REWARNFILE= ${WRKDIR}/reinplace_warnings.txt # Disallow forced FLAVOR as make argument since we cannot change it to the # proper default. .if empty(FLAVOR) && !empty(.MAKEOVERRIDES:MFLAVOR) .error FLAVOR may not be passed empty as a make argument. .endif # Store env FLAVOR for later .if !defined(_FLAVOR) _FLAVOR:= ${FLAVOR} .endif .if !defined(PORTS_FEATURES) && empty(${PORTS_FEATURES:MFLAVORS}) PORTS_FEATURES+= FLAVORS .endif MINIMAL_PKG_VERSION= 1.17.2 _PORTS_DIRECTORIES+= ${PKG_DBDIR} ${PREFIX} ${WRKDIR} ${EXTRACT_WRKDIR} \ ${STAGEDIR}${PREFIX} ${WRKDIR}/pkg ${BINARY_LINKDIR} \ ${PKGCONFIG_LINKDIR} # Ensure .CURDIR contains an absolute path without a trailing slash. Failed # builds can occur when PORTSDIR is a symbolic link, or with something like # make -C /usr/ports/category/port/. .CURDIR:= ${.CURDIR:tA} # Ensure .CURDIR doesn't contain a colon, which breaks makefile targets .if ${.CURDIR:S/:/\:/g} != ${.CURDIR} .error The current directory path contains ':', this is not supported .endif # make sure bmake treats -V as expected .MAKE.EXPAND_VARIABLES= yes .include "${PORTSDIR}/Mk/bsd.commands.mk" # Do not leak flavors to childs make .MAKEOVERRIDES:= ${.MAKEOVERRIDES:NFLAVOR} .if defined(CROSS_TOOLCHAIN) . if !defined(CROSS_SYSROOT) IGNORE= CROSS_SYSROOT should be defined . endif .include "${LOCALBASE}/share/toolchains/${CROSS_TOOLCHAIN}.mk" # Do not define CPP on purpose . if !defined(HOSTCC) HOSTCC:= ${CC} HOSTCXX:= ${CXX} . endif . if !defined(CC_FOR_BUILD) CC_FOR_BUILD:= ${HOSTCC} CXX_FOR_BUILD:= ${HOSTCXX} . endif CONFIGURE_ENV+= HOSTCC="${HOSTCC}" HOSTCXX="${HOSTCXX}" CC_FOR_BUILD="${CC_FOR_BUILD}" CXX_FOR_BUILD="${CXX_FOR_BUILD}" CC= ${XCC} --sysroot=${CROSS_SYSROOT} CXX= ${XCXX} --sysroot=${CROSS_SYSROOT} CPP= ${XCPP} --sysroot=${CROSS_SYSROOT} . for _tool in AS AR LD NM OBJCOPY RANLIB SIZE STRINGS ${_tool}= ${CROSS_BINUTILS_PREFIX}${_tool:tl} . endfor LD+= --sysroot=${CROSS_SYSROOT} STRIP_CMD= ${CROSS_BINUTILS_PREFIX}strip # only bmake support the below STRIPBIN= ${STRIP_CMD} .export.env STRIPBIN .endif # # DESTDIR section to start a chrooted process if invoked with DESTDIR set # .if defined(DESTDIR) && !empty(DESTDIR) && !defined(CHROOTED) && \ !defined(BEFOREPORTMK) && !defined(INOPTIONSMK) .include "${PORTSDIR}/Mk/bsd.destdir.mk" .else . if !target(makepatch) makepatch: @${SETENV} WRKDIR=${WRKDIR} PATCHDIR=${PATCHDIR} \ PATCH_WRKSRC=${PATCH_WRKSRC} \ STRIP_COMPONENTS="${PATCH_STRIP:S/-p//}" \ ${SH} ${SCRIPTSDIR}/smart_makepatch.sh . endif # Start of options section . if defined(INOPTIONSMK) || ( !defined(USEOPTIONSMK) && !defined(AFTERPORTMK) ) # Get the default maintainer MAINTAINER?= ports@FreeBSD.org # Get the architecture . if !defined(ARCH) ARCH!= ${UNAME} -p . endif HOSTARCH:= ${ARCH} . if defined(CROSS_TOOLCHAIN) ARCH= ${CROSS_TOOLCHAIN:C,-.*$,,} . endif _EXPORTED_VARS+= ARCH . if ${ARCH} == powerpc64 . if !defined(PPC_ABI) PPC_ABI!= ${CC} -dM -E - < /dev/null | ${AWK} '/_CALL_ELF/{print "ELFv"$$3}' . if ${PPC_ABI} != ELFv2 PPC_ABI= ELFv1 . endif . endif _EXPORTED_VARS+= PPC_ABI . endif # Get operating system versions for a cross build . if defined(CROSS_SYSROOT) . if !exists(${CROSS_SYSROOT}/usr/include/sys/param.h) .error CROSS_SYSROOT does not include /usr/include/sys/param.h. . endif OSVERSION!= ${AWK} '/^\#define[[:blank:]]__FreeBSD_version/ {print $$3}' < ${CROSS_SYSROOT}/usr/include/sys/param.h _OSRELEASE!= ${AWK} -v version=${OSVERSION} 'END { printf("%d.%d-CROSS", version / 100000, version / 1000 % 100) }' < /dev/null . endif # Get the operating system type . if !defined(OPSYS) OPSYS!= ${UNAME} -s . endif _EXPORTED_VARS+= OPSYS . if !defined(_OSRELEASE) _OSRELEASE!= ${UNAME} -r . endif _EXPORTED_VARS+= _OSRELEASE # Get the operating system revision OSREL?= ${_OSRELEASE:C/-.*//} _EXPORTED_VARS+= OSREL # Get __FreeBSD_version . if !defined(OSVERSION) . if exists(/usr/include/sys/param.h) OSVERSION!= ${AWK} '/^\#define[[:blank:]]__FreeBSD_version/ {print $$3}' < /usr/include/sys/param.h . elif exists(${SRC_BASE}/sys/sys/param.h) OSVERSION!= ${AWK} '/^\#define[[:blank:]]__FreeBSD_version/ {print $$3}' < ${SRC_BASE}/sys/sys/param.h . else .error Unable to determine OS version. Either define OSVERSION, install /usr/include/sys/param.h or define SRC_BASE. . endif . endif _EXPORTED_VARS+= OSVERSION . if ${OPSYS} == FreeBSD && (${OSVERSION} < 1203000 || (${OSVERSION} >= 1300000 && ${OSVERSION} < 1301000)) _UNSUPPORTED_SYSTEM_MESSAGE= Ports Collection support for your ${OPSYS} version has ended, and no ports\ are guaranteed to build on this system. Please upgrade to a supported release. . if defined(ALLOW_UNSUPPORTED_SYSTEM) WARNING+= "${_UNSUPPORTED_SYSTEM_MESSAGE}" . else show-unsupported-system-error: @${ECHO_MSG} "/!\\ ERROR: /!\\" @${ECHO_MSG} @${ECHO_MSG} "${_UNSUPPORTED_SYSTEM_MESSAGE}" | ${FMT_80} @${ECHO_MSG} @${ECHO_MSG} "No support will be provided if you silence this message by defining ALLOW_UNSUPPORTED_SYSTEM." | ${FMT_80} @${ECHO_MSG} @${FALSE} . endif . endif # Convert OSVERSION to major release number _OSVERSION_MAJOR= ${OSVERSION:C/([0-9]?[0-9])([0-9][0-9])[0-9]{3}/\1/} # Sanity checks for chroot/jail building. # Skip if OSVERSION specified on cmdline for testing. Only works for bmake. . if !defined(.MAKEOVERRIDES) || !${.MAKEOVERRIDES:MOSVERSION} . if ${_OSVERSION_MAJOR} != ${_OSRELEASE:R} . if !defined(I_DONT_CARE_IF_MY_BUILDS_TARGET_THE_WRONG_RELEASE) .error UNAME_r (${_OSRELEASE}) and OSVERSION (${OSVERSION}) do not agree on major version number. . endif . elif ${_OSVERSION_MAJOR} != ${OSREL:R} .error OSREL (${OSREL}) and OSVERSION (${OSVERSION}) do not agree on major version number. . endif . endif # Only define tools here (for transition period with between pkg tools) .include "${PORTSDIR}/Mk/bsd.commands.mk" . if !defined(_PKG_CHECKED) && !defined(PACKAGE_BUILDING) && exists(${PKG_BIN}) . if !defined(_PKG_VERSION) _PKG_VERSION!= ${PKG_BIN} -v . endif # XXX hack for smooth transition towards pkg 1.17 _PKG_BEFORE_PKGEXT!= ${PKG_BIN} version -t ${_PKG_VERSION:C/-.*//g} 1.17.0 . if ${_PKG_BEFORE_PKGEXT} == "<" _PKG_TRANSITIONING_TO_NEW_EXT= yes _EXPORTED_VARS+= _PKG_TRANSITIONING_TO_NEW_EXT WARNING+= "It is strongly recommended to upgrade to a newer version of pkg first" . endif # XXX End of hack _PKG_STATUS!= ${PKG_BIN} version -t ${_PKG_VERSION:C/-.*//g} ${MINIMAL_PKG_VERSION} . if ${_PKG_STATUS} == "<" IGNORE= pkg(8) must be version ${MINIMAL_PKG_VERSION} or greater, but you have ${_PKG_VERSION}. You must upgrade the ${PKG_ORIGIN} port first . endif _PKG_CHECKED= 1 . endif _EXPORTED_VARS+= _PKG_CHECKED MASTERDIR?= ${.CURDIR} . if ${MASTERDIR} != ${.CURDIR} SLAVE_PORT?= yes MASTER_PORT?=${MASTERDIR:C/[^\/]+\/\.\.\///:C/[^\/]+\/\.\.\///:C/^.*\/([^\/]+\/[^\/]+)$/\\1/} . else SLAVE_PORT?= no MASTER_PORT?= . endif # If they exist, include Makefile.inc, then architecture/operating # system specific Makefiles, then local Makefile.local. . if ${MASTERDIR} != ${.CURDIR} && exists(${.CURDIR}/../Makefile.inc) .include "${.CURDIR}/../Makefile.inc" USE_SUBMAKE= yes . endif . if exists(${MASTERDIR}/../Makefile.inc) .include "${MASTERDIR}/../Makefile.inc" USE_SUBMAKE= yes . endif . if exists(${MASTERDIR}/Makefile.${ARCH}-${OPSYS}) .include "${MASTERDIR}/Makefile.${ARCH}-${OPSYS}" USE_SUBMAKE= yes . elif exists(${MASTERDIR}/Makefile.${OPSYS}) .include "${MASTERDIR}/Makefile.${OPSYS}" USE_SUBMAKE= yes . elif exists(${MASTERDIR}/Makefile.${ARCH}) .include "${MASTERDIR}/Makefile.${ARCH}" USE_SUBMAKE= yes . endif . if exists(${MASTERDIR}/Makefile.local) .include "${MASTERDIR}/Makefile.local" USE_SUBMAKE= yes . elif ${MASTERDIR} != ${.CURDIR} && exists(${.CURDIR}/Makefile.local) .include "${.CURDIR}/Makefile.local" USE_SUBMAKE= yes . endif . for _CATEGORY in ${CATEGORIES} PKGCATEGORY?= ${_CATEGORY} . endfor _PORTDIRNAME= ${.CURDIR:T} PORTDIRNAME?= ${_PORTDIRNAME} PKGORIGIN?= ${PKGCATEGORY}/${PORTDIRNAME} # where 'make config' records user configuration options PORT_DBDIR?= /var/db/ports UID_FILES?= ${PORTSDIR}/UIDs GID_FILES?= ${PORTSDIR}/GIDs UID_OFFSET?= 0 GID_OFFSET?= 0 # predefined accounts from src/etc/master.passwd # alpha numeric sort order USERS_BLACKLIST= _dhcp _pflogd _ypldap auditdistd bin bind daemon games hast kmem mailnull man news nobody operator pop proxy root smmsp sshd toor tty unbound uucp www # predefined accounts from src/etc/group # alpha numeric sort order GROUPS_BLACKLIST= _dhcp _pflogd _ypldap audit authpf bin bind daemon dialer ftp games guest hast kmem mail mailnull man network news nobody nogroup operator proxy smmsp sshd staff sys tty unbound uucp wheel www LDCONFIG_DIR= libdata/ldconfig LDCONFIG32_DIR= libdata/ldconfig32 # At least KDE needs TMPDIR for the package building, # so we're setting it to the known default value. . if defined(PACKAGE_BUILDING) TMPDIR?= /tmp . endif # defined(PACKAGE_BUILDING) . if defined(WITH_DEBUG_PORTS) . if ${WITH_DEBUG_PORTS:M${PKGORIGIN}} WITH_DEBUG= yes . endif . endif . if defined(USE_LTO) WITH_LTO= ${USE_LTO} WARNING+= USE_LTO is deprecated in favor of WITH_LTO . endif .include "${PORTSDIR}/Mk/bsd.default-versions.mk" .include "${PORTSDIR}/Mk/bsd.options.mk" . endif # End of options section. # Start of pre-makefile section. . if !defined(AFTERPORTMK) && !defined(INOPTIONSMK) . if defined(_PREMKINCLUDED) DEV_ERROR+= "you cannot include bsd.port[.pre].mk twice" . endif _PREMKINCLUDED= yes . if defined(PORTVERSION) . if ${PORTVERSION:M*[-_,]*}x != x IGNORE= PORTVERSION ${PORTVERSION} may not contain '-' '_' or ',' . endif . if defined(DISTVERSION) DEV_ERROR+= "Defining both PORTVERSION and DISTVERSION is wrong, only set one, if necessary, set DISTNAME" . endif DISTVERSION?= ${PORTVERSION:S/:/::/g} . elif defined(DISTVERSION) PORTVERSION= ${DISTVERSION:tl:C/([a-z])[a-z]+/\1/g:C/([0-9])([a-z])/\1.\2/g:C/:(.)/\1/g:C/[^a-z0-9+]+/./g} . endif PORTREVISION?= 0 . if ${PORTREVISION} != 0 _SUF1= _${PORTREVISION} . endif PORTEPOCH?= 0 . if ${PORTEPOCH} != 0 _SUF2= ,${PORTEPOCH} . endif PKGVERSION= ${PORTVERSION:C/[-_,]/./g}${_SUF1}${_SUF2} PKGNAME= ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX}-${PKGVERSION} DISTVERSIONFULL= ${DISTVERSIONPREFIX}${DISTVERSION:C/:(.)/\1/g}${DISTVERSIONSUFFIX} DISTNAME?= ${PORTNAME}-${DISTVERSIONFULL} INDEXFILE?= INDEX-${OSVERSION:C/([0-9]*)[0-9]{5}/\1/} PACKAGES?= ${PORTSDIR}/packages TEMPLATES?= ${PORTSDIR}/Templates KEYWORDS?= ${PORTSDIR}/Keywords WRAPPERSDIR?= ${PORTSDIR}/Mk/Wrappers/ PATCHDIR?= ${MASTERDIR}/files FILESDIR?= ${MASTERDIR}/files SCRIPTDIR?= ${MASTERDIR}/scripts PKGDIR?= ${MASTERDIR} PREFIX?= ${LOCALBASE} PKGCOMPATDIR?= ${LOCALBASE}/lib/compat/pkg . if defined(USE_LOCAL_MK) .include "${PORTSDIR}/Mk/bsd.local.mk" . endif . for odir in ${OVERLAYS} .sinclude "${odir}/Mk/bsd.overlay.mk" . endfor . if defined(USE_JAVA) .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 . if defined(USE_APACHE_BUILD) USES+= apache:build,${USE_APACHE_BUILD:C/2([0-9])/2.\1/g} . elif defined(USE_APACHE_RUN) USES+= apache:run,${USE_APACHE_RUN:C/2([0-9])/2.\1/g} . elif defined(USE_APACHE) USE_APACHE:= ${USE_APACHE:S/common/server,/} USES+= apache:${USE_APACHE:C/2([0-9])/2.\1/g} . endif . if defined(USE_GECKO) .include "${PORTSDIR}/Mk/bsd.gecko.mk" . endif . if defined(USE_MYSQL) USE_MYSQL:= ${USE_MYSQL:N[yY][eE][sS]:Nclient} . if defined(WANT_MYSQL_VER) . if empty(USE_MYSQL) USE_MYSQL:=${WANT_MYSQL_VER} . else USE_MYSQL:=${USE_MYSQL},${WANT_MYSQL_VER} . endif . endif USES+=mysql:${USE_MYSQL} . endif . if defined(WANT_WX) || defined(USE_WX) || defined(USE_WX_NOT) .include "${PORTSDIR}/Mk/bsd.wx.mk" . endif . if !defined(UID) . if defined(.MAKE.UID) UID= ${.MAKE.UID} . else UID!= ${ID} -u . endif . endif DESTDIRNAME?= DESTDIR # setup empty variables for USES targets . for target in sanity fetch extract patch configure build install test package stage _USES_${target}?= . endfor # Loading features . for f in ${USES} _f:= ${f:C/\:.*//} . if !defined(${_f}_ARGS) ${_f}_ARGS:= ${f:C/^[^\:]*(\:|\$)//:S/,/ /g} . endif . endfor . for f in ${USES} .undef _usefound . for udir in ${OVERLAYS:C,$,/Mk/Uses,} ${USESDIR} _usefile= ${udir}/${f:C/\:.*//}.mk . if exists(${_usefile}) && !defined(_usefound) _usefound= .include "${_usefile}" . endif . endfor . if !defined(_usefound) ERROR+= "Unknown USES=${f:C/\:.*//}" . endif . endfor . if !empty(FLAVORS) . if ${FLAVORS:Mall} DEV_ERROR+= "FLAVORS cannot contain 'all', it is a reserved value" . endif . for f in ${FLAVORS} . if ${f:C/[[:lower:][:digit:]_]//g} _BAD_FLAVOR_NAMES+= ${f} . endif . endfor . if !empty(_BAD_FLAVOR_NAMES) DEV_ERROR+= "FLAVORS contains flavors that are not all [a-z0-9_]: ${_BAD_FLAVOR_NAMES}" . endif . endif . if !empty(FLAVOR) . if empty(FLAVORS) IGNORE= FLAVOR is defined (to ${FLAVOR}) while this port does not have FLAVORS . elif ! ${FLAVORS:M${FLAVOR}} IGNORE= Unknown flavor '${FLAVOR}', possible flavors: ${FLAVORS} . endif . endif . if !empty(FLAVORS) && empty(FLAVOR) FLAVOR= ${FLAVORS:[1]} . endif # Reorder FLAVORS so the default is first if set by the port. . if empty(_FLAVOR) && !empty(FLAVORS) && !empty(FLAVOR) FLAVORS:= ${FLAVOR} ${FLAVORS:N${FLAVOR}} . endif . if !empty(FLAVOR) && !defined(_DID_FLAVORS_HELPERS) _DID_FLAVORS_HELPERS= yes _FLAVOR_HELPERS_OVERRIDE= DESCR PLIST PKGNAMEPREFIX PKGNAMESUFFIX _FLAVOR_HELPERS_APPEND= CONFLICTS CONFLICTS_BUILD CONFLICTS_INSTALL \ PKG_DEPENDS EXTRACT_DEPENDS PATCH_DEPENDS \ FETCH_DEPENDS BUILD_DEPENDS LIB_DEPENDS \ RUN_DEPENDS TEST_DEPENDS # These overwrite the current value . for v in ${_FLAVOR_HELPERS_OVERRIDE} . if defined(${FLAVOR}_${v}) ${v}= ${${FLAVOR}_${v}} . endif . endfor # These append to the current value . for v in ${_FLAVOR_HELPERS_APPEND} . if defined(${FLAVOR}_${v}) ${v}+= ${${FLAVOR}_${v}} . endif . endfor . for v in BROKEN IGNORE . if defined(${FLAVOR}_${v}) ${v}= flavor "${FLAVOR}" ${${FLAVOR}_${v}} . endif . endfor . if defined(FLAVORS_SUB) PLIST_SUB+= ${FLAVORS:N${FLAVOR}:@v@${v:tu}="\@comment " NO_${v:tu}=""@} PLIST_SUB+= ${FLAVOR:tu}="" NO_${FLAVOR:tu}="@comment " SUB_LIST+= ${FLAVORS:N${FLAVOR}:@v@${v:tu}="\@comment " NO_${v:tu}=""@} SUB_LIST+= ${FLAVOR:tu}="" NO_${FLAVOR:tu}="@comment " . endif . endif # defined(${FLAVOR}) EXTRACT_SUFX?= .tar.gz . if defined(USE_LINUX_PREFIX) PREFIX= ${LINUXBASE} DATADIR?= ${PREFIX}/usr/share/${PORTNAME} DOCSDIR?= ${PREFIX}/usr/share/doc/${PORTNAME}-${PORTVERSION} NO_LICENSES_INSTALL= yes NO_MTREE= yes . endif # You can force skipping these test by defining IGNORE_PATH_CHECKS . if !defined(IGNORE_PATH_CHECKS) . if ! ${PREFIX:M/*} .BEGIN: @${ECHO_MSG} "PREFIX must be defined as an absolute path so that when 'make'" @${ECHO_MSG} "is invoked in the work area PREFIX points to the right place." @${FALSE} . endif . endif DATADIR?= ${PREFIX}/share/${PORTNAME} DOCSDIR?= ${PREFIX}/share/doc/${PORTNAME} ETCDIR?= ${PREFIX}/etc/${PORTNAME} EXAMPLESDIR?= ${PREFIX}/share/examples/${PORTNAME} WWWDIR?= ${PREFIX}/www/${PORTNAME} # Owner and group of the WWW user WWWOWN?= www WWWGRP?= www # Keep PKGNG_ORIGIN/WITH_PKGNG for compat with scripts which are looking for it PKG_ORIGIN?= ports-mgmt/pkg PKGNG_ORIGIN= ${PKG_ORIGIN} WITH_PKGNG?= yes WITH_PKG?= ${WITH_PKGNG} . endif # End of pre-makefile section. # Start of post-makefile section. . if !defined(BEFOREPORTMK) && !defined(INOPTIONSMK) . if defined(_POSTMKINCLUDED) DEV_ERROR+= "${PKGNAME}: Makefile error: you cannot include bsd.port[.post].mk twice" @${FALSE} . endif _POSTMKINCLUDED= yes . if defined(BUNDLE_LIBS) PKG_NOTES+= no_provide_shlib PKG_NOTE_no_provide_shlib= yes . endif . if defined(DEPRECATED) PKG_NOTES+= deprecated PKG_NOTE_deprecated=${DEPRECATED} . endif . if defined(EXPIRATION_DATE) PKG_NOTES+= expiration_date PKG_NOTE_expiration_date= ${EXPIRATION_DATE} . endif . if !empty(FLAVOR) PKG_NOTES+= flavor PKG_NOTE_flavor= ${FLAVOR} . endif TEST_ARGS?= ${MAKE_ARGS} TEST_ENV?= ${MAKE_ENV} PKG_ENV+= PORTSDIR=${PORTSDIR} CONFIGURE_ENV+= XDG_DATA_HOME=${WRKDIR} \ XDG_CONFIG_HOME=${WRKDIR} \ XDG_CACHE_HOME=${WRKDIR}/.cache \ HOME=${WRKDIR} MAKE_ENV+= XDG_DATA_HOME=${WRKDIR} \ XDG_CONFIG_HOME=${WRKDIR} \ XDG_CACHE_HOME=${WRKDIR}/.cache \ HOME=${WRKDIR} # Respect TMPDIR passed via make.conf or similar and pass it down # to configure and make. . if defined(TMPDIR) MAKE_ENV+= TMPDIR="${TMPDIR}" CONFIGURE_ENV+= TMPDIR="${TMPDIR}" . endif # defined(TMPDIR) QA_ENV+= STAGEDIR=${STAGEDIR} \ PREFIX=${PREFIX} \ LINUXBASE=${LINUXBASE} \ LOCALBASE=${LOCALBASE} \ REWARNFILE=${REWARNFILE} \ "STRIP=${STRIP}" \ TMPPLIST=${TMPPLIST} \ CURDIR='${.CURDIR}' \ PKGMESSAGES='${_PKGMESSAGES}' \ FLAVOR=${FLAVOR} \ FLAVORS='${FLAVORS}' \ BUNDLE_LIBS=${BUNDLE_LIBS} \ LDCONFIG_DIR="${LDCONFIG_DIR}" \ PKGORIGIN=${PKGORIGIN} \ LIB_RUN_DEPENDS='${_LIB_RUN_DEPENDS:C,[^:]*:([^:]*):?.*,\1,}' \ UNIFIED_DEPENDS=${_UNIFIED_DEPENDS:C,([^:]*:[^:]*):?.*,\1,:O:u:Q} \ PKGBASE=${PKGBASE} \ LICENSE="${LICENSE}" \ LICENSE_PERMS="${_LICENSE_PERMS}" \ 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 . if !empty(USES:Mdesktop-file-utils) QA_ENV+= USESDESKTOPFILEUTILS=yes . endif . if !empty(USES:Mlibtool*) QA_ENV+= USESLIBTOOL=yes . endif . if !empty(USES:Mshared-mime-info) QA_ENV+= USESSHAREDMIMEINFO=yes . endif . if !empty(USES:Mterminfo) QA_ENV+= USESTERMINFO=yes . endif CO_ENV+= STAGEDIR=${STAGEDIR} \ PREFIX=${PREFIX} \ LOCALBASE=${LOCALBASE} \ WRKDIR=${WRKDIR} \ WRKSRC=${WRKSRC} \ MTREE_FILE=${MTREE_FILE} \ TMPPLIST=${TMPPLIST} \ SCRIPTSDIR=${SCRIPTSDIR} \ PLIST_SUB_SED="${PLIST_SUB_SED}" \ PORT_OPTIONS="${PORT_OPTIONS}" \ PORTSDIR="${PORTSDIR}" . if defined(CROSS_SYSROOT) PKG_ENV+= ABI_FILE=${CROSS_SYSROOT}/bin/sh MAKE_ENV+= NM=${NM} \ STRIPBIN=${STRIPBIN} \ PKG_CONFIG_SYSROOT_DIR="${CROSS_SYSROOT}" CONFIGURE_ENV+= PKG_CONFIG_SYSROOT_DIR="${CROSS_SYSROOT}" . endif . if empty(FLAVOR) _WRKDIR= work . else _WRKDIR= work-${FLAVOR} . endif WRKDIR?= ${WRKDIRPREFIX}${.CURDIR}/${_WRKDIR} BINARY_LINKDIR= ${WRKDIR}/.bin PATH:= ${BINARY_LINKDIR}:${PATH} . if !${MAKE_ENV:MPATH=*} && !${CONFIGURE_ENV:MPATH=*} MAKE_ENV+= PATH=${PATH} CONFIGURE_ENV+= PATH=${PATH} . endif PKGCONFIG_LINKDIR= ${WRKDIR}/.pkgconfig PKGCONFIG_BASEDIR= /usr/libdata/pkgconfig . if !${MAKE_ENV:MPKG_CONFIG_LIBDIR=*} && !${CONFIGURE_ENV:MPKG_CONFIG_LIBDIR=*} MAKE_ENV+= PKG_CONFIG_LIBDIR=${PKGCONFIG_LINKDIR}:${LOCALBASE}/libdata/pkgconfig:${LOCALBASE}/share/pkgconfig:${PKGCONFIG_BASEDIR} CONFIGURE_ENV+= PKG_CONFIG_LIBDIR=${PKGCONFIG_LINKDIR}:${LOCALBASE}/libdata/pkgconfig:${LOCALBASE}/share/pkgconfig:${PKGCONFIG_BASEDIR} . endif . if !defined(IGNORE_MASTER_SITE_GITHUB) && defined(USE_GITHUB) && empty(USE_GITHUB:Mnodefault) . if defined(WRKSRC) DEV_WARNING+= "You are using USE_GITHUB and WRKSRC is set which is wrong. Set GH_PROJECT correctly or set WRKSRC_SUBDIR and remove WRKSRC entirely." . endif WRKSRC?= ${WRKDIR}/${GH_PROJECT_DEFAULT}-${GH_TAGNAME_EXTRACT} . endif . if !default(IGNORE_MASTER_SITE_GITLAB) && defined(USE_GITLAB) && empty(USE_GITLAB:Mnodefault) . if defined(WRKSRC) DEV_WARNING+= "You are using USE_GITLAB and WRKSRC is set which is wrong. Set GL_PROJECT, GL_ACCOUNT correctly, and/or set WRKSRC_SUBDIR and remove WRKSRC entirely." . endif WRKSRC?= ${WRKDIR}/${GL_PROJECT}-${GL_COMMIT} . endif # If the distname is not extracting into a specific subdirectory, have the # ports framework force extract into a subdirectory so that metadata files # do not get in the way of the build, and vice-versa. . if defined(NO_WRKSUBDIR) # Some ports have DISTNAME=PORTNAME, and USE_RC_SUBR=PORTNAME, in those case, # the rc file will conflict with WRKSRC, as WRKSRC is artificial, make it the # most unlikely to conflict as we can. WRKSRC?= ${WRKDIR}/${PKGNAME} EXTRACT_WRKDIR:= ${WRKSRC} . else WRKSRC?= ${WRKDIR}/${DISTNAME} EXTRACT_WRKDIR:= ${WRKDIR} . endif . if defined(WRKSRC_SUBDIR) WRKSRC:= ${WRKSRC}/${WRKSRC_SUBDIR} . endif . if defined(CONFIGURE_OUTSOURCE) CONFIGURE_CMD?= ${WRKSRC}/${CONFIGURE_SCRIPT} CONFIGURE_WRKSRC?= ${WRKDIR}/.build BUILD_WRKSRC?= ${CONFIGURE_WRKSRC} INSTALL_WRKSRC?= ${CONFIGURE_WRKSRC} TEST_WRKSRC?= ${CONFIGURE_WRKSRC} . endif PATCH_WRKSRC?= ${WRKSRC} CONFIGURE_WRKSRC?= ${WRKSRC} BUILD_WRKSRC?= ${WRKSRC} INSTALL_WRKSRC?=${WRKSRC} TEST_WRKSRC?= ${WRKSRC} PLIST_SUB+= OSREL=${OSREL} PREFIX=%D LOCALBASE=${LOCALBASE} \ RESETPREFIX=${PREFIX} SUB_LIST+= PREFIX=${PREFIX} LOCALBASE=${LOCALBASE} \ DATADIR=${DATADIR} DOCSDIR=${DOCSDIR} EXAMPLESDIR=${EXAMPLESDIR} \ WWWDIR=${WWWDIR} ETCDIR=${ETCDIR} # This is used for check-stagedir.sh and check_leftover.sh to replace # directories/files with PLIST_SUB %%KEYS%%. # Remove VARS which values are PLIST_SUB_SED_MIN long or shorter PLIST_SUB_SED_MIN?= 2 PLIST_SUB_SED_tmp1= ${PLIST_SUB:C/.*=.{1,${PLIST_SUB_SED_MIN}}$//g} # Remove VARS that are too generic # Remove empty values # Remove @comment values PLIST_SUB_SED_tmp2= ${PLIST_SUB_SED_tmp1:NEXTRACT_SUFX=*:NOSREL=*:NLIB32DIR=*:NPREFIX=*:NLOCALBASE=*:NRESETPREFIX=*:N*="":N*="@comment*} # Handle VARS for which there is a _regex entry PLIST_SUB_SED_tmp3?= ${PLIST_SUB_SED_tmp2:C/(${PLIST_SUB:M*_regex=*:C/_regex=.*/=.*/:Q:S/\\ /|/g:S/\\//g})//:C/(.*)_regex=(.*)/\1=\2/} # Remove quotes # Replace . with \. for later sed(1) usage PLIST_SUB_SED?= ${PLIST_SUB_SED_tmp3:C/([^=]*)="?([^"]*)"?/s!\2!%%\1%%!g;/g:C/\./[.]/g} # kludge to strip trailing whitespace from CFLAGS; # sub-configure will not # survive double space CFLAGS:= ${CFLAGS:C/ $//} . if defined(WITHOUT_CPU_CFLAGS) . if defined(_CPUCFLAGS) . if !empty(_CPUCFLAGS) CFLAGS:= ${CFLAGS:C/${_CPUCFLAGS}//} . endif . endif . endif . for f in ${_LIST_OF_WITH_FEATURES} . if defined(WITH_${f:tu}) || ( ${_DEFAULT_WITH_FEATURES:M${f}} && !defined(WITHOUT_${f:tu}) ) .include "${PORTSDIR}/Mk/Features/$f.mk" . endif . endfor # We will control debug files. Don't let builds that use /usr/share/mk # split out debug symbols since the plist won't know to expect it. MAKE_ENV+= MK_DEBUG_FILES=no MAKE_ENV+= MK_KERNEL_SYMBOLS=no CONFIGURE_SHELL?= ${SH} MAKE_SHELL?= ${SH} CONFIGURE_ENV+= SHELL=${CONFIGURE_SHELL} CONFIG_SHELL=${CONFIGURE_SHELL} MAKE_ENV+= SHELL=${MAKE_SHELL} NO_LINT=YES . if defined(PATCHFILES) && ${PATCHFILES:M*.zip} PATCH_DEPENDS+= ${LOCALBASE}/bin/unzip:archivers/unzip . endif # Check the compatibility layer for amd64 . if ${ARCH} == "amd64" . if exists(/usr/lib32) HAVE_COMPAT_IA32_LIBS?= YES . endif . if !defined(HAVE_COMPAT_IA32_KERN) HAVE_COMPAT_IA32_KERN!= if ${SYSCTL} -n compat.ia32.maxvmem >/dev/null 2>&1; then echo YES; fi; echo . if empty(HAVE_COMPAT_IA32_KERN) .undef HAVE_COMPAT_IA32_KERN . endif . endif . endif _EXPORTED_VARS+= HAVE_COMPAT_IA32_KERN . if defined(IA32_BINARY_PORT) && ${ARCH} != "i386" . if ${ARCH} == "amd64" . if !defined(HAVE_COMPAT_IA32_KERN) IGNORE= requires a kernel with compiled-in IA32 compatibility . elif !defined(HAVE_COMPAT_IA32_LIBS) IGNORE= requires 32-bit libraries installed under /usr/lib32 . endif _LDCONFIG_FLAGS=-32 LIB32DIR= lib32 . else IGNORE= requires i386 (or compatible) platform to run . endif . else LIB32DIR= lib . endif PLIST_SUB+= LIB32DIR=${LIB32DIR} . if ${WITH_PKG} == devel PKG_ORIGIN= ports-mgmt/pkg-devel . endif . if !defined(PKG_DEPENDS) && !defined(CLEAN_FETCH_ENV) PKG_DEPENDS+= ${LOCALBASE}/sbin/pkg:${PKG_ORIGIN} . endif . if defined(USE_GCC) .include "${PORTSDIR}/Mk/bsd.gcc.mk" . endif . if defined(LLD_UNSAFE) && ${/usr/bin/ld:L:tA} == /usr/bin/ld.lld LDFLAGS+= -fuse-ld=bfd BINARY_ALIAS+= ld=${LD} . if !defined(USE_BINUTILS) . if exists(/usr/bin/ld.bfd) LD= /usr/bin/ld.bfd CONFIGURE_ENV+= LD=${LD} MAKE_ENV+= LD=${LD} . else USE_BINUTILS= yes . endif . endif . endif . if defined(USE_BINUTILS) && !defined(DISABLE_BINUTILS) BUILD_DEPENDS+= ${LOCALBASE}/bin/as:devel/binutils BINUTILS?= ADDR2LINE AR AS CPPFILT GPROF LD NM OBJCOPY OBJDUMP RANLIB \ READELF SIZE STRINGS BINUTILS_NO_MAKE_ENV?= . for b in ${BINUTILS} ${b}= ${LOCALBASE}/bin/${b:C/PP/++/:tl} . if defined(GNU_CONFIGURE) || defined(BINUTILS_CONFIGURE) CONFIGURE_ENV+= ${b}="${${b}}" . endif . if ${BINUTILS_NO_MAKE_ENV:M${b}} == "" MAKE_ENV+= ${b}="${${b}}" . endif . endfor . endif . if defined(USE_OPENLDAP) || defined(WANT_OPENLDAP_VER) .include "${PORTSDIR}/Mk/bsd.ldap.mk" . endif . if defined(USE_RC_SUBR) SUB_FILES+= ${USE_RC_SUBR} . endif . if defined(USE_LDCONFIG) && ${USE_LDCONFIG:tl} == "yes" USE_LDCONFIG= ${PREFIX}/lib . endif . if defined(USE_LDCONFIG32) && ${USE_LDCONFIG32:tl} == "yes" IGNORE= has USE_LDCONFIG32 set to yes, which is not correct . endif . if defined(USE_LDCONFIG) || defined(USE_LDCONFIG32) . if defined(USE_LINUX_PREFIX) PLIST_FILES+= "@ldconfig-linux ${LINUXBASE}" . else PLIST_FILES+= "@ldconfig" . endif . endif PKG_IGNORE_DEPENDS?= 'this_port_does_not_exist' . if defined(_DESTDIR_VIA_ENV) MAKE_ENV+= ${DESTDIRNAME}=${STAGEDIR} . else MAKE_ARGS+= ${DESTDIRNAME}=${STAGEDIR} . endif . if defined(NO_PREFIX_RMDIR) CO_ENV+= NO_PREFIX_RMDIR=1 . else CO_ENV+= NO_PREFIX_RMDIR=0 . endif METADIR= ${WRKDIR}/.metadir PKGPREINSTALL?= ${PKGDIR}/pkg-pre-install PKGPOSTINSTALL?= ${PKGDIR}/pkg-post-install PKGPREDEINSTALL?= ${PKGDIR}/pkg-pre-deinstall PKGPOSTDEINSTALL?= ${PKGDIR}/pkg-post-deinstall . if defined(USE_LOCAL_MK) .include "${PORTSDIR}/Mk/bsd.local.mk" . endif . for odir in ${OVERLAYS} .sinclude "${odir}/Mk/bsd.overlay.mk" . endfor . if defined(USE_JAVA) .include "${PORTSDIR}/Mk/bsd.java.mk" . endif . if defined(USE_OCAML) .include "${PORTSDIR}/Mk/bsd.ocaml.mk" . endif . if defined(USE_WX) || defined(USE_WX_NOT) .include "${PORTSDIR}/Mk/bsd.wx.mk" . endif . if defined(USE_GECKO) .include "${PORTSDIR}/Mk/bsd.gecko.mk" . endif . if exists(${PORTSDIR}/Makefile.inc) .include "${PORTSDIR}/Makefile.inc" USE_SUBMAKE= yes . endif # Loading features . for f in ${_USES_POST} _f:= ${f:C/\:.*//} . if !defined(${_f}_ARGS) ${_f}_ARGS:= ${f:C/^[^\:]*(\:|\$)//:S/,/ /g} . endif . endfor . for f in ${_USES_POST} .undef _usefound . for udir in ${OVERLAYS:C,$,/Mk/Uses,} ${USESDIR} _usefile= ${udir}/${f:C/\:.*//}.mk . if exists(${_usefile}) && !defined(_usefound) _usefound= .include "${_usefile}" . endif . endfor . if !defined(_usefound) ERROR+= "Unknown USES=${f:C/\:.*//}" . endif . endfor . if defined(PORTNAME) . if !defined(PACKAGE_BUILDING) || empty(.TARGETS) || make(all) || \ make(check-sanity) || make(show*-errors) || make(show*-warnings) .include "${PORTSDIR}/Mk/bsd.sanity.mk" . endif . endif . if defined(USE_LOCALE) CONFIGURE_ENV+= LANG=${USE_LOCALE} LC_ALL=${USE_LOCALE} MAKE_ENV+= LANG=${USE_LOCALE} LC_ALL=${USE_LOCALE} . endif # Macro for doing in-place file editing using regexps. REINPLACE_ARGS may only # be used to set or override the -i argument. Any other use is considered # invalid. REINPLACE_ARGS?= -i.bak . if defined(DEVELOPER) REINPLACE_CMD?= ${SETENV} WRKSRC=${WRKSRC} REWARNFILE=${REWARNFILE} ${SH} ${SCRIPTSDIR}/sed_checked.sh . else REINPLACE_CMD?= ${SED} ${REINPLACE_ARGS} . endif FRAMEWORK_REINPLACE_CMD?= ${SED} -i.bak # Names of cookies used to skip already completed stages EXTRACT_COOKIE?= ${WRKDIR}/.extract_done.${PORTNAME}.${PREFIX:S/\//_/g} CONFIGURE_COOKIE?= ${WRKDIR}/.configure_done.${PORTNAME}.${PREFIX:S/\//_/g} INSTALL_COOKIE?= ${WRKDIR}/.install_done.${PORTNAME}.${PREFIX:S/\//_/g} BUILD_COOKIE?= ${WRKDIR}/.build_done.${PORTNAME}.${PREFIX:S/\//_/g} PATCH_COOKIE?= ${WRKDIR}/.patch_done.${PORTNAME}.${PREFIX:S/\//_/g} PACKAGE_COOKIE?= ${WRKDIR}/.package_done.${PORTNAME}.${PREFIX:S/\//_/g} STAGE_COOKIE?= ${WRKDIR}/.stage_done.${PORTNAME}.${PREFIX:S/\//_/g} # How to do nothing. Override if you, for some strange reason, would rather # do something. # In general, however, DO_NADA is a relic of the past in the ports # infrastructure, and most of its usage has been removed. If you need to define # a target with DO_NADA, then there is a high chance that the ports # infrastructure should be fixed instead. DO_NADA?= ${TRUE} # Use this as the first operand to always build dependency. NONEXISTENT?= /nonexistent CHECKSUM_ALGORITHMS?= sha256 DISTINFO_FILE?= ${MASTERDIR}/distinfo MAKE_FLAGS?= -f MAKEFILE?= Makefile MAKE_CMD?= ${BSDMAKE} MAKE_ENV+= PREFIX=${PREFIX} \ LOCALBASE=${LOCALBASE} \ CC="${CC}" CFLAGS="${CFLAGS}" \ CPP="${CPP}" CPPFLAGS="${CPPFLAGS}" \ LDFLAGS="${LDFLAGS}" LIBS="${LIBS}" \ CXX="${CXX}" CXXFLAGS="${CXXFLAGS}" \ MANPREFIX="${MANPREFIX}" # Add -fno-strict-aliasing to CFLAGS with optimization level -O2 or higher. # gcc 4.x enable strict aliasing optimization with -O2 which is known to break # a lot of ports. . if !defined(WITHOUT_NO_STRICT_ALIASING) . if ${CC} != "icc" . if empty(CFLAGS:M-fno-strict-aliasing) CFLAGS+= -fno-strict-aliasing . endif . endif . endif . for lang in C CXX . if defined(USE_${lang}STD) ${lang}FLAGS:= ${${lang}FLAGS:N-std=*} -std=${USE_${lang}STD} . endif ${lang}FLAGS+= ${${lang}FLAGS_${ARCH}} . endfor LDFLAGS+= ${LDFLAGS_${ARCH}} # Multiple make jobs support . if defined(DISABLE_MAKE_JOBS) || defined(MAKE_JOBS_UNSAFE) _MAKE_JOBS?= # MAKE_JOBS_NUMBER= 1 . else . if defined(MAKE_JOBS_NUMBER) _MAKE_JOBS_NUMBER:= ${MAKE_JOBS_NUMBER} . else . if !defined(_SMP_CPUS) _SMP_CPUS!= ${SYSCTL} -n kern.smp.cpus . endif _EXPORTED_VARS+= _SMP_CPUS _MAKE_JOBS_NUMBER= ${_SMP_CPUS} . endif . if defined(MAKE_JOBS_NUMBER_LIMIT) && ( ${MAKE_JOBS_NUMBER_LIMIT} < ${_MAKE_JOBS_NUMBER} ) MAKE_JOBS_NUMBER= ${MAKE_JOBS_NUMBER_LIMIT} . else MAKE_JOBS_NUMBER= ${_MAKE_JOBS_NUMBER} . endif _MAKE_JOBS?= -j${MAKE_JOBS_NUMBER} BUILD_FAIL_MESSAGE+= Try to set MAKE_JOBS_UNSAFE=yes and rebuild before reporting the failure to the maintainer. . endif .include "${PORTSDIR}/Mk/bsd.ccache.mk" . if !make(makesum) FETCH_ENV?= SSL_NO_VERIFY_PEER=1 SSL_NO_VERIFY_HOSTNAME=1 . endif FETCH_BINARY?= /usr/bin/fetch FETCH_ARGS?= -Fpr FETCH_REGET?= 1 FETCH_CMD?= ${FETCH_BINARY} ${FETCH_ARGS} . if defined(RANDOMIZE_MASTER_SITES) . if exists(/usr/games/random) RANDOM_CMD?= /usr/games/random . elif exists(/usr/bin/random) RANDOM_CMD?= /usr/bin/random . endif . if defined(RANDOM_CMD) && !empty(RANDOM_CMD) RANDOM_ARGS?= -w -f - _RANDOMIZE_SITES= ${RANDOM_CMD} ${RANDOM_ARGS} . endif . endif TOUCH?= /usr/bin/touch TOUCH_FLAGS?= -f DISTORIG?= .bak.orig PATCH?= /usr/bin/patch PATCH_STRIP?= -p0 PATCH_DIST_STRIP?= -p0 . if defined(PATCH_DEBUG) PATCH_DEBUG_TMP= yes PATCH_ARGS?= --forward -E ${PATCH_STRIP} PATCH_DIST_ARGS?= --suffix ${DISTORIG} --forward -E ${PATCH_DIST_STRIP} . else PATCH_ARGS?= --forward --quiet -E ${PATCH_STRIP} PATCH_DIST_ARGS?= --suffix ${DISTORIG} --forward --quiet -E ${PATCH_DIST_STRIP} . endif . if !defined(QUIET) PATCH_SILENT= PATCH_SILENT=yes . endif . if defined(BATCH) PATCH_ARGS+= --batch PATCH_DIST_ARGS+= --batch . endif # Prevent breakage with VERSION_CONTROL=numbered PATCH_ARGS+= -V simple PATCH_DIST_ARGS+= -V simple . if defined(PATCH_CHECK_ONLY) PATCH_ARGS+= -C PATCH_DIST_ARGS+= -C . endif . if ${PATCH} == "/usr/bin/patch" PATCH_ARGS+= --suffix .orig PATCH_DIST_ARGS+= --suffix .orig . endif TAR?= /usr/bin/tar # EXTRACT_SUFX is defined in .pre.mk section EXTRACT_CMD?= ${TAR} EXTRACT_BEFORE_ARGS?= -xf EXTRACT_AFTER_ARGS?= --no-same-owner --no-same-permissions # Figure out where the local mtree file is . if !defined(MTREE_FILE) && !defined(NO_MTREE) . if ${PREFIX} == /usr MTREE_FILE= /etc/mtree/BSD.usr.dist . else MTREE_FILE= ${PORTSDIR}/Templates/BSD.local.dist . endif . endif MTREE_CMD?= /usr/sbin/mtree MTREE_ARGS?= -U ${MTREE_FOLLOWS_SYMLINKS} -f ${MTREE_FILE} -d -e -p _SHAREMODE?= 0644 # A few aliases for *-install targets INSTALL_PROGRAM= ${INSTALL} ${COPY} ${STRIP} -m ${BINMODE} INSTALL_KLD= ${INSTALL} ${COPY} -m ${BINMODE} INSTALL_LIB= ${INSTALL} ${COPY} ${STRIP} -m ${_SHAREMODE} INSTALL_SCRIPT= ${INSTALL} ${COPY} -m ${BINMODE} INSTALL_DATA= ${INSTALL} ${COPY} -m ${_SHAREMODE} INSTALL_MAN= ${INSTALL} ${COPY} -m ${MANMODE} INSTALL_MACROS= BSD_INSTALL_PROGRAM="${INSTALL_PROGRAM}" \ BSD_INSTALL_LIB="${INSTALL_LIB}" \ BSD_INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ BSD_INSTALL_DATA="${INSTALL_DATA}" \ BSD_INSTALL_MAN="${INSTALL_MAN}" MAKE_ENV+= ${INSTALL_MACROS} SCRIPTS_ENV+= ${INSTALL_MACROS} # Macro for copying entire directory tree with correct permissions # In the -exec shell commands, we add add a . as the first argument, it would # end up being $0 aka the script name, which is not part of $@, so we force it # to be able to use $@ directly. COPYTREE_BIN= ${SH} -c '(${FIND} -Ed $$1 $$3 | ${CPIO} -dumpl $$2 >/dev/null 2>&1) && \ ${FIND} -Ed $$1 $$3 \( -type d -exec ${SH} -c '\''cd '\''$$2'\'' && chmod 755 "$$@"'\'' . {} + \ -o -type f -exec ${SH} -c '\''cd '\''$$2'\'' && chmod ${BINMODE} "$$@"'\'' . {} + \)' COPYTREE_BIN COPYTREE_SHARE= ${SH} -c '(${FIND} -Ed $$1 $$3 | ${CPIO} -dumpl $$2 >/dev/null 2>&1) && \ ${FIND} -Ed $$1 $$3 \( -type d -exec ${SH} -c '\''cd '\''$$2'\'' && chmod 755 "$$@"'\'' . {} + \ -o -type f -exec ${SH} -c '\''cd '\''$$2'\'' && chmod ${_SHAREMODE} "$$@"'\'' . {} + \)' COPYTREE_SHARE # The user can override the NO_PACKAGE by specifying this from # the make command line . if defined(FORCE_PACKAGE) .undef NO_PACKAGE . endif DESCR?= ${PKGDIR}/pkg-descr PLIST?= ${PKGDIR}/pkg-plist PKGHELP?= ${PKGDIR}/pkg-help PKGINSTALL?= ${PKGDIR}/pkg-install PKGDEINSTALL?= ${PKGDIR}/pkg-deinstall PKGMESSAGE?= ${PKGDIR}/pkg-message _PKGMESSAGES+= ${PKGMESSAGE} TMPPLIST?= ${WRKDIR}/.PLIST.mktmp # backward compatibility for users . if defined(_PKG_TRANSITIONING_TO_NEW_EXT) . if defined(PKG_NOCOMPRESS) PKG_SUFX?= .tar . else PKG_SUFX?= .txz . endif PKG_COMPRESSION_FORMAT?= ${PKG_SUFX:S/.//} . else . if defined(PKG_SUFX) PKG_COMPRESSION_FORMAT?= ${PKG_SUFX:S/.//} WARNING+= "PKG_SUFX is defined, it should be replaced with PKG_COMPRESSION_FORMAT" . endif PKG_SUFX= .pkg . endif . if defined(PKG_NOCOMPRESS) PKG_COMPRESSION_FORMAT?= tar . else . if ${OSVERSION} > 1400000 PKG_COMPRESSION_FORMAT?= tzst . else PKG_COMPRESSION_FORMAT?= txz . endif . endif # where pkg(8) stores its data PKG_DBDIR?= /var/db/pkg ALL_TARGET?= all INSTALL_TARGET?= install INSTALL_TARGET+= ${LATE_INSTALL_ARGS} # Integrate with the license auditing framework . if !defined (DISABLE_LICENSES) .include "${PORTSDIR}/Mk/bsd.licenses.mk" . endif # Popular master sites .include "${PORTSDIR}/Mk/bsd.sites.mk" # Empty declaration to avoid "variable MASTER_SITES recursive" error MASTER_SITES?= PATCH_SITES?= _MASTER_SITES_DEFAULT?= _PATCH_SITES_DEFAULT?= # Feed internal _{MASTER,PATCH}_SITES_n where n is a group designation # as per grouping rules (:something) # Organize _{MASTER,PATCH}_SITES_{DEFAULT,[^/:]+} according to grouping # rules (:something) . for _S in ${MASTER_SITES} _S_TEMP= ${_S:S/^${_S:C@/?:[^/:]+$@/@}//:S/^://} . if !empty(_S_TEMP) . for _group in ${_S_TEMP:S/,/ /g} _G_TEMP= ${_group} . if ${_G_TEMP:C/[a-zA-Z0-9_]//g} check-makevars:: @${ECHO_MSG} "The ${_S} MASTER_SITES line has" @${ECHO_MSG} "a group with invalid characters, only use [a-zA-Z0-9_]" @${FALSE} . endif . if ${_G_TEMP} == all || ${_G_TEMP} == ALL || ${_G_TEMP} == default check-makevars:: @${ECHO_MSG} "Makefile error: the words all, ALL and default are reserved and cannot be" @${ECHO_MSG} "used in group definitions. Please fix your MASTER_SITES" @${FALSE} . endif _MASTER_SITES_${_group}+= ${_S:C@^(.*/):[^/:]+$@\1@} . endfor . else _MASTER_SITES_DEFAULT+= ${_S:C@^(.*/):[^/:]+$@\1@} . endif . endfor . for _S in ${PATCH_SITES} _S_TEMP= ${_S:S/^${_S:C@/:[^/:]+$@/@}//:S/^://} . if !empty(_S_TEMP) . for _group in ${_S_TEMP:S/,/ /g} _G_TEMP= ${_group} . if ${_G_TEMP:C/[a-zA-Z0-9_]//g} check-makevars:: @${ECHO_MSG} "The ${_S} PATCH_SITES line has" @${ECHO_MSG} "a group with invalid characters, only use [a-zA-Z0-9_]" @${FALSE} . endif . if ${_G_TEMP} == all || ${_G_TEMP} == ALL || ${_G_TEMP} == default check-makevars:: @${ECHO_MSG} "The words all, ALL and default are reserved and cannot be" @${ECHO_MSG} "used in group definitions. Please fix your PATCH_SITES" @${FALSE} . endif _PATCH_SITES_${_group}+= ${_S:C@^(.*/):[^/:]+$@\1@} . endfor . else _PATCH_SITES_DEFAULT+= ${_S:C@^(.*/):[^/:]+$@\1@} . endif . endfor # Feed internal _{MASTER,PATCH}_SITE_SUBDIR_n where n is a group designation # as per grouping rules (:something) # Organize _{MASTER,PATCH}_SITE_SUBDIR_{DEFAULT,[^/:]+} according to grouping # rules (:something) . for _S in ${MASTER_SITE_SUBDIR} _S_TEMP= ${_S:S/^${_S:C@/:[^/:]+$@/@}//:S/^://} . if !empty(_S_TEMP) . for _group in ${_S_TEMP:S/,/ /g} _G_TEMP= ${_group} . if ${_G_TEMP} == all || ${_G_TEMP} == ALL || ${_G_TEMP} == default check-makevars:: @${ECHO_MSG} "Makefile error: the words all, ALL and default are reserved and cannot be" @${ECHO_MSG} "used in group definitions. Please fix your MASTER_SITE_SUBDIR" @${FALSE} . endif . if defined(_MASTER_SITES_${_group}) _MASTER_SITE_SUBDIR_${_group}+= ${_S:C@^(.*)/:[^/:]+$@\1@} . endif . endfor . else . if defined(_MASTER_SITES_DEFAULT) _MASTER_SITE_SUBDIR_DEFAULT+= ${_S:C@^(.*)/:[^/:]+$@\1@} . endif . endif . endfor . for _S in ${PATCH_SITE_SUBDIR} _S_TEMP= ${_S:S/^${_S:C@/:[^/:]+$@/@}//:S/^://} . if !empty(_S_TEMP) . for _group in ${_S_TEMP:S/,/ /g} _G_TEMP= ${_group} . if ${_G_TEMP} == all || ${_G_TEMP} == ALL || ${_G_TEMP} == default check-makevars:: @${ECHO_MSG} "Makefile error: the words all, ALL and default are reserved and cannot be" @${ECHO_MSG} "used in group definitions. Please fix your PATCH_SITE_SUBDIR" @${FALSE} . endif . if defined(_PATCH_SITES_${_group}) _PATCH_SITE_SUBDIR_${_group}+= ${_S:C@^(.*)/:[^/:]+$@\1@} . endif . endfor . else . if defined(_PATCH_SITES_DEFAULT) _PATCH_SITE_SUBDIR_DEFAULT+= ${_S:C@^(.*)/:[^/:]+$@\1@} . endif . endif . endfor # Substitute subdirectory names # XXX simpler/faster solution but not the best space wise, suggestions please . for _S in ${MASTER_SITES} _S_TEMP= ${_S:S/^${_S:C@/:[^/:]+$@/@}//:S/^://} . if !empty(_S_TEMP) . for _group in ${_S_TEMP:S/,/ /g} . if !defined(_MASTER_SITE_SUBDIR_${_group}) MASTER_SITES_TMP= ${_MASTER_SITES_${_group}:S^%SUBDIR%/^^} . else _S_TEMP_TEMP= ${_MASTER_SITES_${_group}:M*%SUBDIR%/*} . if empty(_S_TEMP_TEMP) MASTER_SITES_TMP= ${_MASTER_SITES_${_group}} . else MASTER_SITES_TMP= . for site in ${_MASTER_SITES_${_group}} _S_TEMP_TEMP= ${site:M*%SUBDIR%/*} . if empty(_S_TEMP_TEMP) MASTER_SITES_TMP+= ${site} . else . for dir in ${_MASTER_SITE_SUBDIR_${_group}} MASTER_SITES_TMP+= ${site:S^%SUBDIR%^\${dir}^} . endfor . endif . endfor . endif . endif _MASTER_SITES_${_group}:= ${MASTER_SITES_TMP} . endfor . endif . endfor . if defined(_MASTER_SITE_SUBDIR_DEFAULT) _S_TEMP= ${_MASTER_SITES_DEFAULT:M*%SUBDIR%/*} . if empty(_S_TEMP) MASTER_SITES_TMP= ${_MASTER_SITES_DEFAULT} . else MASTER_SITES_TMP= . for site in ${_MASTER_SITES_DEFAULT} _S_TEMP_TEMP= ${site:M*%SUBDIR%/*} . if empty(_S_TEMP_TEMP) MASTER_SITES_TMP+= ${site} . else . for dir in ${_MASTER_SITE_SUBDIR_DEFAULT} MASTER_SITES_TMP+= ${site:S^%SUBDIR%^\${dir}^} . endfor . endif . endfor . endif . else MASTER_SITES_TMP= ${_MASTER_SITES_DEFAULT:S^%SUBDIR%/^^} . endif _MASTER_SITES_DEFAULT:= ${MASTER_SITES_TMP} MASTER_SITES_TMP= . for _S in ${PATCH_SITES} _S_TEMP= ${_S:S/^${_S:C@/:[^/:]+$@/@}//:S/^://} . if !empty(_S_TEMP) . for _group in ${_S_TEMP:S/,/ /g} . if !defined(_PATCH_SITE_SUBDIR_${_group}) PATCH_SITES_TMP= ${_PATCH_SITES_${_group}:S^%SUBDIR%/^^} . else _S_TEMP_TEMP= ${_PATCH_SITES_${_group}:M*%SUBDIR%/*} . if empty(_S_TEMP_TEMP) PATCH_SITES_TMP= ${_PATCH_SITES_${_group}} . else PATCH_SITES_TMP= . for site in ${_PATCH_SITES_${_group}} _S_TEMP_TEMP= ${site:M*%SUBDIR%/*} . if empty(_S_TEMP_TEMP) PATCH_SITES_TMP+= ${site} . else . for dir in ${_PATCH_SITE_SUBDIR_${_group}} PATCH_SITES_TMP+= ${site:S^%SUBDIR%^\${dir}^} . endfor . endif . endfor . endif . endif _PATCH_SITES_${_group}:= ${PATCH_SITES_TMP} . endfor . endif . endfor . if defined(_PATCH_SITE_SUBDIR_DEFAULT) _S_TEMP= ${_PATCH_SITES_DEFAULT:M*%SUBDIR%/*} . if empty(_S_TEMP) PATCH_SITES_TMP= ${_PATCH_SITES_DEFAULT} . else PATCH_SITES_TMP= . for site in ${_PATCH_SITES_DEFAULT} _S_TEMP_TEMP= ${site:M*%SUBDIR%/*} . if empty(_S_TEMP_TEMP) PATCH_SITES_TMP+= ${site} . else . for dir in ${_PATCH_SITE_SUBDIR_DEFAULT} PATCH_SITES_TMP+= ${site:S^%SUBDIR%^\${dir}^} . endfor . endif . endfor . endif . else PATCH_SITES_TMP= ${_PATCH_SITES_DEFAULT:S^%SUBDIR%/^^} . endif _PATCH_SITES_DEFAULT:= ${PATCH_SITES_TMP} PATCH_SITES_TMP= # The primary backup site. MASTER_SITE_BACKUP?= \ http://distcache.FreeBSD.org/ports-distfiles/${DIST_SUBDIR}/ MASTER_SITE_BACKUP:= ${MASTER_SITE_BACKUP:S^\${DIST_SUBDIR}/^^} # If the user has MASTER_SITE_FREEBSD set, go to the FreeBSD repository # for everything, but don't search it twice by appending it to the end. . if defined(MASTER_SITE_FREEBSD) _MASTER_SITE_OVERRIDE:= ${MASTER_SITE_BACKUP} _MASTER_SITE_BACKUP:= # empty . else _MASTER_SITE_OVERRIDE= ${MASTER_SITE_OVERRIDE} _MASTER_SITE_BACKUP= ${MASTER_SITE_BACKUP} . endif # Organize DISTFILES, PATCHFILES, _MASTER_SITES_ALL, _PATCH_SITES_ALL # according to grouping rules (:something) DISTFILES?= ${DISTNAME}${EXTRACT_SUFX} _MASTER_SITES_ALL= ${_MASTER_SITES_DEFAULT} _PATCH_SITES_ALL= ${_PATCH_SITES_DEFAULT} _G_TEMP= DEFAULT . for _D in ${DISTFILES} _D_TEMP= ${_D:S/^${_D:C/:[^:]+$//}//} . if !empty(_D_TEMP) . for _group in ${_D_TEMP:S/^://:S/,/ /g} . if !defined(_MASTER_SITES_${_group}) _G_TEMP_TEMP= ${_G_TEMP:M/${_group}/} . if empty(_G_TEMP_TEMP) _G_TEMP+= ${_group} _MASTER_SITES_ALL+= ${_MASTER_SITES_${_group}} . endif . endif . endfor _DISTFILES+= ${_D:C/:[^:]+$//} . else _DISTFILES+= ${_D} . endif . endfor _G_TEMP= DEFAULT . for _P in ${PATCHFILES} _P_TEMP= ${_P:C/:[^-:][^:]*$//} _P_groups= ${_P:S/^${_P:C/:[^:]+$//}//:S/^://} _P_file= ${_P_TEMP:C/:-[^:]+$//} _P_strip= ${_P_TEMP:S/^${_P_TEMP:C/:-[^:]*$//}//:S/^://} . if !empty(_P_groups) . for _group in ${_P_groups:S/,/ /g} . if !defined(_PATCH_SITES_${_group}) _G_TEMP_TEMP= ${_G_TEMP:M/${_group}/} . if empty(_G_TEMP_TEMP) _G_TEMP+= ${_group} _PATCH_SITES_ALL+= ${_PATCH_SITES_${_group}} . endif . endif . endfor . endif _PATCHFILES:= ${_PATCHFILES} ${_P_file} . if empty(_P_strip) _PATCHFILES2:= ${_PATCHFILES2} ${_P_file} . else _PATCHFILES2:= ${_PATCHFILES2} ${_P_file}:${_P_strip} . endif . endfor _P_groups= _P_file= _P_strip= _G_TEMP= _G_TEMP_TEMP= ALLFILES?= ${_DISTFILES} ${_PATCHFILES} # # Sort the master site list according to the patterns in MASTER_SORT # MASTER_SORT?= MASTER_SORT_REGEX?= MASTER_SORT_REGEX+= ${MASTER_SORT:S|.|\\.|g:S|^|://[^/]*|:S|$|/|} MASTER_SORT_AWK= BEGIN { RS = " "; ORS = " "; IGNORECASE = 1 ; gl = "${MASTER_SORT_REGEX:S|\\|\\\\|g}"; } . for srt in ${MASTER_SORT_REGEX} MASTER_SORT_AWK+= /${srt:S|/|\\/|g}/ { good["${srt:S|\\|\\\\|g}"] = good["${srt:S|\\|\\\\|g}"] " " $$0 ; next; } . endfor MASTER_SORT_AWK+= { rest = rest " " $$0; } END { n=split(gl, gla); for(i=1;i<=n;i++) { print good[gla[i]]; } print rest; } # # Hackery to enable simple fetch targets with several dynamic MASTER_SITES # _MASTER_SITES_ENV= _MASTER_SITES_DEFAULT=${_MASTER_SITES_DEFAULT:Q} . for _F in ${DISTFILES} _F_TEMP= ${_F:S/^${_F:C/:[^:]+$//}//:S/^://} . if !empty(_F_TEMP) . for _group in ${_F_TEMP:S/,/ /g} . if defined(_MASTER_SITES_${_group}) _MASTER_SITES_ENV+= _MASTER_SITES_${_group}=${_MASTER_SITES_${_group}:Q} . endif . endfor . endif . endfor _PATCH_SITES_ENV= _PATCH_SITES_DEFAULT=${_PATCH_SITES_DEFAULT:Q} . for _F in ${PATCHFILES} _F_TEMP= ${_F:S/^${_F:C/:[^-:][^:]*$//}//:S/^://} . if !empty(_F_TEMP) . for _group in ${_F_TEMP:S/,/ /g} . if defined(_PATCH_SITES_${_group}) _PATCH_SITES_ENV+= _PATCH_SITES_${_group}=${_PATCH_SITES_${_group}:Q} . endif . endfor . endif . endfor CKSUMFILES= ${ALLFILES} # List of all files, with ${DIST_SUBDIR} in front. Used for checksum. . if defined(DIST_SUBDIR) . if defined(CKSUMFILES) && ${CKSUMFILES}!="" _CKSUMFILES?= ${CKSUMFILES:S/^/${DIST_SUBDIR}\//} . endif . else _CKSUMFILES?= ${CKSUMFILES} . endif # This is what is actually going to be extracted, and is overridable # by user. EXTRACT_ONLY?= ${_DISTFILES} . if !target(maintainer) maintainer: @${ECHO_CMD} "${MAINTAINER}" . endif . if !defined(CATEGORIES) check-categories: @${ECHO_MSG} "${PKGNAME}: Makefile error: CATEGORIES is mandatory." @${FALSE} . else VALID_CATEGORIES+= accessibility afterstep arabic archivers astro audio \ benchmarks biology cad chinese comms converters \ databases deskutils devel dns docs \ editors education elisp emulators enlightenment finance french ftp \ games geography german gnome gnustep graphics \ hamradio haskell hebrew hungarian irc japanese java \ kde ${_KDE_CATEGORIES_SUPPORTED} kld korean \ lang linux lisp \ mail mate math mbone misc multimedia \ net net-im net-mgmt net-p2p net-vpn news \ parallel pear perl5 plan9 polish ports-mgmt portuguese \ print python ruby rubygems russian \ scheme science security shells spanish sysutils \ tcl textproc tk \ ukrainian vietnamese wayland windowmaker www \ x11 x11-clocks x11-drivers x11-fm x11-fonts x11-servers x11-themes \ x11-toolkits x11-wm xfce zope base check-categories: . for cat in ${CATEGORIES} . if empty(VALID_CATEGORIES:M${cat}) @${ECHO_MSG} "${PKGNAME}: Makefile error: category ${cat} not in list of valid categories."; \ ${FALSE}; . endif . endfor . endif PKGREPOSITORYSUBDIR?= All PKGREPOSITORY?= ${PACKAGES}/${PKGREPOSITORYSUBDIR} . if exists(${PACKAGES}) PACKAGES:= ${PACKAGES:S/:/\:/g} _HAVE_PACKAGES= yes PKGFILE?= ${PKGREPOSITORY}/${PKGNAME}${PKG_SUFX} . else PKGFILE?= ${.CURDIR}/${PKGNAME}${PKG_SUFX} . endif WRKDIR_PKGFILE= ${WRKDIR}/pkg/${PKGNAME}${PKG_SUFX} # The "latest version" link -- ${PKGNAME} minus everthing after the last '-' PKGLATESTREPOSITORY?= ${PACKAGES}/Latest PKGBASE?= ${PKGNAMEPREFIX}${PORTNAME}${PKGNAMESUFFIX} PKGLATESTFILE= ${PKGLATESTREPOSITORY}/${PKGBASE}${PKG_SUFX} . if ${PKG_COMPRESSION_FORMAT} == txz PKGOLDLATESTFILE= ${PKGLATESTREPOSITORY}/${PKGBASE}.${PKG_COMPRESSION_FORMAT} # Temporary workaround to be deleted once every supported version of FreeBSD # have a bootstrap which handles the pkg extension. PKGOLDSIGFILE= ${PKGLATESTREPOSITORY}/${PKGBASE}.${PKG_COMPRESSION_FORMAT}.sig . endif CONFIGURE_SCRIPT?= configure CONFIGURE_CMD?= ./${CONFIGURE_SCRIPT} CONFIGURE_TARGET?= ${HOSTARCH}-portbld-${OPSYS:tl}${OSREL} CONFIGURE_TARGET:= ${CONFIGURE_TARGET:S/--build=//} CONFIGURE_LOG?= config.log # A default message to print if do-configure fails. CONFIGURE_FAIL_MESSAGE?= "Please report the problem to ${MAINTAINER} [maintainer] and attach the \"${CONFIGURE_WRKSRC}/${CONFIGURE_LOG}\" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. a ${PKG_INFO} -Ea)." CONFIG_SITE?= ${PORTSDIR}/Templates/config.site . if defined(GNU_CONFIGURE) # Maximum command line length . if !defined(CONFIGURE_MAX_CMD_LEN) CONFIGURE_MAX_CMD_LEN!= ${SYSCTL} -n kern.argmax . endif _EXPORTED_VARS+= CONFIGURE_MAX_CMD_LEN GNU_CONFIGURE_PREFIX?= ${PREFIX} GNU_CONFIGURE_MANPREFIX?= ${MANPREFIX} CONFIGURE_ARGS+= --prefix=${GNU_CONFIGURE_PREFIX} $${_LATE_CONFIGURE_ARGS} . if defined(CROSS_TOOLCHAIN) CROSS_HOST= ${ARCH:S/amd64/x86_64/}-unknown-${OPSYS:tl}${OSREL} CONFIGURE_ARGS+= --host=${CROSS_HOST} . endif CONFIGURE_ENV+= CONFIG_SITE=${CONFIG_SITE} lt_cv_sys_max_cmd_len=${CONFIGURE_MAX_CMD_LEN} HAS_CONFIGURE= yes SET_LATE_CONFIGURE_ARGS= \ _LATE_CONFIGURE_ARGS="" ; \ if [ -z "${CONFIGURE_ARGS:M--localstatedir=*:Q}" ] && \ ${CONFIGURE_CMD} --help 2>&1 | ${GREP} -- --localstatedir > /dev/null; then \ _LATE_CONFIGURE_ARGS="$${_LATE_CONFIGURE_ARGS} --localstatedir=/var" ; \ fi ; \ if [ ! -z "`${CONFIGURE_CMD} --help 2>&1 | ${GREP} -- '--mandir'`" ]; then \ _LATE_CONFIGURE_ARGS="$${_LATE_CONFIGURE_ARGS} --mandir=${GNU_CONFIGURE_MANPREFIX}/man" ; \ fi ; \ if [ ! -z "`${CONFIGURE_CMD} --help 2>&1 | ${GREP} -- '--disable-silent-rules'`" ]; then \ _LATE_CONFIGURE_ARGS="$${_LATE_CONFIGURE_ARGS} --disable-silent-rules" ; \ fi ; \ if [ ! -z "`${CONFIGURE_CMD} --help 2>&1 | ${GREP} -- '--enable-jobserver\[.*\#\]'`" ]; then \ _LATE_CONFIGURE_ARGS="$${_LATE_CONFIGURE_ARGS} --enable-jobserver=${MAKE_JOBS_NUMBER}" ; \ fi ; \ if [ ! -z "`${CONFIGURE_CMD} --help 2>&1 | ${GREP} -- '--infodir'`" ]; then \ _LATE_CONFIGURE_ARGS="$${_LATE_CONFIGURE_ARGS} --infodir=${GNU_CONFIGURE_PREFIX}/${INFO_PATH}/${INFO_SUBDIR}" ; \ fi ; \ if [ -z "`${CONFIGURE_CMD} --version 2>&1 | ${EGREP} -i '(autoconf.*2\.13|Unrecognized option)'`" ]; then \ _LATE_CONFIGURE_ARGS="$${_LATE_CONFIGURE_ARGS} --build=${CONFIGURE_TARGET}" ; \ else \ _LATE_CONFIGURE_ARGS="$${_LATE_CONFIGURE_ARGS} ${CONFIGURE_TARGET}" ; \ fi ; . endif # Passed to most of script invocations SCRIPTS_ENV+= CURDIR=${MASTERDIR} DISTDIR=${DISTDIR} \ WRKDIR=${WRKDIR} WRKSRC=${WRKSRC} PATCHDIR=${PATCHDIR} \ SCRIPTDIR=${SCRIPTDIR} FILESDIR=${FILESDIR} \ PORTSDIR=${PORTSDIR} PREFIX=${PREFIX} LOCALBASE=${LOCALBASE} . if defined(BATCH) SCRIPTS_ENV+= BATCH=yes . endif . if ${PREFIX} == /usr MANPREFIX?= /usr/share . else MANPREFIX?= ${PREFIX} MANDIRS+= ${PREFIX}/share/man . endif MANDIRS+= ${MANPREFIX}/man . for sect in 1 2 3 4 5 6 7 8 9 MAN${sect}PREFIX?= ${MANPREFIX} . endfor MANLPREFIX?= ${MANPREFIX} MANNPREFIX?= ${MANPREFIX} INFO_PATH?= share/info . if defined(INFO) RUN_DEPENDS+= indexinfo:print/indexinfo . for D in ${INFO:H} RD:= ${D} . if ${RD} != "." . if !defined(INFO_SUBDIR) INFO_SUBDIR:= ${RD} . elif ${INFO_SUBDIR} != ${RD} BROKEN= only one subdirectory in INFO is allowed . endif . endif .undef RD . endfor . endif DOCSDIR_REL?= ${DOCSDIR:S,^${PREFIX}/,,} EXAMPLESDIR_REL?= ${EXAMPLESDIR:S,^${PREFIX}/,,} DATADIR_REL?= ${DATADIR:S,^${PREFIX}/,,} WWWDIR_REL?= ${WWWDIR:S,^${PREFIX}/,,} ETCDIR_REL?= ${ETCDIR:S,^${PREFIX}/,,} PLIST_SUB+= DOCSDIR="${DOCSDIR_REL}" \ EXAMPLESDIR="${EXAMPLESDIR_REL}" \ DATADIR="${DATADIR_REL}" \ WWWDIR="${WWWDIR_REL}" \ ETCDIR="${ETCDIR_REL}" DESKTOPDIR?= ${PREFIX}/share/applications .MAIN: all ################################################################ # Many ways to disable a port. # # If we're in BATCH mode and the port is interactive, or we're # in interactive mode and the port is non-interactive, skip all # the important targets. The reason we have two modes is that # one might want to leave a build in BATCH mode running # overnight, then come back in the morning and do _only_ the # interactive ones that required your intervention. # # Ignore ports that can't be resold if building for a CDROM. # # Don't build a port if it's restricted and we don't want to get # into that. # # Don't build a port if it's broken, unless we're running a parallel # build (in case it's fixed). # # Don't build a port if it's forbidden for whatever reason. # # Don't build a port if the system is too old. ################################################################ # Check the machine architectures . if defined(ONLY_FOR_ARCHS) . for __ARCH in ${ONLY_FOR_ARCHS} . if ${ARCH:M${__ARCH}} != "" __ARCH_OK?= 1 . endif . endfor . else __ARCH_OK?= 1 . endif . if defined(NOT_FOR_ARCHS) . for __NARCH in ${NOT_FOR_ARCHS} . if ${ARCH:M${__NARCH}} != "" .undef __ARCH_OK . endif . endfor . endif . if !defined(__ARCH_OK) . if defined(ONLY_FOR_ARCHS) IGNORE= is only for ${ONLY_FOR_ARCHS:O}, . else # defined(NOT_FOR_ARCHS) IGNORE= does not run on ${NOT_FOR_ARCHS:O}, . endif IGNORE+= while you are running ${ARCH} . if defined(ONLY_FOR_ARCHS_REASON_${ARCH}) IGNORE+= (reason: ${ONLY_FOR_ARCHS_REASON_${ARCH}}) . elif defined(ONLY_FOR_ARCHS_REASON) IGNORE+= (reason: ${ONLY_FOR_ARCHS_REASON}) . endif . if defined(NOT_FOR_ARCHS_REASON_${ARCH}) IGNORE+= (reason: ${NOT_FOR_ARCHS_REASON_${ARCH}}) . elif defined(NOT_FOR_ARCHS_REASON) IGNORE+= (reason: ${NOT_FOR_ARCHS_REASON}) . endif . endif # Check the user interaction and legal issues . if !defined(NO_IGNORE) . for v in ${OSREL} ${OSREL:R} . for f in ${FLAVOR} . if defined($f_IGNORE_${OPSYS}_${v}) IGNORE+= "${${f}_IGNORE_${OPSYS}_${v}}" . endif . endfor . endfor . if (defined(IS_INTERACTIVE) && defined(BATCH)) IGNORE= is an interactive port . elif (!defined(IS_INTERACTIVE) && defined(INTERACTIVE)) IGNORE= is not an interactive port . elif (defined(NO_CDROM) && defined(FOR_CDROM)) IGNORE= may not be placed on a CDROM: ${NO_CDROM} . elif (defined(RESTRICTED) && defined(NO_RESTRICTED)) IGNORE= is restricted: ${RESTRICTED} . elif (defined(NO_PACKAGE) && defined(PACKAGE_BUILDING)) IGNORE= may not be packaged: ${NO_PACKAGE} . elif defined(IGNORE_${ARCH}) IGNORE= ${IGNORE_${ARCH}} . elif defined(IGNORE_${OPSYS}_${OSREL:R}_${ARCH}) IGNORE= ${IGNORE_${OPSYS}_${OSREL:R}_${ARCH}} . elif defined(IGNORE_${OPSYS}_${OSREL:R}) IGNORE= ${IGNORE_${OPSYS}_${OSREL:R}} . elif defined(IGNORE_${OPSYS}) IGNORE= ${IGNORE_${OPSYS}} . elif defined(BROKEN) . if !defined(TRYBROKEN) IGNORE= is marked as broken: ${BROKEN} . endif . elif defined(BROKEN_${ARCH}) . if !defined(TRYBROKEN) IGNORE= is marked as broken on ${ARCH}: ${BROKEN_${ARCH}} . endif . elif defined(BROKEN_${OPSYS}_${OSREL:R}_${ARCH}) . if !defined(TRYBROKEN) IGNORE= is marked as broken on ${OPSYS} ${OSREL} ${ARCH}: ${BROKEN_${OPSYS}_${OSREL:R}_${ARCH}} . endif . elif defined(BROKEN_${OPSYS}_${OSREL:R}) . if !defined(TRYBROKEN) IGNORE= is marked as broken on ${OPSYS} ${OSREL}: ${BROKEN_${OPSYS}_${OSREL:R}} . endif . elif defined(BROKEN_${OPSYS}) . if !defined(TRYBROKEN) IGNORE= is marked as broken on ${OPSYS}: ${BROKEN_${OPSYS}} . endif . elif defined(FORBIDDEN) IGNORE= is forbidden: ${FORBIDDEN} . endif # Define the text to be output to LEGAL . if defined(LEGAL_TEXT) LEGAL= ${LEGAL_TEXT} . elif defined(RESTRICTED) LEGAL= ${RESTRICTED} . elif defined(NO_CDROM) LEGAL= ${NO_CDROM} . elif defined(NO_PACKAGE) && ! defined(LEGAL_PACKAGE) LEGAL= ${NO_PACKAGE} . endif . if (defined(MANUAL_PACKAGE_BUILD) && defined(PACKAGE_BUILDING)) IGNORE= has to be built manually: ${MANUAL_PACKAGE_BUILD} clean: @${IGNORECMD} . endif . if defined(IGNORE) . if defined(IGNORE_SILENT) IGNORECMD= ${DO_NADA} . else IGNORECMD= ${ECHO_MSG} "===> ${PKGNAME} "${IGNORE:Q}. | ${FMT_80} ; exit 1 . endif _TARGETS= check-sanity fetch checksum extract patch configure all build \ install reinstall test package stage restage . for target in ${_TARGETS} . if !target(${target}) ${target}: @${IGNORECMD} . if defined(INSTALLS_DEPENDS) @${FALSE} . endif . endif . endfor . endif . endif # !defined(NO_IGNORE) ignorelist: . if defined(IGNORE) || defined(NO_PACKAGE) ignorelist: package-name . endif ignorelist-verbose: . if defined(IGNORE) @${ECHO_CMD} "${PKGNAME}|IGNORE: "${IGNORE:Q} . elif defined(NO_PACKAGE) @${ECHO_CMD} "${PKGNAME}|NO_PACKAGE: "${NO_PACKAGE:Q} . endif ################################################################ # Clean directories for ftp or CDROM. ################################################################ . if !defined(LICENSE) . if defined(RESTRICTED) clean-restricted: delete-distfiles delete-package clean-restricted-list: delete-distfiles-list delete-package-list RESTRICTED_FILES?= ${_DISTFILES} ${_PATCHFILES} . else clean-restricted: clean-restricted-list: . endif . if defined(NO_CDROM) clean-for-cdrom: delete-distfiles delete-package clean-for-cdrom-list: delete-distfiles-list delete-package-list RESTRICTED_FILES?= ${_DISTFILES} ${_PATCHFILES} . else clean-for-cdrom: clean-for-cdrom-list: . endif . endif # !defined(LICENSE) . if defined(ALL_HOOK) all: @cd ${.CURDIR} && ${SETENV} CURDIR=${.CURDIR} DISTNAME=${DISTNAME} \ DISTDIR=${DISTDIR} WRKDIR=${WRKDIR} WRKSRC=${WRKSRC} \ PATCHDIR=${PATCHDIR} SCRIPTDIR=${SCRIPTDIR} \ FILESDIR=${FILESDIR} PORTSDIR=${PORTSDIR} PREFIX=${PREFIX} \ BUILD_DEPENDS="${BUILD_DEPENDS}" RUN_DEPENDS="${RUN_DEPENDS}" \ CONFLICTS="${CONFLICTS}" \ ${ALL_HOOK} . endif . if !target(all) all: stage . endif . if !defined(DEPENDS_TARGET) . if defined(DEPENDS_PRECLEAN) DEPENDS_TARGET= clean DEPENDS_ARGS= NOCLEANDEPENDS=yes . endif . if make(reinstall) DEPENDS_TARGET+= reinstall . else DEPENDS_TARGET+= install . endif . if defined(DEPENDS_CLEAN) DEPENDS_TARGET+= clean DEPENDS_ARGS+= NOCLEANDEPENDS=yes . endif . endif . if defined(USE_GITLAB) && !${USE_GITLAB:Mnodefault} && empty(GL_COMMIT_DEFAULT) check-makevars:: @${ECHO_MSG} "GL_COMMIT is a required 40 character hash for use USE_GITLAB" @${FALSE} . endif ################################################################ # # Do preliminary work to detect if we need to run the config # target or not. # ################################################################ . if ((!defined(OPTIONS_DEFINE) && !defined(OPTIONS_SINGLE) && !defined(OPTIONS_MULTI)) \ && !defined(OPTIONS_GROUP) && !defined(OPTIONS_RADIO) \ || defined(CONFIG_DONE_${PKGBASE:tu}) || \ defined(PACKAGE_BUILDING) || defined(BATCH)) _OPTIONS_OK=yes . endif ################################################################ # The following are used to create easy dummy targets for # disabling some bit of default target behavior you don't want. # They still check to see if the target exists, and if so don't # do anything, since you might want to set this globally for a # group of ports in a Makefile.inc, but still be able to # override from an individual Makefile. ################################################################ # Disable build . if defined(NO_BUILD) && !target(build) build: configure @${TOUCH} ${TOUCH_FLAGS} ${BUILD_COOKIE} . endif # Disable package . if defined(NO_PACKAGE) && !target(package) package: . if !defined(IGNORE_SILENT) @${ECHO_MSG} "===> ${PKGNAME} may not be packaged: "${NO_PACKAGE:Q}. . endif . endif ################################################################ # More standard targets start here. # # These are the body of the build/install framework. If you are # not happy with the default actions, and you can't solve it by # adding pre-* or post-* targets/scripts, override these. ################################################################ . if defined(TRYBROKEN) && defined(BROKEN) buildanyway-message: @${ECHO_MSG} "Trying build of ${PKGNAME} even though it is marked BROKEN." . endif # Warn user about deprecated packages. Advisory only. . if !target(check-deprecated) # Try and keep these messages in sync with the ones in Mk/Scripts/create-manifest.sh check-deprecated: . if ${MAINTAINER} == "ports@FreeBSD.org" @${ECHO_MSG} "===> NOTICE:" @${ECHO_MSG} @${ECHO_MSG} "The ${PORTNAME} port currently does not have a maintainer. As a result, it is" @${ECHO_MSG} "more likely to have unresolved issues, not be up-to-date, or even be removed in" @${ECHO_MSG} "the future. To volunteer to maintain this port, please create an issue at:" @${ECHO_MSG} @${ECHO_MSG} "https://bugs.freebsd.org/bugzilla" @${ECHO_MSG} @${ECHO_MSG} "More information about port maintainership is available at:" @${ECHO_MSG} @${ECHO_MSG} "https://docs.freebsd.org/en/articles/contributing/#ports-contributing" @${ECHO_MSG} . endif . if defined(DEPRECATED) @${ECHO_MSG} "===> NOTICE:" @${ECHO_MSG} @${ECHO_MSG} "This port is deprecated; you may wish to reconsider installing it:" @${ECHO_MSG} @${ECHO_MSG} ${DEPRECATED:Q}. @${ECHO_MSG} . if defined(EXPIRATION_DATE) @${ECHO_MSG} "It is scheduled to be removed on or after ${EXPIRATION_DATE}." @${ECHO_MSG} . endif . endif . endif # Check if the port is listed in the vulnerability database AUDITFILE?= ${PKG_DBDIR}/vuln.xml check-vulnerable: . if !defined(DISABLE_VULNERABILITIES) && !defined(PACKAGE_BUILDING) \ && exists(${AUDITFILE}) @${SETENV} \ dp_ECHO_MSG="${ECHO_MSG}" \ dp_PKG_BIN="${PKG_BIN}" \ dp_PORTNAME="${PORTNAME}" \ dp_PKGNAME="${PKGNAME}" \ dp_SCRIPTSDIR="${SCRIPTSDIR}" \ ${SH} ${SCRIPTSDIR}/check-vulnerable.sh . endif # Quote simply quote all variables, except FETCH_ENV, some ports are creative # with it, and it needs to be quoted twice to pass through the echo/eval in # do-fetch. _DO_FETCH_ENV= \ dp_DISABLE_SIZE='${DISABLE_SIZE}' \ dp_DISTDIR='${_DISTDIR}' \ dp_DISTINFO_FILE='${DISTINFO_FILE}' \ dp_DIST_SUBDIR='${DIST_SUBDIR}' \ dp_ECHO_MSG='${ECHO_MSG}' \ dp_FETCH_AFTER_ARGS='${FETCH_AFTER_ARGS}' \ dp_FETCH_BEFORE_ARGS='${FETCH_BEFORE_ARGS}' \ dp_FETCH_CMD='${FETCH_CMD}' \ dp_FETCH_ENV=${FETCH_ENV:Q} \ dp_FORCE_FETCH_ALL='${FORCE_FETCH_ALL}' \ dp_FORCE_FETCH_LIST='${FORCE_FETCH_LIST}' \ dp_MASTER_SITE_BACKUP='${_MASTER_SITE_BACKUP}' \ dp_MASTER_SITE_OVERRIDE='${_MASTER_SITE_OVERRIDE}' \ dp_MASTER_SORT_AWK='${MASTER_SORT_AWK}' \ dp_NO_CHECKSUM='${NO_CHECKSUM}' \ dp_RANDOMIZE_SITES='${_RANDOMIZE_SITES}' \ dp_SCRIPTSDIR='${SCRIPTSDIR}' \ dp_TARGET='${.TARGET}' . if defined(DEVELOPER) _DO_FETCH_ENV+= dp_DEVELOPER=yes . else _DO_FETCH_ENV+= dp_DEVELOPER= . endif # Fetch . if !target(do-fetch) do-fetch: . if !empty(DISTFILES) @${SETENV} \ ${_DO_FETCH_ENV} ${_MASTER_SITES_ENV} \ dp_SITE_FLAVOR=MASTER \ ${SH} ${SCRIPTSDIR}/do-fetch.sh ${DISTFILES:C/.*/'&'/} . endif . if defined(PATCHFILES) && !empty(PATCHFILES) @${SETENV} \ ${_DO_FETCH_ENV} ${_PATCH_SITES_ENV} \ dp_SITE_FLAVOR=PATCH \ ${SH} ${SCRIPTSDIR}/do-fetch.sh ${PATCHFILES:C/:-p[0-9]//:C/.*/'&'/} . endif . endif # # Prints out a list of files to fetch (useful to do a batch fetch) . if !target(fetch-list) fetch-list: . if !empty(DISTFILES) @${SETENV} \ ${_DO_FETCH_ENV} ${_MASTER_SITES_ENV} \ dp_SITE_FLAVOR=MASTER \ ${SH} ${SCRIPTSDIR}/do-fetch.sh ${DISTFILES:C/.*/'&'/} . endif . if defined(PATCHFILES) && !empty(PATCHFILES) @${SETENV} \ ${_DO_FETCH_ENV} ${_PATCH_SITES_ENV} \ dp_SITE_FLAVOR=PATCH \ ${SH} ${SCRIPTSDIR}/do-fetch.sh ${PATCHFILES:C/:-p[0-9]//:C/.*/'&'/} . endif . endif # Used by fetch-urlall-list and fetch-url-list . if !target(fetch-url-list-int) fetch-url-list-int: . if !empty(DISTFILES) @${SETENV} \ ${_DO_FETCH_ENV} ${_MASTER_SITES_ENV} \ dp_SITE_FLAVOR=MASTER \ ${SH} ${SCRIPTSDIR}/do-fetch.sh ${DISTFILES:C/.*/'&'/} . endif . if defined(PATCHFILES) && !empty(PATCHFILES) @${SETENV} \ ${_DO_FETCH_ENV} ${_PATCH_SITES_ENV} \ dp_SITE_FLAVOR=PATCH \ ${SH} ${SCRIPTSDIR}/do-fetch.sh ${PATCHFILES:C/:-p[0-9]//:C/.*/'&'/} . endif . endif # Prints out all the URL for all the DISTFILES and PATCHFILES. . if !target(fetch-urlall-list) fetch-urlall-list: @cd ${.CURDIR} && ${SETENV} FORCE_FETCH_ALL=yes ${MAKE} fetch-url-list-int . endif # Prints the URL for all the DISTFILES and PATCHFILES that are not here . if !target(fetch-url-list) fetch-url-list: fetch-url-list-int . endif # Extract clean-wrkdir: @${RM} -r ${WRKDIR} . if !target(do-extract) do-extract: ${EXTRACT_WRKDIR} @for file in ${EXTRACT_ONLY}; do \ if ! (cd ${EXTRACT_WRKDIR} && ${EXTRACT_CMD} ${EXTRACT_BEFORE_ARGS} ${_DISTDIR}/$$file ${EXTRACT_AFTER_ARGS});\ then \ ${ECHO_MSG} "===> Failed to extract \"${_DISTDIR}/$$file\"."; \ exit 1; \ fi; \ done @if [ ${UID} = 0 ]; then \ ${CHMOD} -R ug-s ${WRKDIR}; \ ${CHOWN} -R 0:0 ${WRKDIR}; \ fi . endif # Patch . if !target(do-patch) do-patch: @${SETENV} \ dp_BZCAT="${BZCAT}" \ dp_CAT="${CAT}" \ dp_DISTDIR="${_DISTDIR}" \ dp_ECHO_MSG="${ECHO_MSG}" \ dp_EXTRA_PATCHES="${EXTRA_PATCHES}" \ dp_EXTRA_PATCH_TREE="${EXTRA_PATCH_TREE}" \ dp_GZCAT="${GZCAT}" \ dp_OPSYS="${OPSYS}" \ dp_PATCH="${PATCH}" \ dp_PATCHDIR="${PATCHDIR}" \ dp_PATCHFILES="${_PATCHFILES2}" \ dp_PATCH_ARGS=${PATCH_ARGS:Q} \ dp_PATCH_DEBUG_TMP="${PATCH_DEBUG_TMP}" \ dp_PATCH_DIST_ARGS="${PATCH_DIST_ARGS}" \ dp_PATCH_CONTINUE_ON_FAIL=${PATCH_CONTINUE_ON_FAIL:Dyes} \ dp_PATCH_SILENT="${PATCH_SILENT}" \ dp_PATCH_WRKSRC=${PATCH_WRKSRC} \ dp_PKGNAME="${PKGNAME}" \ dp_PKGORIGIN="${PKGORIGIN}" \ dp_SCRIPTSDIR="${SCRIPTSDIR}" \ dp_UNZIP_NATIVE_CMD="${UNZIP_NATIVE_CMD}" \ dp_XZCAT="${XZCAT}" \ ${SH} ${SCRIPTSDIR}/do-patch.sh . endif . if !target(run-autotools-fixup) run-autotools-fixup: # Work around an issue where FreeBSD 10.0 is detected as FreeBSD 1.x. . if !defined(WITHOUT_FBSD10_FIX) -@for f in `${FIND} ${WRKDIR} -type f \( -name config.libpath -o \ -name config.rpath -o -name configure -o -name libtool.m4 -o \ -name ltconfig -o -name libtool -o -name aclocal.m4 -o \ -name acinclude.m4 \)` ; do \ ${SED} -i.fbsd10bak \ -e 's|freebsd1\*)|freebsd1.\*)|g' \ -e 's|freebsd\[12\]\*)|freebsd[12].*)|g' \ -e 's|freebsd\[123\]\*)|freebsd[123].*)|g' \ -e 's|freebsd\[\[12\]\]\*)|freebsd[[12]].*)|g' \ -e 's|freebsd\[\[123\]\]\*)|freebsd[[123]].*)|g' \ $${f} ; \ cmp -s $${f}.fbsd10bak $${f} || \ ${ECHO_MSG} "===> FreeBSD 10 autotools fix applied to $${f}"; \ ${TOUCH} ${TOUCH_FLAGS} -mr $${f}.fbsd10bak $${f} ; \ ${RM} $${f}.fbsd10bak ; \ done . endif . endif # Configure . if !target(do-configure) do-configure: @if [ -f ${SCRIPTDIR}/configure ]; then \ cd ${.CURDIR} && ${SETENV} ${SCRIPTS_ENV} ${SH} \ ${SCRIPTDIR}/configure; \ fi . if defined(GNU_CONFIGURE) @CONFIG_GUESS_DIRS=$$(${FIND} ${WRKDIR} -name config.guess -o -name config.sub \ | ${XARGS} -n 1 ${DIRNAME}); \ for _D in $${CONFIG_GUESS_DIRS}; do \ ${RM} $${_D}/config.guess; \ ${CP} ${TEMPLATES}/config.guess $${_D}/config.guess; \ ${CHMOD} a+rx $${_D}/config.guess; \ ${RM} $${_D}/config.sub; \ ${CP} ${TEMPLATES}/config.sub $${_D}/config.sub; \ ${CHMOD} a+rx $${_D}/config.sub; \ done . endif . if defined(HAS_CONFIGURE) @${MKDIR} ${CONFIGURE_WRKSRC} @(cd ${CONFIGURE_WRKSRC} && \ ${SET_LATE_CONFIGURE_ARGS} \ if ! ${SETENV} CC="${CC}" CPP="${CPP}" CXX="${CXX}" \ CFLAGS="${CFLAGS}" CPPFLAGS="${CPPFLAGS}" CXXFLAGS="${CXXFLAGS}" \ LDFLAGS="${LDFLAGS}" LIBS="${LIBS}" \ INSTALL="/usr/bin/install -c" \ INSTALL_DATA="${INSTALL_DATA}" \ INSTALL_LIB="${INSTALL_LIB}" \ INSTALL_PROGRAM="${INSTALL_PROGRAM}" \ INSTALL_SCRIPT="${INSTALL_SCRIPT}" \ ${CONFIGURE_ENV} ${CONFIGURE_CMD} ${CONFIGURE_ARGS}; then \ ${ECHO_MSG} "===> Script \"${CONFIGURE_SCRIPT}\" failed unexpectedly."; \ (${ECHO_CMD} ${CONFIGURE_FAIL_MESSAGE}) | ${FMT_80} ; \ ${FALSE}; \ fi) . endif . endif # Build DO_MAKE_BUILD?= ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${_MAKE_JOBS} ${MAKE_ARGS:N${DESTDIRNAME}=*} . if !target(do-build) do-build: @(cd ${BUILD_WRKSRC}; if ! ${DO_MAKE_BUILD} ${ALL_TARGET}; then \ if [ -n "${BUILD_FAIL_MESSAGE}" ] ; then \ ${ECHO_MSG} "===> Compilation failed unexpectedly."; \ (${ECHO_CMD} "${BUILD_FAIL_MESSAGE}") | ${FMT_80} ; \ fi; \ ${FALSE}; \ fi) . endif # Check conflicts . if !target(check-conflicts) check-conflicts: check-build-conflicts check-install-conflicts . endif . if !target(check-build-conflicts) check-build-conflicts: . if ( defined(CONFLICTS) || defined(CONFLICTS_BUILD) ) && !defined(DISABLE_CONFLICTS) && !defined(DEFER_CONFLICTS_CHECK) @conflicts_with=$$(${PKG_QUERY} -ge "%n != ${PKGBASE}" "%n-%v" ${CONFLICTS:C/.+/'&'/} ${CONFLICTS_BUILD:C/.+/'&'/} 2>/dev/null || : ; ) ; \ if [ -n "$${conflicts_with}" ]; then \ ${ECHO_MSG}; \ ${ECHO_MSG} "===> ${PKGNAME} conflicts with installed package(s): "; \ for entry in $${conflicts_with}; do \ ${ECHO_MSG} " $${entry}"; \ done; \ ${ECHO_MSG}; \ ${ECHO_MSG} " They will not build together."; \ ${ECHO_MSG} " Please remove them first with pkg delete."; \ exit 1;\ fi . endif . endif . if !target(identify-install-conflicts) CONFLICT_WARNING_WAIT?= 10 identify-install-conflicts: . if ( defined(CONFLICTS) || defined(CONFLICTS_INSTALL) ) && !defined(DISABLE_CONFLICTS) @conflicts_with=$$(${PKG_QUERY} -ge "%n != ${PKGBASE}" "%n-%v" ${CONFLICTS:C/.+/'&'/} ${CONFLICTS_INSTALL:C/.+/'&'/} 2>/dev/null || : ; ) ; \ if [ -n "$${conflicts_with}" ]; then \ ${ECHO_MSG}; \ ${ECHO_MSG} "===> ${PKGNAME} conflicts with installed package(s): "; \ for entry in $${conflicts_with}; do \ ${ECHO_MSG} " $${entry}"; \ done; \ ${ECHO_MSG}; \ ${ECHO_MSG} " They install files into the same place."; \ ${ECHO_MSG} " You may want to stop build with Ctrl + C."; \ sleep ${CONFLICT_WARNING_WAIT}; \ fi . endif . endif . if !target(check-install-conflicts) check-install-conflicts: . if ( defined(CONFLICTS) || defined(CONFLICTS_INSTALL) || ( defined(CONFLICTS_BUILD) && defined(DEFER_CONFLICTS_CHECK) ) ) && !defined(DISABLE_CONFLICTS) . if defined(DEFER_CONFLICTS_CHECK) @conflicts_with=$$(${PKG_QUERY} -ge "%n != ${PKGBASE}" "%n-%v" ${CONFLICTS:C/.+/'&'/} ${CONFLICTS_BUILD:C/.+/'&'/} ${CONFLICTS_INSTALL:C/.+/'&'/} 2>/dev/null || : ; ) ; \ if [ -n "$${conflicts_with}" ]; then \ ${ECHO_MSG}; \ ${ECHO_MSG} "===> ${PKGNAME} conflicts with installed package(s): "; \ for entry in $${conflicts_with}; do \ ${ECHO_MSG} " $${entry}"; \ done; \ ${ECHO_MSG}; \ ${ECHO_MSG} " Please remove them first with pkg delete."; \ exit 1; \ fi . else @conflicts_with=$$(${PKG_QUERY} -ge "%n != ${PKGBASE}" "%n-%v" ${CONFLICTS:C/.+/'&'/} ${CONFLICTS_INSTALL:C/.+/'&'/} 2>/dev/null || : ; ) ; \ if [ -n "$${conflicts_with}" ]; then \ ${ECHO_MSG}; \ ${ECHO_MSG} "===> ${PKGNAME} conflicts with installed package(s): "; \ for entry in $${conflicts_with}; do \ ${ECHO_MSG} " $${entry}"; \ done; \ ${ECHO_MSG}; \ ${ECHO_MSG} " They install files into the same place."; \ ${ECHO_MSG} " Please remove them first with pkg delete."; \ exit 1; \ fi . endif # defined(DEFER_CONFLICTS_CHECK) . endif . endif # Install . if !target(do-install) && !defined(NO_INSTALL) do-install: @(cd ${INSTALL_WRKSRC} && ${SETENV} ${MAKE_ENV} ${FAKEROOT} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} ${INSTALL_TARGET}) . endif # Test . if !target(do-test) && defined(TEST_TARGET) DO_MAKE_TEST?= ${SETENV} ${TEST_ENV} ${MAKE_CMD} ${MAKE_FLAGS} ${MAKEFILE} ${TEST_ARGS:N${DESTDIRNAME}=*} do-test: @(cd ${TEST_WRKSRC}; if ! ${DO_MAKE_TEST} ${TEST_TARGET}; then \ if [ -n "${TEST_FAIL_MESSAGE}" ] ; then \ ${ECHO_MSG} "===> Tests failed unexpectedly."; \ (${ECHO_CMD} "${TEST_FAIL_MESSAGE}") | ${FMT_80} ; \ fi; \ ${FALSE}; \ fi) . endif # Package . if defined(_HAVE_PACKAGES) _EXTRA_PACKAGE_TARGET_DEP+= ${PKGFILE} _PORTS_DIRECTORIES+= ${PKGREPOSITORY} ${PKGFILE}: ${WRKDIR_PKGFILE} ${PKGREPOSITORY} @${LN} -f ${WRKDIR_PKGFILE} ${PKGFILE} 2>/dev/null \ || ${CP} -f ${WRKDIR_PKGFILE} ${PKGFILE} . if ${PKGORIGIN} == "ports-mgmt/pkg" || ${PKGORIGIN} == "ports-mgmt/pkg-devel" _EXTRA_PACKAGE_TARGET_DEP+= ${PKGLATESTREPOSITORY} _PORTS_DIRECTORIES+= ${PKGLATESTREPOSITORY} _EXTRA_PACKAGE_TARGET_DEP+= ${PKGLATESTFILE} ${PKGLATESTFILE}: ${PKGFILE} ${PKGLATESTREPOSITORY} ${INSTALL} -l rs ${PKGFILE} ${PKGLATESTFILE} . if !defined(_PKG_TRANSITIONING_TO_NEW_EXT) && ${PKG_COMPRESSION_FORMAT} == txz _EXTRA_PACKAGE_TARGET_DEP+= ${PKGOLDLATESTFILE} ${PKGOLDSIGFILE} ${PKGOLDLATESTFILE}: ${PKGFILE} ${PKGLATESTREPOSITORY} ${INSTALL} -l rs ${PKGFILE} ${PKGOLDLATESTFILE} # Temporary workaround to be deleted once every supported version of FreeBSD # have a bootstrap which handles the pkg extension. ${PKGOLDSIGFILE}: ${PKGLATESTREPOSITORY} ${INSTALL} -l rs pkg.pkg.sig ${PKGOLDSIGFILE} . endif . endif . endif # from here this will become a loop for subpackages ${WRKDIR_PKGFILE}: ${TMPPLIST} create-manifest ${WRKDIR}/pkg @if ! ${SETENV} ${PKG_ENV} ${PKG_CREATE} ${PKG_CREATE_ARGS} -m ${METADIR} -p ${TMPPLIST} -o ${WRKDIR}/pkg ${PKGNAME}; then \ cd ${.CURDIR} && eval ${MAKE} delete-package >/dev/null; \ exit 1; \ fi # # Temporary will be later dynamically added per subpackages _EXTRA_PACKAGE_TARGET_DEP+= ${WRKDIR_PKGFILE} # This will be the end of the loop . if !target(do-package) PKG_CREATE_ARGS+= -f ${PKG_COMPRESSION_FORMAT} . if defined(PKG_COMPRESSION_LEVEL) PKG_CREATE_ARGS+= -l ${PKG_COMPRESSION_LEVEL} . endif PKG_CREATE_ARGS+= -r ${STAGEDIR} . if defined(PKG_CREATE_VERBOSE) PKG_CREATE_ARGS+= -v . endif do-package: ${_EXTRA_PACKAGE_TARGET_DEP} ${WRKDIR}/pkg . endif . if !target(delete-package) delete-package: @${ECHO_MSG} "===> Deleting package for ${PKGNAME}" # When staging, the package may only be in the workdir if not root @${RM} ${PKGFILE} ${WRKDIR_PKGFILE} 2>/dev/null || : . endif . if !target(delete-package-list) delete-package-list: @${ECHO_CMD} "[ -f ${PKGFILE} ] && (${ECHO_CMD} deleting ${PKGFILE}; ${RM} ${PKGFILE})" . endif # Used by scripts and users to install a package from local repository. # Poudriere -i uses this, please keep. . if !target(install-package) . if defined(FORCE_PKG_REGISTER) _INSTALL_PKG_ARGS= -f . endif . if defined(INSTALLS_DEPENDS) _INSTALL_PKG_ARGS+= -A . endif install-package: @if [ -f "${WRKDIR}/pkg/${PKGNAME}${PKG_SUFX}" ]; then \ _pkgfile="${WRKDIR_PKGFILE}"; \ else \ _pkgfile="${PKGFILE}"; \ fi; \ ${PKG_ADD} ${_INSTALL_PKG_ARGS} $${_pkgfile} . endif # Utility targets follow . if !target(check-already-installed) . if !defined(NO_PKG_REGISTER) && !defined(FORCE_PKG_REGISTER) check-already-installed: @${ECHO_MSG} "===> Checking if ${PKGBASE} is already installed"; \ pkgname=`${PKG_INFO} -q -O ${PKGBASE}`; \ if [ -n "$${pkgname}" ]; then \ v=`${PKG_VERSION} -t $${pkgname} ${PKGNAME}`; \ if [ "$${v}" = "<" ]; then \ ${ECHO_CMD} "===> An older version of ${PKGBASE} is already installed ($${pkgname})"; \ else \ ${ECHO_CMD} "===> ${PKGNAME} is already installed"; \ fi; \ ${ECHO_MSG} " You may wish to \`\`make deinstall'' and install this port again"; \ ${ECHO_MSG} " by \`\`make reinstall'' to upgrade it properly."; \ ${ECHO_MSG} " If you really wish to overwrite the old port of ${PKGBASE}"; \ ${ECHO_MSG} " without deleting it first, set the variable \"FORCE_PKG_REGISTER\""; \ ${ECHO_MSG} " in your environment or the \"make install\" command line."; \ exit 1; \ fi . endif . endif . if !target(check-umask) check-umask: @if [ `${SH} -c umask` != 0022 ]; then \ ${ECHO_MSG} "===> Warning: your umask is \"`${SH} -c umask`"\".; \ ${ECHO_MSG} " If this is not desired, set it to an appropriate value"; \ ${ECHO_MSG} " and install this port again by \`\`make reinstall''."; \ fi . endif # Needed for poudriere wait for at least a year before removing # XXX 2017-04-09 . if !target(install-mtree) install-mtree: . endif . if !target(install-ldconfig-file) install-ldconfig-file: . if defined(USE_LDCONFIG) || defined(USE_LDCONFIG32) . if defined(USE_LDCONFIG) . if !defined(USE_LINUX_PREFIX) . if ${USE_LDCONFIG} != "${LOCALBASE}/lib" && !defined(INSTALL_AS_USER) @${ECHO_MSG} "===> Installing ldconfig configuration file" . if defined(NO_MTREE) || ${PREFIX} != ${LOCALBASE} @${MKDIR} ${STAGEDIR}${LOCALBASE}/${LDCONFIG_DIR} . endif @${ECHO_CMD} ${USE_LDCONFIG} | ${TR} ' ' '\n' \ > ${STAGEDIR}${LOCALBASE}/${LDCONFIG_DIR}/${PKGBASE} @${ECHO_CMD} ${LOCALBASE}/${LDCONFIG_DIR}/${PKGBASE} >> ${TMPPLIST} . if ${PREFIX} != ${LOCALBASE} @${ECHO_CMD} "@dir ${LOCALBASE}/${LDCONFIG_DIR}" >> ${TMPPLIST} . endif . endif . endif . endif . if defined(USE_LDCONFIG32) . if !defined(INSTALL_AS_USER) @${ECHO_MSG} "===> Installing 32-bit ldconfig configuration file" . if defined(NO_MTREE) || ${PREFIX} != ${LOCALBASE} @${MKDIR} ${STAGEDIR}${LOCALBASE}/${LDCONFIG32_DIR} . endif @${ECHO_CMD} ${USE_LDCONFIG32} | ${TR} ' ' '\n' \ > ${STAGEDIR}${LOCALBASE}/${LDCONFIG32_DIR}/${PKGBASE} @${ECHO_CMD} ${LOCALBASE}/${LDCONFIG32_DIR}/${PKGBASE} >> ${TMPPLIST} . if ${PREFIX} != ${LOCALBASE} @${ECHO_CMD} "@dir ${LOCALBASE}/${LDCONFIG32_DIR}" >> ${TMPPLIST} . endif . endif . endif . endif . endif . if !defined(USE_LINUX_PREFIX) . if !target(fixup-lib-pkgconfig) fixup-lib-pkgconfig: @if [ -d ${STAGEDIR}${PREFIX}/lib/pkgconfig ]; then \ if [ -z "$$(${FIND} ${STAGEDIR}${PREFIX}/lib/pkgconfig -maxdepth 0 -empty)" ]; then \ ${MKDIR} ${STAGEDIR}${PREFIX}/libdata/pkgconfig; \ ${MV} ${STAGEDIR}${PREFIX}/lib/pkgconfig/* ${STAGEDIR}${PREFIX}/libdata/pkgconfig; \ fi; \ ${RMDIR} ${STAGEDIR}${PREFIX}/lib/pkgconfig; \ fi . endif . endif . if !target(create-users-groups) . if defined(GROUPS) || defined(USERS) _UG_INSTALL= ${WRKDIR}/users-groups-install.sh _UG_DEINSTALL= ${WRKDIR}/users-groups-deinstall.sh PKGPREINSTALL+= ${_UG_INSTALL} PKGPOSTDEINSTALL+= ${_UG_DEINSTALL} create-users-groups: @${SETENV} \ dp_ECHO_MSG="${ECHO_MSG}" \ dp_GID_FILES="${GID_FILES}" \ dp_GID_OFFSET="${GID_OFFSET}" \ dp_GROUPS_BLACKLIST="${GROUPS_BLACKLIST}" \ dp_INSTALL="${INSTALL}" \ dp_OPSYS="${OPSYS}" \ dp_OSVERSION="${OSVERSION}" \ dp_PREFIX="${PREFIX}" \ dp_PW="${PW}" \ dp_SCRIPTSDIR="${SCRIPTSDIR}" \ dp_UG_DEINSTALL="${_UG_DEINSTALL}" \ dp_UG_INSTALL="${_UG_INSTALL}" \ dp_UID_FILES="${UID_FILES}" \ dp_UID_OFFSET="${UID_OFFSET}" \ dp_USERS_BLACKLIST="${USERS_BLACKLIST}" \ ${SH} ${SCRIPTSDIR}/do-users-groups.sh "${USERS}" "${GROUPS}" . endif . endif _WWW= ${WWW:[1]} . if !defined(DISABLE_SECURITY_CHECK) . if !target(security-check) security-check: ${TMPPLIST} # Scan PLIST for: # 1. setugid files # 2. accept()/recvfrom() which indicates network listening capability # 3. insecure functions (gets/mktemp/tempnam/[XXX]) # 4. startup scripts, in conjunction with 2. # 5. world-writable files/dirs # # The ${NONEXISTENT} argument of ${READELF} is there so that there are always # at least two file arguments, and forces it to always output the "File: foo" # header lines. # -@${RM} ${WRKDIR}/.PLIST.setuid ${WRKDIR}/.PLIST.writable ${WRKDIR}/.PLIST.readelf; \ ${AWK} -v prefix='${PREFIX}' ' \ match($$0, /^@cwd /) { prefix = substr($$0, RSTART + RLENGTH); if (prefix == "/") prefix=""; next; } \ /^@/ { next; } \ /^\// { print; next; } \ { print prefix "/" $$0; } \ ' ${TMPPLIST} > ${WRKDIR}/.PLIST.flattened; \ ${TR} '\n' '\0' < ${WRKDIR}/.PLIST.flattened \ | ${XARGS} -0 -J % ${FIND} % -prune ! -type l -type f \( -perm -4000 -o -perm -2000 \) \( -perm -0010 -o -perm -0001 \) 2> /dev/null > ${WRKDIR}/.PLIST.setuid; \ ${TR} '\n' '\0' < ${WRKDIR}/.PLIST.flattened \ | ${XARGS} -0 -J % ${FIND} % -prune -perm -0002 \! -type l 2> /dev/null > ${WRKDIR}/.PLIST.writable; \ ${TR} '\n' '\0' < ${WRKDIR}/.PLIST.flattened \ | ${XARGS} -0 -J % ${FIND} % -prune ! -type l -type f -print0 2> /dev/null \ | ${XARGS} -0 ${READELF} -r ${NONEXISTENT} 2> /dev/null > ${WRKDIR}/.PLIST.readelf; \ if \ ! ${AWK} -v audit="$${PORTS_AUDIT}" -f ${SCRIPTSDIR}/security-check.awk \ ${WRKDIR}/.PLIST.flattened ${WRKDIR}/.PLIST.readelf ${WRKDIR}/.PLIST.setuid ${WRKDIR}/.PLIST.writable; \ then \ if [ ! -z "${_WWW}" ]; then \ ${ECHO_MSG}; \ ${ECHO_MSG} " For more information, and contact details about the security"; \ ${ECHO_MSG} " status of this software, see the following webpage: "; \ ${ECHO_MSG} "${_WWW}"; \ fi; \ fi . endif . else # i.e. defined(DISABLE_SECURITY_CHECK) security-check: @${ECHO_MSG} " WARNING: Security check has been disabled." . endif # !defined(DISABLE_SECURITY_CHECK) ################################################################ # Skeleton targets start here # # You shouldn't have to change these. Either add the pre-* or # post-* targets/scripts or redefine the do-* targets. These # targets don't do anything other than checking for cookies and # call the necessary targets/scripts. ################################################################ extract-message: @${ECHO_MSG} "===> Extracting for ${PKGNAME}" patch-message: @${ECHO_MSG} "===> Patching for ${PKGNAME}" configure-message: @${ECHO_MSG} "===> Configuring for ${PKGNAME}" build-message: @${ECHO_MSG} "===> Building for ${PKGNAME}" stage-message: @${ECHO_MSG} "===> Staging for ${PKGNAME}" install-message: @${ECHO_MSG} "===> Installing for ${PKGNAME}" test-message: @${ECHO_MSG} "===> Testing for ${PKGNAME}" package-message: @${ECHO_MSG} "===> Building package for ${PKGNAME}" # Empty pre-* and post-* targets . if exists(${SCRIPTDIR}) . for stage in pre post . for name in pkg check-sanity fetch extract patch configure build stage install package . if !target(${stage}-${name}-script) . if exists(${SCRIPTDIR}/${stage}-${name}) ${stage}-${name}-script: @ cd ${.CURDIR} && ${SETENV} ${SCRIPTS_ENV} ${SH} \ ${SCRIPTDIR}/${.TARGET:S/-script$//} . endif . endif . endfor . endfor . endif . if !target(pretty-print-www-site) pretty-print-www-site: @if [ -n "${_WWW}" ]; then \ ${ECHO_MSG} -n " and/or visit the "; \ ${ECHO_MSG} -n "web site"; \ ${ECHO_MSG} " for further information"; \ fi . endif ################################################################ # Some more targets supplied for users' convenience ################################################################ # Checkpatch # # Special target to verify patches . if !target(checkpatch) checkpatch: @cd ${.CURDIR} && ${MAKE} ${PATCH_SILENT} PATCH_CHECK_ONLY=yes ${_PATCH_DEP} ${_PATCH_REAL_SEQ} . endif # Reinstall # # Special target to re-run install . if !target(reinstall) reinstall: @${RM} ${INSTALL_COOKIE} ${PACKAGE_COOKIE} @cd ${.CURDIR} && DEPENDS_TARGET="${DEPENDS_TARGET}" ${MAKE} deinstall install . endif . if !target(restage) restage: @${RM} -r ${STAGEDIR} ${STAGE_COOKIE} ${INSTALL_COOKIE} ${PACKAGE_COOKIE} @cd ${.CURDIR} && ${MAKE} stage . endif # Deinstall # # Special target to remove installation . if !target(deinstall) deinstall: . if defined(UID) && ${UID} != 0 && !defined(INSTALL_AS_USER) @${ECHO_MSG} "===> Switching to root credentials for '${.TARGET}' target" @cd ${.CURDIR} && \ ${SU_CMD} "${MAKE} ${.TARGET}" @${ECHO_MSG} "===> Returning to user credentials" . else @${ECHO_MSG} "===> Deinstalling for ${PKGBASE}" @if ${PKG_INFO} -e ${PKGBASE}; then \ p=`${PKG_INFO} -q -O ${PKGBASE}`; \ ${ECHO_MSG} "===> Deinstalling $${p}"; \ ${PKG_DELETE} -f ${PKGBASE} ; \ else \ ${ECHO_MSG} "===> ${PKGBASE} not installed, skipping"; \ fi @${RM} ${INSTALL_COOKIE} ${PACKAGE_COOKIE} . endif . endif # Deinstall-all # # Special target to remove installation of all ports of the same origin . if !target(deinstall-all) deinstall-all: . if ${UID} != 0 && !defined(INSTALL_AS_USER) @${ECHO_MSG} "===> Switching to root credentials for '${.TARGET}' target" @cd ${.CURDIR} && \ ${SU_CMD} "${MAKE} ${.TARGET}" @${ECHO_MSG} "===> Returning to user credentials" . else @${ECHO_MSG} "===> Deinstalling for ${PKGORIGIN}" @deinstall_names=`${PKG_INFO} -q -O ${PKGORIGIN}`; \ for oldpkgorigin in $$(${GREP} "|${PKGORIGIN}|" ${PORTSDIR}/MOVED | ${CUT} -f 1 -d '|' | ${SORT} -u); do \ deinstall_names="$${deinstall_names} $$(${PKG_INFO} -q -O $${oldpkgorigin})"; \ done; \ if [ -n "$${deinstall_names}" ]; then \ for d in $${deinstall_names}; do \ ${ECHO_MSG} "===> Deinstalling $${d}"; \ ${PKG_DELETE} -f $${d}; \ done; \ else \ ${ECHO_MSG} "===> ${PKGORIGIN} not installed, skipping"; \ fi; \ ${RM} ${INSTALL_COOKIE} ${PACKAGE_COOKIE} . endif . endif # Cleaning up . if !target(do-clean) do-clean: @if [ -d ${WRKDIR} ]; then \ if [ -w ${WRKDIR} ]; then \ ${RM} -r ${WRKDIR}; \ else \ ${ECHO_MSG} "===> ${WRKDIR} not writable, skipping"; \ fi; \ fi . endif . if !target(clean) pre-clean: clean-msg clean-msg: @${ECHO_MSG} "===> Cleaning for ${PKGNAME}" . if empty(FLAVORS) CLEAN_DEPENDENCIES= . if !defined(NOCLEANDEPENDS) CLEAN_DEPENDENCIES+= limited-clean-depends-noflavor limited-clean-depends-noflavor: @cd ${.CURDIR} && ${MAKE} limited-clean-depends . endif . if target(pre-clean) CLEAN_DEPENDENCIES+= pre-clean-noflavor pre-clean-noflavor: @cd ${.CURDIR} && ${SETENV} ${MAKE} pre-clean . endif CLEAN_DEPENDENCIES+= do-clean-noflavor do-clean-noflavor: @cd ${.CURDIR} && ${SETENV} ${MAKE} do-clean . if target(post-clean) CLEAN_DEPENDENCIES+= post-clean-noflavor post-clean-noflavor: @cd ${.CURDIR} && ${SETENV} ${MAKE} post-clean . endif .ORDER: ${CLEAN_DEPENDENCIES} clean: ${CLEAN_DEPENDENCIES} . endif . if !empty(_FLAVOR) _CLEANFLAVORS= ${_FLAVOR} . else _CLEANFLAVORS= ${FLAVORS} . endif . for _f in ${_CLEANFLAVORS} CLEAN_DEPENDENCIES= . if !defined(NOCLEANDEPENDS) CLEAN_DEPENDENCIES+= limited-clean-depends-${_f} limited-clean-depends-${_f}: @cd ${.CURDIR} && ${SETENV} FLAVOR=${_f} ${MAKE} limited-clean-depends . endif . if target(pre-clean) CLEAN_DEPENDENCIES+= pre-clean-${_f} pre-clean-${_f}: @cd ${.CURDIR} && ${SETENV} FLAVOR=${_f} ${MAKE} pre-clean . endif CLEAN_DEPENDENCIES+= do-clean-${_f} do-clean-${_f}: @cd ${.CURDIR} && ${SETENV} FLAVOR=${_f} ${MAKE} do-clean . if target(post-clean) CLEAN_DEPENDENCIES+= post-clean-${_f} post-clean-${_f}: @cd ${.CURDIR} && ${SETENV} FLAVOR=${_f} ${MAKE} post-clean . endif .ORDER: ${CLEAN_DEPENDENCIES} clean: ${CLEAN_DEPENDENCIES} . endfor . endif . if !target(distclean) distclean: clean @cd ${.CURDIR} && ${MAKE} delete-distfiles RESTRICTED_FILES="${_DISTFILES:Q} ${_PATCHFILES:Q}" . endif . if !target(delete-distfiles) delete-distfiles: @${ECHO_MSG} "===> Deleting distfiles for ${PKGNAME}" @(if [ "X${RESTRICTED_FILES}" != "X" -a -d ${_DISTDIR} ]; then \ cd ${_DISTDIR}; \ for file in ${RESTRICTED_FILES}; do \ ${RM} $${file}; \ dir=$${file%/*}; \ if [ "$${dir}" != "$${file}" ]; then \ ${RMDIR} -p $${dir} >/dev/null 2>&1 || :; \ fi; \ done; \ fi) . if defined(DIST_SUBDIR) -@${RMDIR} ${_DISTDIR} >/dev/null 2>&1 || ${TRUE} . endif . endif . if !target(delete-distfiles-list) delete-distfiles-list: @${ECHO_CMD} "# ${PKGNAME}" @if [ "X${RESTRICTED_FILES}" != "X" ]; then \ for file in ${RESTRICTED_FILES}; do \ ${ECHO_CMD} "[ -f ${_DISTDIR}/$$file ] && (${ECHO_CMD} deleting ${_DISTDIR}/$$file; ${RM} ${_DISTDIR}/$$file)"; \ dir=$${file%/*}; \ if [ "$${dir}" != "$${file}" ]; then \ ${ECHO_CMD} "(cd ${_DISTDIR} && ${RMDIR} -p $${dir} 2>/dev/null)"; \ fi; \ done; \ fi . if defined(DIST_SUBDIR) @${ECHO_CMD} "${RMDIR} ${_DISTDIR} 2>/dev/null || ${TRUE}" . endif . endif # Checksumming utilities # List all algorithms here, all the variables name must begin with dp_ _CHECKSUM_INIT_ENV= \ dp_SHA256=${SHA256} . if !target(makesum) # Some port change the options with OPTIONS_*_FORCE when make(makesum) to be # able to add all distfiles in one go. # For this to work, we need to call the do-fetch script directly here so that # the options consistent when fetching and when makesum'ing. # As we're fetching new distfiles, that are not in the distinfo file, disable # checksum and sizes checks. makesum: check-sanity @cd ${.CURDIR} && ${MAKE} fetch NO_CHECKSUM=yes \ DISABLE_SIZE=yes DISTFILES="${DISTFILES}" \ MASTER_SITES="${MASTER_SITES}" \ MASTER_SITE_SUBDIR="${MASTER_SITE_SUBDIR}" \ PATCH_SITES="${PATCH_SITES}" @${SETENV} \ ${_CHECKSUM_INIT_ENV} \ dp_CHECKSUM_ALGORITHMS='${CHECKSUM_ALGORITHMS:tu}' \ dp_CKSUMFILES='${_CKSUMFILES}' \ dp_DISTDIR='${DISTDIR}' \ dp_DISTINFO_FILE='${DISTINFO_FILE}' \ dp_ECHO_MSG='${ECHO_MSG}' \ dp_SCRIPTSDIR='${SCRIPTSDIR}' \ ${SH} ${SCRIPTSDIR}/makesum.sh ${DISTFILES:C/.*/'&'/} . endif . if !target(checksum) checksum: fetch . if !empty(_CKSUMFILES) && !defined(NO_CHECKSUM) @${SETENV} \ ${_CHECKSUM_INIT_ENV} \ dp_CHECKSUM_ALGORITHMS='${CHECKSUM_ALGORITHMS:tu}' \ dp_CURDIR='${.CURDIR}' \ dp_DISTDIR='${DISTDIR}' \ dp_DISTINFO_FILE='${DISTINFO_FILE}' \ dp_DIST_SUBDIR='${DIST_SUBDIR}' \ dp_ECHO_MSG='${ECHO_MSG}' \ dp_FETCH_REGET='${FETCH_REGET}' \ dp_MAKE='${MAKE}' \ dp_MAKEFLAGS='${.MAKEFLAGS}' \ dp_SCRIPTSDIR='${SCRIPTSDIR}' \ dp_DISABLE_SIZE='${DISABLE_SIZE}' \ dp_NO_CHECKSUM='${NO_CHECKSUM}' \ ${SH} ${SCRIPTSDIR}/checksum.sh ${_CKSUMFILES:C/.*/'&'/} . endif . endif # Some port's archives contains files modes that are a bit too restrictive for # some usage. For example: # BUILD_DEPENDS= ${NONEXISTENT}:foo/bar:configure # When building as a regular user, dependencies are installed/built as root, so # if the archive contains files that have a mode of, say, 600, they will not be # readable by the port requesting the dependency. # This will also fix broken distribution files where directories don't have the # executable bit on. extract-fixup-modes: @${CHMOD} -R u+w,a+rX ${WRKDIR} ################################################################ # The special package-building targets # You probably won't need to touch these ################################################################ # Nobody should want to override this unless PKGNAME is simply bogus. . if !target(package-name) package-name: @${ECHO_CMD} ${PKGNAME} . endif # Build a package but don't check the package cookie . if !target(repackage) repackage: pre-repackage package pre-repackage: @${RM} ${PACKAGE_COOKIE} . endif # Build a package but don't check the cookie for installation, also don't # install package cookie . if !target(package-noinstall) package-noinstall: package . endif ################################################################ # Dependency checking ################################################################ . if !target(depends) depends: pkg-depends extract-depends patch-depends lib-depends fetch-depends build-depends run-depends . for deptype in PKG EXTRACT PATCH FETCH BUILD LIB RUN TEST ${deptype:tl}-depends: . if defined(${deptype}_DEPENDS) && !defined(NO_DEPENDS) @${SETENV} \ dp_RAWDEPENDS="${${deptype}_DEPENDS}" \ dp_DEPTYPE="${deptype}_DEPENDS" \ dp_DEPENDS_TARGET="${DEPENDS_TARGET}" \ dp_DEPENDS_PRECLEAN="${DEPENDS_PRECLEAN}" \ dp_DEPENDS_CLEAN="${DEPENDS_CLEAN}" \ dp_DEPENDS_ARGS="${DEPENDS_ARGS}" \ dp_USE_PACKAGE_DEPENDS="${USE_PACKAGE_DEPENDS}" \ dp_USE_PACKAGE_DEPENDS_ONLY="${USE_PACKAGE_DEPENDS_ONLY}" \ dp_PKG_ADD="${PKG_ADD}" \ dp_PKG_INFO="${PKG_INFO}" \ dp_WRKDIR="${WRKDIR}" \ dp_PKGNAME="${PKGNAME}" \ dp_STRICT_DEPENDS="${STRICT_DEPENDS}" \ dp_LOCALBASE="${LOCALBASE}" \ dp_LIB_DIRS="${LIB_DIRS}" \ dp_SH="${SH}" \ dp_SCRIPTSDIR="${SCRIPTSDIR}" \ PORTSDIR="${PORTSDIR}" \ dp_OVERLAYS="${OVERLAYS}" \ dp_MAKE="${MAKE}" \ dp_MAKEFLAGS='${.MAKEFLAGS}' \ ${SH} ${SCRIPTSDIR}/do-depends.sh . endif . endfor . endif # Dependency lists: both build and runtime, recursive. Print out directory names. _UNIFIED_DEPENDS=${PKG_DEPENDS} ${EXTRACT_DEPENDS} ${PATCH_DEPENDS} ${FETCH_DEPENDS} ${BUILD_DEPENDS} ${LIB_DEPENDS} ${RUN_DEPENDS} ${TEST_DEPENDS} _DEPEND_SPECIALS= ${_UNIFIED_DEPENDS:M*\:*\:*:C,^[^:]*:([^:]*):.*$,\1,} . for d in ${_UNIFIED_DEPENDS:M*\:/*} _PORTSDIR_STR= $${PORTSDIR}/ DEV_WARNING+= "It looks like the ${d} depends line has an absolute port origin, make sure to remove \$${_PORTSDIR_STR} from it." . endfor all-depends-list: @${ALL-DEPENDS-LIST} _FLAVOR_RECURSIVE_SH= \ if [ -z "$${recursive_cmd}" ]; then \ ${ECHO_MSG} "_FLAVOR_RECURSIVE_SH requires recursive_cmd to be set to the recursive make target to run." >&2; \ ${FALSE}; \ fi; \ if [ "$${recursive_dirs-null}" = "null" ]; then \ ${ECHO_MSG} "_FLAVOR_RECURSIVE_SH requires recursive_dirs to be set to the directories to recurse." >&2; \ ${FALSE}; \ fi; \ for dir in $${recursive_dirs}; do \ unset flavor FLAVOR; \ case $${dir} in \ *@*/*) ;; \ *@*) \ flavor=$${dir\#*@}; \ dir=$${dir%@*}; \ ;; \ esac; \ case $$dir in \ /*) ;; \ *) dir=${PORTSDIR}/$$dir ;; \ esac; \ (cd $$dir; ${SETENV} $${flavor:+FLAVOR=$${flavor}} ${MAKE} $${recursive_cmd}); \ done # This script is shared among several dependency list variables. See file for # usage. DEPENDS-LIST= \ ${SETENV} \ PORTSDIR="${PORTSDIR}" \ dp_MAKE="${MAKE}" \ dp_PKGNAME="${PKGNAME}" \ dp_PKG_INFO="${PKG_INFO}" \ dp_SCRIPTSDIR="${SCRIPTSDIR}" \ dp_OVERLAYS="${OVERLAYS}" \ ${SH} ${SCRIPTSDIR}/depends-list.sh \ ${DEPENDS_SHOW_FLAVOR:D-f} ALL-DEPENDS-LIST= ${DEPENDS-LIST} -r ${_UNIFIED_DEPENDS:Q} ALL-DEPENDS-FLAVORS-LIST= ${DEPENDS-LIST} -f -r ${_UNIFIED_DEPENDS:Q} DEINSTALL-DEPENDS-FLAVORS-LIST= ${DEPENDS-LIST} -f -r ${_UNIFIED_DEPENDS:N${PKG_DEPENDS}:Q} MISSING-DEPENDS-LIST= ${DEPENDS-LIST} -m ${_UNIFIED_DEPENDS:Q} BUILD-DEPENDS-LIST= ${DEPENDS-LIST} "${PKG_DEPENDS} ${EXTRACT_DEPENDS} ${PATCH_DEPENDS} ${FETCH_DEPENDS} ${BUILD_DEPENDS} ${LIB_DEPENDS}" RUN-DEPENDS-LIST= ${DEPENDS-LIST} "${LIB_DEPENDS} ${RUN_DEPENDS}" TEST-DEPENDS-LIST= ${DEPENDS-LIST} ${TEST_DEPENDS:Q} CLEAN-DEPENDS-LIST= ${DEPENDS-LIST} -wr ${_UNIFIED_DEPENDS:Q} CLEAN-DEPENDS-LIMITED-LIST= ${DEPENDS-LIST} -w ${_UNIFIED_DEPENDS:Q} . if !target(clean-depends) clean-depends: @for dir in $$(${CLEAN-DEPENDS-LIST}); do \ (cd $$dir; ${MAKE} NOCLEANDEPENDS=yes clean); \ done . endif . if !target(limited-clean-depends) limited-clean-depends: @for dir in $$(${CLEAN-DEPENDS-LIMITED-LIST}); do \ (cd $$dir; ${MAKE} NOCLEANDEPENDS=yes clean); \ done . endif . if !target(deinstall-depends) deinstall-depends: @recursive_cmd="deinstall"; \ recursive_dirs="$$(${DEINSTALL-DEPENDS-FLAVORS-LIST})"; \ ${_FLAVOR_RECURSIVE_SH} . endif . if !target(fetch-specials) fetch-specials: @${ECHO_MSG} "===> Fetching all distfiles required by ${PKGNAME} for building" @recursive_cmd="fetch"; \ recursive_dirs="${_DEPEND_SPECIALS}"; \ ${_FLAVOR_RECURSIVE_SH} . endif . if !target(fetch-recursive) fetch-recursive: @${ECHO_MSG} "===> Fetching all distfiles for ${PKGNAME} and dependencies" @recursive_cmd="fetch"; \ recursive_dirs="${.CURDIR}${FLAVOR:D@${FLAVOR}} $$(${ALL-DEPENDS-FLAVORS-LIST})"; \ ${_FLAVOR_RECURSIVE_SH} . endif . if !target(fetch-recursive-list) fetch-recursive-list: @recursive_cmd="fetch-list"; \ recursive_dirs="${.CURDIR}${FLAVOR:D@${FLAVOR}} $$(${ALL-DEPENDS-FLAVORS-LIST})"; \ ${_FLAVOR_RECURSIVE_SH} . endif # Used by fetch-required and fetch-required list, this script looks # at each of the dependencies. If 3 items are specified in the tuple, # such as foo:graphics/foo:extract, the first item (foo) # is examined. Only if it begins with a / and does not exist on the # file-system will ``make targ'' proceed. # For more usual (dual-item) dependency tuples, the ``make targ'' # proceeds, if the exact package, which the directory WOULD'VE installed, # is not yet installed. # This is the exact behaviour of the old code, and it may need # revisiting. For example, the entire first case seems dubious, and in # the second case we, probably, should be satisfied with _any_ (earlier) # package, with the same origin as that of the dir. # # -mi FETCH_LIST?= for i in $$deps; do \ prog=$${i%%:*}; dir=$${i\#*:}; \ case $$dir in \ /*) ;; \ *) dir=${PORTSDIR}/$$dir ;; \ esac; \ case $$dir in \ *:*) if [ $$prog != $${prog\#/} -o ! -e $$prog ]; then \ dir=$${dir%%:*}; \ else \ continue; \ fi;; \ *) if [ -d ${PKG_DBDIR}/$$(cd $$dir; ${MAKE} -V PKGNAME) ]; then \ continue; \ fi;; \ esac; \ echo cd $$dir; cd $$dir; ${MAKE} $$targ; \ done . if !target(fetch-required) fetch-required: fetch . if defined(NO_DEPENDS) @${ECHO_MSG} "===> NO_DEPENDS is set, not fetching any other distfiles for ${PKGNAME}" . else @${ECHO_MSG} "===> Fetching all required distfiles for ${PKGNAME} and dependencies" . for deptype in PKG EXTRACT PATCH FETCH BUILD RUN . if defined(${deptype}_DEPENDS) @targ=fetch; deps="${${deptype}_DEPENDS}"; ${FETCH_LIST} . endif . endfor . endif . endif . if !target(fetch-required-list) fetch-required-list: fetch-list . if !defined(NO_DEPENDS) . for deptype in PKG EXTRACT PATCH FETCH BUILD RUN . if defined(${deptype}_DEPENDS) @targ=fetch-list; deps="${${deptype}_DEPENDS}"; ${FETCH_LIST} . endif . endfor . endif . endif . if !target(checksum-recursive) checksum-recursive: @${ECHO_MSG} "===> Fetching and checking checksums for ${PKGNAME} and dependencies" @recursive_cmd="checksum"; \ recursive_dirs="${.CURDIR}${FLAVOR:D@${FLAVOR}} $$(${ALL-DEPENDS-FLAVORS-LIST})"; \ ${_FLAVOR_RECURSIVE_SH} . endif # Dependency lists: build and runtime. Print out directory names. build-depends-list: . if defined(PKG_DEPENDS) || defined(EXTRACT_DEPENDS) || defined(PATCH_DEPENDS) || defined(FETCH_DEPENDS) || defined(BUILD_DEPENDS) || defined(LIB_DEPENDS) @${BUILD-DEPENDS-LIST} . endif run-depends-list: . if defined(LIB_DEPENDS) || defined(RUN_DEPENDS) @${RUN-DEPENDS-LIST} . endif test-depends-list: . if defined(TEST_DEPENDS) @${TEST-DEPENDS-LIST} . endif # Package (recursive runtime) dependency list. Print out both directory names # and package names. package-depends-list: . if defined(CHILD_DEPENDS) || defined(LIB_DEPENDS) || defined(RUN_DEPENDS) @${PACKAGE-DEPENDS-LIST} . endif _LIB_RUN_DEPENDS= ${LIB_DEPENDS} ${RUN_DEPENDS} PACKAGE-DEPENDS-LIST?= \ if [ "${CHILD_DEPENDS}" ]; then \ installed=$$(${PKG_INFO} -qO ${PKGORIGIN} 2>/dev/null || \ ${TRUE}); \ if [ "$$installed" ]; then \ break; \ fi; \ if [ -z "$$installed" ]; then \ installed="${PKGNAME}"; \ fi; \ for pkgname in $$installed; do \ ${ECHO_CMD} "$$pkgname ${.CURDIR} ${PKGORIGIN}"; \ done; \ fi; \ checked="${PARENT_CHECKED}"; \ for dir in ${_LIB_RUN_DEPENDS:C,[^:]*:([^:]*):?.*,\1,}; do \ unset flavor; \ case $${dir} in \ *@*) \ flavor=$${dir\#*@}; \ dir=$${dir%@*}; \ ;; \ esac; \ case "$$dir" in \ /*) ;; \ *) dir=${PORTSDIR}/$$dir ;; \ esac ; \ dir=$$(${REALPATH} $$dir); \ if [ -d $$dir ]; then \ case $$checked in \ $$dir|$$dir\ *|*\ $$dir|*\ $$dir\ *) continue;; \ esac; \ childout=$$(cd $$dir; ${SETENV} FLAVOR=$${flavor} ${MAKE} CHILD_DEPENDS=yes PARENT_CHECKED="$$checked" package-depends-list); \ set -- $$childout; \ childdir=""; \ while [ $$\# != 0 ]; do \ childdir="$$childdir $$2"; \ ${ECHO_CMD} "$$1 $$2 $$3"; \ shift 3; \ done; \ checked="$$dir $$childdir $$checked"; \ else \ ${ECHO_MSG} "${PKGNAME}: \"$$dir\" non-existent -- dependency list incomplete" >&2; \ fi; \ done ACTUAL-PACKAGE-DEPENDS?= \ depfiles="" ; \ for lib in ${LIB_DEPENDS:C/\:.*//}; do \ depfiles="$$depfiles `${SETENV} LIB_DIRS="${LIB_DIRS}" LOCALBASE="${LOCALBASE}" ${SH} ${SCRIPTSDIR}/find-lib.sh $${lib}`" ; \ done ; \ ${SETENV} PKG_BIN="${PKG_BIN}" ${SH} ${SCRIPTSDIR}/actual-package-depends.sh $${depfiles} ${RUN_DEPENDS:C/(.*)\:.*/"\1"/} PKG_NOTES_ENV?= . for note in ${PKG_NOTES} PKG_NOTES_ENV+= dp_PKG_NOTE_${note}=${PKG_NOTE_${note}:Q} . endfor create-manifest: @${SETENV} \ dp_SCRIPTSDIR='${SCRIPTSDIR}' \ dp_ACTUAL_PACKAGE_DEPENDS='${ACTUAL-PACKAGE-DEPENDS}' \ dp_CATEGORIES='${CATEGORIES:u:S/$/,/}' \ dp_COMMENT=${COMMENT:Q} \ dp_COMPLETE_OPTIONS_LIST='${COMPLETE_OPTIONS_LIST}' \ dp_DEPRECATED=${DEPRECATED:Q} \ dp_DESCR='${DESCR}' \ dp_EXPIRATION_DATE='${EXPIRATION_DATE}' \ dp_GROUPS='${GROUPS:u:S/$/,/}' \ dp_LICENSE='${LICENSE:u:S/$/,/}' \ dp_LICENSE_COMB='${LICENSE_COMB}' \ dp_MAINTAINER='${MAINTAINER}' \ dp_METADIR='${METADIR}' \ dp_NO_ARCH='${NO_ARCH}' \ dp_PKGBASE='${PKGBASE}' \ dp_PKGDEINSTALL='${PKGDEINSTALL}' \ dp_PKGINSTALL='${PKGINSTALL}' \ dp_PKGMESSAGES='${_PKGMESSAGES}' \ dp_PKGORIGIN='${PKGORIGIN}' \ dp_PKGPOSTDEINSTALL='${PKGPOSTDEINSTALL}' \ dp_PKGPOSTINSTALL='${PKGPOSTINSTALL}' \ dp_PKGPREDEINSTALL='${PKGPREDEINSTALL}' \ dp_PKGPREINSTALL='${PKGPREINSTALL}' \ dp_PKGVERSION='${PKGVERSION}' \ dp_PKG_BIN='${PKG_BIN}' \ dp_PKG_IGNORE_DEPENDS='${PKG_IGNORE_DEPENDS}' \ dp_PKG_NOTES='${PKG_NOTES}' \ dp_PORT_OPTIONS='${PORT_OPTIONS}' \ dp_PREFIX='${PREFIX}' \ dp_USERS='${USERS:u:S/$/,/}' \ dp_WWW='${WWW}' \ ${PKG_NOTES_ENV} \ ${SH} ${SCRIPTSDIR}/create-manifest.sh # Print out package names. package-depends: @${PACKAGE-DEPENDS-LIST} | ${AWK} '{print $$1":"$$3}' actual-package-depends: @${ACTUAL-PACKAGE-DEPENDS} # Build packages for port and dependencies package-recursive: package @recursive_cmd="package-noinstall"; \ recursive_dirs="$$(${ALL-DEPENDS-FLAVORS-LIST})"; \ ${_FLAVOR_RECURSIVE_SH} # Show missing dependencies missing: @for dir in $$(${MISSING-DEPENDS-LIST}); do \ echo $${dir#${PORTSDIR}/}; \ done # Show missing dependencies by name missing-packages: @_packages=$$(${PKG_INFO} -aq); \ for dir in $$(${ALL-DEPENDS-LIST}); do \ _p=$$(cd $$dir; ${MAKE} -VPKGNAME); \ if ! $$(${ECHO_CMD} $${_packages} | ${GREP} -q $${_p}); then \ ${ECHO_CMD} $${_p}; \ fi; \ done # Install missing dependencies from package install-missing-packages: @_dirs=$$(${MISSING-DEPENDS-LIST}); \ ${ECHO_CMD} "$${_dirs}" | ${SED} "s%${PORTSDIR}/%%g" | \ ${SU_CMD} "${XARGS} -o ${PKG_BIN} install -A" ################################################################ # Everything after here are internal targets and really # shouldn't be touched by anybody but the release engineers. ################################################################ # This target generates an index entry suitable for aggregation into # a large index. Format is: # # distribution-name|port-path|installation-prefix|comment| \ # description-file|maintainer|categories|extract-depends| \ # patch-depends|fetch-depends|build-depends|run-depends|www site # # If this ever changes, portmgr should contact the portsnap maintainer # first to avoid gratuitous breakage. . if !target(describe) _EXTRACT_DEPENDS=${EXTRACT_DEPENDS:C/^[^ :]+:([^ :@]+)(@[^ :]+)?(:[^ :]+)?/\1/:O:u:C,(^[^/]),${PORTSDIR}/\1,} _PATCH_DEPENDS=${PATCH_DEPENDS:C/^[^ :]+:([^ :@]+)(@[^ :]+)?(:[^ :]+)?/\1/:O:u:C,(^[^/]),${PORTSDIR}/\1,} _FETCH_DEPENDS=${FETCH_DEPENDS:C/^[^ :]+:([^ :@]+)(@[^ :]+)?(:[^ :]+)?/\1/:O:u:C,(^[^/]),${PORTSDIR}/\1,} _LIB_DEPENDS=${LIB_DEPENDS:C/^[^ :]+:([^ :@]+)(@[^ :]+)?(:[^ :]+)?/\1/:O:u:C,(^[^/]),${PORTSDIR}/\1,} _BUILD_DEPENDS=${BUILD_DEPENDS:C/^[^ :]+:([^ :@]+)(@[^ :]+)?(:[^ :]+)?/\1/:O:u:C,(^[^/]),${PORTSDIR}/\1,} ${_LIB_DEPENDS} _RUN_DEPENDS=${RUN_DEPENDS:C/^[^ :]+:([^ :@]+)(@[^ :]+)?(:[^ :]+)?/\1/:O:u:C,(^[^/]),${PORTSDIR}/\1,} ${_LIB_DEPENDS} . if exists(${DESCR}) _DESCR=${DESCR} . else _DESCR=/dev/null . endif . if defined(BUILDING_INDEX) && defined(INDEX_PORTS) INDEX_OUT=${INDEX_TMPDIR}/${INDEXFILE}.desc.aggr . else INDEX_OUT=/dev/stdout . endif . if empty(FLAVORS) || defined(_DESCRIBE_WITH_FLAVOR) describe: @(${ECHO_CMD} "${PKGNAME}|${.CURDIR}|${PREFIX}|"${COMMENT:Q}"|${_DESCR}|${MAINTAINER}|${CATEGORIES}|${_EXTRACT_DEPENDS}|${_PATCH_DEPENDS}|${_FETCH_DEPENDS}|${_BUILD_DEPENDS:O:u}|${_RUN_DEPENDS:O:u}|${_WWW}" >> ${INDEX_OUT}) . else # empty(FLAVORS) describe: ${FLAVORS:S/^/describe-/} . for f in ${FLAVORS} describe-${f}: @cd ${.CURDIR} && ${SETENV} FLAVOR=${f} ${MAKE} -B -D_DESCRIBE_WITH_FLAVOR describe . endfor . endif # empty(FLAVORS) . endif www-site: @${ECHO_CMD} ${_WWW} . if !target(readmes) readmes: readme . endif . if !target(readme) readme: @${RM} ${.CURDIR}/README.html @cd ${.CURDIR} && ${MAKE} ${.CURDIR}/README.html . endif ${.CURDIR}/README.html: @${ECHO_MSG} "===> Creating README.html for ${PKGNAME}" @${SED} -e 's|%%PORT%%|'$$(${ECHO_CMD} ${.CURDIR} | \ ${SED} -e 's|.*/\([^/]*/[^/]*\)$$|\1|')'|g' \ -e 's|%%PKG%%|${PKGNAME}|g' \ -e 's|%%COMMENT%%|'"$$(${ECHO_CMD} ${COMMENT:Q})"'|' \ -e '/%%COMMENT%%/d' \ -e 's|%%DESCR%%|'"$$(${ECHO_CMD} ${DESCR} | \ ${SED} -e 's|${.CURDIR}/||')"'|' \ -e 's|%%EMAIL%%|'"$$(${ECHO_CMD} "${MAINTAINER}" | \ ${SED} -e 's/([^)]*)//;s/.*.*//')"'|g' \ -e 's|%%MAINTAINER%%|${MAINTAINER}|g' \ -e 's|%%WEBSITE%%|'"$$(cd ${.CURDIR} && eval ${MAKE} pretty-print-www-site)"'|' \ -e 's|%%BUILD_DEPENDS%%|'"$$(cd ${.CURDIR} && eval ${MAKE} pretty-print-build-depends-list)"'|' \ -e 's|%%RUN_DEPENDS%%|'"$$(cd ${.CURDIR} && eval ${MAKE} pretty-print-run-depends-list)"'|' \ -e 's|%%TOP%%|'"$$(${ECHO_CMD} ${CATEGORIES} | \ ${SED} -e 's| .*||' -e 's|[^/]*|..|g')"'/..|' \ ${TEMPLATES}/README.port >> ${.TARGET} # The following two targets require an up-to-date INDEX in ${PORTSDIR} _PRETTY_PRINT_DEPENDS_LIST=\ if [ ! -r ${INDEXDIR}/${INDEXFILE} ] ; then \ ${ECHO_MSG} "${.TARGET} requires an INDEX file (${INDEXFILE}). Please run make index or make fetchindex."; \ else \ target=${.TARGET:C/pretty-print-(.*)-depends-list/\1/} ; \ if [ "$$target" = "build" ] ; then fldnum=8 ; else fldnum=9 ; fi; \ ${ECHO_MSG} -n 'This port requires package(s) "' ; \ ${ECHO_MSG} -n `${AWK} -F\| "\\$$1 ~ /^${PKGNAME}/ {print \\$$$${fldnum};}" ${INDEXDIR}/${INDEXFILE}` ; \ ${ECHO_MSG} "\" to $$target."; \ fi; . if !target(pretty-print-build-depends-list) pretty-print-build-depends-list: . if defined(PKG_DEPENDS) || defined(EXTRACT_DEPENDS) || defined(PATCH_DEPENDS) || \ defined(FETCH_DEPENDS) || defined(BUILD_DEPENDS) || defined(LIB_DEPENDS) @${_PRETTY_PRINT_DEPENDS_LIST} . endif . endif . if !target(pretty-print-run-depends-list) pretty-print-run-depends-list: . if defined(RUN_DEPENDS) || defined(LIB_DEPENDS) @${_PRETTY_PRINT_DEPENDS_LIST} . endif . endif _SUB_LIST_TEMP= ${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} . if !target(apply-slist) && defined(SUB_FILES) apply-slist: . for file in ${SUB_FILES} . if !exists(${FILESDIR}/${file}.in) @${ECHO_MSG} "** Missing ${FILESDIR}/${file}.in for ${PKGNAME}."; exit 1 . else @${SED} ${_SUB_LIST_TEMP} -e '/^@comment /d' ${FILESDIR}/${file}.in > ${WRKDIR}/${file} . endif . endfor . for i in pkg-message pkg-install pkg-deinstall pkg-req . if ${SUB_FILES:M${i}*}!="" ${i:S/-//:tu}= ${WRKDIR}/${SUB_FILES:M${i}*} . endif . endfor . endif # Generate packing list. Also tests to make sure all required package # files exist. PLIST_SUB_SANITIZED= ${PLIST_SUB:N*_regex=*} . if !target(generate-plist) generate-plist: ${WRKDIR} @${ECHO_MSG} "===> Generating temporary packing list" @${MKDIR} ${TMPPLIST:H} @if [ ! -f ${DESCR} ]; then ${ECHO_MSG} "** Missing pkg-descr for ${PKGNAME}."; exit 1; fi @>${TMPPLIST} @for file in ${PLIST_FILES}; do \ ${ECHO_CMD} $${file} | ${SED} ${PLIST_SUB_SANITIZED:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} >> ${TMPPLIST}; \ done . if !empty(PLIST) . for f in ${PLIST} @if [ -f "${f}" ]; then \ ${SED} ${PLIST_SUB_SANITIZED:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} ${f} >> ${TMPPLIST}; \ for i in owner group mode; do ${ECHO_CMD} "@$$i"; done >> ${TMPPLIST}; \ fi . endfor . endif . for dir in ${PLIST_DIRS} @${ECHO_CMD} ${dir} | ${SED} ${PLIST_SUB_SANITIZED:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} -e 's,^,@dir ,' >> ${TMPPLIST} . endfor . endif ${TMPPLIST}: @cd ${.CURDIR} && ${MAKE} generate-plist . for _type in EXAMPLES DOCS . if !empty(_REALLY_ALL_POSSIBLE_OPTIONS:M${_type}) . if !target(add-plist-${_type:tl}) . if defined(PORT${_type}) && !empty(PORT_OPTIONS:M${_type}) add-plist-${_type:tl}: . for x in ${PORT${_type}} @if ${ECHO_CMD} "${x}"| ${AWK} '$$1 ~ /(\*|\||\[|\]|\?|\{|\}|\$$)/ { exit 1};'; then \ if [ ! -e ${STAGEDIR}${${_type}DIR}/${x} ]; then \ ${ECHO_CMD} ${${_type}DIR}/${x} >> ${TMPPLIST}; \ fi;fi . endfor @${FIND} -P ${PORT${_type}:S/^/${STAGEDIR}${${_type}DIR}\//} ! -type d 2>/dev/null | \ ${SED} -ne 's,^${STAGEDIR},,p' >> ${TMPPLIST} . endif . endif . endif . endfor . if !target(add-plist-data) . if defined(PORTDATA) add-plist-data: . for x in ${PORTDATA} @if ${ECHO_CMD} "${x}"| ${AWK} '$$1 ~ /(\*|\||\[|\]|\?|\{|\}|\$$)/ { exit 1};'; then \ if [ ! -e ${STAGEDIR}${DATADIR}/${x} ]; then \ ${ECHO_CMD} ${DATADIR}/${x} >> ${TMPPLIST}; \ fi;fi . endfor @${FIND} -P ${PORTDATA:S/^/${STAGEDIR}${DATADIR}\//} ! -type d 2>/dev/null | \ ${SED} -ne 's,^${STAGEDIR},,p' >> ${TMPPLIST} . endif . endif . if !target(add-plist-info) . if defined(INFO) add-plist-info: . for i in ${INFO} @${LS} ${STAGEDIR}${PREFIX}/${INFO_PATH}/$i.info* | ${SED} -e s:${STAGEDIR}:@info\ :g >> ${TMPPLIST} . endfor . endif . endif # If we're installing into a non-standard PREFIX, we need to remove that directory at # deinstall-time . if !target(add-plist-post) . if (${PREFIX} != ${LOCALBASE} && ${PREFIX} != ${LINUXBASE} && \ ${PREFIX} != "/usr" && ${PREFIX} != "/" && !defined(NO_PREFIX_RMDIR)) add-plist-post: @${ECHO_CMD} "@dir ${PREFIX}" >> ${TMPPLIST} . endif . endif . if !target(install-rc-script) . if defined(USE_RC_SUBR) install-rc-script: @${ECHO_MSG} "===> Staging rc.d startup script(s)" @for i in ${USE_RC_SUBR}; do \ _prefix=${PREFIX}; \ [ "${PREFIX}" = "/usr" ] && _prefix="" ; \ ${INSTALL_SCRIPT} ${WRKDIR}/$${i} ${STAGEDIR}$${_prefix}/etc/rc.d/$${i%.sh}; \ ${ECHO_CMD} "@(root,wheel,0755) $${_prefix}/etc/rc.d/$${i%.sh}" >> ${TMPPLIST}; \ done . endif . endif . if !target(check-man) check-man: stage @${ECHO_MSG} "====> Checking man pages (check-man)" @mdirs= ; \ for dir in ${MANDIRS:S/^/${STAGEDIR}/} ; do \ [ -d $$dir ] && mdirs="$$mdirs $$dir" ;\ done ; \ err=0 ; \ for dir in $$mdirs; do \ for f in $$(find $$dir -name "*.gz"); do \ ${ECHO_CMD} "===> Checking $${f##*/}" ; \ gunzip -c $$f | mandoc -Tlint -Werror && continue ; \ err=1 ; \ done ; \ done ; \ exit $$err . endif # Compress all manpage not already compressed which are not hardlinks # Find all manpages which are not compressed and are hardlinks, and only get the list of inodes concerned, for each of them compress the first one found and recreate the hardlinks for the others # Fixes all dead symlinks left by the previous round . if !target(compress-man) compress-man: @${ECHO_MSG} "====> Compressing man pages (compress-man)" @mdirs= ; \ for dir in ${MANDIRS:S/^/${STAGEDIR}/} ; do \ [ -d $$dir ] && mdirs="$$mdirs $$dir" ;\ done ; \ for dir in $$mdirs; do \ ${FIND} $$dir -type f \! -name "*.gz" -links 1 -exec ${GZIP_CMD} {} \; ; \ ${FIND} $$dir -type f \! -name "*.gz" \! -links 1 -exec ${STAT} -f '%i' {} \; | \ ${SORT} -u | while read inode ; do \ unset ref ; \ for f in $$(${FIND} $$dir -type f -inum $${inode} -print); do \ if [ -z $$ref ]; then \ ref=$${f}.gz ; \ ${GZIP_CMD} $${f} ; \ continue ; \ fi ; \ ${RM} $${f} ; \ (cd $${f%/*}; ${LN} -f $${ref##*/} $${f##*/}.gz) ; \ done ; \ done ; \ ${FIND} $$dir -type l \! -name "*.gz" | while read link ; do \ ${LN} -sf $$(readlink $$link).gz $$link.gz ;\ ${RM} $$link ; \ done; \ done . endif . if !target(stage-dir) stage-dir: ${STAGEDIR}${PREFIX} . if !defined(NO_MTREE) @${MTREE_CMD} ${MTREE_ARGS} ${STAGEDIR}${PREFIX} > /dev/null . endif . endif . if !target(makeplist) makeplist: stage @${SETENV} ${CO_ENV} ${SH} ${SCRIPTSDIR}/check-stagedir.sh makeplist . endif . if !target(check-plist) check-plist: stage @${ECHO_MSG} "====> Checking for pkg-plist issues (check-plist)" @${SETENV} ${CO_ENV} ${SH} ${SCRIPTSDIR}/check-stagedir.sh checkplist @${ECHO_MSG} "===> No pkg-plist issues found (check-plist)" . endif . if !target(check-orphans) check-orphans: check-plist . endif . if !target(stage-qa) stage-qa: @${ECHO_MSG} "====> Running Q/A tests (stage-qa)" @${SETENV} ${QA_ENV} ${SH} ${SCRIPTSDIR}/qa.sh . if !defined(DEVELOPER) @${ECHO_MSG} "/!\\ To run stage-qa automatically add DEVELOPER=yes to your environment /!\\" . endif . endif pretty-flavors-package-names: .PHONY . if empty(FLAVORS) @${ECHO_CMD} "no flavor: ${PKGNAME}" . else . for f in ${FLAVORS} @${ECHO_CMD} -n "${f}: " @cd ${.CURDIR} && ${SETENV} FLAVOR=${f} ${MAKE} -B -V PKGNAME . endfor . endif flavors-package-names: .PHONY . if empty(FLAVORS) @${ECHO_CMD} "${PKGNAME}" . else . for f in ${FLAVORS} @cd ${.CURDIR} && ${SETENV} FLAVOR=${f} ${MAKE} -B -V PKGNAME . endfor . endif # Fake installation of package so that user can pkg delete it later. . if !target(fake-pkg) STAGE_ARGS= -i ${STAGEDIR} . if defined(NO_PKG_REGISTER) STAGE_ARGS= -N . endif fake-pkg: . if defined(INSTALLS_DEPENDS) . if !defined(NO_PKG_REGISTER) @${ECHO_MSG} "===> Registering installation for ${PKGNAME} as automatic" . endif @${SETENV} ${PKG_ENV} FORCE_POST="${_FORCE_POST_PATTERNS}" ${PKG_REGISTER} -d ${STAGE_ARGS} -m ${METADIR} -f ${TMPPLIST} . else . if !defined(NO_PKG_REGISTER) @${ECHO_MSG} "===> Registering installation for ${PKGNAME}" . endif @${SETENV} ${PKG_ENV} FORCE_POST="${_FORCE_POST_PATTERNS}" ${PKG_REGISTER} ${STAGE_ARGS} -m ${METADIR} -f ${TMPPLIST} . endif @${RM} -r ${METADIR} . endif # Depend is generally meaningless for arbitrary ports, but if someone wants # one they can override this. This is just to catch people who've gotten into # the habit of typing `make depend all install' as a matter of course. # Same goes for tags . for _t in depend tags . if !target(${_t}) ${_t}: . endif . endfor . if !defined(NOPRECIOUSMAKEVARS) # These won't change, so we can pass them through the environment . for var in ${_EXPORTED_VARS} . if empty(.MAKEFLAGS:M${var}=*) && !empty(${var}) .MAKEFLAGS: ${var}=${${var}:Q} . endif . endfor . endif PORTS_ENV_VARS+= ${_EXPORTED_VARS} . if !target(pre-check-config) pre-check-config: _CHECK_OPTIONS_NAMES= OPTIONS_DEFINE OPTIONS_GROUP OPTIONS_MULTI \ OPTIONS_RADIO OPTIONS_SINGLE _CHECK_OPTIONS_NAMES+= ${OPTIONS_GROUP:S/^/OPTIONS_GROUP_/} _CHECK_OPTIONS_NAMES+= ${OPTIONS_MULTI:S/^/OPTIONS_MULTI_/} _CHECK_OPTIONS_NAMES+= ${OPTIONS_RADIO:S/^/OPTIONS_RADIO_/} _CHECK_OPTIONS_NAMES+= ${OPTIONS_SINGLE:S/^/OPTIONS_SINGLE_/} . for var in ${_CHECK_OPTIONS_NAMES} . if defined(${var}) . for o in ${${var}} . if ${o:C/[-_[:upper:][:digit:]]//g} OPTIONS_BAD_NAMES+= ${o} . endif . endfor . endif . endfor . if defined(OPTIONS_BAD_NAMES) && !empty(OPTIONS_BAD_NAMES) DEV_WARNING+= "These options name have characters outside of [-_A-Z0-9]:" DEV_WARNING+= "${OPTIONS_BAD_NAMES:O:u}" . endif . for single in ${OPTIONS_SINGLE} . for opt in ${OPTIONS_SINGLE_${single}} . if empty(ALL_OPTIONS:M${single}) || !empty(PORT_OPTIONS:M${single}) . if !empty(PORT_OPTIONS:M${opt}) OPTIONS_WRONG_SINGLE_${single}+= ${opt} . if defined(OPTFOUND) OPTIONS_WRONG_SINGLE+= ${single} . else OPTFOUND= true . endif . endif . else # if conditional and if the condition is unchecked, remove opt from the list of # set options PORT_OPTIONS:= ${PORT_OPTIONS:N${opt}} OPTNOCHECK= true . endif . endfor . if !defined(OPTFOUND) && !defined(OPTNOCHECK) OPTIONS_WRONG_SINGLE+= ${single} . endif . undef OPTFOUND . undef OPTNOCHECK . endfor .undef single . for radio in ${OPTIONS_RADIO} . for opt in ${OPTIONS_RADIO_${radio}} . if !empty(PORT_OPTIONS:M${opt}) OPTIONS_WRONG_RADIO_${radio}+= ${opt} . if defined(OPTFOUND) OPTIONS_WRONG_RADIO+= ${radio} . else OPTFOUND= true . endif . endif . endfor . undef OPTFOUND . endfor . for multi in ${OPTIONS_MULTI} . for opt in ${OPTIONS_MULTI_${multi}} . if empty(ALL_OPTIONS:M${multi}) || !empty(PORT_OPTIONS:M${multi}) . if !empty(PORT_OPTIONS:M${opt}) OPTFOUND= true . endif . else # if conditional and if the condition is unchecked, remove opt from the list of # set options PORT_OPTIONS:= ${PORT_OPTIONS:N${opt}} OPTNOCHECK= true . endif . endfor . if !defined(OPTFOUND) && !defined(OPTNOCHECK) OPTIONS_WRONG_MULTI+= ${multi} . endif . undef OPTFOUND . undef OPTNOCHECK . endfor .undef multi . for opt in ${PORT_OPTIONS} . for conflict in ${${opt}_PREVENTS} . if ${PORT_OPTIONS:M${conflict}} . if empty(OPTIONS_WRONG_PREVENTS:M${opt}) OPTIONS_WRONG_PREVENTS+= ${opt} . endif OPTIONS_WRONG_PREVENTS_${opt}+= ${conflict} . endif . endfor . endfor .undef conflict .undef opt . endif #pre-check-config . if !target(_check-config) _check-config: pre-check-config . for multi in ${OPTIONS_WRONG_MULTI} @${ECHO_MSG} "====> You must check at least one option in the ${multi} multi" . endfor . for single in ${OPTIONS_WRONG_SINGLE} @${ECHO_MSG} "====> You must select one and only one option from the ${single} single" . if defined(OPTIONS_WRONG_SINGLE_${single}) @${ECHO_MSG} "=====> Only one of these must be defined: ${OPTIONS_WRONG_SINGLE_${single}}" . else @${ECHO_MSG} "=====> No option was selected (and one must be)" . endif . endfor . for radio in ${OPTIONS_WRONG_RADIO} @${ECHO_MSG} "====> You cannot select multiple options from the ${radio} radio" @${ECHO_MSG} "=====> Only one of these must be defined: ${OPTIONS_WRONG_RADIO_${radio}}" . endfor . if defined(OPTIONS_WRONG_PREVENTS) @${ECHO_MSG} "====> Two or more enabled options conflict with each other" . for prevents in ${OPTIONS_WRONG_PREVENTS} @${ECHO_MSG} "=====> Option ${prevents} conflicts with ${OPTIONS_WRONG_PREVENTS_${prevents}} (select only one)" . if defined(${prevents}_PREVENTS_MSG) @${ECHO_MSG} "======> ${${prevents}_PREVENTS_MSG}" . endif . endfor . endif . if !empty(OPTIONS_WRONG_MULTI) || !empty(OPTIONS_WRONG_SINGLE) || !empty(OPTIONS_WRONG_RADIO) || !empty(OPTIONS_WRONG_PREVENTS) _CHECK_CONFIG_ERROR= true . endif . endif # _check-config . if !target(check-config) check-config: _check-config . if !empty(_CHECK_CONFIG_ERROR) @${FALSE} . endif . endif # check-config . if !target(sanity-config) sanity-config: _check-config . if !empty(_CHECK_CONFIG_ERROR) @echo -n "Config is invalid. Re-edit? [Y/n] "; \ read answer; \ case $$answer in \ [Nn]|[Nn][Oo]) \ exit 0; \ esac; \ cd ${.CURDIR} && ${MAKE} config . endif . endif # sanity-config . if !target(pre-config) pre-config: D4P_ENV= PKGNAME="${PKGNAME}" \ PORT_OPTIONS="${PORT_OPTIONS}" \ ALL_OPTIONS="${ALL_OPTIONS}" \ OPTIONS_MULTI="${OPTIONS_MULTI}" \ OPTIONS_SINGLE="${OPTIONS_SINGLE}" \ OPTIONS_RADIO="${OPTIONS_RADIO}" \ OPTIONS_GROUP="${OPTIONS_GROUP}" \ NEW_OPTIONS="${NEW_OPTIONS}" \ DIALOG4PORTS="${DIALOG4PORTS}" \ PREFIX="${PREFIX}" \ LOCALBASE="${LOCALBASE}" \ PORTSDIR="${PORTSDIR}" \ MAKE="${MAKE}" \ D4PHEIGHT="${D4PHEIGHT}" \ D4PMINHEIGHT="${D4PMINHEIGHT}" \ D4PWIDTH="${D4PWIDTH}" \ D4PFULLSCREEN="${D4PFULLSCREEN}" \ D4PALIGNCENTER="${D4PALIGNCENTER}" \ D4PASCIILINES="${D4PASCIILINES}" . if exists(${PKGHELP}) D4P_ENV+= PKGHELP="${PKGHELP}" . endif . for opt in ${ALL_OPTIONS} D4P_ENV+= ${opt}_DESC=""${${opt}_DESC:Q}"" . endfor . for otype in MULTI GROUP SINGLE RADIO . for m in ${OPTIONS_${otype}} D4P_ENV+= OPTIONS_${otype}_${m}="${OPTIONS_${otype}_${m}}" \ ${m}_DESC=""${${m}_DESC:Q}"" . for opt in ${OPTIONS_${otype}_${m}} D4P_ENV+= ${opt}_DESC=""${${opt}_DESC:Q}"" . endfor . endfor . endfor .undef m .undef otype .undef opt . endif # pre-config . if !target(do-config) do-config: . if empty(ALL_OPTIONS) && empty(OPTIONS_SINGLE) && empty(OPTIONS_MULTI) && empty(OPTIONS_RADIO) && empty(OPTIONS_GROUP) @${ECHO_MSG} "===> No options to configure" . else @optionsdir=${OPTIONS_FILE:H}; \ if [ ! -w "${PORT_DBDIR}" -a "`stat -f %u ${PORT_DBDIR:H}`" = 0 ]; \ then \ ${ECHO_MSG} "===> Switching to root credentials to create $${optionsdir}"; \ (${SU_CMD} "${SH} -c \"${MKDIR} $${optionsdir} 2> /dev/null\"") || \ (${ECHO_MSG} "===> Cannot create $${optionsdir}, check permissions"; exit 1); \ ${ECHO_MSG} "===> Returning to user credentials" ; \ else \ ${MKDIR} $${optionsdir} 2> /dev/null || \ (${ECHO_MSG} "===> Cannot create $${optionsdir}, check permissions"; exit 1) ; \ fi @TMPOPTIONSFILE=$$(mktemp -t portoptions); \ trap "${RM} $${TMPOPTIONSFILE}; exit 1" 1 2 3 5 10 13 15; \ ${SETENV} ${D4P_ENV} ${SH} ${SCRIPTSDIR}/dialog4ports.sh $${TMPOPTIONSFILE} || { \ ${RM} $${TMPOPTIONSFILE}; \ ${ECHO_CMD}; \ ${ECHO_MSG} "===> Options unchanged"; \ exit 0; \ }; \ ${ECHO_CMD}; \ if [ ! -e $${TMPOPTIONSFILE} ]; then \ ${ECHO_MSG} "===> No user-specified options to save for ${PKGNAME}"; \ exit 0; \ fi; \ SELOPTIONS=$$(${CAT} $${TMPOPTIONSFILE}); \ ${RM} $${TMPOPTIONSFILE}; \ TMPOPTIONSFILE=$$(mktemp -t portoptions); \ trap "${RM} $${TMPOPTIONSFILE}; exit 1" 1 2 3 5 10 13 15; \ ${ECHO_CMD} "# This file is auto-generated by 'make config'." > $${TMPOPTIONSFILE}; \ ${ECHO_CMD} "# Options for ${PKGNAME}" >> $${TMPOPTIONSFILE}; \ ${ECHO_CMD} "_OPTIONS_READ=${PKGNAME}" >> $${TMPOPTIONSFILE}; \ ${ECHO_CMD} "_FILE_COMPLETE_OPTIONS_LIST=${COMPLETE_OPTIONS_LIST}" >> $${TMPOPTIONSFILE}; \ for i in ${COMPLETE_OPTIONS_LIST}; do \ if ${ECHO_CMD} $${SELOPTIONS} | ${GREP} -qw $${i}; then \ ${ECHO_CMD} "OPTIONS_FILE_SET+=$${i}" >> $${TMPOPTIONSFILE}; \ else \ ${ECHO_CMD} "OPTIONS_FILE_UNSET+=$${i}" >> $${TMPOPTIONSFILE}; \ fi; \ done; \ if [ ! -w "${OPTIONS_FILE:H}" -a "`stat -f %u ${OPTIONS_FILE:H}`" != ${UID} ]; \ then \ ${ECHO_MSG} "===> Switching to root credentials to write ${OPTIONS_FILE}"; \ ${SU_CMD} "${CAT} $${TMPOPTIONSFILE} > ${OPTIONS_FILE}"; \ ${ECHO_MSG} "===> Returning to user credentials"; \ else \ ${CAT} $${TMPOPTIONSFILE} > ${OPTIONS_FILE}; \ fi; \ ${RM} $${TMPOPTIONSFILE} @cd ${.CURDIR} && ${MAKE} sanity-config . endif . endif # do-config . if !target(config) . if !defined(NO_DIALOG) config: pre-config do-config . else config: @${ECHO_MSG} "===> Skipping 'config' as NO_DIALOG is defined" . endif . endif # config . if !target(config-recursive) config-recursive: @${ECHO_MSG} "===> Setting user-specified options for ${PKGNAME} and dependencies"; @recursive_cmd="config-conditional"; \ recursive_dirs="${.CURDIR}${FLAVOR:D@${FLAVOR}} $$(${ALL-DEPENDS-FLAVORS-LIST})"; \ ${_FLAVOR_RECURSIVE_SH} . endif # config-recursive . if !target(config-conditional) config-conditional: . if !empty(NEW_OPTIONS) @cd ${.CURDIR} && ${MAKE} config; . endif . endif # config-conditional . if !target(showconfig) && (make(*config*) || (!empty(.MAKEFLAGS:M-V) && !empty(.MAKEFLAGS:M*_DESC))) .include "${PORTSDIR}/Mk/bsd.options.desc.mk" MULTI_EOL= : you have to choose at least one of them SINGLE_EOL= : you have to select exactly one of them RADIO_EOL= : you can only select none or one of them showconfig: check-config . if !empty(COMPLETE_OPTIONS_LIST) @${ECHO_MSG} "===> The following configuration options are available for ${PKGNAME}": . for opt in ${ALL_OPTIONS} @[ -z "${PORT_OPTIONS:M${opt}}" ] || match="on" ; ${ECHO_MSG} -n " ${opt}=$${match:-off}" . if !empty(${opt}_DESC) @${ECHO_MSG} -n ": "${${opt}_DESC:Q} . endif @${ECHO_MSG} "" . endfor #multi and conditional multis . for otype in MULTI GROUP SINGLE RADIO . for m in ${OPTIONS_${otype}} . if empty(${m}_DESC) @${ECHO_MSG} "====> Options available for the ${otype:tl} ${m}${${otype}_EOL}" . else @${ECHO_MSG} "====> ${${m}_DESC}${${otype}_EOL}" . endif . for opt in ${OPTIONS_${otype}_${m}} @[ -z "${PORT_OPTIONS:M${opt}}" ] || match="on" ; ${ECHO_MSG} -n " ${opt}=$${match:-off}" . if !empty(${opt}_DESC) @${ECHO_MSG} -n ": "${${opt}_DESC:Q} . endif @${ECHO_MSG} "" . endfor . endfor . endfor .undef otype .undef m .undef opt @${ECHO_MSG} "===> Use 'make config' to modify these settings" . endif . endif # showconfig . if !target(showconfig-recursive) showconfig-recursive: @${ECHO_MSG} "===> The following configuration options are available for ${PKGNAME} and its dependencies"; @recursive_cmd="showconfig"; \ recursive_dirs="${.CURDIR}${FLAVOR:D@${FLAVOR}} $$(${ALL-DEPENDS-FLAVORS-LIST})"; \ ${_FLAVOR_RECURSIVE_SH} . endif # showconfig-recursive . if !target(rmconfig) rmconfig: . if exists(${OPTIONS_FILE}) -@${ECHO_MSG} "===> Removing user-configured options for ${PKGNAME}"; \ optionsdir=${OPTIONS_FILE:H}; \ if [ ${UID} != 0 -a "x${INSTALL_AS_USER}" = "x" -a ! -w "${OPTIONS_FILE}" ]; then \ ${ECHO_MSG} "===> Switching to root credentials to remove ${OPTIONS_FILE} and $${optionsdir}"; \ ${SU_CMD} "${RM} ${OPTIONS_FILE} ; \ ${RMDIR} $${optionsdir}"; \ ${ECHO_MSG} "===> Returning to user credentials"; \ else \ ${RM} ${OPTIONS_FILE}; \ ${RMDIR} $${optionsdir} 2>/dev/null || return 0; \ fi . else @${ECHO_MSG} "===> No user-specified options configured for ${PKGNAME}" . endif . endif # rmconfig . if !target(rmconfig-recursive) rmconfig-recursive: @${ECHO_MSG} "===> Removing user-specified options for ${PKGNAME} and its dependencies"; @recursive_cmd="rmconfig"; \ recursive_dirs="${.CURDIR}${FLAVOR:D@${FLAVOR}} $$(${ALL-DEPENDS-FLAVORS-LIST})"; \ ${_FLAVOR_RECURSIVE_SH} . endif # rmconfig-recursive . if !target(pretty-print-config) MULTI_START= [ MULTI_END= ] GROUP_START= [ GROUP_END= ] SINGLE_START= ( SINGLE_END= ) RADIO_START= ( RADIO_END= ) pretty-print-config: . for opt in ${ALL_OPTIONS} @[ -z "${PORT_OPTIONS:M${opt}}" ] || match="+" ; ${ECHO_MSG} -n "$${match:--}${opt} " . endfor . for otype in MULTI GROUP SINGLE RADIO . for m in ${OPTIONS_${otype}} @${ECHO_MSG} -n "${m}${${otype}_START} " . for opt in ${OPTIONS_${otype}_${m}} @[ -z "${PORT_OPTIONS:M${opt}}" ] || match="+" ; ${ECHO_MSG} -n "$${match:--}${opt} " . endfor @${ECHO_MSG} -n "${${otype}_END} " . endfor . endfor .undef otype .undef m .undef opt @${ECHO_MSG} "" . endif # pretty-print-config desktop-categories: @${SETENV} \ dp_CATEGORIES="${CATEGORIES}" \ dp_ECHO_CMD=${ECHO_CMD} \ dp_SCRIPTSDIR="${SCRIPTSDIR}" \ dp_SORT="${SORT}" \ dp_TR="${TR}" \ ${SH} ${SCRIPTSDIR}/desktop-categories.sh . if defined(DESKTOP_ENTRIES) check-desktop-entries: @${SETENV} \ dp_CURDIR="${.CURDIR}" \ dp_ECHO_CMD=${ECHO_CMD} \ dp_ECHO_MSG=${ECHO_MSG} \ dp_EXPR="${EXPR}" \ dp_GREP="${GREP}" \ dp_MAKE="${MAKE}" \ dp_PKGNAME="${PKGNAME}" \ dp_SCRIPTSDIR="${SCRIPTSDIR}" \ dp_SED="${SED}" \ dp_VALID_DESKTOP_CATEGORIES="${VALID_DESKTOP_CATEGORIES}" \ dp_TR="${TR}" \ ${SH} ${SCRIPTSDIR}/check-desktop-entries.sh ${DESKTOP_ENTRIES} . endif . if !target(install-desktop-entries) . if defined(DESKTOP_ENTRIES) install-desktop-entries: @${SETENV} \ dp_CURDIR="${.CURDIR}" \ dp_ECHO_CMD=${ECHO_CMD} \ dp_SCRIPTSDIR="${SCRIPTSDIR}" \ dp_STAGEDIR="${STAGEDIR}" \ dp_DESKTOPDIR="${DESKTOPDIR}" \ dp_TMPPLIST="${TMPPLIST}" \ dp_MAKE="${MAKE}" \ dp_SED="${SED}" \ ${SH} ${SCRIPTSDIR}/install-desktop-entries.sh ${DESKTOP_ENTRIES} . endif . endif . if !empty(BINARY_ALIAS) . if !target(create-binary-alias) create-binary-alias: ${BINARY_LINKDIR} . for target src in ${BINARY_ALIAS:C/=/ /} @if srcpath=`which -- ${src}`; then \ ${RLN} $${srcpath} ${BINARY_LINKDIR}/${target}; \ else \ ${ECHO_MSG} "===> Missing \"${src}\" to create a binary alias at \"${BINARY_LINKDIR}/${target}\""; \ ${FALSE}; \ fi . endfor . endif . endif . if !empty(PKGCONFIG_BASE) . if !target(create-base-pkgconfig) create-base-pkgconfig: ${PKGCONFIG_LINKDIR} . for pcfile in ${PKGCONFIG_BASE:S/$/.pc/} @if `test -f ${PKGCONFIG_BASEDIR}/${pcfile}`; then \ ${RLN} ${PKGCONFIG_BASEDIR}/${pcfile} ${PKGCONFIG_LINKDIR}/${pcfile}; \ else \ ${ECHO_MSG} "===> Missing \"${pcfile}\" to create a link at \"${PKGCONFIG_LINKDIR}/${pcfile}\" "; \ ${FALSE}; \ fi . endfor . endif . endif . if !empty(BINARY_WRAPPERS) . if !target(create-binary-wrappers) create-binary-wrappers: ${BINARY_LINKDIR} . for bin in ${BINARY_WRAPPERS} @${INSTALL_SCRIPT} ${WRAPPERSDIR}/${bin} ${BINARY_LINKDIR} . endfor . endif . endif . if defined(WARNING) WARNING_WAIT?= 10 show-warnings: @${ECHO_MSG} "/!\\ WARNING /!\\" @${ECHO_MSG} . for m in ${WARNING} @${ECHO_MSG} "${m}" | ${FMT_80} @${ECHO_MSG} . endfor @sleep ${WARNING_WAIT} . endif . if defined(ERROR) show-errors: @${ECHO_MSG} "/!\\ ERRORS /!\\" @${ECHO_MSG} . for m in ${ERROR} @${ECHO_MSG} "${m}" | ${FMT_80} @${ECHO_MSG} . endfor @${FALSE} . endif . if defined(DEVELOPER) . if defined(DEV_WARNING) DEV_WARNING_WAIT?= 10 show-dev-warnings: @${ECHO_MSG} "/!\\ ${PKGNAME}: Makefile warnings, please consider fixing /!\\" @${ECHO_MSG} . for m in ${DEV_WARNING} @${ECHO_MSG} ${m} | ${FMT_80} @${ECHO_MSG} . endfor . if defined(DEV_WARNING_FATAL) @${FALSE} . else @sleep ${DEV_WARNING_WAIT} . endif . endif . if defined(DEV_ERROR) show-dev-errors: @${ECHO_MSG} "/!\\ ${PKGNAME}: Makefile errors /!\\" @${ECHO_MSG} . for m in ${DEV_ERROR} @${ECHO_MSG} "${m}" | ${FMT_80} @${ECHO_MSG} . endfor @${FALSE} . endif . endif #DEVELOPER ${_PORTS_DIRECTORIES}: @${MKDIR} ${.TARGET} # Please note that the order of the following targets is important, and # should not be modified. _TARGETS_STAGES= SANITY PKG FETCH EXTRACT PATCH CONFIGURE BUILD INSTALL TEST PACKAGE STAGE # Define the SEQ of actions to take when each target is ran, and which targets # it depends on before running its SEQ. # # Main target has a priority of 500, pre-target 300, post-target 700, # target-depends 150. Other targets are spaced in between those # # If you change the pre-foo and post-foo values here, go and keep them in sync # in _OPTIONS_TARGETS in bsd.options.mk _SANITY_SEQ= 050:post-chroot 100:pre-everything \ 125:show-unsupported-system-error 150:check-makefile \ 190:show-errors 200:show-warnings \ 210:show-dev-errors 220:show-dev-warnings \ 250:check-categories 300:check-makevars \ 350:check-desktop-entries 400:check-depends \ 500:check-deprecated \ 550:check-vulnerable 600:check-license 650:check-config \ 700:buildanyway-message 750:options-message ${_USES_sanity} _PKG_DEP= check-sanity _PKG_SEQ= 500:pkg-depends _FETCH_DEP= pkg _FETCH_SEQ= 150:fetch-depends 300:pre-fetch 450:pre-fetch-script \ 500:do-fetch 550:fetch-specials 700:post-fetch \ 850:post-fetch-script \ ${_OPTIONS_fetch} ${_USES_fetch} _EXTRACT_DEP= fetch _EXTRACT_SEQ= 010:check-build-conflicts 050:extract-message 100:checksum \ 150:extract-depends 190:clean-wrkdir 200:${EXTRACT_WRKDIR} \ 300:pre-extract 450:pre-extract-script 500:do-extract \ 700:post-extract 850:post-extract-script \ 999:extract-fixup-modes \ ${_OPTIONS_extract} ${_USES_extract} ${_SITES_extract} _PATCH_DEP= extract _PATCH_SEQ= 050:ask-license 100:patch-message 150:patch-depends \ 300:pre-patch 450:pre-patch-script 500:do-patch \ 700:post-patch 850:post-patch-script \ ${_OPTIONS_patch} ${_USES_patch} _CONFIGURE_DEP= patch _CONFIGURE_SEQ= 150:build-depends 151:lib-depends 160:create-binary-alias \ 161:create-binary-wrappers 170:create-base-pkgconfig \ 200:configure-message 210:apply-slist \ 300:pre-configure 450:pre-configure-script \ 490:run-autotools-fixup 500:do-configure 700:post-configure \ 850:post-configure-script \ ${_OPTIONS_configure} ${_USES_configure} _BUILD_DEP= configure _BUILD_SEQ= 100:build-message 300:pre-build 450:pre-build-script \ 500:do-build 700:post-build 850:post-build-script \ ${_OPTIONS_build} ${_USES_build} _STAGE_DEP= build # STAGE is special in its numbering as it has install and stage, so install is # the main, and stage goes after. _STAGE_SEQ= 050:stage-message 100:stage-dir 150:run-depends \ 300:pre-install \ 400:generate-plist 450:pre-su-install 475:create-users-groups \ 500:do-install 550:kmod-post-install 600:fixup-lib-pkgconfig 700:post-install \ 750:post-install-script 800:post-stage 850:compress-man \ 860:install-rc-script 870:install-ldconfig-file \ 880:install-license 890:install-desktop-entries \ 900:add-plist-info 910:add-plist-docs 920:add-plist-examples \ 930:add-plist-data 940:add-plist-post ${POST_PLIST:C/^/990:/} \ ${_OPTIONS_install} ${_USES_install} \ ${_OPTIONS_stage} ${_USES_stage} . if defined(DEVELOPER) _STAGE_SEQ+= 995:stage-qa . else stage-qa: stage . endif _TEST_DEP= stage _TEST_SEQ= 100:test-message 150:test-depends 300:pre-test 500:do-test \ 800:post-test \ ${_OPTIONS_test} ${_USES_test} _INSTALL_DEP= stage _INSTALL_SEQ= 100:install-message \ 150:identify-install-conflicts \ 200:check-already-installed \ 300:create-manifest _INSTALL_SUSEQ= 400:fake-pkg 500:security-check _PACKAGE_DEP= stage _PACKAGE_SEQ= 100:package-message 300:pre-package 450:pre-package-script \ 500:do-package 850:post-package-script \ ${_OPTIONS_package} ${_USES_package} # Enforce order for -jN builds . for _t in ${_TARGETS_STAGES} # Check if the port need to change the default order of some targets... . if defined(TARGET_ORDER_OVERRIDE) _tmp_seq:= . for _entry in ${_${_t}_SEQ} # for _target because :M${_target} does not work with fmake . for _target in ${_entry:C/^[0-9]+://} . if ${TARGET_ORDER_OVERRIDE:M*\:${_target}} _tmp_seq:= ${_tmp_seq} ${TARGET_ORDER_OVERRIDE:M*\:${_target}} . else _tmp_seq:= ${_tmp_seq} ${_entry} . endif . endfor . endfor _${_t}_SEQ:= ${_tmp_seq} . endif . for s in ${_${_t}_SEQ:O:C/^[0-9]+://} . if target(${s}) . if ! ${NOTPHONY:M${s}} _PHONY_TARGETS+= ${s} . endif _${_t}_REAL_SEQ+= ${s} . endif . endfor . for s in ${_${_t}_SUSEQ:O:C/^[0-9]+://} . if target(${s}) . if ! ${NOTPHONY:M${s}} _PHONY_TARGETS+= ${s} . endif _${_t}_REAL_SUSEQ+= ${s} . endif . endfor .ORDER: ${_${_t}_DEP} ${_${_t}_REAL_SEQ} . endfor # Define all of the main targets which depend on a sequence of other targets. # See above *_SEQ and *_DEP. The _DEP will run before this defined target is # ran. The _SEQ will run as this target once _DEP is satisfied. . for target in extract patch configure build stage install package # Check if config dialog needs to show and execute it if needed. If is it not # needed (_OPTIONS_OK), then just depend on the cookie which is defined later # to depend on the *_DEP and execute the *_SEQ. # If options are required, execute config-conditional and then re-execute the # target noting that config is no longer needed. . if !target(${target}) && defined(_OPTIONS_OK) _PHONY_TARGETS+= ${target} ${target}: ${${target:tu}_COOKIE} . elif !target(${target}) ${target}: config-conditional @cd ${.CURDIR} && ${MAKE} CONFIG_DONE_${PKGBASE:tu}=1 ${${target:tu}_COOKIE} . elif target(${target}) && defined(IGNORE) . endif . if !exists(${${target:tu}_COOKIE}) # Define the real target behavior. Depend on the target's *_DEP. Execute # the target's *_SEQ. Also handle su and USE_SUBMAKE needs. . if ${UID} != 0 && defined(_${target:tu}_REAL_SUSEQ) && !defined(INSTALL_AS_USER) . if defined(USE_SUBMAKE) ${${target:tu}_COOKIE}: ${_${target:tu}_DEP} @cd ${.CURDIR} && ${MAKE} ${_${target:tu}_REAL_SEQ} . else # !USE_SUBMAKE ${${target:tu}_COOKIE}: ${_${target:tu}_DEP} ${_${target:tu}_REAL_SEQ} . endif # USE_SUBMAKE @${ECHO_MSG} "===> Switching to root credentials for '${target}' target" @cd ${.CURDIR} && \ ${SU_CMD} "${MAKE} ${_${target:tu}_REAL_SUSEQ}" @${ECHO_MSG} "===> Returning to user credentials" @${TOUCH} ${TOUCH_FLAGS} ${.TARGET} . else # No SU needed . if defined(USE_SUBMAKE) ${${target:tu}_COOKIE}: ${_${target:tu}_DEP} @cd ${.CURDIR} && \ ${MAKE} ${_${target:tu}_REAL_SEQ} ${_${target:tu}_REAL_SUSEQ} @${TOUCH} ${TOUCH_FLAGS} ${.TARGET} . else # !USE_SUBMAKE ${${target:tu}_COOKIE}: ${_${target:tu}_DEP} ${_${target:tu}_REAL_SEQ} ${_${target:tu}_REAL_SUSEQ} @${TOUCH} ${TOUCH_FLAGS} ${.TARGET} . endif # USE_SUBMAKE . endif # SU needed . else # exists(cookie) ${${target:tu}_COOKIE}:: @if [ ! -e ${.TARGET} ]; then \ cd ${.CURDIR} && ${MAKE} ${.TARGET}; \ fi . endif # !exists(cookie) . endfor # foreach(targets) .PHONY: ${_PHONY_TARGETS} check-sanity fetch pkg . if !target(check-sanity) check-sanity: ${_SANITY_REAL_SEQ} . endif . if !target(fetch) fetch: ${_FETCH_DEP} ${_FETCH_REAL_SEQ} . endif . if !target(pkg) pkg: ${_PKG_DEP} ${_PKG_REAL_SEQ} . endif . if !target(test) test: ${_TEST_DEP} . if !defined(NO_TEST) test: ${_TEST_REAL_SEQ} . endif . endif . endif # End of post-makefile section. .endif # End of the DESTDIR if statement diff --git a/Mk/bsd.sanity.mk b/Mk/bsd.sanity.mk index 621445045470..5d60596d85f4 100644 --- a/Mk/bsd.sanity.mk +++ b/Mk/bsd.sanity.mk @@ -1,316 +1,327 @@ # MAINTAINER: portmgr@FreeBSD.org # # Warnings for everyone .for opt in ${ALL_OPTIONS:NDEBUG} . if defined(WITH_${opt}) WARNING+= "WITH_${opt} is unsupported, use WITH=${opt} on the command line, or one of these in /etc/make.conf, OPTIONS_SET+=${opt} to set it globally, or ${OPTIONS_NAME}_SET+=${opt} for only this port." . endif . if defined(WITHOUT_${opt}) WARNING+= "WITHOUT_${opt} is unsupported, use WITHOUT=${opt} on the command line, or one of these in /etc/make.conf, OPTIONS_UNSET+=${opt} to set it globally, or ${OPTIONS_NAME}_UNSET+=${opt} for only this port." . endif .endfor ALL_UNSUPPORTED= WITHOUT_NLS NOPORTDOCS NOPORTEXAMPLES WITH_BDB_VER \ OVERRIDE_LINUX_BASE_PORT WITH_OPENSSL_PORT \ WITH_OPENSSL_BASE PYTHON_DEFAULT_VERSION \ PYTHON2_DEFAULT_VERSION PYTHON3_DEFAULT_VERSION ALL_DEPRECATED= ALL_NOTNEEDED= WITH_NEW_XORG WITHOUT_NEW_XORG WITH_KMS WITHOUT_KMS WITHOUT_NLS_ALT= "OPTIONS_UNSET=NLS, or ${OPTIONS_NAME}_UNSET+=NLS instead" NOPORTDOCS_ALT= "OPTIONS_UNSET=DOCS, or ${OPTIONS_NAME}_UNSET+=DOCS instead" NOPORTEXAMPLES_ALT= "OPTIONS_UNSET=EXAMPLES, or ${OPTIONS_NAME}_UNSET+=EXAMPLES instead" WITH_BDB_VER_ALT= "DEFAULT_VERSIONS+=bdb=${WITH_BDB_VER}" OVERRIDE_LINUX_BASE_PORT_ALT= "DEFAULT_VERSIONS+=linux=${OVERRIDE_LINUX_BASE_PORT}" WITH_OPENSSL_PORT_ALT= "DEFAULT_VERSIONS+=ssl=${SSL_DEFAULT:Uopenssl} in your make.conf" WITH_OPENSSL_BASE_ALT= "DEFAULT_VERSIONS+=ssl=base in your make.conf" WITH_NEW_XORG_ALT= "removed and has no effect" WITHOUT_NEW_XORG_ALT= ${WITH_NEW_XORG_ALT} WITH_MKS_ALT= "removed and has no effect" WITHOUT_MKS_ALT= ${WITH_MKS_ALT} PYTHON_DEFAULT_VERSION_ALT= "DEFAULT_VERSIONS=python=${PYTHON_DEFAULT_VERSION:S/^python//}" PYTHON2_DEFAULT_VERSION_ALT= "DEFAULT_VERSIONS=python2=${PYTHON2_DEFAULT_VERSION:S/^python//}" PYTHON3_DEFAULT_VERSION_ALT= "DEFAULT_VERSIONS=python3=${PYTHON3_DEFAULT_VERSION:S/^python//}" .for a in ${ALL_DEPRECATED} . if defined(${a}) WARNING+= "${a} is deprecated, please use ${${a}_ALT}" . endif .endfor .for a in ${ALL_NOTNEEDED} . if defined(${a}) WARNING+= "${a} is not needed: ${${a}_REASON}" . endif .endfor .for a in ${ALL_UNSUPPORTED} . if defined(${a}) ERROR+= "${a} is unsupported, please use ${${a}_ALT}" . endif .endfor # Warnings only when DEVELOPER=yes .if defined(DEVELOPER) .if exists(${.CURDIR}/../../Mk/bsd.port.mk) || ${OVERLAYS:tA:M${.CURDIR:H:H}} == ${.CURDIR:H:H} . if ${.CURDIR:H:T} != ${PKGCATEGORY} DEV_ERROR+= "The first entry in CATEGORIES should be the directory where the port lives" . endif .else DEV_WARNING+= "Not validating first entry in CATEGORIES due to being outside of PORTSDIR. Please ensure this is proper when committing." .endif .if defined(USE_PERL5) && ${USE_PERL5} == yes DEV_ERROR+= "USE_PERL5=yes is unsupported, please use USES=perl5 instead" .endif .if !empty(LIB_DEPENDS:M*/../*) DEV_ERROR+= "LIB_DEPENDS contains unsupported relative path to dependency" .endif .if !empty(RUN_DEPENDS:M*/../*) DEV_ERROR+= "RUN_DEPENDS contains unsupported relative path to dependency" .endif .if defined(USE_GNOME) && ${USE_GNOME:Mpkgconfig} DEV_ERROR+= "USE_GNOME=pkgconfig is unsupported, please use USES=pkgconfig" .endif .if defined(USE_ZOPE) && ${USE_ZOPE} == yes DEV_ERROR+= "USE_ZOPE=yes is unsupported, please use USES=zope instead" .endif .if defined(USE_SDL) && ${USE_SDL} == yes DEV_ERROR+= "USE_SDL=yes is unsupported, please use USE_SDL=sdl instead" .endif .if defined(USE_GITHUB) && defined(GH_COMMIT) DEV_ERROR+= "GH_COMMIT is unsupported, please convert GHL-\>GH in MASTER_SITES and set GH_TAGNAME to tag or commit hash and remove GH_COMMIT" .endif .if defined(USE_GNOME) && ${USE_GNOME:Mgnomehack} DEV_WARNING+= "USE_GNOME=gnomehack is deprecated, please use USES=pathfix" .endif .if defined(USE_GNOME) && ${USE_GNOME:Mdesktopfileutils} DEV_WARNING+= "USE_GNOME=desktopfileutils is deprecated, please use USES=desktop-file-utils" .endif .if defined(LIB_DEPENDS) && ${LIB_DEPENDS:Nlib*} DEV_ERROR+= "All LIB_DEPENDS should use the new format and start out with lib. \(libfoo.so vs foo.so\)" .endif .if defined(LICENSE) . if ${LICENSE:MBSD} DEV_WARNING+= "LICENSE must not contain BSD, instead use BSD[234]CLAUSE" . endif .elif !defined(DISABLE_LICENSES) . if empty(USES:Mmetaport) DEV_WARNING+= "Please set LICENSE for this port" . endif .endif .for _a in ${ONLY_FOR_ARCHS} . if defined(ONLY_FOR_ARCHS_REASON_${_a}) DEV_WARNING+= "ONLY_FOR_ARCHS_${_a} is defined and ${_a} is in ONLY_FOR_ARCHS, the message will never be used." . endif .endfor .if defined(USE_PYDISTUTILS) && ${USE_PYDISTUTILS} == "easy_install" DEV_ERROR+= "USE_PYDISTUTILS=easy_install is no longer supported, please use USE_PYDISTUTILS=yes" .endif .if defined(USE_PYTHON) && (${USE_PYTHON} == "yes" || ${USE_PYTHON:C/[-0-9.+]*//} == "") _PYTHON_VAL := ${USE_PYTHON} . if ${_PYTHON_VAL} != "yes" DEV_ERROR+= "USE_PYTHON=${_PYTHON_VAL} is no longer supported, please use USES=python:${_PYTHON_VAL}" . else DEV_ERROR+= "USE_PYTHON=yes is no longer supported, please use USES=python" . endif .endif .if defined(USE_PYTHON_RUN) . if ${USE_PYTHON_RUN} != "yes" DEV_ERROR+= "USE_PYTHON_RUN is no longer supported, please use USES=python:${USE_PYTHON_RUN},run" . else DEV_ERROR+= "USE_PYTHON_RUN is no longer supported, please use USES=python:run" . endif .endif .if defined(USE_PYTHON_BUILD) . if ${USE_PYTHON_BUILD} != "yes" DEV_ERROR+= "USE_PYTHON_BUILD is no longer supported, please use USES=python:${USE_PYTHON_BUILD},build" . else DEV_ERROR+= "USE_PYTHON_BUILD is no longer supported, please use USES=python:build" . endif .endif .if defined(USE_RC_SUBR) && ${USE_RC_SUBR:tu} == YES DEV_ERROR+= "USE_RC_SUBR=yes has not been supported for a long time, remove it." .endif .if defined(USE_TCL) || defined(USE_TCL_BUILD) || defined(USE_TCL_RUN) || defined(USE_TCL_WRAPPER) || \ defined(USE_TK) || defined(USE_TK_BUILD) || defined(USE_TK_RUN) || defined(USE_TK_WRAPPER) DEV_ERROR+= "USE_TCL and USE_TK are no longer supported, please use USES=tcl or USES=tk" .endif .if defined(USE_FPC) && ${USE_FPC:tl} == "yes" 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." . endif .endfor .if empty(PORTEPOCH) || !empty(PORTEPOCH:C/[0-9]+//) DEV_ERROR+= "PORTEPOCH needs to be an integer \>= 0" .endif .if empty(PORTREVISION) || !empty(PORTREVISION:C/[0-9]+//) DEV_ERROR+= "PORTREVISION needs to be an integer \>= 0" .endif # Whitelist of options helper lookalikes that should not be reported on: _OPTIONS_HELPERS_SEEN+= OPENSSL_LDFLAGS _BROKEN_OPTIONS_HELPERS= .for opt in ${_REALLY_ALL_POSSIBLE_OPTIONS} . for helper in ${_ALL_OPTIONS_HELPERS} . if defined(${opt}_${helper}) && empty(_OPTIONS_HELPERS_SEEN:M${opt}_${helper}) _BROKEN_OPTIONS_HELPERS+= ${opt}_${helper} . endif . endfor .endfor .if !empty(_BROKEN_OPTIONS_HELPERS) DEV_ERROR+= "The following options helpers are incorrectly set after bsd.port.options.mk and are ineffective: ${_BROKEN_OPTIONS_HELPERS}" .endif SANITY_UNSUPPORTED= USE_OPENAL USE_FAM USE_MAKESELF USE_ZIP USE_LHA USE_CMAKE \ USE_READLINE USE_ICONV PERL_CONFIGURE PERL_MODBUILD \ USE_PERL5_BUILD USE_PERL5_RUN USE_DISPLAY USE_FUSE \ USE_GETTEXT USE_GMAKE USE_SCONS USE_DRUPAL NO_INSTALL_MANPAGES \ INSTALLS_SHLIB USE_PYDISTUTILS PYTHON_CONCURRENT_INSTALL \ PYDISTUTILS_AUTOPLIST PYTHON_PY3K_PLIST_HACK PYDISTUTILS_NOEGGINFO \ USE_PYTHON_PREFIX USE_BZIP2 USE_XZ USE_PGSQL NEED_ROOT \ UNIQUENAME LATEST_LINK USE_SQLITE USE_FIREBIRD USE_PHPEXT \ USE_ZENDEXT USE_PHP_BUILD USE_PHPIZE WANT_PHP_CLI WANT_PHP_CGI \ WANT_PHP_MOD WANT_PHP_WEB WANT_PHP_EMB USE_BDB PLIST_DIRSTRY \ USE_RCORDER USE_OPENSSL WANT_GNOME RUBYGEM_AUTOPLIST WANT_SDL \ 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 \ USE_APACHE USE_APACHE_BUILD USE_APACHE_RUN SANITY_NOTNEEDED= CMAKE_NINJA WX_UNICODE USE_KDEBASE_VER \ USE_KDELIBS_VER USE_QT_VER .for a in 1 2 3 4 5 6 7 8 9 L N SANITY_DEPRECATED+= MAN${a} MAN${a}_ALT= pkg-plist to list manpages .endfor USE_AUTOTOOLS_ALT= USES=autoreconf and GNU_CONFIGURE=yes USE_OPENAL_ALT= USES=openal USE_FAM_ALT= USES=fam USE_MAKESELF_ALT= USES=makeself USE_ZIP_ALT= USES=zip USE_LHA_ALT= USES=lha USE_BZIP2_ALT= USES=tar:bzip2 USE_XZ_ALT= USES=tar:xz USE_CMAKE_ALT= USES=cmake USE_READLINE_ALT= USES=readline USE_ICONV_ALT= USES=iconv USE_GMAKE_ALT= USES=gmake PERL_CONFIGURE_ALT= USES=perl5 along with USE_PERL5=configure PERL_MODBUILD_ALT= USES=perl5 along with USE_PERL5=modbuild USE_PERL5_BUILD_ALT= USES=perl5 along with USE_PERL5=build USE_PERL5_RUN_ALT= USES=perl5 along with USE_PERL5=run USE_DISPLAY_ALT= USES=display USE_FUSE_ALT= USES=fuse USE_GETTEXT_ALT= USES=gettext USE_SCONS_ALT= USES=scons USE_DRUPAL_ALT= USES=drupal USE_PYDISTUTILS_ALT= USE_PYTHON=distutils USE_PGSQL_ALT= USES=pgsql INSTALLS_SHLIB_ALT= USE_LDCONFIG NEED_ROOT_ALT= USES=fakeroot or USES=uidfix PYTHON_CONCURRENT_INSTALL_ALT= USE_PYTHON=concurrent PYDISTUTILS_AUTOPLIST_ALT= USE_PYTHON=autoplist PYTHON_PY3K_PLIST_HACK_ALT= USE_PYTHON=py3kplist PYDISTUTILS_NOEGGINFO_ALT= USE_PYTHON=noegginfo USE_PYTHON_PREFIX_ALT= USE_PYTHON=pythonprefix NO_INSTALL_MANPAGES_ALT= USES=imake:noman UNIQUENAME_ALT= PKGBASE LATEST_LINK_ALT= PKGBASE CMAKE_NINJA_REASON= Now the ninja generator is the default WX_UNICODE_REASON= Now no-op as only unicode is supported now PLIST_DIRSTRY_ALT= PLIST_DIRS USE_SQLITE_ALT= USES=sqlite USE_FIREBIRD_ALT= USES=firebird USE_BDB_ALT= USES=bdb:${USE_BDB} USE_MYSQL_ALT= USES=mysql:${USE_MYSQL} WANT_MYSQL_VER_ALT= USES=mysql:${WANT_MYSQL_VER} USE_OPENSSL_ALT= USES=ssl USE_PHPIZE_ALT= USES=php:phpize USE_PHPEXT_ALT= USES=php:ext USE_ZENDEXT_ALT= USES=php:zend USE_PHP_BUILD_ALT= USES=php:build WANT_PHP_CLI_ALT= USES=php:cli WANT_PHP_CGI_ALT= USES=php:cgi WANT_PHP_MOD_ALT= USES=php:mod WANT_PHP_WEB_ALT= USES=php:web WANT_PHP_EMB_ALT= USES=php:embed USE_RCORDER_ALT= USE_RC_SUBR=${USE_RCORDER} WANT_GNOME_ALT= USES=gnome MLINKS_ALT= it no more USE_DOS2UNIX_ALT= USES=dos2unix PYDISTUTILS_INSTALLNOSINGLE_ALT= it no more INSTALLS_EGGINFO_ALT= an entry in the plist WANT_SDL_ALT= USE_SDL for SDL directly, if you need optional dependency, use options RUBYGEM_AUTOPLIST_ALT= USES=gem USE_RUBYGEMS_ALT= USES=gem USE_GHOSTSCRIPT_ALT= USES=ghostscript USE_GHOSTSCRIPT_BUILD_ALT= USES=ghostscript USE_GHOSTSCRIPT_RUN_ALT= USES=ghostscript NO_STAGE_ALT= https://wiki.freebsd.org/ports/StageDir to convert your port to staging USE_APACHE_ALT= USES=apache:${USE_APACHE:C/2(0-9)/2.\1/g} USE_APACHE_BUILD_ALT= USES=apache:build,${USE_APACHE_BUILD:C/2(0-9)/2.\1/g} USE_APACHE_RUN_ALT= USES=apache:run,${USE_APACHE_RUN:C/2(0-9)/2.\1/g} APACHE_PORT_ALT= DEFAULT_VERSIONS+=apache=${APACHE_PORT:S/www\/apache//:C/2(0-9)/2.\1/} USE_FPC_RUN_ALT= USES=fpc:run WANT_FPC_BASE_ALT= USES=fpc:base WANT_FPC_ALL_ALT= USES=fpc:all USE_QT4_ALT= USES=qt:5 and USE_QT=${USE_QT4} \(beware\) as Qt4 has been removed USE_QT5_ALT= USES=qt:5 and USE_QT=${USE_QT5} QT_NONSTANDARD_ALT= USES=qmake:no_env XORG_CAT_ALT= USES=xorg-cat:${XORG_CAT} 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}) DEV_WARNING+= "${a} is deprecated, please use ${${a}_ALT}" . endif .endfor .for a in ${SANITY_NOTNEEDED} . if defined(${a}) DEV_WARNING+= "${a} is not needed: ${${a}_REASON}" . endif .endfor .for a in ${SANITY_UNSUPPORTED} . if defined(${a}) DEV_ERROR+= "${a} is unsupported, please use ${${a}_ALT}" . endif .endfor .endif # defined(DEVELOPER) diff --git a/accessibility/rubygem-atk/Makefile b/accessibility/rubygem-atk/Makefile index 40c5bc816d1e..3cb61f88ea2c 100644 --- a/accessibility/rubygem-atk/Makefile +++ b/accessibility/rubygem-atk/Makefile @@ -1,22 +1,21 @@ PORTNAME= atk PORTVERSION= 4.0.3 CATEGORIES= accessibility rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding of ATK WWW= https://ruby-gnome.github.io/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB BUILD_DEPENDS= rubygem-rake>=0:devel/rubygem-rake RUN_DEPENDS= rubygem-glib2>=${PORTVERSION}:devel/rubygem-glib2 USES= gem gnome USE_GNOME= atk -USE_RUBY= yes NO_ARCH= yes .include diff --git a/archivers/rubygem-archive-tar-minitar/Makefile b/archivers/rubygem-archive-tar-minitar/Makefile index 9d3fd1c39b6a..57ccc68dc939 100644 --- a/archivers/rubygem-archive-tar-minitar/Makefile +++ b/archivers/rubygem-archive-tar-minitar/Makefile @@ -1,21 +1,20 @@ PORTNAME= archive-tar-minitar PORTVERSION= 0.8 CATEGORIES= archivers rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Library and command-line utility for tar archives WWW= https://github.com/halostatue/minitar LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual RUN_DEPENDS= rubygem-minitar>=${PORTVERSION}<1:archivers/rubygem-minitar \ rubygem-minitar-cli>=${PORTVERSION}<1:archivers/rubygem-minitar-cli USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/archivers/rubygem-archive-zip/Makefile b/archivers/rubygem-archive-zip/Makefile index f7e4a9475a85..bbeb35f406b2 100644 --- a/archivers/rubygem-archive-zip/Makefile +++ b/archivers/rubygem-archive-zip/Makefile @@ -1,20 +1,19 @@ PORTNAME= archive-zip PORTVERSION= 0.12.0 CATEGORIES= archivers rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Provides interface to working with ZIP archives WWW= https://github.com/javanthropus/archive-zip LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-io-like>=0.3.0<0.4:devel/rubygem-io-like USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/archivers/rubygem-bzip2-ruby/Makefile b/archivers/rubygem-bzip2-ruby/Makefile index acbfcb42bfe3..c3aa628f6391 100644 --- a/archivers/rubygem-bzip2-ruby/Makefile +++ b/archivers/rubygem-bzip2-ruby/Makefile @@ -1,17 +1,16 @@ PORTNAME= bzip2-ruby PORTVERSION= 0.2.7 PORTREVISION= 2 CATEGORIES= archivers rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby C bindings to libbzip2 WWW= https://github.com/brianmario/bzip2-ruby LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual -USE_RUBY= yes USES= gem .include diff --git a/archivers/rubygem-fpm/Makefile b/archivers/rubygem-fpm/Makefile index a88c490af1c5..9b12be9b74b3 100644 --- a/archivers/rubygem-fpm/Makefile +++ b/archivers/rubygem-fpm/Makefile @@ -1,28 +1,27 @@ PORTNAME= fpm PORTVERSION= 1.15.0 CATEGORIES= archivers rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Build packages for multiple platforms with great ease and sanity WWW= https://github.com/jordansissel/fpm LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-arr-pm>=0.0.11<0.1:devel/rubygem-arr-pm \ rubygem-backports>=2.6.2:devel/rubygem-backports \ rubygem-cabin>=0.6.0:devel/rubygem-cabin \ rubygem-clamp>=1.0.0<2:devel/rubygem-clamp \ rubygem-pleaserun>=0.0.29<0.1:devel/rubygem-pleaserun \ rubygem-rexml>=0:textproc/rubygem-rexml \ rubygem-stud>=0:devel/rubygem-stud USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/fpm .include diff --git a/archivers/rubygem-libarchive/Makefile b/archivers/rubygem-libarchive/Makefile index 9eea518a5826..63872289a65f 100644 --- a/archivers/rubygem-libarchive/Makefile +++ b/archivers/rubygem-libarchive/Makefile @@ -1,18 +1,17 @@ PORTNAME= libarchive PORTVERSION= 0.1.2 PORTREVISION= 1 CATEGORIES= archivers rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby bindings for libarchive WWW= https://bitbucket.org/winebarrel/libarchive-ruby LICENSE= BSD3CLAUSE -USE_RUBY= yes USES= dos2unix gem libarchive DOS2UNIX_FILES= ext/depend .include diff --git a/archivers/rubygem-minitar-cli/Makefile b/archivers/rubygem-minitar-cli/Makefile index 512d04d4e07e..9a3b11cbb9a8 100644 --- a/archivers/rubygem-minitar-cli/Makefile +++ b/archivers/rubygem-minitar-cli/Makefile @@ -1,26 +1,25 @@ PORTNAME= minitar-cli PORTVERSION= 0.8 PORTREVISION= 1 CATEGORIES= archivers rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Library and command-line utility for tar archives WWW= https://github.com/halostatue/minitar LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/docs/bsdl.txt LICENSE_FILE_RUBY= ${WRKSRC}/docs/ruby.txt RUN_DEPENDS= rubygem-minitar>=0.8.0<1:archivers/rubygem-minitar \ rubygem-powerbar>=1.0<2:devel/rubygem-powerbar USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/minitar .include diff --git a/archivers/rubygem-minitar/Makefile b/archivers/rubygem-minitar/Makefile index 5131299bae0b..af78ea670364 100644 --- a/archivers/rubygem-minitar/Makefile +++ b/archivers/rubygem-minitar/Makefile @@ -1,20 +1,19 @@ PORTNAME= minitar PORTVERSION= 0.9 CATEGORIES= archivers rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Library and command-line utility for tar archives WWW= https://github.com/halostatue/minitar LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/docs/bsdl.txt LICENSE_FILE_RUBY= ${WRKSRC}/docs/ruby.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/archivers/rubygem-ruby-xz/Makefile b/archivers/rubygem-ruby-xz/Makefile index fc165d509b3f..8bb2bab64bb5 100644 --- a/archivers/rubygem-ruby-xz/Makefile +++ b/archivers/rubygem-ruby-xz/Makefile @@ -1,18 +1,17 @@ PORTNAME= ruby-xz PORTVERSION= 1.0.3 CATEGORIES= archivers rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby bindings for the liblzma library WWW= https://github.com/win93/ruby-xz LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/archivers/rubygem-rubyzip/Makefile b/archivers/rubygem-rubyzip/Makefile index 8d32e1cb28e5..6963b4a0a1b0 100644 --- a/archivers/rubygem-rubyzip/Makefile +++ b/archivers/rubygem-rubyzip/Makefile @@ -1,20 +1,19 @@ PORTNAME= rubyzip PORTVERSION= 2.3.2 CATEGORIES= archivers rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby module for reading and writing zip files WWW= https://github.com/rubyzip/rubyzip LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyzip_project .include diff --git a/archivers/rubygem-rubyzip13/Makefile b/archivers/rubygem-rubyzip13/Makefile index d555e8a38742..e5efa941cdbf 100644 --- a/archivers/rubygem-rubyzip13/Makefile +++ b/archivers/rubygem-rubyzip13/Makefile @@ -1,23 +1,22 @@ PORTNAME= rubyzip PORTVERSION= 1.3.0 CATEGORIES= archivers rubygems MASTER_SITES= RG PKGNAMESUFFIX= 13 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby module for reading and writing zip files WWW= https://github.com/rubyzip/rubyzip LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyzip_project PORTSCOUT= limit:^1\.3\. .include diff --git a/archivers/rubygem-rubyzip2/Makefile b/archivers/rubygem-rubyzip2/Makefile index 48734e51ecb1..f5d86bcacbdb 100644 --- a/archivers/rubygem-rubyzip2/Makefile +++ b/archivers/rubygem-rubyzip2/Makefile @@ -1,18 +1,17 @@ PORTNAME= rubyzip2 PORTVERSION= 2.0.2 CATEGORIES= archivers rubygems MASTER_SITES= RG MAINTAINER= hhyou@cs.nctu.edu.tw COMMENT= Ruby compatible Zip library WWW= https://github.com/postmodern/rubyzip2 NO_ARCH= yes -USE_RUBY= yes USES= cpe gem CPE_VENDOR= rubyzip_project CPE_PRODUCT= rubyzip .include diff --git a/archivers/rubygem-rubyzip20/Makefile b/archivers/rubygem-rubyzip20/Makefile index d682a9f6ba0e..737741b469b2 100644 --- a/archivers/rubygem-rubyzip20/Makefile +++ b/archivers/rubygem-rubyzip20/Makefile @@ -1,23 +1,22 @@ PORTNAME= rubyzip PORTVERSION= 2.0.0 CATEGORIES= archivers rubygems MASTER_SITES= RG PKGNAMESUFFIX= 20 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby module for reading and writing zip files WWW= https://github.com/rubyzip/rubyzip LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyzip_project PORTSCOUT= limit:^2\.0\. .include diff --git a/archivers/rubygem-snappy/Makefile b/archivers/rubygem-snappy/Makefile index 54728c8769e6..13f90d5799af 100644 --- a/archivers/rubygem-snappy/Makefile +++ b/archivers/rubygem-snappy/Makefile @@ -1,23 +1,22 @@ PORTNAME= snappy PORTVERSION= 0.0.17 PORTREVISION= 2 CATEGORIES= archivers rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Snappy binding for Ruby WWW= https://github.com/miyucy/snappy LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libsnappy.so:archivers/snappy USES= gem shebangfix -USE_RUBY= yes SHEBANG_FILES= smoke.sh \ vendor/snappy/config.status \ vendor/snappy/libtool .include diff --git a/audio/ruby-smf/Makefile b/audio/ruby-smf/Makefile index 288ef1f39967..71df33a0e52c 100644 --- a/audio/ruby-smf/Makefile +++ b/audio/ruby-smf/Makefile @@ -1,35 +1,33 @@ PORTNAME= smf PORTVERSION= 0.15.15 PORTREVISION= 1 CATEGORIES= audio ruby MASTER_SITES= http://www.funaba.org/archive/ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} DIST_SUBDIR= ruby MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby module to handle Standard MIDI Files WWW= http://www.funaba.org/code #smf LICENSE= BSD2CLAUSE -USE_RUBY= yes -USES= shebangfix -USE_RUBY_SETUP= yes +USES= ruby:setup shebangfix RUBY_SETUP= install.rb SHEBANG_FILES= sample/*.rb DOCS_EN= MANUAL.en MANUAL.en.html MANUAL.en.rd README.en DOCS_JA= MANUAL MANUAL.html MANUAL.rd README EXAMPLES= sample/* OPTIONS_DEFINE= DOCS EXAMPLES post-install: ${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR}/en ${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR}/ja ${MKDIR} ${STAGEDIR}${RUBY_MODEXAMPLESDIR} ${INSTALL_DATA} ${EXAMPLES:S,^,${WRKSRC}/,} ${STAGEDIR}${RUBY_MODEXAMPLESDIR}/ ${INSTALL_DATA} ${DOCS_EN:S,^,${WRKSRC}/,} ${STAGEDIR}${RUBY_MODDOCDIR}/en/ ${INSTALL_DATA} ${DOCS_JA:S,^,${WRKSRC}/,} ${STAGEDIR}${RUBY_MODDOCDIR}/ja/ .include diff --git a/audio/ruby-taglib/Makefile b/audio/ruby-taglib/Makefile index 87d1c8624939..bfed1fdd1a19 100644 --- a/audio/ruby-taglib/Makefile +++ b/audio/ruby-taglib/Makefile @@ -1,33 +1,32 @@ PORTNAME= taglib PORTVERSION= 1.1 PORTREVISION= 1 CATEGORIES= audio ruby MASTER_SITES= http://www.hakubi.us/wp-content/uploads/software/ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} DISTNAME= ruby-taglib-${PORTVERSION} DIST_SUBDIR= ruby MAINTAINER= t.hiroaki.209@gmail.com COMMENT= Ruby library wrapping the Taglib library WWW= https://www.hakubi.us/ruby-taglib/ LICENSE= MIT LIB_DEPENDS= libtag.so:audio/taglib NO_ARCH= yes NO_BUILD= yes -USE_RUBY= yes -USES= tar:bzip2 +USES= ruby tar:bzip2 OPTIONS_DEFINE= DOCS do-install: ${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR} ${INSTALL_DATA} ${WRKSRC}/lib/taglib.rb ${STAGEDIR}${RUBY_SITELIBDIR} do-install-DOCS-on: ${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR} ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${RUBY_MODDOCDIR} .include diff --git a/audio/rubygem-librmpd/Makefile b/audio/rubygem-librmpd/Makefile index 4d134b365c26..58b440749a26 100644 --- a/audio/rubygem-librmpd/Makefile +++ b/audio/rubygem-librmpd/Makefile @@ -1,18 +1,17 @@ PORTNAME= librmpd PORTVERSION= 0.1.1 CATEGORIES= audio rubygems MASTER_SITES= RG MAINTAINER= ports@FreeBSD.org COMMENT= Is a simple yet powerful Music Player Daemon library WWW= https://rubygems.org/gems/librmpd LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/audio/rubygem-ruby-mp3info/Makefile b/audio/rubygem-ruby-mp3info/Makefile index 50717b3b649a..7c1ef25f3c3b 100644 --- a/audio/rubygem-ruby-mp3info/Makefile +++ b/audio/rubygem-ruby-mp3info/Makefile @@ -1,16 +1,15 @@ PORTNAME= ruby-mp3info PORTVERSION= 0.8.10 CATEGORIES= audio rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby library to access information on mp3 files WWW= https://github.com/moumar/ruby-mp3info LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/audio/rubygem-ruby-ogginfo/Makefile b/audio/rubygem-ruby-ogginfo/Makefile index f7bf1876e94b..c8110aacd37c 100644 --- a/audio/rubygem-ruby-ogginfo/Makefile +++ b/audio/rubygem-ruby-ogginfo/Makefile @@ -1,16 +1,15 @@ PORTNAME= ruby-ogginfo PORTVERSION= 0.7.2 CATEGORIES= audio rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby library to access to information on ogg files WWW= https://github.com/moumar/ruby-ogginfo LICENSE= GPLv3 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/audio/rubygem-ruby-shout/Makefile b/audio/rubygem-ruby-shout/Makefile index 4c32fa50420f..6b373a492163 100644 --- a/audio/rubygem-ruby-shout/Makefile +++ b/audio/rubygem-ruby-shout/Makefile @@ -1,18 +1,17 @@ PORTNAME= ruby-shout PORTVERSION= 2.2.2 CATEGORIES= audio rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby binding to the libshout library WWW= https://github.com/niko/ruby-shout LICENSE= BSD3CLAUSE LIB_DEPENDS= libshout.so:audio/libshout CONFIGURE_ARGS= --with-opt-include="${LOCALBASE}/include" -USE_RUBY= yes USES= gem .include diff --git a/audio/squash/Makefile b/audio/squash/Makefile index ef94be5b4f5a..742c87dcc05b 100644 --- a/audio/squash/Makefile +++ b/audio/squash/Makefile @@ -1,57 +1,56 @@ PORTNAME= squash PORTVERSION= 1.0 PORTREVISION= 20 CATEGORIES= audio MASTER_SITES= SAVANNAH MAINTAINER= mandree@FreeBSD.org COMMENT= Learning console-based MP3/OGG player WWW= https://savannah.nongnu.org/projects/squash/ LICENSE= GPLv2+ LIB_DEPENDS+= libao.so:audio/libao \ libfftw.so:math/fftw \ libFLAC.so:audio/flac \ libid3.so:audio/id3lib \ libmad.so:audio/libmad \ 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 OPTIONS_DEFINE= DOCS .include PORTDOCS= * post-patch: @${REINPLACE_CMD} -e "s|--std=gnu99|--std=gnu99 ${CFLAGS}|; \ s|-Iinclude|-Iinclude -I${LOCALBASE}/include|; \ s|-ldl|-L${LOCALBASE}/lib|; \ s}^LDFLAGS.*:=\(.*\)}LDFLAGS :=\1 ${LDFLAGS}}" \ ${WRKSRC}/Makefile @${REINPLACE_CMD} -e "s,/usr/bin/ruby,${RUBY}," \ ${WRKSRC}/extra/*.rb @${REINPLACE_CMD} -e "s,/etc/squash.conf,${PREFIX}/etc/squash.conf," \ ${WRKSRC}/src/global.c do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/bin ${INSTALL_PROGRAM} ${WRKSRC}/squash ${STAGEDIR}${PREFIX}/bin .for FILE in collect_info edit_tag export_music import_music joystick uncollect_info ${INSTALL_SCRIPT} ${WRKSRC}/extra/${FILE}.rb ${STAGEDIR}${PREFIX}/bin .endfor ${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR} ${INSTALL_DATA} ${WRKSRC}/extra/musicdb_lib.rb ${STAGEDIR}${RUBY_SITELIBDIR} ${INSTALL_DATA} ${WRKSRC}/extra/squash.conf ${STAGEDIR}${PREFIX}/etc/squash.conf.dist ${MKDIR} ${STAGEDIR}${DOCSDIR} .for i in README doc/FEATURES doc/LOCKS doc/INSTALL doc/USERS_GUIDE ${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR} .endfor .include diff --git a/benchmarks/rubygem-benchmark-ips/Makefile b/benchmarks/rubygem-benchmark-ips/Makefile index ab6b94c63cd5..1e4bf56f7ae4 100644 --- a/benchmarks/rubygem-benchmark-ips/Makefile +++ b/benchmarks/rubygem-benchmark-ips/Makefile @@ -1,18 +1,17 @@ PORTNAME= benchmark-ips PORTVERSION= 2.10.0 CATEGORIES= benchmarks rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Iterations per second enhancement to Benchmark WWW= https://github.com/evanphx/benchmark-ips LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/benchmarks/rubygem-benchmark-memory/Makefile b/benchmarks/rubygem-benchmark-memory/Makefile index 669e3e5c9bdd..3132519614f8 100644 --- a/benchmarks/rubygem-benchmark-memory/Makefile +++ b/benchmarks/rubygem-benchmark-memory/Makefile @@ -1,20 +1,19 @@ PORTNAME= benchmark-memory PORTVERSION= 0.2.0 CATEGORIES= benchmarks rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Benchmark-style memory profiling for Ruby 2.1+ WWW= https://github.com/michaelherold/benchmark-memory LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-memory_profiler>=1<2:devel/rubygem-memory_profiler USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/benchmarks/rubygem-benchmark/Makefile b/benchmarks/rubygem-benchmark/Makefile index cadc85917316..57ec1e23d849 100644 --- a/benchmarks/rubygem-benchmark/Makefile +++ b/benchmarks/rubygem-benchmark/Makefile @@ -1,19 +1,18 @@ PORTNAME= benchmark PORTVERSION= 0.2.0 CATEGORIES= benchmarks rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Performance benchmarking library WWW= https://github.com/ruby/benchmark LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/benchmarks/rubygem-derailed_benchmarks/Makefile b/benchmarks/rubygem-derailed_benchmarks/Makefile index 85bcd871eba3..081a7c7945e6 100644 --- a/benchmarks/rubygem-derailed_benchmarks/Makefile +++ b/benchmarks/rubygem-derailed_benchmarks/Makefile @@ -1,32 +1,31 @@ PORTNAME= derailed_benchmarks PORTVERSION= 1.7.0 CATEGORIES= benchmarks rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Benchmarks for your whole Rails app WWW= https://github.com/schneems/derailed_benchmarks LICENSE= MIT RUN_DEPENDS= rubygem-benchmark-ips>=2.0.0:benchmarks/rubygem-benchmark-ips \ rubygem-get_process_mem>=0:devel/rubygem-get_process_mem \ rubygem-heapy>=0:devel/rubygem-heapy \ rubygem-memory_profiler>=0:devel/rubygem-memory_profiler \ rubygem-mini_histogram>=0:devel/rubygem-mini_histogram\ rubygem-rack>=1:www/rubygem-rack \ rubygem-rake>=10<14:devel/rubygem-rake \ rubygem-ruby-statistics>=2.1:devel/rubygem-ruby-statistics \ rubygem-thor>=0.19:devel/rubygem-thor \ rubygem-unicode_plot>=0.0.4<1.0.0:textproc/rubygem-unicode_plot USES= gem -USE_RUBY= yes CONFLICTS_INSTALL= rubygem-gitlab-derailed_benchmarks NO_ARCH= yes PLIST_FILES= bin/derailed .include diff --git a/benchmarks/rubygem-gitlab-derailed_benchmarks/Makefile b/benchmarks/rubygem-gitlab-derailed_benchmarks/Makefile index 96fec1507845..0f30ea12c3a2 100644 --- a/benchmarks/rubygem-gitlab-derailed_benchmarks/Makefile +++ b/benchmarks/rubygem-gitlab-derailed_benchmarks/Makefile @@ -1,30 +1,29 @@ PORTNAME= gitlab-derailed_benchmarks PORTVERSION= 1.6.1 CATEGORIES= benchmarks rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Benchmarks for your whole Rails app WWW= https://github.com/schneems/derailed_benchmarks LICENSE= MIT RUN_DEPENDS= rubygem-benchmark-ips>=2.0.0:benchmarks/rubygem-benchmark-ips \ rubygem-get_process_mem>=0:devel/rubygem-get_process_mem \ rubygem-heapy>=0:devel/rubygem-heapy \ rubygem-memory_profiler>=0:devel/rubygem-memory_profiler \ rubygem-rack>=1:www/rubygem-rack \ rubygem-rake>=10<14:devel/rubygem-rake \ rubygem-ruby-statistics>=2.1:devel/rubygem-ruby-statistics \ rubygem-thor>=0.19:devel/rubygem-thor USES= gem -USE_RUBY= yes CONFLICTS_INSTALL= rubygem-derailed_benchmarks NO_ARCH= yes PLIST_FILES= bin/derailed .include diff --git a/benchmarks/rubygem-railsbench/Makefile b/benchmarks/rubygem-railsbench/Makefile index 23a63a9e2b58..19d4195b2fb6 100644 --- a/benchmarks/rubygem-railsbench/Makefile +++ b/benchmarks/rubygem-railsbench/Makefile @@ -1,26 +1,25 @@ PORTNAME= railsbench PORTVERSION= 0.9.8 PORTREVISION= 1 CATEGORIES= benchmarks rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Scripts designed for benchmarking of Rails applications WWW= http://railsbench.rubyforge.org/ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/railsbench OPTIONS_DEFINE= GRUFF GRUFF_DESC= Plotting of perf data support using gruff GRUFF_RUN_DEPENDS= rubygem-gruff>=0:graphics/rubygem-gruff .include diff --git a/biology/ruby-bio/Makefile b/biology/ruby-bio/Makefile index 1591a41a08c6..5aa20725809e 100644 --- a/biology/ruby-bio/Makefile +++ b/biology/ruby-bio/Makefile @@ -1,49 +1,47 @@ PORTNAME= bio PORTVERSION= 1.5.1 CATEGORIES= biology ruby MASTER_SITES= http://bioruby.org/archive/ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} DISTNAME= ${PORTNAME}ruby-${PORTVERSION} DIST_SUBDIR= ruby MAINTAINER= mauricio@arareko.net COMMENT= Integrated environment for Bioinformatics written in Ruby WWW= http://bioruby.org/ LICENSE= GPLv2 RUBY LICENSE_COMB= dual OPTIONS_DEFINE= BDB4 MYSQL PGSQL DOCS 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 BDB4_RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/bdb.so:databases/ruby-bdb MYSQL_RUN_DEPENDS= rubygem-dbd-mysql>=0:databases/rubygem-dbd-mysql PGSQL_RUN_DEPENDS= rubygem-dbd-pg>=0:databases/rubygem-dbd-pg CONFLICTS_INSTALL= rubygem-bio-shell post-patch: ${RUBY} -i -pe 'gsub(%r"(/etc/bioinformatics/)") { "${PREFIX}" + $$1 }' \ ${WRKSRC}/doc/Tutorial.rd \ ${WRKSRC}/lib/bio/io/registry.rb do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/etc/bioinformatics .for f in etc/bioinformatics/seqdatabase.ini ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${PREFIX}/${f}.sample .endfor @${MKDIR} ${STAGEDIR}${RUBY_MODEXAMPLESDIR} ${CP} -R ${WRKSRC}/sample/ ${STAGEDIR}${RUBY_MODEXAMPLESDIR}/ @${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR}/ja ${INSTALL_DATA} ${WRKSRC}/ChangeLog ${WRKSRC}/README.rdoc ${STAGEDIR}${RUBY_MODDOCDIR}/ ${INSTALL_DATA} ${WRKSRC}/doc/*.rd ${STAGEDIR}${RUBY_MODDOCDIR}/ ${INSTALL_DATA} ${WRKSRC}/doc/*.rd.ja ${STAGEDIR}${RUBY_MODDOCDIR}/ja/ .include diff --git a/biology/rubygem-bio-executables/Makefile b/biology/rubygem-bio-executables/Makefile index 2d0913c0c8ac..5d95e6f1a212 100644 --- a/biology/rubygem-bio-executables/Makefile +++ b/biology/rubygem-bio-executables/Makefile @@ -1,28 +1,27 @@ PORTNAME= bio-executables PORTVERSION= 1.0.0 CATEGORIES= biology rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Collection of miscellaneous utilities for bioinformatics WWW= https://github.com/bioruby/bioruby-executables LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL LICENSE_FILE_RUBY= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-bio>=2.0.0:biology/rubygem-bio \ rubygem-bio-old-biofetch-emulator>=0.0.1:biology/rubygem-bio-old-biofetch-emulator USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/br_biofetch.rb \ bin/br_bioflat.rb \ bin/br_biogetseq.rb \ bin/br_pmfetch.rb .include diff --git a/biology/rubygem-bio-old-biofetch-emulator/Makefile b/biology/rubygem-bio-old-biofetch-emulator/Makefile index f3e35ae73d49..9f7f76f36c8a 100644 --- a/biology/rubygem-bio-old-biofetch-emulator/Makefile +++ b/biology/rubygem-bio-old-biofetch-emulator/Makefile @@ -1,20 +1,19 @@ PORTNAME= bio-old-biofetch-emulator PORTVERSION= 1.0.0 CATEGORIES= biology rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Emulate Bio::Fetch object WWW= https://github.com/ngoto/bioruby-old-biofetch-emulator LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-bio>=1.4.2:biology/rubygem-bio USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/biology/rubygem-bio-shell/Makefile b/biology/rubygem-bio-shell/Makefile index d18fcf757b84..dca9e7eca117 100644 --- a/biology/rubygem-bio-shell/Makefile +++ b/biology/rubygem-bio-shell/Makefile @@ -1,26 +1,25 @@ PORTNAME= bio-shell PORTVERSION= 1.0.1 CATEGORIES= biology rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Command-line interface on BioRuby WWW= https://github.com/bioruby/bioruby-shell LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL LICENSE_FILE_RUBY= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-bio>=2.0.0:biology/rubygem-bio USES= gem -USE_RUBY= yes NO_ARCH= yes CONFLICTS_INSTALL= ruby??-bio PLIST_FILES= bin/bioruby .include diff --git a/biology/rubygem-bio/Makefile b/biology/rubygem-bio/Makefile index 5c3300113218..f017f0fa4baa 100644 --- a/biology/rubygem-bio/Makefile +++ b/biology/rubygem-bio/Makefile @@ -1,20 +1,19 @@ PORTNAME= bio PORTVERSION= 2.0.4 CATEGORIES= biology rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Integrated environment for Bioinformatics written in Ruby WWW= http://bioruby.org/ LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL LICENSE_FILE_RUBY= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/cad/klayout/Makefile b/cad/klayout/Makefile index ec8979808fad..63b5542e49cc 100644 --- a/cad/klayout/Makefile +++ b/cad/klayout/Makefile @@ -1,83 +1,82 @@ PORTNAME= klayout PORTVERSION= 0.28.3 DISTVERSIONPREFIX= v CATEGORIES= cad MAINTAINER= hrs@FreeBSD.org COMMENT= Qt-based chip mask layout viewing and editing tool WWW= http://www.klayout.de/index.html LICENSE= GPLv2 BROKEN_i386= type 'hash' does not provide a call operator 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 CXXFLAGS+= -fdeclspec -fPIC -I${LOCALBASE}/include/qt5 \ ${QT5MODULES:S,^,-I${LOCALBASE}/include/qt5/Qt,} LDFLAGS+= ${LIBS} ${QT5MODULES:S,^,-lQt5,} \ -L${LOCALBASE}/lib/qt5 -lpthread QT5MODULES= Core Designer Gui Multimedia MultimediaWidgets \ Network PrintSupport Sql Svg Test Widgets Xml XmlPatterns MAKE_ENV= INSTALLROOT=${STAGEDIR} \ PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR} BUILD_WRKSRC= ${WRKSRC}/build-release INSTALL_WRKSRC= ${WRKSRC}/build-release TEST_WRKSRC= ${WRKSRC}/build-release PLIST_SUB= PORTVERSION=${PORTVERSION} PORTVERSION_R=${PORTVERSION:R} do-configure: cd ${WRKSRC} && \ ${SETENV} ${MAKE_ENV} ${SH} build.sh \ -with-qtbinding \ -rpath "${PREFIX}/lib/klayout" \ -prefix "${PREFIX}" \ -python ${PYTHON_CMD} \ -ruby ${RUBY} \ -dry-run post-configure: ${ECHO_CMD} "#define PLUGINS_BASEDIR \"${PREFIX}/lib/klayout\"" \ > ${WRKSRC}/src/lay/lay/laySystemPathsDefaults.h pre-install: for D in lib db tl rdb pya; do \ ${MKDIR} ${STAGEDIR}${PYTHON_SITELIBDIR}/klayout/$${D}; \ done for D in db_plugins lay_plugins; do \ ${MKDIR} ${STAGEDIR}${PREFIX}/lib/klayout/$${D}; \ done post-install: cd ${INSTALL_WRKSRC} && \ ${STRIP_CMD} `${FIND} libklayout*so* -type f` && \ ${MV} libklayout*so* ${STAGEDIR}${PREFIX}/lib/klayout .for D in db_plugins lay_plugins cd ${INSTALL_WRKSRC}/$D && \ ${STRIP_CMD} `${FIND} *so* -type f` && \ ${MV} *so* ${STAGEDIR}${PREFIX}/lib/klayout/$D .endfor cd ${INSTALL_WRKSRC}/pymod && \ ${STRIP_CMD} `${FIND} lib*so* -type f` && \ ${MV} lib*so* ${STAGEDIR}${PREFIX}/lib/klayout cd ${STAGEDIR}${PYTHON_SITELIBDIR}/klayout && \ ${STRIP_CMD} `${FIND} *.so -type f` cd ${INSTALL_WRKSRC} && \ ${INSTALL_PROGRAM} klayout strm* ${STAGEDIR}${PREFIX}/bin do-test: cd ${TEST_WRKSRC} && \ ${SETENV} QT_QPA_PLATFORM=offscreen TESTTMP=testtmp TESTSRC=.. \ LD_LIBRARY_PATH=${STAGEDIR}${PREFIX}/lib/klayout/db_plugins:${STAGEDIR}${PREFIX}/lib/klayout/lay_plugins \ ./ut_runner .include diff --git a/cad/rubygem-gdsii/Makefile b/cad/rubygem-gdsii/Makefile index 6af5f51158bd..ec0d5ef6247c 100644 --- a/cad/rubygem-gdsii/Makefile +++ b/cad/rubygem-gdsii/Makefile @@ -1,16 +1,15 @@ PORTNAME= ruby-gdsii PORTVERSION= 1.0.0 CATEGORIES= cad rubygems MASTER_SITES= RG MAINTAINER= hrs@FreeBSD.org COMMENT= GDSII reader and writer WWW= http://rubyforge.org/projects/gdsii/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include diff --git a/comms/rubygem-callsign/Makefile b/comms/rubygem-callsign/Makefile index d74dad92b13f..4a45a22537ef 100644 --- a/comms/rubygem-callsign/Makefile +++ b/comms/rubygem-callsign/Makefile @@ -1,20 +1,19 @@ PORTNAME= callsign PORTVERSION= 2.2.0 CATEGORIES= comms rubygems hamradio MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provides a Ruby-Frontend to callook.info ham Radio Callsign Lookup WWW= https://github.com/codeblock/callsign-gem LICENSE= MIT RUN_DEPENDS= rubygem-hashie>=0:devel/rubygem-hashie \ rubygem-json>=0:devel/rubygem-json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/comms/rubygem-ruby-termios/Makefile b/comms/rubygem-ruby-termios/Makefile index 366ba7efc764..a0a205b416c6 100644 --- a/comms/rubygem-ruby-termios/Makefile +++ b/comms/rubygem-ruby-termios/Makefile @@ -1,16 +1,15 @@ PORTNAME= ruby-termios PORTVERSION= 1.1.0 CATEGORIES= comms rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby interface to termios WWW= https://github.com/arika/ruby-termios LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual USES= gem -USE_RUBY= yes .include diff --git a/comms/rubygem-serialport/Makefile b/comms/rubygem-serialport/Makefile index 17f608faa7c2..d0a9e5a8591b 100644 --- a/comms/rubygem-serialport/Makefile +++ b/comms/rubygem-serialport/Makefile @@ -1,16 +1,15 @@ PORTNAME= serialport DISTVERSION= 1.3.2 CATEGORIES= comms rubygems MASTER_SITES= RG MAINTAINER= tj+freebsd_ports@a13.fr COMMENT= Library for using RS-232 serial ports WWW= https://rubygems.org/gems/serialport LICENSE= GPLv2 USES= gem shebangfix -USE_RUBY= yes SHEBANG_FILES= test/set_readtimeout.rb .include diff --git a/converters/rubygem-base32/Makefile b/converters/rubygem-base32/Makefile index 077408609c61..23a89754be1d 100644 --- a/converters/rubygem-base32/Makefile +++ b/converters/rubygem-base32/Makefile @@ -1,14 +1,13 @@ PORTNAME= base32 PORTVERSION= 0.3.4 CATEGORIES= converters rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby extension for base32 encoding and decoding WWW= https://github.com/stesla/base32 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/converters/rubygem-base64/Makefile b/converters/rubygem-base64/Makefile index 015710c14dab..cfff6d4de278 100644 --- a/converters/rubygem-base64/Makefile +++ b/converters/rubygem-base64/Makefile @@ -1,19 +1,18 @@ PORTNAME= base64 PORTVERSION= 0.1.1 CATEGORIES= converters rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Encode and decode binary data using a Base64 representation WWW= https://github.com/ruby/base64 LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/converters/rubygem-iconv/Makefile b/converters/rubygem-iconv/Makefile index e3c64231f58a..f00b45f9ea14 100644 --- a/converters/rubygem-iconv/Makefile +++ b/converters/rubygem-iconv/Makefile @@ -1,18 +1,17 @@ PORTNAME= iconv PORTVERSION= 1.0.8 CATEGORIES= converters rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= iconv wrapper library WWW= https://github.com/ruby/iconv LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE.txt USES= gem iconv -USE_RUBY= yes .include diff --git a/converters/rubygem-json-ld-preloaded/Makefile b/converters/rubygem-json-ld-preloaded/Makefile index 5e52cf293ee1..5955738d5e49 100644 --- a/converters/rubygem-json-ld-preloaded/Makefile +++ b/converters/rubygem-json-ld-preloaded/Makefile @@ -1,21 +1,20 @@ PORTNAME= json-ld-preloaded PORTVERSION= 3.2.2 CATEGORIES= converters rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= JSON-LD with preloaded contexts WWW= https://github.com/ruby-rdf/json-ld-preloaded LICENSE= UNLICENSE LICENSE_FILE= ${WRKSRC}/UNLICENSE RUN_DEPENDS= rubygem-json-ld>=3.2<4:converters/rubygem-json-ld \ rubygem-rdf>=3.2<4:www/rubygem-rdf USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/converters/rubygem-json-ld/Makefile b/converters/rubygem-json-ld/Makefile index e804d1b1e2c0..8f08e5aba913 100644 --- a/converters/rubygem-json-ld/Makefile +++ b/converters/rubygem-json-ld/Makefile @@ -1,28 +1,27 @@ PORTNAME= json-ld PORTVERSION= 3.2.3 PORTREVISION= 1 CATEGORIES= converters rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= JSON-LD reader/writer for Ruby WWW= https://github.com/ruby-rdf/json-ld LICENSE= UNLICENSE LICENSE_FILE= ${WRKSRC}/UNLICENSE RUN_DEPENDS= rubygem-json-canonicalization>=0.3<1:devel/rubygem-json-canonicalization \ rubygem-htmlentities>=4.3<5:textproc/rubygem-htmlentities \ rubygem-link_header>=0.0.8<1:www/rubygem-link_header \ rubygem-multi_json>=1.15<2:devel/rubygem-multi_json \ rubygem-rack22>=2.2,3<3,3:www/rubygem-rack22 \ rubygem-rdf>=3.2.9<4:www/rubygem-rdf USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/jsonld .include diff --git a/converters/rubygem-po_to_json/Makefile b/converters/rubygem-po_to_json/Makefile index f5a2431d0e2c..4779ab02671f 100644 --- a/converters/rubygem-po_to_json/Makefile +++ b/converters/rubygem-po_to_json/Makefile @@ -1,20 +1,19 @@ PORTNAME= po_to_json PORTVERSION= 1.0.1 CATEGORIES= converters rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Convert gettext PO files to JSON objects WWW= https://github.com/webhippie/po_to_json LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-json>=1.6.0:devel/rubygem-json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/converters/rubygem-ruby-bsdconv/Makefile b/converters/rubygem-ruby-bsdconv/Makefile index d4ace6c4f314..882d2bd23bd0 100644 --- a/converters/rubygem-ruby-bsdconv/Makefile +++ b/converters/rubygem-ruby-bsdconv/Makefile @@ -1,18 +1,17 @@ PORTNAME= ruby-bsdconv PORTVERSION= 11.3.1 CATEGORIES= converters rubygems MASTER_SITES= RG MAINTAINER= buganini@gmail.com COMMENT= Ruby wrapper for bsdconv WWW= https://github.com/buganini/ruby-bsdconv LICENSE= ISCL LIB_DEPENDS= libbsdconv.so:converters/bsdconv CONFIGURE_ARGS= --with-bsdconv-dir=${LOCALBASE} -USE_RUBY= yes USES= gem .include diff --git a/converters/rubygem-url_safe_base64/Makefile b/converters/rubygem-url_safe_base64/Makefile index 6e3527b4efbf..7ad9d9e012d1 100644 --- a/converters/rubygem-url_safe_base64/Makefile +++ b/converters/rubygem-url_safe_base64/Makefile @@ -1,17 +1,16 @@ PORTNAME= url_safe_base64 PORTVERSION= 0.2.2 CATEGORIES= converters rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Converts strings to/from base64 that contains only url-safe characters WWW= https://github.com/joenoon/url_safe_base64 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/converters/rubygem-xdr/Makefile b/converters/rubygem-xdr/Makefile index 309f03bfcb3e..0a1c739406b1 100644 --- a/converters/rubygem-xdr/Makefile +++ b/converters/rubygem-xdr/Makefile @@ -1,21 +1,20 @@ PORTNAME= xdr PORTVERSION= 3.0.3 CATEGORIES= converters rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= XDR Helper Library WWW= https://github.com/stellar/ruby-xdr LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activemodel60>=6.0:databases/rubygem-activemodel60 \ rubygem-activesupport60>=6.0:devel/rubygem-activesupport60 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/puppetdb-terminus6/Makefile b/databases/puppetdb-terminus6/Makefile index 827e90399d8c..05a79a1ec896 100644 --- a/databases/puppetdb-terminus6/Makefile +++ b/databases/puppetdb-terminus6/Makefile @@ -1,27 +1,26 @@ PORTNAME= puppetdb-terminus PORTVERSION= 6.22.1 CATEGORIES= databases ruby MASTER_SITES= https://downloads.puppetlabs.com/puppetdb/ PKGNAMESUFFIX= 6 DISTNAME= puppetdb-${PORTVERSION} MAINTAINER= puppet@FreeBSD.org COMMENT= PuppetDB storeconfigs backend terminus module WWW= https://docs.puppetlabs.com/puppetdb/latest/ LICENSE= APACHE20 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 do-install: @cd ${WRKSRC} && ${SETENV} DESTDIR=${STAGEDIR} ${GMAKE} install-puppetdb-termini .include diff --git a/databases/puppetdb-terminus7/Makefile b/databases/puppetdb-terminus7/Makefile index 625748f1d1fb..753ab380457f 100644 --- a/databases/puppetdb-terminus7/Makefile +++ b/databases/puppetdb-terminus7/Makefile @@ -1,27 +1,26 @@ PORTNAME= puppetdb-terminus PORTVERSION= 7.12.0 CATEGORIES= databases ruby MASTER_SITES= https://downloads.puppetlabs.com/puppetdb/ PKGNAMESUFFIX= 7 DISTNAME= puppetdb-${PORTVERSION} MAINTAINER= puppet@FreeBSD.org COMMENT= PuppetDB storeconfigs backend terminus module WWW= https://docs.puppetlabs.com/puppetdb/latest/ LICENSE= APACHE20 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 do-install: @cd ${WRKSRC} && ${SETENV} DESTDIR=${STAGEDIR} ${GMAKE} install-puppetdb-termini .include diff --git a/databases/redis/Makefile b/databases/redis/Makefile index e17a04de2d4e..ca13a0446542 100644 --- a/databases/redis/Makefile +++ b/databases/redis/Makefile @@ -1,125 +1,125 @@ PORTNAME= redis DISTVERSION= 7.0.7 CATEGORIES= databases MASTER_SITES= https://download.redis.io/releases/ MAINTAINER= yasu@FreeBSD.org COMMENT= Persistent key-value database with built-in net interface WWW= https://redis.io/ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING USES+= compiler:c11 cpe gmake CPE_VENDOR= redislabs MAKE_ENV= OPTIMIZATION= \ V=yo CONFLICTS_INSTALL= redis-devel redis6 # etc/rc.d/redis OPTIONS_DEFINE= JEMALLOC TESTS TLS TRIB OPTIONS_RADIO= EXTLUA OPTIONS_RADIO_EXTLUA= LUA LUAJIT OPTIONS_SUB= yes OPTIONS_DEFAULT+= TLS JEMALLOC_DESC= Use jemalloc LUAJIT_DESC= Use luajit instead of builtin lua LUA_DESC= Use lang/lua instead of builtin lua TESTS_DESC= Install lang/tcl for redis unit tests TLS_DESC= Use TLS (openssl req.) TRIB_DESC= Install redis-trib.rb (lang/ruby req.) JEMALLOC_MAKE_ENV= USE_JEMALLOC=yes LUAJIT_BROKEN= Fails to link LUAJIT_USES= luajit LUAJIT_VARS= _ADDFLAGS=true LUA_BROKEN= Fails to link LUA_USES= lua:51 LUA_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-src-Makefile.lua LUA_VARS= _ADDFLAGS=true TESTS_USES= tcl:build TLS_USES= ssl 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 .if ${ARCH} == i386 && !${CFLAGS:M-march=*} # Needed for __atomic_fetch_add_8 USE_GCC= yes CFLAGS+= -march=i586 .endif .if defined(_ADDFLAGS) CFLAGS+= -fPIC LDFLAGS+= -Wl,-E .endif .if ${PORT_OPTIONS:MLUAJIT} . if ${LUAJIT_VER} == luajit EXTRA_PATCHES= ${PATCHDIR}/extra-patch-src-Makefile.luajit . else EXTRA_PATCHES= ${PATCHDIR}/extra-patch-src-Makefile.luajit-or \ ${PATCHDIR}/extra-patch-src-function_lua.c \ ${PATCHDIR}/extra-patch-deps_lua_src_lua__cjson.c . endif .endif LDFLAGS+= -lpthread -lm -lexecinfo CONFLICTS?= redis-devel-* redis6-* redis62-* USE_RC_SUBR= redis sentinel BIN_FILES= redis-benchmark redis-check-aof redis-check-rdb redis-cli \ redis-sentinel redis-server USERS= redis GROUPS= redis REDIS_DBDIR?= /var/db/redis REDIS_RUNDIR?= /var/run/redis REDIS_LOGDIR?= /var/log/redis SUB_FILES= pkg-message SUB_LIST+= PORTNAME=${PORTNAME} \ REDIS_DBDIR=${REDIS_DBDIR} \ REDIS_LOGDIR=${REDIS_LOGDIR} \ REDIS_RUNDIR=${REDIS_RUNDIR} \ REDIS_USER=${USERS} PLIST_SUB+= REDIS_DBDIR=${REDIS_DBDIR} \ REDIS_GROUP=${GROUPS} \ REDIS_LOGDIR=${REDIS_LOGDIR} \ REDIS_RUNDIR=${REDIS_RUNDIR} \ REDIS_USER=${USERS} post-patch-JEMALLOC-on: @${REINPLACE_CMD} '35s!Linux!FreeBSD!g' ${WRKSRC}/src/Makefile post-patch-LUA-on: @cd ${WRKSRC}/deps/lua/src && ${CP} fpconv.* lua_* strbuf.* ${WRKSRC}/src/ post-patch-LUAJIT-on: post-patch-LUA-on post-patch-LUAJITOR-on: post-patch-LUA-on post-build: ${SED} ${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ ${WRKSRC}/redis.conf > ${WRKDIR}/redis.conf do-install: ${INSTALL_PROGRAM} ${BIN_FILES:C!^!${WRKSRC}/src/!} ${STAGEDIR}${PREFIX}/bin/ ${INSTALL_DATA} ${WRKDIR}/redis.conf ${STAGEDIR}${PREFIX}/etc/redis.conf.sample ${INSTALL_DATA} ${WRKSRC}/sentinel.conf ${STAGEDIR}${PREFIX}/etc/sentinel.conf.sample ${MKDIR} ${STAGEDIR}${REDIS_LOGDIR} \ ${STAGEDIR}${REDIS_DBDIR} \ ${STAGEDIR}${REDIS_RUNDIR} do-install-TRIB-on: ${INSTALL_SCRIPT} ${WRKSRC}/src/redis-trib.rb ${STAGEDIR}${PREFIX}/bin/ do-test: @cd ${WRKSRC} && ${TCLSH} tests/test_helper.tcl .include diff --git a/databases/redis6/Makefile b/databases/redis6/Makefile index 6e30e1d7ff76..0e19b78d9621 100644 --- a/databases/redis6/Makefile +++ b/databases/redis6/Makefile @@ -1,123 +1,123 @@ PORTNAME= redis PORTVERSION= 6.0.16 PORTREVISION= 3 CATEGORIES= databases MASTER_SITES= https://download.redis.io/releases/ PKGNAMESUFFIX= 6 MAINTAINER= yasu@FreeBSD.org COMMENT= Persistent key-value database with built-in net interface WWW= https://redis.io/ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING USES+= compiler:c11 gmake MAKE_ENV= OPTIMIZATION= \ V=yo CONFLICTS_INSTALL= redis redis-devel # etc/rc.d/redis OPTIONS_DEFINE= JEMALLOC TESTS TLS TRIB OPTIONS_DEFAULT= TLS OPTIONS_RADIO= EXTLUA OPTIONS_RADIO_EXTLUA= LUA LUAJIT OPTIONS_SUB= yes JEMALLOC_DESC= Use jemalloc LUAJIT_DESC= Use luajit instead of builtin lua LUA_DESC= Use lang/lua instead of builtin lua TESTS_DESC= Install lang/tcl for redis unit tests TLS_DESC= Use TLS (openssl req.) TRIB_DESC= Install redis-trib.rb (lang/ruby req.) JEMALLOC_MAKE_ENV= USE_JEMALLOC=yes LUAJIT_USES= luajit LUAJIT_VARS= _ADDFLAGS=true LUA_USES= lua:51 LUA_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-src-Makefile.lua LUA_VARS= _ADDFLAGS=true TESTS_USES= tcl:build TLS_USES= ssl 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 .if ${ARCH} == i386 && !${CFLAGS:M-march=*} # Needed for __atomic_fetch_add_8 USE_GCC= yes CFLAGS+= -march=i586 .endif .if defined(_ADDFLAGS) CFLAGS+= -fPIC LDFLAGS+= -Wl,-E .endif .if ${PORT_OPTIONS:MLUAJIT} . if ${LUAJIT_VER} == luajit EXTRA_PATCHES= ${PATCHDIR}/extra-patch-src-Makefile.luajit . else EXTRA_PATCHES= ${PATCHDIR}/extra-patch-src-Makefile.luajit-or \ ${PATCHDIR}/extra-patch-deps_lua_src_lua__cjson.c . endif .endif LDFLAGS+= -lpthread -lm -lexecinfo CONFLICTS?= redis-[1-9].* redis-devel-* redis62-* USE_RC_SUBR= redis sentinel BIN_FILES= redis-benchmark redis-check-aof redis-check-rdb redis-cli \ redis-sentinel redis-server USERS= redis GROUPS= redis REDIS_DBDIR?= /var/db/redis REDIS_RUNDIR?= /var/run/redis REDIS_LOGDIR?= /var/log/redis SUB_FILES= pkg-message SUB_LIST+= PORTNAME=${PORTNAME} \ REDIS_DBDIR=${REDIS_DBDIR} \ REDIS_LOGDIR=${REDIS_LOGDIR} \ REDIS_RUNDIR=${REDIS_RUNDIR} \ REDIS_USER=${USERS} PLIST_SUB+= REDIS_DBDIR=${REDIS_DBDIR} \ REDIS_GROUP=${GROUPS} \ REDIS_LOGDIR=${REDIS_LOGDIR} \ REDIS_RUNDIR=${REDIS_RUNDIR} \ REDIS_USER=${USERS} post-patch-JEMALLOC-on: @${REINPLACE_CMD} '35s!Linux!FreeBSD!g' ${WRKSRC}/src/Makefile post-patch-LUA-on: @cd ${WRKSRC}/deps/lua/src && ${CP} fpconv.* lua_* strbuf.* ${WRKSRC}/src/ post-patch-LUAJIT-on: post-patch-LUA-on post-patch-LUAJITOR-on: post-patch-LUA-on post-build: ${SED} ${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ ${WRKSRC}/redis.conf > ${WRKDIR}/redis.conf do-install: ${INSTALL_PROGRAM} ${BIN_FILES:C!^!${WRKSRC}/src/!} ${STAGEDIR}${PREFIX}/bin/ ${INSTALL_DATA} ${WRKDIR}/redis.conf ${STAGEDIR}${PREFIX}/etc/redis.conf.sample ${INSTALL_DATA} ${WRKSRC}/sentinel.conf ${STAGEDIR}${PREFIX}/etc/sentinel.conf.sample ${MKDIR} ${STAGEDIR}${REDIS_LOGDIR} \ ${STAGEDIR}${REDIS_DBDIR} \ ${STAGEDIR}${REDIS_RUNDIR} do-install-TRIB-on: ${INSTALL_SCRIPT} ${WRKSRC}/src/redis-trib.rb ${STAGEDIR}${PREFIX}/bin/ do-test: @cd ${WRKSRC} && ${TCLSH} tests/test_helper.tcl .include diff --git a/databases/redis62/Makefile b/databases/redis62/Makefile index c482e4dcfa92..e43f0e50768f 100644 --- a/databases/redis62/Makefile +++ b/databases/redis62/Makefile @@ -1,125 +1,125 @@ PORTNAME= redis DISTVERSION= 6.2.8 CATEGORIES= databases MASTER_SITES= https://download.redis.io/releases/ PKGNAMESUFFIX= 62 MAINTAINER= yasu@FreeBSD.org COMMENT= Persistent key-value database with built-in net interface WWW= https://redis.io/ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING USES+= compiler:c11 cpe gmake CPE_VENDOR= redislabs CPE_PRODUCT= redis MAKE_ENV= OPTIMIZATION= \ V=yo OPTIONS_DEFINE= JEMALLOC TESTS TLS TRIB OPTIONS_DEFAULT= TLS OPTIONS_RADIO= EXTLUA OPTIONS_RADIO_EXTLUA= LUA LUAJIT OPTIONS_SUB= yes JEMALLOC_DESC= Use jemalloc LUAJIT_DESC= Use luajit instead of builtin lua LUA_DESC= Use lang/lua instead of builtin lua TESTS_DESC= Install lang/tcl for redis unit tests TLS_DESC= Use TLS (openssl req.) TRIB_DESC= Install redis-trib.rb (lang/ruby req.) JEMALLOC_MAKE_ENV= USE_JEMALLOC=yes LUAJIT_BROKEN= Fails to link LUAJIT_USES= luajit LUAJIT_VARS= _ADDFLAGS=true LUA_BROKEN= Fails to link LUA_USES= lua:51 LUA_EXTRA_PATCHES= ${PATCHDIR}/extra-patch-src-Makefile.lua LUA_VARS= _ADDFLAGS=true TESTS_USES= tcl:build TLS_USES= ssl 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 .if ${ARCH} == i386 && !${CFLAGS:M-march=*} # Needed for __atomic_fetch_add_8 USE_GCC= yes CFLAGS+= -march=i586 .endif .if defined(_ADDFLAGS) CFLAGS+= -fPIC LDFLAGS+= -Wl,-E .endif .if ${PORT_OPTIONS:MLUAJIT} . if ${LUAJIT_VER} == luajit EXTRA_PATCHES= ${PATCHDIR}/extra-patch-src-Makefile.luajit . else EXTRA_PATCHES= ${PATCHDIR}/extra-patch-src-Makefile.luajit-or \ ${PATCHDIR}/extra-patch-deps_lua_src_lua__cjson.c . endif .endif LDFLAGS+= -lpthread -lm -lexecinfo CONFLICTS?= redis-[1-9].* redis-devel-* redis6-* USE_RC_SUBR= redis sentinel BIN_FILES= redis-benchmark redis-check-aof redis-check-rdb redis-cli \ redis-sentinel redis-server USERS= redis GROUPS= redis REDIS_DBDIR?= /var/db/redis REDIS_RUNDIR?= /var/run/redis REDIS_LOGDIR?= /var/log/redis SUB_FILES= pkg-message SUB_LIST+= PORTNAME=${PORTNAME} \ REDIS_DBDIR=${REDIS_DBDIR} \ REDIS_LOGDIR=${REDIS_LOGDIR} \ REDIS_RUNDIR=${REDIS_RUNDIR} \ REDIS_USER=${USERS} PLIST_SUB+= REDIS_DBDIR=${REDIS_DBDIR} \ REDIS_GROUP=${GROUPS} \ REDIS_LOGDIR=${REDIS_LOGDIR} \ REDIS_RUNDIR=${REDIS_RUNDIR} \ REDIS_USER=${USERS} post-patch-JEMALLOC-on: @${REINPLACE_CMD} '35s!Linux!FreeBSD!g' ${WRKSRC}/src/Makefile post-patch-LUA-on: @cd ${WRKSRC}/deps/lua/src && ${CP} fpconv.* lua_* strbuf.* ${WRKSRC}/src/ post-patch-LUAJIT-on: post-patch-LUA-on post-patch-LUAJITOR-on: post-patch-LUA-on post-build: ${SED} ${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \ ${WRKSRC}/redis.conf > ${WRKDIR}/redis.conf do-install: ${INSTALL_PROGRAM} ${BIN_FILES:C!^!${WRKSRC}/src/!} ${STAGEDIR}${PREFIX}/bin/ ${INSTALL_DATA} ${WRKDIR}/redis.conf ${STAGEDIR}${PREFIX}/etc/redis.conf.sample ${INSTALL_DATA} ${WRKSRC}/sentinel.conf ${STAGEDIR}${PREFIX}/etc/sentinel.conf.sample ${MKDIR} ${STAGEDIR}${REDIS_LOGDIR} \ ${STAGEDIR}${REDIS_DBDIR} \ ${STAGEDIR}${REDIS_RUNDIR} do-install-TRIB-on: ${INSTALL_SCRIPT} ${WRKSRC}/src/redis-trib.rb ${STAGEDIR}${PREFIX}/bin/ do-test: @cd ${WRKSRC} && ${TCLSH} tests/test_helper.tcl .include diff --git a/databases/rrdtool12/Makefile b/databases/rrdtool12/Makefile index 14d6e0a62ff3..f4845f0e671f 100644 --- a/databases/rrdtool12/Makefile +++ b/databases/rrdtool12/Makefile @@ -1,74 +1,74 @@ PORTNAME= rrdtool PORTVERSION= 1.2.30 PORTREVISION= 8 CATEGORIES= databases graphics MASTER_SITES= http://oss.oetiker.ch/rrdtool/pub/ PKGNAMESUFFIX= 12 MAINTAINER= beat@FreeBSD.org COMMENT= Round Robin Database Tools v1.2 WWW= https://www.rrdtool.org/ LIB_DEPENDS= libfreetype.so:print/freetype2 \ libart_lgpl_2.so:graphics/libart_lgpl \ libpng.so:graphics/png CONFLICTS_INSTALL= rrdtool # include/rrd.h USE_LDCONFIG= yes GNU_CONFIGURE= yes USES= cpe gmake libtool CPE_VENDOR= ${PORTNAME}_project CONFIGURE_ARGS= --disable-tcl --disable-python OPTIONS_DEFINE= RUBY PERL DOCS EXAMPLES OPTIONS_DEFAULT= PERL .include .if ${PORT_OPTIONS:MRUBY} -USE_RUBY= yes +USES+= ruby PLIST_SUB+= WITH_RUBY="" CONFIGURE_ARGS+= --enable-ruby .else CONFIGURE_ARGS+= --disable-ruby PLIST_SUB+= WITH_RUBY="@comment " .endif .if ${PORT_OPTIONS:MPERL} USES+= perl5 USE_PERL5= run build CONFIGURE_ARGS+= --enable-perl --enable-perl-site-install PLIST_SUB+= WITH_PERL="" .else CONFIGURE_ARGS+= --disable-perl PLIST_SUB+= WITH_PERL="@comment " .endif CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/libart-2.0 -I${LOCALBASE}/include/freetype2 LDFLAGS+= -L${LOCALBASE}/lib CFLAGS:= ${CFLAGS:N-ffast-math} post-extract: .if empty(PORT_OPTIONS:MDOCS) @${REINPLACE_CMD} -e 's/install-idocDATA install-ihtmlDATA//g' \ -e 's/^ cd .* rrdtool.html index.html/ #/' \ ${WRKSRC}/doc/Makefile.in .endif .if empty(PORT_OPTIONS:MEXAMPLES) ${REINPLACE_CMD} -e '/^SUBDIRS = /s| examples | |' \ ${WRKSRC}/Makefile.in .endif post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/librrd.so.2 ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/librrd_th.so.2 .if !defined(BATCH) && empty(PORT_OPTIONS:MEXAMPLES) @${ECHO_MSG} "" @${ECHO_MSG} "############################################################################" @${ECHO_MSG} "# See ${PREFIX}/share/examples/rrdtool for some demonstration code #" @${ECHO_MSG} "############################################################################" .endif .include diff --git a/databases/ruby-bdb/Makefile b/databases/ruby-bdb/Makefile index b4b1f20ec0f3..8873e3eee0f0 100644 --- a/databases/ruby-bdb/Makefile +++ b/databases/ruby-bdb/Makefile @@ -1,68 +1,66 @@ PORTNAME= bdb PORTVERSION= 0.6.6 PORTREVISION= 8 CATEGORIES= databases ruby MASTER_SITES= ftp://ftp.idaemons.org/pub/distfiles/ruby/ \ http://idaemons.org/distfiles/ruby/ \ LOCAL/knu PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} DIST_SUBDIR= ruby MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby interface to Oracle Berkeley DB revision 2 or later WWW= https://github.com/knu/ruby-bdb LICENSE= RUBY BROKEN_RUBY32= yes 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 \ examples/log.rb examples/queue.rb examples/recno.rb \ examples/record.rb examples/replication/base/b.rb \ examples/replication/base/cl.rb examples/replication/base/ma.rb \ examples/replication/base/mc.rb examples/replication/base/op.rb \ examples/replication/mgr/b.rb examples/txn.rb examples/zeroc.rb CONFIGURE_ARGS= --with-db-include=${BDB_INCLUDE_DIR} \ --with-db-lib=${BDB_LIB_DIR} ALL_TARGET= all rdoc INSTALL_TARGET= site-install DOCS= Changes README.en bdb.rd docs/*.rd DOCSDIR= ${RUBY_MODDOCDIR} EXAMPLESDIR= ${RUBY_MODEXAMPLESDIR} SHAREMODE= 0644 PLIST_FILES= ${RUBY_SITEARCHLIBDIR}/bdb.so PORTDOCS= * PORTEXAMPLES= * OPTIONS_DEFINE= DOCS EXAMPLES post-patch: @${RM} ${WRKSRC}/docs/*.orig post-install: ${STRIP_CMD} ${STAGEDIR}${RUBY_SITEARCHLIBDIR}/bdb.so post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR}/doc (cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${STAGEDIR}${DOCSDIR}) (cd ${WRKSRC}/docs/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR}/doc) post-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${EXAMPLESDIR}/ (cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} "! -empty") do-test: @${MKDIR} ${BUILD_WRKSRC}/tmp (cd ${BUILD_WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} \ ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} test) .include diff --git a/databases/ruby-qdbm/Makefile b/databases/ruby-qdbm/Makefile index 58f30af081b6..cae7a0573229 100644 --- a/databases/ruby-qdbm/Makefile +++ b/databases/ruby-qdbm/Makefile @@ -1,38 +1,37 @@ PORTNAME= qdbm PORTVERSION= 1.8.78 PORTREVISION= 4 CATEGORIES= databases MASTER_SITES= https://dbmx.net/qdbm/ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} MAINTAINER= hrs@FreeBSD.org COMMENT= Ruby API for QDBM WWW= https://dbmx.net/qdbm/ LICENSE= LGPL21 LICENSE_FILE= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/COPYING 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 CONFIGURE_ENV= ac_cv_lib_iconv_main=yes MAKE_ENV= CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ LOCALBASE="${LOCALBASE}" CFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib post-configure: cd ${WRKSRC} && ${SETENV} RB_USER_INSTALL=yes ${MAKE_ENV} \ ${MAKE} configure post-install: ${STRIP_CMD} ${STAGEDIR}${RUBY_SITEARCHLIBDIR}/mod_depot.so \ ${STAGEDIR}${RUBY_SITEARCHLIBDIR}/mod_curia.so \ ${STAGEDIR}${RUBY_SITEARCHLIBDIR}/mod_villa.so .include diff --git a/databases/ruby-tokyocabinet/Makefile b/databases/ruby-tokyocabinet/Makefile index 9449e3e54478..8ecb0082ded9 100644 --- a/databases/ruby-tokyocabinet/Makefile +++ b/databases/ruby-tokyocabinet/Makefile @@ -1,30 +1,29 @@ PORTNAME= tokyocabinet PORTVERSION= 1.31 CATEGORIES= databases ruby MASTER_SITES= https://dbmx.net/${PORTNAME}/rubypkg/ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} DISTNAME= ${PORTNAME}-ruby-${PORTVERSION} DIST_SUBDIR= ruby MAINTAINER= dgerow@afflictions.org COMMENT= Ruby interface to the Tokyo Cabinet DB engine WWW= https://dbmx.net/tokyocabinet/ LIB_DEPENDS= libtokyocabinet.so:databases/tokyocabinet -USE_RUBY= yes -USE_RUBY_EXTCONF= yes +USES= ruby:extconf INSTALL_TARGET= site-install DOCS= doc/* OPTIONS_DEFINE= DOCS post-install: ${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR} .for f in ${DOCS} ${CP} -R ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ .endfor .include diff --git a/databases/ruby-xapian/Makefile b/databases/ruby-xapian/Makefile index f03b6dee6b82..bd477d39576e 100644 --- a/databases/ruby-xapian/Makefile +++ b/databases/ruby-xapian/Makefile @@ -1,50 +1,49 @@ PORTNAME= xapian PORTVERSION= 1.4.21 DISTVERSIONPREFIX= bindings- CATEGORIES= databases ruby MASTER_SITES= https://oligarchy.co.uk/xapian/${PORTVERSION}/ \ LOCAL/sunpoet PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding for Xapian WWW= https://xapian.org/ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= rubygem-rdoc>=0:devel/rubygem-rdoc \ 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} \ --enable-shared \ --enable-static \ --with-ruby \ --without-csharp \ --without-java \ --without-lua \ --without-perl \ --without-php \ --without-php7 \ --without-python \ --without-python3 \ --without-tcl GNU_CONFIGURE= yes INSTALL_TARGET= install-strip USE_CXXSTD= c++11 CONFLICTS_INSTALL= xapian-bindings12 PORTSCOUT= limitw:1,even OPTIONS_DEFINE= DOCS post-patch: @${REINPLACE_CMD} -e 's|-lstdc++||g' ${WRKSRC}/configure .include diff --git a/databases/rubygem-active_model_serializers/Makefile b/databases/rubygem-active_model_serializers/Makefile index a7815ccd2169..d7542ec5eef0 100644 --- a/databases/rubygem-active_model_serializers/Makefile +++ b/databases/rubygem-active_model_serializers/Makefile @@ -1,23 +1,22 @@ PORTNAME= active_model_serializers PORTVERSION= 0.10.13 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Conventions-based JSON generation for Rails WWW= https://github.com/rails-api/active_model_serializers LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activemodel5>=4.1<7.1:databases/rubygem-activemodel5 \ rubygem-actionpack5>=4.1<7.1:www/rubygem-actionpack5 \ rubygem-case_transform>=0.2:textproc/rubygem-case_transform \ rubygem-jsonapi-renderer>=0.1.1<0.3:devel/rubygem-jsonapi-renderer USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-active_model_serializers61/Makefile b/databases/rubygem-active_model_serializers61/Makefile index 268929acdb3b..205537524588 100644 --- a/databases/rubygem-active_model_serializers61/Makefile +++ b/databases/rubygem-active_model_serializers61/Makefile @@ -1,24 +1,23 @@ PORTNAME= active_model_serializers PORTVERSION= 0.10.13 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= bofh@FreeBSD.org COMMENT= Conventions-based JSON generation for Rails WWW= https://github.com/rails-api/active_model_serializers LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activemodel61>=4.1<7.1:databases/rubygem-activemodel61 \ rubygem-actionpack61>=4.1<7.1:www/rubygem-actionpack61 \ rubygem-case_transform61>=0.2:textproc/rubygem-case_transform61 \ rubygem-jsonapi-renderer>=0.1.1<0.3:devel/rubygem-jsonapi-renderer USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-active_record_query_trace/Makefile b/databases/rubygem-active_record_query_trace/Makefile index fbccd6a84bd8..834b2928e737 100644 --- a/databases/rubygem-active_record_query_trace/Makefile +++ b/databases/rubygem-active_record_query_trace/Makefile @@ -1,17 +1,16 @@ PORTNAME= active_record_query_trace PORTVERSION= 1.8 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Print stack trace of all queries to the Rails log WWW= https://github.com/brunofacca/active-record-query-trace LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-activemodel-serializers-xml/Makefile b/databases/rubygem-activemodel-serializers-xml/Makefile index ddf4d4801f4f..67d2eeaabc5f 100644 --- a/databases/rubygem-activemodel-serializers-xml/Makefile +++ b/databases/rubygem-activemodel-serializers-xml/Makefile @@ -1,22 +1,21 @@ PORTNAME= activemodel-serializers-xml PORTVERSION= 1.0.2 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= XML serialization for Active Model objects and Active Record models WWW= https://github.com/rails/activemodel-serializers-xml LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activemodel5>=5.0:databases/rubygem-activemodel5 \ rubygem-activesupport5>=5.0:devel/rubygem-activesupport5 \ rubygem-builder>=3.1<4:devel/rubygem-builder USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-activemodel4/Makefile b/databases/rubygem-activemodel4/Makefile index 721dcd34df68..dca7169a79dc 100644 --- a/databases/rubygem-activemodel4/Makefile +++ b/databases/rubygem-activemodel4/Makefile @@ -1,24 +1,23 @@ PORTNAME= activemodel PORTVERSION= 4.2.11.3 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Toolkit for building modeling frameworks WWW= https://github.com/rails/rails/tree/main/activemodel LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport4>=${PORTVERSION}:devel/rubygem-activesupport4 \ rubygem-builder>=3.1<4:devel/rubygem-builder USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^4\.2\. .include diff --git a/databases/rubygem-activemodel5/Makefile b/databases/rubygem-activemodel5/Makefile index c8267ca5f3c0..732e3a84661a 100644 --- a/databases/rubygem-activemodel5/Makefile +++ b/databases/rubygem-activemodel5/Makefile @@ -1,23 +1,22 @@ PORTNAME= activemodel PORTVERSION= 5.1.7 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Toolkit for building modeling frameworks WWW= https://github.com/rails/rails/tree/main/activemodel LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport5>=${PORTVERSION}:devel/rubygem-activesupport5 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^5\.1\. .include diff --git a/databases/rubygem-activemodel50/Makefile b/databases/rubygem-activemodel50/Makefile index 976b1ea42337..5a9be52a37b6 100644 --- a/databases/rubygem-activemodel50/Makefile +++ b/databases/rubygem-activemodel50/Makefile @@ -1,23 +1,22 @@ PORTNAME= activemodel PORTVERSION= 5.0.7.2 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Toolkit for building modeling frameworks WWW= https://github.com/rails/rails/tree/main/activemodel LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport50>=${PORTVERSION}:devel/rubygem-activesupport50 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^5\.0\. .include diff --git a/databases/rubygem-activemodel52/Makefile b/databases/rubygem-activemodel52/Makefile index f1e8208ed8e8..847de092de37 100644 --- a/databases/rubygem-activemodel52/Makefile +++ b/databases/rubygem-activemodel52/Makefile @@ -1,23 +1,22 @@ PORTNAME= activemodel PORTVERSION= 5.2.8.1 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 52 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Toolkit for building modeling frameworks WWW= https://github.com/rails/rails/tree/main/activemodel LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport52>=${PORTVERSION}:devel/rubygem-activesupport52 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^5\.2\. .include diff --git a/databases/rubygem-activemodel60/Makefile b/databases/rubygem-activemodel60/Makefile index 7016a42e708a..ed3bb4952e88 100644 --- a/databases/rubygem-activemodel60/Makefile +++ b/databases/rubygem-activemodel60/Makefile @@ -1,24 +1,23 @@ PORTNAME= activemodel PORTVERSION= 6.0.6 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Toolkit for building modeling frameworks WWW= https://github.com/rails/rails/tree/main/activemodel \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport60>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport60 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^6\.0\. .include diff --git a/databases/rubygem-activemodel61/Makefile b/databases/rubygem-activemodel61/Makefile index c47bd3bd3419..bdc09ea46dbb 100644 --- a/databases/rubygem-activemodel61/Makefile +++ b/databases/rubygem-activemodel61/Makefile @@ -1,24 +1,23 @@ PORTNAME= activemodel PORTVERSION= 6.1.7 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Toolkit for building modeling frameworks WWW= https://github.com/rails/rails/tree/main/activemodel \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport61>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport61 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^6\.1\. .include diff --git a/databases/rubygem-activemodel70/Makefile b/databases/rubygem-activemodel70/Makefile index 11f162f94d87..b752f42b7378 100644 --- a/databases/rubygem-activemodel70/Makefile +++ b/databases/rubygem-activemodel70/Makefile @@ -1,24 +1,23 @@ PORTNAME= activemodel PORTVERSION= 7.0.3.1 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 70 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Toolkit for building modeling frameworks like Active Record WWW= https://github.com/rails/rails/tree/main/activemodel \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport70>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport70 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^7\.0\. .include diff --git a/databases/rubygem-activerecord-explain-analyze/Makefile b/databases/rubygem-activerecord-explain-analyze/Makefile index 2f6de4c7fcce..4f2fb4d88e5e 100644 --- a/databases/rubygem-activerecord-explain-analyze/Makefile +++ b/databases/rubygem-activerecord-explain-analyze/Makefile @@ -1,21 +1,20 @@ PORTNAME= activerecord-explain-analyze PORTVERSION= 0.1.0 PORTREVISION= 4 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Extends ActiveRecord#explain with additional features WWW= https://github.com/6/activerecord-explain-analyze LICENSE= MIT RUN_DEPENDS= rubygem-activerecord61>=4:databases/rubygem-activerecord61 \ rubygem-pg>=0:databases/rubygem-pg USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-activerecord-import/Makefile b/databases/rubygem-activerecord-import/Makefile index 61c77a157702..6245bf5bccff 100644 --- a/databases/rubygem-activerecord-import/Makefile +++ b/databases/rubygem-activerecord-import/Makefile @@ -1,20 +1,19 @@ PORTNAME= activerecord-import PORTVERSION= 1.4.1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Bulk import many records into an ActiveRecord DB WWW= https://github.com/zdennis/activerecord-import LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activerecord4>=4.2:databases/rubygem-activerecord4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-activerecord-jdbc-adapter/Makefile b/databases/rubygem-activerecord-jdbc-adapter/Makefile index ffe422d0180a..8075d526060e 100644 --- a/databases/rubygem-activerecord-jdbc-adapter/Makefile +++ b/databases/rubygem-activerecord-jdbc-adapter/Makefile @@ -1,20 +1,19 @@ PORTNAME= activerecord-jdbc-adapter PORTVERSION= 51.0 CATEGORIES= databases rubygems java MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= JDBC adapter for ActiveRecord, for use within JRuby on Rails WWW= https://github.com/jruby/activerecord-jdbc-adapter LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= jruby:lang/jruby \ rubygem-activerecord5>=5.1.0:databases/rubygem-activerecord5 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-activerecord-jdbcmysql-adapter/Makefile b/databases/rubygem-activerecord-jdbcmysql-adapter/Makefile index 4f7e8c1256e8..dcf71ee3cef8 100644 --- a/databases/rubygem-activerecord-jdbcmysql-adapter/Makefile +++ b/databases/rubygem-activerecord-jdbcmysql-adapter/Makefile @@ -1,21 +1,20 @@ PORTNAME= activerecord-jdbcmysql-adapter PORTVERSION= 51.0 CATEGORIES= databases rubygems java MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= ActiveRecord driver for MySQL using JDBC running under JRuby WWW= https://github.com/jruby/activerecord-jdbc-adapter LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= jruby:lang/jruby \ rubygem-activerecord-jdbc-adapter>=${PORTVERSION}:databases/rubygem-activerecord-jdbc-adapter \ rubygem-jdbc-mysql>=5.1.36:databases/rubygem-jdbc-mysql NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-activerecord-session_store/Makefile b/databases/rubygem-activerecord-session_store/Makefile index d78ea3b4a2ba..04237fca405f 100644 --- a/databases/rubygem-activerecord-session_store/Makefile +++ b/databases/rubygem-activerecord-session_store/Makefile @@ -1,25 +1,24 @@ PORTNAME= activerecord-session_store PORTVERSION= 2.0.0 PORTREVISION= 1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Action Dispatch session store backed by an Active Record class WWW= https://github.com/rails/activerecord-session_store LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack60>=5.2.4.1:www/rubygem-actionpack60 \ rubygem-activerecord60>=5.2.4.1:databases/rubygem-activerecord60 \ rubygem-multi_json>=1.11.2<2:devel/rubygem-multi_json \ rubygem-rack22>=2.0.8,3<3,3:www/rubygem-rack22 \ rubygem-railties60>=5.2.4.1:www/rubygem-railties60 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-activerecord4/Makefile b/databases/rubygem-activerecord4/Makefile index c602446e0eb2..f48e5e8c27ef 100644 --- a/databases/rubygem-activerecord4/Makefile +++ b/databases/rubygem-activerecord4/Makefile @@ -1,25 +1,24 @@ PORTNAME= activerecord PORTVERSION= 4.2.11.3 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Object-relational mapping layer for Rails MVC Framework WWW= https://github.com/rails/rails/tree/main/activerecord LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activemodel4>=${PORTVERSION}:databases/rubygem-activemodel4 \ rubygem-activesupport4>=${PORTVERSION}:devel/rubygem-activesupport4 \ rubygem-arel6>=6.0<7:databases/rubygem-arel6 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^4\.2\. .include diff --git a/databases/rubygem-activerecord5/Makefile b/databases/rubygem-activerecord5/Makefile index 3f7f2567ea9c..e8c87824be7a 100644 --- a/databases/rubygem-activerecord5/Makefile +++ b/databases/rubygem-activerecord5/Makefile @@ -1,25 +1,24 @@ PORTNAME= activerecord PORTVERSION= 5.1.7 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Object-relational mapping layer for Rails MVC Framework WWW= https://github.com/rails/rails/tree/main/activerecord LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activemodel5>=${PORTVERSION}:databases/rubygem-activemodel5 \ rubygem-activesupport5>=${PORTVERSION}:devel/rubygem-activesupport5 \ rubygem-arel8>=8.0,1<9,1:databases/rubygem-arel8 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^5\.1\. .include diff --git a/databases/rubygem-activerecord50/Makefile b/databases/rubygem-activerecord50/Makefile index 6fd2e3bb6be3..741068982ef5 100644 --- a/databases/rubygem-activerecord50/Makefile +++ b/databases/rubygem-activerecord50/Makefile @@ -1,25 +1,24 @@ PORTNAME= activerecord PORTVERSION= 5.0.7.2 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Object-relational mapping layer for Rails MVC Framework WWW= https://github.com/rails/rails/tree/main/activerecord LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activemodel50>=${PORTVERSION}:databases/rubygem-activemodel50 \ rubygem-activesupport50>=${PORTVERSION}:devel/rubygem-activesupport50 \ rubygem-arel7>=7.0,1<8,1:databases/rubygem-arel7 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^5\.0\. .include diff --git a/databases/rubygem-activerecord52/Makefile b/databases/rubygem-activerecord52/Makefile index 6880af8d21b8..c2bd3064097e 100644 --- a/databases/rubygem-activerecord52/Makefile +++ b/databases/rubygem-activerecord52/Makefile @@ -1,25 +1,24 @@ PORTNAME= activerecord PORTVERSION= 5.2.8.1 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 52 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Object-relational mapping layer for Rails MVC Framework WWW= https://github.com/rails/rails/tree/main/activerecord LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activemodel52>=${PORTVERSION}:databases/rubygem-activemodel52 \ rubygem-activesupport52>=${PORTVERSION}:devel/rubygem-activesupport52 \ rubygem-arel>=9.0:databases/rubygem-arel USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^5\.2\. .include diff --git a/databases/rubygem-activerecord60/Makefile b/databases/rubygem-activerecord60/Makefile index dcdbfd3be0c7..58e8b97b2c3d 100644 --- a/databases/rubygem-activerecord60/Makefile +++ b/databases/rubygem-activerecord60/Makefile @@ -1,25 +1,24 @@ PORTNAME= activerecord PORTVERSION= 6.0.6 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Object-relational mapping layer for Rails MVC Framework WWW= https://github.com/rails/rails/tree/main/activerecord \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activemodel60>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-activemodel60 \ rubygem-activesupport60>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport60 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^6\.0\. .include diff --git a/databases/rubygem-activerecord61/Makefile b/databases/rubygem-activerecord61/Makefile index 8e683d219202..45bc40d7918c 100644 --- a/databases/rubygem-activerecord61/Makefile +++ b/databases/rubygem-activerecord61/Makefile @@ -1,25 +1,24 @@ PORTNAME= activerecord PORTVERSION= 6.1.7 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Object-relational mapping layer for Rails MVC Framework WWW= https://github.com/rails/rails/tree/main/activerecord \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activemodel61>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-activemodel61 \ rubygem-activesupport61>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport61 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^6\.1\. .include diff --git a/databases/rubygem-activerecord70/Makefile b/databases/rubygem-activerecord70/Makefile index 6ae4e866456b..8b467fd9c24a 100644 --- a/databases/rubygem-activerecord70/Makefile +++ b/databases/rubygem-activerecord70/Makefile @@ -1,25 +1,24 @@ PORTNAME= activerecord PORTVERSION= 7.0.3.1 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 70 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Object-relational mapping layer for Rails MVC Framework WWW= https://github.com/rails/rails/tree/main/activerecord \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activemodel70>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-activemodel70 \ rubygem-activesupport70>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport70 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^7\.0\. .include diff --git a/databases/rubygem-after_commit_queue/Makefile b/databases/rubygem-after_commit_queue/Makefile index a1b418314afd..2475ac7b408e 100644 --- a/databases/rubygem-after_commit_queue/Makefile +++ b/databases/rubygem-after_commit_queue/Makefile @@ -1,20 +1,19 @@ PORTNAME= after_commit_queue PORTVERSION= 1.3.0 PORTREVISION= 1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ports@FreeBSD.org COMMENT= Allows to run callbacks after transaction is committed WWW= https://github.com/shellycloud/after_commit_queue LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS?= rubygem-activerecord4>=3.0:databases/rubygem-activerecord4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-amalgalite/Makefile b/databases/rubygem-amalgalite/Makefile index 6b30c51adbcb..f6696f022e7e 100644 --- a/databases/rubygem-amalgalite/Makefile +++ b/databases/rubygem-amalgalite/Makefile @@ -1,20 +1,19 @@ PORTNAME= amalgalite PORTVERSION= 1.7.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Embeds the SQLite database engine in a Ruby extension WWW= https://github.com/copiousfreetime/amalgalite LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-arrayfields>=4.9<5:devel/rubygem-arrayfields USES= gem -USE_RUBY= yes PLIST_FILES= bin/amalgalite-pack .include diff --git a/databases/rubygem-arel-helpers/Makefile b/databases/rubygem-arel-helpers/Makefile index 569fa099a465..78f4f7f38f94 100644 --- a/databases/rubygem-arel-helpers/Makefile +++ b/databases/rubygem-arel-helpers/Makefile @@ -1,19 +1,18 @@ PORTNAME= arel-helpers PORTVERSION= 2.14.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Helpers to construct database queries with ActiveRecord and Arel WWW= https://github.com/camertron/arel-helpers LICENSE= MIT RUN_DEPENDS= rubygem-activerecord60>=6.0:databases/rubygem-activerecord60 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-arel/Makefile b/databases/rubygem-arel/Makefile index 08ee8cad4c9f..05d8b9c4a99c 100644 --- a/databases/rubygem-arel/Makefile +++ b/databases/rubygem-arel/Makefile @@ -1,19 +1,18 @@ PORTNAME= arel PORTVERSION= 9.0.0 PORTEPOCH= 1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Relational Algebra for Ruby WWW= https://github.com/rails/arel LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-arel6/Makefile b/databases/rubygem-arel6/Makefile index bf482099fca1..59513e27af3e 100644 --- a/databases/rubygem-arel6/Makefile +++ b/databases/rubygem-arel6/Makefile @@ -1,18 +1,17 @@ PORTNAME= arel PORTVERSION= 6.0.4 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 6 MAINTAINER= ruby@FreeBSD.org COMMENT= Relational Algebra for Ruby WWW= https://github.com/rails/arel LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-arel7/Makefile b/databases/rubygem-arel7/Makefile index f66209b24a74..38a20d5fb6ae 100644 --- a/databases/rubygem-arel7/Makefile +++ b/databases/rubygem-arel7/Makefile @@ -1,22 +1,21 @@ PORTNAME= arel PORTVERSION= 7.1.4 PORTEPOCH= 1 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 7 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Relational Algebra for Ruby WWW= https://github.com/rails/arel LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^7\. .include diff --git a/databases/rubygem-arel8/Makefile b/databases/rubygem-arel8/Makefile index 503dc4ce9fca..f9748ab0e436 100644 --- a/databases/rubygem-arel8/Makefile +++ b/databases/rubygem-arel8/Makefile @@ -1,22 +1,21 @@ PORTNAME= arel PORTVERSION= 8.0.0 PORTEPOCH= 1 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 8 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Relational Algebra for Ruby WWW= https://github.com/rails/arel LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^8\. .include diff --git a/databases/rubygem-awesome_nested_set/Makefile b/databases/rubygem-awesome_nested_set/Makefile index dd01c0c054c7..0c9811c89ffb 100644 --- a/databases/rubygem-awesome_nested_set/Makefile +++ b/databases/rubygem-awesome_nested_set/Makefile @@ -1,20 +1,19 @@ PORTNAME= awesome_nested_set PORTVERSION= 3.5.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Nested set implementation for Active Record WWW= https://github.com/collectiveidea/awesome_nested_set LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activerecord4>=4.0.0<7.1:databases/rubygem-activerecord4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-bdb1/Makefile b/databases/rubygem-bdb1/Makefile index a959b5e3f2de..f155ce60641f 100644 --- a/databases/rubygem-bdb1/Makefile +++ b/databases/rubygem-bdb1/Makefile @@ -1,18 +1,17 @@ PORTNAME= bdb1 PORTVERSION= 0.2.5 PORTREVISION= 2 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby interface to Berkeley DB revision 1.8x with full feature support WWW= https://github.com/knu/ruby-bdb1 LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual -USE_RUBY= yes USES= gem shebangfix SHEBANG_FILES= examples/*.rb .include diff --git a/databases/rubygem-bigrecord/Makefile b/databases/rubygem-bigrecord/Makefile index c82c5e47c648..45722f7f83c8 100644 --- a/databases/rubygem-bigrecord/Makefile +++ b/databases/rubygem-bigrecord/Makefile @@ -1,22 +1,21 @@ PORTNAME= bigrecord PORTVERSION= 0.1.1 PORTREVISION= 1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Intended to work as a drop-in for Rails applications WWW= http://www.bigrecord.org LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activerecord4>=0:databases/rubygem-activerecord4 \ rubygem-activesupport4>=0:devel/rubygem-activesupport4 \ rubygem-uuidtools>=2.0.0:devel/rubygem-uuidtools NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-brpoplpush-redis_script/Makefile b/databases/rubygem-brpoplpush-redis_script/Makefile index 3760a529da18..3856f0ef3c50 100644 --- a/databases/rubygem-brpoplpush-redis_script/Makefile +++ b/databases/rubygem-brpoplpush-redis_script/Makefile @@ -1,21 +1,20 @@ PORTNAME= brpoplpush-redis_script PORTVERSION= 0.1.3 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Bring your own LUA scripts into redis WWW= https://github.com/brpoplpush/brpoplpush-redis_script LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-concurrent-ruby>=1.0.5<2:devel/rubygem-concurrent-ruby \ rubygem-redis>=1.0<6:databases/rubygem-redis USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-couchrest/Makefile b/databases/rubygem-couchrest/Makefile index 651327911020..79cea0adcf65 100644 --- a/databases/rubygem-couchrest/Makefile +++ b/databases/rubygem-couchrest/Makefile @@ -1,21 +1,20 @@ PORTNAME= couchrest PORTVERSION= 2.0.1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provides a simple interface on top of CouchDBs RESTful HTTP API WWW= https://github.com/couchrest/couchrest LICENSE= APACHE20 RUN_DEPENDS= rubygem-httpclient>=2.8<3:www/rubygem-httpclient \ rubygem-mime-types>=1.15:misc/rubygem-mime-types \ rubygem-multi_json>=1.7<2:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-dalli/Makefile b/databases/rubygem-dalli/Makefile index 8069ad4a0cad..07bc4ab6dde0 100644 --- a/databases/rubygem-dalli/Makefile +++ b/databases/rubygem-dalli/Makefile @@ -1,18 +1,17 @@ PORTNAME= dalli PORTVERSION= 3.2.3 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= High performance memcached client for Ruby WWW= https://github.com/petergoldstein/dalli LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-data_objects/Makefile b/databases/rubygem-data_objects/Makefile index 2761a6eea5f0..49412341c90e 100644 --- a/databases/rubygem-data_objects/Makefile +++ b/databases/rubygem-data_objects/Makefile @@ -1,19 +1,18 @@ PORTNAME= data_objects PORTVERSION= 0.10.17 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= voldern@hoeggen.net COMMENT= Unified Ruby API for popular databases WWW= https://github.com/datamapper/do LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-addressable>=2.1:www/rubygem-addressable NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-datamapper/Makefile b/databases/rubygem-datamapper/Makefile index 9926c64c6675..2d81f04680b9 100644 --- a/databases/rubygem-datamapper/Makefile +++ b/databases/rubygem-datamapper/Makefile @@ -1,28 +1,27 @@ PORTNAME= datamapper PORTVERSION= 1.2.0 PORTREVISION= 1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Fast, thread-safe, object-relational mapper WWW= http://datamapper.org LICENSE= MIT RUN_DEPENDS= rubygem-dm-aggregates>=${PORTVERSION}:databases/rubygem-dm-aggregates \ rubygem-dm-constraints>=${PORTVERSION}:databases/rubygem-dm-constraints \ rubygem-dm-core>=${PORTVERSION}:databases/rubygem-dm-core \ rubygem-dm-migrations>=${PORTVERSION}:databases/rubygem-dm-migrations \ rubygem-dm-serializer>=${PORTVERSION}:databases/rubygem-dm-serializer \ rubygem-dm-timestamps>=${PORTVERSION}:databases/rubygem-dm-timestamps \ rubygem-dm-transactions>=${PORTVERSION}:databases/rubygem-dm-transactions \ rubygem-dm-types>=${PORTVERSION}:databases/rubygem-dm-types \ rubygem-dm-validations>=${PORTVERSION}:databases/rubygem-dm-validations NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-dbd-mysql/Makefile b/databases/rubygem-dbd-mysql/Makefile index 502191f9ca6e..b0732d8a5691 100644 --- a/databases/rubygem-dbd-mysql/Makefile +++ b/databases/rubygem-dbd-mysql/Makefile @@ -1,19 +1,18 @@ PORTNAME= dbd-mysql PORTVERSION= 0.4.4 PORTREVISION= 1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= MySQL driver for DBI-for-Ruby WWW= http://ruby-dbi.sourceforge.net LICENSE= BSD3CLAUSE RUN_DEPENDS= rubygem-dbi>=0:databases/rubygem-dbi \ rubygem-mysql>=0:databases/rubygem-mysql -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-dbd-pg/Makefile b/databases/rubygem-dbd-pg/Makefile index 02f6ae7cadd7..8048703e6078 100644 --- a/databases/rubygem-dbd-pg/Makefile +++ b/databases/rubygem-dbd-pg/Makefile @@ -1,21 +1,20 @@ PORTNAME= dbd-pg PORTVERSION= 0.3.9 PORTREVISION= 5 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= PostgreSQL driver for DBI-for-Ruby WWW= http://ruby-dbi.sourceforge.net LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-dbi>=0.4.0:databases/rubygem-dbi \ rubygem-pg>=0:databases/rubygem-pg NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-dbd-sqlite3/Makefile b/databases/rubygem-dbd-sqlite3/Makefile index 05e8dbb16876..b322e97c245f 100644 --- a/databases/rubygem-dbd-sqlite3/Makefile +++ b/databases/rubygem-dbd-sqlite3/Makefile @@ -1,21 +1,20 @@ PORTNAME= dbd-sqlite3 PORTVERSION= 1.2.5 PORTREVISION= 1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= SQLite3 driver for DBI-for-Ruby WWW= http://ruby-dbi.sourceforge.net LICENSE= BSD3CLAUSE RUN_DEPENDS= rubygem-dbi>=0.4.0:databases/rubygem-dbi \ rubygem-sqlite3-ruby>=0:databases/rubygem-sqlite3-ruby NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-dbf/Makefile b/databases/rubygem-dbf/Makefile index 58287b7636d8..30f90a084086 100644 --- a/databases/rubygem-dbf/Makefile +++ b/databases/rubygem-dbf/Makefile @@ -1,22 +1,21 @@ PORTNAME= dbf PORTVERSION= 4.2.2 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Library for reading dBase, xBase, Clipper and FoxPro database files WWW= https://github.com/infused/dbf LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes CONFLICTS_INSTALL= dbf NO_ARCH= yes PLIST_FILES= bin/dbf .include diff --git a/databases/rubygem-dbi/Makefile b/databases/rubygem-dbi/Makefile index 2e59746a34ff..bd4e411410ad 100644 --- a/databases/rubygem-dbi/Makefile +++ b/databases/rubygem-dbi/Makefile @@ -1,23 +1,22 @@ PORTNAME= dbi PORTVERSION= 0.4.5 PORTREVISION= 1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Vendor independent interface for accessing databases WWW= https://github.com/erikh/ruby-dbi LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-deprecated2>=2.0.1:devel/rubygem-deprecated2 \ rubygem-aspectr>=0:devel/rubygem-aspectr NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/dbi bin/test_broken_dbi .include diff --git a/databases/rubygem-dbm/Makefile b/databases/rubygem-dbm/Makefile index eed067aecdc6..d4ec5c090f8a 100644 --- a/databases/rubygem-dbm/Makefile +++ b/databases/rubygem-dbm/Makefile @@ -1,32 +1,31 @@ PORTNAME= dbm PORTVERSION= 1.1.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= yasu@FreeBSD.org COMMENT= Wrapper for the UNIX-style Database Manager Library WWW= https://github.com/ruby/dbm LICENSE= BSD2CLAUSE USES= gem -USE_RUBY= yes OPTIONS_SINGLE= BACKEND OPTIONS_SINGLE_BACKEND= BDB GDBM LIBC QDBM OPTIONS_DEFAULT= LIBC BACKEND_DESC= Select backend dbm library BDB_USES= bdb BDB_CONFIGURE_ON= --with-dbm-type=db${BDB_VER} GDBM_CONFIGURE_ON= --with-dbm-type=gdbm_compat GDBM_LIB_DEPENDS= libgdbm.so:databases/gdbm LIBC_DESC= libc ndbm support LIBC_CONFIGURE_ON= --with-dbm-type=libc QDBM_DESC= QDBM support QDBM_CONFIGURE_ON= --with-dbm-type=qdbm QDBM_LIB_DEPENDS= libqdbm.so:databases/qdbm pre-configure-GDBM-on: @if [ ! -f ${LOCALBASE}/lib/libgdbm_compat.a ]; then ${ECHO_CMD} You need to reinstall database/gdbm with COMPAT option ON.; exit 1; fi .include diff --git a/databases/rubygem-discard-rails61/Makefile b/databases/rubygem-discard-rails61/Makefile index 05e889ee6202..a43f2d52b18f 100644 --- a/databases/rubygem-discard-rails61/Makefile +++ b/databases/rubygem-discard-rails61/Makefile @@ -1,21 +1,20 @@ PORTNAME= discard PORTVERSION= 1.2.1 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= bofh@FreeBSD.org COMMENT= Allows marking ActiveRecord objects as discarded WWW= https://github.com/jhawthorn/discard LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activerecord61>=4.2<8:databases/rubygem-activerecord61 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-dm-aggregates/Makefile b/databases/rubygem-dm-aggregates/Makefile index 00e18f7c0d3c..a12d22901a89 100644 --- a/databases/rubygem-dm-aggregates/Makefile +++ b/databases/rubygem-dm-aggregates/Makefile @@ -1,19 +1,18 @@ PORTNAME= dm-aggregates PORTVERSION= 1.2.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= DataMapper plugin providing support for aggregates WWW= https://github.com/datamapper/dm-aggregates LICENSE= MIT RUN_DEPENDS= rubygem-dm-core>=${PORTVERSION}:databases/rubygem-dm-core NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-dm-chunked_query/Makefile b/databases/rubygem-dm-chunked_query/Makefile index 45fdd77c9a29..5ef01129f1d8 100644 --- a/databases/rubygem-dm-chunked_query/Makefile +++ b/databases/rubygem-dm-chunked_query/Makefile @@ -1,20 +1,19 @@ PORTNAME= dm-chunked_query PORTVERSION= 0.3.1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Allows performing chunked queries WWW= https://github.com/postmodern/dm-chunked_query LICENSE= MIT RUN_DEPENDS= rubygem-dm-aggregates>=1.0:databases/rubygem-dm-aggregates \ rubygem-dm-core>=1.0:databases/rubygem-dm-core NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-dm-constraints/Makefile b/databases/rubygem-dm-constraints/Makefile index a6505f7d7ef5..d28be58ac571 100644 --- a/databases/rubygem-dm-constraints/Makefile +++ b/databases/rubygem-dm-constraints/Makefile @@ -1,20 +1,19 @@ PORTNAME= dm-constraints PORTVERSION= 1.2.0 PORTREVISION= 1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= DataMapper plugin constraining relationships WWW= https://github.com/datamapper/dm-constraints LICENSE= MIT RUN_DEPENDS= rubygem-dm-core>=${PORTVERSION}:databases/rubygem-dm-core NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-dm-core/Makefile b/databases/rubygem-dm-core/Makefile index 5672e6048f26..ba9395138070 100644 --- a/databases/rubygem-dm-core/Makefile +++ b/databases/rubygem-dm-core/Makefile @@ -1,20 +1,19 @@ PORTNAME= dm-core PORTVERSION= 1.2.1 PORTREVISION= 1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Object/Relational Mapper for Ruby WWW= https://github.com/datamapper/dm-core LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-addressable>=2.3:www/rubygem-addressable NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-dm-do-adapter/Makefile b/databases/rubygem-dm-do-adapter/Makefile index 839ee63eceff..7a19b141cd38 100644 --- a/databases/rubygem-dm-do-adapter/Makefile +++ b/databases/rubygem-dm-do-adapter/Makefile @@ -1,20 +1,19 @@ PORTNAME= dm-do-adapter PORTVERSION= 1.2.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= DataObjects Adapter for DataMapper WWW= https://github.com/datamapper/dm-do-adapter LICENSE= MIT RUN_DEPENDS= rubygem-data_objects>=0.10.6:databases/rubygem-data_objects \ rubygem-dm-core>=${PORTVERSION}:databases/rubygem-dm-core NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-dm-migrations/Makefile b/databases/rubygem-dm-migrations/Makefile index b7aee34b4b1f..7607803cd5e7 100644 --- a/databases/rubygem-dm-migrations/Makefile +++ b/databases/rubygem-dm-migrations/Makefile @@ -1,19 +1,18 @@ PORTNAME= dm-migrations PORTVERSION= 1.2.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= DataMapper plugin for writing and specifying migrations WWW= https://github.com/datamapper/dm-migrations LICENSE= MIT RUN_DEPENDS= rubygem-dm-core>=${PORTVERSION}:databases/rubygem-dm-core NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-dm-mysql-adapter/Makefile b/databases/rubygem-dm-mysql-adapter/Makefile index 0ab29532a502..4efc153c33f6 100644 --- a/databases/rubygem-dm-mysql-adapter/Makefile +++ b/databases/rubygem-dm-mysql-adapter/Makefile @@ -1,20 +1,19 @@ PORTNAME= dm-mysql-adapter PORTVERSION= 1.2.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= MySQL Adapter for DataMapper WWW= https://github.com/datamapper/dm-mysql-adapter LICENSE= MIT RUN_DEPENDS= rubygem-dm-do-adapter>=${PORTVERSION}:databases/rubygem-dm-do-adapter \ rubygem-do_mysql>=0.10.6:databases/rubygem-do_mysql NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-dm-observer/Makefile b/databases/rubygem-dm-observer/Makefile index 64259c8e6ea2..f1cae8ebafb9 100644 --- a/databases/rubygem-dm-observer/Makefile +++ b/databases/rubygem-dm-observer/Makefile @@ -1,19 +1,18 @@ PORTNAME= dm-observer PORTVERSION= 1.2.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= DataMapper plugin for observing Resources WWW= https://github.com/datamapper/dm-observer LICENSE= MIT RUN_DEPENDS= rubygem-dm-core>=${PORTVERSION}:databases/rubygem-dm-core NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-dm-pager/Makefile b/databases/rubygem-dm-pager/Makefile index a9a8a5a1c6fe..412663216506 100644 --- a/databases/rubygem-dm-pager/Makefile +++ b/databases/rubygem-dm-pager/Makefile @@ -1,20 +1,19 @@ PORTNAME= dm-pager PORTVERSION= 1.1.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= DataMapper Pagination WWW= https://github.com/tj/dm-pagination LICENSE= MIT RUN_DEPENDS= rubygem-dm-aggregates>=0.10.1:databases/rubygem-dm-aggregates \ rubygem-dm-core>=0.10.1:databases/rubygem-dm-core NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-dm-paperclip/Makefile b/databases/rubygem-dm-paperclip/Makefile index bdb759a8e26a..4c065248e5e5 100644 --- a/databases/rubygem-dm-paperclip/Makefile +++ b/databases/rubygem-dm-paperclip/Makefile @@ -1,22 +1,21 @@ PORTNAME= dm-paperclip PORTVERSION= 2.5.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= File attachments as attributes for DataMapper WWW= https://github.com/krobertson/dm-paperclip LICENSE= MIT RUN_DEPENDS= rubygem-dm-core>=1.2.0:databases/rubygem-dm-core \ rubygem-dm-migrations>=1.2.0:databases/rubygem-dm-migrations \ rubygem-dm-validations>=1.2.0:databases/rubygem-dm-validations \ rubygem-extlib>=0:devel/rubygem-extlib NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-dm-postgres-adapter/Makefile b/databases/rubygem-dm-postgres-adapter/Makefile index 6d48630ab9f7..f6f8a05d5971 100644 --- a/databases/rubygem-dm-postgres-adapter/Makefile +++ b/databases/rubygem-dm-postgres-adapter/Makefile @@ -1,21 +1,20 @@ PORTNAME= dm-postgres-adapter PORTVERSION= 1.2.0 PORTREVISION= 2 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= PostgreSQL Adapter for DataMapper WWW= https://github.com/datamapper/dm-postgres-adapter LICENSE= MIT RUN_DEPENDS= rubygem-dm-do-adapter>=${PORTVERSION}:databases/rubygem-dm-do-adapter \ rubygem-do_postgres>=0.10.6:databases/rubygem-do_postgres NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-dm-serializer/Makefile b/databases/rubygem-dm-serializer/Makefile index c03e538d1dc1..8f413b3f7f31 100644 --- a/databases/rubygem-dm-serializer/Makefile +++ b/databases/rubygem-dm-serializer/Makefile @@ -1,25 +1,24 @@ PORTNAME= dm-serializer PORTVERSION= 1.2.2 PORTREVISION= 2 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= DataMapper plugin for serializing Resources and Collections WWW= https://github.com/datamapper/dm-serializer LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-dm-core>=1.2.0<1.3:databases/rubygem-dm-core \ rubygem-fastercsv>=1.5<2:devel/rubygem-fastercsv \ rubygem-json1>=1.6<2:devel/rubygem-json1 \ rubygem-json_pure1>=1.6<2:devel/rubygem-json_pure1 \ rubygem-multi_json>=1.0<2:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-dm-timestamps/Makefile b/databases/rubygem-dm-timestamps/Makefile index 00d8869e5f73..74aea0aab3ba 100644 --- a/databases/rubygem-dm-timestamps/Makefile +++ b/databases/rubygem-dm-timestamps/Makefile @@ -1,20 +1,19 @@ PORTNAME= dm-timestamps PORTVERSION= 1.2.0 PORTREVISION= 1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= DataMapper plugin for magical timestamps WWW= https://github.com/datamapper/dm-timestamps LICENSE= MIT RUN_DEPENDS= rubygem-dm-core>=${PORTVERSION}:databases/rubygem-dm-core NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-dm-transactions/Makefile b/databases/rubygem-dm-transactions/Makefile index 670375c316af..662d63fac95f 100644 --- a/databases/rubygem-dm-transactions/Makefile +++ b/databases/rubygem-dm-transactions/Makefile @@ -1,19 +1,18 @@ PORTNAME= dm-transactions PORTVERSION= 1.2.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Makes transaction support available for adapters that support them WWW= https://github.com/datamapper/dm-transactions LICENSE= MIT RUN_DEPENDS= rubygem-dm-core>=${PORTVERSION}:databases/rubygem-dm-core NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-dm-types/Makefile b/databases/rubygem-dm-types/Makefile index 29d1aa55d425..2680ad0d2438 100644 --- a/databases/rubygem-dm-types/Makefile +++ b/databases/rubygem-dm-types/Makefile @@ -1,27 +1,26 @@ PORTNAME= dm-types PORTVERSION= 1.2.2 PORTREVISION= 2 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= DataMapper plugin providing extra data types WWW= https://github.com/datamapper/dm-types LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-bcrypt-ruby>=3.0<4:security/rubygem-bcrypt-ruby \ rubygem-dm-core>=1.2.0<1.3:databases/rubygem-dm-core \ rubygem-fastercsv>=1.5<2:devel/rubygem-fastercsv \ rubygem-json1>=1.6<2:devel/rubygem-json1 \ rubygem-multi_json>=1.0<2:devel/rubygem-multi_json \ rubygem-stringex>=1.4,1:devel/rubygem-stringex \ rubygem-uuidtools>=2.1<3:devel/rubygem-uuidtools USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-dm-validations/Makefile b/databases/rubygem-dm-validations/Makefile index 228b4a4a7b3f..a155a7b2f1b5 100644 --- a/databases/rubygem-dm-validations/Makefile +++ b/databases/rubygem-dm-validations/Makefile @@ -1,19 +1,18 @@ PORTNAME= dm-validations PORTVERSION= 1.2.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library for performing validations on DM models and pure Ruby object WWW= https://github.com/datamapper/dm-validations LICENSE= MIT RUN_DEPENDS= rubygem-dm-core>=${PORTVERSION}:databases/rubygem-dm-core NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-do_mysql/Makefile b/databases/rubygem-do_mysql/Makefile index d4087521f360..2f79c0ca6115 100644 --- a/databases/rubygem-do_mysql/Makefile +++ b/databases/rubygem-do_mysql/Makefile @@ -1,15 +1,14 @@ PORTNAME= do_mysql PORTVERSION= 0.10.17 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= voldern@hoeggen.net COMMENT= Ruby DataObjects driver for MySQL WWW= https://rubygems.org/gems/do_mysql RUN_DEPENDS= rubygem-data_objects>=0.10.17:databases/rubygem-data_objects USES= gem mysql -USE_RUBY= yes .include diff --git a/databases/rubygem-do_postgres/Makefile b/databases/rubygem-do_postgres/Makefile index baab437ff680..a88cb8b27879 100644 --- a/databases/rubygem-do_postgres/Makefile +++ b/databases/rubygem-do_postgres/Makefile @@ -1,16 +1,15 @@ PORTNAME= do_postgres PORTVERSION= 0.10.17 PORTREVISION= 2 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= voldern@hoeggen.net COMMENT= Ruby DataObjects driver for PostgreSQL WWW= https://rubygems.org/gems/do_postgres RUN_DEPENDS= rubygem-data_objects>=0.10.17:databases/rubygem-data_objects -USE_RUBY= yes USES= gem pgsql .include diff --git a/databases/rubygem-do_sqlite3/Makefile b/databases/rubygem-do_sqlite3/Makefile index 6c4584e787f7..c0878d8310ce 100644 --- a/databases/rubygem-do_sqlite3/Makefile +++ b/databases/rubygem-do_sqlite3/Makefile @@ -1,18 +1,17 @@ PORTNAME= do_sqlite3 PORTVERSION= 0.10.17 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= voldern@hoeggen.net COMMENT= Ruby DataObjects driver to the SQLite DB engine version 3 WWW= https://rubygems.org/gems/do_sqlite3 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} .include diff --git a/databases/rubygem-em-redis-unified/Makefile b/databases/rubygem-em-redis-unified/Makefile index e4424f14101e..32fef27cc893 100644 --- a/databases/rubygem-em-redis-unified/Makefile +++ b/databases/rubygem-em-redis-unified/Makefile @@ -1,19 +1,18 @@ PORTNAME= em-redis-unified PORTVERSION= 1.0.1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Eventmachine-based implementation of the Redis protocol WWW= https://github.com/portertech/em-redis LICENSE= MIT RUN_DEPENDS= rubygem-eventmachine>=0.12.10:devel/rubygem-eventmachine USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-fabrication/Makefile b/databases/rubygem-fabrication/Makefile index 4b76da037a6f..137384d7b4ba 100644 --- a/databases/rubygem-fabrication/Makefile +++ b/databases/rubygem-fabrication/Makefile @@ -1,18 +1,17 @@ PORTNAME= fabrication PORTVERSION= 2.30.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= bofh@FreeBSD.org COMMENT= Object generation framework for ActiveRecord or any other Ruby object WWW= https://fabricationgem.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-familia/Makefile b/databases/rubygem-familia/Makefile index 2841d9fe91d0..4976affcb0f9 100644 --- a/databases/rubygem-familia/Makefile +++ b/databases/rubygem-familia/Makefile @@ -1,24 +1,23 @@ PORTNAME= familia PORTVERSION= 0.7.1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Organize and store ruby objects in Redis WWW= https://github.com/delano/familia LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-gibbler>=0.8.6:devel/rubygem-gibbler \ rubygem-multi_json>=0.0.5:devel/rubygem-multi_json \ rubygem-redis>=2.1.0:databases/rubygem-redis \ rubygem-storable>=0.8.6:devel/rubygem-storable \ rubygem-uri-redis>=0.4.2:net/rubygem-uri-redis USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-flipper-active_record-rails61/Makefile b/databases/rubygem-flipper-active_record-rails61/Makefile index 75bdb77e6f76..bf6aaa13c59c 100644 --- a/databases/rubygem-flipper-active_record-rails61/Makefile +++ b/databases/rubygem-flipper-active_record-rails61/Makefile @@ -1,21 +1,20 @@ PORTNAME= flipper-active_record PORTVERSION= 0.25.4 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= ruby@FreeBSD.org COMMENT= ActiveRecord adapter for Flipper WWW= https://github.com/jnunemaker/flipper LICENSE= MIT RUN_DEPENDS= rubygem-activerecord61>=5.0<7:databases/rubygem-activerecord61 \ rubygem-flipper>=${PORTVERSION}<0.26:devel/rubygem-flipper USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-flipper-active_record/Makefile b/databases/rubygem-flipper-active_record/Makefile index e7589da8b3c6..7f5602d22279 100644 --- a/databases/rubygem-flipper-active_record/Makefile +++ b/databases/rubygem-flipper-active_record/Makefile @@ -1,20 +1,19 @@ PORTNAME= flipper-active_record PORTVERSION= 0.25.4 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= ActiveRecord adapter for Flipper WWW= https://github.com/jnunemaker/flipper LICENSE= MIT RUN_DEPENDS= rubygem-activerecord50>=4.2<8:databases/rubygem-activerecord50 \ rubygem-flipper>=${PORTVERSION}<0.26:devel/rubygem-flipper USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-gdbm/Makefile b/databases/rubygem-gdbm/Makefile index 56007b9aaa44..ec818490cf23 100644 --- a/databases/rubygem-gdbm/Makefile +++ b/databases/rubygem-gdbm/Makefile @@ -1,18 +1,17 @@ PORTNAME= gdbm PORTVERSION= 2.1.0 PORTEPOCH= 2 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby extension to GDBM library WWW= https://github.com/ruby/gdbm LICENSE= BSD2CLAUSE LIB_DEPENDS= libgdbm.so:databases/gdbm USES= gem -USE_RUBY= yes .include diff --git a/databases/rubygem-globalid-rails5/Makefile b/databases/rubygem-globalid-rails5/Makefile index 5e177889db15..736f45b3815e 100644 --- a/databases/rubygem-globalid-rails5/Makefile +++ b/databases/rubygem-globalid-rails5/Makefile @@ -1,21 +1,20 @@ PORTNAME= globalid PORTVERSION= 1.0.0 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= URIs for your models makes it easy to pass references around WWW= https://github.com/rails/globalid LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport5>=5.0:devel/rubygem-activesupport5 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-globalid-rails50/Makefile b/databases/rubygem-globalid-rails50/Makefile index b0289b50b51e..4df6c25e9f87 100644 --- a/databases/rubygem-globalid-rails50/Makefile +++ b/databases/rubygem-globalid-rails50/Makefile @@ -1,21 +1,20 @@ PORTNAME= globalid PORTVERSION= 1.0.0 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= sunpoet@FreeBSD.org COMMENT= URIs for your models makes it easy to pass references around WWW= https://github.com/rails/globalid LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport50>=5.0:devel/rubygem-activesupport50 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-globalid-rails52/Makefile b/databases/rubygem-globalid-rails52/Makefile index d989e23fc638..303972c6a5f0 100644 --- a/databases/rubygem-globalid-rails52/Makefile +++ b/databases/rubygem-globalid-rails52/Makefile @@ -1,21 +1,20 @@ PORTNAME= globalid PORTVERSION= 1.0.0 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= sunpoet@FreeBSD.org COMMENT= URIs for your models makes it easy to pass references around WWW= https://github.com/rails/globalid LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport52>=5.0:devel/rubygem-activesupport52 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-globalid-rails60/Makefile b/databases/rubygem-globalid-rails60/Makefile index 206ade640e48..18098c655a0b 100644 --- a/databases/rubygem-globalid-rails60/Makefile +++ b/databases/rubygem-globalid-rails60/Makefile @@ -1,21 +1,20 @@ PORTNAME= globalid PORTVERSION= 1.0.0 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= URIs for your models makes it easy to pass references around WWW= https://github.com/rails/globalid LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport60>=5.0:devel/rubygem-activesupport60 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-globalid-rails61/Makefile b/databases/rubygem-globalid-rails61/Makefile index 934538de2714..af2d5d2517ba 100644 --- a/databases/rubygem-globalid-rails61/Makefile +++ b/databases/rubygem-globalid-rails61/Makefile @@ -1,21 +1,20 @@ PORTNAME= globalid PORTVERSION= 1.0.0 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= URIs for your models makes it easy to pass references around WWW= https://github.com/rails/globalid LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport61>=5.0:devel/rubygem-activesupport61 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-globalid-rails70/Makefile b/databases/rubygem-globalid-rails70/Makefile index 56ddccab3fce..c955768a8619 100644 --- a/databases/rubygem-globalid-rails70/Makefile +++ b/databases/rubygem-globalid-rails70/Makefile @@ -1,21 +1,20 @@ PORTNAME= globalid PORTVERSION= 1.0.0 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails70 MAINTAINER= sunpoet@FreeBSD.org COMMENT= URIs for your models makes it easy to pass references around WWW= https://github.com/rails/globalid LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport70>=5.0:devel/rubygem-activesupport70 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-globalid/Makefile b/databases/rubygem-globalid/Makefile index 83f4de444c41..26ac8b88c3a2 100644 --- a/databases/rubygem-globalid/Makefile +++ b/databases/rubygem-globalid/Makefile @@ -1,22 +1,21 @@ PORTNAME= globalid PORTVERSION= 0.4.2 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= URIs for your models makes it easy to pass references around WWW= https://github.com/rails/globalid LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport4>=4.2.0:devel/rubygem-activesupport4 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^0\. .include diff --git a/databases/rubygem-her/Makefile b/databases/rubygem-her/Makefile index ed9e335ec965..e8e6209e5a15 100644 --- a/databases/rubygem-her/Makefile +++ b/databases/rubygem-her/Makefile @@ -1,23 +1,22 @@ PORTNAME= her PORTVERSION= 1.1.1 PORTREVISION= 1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= ORM that maps REST resources to Ruby objects WWW= https://github.com/remi/her LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activemodel4>=4.2.1:databases/rubygem-activemodel4 \ rubygem-faraday1>=0.8:www/rubygem-faraday1 \ rubygem-multi_json>=1.7<2:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-hiredis/Makefile b/databases/rubygem-hiredis/Makefile index e16fe803c4d0..e77e2e77052d 100644 --- a/databases/rubygem-hiredis/Makefile +++ b/databases/rubygem-hiredis/Makefile @@ -1,19 +1,18 @@ PORTNAME= hiredis PORTVERSION= 0.6.3 PORTREVISION= 4 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby wrapper for hiredis WWW= https://github.com/redis/hiredis-rb LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= redis>=0:databases/redis USES= gem gmake -USE_RUBY= yes .include diff --git a/databases/rubygem-influxdb/Makefile b/databases/rubygem-influxdb/Makefile index dd17ee0ba7df..a665ecdf5282 100644 --- a/databases/rubygem-influxdb/Makefile +++ b/databases/rubygem-influxdb/Makefile @@ -1,17 +1,16 @@ PORTNAME= influxdb PORTVERSION= 0.8.1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Ruby library for InfluxDB WWW= http://influxdb.org/ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-jdbc-mysql/Makefile b/databases/rubygem-jdbc-mysql/Makefile index 65d73eb0b9c9..2e4982f4db36 100644 --- a/databases/rubygem-jdbc-mysql/Makefile +++ b/databases/rubygem-jdbc-mysql/Makefile @@ -1,19 +1,18 @@ PORTNAME= jdbc-mysql PORTVERSION= 5.1.44 CATEGORIES= databases rubygems java MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= MySQL JDBC driver for JRuby WWW= https://github.com/jruby/activerecord-jdbc-adapter/tree/master/jdbc-mysql LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= jruby:lang/jruby NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-leo_manager_client/Makefile b/databases/rubygem-leo_manager_client/Makefile index 35757a43bc04..20958d10c480 100644 --- a/databases/rubygem-leo_manager_client/Makefile +++ b/databases/rubygem-leo_manager_client/Makefile @@ -1,17 +1,16 @@ PORTNAME= leo_manager_client PORTVERSION= 0.4.13 CATEGORIES= databases MASTER_SITES= RG MAINTAINER= trociny@FreeBSD.org COMMENT= LeoFS-Manager client library for Ruby WWW= https://leo-project.net/ LICENSE= APACHE20 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-marginalia/Makefile b/databases/rubygem-marginalia/Makefile index ab730620a2ad..76d53b829b6c 100644 --- a/databases/rubygem-marginalia/Makefile +++ b/databases/rubygem-marginalia/Makefile @@ -1,22 +1,21 @@ PORTNAME= marginalia PORTVERSION= 1.11.1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Attach comments to your ActiveRecord queries WWW= https://github.com/basecamp/marginalia LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-actionpack61>=2.3:www/rubygem-actionpack61 \ rubygem-activerecord61>=2.3:databases/rubygem-activerecord61 USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-mario-redis-lock/Makefile b/databases/rubygem-mario-redis-lock/Makefile index 7a078f578505..bef18e5254af 100644 --- a/databases/rubygem-mario-redis-lock/Makefile +++ b/databases/rubygem-mario-redis-lock/Makefile @@ -1,19 +1,18 @@ PORTNAME= mario-redis-lock PORTVERSION= 1.2.1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby distributed lock using Redis, with emphasis in transparency WWW= https://github.com/marioizquierdo/mario-redis-lock LICENSE= MIT RUN_DEPENDS= rubygem-redis>=3.0.5:databases/rubygem-redis USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-memcache-client/Makefile b/databases/rubygem-memcache-client/Makefile index babc2b81482b..cb015770ad98 100644 --- a/databases/rubygem-memcache-client/Makefile +++ b/databases/rubygem-memcache-client/Makefile @@ -1,19 +1,18 @@ PORTNAME= memcache-client PORTVERSION= 1.8.5 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby bindings for MemCached WWW= https://github.com/mperham/memcache-client LICENSE= BSD3CLAUSE NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/memcached_top .include diff --git a/databases/rubygem-memcache/Makefile b/databases/rubygem-memcache/Makefile index 478b955ee65a..cd6a8b09923b 100644 --- a/databases/rubygem-memcache/Makefile +++ b/databases/rubygem-memcache/Makefile @@ -1,20 +1,19 @@ PORTNAME= memcache PORTVERSION= 1.5.1 PORTREVISION= 1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby bindings for libmemcached WWW= https://github.com/ninjudd/memcache LICENSE= MIT LIB_DEPENDS= libmemcached.so:databases/libmemcached CONFIGURE_ARGS= --with-opt-dir=${LOCALBASE} GEM_ENV= EXTERNAL_LIB="yes" -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-mysql/Makefile b/databases/rubygem-mysql/Makefile index 3e3bb2bfe692..24dc78d15698 100644 --- a/databases/rubygem-mysql/Makefile +++ b/databases/rubygem-mysql/Makefile @@ -1,16 +1,15 @@ PORTNAME= mysql PORTVERSION= 2.9.1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= MySQL API module for Ruby WWW= https://github.com/luislavena/mysql-gem LICENSE= GPLv2 RUBY LICENSE_COMB= dual -USE_RUBY= yes USES= gem mysql .include diff --git a/databases/rubygem-mysql2/Makefile b/databases/rubygem-mysql2/Makefile index 19ae236ea52c..16636c918011 100644 --- a/databases/rubygem-mysql2/Makefile +++ b/databases/rubygem-mysql2/Makefile @@ -1,16 +1,15 @@ PORTNAME= mysql2 PORTVERSION= 0.5.4 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple, fast MySQL library for Ruby, binding to libmysql WWW= https://github.com/brianmario/mysql2 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem mysql ssl -USE_RUBY= yes .include diff --git a/databases/rubygem-openid-redis-store/Makefile b/databases/rubygem-openid-redis-store/Makefile index e28399328e6b..4da26595a38f 100644 --- a/databases/rubygem-openid-redis-store/Makefile +++ b/databases/rubygem-openid-redis-store/Makefile @@ -1,19 +1,18 @@ PORTNAME= openid-redis-store PORTVERSION= 0.0.2 PORTREVISION= 1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Redis store for OpenID WWW= https://github.com/dekart/openid-redis-store RUN_DEPENDS= rubygem-redis>=0:databases/rubygem-redis \ rubygem-ruby-openid>=0:net/rubygem-ruby-openid NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-paranoia/Makefile b/databases/rubygem-paranoia/Makefile index d792798be556..d5e476f488bf 100644 --- a/databases/rubygem-paranoia/Makefile +++ b/databases/rubygem-paranoia/Makefile @@ -1,20 +1,19 @@ PORTNAME= paranoia PORTVERSION= 2.6.1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Soft deletion mapper for activerecord WWW= https://github.com/rubysherpas/paranoia LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activerecord60>=5.1<7.1:databases/rubygem-activerecord60 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-pg/Makefile b/databases/rubygem-pg/Makefile index a29de84aaf5a..b5525ea95500 100644 --- a/databases/rubygem-pg/Makefile +++ b/databases/rubygem-pg/Makefile @@ -1,22 +1,21 @@ PORTNAME= pg PORTVERSION= 1.4.5 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby interface to PostgreSQL library WWW= https://github.com/ged/ruby-pg LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL 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` PG_CONFIG= ${LOCALBASE}/bin/pg_config .include diff --git a/databases/rubygem-pg13/Makefile b/databases/rubygem-pg13/Makefile index 9b4ebb78f6ed..02660e8ad562 100644 --- a/databases/rubygem-pg13/Makefile +++ b/databases/rubygem-pg13/Makefile @@ -1,25 +1,24 @@ PORTNAME= pg PORTVERSION= 1.3.5 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 13 MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby interface to PostgreSQL library WWW= https://github.com/ged/ruby-pg LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL 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` PG_CONFIG= ${LOCALBASE}/bin/pg_config PORTSCOUT= limit:^1\.3\. .include diff --git a/databases/rubygem-pg_array_parser/Makefile b/databases/rubygem-pg_array_parser/Makefile index f728869d5bcd..c3a6ac7dff28 100644 --- a/databases/rubygem-pg_array_parser/Makefile +++ b/databases/rubygem-pg_array_parser/Makefile @@ -1,15 +1,14 @@ PORTNAME= pg_array_parser PORTVERSION= 0.0.9 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Fast PostreSQL array parsing WWW= https://github.com/dockyard/pg_array_parser LICENSE= MIT -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-pg_query/Makefile b/databases/rubygem-pg_query/Makefile index 961586f7abe9..97729faf7fb6 100644 --- a/databases/rubygem-pg_query/Makefile +++ b/databases/rubygem-pg_query/Makefile @@ -1,19 +1,18 @@ PORTNAME= pg_query PORTVERSION= 2.2.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Parses SQL queries using a copy of the PostgreSQL server query parser WWW= https://github.com/lfittl/pg_query LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= rubygem-pathname>0:devel/rubygem-pathname RUN_DEPENDS= rubygem-google-protobuf>=3.19.2:devel/rubygem-google-protobuf USES= gem -USE_RUBY= yes .include diff --git a/databases/rubygem-pghero-rails5/Makefile b/databases/rubygem-pghero-rails5/Makefile index 0089a4ebeb85..df32c4525299 100644 --- a/databases/rubygem-pghero-rails5/Makefile +++ b/databases/rubygem-pghero-rails5/Makefile @@ -1,23 +1,22 @@ PORTNAME= pghero PORTVERSION= 2.8.3 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= ruby@FreeBSD.org COMMENT= Performance dashboard for Postgres WWW= https://github.com/ankane/pghero LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activerecord5>=5:databases/rubygem-activerecord5 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= pghero_project .include diff --git a/databases/rubygem-pghero-rails50/Makefile b/databases/rubygem-pghero-rails50/Makefile index 1bce9a27d055..25b2d010888b 100644 --- a/databases/rubygem-pghero-rails50/Makefile +++ b/databases/rubygem-pghero-rails50/Makefile @@ -1,23 +1,22 @@ PORTNAME= pghero PORTVERSION= 2.8.3 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= ruby@FreeBSD.org COMMENT= Performance dashboard for Postgres WWW= https://github.com/ankane/pghero LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activerecord50>=5:databases/rubygem-activerecord50 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= pghero_project .include diff --git a/databases/rubygem-pghero-rails61/Makefile b/databases/rubygem-pghero-rails61/Makefile index 226739e33045..9184a00c2616 100644 --- a/databases/rubygem-pghero-rails61/Makefile +++ b/databases/rubygem-pghero-rails61/Makefile @@ -1,23 +1,22 @@ PORTNAME= pghero PORTVERSION= 3.1.0 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= bofh@FreeBSD.org COMMENT= Performance dashboard for Postgres WWW= https://github.com/ankane/pghero LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activerecord61>=5:databases/rubygem-activerecord61 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= pghero_project .include diff --git a/databases/rubygem-pghero/Makefile b/databases/rubygem-pghero/Makefile index 009a651d15d2..e7e9851c80cf 100644 --- a/databases/rubygem-pghero/Makefile +++ b/databases/rubygem-pghero/Makefile @@ -1,22 +1,21 @@ PORTNAME= pghero PORTVERSION= 3.0.1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Performance dashboard for Postgres WWW= https://github.com/ankane/pghero LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activerecord60>=6:databases/rubygem-activerecord60 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= pghero_project .include diff --git a/databases/rubygem-pl-puppetdb-ruby/Makefile b/databases/rubygem-pl-puppetdb-ruby/Makefile index ab6d34566e12..7b028dd107ba 100644 --- a/databases/rubygem-pl-puppetdb-ruby/Makefile +++ b/databases/rubygem-pl-puppetdb-ruby/Makefile @@ -1,19 +1,18 @@ PORTNAME= pl-puppetdb-ruby PORTVERSION= 2.0.3 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= puppet@FreeBSD.org COMMENT= Simple Ruby client library for PuppetDB API WWW= https://rubygems.org/gems/pl-puppetdb-ruby LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-httparty>0:www/rubygem-httparty -USE_RUBY= yes USES= gem NO_ARCH= yes .include diff --git a/databases/rubygem-postgres_ext/Makefile b/databases/rubygem-postgres_ext/Makefile index dd57926a2007..b193d15312a5 100644 --- a/databases/rubygem-postgres_ext/Makefile +++ b/databases/rubygem-postgres_ext/Makefile @@ -1,21 +1,20 @@ PORTNAME= postgres_ext PORTVERSION= 3.0.1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= PostgreSQL data types extension for ActiveRecord WWW= https://github.com/dockyard/postgres_ext LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activerecord4>=4.0:databases/rubygem-activerecord4 \ rubygem-arel6>=4.0.1:databases/rubygem-arel6 \ rubygem-pg_array_parser>=0.0.9:databases/rubygem-pg_array_parser NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/databases/rubygem-puppetdb_cli/Makefile b/databases/rubygem-puppetdb_cli/Makefile index 880a44c8d1c0..6fedf7c65aa0 100644 --- a/databases/rubygem-puppetdb_cli/Makefile +++ b/databases/rubygem-puppetdb_cli/Makefile @@ -1,28 +1,27 @@ PORTNAME= puppetdb_cli PORTVERSION= 2.0.1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= puppet@FreeBSD.org COMMENT= PuppetDB CLI Tooling WWW= https://github.com/puppetlabs/puppetdb-cli LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-cri>=2.15<3:devel/rubygem-cri \ rubygem-pl-puppetdb-ruby>=2.0.3<2.1:databases/rubygem-pl-puppetdb-ruby USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/puppet-db \ bin/puppet-query post-patch: ${REINPLACE_CMD} -e 's|/etc/puppetlabs|/usr/local/etc|' \ ${WRKSRC}/man/puppetdb_conf.pod .include diff --git a/databases/rubygem-rbase/Makefile b/databases/rubygem-rbase/Makefile index 3d5badb4a107..7680dad4e6f4 100644 --- a/databases/rubygem-rbase/Makefile +++ b/databases/rubygem-rbase/Makefile @@ -1,15 +1,14 @@ PORTNAME= rbase PORTVERSION= 0.1.3 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library to create/read/write to XBase databases (*.DBF files) WWW= https://rubygems.org/gems/rbase USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-red-arrow-dataset/Makefile b/databases/rubygem-red-arrow-dataset/Makefile index a64689bed06e..f1bbeca1480c 100644 --- a/databases/rubygem-red-arrow-dataset/Makefile +++ b/databases/rubygem-red-arrow-dataset/Makefile @@ -1,22 +1,21 @@ PORTNAME= red-arrow-dataset PORTVERSION= 8.0.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby bindings of Apache Arrow Dataset WWW= https://arrow.apache.org/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt BUILD_DEPENDS= rubygem-rake>=0:devel/rubygem-rake LIB_DEPENDS= libarrow-glib.so:databases/arrow-glib RUN_DEPENDS= rubygem-red-arrow>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-red-arrow USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-red-arrow/Makefile b/databases/rubygem-red-arrow/Makefile index 6c1e34b7731d..895b60cc9e9c 100644 --- a/databases/rubygem-red-arrow/Makefile +++ b/databases/rubygem-red-arrow/Makefile @@ -1,25 +1,24 @@ PORTNAME= red-arrow PORTVERSION= 8.0.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby bindings of Apache Arrow WWW= https://arrow.apache.org/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libarrow-glib.so:databases/arrow-glib RUN_DEPENDS= rubygem-bigdecimal>=2.0.3:math/rubygem-bigdecimal \ rubygem-extpp>=0.0.7:devel/rubygem-extpp \ rubygem-gio2>=3.5.0:devel/rubygem-gio2 \ rubygem-native-package-installer>=0:devel/rubygem-native-package-installer \ rubygem-pkg-config>=0:devel/rubygem-pkg-config \ USES= gem localbase -USE_RUBY= yes CFLAGS+= -I${LOCALBASE}/include .include diff --git a/databases/rubygem-red-gandiva/Makefile b/databases/rubygem-red-gandiva/Makefile index 1453be0f0547..6879fc7f30a3 100644 --- a/databases/rubygem-red-gandiva/Makefile +++ b/databases/rubygem-red-gandiva/Makefile @@ -1,22 +1,21 @@ PORTNAME= red-gandiva PORTVERSION= 8.0.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby bindings of Gandiva WWW= https://arrow.apache.org/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt BUILD_DEPENDS= rubygem-rake>=0:devel/rubygem-rake LIB_DEPENDS= libarrow-glib.so:databases/arrow-glib RUN_DEPENDS= rubygem-red-arrow>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-red-arrow USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-red-parquet/Makefile b/databases/rubygem-red-parquet/Makefile index 74b1917e208d..e9a2535614ac 100644 --- a/databases/rubygem-red-parquet/Makefile +++ b/databases/rubygem-red-parquet/Makefile @@ -1,22 +1,21 @@ PORTNAME= red-parquet PORTVERSION= 8.0.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby bindings of Apache Parquet WWW= https://arrow.apache.org/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt BUILD_DEPENDS= rubygem-rake>=0:devel/rubygem-rake LIB_DEPENDS= libarrow-glib.so:databases/arrow-glib RUN_DEPENDS= rubygem-red-arrow>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-red-arrow USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-red-plasma/Makefile b/databases/rubygem-red-plasma/Makefile index 3b82afa8bd09..a7a291676525 100644 --- a/databases/rubygem-red-plasma/Makefile +++ b/databases/rubygem-red-plasma/Makefile @@ -1,22 +1,21 @@ PORTNAME= red-plasma PORTVERSION= 8.0.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby bindings of Plasma WWW= https://arrow.apache.org/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt BUILD_DEPENDS= rubygem-rake>=0:devel/rubygem-rake LIB_DEPENDS= libarrow-glib.so:databases/arrow-glib RUN_DEPENDS= rubygem-red-arrow>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-red-arrow USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-redis-actionpack-rails5/Makefile b/databases/rubygem-redis-actionpack-rails5/Makefile index cd1d8c3b805a..b50fdf867a0a 100644 --- a/databases/rubygem-redis-actionpack-rails5/Makefile +++ b/databases/rubygem-redis-actionpack-rails5/Makefile @@ -1,23 +1,22 @@ PORTNAME= redis-actionpack PORTVERSION= 5.3.0 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= ruby@FreeBSD.org COMMENT= Redis session store for ActionPack WWW= https://redis-store.org/redis-actionpack/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack5>=5<8:www/rubygem-actionpack5 \ rubygem-redis-rack>=2.1.0<3:www/rubygem-redis-rack \ rubygem-redis-store>=1.1.0<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-redis-actionpack-rails50/Makefile b/databases/rubygem-redis-actionpack-rails50/Makefile index 883db432221e..59a01b921cd1 100644 --- a/databases/rubygem-redis-actionpack-rails50/Makefile +++ b/databases/rubygem-redis-actionpack-rails50/Makefile @@ -1,23 +1,22 @@ PORTNAME= redis-actionpack PORTVERSION= 5.3.0 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= ruby@FreeBSD.org COMMENT= Redis session store for ActionPack WWW= https://redis-store.org/redis-actionpack/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack50>=5<8:www/rubygem-actionpack50 \ rubygem-redis-rack>=2.1.0<3:www/rubygem-redis-rack \ rubygem-redis-store>=1.1.0<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-redis-actionpack-rails52/Makefile b/databases/rubygem-redis-actionpack-rails52/Makefile index 001dd5b940b6..ea1ee79590bc 100644 --- a/databases/rubygem-redis-actionpack-rails52/Makefile +++ b/databases/rubygem-redis-actionpack-rails52/Makefile @@ -1,23 +1,22 @@ PORTNAME= redis-actionpack PORTVERSION= 5.3.0 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= ruby@FreeBSD.org COMMENT= Redis session store for ActionPack WWW= https://redis-store.org/redis-actionpack/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack52>=5<8:www/rubygem-actionpack52 \ rubygem-redis-rack>=2.1.0<3:www/rubygem-redis-rack \ rubygem-redis-store>=1.1.0<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-redis-actionpack-rails60/Makefile b/databases/rubygem-redis-actionpack-rails60/Makefile index 7f8d0327fdc8..6bf3351e9b35 100644 --- a/databases/rubygem-redis-actionpack-rails60/Makefile +++ b/databases/rubygem-redis-actionpack-rails60/Makefile @@ -1,23 +1,22 @@ PORTNAME= redis-actionpack PORTVERSION= 5.3.0 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails60 MAINTAINER= ruby@FreeBSD.org COMMENT= Redis session store for ActionPack WWW= https://redis-store.org/redis-actionpack/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack60>=5<8:www/rubygem-actionpack60 \ rubygem-redis-rack>=2.1.0<3:www/rubygem-redis-rack \ rubygem-redis-store>=1.1.0<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-redis-actionpack-rails61/Makefile b/databases/rubygem-redis-actionpack-rails61/Makefile index 86951fbbe59d..ca500dd37fb4 100644 --- a/databases/rubygem-redis-actionpack-rails61/Makefile +++ b/databases/rubygem-redis-actionpack-rails61/Makefile @@ -1,23 +1,22 @@ PORTNAME= redis-actionpack PORTVERSION= 5.3.0 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= ruby@FreeBSD.org COMMENT= Redis session store for ActionPack WWW= https://redis-store.org/redis-actionpack/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack61>=5<8:www/rubygem-actionpack61 \ rubygem-redis-rack>=2.1.0<3:www/rubygem-redis-rack \ rubygem-redis-store>=1.1.0<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-redis-actionpack/Makefile b/databases/rubygem-redis-actionpack/Makefile index 38c2ce750ac8..bdeb36017fea 100644 --- a/databases/rubygem-redis-actionpack/Makefile +++ b/databases/rubygem-redis-actionpack/Makefile @@ -1,22 +1,21 @@ PORTNAME= redis-actionpack PORTVERSION= 5.3.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Redis session store for ActionPack WWW= https://redis-store.org/redis-actionpack/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack52>=5<8:www/rubygem-actionpack52 \ rubygem-redis-rack>=2.1.0<3:www/rubygem-redis-rack \ rubygem-redis-store>=1.1.0<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-redis-client/Makefile b/databases/rubygem-redis-client/Makefile index 1bd838405c35..ea2d5b15953c 100644 --- a/databases/rubygem-redis-client/Makefile +++ b/databases/rubygem-redis-client/Makefile @@ -1,20 +1,19 @@ PORTNAME= redis-client PORTVERSION= 0.11.1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple low-level client for Redis 6+ WWW= https://github.com/redis-rb/redis-client LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-connection_pool>=0:net/rubygem-connection_pool USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-redis-cluster-client/Makefile b/databases/rubygem-redis-cluster-client/Makefile index 9440dbbbb4bc..632ffcf53511 100644 --- a/databases/rubygem-redis-cluster-client/Makefile +++ b/databases/rubygem-redis-cluster-client/Makefile @@ -1,19 +1,18 @@ PORTNAME= redis-cluster-client PORTVERSION= 0.3.14 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Redis cluster client for Ruby WWW= https://github.com/redis-rb/redis-cluster-client LICENSE= MIT RUN_DEPENDS= rubygem-redis-client>=0.10:databases/rubygem-redis-client USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-redis-clustering/Makefile b/databases/rubygem-redis-clustering/Makefile index b7cb6c3dd2a4..39fe8d9a8521 100644 --- a/databases/rubygem-redis-clustering/Makefile +++ b/databases/rubygem-redis-clustering/Makefile @@ -1,21 +1,20 @@ PORTNAME= redis-clustering PORTVERSION= 5.0.5 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby client that tries to match Redis Cluster API WWW= https://github.com/redis/redis-rb/tree/master/cluster LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-redis>=${PORTVERSION}:databases/rubygem-redis \ rubygem-redis-cluster-client>=0.3.7:databases/rubygem-redis-cluster-client USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-redis-namespace/Makefile b/databases/rubygem-redis-namespace/Makefile index 961c780c33a3..967967fe7f1f 100644 --- a/databases/rubygem-redis-namespace/Makefile +++ b/databases/rubygem-redis-namespace/Makefile @@ -1,20 +1,19 @@ PORTNAME= redis-namespace PORTVERSION= 1.9.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby client class for Redis with namespace support WWW= https://github.com/resque/redis-namespace LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-redis>=4:databases/rubygem-redis USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-redis-namespace18/Makefile b/databases/rubygem-redis-namespace18/Makefile index 75c93efa812d..602d7f7ebf28 100644 --- a/databases/rubygem-redis-namespace18/Makefile +++ b/databases/rubygem-redis-namespace18/Makefile @@ -1,23 +1,22 @@ PORTNAME= redis-namespace PORTVERSION= 1.8.2 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 18 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby client class for Redis with namespace support WWW= https://github.com/resque/redis-namespace LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-redis>=3.0.4:databases/rubygem-redis USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\.8\. .include diff --git a/databases/rubygem-redis/Makefile b/databases/rubygem-redis/Makefile index 22064cd54799..e0e5352dc9da 100644 --- a/databases/rubygem-redis/Makefile +++ b/databases/rubygem-redis/Makefile @@ -1,23 +1,22 @@ PORTNAME= redis PORTVERSION= 5.0.5 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby client library for Redis, the key value storage server WWW= https://github.com/redis/redis-rb LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-redis-client>=0.9.0:databases/rubygem-redis-client USES= gem -USE_RUBY= yes NO_ARCH= yes post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/build .include diff --git a/databases/rubygem-redis4/Makefile b/databases/rubygem-redis4/Makefile index 5043e27bab34..105ebdae8496 100644 --- a/databases/rubygem-redis4/Makefile +++ b/databases/rubygem-redis4/Makefile @@ -1,24 +1,23 @@ PORTNAME= redis PORTVERSION= 4.8.0 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby client library for Redis, the key value storage server WWW= https://github.com/redis/redis-rb LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^4\. post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/build .include diff --git a/databases/rubygem-scenic61/Makefile b/databases/rubygem-scenic61/Makefile index 63a1cdd38fb4..d0c8676bece4 100644 --- a/databases/rubygem-scenic61/Makefile +++ b/databases/rubygem-scenic61/Makefile @@ -1,22 +1,21 @@ PORTNAME= scenic PORTVERSION= 1.7.0 CATEGORIES= databases rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= bofh@FreeBSD.org COMMENT= Adds methods to ActiveRecord::Migration to create and manage database views in Rails WWW= https://github.com/scenic-views/scenic LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activerecord61>=4.0.0:databases/rubygem-activerecord61 \ rubygem-railties61>=4.0.0:www/rubygem-railties61 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-sdbm/Makefile b/databases/rubygem-sdbm/Makefile index 2d554572b902..1dd216131508 100644 --- a/databases/rubygem-sdbm/Makefile +++ b/databases/rubygem-sdbm/Makefile @@ -1,15 +1,14 @@ PORTNAME= sdbm PORTVERSION= 1.0.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple file-based key-value store with String keys and values WWW= https://github.com/ruby/sdbm LICENSE= BSD2CLAUSE USES= gem -USE_RUBY= yes .include diff --git a/databases/rubygem-seed-fu/Makefile b/databases/rubygem-seed-fu/Makefile index b780c62588a2..29e67557c14c 100644 --- a/databases/rubygem-seed-fu/Makefile +++ b/databases/rubygem-seed-fu/Makefile @@ -1,22 +1,21 @@ PORTNAME= seed-fu PORTVERSION= 2.3.9 PORTREVISION= 3 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library to maintain seed data WWW= https://github.com/mbleigh/seed-fu LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activerecord61>=3.1:databases/rubygem-activerecord61 \ rubygem-activesupport61>=3.1:devel/rubygem-activesupport61 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-sqlite3-ruby/Makefile b/databases/rubygem-sqlite3-ruby/Makefile index ede8bcfc5e97..d50912e41e6e 100644 --- a/databases/rubygem-sqlite3-ruby/Makefile +++ b/databases/rubygem-sqlite3-ruby/Makefile @@ -1,24 +1,23 @@ PORTNAME= sqlite3-ruby PORTVERSION= 1.3.3 PORTREVISION= 1 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby interface to the SQLite DB engine version 3 WWW= https://github.com/sparklemotion/sqlite3-ruby LICENSE= BSD3CLAUSE BUILD_DEPENDS= swig:devel/swig LIB_DEPENDS= libsqlite3.so:databases/sqlite3 RUN_DEPENDS= rubygem-sqlite3>=1.3.3:databases/rubygem-sqlite3 CONFIGURE_ARGS= --with-sqlite3-dir=${LOCALBASE} NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/sqlite3_ruby .include diff --git a/databases/rubygem-sqlite3/Makefile b/databases/rubygem-sqlite3/Makefile index 5f6aa638dfc8..167dda1f3b78 100644 --- a/databases/rubygem-sqlite3/Makefile +++ b/databases/rubygem-sqlite3/Makefile @@ -1,20 +1,19 @@ PORTNAME= sqlite3 PORTVERSION= 1.5.4 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby interface to the SQLite DB engine version 3 WWW= https://github.com/sparklemotion/sqlite3-ruby LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libsqlite3.so:databases/sqlite3 USES= gem -USE_RUBY= yes CONFIGURE_ARGS= --with-sqlite3-dir=${LOCALBASE} .include diff --git a/databases/rubygem-state_machines-activemodel/Makefile b/databases/rubygem-state_machines-activemodel/Makefile index 50ec570db930..3fa692bd61e6 100644 --- a/databases/rubygem-state_machines-activemodel/Makefile +++ b/databases/rubygem-state_machines-activemodel/Makefile @@ -1,21 +1,20 @@ PORTNAME= state_machines-activemodel PORTVERSION= 0.8.0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Support for creating state machines for attributes on ActiveModel WWW= https://github.com/state-machines/state_machines-activemodel LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activemodel60>=5.1:databases/rubygem-activemodel60 \ rubygem-state_machines>=0.5.0:devel/rubygem-state_machines USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-state_machines-activerecord/Makefile b/databases/rubygem-state_machines-activerecord/Makefile index b12a67961b6d..34e88989439d 100644 --- a/databases/rubygem-state_machines-activerecord/Makefile +++ b/databases/rubygem-state_machines-activerecord/Makefile @@ -1,22 +1,21 @@ PORTNAME= state_machines-activerecord PORTVERSION= 0.8.0 PORTREVISION= 0 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Support for creating state machines for attributes on ActiveRecord WWW= https://github.com/state-machines/state_machines-activerecord LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activerecord60>=5.1:databases/rubygem-activerecord60 \ rubygem-state_machines-activemodel>=0.8.0:databases/rubygem-state_machines-activemodel USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/databases/rubygem-tarantool/Makefile b/databases/rubygem-tarantool/Makefile index 1cc68dbcfb8c..0e6f28012f2e 100644 --- a/databases/rubygem-tarantool/Makefile +++ b/databases/rubygem-tarantool/Makefile @@ -1,21 +1,20 @@ PORTNAME= tarantool PORTVERSION= 0.5.8 CATEGORIES= databases rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Tarantool KV-storage client WWW= https://github.com/tarantool/tarantool-ruby LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-bin_utils>=0.0.3<0.1:devel/rubygem-bin_utils \ rubygem-iproto>=0.3.17:net/rubygem-iproto \ rubygem-murmurhash3>=0.1.1:devel/rubygem-murmurhash3 \ rubygem-sumbur>=0.0.2:devel/rubygem-sumbur USES= gem -USE_RUBY= yes .include diff --git a/databases/xapian-bindings/Makefile b/databases/xapian-bindings/Makefile index 634ce3488ae4..8150bd38c3e4 100644 --- a/databases/xapian-bindings/Makefile +++ b/databases/xapian-bindings/Makefile @@ -1,31 +1,30 @@ PORTNAME= xapian-bindings PORTVERSION= 1.4.21 CATEGORIES= databases MAINTAINER= sunpoet@FreeBSD.org COMMENT= Bindings allowing Xapian to be used from various programming languages WWW= https://xapian.org/ LICENSE= GPLv2 USES= metaport PORTSCOUT= limitw:1,even OPTIONS_DEFINE= LUA PERL PHP PYTHON RUBY # Remove PHP from OPTIONS_DEFAULT to avoid circular dependency OPTIONS_DEFAULT=LUA PERL PYTHON RUBY LUA_RUN_DEPENDS= ${LUA_PKGNAMEPREFIX}xapian>=${PORTVERSION}:databases/lua-xapian@${LUA_FLAVOR} LUA_USES= lua:run PERL_RUN_DEPENDS= p5-Xapian>=${PORTVERSION}:databases/p5-Xapian PHP_RUN_DEPENDS= ${PHP_PKGNAMEPREFIX}xapian>=${PORTVERSION}:databases/php-xapian@${PHP_FLAVOR} PHP_USES= php PHP_VARS= IGNORE_WITH_PHP="80 81 82" 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 diff --git a/deskutils/rubygem-shellplay/Makefile b/deskutils/rubygem-shellplay/Makefile index 5487602fa131..6fb891eb22f0 100644 --- a/deskutils/rubygem-shellplay/Makefile +++ b/deskutils/rubygem-shellplay/Makefile @@ -1,26 +1,25 @@ PORTNAME= shellplay PORTVERSION= 0.1.9 PORTREVISION= 1 CATEGORIES= deskutils textproc rubygems MASTER_SITES= RG MAINTAINER= mose@mose.com COMMENT= CLI tool for shell-based presentations WWW= https://github.com/mose/shellplay LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-cliprompt>=0.1.2:devel/rubygem-cliprompt \ rubygem-configstruct>=0.1.0:devel/rubygem-configstruct \ rubygem-paint>=2.0.0:devel/rubygem-paint \ rubygem-shell2html>=0.0.6:textproc/rubygem-shell2html USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/shellcat bin/shellexport bin/shellplay bin/shellrecord .include diff --git a/deskutils/rubygem-taskjuggler/Makefile b/deskutils/rubygem-taskjuggler/Makefile index 0b162dcf6dc2..f8f99cbfa9ae 100644 --- a/deskutils/rubygem-taskjuggler/Makefile +++ b/deskutils/rubygem-taskjuggler/Makefile @@ -1,32 +1,31 @@ PORTNAME= taskjuggler PORTVERSION= 3.7.1 CATEGORIES= deskutils rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Project management tool for UNIX based operating systems WWW= https://taskjuggler.org/ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-mail>=2.7.1,2<3,2:mail/rubygem-mail \ rubygem-term-ansicolor>=1.7.1<2:devel/rubygem-term-ansicolor USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/tj3 \ bin/tj3client \ bin/tj3d \ bin/tj3man \ bin/tj3ss_receiver \ bin/tj3ss_sender \ bin/tj3ts_receiver \ bin/tj3ts_sender \ bin/tj3ts_summary \ bin/tj3webd .include diff --git a/devel/cvsdelta/Makefile b/devel/cvsdelta/Makefile index 6b88b4a071cf..b07780dc0a2d 100644 --- a/devel/cvsdelta/Makefile +++ b/devel/cvsdelta/Makefile @@ -1,21 +1,21 @@ PORTNAME= cvsdelta PORTVERSION= 1.7.0 CATEGORIES= devel MASTER_SITES= http://belnet.dl.sourceforge.net/sourceforge/cvsdelta/ \ SF MAINTAINER= ports@FreeBSD.org 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 \ man/man1/cvsdelta.1.gz do-install: ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} ${INSTALL_MAN} ${WRKSRC}/cvsdelta.1 ${STAGEDIR}${PREFIX}/man/man1/ .include diff --git a/devel/cvsspam/Makefile b/devel/cvsspam/Makefile index 0a294a6a137d..0adc3ebf00c8 100644 --- a/devel/cvsspam/Makefile +++ b/devel/cvsspam/Makefile @@ -1,43 +1,43 @@ PORTNAME= cvsspam PORTVERSION= 0.2.12 PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= http://www.badgers-in-foil.co.uk/projects/cvsspam/releases/ \ LOCAL/ehaupt MAINTAINER= ehaupt@FreeBSD.org COMMENT= Sends diffs when a change is committed to your CVS repository WWW= http://www.badgers-in-foil.co.uk/projects/cvsspam/ LICENSE= GPLv2 -USE_RUBY= yes +USES= ruby NO_BUILD= yes NO_ARCH= yes PORTDOCS= COPYING CREDITS TODO cvsspam-doc.html cvsspam-doc.pdf OPTIONS_DEFINE= DOCS post-patch: .for f in collect_diffs.rb cvsspam.rb record_lastdir.rb @${REINPLACE_CMD} -e 's|/usr/bin/ruby|${RUBY}|' \ ${WRKSRC}/${f} .endfor @${REINPLACE_CMD} -E 's|/etc/cvsspam/(cvsspam\.conf)|${PREFIX}/etc/\1|' \ ${WRKSRC}/collect_diffs.rb do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/libexec/${PORTNAME} .for f in collect_diffs.rb cvsspam.rb record_lastdir.rb ${INSTALL_SCRIPT} ${WRKSRC}/${f} \ ${STAGEDIR}${PREFIX}/libexec/${PORTNAME} .endfor ${INSTALL_DATA} ${WRKSRC}/cvsspam.conf \ ${STAGEDIR}${PREFIX}/etc/cvsspam.conf.sample @${MKDIR} ${STAGEDIR}${DOCSDIR} .for f in ${PORTDOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR} .endfor .include diff --git a/devel/gitaly/Makefile b/devel/gitaly/Makefile index 931ca5d750f9..28ae6737aadc 100644 --- a/devel/gitaly/Makefile +++ b/devel/gitaly/Makefile @@ -1,98 +1,97 @@ PORTNAME= gitaly DISTVERSION= 15.6.4 PORTREVISION= 1 DISTVERSIONPREFIX= v CATEGORIES= devel MAINTAINER= mfechner@FreeBSD.org COMMENT= Smart reverse proxy for GitLab WWW= https://gitlab.com/gitlab-org/gitaly LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE # Make sure the following patch is included: # https://gitlab.com/gitlab-org/gitaly/-/merge_requests/4108 # it fixes segfaults reported here: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=259848 # define dependencies that are required for build and run under MY_DEPENDS MY_DEPENDS= git>=2.37.4:devel/git \ rubygem-bundler>=2.1.4:sysutils/rubygem-bundler \ rubygem-rugged>=1.2<2:devel/rubygem-rugged \ rubygem-github-linguist>=7.23<8:textproc/rubygem-github-linguist \ rubygem-gitlab-markup>=1.8.0<1.9.0:textproc/rubygem-gitlab-markup \ rubygem-activesupport61>=6.1.6<6.2:devel/rubygem-activesupport61 \ rubygem-grpc142>=1.42.0<2:net/rubygem-grpc142 \ rubygem-sentry-raven>=3.0<4:devel/rubygem-sentry-raven \ rubygem-rbtrace>=0.4.14:devel/rubygem-rbtrace \ rubygem-gitaly>=15.5.0<15.6:net/rubygem-gitaly \ rubygem-gitlab-labkit>=0.28<1:devel/rubygem-gitlab-labkit \ rubygem-licensee>=9.15<10:devel/rubygem-licensee \ rubygem-google-protobuf>=3.21.9<3.22:devel/rubygem-google-protobuf \ rubygem-license_finder>=7.0<8:devel/rubygem-license_finder \ rubygem-redis4>=4.8.0<5:databases/rubygem-redis4 BUILD_DEPENDS= gem:devel/ruby-gems \ bash>0:shells/bash \ ${MY_DEPENDS} RUN_DEPENDS= ${MY_DEPENDS} \ 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 MAKE_ENV= GOFLAGS="${GO_BUILDFLAGS}" # make sure to pass go build options into make process MAKE_ENV+= ${GO_ENV} USE_GITLAB= yes GL_ACCOUNT= gitlab-org # Find this here: https://gitlab.com/gitlab-org/gitaly/-/tags GL_COMMIT= be44bc7f01a5bfbd320e75aa87c5e8a64a6c8f96 # for go dependencies # Gitlab hosts there dependencies on their own platform and not on go-proxy # so we download the required go.mod file from gitlab # lines are taken from go.mk # --------------------------- FETCH_DEPENDS= ${GO_CMD}:${GO_PORT} \ ca_root_nss>0:security/ca_root_nss MASTER_SITES+= https://gitlab.com/gitlab-org/gitaly/-/raw/v${DISTVERSION}/ DISTFILES+= go.mod DIST_SUBDIR= go/${PKGORIGIN:S,/,_,g}/${DISTNAME} EXTRACT_ONLY+= ${DISTFILES:N*.mod\:*:N*.mod:C/:.*//} _USES_fetch+= 800:go-post-fetch go-post-fetch: @${ECHO_MSG} "===> Fetching ${GO_MODNAME} dependencies"; @(cd ${DISTDIR}/${DIST_SUBDIR}; \ [ -e go.mod ] || ${RLN} ${GO_MODFILE} go.mod; \ ${SETENV} ${GO_ENV} GOPROXY=${GO_GOPROXY} ${GO_CMD} mod download -x all) # --------------------------- post-patch: ${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|" ${WRKSRC}/config.toml.example ${MV} ${WRKSRC}/config.toml.example ${WRKSRC}/config.toml.sample pre-build: (cd ${WRKSRC}/ruby && ${RM} Gemfile.lock && bundle install --local) do-install: ${MKDIR} ${STAGEDIR}${DATADIR} ${MKDIR} ${STAGEDIR}${DATADIR}/bin ${FIND} ${WRKSRC} -name '*.orig' -delete ${FIND} ${WRKSRC} -name "Gemfile.lock" -delete (cd ${WRKSRC}/_build/bin/ && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/bin && \ cd ${WRKSRC} && ${COPYTREE_SHARE} config.toml.sample ${STAGEDIR}${DATADIR}) && \ cd ${WRKSRC}/ruby && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/ruby post-install: ${FIND} -s ${STAGEDIR}${DATADIR} -not -type d | ${SORT} | \ ${SED} -e 's#^${STAGEDIR}${PREFIX}/##' | \ ${SED} -E -e '/sample$$/ s#^#@sample #; \ /gitlab-shell-hook$$/ s#^#@(,,755) #; \ s#${DATADIR_REL}/ruby/bin#@(,,555) ${DATADIR_REL}/ruby/bin#; \ s#${DATADIR_REL}/bin#@(,,555) ${DATADIR_REL}/bin#; ' >> ${TMPPLIST} .include diff --git a/devel/ignition-cmake/Makefile b/devel/ignition-cmake/Makefile index 200b2552f2d7..4bafcd4b27ec 100644 --- a/devel/ignition-cmake/Makefile +++ b/devel/ignition-cmake/Makefile @@ -1,26 +1,25 @@ PORTNAME= ignition-cmake DISTVERSION= 2.0.0 CATEGORIES= devel MASTER_SITES= https://bitbucket.org/${BB_ACCOUNT}/${BB_PROJECT}/get/${BB_COMMIT}.tar.gz?dummy=/ MAINTAINER= yuri@FreeBSD.org COMMENT= CMake modules to be used by the Ignition projects WWW= https://ignitionrobotics.org/home LICENSE= APACHE20 -USES= cmake pkgconfig -USE_RUBY= yes +USES= cmake pkgconfig ruby CMAKE_OFF= BUILD_TESTING BB_ACCOUNT= ignitionrobotics BB_PROJECT= ign-cmake BB_COMMIT= 776c2bfe1d18 WRKSRC= ${WRKDIR}/${BB_ACCOUNT}-${BB_PROJECT}-${BB_COMMIT} NO_ARCH= yes PLIST_SUB+= CMAKE_IGN_VER=cmake${DISTVERSION:R:R} .include diff --git a/devel/ignition-msgs/Makefile b/devel/ignition-msgs/Makefile index 972515386f21..504a31cc48f1 100644 --- a/devel/ignition-msgs/Makefile +++ b/devel/ignition-msgs/Makefile @@ -1,30 +1,29 @@ PORTNAME= ignition-msgs DISTVERSION= 3.0.0 PORTREVISION= 14 CATEGORIES= devel MASTER_SITES= https://bitbucket.org/${BB_ACCOUNT}/${BB_PROJECT}/get/${BB_COMMIT}.tar.gz?dummy=/ MAINTAINER= yuri@FreeBSD.org COMMENT= Protobuf messages and functions for robot applications WWW= https://ignitionrobotics.org/home LICENSE= APACHE20 BUILD_DEPENDS= ignition-cmake==2:devel/ignition-cmake \ ignition-tools>0:devel/ignition-tools 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 BB_PROJECT= ign-msgs BB_COMMIT= 4a1cbcabff7d WRKSRC= ${WRKDIR}/${BB_ACCOUNT}-${BB_PROJECT}-${BB_COMMIT} PLIST_SUB= MSGS_IGN_VER=msgs${DISTVERSION:R:R} .include diff --git a/devel/ignition-tools/Makefile b/devel/ignition-tools/Makefile index e6bb93e283ef..1bfc57fab657 100644 --- a/devel/ignition-tools/Makefile +++ b/devel/ignition-tools/Makefile @@ -1,29 +1,28 @@ PORTNAME= ignition-tools DISTVERSION= 0.1.0 PORTREVISION= 2 CATEGORIES= devel MASTER_SITES= https://bitbucket.org/${BB_ACCOUNT}/${BB_PROJECT}/get/${BB_COMMIT}.tar.gz?dummy=/ MAINTAINER= yuri@FreeBSD.org COMMENT= Ignition entry point (ign) for using all the suite of ignition tools WWW= https://ignitionrobotics.org/home 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 BB_COMMIT= e775d6356667 WRKSRC= ${WRKDIR}/${BB_ACCOUNT}-${BB_PROJECT}-${BB_COMMIT} NO_ARCH= yes PLIST_FILES= bin/ign \ lib/cmake/ignition-tools/ignition-tools-config.cmake \ libdata/pkgconfig/ignition-tools.pc .include diff --git a/devel/leatherman/Makefile b/devel/leatherman/Makefile index 87db530ca738..591ee8f6ab26 100644 --- a/devel/leatherman/Makefile +++ b/devel/leatherman/Makefile @@ -1,27 +1,26 @@ PORTNAME= leatherman PORTVERSION= 1.12.6 PORTREVISION= 2 CATEGORIES= devel MAINTAINER= puppet@FreeBSD.org COMMENT= Leatherman C++ Tool library WWW= https://github.com/puppetlabs/leatherman LICENSE= APACHE20 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 TEST_TARGET= test PLIST_SUB= PORTVERSION=${PORTVERSION} .include diff --git a/devel/libpafe-ruby/Makefile b/devel/libpafe-ruby/Makefile index 5a5e5770f848..8bf0bb0b12ff 100644 --- a/devel/libpafe-ruby/Makefile +++ b/devel/libpafe-ruby/Makefile @@ -1,27 +1,26 @@ PORTNAME= libpafe-ruby PORTVERSION= 0.0.8 PORTREVISION= 1 CATEGORIES= devel ruby MASTER_SITES= http://homepage3.nifty.com/slokar/pasori/ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} MAINTAINER= ume@FreeBSD.org COMMENT= Ruby binding for libpafe WWW= http://homepage3.nifty.com/slokar/pasori/libpafe-ruby.html LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libpafe.so:devel/libpafe -USE_RUBY= yes -USE_RUBY_EXTCONF= yes +USES= ruby:extconf PLIST_FILES= %%RUBY_SITEARCHLIBDIR%%/pasori.so WRKSRC= ${WRKDIR}/${PORTNAME} pre-install: @${MKDIR} ${STAGEDIR}${RUBY_SITEARCHLIBDIR} .include diff --git a/devel/newfile/Makefile b/devel/newfile/Makefile index 7482ffbf9fb3..672d14edb8a2 100644 --- a/devel/newfile/Makefile +++ b/devel/newfile/Makefile @@ -1,29 +1,30 @@ PORTNAME= newfile PORTVERSION= 1.0.14 PORTREVISION= 6 CATEGORIES= devel MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= Tool for creating starter files in various languages WWW= http://newfile.sourceforge.net/ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE +USES= ruby + GNU_CONFIGURE= yes NO_ARCH= yes -USE_RUBY= yes PORTDOCS= newfile.html OPTIONS_DEFINE= DOCS post-install: ${INSTALL_MAN} ${WRKSRC}/doc/newfile.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/ post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR}/ cd ${WRKSRC}/doc/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/ .include diff --git a/devel/ocl-icd/Makefile b/devel/ocl-icd/Makefile index ef7fe12549d4..a059bddac127 100644 --- a/devel/ocl-icd/Makefile +++ b/devel/ocl-icd/Makefile @@ -1,42 +1,40 @@ PORTNAME= ocl-icd DISTVERSIONPREFIX= v PORTVERSION= 2.3.1 CATEGORIES= devel MAINTAINER= ohartmann@walstatt.org COMMENT= OpenCL Installable Client Driver WWW= https://github.com/OCL-dev/ocl-icd LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING 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 INSTALL_TARGET= install-strip CONFIGURE_ARGS+=--disable-official-khronos-headers \ --enable-custom-vendordir \ --enable-pthread-once OPTIONS_DEFINE= DOCS MANPAGES OPTIONS_DEFAULT=MANPAGES OPTIONS_SUB= yes MANPAGES_BUILD_DEPENDS= xmlto:textproc/xmlto \ asciidoc:textproc/asciidoc post-patch: @${REINPLACE_CMD} -e 's|/etc/|${LOCALBASE}/etc/|g' \ ${WRKSRC}/doc/libOpenCL.7.txt.in .include diff --git a/devel/p4delta/Makefile b/devel/p4delta/Makefile index dde26aa4a1a6..ffdeecf12627 100644 --- a/devel/p4delta/Makefile +++ b/devel/p4delta/Makefile @@ -1,24 +1,25 @@ PORTNAME= p4delta PORTVERSION= 1.3.2 CATEGORIES= devel MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= Summarizes and manages differences between local files and Perforce WWW= http://p4delta.sourceforge.net/ RUN_DEPENDS= ${LOCALBASE}/bin/p4:devel/p4 -USE_RUBY= yes +USES= ruby + NO_BUILD= yes PLIST_FILES= bin/p4delta man/man1/p4delta.1.gz post-patch: @${REINPLACE_CMD} -e 's|^#!/usr/bin/ruby|#!${RUBY}|' ${WRKSRC}/p4delta do-install: ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/p4delta.1 ${STAGEDIR}${MANPREFIX}/man/man1 .include diff --git a/devel/ruby-bsearch/Makefile b/devel/ruby-bsearch/Makefile index 4905288009a8..0902b6fe85de 100644 --- a/devel/ruby-bsearch/Makefile +++ b/devel/ruby-bsearch/Makefile @@ -1,28 +1,28 @@ PORTNAME= bsearch PORTVERSION= 1.5 PORTREVISION= 1 CATEGORIES= devel ruby MASTER_SITES= http://0xcc.net/ruby-bsearch/ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} DISTNAME= ruby-${PORTNAME}-${PORTVERSION} DIST_SUBDIR= ruby MAINTAINER= ruby@FreeBSD.org COMMENT= Binary search library for Ruby WWW= http://0xcc.net/ruby-bsearch/ -USE_RUBY= yes +USES= ruby NO_BUILD= yes OPTIONS_DEFINE= DOCS do-install: @${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR} ${INSTALL_SCRIPT} ${WRKSRC}/bsearch.rb ${STAGEDIR}${RUBY_SITELIBDIR} do-install-DOCS-on: ${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR} ${INSTALL_DATA} ${WRKSRC}/ChangeLog ${STAGEDIR}${RUBY_MODDOCDIR} .include diff --git a/devel/ruby-gems/Makefile b/devel/ruby-gems/Makefile index 32da39bbc01b..e498d9bb4ba6 100644 --- a/devel/ruby-gems/Makefile +++ b/devel/ruby-gems/Makefile @@ -1,74 +1,73 @@ PORTNAME= gems PORTVERSION= 3.3.26 CATEGORIES= devel ruby MASTER_SITES= https://rubygems.org/rubygems/ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} DISTNAME= rubygems-${PORTVERSION} DIST_SUBDIR= ruby MAINTAINER= ruby@FreeBSD.org COMMENT= Package management framework for the Ruby language WWW= https://rubygems.org/ LICENSE= MIT RUBY LICENSE_COMB= dual 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} NO_ARCH= yes NO_BUILD= yes RUBY_SETUP= setup.rb RUBY_SETUP_OPTIONS= --destdir=${STAGEDIR} \ --no-format-executable \ --no-regenerate-binstubs \ --no-regenerate-plugins CACHE_DIR= ${GEMS_BASE_DIR}/cache DOC_DIR= ${GEMS_BASE_DIR}/doc EXT_DIR= ${GEMS_BASE_DIR}/extensions GEMS_DIR= ${GEMS_BASE_DIR}/gems PLUGINS_DIR= ${GEMS_BASE_DIR}/plugins SPEC_DIR= ${GEMS_BASE_DIR}/specifications PLIST_SUB= CACHE_DIR="${CACHE_DIR}" \ DOC_DIR="${DOC_DIR}" \ EXT_DIR="${EXT_DIR}" \ GEMS_DIR="${GEMS_DIR}" \ PLUGINS_DIR="${PLUGINS_DIR}" \ SPEC_DIR="${SPEC_DIR}" CPE_VENDOR= rubygems CPE_PRODUCT= rubygems OPTIONS_DEFINE= DOCS DOCS_VARS_OFF= RUBY_SETUP_OPTIONS+="--no-ri --no-rdoc" post-extract: @${RM} -r ${WRKSRC}/bundler @${FIND} ${WRKSRC} -name .document -delete post-patch: @${RM} ${WRKSRC}/lib/rubygems/commands/setup_command.rb.orig do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR} ${MKDIR} ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR}/build_info ${MKDIR} ${STAGEDIR}${PREFIX}/${CACHE_DIR} ${MKDIR} ${STAGEDIR}${PREFIX}/${DOC_DIR} ${MKDIR} ${STAGEDIR}${PREFIX}/${EXT_DIR} ${MKDIR} ${STAGEDIR}${PREFIX}/${GEMS_DIR} ${MKDIR} ${STAGEDIR}${PREFIX}/${PLUGINS_DIR} ${MKDIR} ${STAGEDIR}${PREFIX}/${SPEC_DIR} cd ${WRKSRC}/ && ${SETENV} ${GEMS_ENV} ${RUBY} ${RUBY_SETUP} ${RUBY_SETUP_OPTIONS} # Find all RDOC and RI files post-install-DOCS-on: cd ${STAGEDIR}${PREFIX}/ && ${FIND} -ds ${DOC_DIR}/ ! -type d >> ${TMPPLIST} .include diff --git a/devel/ruby-rbprof/Makefile b/devel/ruby-rbprof/Makefile index 63b6a66c55b6..e47c878421f5 100644 --- a/devel/ruby-rbprof/Makefile +++ b/devel/ruby-rbprof/Makefile @@ -1,33 +1,31 @@ PORTNAME= rbprof PORTVERSION= 0.2.1 CATEGORIES= devel ruby MASTER_SITES= SF/aspectr/aspectr/0.3.5 DISTNAME= aspectr-0-3-5 DIST_SUBDIR= ruby MAINTAINER= sean@chittenden.org COMMENT= Flexible Ruby profiler WWW= http://aspectr.sourceforge.net/rbprof/ OPTIONS_DEFINE= DOCS #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 do-install: @${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR}/rbprof @${MKDIR} ${STAGEDIR}${PORTDOCS}${RUBY_DOCDIR}/rbprof ${INSTALL_DATA} ${WRKSRC}/README \ ${WRKSRC}/TODO ${STAGEDIR}${PORTDOCS}${RUBY_DOCDIR}/rbprof/ ${RUBY} -p -i -e 'gsub(/\r\n/, "\n")' ${WRKSRC}/aspects/profiler/lib/rbprof.rb ${RUBY} -p -i -e 'gsub(/\r\n/, "\n")' ${WRKSRC}/aspects/profiler/lib/trap_method_definitions.rb ${INSTALL_DATA} ${WRKSRC}/aspects/profiler/lib/rbprof.rb ${STAGEDIR}${RUBY_SITELIBDIR}/ ${INSTALL_DATA} ${WRKSRC}/aspects/profiler/lib/trap_method_definitions.rb ${STAGEDIR}${RUBY_SITELIBDIR}/rbprof/ .include diff --git a/devel/ruby-setup.rb/Makefile b/devel/ruby-setup.rb/Makefile index 744ad510495c..d69d4ad6d36d 100644 --- a/devel/ruby-setup.rb/Makefile +++ b/devel/ruby-setup.rb/Makefile @@ -1,50 +1,50 @@ PORTNAME= setup.rb PORTVERSION= 3.4.1 PORTREVISION= 1 CATEGORIES= devel ruby MASTER_SITES= http://www.loveruby.net/archive/${PORTNAME:R}/ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} DISTNAME= ${PORTNAME:R}-${PORTVERSION} DIST_SUBDIR= ruby MAINTAINER= ruby@FreeBSD.org COMMENT= Common installer script for ruby packages WWW= http://www.loveruby.net/en/setup.html -USE_RUBY= yes +USES= ruby NO_BUILD= yes _SCRIPTS= setup.rb DOCS_EN= doc.en/* NEWS.en Usage_en.txt README.en ChangeLog TODO DOCS_JA= doc.ja/* NEWS.ja Usage_ja.txt README.ja OPTIONS_DEFINE= DOCS post-extract: .for f in ${_SCRIPTS} ${CP} -p ${WRKSRC}/${f} ${WRKSRC}/ruby-${f} .endfor post-patch: @${REINPLACE_CMD} 's!%%LOCALBASE%%!${LOCALBASE}!g' \ ${WRKSRC}/ruby-setup.rb do-install: .for f in ${_SCRIPTS} ${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_SITELIBDIR}/ ${INSTALL_SCRIPT} ${WRKSRC}/ruby-${f} ${STAGEDIR}${PREFIX}/bin/ .endfor ${MKDIR} ${STAGEDIR}${RUBY_MODEXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/sample/* ${STAGEDIR}${RUBY_MODEXAMPLESDIR}/ ${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR}/ja .for f in ${DOCS_EN} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ .endfor .for f in ${DOCS_JA} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ja/ .endfor .include diff --git a/devel/ruby-subversion/Makefile b/devel/ruby-subversion/Makefile index 2da90c79e5c5..d1b8b6afc556 100644 --- a/devel/ruby-subversion/Makefile +++ b/devel/ruby-subversion/Makefile @@ -1,28 +1,27 @@ PKGNAMEPREFIX= ruby- MAINTAINER= lev@FreeBSD.org 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 SVN_BUILD_BINDINGS= yes .include "${.CURDIR}/../../devel/subversion/Makefile.addons" CATEGORIES+= ruby CONFIGURE_ARGS+= --without-gnome-keyring \ --without-kwallet \ --with-apxs=no ALL_TARGET= swig-rb-lib swig-rb INSTALL_TARGET= install-swig-rb CFLAGS+= -fdeclspec .include diff --git a/devel/rubygem-CFPropertyList/Makefile b/devel/rubygem-CFPropertyList/Makefile index 0d9c49670aae..7b58b995565f 100644 --- a/devel/rubygem-CFPropertyList/Makefile +++ b/devel/rubygem-CFPropertyList/Makefile @@ -1,20 +1,19 @@ PORTNAME= CFPropertyList PORTVERSION= 3.0.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Read, write and manipulate both binary and XML property lists WWW= https://github.com/ckruse/CFPropertyList LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rexml>=0:textproc/rubygem-rexml USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-abstract/Makefile b/devel/rubygem-abstract/Makefile index 9d0de15e821c..c121a4002fd9 100644 --- a/devel/rubygem-abstract/Makefile +++ b/devel/rubygem-abstract/Makefile @@ -1,18 +1,17 @@ PORTNAME= abstract PORTVERSION= 1.0.0 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Define abstract method in Ruby WWW= https://rubygems.org/gems/abstract LICENSE= RUBY USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-actionpack-action_caching/Makefile b/devel/rubygem-actionpack-action_caching/Makefile index e9aa19cdad23..dbe1ed20de71 100644 --- a/devel/rubygem-actionpack-action_caching/Makefile +++ b/devel/rubygem-actionpack-action_caching/Makefile @@ -1,21 +1,20 @@ PORTNAME= actionpack-action_caching PORTVERSION= 1.2.2 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Action caching for Action Pack (removed from core in Rails 4.0) WWW= https://github.com/rails/actionpack-action_caching LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-actionpack61>=4.0:www/rubygem-actionpack61 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-actionpack-page_caching/Makefile b/devel/rubygem-actionpack-page_caching/Makefile index f87fe5fc712c..ea10498bbcbc 100644 --- a/devel/rubygem-actionpack-page_caching/Makefile +++ b/devel/rubygem-actionpack-page_caching/Makefile @@ -1,23 +1,22 @@ PORTNAME= actionpack-page_caching PORTVERSION= 1.2.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Static page caching for Action Pack (removed from core in Rails 4.0) WWW= https://github.com/rails/actionpack-page_caching LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-actionpack61>=4.0:www/rubygem-actionpack61 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= actionpack_page-caching .include diff --git a/devel/rubygem-actionview4/Makefile b/devel/rubygem-actionview4/Makefile index 1bda0963b7fc..42cf0b9b82a0 100644 --- a/devel/rubygem-actionview4/Makefile +++ b/devel/rubygem-actionview4/Makefile @@ -1,29 +1,28 @@ PORTNAME= actionview PORTVERSION= 4.2.11.3 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rendering framework putting the V in MVC (part of Rails) WWW= https://github.com/rails/rails/tree/main/actionview LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport4>=${PORTVERSION}:devel/rubygem-activesupport4 \ rubygem-builder>=3.1<4:devel/rubygem-builder \ rubygem-erubis>=2.7.0<2.8:www/rubygem-erubis \ rubygem-rails-dom-testing1>=1.0.5<2:textproc/rubygem-rails-dom-testing1 \ rubygem-rails-html-sanitizer>=1.0.3<2:textproc/rubygem-rails-html-sanitizer USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails PORTSCOUT= limit:^4\.2\. .include diff --git a/devel/rubygem-actionview5/Makefile b/devel/rubygem-actionview5/Makefile index ef12d289dd80..68b67869e355 100644 --- a/devel/rubygem-actionview5/Makefile +++ b/devel/rubygem-actionview5/Makefile @@ -1,29 +1,28 @@ PORTNAME= actionview PORTVERSION= 5.1.7 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rendering framework putting the V in MVC (part of Rails) WWW= https://github.com/rails/rails/tree/main/actionview LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport5>=${PORTVERSION}:devel/rubygem-activesupport5 \ rubygem-builder>=3.1<4:devel/rubygem-builder \ rubygem-erubi>=1.4<2:www/rubygem-erubi \ rubygem-rails-dom-testing-rails5>=2.0<3:textproc/rubygem-rails-dom-testing-rails5 \ rubygem-rails-html-sanitizer>=1.0.3<2:textproc/rubygem-rails-html-sanitizer USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails PORTSCOUT= limit:^5\.1\. .include diff --git a/devel/rubygem-actionview50/Makefile b/devel/rubygem-actionview50/Makefile index 4c1a6db65b0a..8ffb21937b25 100644 --- a/devel/rubygem-actionview50/Makefile +++ b/devel/rubygem-actionview50/Makefile @@ -1,29 +1,28 @@ PORTNAME= actionview PORTVERSION= 5.0.7.2 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rendering framework putting the V in MVC (part of Rails) WWW= https://github.com/rails/rails/tree/main/actionview LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport50>=${PORTVERSION}:devel/rubygem-activesupport50 \ rubygem-builder>=3.1<4:devel/rubygem-builder \ rubygem-erubis>=2.7.0<2.8:www/rubygem-erubis \ rubygem-rails-dom-testing-rails50>=2.0<3:textproc/rubygem-rails-dom-testing-rails50 \ rubygem-rails-html-sanitizer>=1.0.3<2:textproc/rubygem-rails-html-sanitizer USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails PORTSCOUT= limit:^5\.0\. .include diff --git a/devel/rubygem-actionview52/Makefile b/devel/rubygem-actionview52/Makefile index a13b6b049a8e..0678ce366f2a 100644 --- a/devel/rubygem-actionview52/Makefile +++ b/devel/rubygem-actionview52/Makefile @@ -1,29 +1,28 @@ PORTNAME= actionview PORTVERSION= 5.2.8.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 52 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rendering framework putting the V in MVC (part of Rails) WWW= https://github.com/rails/rails/tree/main/actionview LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport52>=${PORTVERSION}:devel/rubygem-activesupport52 \ rubygem-builder>=3.1<4:devel/rubygem-builder \ rubygem-erubi>=1.4<2:www/rubygem-erubi \ rubygem-rails-dom-testing-rails52>=2.0<3:textproc/rubygem-rails-dom-testing-rails52 \ rubygem-rails-html-sanitizer>=1.0.3<2:textproc/rubygem-rails-html-sanitizer USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails PORTSCOUT= limit:^5\.2\. .include diff --git a/devel/rubygem-actionview60/Makefile b/devel/rubygem-actionview60/Makefile index 610070c17ad5..f4edc87f3e37 100644 --- a/devel/rubygem-actionview60/Makefile +++ b/devel/rubygem-actionview60/Makefile @@ -1,30 +1,29 @@ PORTNAME= actionview PORTVERSION= 6.0.6 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rendering framework putting the V in MVC (part of Rails) WWW= https://github.com/rails/rails/tree/main/actionview \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport60>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport60 \ rubygem-builder>=3.1<4:devel/rubygem-builder \ rubygem-erubi>=1.4<2:www/rubygem-erubi \ rubygem-rails-dom-testing-rails60>=2.0<3:textproc/rubygem-rails-dom-testing-rails60 \ rubygem-rails-html-sanitizer>=1.2.0<2:textproc/rubygem-rails-html-sanitizer USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails PORTSCOUT= limit:^6\.0\. .include diff --git a/devel/rubygem-actionview61/Makefile b/devel/rubygem-actionview61/Makefile index cedb34f20680..f2d482d8a114 100644 --- a/devel/rubygem-actionview61/Makefile +++ b/devel/rubygem-actionview61/Makefile @@ -1,30 +1,29 @@ PORTNAME= actionview PORTVERSION= 6.1.7 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rendering framework putting the V in MVC (part of Rails) WWW= https://github.com/rails/rails/tree/main/actionview \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport61>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport61 \ rubygem-builder>=3.1<4:devel/rubygem-builder \ rubygem-erubi>=1.4<2:www/rubygem-erubi \ rubygem-rails-dom-testing-rails61>=2.0<3:textproc/rubygem-rails-dom-testing-rails61 \ rubygem-rails-html-sanitizer>=1.2.0<2:textproc/rubygem-rails-html-sanitizer USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails PORTSCOUT= limit:^6\.1\. .include diff --git a/devel/rubygem-actionview70/Makefile b/devel/rubygem-actionview70/Makefile index bb77804297e6..6b3154d5a7f4 100644 --- a/devel/rubygem-actionview70/Makefile +++ b/devel/rubygem-actionview70/Makefile @@ -1,30 +1,29 @@ PORTNAME= actionview PORTVERSION= 7.0.3.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 70 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple, battle-tested conventions and helpers for building web pages WWW= https://github.com/rails/rails/tree/main/actionview \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport70>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport70 \ rubygem-builder>=3.1<4:devel/rubygem-builder \ rubygem-erubi>=1.4<2:www/rubygem-erubi \ rubygem-rails-dom-testing-rails70>=2.0<3:textproc/rubygem-rails-dom-testing-rails70 \ rubygem-rails-html-sanitizer>=1.2.0<2:textproc/rubygem-rails-html-sanitizer USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails PORTSCOUT= limit:^7\.0\. .include diff --git a/devel/rubygem-active_scaffold/Makefile b/devel/rubygem-active_scaffold/Makefile index 78b74d98c81d..839a42b50522 100644 --- a/devel/rubygem-active_scaffold/Makefile +++ b/devel/rubygem-active_scaffold/Makefile @@ -1,23 +1,22 @@ PORTNAME= active_scaffold PORTVERSION= 3.6.14 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Gem to handle all CRUD user interface needs WWW= https://github.com/activescaffold/active_scaffold LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-cow_proxy>=0.3<1:devel/rubygem-cow_proxy \ rubygem-ice_nine>=0.11<1:devel/rubygem-ice_nine \ rubygem-rails61>=4.2.0<6.2:www/rubygem-rails61 \ rubygem-request_store>=1.3<2:devel/rubygem-request_store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-activejob4/Makefile b/devel/rubygem-activejob4/Makefile index 23c4df4f202d..9516cfbbb25c 100644 --- a/devel/rubygem-activejob4/Makefile +++ b/devel/rubygem-activejob4/Makefile @@ -1,27 +1,26 @@ PORTNAME= activejob PORTVERSION= 4.2.11.3 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Job class declarations for a variety of queueing backends WWW= https://github.com/rails/rails/tree/main/activejob LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport4>=${PORTVERSION}:devel/rubygem-activesupport4 \ rubygem-globalid>=0.3.0:databases/rubygem-globalid USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= active_job PORTSCOUT= limit:^4\.2\. .include diff --git a/devel/rubygem-activejob5/Makefile b/devel/rubygem-activejob5/Makefile index 6423f4685678..16e1ae9afdb6 100644 --- a/devel/rubygem-activejob5/Makefile +++ b/devel/rubygem-activejob5/Makefile @@ -1,27 +1,26 @@ PORTNAME= activejob PORTVERSION= 5.1.7 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Job class declarations for a variety of queueing backends WWW= https://github.com/rails/rails/tree/main/activejob LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport5>=${PORTVERSION}:devel/rubygem-activesupport5 \ rubygem-globalid-rails5>=0.3.6:databases/rubygem-globalid-rails5 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= active_job PORTSCOUT= limit:^5\.1\. .include diff --git a/devel/rubygem-activejob50/Makefile b/devel/rubygem-activejob50/Makefile index 161fd235c6dc..09c824d93f48 100644 --- a/devel/rubygem-activejob50/Makefile +++ b/devel/rubygem-activejob50/Makefile @@ -1,27 +1,26 @@ PORTNAME= activejob PORTVERSION= 5.0.7.2 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Job class declarations for a variety of queueing backends WWW= https://github.com/rails/rails/tree/main/activejob LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport50>=${PORTVERSION}:devel/rubygem-activesupport50 \ rubygem-globalid-rails50>=0.3.6:databases/rubygem-globalid-rails50 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= active_job PORTSCOUT= limit:^5\.0\. .include diff --git a/devel/rubygem-activejob52/Makefile b/devel/rubygem-activejob52/Makefile index 9d90f5edfe94..a1c926cd92b3 100644 --- a/devel/rubygem-activejob52/Makefile +++ b/devel/rubygem-activejob52/Makefile @@ -1,27 +1,26 @@ PORTNAME= activejob PORTVERSION= 5.2.8.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 52 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Job class declarations for a variety of queueing backends WWW= https://github.com/rails/rails/tree/main/activejob LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport52>=${PORTVERSION}:devel/rubygem-activesupport52 \ rubygem-globalid-rails52>=0.3.6:databases/rubygem-globalid-rails52 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= active_job PORTSCOUT= limit:^5\.2\. .include diff --git a/devel/rubygem-activejob60/Makefile b/devel/rubygem-activejob60/Makefile index d0ec4f6193e2..6592e086d2b7 100644 --- a/devel/rubygem-activejob60/Makefile +++ b/devel/rubygem-activejob60/Makefile @@ -1,28 +1,27 @@ PORTNAME= activejob PORTVERSION= 6.0.6 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Job class declarations for a variety of queueing backends WWW= https://github.com/rails/rails/tree/main/activejob \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport60>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport60 \ rubygem-globalid-rails60>=0.3.6:databases/rubygem-globalid-rails60 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= active_job PORTSCOUT= limit:^6\.0\. .include diff --git a/devel/rubygem-activejob61/Makefile b/devel/rubygem-activejob61/Makefile index 43d078c9a7c9..949b70970cdb 100644 --- a/devel/rubygem-activejob61/Makefile +++ b/devel/rubygem-activejob61/Makefile @@ -1,28 +1,27 @@ PORTNAME= activejob PORTVERSION= 6.1.7 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Job class declarations for a variety of queueing backends WWW= https://github.com/rails/rails/tree/main/activejob \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport61>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport61 \ rubygem-globalid-rails61>=0.3.6:databases/rubygem-globalid-rails61 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= active_job PORTSCOUT= limit:^6\.1\. .include diff --git a/devel/rubygem-activejob70/Makefile b/devel/rubygem-activejob70/Makefile index b16223af2706..840ff18df294 100644 --- a/devel/rubygem-activejob70/Makefile +++ b/devel/rubygem-activejob70/Makefile @@ -1,28 +1,27 @@ PORTNAME= activejob PORTVERSION= 7.0.3.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 70 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Declare job classes that can be run by a variety of queuing backends WWW= https://github.com/rails/rails/tree/main/activejob \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport70>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport70 \ rubygem-globalid-rails70>=0.3.6:databases/rubygem-globalid-rails70 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= active_job PORTSCOUT= limit:^7\.0\. .include diff --git a/devel/rubygem-activemessaging/Makefile b/devel/rubygem-activemessaging/Makefile index 257fb68c3e58..879da6622073 100644 --- a/devel/rubygem-activemessaging/Makefile +++ b/devel/rubygem-activemessaging/Makefile @@ -1,20 +1,19 @@ PORTNAME= activemessaging PORTVERSION= 0.14.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Event-driven architecture for rails WWW= https://github.com/kookster/activemessaging LICENSE= MIT RUN_DEPENDS= rubygem-activesupport4>=0:devel/rubygem-activesupport4 \ rubygem-rake>=0:devel/rubygem-rake USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-activerecord-deprecated_finders/Makefile b/devel/rubygem-activerecord-deprecated_finders/Makefile index 18b469eb26aa..e666110f45eb 100644 --- a/devel/rubygem-activerecord-deprecated_finders/Makefile +++ b/devel/rubygem-activerecord-deprecated_finders/Makefile @@ -1,17 +1,16 @@ PORTNAME= activerecord-deprecated_finders PORTVERSION= 1.0.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ports@FreeBSD.org COMMENT= Deprecated finder APIs from Active Record WWW= https://github.com/rails/activerecord-deprecated_finders LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-activesupport4/Makefile b/devel/rubygem-activesupport4/Makefile index 18e4434abe91..4c3f8e9ab39f 100644 --- a/devel/rubygem-activesupport4/Makefile +++ b/devel/rubygem-activesupport4/Makefile @@ -1,28 +1,27 @@ PORTNAME= activesupport PORTVERSION= 4.2.11.3 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Utility classes and extension that are required by Rails MVC Framework WWW= https://github.com/rails/rails/tree/main/activesupport LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-i18n>=0.7,2:devel/rubygem-i18n \ rubygem-minitest>=5.1<6:devel/rubygem-minitest \ rubygem-thread_safe>=0.3.4<1:devel/rubygem-thread_safe \ rubygem-tzinfo1>=1.1<2:devel/rubygem-tzinfo1 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= activesupport_project PORTSCOUT= limit:^4\.2\. .include diff --git a/devel/rubygem-activesupport5/Makefile b/devel/rubygem-activesupport5/Makefile index ad12a0d51f98..69963bb4f511 100644 --- a/devel/rubygem-activesupport5/Makefile +++ b/devel/rubygem-activesupport5/Makefile @@ -1,29 +1,28 @@ PORTNAME= activesupport PORTVERSION= 5.1.7 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Utility classes and extension that are required by Rails MVC Framework WWW= https://github.com/rails/rails/tree/main/activesupport LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-concurrent-ruby>=1.0.2<2:devel/rubygem-concurrent-ruby \ rubygem-i18n>=0.7,2<2,2:devel/rubygem-i18n \ rubygem-minitest>=5.1<6:devel/rubygem-minitest \ rubygem-tzinfo1>=1.1<2:devel/rubygem-tzinfo1 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= activesupport_project PORTSCOUT= limit:^5\.1\. .include diff --git a/devel/rubygem-activesupport50/Makefile b/devel/rubygem-activesupport50/Makefile index fd8c2ae023b3..d71d762f3a4e 100644 --- a/devel/rubygem-activesupport50/Makefile +++ b/devel/rubygem-activesupport50/Makefile @@ -1,29 +1,28 @@ PORTNAME= activesupport PORTVERSION= 5.0.7.2 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Utility classes and extension that are required by Rails MVC Framework WWW= https://github.com/rails/rails/tree/main/activesupport LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-concurrent-ruby>=1.0.2<2:devel/rubygem-concurrent-ruby \ rubygem-i18n>=0.7,2<2,2:devel/rubygem-i18n \ rubygem-minitest>=5.1<6:devel/rubygem-minitest \ rubygem-tzinfo1>=1.1<2:devel/rubygem-tzinfo1 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= activesupport_project PORTSCOUT= limit:^5\.0\. .include diff --git a/devel/rubygem-activesupport52/Makefile b/devel/rubygem-activesupport52/Makefile index 03b9c8ef171d..c7fc9ab57a7c 100644 --- a/devel/rubygem-activesupport52/Makefile +++ b/devel/rubygem-activesupport52/Makefile @@ -1,28 +1,27 @@ PORTNAME= activesupport PORTVERSION= 5.2.8.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 52 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Utility classes and extension that are required by Rails MVC Framework WWW= https://github.com/rails/rails/tree/main/activesupport LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-concurrent-ruby>=1.0.2<2:devel/rubygem-concurrent-ruby \ rubygem-i18n>=0.7,2<2,2:devel/rubygem-i18n \ rubygem-minitest>=5.1<6:devel/rubygem-minitest \ rubygem-tzinfo1>=1.1<2:devel/rubygem-tzinfo1 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= activesupport_project PORTSCOUT= limit:^5\.2\. .include diff --git a/devel/rubygem-activesupport60/Makefile b/devel/rubygem-activesupport60/Makefile index d75d0fcee766..9dc6f25a6397 100644 --- a/devel/rubygem-activesupport60/Makefile +++ b/devel/rubygem-activesupport60/Makefile @@ -1,30 +1,29 @@ PORTNAME= activesupport PORTVERSION= 6.0.6 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Utility classes and extension that are required by Rails MVC Framework WWW= https://github.com/rails/rails/tree/main/activesupport \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-concurrent-ruby>=1.0.2<2:devel/rubygem-concurrent-ruby \ rubygem-i18n>=0.7,2<2,2:devel/rubygem-i18n \ rubygem-minitest>=5.1<6:devel/rubygem-minitest \ rubygem-tzinfo1>=1.1<2:devel/rubygem-tzinfo1 \ rubygem-zeitwerk>=2.2.2<3:devel/rubygem-zeitwerk USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= activesupport_project PORTSCOUT= limit:^6\.0\. .include diff --git a/devel/rubygem-activesupport61/Makefile b/devel/rubygem-activesupport61/Makefile index b85449a59436..adcfbc2c3edb 100644 --- a/devel/rubygem-activesupport61/Makefile +++ b/devel/rubygem-activesupport61/Makefile @@ -1,30 +1,29 @@ PORTNAME= activesupport PORTVERSION= 6.1.7 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Utility classes and extension that are required by Rails MVC Framework WWW= https://github.com/rails/rails/tree/main/activesupport \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-concurrent-ruby>=1.0.2<2:devel/rubygem-concurrent-ruby \ rubygem-i18n>=1.6,2<2,2:devel/rubygem-i18n \ rubygem-minitest>=5.1:devel/rubygem-minitest \ rubygem-tzinfo>=2.0<3:devel/rubygem-tzinfo \ rubygem-zeitwerk>=2.3<3:devel/rubygem-zeitwerk USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= activesupport_project PORTSCOUT= limit:^6\.1\. .include diff --git a/devel/rubygem-activesupport70/Makefile b/devel/rubygem-activesupport70/Makefile index 926c2c402dac..80b64328959c 100644 --- a/devel/rubygem-activesupport70/Makefile +++ b/devel/rubygem-activesupport70/Makefile @@ -1,29 +1,28 @@ PORTNAME= activesupport PORTVERSION= 7.0.3.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 70 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Toolkit of support libraries and Ruby core extensions extracted from the Rails framework WWW= https://github.com/rails/rails/tree/main/activesupport \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-concurrent-ruby>=1.0.2<2:devel/rubygem-concurrent-ruby \ rubygem-i18n>=1.6,2<2,2:devel/rubygem-i18n \ rubygem-minitest>=5.1:devel/rubygem-minitest \ rubygem-tzinfo>=2.0<3:devel/rubygem-tzinfo USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= activesupport_project PORTSCOUT= limit:^7\.0\. .include diff --git a/devel/rubygem-airborne/Makefile b/devel/rubygem-airborne/Makefile index 895de2729f07..412ed816ea12 100644 --- a/devel/rubygem-airborne/Makefile +++ b/devel/rubygem-airborne/Makefile @@ -1,25 +1,24 @@ PORTNAME= airborne PORTVERSION= 0.3.7 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= RSpec driven API testing framework WWW= https://github.com/brooklynDev/airborne LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport4>=0:devel/rubygem-activesupport4 \ rubygem-rack>=0,3:www/rubygem-rack \ rubygem-rack-test>=1.1.0<3.0:www/rubygem-rack-test \ rubygem-rest-client>=2.0.2<3.0:www/rubygem-rest-client \ rubygem-rspec>=3.8<4:devel/rubygem-rspec USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-akismet/Makefile b/devel/rubygem-akismet/Makefile index 6dc5546ef52f..a1cbbfe38cea 100644 --- a/devel/rubygem-akismet/Makefile +++ b/devel/rubygem-akismet/Makefile @@ -1,18 +1,17 @@ PORTNAME= akismet PORTVERSION= 3.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby client for the Akismet API WWW= https://github.com/jonahb/akismet LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-algebrick/Makefile b/devel/rubygem-algebrick/Makefile index d1220f45bd5f..cead1219517d 100644 --- a/devel/rubygem-algebrick/Makefile +++ b/devel/rubygem-algebrick/Makefile @@ -1,17 +1,16 @@ PORTNAME= algebrick PORTVERSION= 0.7.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Typed structs based on algebraic type definitions WWW= https://github.com/pitr-ch/algebrick LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-algorithms/Makefile b/devel/rubygem-algorithms/Makefile index 8a9a22582c39..562012519d55 100644 --- a/devel/rubygem-algorithms/Makefile +++ b/devel/rubygem-algorithms/Makefile @@ -1,15 +1,14 @@ PORTNAME= algorithms PORTVERSION= 1.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby algorithms and data structures WWW= https://github.com/kanwei/algorithms LICENSE= MIT USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-aliyun-sdk/Makefile b/devel/rubygem-aliyun-sdk/Makefile index b303f7430c66..4d584cb0ca21 100644 --- a/devel/rubygem-aliyun-sdk/Makefile +++ b/devel/rubygem-aliyun-sdk/Makefile @@ -1,18 +1,17 @@ PORTNAME= aliyun-sdk PORTVERSION= 0.8.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby program to facilitate accessing Aliyun Object Storage Service WWW= https://github.com/aliyun/aliyun-oss-ruby-sdk LICENSE= MIT RUN_DEPENDS= rubygem-nokogiri>=1.6<2:textproc/rubygem-nokogiri \ rubygem-rest-client>=2.0<3:www/rubygem-rest-client USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-allison/Makefile b/devel/rubygem-allison/Makefile index af13a0b56ea0..37e9146926ef 100644 --- a/devel/rubygem-allison/Makefile +++ b/devel/rubygem-allison/Makefile @@ -1,17 +1,16 @@ PORTNAME= allison PORTVERSION= 2.0.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Modern, pretty RDoc template WWW= https://github.com/evan/allison NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/allison .include diff --git a/devel/rubygem-amazing_print/Makefile b/devel/rubygem-amazing_print/Makefile index 05ea9bd2e17f..7d53628ce3aa 100644 --- a/devel/rubygem-amazing_print/Makefile +++ b/devel/rubygem-amazing_print/Makefile @@ -1,18 +1,17 @@ PORTNAME= amazing_print PORTVERSION= 1.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Great Ruby debugging companion WWW= https://github.com/amazing-print/amazing_print LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-analogger/Makefile b/devel/rubygem-analogger/Makefile index e563f055efdd..e7d485ce3277 100644 --- a/devel/rubygem-analogger/Makefile +++ b/devel/rubygem-analogger/Makefile @@ -1,23 +1,22 @@ PORTNAME= analogger PORTVERSION= 0.9.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Fast, flexible, easy to use logging service for Ruby WWW= https://github.com/wyhaines/analogger LICENSE= MIT RUN_DEPENDS= rubygem-eventmachine>=1.2.5:devel/rubygem-eventmachine NO_ARCH= yes -USE_RUBY= yes USES= gem shebangfix PLIST_FILES= bin/analogger SHEBANG_FILES= bin/analogger ruby_OLD_CMD= ruby .include diff --git a/devel/rubygem-annoy/Makefile b/devel/rubygem-annoy/Makefile index 34d2705458f2..5c50969120ea 100644 --- a/devel/rubygem-annoy/Makefile +++ b/devel/rubygem-annoy/Makefile @@ -1,19 +1,18 @@ PORTNAME= annoy PORTVERSION= 0.5.6 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= swills@FreeBSD.org COMMENT= Present the user with a simple question before a destructive action WWW= https://rubygems.org/gems/annoy LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-highline>=1.5.0:devel/rubygem-highline NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-ansi/Makefile b/devel/rubygem-ansi/Makefile index 04c430c90208..76bf784443ea 100644 --- a/devel/rubygem-ansi/Makefile +++ b/devel/rubygem-ansi/Makefile @@ -1,17 +1,16 @@ PORTNAME= ansi PORTVERSION= 1.5.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Gem enabling ANSI code based colorization and stylization of output WWW= https://rubyworks.github.io/ansi/ LICENSE= BSD2CLAUSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-apipie-bindings/Makefile b/devel/rubygem-apipie-bindings/Makefile index 7c79aaf5dff3..a008b2c2357c 100644 --- a/devel/rubygem-apipie-bindings/Makefile +++ b/devel/rubygem-apipie-bindings/Makefile @@ -1,23 +1,22 @@ PORTNAME= apipie-bindings PORTVERSION= 0.5.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby bindings for API calls that are documented with Apipie WWW= https://github.com/Apipie/apipie-bindings LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-gssapi>=0:security/rubygem-gssapi \ rubygem-json>=1.2.1:devel/rubygem-json \ rubygem-oauth>=0:net/rubygem-oauth \ rubygem-rest-client>=1.6.5<3.0.0:www/rubygem-rest-client USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-apipie-params/Makefile b/devel/rubygem-apipie-params/Makefile index 3b8145a2b4ef..2b6c9ce4fca9 100644 --- a/devel/rubygem-apipie-params/Makefile +++ b/devel/rubygem-apipie-params/Makefile @@ -1,17 +1,16 @@ PORTNAME= apipie-params PORTVERSION= 0.0.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= DSL for describing data structures with json-schema bindings WWW= https://github.com/iNecas/apipie-params LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-app_config/Makefile b/devel/rubygem-app_config/Makefile index 79e53067387e..b49b2df801ad 100644 --- a/devel/rubygem-app_config/Makefile +++ b/devel/rubygem-app_config/Makefile @@ -1,25 +1,24 @@ PORTNAME= app_config PORTVERSION= 2.7.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby gem for storing application configuration WWW= https://oshuma.github.io/app_config/ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes OPTIONS_DEFINE= MONGODB SQLITE3 OPTIONS_DEFAULT=SQLITE3 MONGODB_DESC= MongoDB backend support SQLITE3_DESC= SQLite 3 backend support MONGODB_RUN_DEPENDS= rubygem-mongo>=0:devel/rubygem-mongo SQLITE3_RUN_DEPENDS= rubygem-sqlite3>=0:databases/rubygem-sqlite3 .include diff --git a/devel/rubygem-appraisal/Makefile b/devel/rubygem-appraisal/Makefile index 82df81dced68..66d6901e9f1f 100644 --- a/devel/rubygem-appraisal/Makefile +++ b/devel/rubygem-appraisal/Makefile @@ -1,24 +1,23 @@ PORTNAME= appraisal PORTVERSION= 2.4.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Integrates with bundler and rake to test library dependencies WWW= https://github.com/thoughtbot/appraisal LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-bundler>=0:sysutils/rubygem-bundler \ rubygem-rake>=0:devel/rubygem-rake \ rubygem-thor>=0.14.0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/appraisal .include diff --git a/devel/rubygem-arr-pm/Makefile b/devel/rubygem-arr-pm/Makefile index 60e71e534dc7..f4464c219fe1 100644 --- a/devel/rubygem-arr-pm/Makefile +++ b/devel/rubygem-arr-pm/Makefile @@ -1,17 +1,16 @@ PORTNAME= arr-pm PORTVERSION= 0.0.12 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= swills@FreeBSD.org COMMENT= Read and write rpm packages WWW= https://rubygems.org/gems/arr-pm LICENSE= APACHE20 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-arrayfields/Makefile b/devel/rubygem-arrayfields/Makefile index 3bd344c42089..632b2e2f300d 100644 --- a/devel/rubygem-arrayfields/Makefile +++ b/devel/rubygem-arrayfields/Makefile @@ -1,17 +1,16 @@ PORTNAME= arrayfields PORTVERSION= 4.9.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Allow Keyword Access to Array Instances WWW= https://github.com/ahoward/arrayfields LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-ascii85/Makefile b/devel/rubygem-ascii85/Makefile index e24764960ec9..61584443f945 100644 --- a/devel/rubygem-ascii85/Makefile +++ b/devel/rubygem-ascii85/Makefile @@ -1,21 +1,20 @@ PORTNAME= ascii85 PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG DISTNAME= Ascii85-${PORTVERSION} MAINTAINER= ruby@FreeBSD.org COMMENT= Encode/decode Adobe's binary-to-text encoding of the same name #' WWW= https://github.com/DataWraith/ascii85gem LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/ascii85 .include diff --git a/devel/rubygem-asetus/Makefile b/devel/rubygem-asetus/Makefile index 47de66d0e312..b66a858feab4 100644 --- a/devel/rubygem-asetus/Makefile +++ b/devel/rubygem-asetus/Makefile @@ -1,17 +1,16 @@ PORTNAME= asetus PORTVERSION= 0.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= nick@foobar.org COMMENT= Ruby configuration library with YAML/JSON/TOML backends WWW= https://github.com/ytti/asetus LICENSE= APACHE20 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-aspectr/Makefile b/devel/rubygem-aspectr/Makefile index a3641aa3c08e..3dfe8b3e2d6d 100644 --- a/devel/rubygem-aspectr/Makefile +++ b/devel/rubygem-aspectr/Makefile @@ -1,18 +1,17 @@ PORTNAME= aspectr PORTVERSION= 0.3.7 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby libraries for Aspect programming WWW= http://aspectr.rubyforge.org/ LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-ast/Makefile b/devel/rubygem-ast/Makefile index 0ea28847bfaa..7fd08090ea91 100644 --- a/devel/rubygem-ast/Makefile +++ b/devel/rubygem-ast/Makefile @@ -1,18 +1,17 @@ PORTNAME= ast PORTVERSION= 2.4.2 CATEGORIES= devel ruby MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Library for working with Abstract Syntax Trees WWW= https://github.com/whitequark/ast LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-astrolabe/Makefile b/devel/rubygem-astrolabe/Makefile index 965efe60d645..3c95885d9b1d 100644 --- a/devel/rubygem-astrolabe/Makefile +++ b/devel/rubygem-astrolabe/Makefile @@ -1,21 +1,20 @@ PORTNAME= astrolabe PORTVERSION= 1.3.1 PORTREVISION= 1 CATEGORIES= devel ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Object-oriented AST extension for rubygem-parser WWW= https://github.com/yujinakayama/astrolabe LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-parser>=2.2:devel/rubygem-parser USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-async-io/Makefile b/devel/rubygem-async-io/Makefile index feb3704195f4..363d963ff2b8 100644 --- a/devel/rubygem-async-io/Makefile +++ b/devel/rubygem-async-io/Makefile @@ -1,19 +1,18 @@ PORTNAME= async-io PORTVERSION= 1.34.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Provides support for asynchronous TCP, UDP, Unix, and SSL sockets WWW= https://github.com/socketry/async-io LICENSE= MIT RUN_DEPENDS= rubygem-async>=0:devel/rubygem-async USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-async/Makefile b/devel/rubygem-async/Makefile index ab96675a9e1a..baa65c306ff1 100644 --- a/devel/rubygem-async/Makefile +++ b/devel/rubygem-async/Makefile @@ -1,21 +1,20 @@ PORTNAME= async PORTVERSION= 1.30.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Modern asynchronous I/O framework for Ruby WWW= https://github.com/socketry/async LICENSE= MIT RUN_DEPENDS= rubygem-console>=1.10<2:devel/rubygem-console \ rubygem-nio4r>=2.3<3:devel/rubygem-nio4r \ rubygem-timers>=4.1<5:devel/rubygem-timers USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-atomic/Makefile b/devel/rubygem-atomic/Makefile index ee40c1c32d2b..087896ade2ca 100644 --- a/devel/rubygem-atomic/Makefile +++ b/devel/rubygem-atomic/Makefile @@ -1,16 +1,15 @@ PORTNAME= atomic PORTVERSION= 1.1.101 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Atomic reference implementation WWW= https://github.com/ruby-concurrency/atomic LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-attic/Makefile b/devel/rubygem-attic/Makefile index 00c29932a763..4737339c998c 100644 --- a/devel/rubygem-attic/Makefile +++ b/devel/rubygem-attic/Makefile @@ -1,18 +1,17 @@ PORTNAME= attic PORTVERSION= 0.5.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Place to hide private instance variables in your Ruby objects WWW= https://github.com/delano/attic LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-attr_required/Makefile b/devel/rubygem-attr_required/Makefile index 615b8c9d0305..88da87d0f4e3 100644 --- a/devel/rubygem-attr_required/Makefile +++ b/devel/rubygem-attr_required/Makefile @@ -1,17 +1,16 @@ PORTNAME= attr_required PORTVERSION= 1.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby implementations of attr_required and attr_optional WWW= https://github.com/nov/attr_required LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-authlogic/Makefile b/devel/rubygem-authlogic/Makefile index a784b5fc955f..aea45e2bdc06 100644 --- a/devel/rubygem-authlogic/Makefile +++ b/devel/rubygem-authlogic/Makefile @@ -1,22 +1,21 @@ PORTNAME= authlogic PORTVERSION= 6.4.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Clean, simple, and unobtrusive Ruby authentication solution WWW= https://github.com/binarylogic/authlogic LICENSE= MIT RUN_DEPENDS= rubygem-activemodel60>=5.2<7.1:databases/rubygem-activemodel60 \ rubygem-activerecord60>=5.2<7.1:databases/rubygem-activerecord60 \ rubygem-activesupport60>=5.2<7.1:devel/rubygem-activesupport60 \ rubygem-request_store>=1.0<2:devel/rubygem-request_store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-avro/Makefile b/devel/rubygem-avro/Makefile index 13889bf15dd8..c525fbfc2e76 100644 --- a/devel/rubygem-avro/Makefile +++ b/devel/rubygem-avro/Makefile @@ -1,22 +1,21 @@ PORTNAME= avro PORTVERSION= 1.11.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby library for Apache Avro WWW= https://avro.apache.org/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-multi_json>=1.0<2:devel/rubygem-multi_json USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= apache .include diff --git a/devel/rubygem-awesome_print/Makefile b/devel/rubygem-awesome_print/Makefile index 581c0892db68..efe8e692dc4b 100644 --- a/devel/rubygem-awesome_print/Makefile +++ b/devel/rubygem-awesome_print/Makefile @@ -1,18 +1,17 @@ PORTNAME= awesome_print PORTVERSION= 1.8.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= meta@FreeBSD.org COMMENT= Pretty print Ruby objects to visualize their structure WWW= https://rubygems.org/gems/awesome_print LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-awrence/Makefile b/devel/rubygem-awrence/Makefile index 4f360ac9ca07..e58b806f41f9 100644 --- a/devel/rubygem-awrence/Makefile +++ b/devel/rubygem-awrence/Makefile @@ -1,18 +1,17 @@ PORTNAME= awrence PORTVERSION= 1.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Convert snake_case to CamelCase and more WWW= https://github.com/futurechimp/awrence LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-crt/Makefile b/devel/rubygem-aws-crt/Makefile index 1e7d9f32f6ef..066acbf1484e 100644 --- a/devel/rubygem-aws-crt/Makefile +++ b/devel/rubygem-aws-crt/Makefile @@ -1,30 +1,29 @@ PORTNAME= aws-crt PORTVERSION= 0.1.6 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= AWS SDK for Ruby - Common Run Time WWW= https://github.com/awslabs/aws-crt-ruby LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt BUILD_DEPENDS= cmake:devel/cmake-core RUN_DEPENDS= rubygem-ffi>=0:devel/rubygem-ffi USES= gem python:env shebangfix -USE_RUBY= yes #NO_ARCH= yes SHEBANG_FILES= aws-crt-ffi/crt/s2n/tests/litani/* \ aws-crt-ffi/crt/s2n/tests/litani/*/* \ aws-crt-ffi/crt/s2n/tests/litani/*/*/* SHEBANG_GLOB= *.py *.sh post-install: ${RM} -r ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/tmp/ ${REINPLACE_CMD} -e '/${GEM_LIB_DIR}\/tmp\//d' ${TMPPLIST} .include diff --git a/devel/rubygem-aws-eventstream/Makefile b/devel/rubygem-aws-eventstream/Makefile index 538d47490777..a28eecdad55a 100644 --- a/devel/rubygem-aws-eventstream/Makefile +++ b/devel/rubygem-aws-eventstream/Makefile @@ -1,18 +1,17 @@ PORTNAME= aws-eventstream PORTVERSION= 1.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Amazon Web Services event stream library WWW= https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-eventstream LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-partitions/Makefile b/devel/rubygem-aws-partitions/Makefile index e21d4eebd64f..18d45ac0a4bc 100644 --- a/devel/rubygem-aws-partitions/Makefile +++ b/devel/rubygem-aws-partitions/Makefile @@ -1,18 +1,17 @@ PORTNAME= aws-partitions PORTVERSION= 1.664.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Provide interfaces to enumerate AWS partitions, regions, and services WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-partitions LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-accessanalyzer/Makefile b/devel/rubygem-aws-sdk-accessanalyzer/Makefile index 070a4ecfbb90..dc68cf596074 100644 --- a/devel/rubygem-aws-sdk-accessanalyzer/Makefile +++ b/devel/rubygem-aws-sdk-accessanalyzer/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-accessanalyzer PORTVERSION= 1.31.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Access Analyzer WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-accessanalyzer LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-account/Makefile b/devel/rubygem-aws-sdk-account/Makefile index 66a88313d59a..6c9cd9c550be 100644 --- a/devel/rubygem-aws-sdk-account/Makefile +++ b/devel/rubygem-aws-sdk-account/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-account PORTVERSION= 1.8.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Account WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-account LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-acm/Makefile b/devel/rubygem-aws-sdk-acm/Makefile index b3f806d95942..5953bcf1152d 100644 --- a/devel/rubygem-aws-sdk-acm/Makefile +++ b/devel/rubygem-aws-sdk-acm/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-acm PORTVERSION= 1.54.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Certificate Manager (ACM) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-acm LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-acmpca/Makefile b/devel/rubygem-aws-sdk-acmpca/Makefile index c927074ddc7c..6692be8e6a6b 100644 --- a/devel/rubygem-aws-sdk-acmpca/Makefile +++ b/devel/rubygem-aws-sdk-acmpca/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-acmpca PORTVERSION= 1.51.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Certificate Manager Private Certificate Authority (ACM-PCA) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-acmpca LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-alexaforbusiness/Makefile b/devel/rubygem-aws-sdk-alexaforbusiness/Makefile index 6dd29996bc73..6f485001b406 100644 --- a/devel/rubygem-aws-sdk-alexaforbusiness/Makefile +++ b/devel/rubygem-aws-sdk-alexaforbusiness/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-alexaforbusiness PORTVERSION= 1.57.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Alexa For Business WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-alexaforbusiness LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-amplify/Makefile b/devel/rubygem-aws-sdk-amplify/Makefile index cf9642e285b9..73ba198decde 100644 --- a/devel/rubygem-aws-sdk-amplify/Makefile +++ b/devel/rubygem-aws-sdk-amplify/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-amplify PORTVERSION= 1.43.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Amplify (Amplify) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-amplify LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-amplifybackend/Makefile b/devel/rubygem-aws-sdk-amplifybackend/Makefile index 236ffd111022..929b257242f8 100644 --- a/devel/rubygem-aws-sdk-amplifybackend/Makefile +++ b/devel/rubygem-aws-sdk-amplifybackend/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-amplifybackend PORTVERSION= 1.18.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AmplifyBackend WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-amplifybackend LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-amplifyuibuilder/Makefile b/devel/rubygem-aws-sdk-amplifyuibuilder/Makefile index d11fb98a682d..68e5f4af7409 100644 --- a/devel/rubygem-aws-sdk-amplifyuibuilder/Makefile +++ b/devel/rubygem-aws-sdk-amplifyuibuilder/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-amplifyuibuilder PORTVERSION= 1.8.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Amplify UI Builder WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-amplifyuibuilder LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-apigateway/Makefile b/devel/rubygem-aws-sdk-apigateway/Makefile index 1f195c92f724..59a2537a868a 100644 --- a/devel/rubygem-aws-sdk-apigateway/Makefile +++ b/devel/rubygem-aws-sdk-apigateway/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-apigateway PORTVERSION= 1.79.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon API Gateway WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-apigateway LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-apigatewaymanagementapi/Makefile b/devel/rubygem-aws-sdk-apigatewaymanagementapi/Makefile index 4a47470b8a2c..d0aaf1458318 100644 --- a/devel/rubygem-aws-sdk-apigatewaymanagementapi/Makefile +++ b/devel/rubygem-aws-sdk-apigatewaymanagementapi/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-apigatewaymanagementapi PORTVERSION= 1.31.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AmazonApiGatewayManagementApi WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-apigatewaymanagementapi LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-apigatewayv2/Makefile b/devel/rubygem-aws-sdk-apigatewayv2/Makefile index 162d3076f6d2..99e273b6b20d 100644 --- a/devel/rubygem-aws-sdk-apigatewayv2/Makefile +++ b/devel/rubygem-aws-sdk-apigatewayv2/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-apigatewayv2 PORTVERSION= 1.43.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AmazonApiGatewayV2 WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-apigatewayv2 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-appconfig/Makefile b/devel/rubygem-aws-sdk-appconfig/Makefile index cc2e02f66213..5ca2cb1fc3d3 100644 --- a/devel/rubygem-aws-sdk-appconfig/Makefile +++ b/devel/rubygem-aws-sdk-appconfig/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-appconfig PORTVERSION= 1.27.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon AppConfig (AppConfig) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-appconfig LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-appconfigdata/Makefile b/devel/rubygem-aws-sdk-appconfigdata/Makefile index ed4a1b3a50fa..9eacd64a670e 100644 --- a/devel/rubygem-aws-sdk-appconfigdata/Makefile +++ b/devel/rubygem-aws-sdk-appconfigdata/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-appconfigdata PORTVERSION= 1.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS AppConfig Data WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-appconfigdata LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-appflow/Makefile b/devel/rubygem-aws-sdk-appflow/Makefile index 0f562841110c..ee89425e6e1b 100644 --- a/devel/rubygem-aws-sdk-appflow/Makefile +++ b/devel/rubygem-aws-sdk-appflow/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-appflow PORTVERSION= 1.31.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Appflow WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-appflow LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-appintegrationsservice/Makefile b/devel/rubygem-aws-sdk-appintegrationsservice/Makefile index b482d788f734..5053078ae13f 100644 --- a/devel/rubygem-aws-sdk-appintegrationsservice/Makefile +++ b/devel/rubygem-aws-sdk-appintegrationsservice/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-appintegrationsservice PORTVERSION= 1.14.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon AppIntegrations Service WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-appintegrationsservice LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-applicationautoscaling/Makefile b/devel/rubygem-aws-sdk-applicationautoscaling/Makefile index a887eb8b6572..46e16a048085 100644 --- a/devel/rubygem-aws-sdk-applicationautoscaling/Makefile +++ b/devel/rubygem-aws-sdk-applicationautoscaling/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-applicationautoscaling PORTVERSION= 1.63.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Application Auto Scaling WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-applicationautoscaling LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-applicationcostprofiler/Makefile b/devel/rubygem-aws-sdk-applicationcostprofiler/Makefile index 7843ce858112..3ca43ae20403 100644 --- a/devel/rubygem-aws-sdk-applicationcostprofiler/Makefile +++ b/devel/rubygem-aws-sdk-applicationcostprofiler/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-applicationcostprofiler PORTVERSION= 1.10.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Application Cost Profiler WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-applicationcostprofiler LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-applicationdiscoveryservice/Makefile b/devel/rubygem-aws-sdk-applicationdiscoveryservice/Makefile index ce3bc194c61b..dedcd972448b 100644 --- a/devel/rubygem-aws-sdk-applicationdiscoveryservice/Makefile +++ b/devel/rubygem-aws-sdk-applicationdiscoveryservice/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-applicationdiscoveryservice PORTVERSION= 1.47.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Application Discovery Service WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-applicationdiscoveryservice LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-applicationinsights/Makefile b/devel/rubygem-aws-sdk-applicationinsights/Makefile index a0c62d7254c3..6a75132ae176 100644 --- a/devel/rubygem-aws-sdk-applicationinsights/Makefile +++ b/devel/rubygem-aws-sdk-applicationinsights/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-applicationinsights PORTVERSION= 1.32.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon CloudWatch Application Insights (Application Insights) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-applicationinsights LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-appmesh/Makefile b/devel/rubygem-aws-sdk-appmesh/Makefile index 91128e2fddce..e48284107cb7 100644 --- a/devel/rubygem-aws-sdk-appmesh/Makefile +++ b/devel/rubygem-aws-sdk-appmesh/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-appmesh PORTVERSION= 1.48.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS App Mesh WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-appmesh LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-appregistry/Makefile b/devel/rubygem-aws-sdk-appregistry/Makefile index 17c25fa36b25..7fcb28426cb9 100644 --- a/devel/rubygem-aws-sdk-appregistry/Makefile +++ b/devel/rubygem-aws-sdk-appregistry/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-appregistry PORTVERSION= 1.18.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Service Catalog App Registry (AppRegistry) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-appregistry LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-apprunner/Makefile b/devel/rubygem-aws-sdk-apprunner/Makefile index 151584a28e51..bf3f74cda362 100644 --- a/devel/rubygem-aws-sdk-apprunner/Makefile +++ b/devel/rubygem-aws-sdk-apprunner/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-apprunner PORTVERSION= 1.18.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS App Runner WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-apprunner LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-appstream/Makefile b/devel/rubygem-aws-sdk-appstream/Makefile index bee16e47e4c5..cfef20fb386b 100644 --- a/devel/rubygem-aws-sdk-appstream/Makefile +++ b/devel/rubygem-aws-sdk-appstream/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-appstream PORTVERSION= 1.68.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon AppStream WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-appstream LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-appsync/Makefile b/devel/rubygem-aws-sdk-appsync/Makefile index 52aa7522964b..5b3da52a6916 100644 --- a/devel/rubygem-aws-sdk-appsync/Makefile +++ b/devel/rubygem-aws-sdk-appsync/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-appsync PORTVERSION= 1.55.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS AppSync (AWSAppSync) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-appsync LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-athena/Makefile b/devel/rubygem-aws-sdk-athena/Makefile index 39842af08909..9395b85ffedf 100644 --- a/devel/rubygem-aws-sdk-athena/Makefile +++ b/devel/rubygem-aws-sdk-athena/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-athena PORTVERSION= 1.58.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Athena WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-athena LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-auditmanager/Makefile b/devel/rubygem-aws-sdk-auditmanager/Makefile index 0ba1790059fc..bb574280899e 100644 --- a/devel/rubygem-aws-sdk-auditmanager/Makefile +++ b/devel/rubygem-aws-sdk-auditmanager/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-auditmanager PORTVERSION= 1.28.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Audit Manager WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-auditmanager LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-augmentedairuntime/Makefile b/devel/rubygem-aws-sdk-augmentedairuntime/Makefile index 9eb6386b0b02..272c204f873e 100644 --- a/devel/rubygem-aws-sdk-augmentedairuntime/Makefile +++ b/devel/rubygem-aws-sdk-augmentedairuntime/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-augmentedairuntime PORTVERSION= 1.24.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Augmented AI Runtime WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-augmentedairuntime LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-autoscaling/Makefile b/devel/rubygem-aws-sdk-autoscaling/Makefile index 5ba34744e10f..e7154df951a4 100644 --- a/devel/rubygem-aws-sdk-autoscaling/Makefile +++ b/devel/rubygem-aws-sdk-autoscaling/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-autoscaling PORTVERSION= 1.83.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Auto Scaling WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-autoscaling LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-autoscalingplans/Makefile b/devel/rubygem-aws-sdk-autoscalingplans/Makefile index 20e2c9487367..b6b803f9a386 100644 --- a/devel/rubygem-aws-sdk-autoscalingplans/Makefile +++ b/devel/rubygem-aws-sdk-autoscalingplans/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-autoscalingplans PORTVERSION= 1.41.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Auto Scaling Plans WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-autoscalingplans LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-backup/Makefile b/devel/rubygem-aws-sdk-backup/Makefile index b9a351df6007..a89f5518b049 100644 --- a/devel/rubygem-aws-sdk-backup/Makefile +++ b/devel/rubygem-aws-sdk-backup/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-backup PORTVERSION= 1.46.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Backup WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-backup LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-backupgateway/Makefile b/devel/rubygem-aws-sdk-backupgateway/Makefile index 35fe0447643c..c33578a4a028 100644 --- a/devel/rubygem-aws-sdk-backupgateway/Makefile +++ b/devel/rubygem-aws-sdk-backupgateway/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-backupgateway PORTVERSION= 1.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Backup Gateway WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-backupgateway LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-backupstorage/Makefile b/devel/rubygem-aws-sdk-backupstorage/Makefile index 198a8401159f..6ccebbd257e5 100644 --- a/devel/rubygem-aws-sdk-backupstorage/Makefile +++ b/devel/rubygem-aws-sdk-backupstorage/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-backupstorage PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Backup Storage WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-backupstorage LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-batch/Makefile b/devel/rubygem-aws-sdk-batch/Makefile index ae1f0569d754..2716a2253170 100644 --- a/devel/rubygem-aws-sdk-batch/Makefile +++ b/devel/rubygem-aws-sdk-batch/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-batch PORTVERSION= 1.65.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Batch WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-batch LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-billingconductor/Makefile b/devel/rubygem-aws-sdk-billingconductor/Makefile index 53ae80ff7b2e..0c5995e2e6f1 100644 --- a/devel/rubygem-aws-sdk-billingconductor/Makefile +++ b/devel/rubygem-aws-sdk-billingconductor/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-billingconductor PORTVERSION= 1.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Billing Conductor WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-billingconductor LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-braket/Makefile b/devel/rubygem-aws-sdk-braket/Makefile index 4262e9683eaf..b307d19a14d1 100644 --- a/devel/rubygem-aws-sdk-braket/Makefile +++ b/devel/rubygem-aws-sdk-braket/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-braket PORTVERSION= 1.20.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Braket WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-braket LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-budgets/Makefile b/devel/rubygem-aws-sdk-budgets/Makefile index 8c8102d089cf..39bb0980be29 100644 --- a/devel/rubygem-aws-sdk-budgets/Makefile +++ b/devel/rubygem-aws-sdk-budgets/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-budgets PORTVERSION= 1.51.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Budgets (AWSBudgets) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-budgets LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-chime/Makefile b/devel/rubygem-aws-sdk-chime/Makefile index ff3c086eeace..b71c296ddeb6 100644 --- a/devel/rubygem-aws-sdk-chime/Makefile +++ b/devel/rubygem-aws-sdk-chime/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-chime PORTVERSION= 1.69.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Chime WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-chime LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-chimesdkidentity/Makefile b/devel/rubygem-aws-sdk-chimesdkidentity/Makefile index 7f81850774fb..613023c79009 100644 --- a/devel/rubygem-aws-sdk-chimesdkidentity/Makefile +++ b/devel/rubygem-aws-sdk-chimesdkidentity/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-chimesdkidentity PORTVERSION= 1.10.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Chime SDK Identity WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-chimesdkidentity LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-chimesdkmediapipelines/Makefile b/devel/rubygem-aws-sdk-chimesdkmediapipelines/Makefile index cf1f4e59da32..b94ac0c6a53f 100644 --- a/devel/rubygem-aws-sdk-chimesdkmediapipelines/Makefile +++ b/devel/rubygem-aws-sdk-chimesdkmediapipelines/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-chimesdkmediapipelines PORTVERSION= 1.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Chime SDK Media Pipelines WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-chimesdkmediapipelines LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-chimesdkmeetings/Makefile b/devel/rubygem-aws-sdk-chimesdkmeetings/Makefile index b9635bdaa32d..0ec10c112ba9 100644 --- a/devel/rubygem-aws-sdk-chimesdkmeetings/Makefile +++ b/devel/rubygem-aws-sdk-chimesdkmeetings/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-chimesdkmeetings PORTVERSION= 1.15.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Chime SDK Meetings WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-chimesdkmeetings LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-chimesdkmessaging/Makefile b/devel/rubygem-aws-sdk-chimesdkmessaging/Makefile index ec1e9d845dfc..fdbd0223ca92 100644 --- a/devel/rubygem-aws-sdk-chimesdkmessaging/Makefile +++ b/devel/rubygem-aws-sdk-chimesdkmessaging/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-chimesdkmessaging PORTVERSION= 1.14.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Chime SDK Messaging WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-chimesdkmessaging LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-chimesdkvoice/Makefile b/devel/rubygem-aws-sdk-chimesdkvoice/Makefile index e0b3a3b92210..cbcc564d50de 100644 --- a/devel/rubygem-aws-sdk-chimesdkvoice/Makefile +++ b/devel/rubygem-aws-sdk-chimesdkvoice/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-chimesdkvoice PORTVERSION= 1.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Chime SDK Voice WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-chimesdkvoice LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-cloud9/Makefile b/devel/rubygem-aws-sdk-cloud9/Makefile index 1f730b5e8b73..131de40c531d 100644 --- a/devel/rubygem-aws-sdk-cloud9/Makefile +++ b/devel/rubygem-aws-sdk-cloud9/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-cloud9 PORTVERSION= 1.47.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Cloud9 WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloud9 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-cloudcontrolapi/Makefile b/devel/rubygem-aws-sdk-cloudcontrolapi/Makefile index 20967686fb4e..cbf939a86c8a 100644 --- a/devel/rubygem-aws-sdk-cloudcontrolapi/Makefile +++ b/devel/rubygem-aws-sdk-cloudcontrolapi/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-cloudcontrolapi PORTVERSION= 1.9.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Cloud Control API (CloudControlApi) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudcontrolapi LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-clouddirectory/Makefile b/devel/rubygem-aws-sdk-clouddirectory/Makefile index 0c0b7f0fac9a..52a1bd2fdc4f 100644 --- a/devel/rubygem-aws-sdk-clouddirectory/Makefile +++ b/devel/rubygem-aws-sdk-clouddirectory/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-clouddirectory PORTVERSION= 1.42.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon CloudDirectory WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-clouddirectory LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-cloudformation/Makefile b/devel/rubygem-aws-sdk-cloudformation/Makefile index 1df3a423e230..fcf8d3531fd7 100644 --- a/devel/rubygem-aws-sdk-cloudformation/Makefile +++ b/devel/rubygem-aws-sdk-cloudformation/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-cloudformation PORTVERSION= 1.73.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS CloudFormation WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudformation LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-cloudfront/Makefile b/devel/rubygem-aws-sdk-cloudfront/Makefile index 20d543dd24ab..d9c0c40f4fa1 100644 --- a/devel/rubygem-aws-sdk-cloudfront/Makefile +++ b/devel/rubygem-aws-sdk-cloudfront/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-cloudfront PORTVERSION= 1.70.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon CloudFront (CloudFront) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudfront LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-cloudhsm/Makefile b/devel/rubygem-aws-sdk-cloudhsm/Makefile index 050890d5a7aa..669c6a138913 100644 --- a/devel/rubygem-aws-sdk-cloudhsm/Makefile +++ b/devel/rubygem-aws-sdk-cloudhsm/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-cloudhsm PORTVERSION= 1.40.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon CloudHSM (CloudHSM) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudhsm LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-cloudhsmv2/Makefile b/devel/rubygem-aws-sdk-cloudhsmv2/Makefile index b7779ed7e279..4998bdb7eeb8 100644 --- a/devel/rubygem-aws-sdk-cloudhsmv2/Makefile +++ b/devel/rubygem-aws-sdk-cloudhsmv2/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-cloudhsmv2 PORTVERSION= 1.43.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS CloudHSM V2 (CloudHSM V2) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudhsmv2 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-cloudsearch/Makefile b/devel/rubygem-aws-sdk-cloudsearch/Makefile index a0388fb74ce2..a84b5daf69e3 100644 --- a/devel/rubygem-aws-sdk-cloudsearch/Makefile +++ b/devel/rubygem-aws-sdk-cloudsearch/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-cloudsearch PORTVERSION= 1.41.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon CloudSearch WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudsearch LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-cloudsearchdomain/Makefile b/devel/rubygem-aws-sdk-cloudsearchdomain/Makefile index 8d95d69bafab..a1965d30ece8 100644 --- a/devel/rubygem-aws-sdk-cloudsearchdomain/Makefile +++ b/devel/rubygem-aws-sdk-cloudsearchdomain/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-cloudsearchdomain PORTVERSION= 1.34.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon CloudSearch Domain WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudsearchdomain LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-cloudtrail/Makefile b/devel/rubygem-aws-sdk-cloudtrail/Makefile index 1f661357764d..18bf6718351e 100644 --- a/devel/rubygem-aws-sdk-cloudtrail/Makefile +++ b/devel/rubygem-aws-sdk-cloudtrail/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-cloudtrail PORTVERSION= 1.54.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS CloudTrail (CloudTrail) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudtrail LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-cloudwatch/Makefile b/devel/rubygem-aws-sdk-cloudwatch/Makefile index 87c52aa6acd3..d0e2fb975f63 100644 --- a/devel/rubygem-aws-sdk-cloudwatch/Makefile +++ b/devel/rubygem-aws-sdk-cloudwatch/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-cloudwatch PORTVERSION= 1.68.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon CloudWatch (CloudWatch) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudwatch LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-cloudwatchevents/Makefile b/devel/rubygem-aws-sdk-cloudwatchevents/Makefile index b3ce3706ecb4..3f187afc0617 100644 --- a/devel/rubygem-aws-sdk-cloudwatchevents/Makefile +++ b/devel/rubygem-aws-sdk-cloudwatchevents/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-cloudwatchevents PORTVERSION= 1.58.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon CloudWatch Events WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudwatchevents LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-cloudwatchevidently/Makefile b/devel/rubygem-aws-sdk-cloudwatchevidently/Makefile index f7a693bea198..4ed184783244 100644 --- a/devel/rubygem-aws-sdk-cloudwatchevidently/Makefile +++ b/devel/rubygem-aws-sdk-cloudwatchevidently/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-cloudwatchevidently PORTVERSION= 1.9.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon CloudWatch Evidently WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudwatchevidently LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-cloudwatchlogs/Makefile b/devel/rubygem-aws-sdk-cloudwatchlogs/Makefile index 36374ab3daf2..e84643cb95f5 100644 --- a/devel/rubygem-aws-sdk-cloudwatchlogs/Makefile +++ b/devel/rubygem-aws-sdk-cloudwatchlogs/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-cloudwatchlogs PORTVERSION= 1.56.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon CloudWatch Logs WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudwatchlogs LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-cloudwatchrum/Makefile b/devel/rubygem-aws-sdk-cloudwatchrum/Makefile index 6875d4eeb24e..b98feb122bbc 100644 --- a/devel/rubygem-aws-sdk-cloudwatchrum/Makefile +++ b/devel/rubygem-aws-sdk-cloudwatchrum/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-cloudwatchrum PORTVERSION= 1.7.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for CloudWatch RUM WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cloudwatchrum LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-codeartifact/Makefile b/devel/rubygem-aws-sdk-codeartifact/Makefile index 0f9702b0e3ee..c0c900b7c2cf 100644 --- a/devel/rubygem-aws-sdk-codeartifact/Makefile +++ b/devel/rubygem-aws-sdk-codeartifact/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-codeartifact PORTVERSION= 1.22.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for CodeArtifact WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-codeartifact LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-codebuild/Makefile b/devel/rubygem-aws-sdk-codebuild/Makefile index e80dfc72cdea..df362057ba85 100644 --- a/devel/rubygem-aws-sdk-codebuild/Makefile +++ b/devel/rubygem-aws-sdk-codebuild/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-codebuild PORTVERSION= 1.89.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS CodeBuild WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-codebuild LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-codecommit/Makefile b/devel/rubygem-aws-sdk-codecommit/Makefile index 68fb7589250b..26521602064c 100644 --- a/devel/rubygem-aws-sdk-codecommit/Makefile +++ b/devel/rubygem-aws-sdk-codecommit/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-codecommit PORTVERSION= 1.52.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS CodeCommit (CodeCommit) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-codecommit LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-codedeploy/Makefile b/devel/rubygem-aws-sdk-codedeploy/Makefile index 4c3e73a39c06..6eb86fdcaa1d 100644 --- a/devel/rubygem-aws-sdk-codedeploy/Makefile +++ b/devel/rubygem-aws-sdk-codedeploy/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-codedeploy PORTVERSION= 1.51.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS CodeDeploy (CodeDeploy) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-codedeploy LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-codeguruprofiler/Makefile b/devel/rubygem-aws-sdk-codeguruprofiler/Makefile index d90ecb435637..f54005150671 100644 --- a/devel/rubygem-aws-sdk-codeguruprofiler/Makefile +++ b/devel/rubygem-aws-sdk-codeguruprofiler/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-codeguruprofiler PORTVERSION= 1.25.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon CodeGuru Profiler WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-codeguruprofiler LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-codegurureviewer/Makefile b/devel/rubygem-aws-sdk-codegurureviewer/Makefile index af18ce0e8f23..b351ff7a535f 100644 --- a/devel/rubygem-aws-sdk-codegurureviewer/Makefile +++ b/devel/rubygem-aws-sdk-codegurureviewer/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-codegurureviewer PORTVERSION= 1.34.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon CodeGuru Reviewer (CodeGuruReviewer) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-codegurureviewer LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-codepipeline/Makefile b/devel/rubygem-aws-sdk-codepipeline/Makefile index b094e0fcfafa..91d9c1242f89 100644 --- a/devel/rubygem-aws-sdk-codepipeline/Makefile +++ b/devel/rubygem-aws-sdk-codepipeline/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-codepipeline PORTVERSION= 1.54.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS CodePipeline (CodePipeline) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-codepipeline LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-codestar/Makefile b/devel/rubygem-aws-sdk-codestar/Makefile index 5688b8c52424..b49b13b8a04c 100644 --- a/devel/rubygem-aws-sdk-codestar/Makefile +++ b/devel/rubygem-aws-sdk-codestar/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-codestar PORTVERSION= 1.39.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS CodeStar (CodeStar) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-codestar LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-codestarconnections/Makefile b/devel/rubygem-aws-sdk-codestarconnections/Makefile index 8a63ffd38c2b..9bd6c602c3da 100644 --- a/devel/rubygem-aws-sdk-codestarconnections/Makefile +++ b/devel/rubygem-aws-sdk-codestarconnections/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-codestarconnections PORTVERSION= 1.25.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS CodeStar connections WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-codestarconnections LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-codestarnotifications/Makefile b/devel/rubygem-aws-sdk-codestarnotifications/Makefile index 33fbc8d3e21e..cbe8e15c1b94 100644 --- a/devel/rubygem-aws-sdk-codestarnotifications/Makefile +++ b/devel/rubygem-aws-sdk-codestarnotifications/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-codestarnotifications PORTVERSION= 1.21.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS CodeStar Notifications WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-codestarnotifications LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-cognitoidentity/Makefile b/devel/rubygem-aws-sdk-cognitoidentity/Makefile index def34b24d034..147b30c30ddf 100644 --- a/devel/rubygem-aws-sdk-cognitoidentity/Makefile +++ b/devel/rubygem-aws-sdk-cognitoidentity/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-cognitoidentity PORTVERSION= 1.41.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Cognito Identity WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cognitoidentity LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-cognitoidentityprovider/Makefile b/devel/rubygem-aws-sdk-cognitoidentityprovider/Makefile index e60228f7efc0..68301bdbd70f 100644 --- a/devel/rubygem-aws-sdk-cognitoidentityprovider/Makefile +++ b/devel/rubygem-aws-sdk-cognitoidentityprovider/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-cognitoidentityprovider PORTVERSION= 1.72.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Cognito Identity Provider WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cognitoidentityprovider LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-cognitosync/Makefile b/devel/rubygem-aws-sdk-cognitosync/Makefile index 5e25e6281ade..de941f93a86e 100644 --- a/devel/rubygem-aws-sdk-cognitosync/Makefile +++ b/devel/rubygem-aws-sdk-cognitosync/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-cognitosync PORTVERSION= 1.37.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Cognito Sync WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-cognitosync LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-comprehend/Makefile b/devel/rubygem-aws-sdk-comprehend/Makefile index d55cecc6eb70..a9dcfe0eae83 100644 --- a/devel/rubygem-aws-sdk-comprehend/Makefile +++ b/devel/rubygem-aws-sdk-comprehend/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-comprehend PORTVERSION= 1.63.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Comprehend WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-comprehend LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-comprehendmedical/Makefile b/devel/rubygem-aws-sdk-comprehendmedical/Makefile index d21ba1f95c65..c9812b92b242 100644 --- a/devel/rubygem-aws-sdk-comprehendmedical/Makefile +++ b/devel/rubygem-aws-sdk-comprehendmedical/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-comprehendmedical PORTVERSION= 1.38.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Comprehend Medical (ComprehendMedical) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-comprehendmedical LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-computeoptimizer/Makefile b/devel/rubygem-aws-sdk-computeoptimizer/Makefile index dc722f205cb4..c8560a7918ee 100644 --- a/devel/rubygem-aws-sdk-computeoptimizer/Makefile +++ b/devel/rubygem-aws-sdk-computeoptimizer/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-computeoptimizer PORTVERSION= 1.34.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Compute Optimizer WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-computeoptimizer LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-configservice/Makefile b/devel/rubygem-aws-sdk-configservice/Makefile index bc043a264ae9..95fa69904005 100644 --- a/devel/rubygem-aws-sdk-configservice/Makefile +++ b/devel/rubygem-aws-sdk-configservice/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-configservice PORTVERSION= 1.85.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Config (Config Service) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-configservice LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-connect/Makefile b/devel/rubygem-aws-sdk-connect/Makefile index 55ce1517fb42..a9da833b8036 100644 --- a/devel/rubygem-aws-sdk-connect/Makefile +++ b/devel/rubygem-aws-sdk-connect/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-connect PORTVERSION= 1.85.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Connect Service (Amazon Connect) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-connect LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-connectcampaignservice/Makefile b/devel/rubygem-aws-sdk-connectcampaignservice/Makefile index f3556612493a..9c0e371a5e79 100644 --- a/devel/rubygem-aws-sdk-connectcampaignservice/Makefile +++ b/devel/rubygem-aws-sdk-connectcampaignservice/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-connectcampaignservice PORTVERSION= 1.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Connect Campaign Service WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-connectcampaignservice LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-connectcases/Makefile b/devel/rubygem-aws-sdk-connectcases/Makefile index 75783d4fa437..f27606ede24f 100644 --- a/devel/rubygem-aws-sdk-connectcases/Makefile +++ b/devel/rubygem-aws-sdk-connectcases/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-connectcases PORTVERSION= 1.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Connect Cases (ConnectCases) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-connectcases LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-connectcontactlens/Makefile b/devel/rubygem-aws-sdk-connectcontactlens/Makefile index 1b5e3ae0b02e..b3f58ea3a6eb 100644 --- a/devel/rubygem-aws-sdk-connectcontactlens/Makefile +++ b/devel/rubygem-aws-sdk-connectcontactlens/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-connectcontactlens PORTVERSION= 1.12.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Connect Contact Lens WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-connectcontactlens LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-connectparticipant/Makefile b/devel/rubygem-aws-sdk-connectparticipant/Makefile index ca5e55fde0e6..290afd74f985 100644 --- a/devel/rubygem-aws-sdk-connectparticipant/Makefile +++ b/devel/rubygem-aws-sdk-connectparticipant/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-connectparticipant PORTVERSION= 1.23.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Connect Participant Service (Amazon Connect Participant) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-connectparticipant LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-connectwisdomservice/Makefile b/devel/rubygem-aws-sdk-connectwisdomservice/Makefile index f93b7b2b873d..341dea00d975 100644 --- a/devel/rubygem-aws-sdk-connectwisdomservice/Makefile +++ b/devel/rubygem-aws-sdk-connectwisdomservice/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-connectwisdomservice PORTVERSION= 1.10.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Connect Wisdom Service WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-connectwisdomservice LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-controltower/Makefile b/devel/rubygem-aws-sdk-controltower/Makefile index e79615497bed..2ee1636458c8 100644 --- a/devel/rubygem-aws-sdk-controltower/Makefile +++ b/devel/rubygem-aws-sdk-controltower/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-controltower PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Control Tower WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-controltower LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-core/Makefile b/devel/rubygem-aws-sdk-core/Makefile index 4a6b0791c210..c5f15abbaece 100644 --- a/devel/rubygem-aws-sdk-core/Makefile +++ b/devel/rubygem-aws-sdk-core/Makefile @@ -1,23 +1,22 @@ PORTNAME= aws-sdk-core PORTVERSION= 3.168.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= AWS SDK for Ruby - Core WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-core LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-eventstream>=1.0.2<2:devel/rubygem-aws-eventstream \ rubygem-aws-partitions>=1.651.0<2:devel/rubygem-aws-partitions \ rubygem-aws-sigv4>=1.5<2:devel/rubygem-aws-sigv4 \ rubygem-jmespath>=1.6.1<2:devel/rubygem-jmespath USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-core2/Makefile b/devel/rubygem-aws-sdk-core2/Makefile index 65f793884e7b..87f347baa6dd 100644 --- a/devel/rubygem-aws-sdk-core2/Makefile +++ b/devel/rubygem-aws-sdk-core2/Makefile @@ -1,25 +1,24 @@ PORTNAME= aws-sdk-core PORTVERSION= 2.11.632 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 2 MAINTAINER= sunpoet@FreeBSD.org COMMENT= AWS SDK for Ruby - Core WWW= https://github.com/aws/aws-sdk-ruby LICENSE= APACHE20 RUN_DEPENDS= rubygem-aws-sigv4>=1.0<2:devel/rubygem-aws-sigv4 \ rubygem-jmespath>=1.0<2:devel/rubygem-jmespath USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/aws.rb PORTSCOUT= limit:^2\. .include diff --git a/devel/rubygem-aws-sdk-costandusagereportservice/Makefile b/devel/rubygem-aws-sdk-costandusagereportservice/Makefile index e71a7482aed7..71bc216e7fe0 100644 --- a/devel/rubygem-aws-sdk-costandusagereportservice/Makefile +++ b/devel/rubygem-aws-sdk-costandusagereportservice/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-costandusagereportservice PORTVERSION= 1.42.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Cost and Usage Report Service WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-costandusagereportservice LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-costexplorer/Makefile b/devel/rubygem-aws-sdk-costexplorer/Makefile index be9224169da3..b9e778032fde 100644 --- a/devel/rubygem-aws-sdk-costexplorer/Makefile +++ b/devel/rubygem-aws-sdk-costexplorer/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-costexplorer PORTVERSION= 1.79.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Cost Explorer Service (AWS Cost Explorer) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-costexplorer LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-customerprofiles/Makefile b/devel/rubygem-aws-sdk-customerprofiles/Makefile index 350327bbbd51..6255cd827e35 100644 --- a/devel/rubygem-aws-sdk-customerprofiles/Makefile +++ b/devel/rubygem-aws-sdk-customerprofiles/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-customerprofiles PORTVERSION= 1.24.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Connect Customer Profiles (Customer Profiles) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-customerprofiles LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-databasemigrationservice/Makefile b/devel/rubygem-aws-sdk-databasemigrationservice/Makefile index 5b6aa470dde8..7fb9afe1d45c 100644 --- a/devel/rubygem-aws-sdk-databasemigrationservice/Makefile +++ b/devel/rubygem-aws-sdk-databasemigrationservice/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-databasemigrationservice PORTVERSION= 1.74.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Database Migration Service WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-databasemigrationservice LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-dataexchange/Makefile b/devel/rubygem-aws-sdk-dataexchange/Makefile index 7850910b6225..edba359ab0de 100644 --- a/devel/rubygem-aws-sdk-dataexchange/Makefile +++ b/devel/rubygem-aws-sdk-dataexchange/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-dataexchange PORTVERSION= 1.28.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Data Exchange WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-dataexchange LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-datapipeline/Makefile b/devel/rubygem-aws-sdk-datapipeline/Makefile index 65c0d9896bfa..be704cc03639 100644 --- a/devel/rubygem-aws-sdk-datapipeline/Makefile +++ b/devel/rubygem-aws-sdk-datapipeline/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-datapipeline PORTVERSION= 1.37.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Data Pipeline WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-datapipeline LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-datasync/Makefile b/devel/rubygem-aws-sdk-datasync/Makefile index b8df8f89f0f8..ad5054a51710 100644 --- a/devel/rubygem-aws-sdk-datasync/Makefile +++ b/devel/rubygem-aws-sdk-datasync/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-datasync PORTVERSION= 1.51.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS DataSync (DataSync) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-datasync LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-dax/Makefile b/devel/rubygem-aws-sdk-dax/Makefile index 30faac46c3aa..1da2d6c94b34 100644 --- a/devel/rubygem-aws-sdk-dax/Makefile +++ b/devel/rubygem-aws-sdk-dax/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-dax PORTVERSION= 1.40.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon DynamoDB Accelerator (DAX) (Amazon DAX) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-dax LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-detective/Makefile b/devel/rubygem-aws-sdk-detective/Makefile index 7b32f630a9ee..2bbecc2bcd91 100644 --- a/devel/rubygem-aws-sdk-detective/Makefile +++ b/devel/rubygem-aws-sdk-detective/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-detective PORTVERSION= 1.30.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Detective WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-detective LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-devicefarm/Makefile b/devel/rubygem-aws-sdk-devicefarm/Makefile index 6558a809eab7..e06ce233e495 100644 --- a/devel/rubygem-aws-sdk-devicefarm/Makefile +++ b/devel/rubygem-aws-sdk-devicefarm/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-devicefarm PORTVERSION= 1.53.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Device Farm WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-devicefarm LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-devopsguru/Makefile b/devel/rubygem-aws-sdk-devopsguru/Makefile index a728f51321f0..639f52efedbf 100644 --- a/devel/rubygem-aws-sdk-devopsguru/Makefile +++ b/devel/rubygem-aws-sdk-devopsguru/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-devopsguru PORTVERSION= 1.27.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon DevOps Guru WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-devopsguru LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-directconnect/Makefile b/devel/rubygem-aws-sdk-directconnect/Makefile index af97a0809266..db4177c34da6 100644 --- a/devel/rubygem-aws-sdk-directconnect/Makefile +++ b/devel/rubygem-aws-sdk-directconnect/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-directconnect PORTVERSION= 1.55.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Direct Connect WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-directconnect LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-directoryservice/Makefile b/devel/rubygem-aws-sdk-directoryservice/Makefile index 09b806502a00..37629d7fc9d4 100644 --- a/devel/rubygem-aws-sdk-directoryservice/Makefile +++ b/devel/rubygem-aws-sdk-directoryservice/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-directoryservice PORTVERSION= 1.52.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Directory Service (Directory Service) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-directoryservice LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-dlm/Makefile b/devel/rubygem-aws-sdk-dlm/Makefile index e630d96f0c5c..bfeb5ebe2dd9 100644 --- a/devel/rubygem-aws-sdk-dlm/Makefile +++ b/devel/rubygem-aws-sdk-dlm/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-dlm PORTVERSION= 1.53.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Data Lifecycle Manager (Amazon DLM) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-dlm LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-docdb/Makefile b/devel/rubygem-aws-sdk-docdb/Makefile index 5ea9a6ed314b..311ae340114f 100644 --- a/devel/rubygem-aws-sdk-docdb/Makefile +++ b/devel/rubygem-aws-sdk-docdb/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-docdb PORTVERSION= 1.45.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon DocumentDB with MongoDB compatibility (Amazon DocDB) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-docdb LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-drs/Makefile b/devel/rubygem-aws-sdk-drs/Makefile index 5333f4ecb37b..8dc65581daa2 100644 --- a/devel/rubygem-aws-sdk-drs/Makefile +++ b/devel/rubygem-aws-sdk-drs/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-drs PORTVERSION= 1.8.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Elastic Disaster Recovery Service (drs) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-drs LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-dynamodb/Makefile b/devel/rubygem-aws-sdk-dynamodb/Makefile index 4bbf93a48c25..e61c4473879c 100644 --- a/devel/rubygem-aws-sdk-dynamodb/Makefile +++ b/devel/rubygem-aws-sdk-dynamodb/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-dynamodb PORTVERSION= 1.79.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon DynamoDB (DynamoDB) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-dynamodb LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-dynamodbstreams/Makefile b/devel/rubygem-aws-sdk-dynamodbstreams/Makefile index 9effdabe7dcc..157376cc0dcc 100644 --- a/devel/rubygem-aws-sdk-dynamodbstreams/Makefile +++ b/devel/rubygem-aws-sdk-dynamodbstreams/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-dynamodbstreams PORTVERSION= 1.41.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon DynamoDB Streams WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-dynamodbstreams LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-ebs/Makefile b/devel/rubygem-aws-sdk-ebs/Makefile index 177485c15d2b..ad821cbf965a 100644 --- a/devel/rubygem-aws-sdk-ebs/Makefile +++ b/devel/rubygem-aws-sdk-ebs/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-ebs PORTVERSION= 1.27.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Elastic Block Store (Amazon EBS) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ebs LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-ec2/Makefile b/devel/rubygem-aws-sdk-ec2/Makefile index 6d14491c4312..1e9519fdc21f 100644 --- a/devel/rubygem-aws-sdk-ec2/Makefile +++ b/devel/rubygem-aws-sdk-ec2/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-ec2 PORTVERSION= 1.351.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Elastic Compute Cloud (Amazon EC2) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ec2 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-ec2instanceconnect/Makefile b/devel/rubygem-aws-sdk-ec2instanceconnect/Makefile index ad3da0c6d6e8..243485252274 100644 --- a/devel/rubygem-aws-sdk-ec2instanceconnect/Makefile +++ b/devel/rubygem-aws-sdk-ec2instanceconnect/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-ec2instanceconnect PORTVERSION= 1.26.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS EC2 Instance Connect (EC2 Instance Connect) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ec2instanceconnect LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-ecr/Makefile b/devel/rubygem-aws-sdk-ecr/Makefile index 6a5d48d10a3b..71c25b847405 100644 --- a/devel/rubygem-aws-sdk-ecr/Makefile +++ b/devel/rubygem-aws-sdk-ecr/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-ecr PORTVERSION= 1.57.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon EC2 Container Registry (Amazon ECR) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ecr LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-ecrpublic/Makefile b/devel/rubygem-aws-sdk-ecrpublic/Makefile index d19042f502cf..5f6fb47675fa 100644 --- a/devel/rubygem-aws-sdk-ecrpublic/Makefile +++ b/devel/rubygem-aws-sdk-ecrpublic/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-ecrpublic PORTVERSION= 1.13.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Elastic Container Registry Public (Amazon ECR Public) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ecrpublic LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-ecs/Makefile b/devel/rubygem-aws-sdk-ecs/Makefile index bf1cae896430..24ec93ad7294 100644 --- a/devel/rubygem-aws-sdk-ecs/Makefile +++ b/devel/rubygem-aws-sdk-ecs/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-ecs PORTVERSION= 1.105.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon EC2 Container Service (Amazon ECS) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ecs LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-efs/Makefile b/devel/rubygem-aws-sdk-efs/Makefile index 20e1f0285d5a..b0f26351009d 100644 --- a/devel/rubygem-aws-sdk-efs/Makefile +++ b/devel/rubygem-aws-sdk-efs/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-efs PORTVERSION= 1.55.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Elastic File System (EFS) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-efs LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-eks/Makefile b/devel/rubygem-aws-sdk-eks/Makefile index 74bab1d8d5f3..347fe55f4ccf 100644 --- a/devel/rubygem-aws-sdk-eks/Makefile +++ b/devel/rubygem-aws-sdk-eks/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-eks PORTVERSION= 1.79.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Elastic Kubernetes Service (Amazon EKS) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-eks LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-elasticache/Makefile b/devel/rubygem-aws-sdk-elasticache/Makefile index fc30e2282f4c..5940e07faf9e 100644 --- a/devel/rubygem-aws-sdk-elasticache/Makefile +++ b/devel/rubygem-aws-sdk-elasticache/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-elasticache PORTVERSION= 1.82.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon ElastiCache WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-elasticache LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-elasticbeanstalk/Makefile b/devel/rubygem-aws-sdk-elasticbeanstalk/Makefile index afd8a4c5cf62..aaec98310d99 100644 --- a/devel/rubygem-aws-sdk-elasticbeanstalk/Makefile +++ b/devel/rubygem-aws-sdk-elasticbeanstalk/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-elasticbeanstalk PORTVERSION= 1.52.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Elastic Beanstalk (Elastic Beanstalk) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-elasticbeanstalk LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-elasticinference/Makefile b/devel/rubygem-aws-sdk-elasticinference/Makefile index 626d90003cd6..89123d5757c4 100644 --- a/devel/rubygem-aws-sdk-elasticinference/Makefile +++ b/devel/rubygem-aws-sdk-elasticinference/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-elasticinference PORTVERSION= 1.22.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Elastic Inference (Amazon Elastic Inference) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-elasticinference LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-elasticloadbalancing/Makefile b/devel/rubygem-aws-sdk-elasticloadbalancing/Makefile index e92301fb8b1f..2ea0f504e34c 100644 --- a/devel/rubygem-aws-sdk-elasticloadbalancing/Makefile +++ b/devel/rubygem-aws-sdk-elasticloadbalancing/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-elasticloadbalancing PORTVERSION= 1.41.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Elastic Load Balancing WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-elasticloadbalancing LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-elasticloadbalancingv2/Makefile b/devel/rubygem-aws-sdk-elasticloadbalancingv2/Makefile index 15beaa6c715d..14ce59c31284 100644 --- a/devel/rubygem-aws-sdk-elasticloadbalancingv2/Makefile +++ b/devel/rubygem-aws-sdk-elasticloadbalancingv2/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-elasticloadbalancingv2 PORTVERSION= 1.82.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Elastic Load Balancing (Elastic Load Balancing v2) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-elasticloadbalancingv2 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-elasticsearchservice/Makefile b/devel/rubygem-aws-sdk-elasticsearchservice/Makefile index 836351db5381..fda956dcb224 100644 --- a/devel/rubygem-aws-sdk-elasticsearchservice/Makefile +++ b/devel/rubygem-aws-sdk-elasticsearchservice/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-elasticsearchservice PORTVERSION= 1.68.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Elasticsearch Service WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-elasticsearchservice LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-elastictranscoder/Makefile b/devel/rubygem-aws-sdk-elastictranscoder/Makefile index 6d80745c11a5..0135525021e8 100644 --- a/devel/rubygem-aws-sdk-elastictranscoder/Makefile +++ b/devel/rubygem-aws-sdk-elastictranscoder/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-elastictranscoder PORTVERSION= 1.39.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Elastic Transcoder WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-elastictranscoder LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-emr/Makefile b/devel/rubygem-aws-sdk-emr/Makefile index 3d11b6fd41fb..bb2593aa2b2c 100644 --- a/devel/rubygem-aws-sdk-emr/Makefile +++ b/devel/rubygem-aws-sdk-emr/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-emr PORTVERSION= 1.63.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Elastic MapReduce (Amazon EMR) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-emr LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-emrcontainers/Makefile b/devel/rubygem-aws-sdk-emrcontainers/Makefile index 05ecd48c8b59..8205fe261016 100644 --- a/devel/rubygem-aws-sdk-emrcontainers/Makefile +++ b/devel/rubygem-aws-sdk-emrcontainers/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-emrcontainers PORTVERSION= 1.17.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon EMR Containers WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-emrcontainers LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-emrserverless/Makefile b/devel/rubygem-aws-sdk-emrserverless/Makefile index bb31ff882694..761122275e02 100644 --- a/devel/rubygem-aws-sdk-emrserverless/Makefile +++ b/devel/rubygem-aws-sdk-emrserverless/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-emrserverless PORTVERSION= 1.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for EMR Serverless WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-emrserverless LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-eventbridge/Makefile b/devel/rubygem-aws-sdk-eventbridge/Makefile index 538176524c3f..b4c9fe92c70b 100644 --- a/devel/rubygem-aws-sdk-eventbridge/Makefile +++ b/devel/rubygem-aws-sdk-eventbridge/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-eventbridge PORTVERSION= 1.40.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon EventBridge WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-eventbridge LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-finspace/Makefile b/devel/rubygem-aws-sdk-finspace/Makefile index 1ddbb888328a..454322933e0c 100644 --- a/devel/rubygem-aws-sdk-finspace/Makefile +++ b/devel/rubygem-aws-sdk-finspace/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-finspace PORTVERSION= 1.12.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for FinSpace User Environment Management service (finspace) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-finspace LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-finspacedata/Makefile b/devel/rubygem-aws-sdk-finspacedata/Makefile index 5c8f54a5b65c..d09594731549 100644 --- a/devel/rubygem-aws-sdk-finspacedata/Makefile +++ b/devel/rubygem-aws-sdk-finspacedata/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-finspacedata PORTVERSION= 1.18.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for FinSpace Public API (FinSpace Data) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-finspacedata LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-firehose/Makefile b/devel/rubygem-aws-sdk-firehose/Makefile index 7eede35f53f9..208b1f45fc0f 100644 --- a/devel/rubygem-aws-sdk-firehose/Makefile +++ b/devel/rubygem-aws-sdk-firehose/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-firehose PORTVERSION= 1.49.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Kinesis Firehose (Firehose) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-firehose LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-fis/Makefile b/devel/rubygem-aws-sdk-fis/Makefile index ae86fc528e6c..6844831422ba 100644 --- a/devel/rubygem-aws-sdk-fis/Makefile +++ b/devel/rubygem-aws-sdk-fis/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-fis PORTVERSION= 1.14.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Fault Injection Simulator (FIS) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-fis LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-fms/Makefile b/devel/rubygem-aws-sdk-fms/Makefile index 1a509d7e182d..2d12553a0759 100644 --- a/devel/rubygem-aws-sdk-fms/Makefile +++ b/devel/rubygem-aws-sdk-fms/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-fms PORTVERSION= 1.53.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Firewall Management Service (FMS) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-fms LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-forecastqueryservice/Makefile b/devel/rubygem-aws-sdk-forecastqueryservice/Makefile index 5a5aab5d9763..7f8989db4175 100644 --- a/devel/rubygem-aws-sdk-forecastqueryservice/Makefile +++ b/devel/rubygem-aws-sdk-forecastqueryservice/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-forecastqueryservice PORTVERSION= 1.23.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Forecast Query Service WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-forecastqueryservice LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-forecastservice/Makefile b/devel/rubygem-aws-sdk-forecastservice/Makefile index eb880a2d69ef..22de9165d0c3 100644 --- a/devel/rubygem-aws-sdk-forecastservice/Makefile +++ b/devel/rubygem-aws-sdk-forecastservice/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-forecastservice PORTVERSION= 1.38.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Forecast Service WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-forecastservice LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-frauddetector/Makefile b/devel/rubygem-aws-sdk-frauddetector/Makefile index 6919235faebd..d7b6b5131814 100644 --- a/devel/rubygem-aws-sdk-frauddetector/Makefile +++ b/devel/rubygem-aws-sdk-frauddetector/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-frauddetector PORTVERSION= 1.36.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Fraud Detector WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-frauddetector LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-fsx/Makefile b/devel/rubygem-aws-sdk-fsx/Makefile index 9463d22579f2..1518a5a9a6c7 100644 --- a/devel/rubygem-aws-sdk-fsx/Makefile +++ b/devel/rubygem-aws-sdk-fsx/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-fsx PORTVERSION= 1.61.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon FSx WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-fsx LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-gamelift/Makefile b/devel/rubygem-aws-sdk-gamelift/Makefile index 8d7c4467218b..c4e225fc8417 100644 --- a/devel/rubygem-aws-sdk-gamelift/Makefile +++ b/devel/rubygem-aws-sdk-gamelift/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-gamelift PORTVERSION= 1.59.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon GameLift WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-gamelift LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-gamesparks/Makefile b/devel/rubygem-aws-sdk-gamesparks/Makefile index 2dab93e250c5..1d64caa0a7b1 100644 --- a/devel/rubygem-aws-sdk-gamesparks/Makefile +++ b/devel/rubygem-aws-sdk-gamesparks/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-gamesparks PORTVERSION= 1.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for GameSparks WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-gamesparks LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-glacier/Makefile b/devel/rubygem-aws-sdk-glacier/Makefile index 64add040d1d1..867b061b9fab 100644 --- a/devel/rubygem-aws-sdk-glacier/Makefile +++ b/devel/rubygem-aws-sdk-glacier/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-glacier PORTVERSION= 1.47.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Glacier WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-glacier LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-globalaccelerator/Makefile b/devel/rubygem-aws-sdk-globalaccelerator/Makefile index 8c101af19eb9..fdecfc3a5012 100644 --- a/devel/rubygem-aws-sdk-globalaccelerator/Makefile +++ b/devel/rubygem-aws-sdk-globalaccelerator/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-globalaccelerator PORTVERSION= 1.42.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Global Accelerator WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-globalaccelerator LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-glue/Makefile b/devel/rubygem-aws-sdk-glue/Makefile index d18ca7da1d90..25e07da6882f 100644 --- a/devel/rubygem-aws-sdk-glue/Makefile +++ b/devel/rubygem-aws-sdk-glue/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-glue PORTVERSION= 1.124.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Glue WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-glue LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-gluedatabrew/Makefile b/devel/rubygem-aws-sdk-gluedatabrew/Makefile index 68414aa63927..ebc5d29b705d 100644 --- a/devel/rubygem-aws-sdk-gluedatabrew/Makefile +++ b/devel/rubygem-aws-sdk-gluedatabrew/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-gluedatabrew PORTVERSION= 1.23.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Glue DataBrew WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-gluedatabrew LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-greengrass/Makefile b/devel/rubygem-aws-sdk-greengrass/Makefile index 56e33f68b922..4b9118e30aa6 100644 --- a/devel/rubygem-aws-sdk-greengrass/Makefile +++ b/devel/rubygem-aws-sdk-greengrass/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-greengrass PORTVERSION= 1.51.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Greengrass WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-greengrass LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-greengrassv2/Makefile b/devel/rubygem-aws-sdk-greengrassv2/Makefile index 96c2061e9814..5fe8301ad106 100644 --- a/devel/rubygem-aws-sdk-greengrassv2/Makefile +++ b/devel/rubygem-aws-sdk-greengrassv2/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-greengrassv2 PORTVERSION= 1.22.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS IoT Greengrass V2 (AWS GreengrassV2) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-greengrassv2 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-groundstation/Makefile b/devel/rubygem-aws-sdk-groundstation/Makefile index c6a920dd6cd2..e195b536a557 100644 --- a/devel/rubygem-aws-sdk-groundstation/Makefile +++ b/devel/rubygem-aws-sdk-groundstation/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-groundstation PORTVERSION= 1.29.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Ground Station WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-groundstation LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-guardduty/Makefile b/devel/rubygem-aws-sdk-guardduty/Makefile index 0354a3ab46e7..f9dd6d4abbb2 100644 --- a/devel/rubygem-aws-sdk-guardduty/Makefile +++ b/devel/rubygem-aws-sdk-guardduty/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-guardduty PORTVERSION= 1.61.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon GuardDuty WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-guardduty LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-health/Makefile b/devel/rubygem-aws-sdk-health/Makefile index d570990c0b8a..7da5f7a68941 100644 --- a/devel/rubygem-aws-sdk-health/Makefile +++ b/devel/rubygem-aws-sdk-health/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-health PORTVERSION= 1.48.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Health APIs and Notifications (AWSHealth) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-health LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-healthlake/Makefile b/devel/rubygem-aws-sdk-healthlake/Makefile index e89dcd254ca8..f62544159541 100644 --- a/devel/rubygem-aws-sdk-healthlake/Makefile +++ b/devel/rubygem-aws-sdk-healthlake/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-healthlake PORTVERSION= 1.14.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon HealthLake (HealthLake) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-healthlake LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-honeycode/Makefile b/devel/rubygem-aws-sdk-honeycode/Makefile index f7af0d0f4a0c..0aed54d8712c 100644 --- a/devel/rubygem-aws-sdk-honeycode/Makefile +++ b/devel/rubygem-aws-sdk-honeycode/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-honeycode PORTVERSION= 1.18.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Honeycode (Honeycode) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-honeycode LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-iam/Makefile b/devel/rubygem-aws-sdk-iam/Makefile index 0a2a08b20bff..e8ed7edad787 100644 --- a/devel/rubygem-aws-sdk-iam/Makefile +++ b/devel/rubygem-aws-sdk-iam/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-iam PORTVERSION= 1.73.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Identity and Access Management (IAM) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iam LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-identitystore/Makefile b/devel/rubygem-aws-sdk-identitystore/Makefile index eceef14eb9a2..52df6f1467a7 100644 --- a/devel/rubygem-aws-sdk-identitystore/Makefile +++ b/devel/rubygem-aws-sdk-identitystore/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-identitystore PORTVERSION= 1.22.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS SSO Identity Store (IdentityStore) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-identitystore LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-imagebuilder/Makefile b/devel/rubygem-aws-sdk-imagebuilder/Makefile index 7c17415f8f0f..6594ba90652b 100644 --- a/devel/rubygem-aws-sdk-imagebuilder/Makefile +++ b/devel/rubygem-aws-sdk-imagebuilder/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-imagebuilder PORTVERSION= 1.41.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for EC2 Image Builder (imagebuilder) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-imagebuilder LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-importexport/Makefile b/devel/rubygem-aws-sdk-importexport/Makefile index c19988d9f839..0ce3f21539e5 100644 --- a/devel/rubygem-aws-sdk-importexport/Makefile +++ b/devel/rubygem-aws-sdk-importexport/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-importexport PORTVERSION= 1.36.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Import/Export WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-importexport LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv2>=1.0<2:devel/rubygem-aws-sigv2 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-inspector/Makefile b/devel/rubygem-aws-sdk-inspector/Makefile index 566da6da388a..bbac2102e762 100644 --- a/devel/rubygem-aws-sdk-inspector/Makefile +++ b/devel/rubygem-aws-sdk-inspector/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-inspector PORTVERSION= 1.44.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Inspector WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-inspector LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-inspector2/Makefile b/devel/rubygem-aws-sdk-inspector2/Makefile index a7a44091a453..677a88bdb8c5 100644 --- a/devel/rubygem-aws-sdk-inspector2/Makefile +++ b/devel/rubygem-aws-sdk-inspector2/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-inspector2 PORTVERSION= 1.7.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Inspector2 WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-inspector2 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-iot/Makefile b/devel/rubygem-aws-sdk-iot/Makefile index acab7f574d40..35ee1a8fd7e4 100644 --- a/devel/rubygem-aws-sdk-iot/Makefile +++ b/devel/rubygem-aws-sdk-iot/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-iot PORTVERSION= 1.97.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS IoT WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iot LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-iot1clickdevicesservice/Makefile b/devel/rubygem-aws-sdk-iot1clickdevicesservice/Makefile index 8106c16c3439..a1651c05a5da 100644 --- a/devel/rubygem-aws-sdk-iot1clickdevicesservice/Makefile +++ b/devel/rubygem-aws-sdk-iot1clickdevicesservice/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-iot1clickdevicesservice PORTVERSION= 1.38.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS IoT 1-Click Devices Service WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iot1clickdevicesservice LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-iot1clickprojects/Makefile b/devel/rubygem-aws-sdk-iot1clickprojects/Makefile index 38f01f1d344b..5e533532c9bd 100644 --- a/devel/rubygem-aws-sdk-iot1clickprojects/Makefile +++ b/devel/rubygem-aws-sdk-iot1clickprojects/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-iot1clickprojects PORTVERSION= 1.38.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS IoT 1-Click Projects Service (AWS IoT 1-Click Projects) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iot1clickprojects LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-iotanalytics/Makefile b/devel/rubygem-aws-sdk-iotanalytics/Makefile index cfd62c921672..37e670683643 100644 --- a/devel/rubygem-aws-sdk-iotanalytics/Makefile +++ b/devel/rubygem-aws-sdk-iotanalytics/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-iotanalytics PORTVERSION= 1.50.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS IoT Analytics WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotanalytics LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-iotdataplane/Makefile b/devel/rubygem-aws-sdk-iotdataplane/Makefile index d1307515d790..4c6f8e15e4e0 100644 --- a/devel/rubygem-aws-sdk-iotdataplane/Makefile +++ b/devel/rubygem-aws-sdk-iotdataplane/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-iotdataplane PORTVERSION= 1.40.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS IoT Data Plane WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotdataplane LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-iotdeviceadvisor/Makefile b/devel/rubygem-aws-sdk-iotdeviceadvisor/Makefile index 7b9318945b6d..cf18c6f38ca3 100644 --- a/devel/rubygem-aws-sdk-iotdeviceadvisor/Makefile +++ b/devel/rubygem-aws-sdk-iotdeviceadvisor/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-iotdeviceadvisor PORTVERSION= 1.16.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS IoT Core Device Advisor (AWSIoTDeviceAdvisor) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotdeviceadvisor LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-iotevents/Makefile b/devel/rubygem-aws-sdk-iotevents/Makefile index 5b1be62903ff..cf7042fbacf6 100644 --- a/devel/rubygem-aws-sdk-iotevents/Makefile +++ b/devel/rubygem-aws-sdk-iotevents/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-iotevents PORTVERSION= 1.34.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS IoT Events WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotevents LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-ioteventsdata/Makefile b/devel/rubygem-aws-sdk-ioteventsdata/Makefile index 26aef06da0b5..5e162e4dd1bd 100644 --- a/devel/rubygem-aws-sdk-ioteventsdata/Makefile +++ b/devel/rubygem-aws-sdk-ioteventsdata/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-ioteventsdata PORTVERSION= 1.28.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS IoT Events Data WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ioteventsdata LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-iotfleethub/Makefile b/devel/rubygem-aws-sdk-iotfleethub/Makefile index 842d3007d7e0..1e48395353af 100644 --- a/devel/rubygem-aws-sdk-iotfleethub/Makefile +++ b/devel/rubygem-aws-sdk-iotfleethub/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-iotfleethub PORTVERSION= 1.12.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS IoT Fleet Hub WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotfleethub LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-iotfleetwise/Makefile b/devel/rubygem-aws-sdk-iotfleetwise/Makefile index cf8941b285b1..3934f47bb280 100644 --- a/devel/rubygem-aws-sdk-iotfleetwise/Makefile +++ b/devel/rubygem-aws-sdk-iotfleetwise/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-iotfleetwise PORTVERSION= 1.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS IoT FleetWise WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotfleetwise LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-iotjobsdataplane/Makefile b/devel/rubygem-aws-sdk-iotjobsdataplane/Makefile index 3b45db55e4f7..47f3749d73d3 100644 --- a/devel/rubygem-aws-sdk-iotjobsdataplane/Makefile +++ b/devel/rubygem-aws-sdk-iotjobsdataplane/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-iotjobsdataplane PORTVERSION= 1.37.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS IoT Jobs Data Plane WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotjobsdataplane LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-iotroborunner/Makefile b/devel/rubygem-aws-sdk-iotroborunner/Makefile index efadd2177200..8d34dcfae627 100644 --- a/devel/rubygem-aws-sdk-iotroborunner/Makefile +++ b/devel/rubygem-aws-sdk-iotroborunner/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-iotroborunner PORTVERSION= 1.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS IoT RoboRunner WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotroborunner LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-iotsecuretunneling/Makefile b/devel/rubygem-aws-sdk-iotsecuretunneling/Makefile index efc3d9a565bb..0eda0e1511c5 100644 --- a/devel/rubygem-aws-sdk-iotsecuretunneling/Makefile +++ b/devel/rubygem-aws-sdk-iotsecuretunneling/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-iotsecuretunneling PORTVERSION= 1.22.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS IoT Secure Tunneling WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotsecuretunneling LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-iotsitewise/Makefile b/devel/rubygem-aws-sdk-iotsitewise/Makefile index e1f0ca1d5abe..5f358403dc3b 100644 --- a/devel/rubygem-aws-sdk-iotsitewise/Makefile +++ b/devel/rubygem-aws-sdk-iotsitewise/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-iotsitewise PORTVERSION= 1.47.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS IoT SiteWise WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotsitewise LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-iotthingsgraph/Makefile b/devel/rubygem-aws-sdk-iotthingsgraph/Makefile index 7cbf1f54de97..154bfdcd6c9d 100644 --- a/devel/rubygem-aws-sdk-iotthingsgraph/Makefile +++ b/devel/rubygem-aws-sdk-iotthingsgraph/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-iotthingsgraph PORTVERSION= 1.25.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS IoT Things Graph WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotthingsgraph LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-iottwinmaker/Makefile b/devel/rubygem-aws-sdk-iottwinmaker/Makefile index e552692f32e4..89101eaf3972 100644 --- a/devel/rubygem-aws-sdk-iottwinmaker/Makefile +++ b/devel/rubygem-aws-sdk-iottwinmaker/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-iottwinmaker PORTVERSION= 1.7.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS IoT TwinMaker WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iottwinmaker LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-iotwireless/Makefile b/devel/rubygem-aws-sdk-iotwireless/Makefile index 19936329c0e9..af20d8d0b5d8 100644 --- a/devel/rubygem-aws-sdk-iotwireless/Makefile +++ b/devel/rubygem-aws-sdk-iotwireless/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-iotwireless PORTVERSION= 1.27.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS IoT Wireless WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-iotwireless LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-ivs/Makefile b/devel/rubygem-aws-sdk-ivs/Makefile index 75dce5af6498..9d147648f4fc 100644 --- a/devel/rubygem-aws-sdk-ivs/Makefile +++ b/devel/rubygem-aws-sdk-ivs/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-ivs PORTVERSION= 1.24.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Interactive Video Service (Amazon IVS) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ivs LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-ivschat/Makefile b/devel/rubygem-aws-sdk-ivschat/Makefile index 1e229456829e..4b9ec5a510ce 100644 --- a/devel/rubygem-aws-sdk-ivschat/Makefile +++ b/devel/rubygem-aws-sdk-ivschat/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-ivschat PORTVERSION= 1.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Interactive Video Service Chat (ivschat) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ivschat LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-kafka/Makefile b/devel/rubygem-aws-sdk-kafka/Makefile index a3594bfd4a8e..d12d674bb01e 100644 --- a/devel/rubygem-aws-sdk-kafka/Makefile +++ b/devel/rubygem-aws-sdk-kafka/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-kafka PORTVERSION= 1.52.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Managed Streaming for Kafka (Kafka) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-kafka LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-kafkaconnect/Makefile b/devel/rubygem-aws-sdk-kafkaconnect/Makefile index bceeb578c19a..a27b31324d17 100644 --- a/devel/rubygem-aws-sdk-kafkaconnect/Makefile +++ b/devel/rubygem-aws-sdk-kafkaconnect/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-kafkaconnect PORTVERSION= 1.8.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Managed Streaming for Kafka Connect (Kafka Connect) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-kafkaconnect LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-kendra/Makefile b/devel/rubygem-aws-sdk-kendra/Makefile index aa4976128521..491bcded49f7 100644 --- a/devel/rubygem-aws-sdk-kendra/Makefile +++ b/devel/rubygem-aws-sdk-kendra/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-kendra PORTVERSION= 1.60.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Kendra Frontend Service (Kendra) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-kendra LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-keyspaces/Makefile b/devel/rubygem-aws-sdk-keyspaces/Makefile index 5d64ed589e8e..7529f57b9268 100644 --- a/devel/rubygem-aws-sdk-keyspaces/Makefile +++ b/devel/rubygem-aws-sdk-keyspaces/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-keyspaces PORTVERSION= 1.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Keyspaces WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-keyspaces LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-kinesis/Makefile b/devel/rubygem-aws-sdk-kinesis/Makefile index 269dc50064dd..7af44599e291 100644 --- a/devel/rubygem-aws-sdk-kinesis/Makefile +++ b/devel/rubygem-aws-sdk-kinesis/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-kinesis PORTVERSION= 1.42.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Kinesis (Kinesis) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-kinesis LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-kinesisanalytics/Makefile b/devel/rubygem-aws-sdk-kinesisanalytics/Makefile index 225f4b9f70aa..de8bef4876f6 100644 --- a/devel/rubygem-aws-sdk-kinesisanalytics/Makefile +++ b/devel/rubygem-aws-sdk-kinesisanalytics/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-kinesisanalytics PORTVERSION= 1.41.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Kinesis Analytics (Kinesis Analytics) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-kinesisanalytics LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-kinesisanalyticsv2/Makefile b/devel/rubygem-aws-sdk-kinesisanalyticsv2/Makefile index c9c6d754702d..f197eedf9763 100644 --- a/devel/rubygem-aws-sdk-kinesisanalyticsv2/Makefile +++ b/devel/rubygem-aws-sdk-kinesisanalyticsv2/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-kinesisanalyticsv2 PORTVERSION= 1.41.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Kinesis Analytics (Kinesis Analytics V2) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-kinesisanalyticsv2 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-kinesisvideo/Makefile b/devel/rubygem-aws-sdk-kinesisvideo/Makefile index d853584c2edd..5a0a603a6a7b 100644 --- a/devel/rubygem-aws-sdk-kinesisvideo/Makefile +++ b/devel/rubygem-aws-sdk-kinesisvideo/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-kinesisvideo PORTVERSION= 1.43.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Kinesis Video Streams (Kinesis Video) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-kinesisvideo LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-kinesisvideoarchivedmedia/Makefile b/devel/rubygem-aws-sdk-kinesisvideoarchivedmedia/Makefile index f78868078b90..4ffc6b8b60fe 100644 --- a/devel/rubygem-aws-sdk-kinesisvideoarchivedmedia/Makefile +++ b/devel/rubygem-aws-sdk-kinesisvideoarchivedmedia/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-kinesisvideoarchivedmedia PORTVERSION= 1.45.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Kinesis Video Streams Archived Media (Kinesis Video Archived Media) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-kinesisvideoarchivedmedia LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-kinesisvideomedia/Makefile b/devel/rubygem-aws-sdk-kinesisvideomedia/Makefile index e55211135e97..e43371ea7be8 100644 --- a/devel/rubygem-aws-sdk-kinesisvideomedia/Makefile +++ b/devel/rubygem-aws-sdk-kinesisvideomedia/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-kinesisvideomedia PORTVERSION= 1.38.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Kinesis Video Streams Media (Kinesis Video Media) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-kinesisvideomedia LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-kinesisvideosignalingchannels/Makefile b/devel/rubygem-aws-sdk-kinesisvideosignalingchannels/Makefile index 506e4e206976..f766853f882d 100644 --- a/devel/rubygem-aws-sdk-kinesisvideosignalingchannels/Makefile +++ b/devel/rubygem-aws-sdk-kinesisvideosignalingchannels/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-kinesisvideosignalingchannels PORTVERSION= 1.20.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Kinesis Video Signaling Channels WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-kinesisvideosignalingchannels LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-kms/Makefile b/devel/rubygem-aws-sdk-kms/Makefile index 3e564b96f24e..3e7cfbdeb056 100644 --- a/devel/rubygem-aws-sdk-kms/Makefile +++ b/devel/rubygem-aws-sdk-kms/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-kms PORTVERSION= 1.59.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Key Management Service (KMS) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-kms LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-lakeformation/Makefile b/devel/rubygem-aws-sdk-lakeformation/Makefile index e6a4fcf03033..eb9229ce889f 100644 --- a/devel/rubygem-aws-sdk-lakeformation/Makefile +++ b/devel/rubygem-aws-sdk-lakeformation/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-lakeformation PORTVERSION= 1.29.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Lake Formation WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-lakeformation LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-lambda/Makefile b/devel/rubygem-aws-sdk-lambda/Makefile index 205826a156be..5c2893840e3e 100644 --- a/devel/rubygem-aws-sdk-lambda/Makefile +++ b/devel/rubygem-aws-sdk-lambda/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-lambda PORTVERSION= 1.87.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Lambda WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-lambda LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-lambdapreview/Makefile b/devel/rubygem-aws-sdk-lambdapreview/Makefile index d7afbede4d98..4e54aabadfb9 100644 --- a/devel/rubygem-aws-sdk-lambdapreview/Makefile +++ b/devel/rubygem-aws-sdk-lambdapreview/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-lambdapreview PORTVERSION= 1.36.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Lambda WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-lambdapreview LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-lex/Makefile b/devel/rubygem-aws-sdk-lex/Makefile index 89cee609dd02..453cd20ab30d 100644 --- a/devel/rubygem-aws-sdk-lex/Makefile +++ b/devel/rubygem-aws-sdk-lex/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-lex PORTVERSION= 1.46.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Lex Runtime Service WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-lex LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-lexmodelbuildingservice/Makefile b/devel/rubygem-aws-sdk-lexmodelbuildingservice/Makefile index e96940ac3710..9d8b7373aebc 100644 --- a/devel/rubygem-aws-sdk-lexmodelbuildingservice/Makefile +++ b/devel/rubygem-aws-sdk-lexmodelbuildingservice/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-lexmodelbuildingservice PORTVERSION= 1.58.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Lex Model Building Service WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-lexmodelbuildingservice LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-lexmodelsv2/Makefile b/devel/rubygem-aws-sdk-lexmodelsv2/Makefile index b584d2bfad32..019de00b5599 100644 --- a/devel/rubygem-aws-sdk-lexmodelsv2/Makefile +++ b/devel/rubygem-aws-sdk-lexmodelsv2/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-lexmodelsv2 PORTVERSION= 1.30.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Lex Model Building V2 (Lex Models V2) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-lexmodelsv2 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-lexruntimev2/Makefile b/devel/rubygem-aws-sdk-lexruntimev2/Makefile index 1cfbdfa8f997..917adfcd5739 100644 --- a/devel/rubygem-aws-sdk-lexruntimev2/Makefile +++ b/devel/rubygem-aws-sdk-lexruntimev2/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-lexruntimev2 PORTVERSION= 1.17.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Lex Runtime V2 (Lex Runtime V2) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-lexruntimev2 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-licensemanager/Makefile b/devel/rubygem-aws-sdk-licensemanager/Makefile index b05b7bd692b9..1c056611c32f 100644 --- a/devel/rubygem-aws-sdk-licensemanager/Makefile +++ b/devel/rubygem-aws-sdk-licensemanager/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-licensemanager PORTVERSION= 1.42.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS License Manager WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-licensemanager LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-licensemanagerusersubscriptions/Makefile b/devel/rubygem-aws-sdk-licensemanagerusersubscriptions/Makefile index 7dfe793eafb8..a182cd7a0a6a 100644 --- a/devel/rubygem-aws-sdk-licensemanagerusersubscriptions/Makefile +++ b/devel/rubygem-aws-sdk-licensemanagerusersubscriptions/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-licensemanagerusersubscriptions PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS License Manager User Subscriptions WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-licensemanagerusersubscriptions LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-lightsail/Makefile b/devel/rubygem-aws-sdk-lightsail/Makefile index 7c4225f89736..26910097aa82 100644 --- a/devel/rubygem-aws-sdk-lightsail/Makefile +++ b/devel/rubygem-aws-sdk-lightsail/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-lightsail PORTVERSION= 1.71.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Lightsail WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-lightsail LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-locationservice/Makefile b/devel/rubygem-aws-sdk-locationservice/Makefile index 7f30f1e1a5f7..387749ef9fc9 100644 --- a/devel/rubygem-aws-sdk-locationservice/Makefile +++ b/devel/rubygem-aws-sdk-locationservice/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-locationservice PORTVERSION= 1.25.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Location Service WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-locationservice LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-lookoutequipment/Makefile b/devel/rubygem-aws-sdk-lookoutequipment/Makefile index 2f42797612f6..4bb69a3bb9f7 100644 --- a/devel/rubygem-aws-sdk-lookoutequipment/Makefile +++ b/devel/rubygem-aws-sdk-lookoutequipment/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-lookoutequipment PORTVERSION= 1.14.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Lookout for Equipment (LookoutEquipment) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-lookoutequipment LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-lookoutforvision/Makefile b/devel/rubygem-aws-sdk-lookoutforvision/Makefile index e0d31418c4ed..9bddd595da1f 100644 --- a/devel/rubygem-aws-sdk-lookoutforvision/Makefile +++ b/devel/rubygem-aws-sdk-lookoutforvision/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-lookoutforvision PORTVERSION= 1.17.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Lookout for Vision WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-lookoutforvision LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-lookoutmetrics/Makefile b/devel/rubygem-aws-sdk-lookoutmetrics/Makefile index 473f07e1ffab..f66561d25ba2 100644 --- a/devel/rubygem-aws-sdk-lookoutmetrics/Makefile +++ b/devel/rubygem-aws-sdk-lookoutmetrics/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-lookoutmetrics PORTVERSION= 1.23.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Lookout for Metrics (LookoutMetrics) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-lookoutmetrics LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-machinelearning/Makefile b/devel/rubygem-aws-sdk-machinelearning/Makefile index 2194eadf2166..5d83bd38ee5f 100644 --- a/devel/rubygem-aws-sdk-machinelearning/Makefile +++ b/devel/rubygem-aws-sdk-machinelearning/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-machinelearning PORTVERSION= 1.38.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Machine Learning WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-machinelearning LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-macie/Makefile b/devel/rubygem-aws-sdk-macie/Makefile index f2bcded478ee..0256667a70cc 100644 --- a/devel/rubygem-aws-sdk-macie/Makefile +++ b/devel/rubygem-aws-sdk-macie/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-macie PORTVERSION= 1.39.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Macie WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-macie LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-macie2/Makefile b/devel/rubygem-aws-sdk-macie2/Makefile index 176df090c718..a928f2799b9e 100644 --- a/devel/rubygem-aws-sdk-macie2/Makefile +++ b/devel/rubygem-aws-sdk-macie2/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-macie2 PORTVERSION= 1.48.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Macie 2 WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-macie2 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-mainframemodernization/Makefile b/devel/rubygem-aws-sdk-mainframemodernization/Makefile index 940c20113fce..e6fe32691b81 100644 --- a/devel/rubygem-aws-sdk-mainframemodernization/Makefile +++ b/devel/rubygem-aws-sdk-mainframemodernization/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-mainframemodernization PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Mainframe Modernization WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-mainframemodernization LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-managedblockchain/Makefile b/devel/rubygem-aws-sdk-managedblockchain/Makefile index 40464c212514..a571186cf774 100644 --- a/devel/rubygem-aws-sdk-managedblockchain/Makefile +++ b/devel/rubygem-aws-sdk-managedblockchain/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-managedblockchain PORTVERSION= 1.35.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Managed Blockchain (ManagedBlockchain) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-managedblockchain LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-managedgrafana/Makefile b/devel/rubygem-aws-sdk-managedgrafana/Makefile index dc8629192f9e..239756c6f78b 100644 --- a/devel/rubygem-aws-sdk-managedgrafana/Makefile +++ b/devel/rubygem-aws-sdk-managedgrafana/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-managedgrafana PORTVERSION= 1.9.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Managed Grafana WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-managedgrafana LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-marketplacecatalog/Makefile b/devel/rubygem-aws-sdk-marketplacecatalog/Makefile index 955c49ac649b..780dbdcec9fc 100644 --- a/devel/rubygem-aws-sdk-marketplacecatalog/Makefile +++ b/devel/rubygem-aws-sdk-marketplacecatalog/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-marketplacecatalog PORTVERSION= 1.24.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Marketplace Catalog Service (AWS Marketplace Catalog) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-marketplacecatalog LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-marketplacecommerceanalytics/Makefile b/devel/rubygem-aws-sdk-marketplacecommerceanalytics/Makefile index 075d4579a962..6cf68a5c3942 100644 --- a/devel/rubygem-aws-sdk-marketplacecommerceanalytics/Makefile +++ b/devel/rubygem-aws-sdk-marketplacecommerceanalytics/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-marketplacecommerceanalytics PORTVERSION= 1.42.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Marketplace Commerce Analytics WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-marketplacecommerceanalytics LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-marketplaceentitlementservice/Makefile b/devel/rubygem-aws-sdk-marketplaceentitlementservice/Makefile index 9c2183d02a0c..bd5d07ba6e3c 100644 --- a/devel/rubygem-aws-sdk-marketplaceentitlementservice/Makefile +++ b/devel/rubygem-aws-sdk-marketplaceentitlementservice/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-marketplaceentitlementservice PORTVERSION= 1.36.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Marketplace Entitlement Service WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-marketplaceentitlementservice LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-marketplacemetering/Makefile b/devel/rubygem-aws-sdk-marketplacemetering/Makefile index bceba498f6f0..bb3c06ab22a2 100644 --- a/devel/rubygem-aws-sdk-marketplacemetering/Makefile +++ b/devel/rubygem-aws-sdk-marketplacemetering/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-marketplacemetering PORTVERSION= 1.45.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWSMarketplace Metering WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-marketplacemetering LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-mediaconnect/Makefile b/devel/rubygem-aws-sdk-mediaconnect/Makefile index 9b1a197a399a..c1158fdbc3f5 100644 --- a/devel/rubygem-aws-sdk-mediaconnect/Makefile +++ b/devel/rubygem-aws-sdk-mediaconnect/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-mediaconnect PORTVERSION= 1.46.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS MediaConnect WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-mediaconnect LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-mediaconvert/Makefile b/devel/rubygem-aws-sdk-mediaconvert/Makefile index 4d49c2cf794e..03ca9c5563c0 100644 --- a/devel/rubygem-aws-sdk-mediaconvert/Makefile +++ b/devel/rubygem-aws-sdk-mediaconvert/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-mediaconvert PORTVERSION= 1.95.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Elemental MediaConvert (MediaConvert) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-mediaconvert LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-medialive/Makefile b/devel/rubygem-aws-sdk-medialive/Makefile index b110940617aa..8110bf595d5e 100644 --- a/devel/rubygem-aws-sdk-medialive/Makefile +++ b/devel/rubygem-aws-sdk-medialive/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-medialive PORTVERSION= 1.91.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Elemental MediaLive (MediaLive) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-medialive LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-mediapackage/Makefile b/devel/rubygem-aws-sdk-mediapackage/Makefile index 8d86808cefeb..2857897d49f7 100644 --- a/devel/rubygem-aws-sdk-mediapackage/Makefile +++ b/devel/rubygem-aws-sdk-mediapackage/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-mediapackage PORTVERSION= 1.57.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Elemental MediaPackage (MediaPackage) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-mediapackage LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-mediapackagevod/Makefile b/devel/rubygem-aws-sdk-mediapackagevod/Makefile index a2d7af2ba4a5..f258d1a3c920 100644 --- a/devel/rubygem-aws-sdk-mediapackagevod/Makefile +++ b/devel/rubygem-aws-sdk-mediapackagevod/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-mediapackagevod PORTVERSION= 1.39.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Elemental MediaPackage VOD (MediaPackage Vod) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-mediapackagevod LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-mediastore/Makefile b/devel/rubygem-aws-sdk-mediastore/Makefile index cff3cf499246..a9ab1b63c2d4 100644 --- a/devel/rubygem-aws-sdk-mediastore/Makefile +++ b/devel/rubygem-aws-sdk-mediastore/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-mediastore PORTVERSION= 1.42.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Elemental MediaStore (MediaStore) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-mediastore LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-mediastoredata/Makefile b/devel/rubygem-aws-sdk-mediastoredata/Makefile index 8b672a9990dd..20db39026ee3 100644 --- a/devel/rubygem-aws-sdk-mediastoredata/Makefile +++ b/devel/rubygem-aws-sdk-mediastoredata/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-mediastoredata PORTVERSION= 1.39.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Elemental MediaStore Data Plane (MediaStore Data) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-mediastoredata LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-mediatailor/Makefile b/devel/rubygem-aws-sdk-mediatailor/Makefile index 1a34be53e25c..3e14ef36a586 100644 --- a/devel/rubygem-aws-sdk-mediatailor/Makefile +++ b/devel/rubygem-aws-sdk-mediatailor/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-mediatailor PORTVERSION= 1.57.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS MediaTailor (MediaTailor) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-mediatailor LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-memorydb/Makefile b/devel/rubygem-aws-sdk-memorydb/Makefile index b12c75fc68c3..c98e140ee211 100644 --- a/devel/rubygem-aws-sdk-memorydb/Makefile +++ b/devel/rubygem-aws-sdk-memorydb/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-memorydb PORTVERSION= 1.10.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon MemoryDB WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-memorydb LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-mgn/Makefile b/devel/rubygem-aws-sdk-mgn/Makefile index 60cd0db1135c..92ebe99bd6ff 100644 --- a/devel/rubygem-aws-sdk-mgn/Makefile +++ b/devel/rubygem-aws-sdk-mgn/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-mgn PORTVERSION= 1.15.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Application Migration Service (mgn) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-mgn LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-migrationhub/Makefile b/devel/rubygem-aws-sdk-migrationhub/Makefile index 647f50fa9b2f..c1dcca611702 100644 --- a/devel/rubygem-aws-sdk-migrationhub/Makefile +++ b/devel/rubygem-aws-sdk-migrationhub/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-migrationhub PORTVERSION= 1.41.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Migration Hub WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-migrationhub LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-migrationhubconfig/Makefile b/devel/rubygem-aws-sdk-migrationhubconfig/Makefile index 7ba47380d1c3..ec9a494fe453 100644 --- a/devel/rubygem-aws-sdk-migrationhubconfig/Makefile +++ b/devel/rubygem-aws-sdk-migrationhubconfig/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-migrationhubconfig PORTVERSION= 1.21.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Migration Hub Config WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-migrationhubconfig LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-migrationhuborchestrator/Makefile b/devel/rubygem-aws-sdk-migrationhuborchestrator/Makefile index f75e0c5c4f4b..49c71551270e 100644 --- a/devel/rubygem-aws-sdk-migrationhuborchestrator/Makefile +++ b/devel/rubygem-aws-sdk-migrationhuborchestrator/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-migrationhuborchestrator PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Migration Hub Orchestrator WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-migrationhuborchestrator LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-migrationhubrefactorspaces/Makefile b/devel/rubygem-aws-sdk-migrationhubrefactorspaces/Makefile index c0b3be5289ce..a6b87fd18eb3 100644 --- a/devel/rubygem-aws-sdk-migrationhubrefactorspaces/Makefile +++ b/devel/rubygem-aws-sdk-migrationhubrefactorspaces/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-migrationhubrefactorspaces PORTVERSION= 1.8.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Migration Hub Refactor Spaces WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-migrationhubrefactorspaces LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-migrationhubstrategyrecommendations/Makefile b/devel/rubygem-aws-sdk-migrationhubstrategyrecommendations/Makefile index ae95e178500a..c42619cf3f8a 100644 --- a/devel/rubygem-aws-sdk-migrationhubstrategyrecommendations/Makefile +++ b/devel/rubygem-aws-sdk-migrationhubstrategyrecommendations/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-migrationhubstrategyrecommendations PORTVERSION= 1.5.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Migration Hub Strategy Recommendations WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-migrationhubstrategyrecommendations LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-mobile/Makefile b/devel/rubygem-aws-sdk-mobile/Makefile index 0163fb6e91c5..9b5b50e89421 100644 --- a/devel/rubygem-aws-sdk-mobile/Makefile +++ b/devel/rubygem-aws-sdk-mobile/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-mobile PORTVERSION= 1.36.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Mobile WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-mobile LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-mq/Makefile b/devel/rubygem-aws-sdk-mq/Makefile index a2c5f4fdd9e5..eca618dc17ef 100644 --- a/devel/rubygem-aws-sdk-mq/Makefile +++ b/devel/rubygem-aws-sdk-mq/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-mq PORTVERSION= 1.48.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AmazonMQ WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-mq LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-mturk/Makefile b/devel/rubygem-aws-sdk-mturk/Makefile index 8a00c38ff5a7..982c4e71eec3 100644 --- a/devel/rubygem-aws-sdk-mturk/Makefile +++ b/devel/rubygem-aws-sdk-mturk/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-mturk PORTVERSION= 1.41.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Mechanical Turk (Amazon MTurk) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-mturk LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-mwaa/Makefile b/devel/rubygem-aws-sdk-mwaa/Makefile index 432436dfbbb3..b11732d2e50e 100644 --- a/devel/rubygem-aws-sdk-mwaa/Makefile +++ b/devel/rubygem-aws-sdk-mwaa/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-mwaa PORTVERSION= 1.17.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Managed Workflows for Apache Airflow (MWAA) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-mwaa LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-neptune/Makefile b/devel/rubygem-aws-sdk-neptune/Makefile index 495027883cbf..d3510c2a64c8 100644 --- a/devel/rubygem-aws-sdk-neptune/Makefile +++ b/devel/rubygem-aws-sdk-neptune/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-neptune PORTVERSION= 1.48.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Neptune WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-neptune LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-networkfirewall/Makefile b/devel/rubygem-aws-sdk-networkfirewall/Makefile index aafca51fbe5d..1a650b5311d6 100644 --- a/devel/rubygem-aws-sdk-networkfirewall/Makefile +++ b/devel/rubygem-aws-sdk-networkfirewall/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-networkfirewall PORTVERSION= 1.20.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Network Firewall (Network Firewall) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-networkfirewall LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-networkmanager/Makefile b/devel/rubygem-aws-sdk-networkmanager/Makefile index 75f7cd0b4d69..5d5e85723493 100644 --- a/devel/rubygem-aws-sdk-networkmanager/Makefile +++ b/devel/rubygem-aws-sdk-networkmanager/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-networkmanager PORTVERSION= 1.26.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Network Manager (NetworkManager) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-networkmanager LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-nimblestudio/Makefile b/devel/rubygem-aws-sdk-nimblestudio/Makefile index ef9e9b7b1177..ba75d835a360 100644 --- a/devel/rubygem-aws-sdk-nimblestudio/Makefile +++ b/devel/rubygem-aws-sdk-nimblestudio/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-nimblestudio PORTVERSION= 1.16.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Nimble Studio WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-nimblestudio LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-opensearchservice/Makefile b/devel/rubygem-aws-sdk-opensearchservice/Makefile index 9503bcfa416a..38d6119fb3ff 100644 --- a/devel/rubygem-aws-sdk-opensearchservice/Makefile +++ b/devel/rubygem-aws-sdk-opensearchservice/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-opensearchservice PORTVERSION= 1.13.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon OpenSearch Service WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-opensearchservice LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-opsworks/Makefile b/devel/rubygem-aws-sdk-opsworks/Makefile index 42532061762f..20e6e75ddcdc 100644 --- a/devel/rubygem-aws-sdk-opsworks/Makefile +++ b/devel/rubygem-aws-sdk-opsworks/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-opsworks PORTVERSION= 1.42.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS OpsWorks WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-opsworks LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-opsworkscm/Makefile b/devel/rubygem-aws-sdk-opsworkscm/Makefile index 7f6030d4e74e..bbfeab498f8f 100644 --- a/devel/rubygem-aws-sdk-opsworkscm/Makefile +++ b/devel/rubygem-aws-sdk-opsworkscm/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-opsworkscm PORTVERSION= 1.53.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS OpsWorks CM (OpsWorksCM) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-opsworkscm LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-organizations/Makefile b/devel/rubygem-aws-sdk-organizations/Makefile index a0e8ae992dfd..076ff8d3e752 100644 --- a/devel/rubygem-aws-sdk-organizations/Makefile +++ b/devel/rubygem-aws-sdk-organizations/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-organizations PORTVERSION= 1.71.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Organizations (Organizations) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-organizations LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-outposts/Makefile b/devel/rubygem-aws-sdk-outposts/Makefile index 504f654cec7c..a96003e44d0f 100644 --- a/devel/rubygem-aws-sdk-outposts/Makefile +++ b/devel/rubygem-aws-sdk-outposts/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-outposts PORTVERSION= 1.37.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Outposts (Outposts) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-outposts LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-panorama/Makefile b/devel/rubygem-aws-sdk-panorama/Makefile index b61310cc7b24..a6f845d3b28d 100644 --- a/devel/rubygem-aws-sdk-panorama/Makefile +++ b/devel/rubygem-aws-sdk-panorama/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-panorama PORTVERSION= 1.10.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Panorama (Panorama) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-panorama LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-personalize/Makefile b/devel/rubygem-aws-sdk-personalize/Makefile index 9740ab8dade8..c26a0e7bbaa2 100644 --- a/devel/rubygem-aws-sdk-personalize/Makefile +++ b/devel/rubygem-aws-sdk-personalize/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-personalize PORTVERSION= 1.45.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Personalize WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-personalize LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-personalizeevents/Makefile b/devel/rubygem-aws-sdk-personalizeevents/Makefile index caaf991e9f61..fb6fdbf15bf1 100644 --- a/devel/rubygem-aws-sdk-personalizeevents/Makefile +++ b/devel/rubygem-aws-sdk-personalizeevents/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-personalizeevents PORTVERSION= 1.29.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Personalize Events WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-personalizeevents LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-personalizeruntime/Makefile b/devel/rubygem-aws-sdk-personalizeruntime/Makefile index bfa8a7025602..426299295f86 100644 --- a/devel/rubygem-aws-sdk-personalizeruntime/Makefile +++ b/devel/rubygem-aws-sdk-personalizeruntime/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-personalizeruntime PORTVERSION= 1.34.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Personalize Runtime WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-personalizeruntime LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-pi/Makefile b/devel/rubygem-aws-sdk-pi/Makefile index da52f0b9f320..7a921ebaf265 100644 --- a/devel/rubygem-aws-sdk-pi/Makefile +++ b/devel/rubygem-aws-sdk-pi/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-pi PORTVERSION= 1.41.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Performance Insights (AWS PI) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-pi LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-pinpoint/Makefile b/devel/rubygem-aws-sdk-pinpoint/Makefile index 3fcf05f16933..eb0c0fc54f8f 100644 --- a/devel/rubygem-aws-sdk-pinpoint/Makefile +++ b/devel/rubygem-aws-sdk-pinpoint/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-pinpoint PORTVERSION= 1.69.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Pinpoint WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-pinpoint LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-pinpointemail/Makefile b/devel/rubygem-aws-sdk-pinpointemail/Makefile index 6ebe2908797d..fd310583b81b 100644 --- a/devel/rubygem-aws-sdk-pinpointemail/Makefile +++ b/devel/rubygem-aws-sdk-pinpointemail/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-pinpointemail PORTVERSION= 1.36.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Pinpoint Email Service (Pinpoint Email) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-pinpointemail LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-pinpointsmsvoice/Makefile b/devel/rubygem-aws-sdk-pinpointsmsvoice/Makefile index a7b31f0585f4..c1b73a65bcf6 100644 --- a/devel/rubygem-aws-sdk-pinpointsmsvoice/Makefile +++ b/devel/rubygem-aws-sdk-pinpointsmsvoice/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-pinpointsmsvoice PORTVERSION= 1.33.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Pinpoint SMS and Voice Service (Pinpoint SMS Voice) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-pinpointsmsvoice LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-pinpointsmsvoicev2/Makefile b/devel/rubygem-aws-sdk-pinpointsmsvoicev2/Makefile index ef4cef18f6a7..b50dcdec25d3 100644 --- a/devel/rubygem-aws-sdk-pinpointsmsvoicev2/Makefile +++ b/devel/rubygem-aws-sdk-pinpointsmsvoicev2/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-pinpointsmsvoicev2 PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Pinpoint SMS Voice V2 WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-pinpointsmsvoicev2 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-polly/Makefile b/devel/rubygem-aws-sdk-polly/Makefile index 173efeeac502..522e34218404 100644 --- a/devel/rubygem-aws-sdk-polly/Makefile +++ b/devel/rubygem-aws-sdk-polly/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-polly PORTVERSION= 1.61.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Polly WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-polly LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-pricing/Makefile b/devel/rubygem-aws-sdk-pricing/Makefile index e3240959a7c2..ad7ac9610940 100644 --- a/devel/rubygem-aws-sdk-pricing/Makefile +++ b/devel/rubygem-aws-sdk-pricing/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-pricing PORTVERSION= 1.41.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Price List Service (AWS Pricing) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-pricing LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-privatenetworks/Makefile b/devel/rubygem-aws-sdk-privatenetworks/Makefile index c816d44f1984..da21c539d2b9 100644 --- a/devel/rubygem-aws-sdk-privatenetworks/Makefile +++ b/devel/rubygem-aws-sdk-privatenetworks/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-privatenetworks PORTVERSION= 1.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Private 5G WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-privatenetworks LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-prometheusservice/Makefile b/devel/rubygem-aws-sdk-prometheusservice/Makefile index ac617c3cba2f..4db6603e5ed3 100644 --- a/devel/rubygem-aws-sdk-prometheusservice/Makefile +++ b/devel/rubygem-aws-sdk-prometheusservice/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-prometheusservice PORTVERSION= 1.16.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Prometheus Service WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-prometheusservice LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-proton/Makefile b/devel/rubygem-aws-sdk-proton/Makefile index e54e3da7261b..89d02b69d02e 100644 --- a/devel/rubygem-aws-sdk-proton/Makefile +++ b/devel/rubygem-aws-sdk-proton/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-proton PORTVERSION= 1.20.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Proton WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-proton LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-qldb/Makefile b/devel/rubygem-aws-sdk-qldb/Makefile index afef350eeb9f..6b6b8a026071 100644 --- a/devel/rubygem-aws-sdk-qldb/Makefile +++ b/devel/rubygem-aws-sdk-qldb/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-qldb PORTVERSION= 1.26.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon QLDB (QLDB) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-qldb LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-qldbsession/Makefile b/devel/rubygem-aws-sdk-qldbsession/Makefile index 40d6fe601dab..b89011639c31 100644 --- a/devel/rubygem-aws-sdk-qldbsession/Makefile +++ b/devel/rubygem-aws-sdk-qldbsession/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-qldbsession PORTVERSION= 1.23.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon QLDB Session (QLDB Session) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-qldbsession LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-quicksight/Makefile b/devel/rubygem-aws-sdk-quicksight/Makefile index 77a49db3cee2..01c3ea715cfc 100644 --- a/devel/rubygem-aws-sdk-quicksight/Makefile +++ b/devel/rubygem-aws-sdk-quicksight/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-quicksight PORTVERSION= 1.71.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon QuickSight WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-quicksight LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-ram/Makefile b/devel/rubygem-aws-sdk-ram/Makefile index 2aab772725b3..05fc78fe9f6a 100644 --- a/devel/rubygem-aws-sdk-ram/Makefile +++ b/devel/rubygem-aws-sdk-ram/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-ram PORTVERSION= 1.40.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Resource Access Manager (RAM) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ram LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-rds/Makefile b/devel/rubygem-aws-sdk-rds/Makefile index 8cab3e9978a2..2606df7cf865 100644 --- a/devel/rubygem-aws-sdk-rds/Makefile +++ b/devel/rubygem-aws-sdk-rds/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-rds PORTVERSION= 1.160.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Relational Database Service (Amazon RDS) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-rds LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-rdsdataservice/Makefile b/devel/rubygem-aws-sdk-rdsdataservice/Makefile index 2c5037b518ad..72b9e43aee8b 100644 --- a/devel/rubygem-aws-sdk-rdsdataservice/Makefile +++ b/devel/rubygem-aws-sdk-rdsdataservice/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-rdsdataservice PORTVERSION= 1.39.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS RDS DataService WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-rdsdataservice LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-recyclebin/Makefile b/devel/rubygem-aws-sdk-recyclebin/Makefile index 5b6cd6e7832e..83bce8720bd6 100644 --- a/devel/rubygem-aws-sdk-recyclebin/Makefile +++ b/devel/rubygem-aws-sdk-recyclebin/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-recyclebin PORTVERSION= 1.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Recycle Bin WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-recyclebin LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-redshift/Makefile b/devel/rubygem-aws-sdk-redshift/Makefile index f6ab2732c4d5..5449f86d09b0 100644 --- a/devel/rubygem-aws-sdk-redshift/Makefile +++ b/devel/rubygem-aws-sdk-redshift/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-redshift PORTVERSION= 1.87.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Redshift WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-redshift LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-redshiftdataapiservice/Makefile b/devel/rubygem-aws-sdk-redshiftdataapiservice/Makefile index 7da3ff498e17..f27e4fe1dc64 100644 --- a/devel/rubygem-aws-sdk-redshiftdataapiservice/Makefile +++ b/devel/rubygem-aws-sdk-redshiftdataapiservice/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-redshiftdataapiservice PORTVERSION= 1.22.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Redshift Data API Service WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-redshiftdataapiservice LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-redshiftserverless/Makefile b/devel/rubygem-aws-sdk-redshiftserverless/Makefile index 14e4be53e192..9bb83ae091bd 100644 --- a/devel/rubygem-aws-sdk-redshiftserverless/Makefile +++ b/devel/rubygem-aws-sdk-redshiftserverless/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-redshiftserverless PORTVERSION= 1.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Redshift Serverless WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-redshiftserverless LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-rekognition/Makefile b/devel/rubygem-aws-sdk-rekognition/Makefile index 2bd73f35fa94..522258216294 100644 --- a/devel/rubygem-aws-sdk-rekognition/Makefile +++ b/devel/rubygem-aws-sdk-rekognition/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-rekognition PORTVERSION= 1.72.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Rekognition WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-rekognition LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-resiliencehub/Makefile b/devel/rubygem-aws-sdk-resiliencehub/Makefile index 3ce0c607ace0..9d12d720a047 100644 --- a/devel/rubygem-aws-sdk-resiliencehub/Makefile +++ b/devel/rubygem-aws-sdk-resiliencehub/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-resiliencehub PORTVERSION= 1.8.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Resilience Hub WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-resiliencehub LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-resourceexplorer2/Makefile b/devel/rubygem-aws-sdk-resourceexplorer2/Makefile index 364819cb2e14..d5dbde4f7d65 100644 --- a/devel/rubygem-aws-sdk-resourceexplorer2/Makefile +++ b/devel/rubygem-aws-sdk-resourceexplorer2/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-resourceexplorer2 PORTVERSION= 1.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Resource Explorer WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-resourceexplorer2 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-resourcegroups/Makefile b/devel/rubygem-aws-sdk-resourcegroups/Makefile index d433b3fceee4..3a3b2f512235 100644 --- a/devel/rubygem-aws-sdk-resourcegroups/Makefile +++ b/devel/rubygem-aws-sdk-resourcegroups/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-resourcegroups PORTVERSION= 1.46.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Resource Groups (Resource Groups) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-resourcegroups LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-resourcegroupstaggingapi/Makefile b/devel/rubygem-aws-sdk-resourcegroupstaggingapi/Makefile index 28eab6dec23d..cb6c8400a99e 100644 --- a/devel/rubygem-aws-sdk-resourcegroupstaggingapi/Makefile +++ b/devel/rubygem-aws-sdk-resourcegroupstaggingapi/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-resourcegroupstaggingapi PORTVERSION= 1.48.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Resource Groups Tagging API WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-resourcegroupstaggingapi LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-resources/Makefile b/devel/rubygem-aws-sdk-resources/Makefile index 27349760c10d..314dc35271c0 100644 --- a/devel/rubygem-aws-sdk-resources/Makefile +++ b/devel/rubygem-aws-sdk-resources/Makefile @@ -1,343 +1,342 @@ PORTNAME= aws-sdk-resources PORTVERSION= 3.147.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= AWS SDK for Ruby Resources WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-resources LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-accessanalyzer>=1<2:devel/rubygem-aws-sdk-accessanalyzer \ rubygem-aws-sdk-account>=1<2:devel/rubygem-aws-sdk-account \ rubygem-aws-sdk-acm>=1<2:devel/rubygem-aws-sdk-acm \ rubygem-aws-sdk-acmpca>=1<2:devel/rubygem-aws-sdk-acmpca \ rubygem-aws-sdk-alexaforbusiness>=1<2:devel/rubygem-aws-sdk-alexaforbusiness \ rubygem-aws-sdk-amplify>=1<2:devel/rubygem-aws-sdk-amplify \ rubygem-aws-sdk-amplifybackend>=1<2:devel/rubygem-aws-sdk-amplifybackend \ rubygem-aws-sdk-amplifyuibuilder>=1<2:devel/rubygem-aws-sdk-amplifyuibuilder \ rubygem-aws-sdk-apigateway>=1<2:devel/rubygem-aws-sdk-apigateway \ rubygem-aws-sdk-apigatewaymanagementapi>=1<2:devel/rubygem-aws-sdk-apigatewaymanagementapi \ rubygem-aws-sdk-apigatewayv2>=1<2:devel/rubygem-aws-sdk-apigatewayv2 \ rubygem-aws-sdk-appconfig>=1<2:devel/rubygem-aws-sdk-appconfig \ rubygem-aws-sdk-appconfigdata>=1<2:devel/rubygem-aws-sdk-appconfigdata \ rubygem-aws-sdk-appflow>=1<2:devel/rubygem-aws-sdk-appflow \ rubygem-aws-sdk-appintegrationsservice>=1<2:devel/rubygem-aws-sdk-appintegrationsservice \ rubygem-aws-sdk-applicationautoscaling>=1<2:devel/rubygem-aws-sdk-applicationautoscaling \ rubygem-aws-sdk-applicationcostprofiler>=1<2:devel/rubygem-aws-sdk-applicationcostprofiler \ rubygem-aws-sdk-applicationdiscoveryservice>=1<2:devel/rubygem-aws-sdk-applicationdiscoveryservice \ rubygem-aws-sdk-applicationinsights>=1<2:devel/rubygem-aws-sdk-applicationinsights \ rubygem-aws-sdk-appmesh>=1<2:devel/rubygem-aws-sdk-appmesh \ rubygem-aws-sdk-appregistry>=1<2:devel/rubygem-aws-sdk-appregistry \ rubygem-aws-sdk-apprunner>=1<2:devel/rubygem-aws-sdk-apprunner \ rubygem-aws-sdk-appstream>=1<2:devel/rubygem-aws-sdk-appstream \ rubygem-aws-sdk-appsync>=1<2:devel/rubygem-aws-sdk-appsync \ rubygem-aws-sdk-athena>=1<2:devel/rubygem-aws-sdk-athena \ rubygem-aws-sdk-auditmanager>=1<2:devel/rubygem-aws-sdk-auditmanager \ rubygem-aws-sdk-augmentedairuntime>=1<2:devel/rubygem-aws-sdk-augmentedairuntime \ rubygem-aws-sdk-autoscaling>=1<2:devel/rubygem-aws-sdk-autoscaling \ rubygem-aws-sdk-autoscalingplans>=1<2:devel/rubygem-aws-sdk-autoscalingplans \ rubygem-aws-sdk-backup>=1<2:devel/rubygem-aws-sdk-backup \ rubygem-aws-sdk-backupgateway>=1<2:devel/rubygem-aws-sdk-backupgateway \ rubygem-aws-sdk-backupstorage>=1<2:devel/rubygem-aws-sdk-backupstorage \ rubygem-aws-sdk-batch>=1<2:devel/rubygem-aws-sdk-batch \ rubygem-aws-sdk-billingconductor>=1<2:devel/rubygem-aws-sdk-billingconductor \ rubygem-aws-sdk-braket>=1<2:devel/rubygem-aws-sdk-braket \ rubygem-aws-sdk-budgets>=1<2:devel/rubygem-aws-sdk-budgets \ rubygem-aws-sdk-chime>=1<2:devel/rubygem-aws-sdk-chime \ rubygem-aws-sdk-chimesdkidentity>=1<2:devel/rubygem-aws-sdk-chimesdkidentity \ rubygem-aws-sdk-chimesdkmediapipelines>=1<2:devel/rubygem-aws-sdk-chimesdkmediapipelines \ rubygem-aws-sdk-chimesdkmeetings>=1<2:devel/rubygem-aws-sdk-chimesdkmeetings \ rubygem-aws-sdk-chimesdkmessaging>=1<2:devel/rubygem-aws-sdk-chimesdkmessaging \ rubygem-aws-sdk-chimesdkvoice>=1<2:devel/rubygem-aws-sdk-chimesdkvoice \ rubygem-aws-sdk-cloud9>=1<2:devel/rubygem-aws-sdk-cloud9 \ rubygem-aws-sdk-cloudcontrolapi>=1<2:devel/rubygem-aws-sdk-cloudcontrolapi \ rubygem-aws-sdk-clouddirectory>=1<2:devel/rubygem-aws-sdk-clouddirectory \ rubygem-aws-sdk-cloudformation>=1<2:devel/rubygem-aws-sdk-cloudformation \ rubygem-aws-sdk-cloudfront>=1<2:devel/rubygem-aws-sdk-cloudfront \ rubygem-aws-sdk-cloudhsm>=1<2:devel/rubygem-aws-sdk-cloudhsm \ rubygem-aws-sdk-cloudhsmv2>=1<2:devel/rubygem-aws-sdk-cloudhsmv2 \ rubygem-aws-sdk-cloudsearch>=1<2:devel/rubygem-aws-sdk-cloudsearch \ rubygem-aws-sdk-cloudsearchdomain>=1<2:devel/rubygem-aws-sdk-cloudsearchdomain \ rubygem-aws-sdk-cloudtrail>=1<2:devel/rubygem-aws-sdk-cloudtrail \ rubygem-aws-sdk-cloudwatch>=1<2:devel/rubygem-aws-sdk-cloudwatch \ rubygem-aws-sdk-cloudwatchevents>=1<2:devel/rubygem-aws-sdk-cloudwatchevents \ rubygem-aws-sdk-cloudwatchevidently>=1<2:devel/rubygem-aws-sdk-cloudwatchevidently \ rubygem-aws-sdk-cloudwatchlogs>=1<2:devel/rubygem-aws-sdk-cloudwatchlogs \ rubygem-aws-sdk-cloudwatchrum>=1<2:devel/rubygem-aws-sdk-cloudwatchrum \ rubygem-aws-sdk-codeartifact>=1<2:devel/rubygem-aws-sdk-codeartifact \ rubygem-aws-sdk-codebuild>=1<2:devel/rubygem-aws-sdk-codebuild \ rubygem-aws-sdk-codecommit>=1<2:devel/rubygem-aws-sdk-codecommit \ rubygem-aws-sdk-codedeploy>=1<2:devel/rubygem-aws-sdk-codedeploy \ rubygem-aws-sdk-codeguruprofiler>=1<2:devel/rubygem-aws-sdk-codeguruprofiler \ rubygem-aws-sdk-codegurureviewer>=1<2:devel/rubygem-aws-sdk-codegurureviewer \ rubygem-aws-sdk-codepipeline>=1<2:devel/rubygem-aws-sdk-codepipeline \ rubygem-aws-sdk-codestar>=1<2:devel/rubygem-aws-sdk-codestar \ rubygem-aws-sdk-codestarconnections>=1<2:devel/rubygem-aws-sdk-codestarconnections \ rubygem-aws-sdk-codestarnotifications>=1<2:devel/rubygem-aws-sdk-codestarnotifications \ rubygem-aws-sdk-cognitoidentity>=1<2:devel/rubygem-aws-sdk-cognitoidentity \ rubygem-aws-sdk-cognitoidentityprovider>=1<2:devel/rubygem-aws-sdk-cognitoidentityprovider \ rubygem-aws-sdk-cognitosync>=1<2:devel/rubygem-aws-sdk-cognitosync \ rubygem-aws-sdk-comprehend>=1<2:devel/rubygem-aws-sdk-comprehend \ rubygem-aws-sdk-comprehendmedical>=1<2:devel/rubygem-aws-sdk-comprehendmedical \ rubygem-aws-sdk-computeoptimizer>=1<2:devel/rubygem-aws-sdk-computeoptimizer \ rubygem-aws-sdk-configservice>=1<2:devel/rubygem-aws-sdk-configservice \ rubygem-aws-sdk-connect>=1<2:devel/rubygem-aws-sdk-connect \ rubygem-aws-sdk-connectcampaignservice>=1<2:devel/rubygem-aws-sdk-connectcampaignservice \ rubygem-aws-sdk-connectcases>=1<2:devel/rubygem-aws-sdk-connectcases \ rubygem-aws-sdk-connectcontactlens>=1<2:devel/rubygem-aws-sdk-connectcontactlens \ rubygem-aws-sdk-connectparticipant>=1<2:devel/rubygem-aws-sdk-connectparticipant \ rubygem-aws-sdk-connectwisdomservice>=1<2:devel/rubygem-aws-sdk-connectwisdomservice \ rubygem-aws-sdk-controltower>=1<2:devel/rubygem-aws-sdk-controltower \ rubygem-aws-sdk-costandusagereportservice>=1<2:devel/rubygem-aws-sdk-costandusagereportservice \ rubygem-aws-sdk-costexplorer>=1<2:devel/rubygem-aws-sdk-costexplorer \ rubygem-aws-sdk-customerprofiles>=1<2:devel/rubygem-aws-sdk-customerprofiles \ rubygem-aws-sdk-databasemigrationservice>=1<2:devel/rubygem-aws-sdk-databasemigrationservice \ rubygem-aws-sdk-dataexchange>=1<2:devel/rubygem-aws-sdk-dataexchange \ rubygem-aws-sdk-datapipeline>=1<2:devel/rubygem-aws-sdk-datapipeline \ rubygem-aws-sdk-datasync>=1<2:devel/rubygem-aws-sdk-datasync \ rubygem-aws-sdk-dax>=1<2:devel/rubygem-aws-sdk-dax \ rubygem-aws-sdk-detective>=1<2:devel/rubygem-aws-sdk-detective \ rubygem-aws-sdk-devicefarm>=1<2:devel/rubygem-aws-sdk-devicefarm \ rubygem-aws-sdk-devopsguru>=1<2:devel/rubygem-aws-sdk-devopsguru \ rubygem-aws-sdk-directconnect>=1<2:devel/rubygem-aws-sdk-directconnect \ rubygem-aws-sdk-directoryservice>=1<2:devel/rubygem-aws-sdk-directoryservice \ rubygem-aws-sdk-dlm>=1<2:devel/rubygem-aws-sdk-dlm \ rubygem-aws-sdk-docdb>=1<2:devel/rubygem-aws-sdk-docdb \ rubygem-aws-sdk-drs>=1<2:devel/rubygem-aws-sdk-drs \ rubygem-aws-sdk-dynamodb>=1<2:devel/rubygem-aws-sdk-dynamodb \ rubygem-aws-sdk-dynamodbstreams>=1<2:devel/rubygem-aws-sdk-dynamodbstreams \ rubygem-aws-sdk-ebs>=1<2:devel/rubygem-aws-sdk-ebs \ rubygem-aws-sdk-ec2>=1<2:devel/rubygem-aws-sdk-ec2 \ rubygem-aws-sdk-ec2instanceconnect>=1<2:devel/rubygem-aws-sdk-ec2instanceconnect \ rubygem-aws-sdk-ecr>=1<2:devel/rubygem-aws-sdk-ecr \ rubygem-aws-sdk-ecrpublic>=1<2:devel/rubygem-aws-sdk-ecrpublic \ rubygem-aws-sdk-ecs>=1<2:devel/rubygem-aws-sdk-ecs \ rubygem-aws-sdk-efs>=1<2:devel/rubygem-aws-sdk-efs \ rubygem-aws-sdk-eks>=1<2:devel/rubygem-aws-sdk-eks \ rubygem-aws-sdk-elasticache>=1<2:devel/rubygem-aws-sdk-elasticache \ rubygem-aws-sdk-elasticbeanstalk>=1<2:devel/rubygem-aws-sdk-elasticbeanstalk \ rubygem-aws-sdk-elasticinference>=1<2:devel/rubygem-aws-sdk-elasticinference \ rubygem-aws-sdk-elasticloadbalancing>=1<2:devel/rubygem-aws-sdk-elasticloadbalancing \ rubygem-aws-sdk-elasticloadbalancingv2>=1<2:devel/rubygem-aws-sdk-elasticloadbalancingv2 \ rubygem-aws-sdk-elasticsearchservice>=1<2:devel/rubygem-aws-sdk-elasticsearchservice \ rubygem-aws-sdk-elastictranscoder>=1<2:devel/rubygem-aws-sdk-elastictranscoder \ rubygem-aws-sdk-emr>=1<2:devel/rubygem-aws-sdk-emr \ rubygem-aws-sdk-emrcontainers>=1<2:devel/rubygem-aws-sdk-emrcontainers \ rubygem-aws-sdk-emrserverless>=1<2:devel/rubygem-aws-sdk-emrserverless \ rubygem-aws-sdk-eventbridge>=1<2:devel/rubygem-aws-sdk-eventbridge \ rubygem-aws-sdk-finspace>=1<2:devel/rubygem-aws-sdk-finspace \ rubygem-aws-sdk-finspacedata>=1<2:devel/rubygem-aws-sdk-finspacedata \ rubygem-aws-sdk-firehose>=1<2:devel/rubygem-aws-sdk-firehose \ rubygem-aws-sdk-fis>=1<2:devel/rubygem-aws-sdk-fis \ rubygem-aws-sdk-fms>=1<2:devel/rubygem-aws-sdk-fms \ rubygem-aws-sdk-forecastqueryservice>=1<2:devel/rubygem-aws-sdk-forecastqueryservice \ rubygem-aws-sdk-forecastservice>=1<2:devel/rubygem-aws-sdk-forecastservice \ rubygem-aws-sdk-frauddetector>=1<2:devel/rubygem-aws-sdk-frauddetector \ rubygem-aws-sdk-fsx>=1<2:devel/rubygem-aws-sdk-fsx \ rubygem-aws-sdk-gamelift>=1<2:devel/rubygem-aws-sdk-gamelift \ rubygem-aws-sdk-gamesparks>=1<2:devel/rubygem-aws-sdk-gamesparks \ rubygem-aws-sdk-glacier>=1<2:devel/rubygem-aws-sdk-glacier \ rubygem-aws-sdk-globalaccelerator>=1<2:devel/rubygem-aws-sdk-globalaccelerator \ rubygem-aws-sdk-glue>=1<2:devel/rubygem-aws-sdk-glue \ rubygem-aws-sdk-gluedatabrew>=1<2:devel/rubygem-aws-sdk-gluedatabrew \ rubygem-aws-sdk-greengrass>=1<2:devel/rubygem-aws-sdk-greengrass \ rubygem-aws-sdk-greengrassv2>=1<2:devel/rubygem-aws-sdk-greengrassv2 \ rubygem-aws-sdk-groundstation>=1<2:devel/rubygem-aws-sdk-groundstation \ rubygem-aws-sdk-guardduty>=1<2:devel/rubygem-aws-sdk-guardduty \ rubygem-aws-sdk-health>=1<2:devel/rubygem-aws-sdk-health \ rubygem-aws-sdk-healthlake>=1<2:devel/rubygem-aws-sdk-healthlake \ rubygem-aws-sdk-honeycode>=1<2:devel/rubygem-aws-sdk-honeycode \ rubygem-aws-sdk-iam>=1<2:devel/rubygem-aws-sdk-iam \ rubygem-aws-sdk-identitystore>=1<2:devel/rubygem-aws-sdk-identitystore \ rubygem-aws-sdk-imagebuilder>=1<2:devel/rubygem-aws-sdk-imagebuilder \ rubygem-aws-sdk-importexport>=1<2:devel/rubygem-aws-sdk-importexport \ rubygem-aws-sdk-inspector>=1<2:devel/rubygem-aws-sdk-inspector \ rubygem-aws-sdk-inspector2>=1<2:devel/rubygem-aws-sdk-inspector2 \ rubygem-aws-sdk-iot>=1<2:devel/rubygem-aws-sdk-iot \ rubygem-aws-sdk-iot1clickdevicesservice>=1<2:devel/rubygem-aws-sdk-iot1clickdevicesservice \ rubygem-aws-sdk-iot1clickprojects>=1<2:devel/rubygem-aws-sdk-iot1clickprojects \ rubygem-aws-sdk-iotanalytics>=1<2:devel/rubygem-aws-sdk-iotanalytics \ rubygem-aws-sdk-iotdataplane>=1<2:devel/rubygem-aws-sdk-iotdataplane \ rubygem-aws-sdk-iotdeviceadvisor>=1<2:devel/rubygem-aws-sdk-iotdeviceadvisor \ rubygem-aws-sdk-iotevents>=1<2:devel/rubygem-aws-sdk-iotevents \ rubygem-aws-sdk-ioteventsdata>=1<2:devel/rubygem-aws-sdk-ioteventsdata \ rubygem-aws-sdk-iotfleethub>=1<2:devel/rubygem-aws-sdk-iotfleethub \ rubygem-aws-sdk-iotfleetwise>=1<2:devel/rubygem-aws-sdk-iotfleetwise \ rubygem-aws-sdk-iotjobsdataplane>=1<2:devel/rubygem-aws-sdk-iotjobsdataplane \ rubygem-aws-sdk-iotroborunner>=1<2:devel/rubygem-aws-sdk-iotroborunner \ rubygem-aws-sdk-iotsecuretunneling>=1<2:devel/rubygem-aws-sdk-iotsecuretunneling \ rubygem-aws-sdk-iotsitewise>=1<2:devel/rubygem-aws-sdk-iotsitewise \ rubygem-aws-sdk-iotthingsgraph>=1<2:devel/rubygem-aws-sdk-iotthingsgraph \ rubygem-aws-sdk-iottwinmaker>=1<2:devel/rubygem-aws-sdk-iottwinmaker \ rubygem-aws-sdk-iotwireless>=1<2:devel/rubygem-aws-sdk-iotwireless \ rubygem-aws-sdk-ivs>=1<2:devel/rubygem-aws-sdk-ivs \ rubygem-aws-sdk-ivschat>=1<2:devel/rubygem-aws-sdk-ivschat \ rubygem-aws-sdk-kafka>=1<2:devel/rubygem-aws-sdk-kafka \ rubygem-aws-sdk-kafkaconnect>=1<2:devel/rubygem-aws-sdk-kafkaconnect \ rubygem-aws-sdk-kendra>=1<2:devel/rubygem-aws-sdk-kendra \ rubygem-aws-sdk-keyspaces>=1<2:devel/rubygem-aws-sdk-keyspaces \ rubygem-aws-sdk-kinesis>=1<2:devel/rubygem-aws-sdk-kinesis \ rubygem-aws-sdk-kinesisanalytics>=1<2:devel/rubygem-aws-sdk-kinesisanalytics \ rubygem-aws-sdk-kinesisanalyticsv2>=1<2:devel/rubygem-aws-sdk-kinesisanalyticsv2 \ rubygem-aws-sdk-kinesisvideo>=1<2:devel/rubygem-aws-sdk-kinesisvideo \ rubygem-aws-sdk-kinesisvideoarchivedmedia>=1<2:devel/rubygem-aws-sdk-kinesisvideoarchivedmedia \ rubygem-aws-sdk-kinesisvideomedia>=1<2:devel/rubygem-aws-sdk-kinesisvideomedia \ rubygem-aws-sdk-kinesisvideosignalingchannels>=1<2:devel/rubygem-aws-sdk-kinesisvideosignalingchannels \ rubygem-aws-sdk-kms>=1<2:devel/rubygem-aws-sdk-kms \ rubygem-aws-sdk-lakeformation>=1<2:devel/rubygem-aws-sdk-lakeformation \ rubygem-aws-sdk-lambda>=1<2:devel/rubygem-aws-sdk-lambda \ rubygem-aws-sdk-lambdapreview>=1<2:devel/rubygem-aws-sdk-lambdapreview \ rubygem-aws-sdk-lex>=1<2:devel/rubygem-aws-sdk-lex \ rubygem-aws-sdk-lexmodelbuildingservice>=1<2:devel/rubygem-aws-sdk-lexmodelbuildingservice \ rubygem-aws-sdk-lexmodelsv2>=1<2:devel/rubygem-aws-sdk-lexmodelsv2 \ rubygem-aws-sdk-lexruntimev2>=1<2:devel/rubygem-aws-sdk-lexruntimev2 \ rubygem-aws-sdk-licensemanager>=1<2:devel/rubygem-aws-sdk-licensemanager \ rubygem-aws-sdk-licensemanagerusersubscriptions>=1<2:devel/rubygem-aws-sdk-licensemanagerusersubscriptions \ rubygem-aws-sdk-lightsail>=1<2:devel/rubygem-aws-sdk-lightsail \ rubygem-aws-sdk-locationservice>=1<2:devel/rubygem-aws-sdk-locationservice \ rubygem-aws-sdk-lookoutequipment>=1<2:devel/rubygem-aws-sdk-lookoutequipment \ rubygem-aws-sdk-lookoutforvision>=1<2:devel/rubygem-aws-sdk-lookoutforvision \ rubygem-aws-sdk-lookoutmetrics>=1<2:devel/rubygem-aws-sdk-lookoutmetrics \ rubygem-aws-sdk-machinelearning>=1<2:devel/rubygem-aws-sdk-machinelearning \ rubygem-aws-sdk-macie>=1<2:devel/rubygem-aws-sdk-macie \ rubygem-aws-sdk-macie2>=1<2:devel/rubygem-aws-sdk-macie2 \ rubygem-aws-sdk-mainframemodernization>=1<2:devel/rubygem-aws-sdk-mainframemodernization \ rubygem-aws-sdk-managedblockchain>=1<2:devel/rubygem-aws-sdk-managedblockchain \ rubygem-aws-sdk-managedgrafana>=1<2:devel/rubygem-aws-sdk-managedgrafana \ rubygem-aws-sdk-marketplacecatalog>=1<2:devel/rubygem-aws-sdk-marketplacecatalog \ rubygem-aws-sdk-marketplacecommerceanalytics>=1<2:devel/rubygem-aws-sdk-marketplacecommerceanalytics \ rubygem-aws-sdk-marketplaceentitlementservice>=1<2:devel/rubygem-aws-sdk-marketplaceentitlementservice \ rubygem-aws-sdk-marketplacemetering>=1<2:devel/rubygem-aws-sdk-marketplacemetering \ rubygem-aws-sdk-mediaconnect>=1<2:devel/rubygem-aws-sdk-mediaconnect \ rubygem-aws-sdk-mediaconvert>=1<2:devel/rubygem-aws-sdk-mediaconvert \ rubygem-aws-sdk-medialive>=1<2:devel/rubygem-aws-sdk-medialive \ rubygem-aws-sdk-mediapackage>=1<2:devel/rubygem-aws-sdk-mediapackage \ rubygem-aws-sdk-mediapackagevod>=1<2:devel/rubygem-aws-sdk-mediapackagevod \ rubygem-aws-sdk-mediastore>=1<2:devel/rubygem-aws-sdk-mediastore \ rubygem-aws-sdk-mediastoredata>=1<2:devel/rubygem-aws-sdk-mediastoredata \ rubygem-aws-sdk-mediatailor>=1<2:devel/rubygem-aws-sdk-mediatailor \ rubygem-aws-sdk-memorydb>=1<2:devel/rubygem-aws-sdk-memorydb \ rubygem-aws-sdk-mgn>=1<2:devel/rubygem-aws-sdk-mgn \ rubygem-aws-sdk-migrationhub>=1<2:devel/rubygem-aws-sdk-migrationhub \ rubygem-aws-sdk-migrationhubconfig>=1<2:devel/rubygem-aws-sdk-migrationhubconfig \ rubygem-aws-sdk-migrationhuborchestrator>=1<2:devel/rubygem-aws-sdk-migrationhuborchestrator \ rubygem-aws-sdk-migrationhubrefactorspaces>=1<2:devel/rubygem-aws-sdk-migrationhubrefactorspaces \ rubygem-aws-sdk-migrationhubstrategyrecommendations>=1<2:devel/rubygem-aws-sdk-migrationhubstrategyrecommendations \ rubygem-aws-sdk-mobile>=1<2:devel/rubygem-aws-sdk-mobile \ rubygem-aws-sdk-mq>=1<2:devel/rubygem-aws-sdk-mq \ rubygem-aws-sdk-mturk>=1<2:devel/rubygem-aws-sdk-mturk \ rubygem-aws-sdk-mwaa>=1<2:devel/rubygem-aws-sdk-mwaa \ rubygem-aws-sdk-neptune>=1<2:devel/rubygem-aws-sdk-neptune \ rubygem-aws-sdk-networkfirewall>=1<2:devel/rubygem-aws-sdk-networkfirewall \ rubygem-aws-sdk-networkmanager>=1<2:devel/rubygem-aws-sdk-networkmanager \ rubygem-aws-sdk-nimblestudio>=1<2:devel/rubygem-aws-sdk-nimblestudio \ rubygem-aws-sdk-opensearchservice>=1<2:devel/rubygem-aws-sdk-opensearchservice \ rubygem-aws-sdk-opsworks>=1<2:devel/rubygem-aws-sdk-opsworks \ rubygem-aws-sdk-opsworkscm>=1<2:devel/rubygem-aws-sdk-opsworkscm \ rubygem-aws-sdk-organizations>=1<2:devel/rubygem-aws-sdk-organizations \ rubygem-aws-sdk-outposts>=1<2:devel/rubygem-aws-sdk-outposts \ rubygem-aws-sdk-panorama>=1<2:devel/rubygem-aws-sdk-panorama \ rubygem-aws-sdk-personalize>=1<2:devel/rubygem-aws-sdk-personalize \ rubygem-aws-sdk-personalizeevents>=1<2:devel/rubygem-aws-sdk-personalizeevents \ rubygem-aws-sdk-personalizeruntime>=1<2:devel/rubygem-aws-sdk-personalizeruntime \ rubygem-aws-sdk-pi>=1<2:devel/rubygem-aws-sdk-pi \ rubygem-aws-sdk-pinpoint>=1<2:devel/rubygem-aws-sdk-pinpoint \ rubygem-aws-sdk-pinpointemail>=1<2:devel/rubygem-aws-sdk-pinpointemail \ rubygem-aws-sdk-pinpointsmsvoice>=1<2:devel/rubygem-aws-sdk-pinpointsmsvoice \ rubygem-aws-sdk-pinpointsmsvoicev2>=1<2:devel/rubygem-aws-sdk-pinpointsmsvoicev2 \ rubygem-aws-sdk-polly>=1<2:devel/rubygem-aws-sdk-polly \ rubygem-aws-sdk-pricing>=1<2:devel/rubygem-aws-sdk-pricing \ rubygem-aws-sdk-privatenetworks>=1<2:devel/rubygem-aws-sdk-privatenetworks \ rubygem-aws-sdk-prometheusservice>=1<2:devel/rubygem-aws-sdk-prometheusservice \ rubygem-aws-sdk-proton>=1<2:devel/rubygem-aws-sdk-proton \ rubygem-aws-sdk-qldb>=1<2:devel/rubygem-aws-sdk-qldb \ rubygem-aws-sdk-qldbsession>=1<2:devel/rubygem-aws-sdk-qldbsession \ rubygem-aws-sdk-quicksight>=1<2:devel/rubygem-aws-sdk-quicksight \ rubygem-aws-sdk-ram>=1<2:devel/rubygem-aws-sdk-ram \ rubygem-aws-sdk-rds>=1<2:devel/rubygem-aws-sdk-rds \ rubygem-aws-sdk-rdsdataservice>=1<2:devel/rubygem-aws-sdk-rdsdataservice \ rubygem-aws-sdk-recyclebin>=1<2:devel/rubygem-aws-sdk-recyclebin \ rubygem-aws-sdk-redshift>=1<2:devel/rubygem-aws-sdk-redshift \ rubygem-aws-sdk-redshiftdataapiservice>=1<2:devel/rubygem-aws-sdk-redshiftdataapiservice \ rubygem-aws-sdk-redshiftserverless>=1<2:devel/rubygem-aws-sdk-redshiftserverless \ rubygem-aws-sdk-rekognition>=1<2:devel/rubygem-aws-sdk-rekognition \ rubygem-aws-sdk-resiliencehub>=1<2:devel/rubygem-aws-sdk-resiliencehub \ rubygem-aws-sdk-resourceexplorer2>=1<2:devel/rubygem-aws-sdk-resourceexplorer2 \ rubygem-aws-sdk-resourcegroups>=1<2:devel/rubygem-aws-sdk-resourcegroups \ rubygem-aws-sdk-resourcegroupstaggingapi>=1<2:devel/rubygem-aws-sdk-resourcegroupstaggingapi \ rubygem-aws-sdk-robomaker>=1<2:devel/rubygem-aws-sdk-robomaker \ rubygem-aws-sdk-rolesanywhere>=1<2:devel/rubygem-aws-sdk-rolesanywhere \ rubygem-aws-sdk-route53>=1<2:devel/rubygem-aws-sdk-route53 \ rubygem-aws-sdk-route53domains>=1<2:devel/rubygem-aws-sdk-route53domains \ rubygem-aws-sdk-route53recoverycluster>=1<2:devel/rubygem-aws-sdk-route53recoverycluster \ rubygem-aws-sdk-route53recoverycontrolconfig>=1<2:devel/rubygem-aws-sdk-route53recoverycontrolconfig \ rubygem-aws-sdk-route53recoveryreadiness>=1<2:devel/rubygem-aws-sdk-route53recoveryreadiness \ rubygem-aws-sdk-route53resolver>=1<2:devel/rubygem-aws-sdk-route53resolver \ rubygem-aws-sdk-s3>=1<2:devel/rubygem-aws-sdk-s3 \ rubygem-aws-sdk-s3control>=1<2:devel/rubygem-aws-sdk-s3control \ rubygem-aws-sdk-s3outposts>=1<2:devel/rubygem-aws-sdk-s3outposts \ rubygem-aws-sdk-sagemaker>=1<2:devel/rubygem-aws-sdk-sagemaker \ rubygem-aws-sdk-sagemakeredgemanager>=1<2:devel/rubygem-aws-sdk-sagemakeredgemanager \ rubygem-aws-sdk-sagemakerfeaturestoreruntime>=1<2:devel/rubygem-aws-sdk-sagemakerfeaturestoreruntime \ rubygem-aws-sdk-sagemakerruntime>=1<2:devel/rubygem-aws-sdk-sagemakerruntime \ rubygem-aws-sdk-savingsplans>=1<2:devel/rubygem-aws-sdk-savingsplans \ rubygem-aws-sdk-scheduler>=1<2:devel/rubygem-aws-sdk-scheduler \ rubygem-aws-sdk-schemas>=1<2:devel/rubygem-aws-sdk-schemas \ rubygem-aws-sdk-secretsmanager>=1<2:devel/rubygem-aws-sdk-secretsmanager \ rubygem-aws-sdk-securityhub>=1<2:devel/rubygem-aws-sdk-securityhub \ rubygem-aws-sdk-serverlessapplicationrepository>=1<2:devel/rubygem-aws-sdk-serverlessapplicationrepository \ rubygem-aws-sdk-servicecatalog>=1<2:devel/rubygem-aws-sdk-servicecatalog \ rubygem-aws-sdk-servicediscovery>=1<2:devel/rubygem-aws-sdk-servicediscovery \ rubygem-aws-sdk-servicequotas>=1<2:devel/rubygem-aws-sdk-servicequotas \ rubygem-aws-sdk-ses>=1<2:devel/rubygem-aws-sdk-ses \ rubygem-aws-sdk-sesv2>=1<2:devel/rubygem-aws-sdk-sesv2 \ rubygem-aws-sdk-shield>=1<2:devel/rubygem-aws-sdk-shield \ rubygem-aws-sdk-signer>=1<2:devel/rubygem-aws-sdk-signer \ rubygem-aws-sdk-simpledb>=1<2:devel/rubygem-aws-sdk-simpledb \ rubygem-aws-sdk-sms>=1<2:devel/rubygem-aws-sdk-sms \ rubygem-aws-sdk-snowball>=1<2:devel/rubygem-aws-sdk-snowball \ rubygem-aws-sdk-snowdevicemanagement>=1<2:devel/rubygem-aws-sdk-snowdevicemanagement \ rubygem-aws-sdk-sns>=1<2:devel/rubygem-aws-sdk-sns \ rubygem-aws-sdk-sqs>=1<2:devel/rubygem-aws-sdk-sqs \ rubygem-aws-sdk-ssm>=1<2:devel/rubygem-aws-sdk-ssm \ rubygem-aws-sdk-ssmcontacts>=1<2:devel/rubygem-aws-sdk-ssmcontacts \ rubygem-aws-sdk-ssmincidents>=1<2:devel/rubygem-aws-sdk-ssmincidents \ rubygem-aws-sdk-ssmsap>=1<2:devel/rubygem-aws-sdk-ssmsap \ rubygem-aws-sdk-ssoadmin>=1<2:devel/rubygem-aws-sdk-ssoadmin \ rubygem-aws-sdk-states>=1<2:devel/rubygem-aws-sdk-states \ rubygem-aws-sdk-storagegateway>=1<2:devel/rubygem-aws-sdk-storagegateway \ rubygem-aws-sdk-support>=1<2:devel/rubygem-aws-sdk-support \ rubygem-aws-sdk-supportapp>=1<2:devel/rubygem-aws-sdk-supportapp \ rubygem-aws-sdk-swf>=1<2:devel/rubygem-aws-sdk-swf \ rubygem-aws-sdk-synthetics>=1<2:devel/rubygem-aws-sdk-synthetics \ rubygem-aws-sdk-textract>=1<2:devel/rubygem-aws-sdk-textract \ rubygem-aws-sdk-timestreamquery>=1<2:devel/rubygem-aws-sdk-timestreamquery \ rubygem-aws-sdk-timestreamwrite>=1<2:devel/rubygem-aws-sdk-timestreamwrite \ rubygem-aws-sdk-transcribeservice>=1<2:devel/rubygem-aws-sdk-transcribeservice \ rubygem-aws-sdk-transcribestreamingservice>=1<2:devel/rubygem-aws-sdk-transcribestreamingservice \ rubygem-aws-sdk-transfer>=1<2:devel/rubygem-aws-sdk-transfer \ rubygem-aws-sdk-translate>=1<2:devel/rubygem-aws-sdk-translate \ rubygem-aws-sdk-voiceid>=1<2:devel/rubygem-aws-sdk-voiceid \ rubygem-aws-sdk-waf>=1<2:devel/rubygem-aws-sdk-waf \ rubygem-aws-sdk-wafregional>=1<2:devel/rubygem-aws-sdk-wafregional \ rubygem-aws-sdk-wafv2>=1<2:devel/rubygem-aws-sdk-wafv2 \ rubygem-aws-sdk-wellarchitected>=1<2:devel/rubygem-aws-sdk-wellarchitected \ rubygem-aws-sdk-workdocs>=1<2:devel/rubygem-aws-sdk-workdocs \ rubygem-aws-sdk-worklink>=1<2:devel/rubygem-aws-sdk-worklink \ rubygem-aws-sdk-workmail>=1<2:devel/rubygem-aws-sdk-workmail \ rubygem-aws-sdk-workmailmessageflow>=1<2:devel/rubygem-aws-sdk-workmailmessageflow \ rubygem-aws-sdk-workspaces>=1<2:devel/rubygem-aws-sdk-workspaces \ rubygem-aws-sdk-workspacesweb>=1<2:devel/rubygem-aws-sdk-workspacesweb \ rubygem-aws-sdk-xray>=1<2:devel/rubygem-aws-sdk-xray USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/aws-v3.rb .include diff --git a/devel/rubygem-aws-sdk-resources2/Makefile b/devel/rubygem-aws-sdk-resources2/Makefile index cb4d90f4251d..44d2aa1e177a 100644 --- a/devel/rubygem-aws-sdk-resources2/Makefile +++ b/devel/rubygem-aws-sdk-resources2/Makefile @@ -1,22 +1,21 @@ PORTNAME= aws-sdk-resources PORTVERSION= 2.11.632 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 2 MAINTAINER= sunpoet@FreeBSD.org COMMENT= AWS SDK for Ruby Resources WWW= https://github.com/aws/aws-sdk-ruby LICENSE= APACHE20 RUN_DEPENDS= rubygem-aws-sdk-core2>=${PORTVERSION}:devel/rubygem-aws-sdk-core2 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^2\. .include diff --git a/devel/rubygem-aws-sdk-robomaker/Makefile b/devel/rubygem-aws-sdk-robomaker/Makefile index 950e882564b6..a1b85547cda3 100644 --- a/devel/rubygem-aws-sdk-robomaker/Makefile +++ b/devel/rubygem-aws-sdk-robomaker/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-robomaker PORTVERSION= 1.52.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS RoboMaker (RoboMaker) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-robomaker LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-rolesanywhere/Makefile b/devel/rubygem-aws-sdk-rolesanywhere/Makefile index 0a73808cb825..ca6c16b2f255 100644 --- a/devel/rubygem-aws-sdk-rolesanywhere/Makefile +++ b/devel/rubygem-aws-sdk-rolesanywhere/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-rolesanywhere PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for IAM Roles Anywhere WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-rolesanywhere LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-route53/Makefile b/devel/rubygem-aws-sdk-route53/Makefile index 3bc9c0531db1..d0cafffb3531 100644 --- a/devel/rubygem-aws-sdk-route53/Makefile +++ b/devel/rubygem-aws-sdk-route53/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-route53 PORTVERSION= 1.68.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Route 53 (Route 53) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-route53 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-route53domains/Makefile b/devel/rubygem-aws-sdk-route53domains/Makefile index b7e2af0b8461..816f854a88e4 100644 --- a/devel/rubygem-aws-sdk-route53domains/Makefile +++ b/devel/rubygem-aws-sdk-route53domains/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-route53domains PORTVERSION= 1.41.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Route 53 Domains WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-route53domains LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-route53recoverycluster/Makefile b/devel/rubygem-aws-sdk-route53recoverycluster/Makefile index 4139583bf765..02a1e0ffadbc 100644 --- a/devel/rubygem-aws-sdk-route53recoverycluster/Makefile +++ b/devel/rubygem-aws-sdk-route53recoverycluster/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-route53recoverycluster PORTVERSION= 1.12.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Route53 Recovery Cluster WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-route53recoverycluster LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-route53recoverycontrolconfig/Makefile b/devel/rubygem-aws-sdk-route53recoverycontrolconfig/Makefile index 491c32370c33..713e64353d9e 100644 --- a/devel/rubygem-aws-sdk-route53recoverycontrolconfig/Makefile +++ b/devel/rubygem-aws-sdk-route53recoverycontrolconfig/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-route53recoverycontrolconfig PORTVERSION= 1.11.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Route53 Recovery Control Config WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-route53recoverycontrolconfig LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-route53recoveryreadiness/Makefile b/devel/rubygem-aws-sdk-route53recoveryreadiness/Makefile index 2c0e93d56ba8..4ce020b6196f 100644 --- a/devel/rubygem-aws-sdk-route53recoveryreadiness/Makefile +++ b/devel/rubygem-aws-sdk-route53recoveryreadiness/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-route53recoveryreadiness PORTVERSION= 1.11.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Route53 Recovery Readiness WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-route53recoveryreadiness LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-route53resolver/Makefile b/devel/rubygem-aws-sdk-route53resolver/Makefile index 2c16209c0421..f2a890cda2ab 100644 --- a/devel/rubygem-aws-sdk-route53resolver/Makefile +++ b/devel/rubygem-aws-sdk-route53resolver/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-route53resolver PORTVERSION= 1.38.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Route 53 Resolver (Route53Resolver) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-route53resolver LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-s3/Makefile b/devel/rubygem-aws-sdk-s3/Makefile index 5196830cc126..dab92456100e 100644 --- a/devel/rubygem-aws-sdk-s3/Makefile +++ b/devel/rubygem-aws-sdk-s3/Makefile @@ -1,22 +1,21 @@ PORTNAME= aws-sdk-s3 PORTVERSION= 1.117.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Simple Storage Service (Amazon S3) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-s3 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sdk-kms>=1<2:devel/rubygem-aws-sdk-kms \ rubygem-aws-sigv4>=1.4<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-s3control/Makefile b/devel/rubygem-aws-sdk-s3control/Makefile index 919f75647f9a..6e73cd263d32 100644 --- a/devel/rubygem-aws-sdk-s3control/Makefile +++ b/devel/rubygem-aws-sdk-s3control/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-s3control PORTVERSION= 1.56.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS S3 Control WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-s3control LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-s3outposts/Makefile b/devel/rubygem-aws-sdk-s3outposts/Makefile index 1bad119a50b6..d23e9fa7ba2e 100644 --- a/devel/rubygem-aws-sdk-s3outposts/Makefile +++ b/devel/rubygem-aws-sdk-s3outposts/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-s3outposts PORTVERSION= 1.14.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon S3 on Outposts (Amazon S3 Outposts) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-s3outposts LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-sagemaker/Makefile b/devel/rubygem-aws-sdk-sagemaker/Makefile index b38de1431071..9452eac869bf 100644 --- a/devel/rubygem-aws-sdk-sagemaker/Makefile +++ b/devel/rubygem-aws-sdk-sagemaker/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-sagemaker PORTVERSION= 1.153.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon SageMaker Service (SageMaker) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-sagemaker LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-sagemakeredgemanager/Makefile b/devel/rubygem-aws-sdk-sagemakeredgemanager/Makefile index dbb998265f2a..04c90866e0d8 100644 --- a/devel/rubygem-aws-sdk-sagemakeredgemanager/Makefile +++ b/devel/rubygem-aws-sdk-sagemakeredgemanager/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-sagemakeredgemanager PORTVERSION= 1.13.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Sagemaker Edge Manager WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-sagemakeredgemanager LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-sagemakerfeaturestoreruntime/Makefile b/devel/rubygem-aws-sdk-sagemakerfeaturestoreruntime/Makefile index 6ca3f428ffaa..b6c3d951b395 100644 --- a/devel/rubygem-aws-sdk-sagemakerfeaturestoreruntime/Makefile +++ b/devel/rubygem-aws-sdk-sagemakerfeaturestoreruntime/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-sagemakerfeaturestoreruntime PORTVERSION= 1.13.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon SageMaker Feature Store Runtime WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-sagemakerfeaturestoreruntime LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-sagemakerruntime/Makefile b/devel/rubygem-aws-sdk-sagemakerruntime/Makefile index a73426778b4e..50d1fd9aed42 100644 --- a/devel/rubygem-aws-sdk-sagemakerruntime/Makefile +++ b/devel/rubygem-aws-sdk-sagemakerruntime/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-sagemakerruntime PORTVERSION= 1.44.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon SageMaker Runtime WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-sagemakerruntime LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-savingsplans/Makefile b/devel/rubygem-aws-sdk-savingsplans/Makefile index 0266d7da744c..f89d9bf920c9 100644 --- a/devel/rubygem-aws-sdk-savingsplans/Makefile +++ b/devel/rubygem-aws-sdk-savingsplans/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-savingsplans PORTVERSION= 1.27.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Savings Plans (AWSSavingsPlans) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-savingsplans LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-scheduler/Makefile b/devel/rubygem-aws-sdk-scheduler/Makefile index 4d0638609a64..73c1c26da1da 100644 --- a/devel/rubygem-aws-sdk-scheduler/Makefile +++ b/devel/rubygem-aws-sdk-scheduler/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-scheduler PORTVERSION= 1.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon EventBridge Scheduler WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-scheduler LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-schemas/Makefile b/devel/rubygem-aws-sdk-schemas/Makefile index 72384b589fa1..eee66eb016b8 100644 --- a/devel/rubygem-aws-sdk-schemas/Makefile +++ b/devel/rubygem-aws-sdk-schemas/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-schemas PORTVERSION= 1.24.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Schemas WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-schemas LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-secretsmanager/Makefile b/devel/rubygem-aws-sdk-secretsmanager/Makefile index 0ded679eb4ea..336a87843f4e 100644 --- a/devel/rubygem-aws-sdk-secretsmanager/Makefile +++ b/devel/rubygem-aws-sdk-secretsmanager/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-secretsmanager PORTVERSION= 1.68.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Secrets Manager WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-secretsmanager LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-securityhub/Makefile b/devel/rubygem-aws-sdk-securityhub/Makefile index 1c533bdacd21..441c55ed78d6 100644 --- a/devel/rubygem-aws-sdk-securityhub/Makefile +++ b/devel/rubygem-aws-sdk-securityhub/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-securityhub PORTVERSION= 1.72.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS SecurityHub WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-securityhub LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-serverlessapplicationrepository/Makefile b/devel/rubygem-aws-sdk-serverlessapplicationrepository/Makefile index db8d26fb1240..6ef0c358b6e6 100644 --- a/devel/rubygem-aws-sdk-serverlessapplicationrepository/Makefile +++ b/devel/rubygem-aws-sdk-serverlessapplicationrepository/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-serverlessapplicationrepository PORTVERSION= 1.44.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWSServerlessApplicationRepository WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-serverlessapplicationrepository LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-servicecatalog/Makefile b/devel/rubygem-aws-sdk-servicecatalog/Makefile index 279b13dfb459..45ec49356f16 100644 --- a/devel/rubygem-aws-sdk-servicecatalog/Makefile +++ b/devel/rubygem-aws-sdk-servicecatalog/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-servicecatalog PORTVERSION= 1.74.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Service Catalog WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-servicecatalog LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-servicediscovery/Makefile b/devel/rubygem-aws-sdk-servicediscovery/Makefile index 6d2e56e16359..045d7d35592a 100644 --- a/devel/rubygem-aws-sdk-servicediscovery/Makefile +++ b/devel/rubygem-aws-sdk-servicediscovery/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-servicediscovery PORTVERSION= 1.48.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Cloud Map (ServiceDiscovery) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-servicediscovery LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-servicequotas/Makefile b/devel/rubygem-aws-sdk-servicequotas/Makefile index 74fddd6e4c3e..0fba2e186734 100644 --- a/devel/rubygem-aws-sdk-servicequotas/Makefile +++ b/devel/rubygem-aws-sdk-servicequotas/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-servicequotas PORTVERSION= 1.24.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Service Quotas WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-servicequotas LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-ses/Makefile b/devel/rubygem-aws-sdk-ses/Makefile index 5893cb2b048e..426f5075cc41 100644 --- a/devel/rubygem-aws-sdk-ses/Makefile +++ b/devel/rubygem-aws-sdk-ses/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-ses PORTVERSION= 1.48.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Simple Email Service (Amazon SES) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ses LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-sesv2/Makefile b/devel/rubygem-aws-sdk-sesv2/Makefile index d042f2b6b7c2..824a0e8ee075 100644 --- a/devel/rubygem-aws-sdk-sesv2/Makefile +++ b/devel/rubygem-aws-sdk-sesv2/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-sesv2 PORTVERSION= 1.30.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Simple Email Service (Amazon SES V2) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-sesv2 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-shield/Makefile b/devel/rubygem-aws-sdk-shield/Makefile index 38e98264d4e2..a1d6c50948e0 100644 --- a/devel/rubygem-aws-sdk-shield/Makefile +++ b/devel/rubygem-aws-sdk-shield/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-shield PORTVERSION= 1.50.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Shield WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-shield LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-signer/Makefile b/devel/rubygem-aws-sdk-signer/Makefile index 2a899a8bed6e..8656dd8ef006 100644 --- a/devel/rubygem-aws-sdk-signer/Makefile +++ b/devel/rubygem-aws-sdk-signer/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-signer PORTVERSION= 1.39.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Signer (signer) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-signer LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-simpledb/Makefile b/devel/rubygem-aws-sdk-simpledb/Makefile index 99342a940aea..c15dfcdcac92 100644 --- a/devel/rubygem-aws-sdk-simpledb/Makefile +++ b/devel/rubygem-aws-sdk-simpledb/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-simpledb PORTVERSION= 1.36.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon SimpleDB WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-simpledb LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv2>=1.0<2:devel/rubygem-aws-sigv2 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-sms/Makefile b/devel/rubygem-aws-sdk-sms/Makefile index e6ce68ff3102..1264411193c9 100644 --- a/devel/rubygem-aws-sdk-sms/Makefile +++ b/devel/rubygem-aws-sdk-sms/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-sms PORTVERSION= 1.41.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Server Migration Service (SMS) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-sms LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-snowball/Makefile b/devel/rubygem-aws-sdk-snowball/Makefile index d583e2459ade..f83b9f3020f3 100644 --- a/devel/rubygem-aws-sdk-snowball/Makefile +++ b/devel/rubygem-aws-sdk-snowball/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-snowball PORTVERSION= 1.51.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Import/Export Snowball (Amazon Snowball) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-snowball LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-snowdevicemanagement/Makefile b/devel/rubygem-aws-sdk-snowdevicemanagement/Makefile index e4b35713b440..5fc3ad7b39c8 100644 --- a/devel/rubygem-aws-sdk-snowdevicemanagement/Makefile +++ b/devel/rubygem-aws-sdk-snowdevicemanagement/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-snowdevicemanagement PORTVERSION= 1.8.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Snow Device Management WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-snowdevicemanagement LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-sns/Makefile b/devel/rubygem-aws-sdk-sns/Makefile index b1d22c896f0a..d07c3538683d 100644 --- a/devel/rubygem-aws-sdk-sns/Makefile +++ b/devel/rubygem-aws-sdk-sns/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-sns PORTVERSION= 1.56.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Simple Notification Service (Amazon SNS) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-sns LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-sqs/Makefile b/devel/rubygem-aws-sdk-sqs/Makefile index 7c8de69cf25a..dfce9a3892cb 100644 --- a/devel/rubygem-aws-sdk-sqs/Makefile +++ b/devel/rubygem-aws-sdk-sqs/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-sqs PORTVERSION= 1.52.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Simple Queue Service (Amazon SQS) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-sqs LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-ssm/Makefile b/devel/rubygem-aws-sdk-ssm/Makefile index a3058f1c5992..56b5c70544da 100644 --- a/devel/rubygem-aws-sdk-ssm/Makefile +++ b/devel/rubygem-aws-sdk-ssm/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-ssm PORTVERSION= 1.145.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Simple Systems Manager (SSM) (Amazon SSM) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ssm LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-ssmcontacts/Makefile b/devel/rubygem-aws-sdk-ssmcontacts/Makefile index da4b4c43c8db..ee4096b0fc69 100644 --- a/devel/rubygem-aws-sdk-ssmcontacts/Makefile +++ b/devel/rubygem-aws-sdk-ssmcontacts/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-ssmcontacts PORTVERSION= 1.15.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Systems Manager Incident Manager Contacts (SSM Contacts) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ssmcontacts LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-ssmincidents/Makefile b/devel/rubygem-aws-sdk-ssmincidents/Makefile index 1b620041ca67..ead44c2c8d0d 100644 --- a/devel/rubygem-aws-sdk-ssmincidents/Makefile +++ b/devel/rubygem-aws-sdk-ssmincidents/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-ssmincidents PORTVERSION= 1.20.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Systems Manager Incident Manager (SSM Incidents) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ssmincidents LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-ssmsap/Makefile b/devel/rubygem-aws-sdk-ssmsap/Makefile index a10f0f5d351b..62b999da68d9 100644 --- a/devel/rubygem-aws-sdk-ssmsap/Makefile +++ b/devel/rubygem-aws-sdk-ssmsap/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-ssmsap PORTVERSION= 1.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Systems Manager for SAP (SsmSap) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ssmsap LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-sso/Makefile b/devel/rubygem-aws-sdk-sso/Makefile index fc675c19c55e..e20a663ec68b 100644 --- a/devel/rubygem-aws-sdk-sso/Makefile +++ b/devel/rubygem-aws-sdk-sso/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-sso PORTVERSION= 1.11.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Single Sign-On (SSO) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-sso LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.105.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-ssoadmin/Makefile b/devel/rubygem-aws-sdk-ssoadmin/Makefile index 44e63df1317e..b975c4bf9579 100644 --- a/devel/rubygem-aws-sdk-ssoadmin/Makefile +++ b/devel/rubygem-aws-sdk-ssoadmin/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-ssoadmin PORTVERSION= 1.21.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Single Sign-On Admin (SSO Admin) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ssoadmin LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-ssooidc/Makefile b/devel/rubygem-aws-sdk-ssooidc/Makefile index 2f4063f0145c..e7fbb88cc97a 100644 --- a/devel/rubygem-aws-sdk-ssooidc/Makefile +++ b/devel/rubygem-aws-sdk-ssooidc/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-ssooidc PORTVERSION= 1.23.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS SSO OIDC (SSO OIDC) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-ssooidc LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.131.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-states/Makefile b/devel/rubygem-aws-sdk-states/Makefile index c379df68a2ff..7b7858a96a29 100644 --- a/devel/rubygem-aws-sdk-states/Makefile +++ b/devel/rubygem-aws-sdk-states/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-states PORTVERSION= 1.50.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Step Functions (AWS SFN) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-states LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-storagegateway/Makefile b/devel/rubygem-aws-sdk-storagegateway/Makefile index 686bedce94f4..50f09e09f0f6 100644 --- a/devel/rubygem-aws-sdk-storagegateway/Makefile +++ b/devel/rubygem-aws-sdk-storagegateway/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-storagegateway PORTVERSION= 1.69.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Storage Gateway WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-storagegateway LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-support/Makefile b/devel/rubygem-aws-sdk-support/Makefile index 379f2c8cb1de..6c75d962048b 100644 --- a/devel/rubygem-aws-sdk-support/Makefile +++ b/devel/rubygem-aws-sdk-support/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-support PORTVERSION= 1.42.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Support WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-support LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-supportapp/Makefile b/devel/rubygem-aws-sdk-supportapp/Makefile index 5ee40a3b2685..1318f03e6a9b 100644 --- a/devel/rubygem-aws-sdk-supportapp/Makefile +++ b/devel/rubygem-aws-sdk-supportapp/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-supportapp PORTVERSION= 1.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Support App WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-supportapp LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-swf/Makefile b/devel/rubygem-aws-sdk-swf/Makefile index d32b09db97b0..8811bf6e86bc 100644 --- a/devel/rubygem-aws-sdk-swf/Makefile +++ b/devel/rubygem-aws-sdk-swf/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-swf PORTVERSION= 1.37.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Simple Workflow Service (Amazon SWF) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-swf LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-synthetics/Makefile b/devel/rubygem-aws-sdk-synthetics/Makefile index 89d505f9fb97..60225286084c 100644 --- a/devel/rubygem-aws-sdk-synthetics/Makefile +++ b/devel/rubygem-aws-sdk-synthetics/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-synthetics PORTVERSION= 1.29.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Synthetics WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-synthetics LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-textract/Makefile b/devel/rubygem-aws-sdk-textract/Makefile index 46c2f43150b2..116ff1fa9255 100644 --- a/devel/rubygem-aws-sdk-textract/Makefile +++ b/devel/rubygem-aws-sdk-textract/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-textract PORTVERSION= 1.42.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Textract WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-textract LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-timestreamquery/Makefile b/devel/rubygem-aws-sdk-timestreamquery/Makefile index 06b5e4edbe2f..24d4fd76bdf9 100644 --- a/devel/rubygem-aws-sdk-timestreamquery/Makefile +++ b/devel/rubygem-aws-sdk-timestreamquery/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-timestreamquery PORTVERSION= 1.17.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Timestream Query (Timestream Query) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-timestreamquery LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-timestreamwrite/Makefile b/devel/rubygem-aws-sdk-timestreamwrite/Makefile index c4002048aacf..ab8417f05e0d 100644 --- a/devel/rubygem-aws-sdk-timestreamwrite/Makefile +++ b/devel/rubygem-aws-sdk-timestreamwrite/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-timestreamwrite PORTVERSION= 1.15.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Timestream Write (Timestream Write) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-timestreamwrite LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-transcribeservice/Makefile b/devel/rubygem-aws-sdk-transcribeservice/Makefile index 9707085aeee6..3309dfdcb42f 100644 --- a/devel/rubygem-aws-sdk-transcribeservice/Makefile +++ b/devel/rubygem-aws-sdk-transcribeservice/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-transcribeservice PORTVERSION= 1.77.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Transcribe Service WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-transcribeservice LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-transcribestreamingservice/Makefile b/devel/rubygem-aws-sdk-transcribestreamingservice/Makefile index 46e99d3179ab..214f099f5935 100644 --- a/devel/rubygem-aws-sdk-transcribestreamingservice/Makefile +++ b/devel/rubygem-aws-sdk-transcribestreamingservice/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-transcribestreamingservice PORTVERSION= 1.44.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Transcribe Streaming Service WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-transcribestreamingservice LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-transfer/Makefile b/devel/rubygem-aws-sdk-transfer/Makefile index 51446abc077a..1400e7f8b1fa 100644 --- a/devel/rubygem-aws-sdk-transfer/Makefile +++ b/devel/rubygem-aws-sdk-transfer/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-transfer PORTVERSION= 1.63.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Transfer for SFTP (AWS Transfer) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-transfer LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-translate/Makefile b/devel/rubygem-aws-sdk-translate/Makefile index cf23c927f4ef..a0fb619d9a89 100644 --- a/devel/rubygem-aws-sdk-translate/Makefile +++ b/devel/rubygem-aws-sdk-translate/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-translate PORTVERSION= 1.48.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Translate WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-translate LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-voiceid/Makefile b/devel/rubygem-aws-sdk-voiceid/Makefile index f43b92033a7c..6eb179e8d739 100644 --- a/devel/rubygem-aws-sdk-voiceid/Makefile +++ b/devel/rubygem-aws-sdk-voiceid/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-voiceid PORTVERSION= 1.10.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon Voice ID WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-voiceid LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-waf/Makefile b/devel/rubygem-aws-sdk-waf/Makefile index e28823a0870d..eb327406f91f 100644 --- a/devel/rubygem-aws-sdk-waf/Makefile +++ b/devel/rubygem-aws-sdk-waf/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-waf PORTVERSION= 1.48.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS WAF (WAF) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-waf LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-wafregional/Makefile b/devel/rubygem-aws-sdk-wafregional/Makefile index 3ed4f0990634..220f6d84ebc3 100644 --- a/devel/rubygem-aws-sdk-wafregional/Makefile +++ b/devel/rubygem-aws-sdk-wafregional/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-wafregional PORTVERSION= 1.49.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS WAF Regional (WAF Regional) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-wafregional LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-wafv2/Makefile b/devel/rubygem-aws-sdk-wafv2/Makefile index 4a452d727594..14cf92bdac3b 100644 --- a/devel/rubygem-aws-sdk-wafv2/Makefile +++ b/devel/rubygem-aws-sdk-wafv2/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-wafv2 PORTVERSION= 1.45.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS WAFV2 (WAFV2) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-wafv2 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-wellarchitected/Makefile b/devel/rubygem-aws-sdk-wellarchitected/Makefile index 5be6686e5c64..0f64ba1bb918 100644 --- a/devel/rubygem-aws-sdk-wellarchitected/Makefile +++ b/devel/rubygem-aws-sdk-wellarchitected/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-wellarchitected PORTVERSION= 1.19.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS Well-Architected Tool (Well-Architected) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-wellarchitected LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-workdocs/Makefile b/devel/rubygem-aws-sdk-workdocs/Makefile index fa7d1b96afca..fa502bd7c464 100644 --- a/devel/rubygem-aws-sdk-workdocs/Makefile +++ b/devel/rubygem-aws-sdk-workdocs/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-workdocs PORTVERSION= 1.41.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon WorkDocs WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-workdocs LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-worklink/Makefile b/devel/rubygem-aws-sdk-worklink/Makefile index e61fc1bbef3a..fcae64f95b99 100644 --- a/devel/rubygem-aws-sdk-worklink/Makefile +++ b/devel/rubygem-aws-sdk-worklink/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-worklink PORTVERSION= 1.34.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon WorkLink (WorkLink) WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-worklink LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-workmail/Makefile b/devel/rubygem-aws-sdk-workmail/Makefile index 4baa3bef693a..216e3c3325ca 100644 --- a/devel/rubygem-aws-sdk-workmail/Makefile +++ b/devel/rubygem-aws-sdk-workmail/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-workmail PORTVERSION= 1.52.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon WorkMail WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-workmail LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-workmailmessageflow/Makefile b/devel/rubygem-aws-sdk-workmailmessageflow/Makefile index 5f177c85488b..9fcbba7ebf62 100644 --- a/devel/rubygem-aws-sdk-workmailmessageflow/Makefile +++ b/devel/rubygem-aws-sdk-workmailmessageflow/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-workmailmessageflow PORTVERSION= 1.22.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon WorkMail Message Flow WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-workmailmessageflow LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-workspaces/Makefile b/devel/rubygem-aws-sdk-workspaces/Makefile index 4fc49774e2be..438835426a04 100644 --- a/devel/rubygem-aws-sdk-workspaces/Makefile +++ b/devel/rubygem-aws-sdk-workspaces/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-workspaces PORTVERSION= 1.77.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon WorkSpaces WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-workspaces LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-workspacesweb/Makefile b/devel/rubygem-aws-sdk-workspacesweb/Makefile index ce4b9f72f336..405831b3b2d7 100644 --- a/devel/rubygem-aws-sdk-workspacesweb/Makefile +++ b/devel/rubygem-aws-sdk-workspacesweb/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-workspacesweb PORTVERSION= 1.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for Amazon WorkSpaces Web WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-workspacesweb LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk-xray/Makefile b/devel/rubygem-aws-sdk-xray/Makefile index 09122f312a8a..84c1e4475fa7 100644 --- a/devel/rubygem-aws-sdk-xray/Makefile +++ b/devel/rubygem-aws-sdk-xray/Makefile @@ -1,21 +1,20 @@ PORTNAME= aws-sdk-xray PORTVERSION= 1.50.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official AWS Ruby gem for AWS X-Ray WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-xray LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-core>=3.165.0<4:devel/rubygem-aws-sdk-core \ rubygem-aws-sigv4>=1.1<2:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk/Makefile b/devel/rubygem-aws-sdk/Makefile index 3c989b138dbf..3de8741d2b2a 100644 --- a/devel/rubygem-aws-sdk/Makefile +++ b/devel/rubygem-aws-sdk/Makefile @@ -1,20 +1,19 @@ PORTNAME= aws-sdk PORTVERSION= 3.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= AWS SDK for Ruby WWW= https://github.com/aws/aws-sdk-ruby LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sdk-resources>=3<4:devel/rubygem-aws-sdk-resources USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sdk2/Makefile b/devel/rubygem-aws-sdk2/Makefile index 219af055d2d4..59112c021b0d 100644 --- a/devel/rubygem-aws-sdk2/Makefile +++ b/devel/rubygem-aws-sdk2/Makefile @@ -1,22 +1,21 @@ PORTNAME= aws-sdk PORTVERSION= 2.11.632 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 2 MAINTAINER= sunpoet@FreeBSD.org COMMENT= AWS SDK for Ruby WWW= https://github.com/aws/aws-sdk-ruby LICENSE= APACHE20 RUN_DEPENDS= rubygem-aws-sdk-resources2>=${PORTVERSION}:devel/rubygem-aws-sdk-resources2 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^2\. .include diff --git a/devel/rubygem-aws-sigv2/Makefile b/devel/rubygem-aws-sigv2/Makefile index 53c390a9d793..9b7636f4e59d 100644 --- a/devel/rubygem-aws-sigv2/Makefile +++ b/devel/rubygem-aws-sigv2/Makefile @@ -1,18 +1,17 @@ PORTNAME= aws-sigv2 PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Amazon Web Services Signature Version 2 signing library WWW= https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sigv2 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-aws-sigv4/Makefile b/devel/rubygem-aws-sigv4/Makefile index ec9a7f837cf6..a8d594de40db 100644 --- a/devel/rubygem-aws-sigv4/Makefile +++ b/devel/rubygem-aws-sigv4/Makefile @@ -1,20 +1,19 @@ PORTNAME= aws-sigv4 PORTVERSION= 1.5.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Amazon Web Services Signature Version 4 signing library WWW= https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sigv4 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-eventstream>=1.0.2<2:devel/rubygem-aws-eventstream USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-axiom-types/Makefile b/devel/rubygem-axiom-types/Makefile index 8548a285a86b..abbaf61b0869 100644 --- a/devel/rubygem-axiom-types/Makefile +++ b/devel/rubygem-axiom-types/Makefile @@ -1,21 +1,20 @@ PORTNAME= axiom-types PORTVERSION= 0.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Abstract types for logic programming in Ruby WWW= https://github.com/dkubb/axiom-types LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-descendants_tracker>=0.0.4:devel/rubygem-descendants_tracker \ rubygem-ice_nine>=0.11.0:devel/rubygem-ice_nine \ rubygem-thread_safe>=0.3.1:devel/rubygem-thread_safe NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-azure-storage-blob/Makefile b/devel/rubygem-azure-storage-blob/Makefile index 9ff5ed12e903..b9d19a828fe6 100644 --- a/devel/rubygem-azure-storage-blob/Makefile +++ b/devel/rubygem-azure-storage-blob/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure-storage-blob PORTVERSION= 2.0.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Storage Blob Client Library for Ruby WWW= https://github.com/Azure/azure-storage-ruby/tree/master/blob LICENSE= MIT RUN_DEPENDS= rubygem-azure-storage-common>=2.0<3:devel/rubygem-azure-storage-common \ rubygem-nokogiri>=1.10.8<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure-storage-common/Makefile b/devel/rubygem-azure-storage-common/Makefile index 4bbc0b913a3e..33cea9a4e395 100644 --- a/devel/rubygem-azure-storage-common/Makefile +++ b/devel/rubygem-azure-storage-common/Makefile @@ -1,23 +1,22 @@ PORTNAME= azure-storage-common PORTVERSION= 2.0.4 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Storage Common Client Library for Ruby WWW= https://github.com/Azure/azure-storage-ruby/tree/master/common LICENSE= MIT RUN_DEPENDS= rubygem-faraday1>=1.0<2:www/rubygem-faraday1 \ rubygem-faraday_middleware>=1.0.0<2:www/rubygem-faraday_middleware \ rubygem-net-http-persistent>=4.0<5:www/rubygem-net-http-persistent \ rubygem-nokogiri>=1.10.8<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure-storage-file/Makefile b/devel/rubygem-azure-storage-file/Makefile index 285be1628439..d12e2923cc7c 100644 --- a/devel/rubygem-azure-storage-file/Makefile +++ b/devel/rubygem-azure-storage-file/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure-storage-file PORTVERSION= 2.0.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Storage File Client Library for Ruby WWW= https://github.com/Azure/azure-storage-ruby/tree/master/file LICENSE= MIT RUN_DEPENDS= rubygem-azure-storage-common>=2.0<3:devel/rubygem-azure-storage-common \ rubygem-nokogiri>=1.10.8<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure-storage-queue/Makefile b/devel/rubygem-azure-storage-queue/Makefile index 7dc4b7f22373..243ba98e87dc 100644 --- a/devel/rubygem-azure-storage-queue/Makefile +++ b/devel/rubygem-azure-storage-queue/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure-storage-queue PORTVERSION= 2.0.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Storage Queue Client Library for Ruby WWW= https://github.com/Azure/azure-storage-ruby/tree/master/queue LICENSE= MIT RUN_DEPENDS= rubygem-azure-storage-common>=2.0<3:devel/rubygem-azure-storage-common \ rubygem-nokogiri>=1.10.8<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure-storage-table/Makefile b/devel/rubygem-azure-storage-table/Makefile index 492c2db117ca..5e76c1f83284 100644 --- a/devel/rubygem-azure-storage-table/Makefile +++ b/devel/rubygem-azure-storage-table/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure-storage-table PORTVERSION= 2.0.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Storage Table Client Library for Ruby WWW= https://github.com/Azure/azure-storage-ruby/tree/master/table LICENSE= MIT RUN_DEPENDS= rubygem-azure-storage-common>=2.0<3:devel/rubygem-azure-storage-common \ rubygem-nokogiri>=1.10.8<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure-storage/Makefile b/devel/rubygem-azure-storage/Makefile index b98a621f5b56..24ce975f3820 100644 --- a/devel/rubygem-azure-storage/Makefile +++ b/devel/rubygem-azure-storage/Makefile @@ -1,23 +1,22 @@ PORTNAME= azure-storage PORTVERSION= 0.15.0.preview PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Storage Client Library for Ruby WWW= https://github.com/Azure/azure-storage-ruby LICENSE= MIT RUN_DEPENDS= rubygem-azure-core>=0.1<1:net/rubygem-azure-core \ rubygem-faraday0>=0.9<1:www/rubygem-faraday0 \ rubygem-faraday_middleware0>=0.10<1:www/rubygem-faraday_middleware0 \ rubygem-nokogiri>=1.6.8<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_anomalydetector/Makefile b/devel/rubygem-azure_cognitiveservices_anomalydetector/Makefile index 3638fd5aca6b..70c281fe01b8 100644 --- a/devel/rubygem-azure_cognitiveservices_anomalydetector/Makefile +++ b/devel/rubygem-azure_cognitiveservices_anomalydetector/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_anomalydetector PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cognitive Services Anomaly Detector Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_anomalydetector LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_autosuggest/Makefile b/devel/rubygem-azure_cognitiveservices_autosuggest/Makefile index 2a361afd2d90..41e3ea2f4f3b 100644 --- a/devel/rubygem-azure_cognitiveservices_autosuggest/Makefile +++ b/devel/rubygem-azure_cognitiveservices_autosuggest/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_autosuggest PORTVERSION= 0.17.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cognitive Services Auto Suggest Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_autosuggest LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_computervision/Makefile b/devel/rubygem-azure_cognitiveservices_computervision/Makefile index f05f0719805a..490553e8179a 100644 --- a/devel/rubygem-azure_cognitiveservices_computervision/Makefile +++ b/devel/rubygem-azure_cognitiveservices_computervision/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_computervision PORTVERSION= 0.20.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cognitive Services Computer Vision Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_computervision LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_contentmoderator/Makefile b/devel/rubygem-azure_cognitiveservices_contentmoderator/Makefile index 2117d1f235e3..e6b3daa7a674 100644 --- a/devel/rubygem-azure_cognitiveservices_contentmoderator/Makefile +++ b/devel/rubygem-azure_cognitiveservices_contentmoderator/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_contentmoderator PORTVERSION= 0.17.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cognitive Services Content Moderator Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_contentmoderator LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_customimagesearch/Makefile b/devel/rubygem-azure_cognitiveservices_customimagesearch/Makefile index d2b60289f184..efa299c4dec4 100644 --- a/devel/rubygem-azure_cognitiveservices_customimagesearch/Makefile +++ b/devel/rubygem-azure_cognitiveservices_customimagesearch/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_customimagesearch PORTVERSION= 0.17.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cognitive Services Custom Image Search Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_customimagesearch LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_customsearch/Makefile b/devel/rubygem-azure_cognitiveservices_customsearch/Makefile index 6f18ded8101b..b7a1f80fb2c1 100644 --- a/devel/rubygem-azure_cognitiveservices_customsearch/Makefile +++ b/devel/rubygem-azure_cognitiveservices_customsearch/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_customsearch PORTVERSION= 0.18.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cognitive Services Custom Search Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_customsearch LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_customvisionprediction/Makefile b/devel/rubygem-azure_cognitiveservices_customvisionprediction/Makefile index a1f4af36b056..19a41c590c02 100644 --- a/devel/rubygem-azure_cognitiveservices_customvisionprediction/Makefile +++ b/devel/rubygem-azure_cognitiveservices_customvisionprediction/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_customvisionprediction PORTVERSION= 0.17.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Cognitive Services Custom Vision Prediction Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_customvisionprediction LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_customvisiontraining/Makefile b/devel/rubygem-azure_cognitiveservices_customvisiontraining/Makefile index 1d54ba89bc0b..38e9a5f7fb46 100644 --- a/devel/rubygem-azure_cognitiveservices_customvisiontraining/Makefile +++ b/devel/rubygem-azure_cognitiveservices_customvisiontraining/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_customvisiontraining PORTVERSION= 0.17.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cognitive Services Custom Vision Training Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_customvisiontraining LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_entitysearch/Makefile b/devel/rubygem-azure_cognitiveservices_entitysearch/Makefile index d85096e26ef6..16d47375eeb6 100644 --- a/devel/rubygem-azure_cognitiveservices_entitysearch/Makefile +++ b/devel/rubygem-azure_cognitiveservices_entitysearch/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_entitysearch PORTVERSION= 0.18.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cognitive Services Entity Search Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_entitysearch LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_face/Makefile b/devel/rubygem-azure_cognitiveservices_face/Makefile index 9e6d3d9b2336..cb2ce42bef54 100644 --- a/devel/rubygem-azure_cognitiveservices_face/Makefile +++ b/devel/rubygem-azure_cognitiveservices_face/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_face PORTVERSION= 0.19.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cognitive Services Face Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_face LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_formrecognizer/Makefile b/devel/rubygem-azure_cognitiveservices_formrecognizer/Makefile index 187bf9f777d6..46d0e102d81a 100644 --- a/devel/rubygem-azure_cognitiveservices_formrecognizer/Makefile +++ b/devel/rubygem-azure_cognitiveservices_formrecognizer/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_formrecognizer PORTVERSION= 0.17.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cognitiveservices Form Recognizer Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_formrecognizer LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_imagesearch/Makefile b/devel/rubygem-azure_cognitiveservices_imagesearch/Makefile index 162450624399..f89dc74e9f3e 100644 --- a/devel/rubygem-azure_cognitiveservices_imagesearch/Makefile +++ b/devel/rubygem-azure_cognitiveservices_imagesearch/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_imagesearch PORTVERSION= 0.18.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cognitive Services Image Search Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_imagesearch LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_localsearch/Makefile b/devel/rubygem-azure_cognitiveservices_localsearch/Makefile index 166af282d366..d780df5bc9bc 100644 --- a/devel/rubygem-azure_cognitiveservices_localsearch/Makefile +++ b/devel/rubygem-azure_cognitiveservices_localsearch/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_localsearch PORTVERSION= 0.17.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cognitive Services Local Search Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_localsearch LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_luisauthoring/Makefile b/devel/rubygem-azure_cognitiveservices_luisauthoring/Makefile index 3165134130ef..477828039fec 100644 --- a/devel/rubygem-azure_cognitiveservices_luisauthoring/Makefile +++ b/devel/rubygem-azure_cognitiveservices_luisauthoring/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_luisauthoring PORTVERSION= 0.18.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cognitive Services LUIS Runtime Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_luisauthoring LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_luisruntime/Makefile b/devel/rubygem-azure_cognitiveservices_luisruntime/Makefile index 5b117919c11a..4feb77174fb0 100644 --- a/devel/rubygem-azure_cognitiveservices_luisruntime/Makefile +++ b/devel/rubygem-azure_cognitiveservices_luisruntime/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_luisruntime PORTVERSION= 0.18.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cognitive Services LUIS Runtime Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_luisruntime LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_newssearch/Makefile b/devel/rubygem-azure_cognitiveservices_newssearch/Makefile index ef1c56718bc7..63f09257c7a5 100644 --- a/devel/rubygem-azure_cognitiveservices_newssearch/Makefile +++ b/devel/rubygem-azure_cognitiveservices_newssearch/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_newssearch PORTVERSION= 0.18.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cognitive Services News Search Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_newssearch LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_personalizer/Makefile b/devel/rubygem-azure_cognitiveservices_personalizer/Makefile index 3e31509838be..4e0cdc12b834 100644 --- a/devel/rubygem-azure_cognitiveservices_personalizer/Makefile +++ b/devel/rubygem-azure_cognitiveservices_personalizer/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_personalizer PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cognitiveservices Personalizer Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_personalizer LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_qnamaker/Makefile b/devel/rubygem-azure_cognitiveservices_qnamaker/Makefile index 598f02264aff..c575ae888ef4 100644 --- a/devel/rubygem-azure_cognitiveservices_qnamaker/Makefile +++ b/devel/rubygem-azure_cognitiveservices_qnamaker/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_qnamaker PORTVERSION= 0.18.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cognitive Services QnAMaker Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_qnamaker LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_qnamakerruntime/Makefile b/devel/rubygem-azure_cognitiveservices_qnamakerruntime/Makefile index c9204fdf2fd3..118cc0082a12 100644 --- a/devel/rubygem-azure_cognitiveservices_qnamakerruntime/Makefile +++ b/devel/rubygem-azure_cognitiveservices_qnamakerruntime/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_qnamakerruntime PORTVERSION= 0.17.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure CognitiveservicesQnamakerruntime Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_qnamakerruntime LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_spellcheck/Makefile b/devel/rubygem-azure_cognitiveservices_spellcheck/Makefile index 88bebffc977f..586708825845 100644 --- a/devel/rubygem-azure_cognitiveservices_spellcheck/Makefile +++ b/devel/rubygem-azure_cognitiveservices_spellcheck/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_spellcheck PORTVERSION= 0.18.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cognitive Services Spell Check Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_spellcheck LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_textanalytics/Makefile b/devel/rubygem-azure_cognitiveservices_textanalytics/Makefile index 00e545fe4fca..98a5fc68c18f 100644 --- a/devel/rubygem-azure_cognitiveservices_textanalytics/Makefile +++ b/devel/rubygem-azure_cognitiveservices_textanalytics/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_textanalytics PORTVERSION= 0.17.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cognitive Services Text Analytics Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_textanalytics LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_videosearch/Makefile b/devel/rubygem-azure_cognitiveservices_videosearch/Makefile index e09f1bc90bf6..a5f35de13814 100644 --- a/devel/rubygem-azure_cognitiveservices_videosearch/Makefile +++ b/devel/rubygem-azure_cognitiveservices_videosearch/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_videosearch PORTVERSION= 0.18.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cognitive Services Video Search Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_videosearch LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_visualsearch/Makefile b/devel/rubygem-azure_cognitiveservices_visualsearch/Makefile index 106a5905ce64..ef606acbfc29 100644 --- a/devel/rubygem-azure_cognitiveservices_visualsearch/Makefile +++ b/devel/rubygem-azure_cognitiveservices_visualsearch/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_visualsearch PORTVERSION= 0.18.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cognitive Services Visual Search Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_visualsearch LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_cognitiveservices_websearch/Makefile b/devel/rubygem-azure_cognitiveservices_websearch/Makefile index e3be4ddd1ce5..6a142bb4dea0 100644 --- a/devel/rubygem-azure_cognitiveservices_websearch/Makefile +++ b/devel/rubygem-azure_cognitiveservices_websearch/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_cognitiveservices_websearch PORTVERSION= 0.18.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cognitive Services Web Search Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_cognitiveservices_websearch LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_event_grid/Makefile b/devel/rubygem-azure_event_grid/Makefile index a24dc7c93461..c1519fa5f87d 100644 --- a/devel/rubygem-azure_event_grid/Makefile +++ b/devel/rubygem-azure_event_grid/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_event_grid PORTVERSION= 0.18.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Event Grid Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_event_grid LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_graph_rbac/Makefile b/devel/rubygem-azure_graph_rbac/Makefile index 2f645994bfdc..f9dfba4638e5 100644 --- a/devel/rubygem-azure_graph_rbac/Makefile +++ b/devel/rubygem-azure_graph_rbac/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_graph_rbac PORTVERSION= 0.17.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Active Directory Graph Rbac Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_graph_rbac LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_key_vault/Makefile b/devel/rubygem-azure_key_vault/Makefile index 1e0d79aab62f..33837df64719 100644 --- a/devel/rubygem-azure_key_vault/Makefile +++ b/devel/rubygem-azure_key_vault/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_key_vault PORTVERSION= 0.19.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Key Vault Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_key_vault LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_adhybridhealth_service/Makefile b/devel/rubygem-azure_mgmt_adhybridhealth_service/Makefile index 485846e54dad..c4feb15ea648 100644 --- a/devel/rubygem-azure_mgmt_adhybridhealth_service/Makefile +++ b/devel/rubygem-azure_mgmt_adhybridhealth_service/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_adhybridhealth_service PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure AD Hybrid Health Service Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_adhybridhealth_service LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_advisor/Makefile b/devel/rubygem-azure_mgmt_advisor/Makefile index 5033d19db1c0..5a077f413d02 100644 --- a/devel/rubygem-azure_mgmt_advisor/Makefile +++ b/devel/rubygem-azure_mgmt_advisor/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_advisor PORTVERSION= 0.17.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Advisor Services Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_advisor LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_alerts_management/Makefile b/devel/rubygem-azure_mgmt_alerts_management/Makefile index e43e5043d8b1..f8842c4cef48 100644 --- a/devel/rubygem-azure_mgmt_alerts_management/Makefile +++ b/devel/rubygem-azure_mgmt_alerts_management/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_alerts_management PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Alerts Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_alerts_management LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_analysis_services/Makefile b/devel/rubygem-azure_mgmt_analysis_services/Makefile index 4cc04f6bc517..74f02b62e4af 100644 --- a/devel/rubygem-azure_mgmt_analysis_services/Makefile +++ b/devel/rubygem-azure_mgmt_analysis_services/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_analysis_services PORTVERSION= 0.17.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Analysis Services Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_analysis_services LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_api_management/Makefile b/devel/rubygem-azure_mgmt_api_management/Makefile index 2424f99a15ec..836632e89ee5 100644 --- a/devel/rubygem-azure_mgmt_api_management/Makefile +++ b/devel/rubygem-azure_mgmt_api_management/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_api_management PORTVERSION= 0.19.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure API Management Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_api_management LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_appconfiguration/Makefile b/devel/rubygem-azure_mgmt_appconfiguration/Makefile index 7f17b4b2104f..3f2a9707e50a 100644 --- a/devel/rubygem-azure_mgmt_appconfiguration/Makefile +++ b/devel/rubygem-azure_mgmt_appconfiguration/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_appconfiguration PORTVERSION= 0.17.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Appconfiguration Client Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_appconfiguration LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_attestation/Makefile b/devel/rubygem-azure_mgmt_attestation/Makefile index c4d24ae590e7..16de09b19901 100644 --- a/devel/rubygem-azure_mgmt_attestation/Makefile +++ b/devel/rubygem-azure_mgmt_attestation/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_attestation PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Attestation Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_attestation LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_authorization/Makefile b/devel/rubygem-azure_mgmt_authorization/Makefile index b064b5a04bea..3197a6bb9833 100644 --- a/devel/rubygem-azure_mgmt_authorization/Makefile +++ b/devel/rubygem-azure_mgmt_authorization/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_authorization PORTVERSION= 0.18.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Role Based Authorization Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_authorization LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_automanage/Makefile b/devel/rubygem-azure_mgmt_automanage/Makefile index 7ff376841883..dbee456dc881 100644 --- a/devel/rubygem-azure_mgmt_automanage/Makefile +++ b/devel/rubygem-azure_mgmt_automanage/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_automanage PORTVERSION= 0.17.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Automanage Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_automanage LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_automation/Makefile b/devel/rubygem-azure_mgmt_automation/Makefile index c630dad80347..01bdb30b9850 100644 --- a/devel/rubygem-azure_mgmt_automation/Makefile +++ b/devel/rubygem-azure_mgmt_automation/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_automation PORTVERSION= 0.17.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Automation Services Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_automation LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_azurestack/Makefile b/devel/rubygem-azure_mgmt_azurestack/Makefile index eacf0c5b476b..96a77ae2f34a 100644 --- a/devel/rubygem-azure_mgmt_azurestack/Makefile +++ b/devel/rubygem-azure_mgmt_azurestack/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_azurestack PORTVERSION= 0.17.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Azure Stack Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_azurestack LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_azurestack_hci/Makefile b/devel/rubygem-azure_mgmt_azurestack_hci/Makefile index ee288ea1301c..9068cbbe44a3 100644 --- a/devel/rubygem-azure_mgmt_azurestack_hci/Makefile +++ b/devel/rubygem-azure_mgmt_azurestack_hci/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_azurestack_hci PORTVERSION= 0.17.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Azure Stack HCI Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_azurestack_hci LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_batch/Makefile b/devel/rubygem-azure_mgmt_batch/Makefile index 1eb8abf10baf..3bc2ca94deed 100644 --- a/devel/rubygem-azure_mgmt_batch/Makefile +++ b/devel/rubygem-azure_mgmt_batch/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_batch PORTVERSION= 0.18.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Batch Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_batch LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_batchai/Makefile b/devel/rubygem-azure_mgmt_batchai/Makefile index 20e339439b63..55845b413838 100644 --- a/devel/rubygem-azure_mgmt_batchai/Makefile +++ b/devel/rubygem-azure_mgmt_batchai/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_batchai PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Batch AI Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_batchai LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_billing/Makefile b/devel/rubygem-azure_mgmt_billing/Makefile index 916788bc11e7..c2f207bff3e8 100644 --- a/devel/rubygem-azure_mgmt_billing/Makefile +++ b/devel/rubygem-azure_mgmt_billing/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_billing PORTVERSION= 0.17.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Billing Services Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_billing LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_bot_service/Makefile b/devel/rubygem-azure_mgmt_bot_service/Makefile index b9e8dd723d1a..8fd27ebe5249 100644 --- a/devel/rubygem-azure_mgmt_bot_service/Makefile +++ b/devel/rubygem-azure_mgmt_bot_service/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_bot_service PORTVERSION= 0.17.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Bot Service Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_bot_service LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_cdn/Makefile b/devel/rubygem-azure_mgmt_cdn/Makefile index a36fb0681d14..06b081c8ba60 100644 --- a/devel/rubygem-azure_mgmt_cdn/Makefile +++ b/devel/rubygem-azure_mgmt_cdn/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_cdn PORTVERSION= 0.18.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure CDN Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_cdn LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_cognitive_services/Makefile b/devel/rubygem-azure_mgmt_cognitive_services/Makefile index b6847bd026f7..590c2768c5b6 100644 --- a/devel/rubygem-azure_mgmt_cognitive_services/Makefile +++ b/devel/rubygem-azure_mgmt_cognitive_services/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_cognitive_services PORTVERSION= 0.19.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cognitive Services Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_cognitive_services LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_commerce/Makefile b/devel/rubygem-azure_mgmt_commerce/Makefile index 5ac413f8db73..15489b72891f 100644 --- a/devel/rubygem-azure_mgmt_commerce/Makefile +++ b/devel/rubygem-azure_mgmt_commerce/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_commerce PORTVERSION= 0.17.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Commerce Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_commerce LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_compute/Makefile b/devel/rubygem-azure_mgmt_compute/Makefile index 4bb58f581c9e..968ec0d2a4ff 100644 --- a/devel/rubygem-azure_mgmt_compute/Makefile +++ b/devel/rubygem-azure_mgmt_compute/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_compute PORTVERSION= 0.22.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Compute Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_compute LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_consumption/Makefile b/devel/rubygem-azure_mgmt_consumption/Makefile index 84e4e0aaa0e6..51da9dbd155b 100644 --- a/devel/rubygem-azure_mgmt_consumption/Makefile +++ b/devel/rubygem-azure_mgmt_consumption/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_consumption PORTVERSION= 0.18.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Consumption Services Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_consumption LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_container_instance/Makefile b/devel/rubygem-azure_mgmt_container_instance/Makefile index 57e4162c423b..a2b6e0755d1d 100644 --- a/devel/rubygem-azure_mgmt_container_instance/Makefile +++ b/devel/rubygem-azure_mgmt_container_instance/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_container_instance PORTVERSION= 0.18.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Container Instance Services Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_container_instance LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_container_registry/Makefile b/devel/rubygem-azure_mgmt_container_registry/Makefile index 146acc1901f3..75bb6708ef5d 100644 --- a/devel/rubygem-azure_mgmt_container_registry/Makefile +++ b/devel/rubygem-azure_mgmt_container_registry/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_container_registry PORTVERSION= 0.18.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Container Registry Services Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_container_registry LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_container_service/Makefile b/devel/rubygem-azure_mgmt_container_service/Makefile index cd1541b0037b..a2ca2e823294 100644 --- a/devel/rubygem-azure_mgmt_container_service/Makefile +++ b/devel/rubygem-azure_mgmt_container_service/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_container_service PORTVERSION= 0.22.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Container Service Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_container_service LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_cosmosdb/Makefile b/devel/rubygem-azure_mgmt_cosmosdb/Makefile index 90c76b3ff3f6..89fdcac7498f 100644 --- a/devel/rubygem-azure_mgmt_cosmosdb/Makefile +++ b/devel/rubygem-azure_mgmt_cosmosdb/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_cosmosdb PORTVERSION= 0.24.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Cosmos DB Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_cosmosdb LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_cost_management/Makefile b/devel/rubygem-azure_mgmt_cost_management/Makefile index 8052603911dd..f9be384a24a0 100644 --- a/devel/rubygem-azure_mgmt_cost_management/Makefile +++ b/devel/rubygem-azure_mgmt_cost_management/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_cost_management PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure CostManagement Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_cost_management LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_customer_insights/Makefile b/devel/rubygem-azure_mgmt_customer_insights/Makefile index e96c64b5d7c6..99fd1d2cf973 100644 --- a/devel/rubygem-azure_mgmt_customer_insights/Makefile +++ b/devel/rubygem-azure_mgmt_customer_insights/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_customer_insights PORTVERSION= 0.17.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Customer Insights Services Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_customer_insights LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_data_factory/Makefile b/devel/rubygem-azure_mgmt_data_factory/Makefile index fbdac00d8b72..10b68276590e 100644 --- a/devel/rubygem-azure_mgmt_data_factory/Makefile +++ b/devel/rubygem-azure_mgmt_data_factory/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_data_factory PORTVERSION= 0.18.7 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Data_Factory Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_data_factory LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_data_migration/Makefile b/devel/rubygem-azure_mgmt_data_migration/Makefile index b1bcd1796b85..8c7d787d9fcc 100644 --- a/devel/rubygem-azure_mgmt_data_migration/Makefile +++ b/devel/rubygem-azure_mgmt_data_migration/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_data_migration PORTVERSION= 0.18.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Data Migration Services Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_data_migration LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_databox/Makefile b/devel/rubygem-azure_mgmt_databox/Makefile index 9bcb19963b78..5399a5b1286f 100644 --- a/devel/rubygem-azure_mgmt_databox/Makefile +++ b/devel/rubygem-azure_mgmt_databox/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_databox PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Databox Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_databox LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_datalake_analytics/Makefile b/devel/rubygem-azure_mgmt_datalake_analytics/Makefile index 155a23986c6f..5d91b47f8995 100644 --- a/devel/rubygem-azure_mgmt_datalake_analytics/Makefile +++ b/devel/rubygem-azure_mgmt_datalake_analytics/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_datalake_analytics PORTVERSION= 0.17.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Resource Provider DataLake Analytics Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_datalake_analytics LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_datalake_store/Makefile b/devel/rubygem-azure_mgmt_datalake_store/Makefile index 2823c43e3aea..f77580ff1796 100644 --- a/devel/rubygem-azure_mgmt_datalake_store/Makefile +++ b/devel/rubygem-azure_mgmt_datalake_store/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_datalake_store PORTVERSION= 0.17.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Resource Provider DataLake Store Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_datalake_store LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_datashare/Makefile b/devel/rubygem-azure_mgmt_datashare/Makefile index 1730daf94854..1dd2c38b546b 100644 --- a/devel/rubygem-azure_mgmt_datashare/Makefile +++ b/devel/rubygem-azure_mgmt_datashare/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_datashare PORTVERSION= 0.17.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Datashare Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_datashare LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_deployment_manager/Makefile b/devel/rubygem-azure_mgmt_deployment_manager/Makefile index 3e51cbf4d0bd..e5d4007ff5de 100644 --- a/devel/rubygem-azure_mgmt_deployment_manager/Makefile +++ b/devel/rubygem-azure_mgmt_deployment_manager/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_deployment_manager PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure DeploymentManager Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_deployment_manager LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_dev_spaces/Makefile b/devel/rubygem-azure_mgmt_dev_spaces/Makefile index 3af73fd12f8a..04032f48b61f 100644 --- a/devel/rubygem-azure_mgmt_dev_spaces/Makefile +++ b/devel/rubygem-azure_mgmt_dev_spaces/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_dev_spaces PORTVERSION= 0.17.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Management DevSpaces Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_dev_spaces LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_devtestlabs/Makefile b/devel/rubygem-azure_mgmt_devtestlabs/Makefile index 9eafea75c1fa..2f7ba5b9697f 100644 --- a/devel/rubygem-azure_mgmt_devtestlabs/Makefile +++ b/devel/rubygem-azure_mgmt_devtestlabs/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_devtestlabs PORTVERSION= 0.18.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Dev Test Lab Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_devtestlabs LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_digitaltwins/Makefile b/devel/rubygem-azure_mgmt_digitaltwins/Makefile index b780f5d47f45..b3bd1d53db76 100644 --- a/devel/rubygem-azure_mgmt_digitaltwins/Makefile +++ b/devel/rubygem-azure_mgmt_digitaltwins/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_digitaltwins PORTVERSION= 0.18.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Digital Twins Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_digitaltwins LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_dns/Makefile b/devel/rubygem-azure_mgmt_dns/Makefile index 19ce77b2c85a..aac6b9c16b11 100644 --- a/devel/rubygem-azure_mgmt_dns/Makefile +++ b/devel/rubygem-azure_mgmt_dns/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_dns PORTVERSION= 0.17.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Dns Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_dns LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_edgegateway/Makefile b/devel/rubygem-azure_mgmt_edgegateway/Makefile index 85f33fba5ab2..f62538a972e7 100644 --- a/devel/rubygem-azure_mgmt_edgegateway/Makefile +++ b/devel/rubygem-azure_mgmt_edgegateway/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_edgegateway PORTVERSION= 0.18.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Edge Gateway Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_edgegateway LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_event_grid/Makefile b/devel/rubygem-azure_mgmt_event_grid/Makefile index 8929baf42d3f..321a08da3a0a 100644 --- a/devel/rubygem-azure_mgmt_event_grid/Makefile +++ b/devel/rubygem-azure_mgmt_event_grid/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_event_grid PORTVERSION= 0.21.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Event Grid Services Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_event_grid LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_event_hub/Makefile b/devel/rubygem-azure_mgmt_event_hub/Makefile index a2bad1224f56..c7f099e8d4e5 100644 --- a/devel/rubygem-azure_mgmt_event_hub/Makefile +++ b/devel/rubygem-azure_mgmt_event_hub/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_event_hub PORTVERSION= 0.18.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Event Hub Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_event_hub LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_features/Makefile b/devel/rubygem-azure_mgmt_features/Makefile index ef4b2e5f7f3d..3fd46ec50eef 100644 --- a/devel/rubygem-azure_mgmt_features/Makefile +++ b/devel/rubygem-azure_mgmt_features/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_features PORTVERSION= 0.17.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Resource Provider Feature Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_features LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_hanaonazure/Makefile b/devel/rubygem-azure_mgmt_hanaonazure/Makefile index 8f398b25f7e2..d9e4d6fd95db 100644 --- a/devel/rubygem-azure_mgmt_hanaonazure/Makefile +++ b/devel/rubygem-azure_mgmt_hanaonazure/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_hanaonazure PORTVERSION= 0.18.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Hanaonazure Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_hanaonazure LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_hdinsight/Makefile b/devel/rubygem-azure_mgmt_hdinsight/Makefile index 6ea2080c9d74..67bb0ee34ce4 100644 --- a/devel/rubygem-azure_mgmt_hdinsight/Makefile +++ b/devel/rubygem-azure_mgmt_hdinsight/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_hdinsight PORTVERSION= 0.18.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Hdinsight Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_hdinsight LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_hybrid_compute/Makefile b/devel/rubygem-azure_mgmt_hybrid_compute/Makefile index 3e29f9b36047..4847cbaf8028 100644 --- a/devel/rubygem-azure_mgmt_hybrid_compute/Makefile +++ b/devel/rubygem-azure_mgmt_hybrid_compute/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_hybrid_compute PORTVERSION= 0.17.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Hybrid Compute Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_hybrid_compute LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_import_export/Makefile b/devel/rubygem-azure_mgmt_import_export/Makefile index 3a2543ad1c42..b23080fefedc 100644 --- a/devel/rubygem-azure_mgmt_import_export/Makefile +++ b/devel/rubygem-azure_mgmt_import_export/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_import_export PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure ImportExport Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_import_export LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_iot_central/Makefile b/devel/rubygem-azure_mgmt_iot_central/Makefile index ca991683a776..3aeabd0ecd7c 100644 --- a/devel/rubygem-azure_mgmt_iot_central/Makefile +++ b/devel/rubygem-azure_mgmt_iot_central/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_iot_central PORTVERSION= 0.19.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure IotCentral Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_iot_central LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_iot_hub/Makefile b/devel/rubygem-azure_mgmt_iot_hub/Makefile index a9efbd0f33ad..0cb2d69d189a 100644 --- a/devel/rubygem-azure_mgmt_iot_hub/Makefile +++ b/devel/rubygem-azure_mgmt_iot_hub/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_iot_hub PORTVERSION= 0.17.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure IoT Hub Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_iot_hub LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_key_vault/Makefile b/devel/rubygem-azure_mgmt_key_vault/Makefile index 4d0377fc7396..6a24a4d559e9 100644 --- a/devel/rubygem-azure_mgmt_key_vault/Makefile +++ b/devel/rubygem-azure_mgmt_key_vault/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_key_vault PORTVERSION= 0.17.7 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Resource Management Key Vault Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_key_vault LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_kubernetes_configuration/Makefile b/devel/rubygem-azure_mgmt_kubernetes_configuration/Makefile index 5a997d740b7f..e21f26ff3d32 100644 --- a/devel/rubygem-azure_mgmt_kubernetes_configuration/Makefile +++ b/devel/rubygem-azure_mgmt_kubernetes_configuration/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_kubernetes_configuration PORTVERSION= 0.18.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure KubernetesConfiguration Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_kubernetes_configuration LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_kusto/Makefile b/devel/rubygem-azure_mgmt_kusto/Makefile index 8dd9cbbf9f6f..8e524cbf866d 100644 --- a/devel/rubygem-azure_mgmt_kusto/Makefile +++ b/devel/rubygem-azure_mgmt_kusto/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_kusto PORTVERSION= 0.20.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Kusto Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_kusto LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_labservices/Makefile b/devel/rubygem-azure_mgmt_labservices/Makefile index cf442c1b8bee..8fb4eefbe12f 100644 --- a/devel/rubygem-azure_mgmt_labservices/Makefile +++ b/devel/rubygem-azure_mgmt_labservices/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_labservices PORTVERSION= 0.17.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Labservices Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_labservices LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_links/Makefile b/devel/rubygem-azure_mgmt_links/Makefile index 4e5e08d66fce..8c124e692c66 100644 --- a/devel/rubygem-azure_mgmt_links/Makefile +++ b/devel/rubygem-azure_mgmt_links/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_links PORTVERSION= 0.17.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Links Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_links LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_locks/Makefile b/devel/rubygem-azure_mgmt_locks/Makefile index be8f64d4842d..281254e99a6c 100644 --- a/devel/rubygem-azure_mgmt_locks/Makefile +++ b/devel/rubygem-azure_mgmt_locks/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_locks PORTVERSION= 0.17.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Resource Lock Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_locks LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_logic/Makefile b/devel/rubygem-azure_mgmt_logic/Makefile index a595a23c068f..d5d6539d0646 100644 --- a/devel/rubygem-azure_mgmt_logic/Makefile +++ b/devel/rubygem-azure_mgmt_logic/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_logic PORTVERSION= 0.18.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Logic Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_logic LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_machine_learning/Makefile b/devel/rubygem-azure_mgmt_machine_learning/Makefile index b9d5c8eaf76d..b776a0c6a9e4 100644 --- a/devel/rubygem-azure_mgmt_machine_learning/Makefile +++ b/devel/rubygem-azure_mgmt_machine_learning/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_machine_learning PORTVERSION= 0.17.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Machine Learning Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_machine_learning LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_machine_learning_services/Makefile b/devel/rubygem-azure_mgmt_machine_learning_services/Makefile index fa8882e8953f..cfd8f65fb2fa 100644 --- a/devel/rubygem-azure_mgmt_machine_learning_services/Makefile +++ b/devel/rubygem-azure_mgmt_machine_learning_services/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_machine_learning_services PORTVERSION= 0.17.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Machine Learning Services Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_machine_learning_services LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_maintenance/Makefile b/devel/rubygem-azure_mgmt_maintenance/Makefile index 01fca21d4401..0f977cda75f8 100644 --- a/devel/rubygem-azure_mgmt_maintenance/Makefile +++ b/devel/rubygem-azure_mgmt_maintenance/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_maintenance PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Maintenance Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_maintenance LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_managed_applications/Makefile b/devel/rubygem-azure_mgmt_managed_applications/Makefile index 6f438808550a..8d0fafc7bad4 100644 --- a/devel/rubygem-azure_mgmt_managed_applications/Makefile +++ b/devel/rubygem-azure_mgmt_managed_applications/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_managed_applications PORTVERSION= 0.17.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Managed Applications Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_managed_applications LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_mariadb/Makefile b/devel/rubygem-azure_mgmt_mariadb/Makefile index b7b5bf3f3a02..d3526702b3ee 100644 --- a/devel/rubygem-azure_mgmt_mariadb/Makefile +++ b/devel/rubygem-azure_mgmt_mariadb/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_mariadb PORTVERSION= 0.17.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure MariaDB Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_mariadb LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_marketplace_ordering/Makefile b/devel/rubygem-azure_mgmt_marketplace_ordering/Makefile index ec7fce3beccd..cc958a3367d8 100644 --- a/devel/rubygem-azure_mgmt_marketplace_ordering/Makefile +++ b/devel/rubygem-azure_mgmt_marketplace_ordering/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_marketplace_ordering PORTVERSION= 0.17.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Marketplace Ordering Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_marketplace_ordering LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_media_services/Makefile b/devel/rubygem-azure_mgmt_media_services/Makefile index 47ee8bff83a7..084cb4da828f 100644 --- a/devel/rubygem-azure_mgmt_media_services/Makefile +++ b/devel/rubygem-azure_mgmt_media_services/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_media_services PORTVERSION= 0.21.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Media Services Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_media_services LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_migrate/Makefile b/devel/rubygem-azure_mgmt_migrate/Makefile index 0a3866006b04..a8f6d27e4f10 100644 --- a/devel/rubygem-azure_mgmt_migrate/Makefile +++ b/devel/rubygem-azure_mgmt_migrate/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_migrate PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Migrate Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_migrate LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_mixedreality/Makefile b/devel/rubygem-azure_mgmt_mixedreality/Makefile index 7e5140db65d5..9d546c170f54 100644 --- a/devel/rubygem-azure_mgmt_mixedreality/Makefile +++ b/devel/rubygem-azure_mgmt_mixedreality/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_mixedreality PORTVERSION= 0.17.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Mixed Reality Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_mixedreality LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_monitor/Makefile b/devel/rubygem-azure_mgmt_monitor/Makefile index d86241a38601..4edb21cb8dd3 100644 --- a/devel/rubygem-azure_mgmt_monitor/Makefile +++ b/devel/rubygem-azure_mgmt_monitor/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_monitor PORTVERSION= 0.19.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Monitor Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_monitor LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_msi/Makefile b/devel/rubygem-azure_mgmt_msi/Makefile index 5444159dab1d..d0302688a0fe 100644 --- a/devel/rubygem-azure_mgmt_msi/Makefile +++ b/devel/rubygem-azure_mgmt_msi/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_msi PORTVERSION= 0.17.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Managed Service Identity Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_msi LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_mysql/Makefile b/devel/rubygem-azure_mgmt_mysql/Makefile index aae42510e3ff..2f87e0e12d2b 100644 --- a/devel/rubygem-azure_mgmt_mysql/Makefile +++ b/devel/rubygem-azure_mgmt_mysql/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_mysql PORTVERSION= 0.17.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure MySQL Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_mysql LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_netapp/Makefile b/devel/rubygem-azure_mgmt_netapp/Makefile index 2157bac275d1..2471faeed4cb 100644 --- a/devel/rubygem-azure_mgmt_netapp/Makefile +++ b/devel/rubygem-azure_mgmt_netapp/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_netapp PORTVERSION= 0.23.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure NetApp Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_netapp LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_network/Makefile b/devel/rubygem-azure_mgmt_network/Makefile index d2318e084216..530471f430c6 100644 --- a/devel/rubygem-azure_mgmt_network/Makefile +++ b/devel/rubygem-azure_mgmt_network/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_network PORTVERSION= 0.26.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Network Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_network LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_notification_hubs/Makefile b/devel/rubygem-azure_mgmt_notification_hubs/Makefile index f83994b96b0a..7459e1152712 100644 --- a/devel/rubygem-azure_mgmt_notification_hubs/Makefile +++ b/devel/rubygem-azure_mgmt_notification_hubs/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_notification_hubs PORTVERSION= 0.17.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Notification Hubs Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_notification_hubs LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_operational_insights/Makefile b/devel/rubygem-azure_mgmt_operational_insights/Makefile index 3749820a14b2..66bad2fdd915 100644 --- a/devel/rubygem-azure_mgmt_operational_insights/Makefile +++ b/devel/rubygem-azure_mgmt_operational_insights/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_operational_insights PORTVERSION= 0.20.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Operational Insights Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_operational_insights LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_operations_management/Makefile b/devel/rubygem-azure_mgmt_operations_management/Makefile index 0aa86f80d517..f09cfefcb418 100644 --- a/devel/rubygem-azure_mgmt_operations_management/Makefile +++ b/devel/rubygem-azure_mgmt_operations_management/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_operations_management PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure OperationsManagement Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_operations_management LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_peering/Makefile b/devel/rubygem-azure_mgmt_peering/Makefile index 4b96c09d3a44..c162a45d013c 100644 --- a/devel/rubygem-azure_mgmt_peering/Makefile +++ b/devel/rubygem-azure_mgmt_peering/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_peering PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Peering Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_peering LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_policy/Makefile b/devel/rubygem-azure_mgmt_policy/Makefile index d006a28d4319..9fbc9e355a8c 100644 --- a/devel/rubygem-azure_mgmt_policy/Makefile +++ b/devel/rubygem-azure_mgmt_policy/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_policy PORTVERSION= 0.17.9 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Resource Policy Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_policy LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_policy_insights/Makefile b/devel/rubygem-azure_mgmt_policy_insights/Makefile index c82e3c858924..f567164d5987 100644 --- a/devel/rubygem-azure_mgmt_policy_insights/Makefile +++ b/devel/rubygem-azure_mgmt_policy_insights/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_policy_insights PORTVERSION= 0.17.8 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Resource Policy Insights Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_policy_insights LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_portal/Makefile b/devel/rubygem-azure_mgmt_portal/Makefile index 58bb9dde7055..7e79730108fa 100644 --- a/devel/rubygem-azure_mgmt_portal/Makefile +++ b/devel/rubygem-azure_mgmt_portal/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_portal PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Portal Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_portal LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_postgresql/Makefile b/devel/rubygem-azure_mgmt_postgresql/Makefile index 74d5357f7d9a..00b93010854d 100644 --- a/devel/rubygem-azure_mgmt_postgresql/Makefile +++ b/devel/rubygem-azure_mgmt_postgresql/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_postgresql PORTVERSION= 0.17.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure PostgreSQL Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_postgresql LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_powerbi_dedicated/Makefile b/devel/rubygem-azure_mgmt_powerbi_dedicated/Makefile index b3d9482c0bdf..72d3f1d38746 100644 --- a/devel/rubygem-azure_mgmt_powerbi_dedicated/Makefile +++ b/devel/rubygem-azure_mgmt_powerbi_dedicated/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_powerbi_dedicated PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure PowerbiDedicated Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_powerbi_dedicated LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_powerbi_embedded/Makefile b/devel/rubygem-azure_mgmt_powerbi_embedded/Makefile index 024e2ddffd93..bcae27b8ec22 100644 --- a/devel/rubygem-azure_mgmt_powerbi_embedded/Makefile +++ b/devel/rubygem-azure_mgmt_powerbi_embedded/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_powerbi_embedded PORTVERSION= 0.17.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Power BI Embedded Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_powerbi_embedded LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_privatedns/Makefile b/devel/rubygem-azure_mgmt_privatedns/Makefile index 49ddb95c0c41..52070147835b 100644 --- a/devel/rubygem-azure_mgmt_privatedns/Makefile +++ b/devel/rubygem-azure_mgmt_privatedns/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_privatedns PORTVERSION= 0.17.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Private DNS Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_privatedns LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_recovery_services/Makefile b/devel/rubygem-azure_mgmt_recovery_services/Makefile index ac36f7ed93a2..5e76904f8620 100644 --- a/devel/rubygem-azure_mgmt_recovery_services/Makefile +++ b/devel/rubygem-azure_mgmt_recovery_services/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_recovery_services PORTVERSION= 0.18.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Recovery Services Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_recovery_services LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_recovery_services_backup/Makefile b/devel/rubygem-azure_mgmt_recovery_services_backup/Makefile index ab37268a16eb..d7a03beea687 100644 --- a/devel/rubygem-azure_mgmt_recovery_services_backup/Makefile +++ b/devel/rubygem-azure_mgmt_recovery_services_backup/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_recovery_services_backup PORTVERSION= 0.18.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Recovery Services Backup Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_recovery_services_backup LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_recovery_services_site_recovery/Makefile b/devel/rubygem-azure_mgmt_recovery_services_site_recovery/Makefile index 031cce75877c..7670ba3ff305 100644 --- a/devel/rubygem-azure_mgmt_recovery_services_site_recovery/Makefile +++ b/devel/rubygem-azure_mgmt_recovery_services_site_recovery/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_recovery_services_site_recovery PORTVERSION= 0.17.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Recovery Services Site Recovery Services Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_recovery_services_site_recovery LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_redis/Makefile b/devel/rubygem-azure_mgmt_redis/Makefile index 74d659cca3b4..c0e22c54d35f 100644 --- a/devel/rubygem-azure_mgmt_redis/Makefile +++ b/devel/rubygem-azure_mgmt_redis/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_redis PORTVERSION= 0.17.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Redis Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_redis LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_relay/Makefile b/devel/rubygem-azure_mgmt_relay/Makefile index b94644d341ba..f9c4f5c252b9 100644 --- a/devel/rubygem-azure_mgmt_relay/Makefile +++ b/devel/rubygem-azure_mgmt_relay/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_relay PORTVERSION= 0.17.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Relay Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_relay LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_reservations/Makefile b/devel/rubygem-azure_mgmt_reservations/Makefile index bc44017a5d04..19e833888178 100644 --- a/devel/rubygem-azure_mgmt_reservations/Makefile +++ b/devel/rubygem-azure_mgmt_reservations/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_reservations PORTVERSION= 0.20.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Reservations Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_reservations LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_resource_health/Makefile b/devel/rubygem-azure_mgmt_resource_health/Makefile index 7be09ac6ce7a..0683bcaf87ea 100644 --- a/devel/rubygem-azure_mgmt_resource_health/Makefile +++ b/devel/rubygem-azure_mgmt_resource_health/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_resource_health PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Resource Health Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_resource_health LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_resourcegraph/Makefile b/devel/rubygem-azure_mgmt_resourcegraph/Makefile index d0b88a5c00c4..b293a4eda1b2 100644 --- a/devel/rubygem-azure_mgmt_resourcegraph/Makefile +++ b/devel/rubygem-azure_mgmt_resourcegraph/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_resourcegraph PORTVERSION= 0.17.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Resource Graph Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_resourcegraph LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_resources/Makefile b/devel/rubygem-azure_mgmt_resources/Makefile index 5ed0a9a73983..441f64e56b26 100644 --- a/devel/rubygem-azure_mgmt_resources/Makefile +++ b/devel/rubygem-azure_mgmt_resources/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_resources PORTVERSION= 0.18.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Resource Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_resources LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_resources_management/Makefile b/devel/rubygem-azure_mgmt_resources_management/Makefile index f3e1d604150b..e011bef2d8d1 100644 --- a/devel/rubygem-azure_mgmt_resources_management/Makefile +++ b/devel/rubygem-azure_mgmt_resources_management/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_resources_management PORTVERSION= 0.17.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Resources Management Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_resources_management LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_scheduler/Makefile b/devel/rubygem-azure_mgmt_scheduler/Makefile index dd832fda93f3..2a35ba8e21de 100644 --- a/devel/rubygem-azure_mgmt_scheduler/Makefile +++ b/devel/rubygem-azure_mgmt_scheduler/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_scheduler PORTVERSION= 0.17.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Scheduler Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_scheduler LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_search/Makefile b/devel/rubygem-azure_mgmt_search/Makefile index 1b5393fcabfd..40f0e5e3b865 100644 --- a/devel/rubygem-azure_mgmt_search/Makefile +++ b/devel/rubygem-azure_mgmt_search/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_search PORTVERSION= 0.17.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Search Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_search LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_security/Makefile b/devel/rubygem-azure_mgmt_security/Makefile index f1cd5f540bb1..5dee2e3018fd 100644 --- a/devel/rubygem-azure_mgmt_security/Makefile +++ b/devel/rubygem-azure_mgmt_security/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_security PORTVERSION= 0.19.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Security Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_security LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_serialconsole/Makefile b/devel/rubygem-azure_mgmt_serialconsole/Makefile index 0248fbdf42df..5c2bbe668d6d 100644 --- a/devel/rubygem-azure_mgmt_serialconsole/Makefile +++ b/devel/rubygem-azure_mgmt_serialconsole/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_serialconsole PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Serial Console Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_serialconsole LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_service_bus/Makefile b/devel/rubygem-azure_mgmt_service_bus/Makefile index c23b5fd7824f..4455ea49179b 100644 --- a/devel/rubygem-azure_mgmt_service_bus/Makefile +++ b/devel/rubygem-azure_mgmt_service_bus/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_service_bus PORTVERSION= 0.17.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Service Bus Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_service_bus LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_service_fabric/Makefile b/devel/rubygem-azure_mgmt_service_fabric/Makefile index 73f1e4b56525..46e2a48f8bed 100644 --- a/devel/rubygem-azure_mgmt_service_fabric/Makefile +++ b/devel/rubygem-azure_mgmt_service_fabric/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_service_fabric PORTVERSION= 0.17.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Service Fabric Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_service_fabric LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_signalr/Makefile b/devel/rubygem-azure_mgmt_signalr/Makefile index daedc963e54b..d0b5834576c6 100644 --- a/devel/rubygem-azure_mgmt_signalr/Makefile +++ b/devel/rubygem-azure_mgmt_signalr/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_signalr PORTVERSION= 0.17.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Signalr Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_signalr LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_sql/Makefile b/devel/rubygem-azure_mgmt_sql/Makefile index 2d6bb7a0adf9..c53e4b07c109 100644 --- a/devel/rubygem-azure_mgmt_sql/Makefile +++ b/devel/rubygem-azure_mgmt_sql/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_sql PORTVERSION= 0.19.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure SQL Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_sql LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_sqlvirtualmachine/Makefile b/devel/rubygem-azure_mgmt_sqlvirtualmachine/Makefile index faaa3ae6c5ed..da9f7e366b21 100644 --- a/devel/rubygem-azure_mgmt_sqlvirtualmachine/Makefile +++ b/devel/rubygem-azure_mgmt_sqlvirtualmachine/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_sqlvirtualmachine PORTVERSION= 0.18.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure SQL Virtual Machine Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_sqlvirtualmachine LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_stor_simple8000_series/Makefile b/devel/rubygem-azure_mgmt_stor_simple8000_series/Makefile index 0618e9988e07..26ec28b48d56 100644 --- a/devel/rubygem-azure_mgmt_stor_simple8000_series/Makefile +++ b/devel/rubygem-azure_mgmt_stor_simple8000_series/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_stor_simple8000_series PORTVERSION= 0.17.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure Stor Simple 8000 Series Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_stor_simple8000_series LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_storage/Makefile b/devel/rubygem-azure_mgmt_storage/Makefile index ea8fc6a485d1..0100dc2a59f9 100644 --- a/devel/rubygem-azure_mgmt_storage/Makefile +++ b/devel/rubygem-azure_mgmt_storage/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_storage PORTVERSION= 0.23.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Storage Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_storage LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_storagecache/Makefile b/devel/rubygem-azure_mgmt_storagecache/Makefile index 0438c81a7b5b..83086a1ee562 100644 --- a/devel/rubygem-azure_mgmt_storagecache/Makefile +++ b/devel/rubygem-azure_mgmt_storagecache/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_storagecache PORTVERSION= 0.19.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Storagecache Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_storagecache LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_storagesync/Makefile b/devel/rubygem-azure_mgmt_storagesync/Makefile index 52c25593ecc9..84aba5c66e7a 100644 --- a/devel/rubygem-azure_mgmt_storagesync/Makefile +++ b/devel/rubygem-azure_mgmt_storagesync/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_storagesync PORTVERSION= 0.18.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Microsoft Azure StorageSync Library for Ruby Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_storagesync LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_stream_analytics/Makefile b/devel/rubygem-azure_mgmt_stream_analytics/Makefile index 13e973f700e3..5605c3b9f3ad 100644 --- a/devel/rubygem-azure_mgmt_stream_analytics/Makefile +++ b/devel/rubygem-azure_mgmt_stream_analytics/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_stream_analytics PORTVERSION= 0.17.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Stream Analytics Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_stream_analytics LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_subscriptions/Makefile b/devel/rubygem-azure_mgmt_subscriptions/Makefile index 5dde8c3eb6ac..e5c8237cdd7a 100644 --- a/devel/rubygem-azure_mgmt_subscriptions/Makefile +++ b/devel/rubygem-azure_mgmt_subscriptions/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_subscriptions PORTVERSION= 0.18.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Subscription Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_subscriptions LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_support/Makefile b/devel/rubygem-azure_mgmt_support/Makefile index b8e858d98e9b..061df33a23f0 100644 --- a/devel/rubygem-azure_mgmt_support/Makefile +++ b/devel/rubygem-azure_mgmt_support/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_support PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Support Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_support LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_synapse/Makefile b/devel/rubygem-azure_mgmt_synapse/Makefile index 5cb8ff2ae71a..d7547e31802b 100644 --- a/devel/rubygem-azure_mgmt_synapse/Makefile +++ b/devel/rubygem-azure_mgmt_synapse/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_synapse PORTVERSION= 0.17.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Synapse Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_synapse LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_time_series_insights/Makefile b/devel/rubygem-azure_mgmt_time_series_insights/Makefile index 629a8d10c08e..45afbf16c6c5 100644 --- a/devel/rubygem-azure_mgmt_time_series_insights/Makefile +++ b/devel/rubygem-azure_mgmt_time_series_insights/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_time_series_insights PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Time Series Insights Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_time_series_insights LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_traffic_manager/Makefile b/devel/rubygem-azure_mgmt_traffic_manager/Makefile index d6feb21f2542..464dd0e23222 100644 --- a/devel/rubygem-azure_mgmt_traffic_manager/Makefile +++ b/devel/rubygem-azure_mgmt_traffic_manager/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_traffic_manager PORTVERSION= 0.17.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Traffic Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_traffic_manager LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_vmware_cloudsimple/Makefile b/devel/rubygem-azure_mgmt_vmware_cloudsimple/Makefile index 49553268ae3b..3434f87fbeed 100644 --- a/devel/rubygem-azure_mgmt_vmware_cloudsimple/Makefile +++ b/devel/rubygem-azure_mgmt_vmware_cloudsimple/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_vmware_cloudsimple PORTVERSION= 0.17.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure VMware CloudSimple Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_vmware_cloudsimple LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_mgmt_web/Makefile b/devel/rubygem-azure_mgmt_web/Makefile index bfaa778ab748..daf9a8e2a350 100644 --- a/devel/rubygem-azure_mgmt_web/Makefile +++ b/devel/rubygem-azure_mgmt_web/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_mgmt_web PORTVERSION= 0.18.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Web Apps Management Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/management/azure_mgmt_web LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_sdk/Makefile b/devel/rubygem-azure_sdk/Makefile index e2c52197c862..3e9060faabd7 100644 --- a/devel/rubygem-azure_sdk/Makefile +++ b/devel/rubygem-azure_sdk/Makefile @@ -1,159 +1,158 @@ PORTNAME= azure_sdk PORTVERSION= 0.73.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure SDK - Azure Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-azure-storage>=0.15.0.preview<0.15:devel/rubygem-azure-storage \ rubygem-azure_cognitiveservices_anomalydetector>=0.17.1<0.18:devel/rubygem-azure_cognitiveservices_anomalydetector \ rubygem-azure_cognitiveservices_autosuggest>=0.17.2<0.18:devel/rubygem-azure_cognitiveservices_autosuggest \ rubygem-azure_cognitiveservices_computervision>=0.20.2<0.21:devel/rubygem-azure_cognitiveservices_computervision \ rubygem-azure_cognitiveservices_contentmoderator>=0.17.3<0.18:devel/rubygem-azure_cognitiveservices_contentmoderator \ rubygem-azure_cognitiveservices_customimagesearch>=0.17.2<0.18:devel/rubygem-azure_cognitiveservices_customimagesearch \ rubygem-azure_cognitiveservices_customsearch>=0.18.2<0.19:devel/rubygem-azure_cognitiveservices_customsearch \ rubygem-azure_cognitiveservices_customvisionprediction>=0.17.3<0.18:devel/rubygem-azure_cognitiveservices_customvisionprediction \ rubygem-azure_cognitiveservices_customvisiontraining>=0.17.3<0.18:devel/rubygem-azure_cognitiveservices_customvisiontraining \ rubygem-azure_cognitiveservices_entitysearch>=0.18.2<0.19:devel/rubygem-azure_cognitiveservices_entitysearch \ rubygem-azure_cognitiveservices_face>=0.19.1<0.20:devel/rubygem-azure_cognitiveservices_face \ rubygem-azure_cognitiveservices_formrecognizer>=0.17.2<0.18:devel/rubygem-azure_cognitiveservices_formrecognizer \ rubygem-azure_cognitiveservices_imagesearch>=0.18.3<0.19:devel/rubygem-azure_cognitiveservices_imagesearch \ rubygem-azure_cognitiveservices_localsearch>=0.17.2<0.18:devel/rubygem-azure_cognitiveservices_localsearch \ rubygem-azure_cognitiveservices_luisauthoring>=0.18.2<0.19:devel/rubygem-azure_cognitiveservices_luisauthoring \ rubygem-azure_cognitiveservices_luisruntime>=0.18.1<0.19:devel/rubygem-azure_cognitiveservices_luisruntime \ rubygem-azure_cognitiveservices_newssearch>=0.18.2<0.19:devel/rubygem-azure_cognitiveservices_newssearch \ rubygem-azure_cognitiveservices_personalizer>=0.17.1<0.18:devel/rubygem-azure_cognitiveservices_personalizer \ rubygem-azure_cognitiveservices_qnamaker>=0.18.1<0.19:devel/rubygem-azure_cognitiveservices_qnamaker \ rubygem-azure_cognitiveservices_qnamakerruntime>=0.17.2<0.18:devel/rubygem-azure_cognitiveservices_qnamakerruntime \ rubygem-azure_cognitiveservices_spellcheck>=0.18.2<0.19:devel/rubygem-azure_cognitiveservices_spellcheck \ rubygem-azure_cognitiveservices_textanalytics>=0.17.4<0.18:devel/rubygem-azure_cognitiveservices_textanalytics \ rubygem-azure_cognitiveservices_videosearch>=0.18.2<0.19:devel/rubygem-azure_cognitiveservices_videosearch \ rubygem-azure_cognitiveservices_visualsearch>=0.18.2<0.19:devel/rubygem-azure_cognitiveservices_visualsearch \ rubygem-azure_cognitiveservices_websearch>=0.18.2<0.19:devel/rubygem-azure_cognitiveservices_websearch \ rubygem-azure_event_grid>=0.18.1<0.19:devel/rubygem-azure_event_grid \ rubygem-azure_graph_rbac>=0.17.2<0.18:devel/rubygem-azure_graph_rbac \ rubygem-azure_key_vault>=0.19.1<0.20:devel/rubygem-azure_key_vault \ rubygem-azure_mgmt_adhybridhealth_service>=0.17.1<0.18:devel/rubygem-azure_mgmt_adhybridhealth_service \ rubygem-azure_mgmt_advisor>=0.17.2<0.18:devel/rubygem-azure_mgmt_advisor \ rubygem-azure_mgmt_alerts_management>=0.17.1<0.18:devel/rubygem-azure_mgmt_alerts_management \ rubygem-azure_mgmt_analysis_services>=0.17.3<0.18:devel/rubygem-azure_mgmt_analysis_services \ rubygem-azure_mgmt_api_management>=0.19.1<0.20:devel/rubygem-azure_mgmt_api_management \ rubygem-azure_mgmt_appconfiguration>=0.17.4<0.18:devel/rubygem-azure_mgmt_appconfiguration \ rubygem-azure_mgmt_attestation>=0.17.1<0.18:devel/rubygem-azure_mgmt_attestation \ rubygem-azure_mgmt_authorization>=0.18.5<0.19:devel/rubygem-azure_mgmt_authorization \ rubygem-azure_mgmt_automanage>=0.17.0<0.18:devel/rubygem-azure_mgmt_automanage \ rubygem-azure_mgmt_automation>=0.17.3<0.18:devel/rubygem-azure_mgmt_automation \ rubygem-azure_mgmt_azurestack>=0.17.2<0.18:devel/rubygem-azure_mgmt_azurestack \ rubygem-azure_mgmt_azurestack_hci>=0.17.0<0.18:devel/rubygem-azure_mgmt_azurestack_hci \ rubygem-azure_mgmt_batch>=0.18.1<0.19:devel/rubygem-azure_mgmt_batch \ rubygem-azure_mgmt_batchai>=0.17.1<0.18:devel/rubygem-azure_mgmt_batchai \ rubygem-azure_mgmt_billing>=0.17.3<0.18:devel/rubygem-azure_mgmt_billing \ rubygem-azure_mgmt_bot_service>=0.17.2<0.18:devel/rubygem-azure_mgmt_bot_service \ rubygem-azure_mgmt_cdn>=0.18.2<0.19:devel/rubygem-azure_mgmt_cdn \ rubygem-azure_mgmt_cognitive_services>=0.19.4<0.20:devel/rubygem-azure_mgmt_cognitive_services \ rubygem-azure_mgmt_commerce>=0.17.2<0.18:devel/rubygem-azure_mgmt_commerce \ rubygem-azure_mgmt_compute>=0.22.0<0.23:devel/rubygem-azure_mgmt_compute \ rubygem-azure_mgmt_consumption>=0.18.1<0.19:devel/rubygem-azure_mgmt_consumption \ rubygem-azure_mgmt_container_instance>=0.18.0<0.19:devel/rubygem-azure_mgmt_container_instance \ rubygem-azure_mgmt_container_registry>=0.18.5<0.19:devel/rubygem-azure_mgmt_container_registry \ rubygem-azure_mgmt_container_service>=0.22.0<0.23:devel/rubygem-azure_mgmt_container_service \ rubygem-azure_mgmt_cosmosdb>=0.24.1<0.25:devel/rubygem-azure_mgmt_cosmosdb \ rubygem-azure_mgmt_cost_management>=0.17.1<0.18:devel/rubygem-azure_mgmt_cost_management \ rubygem-azure_mgmt_customer_insights>=0.17.3<0.18:devel/rubygem-azure_mgmt_customer_insights \ rubygem-azure_mgmt_data_factory>=0.18.7<0.19:devel/rubygem-azure_mgmt_data_factory \ rubygem-azure_mgmt_data_migration>=0.18.1<0.19:devel/rubygem-azure_mgmt_data_migration \ rubygem-azure_mgmt_databox>=0.17.1<0.18:devel/rubygem-azure_mgmt_databox \ rubygem-azure_mgmt_datalake_analytics>=0.17.3<0.18:devel/rubygem-azure_mgmt_datalake_analytics \ rubygem-azure_mgmt_datalake_store>=0.17.3<0.18:devel/rubygem-azure_mgmt_datalake_store \ rubygem-azure_mgmt_datashare>=0.17.2<0.18:devel/rubygem-azure_mgmt_datashare \ rubygem-azure_mgmt_deployment_manager>=0.17.1<0.18:devel/rubygem-azure_mgmt_deployment_manager \ rubygem-azure_mgmt_dev_spaces>=0.17.3<0.18:devel/rubygem-azure_mgmt_dev_spaces \ rubygem-azure_mgmt_devtestlabs>=0.18.1<0.19:devel/rubygem-azure_mgmt_devtestlabs \ rubygem-azure_mgmt_digitaltwins>=0.18.0<0.19:devel/rubygem-azure_mgmt_digitaltwins \ rubygem-azure_mgmt_dns>=0.17.5<0.18:devel/rubygem-azure_mgmt_dns \ rubygem-azure_mgmt_edgegateway>=0.18.1<0.19:devel/rubygem-azure_mgmt_edgegateway \ rubygem-azure_mgmt_event_grid>=0.21.0<0.22:devel/rubygem-azure_mgmt_event_grid \ rubygem-azure_mgmt_event_hub>=0.18.2<0.19:devel/rubygem-azure_mgmt_event_hub \ rubygem-azure_mgmt_features>=0.17.5<0.18:devel/rubygem-azure_mgmt_features \ rubygem-azure_mgmt_hanaonazure>=0.18.1<0.19:devel/rubygem-azure_mgmt_hanaonazure \ rubygem-azure_mgmt_hdinsight>=0.18.5<0.19:devel/rubygem-azure_mgmt_hdinsight \ rubygem-azure_mgmt_hybrid_compute>=0.17.0<0.18:devel/rubygem-azure_mgmt_hybrid_compute \ rubygem-azure_mgmt_import_export>=0.17.1<0.18:devel/rubygem-azure_mgmt_import_export \ rubygem-azure_mgmt_iot_central>=0.19.4<0.20:devel/rubygem-azure_mgmt_iot_central \ rubygem-azure_mgmt_iot_hub>=0.17.5<0.18:devel/rubygem-azure_mgmt_iot_hub \ rubygem-azure_mgmt_key_vault>=0.17.7<0.18:devel/rubygem-azure_mgmt_key_vault \ rubygem-azure_mgmt_kubernetes_configuration>=0.18.0<0.19:devel/rubygem-azure_mgmt_kubernetes_configuration \ rubygem-azure_mgmt_kusto>=0.20.0<0.21:devel/rubygem-azure_mgmt_kusto \ rubygem-azure_mgmt_labservices>=0.17.2<0.18:devel/rubygem-azure_mgmt_labservices \ rubygem-azure_mgmt_links>=0.17.3<0.18:devel/rubygem-azure_mgmt_links \ rubygem-azure_mgmt_locks>=0.17.4<0.18:devel/rubygem-azure_mgmt_locks \ rubygem-azure_mgmt_logic>=0.18.3<0.19:devel/rubygem-azure_mgmt_logic \ rubygem-azure_mgmt_machine_learning>=0.17.3<0.18:devel/rubygem-azure_mgmt_machine_learning \ rubygem-azure_mgmt_machine_learning_services>=0.17.3<0.18:devel/rubygem-azure_mgmt_machine_learning_services \ rubygem-azure_mgmt_maintenance>=0.17.1<0.18:devel/rubygem-azure_mgmt_maintenance \ rubygem-azure_mgmt_managed_applications>=0.17.3<0.18:devel/rubygem-azure_mgmt_managed_applications \ rubygem-azure_mgmt_mariadb>=0.17.4<0.18:devel/rubygem-azure_mgmt_mariadb \ rubygem-azure_mgmt_marketplace_ordering>=0.17.5<0.18:devel/rubygem-azure_mgmt_marketplace_ordering \ rubygem-azure_mgmt_media_services>=0.21.1<0.22:devel/rubygem-azure_mgmt_media_services \ rubygem-azure_mgmt_migrate>=0.17.1<0.18:devel/rubygem-azure_mgmt_migrate \ rubygem-azure_mgmt_mixedreality>=0.17.3<0.18:devel/rubygem-azure_mgmt_mixedreality \ rubygem-azure_mgmt_monitor>=0.19.0<0.20:devel/rubygem-azure_mgmt_monitor \ rubygem-azure_mgmt_msi>=0.17.2<0.18:devel/rubygem-azure_mgmt_msi \ rubygem-azure_mgmt_mysql>=0.17.2<0.18:devel/rubygem-azure_mgmt_mysql \ rubygem-azure_mgmt_netapp>=0.23.0<0.24:devel/rubygem-azure_mgmt_netapp \ rubygem-azure_mgmt_network>=0.26.1<0.27:devel/rubygem-azure_mgmt_network \ rubygem-azure_mgmt_notification_hubs>=0.17.3<0.18:devel/rubygem-azure_mgmt_notification_hubs \ rubygem-azure_mgmt_operational_insights>=0.20.0<0.21:devel/rubygem-azure_mgmt_operational_insights \ rubygem-azure_mgmt_operations_management>=0.17.1<0.18:devel/rubygem-azure_mgmt_operations_management \ rubygem-azure_mgmt_peering>=0.17.1<0.18:devel/rubygem-azure_mgmt_peering \ rubygem-azure_mgmt_policy>=0.17.9<0.18:devel/rubygem-azure_mgmt_policy \ rubygem-azure_mgmt_policy_insights>=0.17.8<0.18:devel/rubygem-azure_mgmt_policy_insights \ rubygem-azure_mgmt_portal>=0.17.1<0.18:devel/rubygem-azure_mgmt_portal \ rubygem-azure_mgmt_postgresql>=0.17.2<0.18:devel/rubygem-azure_mgmt_postgresql \ rubygem-azure_mgmt_powerbi_dedicated>=0.17.1<0.18:devel/rubygem-azure_mgmt_powerbi_dedicated \ rubygem-azure_mgmt_powerbi_embedded>=0.17.2<0.18:devel/rubygem-azure_mgmt_powerbi_embedded \ rubygem-azure_mgmt_privatedns>=0.17.2<0.18:devel/rubygem-azure_mgmt_privatedns \ rubygem-azure_mgmt_recovery_services>=0.18.2<0.19:devel/rubygem-azure_mgmt_recovery_services \ rubygem-azure_mgmt_recovery_services_backup>=0.18.2<0.19:devel/rubygem-azure_mgmt_recovery_services_backup \ rubygem-azure_mgmt_recovery_services_site_recovery>=0.17.3<0.18:devel/rubygem-azure_mgmt_recovery_services_site_recovery \ rubygem-azure_mgmt_redis>=0.17.4<0.18:devel/rubygem-azure_mgmt_redis \ rubygem-azure_mgmt_relay>=0.17.3<0.18:devel/rubygem-azure_mgmt_relay \ rubygem-azure_mgmt_reservations>=0.20.0<0.21:devel/rubygem-azure_mgmt_reservations \ rubygem-azure_mgmt_resource_health>=0.17.1<0.18:devel/rubygem-azure_mgmt_resource_health \ rubygem-azure_mgmt_resourcegraph>=0.17.2<0.18:devel/rubygem-azure_mgmt_resourcegraph \ rubygem-azure_mgmt_resources>=0.18.2<0.19:devel/rubygem-azure_mgmt_resources \ rubygem-azure_mgmt_resources_management>=0.17.2<0.18:devel/rubygem-azure_mgmt_resources_management \ rubygem-azure_mgmt_scheduler>=0.17.2<0.18:devel/rubygem-azure_mgmt_scheduler \ rubygem-azure_mgmt_search>=0.17.3<0.18:devel/rubygem-azure_mgmt_search \ rubygem-azure_mgmt_security>=0.19.0<0.20:devel/rubygem-azure_mgmt_security \ rubygem-azure_mgmt_serialconsole>=0.17.1<0.18:devel/rubygem-azure_mgmt_serialconsole \ rubygem-azure_mgmt_service_bus>=0.17.4<0.18:devel/rubygem-azure_mgmt_service_bus \ rubygem-azure_mgmt_service_fabric>=0.17.3<0.18:devel/rubygem-azure_mgmt_service_fabric \ rubygem-azure_mgmt_signalr>=0.17.5<0.18:devel/rubygem-azure_mgmt_signalr \ rubygem-azure_mgmt_sql>=0.19.1<0.20:devel/rubygem-azure_mgmt_sql \ rubygem-azure_mgmt_sqlvirtualmachine>=0.18.2<0.19:devel/rubygem-azure_mgmt_sqlvirtualmachine \ rubygem-azure_mgmt_stor_simple8000_series>=0.17.3<0.18:devel/rubygem-azure_mgmt_stor_simple8000_series \ rubygem-azure_mgmt_storage>=0.23.0<0.24:devel/rubygem-azure_mgmt_storage \ rubygem-azure_mgmt_storagecache>=0.19.1<0.20:devel/rubygem-azure_mgmt_storagecache \ rubygem-azure_mgmt_storagesync>=0.18.1<0.19:devel/rubygem-azure_mgmt_storagesync \ rubygem-azure_mgmt_stream_analytics>=0.17.3<0.18:devel/rubygem-azure_mgmt_stream_analytics \ rubygem-azure_mgmt_subscriptions>=0.18.5<0.19:devel/rubygem-azure_mgmt_subscriptions \ rubygem-azure_mgmt_support>=0.17.1<0.18:devel/rubygem-azure_mgmt_support \ rubygem-azure_mgmt_synapse>=0.17.4<0.18:devel/rubygem-azure_mgmt_synapse \ rubygem-azure_mgmt_time_series_insights>=0.17.1<0.18:devel/rubygem-azure_mgmt_time_series_insights \ rubygem-azure_mgmt_traffic_manager>=0.17.4<0.18:devel/rubygem-azure_mgmt_traffic_manager \ rubygem-azure_mgmt_vmware_cloudsimple>=0.17.1<0.18:devel/rubygem-azure_mgmt_vmware_cloudsimple \ rubygem-azure_mgmt_web>=0.18.1<0.19:devel/rubygem-azure_mgmt_web \ rubygem-azure_service_fabric>=0.18.1<0.19:devel/rubygem-azure_service_fabric USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-azure_service_fabric/Makefile b/devel/rubygem-azure_service_fabric/Makefile index e9b38f805ecc..0f3b360d23aa 100644 --- a/devel/rubygem-azure_service_fabric/Makefile +++ b/devel/rubygem-azure_service_fabric/Makefile @@ -1,20 +1,19 @@ PORTNAME= azure_service_fabric PORTVERSION= 0.18.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Service Fabric Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/data/azure_service_fabric LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-backports/Makefile b/devel/rubygem-backports/Makefile index 93d6b027ce0e..3ab3bb5e7b46 100644 --- a/devel/rubygem-backports/Makefile +++ b/devel/rubygem-backports/Makefile @@ -1,18 +1,17 @@ PORTNAME= backports PORTVERSION= 3.23.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby 1.9 backports for 1.8 WWW= https://github.com/marcandre/backports LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-bacon/Makefile b/devel/rubygem-bacon/Makefile index 75c2f1ddd1c7..deb8f801a9f2 100644 --- a/devel/rubygem-bacon/Makefile +++ b/devel/rubygem-bacon/Makefile @@ -1,19 +1,18 @@ PORTNAME= bacon PORTVERSION= 1.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Small RSpec clone WWW= https://github.com/leahneukirchen/bacon LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/bacon .include diff --git a/devel/rubygem-baf/Makefile b/devel/rubygem-baf/Makefile index a31bfc2bfc00..45e317fd9e10 100644 --- a/devel/rubygem-baf/Makefile +++ b/devel/rubygem-baf/Makefile @@ -1,17 +1,16 @@ PORTNAME= baf DISTVERSION= 0.14.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= tj+freebsd_ports@a13.fr COMMENT= Basic Application Framework WWW= https://rubygems.org/gems/baf LICENSE= BSD3CLAUSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-batch-loader/Makefile b/devel/rubygem-batch-loader/Makefile index aaf1213064ee..b271fd6b14ae 100644 --- a/devel/rubygem-batch-loader/Makefile +++ b/devel/rubygem-batch-loader/Makefile @@ -1,18 +1,17 @@ PORTNAME= batch-loader PORTVERSION= 2.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Powerful tool to avoid N+1 DB or HTTP queries WWW= https://github.com/exAspArk/batch-loader LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-benelux/Makefile b/devel/rubygem-benelux/Makefile index da7ccee085a8..04ee4bedab02 100644 --- a/devel/rubygem-benelux/Makefile +++ b/devel/rubygem-benelux/Makefile @@ -1,21 +1,20 @@ PORTNAME= benelux PORTVERSION= 0.6.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Mad way to time Ruby codes WWW= https://github.com/delano/benelux LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-attic>=0.5.3:devel/rubygem-attic \ rubygem-storable>=0.8.6:devel/rubygem-storable USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-better_html-rails61/Makefile b/devel/rubygem-better_html-rails61/Makefile index b9deb6f3f2fb..d7b4269d7d26 100644 --- a/devel/rubygem-better_html-rails61/Makefile +++ b/devel/rubygem-better_html-rails61/Makefile @@ -1,24 +1,23 @@ PORTNAME= better_html PORTVERSION= 2.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= bofh@FreeBSD.org COMMENT= Better HTML for Rails WWW= https://github.com/Shopify/better-html LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionview61>=6.0:devel/rubygem-actionview61 \ rubygem-activesupport61>=6.0:devel/rubygem-activesupport61 \ rubygem-ast>=2.0:devel/rubygem-ast \ rubygem-erubi>=1.4:www/rubygem-erubi \ rubygem-parser>=2.4:devel/rubygem-parser \ rubygem-smart_properties>0:devel/rubygem-smart_properties USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-bin_utils/Makefile b/devel/rubygem-bin_utils/Makefile index 8fb374a910e3..71aa882863b0 100644 --- a/devel/rubygem-bin_utils/Makefile +++ b/devel/rubygem-bin_utils/Makefile @@ -1,15 +1,14 @@ PORTNAME= bin_utils PORTVERSION= 0.0.7 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Extracting binary integers from binary string and packing back WWW= https://github.com/funny-falcon/bin_utils LICENSE= MIT -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-bindata/Makefile b/devel/rubygem-bindata/Makefile index 3f7951ba149c..0019c593f257 100644 --- a/devel/rubygem-bindata/Makefile +++ b/devel/rubygem-bindata/Makefile @@ -1,21 +1,20 @@ PORTNAME= bindata PORTVERSION= 2.4.14 CATEGORIES= devel ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby library to read and write binary file formats WWW= https://github.com/dmendel/bindata LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL LICENSE_FILE_RUBY= ${WRKSRC}/COPYING USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-bindex/Makefile b/devel/rubygem-bindex/Makefile index 6db8ef715fee..e0c770409cbf 100644 --- a/devel/rubygem-bindex/Makefile +++ b/devel/rubygem-bindex/Makefile @@ -1,16 +1,15 @@ PORTNAME= bindex PORTVERSION= 0.8.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Bindings for your Ruby exceptions WWW= https://github.com/gsamokovarov/skiptrace LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-binding_of_caller/Makefile b/devel/rubygem-binding_of_caller/Makefile index c3d86dbcff6a..29bf9b66668a 100644 --- a/devel/rubygem-binding_of_caller/Makefile +++ b/devel/rubygem-binding_of_caller/Makefile @@ -1,19 +1,18 @@ PORTNAME= binding_of_caller PORTVERSION= 1.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Retrieve the binding of a methods caller WWW= https://github.com/banister/binding_of_caller LICENSE= MIT RUN_DEPENDS= rubygem-debug_inspector>=0.0.1:devel/rubygem-debug_inspector USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-bit-struct/Makefile b/devel/rubygem-bit-struct/Makefile index 4a471993b469..211f1c25e2ff 100644 --- a/devel/rubygem-bit-struct/Makefile +++ b/devel/rubygem-bit-struct/Makefile @@ -1,19 +1,18 @@ PORTNAME= bit-struct PORTVERSION= 0.17 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library for packed binary data stored in ruby Strings WWW= https://github.com/vjoel/bit-struct LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-blankslate/Makefile b/devel/rubygem-blankslate/Makefile index 40a0cae3b50c..85599e73f28a 100644 --- a/devel/rubygem-blankslate/Makefile +++ b/devel/rubygem-blankslate/Makefile @@ -1,18 +1,17 @@ PORTNAME= blankslate PORTVERSION= 3.1.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Abstract base class with no predefined methods WWW= https://github.com/masover/blankslate LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-blockenspiel/Makefile b/devel/rubygem-blockenspiel/Makefile index 2855d3d31d2d..2bab11762023 100644 --- a/devel/rubygem-blockenspiel/Makefile +++ b/devel/rubygem-blockenspiel/Makefile @@ -1,16 +1,15 @@ PORTNAME= blockenspiel PORTVERSION= 0.5.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library designed to make it easy to implement DSL blocks in Ruby WWW= https://dazuma.github.io/blockenspiel/ LICENSE= BSD3CLAUSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-bones/Makefile b/devel/rubygem-bones/Makefile index 864b7c1bd043..ce7f04a0ee32 100644 --- a/devel/rubygem-bones/Makefile +++ b/devel/rubygem-bones/Makefile @@ -1,24 +1,23 @@ PORTNAME= bones PORTVERSION= 3.9.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Tool to create new projects from code skeleton WWW= https://github.com/TwP/bones LICENSE= MIT RUN_DEPENDS= rubygem-little-plugger>=1.1<2:devel/rubygem-little-plugger \ rubygem-loquacious>=1.9<2:devel/rubygem-loquacious \ rubygem-rake>=13.0<14:devel/rubygem-rake \ rubygem-rdoc>=6.0<7:devel/rubygem-rdoc USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/bones .include diff --git a/devel/rubygem-bootsnap/Makefile b/devel/rubygem-bootsnap/Makefile index e670f1f3206d..d115cb5d39ed 100644 --- a/devel/rubygem-bootsnap/Makefile +++ b/devel/rubygem-bootsnap/Makefile @@ -1,20 +1,19 @@ PORTNAME= bootsnap PORTVERSION= 1.14.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Boot large ruby/rails apps faster WWW= https://github.com/Shopify/bootsnap LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-msgpack>=1.2<2:devel/rubygem-msgpack USES= gem -USE_RUBY= yes PLIST_FILES= bin/bootsnap .include diff --git a/devel/rubygem-bootsnap111/Makefile b/devel/rubygem-bootsnap111/Makefile index 84e1b3cfe06e..fc4d7e417253 100644 --- a/devel/rubygem-bootsnap111/Makefile +++ b/devel/rubygem-bootsnap111/Makefile @@ -1,24 +1,23 @@ PORTNAME= bootsnap PORTVERSION= 1.11.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 111 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Boot large ruby/rails apps faster WWW= https://github.com/Shopify/bootsnap LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-msgpack>=1.2<2:devel/rubygem-msgpack USES= gem -USE_RUBY= yes PORTSCOUT= limit:^1\.11\. post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/bootsnap .include diff --git a/devel/rubygem-bootsnap112/Makefile b/devel/rubygem-bootsnap112/Makefile index c70dff7449fe..58c650a70af4 100644 --- a/devel/rubygem-bootsnap112/Makefile +++ b/devel/rubygem-bootsnap112/Makefile @@ -1,24 +1,23 @@ PORTNAME= bootsnap PORTVERSION= 1.12.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 112 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Boot large ruby/rails apps faster WWW= https://github.com/Shopify/bootsnap LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-msgpack>=1.2<2:devel/rubygem-msgpack USES= gem -USE_RUBY= yes PORTSCOUT= limit:^1\.12\. post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/bootsnap .include diff --git a/devel/rubygem-bootstrap_form/Makefile b/devel/rubygem-bootstrap_form/Makefile index 446b37e4b672..5804bf8c09ae 100644 --- a/devel/rubygem-bootstrap_form/Makefile +++ b/devel/rubygem-bootstrap_form/Makefile @@ -1,22 +1,21 @@ PORTNAME= bootstrap_form PORTVERSION= 4.2.0 PORTREVISION= 5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Form builder using Twitter Bootstrap 3+ WWW= https://github.com/bootstrap-ruby/rails-bootstrap-forms LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-actionpack61>=5.0:www/rubygem-actionpack61 \ rubygem-activemodel61>=5.0:databases/rubygem-activemodel61 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-bson/Makefile b/devel/rubygem-bson/Makefile index ff1a0d3473e6..c0d39dd1f1a7 100644 --- a/devel/rubygem-bson/Makefile +++ b/devel/rubygem-bson/Makefile @@ -1,18 +1,17 @@ PORTNAME= bson PORTVERSION= 4.15.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Full featured BSON specification implementation in Ruby WWW= https://github.com/mongodb/bson-ruby LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= cpe gem -USE_RUBY= yes CPE_VENDOR= bson_project .include diff --git a/devel/rubygem-buftok/Makefile b/devel/rubygem-buftok/Makefile index 19e5b29e618b..e850d0d92b9d 100644 --- a/devel/rubygem-buftok/Makefile +++ b/devel/rubygem-buftok/Makefile @@ -1,18 +1,17 @@ PORTNAME= buftok PORTVERSION= 0.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Extracts token delimited entities from arbitrary inputs WWW= https://github.com/sferik/buftok LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-bugspots/Makefile b/devel/rubygem-bugspots/Makefile index 41b1cb592e0b..2c307d9b607d 100644 --- a/devel/rubygem-bugspots/Makefile +++ b/devel/rubygem-bugspots/Makefile @@ -1,22 +1,21 @@ PORTNAME= bugspots PORTVERSION= 0.2.2 PORTREVISION= 2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple bug prediction heuristic WWW= https://github.com/igrigorik/bugspots LICENSE= MIT RUN_DEPENDS= rubygem-rainbow>=0:devel/rubygem-rainbow \ rubygem-rugged>=0.21.0:devel/rubygem-rugged NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/bugspots bin/git-bugspots .include diff --git a/devel/rubygem-builder/Makefile b/devel/rubygem-builder/Makefile index 9256be7d0f57..f7e4f5ff700b 100644 --- a/devel/rubygem-builder/Makefile +++ b/devel/rubygem-builder/Makefile @@ -1,18 +1,17 @@ PORTNAME= builder PORTVERSION= 3.2.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Facilitate programmatic generation of XML markup WWW= https://github.com/tenderlove/builder LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-byebug/Makefile b/devel/rubygem-byebug/Makefile index 4526a741122b..2e91a27e5202 100644 --- a/devel/rubygem-byebug/Makefile +++ b/devel/rubygem-byebug/Makefile @@ -1,18 +1,17 @@ PORTNAME= byebug PORTVERSION= 11.1.3 CATEGORIES= devel ruby MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby 2 debugger WWW= https://github.com/deivid-rodriguez/byebug LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes PLIST_FILES= bin/byebug .include diff --git a/devel/rubygem-c21e/Makefile b/devel/rubygem-c21e/Makefile index c4e07b18c604..29a44dfc696e 100644 --- a/devel/rubygem-c21e/Makefile +++ b/devel/rubygem-c21e/Makefile @@ -1,18 +1,17 @@ PORTNAME= c21e PORTVERSION= 2.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Run cross-platform executables WWW= https://github.com/cucumber/c21e-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-cabin/Makefile b/devel/rubygem-cabin/Makefile index f801d8a6aeb1..eebc8c5d43da 100644 --- a/devel/rubygem-cabin/Makefile +++ b/devel/rubygem-cabin/Makefile @@ -1,15 +1,14 @@ PORTNAME= cabin PORTVERSION= 0.9.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= swills@FreeBSD.org COMMENT= Structured+contextual logging experiments in Ruby WWW= https://github.com/jordansissel/ruby-cabin NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/rubygems-cabin-test .include diff --git a/devel/rubygem-caesars/Makefile b/devel/rubygem-caesars/Makefile index 1cd80c7e07e3..780c26c8c53d 100644 --- a/devel/rubygem-caesars/Makefile +++ b/devel/rubygem-caesars/Makefile @@ -1,17 +1,16 @@ PORTNAME= caesars PORTVERSION= 0.7.4 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= swills@FreeBSD.org COMMENT= Rapid DSL prototyping in Ruby WWW= https://github.com/delano/caesars NO_ARCH= yes -USE_RUBY= yes USES= gem shebangfix SHEBANG_FILES= bin/example .include diff --git a/devel/rubygem-cairo-gobject/Makefile b/devel/rubygem-cairo-gobject/Makefile index e05f12f025f5..fba8114223fa 100644 --- a/devel/rubygem-cairo-gobject/Makefile +++ b/devel/rubygem-cairo-gobject/Makefile @@ -1,20 +1,19 @@ PORTNAME= cairo-gobject PORTVERSION= 4.0.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding of cairo-gobject WWW= https://ruby-gnome.github.io/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB RUN_DEPENDS= rubygem-cairo>=1.16.2:graphics/rubygem-cairo \ rubygem-glib2>=${PORTVERSION}:devel/rubygem-glib2 USES= gem gnome USE_GNOME= cairo glib20 -USE_RUBY= yes .include diff --git a/devel/rubygem-capybara-screenshot/Makefile b/devel/rubygem-capybara-screenshot/Makefile index 75e53ee7e4a7..dea8ae92bdbe 100644 --- a/devel/rubygem-capybara-screenshot/Makefile +++ b/devel/rubygem-capybara-screenshot/Makefile @@ -1,21 +1,20 @@ PORTNAME= capybara-screenshot PORTVERSION= 1.0.26 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Automatically create snapshots with Capybara WWW= https://github.com/mattheworiordan/capybara-screenshot LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-capybara>=1.0<4:devel/rubygem-capybara \ rubygem-launchy>=0:devel/rubygem-launchy USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-capybara/Makefile b/devel/rubygem-capybara/Makefile index 97760ec2b757..e220a6471c9d 100644 --- a/devel/rubygem-capybara/Makefile +++ b/devel/rubygem-capybara/Makefile @@ -1,27 +1,26 @@ PORTNAME= capybara PORTVERSION= 3.38.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Integration testing tool for rack based web applications WWW= https://github.com/teamcapybara/capybara LICENSE= MIT LICENSE_FILE= ${WRKSRC}/License.txt RUN_DEPENDS= rubygem-addressable>=0:www/rubygem-addressable \ rubygem-matrix>=0:math/rubygem-matrix \ rubygem-mini_mime>=0.1.3:mail/rubygem-mini_mime \ rubygem-nokogiri>=1.8<2:textproc/rubygem-nokogiri \ rubygem-rack>=1.6.0,3:www/rubygem-rack \ rubygem-rack-test>=0.6.3:www/rubygem-rack-test \ rubygem-regexp_parser>=1.5<3.0:textproc/rubygem-regexp_parser \ rubygem-xpath>=3.2<4:devel/rubygem-xpath USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-cbor/Makefile b/devel/rubygem-cbor/Makefile index df94b7f73cf7..6ad3b3c6c73e 100644 --- a/devel/rubygem-cbor/Makefile +++ b/devel/rubygem-cbor/Makefile @@ -1,15 +1,14 @@ PORTNAME= cbor PORTVERSION= 0.5.9.6 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Library for CBOR binary object representation WWW= https://cbor.io/ LICENSE= APACHE20 USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-celluloid-essentials/Makefile b/devel/rubygem-celluloid-essentials/Makefile index ce893fbfb409..fc4c90a7987a 100644 --- a/devel/rubygem-celluloid-essentials/Makefile +++ b/devel/rubygem-celluloid-essentials/Makefile @@ -1,20 +1,19 @@ PORTNAME= celluloid-essentials PORTVERSION= 0.20.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Internally used tools, and superstructural dependencies of Celluloid WWW= https://github.com/celluloid/celluloid-essentials LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-timers>=4.1.1:devel/rubygem-timers USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-celluloid-extras/Makefile b/devel/rubygem-celluloid-extras/Makefile index 558e8f26bdb5..ceff42977247 100644 --- a/devel/rubygem-celluloid-extras/Makefile +++ b/devel/rubygem-celluloid-extras/Makefile @@ -1,20 +1,19 @@ PORTNAME= celluloid-extras PORTVERSION= 0.20.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Celluloid expansion, testing, and example classes WWW= https://github.com/celluloid/celluloid-extras LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-timers>=4.1.1:devel/rubygem-timers USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-celluloid-fsm/Makefile b/devel/rubygem-celluloid-fsm/Makefile index b9b9cf87f82f..56bc58c55e49 100644 --- a/devel/rubygem-celluloid-fsm/Makefile +++ b/devel/rubygem-celluloid-fsm/Makefile @@ -1,20 +1,19 @@ PORTNAME= celluloid-fsm PORTVERSION= 0.20.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple finite state machines with integrated Celluloid timeout support WWW= https://github.com/celluloid/celluloid-fsm LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-timers>=4.1.1:devel/rubygem-timers USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-celluloid-io/Makefile b/devel/rubygem-celluloid-io/Makefile index da51476ef2e5..1457a433e4f6 100644 --- a/devel/rubygem-celluloid-io/Makefile +++ b/devel/rubygem-celluloid-io/Makefile @@ -1,22 +1,21 @@ PORTNAME= celluloid-io PORTVERSION= 0.17.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Evented IO for Celluloid actors WWW= https://github.com/celluloid/celluloid-io LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-celluloid>=0.17.2:devel/rubygem-celluloid \ rubygem-nio4r>=1.1:devel/rubygem-nio4r \ rubygem-timers>=4.1.1:devel/rubygem-timers USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-celluloid-pool/Makefile b/devel/rubygem-celluloid-pool/Makefile index 8683b89e8d1d..6f2f45e38442 100644 --- a/devel/rubygem-celluloid-pool/Makefile +++ b/devel/rubygem-celluloid-pool/Makefile @@ -1,20 +1,19 @@ PORTNAME= celluloid-pool PORTVERSION= 0.20.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Actor pools for Celluloid WWW= https://github.com/celluloid/celluloid-pool LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-timers>=4.1.1:devel/rubygem-timers USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-celluloid-supervision/Makefile b/devel/rubygem-celluloid-supervision/Makefile index f24105d3e2cc..5f9a0b0a8369 100644 --- a/devel/rubygem-celluloid-supervision/Makefile +++ b/devel/rubygem-celluloid-supervision/Makefile @@ -1,20 +1,19 @@ PORTNAME= celluloid-supervision PORTVERSION= 0.20.6 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Supervisors, supervision groups, and supervision trees for Celluloid WWW= https://github.com/celluloid/celluloid-supervision LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-timers>=4.1.1:devel/rubygem-timers USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-celluloid/Makefile b/devel/rubygem-celluloid/Makefile index 77bf1c1453c9..112cb69e446d 100644 --- a/devel/rubygem-celluloid/Makefile +++ b/devel/rubygem-celluloid/Makefile @@ -1,20 +1,19 @@ PORTNAME= celluloid PORTVERSION= 0.18.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Build concurrent programs out of concurrent objects WWW= https://github.com/celluloid/celluloid LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-timers>=4<5:devel/rubygem-timers USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-cf-uaa-lib/Makefile b/devel/rubygem-cf-uaa-lib/Makefile index 8dc190744907..f79f3600a658 100644 --- a/devel/rubygem-cf-uaa-lib/Makefile +++ b/devel/rubygem-cf-uaa-lib/Makefile @@ -1,22 +1,21 @@ PORTNAME= cf-uaa-lib PORTVERSION= 3.13.0 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Client library for CloudFoundry UAA WWW= https://github.com/cloudfoundry/cf-uaa-lib LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-httpclient>=2.8.2.4<3:www/rubygem-httpclient \ rubygem-multi_json>=1.12.1<2:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-cheffish/Makefile b/devel/rubygem-cheffish/Makefile index a8a2337ff268..5de7c9dc15d3 100644 --- a/devel/rubygem-cheffish/Makefile +++ b/devel/rubygem-cheffish/Makefile @@ -1,20 +1,19 @@ PORTNAME= cheffish PORTVERSION= 16.0.26 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library to manipulate Chef in Chef WWW= https://github.com/chef/cheffish LICENSE= APACHE20 RUN_DEPENDS= rubygem-chef-zero>=14.0:sysutils/rubygem-chef-zero \ rubygem-net-ssh>=0,2:security/rubygem-net-ssh USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-childprocess/Makefile b/devel/rubygem-childprocess/Makefile index 1ae25b30e00c..43c7c03582f7 100644 --- a/devel/rubygem-childprocess/Makefile +++ b/devel/rubygem-childprocess/Makefile @@ -1,18 +1,17 @@ PORTNAME= childprocess PORTVERSION= 4.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= External background process controller WWW= https://github.com/enkessler/childprocess LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-childprocess3/Makefile b/devel/rubygem-childprocess3/Makefile index 77619087eac7..09c9f5c83fec 100644 --- a/devel/rubygem-childprocess3/Makefile +++ b/devel/rubygem-childprocess3/Makefile @@ -1,21 +1,20 @@ PORTNAME= childprocess PORTVERSION= 3.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 3 MAINTAINER= sunpoet@FreeBSD.org COMMENT= External background process controller WWW= https://github.com/enkessler/childprocess LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^3\. .include diff --git a/devel/rubygem-childprocess40/Makefile b/devel/rubygem-childprocess40/Makefile index 49f1a6747414..9238d37d7960 100644 --- a/devel/rubygem-childprocess40/Makefile +++ b/devel/rubygem-childprocess40/Makefile @@ -1,21 +1,20 @@ PORTNAME= childprocess PORTVERSION= 4.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 40 MAINTAINER= sunpoet@FreeBSD.org COMMENT= External background process controller WWW= https://github.com/enkessler/childprocess LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^4\.0\. .include diff --git a/devel/rubygem-chronic/Makefile b/devel/rubygem-chronic/Makefile index 8cd194ca53cd..e1e47ac79963 100644 --- a/devel/rubygem-chronic/Makefile +++ b/devel/rubygem-chronic/Makefile @@ -1,18 +1,17 @@ PORTNAME= chronic PORTVERSION= 0.10.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Natural language date/time parser written in pure Ruby WWW= https://github.com/mojombo/chronic LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-chronic_duration/Makefile b/devel/rubygem-chronic_duration/Makefile index 80573fae3180..dc74886d5b72 100644 --- a/devel/rubygem-chronic_duration/Makefile +++ b/devel/rubygem-chronic_duration/Makefile @@ -1,20 +1,19 @@ PORTNAME= chronic_duration PORTVERSION= 0.10.6 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Natural language parser for elapsed time WWW= https://github.com/hpoydar/chronic_duration LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-numerizer>=0.1.1:devel/rubygem-numerizer USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-claide-plugins/Makefile b/devel/rubygem-claide-plugins/Makefile index b84fa79dc0a1..3821266c47c6 100644 --- a/devel/rubygem-claide-plugins/Makefile +++ b/devel/rubygem-claide-plugins/Makefile @@ -1,22 +1,21 @@ PORTNAME= claide-plugins PORTVERSION= 0.9.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Plugins system for claide WWW= https://github.com/cocoapods/claide-plugins LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-cork>=0:devel/rubygem-cork \ rubygem-nap>=0:devel/rubygem-nap \ rubygem-open4>=1.3<2:devel/rubygem-open4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-claide/Makefile b/devel/rubygem-claide/Makefile index 8e9ad4ffacbe..0c03bb19adb4 100644 --- a/devel/rubygem-claide/Makefile +++ b/devel/rubygem-claide/Makefile @@ -1,18 +1,17 @@ PORTNAME= claide PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Command-line interface framework WWW= https://about.gitlab.com/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-clamp/Makefile b/devel/rubygem-clamp/Makefile index cc43cfd39b12..ddca08e573dc 100644 --- a/devel/rubygem-clamp/Makefile +++ b/devel/rubygem-clamp/Makefile @@ -1,18 +1,17 @@ PORTNAME= clamp PORTVERSION= 1.3.2 CATEGORIES= devel ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Command-line utility framework for Ruby WWW= https://github.com/mdub/clamp LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-clamp11/Makefile b/devel/rubygem-clamp11/Makefile index cf150181de99..0a54cf7c4073 100644 --- a/devel/rubygem-clamp11/Makefile +++ b/devel/rubygem-clamp11/Makefile @@ -1,21 +1,20 @@ PORTNAME= clamp PORTVERSION= 1.1.2 CATEGORIES= devel ruby MASTER_SITES= RG PKGNAMESUFFIX= 11 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Command-line utility framework for Ruby WWW= https://github.com/mdub/clamp LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\.1\. .include diff --git a/devel/rubygem-classifier-reborn/Makefile b/devel/rubygem-classifier-reborn/Makefile index 95414520b47c..fb85211b3452 100644 --- a/devel/rubygem-classifier-reborn/Makefile +++ b/devel/rubygem-classifier-reborn/Makefile @@ -1,21 +1,20 @@ PORTNAME= classifier-reborn PORTVERSION= 2.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Classifier module for Bayesian and other types of classifications WWW= https://github.com/jekyll/classifier-reborn LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-fast-stemmer>=1.0<2:devel/rubygem-fast-stemmer \ rubygem-matrix>=0.4<1:math/rubygem-matrix USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-classifier/Makefile b/devel/rubygem-classifier/Makefile index f39d4163a619..15b25ca385c1 100644 --- a/devel/rubygem-classifier/Makefile +++ b/devel/rubygem-classifier/Makefile @@ -1,21 +1,20 @@ PORTNAME= classifier PORTVERSION= 1.3.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Classifier module for Bayesian and other types of classifications WWW= http://classifier.rufy.com/ LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-fast-stemmer>=1.0.0:devel/rubygem-fast-stemmer \ rubygem-mathn>=0:math/rubygem-mathn \ rubygem-rake>=0:devel/rubygem-rake NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-climate_control/Makefile b/devel/rubygem-climate_control/Makefile index e9d425afe2d7..51dabeb61a6d 100644 --- a/devel/rubygem-climate_control/Makefile +++ b/devel/rubygem-climate_control/Makefile @@ -1,18 +1,17 @@ PORTNAME= climate_control PORTVERSION= 1.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Modify your ENV WWW= https://github.com/thoughtbot/climate_control LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-clio/Makefile b/devel/rubygem-clio/Makefile index 33aa0f187d0e..d4c8c77f1027 100644 --- a/devel/rubygem-clio/Makefile +++ b/devel/rubygem-clio/Makefile @@ -1,17 +1,16 @@ PORTNAME= clio PORTVERSION= 0.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= loic-freebsd@loicp.eu COMMENT= Make easier commandline parsing and console output WWW= https://rubygems.org/gems/clio LICENSE= GPLv3 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-cliprompt/Makefile b/devel/rubygem-cliprompt/Makefile index e3e9ef6bf943..1229caedd44d 100644 --- a/devel/rubygem-cliprompt/Makefile +++ b/devel/rubygem-cliprompt/Makefile @@ -1,19 +1,18 @@ PORTNAME= cliprompt PORTVERSION= 0.1.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mose@mose.com COMMENT= Env aware lib for CLI prompt WWW= https://github.com/mose/clipromopt LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-paint>=1.0.0:devel/rubygem-paint NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-cloudfiles/Makefile b/devel/rubygem-cloudfiles/Makefile index a2910ecffe1d..7195a42d3b1d 100644 --- a/devel/rubygem-cloudfiles/Makefile +++ b/devel/rubygem-cloudfiles/Makefile @@ -1,20 +1,19 @@ PORTNAME= cloudfiles PORTVERSION= 1.5.0.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby version of the Rackspace Cloud Files API WWW= http://www.rackspacecloud.com/cloud_hosting_products/files LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-json>=0:devel/rubygem-json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-cms_scanner/Makefile b/devel/rubygem-cms_scanner/Makefile index f2613806dabf..7924b8861b13 100644 --- a/devel/rubygem-cms_scanner/Makefile +++ b/devel/rubygem-cms_scanner/Makefile @@ -1,28 +1,27 @@ PORTNAME= cms_scanner PORTVERSION= 0.13.0 PORTREVISION= 2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= rihaz.jerrin@gmail.com COMMENT= Framework to provide an easy way to implement CMS Scanners WWW= https://github.com/wpscanteam/CMSScanner LICENSE= MIT RUN_DEPENDS= rubygem-get_process_mem>=0.2.5<0.3:devel/rubygem-get_process_mem \ rubygem-nokogiri111>=1.11.0<1.12:textproc/rubygem-nokogiri111 \ rubygem-opt_parse_validator>=1.8.3<1.10:devel/rubygem-opt_parse_validator \ rubygem-public_suffix>=4.0.3:dns/rubygem-public_suffix \ rubygem-ruby-progressbar>=1.10.0<1.12:devel/rubygem-ruby-progressbar \ rubygem-sys-proctable>=1.2.2<1.3:sysutils/rubygem-sys-proctable \ rubygem-typhoeus>=1.3.0<1.5:www/rubygem-typhoeus \ rubygem-xmlrpc>=0.3<1:net/rubygem-xmlrpc \ rubygem-yajl-ruby>=1.4.1<1.5:devel/rubygem-yajl-ruby USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-cocaine/Makefile b/devel/rubygem-cocaine/Makefile index 27fc1b78edfa..e5cd389337a8 100644 --- a/devel/rubygem-cocaine/Makefile +++ b/devel/rubygem-cocaine/Makefile @@ -1,20 +1,19 @@ PORTNAME= cocaine PORTVERSION= 0.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Small library for doing (command) lines WWW= https://github.com/thoughtbot/cocaine LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-terrapin>=${PORTVERSION}:devel/rubygem-terrapin NO_ARCH= yes -USE_RUBY= yes USES= cpe gem CPE_VENDOR= thoughtbot .include diff --git a/devel/rubygem-cocoon/Makefile b/devel/rubygem-cocoon/Makefile index 7775a9cc7ffa..193358c9bda7 100644 --- a/devel/rubygem-cocoon/Makefile +++ b/devel/rubygem-cocoon/Makefile @@ -1,18 +1,17 @@ PORTNAME= cocoon PORTVERSION= 1.2.15 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= bofh@FreeBSD.org COMMENT= Unobtrusive nested forms handling, using jQuery WWW= https://github.com/nathanvda/cocoon LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cpe gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-coercible/Makefile b/devel/rubygem-coercible/Makefile index b7afc62e759d..c2130ae54f4e 100644 --- a/devel/rubygem-coercible/Makefile +++ b/devel/rubygem-coercible/Makefile @@ -1,20 +1,19 @@ PORTNAME= coercible PORTVERSION= 1.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby coercion library WWW= https://github.com/solnic/coercible LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-descendants_tracker>=0.0.1:devel/rubygem-descendants_tracker USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-coffee-rails-rails5/Makefile b/devel/rubygem-coffee-rails-rails5/Makefile index 1dcc49f72b0e..1e41792fb3b1 100644 --- a/devel/rubygem-coffee-rails-rails5/Makefile +++ b/devel/rubygem-coffee-rails-rails5/Makefile @@ -1,25 +1,24 @@ PORTNAME= coffee-rails PORTVERSION= 4.2.2 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Coffee Script adapter for the Rails asset pipeline WWW= https://github.com/rails/coffee-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-coffee-script>=2.2.0:devel/rubygem-coffee-script \ rubygem-railties5>=4.0.0:www/rubygem-railties5 USES= gem -USE_RUBY= yes NO_ARCH= yes # coffee-rails 5.0.0+ requires Rails 5.2.0+ PORTSCOUT= limit:^4\. .include diff --git a/devel/rubygem-coffee-rails-rails50/Makefile b/devel/rubygem-coffee-rails-rails50/Makefile index bf5772129532..7f6dcabc000b 100644 --- a/devel/rubygem-coffee-rails-rails50/Makefile +++ b/devel/rubygem-coffee-rails-rails50/Makefile @@ -1,25 +1,24 @@ PORTNAME= coffee-rails PORTVERSION= 4.2.2 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Coffee Script adapter for the Rails asset pipeline WWW= https://github.com/rails/coffee-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-coffee-script>=2.2.0:devel/rubygem-coffee-script \ rubygem-railties50>=4.0.0:www/rubygem-railties50 USES= gem -USE_RUBY= yes NO_ARCH= yes # coffee-rails 5.0.0+ requires Rails 5.2.0+ PORTSCOUT= limit:^4\. .include diff --git a/devel/rubygem-coffee-rails-rails52/Makefile b/devel/rubygem-coffee-rails-rails52/Makefile index 2478507d39f2..c01a1d88f51f 100644 --- a/devel/rubygem-coffee-rails-rails52/Makefile +++ b/devel/rubygem-coffee-rails-rails52/Makefile @@ -1,22 +1,21 @@ PORTNAME= coffee-rails PORTVERSION= 5.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Coffee Script adapter for the Rails asset pipeline WWW= https://github.com/rails/coffee-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-coffee-script>=2.2.0:devel/rubygem-coffee-script \ rubygem-railties52>=5.2.0:www/rubygem-railties52 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-coffee-rails4/Makefile b/devel/rubygem-coffee-rails4/Makefile index 3b62cfa83437..64cf64e22c5a 100644 --- a/devel/rubygem-coffee-rails4/Makefile +++ b/devel/rubygem-coffee-rails4/Makefile @@ -1,21 +1,20 @@ PORTNAME= coffee-rails PORTVERSION= 4.2.2 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX?= 4 MAINTAINER= ruby@FreeBSD.org COMMENT= Coffee Script adapter for the Rails asset pipeline WWW= https://github.com/rails/coffee-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS?= rubygem-coffee-script>=2.2.0:devel/rubygem-coffee-script \ rubygem-railties4>=4.0.0:www/rubygem-railties4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-coffee-rails41/Makefile b/devel/rubygem-coffee-rails41/Makefile index 4e9c39e05b38..5c5cdb0cd559 100644 --- a/devel/rubygem-coffee-rails41/Makefile +++ b/devel/rubygem-coffee-rails41/Makefile @@ -1,23 +1,22 @@ PORTNAME= coffee-rails PORTVERSION= 4.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX?= 41 MAINTAINER= ruby@FreeBSD.org COMMENT= Coffee Script adapter for the Rails asset pipeline WWW= https://github.com/rails/coffee-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS?= rubygem-coffee-script>=2.2.0:devel/rubygem-coffee-script \ rubygem-railties4>=4.0.0:www/rubygem-railties4 NO_ARCH= yes -USE_RUBY= yes USES= gem PORTSCOUT= limit:^4\.1\. .include diff --git a/devel/rubygem-coffee-script-source/Makefile b/devel/rubygem-coffee-script-source/Makefile index 3c76c8bc2677..f163aa81566e 100644 --- a/devel/rubygem-coffee-script-source/Makefile +++ b/devel/rubygem-coffee-script-source/Makefile @@ -1,17 +1,16 @@ PORTNAME= coffee-script-source PORTVERSION= 1.12.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Little language that compiles into JavaScript WWW= https://github.com/jashkenas/coffeescript LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-coffee-script/Makefile b/devel/rubygem-coffee-script/Makefile index b320c715b4a4..80da3efb25e6 100644 --- a/devel/rubygem-coffee-script/Makefile +++ b/devel/rubygem-coffee-script/Makefile @@ -1,20 +1,19 @@ PORTNAME= coffee-script PORTVERSION= 2.4.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby CoffeeScript is a bridge to the JS CoffeeScript compiler WWW= https://github.com/rails/ruby-coffee-script LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-coffee-script-source>=0:devel/rubygem-coffee-script-source \ rubygem-execjs>=0:devel/rubygem-execjs NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-colorize/Makefile b/devel/rubygem-colorize/Makefile index 83a9c275faa9..61a8ca554cfd 100644 --- a/devel/rubygem-colorize/Makefile +++ b/devel/rubygem-colorize/Makefile @@ -1,18 +1,17 @@ PORTNAME= colorize PORTVERSION= 0.8.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby String class extension WWW= https://github.com/fazibear/colorize LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-columnize/Makefile b/devel/rubygem-columnize/Makefile index 53e64b2ab0a5..9eaef2b1c8da 100644 --- a/devel/rubygem-columnize/Makefile +++ b/devel/rubygem-columnize/Makefile @@ -1,18 +1,17 @@ PORTNAME= columnize PORTVERSION= 0.9.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Sorts an Array in Column Order WWW= https://github.com/rocky/columnize LICENSE= GPLv2 RUBY LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-commander/Makefile b/devel/rubygem-commander/Makefile index 56cd689bda0b..f82d7a113e08 100644 --- a/devel/rubygem-commander/Makefile +++ b/devel/rubygem-commander/Makefile @@ -1,22 +1,21 @@ PORTNAME= commander PORTVERSION= 4.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Complete solution for Ruby command-line executables WWW= https://github.com/commander-rb/commander LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-highline>=2.0.0<2.1:devel/rubygem-highline USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/commander .include diff --git a/devel/rubygem-concurrent-ruby-edge/Makefile b/devel/rubygem-concurrent-ruby-edge/Makefile index 301466ff08c8..4d82ec2874fe 100644 --- a/devel/rubygem-concurrent-ruby-edge/Makefile +++ b/devel/rubygem-concurrent-ruby-edge/Makefile @@ -1,20 +1,19 @@ PORTNAME= concurrent-ruby-edge PORTVERSION= 0.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Bleeding edge features for concurrent-ruby WWW= https://github.com/ruby-concurrency/concurrent-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-concurrent-ruby>=1.1.6<1.2:devel/rubygem-concurrent-ruby USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-concurrent-ruby-ext/Makefile b/devel/rubygem-concurrent-ruby-ext/Makefile index c2850072abe2..747c0043bb08 100644 --- a/devel/rubygem-concurrent-ruby-ext/Makefile +++ b/devel/rubygem-concurrent-ruby-ext/Makefile @@ -1,18 +1,17 @@ PORTNAME= concurrent-ruby-ext PORTVERSION= 1.1.10 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= C extensions to optimize the concurrent-ruby WWW= https://github.com/ruby-concurrency/concurrent-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-concurrent-ruby>=${PORTVERSION}:devel/rubygem-concurrent-ruby USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-concurrent-ruby/Makefile b/devel/rubygem-concurrent-ruby/Makefile index 30e8d2a0a2f6..055091142e0d 100644 --- a/devel/rubygem-concurrent-ruby/Makefile +++ b/devel/rubygem-concurrent-ruby/Makefile @@ -1,18 +1,17 @@ PORTNAME= concurrent-ruby PORTVERSION= 1.1.10 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Modern concurrency tools for Ruby WWW= https://github.com/ruby-concurrency/concurrent-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-configatron/Makefile b/devel/rubygem-configatron/Makefile index 094161e75b67..9e70f5922237 100644 --- a/devel/rubygem-configatron/Makefile +++ b/devel/rubygem-configatron/Makefile @@ -1,17 +1,16 @@ PORTNAME= configatron PORTVERSION= 4.5.1 CATEGORIES= devel ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Configuration system for Ruby applications WWW= https://github.com/markbates/configatron LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-configstruct/Makefile b/devel/rubygem-configstruct/Makefile index a7a8ee08a8c8..7f972530f597 100644 --- a/devel/rubygem-configstruct/Makefile +++ b/devel/rubygem-configstruct/Makefile @@ -1,16 +1,15 @@ PORTNAME= configstruct PORTVERSION= 0.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mose@mose.com COMMENT= Configuration file management library based on OpenStruct WWW= https://github.com/mose/configstruct LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-configuration/Makefile b/devel/rubygem-configuration/Makefile index b77b0c3d4de5..53a2403c9a44 100644 --- a/devel/rubygem-configuration/Makefile +++ b/devel/rubygem-configuration/Makefile @@ -1,18 +1,17 @@ PORTNAME= configuration PORTVERSION= 1.3.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Mechanism to parse ruby configuration files WWW= https://github.com/ahoward/configuration LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-console/Makefile b/devel/rubygem-console/Makefile index 8b5ac0d9c275..4d5fa22cdf2a 100644 --- a/devel/rubygem-console/Makefile +++ b/devel/rubygem-console/Makefile @@ -1,19 +1,18 @@ PORTNAME= console PORTVERSION= 1.16.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Beautiful logging for Ruby WWW= https://github.com/socketry/console LICENSE= MIT RUN_DEPENDS= rubygem-fiber-local>=0:devel/rubygem-fiber-local USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-contracts/Makefile b/devel/rubygem-contracts/Makefile index b4e82c359454..27ee05b82fba 100644 --- a/devel/rubygem-contracts/Makefile +++ b/devel/rubygem-contracts/Makefile @@ -1,19 +1,18 @@ PORTNAME= contracts PORTVERSION= 0.11.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Contracts for ruby WWW= https://github.com/egonSchiele/contracts.ruby LICENSE= BSD2CLAUSE # Version 0.10.1 does not have this file # LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-contracts016/Makefile b/devel/rubygem-contracts016/Makefile index d978bc3dc911..6d361eeadad7 100644 --- a/devel/rubygem-contracts016/Makefile +++ b/devel/rubygem-contracts016/Makefile @@ -1,19 +1,18 @@ PORTNAME= contracts PORTVERSION= 0.16.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 016 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Contracts for Ruby WWW= https://github.com/egonSchiele/contracts.ruby LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-cookbook-omnifetch/Makefile b/devel/rubygem-cookbook-omnifetch/Makefile index 6fda0fd737bf..4d844af0838c 100644 --- a/devel/rubygem-cookbook-omnifetch/Makefile +++ b/devel/rubygem-cookbook-omnifetch/Makefile @@ -1,19 +1,18 @@ PORTNAME= cookbook-omnifetch PORTVERSION= 0.10.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library to fetch Chef cookbooks from a variety of sources WWW= https://github.com/chef/cookbook-omnifetch LICENSE= APACHE20 RUN_DEPENDS= rubygem-mixlib-archive>=0.4<2.0:devel/rubygem-mixlib-archive USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-cool.io/Makefile b/devel/rubygem-cool.io/Makefile index ba0ffd404fed..fbafd0c02372 100644 --- a/devel/rubygem-cool.io/Makefile +++ b/devel/rubygem-cool.io/Makefile @@ -1,18 +1,17 @@ PORTNAME= cool.io PORTVERSION= 1.7.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Gems for cool.io WWW= https://github.com/tarcieri/cool.io LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-iobuffer>=1.0.0:devel/rubygem-iobuffer USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-corefines/Makefile b/devel/rubygem-corefines/Makefile index 326ba990f873..c29d86fe99de 100644 --- a/devel/rubygem-corefines/Makefile +++ b/devel/rubygem-corefines/Makefile @@ -1,17 +1,16 @@ PORTNAME= corefines PORTVERSION= 1.11.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Refinements for extending Rubys built-in classes WWW= https://github.com/jirutka/corefines LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-cork/Makefile b/devel/rubygem-cork/Makefile index 08015f34dc66..5f5abb00a5cd 100644 --- a/devel/rubygem-cork/Makefile +++ b/devel/rubygem-cork/Makefile @@ -1,20 +1,19 @@ PORTNAME= cork PORTVERSION= 0.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Delightful CLI UI module WWW= https://github.com/CocoaPods/Cork LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-colored2>=3.1<4:textproc/rubygem-colored2 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-countries/Makefile b/devel/rubygem-countries/Makefile index fa819d0b6b63..1405402b8a17 100644 --- a/devel/rubygem-countries/Makefile +++ b/devel/rubygem-countries/Makefile @@ -1,22 +1,21 @@ PORTNAME= countries PORTVERSION= 3.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= All sorts of useful information about every country WWW= https://github.com/hexorx/countries LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-i18n_data>=0.10.0<0.11.0:devel/rubygem-i18n_data \ rubygem-sixarm_ruby_unaccent>=1.1<2:textproc/rubygem-sixarm_ruby_unaccent \ rubygem-unicode_utils>=1.4<2:devel/rubygem-unicode_utils USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-cow_proxy/Makefile b/devel/rubygem-cow_proxy/Makefile index 9b67d0752c37..7c4da58ffe27 100644 --- a/devel/rubygem-cow_proxy/Makefile +++ b/devel/rubygem-cow_proxy/Makefile @@ -1,18 +1,17 @@ PORTNAME= cow_proxy PORTVERSION= 0.3.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Copy-on-write proxy for frozen Ruby objects WWW= https://github.com/activescaffold/cow_proxy LICENSE= MIT #LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-crack/Makefile b/devel/rubygem-crack/Makefile index 5a1949c9e560..cf42b0459e1d 100644 --- a/devel/rubygem-crack/Makefile +++ b/devel/rubygem-crack/Makefile @@ -1,20 +1,19 @@ PORTNAME= crack PORTVERSION= 0.4.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby Library of Simple JSON and XML Parsing WWW= https://github.com/jnunemaker/crack LICENSE= MIT RUN_DEPENDS= rubygem-rexml>=0:textproc/rubygem-rexml USES= cpe gem CPE_VENDOR= john_nunemaker -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-cri/Makefile b/devel/rubygem-cri/Makefile index a661ad30fd25..9635c2597cdb 100644 --- a/devel/rubygem-cri/Makefile +++ b/devel/rubygem-cri/Makefile @@ -1,18 +1,17 @@ PORTNAME= cri PORTVERSION= 2.15.11 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Allow building easy-to-use command-line interfaces WWW= https://github.com/ddfreyne/cri LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-csv/Makefile b/devel/rubygem-csv/Makefile index eb9fe4df2b08..b4e4db12dc1e 100644 --- a/devel/rubygem-csv/Makefile +++ b/devel/rubygem-csv/Makefile @@ -1,19 +1,18 @@ PORTNAME= csv PORTVERSION= 3.2.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Interface to CSV files and data WWW= https://github.com/ruby/csv LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-cucumber-ci-environment/Makefile b/devel/rubygem-cucumber-ci-environment/Makefile index 2cc621dd91bd..2b7295519831 100644 --- a/devel/rubygem-cucumber-ci-environment/Makefile +++ b/devel/rubygem-cucumber-ci-environment/Makefile @@ -1,18 +1,17 @@ PORTNAME= cucumber-ci-environment PORTVERSION= 9.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Detect CI Environment from environment variables WWW= https://github.com/cucumber/ci-environment LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-cucumber-core/Makefile b/devel/rubygem-cucumber-core/Makefile index 02a2ff66c6d7..559daaeb9c17 100644 --- a/devel/rubygem-cucumber-core/Makefile +++ b/devel/rubygem-cucumber-core/Makefile @@ -1,23 +1,22 @@ PORTNAME= cucumber-core PORTVERSION= 11.0.0 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Core library for the Cucumber BDD app WWW= https://github.com/cucumber/cucumber-ruby-core LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-cucumber-gherkin23>=23.0.1<24:textproc/rubygem-cucumber-gherkin23 \ rubygem-cucumber-messages18>=18.0.0<19:devel/rubygem-cucumber-messages18 \ rubygem-cucumber-tag-expressions>=4.1.0<5:devel/rubygem-cucumber-tag-expressions USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-cucumber-cucumber-expressions/Makefile b/devel/rubygem-cucumber-cucumber-expressions/Makefile index e495cda56fc5..8a8332eb8521 100644 --- a/devel/rubygem-cucumber-cucumber-expressions/Makefile +++ b/devel/rubygem-cucumber-cucumber-expressions/Makefile @@ -1,18 +1,17 @@ PORTNAME= cucumber-cucumber-expressions PORTVERSION= 16.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Cucumber Expressions for Ruby WWW= https://github.com/cucumber/cucumber-expressions/tree/main/ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-cucumber-cucumber-expressions15/Makefile b/devel/rubygem-cucumber-cucumber-expressions15/Makefile index 8f1e643b5380..2c070ef6f408 100644 --- a/devel/rubygem-cucumber-cucumber-expressions15/Makefile +++ b/devel/rubygem-cucumber-cucumber-expressions15/Makefile @@ -1,21 +1,20 @@ PORTNAME= cucumber-cucumber-expressions PORTVERSION= 15.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 15 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Cucumber Expressions for Ruby WWW= https://github.com/cucumber/cucumber-expressions/tree/main/ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^15\. .include diff --git a/devel/rubygem-cucumber-messages/Makefile b/devel/rubygem-cucumber-messages/Makefile index 6737abfaab10..f207913840b2 100644 --- a/devel/rubygem-cucumber-messages/Makefile +++ b/devel/rubygem-cucumber-messages/Makefile @@ -1,18 +1,17 @@ PORTNAME= cucumber-messages PORTVERSION= 20.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Protocol Buffer messages for Cucumber WWW= https://github.com/cucumber/messages LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-cucumber-messages18/Makefile b/devel/rubygem-cucumber-messages18/Makefile index a0f9e2b56376..864c06b9c39e 100644 --- a/devel/rubygem-cucumber-messages18/Makefile +++ b/devel/rubygem-cucumber-messages18/Makefile @@ -1,21 +1,20 @@ PORTNAME= cucumber-messages PORTVERSION= 18.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 18 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Protocol Buffer messages for Cucumber WWW= https://github.com/cucumber/common/tree/main/messages/ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^18\. .include diff --git a/devel/rubygem-cucumber-messages19/Makefile b/devel/rubygem-cucumber-messages19/Makefile index a6796bfa33ea..abd105fc3a03 100644 --- a/devel/rubygem-cucumber-messages19/Makefile +++ b/devel/rubygem-cucumber-messages19/Makefile @@ -1,21 +1,20 @@ PORTNAME= cucumber-messages PORTVERSION= 19.1.4 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 19 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Protocol Buffer messages for Cucumber WWW= https://github.com/cucumber/messages LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^19\. .include diff --git a/devel/rubygem-cucumber-rails/Makefile b/devel/rubygem-cucumber-rails/Makefile index fd0e74f17dbc..1527d42e2563 100644 --- a/devel/rubygem-cucumber-rails/Makefile +++ b/devel/rubygem-cucumber-rails/Makefile @@ -1,26 +1,25 @@ PORTNAME= cucumber-rails PORTVERSION= 2.6.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Cucumber generator and runtime for Rails WWW= https://github.com/cucumber/cucumber-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-capybara>=2.18<4:devel/rubygem-capybara \ rubygem-cucumber>=3.2<9:devel/rubygem-cucumber \ rubygem-mime-types>=3.3<4:misc/rubygem-mime-types \ rubygem-nokogiri>=1.10<2:textproc/rubygem-nokogiri \ rubygem-railties5>=5.0<8:www/rubygem-railties5 \ rubygem-rexml>=3.0<4:textproc/rubygem-rexml \ rubygem-webrick>=1.7<2:www/rubygem-webrick USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-cucumber-tag-expressions/Makefile b/devel/rubygem-cucumber-tag-expressions/Makefile index 4d0298711a7b..63d864ab4be9 100644 --- a/devel/rubygem-cucumber-tag-expressions/Makefile +++ b/devel/rubygem-cucumber-tag-expressions/Makefile @@ -1,18 +1,17 @@ PORTNAME= cucumber-tag-expressions PORTVERSION= 4.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Cucumber tag expressions for Ruby WWW= https://github.com/cucumber/tag-expressions LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-cucumber-wire/Makefile b/devel/rubygem-cucumber-wire/Makefile index e851ba678b3c..4b5a3940b956 100644 --- a/devel/rubygem-cucumber-wire/Makefile +++ b/devel/rubygem-cucumber-wire/Makefile @@ -1,21 +1,20 @@ PORTNAME= cucumber-wire PORTVERSION= 6.2.1 PORTREVISION= 2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Wire protocol plugin for Cucumber WWW= https://github.com/cucumber/cucumber-ruby-wire LICENSE= MIT RUN_DEPENDS= rubygem-cucumber-core>=10.1.0:devel/rubygem-cucumber-core \ rubygem-cucumber-cucumber-expressions>=14.0.0:devel/rubygem-cucumber-cucumber-expressions USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-cucumber/Makefile b/devel/rubygem-cucumber/Makefile index 141ddeb23c93..8b903032082a 100644 --- a/devel/rubygem-cucumber/Makefile +++ b/devel/rubygem-cucumber/Makefile @@ -1,33 +1,32 @@ PORTNAME= cucumber PORTVERSION= 8.0.0 PORTREVISION= 3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Behaviour Driven Development with elegance and joy WWW= https://cucumber.io/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-builder>=3.2.4<4:devel/rubygem-builder \ rubygem-cucumber-ci-environment>=9.0.4<10:devel/rubygem-cucumber-ci-environment \ rubygem-cucumber-core>=11.0.0<12:devel/rubygem-cucumber-core \ rubygem-cucumber-cucumber-expressions15>=15.1.1<16:devel/rubygem-cucumber-cucumber-expressions15 \ rubygem-cucumber-gherkin23>=23.0.1<24:textproc/rubygem-cucumber-gherkin23 \ rubygem-cucumber-html-formatter19>=19.1.0<20:textproc/rubygem-cucumber-html-formatter19 \ rubygem-cucumber-messages18>=18.0.0<19:devel/rubygem-cucumber-messages18 \ rubygem-diff-lcs>=1.5.0<2:textproc/rubygem-diff-lcs \ rubygem-mime-types>=3.4.1<4:misc/rubygem-mime-types \ rubygem-multi_test>=1.1.0<2:devel/rubygem-multi_test \ rubygem-sys-uname>=1.2.2<2:sysutils/rubygem-sys-uname USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/cucumber .include diff --git a/devel/rubygem-curses/Makefile b/devel/rubygem-curses/Makefile index 72cc3d31f34e..d07e067d3075 100644 --- a/devel/rubygem-curses/Makefile +++ b/devel/rubygem-curses/Makefile @@ -1,16 +1,15 @@ PORTNAME= curses PORTVERSION= 1.3.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= freebsd@jonathanprice.org COMMENT= Ruby binding for curses, ncurses and PDCurses WWW= https://rubygems.org/gems/curses LICENSE= RUBY BSD2CLAUSE LICENSE_COMB= dual -USE_RUBY= yes USES= gem ncurses .include diff --git a/devel/rubygem-cyoi/Makefile b/devel/rubygem-cyoi/Makefile index 4195761e95fc..006ca3a6ce32 100644 --- a/devel/rubygem-cyoi/Makefile +++ b/devel/rubygem-cyoi/Makefile @@ -1,25 +1,24 @@ PORTNAME= cyoi PORTVERSION= 0.11.3 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library to prompt for infrastructure and login credentials WWW= https://github.com/cloudfoundry-community/cyoi LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-fog>=0:devel/rubygem-fog \ rubygem-highline1>=1.6<2:devel/rubygem-highline1 \ rubygem-readwritesettings>=3.0:devel/rubygem-readwritesettings USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/cyoi .include diff --git a/devel/rubygem-daemon_controller/Makefile b/devel/rubygem-daemon_controller/Makefile index 801bba5ce2f3..36b1b3bd49ad 100644 --- a/devel/rubygem-daemon_controller/Makefile +++ b/devel/rubygem-daemon_controller/Makefile @@ -1,24 +1,23 @@ PORTNAME= daemon_controller PORTVERSION= 1.2.0 PORTREVISION= 2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= osa@FreeBSD.org COMMENT= Library for implementing daemon management capabilities WWW= https://github.com/FooBarWidget/daemon_controller/tree/master LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem python:env shebangfix -USE_RUBY= yes SHEBANG_FILES= rpm/get_distro_id.py NO_ARCH= yes post-patch: @${REINPLACE_CMD} -e '1d' ${WRKSRC}/debian.template/rules .include diff --git a/devel/rubygem-daemons/Makefile b/devel/rubygem-daemons/Makefile index 54282016ea8a..14e4729ec32e 100644 --- a/devel/rubygem-daemons/Makefile +++ b/devel/rubygem-daemons/Makefile @@ -1,18 +1,17 @@ PORTNAME= daemons PORTVERSION= 1.4.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Toolkit to convert your script to a controllable daemon WWW= https://github.com/thuehlinger/daemons LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-danger-gitlab/Makefile b/devel/rubygem-danger-gitlab/Makefile index 94567bc06176..ee95ead36960 100644 --- a/devel/rubygem-danger-gitlab/Makefile +++ b/devel/rubygem-danger-gitlab/Makefile @@ -1,21 +1,20 @@ PORTNAME= danger-gitlab PORTVERSION= 8.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Code Review WWW= https://github.com/danger/danger LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-danger>=0:devel/rubygem-danger \ rubygem-gitlab>=0.9.2:devel/rubygem-gitlab USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-danger/Makefile b/devel/rubygem-danger/Makefile index 699518c61348..fe2306f1b2bf 100644 --- a/devel/rubygem-danger/Makefile +++ b/devel/rubygem-danger/Makefile @@ -1,34 +1,33 @@ PORTNAME= danger PORTVERSION= 8.6.1 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Code Review WWW= https://github.com/danger/danger LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-claide>=1.0<2:devel/rubygem-claide \ rubygem-claide-plugins>=0.9.2:devel/rubygem-claide-plugins \ rubygem-colored2>=3.1<4:textproc/rubygem-colored2 \ rubygem-cork>=0.1<1:devel/rubygem-cork \ rubygem-faraday1>=0.9.0<2.0:www/rubygem-faraday1 \ rubygem-faraday-http-cache>=2.0.0<3:www/rubygem-faraday-http-cache \ rubygem-git>=1.7<2:devel/rubygem-git \ rubygem-kramdown>=2.3<3:textproc/rubygem-kramdown \ rubygem-kramdown-parser-gfm>=1.0<2:textproc/rubygem-kramdown-parser-gfm \ rubygem-no_proxy_fix>=0:net/rubygem-no_proxy_fix \ rubygem-octokit>=4.7<5:net/rubygem-octokit \ rubygem-terminal-table>=1<4:textproc/rubygem-terminal-table USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/danger .include diff --git a/devel/rubygem-date/Makefile b/devel/rubygem-date/Makefile index 735a7e32fc3a..967385cc698b 100644 --- a/devel/rubygem-date/Makefile +++ b/devel/rubygem-date/Makefile @@ -1,18 +1,17 @@ PORTNAME= date PORTVERSION= 3.2.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Subclass of Object includes Comparable module for handling dates WWW= https://github.com/ruby/date LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual USES= cpe gem -USE_RUBY= yes CPE_VENDOR= ruby-lang .include diff --git a/devel/rubygem-ddmemoize/Makefile b/devel/rubygem-ddmemoize/Makefile index de6fcd455ef3..9ece701f1300 100644 --- a/devel/rubygem-ddmemoize/Makefile +++ b/devel/rubygem-ddmemoize/Makefile @@ -1,20 +1,19 @@ PORTNAME= ddmemoize PORTVERSION= 1.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Support for memoizing functions WWW= https://github.com/ddfreyne/ddmemoize LICENSE= MIT RUN_DEPENDS= rubygem-ref>=2.0:devel/rubygem-ref \ rubygem-ddmetrics>=1.0:devel/rubygem-ddmetrics USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-ddmetrics/Makefile b/devel/rubygem-ddmetrics/Makefile index 65e972b04604..542bc332edfa 100644 --- a/devel/rubygem-ddmetrics/Makefile +++ b/devel/rubygem-ddmetrics/Makefile @@ -1,17 +1,16 @@ PORTNAME= ddmetrics PORTVERSION= 1.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Non-timeseries measurements for Ruby programs WWW= https://github.com/ddfreyne/ddmetrics LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-ddplugin/Makefile b/devel/rubygem-ddplugin/Makefile index 43eeb1e250ad..9df2c6b77bd1 100644 --- a/devel/rubygem-ddplugin/Makefile +++ b/devel/rubygem-ddplugin/Makefile @@ -1,18 +1,17 @@ PORTNAME= ddplugin PORTVERSION= 1.0.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Plugin management for Ruby projects WWW= https://github.com/ddfreyne/ddplugin LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-ddtrace/Makefile b/devel/rubygem-ddtrace/Makefile index d330a7e33002..aac93686df28 100644 --- a/devel/rubygem-ddtrace/Makefile +++ b/devel/rubygem-ddtrace/Makefile @@ -1,25 +1,24 @@ PORTNAME= ddtrace PORTVERSION= 1.6.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Tracking client of Datadog for Ruby WWW= https://github.com/DataDog/dd-trace-rb LICENSE= APACHE20 BSD3CLAUSE LICENSE_COMB= dual LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE.Apache LICENSE_FILE_BSD3CLAUSE=${WRKSRC}/LICENSE.BSD3 RUN_DEPENDS= rubygem-debase-ruby_core_source>=0.10.16<0.10.17_99:devel/rubygem-debase-ruby_core_source \ rubygem-libdatadog>=0.9.0.1.0<0.9.0.2:devel/rubygem-libdatadog \ rubygem-libddwaf>=1.5.1.0.0<1.5.1.1:devel/rubygem-libddwaf \ rubygem-msgpack>=0:devel/rubygem-msgpack USES= gem -USE_RUBY= yes PLIST_FILES= bin/ddtracerb .include diff --git a/devel/rubygem-debase-ruby_core_source/Makefile b/devel/rubygem-debase-ruby_core_source/Makefile index a7db5975b563..8bcdca40cc7a 100644 --- a/devel/rubygem-debase-ruby_core_source/Makefile +++ b/devel/rubygem-debase-ruby_core_source/Makefile @@ -1,18 +1,17 @@ PORTNAME= debase-ruby_core_source PORTVERSION= 0.10.17 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Provide Ruby core source files for C extensions that need them WWW= https://github.com/ruby-debug/debase-ruby_core_source LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-debug/Makefile b/devel/rubygem-debug/Makefile index c75963cb2e90..454b32772305 100644 --- a/devel/rubygem-debug/Makefile +++ b/devel/rubygem-debug/Makefile @@ -1,21 +1,20 @@ PORTNAME= debug DISTVERSION= 1.7.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= yasu@FreeBSD.org COMMENT= Debugging functionality for Ruby WWW= https://rubygems.org/gems/debug LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-irb>=1.5.0:devel/rubygem-irb \ rubygem-reline>=0.3.1:devel/rubygem-reline USES= gem -USE_RUBY= yes PLIST_FILES= bin/rdbg .include diff --git a/devel/rubygem-debug_inspector/Makefile b/devel/rubygem-debug_inspector/Makefile index 6e13a42d4a34..98db673d1818 100644 --- a/devel/rubygem-debug_inspector/Makefile +++ b/devel/rubygem-debug_inspector/Makefile @@ -1,15 +1,14 @@ PORTNAME= debug_inspector PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby wrapper for the MRI 2.0 debug_inspector API WWW= https://github.com/banister/debug_inspector LICENSE= MIT USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-debugger-linecache/Makefile b/devel/rubygem-debugger-linecache/Makefile index 937a19545429..4304e3b3f075 100644 --- a/devel/rubygem-debugger-linecache/Makefile +++ b/devel/rubygem-debugger-linecache/Makefile @@ -1,16 +1,15 @@ PORTNAME= debugger-linecache PORTVERSION= 1.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby module for reading and caching lines WWW= https://github.com/cldwalker/debugger-linecache LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-debugger-ruby_core_source/Makefile b/devel/rubygem-debugger-ruby_core_source/Makefile index 7c6fab32dbb4..e4093f826ba6 100644 --- a/devel/rubygem-debugger-ruby_core_source/Makefile +++ b/devel/rubygem-debugger-ruby_core_source/Makefile @@ -1,16 +1,15 @@ PORTNAME= debugger-ruby_core_source PORTVERSION= 1.3.8 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Provide Ruby core source files for C extensions that need them WWW= https://github.com/cldwalker/debugger-ruby_core_source LICENSE= MIT NO_ARCH= yes USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-debugger-xml/Makefile b/devel/rubygem-debugger-xml/Makefile index e30ba1981a19..7db1328a1364 100644 --- a/devel/rubygem-debugger-xml/Makefile +++ b/devel/rubygem-debugger-xml/Makefile @@ -1,24 +1,23 @@ PORTNAME= debugger-xml PORTVERSION= 0.4.1 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= XML interface for rubygem-debugger WWW= https://github.com/astashov/debugger-xml LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-builder>=2.0.0:devel/rubygem-builder \ rubygem-byebug>=0:devel/rubygem-byebug USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rdebug-ide bin/rdebug-vim .include diff --git a/devel/rubygem-declarative-option/Makefile b/devel/rubygem-declarative-option/Makefile index 6e5bb77cecc2..e835b0845f1b 100644 --- a/devel/rubygem-declarative-option/Makefile +++ b/devel/rubygem-declarative-option/Makefile @@ -1,20 +1,19 @@ PORTNAME= declarative-option PORTVERSION= 0.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Dynamic options to evaluate at runtime WWW= https://github.com/apotonick/declarative-option LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= skipv:0.1.1 .include diff --git a/devel/rubygem-declarative/Makefile b/devel/rubygem-declarative/Makefile index b3ab8e0e73ba..531504bd9b6f 100644 --- a/devel/rubygem-declarative/Makefile +++ b/devel/rubygem-declarative/Makefile @@ -1,18 +1,17 @@ PORTNAME= declarative PORTVERSION= 0.0.20 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= DSL for nested schemas WWW= https://github.com/apotonick/declarative LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-deep_merge/Makefile b/devel/rubygem-deep_merge/Makefile index 13669970c240..408b20050489 100644 --- a/devel/rubygem-deep_merge/Makefile +++ b/devel/rubygem-deep_merge/Makefile @@ -1,17 +1,16 @@ PORTNAME= deep_merge PORTVERSION= 1.2.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= robak@FreeBSD.org COMMENT= Recursive hash merger WWW= https://rubygems.org/gems/deep_merge LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-deep_test/Makefile b/devel/rubygem-deep_test/Makefile index c61fdde4ef28..b4fc86cd829d 100644 --- a/devel/rubygem-deep_test/Makefile +++ b/devel/rubygem-deep_test/Makefile @@ -1,20 +1,19 @@ PORTNAME= deep_test PORTVERSION= 1.2.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Enable tests to run in parallel using multiple processes WWW= http://deep-test.rubyforge.org/ LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/deep_test .include diff --git a/devel/rubygem-deface/Makefile b/devel/rubygem-deface/Makefile index d56c2ee512d6..28dd4308308c 100644 --- a/devel/rubygem-deface/Makefile +++ b/devel/rubygem-deface/Makefile @@ -1,24 +1,23 @@ PORTNAME= deface PORTVERSION= 1.9.0 CATEGORIES= devel rubygems www MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Customize ERB, Haml and Slim views in a Rails application WWW= https://github.com/spree/deface LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionview60>=5.2:devel/rubygem-actionview60 \ rubygem-nokogiri>=1.6:textproc/rubygem-nokogiri \ rubygem-polyglot>=0:devel/rubygem-polyglot \ rubygem-railties60>=5.2:www/rubygem-railties60 \ rubygem-rainbow>=2.1.0:devel/rubygem-rainbow USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-default_value_for/Makefile b/devel/rubygem-default_value_for/Makefile index 1914e3cdc59f..bc36373f1532 100644 --- a/devel/rubygem-default_value_for/Makefile +++ b/devel/rubygem-default_value_for/Makefile @@ -1,20 +1,19 @@ PORTNAME= default_value_for PORTVERSION= 3.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Define default values for ActiveRecord models in a declarative manner WWW= https://github.com/FooBarWidget/default_value_for LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.TXT RUN_DEPENDS= rubygem-activerecord60>=3.2.0<7.0:databases/rubygem-activerecord60 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-delayed_job/Makefile b/devel/rubygem-delayed_job/Makefile index 88f1e7f2e35e..321fb896a6cc 100644 --- a/devel/rubygem-delayed_job/Makefile +++ b/devel/rubygem-delayed_job/Makefile @@ -1,20 +1,19 @@ PORTNAME= delayed_job PORTVERSION= 4.1.11 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Asynchronously executing longer tasks in the background WWW= https://github.com/collectiveidea/delayed_job LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-activesupport4>=3.0<8.0:devel/rubygem-activesupport4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-delayer-deferred/Makefile b/devel/rubygem-delayer-deferred/Makefile index fea06b0e1d6b..d461e5ae1cc6 100644 --- a/devel/rubygem-delayer-deferred/Makefile +++ b/devel/rubygem-delayer-deferred/Makefile @@ -1,20 +1,19 @@ PORTNAME= delayer-deferred PORTVERSION= 2.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= meta@FreeBSD.org COMMENT= Deferred for Delayer WWW= https://rubygems.org/gems/delayer-deferred LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-delayer>=1.0.0:devel/rubygem-delayer USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-delayer/Makefile b/devel/rubygem-delayer/Makefile index ecdb90e5c3d3..821061b2af8e 100644 --- a/devel/rubygem-delayer/Makefile +++ b/devel/rubygem-delayer/Makefile @@ -1,18 +1,17 @@ PORTNAME= delayer PORTVERSION= 1.2.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= meta@FreeBSD.org COMMENT= Delay any task, similar to a priority-queue WWW= https://github.com/toshia/delayer LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-delegate/Makefile b/devel/rubygem-delegate/Makefile index f08e3048f524..62bdb56477a2 100644 --- a/devel/rubygem-delegate/Makefile +++ b/devel/rubygem-delegate/Makefile @@ -1,19 +1,18 @@ PORTNAME= delegate PORTVERSION= 0.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Provide three abilities to delegate method calls to an object WWW= https://github.com/ruby/delegate LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-deprecated/Makefile b/devel/rubygem-deprecated/Makefile index 5f243026217a..27d807e56e38 100644 --- a/devel/rubygem-deprecated/Makefile +++ b/devel/rubygem-deprecated/Makefile @@ -1,17 +1,16 @@ PORTNAME= deprecated PORTVERSION= 3.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library intended to aid developers working with deprecated code WWW= https://github.com/erikh/deprecated LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-deprecated2/Makefile b/devel/rubygem-deprecated2/Makefile index 01599bd479aa..caddccdeb680 100644 --- a/devel/rubygem-deprecated2/Makefile +++ b/devel/rubygem-deprecated2/Makefile @@ -1,20 +1,19 @@ PORTNAME= deprecated PORTVERSION= 2.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 2 MAINTAINER= ruby@FreeBSD.org COMMENT= Version 2 of this library intended to aid working with deprecated code WWW= https://github.com/erikh/deprecated LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem PORTSCOUT= limit:^2\.[0-9]* .include diff --git a/devel/rubygem-descendants_tracker/Makefile b/devel/rubygem-descendants_tracker/Makefile index 332b9527a864..478ae63bd4c3 100644 --- a/devel/rubygem-descendants_tracker/Makefile +++ b/devel/rubygem-descendants_tracker/Makefile @@ -1,19 +1,18 @@ PORTNAME= descendants_tracker PORTVERSION= 0.0.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Module that adds descendant tracking to a class WWW= https://github.com/dkubb/descendants_tracker LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-thread_safe>=0.3.1:devel/rubygem-thread_safe NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-device_detector/Makefile b/devel/rubygem-device_detector/Makefile index e3d06eb4e13e..b7c1b3d40854 100644 --- a/devel/rubygem-device_detector/Makefile +++ b/devel/rubygem-device_detector/Makefile @@ -1,18 +1,17 @@ PORTNAME= device_detector PORTVERSION= 1.0.7 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= User agent parser and device detector WWW= https://github.com/podigee/device_detector LICENSE= LGPL3 LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-devise-rails5/Makefile b/devel/rubygem-devise-rails5/Makefile index 6729821c21dc..161bab64525d 100644 --- a/devel/rubygem-devise-rails5/Makefile +++ b/devel/rubygem-devise-rails5/Makefile @@ -1,27 +1,26 @@ PORTNAME= devise PORTVERSION= 4.8.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Flexible authentication solution for Rails with Warden WWW= https://github.com/heartcombo/devise LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-bcrypt>=3.0<4:security/rubygem-bcrypt \ rubygem-orm_adapter>=0.1<1:devel/rubygem-orm_adapter \ rubygem-railties5>=4.1.0:www/rubygem-railties5 \ rubygem-responders-rails5>=0:www/rubygem-responders-rails5 \ rubygem-warden>=1.2.3<1.3:devel/rubygem-warden USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= plataformatec .include diff --git a/devel/rubygem-devise-rails52/Makefile b/devel/rubygem-devise-rails52/Makefile index 943777601f37..20af5ab75828 100644 --- a/devel/rubygem-devise-rails52/Makefile +++ b/devel/rubygem-devise-rails52/Makefile @@ -1,27 +1,26 @@ PORTNAME= devise PORTVERSION= 4.8.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Flexible authentication solution for Rails with Warden WWW= https://github.com/heartcombo/devise LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-bcrypt>=3.0<4:security/rubygem-bcrypt \ rubygem-orm_adapter>=0.1<1:devel/rubygem-orm_adapter \ rubygem-railties52>=4.1.0:www/rubygem-railties52 \ rubygem-responders-rails52>=0:www/rubygem-responders-rails52 \ rubygem-warden>=1.2.3<1.3:devel/rubygem-warden USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= plataformatec .include diff --git a/devel/rubygem-devise-rails60/Makefile b/devel/rubygem-devise-rails60/Makefile index ba1698164797..d497e8cb3edf 100644 --- a/devel/rubygem-devise-rails60/Makefile +++ b/devel/rubygem-devise-rails60/Makefile @@ -1,27 +1,26 @@ PORTNAME= devise PORTVERSION= 4.8.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Flexible authentication solution for Rails with Warden WWW= https://github.com/heartcombo/devise LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-bcrypt>=3.0<4:security/rubygem-bcrypt \ rubygem-orm_adapter>=0.1<1:devel/rubygem-orm_adapter \ rubygem-railties60>=4.1.0:www/rubygem-railties60 \ rubygem-responders-rails60>=0:www/rubygem-responders-rails60 \ rubygem-warden>=1.2.3<1.3:devel/rubygem-warden USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= plataformatec .include diff --git a/devel/rubygem-devise-rails61/Makefile b/devel/rubygem-devise-rails61/Makefile index 31eb1cdc997d..9b5105ee4077 100644 --- a/devel/rubygem-devise-rails61/Makefile +++ b/devel/rubygem-devise-rails61/Makefile @@ -1,27 +1,26 @@ PORTNAME= devise PORTVERSION= 4.8.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= ruby@FreeBSD.org COMMENT= Flexible authentication solution for Rails with Warden WWW= https://github.com/heartcombo/devise LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-bcrypt>=3.0<4:security/rubygem-bcrypt \ rubygem-orm_adapter>=0.1<1:devel/rubygem-orm_adapter \ rubygem-railties61>=4.1.0:www/rubygem-railties61 \ rubygem-responders-rails61>=0:www/rubygem-responders-rails61 \ rubygem-warden>=1.2.3<1.3:devel/rubygem-warden USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= plataformatec .include diff --git a/devel/rubygem-devise-rails70/Makefile b/devel/rubygem-devise-rails70/Makefile index caa8b685ba6a..53ef384587c0 100644 --- a/devel/rubygem-devise-rails70/Makefile +++ b/devel/rubygem-devise-rails70/Makefile @@ -1,27 +1,26 @@ PORTNAME= devise PORTVERSION= 4.8.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails70 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Flexible authentication solution for Rails with Warden WWW= https://github.com/heartcombo/devise LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-bcrypt>=3.0<4:security/rubygem-bcrypt \ rubygem-orm_adapter>=0.1<1:devel/rubygem-orm_adapter \ rubygem-railties70>=4.1.0:www/rubygem-railties70 \ rubygem-responders-rails70>=0:www/rubygem-responders-rails70 \ rubygem-warden>=1.2.3<1.3:devel/rubygem-warden USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= plataformatec .include diff --git a/devel/rubygem-devise/Makefile b/devel/rubygem-devise/Makefile index e98494ab6e38..573faa17b4dd 100644 --- a/devel/rubygem-devise/Makefile +++ b/devel/rubygem-devise/Makefile @@ -1,26 +1,25 @@ PORTNAME= devise PORTVERSION= 4.8.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Flexible authentication solution for Rails with Warden WWW= https://github.com/heartcombo/devise LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-bcrypt>=3.0<4:security/rubygem-bcrypt \ rubygem-orm_adapter>=0.1<1:devel/rubygem-orm_adapter \ rubygem-railties50>=4.1.0:www/rubygem-railties50 \ rubygem-responders>=0:www/rubygem-responders \ rubygem-warden>=1.2.3<1.3:devel/rubygem-warden USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= plataformatec .include diff --git a/devel/rubygem-did_you_mean/Makefile b/devel/rubygem-did_you_mean/Makefile index 0508b02c920f..5fde85c09ece 100644 --- a/devel/rubygem-did_you_mean/Makefile +++ b/devel/rubygem-did_you_mean/Makefile @@ -1,18 +1,17 @@ PORTNAME= did_you_mean PORTVERSION= 1.6.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Save people from typos WWW= https://github.com/ruby/did_you_mean LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-dig_rb/Makefile b/devel/rubygem-dig_rb/Makefile index 1234d05169b1..35bd62c01f80 100644 --- a/devel/rubygem-dig_rb/Makefile +++ b/devel/rubygem-dig_rb/Makefile @@ -1,15 +1,14 @@ PORTNAME= dig_rb PORTVERSION= 1.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= girgen@FreeBSD.org COMMENT= "Array/Hash/Struct#dig backfill for ruby" WWW= https://github.com/jrochkind/dig_rb LICENSE= MIT -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-directory_watcher/Makefile b/devel/rubygem-directory_watcher/Makefile index c367cd7cdc51..10d056941e8e 100644 --- a/devel/rubygem-directory_watcher/Makefile +++ b/devel/rubygem-directory_watcher/Makefile @@ -1,17 +1,16 @@ PORTNAME= directory_watcher PORTVERSION= 1.5.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Scans a directory at a set interval and lists files WWW= https://github.com/TwP/directory_watcher LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-ditz/Makefile b/devel/rubygem-ditz/Makefile index fd484a393a9a..51b6b4afeea4 100644 --- a/devel/rubygem-ditz/Makefile +++ b/devel/rubygem-ditz/Makefile @@ -1,26 +1,25 @@ PORTNAME= ditz PORTVERSION= 0.5 PORTREVISION= 3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ports@FreeBSD.org COMMENT= Simple lightweight distributed issue tracker WWW= https://rubygems.org/gems/ditz LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-trollop>=1.9:devel/rubygem-trollop USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= bin/ditz ruby_OLD_CMD= /usr/bin/ruby1.8 PLIST_FILES= bin/ditz .include diff --git a/devel/rubygem-diva/Makefile b/devel/rubygem-diva/Makefile index 85687a56ac97..79e98a9bd8a4 100644 --- a/devel/rubygem-diva/Makefile +++ b/devel/rubygem-diva/Makefile @@ -1,18 +1,17 @@ PORTNAME= diva PORTVERSION= 2.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= meta@FreeBSD.org COMMENT= Implementation of expression for handling things WWW= https://rubygems.org/gems/diva LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-addressable>=2.5.2:www/rubygem-addressable USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-docile/Makefile b/devel/rubygem-docile/Makefile index 5b176d6633bc..1b875b3141b4 100644 --- a/devel/rubygem-docile/Makefile +++ b/devel/rubygem-docile/Makefile @@ -1,18 +1,17 @@ PORTNAME= docile PORTVERSION= 1.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Docile turns any Ruby object into a DSL WWW= https://ms-ati.github.io/docile/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-docopt/Makefile b/devel/rubygem-docopt/Makefile index 3065042f82ff..2dd1083dacb4 100644 --- a/devel/rubygem-docopt/Makefile +++ b/devel/rubygem-docopt/Makefile @@ -1,20 +1,19 @@ PORTNAME= docopt DISTVERSION= 0.6.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= salvadore@FreeBSD.org COMMENT= Parse command line arguments based on nothing more than a usage message WWW= https://github.com/docopt/docopt.rb LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem python:env shebangfix -USE_RUBY= yes SHEBANG_FILES= test/language_agnostic_tester.py NO_ARCH= yes .include diff --git a/devel/rubygem-drb/Makefile b/devel/rubygem-drb/Makefile index d93fbba1e76e..681f26a6be87 100644 --- a/devel/rubygem-drb/Makefile +++ b/devel/rubygem-drb/Makefile @@ -1,21 +1,20 @@ PORTNAME= drb PORTVERSION= 2.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Distributed object system for Ruby WWW= https://github.com/ruby/drb LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ruby2_keywords>=0:devel/rubygem-ruby2_keywords USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-dry-configurable/Makefile b/devel/rubygem-dry-configurable/Makefile index f593ba3257c9..bb85f144d89c 100644 --- a/devel/rubygem-dry-configurable/Makefile +++ b/devel/rubygem-dry-configurable/Makefile @@ -1,21 +1,20 @@ PORTNAME= dry-configurable PORTVERSION= 1.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Mixin to add configuration functionality to your classes WWW= https://github.com/dry-rb/dry-configurable LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-dry-core>=1.0<2:devel/rubygem-dry-core \ rubygem-zeitwerk>=2.6<3:devel/rubygem-zeitwerk USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-dry-container/Makefile b/devel/rubygem-dry-container/Makefile index b09e48ac5a1d..5bed2f3fb6f9 100644 --- a/devel/rubygem-dry-container/Makefile +++ b/devel/rubygem-dry-container/Makefile @@ -1,20 +1,19 @@ PORTNAME= dry-container PORTVERSION= 0.11.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple container intended for use as an IoC container WWW= https://github.com/dry-rb/dry-container LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-dry-core/Makefile b/devel/rubygem-dry-core/Makefile index 8a5fd3cfd1fe..81375f19571d 100644 --- a/devel/rubygem-dry-core/Makefile +++ b/devel/rubygem-dry-core/Makefile @@ -1,21 +1,20 @@ PORTNAME= dry-core PORTVERSION= 1.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Toolset of small support modules used throughout the dry-rb ecosystem WWW= https://github.com/dry-rb/dry-core LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby \ rubygem-zeitwerk>=2.6<3:devel/rubygem-zeitwerk USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-dry-equalizer/Makefile b/devel/rubygem-dry-equalizer/Makefile index 56b91a4d49fa..abd9f0e51398 100644 --- a/devel/rubygem-dry-equalizer/Makefile +++ b/devel/rubygem-dry-equalizer/Makefile @@ -1,18 +1,17 @@ PORTNAME= dry-equalizer PORTVERSION= 0.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module to define equality, equivalence and inspection methods WWW= https://github.com/dry-rb/dry-equalizer LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-dry-inflector/Makefile b/devel/rubygem-dry-inflector/Makefile index cd4a5afcb6f4..b4c624ad7c95 100644 --- a/devel/rubygem-dry-inflector/Makefile +++ b/devel/rubygem-dry-inflector/Makefile @@ -1,18 +1,17 @@ PORTNAME= dry-inflector PORTVERSION= 1.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= String inflections for dry-rb WWW= https://dry-rb.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-dry-logic/Makefile b/devel/rubygem-dry-logic/Makefile index 936ed7594316..72f981e44e2e 100644 --- a/devel/rubygem-dry-logic/Makefile +++ b/devel/rubygem-dry-logic/Makefile @@ -1,22 +1,21 @@ PORTNAME= dry-logic PORTVERSION= 1.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Predicate logic with rule composition WWW= https://github.com/dry-rb/dry-logic LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby \ rubygem-dry-core>=1.0<2:devel/rubygem-dry-core \ rubygem-zeitwerk>=2.6<3:devel/rubygem-zeitwerk USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-dry-types/Makefile b/devel/rubygem-dry-types/Makefile index 3a205eaf0acd..da7aa60d22ed 100644 --- a/devel/rubygem-dry-types/Makefile +++ b/devel/rubygem-dry-types/Makefile @@ -1,24 +1,23 @@ PORTNAME= dry-types PORTVERSION= 1.7.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Type system for Ruby supporting coercions, constraints and complex types WWW= https://github.com/dry-rb/dry-types LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby \ rubygem-dry-core>=1.0<2:devel/rubygem-dry-core \ rubygem-dry-inflector>=1.0<2:devel/rubygem-dry-inflector \ rubygem-dry-logic>=1.4<2:devel/rubygem-dry-logic \ rubygem-zeitwerk>=2.6<3:devel/rubygem-zeitwerk USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-drydock/Makefile b/devel/rubygem-drydock/Makefile index bd2e83a9693e..6e02ff240be2 100644 --- a/devel/rubygem-drydock/Makefile +++ b/devel/rubygem-drydock/Makefile @@ -1,21 +1,20 @@ PORTNAME= drydock PORTVERSION= 0.6.9 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Build seaworthy command-line apps with a powerful Ruby DSL WWW= https://github.com/delano/drydock LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= bin/example .include diff --git a/devel/rubygem-dynflow/Makefile b/devel/rubygem-dynflow/Makefile index 426595898288..667ff3d2ec75 100644 --- a/devel/rubygem-dynflow/Makefile +++ b/devel/rubygem-dynflow/Makefile @@ -1,26 +1,25 @@ PORTNAME= dynflow PORTVERSION= 1.6.7 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby workflow/orchestration engine WWW= https://github.com/Dynflow/dynflow LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-algebrick>=0.7.0<0.8:devel/rubygem-algebrick \ rubygem-apipie-params>=0:devel/rubygem-apipie-params \ rubygem-concurrent-ruby>=1.1.3<1.2:devel/rubygem-concurrent-ruby \ rubygem-concurrent-ruby-edge>=0.6.0<0.7:devel/rubygem-concurrent-ruby-edge \ rubygem-msgpack>=1.3.3<2:devel/rubygem-msgpack \ rubygem-multi_json>=0:devel/rubygem-multi_json \ rubygem-sequel>=4.0.0:devel/rubygem-sequel USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-e2mmap/Makefile b/devel/rubygem-e2mmap/Makefile index a74e399a8c29..e14e2d918141 100644 --- a/devel/rubygem-e2mmap/Makefile +++ b/devel/rubygem-e2mmap/Makefile @@ -1,18 +1,17 @@ PORTNAME= e2mmap PORTVERSION= 0.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for defining custom exceptions with specific messages WWW= https://github.com/ruby/e2mmap LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-ecma-re-validator/Makefile b/devel/rubygem-ecma-re-validator/Makefile index bbdd28ff4bac..defc3180b30c 100644 --- a/devel/rubygem-ecma-re-validator/Makefile +++ b/devel/rubygem-ecma-re-validator/Makefile @@ -1,22 +1,21 @@ PORTNAME= ecma-re-validator PORTVERSION= 0.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Regular expression validator against ECMA-262 WWW= https://github.com/gjtorikian/ecma-re-validator LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-regexp_parser>=2.0<3:textproc/rubygem-regexp_parser USES= gem shebangfix -USE_RUBY= yes SHEBANG_FILES= script/bootstrap NO_ARCH= yes .include diff --git a/devel/rubygem-edavis10-object_daddy/Makefile b/devel/rubygem-edavis10-object_daddy/Makefile index ca41c8ef3113..d9acfd5985f1 100644 --- a/devel/rubygem-edavis10-object_daddy/Makefile +++ b/devel/rubygem-edavis10-object_daddy/Makefile @@ -1,16 +1,15 @@ PORTNAME= edavis10-object_daddy PORTVERSION= 0.4.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Object Daddy assists in automating testing WWW= https://github.com/flogic/object_daddy LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-elif/Makefile b/devel/rubygem-elif/Makefile index b10e79d1608d..dc0c079928e3 100644 --- a/devel/rubygem-elif/Makefile +++ b/devel/rubygem-elif/Makefile @@ -1,18 +1,17 @@ PORTNAME= elif PORTVERSION= 0.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Read file in reverse order WWW= http://elif.rubyforge.org/ LICENSE= GPLv2 RUBY LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-emoji_regex/Makefile b/devel/rubygem-emoji_regex/Makefile index a02ae5d1ad81..31a709e71911 100644 --- a/devel/rubygem-emoji_regex/Makefile +++ b/devel/rubygem-emoji_regex/Makefile @@ -1,18 +1,17 @@ PORTNAME= emoji_regex PORTVERSION= 3.2.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Regular expressions for matching Unicode Emoji symbols WWW= https://github.com/ticky/ruby-emoji-regex LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-english/Makefile b/devel/rubygem-english/Makefile index e0b63f58a118..11ea2db7cacb 100644 --- a/devel/rubygem-english/Makefile +++ b/devel/rubygem-english/Makefile @@ -1,19 +1,18 @@ PORTNAME= english PORTVERSION= 0.7.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Reference global variables with less cryptic names WWW= https://github.com/ruby/English LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-enumerize/Makefile b/devel/rubygem-enumerize/Makefile index 5a372fd3d2fa..0ebe9c401147 100644 --- a/devel/rubygem-enumerize/Makefile +++ b/devel/rubygem-enumerize/Makefile @@ -1,19 +1,18 @@ PORTNAME= enumerize PORTVERSION= 2.2.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Enumerated attributes with I18n and ActiveRecord/Mongoid/MongoMapper support WWW= https://github.com/brainspec/enumerize LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport4>=3.2:devel/rubygem-activesupport4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-equalizer/Makefile b/devel/rubygem-equalizer/Makefile index d46d0d5a0a3f..d674a0f6f750 100644 --- a/devel/rubygem-equalizer/Makefile +++ b/devel/rubygem-equalizer/Makefile @@ -1,17 +1,16 @@ PORTNAME= equalizer PORTVERSION= 0.0.11 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby library to define equality methods WWW= https://github.com/dkubb/equalizer LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-equatable/Makefile b/devel/rubygem-equatable/Makefile index 0f2835ab0bb7..a28492f3f228 100644 --- a/devel/rubygem-equatable/Makefile +++ b/devel/rubygem-equatable/Makefile @@ -1,18 +1,17 @@ PORTNAME= equatable PORTVERSION= 0.7.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Implement equality comparison and inspection methods WWW= https://github.com/piotrmurach/equatable LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-erb/Makefile b/devel/rubygem-erb/Makefile index 1a3e2c816f7f..36889748511a 100644 --- a/devel/rubygem-erb/Makefile +++ b/devel/rubygem-erb/Makefile @@ -1,23 +1,22 @@ PORTNAME= erb PORTVERSION= 3.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Easy to use but powerful templating system for Ruby WWW= https://github.com/ruby/erb LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-cgi>=0.3.3:www/rubygem-cgi USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/erb .include diff --git a/devel/rubygem-errand/Makefile b/devel/rubygem-errand/Makefile index e84f342f032a..0104f15bab51 100644 --- a/devel/rubygem-errand/Makefile +++ b/devel/rubygem-errand/Makefile @@ -1,21 +1,20 @@ PORTNAME= errand PORTVERSION= 0.8.1 PORTREVISION= 2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ports@FreeBSD.org COMMENT= Ruby bindings for RRD WWW= https://rubygems.org/gems/errand LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENCE RUN_DEPENDS= rrdtool:databases/rrdtool \ rubygem-rrd-ffi>=0.2.13:devel/rubygem-rrd-ffi NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-error_highlight/Makefile b/devel/rubygem-error_highlight/Makefile index 42e65bb38741..744a7ba8e26c 100644 --- a/devel/rubygem-error_highlight/Makefile +++ b/devel/rubygem-error_highlight/Makefile @@ -1,22 +1,21 @@ PORTNAME= error_highlight PORTVERSION= 0.5.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Enhance Exception\#message WWW= https://github.com/ruby/error_highlight LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt BROKEN_RUBY27= yes BROKEN_RUBY30= yes USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-et-orbi/Makefile b/devel/rubygem-et-orbi/Makefile index d0b5c1d2245f..3924bb3d70c1 100644 --- a/devel/rubygem-et-orbi/Makefile +++ b/devel/rubygem-et-orbi/Makefile @@ -1,20 +1,19 @@ PORTNAME= et-orbi PORTVERSION= 1.2.7 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Time zones for fugit and rufus-scheduler WWW= https://github.com/floraison/et-orbi LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-tzinfo>=0:devel/rubygem-tzinfo USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-etc/Makefile b/devel/rubygem-etc/Makefile index 6d4f4e4af827..8aaf487d4fb3 100644 --- a/devel/rubygem-etc/Makefile +++ b/devel/rubygem-etc/Makefile @@ -1,17 +1,16 @@ PORTNAME= etc PORTVERSION= 1.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Provide access to information typically stored in UNIX /etc directory WWW= https://github.com/ruby/etc LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-event_emitter/Makefile b/devel/rubygem-event_emitter/Makefile index ac811bf2b2dd..0c17e9bae938 100644 --- a/devel/rubygem-event_emitter/Makefile +++ b/devel/rubygem-event_emitter/Makefile @@ -1,18 +1,17 @@ PORTNAME= event_emitter PORTVERSION= 0.2.6 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby port of EventEmitter from Node.js WWW= https://github.com/shokai/event_emitter LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-eventmachine/Makefile b/devel/rubygem-eventmachine/Makefile index 0482dfc90dbc..6a58553d1f8a 100644 --- a/devel/rubygem-eventmachine/Makefile +++ b/devel/rubygem-eventmachine/Makefile @@ -1,18 +1,17 @@ PORTNAME= eventmachine PORTVERSION= 1.2.7 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Fast, simple event-processing library for Ruby programs WWW= https://rubyeventmachine.com LICENSE= GPLv2 RUBY LICENSE_COMB= dual LICENSE_FILE_GPLv2= ${WRKSRC}/GNU LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE -USE_RUBY= yes USES= gem ssl .include diff --git a/devel/rubygem-excon/Makefile b/devel/rubygem-excon/Makefile index ac30cb2274e2..3335b2982bd7 100644 --- a/devel/rubygem-excon/Makefile +++ b/devel/rubygem-excon/Makefile @@ -1,20 +1,19 @@ PORTNAME= excon PORTVERSION= 0.94.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Extended http(s) Connections Library WWW= https://github.com/excon/excon LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= excon_project .include diff --git a/devel/rubygem-execjs/Makefile b/devel/rubygem-execjs/Makefile index abd2567bbb76..8b98e931c300 100644 --- a/devel/rubygem-execjs/Makefile +++ b/devel/rubygem-execjs/Makefile @@ -1,22 +1,21 @@ PORTNAME= execjs PORTVERSION= 2.8.1 PORTREVISION= 2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= ExecJS lets you run JavaScript code from Ruby WWW= https://github.com/rails/execjs LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem nodejs:run -USE_RUBY= yes NO_ARCH= yes post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/lib/execjs/runtimes.rb .include diff --git a/devel/rubygem-extlib/Makefile b/devel/rubygem-extlib/Makefile index e48695d94285..50f6b1c292ce 100644 --- a/devel/rubygem-extlib/Makefile +++ b/devel/rubygem-extlib/Makefile @@ -1,19 +1,18 @@ PORTNAME= extlib PORTVERSION= 0.9.16 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= General Ruby extensions WWW= https://github.com/datamapper/extlib LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= cpe gem CPE_VENDOR= dan_kubb .include diff --git a/devel/rubygem-extpp/Makefile b/devel/rubygem-extpp/Makefile index 581d9cda637e..f1875ce3f264 100644 --- a/devel/rubygem-extpp/Makefile +++ b/devel/rubygem-extpp/Makefile @@ -1,18 +1,17 @@ PORTNAME= extpp PORTVERSION= 0.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Reduce duplicated code needed for Ruby C API with Ext++ C API WWW= https://github.com/red-data-tools/extpp LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-extras/Makefile b/devel/rubygem-extras/Makefile index e20abc4b8814..712aa9e6ce88 100644 --- a/devel/rubygem-extras/Makefile +++ b/devel/rubygem-extras/Makefile @@ -1,20 +1,19 @@ PORTNAME= extras PORTVERSION= 0.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Provides patches to stdlib that provide extra functions WWW= https://github.com/envygeeks/extras LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-forwardable-extended>=2.5<3:devel/rubygem-forwardable-extended USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-facets/Makefile b/devel/rubygem-facets/Makefile index e47dc55795fd..6b65a3b2cac3 100644 --- a/devel/rubygem-facets/Makefile +++ b/devel/rubygem-facets/Makefile @@ -1,18 +1,17 @@ PORTNAME= facets PORTVERSION= 3.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= RubyGem port of the single most extensive additions and extensions WWW= https://rubyworks.github.io/facets/ LICENSE= GPLv2 RUBY LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-faker/Makefile b/devel/rubygem-faker/Makefile index 5eb11268e70d..a99b0da80b93 100644 --- a/devel/rubygem-faker/Makefile +++ b/devel/rubygem-faker/Makefile @@ -1,24 +1,23 @@ PORTNAME= faker PORTVERSION= 2.23.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Library for generating fake data: names, addresses, phone numbers WWW= https://github.com/faker-ruby/faker LICENSE= MIT LICENSE_FILE= ${WRKSRC}/License.txt RUN_DEPENDS= rubygem-i18n>=1.8.11,2<2,2:devel/rubygem-i18n USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/faker CONFLICTS_INSTALL= py*-Faker .include diff --git a/devel/rubygem-faraday-cookie_jar/Makefile b/devel/rubygem-faraday-cookie_jar/Makefile index abffee9cff94..68f9573e0e8a 100644 --- a/devel/rubygem-faraday-cookie_jar/Makefile +++ b/devel/rubygem-faraday-cookie_jar/Makefile @@ -1,22 +1,21 @@ PORTNAME= faraday-cookie_jar PORTVERSION= 0.0.7 PORTREVISION= 2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Cookie jar middleware for Faraday WWW= https://github.com/miyagawa/faraday-cookie_jar LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-faraday1>=0.8.0:www/rubygem-faraday1 \ rubygem-http-cookie>=1.0.0<1.1:www/rubygem-http-cookie USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-faraday-excon/Makefile b/devel/rubygem-faraday-excon/Makefile index 9a8397f746ce..ab190cb79c76 100644 --- a/devel/rubygem-faraday-excon/Makefile +++ b/devel/rubygem-faraday-excon/Makefile @@ -1,21 +1,20 @@ PORTNAME= faraday-excon PORTVERSION= 2.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Faraday adapter for Excon WWW= https://github.com/lostisland/faraday-excon LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-excon>=0.27.4:devel/rubygem-excon \ rubygem-faraday>=2.0<3:www/rubygem-faraday USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-faraday-excon1/Makefile b/devel/rubygem-faraday-excon1/Makefile index ba243c4ff710..5a0328e619f2 100644 --- a/devel/rubygem-faraday-excon1/Makefile +++ b/devel/rubygem-faraday-excon1/Makefile @@ -1,21 +1,20 @@ PORTNAME= faraday-excon PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Faraday adapter for Excon WWW= https://github.com/lostisland/faraday-excon LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\. .include diff --git a/devel/rubygem-faraday_middleware-aws-sigv4/Makefile b/devel/rubygem-faraday_middleware-aws-sigv4/Makefile index c26f500d1b7b..c62bacda49ac 100644 --- a/devel/rubygem-faraday_middleware-aws-sigv4/Makefile +++ b/devel/rubygem-faraday_middleware-aws-sigv4/Makefile @@ -1,21 +1,20 @@ PORTNAME= faraday_middleware-aws-sigv4 PORTVERSION= 1.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Faraday middleware for AWS Signature Version 4 WWW= https://github.com/winebarrel/faraday_middleware-aws-sigv4 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sigv4>=1.0<2:devel/rubygem-aws-sigv4 \ rubygem-faraday>=2.0<3:www/rubygem-faraday USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-faraday_middleware-aws-sigv403/Makefile b/devel/rubygem-faraday_middleware-aws-sigv403/Makefile index c6ca901bfc5c..ac23b254389f 100644 --- a/devel/rubygem-faraday_middleware-aws-sigv403/Makefile +++ b/devel/rubygem-faraday_middleware-aws-sigv403/Makefile @@ -1,25 +1,24 @@ PORTNAME= faraday_middleware-aws-sigv4 PORTVERSION= 0.3.0 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 03 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Faraday middleware for AWS Signature Version 4 WWW= https://github.com/winebarrel/faraday_middleware-aws-sigv4 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aws-sigv4>=1.0<2:devel/rubygem-aws-sigv4 \ rubygem-faraday1>=0.15:www/rubygem-faraday1 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^0\.3\. .include diff --git a/devel/rubygem-faraday_middleware-multi_json/Makefile b/devel/rubygem-faraday_middleware-multi_json/Makefile index 680db851f137..2704f0eb6f6e 100644 --- a/devel/rubygem-faraday_middleware-multi_json/Makefile +++ b/devel/rubygem-faraday_middleware-multi_json/Makefile @@ -1,22 +1,21 @@ PORTNAME= faraday_middleware-multi_json PORTVERSION= 0.0.6 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Faraday response parser using MultiJson WWW= https://github.com/denro/faraday_middleware-multi_json LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-faraday_middleware0>0:www/rubygem-faraday_middleware0 \ rubygem-multi_json>0:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-fast-stemmer/Makefile b/devel/rubygem-fast-stemmer/Makefile index d36ac57387cf..6e92f810fc63 100644 --- a/devel/rubygem-fast-stemmer/Makefile +++ b/devel/rubygem-fast-stemmer/Makefile @@ -1,15 +1,14 @@ PORTNAME= fast-stemmer PORTVERSION= 1.0.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Fast Porter stemmer based on a C version of algorithm WWW= https://github.com/romanbsd/fast-stemmer LICENSE= MIT -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-fast_blank/Makefile b/devel/rubygem-fast_blank/Makefile index b7a499bd9575..04e42b691339 100644 --- a/devel/rubygem-fast_blank/Makefile +++ b/devel/rubygem-fast_blank/Makefile @@ -1,16 +1,15 @@ PORTNAME= fast_blank PORTVERSION= 1.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Fast String blank implementation WWW= https://github.com/SamSaffron/fast_blank/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-fast_gettext/Makefile b/devel/rubygem-fast_gettext/Makefile index 82e7b858f76f..73d780bdd8c4 100644 --- a/devel/rubygem-fast_gettext/Makefile +++ b/devel/rubygem-fast_gettext/Makefile @@ -1,17 +1,16 @@ PORTNAME= fast_gettext PORTVERSION= 2.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Fast, memory-efficient and threadsafe GetText for Ruby WWW= https://github.com/grosser/fast_gettext LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-fast_gettext1/Makefile b/devel/rubygem-fast_gettext1/Makefile index 75ed93e586e0..a3665b3ebc27 100644 --- a/devel/rubygem-fast_gettext1/Makefile +++ b/devel/rubygem-fast_gettext1/Makefile @@ -1,20 +1,19 @@ PORTNAME= fast_gettext PORTVERSION= 1.8.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Fast, memory-efficient and threadsafe GetText for Ruby WWW= https://github.com/grosser/fast_gettext LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\. .include diff --git a/devel/rubygem-fast_stack/Makefile b/devel/rubygem-fast_stack/Makefile index eb6f92b3d7b1..5e68212957a0 100644 --- a/devel/rubygem-fast_stack/Makefile +++ b/devel/rubygem-fast_stack/Makefile @@ -1,16 +1,15 @@ PORTNAME= fast_stack PORTVERSION= 0.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Fast method for collecting stack traces WWW= https://github.com/SamSaffron/fast_stack LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-fast_xor/Makefile b/devel/rubygem-fast_xor/Makefile index 3187426f981d..11cfda6db5d1 100644 --- a/devel/rubygem-fast_xor/Makefile +++ b/devel/rubygem-fast_xor/Makefile @@ -1,19 +1,18 @@ PORTNAME= fast_xor PORTVERSION= 1.1.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Fast String XOR operator WWW= https://github.com/CodeMonkeySteve/fast_xor LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-rake>=0:devel/rubygem-rake \ rubygem-rake-compiler>=0:devel/rubygem-rake-compiler -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-fastercsv/Makefile b/devel/rubygem-fastercsv/Makefile index 3c331c6ae36a..bf9f4acf6539 100644 --- a/devel/rubygem-fastercsv/Makefile +++ b/devel/rubygem-fastercsv/Makefile @@ -1,18 +1,17 @@ PORTNAME= fastercsv PORTVERSION= 1.5.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Complete replacement to the CSV standard library WWW= http://fastercsv.rubyforge.org/ LICENSE= GPLv2 RUBY LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-fastri/Makefile b/devel/rubygem-fastri/Makefile index c5bfe201bf71..05b0e6816332 100644 --- a/devel/rubygem-fastri/Makefile +++ b/devel/rubygem-fastri/Makefile @@ -1,19 +1,18 @@ PORTNAME= fastri PORTVERSION= 0.3.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Fast RDoc documentation browser for ruby LICENSE= GPLv2 RUBY LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/fastri-server bin/fri bin/qri bin/ri-emacs .include diff --git a/devel/rubygem-fattr/Makefile b/devel/rubygem-fattr/Makefile index ee53c6e13762..3241b7ba12ea 100644 --- a/devel/rubygem-fattr/Makefile +++ b/devel/rubygem-fattr/Makefile @@ -1,17 +1,16 @@ PORTNAME= fattr PORTVERSION= 2.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Fatter Attr for Ruby WWW= https://github.com/ahoward/fattr LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-fcntl/Makefile b/devel/rubygem-fcntl/Makefile index 1c89b021491a..65e76e66b4e2 100644 --- a/devel/rubygem-fcntl/Makefile +++ b/devel/rubygem-fcntl/Makefile @@ -1,16 +1,15 @@ PORTNAME= fcntl PORTVERSION= 1.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Load constants defined in the OS fcntl.h C header file WWW= https://github.com/ruby/fcntl LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-ffi-compiler/Makefile b/devel/rubygem-ffi-compiler/Makefile index bcb196d2ace3..9ccab068bfa1 100644 --- a/devel/rubygem-ffi-compiler/Makefile +++ b/devel/rubygem-ffi-compiler/Makefile @@ -1,21 +1,20 @@ PORTNAME= ffi-compiler PORTVERSION= 1.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby FFI library WWW= https://github.com/ffi/ffi-compiler LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-ffi>=1.0.0:devel/rubygem-ffi \ rubygem-rake>=0:devel/rubygem-rake USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-ffi-libarchive/Makefile b/devel/rubygem-ffi-libarchive/Makefile index 1c77982f6ea3..f14e96d35943 100644 --- a/devel/rubygem-ffi-libarchive/Makefile +++ b/devel/rubygem-ffi-libarchive/Makefile @@ -1,20 +1,19 @@ PORTNAME= ffi-libarchive PORTVERSION= 1.1.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby FFI binding to libarchive WWW= https://github.com/chef/ffi-libarchive LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-ffi>=1.0<2:devel/rubygem-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-ffi-win32-extensions/Makefile b/devel/rubygem-ffi-win32-extensions/Makefile index c3b31748172e..760a82febe46 100644 --- a/devel/rubygem-ffi-win32-extensions/Makefile +++ b/devel/rubygem-ffi-win32-extensions/Makefile @@ -1,20 +1,19 @@ PORTNAME= ffi-win32-extensions PORTVERSION= 1.0.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Extends the FFI and String classes on MS Windows WWW= https://github.com/chef/ffi-win32-extensions/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-ffi>=0:devel/rubygem-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-ffi-yajl/Makefile b/devel/rubygem-ffi-yajl/Makefile index 2fdaa9b37bb6..89bf6a2a4867 100644 --- a/devel/rubygem-ffi-yajl/Makefile +++ b/devel/rubygem-ffi-yajl/Makefile @@ -1,21 +1,20 @@ PORTNAME= ffi-yajl PORTVERSION= 2.3.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= renchap@cocoa-x.com COMMENT= Ruby FFI wrapper around YAJL 2.x WWW= https://github.com/opscode/ffi-yajl LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE 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 .include diff --git a/devel/rubygem-ffi/Makefile b/devel/rubygem-ffi/Makefile index a908ffa83512..18a767a3800e 100644 --- a/devel/rubygem-ffi/Makefile +++ b/devel/rubygem-ffi/Makefile @@ -1,19 +1,18 @@ PORTNAME= ffi PORTVERSION= 1.15.5 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Extension for dynamic libraries and binding functions WWW= https://github.com/ffi/ffi/wiki LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libffi.so:devel/libffi USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-fiber-local/Makefile b/devel/rubygem-fiber-local/Makefile index 2160ee1619b8..db427b6f6b9c 100644 --- a/devel/rubygem-fiber-local/Makefile +++ b/devel/rubygem-fiber-local/Makefile @@ -1,17 +1,16 @@ PORTNAME= fiber-local PORTVERSION= 1.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Provide a class-level mixin to make fiber local state easy WWW= https://github.com/socketry/fiber-local LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-fiddle/Makefile b/devel/rubygem-fiddle/Makefile index 649cf75c5749..708426367cbe 100644 --- a/devel/rubygem-fiddle/Makefile +++ b/devel/rubygem-fiddle/Makefile @@ -1,20 +1,19 @@ PORTNAME= fiddle PORTVERSION= 1.1.0 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= libffi wrapper for Ruby WWW= https://github.com/ruby/fiddle LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt LIB_DEPENDS= libffi.so:devel/libffi USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-file-tail/Makefile b/devel/rubygem-file-tail/Makefile index 7f54bc65ad85..490a922f0c60 100644 --- a/devel/rubygem-file-tail/Makefile +++ b/devel/rubygem-file-tail/Makefile @@ -1,20 +1,19 @@ PORTNAME= file-tail PORTVERSION= 1.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby library that allows Ruby to 'tail' files WWW= https://github.com/flori/file-tail LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-tins>=1.0<2:devel/rubygem-tins USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-filesize/Makefile b/devel/rubygem-filesize/Makefile index 9194fc566802..5e79524a47b3 100644 --- a/devel/rubygem-filesize/Makefile +++ b/devel/rubygem-filesize/Makefile @@ -1,18 +1,17 @@ PORTNAME= filesize PORTVERSION= 0.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Class for handling filesizes with both the SI and binary prefixes WWW= https://github.com/dominikh/filesize LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-fileutils/Makefile b/devel/rubygem-fileutils/Makefile index 458375caef57..2a815563ff07 100644 --- a/devel/rubygem-fileutils/Makefile +++ b/devel/rubygem-fileutils/Makefile @@ -1,21 +1,20 @@ PORTNAME= fileutils PORTVERSION= 1.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Several file utility methods for copying, moving, removing, etc WWW= https://github.com/ruby/fileutils LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= fileutils_project .include diff --git a/devel/rubygem-find/Makefile b/devel/rubygem-find/Makefile index 7cdf118f1dca..91e5ba3c3009 100644 --- a/devel/rubygem-find/Makefile +++ b/devel/rubygem-find/Makefile @@ -1,19 +1,18 @@ PORTNAME= find PORTVERSION= 0.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Support top-down traversal of a set of file paths WWW= https://github.com/ruby/find LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-flexmock/Makefile b/devel/rubygem-flexmock/Makefile index 83f849b1ff90..11fd50a1e09c 100644 --- a/devel/rubygem-flexmock/Makefile +++ b/devel/rubygem-flexmock/Makefile @@ -1,17 +1,16 @@ PORTNAME= flexmock PORTVERSION= 2.3.6 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple mock object for Ruby WWW= https://github.com/doudou/flexmock LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-flipper-active_support_cache_store-rails61/Makefile b/devel/rubygem-flipper-active_support_cache_store-rails61/Makefile index a016dff5037b..cc5e74c8daf4 100644 --- a/devel/rubygem-flipper-active_support_cache_store-rails61/Makefile +++ b/devel/rubygem-flipper-active_support_cache_store-rails61/Makefile @@ -1,21 +1,20 @@ PORTNAME= flipper-active_support_cache_store PORTVERSION= 0.25.4 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= ruby@FreeBSD.org COMMENT= ActiveSupport::Cache store adapter for Flipper WWW= https://github.com/jnunemaker/flipper LICENSE= MIT RUN_DEPENDS= rubygem-activesupport61>=5.0<7:devel/rubygem-activesupport61 \ rubygem-flipper>=${PORTVERSION}<0.26:devel/rubygem-flipper USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-flipper-active_support_cache_store/Makefile b/devel/rubygem-flipper-active_support_cache_store/Makefile index 6394d184ba85..4b4ce0ba3681 100644 --- a/devel/rubygem-flipper-active_support_cache_store/Makefile +++ b/devel/rubygem-flipper-active_support_cache_store/Makefile @@ -1,20 +1,19 @@ PORTNAME= flipper-active_support_cache_store PORTVERSION= 0.25.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= ActiveSupport::Cache store adapter for Flipper WWW= https://github.com/jnunemaker/flipper LICENSE= MIT RUN_DEPENDS= rubygem-activesupport50>=4.2<8:devel/rubygem-activesupport50 \ rubygem-flipper>=${PORTVERSION}<0.26:devel/rubygem-flipper USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-flipper-ui/Makefile b/devel/rubygem-flipper-ui/Makefile index 621020d671f4..6ad952d7b673 100644 --- a/devel/rubygem-flipper-ui/Makefile +++ b/devel/rubygem-flipper-ui/Makefile @@ -1,23 +1,22 @@ PORTNAME= flipper-ui PORTVERSION= 0.25.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rack middleware that provides a fully featured web interface WWW= https://github.com/jnunemaker/flipper LICENSE= MIT RUN_DEPENDS= rubygem-erubi>=1.0.0<2.0.0:www/rubygem-erubi \ rubygem-flipper>=${PORTVERSION}<0.26:devel/rubygem-flipper \ rubygem-rack22>=1.4,3<3,3:www/rubygem-rack22 \ rubygem-rack-protection>=1.5.3<4.0.0_99:www/rubygem-rack-protection \ rubygem-sanitize>=0<7:textproc/rubygem-sanitize USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-flipper/Makefile b/devel/rubygem-flipper/Makefile index 54959fd14384..a54673db3e81 100644 --- a/devel/rubygem-flipper/Makefile +++ b/devel/rubygem-flipper/Makefile @@ -1,18 +1,17 @@ PORTNAME= flipper PORTVERSION= 0.25.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Act of enabling/disabling features in your application WWW= https://github.com/jnunemaker/flipper LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-fluent-logger/Makefile b/devel/rubygem-fluent-logger/Makefile index 4d258976c78a..b3e7059e22e4 100644 --- a/devel/rubygem-fluent-logger/Makefile +++ b/devel/rubygem-fluent-logger/Makefile @@ -1,21 +1,20 @@ PORTNAME= fluent-logger PORTVERSION= 0.9.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Structured event logger for Ruby WWW= https://github.com/fluent/fluent-logger-ruby LICENSE= APACHE20 RUN_DEPENDS= rubygem-msgpack>=1.0.0<2:devel/rubygem-msgpack USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/fluent-post .include diff --git a/devel/rubygem-fog-core/Makefile b/devel/rubygem-fog-core/Makefile index 62dd6da7f090..b9740e4de460 100644 --- a/devel/rubygem-fog-core/Makefile +++ b/devel/rubygem-fog-core/Makefile @@ -1,23 +1,22 @@ PORTNAME= fog-core PORTVERSION= 2.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Shared classes and tests for fog providers and services WWW= https://github.com/fog/fog-core LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-builder>=0:devel/rubygem-builder \ rubygem-excon>=0.71<1:devel/rubygem-excon \ rubygem-formatador>=0.2<2.0:devel/rubygem-formatador \ rubygem-mime-types>=0:misc/rubygem-mime-types USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-fog-core1/Makefile b/devel/rubygem-fog-core1/Makefile index 9603f97517aa..79e9548b85d6 100644 --- a/devel/rubygem-fog-core1/Makefile +++ b/devel/rubygem-fog-core1/Makefile @@ -1,26 +1,25 @@ PORTNAME= fog-core PORTVERSION= 1.45.0 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Shared classes and tests for fog providers and services WWW= https://github.com/fog/fog-core LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-builder>=0:devel/rubygem-builder \ rubygem-excon>=0.58<1:devel/rubygem-excon \ rubygem-formatador>=0.2<2.0:devel/rubygem-formatador USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\. .include diff --git a/devel/rubygem-fog-core210/Makefile b/devel/rubygem-fog-core210/Makefile index dd4edbf437a5..0aea004d6ad2 100644 --- a/devel/rubygem-fog-core210/Makefile +++ b/devel/rubygem-fog-core210/Makefile @@ -1,27 +1,26 @@ PORTNAME= fog-core PORTVERSION= 2.1.0 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 210 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Shared classes and tests for fog providers and services WWW= https://github.com/fog/fog-core LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-builder>=0:devel/rubygem-builder \ rubygem-excon>=0.58<1:devel/rubygem-excon \ rubygem-formatador>=0.2<2.0:devel/rubygem-formatador \ rubygem-mime-types>=0:misc/rubygem-mime-types USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^2\.1\.0 .include diff --git a/devel/rubygem-fog-core220/Makefile b/devel/rubygem-fog-core220/Makefile index 8f1d12eb34ae..5a557e4e3163 100644 --- a/devel/rubygem-fog-core220/Makefile +++ b/devel/rubygem-fog-core220/Makefile @@ -1,26 +1,25 @@ PORTNAME= fog-core PORTVERSION= 2.2.4 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 220 MAINTAINER= ruby@FreeBSD.org COMMENT= Shared classes and tests for fog providers and services WWW= https://github.com/fog/fog-core LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-builder>=0:devel/rubygem-builder \ rubygem-excon>=0.71<1:devel/rubygem-excon \ rubygem-formatador>=0.2<2:devel/rubygem-formatador \ rubygem-mime-types>=0:misc/rubygem-mime-types USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^2\.2\.0 .include diff --git a/devel/rubygem-fog-json/Makefile b/devel/rubygem-fog-json/Makefile index 04e3c0bf6211..7ef8698ab31e 100644 --- a/devel/rubygem-fog-json/Makefile +++ b/devel/rubygem-fog-json/Makefile @@ -1,21 +1,20 @@ PORTNAME= fog-json PORTVERSION= 1.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Extraction of the JSON parsing tools between providers WWW= https://github.com/fog/fog-json LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core>=0:devel/rubygem-fog-core \ rubygem-multi_json>=1.10<2:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-fog/Makefile b/devel/rubygem-fog/Makefile index bd8b28f83ce0..72175895abcd 100644 --- a/devel/rubygem-fog/Makefile +++ b/devel/rubygem-fog/Makefile @@ -1,55 +1,54 @@ PORTNAME= fog PORTVERSION= 2.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby cloud services library WWW= https://github.com/fog/fog LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-aliyun>=0.1.0:net/rubygem-fog-aliyun \ rubygem-fog-atmos>=0:net/rubygem-fog-atmos \ rubygem-fog-aws>=0.6.0:net/rubygem-fog-aws \ rubygem-fog-brightbox>=0.4<2.0:net/rubygem-fog-brightbox \ rubygem-fog-cloudatcost>=0.4<1:net/rubygem-fog-cloudatcost \ rubygem-fog-cloudstack>=0.1.0<0.2:net/rubygem-fog-cloudstack \ rubygem-fog-core>=2.1<3:devel/rubygem-fog-core \ rubygem-fog-digitalocean>=0.3.0:net/rubygem-fog-digitalocean \ rubygem-fog-dnsimple>=2.1<3:net/rubygem-fog-dnsimple \ rubygem-fog-dynect>=0.0.2<0.6.0:net/rubygem-fog-dynect \ rubygem-fog-ecloud>=0.1<1:net/rubygem-fog-ecloud \ rubygem-fog-google>=1.0<2:net/rubygem-fog-google \ rubygem-fog-internet-archive>=0:net/rubygem-fog-internet-archive \ rubygem-fog-json>=0:devel/rubygem-fog-json \ rubygem-fog-local>=0:net/rubygem-fog-local \ rubygem-fog-openstack>=0:net/rubygem-fog-openstack \ rubygem-fog-ovirt>=0:net/rubygem-fog-ovirt \ rubygem-fog-powerdns>=0.1.1:net/rubygem-fog-powerdns \ rubygem-fog-profitbricks>=0:net/rubygem-fog-profitbricks \ rubygem-fog-rackspace>=0:net/rubygem-fog-rackspace \ rubygem-fog-radosgw>=0.0.2:net/rubygem-fog-radosgw \ rubygem-fog-riakcs>=0:net/rubygem-fog-riakcs \ rubygem-fog-sakuracloud>=0.0.4:net/rubygem-fog-sakuracloud \ rubygem-fog-serverlove>=0:net/rubygem-fog-serverlove \ rubygem-fog-softlayer>=0:net/rubygem-fog-softlayer \ rubygem-fog-storm_on_demand>=0:net/rubygem-fog-storm_on_demand \ rubygem-fog-terremark>=0:net/rubygem-fog-terremark \ rubygem-fog-vmfusion>=0:net/rubygem-fog-vmfusion \ rubygem-fog-voxel>=0:net/rubygem-fog-voxel \ rubygem-fog-vsphere>=0.4.0:net/rubygem-fog-vsphere \ rubygem-fog-xenserver>=0:net/rubygem-fog-xenserver \ rubygem-fog-xml>=0.1.1<0.2:textproc/rubygem-fog-xml \ rubygem-ipaddress>=0.5<1:net/rubygem-ipaddress \ rubygem-json>=2.3<3:devel/rubygem-json USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/fog .include diff --git a/devel/rubygem-font-awesome-rails-rails5/Makefile b/devel/rubygem-font-awesome-rails-rails5/Makefile index 276a5fbab23b..4b5248a09390 100644 --- a/devel/rubygem-font-awesome-rails-rails5/Makefile +++ b/devel/rubygem-font-awesome-rails-rails5/Makefile @@ -1,22 +1,21 @@ PORTNAME= font-awesome-rails PORTVERSION= 4.7.0.8 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= ruby@FreeBSD.org COMMENT= Provides the Font-Awesome web fonts and stylesheets as a Rails engine WWW= https://github.com/bokmann/font-awesome-rails LICENSE= MIT OFL11 LICENSE_COMB= dual LICENSE_FILE_MIT= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-railties5>=3.2<8.0:www/rubygem-railties5 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-font-awesome-rails-rails50/Makefile b/devel/rubygem-font-awesome-rails-rails50/Makefile index de7c67aae9bf..613f5681f3c5 100644 --- a/devel/rubygem-font-awesome-rails-rails50/Makefile +++ b/devel/rubygem-font-awesome-rails-rails50/Makefile @@ -1,22 +1,21 @@ PORTNAME= font-awesome-rails PORTVERSION= 4.7.0.5 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= mfechner@FreeBSD.org COMMENT= Provides the Font-Awesome web fonts and stylesheets as a Rails engine WWW= https://github.com/bokmann/font-awesome-rails LICENSE= MIT OFL11 LICENSE_COMB= dual LICENSE_FILE_MIT= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-railties50>=3.2:www/rubygem-railties50 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-font-awesome-rails-rails52/Makefile b/devel/rubygem-font-awesome-rails-rails52/Makefile index 940c19522463..9a2dc1eb06f6 100644 --- a/devel/rubygem-font-awesome-rails-rails52/Makefile +++ b/devel/rubygem-font-awesome-rails-rails52/Makefile @@ -1,22 +1,21 @@ PORTNAME= font-awesome-rails PORTVERSION= 4.7.0.8 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= ruby@FreeBSD.org COMMENT= Provides the Font-Awesome web fonts and stylesheets as a Rails engine WWW= https://github.com/bokmann/font-awesome-rails LICENSE= MIT OFL11 LICENSE_COMB= dual LICENSE_FILE_MIT= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-railties52>=3.2<8.0:www/rubygem-railties52 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-font-awesome-rails-rails60/Makefile b/devel/rubygem-font-awesome-rails-rails60/Makefile index 2742e94bbfe4..306d050de1c4 100644 --- a/devel/rubygem-font-awesome-rails-rails60/Makefile +++ b/devel/rubygem-font-awesome-rails-rails60/Makefile @@ -1,22 +1,21 @@ PORTNAME= font-awesome-rails PORTVERSION= 4.7.0.8 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails60 MAINTAINER= ruby@FreeBSD.org COMMENT= Provides the Font-Awesome web fonts and stylesheets as a Rails engine WWW= https://github.com/bokmann/font-awesome-rails LICENSE= MIT OFL11 LICENSE_COMB= dual LICENSE_FILE_MIT= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-railties60>=3.2<8.0:www/rubygem-railties60 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-font-awesome-rails/Makefile b/devel/rubygem-font-awesome-rails/Makefile index 7716ace23954..17b95e7507c8 100644 --- a/devel/rubygem-font-awesome-rails/Makefile +++ b/devel/rubygem-font-awesome-rails/Makefile @@ -1,21 +1,20 @@ PORTNAME= font-awesome-rails PORTVERSION= 4.7.0.8 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provides the Font-Awesome web fonts and stylesheets as a Rails engine WWW= https://github.com/bokmann/font-awesome-rails LICENSE= MIT OFL11 LICENSE_COMB= dual LICENSE_FILE_MIT= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-railties4>=3.2<8.0:www/rubygem-railties4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-foreigner/Makefile b/devel/rubygem-foreigner/Makefile index 019996629902..4fefbf6b7534 100644 --- a/devel/rubygem-foreigner/Makefile +++ b/devel/rubygem-foreigner/Makefile @@ -1,20 +1,19 @@ PORTNAME= foreigner PORTVERSION= 1.7.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Adds foreign key helpers to migrations WWW= https://github.com/matthuhiggins/foreigner LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activerecord4>=3.0.0:databases/rubygem-activerecord4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-foreman/Makefile b/devel/rubygem-foreman/Makefile index 769257fa6583..ae0c4346b3a9 100644 --- a/devel/rubygem-foreman/Makefile +++ b/devel/rubygem-foreman/Makefile @@ -1,21 +1,20 @@ PORTNAME= foreman PORTVERSION= 0.87.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Process manager for applications with multiple components WWW= https://github.com/ddollar/foreman LICENSE= MIT USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/foreman SHEBANG_FILES= spec/resources/bin/env .include diff --git a/devel/rubygem-formatador/Makefile b/devel/rubygem-formatador/Makefile index f5362a34f318..a4511bdc54c6 100644 --- a/devel/rubygem-formatador/Makefile +++ b/devel/rubygem-formatador/Makefile @@ -1,18 +1,17 @@ PORTNAME= formatador PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= STDOUT text formatting WWW= https://github.com/geemus/formatador LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-forwardable-extended/Makefile b/devel/rubygem-forwardable-extended/Makefile index fc43e1f2666f..d878349f7759 100644 --- a/devel/rubygem-forwardable-extended/Makefile +++ b/devel/rubygem-forwardable-extended/Makefile @@ -1,18 +1,17 @@ PORTNAME= forwardable-extended PORTVERSION= 2.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Forwardable with hash, and instance variable extensions WWW= https://github.com/envygeeks/forwardable-extended LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-forwardable/Makefile b/devel/rubygem-forwardable/Makefile index 5bc1b816396b..74cb36d23a63 100644 --- a/devel/rubygem-forwardable/Makefile +++ b/devel/rubygem-forwardable/Makefile @@ -1,18 +1,17 @@ PORTNAME= forwardable PORTVERSION= 1.3.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Provides delegation of specified methods to a designated object WWW= https://github.com/ruby/forwardable LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-fugit/Makefile b/devel/rubygem-fugit/Makefile index 829781a7da70..b97488cffb2b 100644 --- a/devel/rubygem-fugit/Makefile +++ b/devel/rubygem-fugit/Makefile @@ -1,24 +1,23 @@ PORTNAME= fugit PORTVERSION= 1.7.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Time tools for flor and the floraison project WWW= https://github.com/floraison/fugit LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-et-orbi>=1.2.7<2:devel/rubygem-et-orbi \ rubygem-raabro>=1.4<2:textproc/rubygem-raabro USES= gem -USE_RUBY= yes NO_ARCH= yes # Disable rdoc OPTIONS_EXCLUDE=DOCS .include diff --git a/devel/rubygem-fuubar/Makefile b/devel/rubygem-fuubar/Makefile index f2a394b227b0..6803fba239ca 100644 --- a/devel/rubygem-fuubar/Makefile +++ b/devel/rubygem-fuubar/Makefile @@ -1,21 +1,20 @@ PORTNAME= fuubar PORTVERSION= 2.5.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= bofh@FreeBSD.org COMMENT= Instafailing RSpec progress bar formatter WWW= https://github.com/thekompanee/fuubar LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-rspec-core>=3.0:devel/rubygem-rspec-core \ rubygem-ruby-progressbar>=1.4:devel/rubygem-ruby-progressbar USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-fuzzy_match/Makefile b/devel/rubygem-fuzzy_match/Makefile index e385112508c6..93e02f01d52d 100644 --- a/devel/rubygem-fuzzy_match/Makefile +++ b/devel/rubygem-fuzzy_match/Makefile @@ -1,20 +1,19 @@ PORTNAME= fuzzy_match PORTVERSION= 2.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Fuzzy match using string similarity and regexp rules WWW= https://github.com/seamusabshere/fuzzy_match LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/fuzzy_match .include diff --git a/devel/rubygem-gapic-common/Makefile b/devel/rubygem-gapic-common/Makefile index 00a79809518c..afeb9b829fa2 100644 --- a/devel/rubygem-gapic-common/Makefile +++ b/devel/rubygem-gapic-common/Makefile @@ -1,25 +1,24 @@ PORTNAME= gapic-common PORTVERSION= 0.15.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Common code for GAPIC-generated API clients WWW= https://github.com/googleapis/gapic-generator-ruby/tree/master/gapic-common LICENSE= APACHE20 RUN_DEPENDS= rubygem-faraday>=1.9<3:www/rubygem-faraday \ rubygem-faraday-retry>=1.0<3:www/rubygem-faraday-retry \ rubygem-google-protobuf>=3.14<4:devel/rubygem-google-protobuf \ rubygem-googleapis-common-protos>=1.3.12<2.0:devel/rubygem-googleapis-common-protos \ rubygem-googleapis-common-protos-types>=1.3.1<2.0:devel/rubygem-googleapis-common-protos-types \ rubygem-googleauth>=1.0<2:security/rubygem-googleauth \ rubygem-grpc>=1.36<2:net/rubygem-grpc USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-gdata/Makefile b/devel/rubygem-gdata/Makefile index 6d51967be02a..3a681c16bb45 100644 --- a/devel/rubygem-gdata/Makefile +++ b/devel/rubygem-gdata/Makefile @@ -1,17 +1,16 @@ PORTNAME= gdata PORTVERSION= 1.1.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Assist Ruby developers in working with Google Data APIs WWW= https://code.google.com/p/gdata-ruby-util/ LICENSE= APACHE20 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-gem-compare/Makefile b/devel/rubygem-gem-compare/Makefile index 8a01f6e1cdc4..458cd3d0159a 100644 --- a/devel/rubygem-gem-compare/Makefile +++ b/devel/rubygem-gem-compare/Makefile @@ -1,27 +1,26 @@ PORTNAME= gem-compare PORTVERSION= 1.2.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= RubyGems plugin for comparing gem versions WWW= https://github.com/fedora-ruby/gem-compare LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_RUBY27= yes RUN_DEPENDS= rubygem-diffy>=0:textproc/rubygem-diffy \ rubygem-gemnasium-parser>=0:devel/rubygem-gemnasium-parser \ rubygem-json>=0:devel/rubygem-json \ rubygem-rainbow>=0:devel/rubygem-rainbow USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= test/gemfiles/*/*/lorem .include diff --git a/devel/rubygem-gem_plugin/Makefile b/devel/rubygem-gem_plugin/Makefile index 2f12474966d4..965bd5ef5332 100644 --- a/devel/rubygem-gem_plugin/Makefile +++ b/devel/rubygem-gem_plugin/Makefile @@ -1,23 +1,22 @@ PORTNAME= gem_plugin PORTVERSION= 0.2.3 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Gem Based Plugin System WWW= https://rubygems.org/gems/gem_plugin LICENSE= LGPL21 RUBY LICENSE_COMB= dual LICENSE_FILE_LGPL21= ${WRKSRC}/COPYING LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/gpgen .include diff --git a/devel/rubygem-gemcutter/Makefile b/devel/rubygem-gemcutter/Makefile index 1bf3bf644e2e..fa37911c1f13 100644 --- a/devel/rubygem-gemcutter/Makefile +++ b/devel/rubygem-gemcutter/Makefile @@ -1,18 +1,17 @@ PORTNAME= gemcutter PORTVERSION= 0.7.1 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Extensions to RubyGems for managing gems and more on RubyGems.org WWW= https://github.com/rubygems/gemcutter LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-gemdiff/Makefile b/devel/rubygem-gemdiff/Makefile index 3fdf91326c55..8131369ad735 100644 --- a/devel/rubygem-gemdiff/Makefile +++ b/devel/rubygem-gemdiff/Makefile @@ -1,24 +1,23 @@ PORTNAME= gemdiff PORTVERSION= 4.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Command-line utility for ruby gems WWW= https://github.com/teeparham/gemdiff LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-launchy>=2.4<3:devel/rubygem-launchy \ rubygem-octokit>=4.0<5:net/rubygem-octokit \ rubygem-thor>=1.0<2:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/gemdiff .include diff --git a/devel/rubygem-gemnasium-parser/Makefile b/devel/rubygem-gemnasium-parser/Makefile index 1197985e675d..3f9a3063f155 100644 --- a/devel/rubygem-gemnasium-parser/Makefile +++ b/devel/rubygem-gemnasium-parser/Makefile @@ -1,18 +1,17 @@ PORTNAME= gemnasium-parser PORTVERSION= 0.1.9 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Safely parse Gemfiles and gemspecs WWW= https://github.com/gemnasium/gemnasium-parser LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-gems/Makefile b/devel/rubygem-gems/Makefile index a149044a0f7d..f65f55ba6c6c 100644 --- a/devel/rubygem-gems/Makefile +++ b/devel/rubygem-gems/Makefile @@ -1,18 +1,17 @@ PORTNAME= gems PORTVERSION= 1.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby wrapper for the RubyGems.org API WWW= https://github.com/rubygems/gems LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-generator/Makefile b/devel/rubygem-generator/Makefile index 222987aaf407..f44c29a9782c 100644 --- a/devel/rubygem-generator/Makefile +++ b/devel/rubygem-generator/Makefile @@ -1,18 +1,17 @@ PORTNAME= generator PORTVERSION= 0.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Templates generators WWW= https://github.com/maxkazar/generator LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-generator_spec-rails4/Makefile b/devel/rubygem-generator_spec-rails4/Makefile index 07ab37d4e93a..55af864d2225 100644 --- a/devel/rubygem-generator_spec-rails4/Makefile +++ b/devel/rubygem-generator_spec-rails4/Makefile @@ -1,21 +1,20 @@ PORTNAME= generator_spec PORTVERSION= 0.9.4 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails4 MAINTAINER= ruby@FreeBSD.org COMMENT= Test Rails generators with RSpec WWW= https://github.com/stevehodgkiss/generator_spec LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport4>=3.0.0:devel/rubygem-activesupport4 \ rubygem-railties4>=3.0.0:www/rubygem-railties4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-generator_spec-rails5/Makefile b/devel/rubygem-generator_spec-rails5/Makefile index b7c5ac7ea261..2fcdb93c6b9a 100644 --- a/devel/rubygem-generator_spec-rails5/Makefile +++ b/devel/rubygem-generator_spec-rails5/Makefile @@ -1,21 +1,20 @@ PORTNAME= generator_spec PORTVERSION= 0.9.4 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= ruby@FreeBSD.org COMMENT= Test Rails generators with RSpec WWW= https://github.com/stevehodgkiss/generator_spec LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport5>=3.0.0:devel/rubygem-activesupport5 \ rubygem-railties5>=3.0.0:www/rubygem-railties5 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-georuby/Makefile b/devel/rubygem-georuby/Makefile index 027f1dd5d9c4..30e4038285ba 100644 --- a/devel/rubygem-georuby/Makefile +++ b/devel/rubygem-georuby/Makefile @@ -1,16 +1,15 @@ PORTNAME= georuby PORTVERSION= 2.5.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Holder for data returned from PostGIS and the Spatial Extensions of MySql WWW= https://github.com/nofxx/georuby LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-get_process_mem/Makefile b/devel/rubygem-get_process_mem/Makefile index 041ae930f707..e185c521ff8c 100644 --- a/devel/rubygem-get_process_mem/Makefile +++ b/devel/rubygem-get_process_mem/Makefile @@ -1,19 +1,18 @@ PORTNAME= get_process_mem PORTVERSION= 0.2.7 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Get memory usage of a process in Ruby WWW= https://github.com/schneems/get_process_mem LICENSE= MIT RUN_DEPENDS= rubygem-ffi>=1.0<2:devel/rubygem-ffi -USE_RUBY= yes USES= gem NO_ARCH= yes .include diff --git a/devel/rubygem-getopt/Makefile b/devel/rubygem-getopt/Makefile index fd61feff7173..fddcb4d56841 100644 --- a/devel/rubygem-getopt/Makefile +++ b/devel/rubygem-getopt/Makefile @@ -1,18 +1,17 @@ PORTNAME= getopt PORTVERSION= 1.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Command line parsing with Ruby WWW= https://github.com/djberg96/getopt LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-getoptlong/Makefile b/devel/rubygem-getoptlong/Makefile index 9f7ca4826244..2395306c83f2 100644 --- a/devel/rubygem-getoptlong/Makefile +++ b/devel/rubygem-getoptlong/Makefile @@ -1,19 +1,18 @@ PORTNAME= getoptlong PORTVERSION= 0.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= GetoptLong for Ruby WWW= https://github.com/ruby/getoptlong LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-gettext-setup/Makefile b/devel/rubygem-gettext-setup/Makefile index 6dda294b0b37..bd0bdb225394 100644 --- a/devel/rubygem-gettext-setup/Makefile +++ b/devel/rubygem-gettext-setup/Makefile @@ -1,22 +1,21 @@ PORTNAME= gettext-setup PORTVERSION= 0.34 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Set up i18n for Ruby projects WWW= https://github.com/puppetlabs/gettext-setup-gem LICENSE= APACHE20 RUN_DEPENDS= rubygem-fast_gettext1>=1.1<2:devel/rubygem-fast_gettext1 \ rubygem-gettext>=3.0.2:devel/rubygem-gettext \ rubygem-locale>=0:devel/rubygem-locale USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-gettext/Makefile b/devel/rubygem-gettext/Makefile index 7e86959ee3cf..668315653b64 100644 --- a/devel/rubygem-gettext/Makefile +++ b/devel/rubygem-gettext/Makefile @@ -1,33 +1,32 @@ PORTNAME= gettext PORTVERSION= 3.4.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby implementation of the gettext library WWW= https://ruby-gettext.github.io/ LICENSE= LGPL3 RUBY LICENSE_COMB= dual LICENSE_FILE_LGPL3= ${WRKSRC}/doc/text/lgpl-3.0.txt LICENSE_FILE_RUBY= ${WRKSRC}/doc/text/ruby-license.txt RUN_DEPENDS= rubygem-erubi>=0:www/rubygem-erubi \ rubygem-locale>=2.0.5:devel/rubygem-locale \ rubygem-prime>=0:math/rubygem-prime \ rubygem-text>=1.3.0:textproc/rubygem-text USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rmsgcat \ bin/rmsgfmt \ bin/rmsginit \ bin/rmsgmerge \ bin/rxgettext SHEBANG_FILES= samples/*.rb samples/cgi/*.rb .include diff --git a/devel/rubygem-gettext_i18n_rails/Makefile b/devel/rubygem-gettext_i18n_rails/Makefile index 49ab1aa26ca2..318d9390d1d5 100644 --- a/devel/rubygem-gettext_i18n_rails/Makefile +++ b/devel/rubygem-gettext_i18n_rails/Makefile @@ -1,20 +1,19 @@ PORTNAME= gettext_i18n_rails PORTVERSION= 1.9.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple FastGettext Rails integration WWW= https://github.com/grosser/gettext_i18n_rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt RUN_DEPENDS= rubygem-fast_gettext>=0.9.0:devel/rubygem-fast_gettext USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-gettext_i18n_rails18/Makefile b/devel/rubygem-gettext_i18n_rails18/Makefile index fd6cda68ee7d..e94dfdcb6f4e 100644 --- a/devel/rubygem-gettext_i18n_rails18/Makefile +++ b/devel/rubygem-gettext_i18n_rails18/Makefile @@ -1,23 +1,22 @@ PORTNAME= gettext_i18n_rails PORTVERSION= 1.8.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 18 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple FastGettext Rails integration WWW= https://github.com/grosser/gettext_i18n_rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt RUN_DEPENDS= rubygem-fast_gettext>=0.9.0:devel/rubygem-fast_gettext USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\.8\. .include diff --git a/devel/rubygem-gettext_i18n_rails_js-rails5/Makefile b/devel/rubygem-gettext_i18n_rails_js-rails5/Makefile index 554d63d9c3ed..978f7b8eb2f9 100644 --- a/devel/rubygem-gettext_i18n_rails_js-rails5/Makefile +++ b/devel/rubygem-gettext_i18n_rails_js-rails5/Makefile @@ -1,24 +1,23 @@ PORTNAME= gettext_i18n_rails_js PORTVERSION= 1.3.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Make gettext_i18n_rails .po files as JSON WWW= https://github.com/webhippie/gettext_i18n_rails_js LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-gettext>=3.0.2:devel/rubygem-gettext \ rubygem-gettext_i18n_rails>=0.7.1:devel/rubygem-gettext_i18n_rails \ rubygem-po_to_json>=1.0.0:converters/rubygem-po_to_json \ rubygem-rails5>=3.2.0:www/rubygem-rails5 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-gettext_i18n_rails_js-rails50/Makefile b/devel/rubygem-gettext_i18n_rails_js-rails50/Makefile index 599571a024ea..b88424397b17 100644 --- a/devel/rubygem-gettext_i18n_rails_js-rails50/Makefile +++ b/devel/rubygem-gettext_i18n_rails_js-rails50/Makefile @@ -1,24 +1,23 @@ PORTNAME= gettext_i18n_rails_js PORTVERSION= 1.3.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Make gettext_i18n_rails .po files as JSON WWW= https://github.com/webhippie/gettext_i18n_rails_js LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-gettext>=3.0.2:devel/rubygem-gettext \ rubygem-gettext_i18n_rails>=0.7.1:devel/rubygem-gettext_i18n_rails \ rubygem-po_to_json>=1.0.0:converters/rubygem-po_to_json \ rubygem-rails50>=5.0.7:www/rubygem-rails50 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-gettext_i18n_rails_js-rails52/Makefile b/devel/rubygem-gettext_i18n_rails_js-rails52/Makefile index 51008616501f..97abd76771ee 100644 --- a/devel/rubygem-gettext_i18n_rails_js-rails52/Makefile +++ b/devel/rubygem-gettext_i18n_rails_js-rails52/Makefile @@ -1,24 +1,23 @@ PORTNAME= gettext_i18n_rails_js PORTVERSION= 1.3.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Make gettext_i18n_rails .po files as JSON WWW= https://github.com/webhippie/gettext_i18n_rails_js LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-gettext>=3.0.2:devel/rubygem-gettext \ rubygem-gettext_i18n_rails>=0.7.1:devel/rubygem-gettext_i18n_rails \ rubygem-po_to_json>=1.0.0:converters/rubygem-po_to_json \ rubygem-rails52>=3.2.0:www/rubygem-rails52 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-gettext_i18n_rails_js-rails61/Makefile b/devel/rubygem-gettext_i18n_rails_js-rails61/Makefile index b4c47e6defd1..bb8b01b57881 100644 --- a/devel/rubygem-gettext_i18n_rails_js-rails61/Makefile +++ b/devel/rubygem-gettext_i18n_rails_js-rails61/Makefile @@ -1,24 +1,23 @@ PORTNAME= gettext_i18n_rails_js PORTVERSION= 1.3.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= mfechner@FreeBSD.org COMMENT= Make gettext_i18n_rails .po files as JSON WWW= https://github.com/webhippie/gettext_i18n_rails_js LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-gettext>=3.0.2:devel/rubygem-gettext \ rubygem-gettext_i18n_rails>=0.7.1:devel/rubygem-gettext_i18n_rails \ rubygem-po_to_json>=1.0.0:converters/rubygem-po_to_json \ rubygem-rails61>=3.2.0:www/rubygem-rails61 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-gh/Makefile b/devel/rubygem-gh/Makefile index ceced33b1e19..747f04ca018e 100644 --- a/devel/rubygem-gh/Makefile +++ b/devel/rubygem-gh/Makefile @@ -1,27 +1,26 @@ PORTNAME= gh PORTVERSION= 0.18.0 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Multi-layer client for the GitHub API v3 WWW= https://github.com/travis-ci/gh LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport52>=5.0<6:devel/rubygem-activesupport52 \ rubygem-addressable>=2.4<3:www/rubygem-addressable \ rubygem-faraday1>=1.0<2:www/rubygem-faraday1 \ rubygem-faraday_middleware>=1.0<2:www/rubygem-faraday_middleware \ rubygem-multi_json>=1.0<2:devel/rubygem-multi_json \ rubygem-net-http-persistent2>=2.9<3:www/rubygem-net-http-persistent2 \ rubygem-net-http-pipeline>=0:www/rubygem-net-http-pipeline USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-gibbler/Makefile b/devel/rubygem-gibbler/Makefile index da7263f55a9a..08dd3b78dacd 100644 --- a/devel/rubygem-gibbler/Makefile +++ b/devel/rubygem-gibbler/Makefile @@ -1,18 +1,17 @@ PORTNAME= gibbler PORTVERSION= 0.9.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Git-like hashes for Ruby objects WWW= https://github.com/delano/gibbler LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-gio2/Makefile b/devel/rubygem-gio2/Makefile index 47f4c37b7a6a..dc1e0776fbdf 100644 --- a/devel/rubygem-gio2/Makefile +++ b/devel/rubygem-gio2/Makefile @@ -1,20 +1,19 @@ PORTNAME= gio2 PORTVERSION= 4.0.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding of gio 2.x WWW= https://ruby-gnome.github.io/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB RUN_DEPENDS= rubygem-fiddle>=0:devel/rubygem-fiddle \ rubygem-gobject-introspection>=${PORTVERSION}:devel/rubygem-gobject-introspection USES= gem gnome USE_GNOME= glib20 -USE_RUBY= yes .include diff --git a/devel/rubygem-git-version-bump/Makefile b/devel/rubygem-git-version-bump/Makefile index f42485aac027..6dbe5a1abf86 100644 --- a/devel/rubygem-git-version-bump/Makefile +++ b/devel/rubygem-git-version-bump/Makefile @@ -1,20 +1,19 @@ PORTNAME= git-version-bump PORTVERSION= 0.17.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Manage your app version entirely via git tags WWW= https://github.com/mpalmer/git-version-bump LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENCE USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/git-version-bump .include diff --git a/devel/rubygem-git/Makefile b/devel/rubygem-git/Makefile index 7775a3094b83..ee1518789e1d 100644 --- a/devel/rubygem-git/Makefile +++ b/devel/rubygem-git/Makefile @@ -1,22 +1,21 @@ PORTNAME= git PORTVERSION= 1.12.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby wrapper library around git(1) WWW= https://github.com/ruby-git/ruby-git LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= git>=1.6:devel/git \ rubygem-addressable>=2.8<3:www/rubygem-addressable \ rubygem-rchardet>=1.8<2:textproc/rubygem-rchardet USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-github_api/Makefile b/devel/rubygem-github_api/Makefile index f9cc2c00e2ef..e082c88ec635 100644 --- a/devel/rubygem-github_api/Makefile +++ b/devel/rubygem-github_api/Makefile @@ -1,25 +1,24 @@ PORTNAME= github_api PORTVERSION= 0.19.0 PORTREVISION= 4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Wrapper that supports all of the GitHub API v3 methods WWW= https://piotrmurach.github.io/github/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-addressable>=2.4<3:www/rubygem-addressable \ rubygem-descendants_tracker>=0.0.4<0.1:devel/rubygem-descendants_tracker \ rubygem-faraday1>=0.8<2:www/rubygem-faraday1 \ rubygem-hashie>=3.5.2:devel/rubygem-hashie \ rubygem-oauth21>=1.0<2:net/rubygem-oauth21 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-gitlab-chronic/Makefile b/devel/rubygem-gitlab-chronic/Makefile index 199a00fb8db2..3df14908beee 100644 --- a/devel/rubygem-gitlab-chronic/Makefile +++ b/devel/rubygem-gitlab-chronic/Makefile @@ -1,19 +1,18 @@ PORTNAME= gitlab-chronic PORTVERSION= 0.10.6 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Natural language date/time parser written in pure Ruby WWW= https://github.com/mojombo/chronic LICENSE= MIT RUN_DEPENDS= rubygem-numerizer>=0.2<1.0:devel/rubygem-numerizer USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-gitlab-dangerfiles/Makefile b/devel/rubygem-gitlab-dangerfiles/Makefile index a87b4d79aa0c..63598be9e7c8 100644 --- a/devel/rubygem-gitlab-dangerfiles/Makefile +++ b/devel/rubygem-gitlab-dangerfiles/Makefile @@ -1,22 +1,21 @@ PORTNAME= gitlab-dangerfiles PORTVERSION= 3.6.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Dangerfile and plugins for GitLab projects WWW= https://gitlab.com/gitlab-org/ruby/gems/gitlab-dangerfiles LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-danger>=8.4.5:devel/rubygem-danger \ rubygem-danger-gitlab>=8.0.0:devel/rubygem-danger-gitlab \ rubygem-rake>=0:devel/rubygem-rake USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-gitlab-experiment/Makefile b/devel/rubygem-gitlab-experiment/Makefile index b708e2e3ab65..fea39b0acf34 100644 --- a/devel/rubygem-gitlab-experiment/Makefile +++ b/devel/rubygem-gitlab-experiment/Makefile @@ -1,21 +1,20 @@ PORTNAME= gitlab-experiment PORTVERSION= 0.7.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Experiment library for Gitlab WWW= https://gitlab.com/gitlab-org/ruby/gems/gitlab-experiment LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activesupport61>=3.0:devel/rubygem-activesupport61 \ rubygem-request_store>=1.0:devel/rubygem-request_store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-gitlab-labkit/Makefile b/devel/rubygem-gitlab-labkit/Makefile index 0c8997df5204..a0f2d57b0def 100644 --- a/devel/rubygem-gitlab-labkit/Makefile +++ b/devel/rubygem-gitlab-labkit/Makefile @@ -1,26 +1,25 @@ PORTNAME= gitlab-labkit PORTVERSION= 0.29.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Instrumentation for GitLab WWW= https://about.gitlab.com/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-actionpack61>=5<8:www/rubygem-actionpack61 \ rubygem-activesupport61>=5<8:devel/rubygem-activesupport61 \ rubygem-grpc142>=1.37:net/rubygem-grpc142 \ rubygem-jaeger-client>=1.1.0<1.2:devel/rubygem-jaeger-client \ rubygem-opentracing>=0.4<1.0:devel/rubygem-opentracing \ rubygem-pg_query>=2.1<3:databases/rubygem-pg_query \ rubygem-redis4>3.0.0<6.0.0:databases/rubygem-redis4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-gitlab-license/Makefile b/devel/rubygem-gitlab-license/Makefile index 36fe748ef393..ece48fb5bd75 100644 --- a/devel/rubygem-gitlab-license/Makefile +++ b/devel/rubygem-gitlab-license/Makefile @@ -1,21 +1,20 @@ PORTNAME= gitlab-license PORTVERSION= 2.2.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Generate, verify and enforce software licenses WWW= https://gitlab.com/gitlab-org/gitlab-chronic-duration LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= bash>0:shells/bash USES= gem shebangfix -USE_RUBY= yes SHEBANG_FILES= bin/setup NO_ARCH= yes .include diff --git a/devel/rubygem-gitlab-license_finder/Makefile b/devel/rubygem-gitlab-license_finder/Makefile index b70a721cdc8a..b191e934b4fa 100644 --- a/devel/rubygem-gitlab-license_finder/Makefile +++ b/devel/rubygem-gitlab-license_finder/Makefile @@ -1,32 +1,31 @@ PORTNAME= gitlab-license_finder PORTVERSION= 6.14.2.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Generate, verify and enforce software licenses WWW= https://github.com/pivotal/LicenseFinder LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-bundler>=0:sysutils/rubygem-bundler \ rubygem-rubyzip>=1<3:archivers/rubygem-rubyzip \ rubygem-thor10>=1.0.1<1.1:devel/rubygem-thor10 \ rubygem-tomlrb>=1.3<2.1:textproc/rubygem-tomlrb \ rubygem-with_env>=1.1.0<1.1.1:devel/rubygem-with_env \ rubygem-xml-simple>=1.1.5<1.2:textproc/rubygem-xml-simple USES= gem python:run shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= dlf \ bin/license_finder_pip.py \ ci/scripts/*.sh PLIST_FILES= bin/license_finder \ bin/license_finder_pip.py .include diff --git a/devel/rubygem-gitlab-pygments.rb/Makefile b/devel/rubygem-gitlab-pygments.rb/Makefile index d589f4be0b0a..dc50d8d47eb6 100644 --- a/devel/rubygem-gitlab-pygments.rb/Makefile +++ b/devel/rubygem-gitlab-pygments.rb/Makefile @@ -1,33 +1,32 @@ PORTNAME= gitlab-pygments.rb PORTVERSION= 0.5.4 PORTREVISION= 3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Exposes the pygments syntax highlighter to Ruby WWW= https://github.com/gitlabhq/pygments.rb LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-posix-spawn>=0.3.6<0.4:devel/rubygem-posix-spawn \ rubygem-yajl-ruby>=1.1.0:devel/rubygem-yajl-ruby USES= gem python:env shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= lib/pygments/mentos.py \ vendor/pygments-main/docs/generate.py \ vendor/pygments-main/external/lasso-builtins-generator-9.lasso \ vendor/pygments-main/pygmentize \ vendor/pygments-main/scripts/check_sources.py \ vendor/pygments-main/scripts/find_codetags.py \ vendor/pygments-main/scripts/find_error.py \ vendor/pygments-main/scripts/reindent.py \ vendor/pygments-main/setup.py \ vendor/simplejson/scripts/make_docs.py .include diff --git a/devel/rubygem-gitlab-sidekiq-fetcher/Makefile b/devel/rubygem-gitlab-sidekiq-fetcher/Makefile index de138c719f52..be99eafc42a8 100644 --- a/devel/rubygem-gitlab-sidekiq-fetcher/Makefile +++ b/devel/rubygem-gitlab-sidekiq-fetcher/Makefile @@ -1,20 +1,19 @@ PORTNAME= gitlab-sidekiq-fetcher PORTVERSION= 0.9.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Redis reliable queue pattern implemented in Sidekiq WWW= https://github.com/TEA-ebook/sidekiq-reliable-fetch LICENSE= RUBY RUN_DEPENDS= rubygem-json>=2.5:devel/rubygem-json \ rubygem-sidekiq>=6.1<7:devel/rubygem-sidekiq USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-gitlab/Makefile b/devel/rubygem-gitlab/Makefile index 024a30140c75..0df4cf5dbfb4 100644 --- a/devel/rubygem-gitlab/Makefile +++ b/devel/rubygem-gitlab/Makefile @@ -1,23 +1,22 @@ PORTNAME= gitlab PORTVERSION= 4.18.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Ruby client and CLI for GitLab API WWW= https://github.com/NARKOZ/gitlab LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-httparty>=0.18<1:www/rubygem-httparty \ rubygem-terminal-table>=1.5.1:textproc/rubygem-terminal-table USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/gitlab .include diff --git a/devel/rubygem-gitlab_chronic_duration/Makefile b/devel/rubygem-gitlab_chronic_duration/Makefile index 9ef3a04269e9..aff7820274f2 100644 --- a/devel/rubygem-gitlab_chronic_duration/Makefile +++ b/devel/rubygem-gitlab_chronic_duration/Makefile @@ -1,20 +1,19 @@ PORTNAME= gitlab_chronic_duration PORTVERSION= 0.10.6.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Natural language parser for elapsed time WWW= https://gitlab.com/gitlab-org/gitlab-chronic-duration LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-numerizer>=0.2<1:devel/rubygem-numerizer USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-gitlab_git/Makefile b/devel/rubygem-gitlab_git/Makefile index 4283f3aec193..01d9dfe5412b 100644 --- a/devel/rubygem-gitlab_git/Makefile +++ b/devel/rubygem-gitlab_git/Makefile @@ -1,23 +1,22 @@ PORTNAME= gitlab_git PORTVERSION= 10.7.0 PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= GitLab wrapper around git objects WWW= https://gitlab.com/gitlab-org/gitlab_git LICENSE= MIT RUN_DEPENDS= rubygem-activesupport4>=4.0:devel/rubygem-activesupport4 \ rubygem-charlock_holmes>=0.7.3:textproc/rubygem-charlock_holmes \ rubygem-github-linguist>=4.7.0:textproc/rubygem-github-linguist \ rubygem-rugged>=0.24.0:devel/rubygem-rugged NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-gitlab_meta/Makefile b/devel/rubygem-gitlab_meta/Makefile index 4e3809303be5..2bcdfdfbaf28 100644 --- a/devel/rubygem-gitlab_meta/Makefile +++ b/devel/rubygem-gitlab_meta/Makefile @@ -1,21 +1,20 @@ PORTNAME= gitlab_meta PORTVERSION= 7.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= GitLab meta gem WWW= https://rubygems.org/gems/gitlab_meta LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_PRODUCT= gitlab CPE_VENDOR= gitlab .include diff --git a/devel/rubygem-glib2/Makefile b/devel/rubygem-glib2/Makefile index fe68bf0997ec..86baaec08dce 100644 --- a/devel/rubygem-glib2/Makefile +++ b/devel/rubygem-glib2/Makefile @@ -1,20 +1,19 @@ PORTNAME= glib2 PORTVERSION= 4.0.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding of GLib 2.x WWW= https://ruby-gnome.github.io/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB RUN_DEPENDS= rubygem-native-package-installer>=1.0.3:devel/rubygem-native-package-installer \ rubygem-pkg-config>=1.3.5:devel/rubygem-pkg-config USES= gem gnome USE_GNOME= glib20 -USE_RUBY= yes .include diff --git a/devel/rubygem-gobject-introspection/Makefile b/devel/rubygem-gobject-introspection/Makefile index 31f0753957fc..9b9ed86e3523 100644 --- a/devel/rubygem-gobject-introspection/Makefile +++ b/devel/rubygem-gobject-introspection/Makefile @@ -1,21 +1,20 @@ PORTNAME= gobject-introspection PORTVERSION= 4.0.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding of GObject Introspection WWW= https://ruby-gnome.github.io/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB BROKEN_sparc64= does not build: fails to compile rb-gi-function-info.c RUN_DEPENDS= rubygem-glib2>=${PORTVERSION}:devel/rubygem-glib2 USES= gem gnome USE_GNOME= introspection -USE_RUBY= yes .include diff --git a/devel/rubygem-google-api-client/Makefile b/devel/rubygem-google-api-client/Makefile index 2ec1f07fa9e6..fe3b5823cfb5 100644 --- a/devel/rubygem-google-api-client/Makefile +++ b/devel/rubygem-google-api-client/Makefile @@ -1,21 +1,20 @@ PORTNAME= google-api-client PORTVERSION= 0.53.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Client for accessing Google APIs WWW= https://github.com/googleapis/google-api-ruby-client LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-google-apis-core>=0.1<1:devel/rubygem-google-apis-core \ rubygem-google-apis-generator>=0.1<1:devel/rubygem-google-apis-generator USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-google-apis-compute_v1/Makefile b/devel/rubygem-google-apis-compute_v1/Makefile index 5803b378f5ad..7aaf3ee07e2a 100644 --- a/devel/rubygem-google-apis-compute_v1/Makefile +++ b/devel/rubygem-google-apis-compute_v1/Makefile @@ -1,20 +1,19 @@ PORTNAME= google-apis-compute_v1 PORTVERSION= 0.55.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple REST client for Compute Engine API V1 WWW= https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-google-apis-core>=0.9.1<2.0:devel/rubygem-google-apis-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-google-apis-core/Makefile b/devel/rubygem-google-apis-core/Makefile index 666455d1d468..7a2f64720309 100644 --- a/devel/rubygem-google-apis-core/Makefile +++ b/devel/rubygem-google-apis-core/Makefile @@ -1,27 +1,26 @@ PORTNAME= google-apis-core PORTVERSION= 0.9.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Common utility and base classes for legacy Google REST clients WWW= https://github.com/googleapis/google-api-ruby-client/tree/main/google-apis-core LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-addressable>=2.5.1<3:www/rubygem-addressable \ rubygem-googleauth>=0.16.2<2.0:security/rubygem-googleauth \ rubygem-httpclient>=2.8.1<3.0:www/rubygem-httpclient \ rubygem-mini_mime>=1.0<2:mail/rubygem-mini_mime \ rubygem-representable>=3.0<4:textproc/rubygem-representable \ rubygem-retriable>=2.0<4.0:devel/rubygem-retriable \ rubygem-rexml>=0:textproc/rubygem-rexml \ rubygem-webrick>=0:www/rubygem-webrick USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-google-apis-discovery_v1/Makefile b/devel/rubygem-google-apis-discovery_v1/Makefile index 0b0817f6d964..7c60daab8518 100644 --- a/devel/rubygem-google-apis-discovery_v1/Makefile +++ b/devel/rubygem-google-apis-discovery_v1/Makefile @@ -1,20 +1,19 @@ PORTNAME= google-apis-discovery_v1 PORTVERSION= 0.13.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple REST client for version V1 of the API Discovery Service WWW= https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discovery_v1 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-google-apis-core>=0.9.1<2.0:devel/rubygem-google-apis-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-google-apis-generator/Makefile b/devel/rubygem-google-apis-generator/Makefile index d05876e1b269..c9d051073ed0 100644 --- a/devel/rubygem-google-apis-generator/Makefile +++ b/devel/rubygem-google-apis-generator/Makefile @@ -1,26 +1,25 @@ PORTNAME= google-apis-generator PORTVERSION= 0.11.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Code generator for legacy Google REST clients WWW= https://github.com/googleapis/google-api-ruby-client/tree/main/google-apis-generator LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-activesupport60>=5.0:devel/rubygem-activesupport60 \ rubygem-gems>=1.2<2:devel/rubygem-gems \ rubygem-google-apis-core>=0.9.1<2.0:devel/rubygem-google-apis-core \ rubygem-google-apis-discovery_v1>=0.5<1:devel/rubygem-google-apis-discovery_v1 \ rubygem-thor>=0.20<2:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/generate-api .include diff --git a/devel/rubygem-google-apis-iamcredentials_v1/Makefile b/devel/rubygem-google-apis-iamcredentials_v1/Makefile index 09549bedbb08..af167a43b72f 100644 --- a/devel/rubygem-google-apis-iamcredentials_v1/Makefile +++ b/devel/rubygem-google-apis-iamcredentials_v1/Makefile @@ -1,20 +1,19 @@ PORTNAME= google-apis-iamcredentials_v1 PORTVERSION= 0.16.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple REST client for version V1 of the IAM Service Account Credentials API WWW= https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-iamcredentials_v1 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-google-apis-core>=0.9.1<2.0:devel/rubygem-google-apis-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-google-apis-monitoring_v3/Makefile b/devel/rubygem-google-apis-monitoring_v3/Makefile index 8e5c3da7a890..743a32319553 100644 --- a/devel/rubygem-google-apis-monitoring_v3/Makefile +++ b/devel/rubygem-google-apis-monitoring_v3/Makefile @@ -1,20 +1,19 @@ PORTNAME= google-apis-monitoring_v3 PORTVERSION= 0.38.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple REST client for Cloud Monitoring API V3 WWW= https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-monitoring_v3 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-google-apis-core>=0.9.1<2.0:devel/rubygem-google-apis-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-google-apis-pubsub_v1/Makefile b/devel/rubygem-google-apis-pubsub_v1/Makefile index 18d898210a2c..91a6f058a315 100644 --- a/devel/rubygem-google-apis-pubsub_v1/Makefile +++ b/devel/rubygem-google-apis-pubsub_v1/Makefile @@ -1,20 +1,19 @@ PORTNAME= google-apis-pubsub_v1 PORTVERSION= 0.31.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple REST client for Cloud Pub/Sub API V1 WWW= https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-pubsub_v1 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-google-apis-core>=0.9.1<2.0:devel/rubygem-google-apis-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-google-apis-sqladmin_v1beta4/Makefile b/devel/rubygem-google-apis-sqladmin_v1beta4/Makefile index 5a78be07c974..1bc9298aa0bc 100644 --- a/devel/rubygem-google-apis-sqladmin_v1beta4/Makefile +++ b/devel/rubygem-google-apis-sqladmin_v1beta4/Makefile @@ -1,20 +1,19 @@ PORTNAME= google-apis-sqladmin_v1beta4 PORTVERSION= 0.40.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple REST client for Cloud SQL Admin API V1beta4 WWW= https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-sqladmin_v1beta4 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-google-apis-core>=0.9.1<2.0:devel/rubygem-google-apis-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-google-apis-storage_v1/Makefile b/devel/rubygem-google-apis-storage_v1/Makefile index b9a529df20ea..30df673517df 100644 --- a/devel/rubygem-google-apis-storage_v1/Makefile +++ b/devel/rubygem-google-apis-storage_v1/Makefile @@ -1,20 +1,19 @@ PORTNAME= google-apis-storage_v1 PORTVERSION= 0.20.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple REST client for version V1 of the Cloud Storage JSON API WWW= https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-storage_v1 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-google-apis-core>=0.9.1<2.0:devel/rubygem-google-apis-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-google-gax/Makefile b/devel/rubygem-google-gax/Makefile index 5eb3b2e51ccd..f72a795efdb7 100644 --- a/devel/rubygem-google-gax/Makefile +++ b/devel/rubygem-google-gax/Makefile @@ -1,25 +1,24 @@ PORTNAME= google-gax PORTVERSION= 1.8.2 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Google API Extensions WWW= https://github.com/googleapis/gax-ruby LICENSE= BSD3CLAUSE RUN_DEPENDS= rubygem-google-protobuf>=3.9<4:devel/rubygem-google-protobuf \ rubygem-googleapis-common-protos>=1.3.9<2.0:devel/rubygem-googleapis-common-protos \ rubygem-googleapis-common-protos-types>=1.0.4<2.0:devel/rubygem-googleapis-common-protos-types \ rubygem-googleauth>=0.9<2:security/rubygem-googleauth \ rubygem-grpc>=1.24<2:net/rubygem-grpc \ rubygem-rly>=0.2.3<0.3:textproc/rubygem-rly USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-google-iam-v1/Makefile b/devel/rubygem-google-iam-v1/Makefile index ca21a9f43e76..28c90f9100fc 100644 --- a/devel/rubygem-google-iam-v1/Makefile +++ b/devel/rubygem-google-iam-v1/Makefile @@ -1,22 +1,21 @@ PORTNAME= google-iam-v1 PORTVERSION= 0.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby Client for the IAM Policy API WWW= https://github.com/googleapis/google-cloud-ruby/tree/main/google-iam-v1 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-gapic-common>=0.10<2.0:devel/rubygem-gapic-common \ rubygem-google-cloud-errors>=1.0<2:net/rubygem-google-cloud-errors \ rubygem-grpc-google-iam-v1>=1.1<2:devel/rubygem-grpc-google-iam-v1 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-google-protobuf/Makefile b/devel/rubygem-google-protobuf/Makefile index 8b8f23de93ee..b72b087aaee6 100644 --- a/devel/rubygem-google-protobuf/Makefile +++ b/devel/rubygem-google-protobuf/Makefile @@ -1,17 +1,16 @@ PORTNAME= google-protobuf PORTVERSION= 3.21.9 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby extension to Google Protocol Buffers WWW= https://developers.google.com/protocol-buffers/ LICENSE= BSD3CLAUSE USES= gem shebangfix -USE_RUBY= yes SHEBANG_GLOB= *.rb .include diff --git a/devel/rubygem-googleapis-common-protos-types/Makefile b/devel/rubygem-googleapis-common-protos-types/Makefile index cf68fcaf0bc7..23cb16870864 100644 --- a/devel/rubygem-googleapis-common-protos-types/Makefile +++ b/devel/rubygem-googleapis-common-protos-types/Makefile @@ -1,19 +1,18 @@ PORTNAME= googleapis-common-protos-types PORTVERSION= 1.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Common protocol buffer types used by Google APIs WWW= https://github.com/googleapis/common-protos-ruby/tree/main/googleapis-common-protos-types LICENSE= APACHE20 RUN_DEPENDS= rubygem-google-protobuf>=3.14<4:devel/rubygem-google-protobuf USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-googleapis-common-protos/Makefile b/devel/rubygem-googleapis-common-protos/Makefile index db1b629e1a4f..c11070a47c60 100644 --- a/devel/rubygem-googleapis-common-protos/Makefile +++ b/devel/rubygem-googleapis-common-protos/Makefile @@ -1,21 +1,20 @@ PORTNAME= googleapis-common-protos PORTVERSION= 1.3.12 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Common gRPC and protocol buffer classes used in Google APIs WWW= https://github.com/googleapis/common-protos-ruby/tree/main/googleapis-common-protos LICENSE= APACHE20 RUN_DEPENDS= rubygem-google-protobuf>=3.14<4:devel/rubygem-google-protobuf \ rubygem-googleapis-common-protos-types>=1.2<2:devel/rubygem-googleapis-common-protos-types \ rubygem-grpc>=1.27<2:net/rubygem-grpc USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-graf/Makefile b/devel/rubygem-graf/Makefile index 1aa80d513eff..bbdd8d454693 100644 --- a/devel/rubygem-graf/Makefile +++ b/devel/rubygem-graf/Makefile @@ -1,18 +1,17 @@ PORTNAME= graf PORTVERSION= 0.0.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple git log analyzer gem WWW= https://github.com/abhshkdz/graf LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/graf .include diff --git a/devel/rubygem-grape-entity/Makefile b/devel/rubygem-grape-entity/Makefile index 6b2fc348ab6c..d2a93facecc3 100644 --- a/devel/rubygem-grape-entity/Makefile +++ b/devel/rubygem-grape-entity/Makefile @@ -1,22 +1,21 @@ PORTNAME= grape-entity PORTVERSION= 0.10.2 PORTEPOCH= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple facade to use with your models and APIs WWW= https://github.com/ruby-grape/grape-entity LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport61>=3.0.0:devel/rubygem-activesupport61 \ rubygem-multi_json>=1.3.2:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-grape-path-helpers/Makefile b/devel/rubygem-grape-path-helpers/Makefile index 55202333756f..e007798965ab 100644 --- a/devel/rubygem-grape-path-helpers/Makefile +++ b/devel/rubygem-grape-path-helpers/Makefile @@ -1,24 +1,23 @@ PORTNAME= grape-path-helpers PORTVERSION= 1.7.1 PORTREVISION= 0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Route path helpers for Grape WWW= https://gitlab.com/gitlab-org/grape-path-helpers LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activesupport61>=0:devel/rubygem-activesupport61 \ rubygem-grape>=1.3<2:devel/rubygem-grape \ rubygem-rake>=12:devel/rubygem-rake \ rubygem-ruby2_keywords>=0.0.2<0.1:devel/rubygem-ruby2_keywords USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-grape-route-helpers/Makefile b/devel/rubygem-grape-route-helpers/Makefile index 82e801894834..8dbfba457ada 100644 --- a/devel/rubygem-grape-route-helpers/Makefile +++ b/devel/rubygem-grape-route-helpers/Makefile @@ -1,22 +1,21 @@ PORTNAME= grape-route-helpers PORTVERSION= 2.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Route helpers for Grape WWW= https://github.com/reprah/grape-route-helpers LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activesupport4>=0:devel/rubygem-activesupport4 \ rubygem-grape>=0.16.0:devel/rubygem-grape \ rubygem-rake>=0:devel/rubygem-rake USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-grape-swagger-entity/Makefile b/devel/rubygem-grape-swagger-entity/Makefile index 13f6e4f0a6fb..2257e5c1bfec 100644 --- a/devel/rubygem-grape-swagger-entity/Makefile +++ b/devel/rubygem-grape-swagger-entity/Makefile @@ -1,21 +1,20 @@ PORTNAME= grape-swagger-entity PORTVERSION= 0.5.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Grape-entity object parsing WWW= https://github.com/ruby-grape/grape-swagger-entity LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-grape-entity>=0.6.0:devel/rubygem-grape-entity \ rubygem-grape-swagger>=1.2.0:devel/rubygem-grape-swagger USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-grape-swagger/Makefile b/devel/rubygem-grape-swagger/Makefile index f81be71d0ca3..66b796eb55d1 100644 --- a/devel/rubygem-grape-swagger/Makefile +++ b/devel/rubygem-grape-swagger/Makefile @@ -1,20 +1,19 @@ PORTNAME= grape-swagger PORTVERSION= 1.5.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Documentation tool for grape APIs WWW= https://github.com/ruby-grape/grape-swagger LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-grape>=1.3<2:devel/rubygem-grape USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-grape/Makefile b/devel/rubygem-grape/Makefile index 66157aa16c73..296d12139a18 100644 --- a/devel/rubygem-grape/Makefile +++ b/devel/rubygem-grape/Makefile @@ -1,28 +1,27 @@ PORTNAME= grape PORTVERSION= 1.6.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Framework for rapid API development with great conventions WWW= https://github.com/ruby-grape/grape LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport60>=0:devel/rubygem-activesupport60 \ rubygem-builder>=0:devel/rubygem-builder \ rubygem-dry-types>=1.1:devel/rubygem-dry-types \ rubygem-mustermann-grape>=1.0.0<1.1:devel/rubygem-mustermann-grape \ rubygem-rack>=1.3.0,3:www/rubygem-rack \ rubygem-rack-accept>=0:www/rubygem-rack-accept \ rubygem-virtus>=1.0.0:devel/rubygem-virtus USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= ruby-grape .include diff --git a/devel/rubygem-grape15/Makefile b/devel/rubygem-grape15/Makefile index da82002cd8a3..f5b311cb9fc7 100644 --- a/devel/rubygem-grape15/Makefile +++ b/devel/rubygem-grape15/Makefile @@ -1,31 +1,30 @@ PORTNAME= grape PORTVERSION= 1.5.3 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 15 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Framework for rapid API development with great conventions WWW= https://github.com/ruby-grape/grape LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport60>=0:devel/rubygem-activesupport60 \ rubygem-builder>=0:devel/rubygem-builder \ rubygem-dry-types>=1.1:devel/rubygem-dry-types \ rubygem-mustermann-grape>=1.0.0<1.1:devel/rubygem-mustermann-grape \ rubygem-rack>=1.3.0,3:www/rubygem-rack \ rubygem-rack-accept>=0:www/rubygem-rack-accept \ rubygem-virtus>=1.0.0:devel/rubygem-virtus USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= ruby-grape PORTSCOUT= limit:^1\.5\. .include diff --git a/devel/rubygem-grape_logging/Makefile b/devel/rubygem-grape_logging/Makefile index bfca53a3546b..0f150fc02751 100644 --- a/devel/rubygem-grape_logging/Makefile +++ b/devel/rubygem-grape_logging/Makefile @@ -1,21 +1,20 @@ PORTNAME= grape_logging PORTVERSION= 1.8.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Request logging for Grape WWW= https://github.com/aserafin/grape_logging LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-grape>=0:devel/rubygem-grape \ rubygem-rack>=0,3:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-graphiql-rails/Makefile b/devel/rubygem-graphiql-rails/Makefile index 49083cb916e0..56b71dca0397 100644 --- a/devel/rubygem-graphiql-rails/Makefile +++ b/devel/rubygem-graphiql-rails/Makefile @@ -1,20 +1,19 @@ PORTNAME= graphiql-rails PORTVERSION= 1.8.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Use the GraphiQL IDE for GraphQL with Ruby on Rails WWW= https://github.com/rmosolgo/graphiql-rails LICENSE= MIT RUN_DEPENDS= rubygem-railties61>=0:www/rubygem-railties61 \ rubygem-sprockets-rails-rails61>=0:devel/rubygem-sprockets-rails-rails61 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-graphlient/Makefile b/devel/rubygem-graphlient/Makefile index aca7317751d8..02b061f309c3 100644 --- a/devel/rubygem-graphlient/Makefile +++ b/devel/rubygem-graphlient/Makefile @@ -1,22 +1,21 @@ PORTNAME= graphlient PORTVERSION= 0.5.0 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Friendlier Ruby client for consuming GraphQL-based APIs WWW= https://github.com/ashkan18/graphlient LICENSE= MIT RUN_DEPENDS= rubygem-faraday1>=1.0:www/rubygem-faraday1 \ rubygem-faraday_middleware>=0:www/rubygem-faraday_middleware \ rubygem-graphql-client>=0:devel/rubygem-graphql-client USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-graphql-client/Makefile b/devel/rubygem-graphql-client/Makefile index 3ad52bcc0ed5..6aa61116864b 100644 --- a/devel/rubygem-graphql-client/Makefile +++ b/devel/rubygem-graphql-client/Makefile @@ -1,21 +1,20 @@ PORTNAME= graphql-client PORTVERSION= 0.16.0 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Ruby library for declaring, composing and executing GraphQL queries WWW= https://github.com/github/graphql-client LICENSE= MIT RUN_DEPENDS= rubygem-activesupport61>=3.0:devel/rubygem-activesupport61 \ rubygem-graphql>=1.8<2:devel/rubygem-graphql USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-graphql-docs/Makefile b/devel/rubygem-graphql-docs/Makefile index e49f22cf7a67..585f028a9bbf 100644 --- a/devel/rubygem-graphql-docs/Makefile +++ b/devel/rubygem-graphql-docs/Makefile @@ -1,26 +1,25 @@ PORTNAME= graphql-docs PORTVERSION= 2.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Generate beautiful documentation from your GraphQL schema WWW= https://github.com/gjtorikian/graphql-docs LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-commonmarker>=0.16<2.0:textproc/rubygem-commonmarker \ rubygem-escape_utils>=1.2<2.0:textproc/rubygem-escape_utils \ rubygem-extended-markdown-filter>=0.4<1.0:textproc/rubygem-extended-markdown-filter \ rubygem-gemoji>=3.0<4.0:textproc/rubygem-gemoji \ rubygem-graphql>=1.12<2.0:devel/rubygem-graphql \ rubygem-html-pipeline>=2.9<3.0:textproc/rubygem-html-pipeline \ rubygem-sass>=3.4<4.0:textproc/rubygem-sass USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-graphql/Makefile b/devel/rubygem-graphql/Makefile index 5cc3c7117659..8010661beb17 100644 --- a/devel/rubygem-graphql/Makefile +++ b/devel/rubygem-graphql/Makefile @@ -1,17 +1,16 @@ PORTNAME= graphql PORTVERSION= 1.13.13 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Plain-Ruby implementation of GraphQL WWW= https://github.com/rmosolgo/graphql-ruby LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-grpc-google-iam-v1/Makefile b/devel/rubygem-grpc-google-iam-v1/Makefile index b6ca2b9c40f4..afbaa6f69186 100644 --- a/devel/rubygem-grpc-google-iam-v1/Makefile +++ b/devel/rubygem-grpc-google-iam-v1/Makefile @@ -1,21 +1,20 @@ PORTNAME= grpc-google-iam-v1 PORTVERSION= 1.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Common protos and gRPC services for Google IAM WWW= https://github.com/googleapis/common-protos-ruby/tree/main/grpc-google-iam-v1 LICENSE= APACHE20 RUN_DEPENDS= rubygem-google-protobuf>=3.14<4:devel/rubygem-google-protobuf \ rubygem-googleapis-common-protos>=1.3.12<2.0:devel/rubygem-googleapis-common-protos \ rubygem-grpc>=1.27<2:net/rubygem-grpc USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-guess_html_encoding/Makefile b/devel/rubygem-guess_html_encoding/Makefile index 113e1c3c155b..cca90c1ce78b 100644 --- a/devel/rubygem-guess_html_encoding/Makefile +++ b/devel/rubygem-guess_html_encoding/Makefile @@ -1,17 +1,16 @@ PORTNAME= guess_html_encoding PORTVERSION= 0.0.11 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Attempts to guess and then force encoding of HTML documents WWW= https://github.com/cantino/guess_html_encoding LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-gyoku/Makefile b/devel/rubygem-gyoku/Makefile index 131bc4822d5e..e655bf79cb4d 100644 --- a/devel/rubygem-gyoku/Makefile +++ b/devel/rubygem-gyoku/Makefile @@ -1,21 +1,20 @@ PORTNAME= gyoku PORTVERSION= 1.3.1 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= joe@thrallingpenguin.com COMMENT= Library for translating Ruby hashes to XML WWW= https://github.com/savonrb/gyoku LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-builder>=2.1.2:devel/rubygem-builder NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-hamster/Makefile b/devel/rubygem-hamster/Makefile index aae376f8985f..96c074a7c251 100644 --- a/devel/rubygem-hamster/Makefile +++ b/devel/rubygem-hamster/Makefile @@ -1,20 +1,19 @@ PORTNAME= hamster PORTVERSION= 3.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Efficient, immutable, thread-safe collection classes for Ruby WWW= https://github.com/hamstergem/hamster LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-hana/Makefile b/devel/rubygem-hana/Makefile index 37e429aa54a5..6bc6cde0462c 100644 --- a/devel/rubygem-hana/Makefile +++ b/devel/rubygem-hana/Makefile @@ -1,17 +1,16 @@ PORTNAME= hana PORTVERSION= 1.3.7 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Ruby JSON-Patch and JSON-Pointer implementation WWW= https://github.com/tenderlove/hana LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-hashdiff/Makefile b/devel/rubygem-hashdiff/Makefile index 616363ab489e..805f412aaf52 100644 --- a/devel/rubygem-hashdiff/Makefile +++ b/devel/rubygem-hashdiff/Makefile @@ -1,18 +1,17 @@ PORTNAME= hashdiff PORTVERSION= 1.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Diff lib to compute the smallest difference between two hashes WWW= https://github.com/liufengyun/hashdiff LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-hashery/Makefile b/devel/rubygem-hashery/Makefile index a11ffd0c99cd..cf02cbaffd63 100644 --- a/devel/rubygem-hashery/Makefile +++ b/devel/rubygem-hashery/Makefile @@ -1,17 +1,16 @@ PORTNAME= hashery PORTVERSION= 2.1.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Tight collection of Hash-like classes WWW= https://rubyworks.github.io/hashery/ LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-hashie-forbidden_attributes/Makefile b/devel/rubygem-hashie-forbidden_attributes/Makefile index 3ee22ecc5e16..e537b866dc7d 100644 --- a/devel/rubygem-hashie-forbidden_attributes/Makefile +++ b/devel/rubygem-hashie-forbidden_attributes/Makefile @@ -1,20 +1,19 @@ PORTNAME= hashie-forbidden_attributes PORTVERSION= 0.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Hashie compatibility layer for forbidden attributes protection WWW= https://github.com/Maxim-Filimonov/hashie-forbidden_attributes LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-hashie>=3.0:devel/rubygem-hashie USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-hashie/Makefile b/devel/rubygem-hashie/Makefile index 18dba14f0173..01061de4657d 100644 --- a/devel/rubygem-hashie/Makefile +++ b/devel/rubygem-hashie/Makefile @@ -1,18 +1,17 @@ PORTNAME= hashie PORTVERSION= 5.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple collection of useful Hash extensions WWW= https://github.com/hashie/hashie LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-hashie4/Makefile b/devel/rubygem-hashie4/Makefile index 62680d51af23..57e03035ef5c 100644 --- a/devel/rubygem-hashie4/Makefile +++ b/devel/rubygem-hashie4/Makefile @@ -1,21 +1,20 @@ PORTNAME= hashie PORTVERSION= 4.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple collection of useful Hash extensions WWW= https://github.com/hashie/hashie LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^4\. .include diff --git a/devel/rubygem-health_check/Makefile b/devel/rubygem-health_check/Makefile index 5e020906f467..eddb52b7ebb0 100644 --- a/devel/rubygem-health_check/Makefile +++ b/devel/rubygem-health_check/Makefile @@ -1,23 +1,22 @@ PORTNAME= health_check PORTVERSION= 3.1.0 PORTREVISION= 3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple health check of Rails app for uptime monitoring WWW= https://github.com/ianheggie/health_check LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-railties61>=5.0:www/rubygem-railties61 USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= test/*railsapp .include diff --git a/devel/rubygem-heapy/Makefile b/devel/rubygem-heapy/Makefile index 28e76aba9583..af700f1715aa 100644 --- a/devel/rubygem-heapy/Makefile +++ b/devel/rubygem-heapy/Makefile @@ -1,19 +1,18 @@ PORTNAME= heapy PORTVERSION= 0.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= CLI for analyzing Ruby Heap dumps WWW= https://github.com/schneems/heapy LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/heapy .include diff --git a/devel/rubygem-highline/Makefile b/devel/rubygem-highline/Makefile index 83e360a90da6..d16a06b57cab 100644 --- a/devel/rubygem-highline/Makefile +++ b/devel/rubygem-highline/Makefile @@ -1,19 +1,18 @@ PORTNAME= highline PORTVERSION= 2.0.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= High-level IO library for command-line interfaces WWW= https://github.com/JEG2/highline LICENSE= GPLv2 RUBY LICENSE_COMB= dual LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-highline1/Makefile b/devel/rubygem-highline1/Makefile index 7cc062edadda..0ecadd3b7728 100644 --- a/devel/rubygem-highline1/Makefile +++ b/devel/rubygem-highline1/Makefile @@ -1,20 +1,19 @@ PORTNAME= highline PORTVERSION= 1.7.10 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= High-level IO library for command-line interfaces WWW= https://github.com/JEG2/highline LICENSE= GPLv2 RUBY LICENSE_COMB= dual LICENSE_FILE_GPLv2= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-hike/Makefile b/devel/rubygem-hike/Makefile index f460b40a4bd0..ebe705fc255e 100644 --- a/devel/rubygem-hike/Makefile +++ b/devel/rubygem-hike/Makefile @@ -1,19 +1,18 @@ PORTNAME= hike PORTVERSION= 2.1.3 PORTEPOCH= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby library for finding files in a set of paths WWW= https://github.com/sstephenson/hike LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-hike1/Makefile b/devel/rubygem-hike1/Makefile index 1ec219b58240..8dc0a4692bfe 100644 --- a/devel/rubygem-hike1/Makefile +++ b/devel/rubygem-hike1/Makefile @@ -1,21 +1,20 @@ PORTNAME= hike PORTVERSION= 1.2.3 PORTEPOCH= 1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby library for finding files in a set of paths WWW= https://github.com/sstephenson/hike LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE PORTSCOUT= limit:^1.* NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-hitimes/Makefile b/devel/rubygem-hitimes/Makefile index b83280bc7261..7b67bb08b48d 100644 --- a/devel/rubygem-hitimes/Makefile +++ b/devel/rubygem-hitimes/Makefile @@ -1,18 +1,17 @@ PORTNAME= hitimes PORTVERSION= 2.0.0 CATEGORIES= devel ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= High resolution timer library for Ruby WWW= https://github.com/copiousfreetime/hitimes LICENSE= ISCL LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-hocon/Makefile b/devel/rubygem-hocon/Makefile index 6e426ee05ab5..da32380f1f9c 100644 --- a/devel/rubygem-hocon/Makefile +++ b/devel/rubygem-hocon/Makefile @@ -1,20 +1,19 @@ PORTNAME= hocon PORTVERSION= 1.3.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= puppet@FreeBSD.org COMMENT= Ruby port of the Typesafe Config library WWW= https://github.com/puppetlabs/ruby-hocon LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/hocon .include diff --git a/devel/rubygem-hoe/Makefile b/devel/rubygem-hoe/Makefile index c8599eae621b..2609c87d3924 100644 --- a/devel/rubygem-hoe/Makefile +++ b/devel/rubygem-hoe/Makefile @@ -1,21 +1,20 @@ PORTNAME= hoe PORTVERSION= 3.26.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple rake/rubygems helper for project Rakefiles WWW= https://github.com/seattlerb/hoe LICENSE= MIT RUN_DEPENDS= rubygem-rake>=0.8<15.0:devel/rubygem-rake USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/sow .include diff --git a/devel/rubygem-holidays/Makefile b/devel/rubygem-holidays/Makefile index 6f437ce3da4e..3f2ec7718910 100644 --- a/devel/rubygem-holidays/Makefile +++ b/devel/rubygem-holidays/Makefile @@ -1,20 +1,19 @@ PORTNAME= holidays PORTVERSION= 8.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Collection of Ruby methods to deal with statutory and other holidays WWW= https://github.com/holidays/holidays LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= bin/setup .include diff --git a/devel/rubygem-http_accept_language/Makefile b/devel/rubygem-http_accept_language/Makefile index 5755f9bfce8b..f98ab30208f4 100644 --- a/devel/rubygem-http_accept_language/Makefile +++ b/devel/rubygem-http_accept_language/Makefile @@ -1,17 +1,16 @@ PORTNAME= http_accept_language PORTVERSION= 2.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Rails plugin to extract Accept-Language HTTP header into array WWW= https://github.com/iain/http_accept_language/ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-i18n-tasks-rails61/Makefile b/devel/rubygem-i18n-tasks-rails61/Makefile index 18dba656f7ae..c943b752064d 100644 --- a/devel/rubygem-i18n-tasks-rails61/Makefile +++ b/devel/rubygem-i18n-tasks-rails61/Makefile @@ -1,32 +1,31 @@ PORTNAME= i18n-tasks PORTVERSION= 1.0.12 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= bofh@FreeBSD.org COMMENT= i18n-tasks helps managing missing and unused translation WWW= https://github.com/glebm/i18n-tasks LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activesupport61>=4.0.2:devel/rubygem-activesupport61 \ rubygem-ast>=2.1.0:devel/rubygem-ast \ rubygem-better_html-rails61>=1.0<3.0:devel/rubygem-better_html-rails61 \ rubygem-erubi>0:www/rubygem-erubi \ rubygem-highline>=2.0.0:devel/rubygem-highline \ rubygem-i18n>0:devel/rubygem-i18n \ rubygem-parser>=2.2.3.0:devel/rubygem-parser \ rubygem-rails-i18n-rails61>0:devel/rubygem-rails-i18n-rails61 \ rubygem-rainbow>=2.2.2<4.0:devel/rubygem-rainbow \ rubygem-terminal-table>=1.5.1:textproc/rubygem-terminal-table USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/i18n-tasks .include diff --git a/devel/rubygem-i18n/Makefile b/devel/rubygem-i18n/Makefile index 312fb23eec94..b86cc362bd11 100644 --- a/devel/rubygem-i18n/Makefile +++ b/devel/rubygem-i18n/Makefile @@ -1,23 +1,22 @@ PORTNAME= i18n PORTVERSION= 1.12.0 PORTEPOCH= 2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= New wave Internationalization support for Ruby WWW= https://github.com/ruby-i18n/i18n LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= i18n_project .include diff --git a/devel/rubygem-i18n_data/Makefile b/devel/rubygem-i18n_data/Makefile index 2d2fc8602faf..f98f66aad559 100644 --- a/devel/rubygem-i18n_data/Makefile +++ b/devel/rubygem-i18n_data/Makefile @@ -1,17 +1,16 @@ PORTNAME= i18n_data PORTVERSION= 0.10.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Country/Language names in 2-letter code pairs WWW= https://github.com/grosser/i18n_data LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-icalendar/Makefile b/devel/rubygem-icalendar/Makefile index 141d028f5229..59bed89d6a29 100644 --- a/devel/rubygem-icalendar/Makefile +++ b/devel/rubygem-icalendar/Makefile @@ -1,20 +1,19 @@ PORTNAME= icalendar PORTVERSION= 2.8.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library for working with iCalendar files WWW= https://github.com/icalendar/icalendar LICENSE= BSD2CLAUSE GPLv3 LICENSE_COMB= dual RUN_DEPENDS= rubygem-ice_cube>=0.16<1:devel/rubygem-ice_cube USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-ice_cube/Makefile b/devel/rubygem-ice_cube/Makefile index 1178946b1dea..02937ef3025d 100644 --- a/devel/rubygem-ice_cube/Makefile +++ b/devel/rubygem-ice_cube/Makefile @@ -1,16 +1,15 @@ PORTNAME= ice_cube PORTVERSION= 0.16.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Recurring date library for Ruby WWW= https://github.com/seejohnrun/ice_cube LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-ice_nine/Makefile b/devel/rubygem-ice_nine/Makefile index b6c848f377ab..6c41ee812683 100644 --- a/devel/rubygem-ice_nine/Makefile +++ b/devel/rubygem-ice_nine/Makefile @@ -1,17 +1,16 @@ PORTNAME= ice_nine PORTVERSION= 0.11.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Deep freeze Ruby objects WWW= https://github.com/dkubb/ice_nine LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-inflecto/Makefile b/devel/rubygem-inflecto/Makefile index 6a2c1e9414c5..ea5909c87c1c 100644 --- a/devel/rubygem-inflecto/Makefile +++ b/devel/rubygem-inflecto/Makefile @@ -1,18 +1,17 @@ PORTNAME= inflecto PORTVERSION= 0.0.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Inflector for strings WWW= https://github.com/mbj/inflecto LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-iniparse/Makefile b/devel/rubygem-iniparse/Makefile index 76f563a32c20..f523954065c1 100644 --- a/devel/rubygem-iniparse/Makefile +++ b/devel/rubygem-iniparse/Makefile @@ -1,18 +1,17 @@ PORTNAME= iniparse PORTVERSION= 1.5.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Pure Ruby library for parsing INI documents WWW= https://github.com/antw/iniparse LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-insist/Makefile b/devel/rubygem-insist/Makefile index 65f692626436..486baa73d62c 100644 --- a/devel/rubygem-insist/Makefile +++ b/devel/rubygem-insist/Makefile @@ -1,16 +1,15 @@ PORTNAME= insist PORTVERSION= 1.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple block-driven assertion library LICENSE= APACHE20 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-inspec-core/Makefile b/devel/rubygem-inspec-core/Makefile index c1812b517b18..30aeb1914e6c 100644 --- a/devel/rubygem-inspec-core/Makefile +++ b/devel/rubygem-inspec-core/Makefile @@ -1,42 +1,41 @@ PORTNAME= inspec-core PORTVERSION= 4.56.20 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Framework to create end-to-end infrastructure tests WWW= https://github.com/inspec/inspec LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-addressable>=2.4<3:www/rubygem-addressable \ rubygem-chef-telemetry>=1.0.8<2:sysutils/rubygem-chef-telemetry \ rubygem-faraday14>=0.9.0<1.5:www/rubygem-faraday14 \ rubygem-faraday_middleware>=1.0<2:www/rubygem-faraday_middleware \ rubygem-hashie4>=3.4<5:devel/rubygem-hashie4 \ rubygem-license-acceptance>=0.2.13<3.0:sysutils/rubygem-license-acceptance \ rubygem-method_source>=0.8<2.0:devel/rubygem-method_source \ rubygem-mixlib-log>=3.0<4:devel/rubygem-mixlib-log \ rubygem-multipart-post>=2.0<3:www/rubygem-multipart-post \ rubygem-parallel>=1.9<2:sysutils/rubygem-parallel \ rubygem-parslet1>=1.5<2:textproc/rubygem-parslet1 \ rubygem-pry>=0.13<1:devel/rubygem-pry \ rubygem-rspec>=3.9<3.13:devel/rubygem-rspec \ rubygem-rspec-its>=1.2<2:devel/rubygem-rspec-its \ rubygem-rubyzip>=1.2.2<3:archivers/rubygem-rubyzip \ rubygem-semverse>=3.0<4:devel/rubygem-semverse \ rubygem-sslshake>=1.2<2:security/rubygem-sslshake \ rubygem-thor>=0.20<2.0:devel/rubygem-thor \ rubygem-tomlrb>=1.2<2.1:textproc/rubygem-tomlrb \ rubygem-train-core>=3.0<4:net/rubygem-train-core \ rubygem-tty-prompt>=0.17<1:devel/rubygem-tty-prompt \ rubygem-tty-table>=0.10<1:devel/rubygem-tty-table USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-instance_storage/Makefile b/devel/rubygem-instance_storage/Makefile index 733c2a5d06c1..8ca39b0448f5 100644 --- a/devel/rubygem-instance_storage/Makefile +++ b/devel/rubygem-instance_storage/Makefile @@ -1,17 +1,16 @@ PORTNAME= instance_storage PORTVERSION= 1.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= tota@FreeBSD.org COMMENT= Manage class instances with dictionary WWW= https://github.com/toshia/instance_storage LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-interact/Makefile b/devel/rubygem-interact/Makefile index 84b30f63269f..b5b1b2e20021 100644 --- a/devel/rubygem-interact/Makefile +++ b/devel/rubygem-interact/Makefile @@ -1,17 +1,16 @@ PORTNAME= interact PORTVERSION= 0.5.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple API for command-line interaction WWW= https://github.com/vito/interact LICENSE= BSD3CLAUSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-io-console/Makefile b/devel/rubygem-io-console/Makefile index 686afb1c0715..93c4509b6e54 100644 --- a/devel/rubygem-io-console/Makefile +++ b/devel/rubygem-io-console/Makefile @@ -1,17 +1,16 @@ PORTNAME= io-console DISTVERSION= 0.5.11 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= yasu@FreeBSD.org COMMENT= Add console capabilities to IO instances WWW= https://github.com/ruby/io-console LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-io-event/Makefile b/devel/rubygem-io-event/Makefile index 476400effbc1..71b9817d6651 100644 --- a/devel/rubygem-io-event/Makefile +++ b/devel/rubygem-io-event/Makefile @@ -1,17 +1,16 @@ PORTNAME= io-event PORTVERSION= 1.1.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Event loop WWW= https://github.com/socketry/io-event LICENSE= MIT BROKEN_RUBY27= yes USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-io-like/Makefile b/devel/rubygem-io-like/Makefile index 81a82f337b01..0052be00d283 100644 --- a/devel/rubygem-io-like/Makefile +++ b/devel/rubygem-io-like/Makefile @@ -1,90 +1,90 @@ PORTNAME= io-like PORTVERSION= 0.3.0.20130301 CATEGORIES= devel rubygems MASTER_SITES= LOCAL/tota/${PORTNAME} PKGNAMEPREFIX= rubygem- MAINTAINER= tota@FreeBSD.org COMMENT= Interface of IO objects to classes providing a few simple methods WWW= https://rubygems.org/gems/io-like LICENSE= RUBY LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${RUBYGEMBIN}:devel/ruby-gems \ ${LOCALBASE}/bin/rake:devel/rubygem-rake RUN_DEPENDS= ${RUBYGEMBIN}:devel/ruby-gems -USE_RUBY= yes +USES= ruby NO_ARCH= yes GEMS_BASE_DIR= lib/ruby/gems/${RUBY_VER} GEMS_DIR= ${GEMS_BASE_DIR}/gems DOC_DIR= ${GEMS_BASE_DIR}/doc CACHE_DIR= ${GEMS_BASE_DIR}/cache SPEC_DIR= ${GEMS_BASE_DIR}/specifications GEM_NAME= ${DISTNAME:R} GEM_LIB_DIR= ${GEMS_DIR}/${GEM_NAME} GEM_DOC_DIR= ${DOC_DIR}/${GEM_NAME} GEM_SPEC= ${SPEC_DIR}/${GEM_NAME}.gemspec GEM_CACHE= ${CACHE_DIR}/${GEM_NAME}.gem PLIST_SUB+= PORTVERSION="${PORTVERSION}" \ REV="${RUBY_GEM}" \ GEMS_BASE_DIR="lib/ruby/gems/${RUBY_VER}" \ GEMS_DIR="${GEMS_DIR}" \ DOC_DIR="${DOC_DIR}" \ CACHE_DIR="${CACHE_DIR}" \ SPEC_DIR="${SPEC_DIR}" \ PORT="${PORTNAME}-${PORTVERSION}" \ GEM_NAME="${GEM_NAME}" \ GEM_LIB_DIR="${GEM_LIB_DIR}" \ GEM_DOC_DIR="${GEM_DOC_DIR}" \ GEM_SPEC="${GEM_SPEC}" \ GEM_CACHE="${GEM_CACHE}" \ EXTRACT_SUFX=".gem" RUBYGEMBIN= ${LOCALBASE}/bin/gem RAKE_BIN= ${LOCALBASE}/bin/rake GEMFILES= ${GEM_NAME}.gem RUBYGEM_ARGS= -l --no-update-sources --install-dir ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER} --ignore-dependencies --bindir=${STAGEDIR}${PREFIX}/bin WRKSRC= ${WRKDIR}/${PORTNAME}-ruby-1.9-temp OPTIONS_DEFINE= DOCS DOCS_BUILD_DEPENDS= rubygem-allison>=0:devel/rubygem-allison DOCS_VARS= RUBYGEM_ARGS+="--document rdoc,ri" DOCS_VARS_OFF= RUBYGEM_ARGS+=--no-document post-patch: .for l in 1.8.6 1.8.7 1.9.2 1.9.3 @${ECHO} lib/io/like-${l}.rb >> ${WRKSRC}/MANIFEST .endfor .for f in likestringio.rb rot13filter.rb @${RUBY} -i -pe "sub %r|((\s*)require 'io/like')|, %Q|\\\2require 'rubygems'\n\\\1|" ${WRKSRC}/examples/${f} .endfor do-build: @cd ${BUILD_WRKSRC} && ${RAKE_BIN} do-install: @(cd ${INSTALL_WRKSRC}; ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} install ${RUBYGEM_ARGS} pkg/${GEMFILES} -- ${CONFIGURE_ARGS}) @${RM} -r ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR}/build_info @${RMDIR} ${STAGEDIR}/${PREFIX}/${GEMS_BASE_DIR}/extensions post-install: @${ECHO} ${GEM_CACHE} >> ${TMPPLIST} @${ECHO} ${GEM_SPEC} >> ${TMPPLIST} @${FIND} -ds ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR} -type f -print | ${SED} -E -e \ 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} @${ECHO} "@dir ${DOC_DIR}" >> ${TMPPLIST} post-install-DOCS-on: @${FIND} -ds ${STAGEDIR}${PREFIX}/${GEM_DOC_DIR} -type f -print | ${SED} -E -e \ 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} .include diff --git a/devel/rubygem-io-nonblock/Makefile b/devel/rubygem-io-nonblock/Makefile index 25d0a96a477c..b0700195f3a4 100644 --- a/devel/rubygem-io-nonblock/Makefile +++ b/devel/rubygem-io-nonblock/Makefile @@ -1,19 +1,18 @@ PORTNAME= io-nonblock PORTVERSION= 0.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Enable non-blocking mode with IO class WWW= https://github.com/ruby/io-nonblock LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_RUBY= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-io-wait/Makefile b/devel/rubygem-io-wait/Makefile index 764583fe9b37..6103c0489477 100644 --- a/devel/rubygem-io-wait/Makefile +++ b/devel/rubygem-io-wait/Makefile @@ -1,17 +1,16 @@ PORTNAME= io-wait PORTVERSION= 0.2.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Wait until IO is readable or writable without blocking WWW= https://github.com/ruby/io-wait LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_RUBY= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-io-wait01/Makefile b/devel/rubygem-io-wait01/Makefile index 7d7b28d02b7a..c0de8e35ddde 100644 --- a/devel/rubygem-io-wait01/Makefile +++ b/devel/rubygem-io-wait01/Makefile @@ -1,22 +1,21 @@ PORTNAME= io-wait PORTVERSION= 0.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 01 MAINTAINER= mfechner@FreeBSD.org COMMENT= Wait until IO is readable or writable without blocking WWW= https://github.com/ruby/io-wait LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_RUBY= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^0\.1\. .include diff --git a/devel/rubygem-iobuffer/Makefile b/devel/rubygem-iobuffer/Makefile index a25be475e4bf..bb47c91052d8 100644 --- a/devel/rubygem-iobuffer/Makefile +++ b/devel/rubygem-iobuffer/Makefile @@ -1,13 +1,12 @@ PORTNAME= iobuffer PORTVERSION= 1.1.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ports@FreeBSD.org COMMENT= Gems for iobuffer WWW= https://github.com/tarcieri/iobuffer -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-iostruct/Makefile b/devel/rubygem-iostruct/Makefile index 63be68b4ce76..1f1b2fead8a0 100644 --- a/devel/rubygem-iostruct/Makefile +++ b/devel/rubygem-iostruct/Makefile @@ -1,18 +1,17 @@ PORTNAME= iostruct PORTVERSION= 0.0.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Struct that can read/write itself from/to IO-like objects WWW= https://github.com/zed-0xff/iostruct LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-ipynbdiff/Makefile b/devel/rubygem-ipynbdiff/Makefile index 2ddbd100b5c5..74cd4940068d 100644 --- a/devel/rubygem-ipynbdiff/Makefile +++ b/devel/rubygem-ipynbdiff/Makefile @@ -1,20 +1,19 @@ PORTNAME= ipynbdiff PORTVERSION= 0.4.7 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Human readable Jupyter Notebook diffs WWW= https://gitlab.com/gitlab-org/incubation-engineering/mlops/rb-ipynbdiff LICENSE= MIT RUN_DEPENDS= rubygem-diffy>=3.3<4:textproc/rubygem-diffy \ rubygem-json>=2.5.1<3:devel/rubygem-json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-irb/Makefile b/devel/rubygem-irb/Makefile index 204df867e51d..bdb6e062562f 100644 --- a/devel/rubygem-irb/Makefile +++ b/devel/rubygem-irb/Makefile @@ -1,27 +1,26 @@ PORTNAME= irb PORTVERSION= 1.6.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Interactive Ruby WWW= https://github.com/ruby/irb LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-reline>=0.3.0:devel/rubygem-reline USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/irb \ share/man/man1/irb.1.gz post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/share/man/man1 ${INSTALL_DATA} ${WRKSRC}/man/irb.1 ${STAGEDIR}${PREFIX}/share/man/man1 .include diff --git a/devel/rubygem-iso8601/Makefile b/devel/rubygem-iso8601/Makefile index cccdee1db743..fb99447f4251 100644 --- a/devel/rubygem-iso8601/Makefile +++ b/devel/rubygem-iso8601/Makefile @@ -1,18 +1,17 @@ PORTNAME= iso8601 PORTVERSION= 0.13.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple implementation of the ISO 8601 standard WWW= https://github.com/arnau/ISO8601 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-jaeger-client/Makefile b/devel/rubygem-jaeger-client/Makefile index 6f5fa37d41fc..d687acc95408 100644 --- a/devel/rubygem-jaeger-client/Makefile +++ b/devel/rubygem-jaeger-client/Makefile @@ -1,21 +1,20 @@ PORTNAME= jaeger-client PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= OpenTracing Tracer implementation for Jaeger in Ruby WWW= https://github.com/salemove/jaeger-client-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-opentracing>=0.3:devel/rubygem-opentracing \ rubygem-thrift>=0:devel/rubygem-thrift USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-jammit/Makefile b/devel/rubygem-jammit/Makefile index ac3d006812e7..f53e8ffa9609 100644 --- a/devel/rubygem-jammit/Makefile +++ b/devel/rubygem-jammit/Makefile @@ -1,22 +1,21 @@ PORTNAME= jammit PORTVERSION= 0.7.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Industrial strength asset packaging library for Rails WWW= https://documentcloud.github.io/jammit/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-cssmin>=1.0:textproc/rubygem-cssmin \ rubygem-jsmin>=1.0:textproc/rubygem-jsmin NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/jammit .include diff --git a/devel/rubygem-jaro_winkler/Makefile b/devel/rubygem-jaro_winkler/Makefile index c469ea37842d..84205ba3bd97 100644 --- a/devel/rubygem-jaro_winkler/Makefile +++ b/devel/rubygem-jaro_winkler/Makefile @@ -1,15 +1,14 @@ PORTNAME= jaro_winkler PORTVERSION= 1.5.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Jaro-Winkler distance algorithm implementation WWW= https://github.com/tonytonyjan/jaro_winkler LICENSE= MIT USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-jasmine-core/Makefile b/devel/rubygem-jasmine-core/Makefile index 596a395ed5a0..17144a3363f9 100644 --- a/devel/rubygem-jasmine-core/Makefile +++ b/devel/rubygem-jasmine-core/Makefile @@ -1,17 +1,16 @@ PORTNAME= jasmine-core PORTVERSION= 3.99.0 CATEGORIES= devel ruby MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Test JavaScript without any framework dependencies WWW= https://jasmine.github.io/ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-jbuilder-rails5/Makefile b/devel/rubygem-jbuilder-rails5/Makefile index cdcc8f68e192..ec55c7784c3d 100644 --- a/devel/rubygem-jbuilder-rails5/Makefile +++ b/devel/rubygem-jbuilder-rails5/Makefile @@ -1,22 +1,21 @@ PORTNAME= jbuilder PORTVERSION= 2.11.5 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Create JSON structures via a Builder-style DSL WWW= https://github.com/rails/jbuilder LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionview5>=5.0.0:devel/rubygem-actionview5 \ rubygem-activesupport5>=5.0.0:devel/rubygem-activesupport5 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-jbuilder-rails50/Makefile b/devel/rubygem-jbuilder-rails50/Makefile index 357a38e5e365..c6cab727a7ed 100644 --- a/devel/rubygem-jbuilder-rails50/Makefile +++ b/devel/rubygem-jbuilder-rails50/Makefile @@ -1,22 +1,21 @@ PORTNAME= jbuilder PORTVERSION= 2.11.5 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Create JSON structures via a Builder-style DSL WWW= https://github.com/rails/jbuilder LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionview50>=5.0.0:devel/rubygem-actionview50 \ rubygem-activesupport50>=5.0.0:devel/rubygem-activesupport50 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-jbuilder-rails52/Makefile b/devel/rubygem-jbuilder-rails52/Makefile index d31683c4c743..d6f34bdb676d 100644 --- a/devel/rubygem-jbuilder-rails52/Makefile +++ b/devel/rubygem-jbuilder-rails52/Makefile @@ -1,22 +1,21 @@ PORTNAME= jbuilder PORTVERSION= 2.11.5 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Create JSON structures via a Builder-style DSL WWW= https://github.com/rails/jbuilder LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionview52>=5.0.0:devel/rubygem-actionview52 \ rubygem-activesupport52>=5.0.0:devel/rubygem-activesupport52 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-jbuilder-rails60/Makefile b/devel/rubygem-jbuilder-rails60/Makefile index d7852e1f74ae..0e3baddca3c8 100644 --- a/devel/rubygem-jbuilder-rails60/Makefile +++ b/devel/rubygem-jbuilder-rails60/Makefile @@ -1,22 +1,21 @@ PORTNAME= jbuilder PORTVERSION= 2.11.5 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Create JSON structures via a Builder-style DSL WWW= https://github.com/rails/jbuilder LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionview60>=5.0.0:devel/rubygem-actionview60 \ rubygem-activesupport60>=5.0.0:devel/rubygem-activesupport60 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-jbuilder-rails61/Makefile b/devel/rubygem-jbuilder-rails61/Makefile index 66351ae1b2d6..211e800e31e6 100644 --- a/devel/rubygem-jbuilder-rails61/Makefile +++ b/devel/rubygem-jbuilder-rails61/Makefile @@ -1,22 +1,21 @@ PORTNAME= jbuilder PORTVERSION= 2.11.5 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Create JSON structures via a Builder-style DSL WWW= https://github.com/rails/jbuilder LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionview61>=5.0.0:devel/rubygem-actionview61 \ rubygem-activesupport61>=5.0.0:devel/rubygem-activesupport61 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-jbuilder/Makefile b/devel/rubygem-jbuilder/Makefile index 11bda3a4f383..b9295aef73c0 100644 --- a/devel/rubygem-jbuilder/Makefile +++ b/devel/rubygem-jbuilder/Makefile @@ -1,23 +1,22 @@ PORTNAME= jbuilder PORTVERSION= 2.9.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Create JSON structures via a Builder-style DSL WWW= https://github.com/rails/jbuilder LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS?= rubygem-activesupport4>=4.2.0:devel/rubygem-activesupport4 USES= gem -USE_RUBY= yes NO_ARCH= yes # jbuilder 2.10.0+ requires Rails 5.0+ PORTSCOUT= limit:^2\.9\. .include diff --git a/devel/rubygem-jekyll-coffeescript/Makefile b/devel/rubygem-jekyll-coffeescript/Makefile index 06ceab996f55..2eacb12c7e59 100644 --- a/devel/rubygem-jekyll-coffeescript/Makefile +++ b/devel/rubygem-jekyll-coffeescript/Makefile @@ -1,20 +1,19 @@ PORTNAME= jekyll-coffeescript PORTVERSION= 2.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= CoffeeScript converter for Jekyll WWW= https://github.com/jekyll/jekyll-coffeescript LICENSE= MIT RUN_DEPENDS= rubygem-coffee-script>=2.2<3:devel/rubygem-coffee-script \ rubygem-coffee-script-source>=1.12<2:devel/rubygem-coffee-script-source USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-jenkins_api_client/Makefile b/devel/rubygem-jenkins_api_client/Makefile index ce5d498d047b..ab8675caeffb 100644 --- a/devel/rubygem-jenkins_api_client/Makefile +++ b/devel/rubygem-jenkins_api_client/Makefile @@ -1,26 +1,25 @@ PORTNAME= jenkins_api_client PORTVERSION= 1.5.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Jenkins JSON API Client WWW= https://github.com/arangamani/jenkins_api_client LICENSE= MIT RUN_DEPENDS= rubygem-json>=1.0:devel/rubygem-json \ rubygem-mixlib-shellout>=1.1.0:devel/rubygem-mixlib-shellout \ rubygem-nokogiri>=1.6<2:textproc/rubygem-nokogiri \ rubygem-socksify>=1.7.0:www/rubygem-socksify \ rubygem-terminal-table>=1.4.0:textproc/rubygem-terminal-table \ rubygem-thor>=0.16.0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/jenkinscli .include diff --git a/devel/rubygem-jeweler/Makefile b/devel/rubygem-jeweler/Makefile index 2af177a0a448..41636360ec35 100644 --- a/devel/rubygem-jeweler/Makefile +++ b/devel/rubygem-jeweler/Makefile @@ -1,31 +1,30 @@ PORTNAME= jeweler PORTVERSION= 2.3.9 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= douglas@douglasthrift.net COMMENT= Simple and opinionated helper for creating Rubygem projects WWW= https://github.com/technicalpickles/jeweler LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-builder>=0:devel/rubygem-builder \ rubygem-bundler>=0:sysutils/rubygem-bundler \ rubygem-git>=1.2.5:devel/rubygem-git \ rubygem-github_api>=0.16.0<1:devel/rubygem-github_api \ rubygem-highline>=1.6.15:devel/rubygem-highline \ rubygem-nokogiri>=1.5.10:textproc/rubygem-nokogiri \ rubygem-psych>=0:textproc/rubygem-psych \ rubygem-rake>=0:devel/rubygem-rake \ rubygem-rdoc>=0:devel/rubygem-rdoc \ rubygem-semver2>=0:devel/rubygem-semver2 USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/jeweler .include diff --git a/devel/rubygem-jira-ruby/Makefile b/devel/rubygem-jira-ruby/Makefile index a708f0517a5c..0fa41955ac5d 100644 --- a/devel/rubygem-jira-ruby/Makefile +++ b/devel/rubygem-jira-ruby/Makefile @@ -1,23 +1,22 @@ PORTNAME= jira-ruby PORTVERSION= 2.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= API for JIRA WWW= https://github.com/sumoheavy/jira-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport60>=0:devel/rubygem-activesupport60 \ rubygem-atlassian-jwt>=0:www/rubygem-atlassian-jwt \ rubygem-multipart-post>=0:www/rubygem-multipart-post \ rubygem-oauth>=0.5.0<1:net/rubygem-oauth USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-jira-ruby21/Makefile b/devel/rubygem-jira-ruby21/Makefile index 45cd126ff6c6..545c6a306397 100644 --- a/devel/rubygem-jira-ruby21/Makefile +++ b/devel/rubygem-jira-ruby21/Makefile @@ -1,26 +1,25 @@ PORTNAME= jira-ruby PORTVERSION= 2.1.5 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 21 MAINTAINER= sunpoet@FreeBSD.org COMMENT= API for JIRA WWW= https://github.com/sumoheavy/jira-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport60>=0:devel/rubygem-activesupport60 \ rubygem-atlassian-jwt>=0:www/rubygem-atlassian-jwt \ rubygem-multipart-post>=0:www/rubygem-multipart-post \ rubygem-oauth>=0.5.0<1:net/rubygem-oauth USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^2\.1\. .include diff --git a/devel/rubygem-jmespath/Makefile b/devel/rubygem-jmespath/Makefile index 4db2ed515f72..29b28e03fd64 100644 --- a/devel/rubygem-jmespath/Makefile +++ b/devel/rubygem-jmespath/Makefile @@ -1,20 +1,19 @@ PORTNAME= jmespath PORTVERSION= 1.6.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Implement JMESPath for Ruby WWW= https://github.com/jmespath/jmespath.rb LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= jmespath_project .include diff --git a/devel/rubygem-jquery-ui-themes/Makefile b/devel/rubygem-jquery-ui-themes/Makefile index 4c62b81ab101..566cb6849ffe 100644 --- a/devel/rubygem-jquery-ui-themes/Makefile +++ b/devel/rubygem-jquery-ui-themes/Makefile @@ -1,19 +1,18 @@ PORTNAME= jquery-ui-themes PORTVERSION= 0.0.12 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Allows inclusion of pre-built jquery themes without editing WWW= https://github.com/fatdude/jquery-ui-themes-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-httparty>=0:www/rubygem-httparty NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-jruby-jars/Makefile b/devel/rubygem-jruby-jars/Makefile index 970232e43012..57ec9cb3f432 100644 --- a/devel/rubygem-jruby-jars/Makefile +++ b/devel/rubygem-jruby-jars/Makefile @@ -1,24 +1,23 @@ PORTNAME= jruby-jars PORTVERSION= 9.2.21.0 CATEGORIES= devel rubygems java MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= JAR files from the JRuby distribution WWW= https://github.com/jruby/jruby/tree/master/maven/jruby-jars LICENSE= EPL GPLv2 LGPL21 LICENSE_COMB= dual BUILD_DEPENDS= jgem:lang/jruby RUN_DEPENDS= jruby:lang/jruby USES= gem USE_JAVA= yes -USE_RUBY= yes RUBYGEMBIN= ${LOCALBASE}/bin/jgem NO_ARCH= yes .include diff --git a/devel/rubygem-json-canonicalization/Makefile b/devel/rubygem-json-canonicalization/Makefile index 32882f1fe9e4..317f174ddb05 100644 --- a/devel/rubygem-json-canonicalization/Makefile +++ b/devel/rubygem-json-canonicalization/Makefile @@ -1,18 +1,17 @@ PORTNAME= json-canonicalization PORTVERSION= 0.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Generates canonical JSON output from Ruby objects WWW= https://github.com/dryruby/json-canonicalization LICENSE= UNLICENSE LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-json-schema/Makefile b/devel/rubygem-json-schema/Makefile index 94bec34aa4a5..d5133e2d249a 100644 --- a/devel/rubygem-json-schema/Makefile +++ b/devel/rubygem-json-schema/Makefile @@ -1,20 +1,19 @@ PORTNAME= json-schema PORTVERSION= 3.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby JSON schema validator WWW= https://github.com/ruby-json-schema/json-schema LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-addressable>=2.8:www/rubygem-addressable USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-json/Makefile b/devel/rubygem-json/Makefile index a12242155ba1..6a6275a7f9ed 100644 --- a/devel/rubygem-json/Makefile +++ b/devel/rubygem-json/Makefile @@ -1,16 +1,15 @@ PORTNAME= json PORTVERSION= 2.6.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Parse JSON texts and generate them from ruby data structures WWW= https://flori.github.io/json/ LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-json1/Makefile b/devel/rubygem-json1/Makefile index 50c003301185..bb14f0cc59a6 100644 --- a/devel/rubygem-json1/Makefile +++ b/devel/rubygem-json1/Makefile @@ -1,19 +1,18 @@ PORTNAME= json PORTVERSION= 1.8.6 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= ruby@FreeBSD.org COMMENT= Parse JSON texts and generate them from ruby data structures WWW= https://flori.github.io/json/ LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual -USE_RUBY= yes USES= gem PORTSCOUT= limit:^1\. .include diff --git a/devel/rubygem-json_pure/Makefile b/devel/rubygem-json_pure/Makefile index d784a2df7392..5bad7ebe39e0 100644 --- a/devel/rubygem-json_pure/Makefile +++ b/devel/rubygem-json_pure/Makefile @@ -1,19 +1,18 @@ PORTNAME= json_pure PORTVERSION= 2.6.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Parse JSON texts and generate them from ruby data structures in Ruby WWW= https://flori.github.io/json/ LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-json_pure1/Makefile b/devel/rubygem-json_pure1/Makefile index 760a0e7bff9a..98d6b377bd46 100644 --- a/devel/rubygem-json_pure1/Makefile +++ b/devel/rubygem-json_pure1/Makefile @@ -1,19 +1,18 @@ PORTNAME= json_pure PORTVERSION= 1.8.6 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Parse JSON texts and generate them from ruby data structures in Ruby WWW= https://flori.github.io/json/ LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-json_schema/Makefile b/devel/rubygem-json_schema/Makefile index 77ebbd62f868..bbb85cd41ff8 100644 --- a/devel/rubygem-json_schema/Makefile +++ b/devel/rubygem-json_schema/Makefile @@ -1,20 +1,19 @@ PORTNAME= json_schema PORTVERSION= 0.21.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= JSON Schema V4 and Hyperschema V4 parser and validator WWW= https://github.com/brandur/json_schema LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/validate-schema .include diff --git a/devel/rubygem-json_schemer/Makefile b/devel/rubygem-json_schemer/Makefile index 6fa33bb60b7b..cd0dbdd0ee41 100644 --- a/devel/rubygem-json_schemer/Makefile +++ b/devel/rubygem-json_schemer/Makefile @@ -1,23 +1,22 @@ PORTNAME= json_schemer PORTVERSION= 0.2.20 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Ruby JSON schema validator WWW= https://github.com/ruby-json-schema/json-schema LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ecma-re-validator>=0.3<1:devel/rubygem-ecma-re-validator \ rubygem-hana>=1.3<2:devel/rubygem-hana \ rubygem-regexp_parser>=2.0<3:textproc/rubygem-regexp_parser \ rubygem-uri_template>=0.7<1:net/rubygem-uri_template USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-jsonapi-renderer/Makefile b/devel/rubygem-jsonapi-renderer/Makefile index f363b8c59bb6..4fd9dd35cf68 100644 --- a/devel/rubygem-jsonapi-renderer/Makefile +++ b/devel/rubygem-jsonapi-renderer/Makefile @@ -1,17 +1,16 @@ PORTNAME= jsonapi-renderer PORTVERSION= 0.2.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Render JSONAPI documents WWW= https://github.com/jsonapi-rb/jsonapi-renderer LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-jsonpath/Makefile b/devel/rubygem-jsonpath/Makefile index c8476a962001..709c5fb490f8 100644 --- a/devel/rubygem-jsonpath/Makefile +++ b/devel/rubygem-jsonpath/Makefile @@ -1,22 +1,21 @@ PORTNAME= jsonpath PORTVERSION= 1.1.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Way of addressing elements within a JSON object WWW= https://github.com/joshbuddy/jsonpath LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-multi_json>=0:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/jsonpath .include diff --git a/devel/rubygem-kafo/Makefile b/devel/rubygem-kafo/Makefile index 3d22980aaced..a295cfbdfe63 100644 --- a/devel/rubygem-kafo/Makefile +++ b/devel/rubygem-kafo/Makefile @@ -1,31 +1,30 @@ PORTNAME= kafo PORTVERSION= 6.5.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby framework to create installers WWW= https://github.com/theforeman/kafo LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= gsed:textproc/gsed \ rubygem-ansi>=0:devel/rubygem-ansi \ rubygem-clamp>=0.6.2:devel/rubygem-clamp \ rubygem-highline1>=1.6.21<3.0:devel/rubygem-highline1 \ rubygem-kafo_parsers>=0.1.6:devel/rubygem-kafo_parsers \ rubygem-kafo_wizards>=0:devel/rubygem-kafo_wizards \ rubygem-logging>=0<3.0.0:devel/rubygem-logging \ rubygem-powerbar>=0:devel/rubygem-powerbar USES= cpe gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/kafo-configure bin/kafo-export-params bin/kafofy CPE_VENDOR= theforeman .include diff --git a/devel/rubygem-kafo_parsers/Makefile b/devel/rubygem-kafo_parsers/Makefile index f658055a0513..4a86019dd634 100644 --- a/devel/rubygem-kafo_parsers/Makefile +++ b/devel/rubygem-kafo_parsers/Makefile @@ -1,20 +1,19 @@ PORTNAME= kafo_parsers PORTVERSION= 1.2.1 CATEGORIES= devel ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Parser for puppet modules WWW= https://github.com/theforeman/kafo_parsers LICENSE= GPLv3 RUN_DEPENDS= rubygem-json>=0:devel/rubygem-json \ rubygem-rdoc>=3.9.0:devel/rubygem-rdoc USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-kafo_wizards/Makefile b/devel/rubygem-kafo_wizards/Makefile index c7a3b709d8f9..08ef1aa1abd7 100644 --- a/devel/rubygem-kafo_wizards/Makefile +++ b/devel/rubygem-kafo_wizards/Makefile @@ -1,19 +1,18 @@ PORTNAME= kafo_wizards PORTVERSION= 0.0.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Create wizard like interfaces in terminal applications WWW= https://github.com/theforeman/kafo_wizards LICENSE= GPLv3+ RUN_DEPENDS= rubygem-highline>=0<3:devel/rubygem-highline USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-kgio/Makefile b/devel/rubygem-kgio/Makefile index 29f1557dbf33..d05744b05619 100644 --- a/devel/rubygem-kgio/Makefile +++ b/devel/rubygem-kgio/Makefile @@ -1,15 +1,14 @@ PORTNAME= kgio PORTVERSION= 2.11.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provides non-blocking I/O methods WWW= https://yhbt.net/kgio/ LICENSE= LGPL21+ USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-kt-paperclip-rails61/Makefile b/devel/rubygem-kt-paperclip-rails61/Makefile index 74bb6b8ba59d..ee79d8c745b5 100644 --- a/devel/rubygem-kt-paperclip-rails61/Makefile +++ b/devel/rubygem-kt-paperclip-rails61/Makefile @@ -1,26 +1,25 @@ PORTNAME= kt-paperclip PORTVERSION= 7.1.1 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= bofh@FreeBSD.org COMMENT= Easy upload management for ActiveRecord WWW= https://github.com/kreeti/kt-paperclipp LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activemodel61>0:databases/rubygem-activemodel61 \ rubygem-activesupport61>=0:devel/rubygem-activesupport61 \ rubygem-marcel>0:devel/rubygem-marcel \ rubygem-mime-types>=0:misc/rubygem-mime-types \ rubygem-terrapin>=0.6.0:devel/rubygem-terrapin NO_ARCH= yes -USE_RUBY= yes USES= cpe gem magick:7,run CPE_VENDOR= thoughtbot .include diff --git a/devel/rubygem-launchy/Makefile b/devel/rubygem-launchy/Makefile index 085c53297b60..7758627e54e8 100644 --- a/devel/rubygem-launchy/Makefile +++ b/devel/rubygem-launchy/Makefile @@ -1,22 +1,21 @@ PORTNAME= launchy PORTVERSION= 2.5.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Helper class for launching cross-platform applications WWW= https://github.com/copiousfreetime/launchy LICENSE= ISCL LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-addressable>=2.7<3:www/rubygem-addressable USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/launchy .include diff --git a/devel/rubygem-lazy_priority_queue/Makefile b/devel/rubygem-lazy_priority_queue/Makefile index 7ca30c3b8e7f..59a06240ae6e 100644 --- a/devel/rubygem-lazy_priority_queue/Makefile +++ b/devel/rubygem-lazy_priority_queue/Makefile @@ -1,17 +1,16 @@ PORTNAME= lazy_priority_queue PORTVERSION= 0.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Priority queue implemented using a lazy binomial heap WWW= https://github.com/matiasbattocchia/lazy_priority_queue LICENSE= BSD2CLAUSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-libdatadog/Makefile b/devel/rubygem-libdatadog/Makefile index ef1fb03d7b81..dfea7f91dee9 100644 --- a/devel/rubygem-libdatadog/Makefile +++ b/devel/rubygem-libdatadog/Makefile @@ -1,15 +1,14 @@ PORTNAME= libdatadog PORTVERSION= 0.9.0.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rust-based utility library for Datadog ddtrace gem WWW= https://github.com/DataDog/libdatadog/tree/main/ruby LICENSE= APACHE20 USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-libddprof/Makefile b/devel/rubygem-libddprof/Makefile index fc0bcbdf90ab..b904fbfec623 100644 --- a/devel/rubygem-libddprof/Makefile +++ b/devel/rubygem-libddprof/Makefile @@ -1,17 +1,16 @@ PORTNAME= libddprof PORTVERSION= 0.6.0.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Implementation bits of ddtract for Continuous Profiler feature WWW= https://github.com/DataDog/libdatadog/tree/main/ruby LICENSE= APACHE20 USES= gem -USE_RUBY= yes #NO_ARCH= yes .include diff --git a/devel/rubygem-libddwaf/Makefile b/devel/rubygem-libddwaf/Makefile index ea85e286fe1c..d7efa158d9c3 100644 --- a/devel/rubygem-libddwaf/Makefile +++ b/devel/rubygem-libddwaf/Makefile @@ -1,22 +1,21 @@ PORTNAME= libddwaf PORTVERSION= 1.5.1.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= WAF implementation in C++, exposed to Ruby WWW= https://github.com/DataDog/libddwaf-rb LICENSE= APACHE20 BSD3CLAUSE LICENSE_COMB= dual LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE.Apache LICENSE_FILE_BSD3CLAUSE=${WRKSRC}/LICENSE.BSD3 RUN_DEPENDS= rubygem-ffi>=1.0<2:devel/rubygem-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-librarian/Makefile b/devel/rubygem-librarian/Makefile index 296de05416d6..a76a9deced8b 100644 --- a/devel/rubygem-librarian/Makefile +++ b/devel/rubygem-librarian/Makefile @@ -1,21 +1,20 @@ PORTNAME= librarian PORTVERSION= 0.1.2 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= robak@FreeBSD.org COMMENT= Ruby framework for writing bundlers WWW= https://github.com/applicationsonline/librarian LICENSE= MIT RUN_DEPENDS= rubygem-highline>=0:devel/rubygem-highline \ rubygem-thor0>=0.15:devel/rubygem-thor0 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-librarianp/Makefile b/devel/rubygem-librarianp/Makefile index 570c2930fe7d..2151e4ba7d6f 100644 --- a/devel/rubygem-librarianp/Makefile +++ b/devel/rubygem-librarianp/Makefile @@ -1,20 +1,19 @@ PORTNAME= librarianp PORTVERSION= 1.1.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby framework for writing bundlers WWW= https://github.com/voxpupuli/librarian LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-thor>=1.0<2:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-libyajl2/Makefile b/devel/rubygem-libyajl2/Makefile index f40e35b85039..3b7bc48df942 100644 --- a/devel/rubygem-libyajl2/Makefile +++ b/devel/rubygem-libyajl2/Makefile @@ -1,16 +1,15 @@ PORTNAME= libyajl2 PORTVERSION= 1.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= renchap@cocoa-x.com COMMENT= Vendored copy of libyajl2 WWW= https://github.com/opscode/libyajl2-gem LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-license_finder/Makefile b/devel/rubygem-license_finder/Makefile index eea2074e64e8..41fdffb5ac00 100644 --- a/devel/rubygem-license_finder/Makefile +++ b/devel/rubygem-license_finder/Makefile @@ -1,33 +1,32 @@ PORTNAME= license_finder PORTVERSION= 7.0.1 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Generate, verify and enforce software licenses WWW= https://github.com/pivotal/LicenseFinder LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-bundler>=0:sysutils/rubygem-bundler \ rubygem-rubyzip>=1<3:archivers/rubygem-rubyzip \ rubygem-thor>=1.2.0<1.3:devel/rubygem-thor \ rubygem-tomlrb>=1.3<2.1:textproc/rubygem-tomlrb \ rubygem-with_env>=1.1.0<1.1.1:devel/rubygem-with_env \ rubygem-xml-simple>=1.1.9<1.2:textproc/rubygem-xml-simple USES= gem python:run shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= dlf \ bin/license_finder_pip.py \ ci/scripts/*.sh PLIST_FILES= bin/license_finder \ bin/license_finder_pip.py .include diff --git a/devel/rubygem-licensee/Makefile b/devel/rubygem-licensee/Makefile index 2226e75f2942..9b1e103aa46e 100644 --- a/devel/rubygem-licensee/Makefile +++ b/devel/rubygem-licensee/Makefile @@ -1,27 +1,26 @@ PORTNAME= licensee PORTVERSION= 9.15.2 PORTREVISION= 0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Detects under what license a project is distributed WWW= https://github.com/benbalter/licensee LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-dotenv>=2.0<3:misc/rubygem-dotenv \ rubygem-octokit>=4.20<5:net/rubygem-octokit \ rubygem-reverse_markdown>=1.0<2:textproc/rubygem-reverse_markdown \ rubygem-rugged>=0.24<2.0:devel/rubygem-rugged \ rubygem-thor>=0.19<2.0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/licensee .include diff --git a/devel/rubygem-listen/Makefile b/devel/rubygem-listen/Makefile index 9665d2085d96..202f3b4afadd 100644 --- a/devel/rubygem-listen/Makefile +++ b/devel/rubygem-listen/Makefile @@ -1,24 +1,23 @@ PORTNAME= listen PORTVERSION= 3.7.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Listen to file modifications and notify about the changes WWW= https://github.com/guard/listen LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-rb-fsevent>=0.10.3<1:devel/rubygem-rb-fsevent \ rubygem-rb-inotify>=0.9.10<1:devel/rubygem-rb-inotify \ rubygem-rb-kqueue>=0.2:devel/rubygem-rb-kqueue USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/listen .include diff --git a/devel/rubygem-little-plugger/Makefile b/devel/rubygem-little-plugger/Makefile index 474fb930f00e..2a4efdb36cbc 100644 --- a/devel/rubygem-little-plugger/Makefile +++ b/devel/rubygem-little-plugger/Makefile @@ -1,17 +1,16 @@ PORTNAME= little-plugger PORTVERSION= 1.1.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Mechanism to parse ruby little-plugger files WWW= https://github.com/TwP/little-plugger LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-local_time-rails5/Makefile b/devel/rubygem-local_time-rails5/Makefile index b4e15a58f8dd..81335538328c 100644 --- a/devel/rubygem-local_time-rails5/Makefile +++ b/devel/rubygem-local_time-rails5/Makefile @@ -1,21 +1,20 @@ PORTNAME= local_time PORTVERSION= 2.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rails engine for cache-friendly, client-side local time WWW= https://github.com/basecamp/local_time LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-coffee-rails-rails5>=0:devel/rubygem-coffee-rails-rails5 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-local_time/Makefile b/devel/rubygem-local_time/Makefile index 4d9d9957a6a1..7ba79e2717b3 100644 --- a/devel/rubygem-local_time/Makefile +++ b/devel/rubygem-local_time/Makefile @@ -1,19 +1,18 @@ PORTNAME= local_time PORTVERSION= 2.1.0 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rails engine for cache-friendly, client-side local time WWW= https://github.com/basecamp/local_time LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-locale/Makefile b/devel/rubygem-locale/Makefile index 154ecfd6d37a..463df82507c6 100644 --- a/devel/rubygem-locale/Makefile +++ b/devel/rubygem-locale/Makefile @@ -1,18 +1,17 @@ PORTNAME= locale PORTVERSION= 2.1.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Pure ruby library to support locales WWW= https://github.com/ruby-gettext/locale LICENSE= RUBY LGPL3 LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-lockfile/Makefile b/devel/rubygem-lockfile/Makefile index abf4758796f9..2c02bb2dd1b3 100644 --- a/devel/rubygem-lockfile/Makefile +++ b/devel/rubygem-lockfile/Makefile @@ -1,19 +1,18 @@ PORTNAME= lockfile PORTVERSION= 2.1.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby library for creating NFS safe lockfiles WWW= https://github.com/ahoward/lockfile LICENSE= RUBY USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rlock .include diff --git a/devel/rubygem-logger/Makefile b/devel/rubygem-logger/Makefile index 1f90487204d6..82a0bd43c4fe 100644 --- a/devel/rubygem-logger/Makefile +++ b/devel/rubygem-logger/Makefile @@ -1,18 +1,17 @@ PORTNAME= logger PORTVERSION= 1.5.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple logging utility for outputting messages WWW= https://github.com/ruby/logger LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-logging/Makefile b/devel/rubygem-logging/Makefile index 44bebc919d89..e378aa4a7bd9 100644 --- a/devel/rubygem-logging/Makefile +++ b/devel/rubygem-logging/Makefile @@ -1,21 +1,20 @@ PORTNAME= logging PORTVERSION= 2.3.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Logging library based on Java's log4j #' WWW= https://github.com/TwP/logging LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-little-plugger>=1.1<2:devel/rubygem-little-plugger \ rubygem-multi_json>=1.14<2:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-logster/Makefile b/devel/rubygem-logster/Makefile index 9d3f0b79a03e..178c89540465 100644 --- a/devel/rubygem-logster/Makefile +++ b/devel/rubygem-logster/Makefile @@ -1,18 +1,17 @@ PORTNAME= logster PORTVERSION= 1.2.11 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= UI for viewing logs in Rack WWW= https://github.com/discourse/logster LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-loquacious/Makefile b/devel/rubygem-loquacious/Makefile index 463a1ec09a73..86d471866de4 100644 --- a/devel/rubygem-loquacious/Makefile +++ b/devel/rubygem-loquacious/Makefile @@ -1,18 +1,17 @@ PORTNAME= loquacious PORTVERSION= 1.9.1 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Mechanism to parse ruby loquacious files WWW= https://github.com/TwP/loquacious LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-lru_redux/Makefile b/devel/rubygem-lru_redux/Makefile index 3ac4ac12c1b8..42c61cdf47aa 100644 --- a/devel/rubygem-lru_redux/Makefile +++ b/devel/rubygem-lru_redux/Makefile @@ -1,17 +1,16 @@ PORTNAME= lru_redux PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Efficient implementation of an lru cache WWW= https://github.com/SamSaffron/lru_redux LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-lumberjack/Makefile b/devel/rubygem-lumberjack/Makefile index e0b64fb66c49..9f43e74d6b1d 100644 --- a/devel/rubygem-lumberjack/Makefile +++ b/devel/rubygem-lumberjack/Makefile @@ -1,18 +1,17 @@ PORTNAME= lumberjack PORTVERSION= 1.2.8 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple, powerful, and fast logging utility WWW= https://github.com/bdurand/lumberjack LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT_LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-main/Makefile b/devel/rubygem-main/Makefile index 1dc7e6e83745..4f07d5918edf 100644 --- a/devel/rubygem-main/Makefile +++ b/devel/rubygem-main/Makefile @@ -1,23 +1,22 @@ PORTNAME= main PORTVERSION= 6.2.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Class Factory and Dsl for Generating Command Line Programs WWW= https://github.com/ahoward/main LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual RUN_DEPENDS= rubygem-arrayfields>=4.7.4<5:devel/rubygem-arrayfields \ rubygem-chronic>=0.6.2<1:devel/rubygem-chronic \ rubygem-fattr>=2.2.0<3:devel/rubygem-fattr \ rubygem-map>=6.1.0<7:devel/rubygem-map USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-makara61/Makefile b/devel/rubygem-makara61/Makefile index 3f0e451d9c6c..2feef3b61586 100644 --- a/devel/rubygem-makara61/Makefile +++ b/devel/rubygem-makara61/Makefile @@ -1,20 +1,19 @@ PORTNAME= makara PORTVERSION= 0.5.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= bofh@FreeBSD.org COMMENT= Read-write split DB - RAILS61 WWW= https://github.com/instacart/makara LICENSE= MIT RUN_DEPENDS= rubygem-activerecord61>0:databases/rubygem-activerecord61 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-manpages/Makefile b/devel/rubygem-manpages/Makefile index 55df03529e38..01e7c78964c0 100644 --- a/devel/rubygem-manpages/Makefile +++ b/devel/rubygem-manpages/Makefile @@ -1,21 +1,20 @@ PORTNAME= manpages PORTVERSION= 0.6.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Detect man pages within gems and exposes them to the man command WWW= https://github.com/bitboxer/manpages LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= rbenv/rbenv_hook_install.sh \ rbenv/remove_hook_folders.sh .include diff --git a/devel/rubygem-map/Makefile b/devel/rubygem-map/Makefile index b838344c73d3..3081a9d29b98 100644 --- a/devel/rubygem-map/Makefile +++ b/devel/rubygem-map/Makefile @@ -1,17 +1,16 @@ PORTNAME= map PORTVERSION= 6.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Maps are ordered hashes with many features WWW= https://github.com/ahoward/map LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-marcel/Makefile b/devel/rubygem-marcel/Makefile index 92bf6d3a7c32..104fe92e4c7c 100644 --- a/devel/rubygem-marcel/Makefile +++ b/devel/rubygem-marcel/Makefile @@ -1,18 +1,17 @@ PORTNAME= marcel PORTVERSION= 1.0.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple mime type detection WWW= https://github.com/rails/marcel LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-memo_wise/Makefile b/devel/rubygem-memo_wise/Makefile index 32e9d6ed5440..4c9f360068db 100644 --- a/devel/rubygem-memo_wise/Makefile +++ b/devel/rubygem-memo_wise/Makefile @@ -1,17 +1,16 @@ PORTNAME= memo_wise DISTVERSION= 1.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sdalu@sdalu.com COMMENT= Support for memoizing functions WWW= https://github.com/panorama-ed/memo_wise LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-memoist/Makefile b/devel/rubygem-memoist/Makefile index 9337719bd1a6..efdad2060f9f 100644 --- a/devel/rubygem-memoist/Makefile +++ b/devel/rubygem-memoist/Makefile @@ -1,18 +1,17 @@ PORTNAME= memoist PORTVERSION= 0.16.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Memoize methods invocation WWW= https://github.com/matthewrudy/memoist LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-memoizable/Makefile b/devel/rubygem-memoizable/Makefile index b78bc381b495..36839a8b00c5 100644 --- a/devel/rubygem-memoizable/Makefile +++ b/devel/rubygem-memoizable/Makefile @@ -1,20 +1,19 @@ PORTNAME= memoizable PORTVERSION= 0.4.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Memoize method return values WWW= https://github.com/dkubb/memoizable LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-thread_safe>=0.3.1<1:devel/rubygem-thread_safe USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-memoize/Makefile b/devel/rubygem-memoize/Makefile index 62b8aea4af96..ac0712ff4cb9 100644 --- a/devel/rubygem-memoize/Makefile +++ b/devel/rubygem-memoize/Makefile @@ -1,19 +1,18 @@ PORTNAME= memoize PORTVERSION= 1.3.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Speeds up methods at the cost of memory (or disk space) WWW= https://github.com/djberg96/memoize LICENSE= ART20 RUN_DEPENDS= rubygem-test-unit>=2.0.2:devel/rubygem-test-unit USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-memory_profiler/Makefile b/devel/rubygem-memory_profiler/Makefile index 258d75ff4f2a..3e57c5ade2f7 100644 --- a/devel/rubygem-memory_profiler/Makefile +++ b/devel/rubygem-memory_profiler/Makefile @@ -1,20 +1,19 @@ PORTNAME= memory_profiler PORTVERSION= 1.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Memory profiling routines for Ruby 2.3+ WWW= https://rubygems.org/gems/memory_profiler LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/ruby-memory-profiler .include diff --git a/devel/rubygem-mercenary/Makefile b/devel/rubygem-mercenary/Makefile index 013da9deda3f..2951dbb24cfa 100644 --- a/devel/rubygem-mercenary/Makefile +++ b/devel/rubygem-mercenary/Makefile @@ -1,20 +1,19 @@ PORTNAME= mercenary PORTVERSION= 0.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Lightweight and flexible library for writing command-line apps in Ruby WWW= https://github.com/jekyll/mercenary LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= script/console script/examples script/fmt .include diff --git a/devel/rubygem-message_bus/Makefile b/devel/rubygem-message_bus/Makefile index 579b139e93c5..293a61ce0359 100644 --- a/devel/rubygem-message_bus/Makefile +++ b/devel/rubygem-message_bus/Makefile @@ -1,24 +1,23 @@ PORTNAME= message_bus PORTVERSION= 4.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Message bus for rack WWW= https://github.com/discourse/message_bus LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rack>=1.1.3,3:www/rubygem-rack USES= cpe gem shebangfix -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= discourse SHEBANG_FILES= examples/chat/docker_container/update_chat .include diff --git a/devel/rubygem-metaclass/Makefile b/devel/rubygem-metaclass/Makefile index c7e83a1280d1..fd03d1d69b62 100644 --- a/devel/rubygem-metaclass/Makefile +++ b/devel/rubygem-metaclass/Makefile @@ -1,17 +1,16 @@ PORTNAME= metaclass PORTVERSION= 0.0.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Adds a metaclass method to all Ruby objects WWW= https://github.com/floehopper/metaclass LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-metaid/Makefile b/devel/rubygem-metaid/Makefile index 7a60e2345f69..625b9a148dae 100644 --- a/devel/rubygem-metaid/Makefile +++ b/devel/rubygem-metaid/Makefile @@ -1,14 +1,13 @@ PORTNAME= metaid PORTVERSION= 1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby metaprogramming helpers WWW= http://whytheluckystiff.net/metaid/ NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-metasm/Makefile b/devel/rubygem-metasm/Makefile index 41c546927fea..322bc6349d5f 100644 --- a/devel/rubygem-metasm/Makefile +++ b/devel/rubygem-metasm/Makefile @@ -1,19 +1,18 @@ PORTNAME= metasm PORTVERSION= 1.0.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Cross-architecture assembler, disassembler, linker, and debugger WWW= https://metasm.cr0.org/ LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENCE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= samples/emubios.rb .include diff --git a/devel/rubygem-method_source/Makefile b/devel/rubygem-method_source/Makefile index 524f20b093f3..c829b6c3e2bd 100644 --- a/devel/rubygem-method_source/Makefile +++ b/devel/rubygem-method_source/Makefile @@ -1,18 +1,17 @@ PORTNAME= method_source PORTVERSION= 1.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Tool to retrieve the sourcecode for a method WWW= https://github.com/banister/method_source LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-micromachine/Makefile b/devel/rubygem-micromachine/Makefile index fb0a9ba817a2..538562d8292c 100644 --- a/devel/rubygem-micromachine/Makefile +++ b/devel/rubygem-micromachine/Makefile @@ -1,17 +1,16 @@ PORTNAME= micromachine PORTVERSION= 3.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Minimal Finite State Machine WWW= https://github.com/soveran/micromachine LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-middleware/Makefile b/devel/rubygem-middleware/Makefile index 2c8328b22017..c056794068b5 100644 --- a/devel/rubygem-middleware/Makefile +++ b/devel/rubygem-middleware/Makefile @@ -1,18 +1,17 @@ PORTNAME= middleware PORTVERSION= 0.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Generalized implementation of the middleware abstraction for Ruby WWW= https://github.com/mitchellh/middleware LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-mini_histogram/Makefile b/devel/rubygem-mini_histogram/Makefile index 1cd0788628d1..aeb9395a7ccf 100644 --- a/devel/rubygem-mini_histogram/Makefile +++ b/devel/rubygem-mini_histogram/Makefile @@ -1,18 +1,17 @@ PORTNAME= mini_histogram PORTVERSION= 0.3.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Makes histograms out of Ruby data WWW= https://github.com/zombocom/mini_histogram LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-mini_portile2-25/Makefile b/devel/rubygem-mini_portile2-25/Makefile index c390f958f7f6..92e1b88a2b12 100644 --- a/devel/rubygem-mini_portile2-25/Makefile +++ b/devel/rubygem-mini_portile2-25/Makefile @@ -1,20 +1,19 @@ PORTNAME= mini_portile2 PORTVERSION= 2.5.3 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -25 MAINTAINER= ruby@FreeBSD.org COMMENT= Simple autoconf builder for developers WWW= https://github.com/luislavena/mini_portile LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^2\.5\. .include diff --git a/devel/rubygem-mini_portile2/Makefile b/devel/rubygem-mini_portile2/Makefile index 54cfd882648d..b354ed298caa 100644 --- a/devel/rubygem-mini_portile2/Makefile +++ b/devel/rubygem-mini_portile2/Makefile @@ -1,17 +1,16 @@ PORTNAME= mini_portile2 PORTVERSION= 2.8.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple autoconf builder for developers WWW= https://github.com/luislavena/mini_portile LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-minitest/Makefile b/devel/rubygem-minitest/Makefile index acd0ea5cab38..2cdd1e88dfa4 100644 --- a/devel/rubygem-minitest/Makefile +++ b/devel/rubygem-minitest/Makefile @@ -1,17 +1,16 @@ PORTNAME= minitest PORTVERSION= 5.16.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Minitest provides a complete suite of testing facilities WWW= https://github.com/minitest/minitest LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-mixlib-archive/Makefile b/devel/rubygem-mixlib-archive/Makefile index ef8c8937615c..c7bd513e3796 100644 --- a/devel/rubygem-mixlib-archive/Makefile +++ b/devel/rubygem-mixlib-archive/Makefile @@ -1,20 +1,19 @@ PORTNAME= mixlib-archive PORTVERSION= 1.1.7 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple interface to various archive formats WWW= https://www.chef.io/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-mixlib-log>=0:devel/rubygem-mixlib-log USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-mixlib-authentication/Makefile b/devel/rubygem-mixlib-authentication/Makefile index b113770dd0eb..7667d0d65f3b 100644 --- a/devel/rubygem-mixlib-authentication/Makefile +++ b/devel/rubygem-mixlib-authentication/Makefile @@ -1,18 +1,17 @@ PORTNAME= mixlib-authentication PORTVERSION= 3.0.7 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Mixes in simple per-request authentication WWW= https://www.chef.io/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-mixlib-cli/Makefile b/devel/rubygem-mixlib-cli/Makefile index 7823bcc1d5f7..b5eab0074e15 100644 --- a/devel/rubygem-mixlib-cli/Makefile +++ b/devel/rubygem-mixlib-cli/Makefile @@ -1,18 +1,17 @@ PORTNAME= mixlib-cli PORTVERSION= 2.1.8 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= renchap@cocoa-x.com COMMENT= Simple mixin for CLI interfaces, including option parsing WWW= https://www.chef.io/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-mixlib-config/Makefile b/devel/rubygem-mixlib-config/Makefile index 89920b8754a9..4882524aa04e 100644 --- a/devel/rubygem-mixlib-config/Makefile +++ b/devel/rubygem-mixlib-config/Makefile @@ -1,20 +1,19 @@ PORTNAME= mixlib-config PORTVERSION= 3.0.9 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= renchap@cocoa-x.com COMMENT= Class based config mixin, similar to the one found in Chef WWW= https://www.chef.io/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-tomlrb>=0:textproc/rubygem-tomlrb USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-mixlib-install/Makefile b/devel/rubygem-mixlib-install/Makefile index e397456487d0..8970de76d517 100644 --- a/devel/rubygem-mixlib-install/Makefile +++ b/devel/rubygem-mixlib-install/Makefile @@ -1,24 +1,23 @@ PORTNAME= mixlib-install PORTVERSION= 3.12.20 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Library to interact with the software distribution system in Chef WWW= https://www.chef.io/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-mixlib-shellout>=0:devel/rubygem-mixlib-shellout \ rubygem-mixlib-versioning>=0:devel/rubygem-mixlib-versioning \ rubygem-thor>=0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/mixlib-install .include diff --git a/devel/rubygem-mixlib-log/Makefile b/devel/rubygem-mixlib-log/Makefile index 33499ce96c69..fda5a2e83f6b 100644 --- a/devel/rubygem-mixlib-log/Makefile +++ b/devel/rubygem-mixlib-log/Makefile @@ -1,18 +1,17 @@ PORTNAME= mixlib-log PORTVERSION= 3.0.9 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= renchap@cocoa-x.com COMMENT= Provides a simple mixin for log functionality WWW= https://www.chef.io/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-mixlib-shellout/Makefile b/devel/rubygem-mixlib-shellout/Makefile index 46ae1ec66df1..cbc522601e8c 100644 --- a/devel/rubygem-mixlib-shellout/Makefile +++ b/devel/rubygem-mixlib-shellout/Makefile @@ -1,20 +1,19 @@ PORTNAME= mixlib-shellout PORTVERSION= 3.2.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= nickdewing@gmail.com COMMENT= Shell interface that also collects stdout and stderr WWW= https://www.chef.io/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-chef-utils>=0:sysutils/rubygem-chef-utils USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-mixlib-versioning/Makefile b/devel/rubygem-mixlib-versioning/Makefile index b650c684cf58..b5a6b50e96dd 100644 --- a/devel/rubygem-mixlib-versioning/Makefile +++ b/devel/rubygem-mixlib-versioning/Makefile @@ -1,18 +1,17 @@ PORTNAME= mixlib-versioning PORTVERSION= 1.2.12 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Library to parse, compare and manipulate version strings WWW= https://github.com/chef/mixlib-versioning LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-mize/Makefile b/devel/rubygem-mize/Makefile index e6a4933bc00b..bdd3915f445e 100644 --- a/devel/rubygem-mize/Makefile +++ b/devel/rubygem-mize/Makefile @@ -1,19 +1,18 @@ PORTNAME= mize PORTVERSION= 0.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Memoziation for methods and functions for Ruby WWW= https://github.com/flori/mize LICENSE= MIT RUN_DEPENDS= rubygem-protocol>=2.0<3:devel/rubygem-protocol USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-mkrf/Makefile b/devel/rubygem-mkrf/Makefile index bc322b33e0d0..fb423e9d5a25 100644 --- a/devel/rubygem-mkrf/Makefile +++ b/devel/rubygem-mkrf/Makefile @@ -1,15 +1,14 @@ PORTNAME= mkrf PORTVERSION= 0.2.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Replacement to mkmf generates Rakefiles to build C Extensions WWW= http://mkrf.rubyforge.org/ LICENSE= MIT -USE_RUBY= yes USES= gem python .include diff --git a/devel/rubygem-mmap2/Makefile b/devel/rubygem-mmap2/Makefile index 1e7a90de3b7b..b9a895914e1f 100644 --- a/devel/rubygem-mmap2/Makefile +++ b/devel/rubygem-mmap2/Makefile @@ -1,16 +1,15 @@ PORTNAME= mmap2 PORTVERSION= 2.2.9 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Implement memory-mapped file objects for Ruby 2.x WWW= https://gitlab.com/lyda/mmap LICENSE= RUBY USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-mocha/Makefile b/devel/rubygem-mocha/Makefile index 94430f172238..1e120aacb20b 100644 --- a/devel/rubygem-mocha/Makefile +++ b/devel/rubygem-mocha/Makefile @@ -1,19 +1,18 @@ PORTNAME= mocha PORTVERSION= 1.16.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library for mocking and stubbing syntax like JMock and SchMock WWW= https://mocha.jamesmead.org/ LICENSE= BSD2CLAUSE RUBY MIT LICENSE_COMB= dual LICENSE_FILE_MIT= ${WRKSRC}/MIT-LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-molinillo/Makefile b/devel/rubygem-molinillo/Makefile index 886cecb6cb7c..5367ab6401af 100644 --- a/devel/rubygem-molinillo/Makefile +++ b/devel/rubygem-molinillo/Makefile @@ -1,18 +1,17 @@ PORTNAME= molinillo PORTVERSION= 0.8.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provides support for dependency resolution WWW= https://github.com/CocoaPods/Molinillo LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-moneta/Makefile b/devel/rubygem-moneta/Makefile index b193be2316ef..f0028e118f00 100644 --- a/devel/rubygem-moneta/Makefile +++ b/devel/rubygem-moneta/Makefile @@ -1,21 +1,20 @@ PORTNAME= moneta PORTVERSION= 1.5.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Unified interface to key/value stores WWW= https://github.com/moneta-rb/moneta LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= script/start-couchdb \ script/start-services .include diff --git a/devel/rubygem-mongo/Makefile b/devel/rubygem-mongo/Makefile index c7b78e35c19b..f248709d1ab6 100644 --- a/devel/rubygem-mongo/Makefile +++ b/devel/rubygem-mongo/Makefile @@ -1,25 +1,24 @@ PORTNAME= mongo PORTVERSION= 2.18.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby driver for MongoDB WWW= https://github.com/mongodb/mongo-ruby-driver LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-bson>=4.14.1<5.0.0:devel/rubygem-bson USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/mongo_console post-patch: @${RM} ${WRKSRC}/spec/support/ocsp .include diff --git a/devel/rubygem-mono_logger/Makefile b/devel/rubygem-mono_logger/Makefile index f4714bbbf806..422e4346a08b 100644 --- a/devel/rubygem-mono_logger/Makefile +++ b/devel/rubygem-mono_logger/Makefile @@ -1,17 +1,16 @@ PORTNAME= mono_logger PORTVERSION= 1.1.1 CATEGORIES= devel ruby MASTER_SITES= RG MAINTAINER= dvl@FreeBSD.org COMMENT= Lock-free logger compatible with Ruby 2.0 WWW= https://github.com/steveklabnik/mono_logger LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-ms_rest/Makefile b/devel/rubygem-ms_rest/Makefile index 93e771d7edd8..8a523034bae1 100644 --- a/devel/rubygem-ms_rest/Makefile +++ b/devel/rubygem-ms_rest/Makefile @@ -1,23 +1,22 @@ PORTNAME= ms_rest PORTVERSION= 0.7.6 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Azure Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/runtime/ms_rest LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby \ rubygem-faraday1>=0.9<2.0.0:www/rubygem-faraday1 \ rubygem-timeliness>=0.3.10<1:devel/rubygem-timeliness USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-ms_rest_azure/Makefile b/devel/rubygem-ms_rest_azure/Makefile index 211f1028d79f..0ed90d5f82b5 100644 --- a/devel/rubygem-ms_rest_azure/Makefile +++ b/devel/rubygem-ms_rest_azure/Makefile @@ -1,24 +1,23 @@ PORTNAME= ms_rest_azure PORTVERSION= 0.12.0 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Azure Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby/tree/master/runtime/ms_rest_azure LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby \ rubygem-faraday1>=0.9<2.0.0:www/rubygem-faraday1 \ rubygem-faraday-cookie_jar>=0.0.6<0.1:devel/rubygem-faraday-cookie_jar \ rubygem-ms_rest>=0.7.6<0.8:devel/rubygem-ms_rest USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-msgpack/Makefile b/devel/rubygem-msgpack/Makefile index 7ff23a6c07e7..6a8efa51744a 100644 --- a/devel/rubygem-msgpack/Makefile +++ b/devel/rubygem-msgpack/Makefile @@ -1,16 +1,15 @@ PORTNAME= msgpack PORTVERSION= 1.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Gems for MessagePack WWW= https://msgpack.org/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-mspec/Makefile b/devel/rubygem-mspec/Makefile index 7e40da7286d8..6981341f1b36 100644 --- a/devel/rubygem-mspec/Makefile +++ b/devel/rubygem-mspec/Makefile @@ -1,20 +1,19 @@ PORTNAME= mspec PORTVERSION= 1.9.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Specialized Ruby testing framework WWW= https://rubygems.org/gems/mspec LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/mkspec bin/mspec bin/mspec-ci bin/mspec-run bin/mspec-tag .include diff --git a/devel/rubygem-multi_json/Makefile b/devel/rubygem-multi_json/Makefile index 138a758df02a..20099ce610b5 100644 --- a/devel/rubygem-multi_json/Makefile +++ b/devel/rubygem-multi_json/Makefile @@ -1,28 +1,27 @@ PORTNAME= multi_json PORTVERSION= 1.15.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby library provide swappable JSON backends WWW= https://github.com/intridea/multi_json LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes OPTIONS_DEFINE= JSON JSON_PURE YAJL_RUBY OPTIONS_DEFAULT=JSON_PURE JSON_DESC= JSON implementation as a Ruby extension in C JSON_PURE_DESC= JSON implementation in pure Ruby YAJL_RUBY_DESC= Yajl JSON stream-based parser library JSON_RUN_DEPENDS= rubygem-json>=0:devel/rubygem-json JSON_PURE_RUN_DEPENDS= rubygem-json_pure>=0:devel/rubygem-json_pure YAJL_RUBY_RUN_DEPENDS= rubygem-yajl-ruby>=0:devel/rubygem-yajl-ruby .include diff --git a/devel/rubygem-multi_json114/Makefile b/devel/rubygem-multi_json114/Makefile index 39c7dd70dfb1..6c36e1620038 100644 --- a/devel/rubygem-multi_json114/Makefile +++ b/devel/rubygem-multi_json114/Makefile @@ -1,29 +1,28 @@ PORTNAME= multi_json PORTVERSION= 1.14.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 114 MAINTAINER= mfechner@FreeBSD.org COMMENT= Ruby library provide swappable JSON backends WWW= https://github.com/intridea/multi_json LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes OPTIONS_DEFINE= JSON JSON_PURE YAJL_RUBY OPTIONS_DEFAULT=JSON_PURE JSON_DESC= JSON implementation as a Ruby extension in C JSON_PURE_DESC= JSON implementation in pure Ruby YAJL_RUBY_DESC= Yajl JSON stream-based parser library JSON_RUN_DEPENDS= rubygem-json>=0:devel/rubygem-json JSON_PURE_RUN_DEPENDS= rubygem-json_pure>=0:devel/rubygem-json_pure YAJL_RUBY_RUN_DEPENDS= rubygem-yajl-ruby>=0:devel/rubygem-yajl-ruby .include diff --git a/devel/rubygem-multi_test/Makefile b/devel/rubygem-multi_test/Makefile index f1bebd5c2845..468398ea00a0 100644 --- a/devel/rubygem-multi_test/Makefile +++ b/devel/rubygem-multi_test/Makefile @@ -1,20 +1,19 @@ PORTNAME= multi_test PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Help control rogue test, unit, autorun requirements WWW= https://cucumber.io/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= test-all test-gemfile .include diff --git a/devel/rubygem-murmurhash3/Makefile b/devel/rubygem-murmurhash3/Makefile index 2826f3538250..4b6ab709bccd 100644 --- a/devel/rubygem-murmurhash3/Makefile +++ b/devel/rubygem-murmurhash3/Makefile @@ -1,15 +1,14 @@ PORTNAME= murmurhash3 PORTVERSION= 0.1.6 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Implementation of murmur3 hashing function WWW= https://github.com/funny-falcon/murmurhash3-ruby LICENSE= MIT -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-mustache-sinatra/Makefile b/devel/rubygem-mustache-sinatra/Makefile index c4f2211381c1..221e87dcdaf9 100644 --- a/devel/rubygem-mustache-sinatra/Makefile +++ b/devel/rubygem-mustache-sinatra/Makefile @@ -1,17 +1,16 @@ PORTNAME= mustache-sinatra DISTVERSION= 1.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sirl33tname@gmail.com COMMENT= Support for Mustache in your Sinatra app WWW= https://github.com/kainjow/Mustache LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-mustache/Makefile b/devel/rubygem-mustache/Makefile index 5e738031c120..d4d3049b13a0 100644 --- a/devel/rubygem-mustache/Makefile +++ b/devel/rubygem-mustache/Makefile @@ -1,20 +1,19 @@ PORTNAME= mustache PORTVERSION= 1.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Framework-agnostic way to render logic-free views WWW= https://github.com/mustache/mustache LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/mustache .include diff --git a/devel/rubygem-mustache0/Makefile b/devel/rubygem-mustache0/Makefile index fafe706aee52..c5245ea8a714 100644 --- a/devel/rubygem-mustache0/Makefile +++ b/devel/rubygem-mustache0/Makefile @@ -1,25 +1,24 @@ PORTNAME= mustache PORTVERSION= 0.99.8 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 0 MAINTAINER= ruby@FreeBSD.org COMMENT= Framework-agnostic way to render logic-free views WWW= https://github.com/mustache/mustache LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/mustache${PKGNAMESUFFIX} post-install: @${MV} ${STAGEDIR}/${PREFIX}/bin/mustache \ ${STAGEDIR}/${PREFIX}/bin/mustache${PKGNAMESUFFIX} PORTSCOUT= limit:^0\. .include diff --git a/devel/rubygem-mustermann-grape/Makefile b/devel/rubygem-mustermann-grape/Makefile index 2e752e378390..0e56404fb8f2 100644 --- a/devel/rubygem-mustermann-grape/Makefile +++ b/devel/rubygem-mustermann-grape/Makefile @@ -1,19 +1,18 @@ PORTNAME= mustermann-grape PORTVERSION= 1.0.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Adds Grape style patterns to Mustermman WWW= https://github.com/ruby-grape/mustermann-grape LICENSE= MIT RUN_DEPENDS= rubygem-mustermann>=1.0:devel/rubygem-mustermann USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-mustermann/Makefile b/devel/rubygem-mustermann/Makefile index ab0f8be579b2..01d88337ca6f 100644 --- a/devel/rubygem-mustermann/Makefile +++ b/devel/rubygem-mustermann/Makefile @@ -1,20 +1,19 @@ PORTNAME= mustermann PORTVERSION= 3.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Library implementing patterns that behave like regular expressions WWW= https://github.com/sinatra/mustermann/tree/master/mustermann LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-ruby2_keywords>=0.0.1<0.1:devel/rubygem-ruby2_keywords USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-mutex_m/Makefile b/devel/rubygem-mutex_m/Makefile index e4a4a6e4ca00..67e8baa2b51d 100644 --- a/devel/rubygem-mutex_m/Makefile +++ b/devel/rubygem-mutex_m/Makefile @@ -1,19 +1,18 @@ PORTNAME= mutex_m PORTVERSION= 0.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Mixin to extend objects to be handled like a Mutex WWW= https://github.com/ruby/mutex_m LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-mutter/Makefile b/devel/rubygem-mutter/Makefile index 4a85bec0148c..ecb9045d35b7 100644 --- a/devel/rubygem-mutter/Makefile +++ b/devel/rubygem-mutter/Makefile @@ -1,16 +1,15 @@ PORTNAME= mutter PORTVERSION= 0.5.3 PORTREVISION= 0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= nivit@FreeBSD.org COMMENT= Tiny command-line interface library WWW= https://github.com/cloudhead/mutter NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-nakayoshi_fork/Makefile b/devel/rubygem-nakayoshi_fork/Makefile index 791bd31dd8fd..873f945d535f 100644 --- a/devel/rubygem-nakayoshi_fork/Makefile +++ b/devel/rubygem-nakayoshi_fork/Makefile @@ -1,21 +1,20 @@ PORTNAME= nakayoshi_fork PORTVERSION= 0.0.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Solves CoW friendly problem on MRI 2.2 and later WWW= https://github.com/ko1/nakayoshi_fork LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes post-patch: @${CHMOD} -R o-w ${WRKSRC}/* .include diff --git a/devel/rubygem-nap/Makefile b/devel/rubygem-nap/Makefile index 8814fe49b30d..541b00b4e886 100644 --- a/devel/rubygem-nap/Makefile +++ b/devel/rubygem-nap/Makefile @@ -1,18 +1,17 @@ PORTNAME= nap PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= REST library WWW= https://github.com/Fingertips/nap LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-native-package-installer/Makefile b/devel/rubygem-native-package-installer/Makefile index 88c396178557..03c1cab4ebee 100644 --- a/devel/rubygem-native-package-installer/Makefile +++ b/devel/rubygem-native-package-installer/Makefile @@ -1,18 +1,17 @@ PORTNAME= native-package-installer PORTVERSION= 1.1.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Helper to install native packages on "gem install" WWW= https://github.com/ruby-gnome/native-package-installer LICENSE= LGPL3+ LICENSE_FILE= ${WRKSRC}/doc/text/lgpl-3.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-naught/Makefile b/devel/rubygem-naught/Makefile index 48c5d6188184..338081fe574c 100644 --- a/devel/rubygem-naught/Makefile +++ b/devel/rubygem-naught/Makefile @@ -1,16 +1,15 @@ PORTNAME= naught PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Toolkit for building Null Objects WWW= https://github.com/avdi/naught LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-necromancer/Makefile b/devel/rubygem-necromancer/Makefile index eaa1067fd027..1bb9f55ba91b 100644 --- a/devel/rubygem-necromancer/Makefile +++ b/devel/rubygem-necromancer/Makefile @@ -1,18 +1,17 @@ PORTNAME= necromancer PORTVERSION= 0.7.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Convert object types WWW= https://github.com/piotrmurach/necromancer LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-needle/Makefile b/devel/rubygem-needle/Makefile index 0cb06ea82a78..1deb800785bb 100644 --- a/devel/rubygem-needle/Makefile +++ b/devel/rubygem-needle/Makefile @@ -1,18 +1,17 @@ PORTNAME= needle PORTVERSION= 1.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Dependency-injection/inversion-of-control container WWW= http://needle.rubyforge.org/ LICENSE= BSD3CLAUSE GPLv2 RUBY LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-nenv/Makefile b/devel/rubygem-nenv/Makefile index 84a961b11b3b..7b9f76248438 100644 --- a/devel/rubygem-nenv/Makefile +++ b/devel/rubygem-nenv/Makefile @@ -1,18 +1,17 @@ PORTNAME= nenv PORTVERSION= 0.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Convenient wrapper for ENV WWW= https://github.com/e2/nenv LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-nesty/Makefile b/devel/rubygem-nesty/Makefile index f7fe7f8245b4..4511d32d0050 100644 --- a/devel/rubygem-nesty/Makefile +++ b/devel/rubygem-nesty/Makefile @@ -1,17 +1,16 @@ PORTNAME= nesty PORTVERSION= 1.0.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Nested exception support for Ruby WWW= https://github.com/skorks/nesty LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-netaddr/Makefile b/devel/rubygem-netaddr/Makefile index 010ad754efbb..4918201f7666 100644 --- a/devel/rubygem-netaddr/Makefile +++ b/devel/rubygem-netaddr/Makefile @@ -1,20 +1,19 @@ PORTNAME= netaddr PORTVERSION= 2.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Package for manipulating network addresses WWW= https://github.com/dspinhirne/netaddr LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= cpe gem shebangfix CPE_VENDOR= ${PORTNAME}_project SHEBANG_FILES= test/* .include diff --git a/devel/rubygem-newrelic-grape/Makefile b/devel/rubygem-newrelic-grape/Makefile index 14625b87d596..9111e7bfe97e 100644 --- a/devel/rubygem-newrelic-grape/Makefile +++ b/devel/rubygem-newrelic-grape/Makefile @@ -1,21 +1,20 @@ PORTNAME= newrelic-grape PORTVERSION= 2.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Newrelic instrument for grape WWW= https://github.com/xinminlabs/newrelic-grape LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-grape>=0:devel/rubygem-grape \ rubygem-newrelic_rpm>=0:devel/rubygem-newrelic_rpm USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-newrelic_rpm/Makefile b/devel/rubygem-newrelic_rpm/Makefile index b2c12b81357d..90b44acf719e 100644 --- a/devel/rubygem-newrelic_rpm/Makefile +++ b/devel/rubygem-newrelic_rpm/Makefile @@ -1,22 +1,21 @@ PORTNAME= newrelic_rpm PORTVERSION= 4.7.1.340 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Performance management system for Rails applications WWW= https://github.com/newrelic/rpm LICENSE= MIT NEWRELIC RUBY LICENSE_COMB= multi LICENSE_NAME_NEWRELIC= New Relic License LICENSE_FILE_NEWRELIC= ${WRKSRC}/LICENSE 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 .include diff --git a/devel/rubygem-nice-ffi/Makefile b/devel/rubygem-nice-ffi/Makefile index 97f60163834c..a4b11bd091e6 100644 --- a/devel/rubygem-nice-ffi/Makefile +++ b/devel/rubygem-nice-ffi/Makefile @@ -1,19 +1,18 @@ PORTNAME= nice-ffi PORTVERSION= 0.4 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Convenience layer atop Ruby-FFI WWW= https://github.com/jacius/nice-ffi LICENSE= MIT RUN_DEPENDS= rubygem-ffi>=0.5.0:devel/rubygem-ffi NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-nio4r/Makefile b/devel/rubygem-nio4r/Makefile index 95de7c40a3e2..a0b34b0ee450 100644 --- a/devel/rubygem-nio4r/Makefile +++ b/devel/rubygem-nio4r/Makefile @@ -1,15 +1,14 @@ PORTNAME= nio4r PORTVERSION= 2.5.8 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Cross-platform asynchronous I/O primitives WWW= https://github.com/socketry/nio4r LICENSE= MIT USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-nori/Makefile b/devel/rubygem-nori/Makefile index 4069ef7e5bb6..2538acdbf48b 100644 --- a/devel/rubygem-nori/Makefile +++ b/devel/rubygem-nori/Makefile @@ -1,18 +1,17 @@ PORTNAME= nori PORTVERSION= 2.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= joe@thrallingpenguin.com COMMENT= Library for converting XML to Hash syntax WWW= https://github.com/savonrb/nori LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-notiffany/Makefile b/devel/rubygem-notiffany/Makefile index bc4ad5ea4a89..4cd94be35682 100644 --- a/devel/rubygem-notiffany/Makefile +++ b/devel/rubygem-notiffany/Makefile @@ -1,21 +1,20 @@ PORTNAME= notiffany PORTVERSION= 0.1.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Single wrapper for most popular notification libraries WWW= https://github.com/guard/notiffany LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-nenv>=0.1<1:devel/rubygem-nenv \ rubygem-shellany>=0<1:sysutils/rubygem-shellany USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-notify/Makefile b/devel/rubygem-notify/Makefile index 19ff4134633f..e04fac7049c4 100644 --- a/devel/rubygem-notify/Makefile +++ b/devel/rubygem-notify/Makefile @@ -1,19 +1,18 @@ PORTNAME= notify PORTVERSION= 0.5.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= meta@FreeBSD.org COMMENT= Desktop notify for many platform WWW= https://github.com/jugyo/notify LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/notify .include diff --git a/devel/rubygem-nprogress-rails/Makefile b/devel/rubygem-nprogress-rails/Makefile index 86c1a35f4a79..e50dc83dfa03 100644 --- a/devel/rubygem-nprogress-rails/Makefile +++ b/devel/rubygem-nprogress-rails/Makefile @@ -1,17 +1,16 @@ PORTNAME= nprogress-rails PORTVERSION= 0.2.0.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Rails implementation of nprogress progress bars library WWW= https://github.com/caarlos0/nprogress-rails LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-nsa-rails5/Makefile b/devel/rubygem-nsa-rails5/Makefile index 097e388e7ab0..f68c34969507 100644 --- a/devel/rubygem-nsa-rails5/Makefile +++ b/devel/rubygem-nsa-rails5/Makefile @@ -1,23 +1,22 @@ PORTNAME= nsa PORTVERSION= 0.2.8 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= ruby@FreeBSD.org COMMENT= Deliver Rails ActiveSupport::Notifications to a Statsd backend WWW= https://github.com/localshred/nsa RUN_DEPENDS= rubygem-activesupport5>=4.2<7:devel/rubygem-activesupport5 \ rubygem-concurrent-ruby>=1.0.2<2:devel/rubygem-concurrent-ruby \ rubygem-sidekiq>=3.5:devel/rubygem-sidekiq \ rubygem-statsd-ruby>=1.4.0<2:devel/rubygem-statsd-ruby USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= bin/setup .include diff --git a/devel/rubygem-nsa-rails61/Makefile b/devel/rubygem-nsa-rails61/Makefile index 692ad764a5bc..9e866fd1c85f 100644 --- a/devel/rubygem-nsa-rails61/Makefile +++ b/devel/rubygem-nsa-rails61/Makefile @@ -1,23 +1,22 @@ PORTNAME= nsa PORTVERSION= 0.2.8 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= bofh@FreeBSD.org COMMENT= Deliver Rails ActiveSupport::Notifications to a Statsd backend WWW= https://github.com/localshred/nsa RUN_DEPENDS= rubygem-activesupport61>=4.2<7:devel/rubygem-activesupport61 \ rubygem-concurrent-ruby>=1.0.2<2:devel/rubygem-concurrent-ruby \ rubygem-sidekiq>=3.5:devel/rubygem-sidekiq \ rubygem-statsd-ruby>=1.4.0<2:devel/rubygem-statsd-ruby USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= bin/setup .include diff --git a/devel/rubygem-numerizer/Makefile b/devel/rubygem-numerizer/Makefile index 462a509bf6fa..2e6e1e53cc4c 100644 --- a/devel/rubygem-numerizer/Makefile +++ b/devel/rubygem-numerizer/Makefile @@ -1,18 +1,17 @@ PORTNAME= numerizer PORTVERSION= 0.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Parse numbers in natural language from strings WWW= https://github.com/jduff/numerizer LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-oci/Makefile b/devel/rubygem-oci/Makefile index 02c98285794d..8cc61210add5 100644 --- a/devel/rubygem-oci/Makefile +++ b/devel/rubygem-oci/Makefile @@ -1,21 +1,20 @@ PORTNAME= oci DISTVERSION= 2.18.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ale_sagra@hotmail.com COMMENT= Ruby client for the Oracle Cloud Infrastructure API WWW= https://github.com/oracle/oci-ruby-sdk/ LICENSE= APACHE20 RUN_DEPENDS= rubygem-inifile>=3.0.0:textproc/rubygem-inifile \ rubygem-json>=1.4.6:devel/rubygem-json \ rubygem-jwt>2.1:www/rubygem-jwt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-octopress-hooks/Makefile b/devel/rubygem-octopress-hooks/Makefile index d3bd7ee4f958..14bc8ef54c6f 100644 --- a/devel/rubygem-octopress-hooks/Makefile +++ b/devel/rubygem-octopress-hooks/Makefile @@ -1,21 +1,20 @@ PORTNAME= octopress-hooks PORTVERSION= 2.6.2 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Allows access to Jekyll data at different internal processing stages WWW= https://github.com/octopress/hooks LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-jekyll3>=2.0:www/rubygem-jekyll3 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-oj-introspect/Makefile b/devel/rubygem-oj-introspect/Makefile index ba1da0bf6608..27941cc498ba 100644 --- a/devel/rubygem-oj-introspect/Makefile +++ b/devel/rubygem-oj-introspect/Makefile @@ -1,22 +1,21 @@ PORTNAME= oj-introspect PORTVERSION= 0.7.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Embeds start and end byte offsets of JSON objects WWW= https://github.com/meinac/oj-introspect LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt MY_DEPENDS= rubygem-oj>=3.13.23<3.14:devel/rubygem-oj BUILD_DEPENDS= ${MY_DEPENDS} RUN_DEPENDS= ${MY_DEPENDS} USES= gem -USE_RUBY= yes -#USE_RUBY_EXTCONF= yes +#USES+= ruby:extconf #RUBY_EXTCONF_SUBDIRS= ext/oj-introspect .include diff --git a/devel/rubygem-oj/Makefile b/devel/rubygem-oj/Makefile index 156888b18cd7..8bdf67403bc5 100644 --- a/devel/rubygem-oj/Makefile +++ b/devel/rubygem-oj/Makefile @@ -1,23 +1,22 @@ PORTNAME= oj PORTVERSION= 3.13.23 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Fast JSON parser and serializer WWW= https://www.ohler.com/oj/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes # TODO: find a better way to do this # Copy all header file, as it is required by rubygem-oj-introspect post-install: cd ${WRKSRC}/ext/oj && ${FIND} * -name "*.h" -type f -exec ${INSTALL_DATA} {} "${STAGEDIR}${PREFIX}/${GEMS_DIR}/${PORTNAME}-${PORTVERSION}/ext/oj/{}" \; .include diff --git a/devel/rubygem-omniauth_crowd/Makefile b/devel/rubygem-omniauth_crowd/Makefile index 9fbd77619f2a..b5c9183e878f 100644 --- a/devel/rubygem-omniauth_crowd/Makefile +++ b/devel/rubygem-omniauth_crowd/Makefile @@ -1,23 +1,22 @@ PORTNAME= omniauth_crowd PORTVERSION= 2.4.0 PORTREVISION= 3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= OmniAuth provider for Atlassian Crowds REST API WWW= https://github.com/robdimarco/omniauth_crowd LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS?= rubygem-activesupport61>=0:devel/rubygem-activesupport61 \ rubygem-nokogiri>=1.4.4:textproc/rubygem-nokogiri \ rubygem-omniauth1>=1.0<2:security/rubygem-omniauth1 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-omnibus/Makefile b/devel/rubygem-omnibus/Makefile index 0e70d6e2d3a0..93e000a4bc86 100644 --- a/devel/rubygem-omnibus/Makefile +++ b/devel/rubygem-omnibus/Makefile @@ -1,33 +1,32 @@ PORTNAME= omnibus PORTVERSION= 8.3.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Framework for building self-installing, full-stack software builds WWW= https://github.com/chef/omnibus LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-aws-sdk-s3>=1<2:devel/rubygem-aws-sdk-s3 \ rubygem-chef-cleanroom>=1.0<2:sysutils/rubygem-chef-cleanroom \ rubygem-chef-utils>=15.4:sysutils/rubygem-chef-utils \ rubygem-contracts016>=0.16.0<0.17.0:devel/rubygem-contracts016 \ rubygem-ffi-yajl>=2.2<3:devel/rubygem-ffi-yajl \ rubygem-license_scout>=1.0:sysutils/rubygem-license_scout \ rubygem-mixlib-shellout>=2.0<4.0:devel/rubygem-mixlib-shellout \ rubygem-mixlib-versioning>=0:devel/rubygem-mixlib-versioning \ rubygem-ohai>=15<18:sysutils/rubygem-ohai \ rubygem-pedump>=0:devel/rubygem-pedump \ rubygem-ruby-progressbar>=1.7<2:devel/rubygem-ruby-progressbar \ rubygem-thor>=0.18<2.0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/omnibus .include diff --git a/devel/rubygem-open3/Makefile b/devel/rubygem-open3/Makefile index 1b0330dea32d..82d1e00e2843 100644 --- a/devel/rubygem-open3/Makefile +++ b/devel/rubygem-open3/Makefile @@ -1,19 +1,18 @@ PORTNAME= open3 PORTVERSION= 0.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Popen, but with stderr, too WWW= https://github.com/ruby/open3 LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-open3_backport/Makefile b/devel/rubygem-open3_backport/Makefile index 668a7abb3894..5117f8131719 100644 --- a/devel/rubygem-open3_backport/Makefile +++ b/devel/rubygem-open3_backport/Makefile @@ -1,20 +1,19 @@ PORTNAME= open3_backport PORTVERSION= 0.0.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= robak@FreeBSD.org COMMENT= Backport of Ruby 1.9's Open3 methods for Ruby 1.8 WWW= https://github.com/kindkid/open3_backport LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual RUN_DEPENDS= rubygem-open4>=1.3:devel/rubygem-open4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-open4/Makefile b/devel/rubygem-open4/Makefile index 84dc173c0e8c..c5c458d9fb19 100644 --- a/devel/rubygem-open4/Makefile +++ b/devel/rubygem-open4/Makefile @@ -1,18 +1,17 @@ PORTNAME= open4 PORTVERSION= 1.3.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Open4 manages child processes and their io handles WWW= https://github.com/ahoward/open4 LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-opentracing/Makefile b/devel/rubygem-opentracing/Makefile index 68a15c665655..3a0d030d23c1 100644 --- a/devel/rubygem-opentracing/Makefile +++ b/devel/rubygem-opentracing/Makefile @@ -1,18 +1,17 @@ PORTNAME= opentracing PORTVERSION= 0.5.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= OpenTracing Ruby Platform API WWW= https://github.com/opentracing/opentracing-ruby LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-opt_parse_validator/Makefile b/devel/rubygem-opt_parse_validator/Makefile index 767fbf6c9a00..f98da7b0bc43 100644 --- a/devel/rubygem-opt_parse_validator/Makefile +++ b/devel/rubygem-opt_parse_validator/Makefile @@ -1,22 +1,21 @@ PORTNAME= opt_parse_validator PORTVERSION= 1.9.3 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= rihaz.jerrin@gmail.com COMMENT= Implementation of validators for the ruby OptionParser lib WWW= https://github.com/wpscanteam/OptParseValidator LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport60>=5.2<6.2.0:devel/rubygem-activesupport60 \ rubygem-addressable>=2.5<2.9:www/rubygem-addressable USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-optimist/Makefile b/devel/rubygem-optimist/Makefile index 171c95cc55ad..d56bf4f3124b 100644 --- a/devel/rubygem-optimist/Makefile +++ b/devel/rubygem-optimist/Makefile @@ -1,18 +1,17 @@ PORTNAME= optimist PORTVERSION= 3.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Command-line option parser for Ruby WWW= https://manageiq.github.io/optimist/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-optparse/Makefile b/devel/rubygem-optparse/Makefile index 4d576f5c60b6..935a8ef600eb 100644 --- a/devel/rubygem-optparse/Makefile +++ b/devel/rubygem-optparse/Makefile @@ -1,19 +1,18 @@ PORTNAME= optparse PORTVERSION= 0.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Class for command-line option analysis WWW= https://github.com/ruby/optparse LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_RUBY= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-orm_adapter/Makefile b/devel/rubygem-orm_adapter/Makefile index 941512b07112..201d6ffc7b4f 100644 --- a/devel/rubygem-orm_adapter/Makefile +++ b/devel/rubygem-orm_adapter/Makefile @@ -1,17 +1,16 @@ PORTNAME= orm_adapter PORTVERSION= 0.5.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provides a single point of entry for using basic features of ruby ORMs WWW= https://github.com/ianwhite/orm_adapter LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-os/Makefile b/devel/rubygem-os/Makefile index b8e09aa2ab32..dad1a1213672 100644 --- a/devel/rubygem-os/Makefile +++ b/devel/rubygem-os/Makefile @@ -1,18 +1,17 @@ PORTNAME= os PORTVERSION= 1.1.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Allows for some useful and easy functions WWW= https://github.com/rdp/os LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-ostruct/Makefile b/devel/rubygem-ostruct/Makefile index af4af57f1692..da44d00aadb8 100644 --- a/devel/rubygem-ostruct/Makefile +++ b/devel/rubygem-ostruct/Makefile @@ -1,19 +1,18 @@ PORTNAME= ostruct PORTVERSION= 0.5.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Class to build custom data structures, similar to a Hash WWW= https://github.com/ruby/ostruct LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-p4ruby/Makefile b/devel/rubygem-p4ruby/Makefile index b64625d43b13..5ff06dac7715 100644 --- a/devel/rubygem-p4ruby/Makefile +++ b/devel/rubygem-p4ruby/Makefile @@ -1,20 +1,19 @@ PORTNAME= p4ruby PORTVERSION= 2017.1.1599185 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ports@FreeBSD.org COMMENT= Ruby bindings for the Perforce API WWW= http://www.perforce.com/perforce/loadsupp.html LICENSE= BSD2CLAUSE 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 .include diff --git a/devel/rubygem-paint/Makefile b/devel/rubygem-paint/Makefile index 48badd4113e2..3c8f1cf4a4c3 100644 --- a/devel/rubygem-paint/Makefile +++ b/devel/rubygem-paint/Makefile @@ -1,18 +1,17 @@ PORTNAME= paint PORTVERSION= 2.3.0 CATEGORIES= devel MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Terminal painter WWW= https://github.com/janlelis/paint LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-pairing_heap/Makefile b/devel/rubygem-pairing_heap/Makefile index cd56ea69c5fa..72b70ca67de9 100644 --- a/devel/rubygem-pairing_heap/Makefile +++ b/devel/rubygem-pairing_heap/Makefile @@ -1,18 +1,17 @@ PORTNAME= pairing_heap PORTVERSION= 1.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Performant priority queue with support for changing priority WWW= https://github.com/mhib/pairing_heap LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-paperclip-rails5/Makefile b/devel/rubygem-paperclip-rails5/Makefile index 5460c32f6b8f..0b5cf3181e19 100644 --- a/devel/rubygem-paperclip-rails5/Makefile +++ b/devel/rubygem-paperclip-rails5/Makefile @@ -1,37 +1,36 @@ PORTNAME= paperclip DISTVERSION= 6.1.0 PORTREVISION= 2 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= ruby@FreeBSD.org COMMENT= Easy upload management for ActiveRecord WWW= https://github.com/thoughtbot/paperclip LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activemodel5>=4.2.0:databases/rubygem-activemodel5 \ rubygem-activesupport5>=4.2.0:devel/rubygem-activesupport5 \ rubygem-mimemagic>=0.3.0:misc/rubygem-mimemagic \ rubygem-mime-types>=0:misc/rubygem-mime-types \ rubygem-terrapin>=0.6.0:devel/rubygem-terrapin USES= cpe gem CPE_VENDOR= thoughtbot -USE_RUBY= yes NO_ARCH= yes OPTIONS_SINGLE= IMAGEMAGICK OPTIONS_SINGLE_IMAGEMAGICK= IMX11 IMNOX11 OPTIONS_DEFAULT= IMNOX11 IMNOX11_DESC= Depend on ImageMagick without X11 support IMX11_DESC= Depend on ImageMagick with X11 support IMNOX11_USES= magick:6,run,nox11 IMX11_USES= magick:6,run .include diff --git a/devel/rubygem-paperclip-rails50/Makefile b/devel/rubygem-paperclip-rails50/Makefile index 72754b20e97b..3d07637d7270 100644 --- a/devel/rubygem-paperclip-rails50/Makefile +++ b/devel/rubygem-paperclip-rails50/Makefile @@ -1,25 +1,24 @@ PORTNAME= paperclip PORTVERSION= 6.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= ruby@FreeBSD.org COMMENT= Easy upload management for ActiveRecord WWW= https://github.com/thoughtbot/paperclip LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activemodel50>0:databases/rubygem-activemodel50 \ rubygem-activesupport50>=0:devel/rubygem-activesupport50 \ rubygem-mimemagic>=0.3.0:misc/rubygem-mimemagic \ rubygem-mime-types>=0:misc/rubygem-mime-types \ rubygem-terrapin>=0.6.0:devel/rubygem-terrapin NO_ARCH= yes -USE_RUBY= yes USES= cpe gem magick:7,nox11,run CPE_VENDOR= thoughtbot .include diff --git a/devel/rubygem-parser/Makefile b/devel/rubygem-parser/Makefile index 609dc34b5a03..d3d5deb470b0 100644 --- a/devel/rubygem-parser/Makefile +++ b/devel/rubygem-parser/Makefile @@ -1,23 +1,22 @@ PORTNAME= parser PORTVERSION= 3.1.2.1 CATEGORIES= devel ruby MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby parser written in pure Ruby WWW= https://github.com/whitequark/parser LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ast>=2.4.1<2.5:devel/rubygem-ast USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/ruby-parse \ bin/ruby-rewrite .include diff --git a/devel/rubygem-pastel/Makefile b/devel/rubygem-pastel/Makefile index a97bdf766dc1..caf53b8bbbef 100644 --- a/devel/rubygem-pastel/Makefile +++ b/devel/rubygem-pastel/Makefile @@ -1,20 +1,19 @@ PORTNAME= pastel PORTVERSION= 0.8.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Terminal strings styling with intuitive and clean API WWW= https://github.com/piotrmurach/pastel LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-tty-color>=0.5<1:devel/rubygem-tty-color USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-patch_finder/Makefile b/devel/rubygem-patch_finder/Makefile index efb768035850..c64bf4860c6d 100644 --- a/devel/rubygem-patch_finder/Makefile +++ b/devel/rubygem-patch_finder/Makefile @@ -1,19 +1,18 @@ PORTNAME= patch_finder PORTVERSION= 1.0.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Generic Patch Finder WWW= https://github.com/wchen-r7/Patch-Finder LICENSE= BSD3CLAUSE NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/msu_finder .include diff --git a/devel/rubygem-pathname/Makefile b/devel/rubygem-pathname/Makefile index 255cc9853b90..dc05c7058eaf 100644 --- a/devel/rubygem-pathname/Makefile +++ b/devel/rubygem-pathname/Makefile @@ -1,17 +1,16 @@ PORTNAME= pathname PORTVERSION= 0.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Representation of the name of a file or directory on the filesystem WWW= https://github.com/ruby/pathname LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-pathspec/Makefile b/devel/rubygem-pathspec/Makefile index 315b02b64e0c..2296569de0cf 100644 --- a/devel/rubygem-pathspec/Makefile +++ b/devel/rubygem-pathspec/Makefile @@ -1,20 +1,19 @@ PORTNAME= pathspec PORTVERSION= 1.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= puppet@FreeBSD.org COMMENT= Match path specifications, such as .gitignore WWW= https://rubygems.org/gems/pathspec LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/pathspec-rb .include diff --git a/devel/rubygem-pathutil/Makefile b/devel/rubygem-pathutil/Makefile index d2e28b226b77..5e525f31356f 100644 --- a/devel/rubygem-pathutil/Makefile +++ b/devel/rubygem-pathutil/Makefile @@ -1,20 +1,19 @@ PORTNAME= pathutil PORTVERSION= 0.16.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Like Pathname but a little less insane WWW= https://github.com/envygeeks/pathutil LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-forwardable-extended>=2.6<3:devel/rubygem-forwardable-extended USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-pdk/Makefile b/devel/rubygem-pdk/Makefile index 0231ed2ceb9c..8877b662d20a 100644 --- a/devel/rubygem-pdk/Makefile +++ b/devel/rubygem-pdk/Makefile @@ -1,42 +1,41 @@ PORTNAME= pdk PORTVERSION= 2.5.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= puppet@FreeBSD.org COMMENT= CLI for development of Puppet modules WWW= https://github.com/puppetlabs/pdk LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_RUBY30= yes BROKEN_RUBY31= yes RUN_DEPENDS= rubygem-bundler>=1.15.0,1<3.0.0,1:sysutils/rubygem-bundler \ rubygem-childprocess>=4.0.0:devel/rubygem-childprocess \ rubygem-concurrent-ruby>=1.1.5<1.2:devel/rubygem-concurrent-ruby \ rubygem-cri>=2.10<3:devel/rubygem-cri \ rubygem-deep_merge>=1.1<2:devel/rubygem-deep_merge \ rubygem-diff-lcs>=1.4.4:textproc/rubygem-diff-lcs \ rubygem-facter>=2.5.1<5.0.0:sysutils/rubygem-facter \ rubygem-ffi>=1.9.25<2.0.0:devel/rubygem-ffi \ rubygem-gettext-setup>=0.24<1:devel/rubygem-gettext-setup \ rubygem-hitimes>=2.0.0<2.0.0_99:devel/rubygem-hitimes \ rubygem-httpclient>=2.8.3<2.9:www/rubygem-httpclient \ rubygem-json_pure>=2.5.1:devel/rubygem-json_pure \ rubygem-json-schema>=2.8.0:devel/rubygem-json-schema \ rubygem-minitar>=0.6<1:archivers/rubygem-minitar \ rubygem-pathspec>=0.2.1:devel/rubygem-pathspec \ rubygem-tty-prompt>=0.22<1:devel/rubygem-tty-prompt \ rubygem-tty-spinner>=0.5<1:devel/rubygem-tty-spinner \ rubygem-tty-which>=0.3<1:devel/rubygem-tty-which USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/pdk .include diff --git a/devel/rubygem-pedump/Makefile b/devel/rubygem-pedump/Makefile index 3e1a9f24c676..5e15b8c5334c 100644 --- a/devel/rubygem-pedump/Makefile +++ b/devel/rubygem-pedump/Makefile @@ -1,26 +1,25 @@ PORTNAME= pedump PORTVERSION= 0.6.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Dump headers, sections, extract resources of Win32 PE exe, dll, etc WWW= https://github.com/zed-0xff/pedump LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-awesome_print>=0:devel/rubygem-awesome_print \ rubygem-iostruct>=0.0.4:devel/rubygem-iostruct \ rubygem-multipart-post>=2.0.0:www/rubygem-multipart-post \ rubygem-rainbow>=0:devel/rubygem-rainbow \ rubygem-zhexdump>=0.0.2:devel/rubygem-zhexdump USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/pedump .include diff --git a/devel/rubygem-peek-gc-rails52/Makefile b/devel/rubygem-peek-gc-rails52/Makefile index 3e8e165a8bb8..86c5a6ed6cce 100644 --- a/devel/rubygem-peek-gc-rails52/Makefile +++ b/devel/rubygem-peek-gc-rails52/Makefile @@ -1,21 +1,20 @@ PORTNAME= peek-gc PORTVERSION= 0.0.2 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= mfechner@FreeBSD.org COMMENT= Take a peek into the GC info of your Rails application WWW= https://github.com/peek/peek-gc LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-peek-rails52>=0:devel/rubygem-peek-rails52 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-peek-host/Makefile b/devel/rubygem-peek-host/Makefile index 25a4ab769c26..4faa4514378c 100644 --- a/devel/rubygem-peek-host/Makefile +++ b/devel/rubygem-peek-host/Makefile @@ -1,19 +1,18 @@ PORTNAME= peek-host PORTVERSION= 1.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Take a peek into the host which served your Rails request WWW= https://github.com/jacobbednarz/peek-host LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-peek>=0:devel/rubygem-peek NO_ARCH= yes USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-peek-performance_bar/Makefile b/devel/rubygem-peek-performance_bar/Makefile index 5f00d5374279..92ae0914cb69 100644 --- a/devel/rubygem-peek-performance_bar/Makefile +++ b/devel/rubygem-peek-performance_bar/Makefile @@ -1,19 +1,18 @@ PORTNAME= peek-performance_bar PORTVERSION= 1.3.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Take a peek into the window.performance timing behind your app WWW= https://github.com/peek/peek-performance_bar LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-peek>=0.1.0:devel/rubygem-peek NO_ARCH= yes USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-peek-rails4/Makefile b/devel/rubygem-peek-rails4/Makefile index 885a65deb84e..8594cec17550 100644 --- a/devel/rubygem-peek-rails4/Makefile +++ b/devel/rubygem-peek-rails4/Makefile @@ -1,21 +1,20 @@ PORTNAME= peek PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails4 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Take a peek into your Rails application WWW= https://github.com/peek/peek LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-railties4>=4.0.0:www/rubygem-railties4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-peek-rails52/Makefile b/devel/rubygem-peek-rails52/Makefile index 77b808d01914..c227b323270f 100644 --- a/devel/rubygem-peek-rails52/Makefile +++ b/devel/rubygem-peek-rails52/Makefile @@ -1,21 +1,20 @@ PORTNAME= peek PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= mfechner@FreeBSD.org COMMENT= Take a peek into your Rails application WWW= https://github.com/peek/peek LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-railties52>=4.0.0:www/rubygem-railties52 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-peek-rails60/Makefile b/devel/rubygem-peek-rails60/Makefile index 2399e7bfee26..92e193e6abaa 100644 --- a/devel/rubygem-peek-rails60/Makefile +++ b/devel/rubygem-peek-rails60/Makefile @@ -1,21 +1,20 @@ PORTNAME= peek PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails60 MAINTAINER= mfechner@FreeBSD.org COMMENT= Take a peek into your Rails application WWW= https://github.com/peek/peek LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-railties60>=4.0.0:www/rubygem-railties60 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-peek-rails61/Makefile b/devel/rubygem-peek-rails61/Makefile index 39c966c9c393..a9f607eeb869 100644 --- a/devel/rubygem-peek-rails61/Makefile +++ b/devel/rubygem-peek-rails61/Makefile @@ -1,21 +1,20 @@ PORTNAME= peek PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= mfechner@FreeBSD.org COMMENT= Take a peek into your Rails application WWW= https://github.com/peek/peek LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-railties61>=4.0.0:www/rubygem-railties61 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-peek-rblineprof-rails52/Makefile b/devel/rubygem-peek-rblineprof-rails52/Makefile index 63a3ba3cce46..d22634234df4 100644 --- a/devel/rubygem-peek-rblineprof-rails52/Makefile +++ b/devel/rubygem-peek-rblineprof-rails52/Makefile @@ -1,22 +1,21 @@ PORTNAME= peek-rblineprof PORTVERSION= 0.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= mfechner@FreeBSD.org COMMENT= Peek into how much each line of your Rails application takes WWW= https://github.com/peek/peek-rblineprof LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-peek-rails52>=0:devel/rubygem-peek-rails52 \ rubygem-rblineprof>=0:devel/rubygem-rblineprof USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-peek-redis-rails52/Makefile b/devel/rubygem-peek-redis-rails52/Makefile index 4cad0fe9c8a3..60aa977cb390 100644 --- a/devel/rubygem-peek-redis-rails52/Makefile +++ b/devel/rubygem-peek-redis-rails52/Makefile @@ -1,23 +1,22 @@ PORTNAME= peek-redis PORTVERSION= 1.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= mfechner@FreeBSD.org COMMENT= Provide a peek into the Redis calls made WWW= https://github.com/peek/peek-redis LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-atomic>=1.0.0:devel/rubygem-atomic \ rubygem-peek-rails52>=0:devel/rubygem-peek-rails52 \ rubygem-redis>=0:databases/rubygem-redis USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-peek/Makefile b/devel/rubygem-peek/Makefile index 60dc0a7147d5..fe8f83ed4714 100644 --- a/devel/rubygem-peek/Makefile +++ b/devel/rubygem-peek/Makefile @@ -1,27 +1,26 @@ PORTNAME= peek PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Take a peek into your Rails application WWW= https://github.com/peek/peek LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes OPTIONS_RADIO= RAILS OPTIONS_RADIO_RAILS= RAILS4 RAILS5 OPTIONS_DEFAULT=RAILS5 RAILS4_DESC= Use Rails 4 RAILS5_DESC= Use Rails 5 RAILS4_RUN_DEPENDS= rubygem-railties4>=4.0.0:www/rubygem-railties4 RAILS5_RUN_DEPENDS= rubygem-railties5>=4.0.0:www/rubygem-railties5 .include diff --git a/devel/rubygem-pkg-config/Makefile b/devel/rubygem-pkg-config/Makefile index b4901a1092a0..fc802401a9e7 100644 --- a/devel/rubygem-pkg-config/Makefile +++ b/devel/rubygem-pkg-config/Makefile @@ -1,18 +1,17 @@ PORTNAME= pkg-config PORTVERSION= 1.4.9 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= pkg-config implementation for Ruby WWW= https://github.com/ruby-gnome/pkg-config LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/LGPL-2.1 USES= gem pkgconfig -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-platform/Makefile b/devel/rubygem-platform/Makefile index f57835c5fb06..7570b6c66210 100644 --- a/devel/rubygem-platform/Makefile +++ b/devel/rubygem-platform/Makefile @@ -1,15 +1,14 @@ PORTNAME= platform PORTVERSION= 0.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG DISTNAME= Platform-${PORTVERSION} MAINTAINER= don@na.rim.or.jp COMMENT= Hopefully robust platform sensing WWW= https://github.com/berk/platform NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-pleaserun/Makefile b/devel/rubygem-pleaserun/Makefile index fa08eb11fb5a..5e9fe61eec70 100644 --- a/devel/rubygem-pleaserun/Makefile +++ b/devel/rubygem-pleaserun/Makefile @@ -1,26 +1,25 @@ PORTNAME= pleaserun PORTVERSION= 0.0.32 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Tool to generate startup scripts WWW= https://github.com/jordansissel/pleaserun LICENSE= APACHE20 RUN_DEPENDS= rubygem-cabin>=0:devel/rubygem-cabin \ rubygem-clamp>=0:devel/rubygem-clamp \ rubygem-dotenv>=0:misc/rubygem-dotenv \ rubygem-insist>=0:devel/rubygem-insist \ rubygem-mustache>=0.99.8:devel/rubygem-mustache \ rubygem-stud>=0:devel/rubygem-stud USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/please-manage-user bin/pleaserun .include diff --git a/devel/rubygem-plist/Makefile b/devel/rubygem-plist/Makefile index 2bf762a3e94a..995ce1806f06 100644 --- a/devel/rubygem-plist/Makefile +++ b/devel/rubygem-plist/Makefile @@ -1,18 +1,17 @@ PORTNAME= plist PORTVERSION= 3.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= renchap@cocoa-x.com COMMENT= All-purpose Property List manipulation library WWW= https://github.com/patsplat/plist LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-pluggaloid/Makefile b/devel/rubygem-pluggaloid/Makefile index 2c5c7a7cc536..ffc745c3e4c0 100644 --- a/devel/rubygem-pluggaloid/Makefile +++ b/devel/rubygem-pluggaloid/Makefile @@ -1,21 +1,20 @@ PORTNAME= pluggaloid PORTVERSION= 1.7.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= meta@FreeBSD.org COMMENT= Extensible plugin system for mikutter WWW= https://github.com/toshia/pluggaloid LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-delayer>=1.1.0:devel/rubygem-delayer \ rubygem-instance_storage>=1.0.0<2:devel/rubygem-instance_storage USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-polyamorous/Makefile b/devel/rubygem-polyamorous/Makefile index d3af6b37fe10..f203a320b917 100644 --- a/devel/rubygem-polyamorous/Makefile +++ b/devel/rubygem-polyamorous/Makefile @@ -1,19 +1,18 @@ PORTNAME= polyamorous PORTVERSION= 2.3.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Extraction of shared code from the Active Record Hackery gems WWW= https://github.com/activerecord-hackery/ransack/tree/master/polyamorous LICENSE= MIT RUN_DEPENDS= rubygem-activerecord52>=5.2.1:databases/rubygem-activerecord52 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-polyglot/Makefile b/devel/rubygem-polyglot/Makefile index cea89e4b7ffe..a1f4d7eeab27 100644 --- a/devel/rubygem-polyglot/Makefile +++ b/devel/rubygem-polyglot/Makefile @@ -1,17 +1,16 @@ PORTNAME= polyglot PORTVERSION= 0.3.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provides a registry of file types WWW= https://github.com/cjheath/polyglot LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-popen4/Makefile b/devel/rubygem-popen4/Makefile index 23fe5144b24f..765510183cfa 100644 --- a/devel/rubygem-popen4/Makefile +++ b/devel/rubygem-popen4/Makefile @@ -1,22 +1,21 @@ PORTNAME= popen4 PORTVERSION= 0.1.4 CATEGORIES= devel rubygems MASTER_SITES= RG DISTNAME= POpen4-${PORTVERSION} MAINTAINER= ruby@FreeBSD.org COMMENT= Cross platform API for managing child processes WWW= https://github.com/shairontoledo/popen4 LICENSE= GPLv2 RUBY LICENSE_COMB= dual LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-open4>=0.4.0:devel/rubygem-open4 \ rubygem-platform>=0.4.0:devel/rubygem-platform NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-posix-spawn/Makefile b/devel/rubygem-posix-spawn/Makefile index e33fe9421b6b..77e7b5b7a7d1 100644 --- a/devel/rubygem-posix-spawn/Makefile +++ b/devel/rubygem-posix-spawn/Makefile @@ -1,18 +1,17 @@ PORTNAME= posix-spawn PORTVERSION= 0.3.15 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby wrapper for posix_spawnp(2) for faster process spawning WWW= https://github.com/rtomayko/posix-spawn LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes PLIST_FILES= bin/posix-spawn-benchmark .include diff --git a/devel/rubygem-power_assert/Makefile b/devel/rubygem-power_assert/Makefile index a000c225caf4..03016acffb7e 100644 --- a/devel/rubygem-power_assert/Makefile +++ b/devel/rubygem-power_assert/Makefile @@ -1,20 +1,19 @@ PORTNAME= power_assert PORTVERSION= 2.0.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Power Assert for Ruby WWW= https://github.com/ruby/power_assert LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL LICENSE_FILE_RUBY= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-powerbar/Makefile b/devel/rubygem-powerbar/Makefile index ebeaa76af91c..8d3a98f4bc0a 100644 --- a/devel/rubygem-powerbar/Makefile +++ b/devel/rubygem-powerbar/Makefile @@ -1,20 +1,19 @@ PORTNAME= powerbar PORTVERSION= 1.0.18 CATEGORIES= devel ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Progressbar library for Ruby WWW= https://github.com/busyloop/powerbar LICENSE= MIT RUN_DEPENDS= rubygem-hashie>=1.1.0:devel/rubygem-hashie NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/powerbar-demo .include diff --git a/devel/rubygem-powerpack/Makefile b/devel/rubygem-powerpack/Makefile index 375899a97723..013e088cd8e6 100644 --- a/devel/rubygem-powerpack/Makefile +++ b/devel/rubygem-powerpack/Makefile @@ -1,18 +1,17 @@ PORTNAME= powerpack PORTVERSION= 0.1.3 CATEGORIES= devel ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Extensions to core Ruby classes WWW= https://github.com/bbatsov/powerpack LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-pp/Makefile b/devel/rubygem-pp/Makefile index b3e7e69f9436..3faf6ca7c01b 100644 --- a/devel/rubygem-pp/Makefile +++ b/devel/rubygem-pp/Makefile @@ -1,21 +1,20 @@ PORTNAME= pp PORTVERSION= 0.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Provide a PrettyPrinter for Ruby objects WWW= https://github.com/ruby/pp LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-prettyprint>=0:devel/rubygem-prettyprint USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-pqueue/Makefile b/devel/rubygem-pqueue/Makefile index 356e84c69f0f..07b7ed512ec0 100644 --- a/devel/rubygem-pqueue/Makefile +++ b/devel/rubygem-pqueue/Makefile @@ -1,17 +1,16 @@ PORTNAME= pqueue PORTVERSION= 2.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Priority queue class for Ruby WWW= https://rubyworks.github.io/pqueue/ LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/License.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-prettyprint/Makefile b/devel/rubygem-prettyprint/Makefile index cc69d9afcf1a..4724b1602663 100644 --- a/devel/rubygem-prettyprint/Makefile +++ b/devel/rubygem-prettyprint/Makefile @@ -1,19 +1,18 @@ PORTNAME= prettyprint PORTVERSION= 0.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Pretty printing algorithm for readable structure WWW= https://github.com/ruby/prettyprint LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-profile/Makefile b/devel/rubygem-profile/Makefile index cd4faae3e71b..db73f42eed7f 100644 --- a/devel/rubygem-profile/Makefile +++ b/devel/rubygem-profile/Makefile @@ -1,15 +1,14 @@ PORTNAME= profile PORTVERSION= 0.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Profile your Ruby application WWW= https://github.com/ruby/profile USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-progressbar/Makefile b/devel/rubygem-progressbar/Makefile index 0c61436bc948..98e124b696bf 100644 --- a/devel/rubygem-progressbar/Makefile +++ b/devel/rubygem-progressbar/Makefile @@ -1,18 +1,17 @@ PORTNAME= progressbar PORTVERSION= 1.11.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby/ProgressBar is a text progress bar library for Ruby WWW= https://github.com/jfelchner/ruby-progressbar LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-prometheus-client-mmap/Makefile b/devel/rubygem-prometheus-client-mmap/Makefile index 331518a486ee..50d641c178cd 100644 --- a/devel/rubygem-prometheus-client-mmap/Makefile +++ b/devel/rubygem-prometheus-client-mmap/Makefile @@ -1,15 +1,14 @@ PORTNAME= prometheus-client-mmap DISTVERSION= 0.16.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Suite of instrumentation metric primitives WWW= https://gitlab.com/gitlab-org/prometheus-client-mmap LICENSE= APACHE20 USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-protected_attributes/Makefile b/devel/rubygem-protected_attributes/Makefile index 65760fb69aa6..1f2dfd48c5a4 100644 --- a/devel/rubygem-protected_attributes/Makefile +++ b/devel/rubygem-protected_attributes/Makefile @@ -1,20 +1,19 @@ PORTNAME= protected_attributes PORTVERSION= 1.1.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Protect attributes from mass assignment WWW= https://github.com/rails/protected_attributes LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activemodel4>=4.0.1<5.0:databases/rubygem-activemodel4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-protobuf-cucumber/Makefile b/devel/rubygem-protobuf-cucumber/Makefile index 218e8105b397..92a9c15cc06f 100644 --- a/devel/rubygem-protobuf-cucumber/Makefile +++ b/devel/rubygem-protobuf-cucumber/Makefile @@ -1,26 +1,25 @@ PORTNAME= protobuf-cucumber PORTVERSION= 3.10.8 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Protocol Buffers serialization and RPC implementation for Cucumber WWW= https://github.com/cucumber/protobuf LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activesupport60>=3.2:devel/rubygem-activesupport60 \ rubygem-middleware>=0:devel/rubygem-middleware \ rubygem-thor>=0:devel/rubygem-thor \ rubygem-thread_safe>=0:devel/rubygem-thread_safe USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/protoc-gen-ruby \ bin/rpc_server .include diff --git a/devel/rubygem-protocol/Makefile b/devel/rubygem-protocol/Makefile index 93d41d2dc9ff..269cd59d8f61 100644 --- a/devel/rubygem-protocol/Makefile +++ b/devel/rubygem-protocol/Makefile @@ -1,20 +1,19 @@ PORTNAME= protocol PORTVERSION= 2.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Method Protocols for Ruby Classes WWW= https://flori.github.io/protocol/ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-ruby_parser>=3.0<4:devel/rubygem-ruby_parser USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-pry-byebug/Makefile b/devel/rubygem-pry-byebug/Makefile index 6e6b99be325b..8ea758758c47 100644 --- a/devel/rubygem-pry-byebug/Makefile +++ b/devel/rubygem-pry-byebug/Makefile @@ -1,21 +1,20 @@ PORTNAME= pry-byebug PORTVERSION= 3.10.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Fast debugging with Pry WWW= https://github.com/deivid-rodriguez/pry-byebug LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-byebug>=11.0<12:devel/rubygem-byebug \ rubygem-pry>=0.13<0.15:devel/rubygem-pry USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-pry-rails/Makefile b/devel/rubygem-pry-rails/Makefile index 250a563ba5c7..46c17292bb37 100644 --- a/devel/rubygem-pry-rails/Makefile +++ b/devel/rubygem-pry-rails/Makefile @@ -1,20 +1,19 @@ PORTNAME= pry-rails PORTVERSION= 0.3.9 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Use Pry as your rails console WWW= https://github.com/rweng/pry-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENCE RUN_DEPENDS= rubygem-pry>=0.10.4:devel/rubygem-pry USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-pry-remote-em/Makefile b/devel/rubygem-pry-remote-em/Makefile index 48cea82c1af0..94af6308e0da 100644 --- a/devel/rubygem-pry-remote-em/Makefile +++ b/devel/rubygem-pry-remote-em/Makefile @@ -1,26 +1,25 @@ PORTNAME= pry-remote-em PORTVERSION= 1.1.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Connect to Pry remotely using EventMachine WWW= https://github.com/gruis/pry-remote-em LICENSE= MIT RUN_DEPENDS= rubygem-eventmachine>=1<2:devel/rubygem-eventmachine \ rubygem-highline>=2.0<3:devel/rubygem-highline \ rubygem-msgpack>=1<2:devel/rubygem-msgpack \ rubygem-pry>=0.11<1:devel/rubygem-pry \ rubygem-ruby-termios>=1.0<2:comms/rubygem-ruby-termios USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/pry-remote-em \ bin/pry-remote-em-broker .include diff --git a/devel/rubygem-pry-remote/Makefile b/devel/rubygem-pry-remote/Makefile index 42faf2382d33..6d712ccac611 100644 --- a/devel/rubygem-pry-remote/Makefile +++ b/devel/rubygem-pry-remote/Makefile @@ -1,23 +1,22 @@ PORTNAME= pry-remote PORTVERSION= 0.1.8 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Connect to Pry remotely using DRb WWW= https://github.com/Mon-Ouie/pry-remote LICENSE= ZLIB LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-pry>=0.9<1:devel/rubygem-pry \ rubygem-slop3>=3.0<4:devel/rubygem-slop3 USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/pry-remote .include diff --git a/devel/rubygem-pry/Makefile b/devel/rubygem-pry/Makefile index 9711d392a84f..bcba15b9f841 100644 --- a/devel/rubygem-pry/Makefile +++ b/devel/rubygem-pry/Makefile @@ -1,23 +1,22 @@ PORTNAME= pry PORTVERSION= 0.14.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= IRB alternative and runtime developer console WWW= http://pryrepl.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-coderay>=1.1<2:textproc/rubygem-coderay \ rubygem-method_source>=1.0<2:devel/rubygem-method_source USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/pry .include diff --git a/devel/rubygem-pstore/Makefile b/devel/rubygem-pstore/Makefile index 86e307fe8590..47900fda3348 100644 --- a/devel/rubygem-pstore/Makefile +++ b/devel/rubygem-pstore/Makefile @@ -1,19 +1,18 @@ PORTNAME= pstore PORTVERSION= 0.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Transactional File Storage for Ruby Objects WWW= https://github.com/ruby/pstore LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-ptreloaded/Makefile b/devel/rubygem-ptreloaded/Makefile index bf74fb8481ed..014436935a4b 100644 --- a/devel/rubygem-ptreloaded/Makefile +++ b/devel/rubygem-ptreloaded/Makefile @@ -1,19 +1,18 @@ PORTNAME= ptreloaded PORTVERSION= 0.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG DISTNAME= ParseTreeReloaded-${PORTVERSION} MAINTAINER= tota@FreeBSD.org COMMENT= Reimplementation of ParseTree using RubyInlineAcceleration WWW= https://rubygems.org/gems/ptreloaded RUN_DEPENDS= rubygem-rubyinlineaccel>=0.0.1:devel/rubygem-rubyinlineaccel LICENSE= GPLv2 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-puppet-resource_api/Makefile b/devel/rubygem-puppet-resource_api/Makefile index 55ca706acedf..6a54fec0e46a 100644 --- a/devel/rubygem-puppet-resource_api/Makefile +++ b/devel/rubygem-puppet-resource_api/Makefile @@ -1,19 +1,18 @@ PORTNAME= puppet-resource_api PORTVERSION= 1.8.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= puppet@FreeBSD.org COMMENT= Simple way to write new native resources for puppet WWW= https://github.com/puppetlabs/puppet-resource_api LICENSE= APACHE20 RUN_DEPENDS= rubygem-hocon>=1.0:devel/rubygem-hocon USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-pygments.rb/Makefile b/devel/rubygem-pygments.rb/Makefile index 41bb5c8cb151..43acc2b9d7ee 100644 --- a/devel/rubygem-pygments.rb/Makefile +++ b/devel/rubygem-pygments.rb/Makefile @@ -1,22 +1,21 @@ PORTNAME= pygments.rb PORTVERSION= 2.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby wrapper for Pygments syntax highlighter WWW= https://github.com/pygments/pygments.rb LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem python:env shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= vendor/pygments-main/bin/pygmentize \ lib/pygments/mentos.py python_OLD_CMD= /usr/bin/python3.9 .include diff --git a/devel/rubygem-que-scheduler/Makefile b/devel/rubygem-que-scheduler/Makefile index cf58eda2cd84..35f8ff1eca13 100644 --- a/devel/rubygem-que-scheduler/Makefile +++ b/devel/rubygem-que-scheduler/Makefile @@ -1,22 +1,21 @@ PORTNAME= que-scheduler PORTVERSION= 4.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Lightweight cron scheduler for the Que async job worker WWW= https://github.com/hlascelles/que-scheduler LICENSE= MIT RUN_DEPENDS= rubygem-activesupport70>=5.0:devel/rubygem-activesupport70 \ rubygem-fugit>=1.1.8<2:devel/rubygem-fugit \ rubygem-hashie>=3<6:devel/rubygem-hashie \ rubygem-que>=0.14<3.0.0:devel/rubygem-que USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-que/Makefile b/devel/rubygem-que/Makefile index 8c88de411419..b4075917b5fb 100644 --- a/devel/rubygem-que/Makefile +++ b/devel/rubygem-que/Makefile @@ -1,23 +1,22 @@ PORTNAME= que PORTVERSION= 2.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Job queue that uses PostgreSQL advisory locks for speed and reliability WWW= https://github.com/que-rb/que LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/que SHEBANG_FILES= auto/* \ scripts/* .include diff --git a/devel/rubygem-r18n-core/Makefile b/devel/rubygem-r18n-core/Makefile index a412ae570440..ecc5c35aa905 100644 --- a/devel/rubygem-r18n-core/Makefile +++ b/devel/rubygem-r18n-core/Makefile @@ -1,18 +1,17 @@ PORTNAME= r18n-core PORTVERSION= 5.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= i18n tool to translate your Ruby application WWW= https://github.com/r18n/r18n-core LICENSE= LGPL3 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-r18n-desktop/Makefile b/devel/rubygem-r18n-desktop/Makefile index 0a0ef7065919..dee9abeb8c43 100644 --- a/devel/rubygem-r18n-desktop/Makefile +++ b/devel/rubygem-r18n-desktop/Makefile @@ -1,20 +1,19 @@ PORTNAME= r18n-desktop PORTVERSION= 5.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= i18n tool to translate your desktop application in several languages WWW= https://github.com/r18n/r18n-desktop LICENSE= LGPL3 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-r18n-core>=5.0<6:devel/rubygem-r18n-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-r18n-rails-api/Makefile b/devel/rubygem-r18n-rails-api/Makefile index 07cc0d98278b..ab9252e23bf9 100644 --- a/devel/rubygem-r18n-rails-api/Makefile +++ b/devel/rubygem-r18n-rails-api/Makefile @@ -1,21 +1,20 @@ PORTNAME= r18n-rails-api PORTVERSION= 5.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= R18n backend for Rails WWW= https://github.com/r18n/r18n-rails-api LICENSE= LGPL3 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-i18n>=1.0,2<2,2:devel/rubygem-i18n \ rubygem-r18n-core>=5.0<6:devel/rubygem-r18n-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-r18n-rails/Makefile b/devel/rubygem-r18n-rails/Makefile index 3d7bdfd6cc9c..d9be32fa3d9a 100644 --- a/devel/rubygem-r18n-rails/Makefile +++ b/devel/rubygem-r18n-rails/Makefile @@ -1,21 +1,20 @@ PORTNAME= r18n-rails PORTVERSION= 5.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Out-of-box R18n support for Ruby on Rails WWW= https://github.com/r18n/r18n-rails LICENSE= LGPL3 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-r18n-rails-api>=5.0<6:devel/rubygem-r18n-rails-api \ rubygem-rails60>=5.0<7:www/rubygem-rails60 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rabl-rails50/Makefile b/devel/rubygem-rabl-rails50/Makefile index 1bb79100c353..efef1341b67e 100644 --- a/devel/rubygem-rabl-rails50/Makefile +++ b/devel/rubygem-rabl-rails50/Makefile @@ -1,21 +1,20 @@ PORTNAME= rabl PORTVERSION= 0.16.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= ruby@FreeBSD.org COMMENT= General ruby templating with json, bson, xml and msgpack support WWW= https://github.com/nesquena/rabl LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport50>=2.3.14:devel/rubygem-activesupport50 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rabl/Makefile b/devel/rubygem-rabl/Makefile index 94130dd96bc1..8be753f1c7b2 100644 --- a/devel/rubygem-rabl/Makefile +++ b/devel/rubygem-rabl/Makefile @@ -1,20 +1,19 @@ PORTNAME= rabl PORTVERSION= 0.16.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= General ruby templating with json, bson, xml and msgpack support WWW= https://github.com/nesquena/rabl LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport5>=2.3.14:devel/rubygem-activesupport5 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-racc/Makefile b/devel/rubygem-racc/Makefile index f8c89383a5e5..e1dd35fde8f5 100644 --- a/devel/rubygem-racc/Makefile +++ b/devel/rubygem-racc/Makefile @@ -1,18 +1,17 @@ PORTNAME= racc PORTVERSION= 1.6.0 CATEGORIES= devel ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= LALR(1) parser generator for Ruby WWW= https://github.com/ruby/racc LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes PLIST_FILES= bin/racc .include diff --git a/devel/rubygem-rack-mini-profiler/Makefile b/devel/rubygem-rack-mini-profiler/Makefile index 336601dbb666..3f99b3892235 100644 --- a/devel/rubygem-rack-mini-profiler/Makefile +++ b/devel/rubygem-rack-mini-profiler/Makefile @@ -1,20 +1,19 @@ PORTNAME= rack-mini-profiler PORTVERSION= 3.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Profiles loading speed for rack applications WWW= https://miniprofiler.com/ \ https://github.com/MiniProfiler/rack-mini-profiler LICENSE= MIT RUN_DEPENDS= rubygem-rack>=1.2.0,3:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rack-raw-upload/Makefile b/devel/rubygem-rack-raw-upload/Makefile index 92e0610275c9..fb87f1a723d8 100644 --- a/devel/rubygem-rack-raw-upload/Makefile +++ b/devel/rubygem-rack-raw-upload/Makefile @@ -1,18 +1,17 @@ PORTNAME= rack-raw-upload PORTVERSION= 1.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Converts mimetype of application/octet-stream into normal form input WWW= https://github.com/New-Bamboo/rack-raw-upload LICENSE= MIT RUN_DEPENDS= rubygem-multi_json>=0:devel/rubygem-multi_json NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-rails-deprecated_sanitizer-rails5/Makefile b/devel/rubygem-rails-deprecated_sanitizer-rails5/Makefile index af28edc70506..9d90b44e55b7 100644 --- a/devel/rubygem-rails-deprecated_sanitizer-rails5/Makefile +++ b/devel/rubygem-rails-deprecated_sanitizer-rails5/Makefile @@ -1,20 +1,19 @@ PORTNAME= rails-deprecated_sanitizer PORTVERSION= 1.0.4 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= ruby@FreeBSD.org COMMENT= Deprecated sanitizer API extracted from Action View WWW= https://github.com/rails/rails-deprecated_sanitizer LICENSE= MIT RUN_DEPENDS= rubygem-activesupport5>=4.2.0:devel/rubygem-activesupport5 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rails-deprecated_sanitizer-rails50/Makefile b/devel/rubygem-rails-deprecated_sanitizer-rails50/Makefile index d5c2d0301f22..d7869aabe0d7 100644 --- a/devel/rubygem-rails-deprecated_sanitizer-rails50/Makefile +++ b/devel/rubygem-rails-deprecated_sanitizer-rails50/Makefile @@ -1,20 +1,19 @@ PORTNAME= rails-deprecated_sanitizer PORTVERSION= 1.0.4 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= ruby@FreeBSD.org COMMENT= Deprecated sanitizer API extracted from Action View WWW= https://github.com/rails/rails-deprecated_sanitizer LICENSE= MIT RUN_DEPENDS= rubygem-activesupport50>=4.2.0:devel/rubygem-activesupport50 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rails-deprecated_sanitizer/Makefile b/devel/rubygem-rails-deprecated_sanitizer/Makefile index 26b15c044833..361a6766957a 100644 --- a/devel/rubygem-rails-deprecated_sanitizer/Makefile +++ b/devel/rubygem-rails-deprecated_sanitizer/Makefile @@ -1,19 +1,18 @@ PORTNAME= rails-deprecated_sanitizer PORTVERSION= 1.0.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Deprecated sanitizer API extracted from Action View WWW= https://github.com/rails/rails-deprecated_sanitizer LICENSE= MIT RUN_DEPENDS= rubygem-activesupport4>=4.2.0:devel/rubygem-activesupport4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rails-i18n-rails5/Makefile b/devel/rubygem-rails-i18n-rails5/Makefile index 60d5b58adb15..6e7b68218f25 100644 --- a/devel/rubygem-rails-i18n-rails5/Makefile +++ b/devel/rubygem-rails-i18n-rails5/Makefile @@ -1,22 +1,21 @@ PORTNAME= rails-i18n PORTVERSION= 5.1.3 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= ruby@FreeBSD.org COMMENT= Common locale data and translations for Rails i18n WWW= https://github.com/svenfuchs/rails-i18n LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt RUN_DEPENDS= rubygem-i18n>=0.7,2<2,2:devel/rubygem-i18n \ rubygem-railties5>=5.0<6:www/rubygem-railties5 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rails-i18n-rails50/Makefile b/devel/rubygem-rails-i18n-rails50/Makefile index 2ee8fb8c62e1..eda39dc2d6b9 100644 --- a/devel/rubygem-rails-i18n-rails50/Makefile +++ b/devel/rubygem-rails-i18n-rails50/Makefile @@ -1,22 +1,21 @@ PORTNAME= rails-i18n PORTVERSION= 5.1.3 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= ruby@FreeBSD.org COMMENT= Common locale data and translations for Rails i18n WWW= https://github.com/svenfuchs/rails-i18n LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt RUN_DEPENDS= rubygem-i18n>=0.7,2<2,2:devel/rubygem-i18n \ rubygem-railties50>=5.0<6:www/rubygem-railties50 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rails-i18n-rails52/Makefile b/devel/rubygem-rails-i18n-rails52/Makefile index 61ba46ab685f..3dbf48c0bf34 100644 --- a/devel/rubygem-rails-i18n-rails52/Makefile +++ b/devel/rubygem-rails-i18n-rails52/Makefile @@ -1,22 +1,21 @@ PORTNAME= rails-i18n PORTVERSION= 5.1.3 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= ruby@FreeBSD.org COMMENT= Common locale data and translations for Rails i18n WWW= https://github.com/svenfuchs/rails-i18n LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt RUN_DEPENDS= rubygem-i18n>=0.7,2<2,2:devel/rubygem-i18n \ rubygem-railties52>=5.0<6:www/rubygem-railties52 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rails-i18n-rails60/Makefile b/devel/rubygem-rails-i18n-rails60/Makefile index a387d0fa6c40..92b0b47f84e6 100644 --- a/devel/rubygem-rails-i18n-rails60/Makefile +++ b/devel/rubygem-rails-i18n-rails60/Makefile @@ -1,22 +1,21 @@ PORTNAME= rails-i18n PORTVERSION= 6.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails60 MAINTAINER= ruby@FreeBSD.org COMMENT= Common locale data and translations for Rails i18n WWW= https://github.com/svenfuchs/rails-i18n LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt RUN_DEPENDS= rubygem-i18n>=0.7,2<2,2:devel/rubygem-i18n \ rubygem-railties60>=6.0<7:www/rubygem-railties60 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rails-i18n-rails61/Makefile b/devel/rubygem-rails-i18n-rails61/Makefile index cd8bdaf4523c..a050c6ef2420 100644 --- a/devel/rubygem-rails-i18n-rails61/Makefile +++ b/devel/rubygem-rails-i18n-rails61/Makefile @@ -1,22 +1,21 @@ PORTNAME= rails-i18n PORTVERSION= 7.0.6 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= ruby@FreeBSD.org COMMENT= Common locale data and translations for Rails i18n WWW= https://github.com/svenfuchs/rails-i18n LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt RUN_DEPENDS= rubygem-i18n>=0.7,2<2,2:devel/rubygem-i18n \ rubygem-railties61>=6.0<8:www/rubygem-railties61 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rails-i18n-rails70/Makefile b/devel/rubygem-rails-i18n-rails70/Makefile index 54b02159970b..45b2525a6211 100644 --- a/devel/rubygem-rails-i18n-rails70/Makefile +++ b/devel/rubygem-rails-i18n-rails70/Makefile @@ -1,22 +1,21 @@ PORTNAME= rails-i18n PORTVERSION= 7.0.6 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails70 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Set of common locale data and translations for Rails WWW= https://github.com/svenfuchs/rails-i18n LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt RUN_DEPENDS= rubygem-i18n>=0.7,2<2,2:devel/rubygem-i18n \ rubygem-railties70>=6.0.0<8:www/rubygem-railties70 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rails-observers/Makefile b/devel/rubygem-rails-observers/Makefile index 5210bddbf74e..33654d99153c 100644 --- a/devel/rubygem-rails-observers/Makefile +++ b/devel/rubygem-rails-observers/Makefile @@ -1,19 +1,18 @@ PORTNAME= rails-observers PORTVERSION= 0.1.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Observer classes for Rails WWW= https://github.com/rails/rails-observers LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activemodel4>=4.0:databases/rubygem-activemodel4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-rainbow/Makefile b/devel/rubygem-rainbow/Makefile index 408db8b1d3a9..ec27d8cd88c5 100644 --- a/devel/rubygem-rainbow/Makefile +++ b/devel/rubygem-rainbow/Makefile @@ -1,17 +1,16 @@ PORTNAME= rainbow PORTVERSION= 3.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Extends ruby String class enabling coloring text on ANSI terminals WWW= https://github.com/sickill/rainbow LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-rake-compiler-dock/Makefile b/devel/rubygem-rake-compiler-dock/Makefile index 2985f90fad2e..c2fbfe288b13 100644 --- a/devel/rubygem-rake-compiler-dock/Makefile +++ b/devel/rubygem-rake-compiler-dock/Makefile @@ -1,20 +1,19 @@ PORTNAME= rake-compiler-dock PORTVERSION= 0.6.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Cross compiler environment for building Windows binary gems WWW= https://github.com/rake-compiler/rake-compiler-dock LICENSE= MIT NO_ARCH= yes USES= gem shebangfix -USE_RUBY= yes SHEBANG_FILES= build/runas PLIST_FILES= bin/rake-compiler-dock .include diff --git a/devel/rubygem-rake-compiler/Makefile b/devel/rubygem-rake-compiler/Makefile index a3836963821d..7c9afb7ed412 100644 --- a/devel/rubygem-rake-compiler/Makefile +++ b/devel/rubygem-rake-compiler/Makefile @@ -1,22 +1,21 @@ PORTNAME= rake-compiler PORTVERSION= 1.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Build and package Ruby extensions (C, Java) using Rake WWW= https://github.com/rake-compiler/rake-compiler LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-rake>=0:devel/rubygem-rake USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rake-compiler .include diff --git a/devel/rubygem-rake-contrib/Makefile b/devel/rubygem-rake-contrib/Makefile index ae8a9a008037..d0099bac955a 100644 --- a/devel/rubygem-rake-contrib/Makefile +++ b/devel/rubygem-rake-contrib/Makefile @@ -1,20 +1,19 @@ PORTNAME= rake-contrib PORTVERSION= 1.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Additional libraries for Rake WWW= https://github.com/ruby/rake-contrib LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-rake>=0:devel/rubygem-rake USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rake/Makefile b/devel/rubygem-rake/Makefile index ff6e5281f065..66d2aed4ee81 100644 --- a/devel/rubygem-rake/Makefile +++ b/devel/rubygem-rake/Makefile @@ -1,22 +1,21 @@ PORTNAME= rake PORTVERSION= 13.0.6 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby Make WWW= https://github.com/ruby/rake LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= cpe gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rake CPE_VENDOR= ruby-lang .include diff --git a/devel/rubygem-ransack/Makefile b/devel/rubygem-ransack/Makefile index 2730fed963b6..6fdd1d9757b9 100644 --- a/devel/rubygem-ransack/Makefile +++ b/devel/rubygem-ransack/Makefile @@ -1,22 +1,21 @@ PORTNAME= ransack PORTVERSION= 3.2.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Successor to the MetaSearch gem WWW= https://github.com/activerecord-hackery/ransack LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activerecord61>=6.1.5:databases/rubygem-activerecord61 \ rubygem-activesupport61>=6.1.5:devel/rubygem-activesupport61 \ rubygem-i18n>=0:devel/rubygem-i18n USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rapt/Makefile b/devel/rubygem-rapt/Makefile index 20c3ac35fbf9..c32e41d9124a 100644 --- a/devel/rubygem-rapt/Makefile +++ b/devel/rubygem-rapt/Makefile @@ -1,19 +1,18 @@ PORTNAME= rapt PORTVERSION= 0.2.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Rails Plugin Tool WWW= http://rapt.rubyforge.org/ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/rapt .include diff --git a/devel/rubygem-rash/Makefile b/devel/rubygem-rash/Makefile index c4db239a4922..097a6cbbc25a 100644 --- a/devel/rubygem-rash/Makefile +++ b/devel/rubygem-rash/Makefile @@ -1,21 +1,20 @@ PORTNAME= rash PORTVERSION= 0.4.0 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple extension to Hashie::Mash for rubyfied keys WWW= https://github.com/tcocca/rash LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-hashie>=2.0.0:devel/rubygem-hashie USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rash_alt/Makefile b/devel/rubygem-rash_alt/Makefile index 1119b02ed016..ff19a29614c3 100644 --- a/devel/rubygem-rash_alt/Makefile +++ b/devel/rubygem-rash_alt/Makefile @@ -1,20 +1,19 @@ PORTNAME= rash_alt PORTVERSION= 0.4.12 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple extension to Hashie::Mash for rubyified keys WWW= https://github.com/shishi/rash_alt LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-hashie>=3.4:devel/rubygem-hashie USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rb-fsevent/Makefile b/devel/rubygem-rb-fsevent/Makefile index e3de717708db..31ffb8416af5 100644 --- a/devel/rubygem-rb-fsevent/Makefile +++ b/devel/rubygem-rb-fsevent/Makefile @@ -1,18 +1,17 @@ PORTNAME= rb-fsevent PORTVERSION= 0.11.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= FSEvents API with Signals catching (without RubyCocoa) WWW= https://github.com/guard/rb-fsevent LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rb-inotify/Makefile b/devel/rubygem-rb-inotify/Makefile index eaead7928bf7..2d6cf1949a3d 100644 --- a/devel/rubygem-rb-inotify/Makefile +++ b/devel/rubygem-rb-inotify/Makefile @@ -1,20 +1,19 @@ PORTNAME= rb-inotify PORTVERSION= 0.10.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby wrapper for libinotify, using ffi WWW= https://github.com/guard/rb-inotify LICENSE= MIT LIB_DEPENDS= libinotify.so:devel/libinotify RUN_DEPENDS= rubygem-ffi>=1.0<2:devel/rubygem-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rb-kqueue/Makefile b/devel/rubygem-rb-kqueue/Makefile index 83bd174be636..06da3469902b 100644 --- a/devel/rubygem-rb-kqueue/Makefile +++ b/devel/rubygem-rb-kqueue/Makefile @@ -1,20 +1,19 @@ PORTNAME= rb-kqueue PORTVERSION= 0.2.8 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby wrapper for BSD kqueue, using FFI WWW= https://github.com/mat813/rb-kqueue LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-ffi>=0.5.0:devel/rubygem-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rblineprof/Makefile b/devel/rubygem-rblineprof/Makefile index a466faf6ec6f..e7e3bcb6b3aa 100644 --- a/devel/rubygem-rblineprof/Makefile +++ b/devel/rubygem-rblineprof/Makefile @@ -1,19 +1,18 @@ PORTNAME= rblineprof PORTVERSION= 0.3.7 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Shows you lines of code that are slow WWW= https://github.com/tmm1/rblineprof LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libgmp.so:math/gmp RUN_DEPENDS= rubygem-debugger-ruby_core_source>=1.3:devel/rubygem-debugger-ruby_core_source USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-rbs/Makefile b/devel/rubygem-rbs/Makefile index f5c518216531..86fc1c47d265 100644 --- a/devel/rubygem-rbs/Makefile +++ b/devel/rubygem-rbs/Makefile @@ -1,20 +1,19 @@ PORTNAME= rbs PORTVERSION= 2.7.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Language for type signatures for Ruby and standard library definitions WWW= https://github.com/ruby/rbs LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL LICENSE_FILE_RUBY= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes PLIST_FILES= bin/rbs .include diff --git a/devel/rubygem-rbs_json_schema/Makefile b/devel/rubygem-rbs_json_schema/Makefile index b745c6b26bc5..442aed9d9157 100644 --- a/devel/rubygem-rbs_json_schema/Makefile +++ b/devel/rubygem-rbs_json_schema/Makefile @@ -1,23 +1,22 @@ PORTNAME= rbs_json_schema PORTVERSION= 0.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Generate RBS type definitions from JSON schema WWW= https://github.com/ruby/rbs_json_schema LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport61>=5.0.0:devel/rubygem-activesupport61 \ rubygem-rbs>=1.5.0:devel/rubygem-rbs USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rbs_json_schema .include diff --git a/devel/rubygem-rbtrace/Makefile b/devel/rubygem-rbtrace/Makefile index e4776d9aebb0..853ebd6b51d2 100644 --- a/devel/rubygem-rbtrace/Makefile +++ b/devel/rubygem-rbtrace/Makefile @@ -1,22 +1,21 @@ PORTNAME= rbtrace PORTVERSION= 0.4.14 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Shows method calls inside another ruby process in real time WWW= https://github.com/tmm1/rbtrace LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-ffi>=1.0.6:devel/rubygem-ffi \ 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 .include diff --git a/devel/rubygem-rbtree/Makefile b/devel/rubygem-rbtree/Makefile index 2d5259ad7dc6..b26122a55f43 100644 --- a/devel/rubygem-rbtree/Makefile +++ b/devel/rubygem-rbtree/Makefile @@ -1,15 +1,14 @@ PORTNAME= rbtree PORTVERSION= 0.4.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= RBTree is a sorted associative collection WWW= http://rbtree.rubyforge.org/ LICENSE= MIT USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-rdoc/Makefile b/devel/rubygem-rdoc/Makefile index 664de913c707..3adfb97b0003 100644 --- a/devel/rubygem-rdoc/Makefile +++ b/devel/rubygem-rdoc/Makefile @@ -1,29 +1,28 @@ PORTNAME= rdoc PORTVERSION= 6.5.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= RDoc produces HTML and command-line documentation for Ruby projects WWW= https://ruby.github.io/rdoc/ LICENSE= GPLv2 RUBY LICENSE_COMB= dual LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE.rdoc RUN_DEPENDS= rubygem-psych>=4.0.0:textproc/rubygem-psych USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= ruby-lang PLIST_FILES= bin/rdoc bin/ri share/man/man1/ri.1.gz post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/share/man/man1 ${INSTALL_DATA} ${WRKSRC}/man/ri.1 ${STAGEDIR}${PREFIX}/share/man/man1 .include diff --git a/devel/rubygem-rdoc63/Makefile b/devel/rubygem-rdoc63/Makefile index de927eb3a308..2cdfee989e9e 100644 --- a/devel/rubygem-rdoc63/Makefile +++ b/devel/rubygem-rdoc63/Makefile @@ -1,31 +1,30 @@ PORTNAME= rdoc PORTVERSION= 6.3.3 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 63 MAINTAINER= ruby@FreeBSD.org COMMENT= RDoc produces HTML and command-line documentation for Ruby projects WWW= https://ruby.github.io/rdoc/ LICENSE= GPLv2 RUBY LICENSE_COMB= dual LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE.rdoc USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= ruby-lang PORTSCOUT= limit:^6\.3\. .include post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/rdoc ${RM} ${STAGEDIR}${PREFIX}/bin/ri ${RM} ${STAGEDIR}${PREFIX}/share/man/man1/ri.1 .include diff --git a/devel/rubygem-re2/Makefile b/devel/rubygem-re2/Makefile index 1cd699494261..9c8ee783a132 100644 --- a/devel/rubygem-re2/Makefile +++ b/devel/rubygem-re2/Makefile @@ -1,19 +1,18 @@ PORTNAME= re2 PORTVERSION= 1.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Ruby bindings to re2 WWW= https://github.com/mudge/re2 LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libgmp.so:math/gmp \ libre2.so:devel/re2 USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-react-rails-rails5/Makefile b/devel/rubygem-react-rails-rails5/Makefile index 0e8a476c7e49..5937006e715b 100644 --- a/devel/rubygem-react-rails-rails5/Makefile +++ b/devel/rubygem-react-rails-rails5/Makefile @@ -1,25 +1,24 @@ PORTNAME= react-rails PORTVERSION= 2.6.2 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= ruby@FreeBSD.org COMMENT= React/JSX adapter for the Ruby on Rails asset pipeline WWW= https://github.com/reactjs/react-rails LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-babel-transpiler>=0.7.0:textproc/rubygem-babel-transpiler \ rubygem-connection_pool>=0:net/rubygem-connection_pool \ rubygem-execjs>=0:devel/rubygem-execjs \ rubygem-railties5>=3.2:www/rubygem-railties5 \ rubygem-tilt>=0:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-react-rails/Makefile b/devel/rubygem-react-rails/Makefile index 2706403dd06d..513a66bf5779 100644 --- a/devel/rubygem-react-rails/Makefile +++ b/devel/rubygem-react-rails/Makefile @@ -1,24 +1,23 @@ PORTNAME= react-rails PORTVERSION= 2.6.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= React/JSX adapter for the Ruby on Rails asset pipeline WWW= https://github.com/reactjs/react-rails LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-babel-transpiler>=0.7.0:textproc/rubygem-babel-transpiler \ rubygem-connection_pool>=0:net/rubygem-connection_pool \ rubygem-execjs>=0:devel/rubygem-execjs \ rubygem-railties4>=3.2:www/rubygem-railties4 \ rubygem-tilt>=0:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-readline-ext/Makefile b/devel/rubygem-readline-ext/Makefile index a81594e93cda..54216307b4d5 100644 --- a/devel/rubygem-readline-ext/Makefile +++ b/devel/rubygem-readline-ext/Makefile @@ -1,17 +1,16 @@ PORTNAME= readline-ext PORTVERSION= 0.1.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Provide an interface for GNU Readline and Edit Line (libedit) WWW= https://github.com/ruby/readline-ext LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-readline/Makefile b/devel/rubygem-readline/Makefile index 6f2161868cc1..831541d53861 100644 --- a/devel/rubygem-readline/Makefile +++ b/devel/rubygem-readline/Makefile @@ -1,20 +1,19 @@ PORTNAME= readline PORTVERSION= 0.0.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Loader for readline WWW= https://github.com/ruby/readline LICENSE= RUBY LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-reline>=0:devel/rubygem-reline USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-readwritesettings/Makefile b/devel/rubygem-readwritesettings/Makefile index 53428c7e79eb..81ae5afd9338 100644 --- a/devel/rubygem-readwritesettings/Makefile +++ b/devel/rubygem-readwritesettings/Makefile @@ -1,16 +1,15 @@ PORTNAME= readwritesettings PORTVERSION= 3.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple settings solution that uses an ERB enabled YAML file WWW= https://github.com/drnic/readwritesettings LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-recaptcha/Makefile b/devel/rubygem-recaptcha/Makefile index a94603e67690..cfcc23265b52 100644 --- a/devel/rubygem-recaptcha/Makefile +++ b/devel/rubygem-recaptcha/Makefile @@ -1,20 +1,19 @@ PORTNAME= recaptcha PORTVERSION= 4.14.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Helpers for the reCAPTCHA API WWW= https://github.com/ambethia/recaptcha LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-json>=0:devel/rubygem-json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-recursive-open-struct/Makefile b/devel/rubygem-recursive-open-struct/Makefile index 7e3dc7702707..a43b14e2a587 100644 --- a/devel/rubygem-recursive-open-struct/Makefile +++ b/devel/rubygem-recursive-open-struct/Makefile @@ -1,18 +1,17 @@ PORTNAME= recursive-open-struct PORTVERSION= 1.1.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Allows nested hashes to be treated in a recursive fashion WWW= https://github.com/aetherknight/recursive-open-struct LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-red-datasets/Makefile b/devel/rubygem-red-datasets/Makefile index 8735f96da126..1402d8692c5d 100644 --- a/devel/rubygem-red-datasets/Makefile +++ b/devel/rubygem-red-datasets/Makefile @@ -1,22 +1,21 @@ PORTNAME= red-datasets PORTVERSION= 0.1.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Provide common datasets WWW= https://github.com/red-data-tools/red-datasets LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-csv>=3.2.4:devel/rubygem-csv \ rubygem-rexml>=0:textproc/rubygem-rexml \ rubygem-rubyzip>=0:archivers/rubygem-rubyzip USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-redis-activesupport-rails5/Makefile b/devel/rubygem-redis-activesupport-rails5/Makefile index 8cf9302bafbf..b751fb148cbb 100644 --- a/devel/rubygem-redis-activesupport-rails5/Makefile +++ b/devel/rubygem-redis-activesupport-rails5/Makefile @@ -1,22 +1,21 @@ PORTNAME= redis-activesupport PORTVERSION= 5.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= ruby@FreeBSD.org COMMENT= Redis store for ActiveSupport::Cache WWW= https://redis-store.org/redis-activesupport/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport5>=3<8:devel/rubygem-activesupport5 \ rubygem-redis-store>=1.3<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-redis-activesupport-rails50/Makefile b/devel/rubygem-redis-activesupport-rails50/Makefile index b22fd3fe59b0..326c3673b630 100644 --- a/devel/rubygem-redis-activesupport-rails50/Makefile +++ b/devel/rubygem-redis-activesupport-rails50/Makefile @@ -1,22 +1,21 @@ PORTNAME= redis-activesupport PORTVERSION= 5.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= ruby@FreeBSD.org COMMENT= Redis store for ActiveSupport::Cache WWW= https://redis-store.org/redis-activesupport/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport50>=3<8:devel/rubygem-activesupport50 \ rubygem-redis-store>=1.3<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-redis-activesupport-rails52/Makefile b/devel/rubygem-redis-activesupport-rails52/Makefile index 3d922d5eab1c..53eac7a724f7 100644 --- a/devel/rubygem-redis-activesupport-rails52/Makefile +++ b/devel/rubygem-redis-activesupport-rails52/Makefile @@ -1,22 +1,21 @@ PORTNAME= redis-activesupport PORTVERSION= 5.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= ruby@FreeBSD.org COMMENT= Redis store for ActiveSupport::Cache WWW= https://redis-store.org/redis-activesupport/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport52>=3<8:devel/rubygem-activesupport52 \ rubygem-redis-store>=1.3<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-redis-activesupport-rails60/Makefile b/devel/rubygem-redis-activesupport-rails60/Makefile index e975b58a03e2..ed2b905af0af 100644 --- a/devel/rubygem-redis-activesupport-rails60/Makefile +++ b/devel/rubygem-redis-activesupport-rails60/Makefile @@ -1,22 +1,21 @@ PORTNAME= redis-activesupport PORTVERSION= 5.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails60 MAINTAINER= ruby@FreeBSD.org COMMENT= Redis store for ActiveSupport::Cache WWW= https://redis-store.org/redis-activesupport/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport60>=3<8:devel/rubygem-activesupport60 \ rubygem-redis-store>=1.3<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-redis-activesupport-rails61/Makefile b/devel/rubygem-redis-activesupport-rails61/Makefile index 1771ce28a5c4..5981e76b4943 100644 --- a/devel/rubygem-redis-activesupport-rails61/Makefile +++ b/devel/rubygem-redis-activesupport-rails61/Makefile @@ -1,22 +1,21 @@ PORTNAME= redis-activesupport PORTVERSION= 5.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= ruby@FreeBSD.org COMMENT= Redis store for ActiveSupport::Cache WWW= https://redis-store.org/redis-activesupport/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport61>=3<8:devel/rubygem-activesupport61 \ rubygem-redis-store>=1.3<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-redis-activesupport/Makefile b/devel/rubygem-redis-activesupport/Makefile index 3ae1d9413697..c91d13054631 100644 --- a/devel/rubygem-redis-activesupport/Makefile +++ b/devel/rubygem-redis-activesupport/Makefile @@ -1,21 +1,20 @@ PORTNAME= redis-activesupport PORTVERSION= 5.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Redis store for ActiveSupport::Cache WWW= https://redis-store.org/redis-activesupport/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS?= rubygem-activesupport4>=3<8:devel/rubygem-activesupport4 \ rubygem-redis-store>=1.3<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-redis-store/Makefile b/devel/rubygem-redis-store/Makefile index 3c20877e504c..b02fc2b54e9c 100644 --- a/devel/rubygem-redis-store/Makefile +++ b/devel/rubygem-redis-store/Makefile @@ -1,21 +1,20 @@ PORTNAME= redis-store PORTVERSION= 1.9.1 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Namespaced Redis stores for Ruby web frameworks WWW= https://redis-store.org/redis-store/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-redis4>=4<5:databases/rubygem-redis4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-redmine_plugin_support/Makefile b/devel/rubygem-redmine_plugin_support/Makefile index b4f27385cdd8..d9130535537e 100644 --- a/devel/rubygem-redmine_plugin_support/Makefile +++ b/devel/rubygem-redmine_plugin_support/Makefile @@ -1,17 +1,16 @@ PORTNAME= redmine_plugin_support PORTVERSION= 0.0.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Collection of tools to make redmine plugin development easier WWW= https://github.com/edavis10/redmine_plugin_support LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-reentrant_flock/Makefile b/devel/rubygem-reentrant_flock/Makefile index ee41cd10c4a9..f38fe3e70cb6 100644 --- a/devel/rubygem-reentrant_flock/Makefile +++ b/devel/rubygem-reentrant_flock/Makefile @@ -1,18 +1,17 @@ PORTNAME= reentrant_flock PORTVERSION= 0.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Reentrant/recursive flock for Ruby WWW= https://github.com/sonots/reentrant_flock LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-ref/Makefile b/devel/rubygem-ref/Makefile index d7c2badbe674..918f37af8058 100644 --- a/devel/rubygem-ref/Makefile +++ b/devel/rubygem-ref/Makefile @@ -1,17 +1,16 @@ PORTNAME= ref PORTVERSION= 2.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library with refs across runtimes (MRI, REE, YARV, ...) WWW= https://github.com/ruby-concurrency/ref LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT_LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-reline/Makefile b/devel/rubygem-reline/Makefile index 4e9c8188aa5f..a0a873b0bbf1 100644 --- a/devel/rubygem-reline/Makefile +++ b/devel/rubygem-reline/Makefile @@ -1,22 +1,21 @@ PORTNAME= reline DISTVERSION= 0.3.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= yasu@FreeBSD.org COMMENT= Alternative GNU Readline or Editline implementation by pure Ruby WWW= https://rubygems.org/gems/reline LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE= ${WRKSRC}/BSDL LICENSE_FILE_RUBY= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-io-console>=0.5<1:devel/rubygem-io-console USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-request_store/Makefile b/devel/rubygem-request_store/Makefile index 121a6b6be89e..949041a4839e 100644 --- a/devel/rubygem-request_store/Makefile +++ b/devel/rubygem-request_store/Makefile @@ -1,20 +1,19 @@ PORTNAME= request_store PORTVERSION= 1.5.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= RequestStore gives you per-request global storage WWW= https://github.com/steveklabnik/request_store LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-rack16>=1.4:www/rubygem-rack16 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-request_store14/Makefile b/devel/rubygem-request_store14/Makefile index 6757ded8b042..efe581576c3a 100644 --- a/devel/rubygem-request_store14/Makefile +++ b/devel/rubygem-request_store14/Makefile @@ -1,23 +1,22 @@ PORTNAME= request_store PORTVERSION= 1.4.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 14 MAINTAINER= ruby@FreeBSD.org COMMENT= RequestStore gives you per-request global storage WWW= https://github.com/steveklabnik/request_store LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-rack16>=1.4:www/rubygem-rack16 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\.4\. .include diff --git a/devel/rubygem-require_all/Makefile b/devel/rubygem-require_all/Makefile index 0108a234f18a..58d350344933 100644 --- a/devel/rubygem-require_all/Makefile +++ b/devel/rubygem-require_all/Makefile @@ -1,18 +1,17 @@ PORTNAME= require_all PORTVERSION= 3.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Wonderfully simple way to load your code WWW= https://github.com/jarmo/require_all LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-resque-scheduler/Makefile b/devel/rubygem-resque-scheduler/Makefile index b0c4d308d4f2..92998450bdf6 100644 --- a/devel/rubygem-resque-scheduler/Makefile +++ b/devel/rubygem-resque-scheduler/Makefile @@ -1,25 +1,24 @@ PORTNAME= resque-scheduler PORTVERSION= 4.7.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Light weight job scheduling on top of Resque WWW= https://github.com/resque/resque-scheduler LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-mono_logger>=1.0<2:devel/rubygem-mono_logger \ rubygem-redis>=3.3:databases/rubygem-redis \ rubygem-resque>=1.27:devel/rubygem-resque \ rubygem-rufus-scheduler>=3.2<4:devel/rubygem-rufus-scheduler USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/resque-scheduler .include diff --git a/devel/rubygem-resque/Makefile b/devel/rubygem-resque/Makefile index f61bed825ac2..6cd3e78b1e9e 100644 --- a/devel/rubygem-resque/Makefile +++ b/devel/rubygem-resque/Makefile @@ -1,23 +1,22 @@ PORTNAME= resque PORTVERSION= 2.2.1 CATEGORIES= devel ruby MASTER_SITES= RG MAINTAINER= dvl@FreeBSD.org COMMENT= Redis-backed Ruby library for queuing jobs WWW= https://resque.github.io/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS+= rubygem-mono_logger>=1.0:devel/rubygem-mono_logger \ rubygem-multi_json>=1.0:devel/rubygem-multi_json \ rubygem-redis-namespace>1.6:databases/rubygem-redis-namespace \ rubygem-sinatra>0.9.3:www/rubygem-sinatra \ rubygem-vegas>=0.1.2:www/rubygem-vegas NO_ARCH= yes USES= gem -USE_RUBY= yes:2.3+ .include diff --git a/devel/rubygem-retriable/Makefile b/devel/rubygem-retriable/Makefile index 9e453c31fa2c..7e45e4626873 100644 --- a/devel/rubygem-retriable/Makefile +++ b/devel/rubygem-retriable/Makefile @@ -1,18 +1,17 @@ PORTNAME= retriable PORTVERSION= 3.1.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple DSL to retry failed code blocks WWW= https://github.com/kamui/retriable LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-retryable/Makefile b/devel/rubygem-retryable/Makefile index 84e92497732a..ae8ff5b6dbc8 100644 --- a/devel/rubygem-retryable/Makefile +++ b/devel/rubygem-retryable/Makefile @@ -1,18 +1,17 @@ PORTNAME= retryable PORTVERSION= 3.0.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Allow for retrying of code blocks WWW= https://github.com/nfedyashev/retryable LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rgen/Makefile b/devel/rubygem-rgen/Makefile index 8d2f3c91c8b3..d3950d262133 100644 --- a/devel/rubygem-rgen/Makefile +++ b/devel/rubygem-rgen/Makefile @@ -1,18 +1,17 @@ PORTNAME= rgen PORTVERSION= 0.9.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= romain@FreeBSD.org COMMENT= Ruby modeling and generator framework WWW= http://ruby-gen.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rgl/Makefile b/devel/rubygem-rgl/Makefile index 213205a7fe13..38b01befddc8 100644 --- a/devel/rubygem-rgl/Makefile +++ b/devel/rubygem-rgl/Makefile @@ -1,22 +1,21 @@ PORTNAME= rgl PORTVERSION= 0.5.9 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby framework for graph algorithms and data structures WWW= https://github.com/monora/rgl LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual RUN_DEPENDS= rubygem-pairing_heap>=0.3.0:devel/rubygem-pairing_heap \ rubygem-rexml>=3.2.4<4:textproc/rubygem-rexml \ rubygem-stream>=0.5.3<0.6:devel/rubygem-stream USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rice/Makefile b/devel/rubygem-rice/Makefile index b6a3ff6b6749..2b107ba89cb9 100644 --- a/devel/rubygem-rice/Makefile +++ b/devel/rubygem-rice/Makefile @@ -1,20 +1,19 @@ PORTNAME= rice PORTVERSION= 4.0.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= C++ interface to Rubys C API WWW= https://github.com/jasonroelofs/rice LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING BROKEN_FreeBSD_12_powerpc64= fails to configure: could not find ruby.h USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rinda/Makefile b/devel/rubygem-rinda/Makefile index c0fbeecd656a..3e0e26f82f93 100644 --- a/devel/rubygem-rinda/Makefile +++ b/devel/rubygem-rinda/Makefile @@ -1,23 +1,22 @@ PORTNAME= rinda PORTVERSION= 0.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Linda distributed computing paradigm in Ruby WWW= https://github.com/ruby/rinda LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-drb>=0:devel/rubygem-drb \ rubygem-forwardable>=0:devel/rubygem-forwardable \ rubygem-ipaddr>=0:net/rubygem-ipaddr USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rodzilla/Makefile b/devel/rubygem-rodzilla/Makefile index 6284c9bce5b7..0fbcfe279b06 100644 --- a/devel/rubygem-rodzilla/Makefile +++ b/devel/rubygem-rodzilla/Makefile @@ -1,19 +1,18 @@ PORTNAME= rodzilla PORTVERSION= 0.3.6 CATEGORIES= devel ruby MASTER_SITES= RG MAINTAINER= linpct@gmail.com COMMENT= Bugzilla API Client WWW= https://github.com/jwaterfaucett/rodzilla LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-httparty>=0.12.0:www/rubygem-httparty NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-rotp/Makefile b/devel/rubygem-rotp/Makefile index 2dc8c920360e..28773421f48d 100644 --- a/devel/rubygem-rotp/Makefile +++ b/devel/rubygem-rotp/Makefile @@ -1,20 +1,19 @@ PORTNAME= rotp PORTVERSION= 6.2.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby library for generating one time passwords WWW= https://github.com/mdp/rotp LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rotp .include diff --git a/devel/rubygem-rr/Makefile b/devel/rubygem-rr/Makefile index 3134d0d6a8ec..aec381cfe3c9 100644 --- a/devel/rubygem-rr/Makefile +++ b/devel/rubygem-rr/Makefile @@ -1,17 +1,16 @@ PORTNAME= rr PORTVERSION= 1.2.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Double framework with lots of double techniques and terse syntax WWW= https://rr.github.io/rr/ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-rrd-ffi/Makefile b/devel/rubygem-rrd-ffi/Makefile index 05de674ac8cf..2a9f461ec772 100644 --- a/devel/rubygem-rrd-ffi/Makefile +++ b/devel/rubygem-rrd-ffi/Makefile @@ -1,22 +1,21 @@ PORTNAME= rrd-ffi PORTVERSION= 0.2.14 PORTREVISION= 2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= robak@FreeBSD.org COMMENT= Ruby bindings for RRD functions WWW= https://github.com/morellon/rrd-ffi LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rrdtool:databases/rrdtool \ rubygem-activesupport4>=0:devel/rubygem-activesupport4 \ rubygem-ffi>=0:devel/rubygem-ffi NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-rscm/Makefile b/devel/rubygem-rscm/Makefile index 05d0df1ac99b..5df701cc6bbc 100644 --- a/devel/rubygem-rscm/Makefile +++ b/devel/rubygem-rscm/Makefile @@ -1,15 +1,14 @@ PORTNAME= rscm PORTVERSION= 0.5.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby SCM, an SCM-independent API for accessing SCMs WWW= http://rscm.rubyforge.org/ NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-rsec/Makefile b/devel/rubygem-rsec/Makefile index a6853e31512d..43ce3fa6334f 100644 --- a/devel/rubygem-rsec/Makefile +++ b/devel/rubygem-rsec/Makefile @@ -1,17 +1,16 @@ PORTNAME= rsec PORTVERSION= 0.4.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= fw@moov.de COMMENT= Easy and extreme fast dynamic PEG parser combinator WWW= https://github.com/luikore/rsec/ LICENSE= RUBY USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rspec-core/Makefile b/devel/rubygem-rspec-core/Makefile index 4d1848098227..cf69fe3dffc9 100644 --- a/devel/rubygem-rspec-core/Makefile +++ b/devel/rubygem-rspec-core/Makefile @@ -1,22 +1,21 @@ PORTNAME= rspec-core PORTVERSION= 3.12.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= RSpec Core provides the structure for writing executable examples WWW= https://github.com/rspec/rspec-core LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-rspec-support>=${PORTVERSION:R}.0<3.13:devel/rubygem-rspec-support USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rspec .include diff --git a/devel/rubygem-rspec-expectations/Makefile b/devel/rubygem-rspec-expectations/Makefile index 2c9d72dc5567..1ba2c319e9cd 100644 --- a/devel/rubygem-rspec-expectations/Makefile +++ b/devel/rubygem-rspec-expectations/Makefile @@ -1,21 +1,20 @@ PORTNAME= rspec-expectations PORTVERSION= 3.12.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rspec-expectations adds should and should_not to every object WWW= https://github.com/rspec/rspec-expectations LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-diff-lcs>=1.2.0<2.0:textproc/rubygem-diff-lcs \ rubygem-rspec-support>=${PORTVERSION:R}.0<3.13:devel/rubygem-rspec-support USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rspec-its/Makefile b/devel/rubygem-rspec-its/Makefile index 3b5a57d1003b..11ac42727533 100644 --- a/devel/rubygem-rspec-its/Makefile +++ b/devel/rubygem-rspec-its/Makefile @@ -1,24 +1,23 @@ PORTNAME= rspec-its PORTVERSION= 1.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= naito.yuichiro@gmail.com COMMENT= RSpec extension gem for attribute matching WWW= https://github.com/rspec/rspec-its LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-rspec-core>=3.0.0:devel/rubygem-rspec-core \ rubygem-rspec-expectations>=3.0.0:devel/rubygem-rspec-expectations NO_ARCH= yes USES= gem shebangfix bash_CMD= ${SH} SHEBANG_FILES= script/test_all \ script/update_rubygems_and_install_bundler -USE_RUBY= yes .include diff --git a/devel/rubygem-rspec-logsplit/Makefile b/devel/rubygem-rspec-logsplit/Makefile index 923b1bebdb91..ce7d815b816a 100644 --- a/devel/rubygem-rspec-logsplit/Makefile +++ b/devel/rubygem-rspec-logsplit/Makefile @@ -1,18 +1,17 @@ PORTNAME= rspec-logsplit PORTVERSION= 0.1.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Log splitter for RSpec WWW= https://github.com/abstractive/rspec-logsplit LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rspec-mocks/Makefile b/devel/rubygem-rspec-mocks/Makefile index 28b6393655ad..abe8c05df5fd 100644 --- a/devel/rubygem-rspec-mocks/Makefile +++ b/devel/rubygem-rspec-mocks/Makefile @@ -1,21 +1,20 @@ PORTNAME= rspec-mocks PORTVERSION= 3.12.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rspec-mocks provides a test-double framework for rspec WWW= https://github.com/rspec/rspec-mocks LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-diff-lcs>=1.2.0<2.0:textproc/rubygem-diff-lcs \ rubygem-rspec-support>=${PORTVERSION:R}.0<3.13:devel/rubygem-rspec-support USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rspec-rails/Makefile b/devel/rubygem-rspec-rails/Makefile index b9165bd6f49a..c5b95339cb12 100644 --- a/devel/rubygem-rspec-rails/Makefile +++ b/devel/rubygem-rspec-rails/Makefile @@ -1,26 +1,25 @@ PORTNAME= rspec-rails PORTVERSION= 6.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Testing framework for Rails WWW= https://github.com/rspec/rspec-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-actionpack61>=6.1:www/rubygem-actionpack61 \ rubygem-activesupport61>=6.1:devel/rubygem-activesupport61 \ rubygem-railties61>=6.1:www/rubygem-railties61 \ rubygem-rspec-core>=3.11<4:devel/rubygem-rspec-core \ rubygem-rspec-expectations>=3.11<4:devel/rubygem-rspec-expectations \ rubygem-rspec-mocks>=3.11<4:devel/rubygem-rspec-mocks \ rubygem-rspec-support>=3.11<4:devel/rubygem-rspec-support USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rspec-support/Makefile b/devel/rubygem-rspec-support/Makefile index ff3fc0104a0d..795ff5f3c03a 100644 --- a/devel/rubygem-rspec-support/Makefile +++ b/devel/rubygem-rspec-support/Makefile @@ -1,18 +1,17 @@ PORTNAME= rspec-support PORTVERSION= 3.12.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Support utilities for RSpec gems WWW= https://github.com/rspec/rspec-support LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rspec/Makefile b/devel/rubygem-rspec/Makefile index cb54a794c5e3..b5da0f735383 100644 --- a/devel/rubygem-rspec/Makefile +++ b/devel/rubygem-rspec/Makefile @@ -1,22 +1,21 @@ PORTNAME= rspec PORTVERSION= 3.12.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Behaviour Driven Development in Ruby WWW= https://github.com/rspec/rspec-metagem LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-rspec-core>=${PORTVERSION:R}.0<3.13:devel/rubygem-rspec-core \ rubygem-rspec-expectations>=${PORTVERSION:R}.0<3.13:devel/rubygem-rspec-expectations \ rubygem-rspec-mocks>=${PORTVERSION:R}.0<3.13:devel/rubygem-rspec-mocks USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rspec_junit_formatter/Makefile b/devel/rubygem-rspec_junit_formatter/Makefile index a37dd668c5b5..788e43f17951 100644 --- a/devel/rubygem-rspec_junit_formatter/Makefile +++ b/devel/rubygem-rspec_junit_formatter/Makefile @@ -1,20 +1,19 @@ PORTNAME= rspec_junit_formatter PORTVERSION= 0.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Formatter of RSpec results for Jenkins WWW= https://github.com/sj26/rspec_junit_formatter LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rspec-core>=2.12.0<4:devel/rubygem-rspec-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rubocop-ast/Makefile b/devel/rubygem-rubocop-ast/Makefile index ff262fe6031c..5d33a92f2fa5 100644 --- a/devel/rubygem-rubocop-ast/Makefile +++ b/devel/rubygem-rubocop-ast/Makefile @@ -1,20 +1,19 @@ PORTNAME= rubocop-ast PORTVERSION= 1.23.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= RuboCop Node and NodePattern classes WWW= https://github.com/rubocop/rubocop-ast LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-parser>=3.1.1.0:devel/rubygem-parser USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rubocop-performance/Makefile b/devel/rubygem-rubocop-performance/Makefile index ddde149ca057..c87a08f91304 100644 --- a/devel/rubygem-rubocop-performance/Makefile +++ b/devel/rubygem-rubocop-performance/Makefile @@ -1,21 +1,20 @@ PORTNAME= rubocop-performance PORTVERSION= 1.15.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Collection of RuboCop cops to check for performance optimizations WWW= https://github.com/rubocop/rubocop-performance LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-rubocop>=1.7.0<2.0:devel/rubygem-rubocop \ rubygem-rubocop-ast>=0.4.0:devel/rubygem-rubocop-ast USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rubocop-rake/Makefile b/devel/rubygem-rubocop-rake/Makefile index be988c437256..b90bd9710ddf 100644 --- a/devel/rubygem-rubocop-rake/Makefile +++ b/devel/rubygem-rubocop-rake/Makefile @@ -1,20 +1,19 @@ PORTNAME= rubocop-rake PORTVERSION= 0.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= RuboCop plugin for Rake WWW= https://github.com/rubocop/rubocop-rake LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rubocop>=1.0<2:devel/rubygem-rubocop USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rubocop-rspec/Makefile b/devel/rubygem-rubocop-rspec/Makefile index 9bb8053bda56..d79fca4d8bbd 100644 --- a/devel/rubygem-rubocop-rspec/Makefile +++ b/devel/rubygem-rubocop-rspec/Makefile @@ -1,20 +1,19 @@ PORTNAME= rubocop-rspec PORTVERSION= 2.15.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= RuboCop plugin of code style checking for RSpec files WWW= https://github.com/rubocop/rubocop-rspec LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.md RUN_DEPENDS= rubygem-rubocop>=1.33<2:devel/rubygem-rubocop USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rubocop/Makefile b/devel/rubygem-rubocop/Makefile index 11290c11fb95..595cd8f3585e 100644 --- a/devel/rubygem-rubocop/Makefile +++ b/devel/rubygem-rubocop/Makefile @@ -1,32 +1,31 @@ PORTNAME= rubocop PORTVERSION= 1.39.0 CATEGORIES= devel ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby code style checking tool WWW= https://rubocop.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-json>=2.3<3:devel/rubygem-json \ rubygem-parallel>=1.10<2:sysutils/rubygem-parallel \ rubygem-parser>=3.1.2.1:devel/rubygem-parser \ rubygem-rainbow>=2.2.2<4.0:devel/rubygem-rainbow \ rubygem-regexp_parser>=1.8<3.0:textproc/rubygem-regexp_parser \ rubygem-rexml>=3.2.5<4.0:textproc/rubygem-rexml \ rubygem-rubocop-ast>=1.23.0<2.0:devel/rubygem-rubocop-ast \ rubygem-ruby-progressbar>=1.7<2:devel/rubygem-ruby-progressbar \ rubygem-unicode-display_width>=1.4.0<3.0:devel/rubygem-unicode-display_width USES= cpe gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rubocop CPE_VENDOR= rubocop_project .include diff --git a/devel/rubygem-ruby-atmos-pure/Makefile b/devel/rubygem-ruby-atmos-pure/Makefile index 9a9501a159b1..56e73a4762d8 100644 --- a/devel/rubygem-ruby-atmos-pure/Makefile +++ b/devel/rubygem-ruby-atmos-pure/Makefile @@ -1,17 +1,16 @@ PORTNAME= ruby-atmos-pure PORTVERSION= 1.0.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Client library for EMC Atmos REST API WWW= http://www.emc.com/atmos RUN_DEPENDS= rubygem-log4r>=1.1.9:sysutils/rubygem-log4r \ rubygem-ruby-hmac>=0.4.0:security/rubygem-ruby-hmac NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-ruby-bugzilla/Makefile b/devel/rubygem-ruby-bugzilla/Makefile index f433b580b0e3..6db4b9e3ecd5 100644 --- a/devel/rubygem-ruby-bugzilla/Makefile +++ b/devel/rubygem-ruby-bugzilla/Makefile @@ -1,23 +1,22 @@ PORTNAME= ruby-bugzilla PORTVERSION= 0.6.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Access to Bugzilla through WebService APIs in Ruby WWW= https://bitbucket.org/tagoh/ruby-bugzilla LICENSE= LGPL3 LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-gruff>=0<1:graphics/rubygem-gruff \ rubygem-highline>=0:devel/rubygem-highline USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/bzconsole .include diff --git a/devel/rubygem-ruby-enum/Makefile b/devel/rubygem-ruby-enum/Makefile index b8a80211dc45..0ccef2b9934c 100644 --- a/devel/rubygem-ruby-enum/Makefile +++ b/devel/rubygem-ruby-enum/Makefile @@ -1,20 +1,19 @@ PORTNAME= ruby-enum PORTVERSION= 0.9.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Enum-like behavior for Ruby WWW= https://github.com/dblock/ruby-enum LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-i18n>=0:devel/rubygem-i18n USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-ruby-filemagic/Makefile b/devel/rubygem-ruby-filemagic/Makefile index 7305f94141f5..9796b6e1c53b 100644 --- a/devel/rubygem-ruby-filemagic/Makefile +++ b/devel/rubygem-ruby-filemagic/Makefile @@ -1,17 +1,16 @@ PORTNAME= ruby-filemagic PORTVERSION= 0.7.3 PORTREVISION= 1 CATEGORIES= devel ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby binding to libmagic(3) WWW= https://github.com/blackwinter/ruby-filemagic LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-ruby-fogbugz/Makefile b/devel/rubygem-ruby-fogbugz/Makefile index 0889a53fdb1b..f8a8292cc099 100644 --- a/devel/rubygem-ruby-fogbugz/Makefile +++ b/devel/rubygem-ruby-fogbugz/Makefile @@ -1,19 +1,18 @@ PORTNAME= ruby-fogbugz PORTVERSION= 0.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ports@FreeBSD.org COMMENT= Simple Ruby wrapper for the Fogbugz XML API WWW= https://github.com/firmafon/ruby-fogbugz LICENSE= MIT RUN_DEPENDS= rubygem-crack>=0.4:devel/rubygem-crack \ rubygem-multipart-post>=2.0:www/rubygem-multipart-post NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-ruby-fogbugz021/Makefile b/devel/rubygem-ruby-fogbugz021/Makefile index a528f174de21..f29b6557a671 100644 --- a/devel/rubygem-ruby-fogbugz021/Makefile +++ b/devel/rubygem-ruby-fogbugz021/Makefile @@ -1,21 +1,20 @@ PORTNAME= ruby-fogbugz PORTVERSION= 0.2.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 021 MAINTAINER= ruby@FreeBSD.org COMMENT= Simple Ruby wrapper for the Fogbugz XML API WWW= https://github.com/firmafon/ruby-fogbugz LICENSE= MIT RUN_DEPENDS= rubygem-crack>=0.4:devel/rubygem-crack NO_ARCH= yes -USE_RUBY= yes USES= gem PORTSCOUT= limit:^0\.2\.1 .include diff --git a/devel/rubygem-ruby-libvirt/Makefile b/devel/rubygem-ruby-libvirt/Makefile index 7058f17b9971..6567efdf77d7 100644 --- a/devel/rubygem-ruby-libvirt/Makefile +++ b/devel/rubygem-ruby-libvirt/Makefile @@ -1,17 +1,16 @@ PORTNAME= ruby-libvirt PORTVERSION= 0.8.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= novel@FreeBSD.org COMMENT= Ruby bindings for libvirt WWW= https://libvirt.org/ruby/ LICENSE= LGPL21 LIB_DEPENDS= libvirt.so:devel/libvirt -USE_RUBY= yes USES= gem pkgconfig .include diff --git a/devel/rubygem-ruby-macho/Makefile b/devel/rubygem-ruby-macho/Makefile index 29232fa91380..396ba26be0ab 100644 --- a/devel/rubygem-ruby-macho/Makefile +++ b/devel/rubygem-ruby-macho/Makefile @@ -1,18 +1,17 @@ PORTNAME= ruby-macho PORTVERSION= 3.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Library for parsing Mach-O files WWW= https://github.com/Homebrew/ruby-macho LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-ruby-magic/Makefile b/devel/rubygem-ruby-magic/Makefile index c61bfdf8ea2a..a7b19151d1a3 100644 --- a/devel/rubygem-ruby-magic/Makefile +++ b/devel/rubygem-ruby-magic/Makefile @@ -1,22 +1,21 @@ PORTNAME= ruby-magic PORTVERSION= 0.5.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= File Magic in ruby WWW= https://github.com/kwilczynski/ruby-magic LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-mini_portile2>=2.6<3:devel/rubygem-mini_portile2 USES= gem -USE_RUBY= yes CONFIGURE_ARGS+= --use-system-libraries post-install: ${RMDIR} ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/ports .include diff --git a/devel/rubygem-ruby-ole/Makefile b/devel/rubygem-ruby-ole/Makefile index aff1c1659860..6e6a00c4f6a0 100644 --- a/devel/rubygem-ruby-ole/Makefile +++ b/devel/rubygem-ruby-ole/Makefile @@ -1,23 +1,22 @@ PORTNAME= ruby-ole PORTVERSION= 1.2.12.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library for easy read/write access to OLE compound documents WWW= https://github.com/aquasync/ruby-ole LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/oletool SHEBANG_FILES= bin/oletool \ test/*.rb .include diff --git a/devel/rubygem-ruby-prof/Makefile b/devel/rubygem-ruby-prof/Makefile index d7df29f12e16..07c6920292d1 100644 --- a/devel/rubygem-ruby-prof/Makefile +++ b/devel/rubygem-ruby-prof/Makefile @@ -1,18 +1,17 @@ PORTNAME= ruby-prof PORTVERSION= 1.3.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Fast profiler for Ruby WWW= https://github.com/ruby-prof/ruby-prof LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USE_RUBY= yes USES= gem PLIST_FILES= bin/ruby-prof bin/ruby-prof-check-trace .include diff --git a/devel/rubygem-ruby-progressbar/Makefile b/devel/rubygem-ruby-progressbar/Makefile index a593a26369d0..1ca5e6122830 100644 --- a/devel/rubygem-ruby-progressbar/Makefile +++ b/devel/rubygem-ruby-progressbar/Makefile @@ -1,20 +1,19 @@ PORTNAME= ruby-progressbar PORTVERSION= 1.11.0 CATEGORIES= devel ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Progressbar library for Ruby WWW= https://github.com/jfelchner/ruby-progressbar LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt CONFLICTS_INSTALL= ${RUBY_PKGNAMEPREFIX}progressbar USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-ruby-statistics/Makefile b/devel/rubygem-ruby-statistics/Makefile index 586a5e9337ed..1abae14d44bd 100644 --- a/devel/rubygem-ruby-statistics/Makefile +++ b/devel/rubygem-ruby-statistics/Makefile @@ -1,18 +1,17 @@ PORTNAME= ruby-statistics PORTVERSION= 2.1.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Provide ruby with statistical capabilities WWW= https://github.com/estebanz01/ruby-statistics LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-ruby2_keywords/Makefile b/devel/rubygem-ruby2_keywords/Makefile index 25918e85f21b..1045184ee87f 100644 --- a/devel/rubygem-ruby2_keywords/Makefile +++ b/devel/rubygem-ruby2_keywords/Makefile @@ -1,18 +1,17 @@ PORTNAME= ruby2_keywords PORTVERSION= 0.0.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Shim library for Module\#ruby2_keywords WWW= https://github.com/ruby/ruby2_keywords LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-ruby2ruby/Makefile b/devel/rubygem-ruby2ruby/Makefile index f6e0499279a6..1b96ad406cfb 100644 --- a/devel/rubygem-ruby2ruby/Makefile +++ b/devel/rubygem-ruby2ruby/Makefile @@ -1,24 +1,23 @@ PORTNAME= ruby2ruby PORTVERSION= 2.5.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Pure ruby code generator easily from ParseTree's Sexps # ' WWW= https://github.com/seattlerb/ruby2ruby LICENSE= MIT RUN_DEPENDS= rubygem-ruby_parser>=3.1<4:devel/rubygem-ruby_parser \ rubygem-sexp_processor>=4.6<5:devel/rubygem-sexp_processor USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/r2r_show SHEBANG_FILES= bin/r2r_show .include diff --git a/devel/rubygem-ruby_dep/Makefile b/devel/rubygem-ruby_dep/Makefile index 0793e347a317..0d8b11ff4a7c 100644 --- a/devel/rubygem-ruby_dep/Makefile +++ b/devel/rubygem-ruby_dep/Makefile @@ -1,18 +1,17 @@ PORTNAME= ruby_dep PORTVERSION= 1.5.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Creates a version constraint of supported Rubies WWW= https://github.com/e2/ruby_dep LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-ruby_parser/Makefile b/devel/rubygem-ruby_parser/Makefile index 5a801e481da2..82a11a40b344 100644 --- a/devel/rubygem-ruby_parser/Makefile +++ b/devel/rubygem-ruby_parser/Makefile @@ -1,25 +1,24 @@ PORTNAME= ruby_parser PORTVERSION= 3.15.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= voldern@hoeggen.net COMMENT= Ruby parser written in pure ruby WWW= https://github.com/seattlerb/ruby_parser LICENSE= MIT 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 PLIST_FILES= bin/ruby_parse \ bin/ruby_parse_extract_error SHEBANG_FILES= bin/* \ compare/normalize.rb .include diff --git a/devel/rubygem-rubygems-mirror/Makefile b/devel/rubygem-rubygems-mirror/Makefile index 322aa61dca41..4d4257c91bf1 100644 --- a/devel/rubygem-rubygems-mirror/Makefile +++ b/devel/rubygem-rubygems-mirror/Makefile @@ -1,19 +1,18 @@ PORTNAME= rubygems-mirror PORTVERSION= 1.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Mirror rubygems WWW= https://github.com/rubygems/rubygems-mirror LICENSE= MIT RUN_DEPENDS= rubygem-net-http-persistent>=2.9:www/rubygem-net-http-persistent USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rubygems-tasks/Makefile b/devel/rubygem-rubygems-tasks/Makefile index 8aa1273f2730..d928e86b2441 100644 --- a/devel/rubygem-rubygems-tasks/Makefile +++ b/devel/rubygem-rubygems-tasks/Makefile @@ -1,20 +1,19 @@ PORTNAME= rubygems-tasks PORTVERSION= 0.2.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Rake tasks for managing and releasing Ruby Gems WWW= https://github.com/postmodern/rubygems-tasks LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-irb>=1.0<2:devel/rubygem-irb USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rubygems-test/Makefile b/devel/rubygem-rubygems-test/Makefile index 5f88e1a244d3..2e3d98ec02e5 100644 --- a/devel/rubygem-rubygems-test/Makefile +++ b/devel/rubygem-rubygems-test/Makefile @@ -1,20 +1,19 @@ PORTNAME= rubygems-test PORTVERSION= 0.4.3 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Run automated tests WWW= https://github.com/rubygems/rubygems-test LICENSE= MIT RUN_DEPENDS= rubygem-rake>=0.8.7:devel/rubygem-rake NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-rubyinline/Makefile b/devel/rubygem-rubyinline/Makefile index 856e234288d2..be4b68231446 100644 --- a/devel/rubygem-rubyinline/Makefile +++ b/devel/rubygem-rubyinline/Makefile @@ -1,27 +1,26 @@ PORTNAME= rubyinline PORTVERSION= 3.12.6 CATEGORIES= devel rubygems MASTER_SITES= RG DISTNAME= RubyInline-${PORTVERSION} MAINTAINER= ruby@FreeBSD.org COMMENT= Inline::C allows you to embed C/Ruby directly in ruby scripts WWW= https://www.zenspider.com/projects/rubyinline.html LICENSE= MIT RUN_DEPENDS= rubygem-zentest>=4.3:devel/rubygem-zentest USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= example2.rb \ tutorial/example1.rb \ tutorial/example2.rb SHEBANG_LANG= ruby2 ruby2_OLD_CMD= /usr/local/bin/ruby17 ruby2_CMD= ${ruby_CMD} .include diff --git a/devel/rubygem-rubyinlineaccel/Makefile b/devel/rubygem-rubyinlineaccel/Makefile index 3f25d407244d..6a048fcc8075 100644 --- a/devel/rubygem-rubyinlineaccel/Makefile +++ b/devel/rubygem-rubyinlineaccel/Makefile @@ -1,20 +1,19 @@ PORTNAME= rubyinlineaccel PORTVERSION= 0.0.1 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG DISTNAME= RubyInlineAcceleration-${PORTVERSION} MAINTAINER= tota@FreeBSD.org COMMENT= Extension to RubyInline WWW= https://rubygems.org/gems/rubyinlineaccel RUN_DEPENDS= rubygem-rubyinline>=3.6.3:devel/rubygem-rubyinline LICENSE= GPLv2 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-rubytree/Makefile b/devel/rubygem-rubytree/Makefile index be64a64f244d..f2ae3d6de732 100644 --- a/devel/rubygem-rubytree/Makefile +++ b/devel/rubygem-rubytree/Makefile @@ -1,20 +1,19 @@ PORTNAME= rubytree PORTVERSION= 2.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Implementation of the Tree data structure for the Ruby WWW= http://rubytree.anupamsg.me/ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-json>=2.3.1<3:devel/rubygem-json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rufus-scheduler/Makefile b/devel/rubygem-rufus-scheduler/Makefile index b340f33cdf50..33d8644cd33d 100644 --- a/devel/rubygem-rufus-scheduler/Makefile +++ b/devel/rubygem-rufus-scheduler/Makefile @@ -1,20 +1,19 @@ PORTNAME= rufus-scheduler PORTVERSION= 3.8.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby job scheduler for at, cron and others WWW= https://github.com/jmettraux/rufus-scheduler LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-fugit>=1.1.6<2:devel/rubygem-fugit USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-rugged/Makefile b/devel/rubygem-rugged/Makefile index 293645f07f1e..e7b6c3e4603a 100644 --- a/devel/rubygem-rugged/Makefile +++ b/devel/rubygem-rugged/Makefile @@ -1,27 +1,26 @@ # Also update devel/libgit2, devel/libgit2-glib, devel/py-pygit2 PORTNAME= rugged PORTVERSION= 1.5.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG # libgit2 1.5 added more spaces in version definition, fetch the required patch PATCH_SITES= https://github.com/libgit2/rugged/commit/ PATCHFILES= 9f9bce7e3346dfcf2a4256561e37ba8c888a16b6.diff:-p1 MAINTAINER= mfechner@FreeBSD.org COMMENT= Ruby bindings to the libgit2 library WWW= https://github.com/libgit2/rugged LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= libgit2>=${PORTVERSION:R}:devel/libgit2 LIB_DEPENDS= libgit2.so:devel/libgit2 \ libgmp.so:math/gmp CONFIGURE_ARGS= --use-system-libraries USES= gem pkgconfig -USE_RUBY= yes .include diff --git a/devel/rubygem-runt/Makefile b/devel/rubygem-runt/Makefile index 0b26462c10f4..c24b0849b23a 100644 --- a/devel/rubygem-runt/Makefile +++ b/devel/rubygem-runt/Makefile @@ -1,17 +1,16 @@ PORTNAME= runt PORTVERSION= 0.9.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby implementation of select Martin Fowler patterns WWW= https://github.com/mlipper/runt LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-ruport/Makefile b/devel/rubygem-ruport/Makefile index dcd3b886260f..40be03d3bfe8 100644 --- a/devel/rubygem-ruport/Makefile +++ b/devel/rubygem-ruport/Makefile @@ -1,21 +1,20 @@ PORTNAME= ruport PORTVERSION= 1.8.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby Reports (Ruport) is an extensible reporting system WWW= https://github.com/ruport/ruport LICENSE= GPLv2 RUBY LICENSE_COMB= dual RUN_DEPENDS= rubygem-prawn>=2.4.0<2.5:print/rubygem-prawn \ rubygem-prawn-table>=0.2.0<0.3:print/rubygem-prawn-table USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-safe_yaml/Makefile b/devel/rubygem-safe_yaml/Makefile index b90c1cb7ed93..a573c5b8842c 100644 --- a/devel/rubygem-safe_yaml/Makefile +++ b/devel/rubygem-safe_yaml/Makefile @@ -1,22 +1,21 @@ PORTNAME= safe_yaml PORTVERSION= 1.0.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Parse YAML safely WWW= https://github.com/dtao/safe_yaml LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/safe_yaml SHEBANG_GLOB= *.sh .include diff --git a/devel/rubygem-scanf/Makefile b/devel/rubygem-scanf/Makefile index 5a05df8c29ba..678c0aed3925 100644 --- a/devel/rubygem-scanf/Makefile +++ b/devel/rubygem-scanf/Makefile @@ -1,17 +1,16 @@ PORTNAME= scanf DISTVERSION= 1.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= romain@FreeBSD.org COMMENT= Ruby implementation of the C function scanf(3) WWW= https://rubygems.org/gems/scanf LICENSE= BSD2CLAUSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-schash/Makefile b/devel/rubygem-schash/Makefile index 1b518e109cf9..e1991cb25e88 100644 --- a/devel/rubygem-schash/Makefile +++ b/devel/rubygem-schash/Makefile @@ -1,16 +1,15 @@ PORTNAME= schash PORTVERSION= 0.1.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= naito.yuichiro@gmail.com COMMENT= Ruby hash validator WWW= https://github.com/itamae-kitchen/itamae LICENSE= MIT NO_ARCH= yes USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-scientist/Makefile b/devel/rubygem-scientist/Makefile index 4495d6aa47a8..c2c70640eed1 100644 --- a/devel/rubygem-scientist/Makefile +++ b/devel/rubygem-scientist/Makefile @@ -1,18 +1,17 @@ PORTNAME= scientist PORTVERSION= 1.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Library for carefully refactoring critical paths WWW= https://github.com/github/scientist LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-sd_notify/Makefile b/devel/rubygem-sd_notify/Makefile index 158f526fb7b4..c6950ff66860 100644 --- a/devel/rubygem-sd_notify/Makefile +++ b/devel/rubygem-sd_notify/Makefile @@ -1,17 +1,16 @@ PORTNAME= sd_notify PORTVERSION= 0.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Communicate Ruby state changes to systemd WWW= https://github.com/agis/ruby-sdnotify LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-sdoc/Makefile b/devel/rubygem-sdoc/Makefile index 54d9bbac329d..72566e47973a 100644 --- a/devel/rubygem-sdoc/Makefile +++ b/devel/rubygem-sdoc/Makefile @@ -1,21 +1,20 @@ PORTNAME= sdoc PORTVERSION= 2.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Create rdoc html with javascript search index WWW= https://github.com/voloko/sdoc LICENSE= MIT RUN_DEPENDS= rubygem-rdoc>=5.0:devel/rubygem-rdoc USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/sdoc bin/sdoc-merge .include diff --git a/devel/rubygem-semantic_puppet/Makefile b/devel/rubygem-semantic_puppet/Makefile index d67b6eca1ab4..e5ebf5ff2daa 100644 --- a/devel/rubygem-semantic_puppet/Makefile +++ b/devel/rubygem-semantic_puppet/Makefile @@ -1,18 +1,17 @@ PORTNAME= semantic_puppet PORTVERSION= 1.0.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library for working with Semantic Versions and module dependencies WWW= https://github.com/puppetlabs/semantic_puppet LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-semantic_range/Makefile b/devel/rubygem-semantic_range/Makefile index 614a869120a3..f0e3f43677f5 100644 --- a/devel/rubygem-semantic_range/Makefile +++ b/devel/rubygem-semantic_range/Makefile @@ -1,18 +1,17 @@ PORTNAME= semantic_range PORTVERSION= 3.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Parse and compare semantic version numbers and ranges WWW= https://github.com/librariesio/semantic_range LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-semi_semantic/Makefile b/devel/rubygem-semi_semantic/Makefile index 7271ff01ff0a..36e2131a1be8 100644 --- a/devel/rubygem-semi_semantic/Makefile +++ b/devel/rubygem-semi_semantic/Makefile @@ -1,16 +1,15 @@ PORTNAME= semi_semantic PORTVERSION= 1.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library for parsing/formatting/comparing semi-semantic versions WWW= https://github.com/pivotal-cf-experimental/semi_semantic LICENSE= APACHE20 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-semver2/Makefile b/devel/rubygem-semver2/Makefile index a2c7677aa582..0ad21376fbe5 100644 --- a/devel/rubygem-semver2/Makefile +++ b/devel/rubygem-semver2/Makefile @@ -1,17 +1,16 @@ PORTNAME= semver2 PORTVERSION= 3.4.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Maintain semantic versions WWW= https://github.com/haf/semver USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/semver .include diff --git a/devel/rubygem-semverse/Makefile b/devel/rubygem-semverse/Makefile index 2fa56eecf414..66072ba30a53 100644 --- a/devel/rubygem-semverse/Makefile +++ b/devel/rubygem-semverse/Makefile @@ -1,18 +1,17 @@ PORTNAME= semverse PORTVERSION= 3.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library to represent and compare SemVer versions and constraints WWW= https://github.com/berkshelf/semverse LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-sentry-rails/Makefile b/devel/rubygem-sentry-rails/Makefile index d677f1438946..176ef15066dd 100644 --- a/devel/rubygem-sentry-rails/Makefile +++ b/devel/rubygem-sentry-rails/Makefile @@ -1,21 +1,20 @@ PORTNAME= sentry-rails PORTVERSION= 5.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Client interface for the Sentry error logger WWW= https://github.com/getsentry/sentry-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-railties61>=5.0.0:www/rubygem-railties61 \ rubygem-sentry-ruby-core>=5.1.1<5.2:devel/rubygem-sentry-ruby-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-sentry-raven/Makefile b/devel/rubygem-sentry-raven/Makefile index d1f1fba82cf0..fd425369b487 100644 --- a/devel/rubygem-sentry-raven/Makefile +++ b/devel/rubygem-sentry-raven/Makefile @@ -1,23 +1,22 @@ PORTNAME= sentry-raven PORTVERSION= 3.1.2 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Client interface for the Sentry error logger WWW= https://github.com/getsentry/sentry-ruby LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-faraday1>=1.0:www/rubygem-faraday1 USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/raven .include diff --git a/devel/rubygem-sentry-ruby-core/Makefile b/devel/rubygem-sentry-ruby-core/Makefile index 4aad4b97f409..186430f60792 100644 --- a/devel/rubygem-sentry-ruby-core/Makefile +++ b/devel/rubygem-sentry-ruby-core/Makefile @@ -1,20 +1,19 @@ PORTNAME= sentry-ruby-core PORTVERSION= 5.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Client interface for the Sentry error logger WWW= https://github.com/getsentry/sentry-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-concurrent-ruby>=0:devel/rubygem-concurrent-ruby USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-sentry-ruby/Makefile b/devel/rubygem-sentry-ruby/Makefile index f0dcfdde5e1a..ce04b604c792 100644 --- a/devel/rubygem-sentry-ruby/Makefile +++ b/devel/rubygem-sentry-ruby/Makefile @@ -1,21 +1,20 @@ PORTNAME= sentry-ruby PORTVERSION= 5.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Client interface for the Sentry error logger WWW= https://github.com/getsentry/sentry-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-concurrent-ruby>=1.0.2<2:devel/rubygem-concurrent-ruby \ rubygem-sentry-ruby-core>=5.1.1<5.1.2:devel/rubygem-sentry-ruby-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-sentry-sidekiq/Makefile b/devel/rubygem-sentry-sidekiq/Makefile index e7b4257d1c3c..c1bc1d026f52 100644 --- a/devel/rubygem-sentry-sidekiq/Makefile +++ b/devel/rubygem-sentry-sidekiq/Makefile @@ -1,22 +1,21 @@ PORTNAME= sentry-sidekiq PORTVERSION= 5.1.1 PORTREVISION= 2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Client interface for the Sentry error logger WWW= https://github.com/getsentry/sentry-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-sentry-ruby-core>=5.1.1<5.2:devel/rubygem-sentry-ruby-core \ rubygem-sidekiq>=3.0:devel/rubygem-sidekiq USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-sequel/Makefile b/devel/rubygem-sequel/Makefile index c9141af8b688..1d7ce865121d 100644 --- a/devel/rubygem-sequel/Makefile +++ b/devel/rubygem-sequel/Makefile @@ -1,20 +1,19 @@ PORTNAME= sequel PORTVERSION= 5.62.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Database Toolkit for Ruby WWW= https://sequel.jeremyevans.net/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/sequel .include diff --git a/devel/rubygem-server_sent_events/Makefile b/devel/rubygem-server_sent_events/Makefile index 07ca04b6f397..2a099e542775 100644 --- a/devel/rubygem-server_sent_events/Makefile +++ b/devel/rubygem-server_sent_events/Makefile @@ -1,17 +1,16 @@ PORTNAME= server_sent_events PORTVERSION= 0.1.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= freebsd@moov.de COMMENT= Library for dealing with server-sent events WWW= https://github.com/xlab-steampunk/redfish-client-ruby LICENSE= APACHE20 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-set/Makefile b/devel/rubygem-set/Makefile index 1c2f4bd79ff5..ce53304ca542 100644 --- a/devel/rubygem-set/Makefile +++ b/devel/rubygem-set/Makefile @@ -1,19 +1,18 @@ PORTNAME= set PORTVERSION= 1.0.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Class to deal with collections of unordered, unique values WWW= https://github.com/ruby/set LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-settingslogic/Makefile b/devel/rubygem-settingslogic/Makefile index d4aafb3473f7..6ae8a2cff1d6 100644 --- a/devel/rubygem-settingslogic/Makefile +++ b/devel/rubygem-settingslogic/Makefile @@ -1,17 +1,16 @@ PORTNAME= settingslogic PORTVERSION= 2.0.9 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Gem to use YAML and singleton design paterns WWW= https://github.com/binarylogic/settingslogic LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-sexp_processor/Makefile b/devel/rubygem-sexp_processor/Makefile index 85c9b4d03e24..594db2904078 100644 --- a/devel/rubygem-sexp_processor/Makefile +++ b/devel/rubygem-sexp_processor/Makefile @@ -1,17 +1,16 @@ PORTNAME= sexp_processor PORTVERSION= 4.16.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Generic sexp processing tools WWW= https://github.com/seattlerb/sexp_processor LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-shell/Makefile b/devel/rubygem-shell/Makefile index 13583820cc7f..2a2b4875c90d 100644 --- a/devel/rubygem-shell/Makefile +++ b/devel/rubygem-shell/Makefile @@ -1,21 +1,20 @@ PORTNAME= shell PORTVERSION= 0.8.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby interface for common UNIX shell commands WWW= https://github.com/ruby/shell LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-e2mmap>=0:devel/rubygem-e2mmap \ rubygem-sync>=0:devel/rubygem-sync USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-shoulda-context/Makefile b/devel/rubygem-shoulda-context/Makefile index 9dad63b6a278..d05bd01402bb 100644 --- a/devel/rubygem-shoulda-context/Makefile +++ b/devel/rubygem-shoulda-context/Makefile @@ -1,22 +1,21 @@ PORTNAME= shoulda-context PORTVERSION= 2.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Context framework extracted from Shoulda WWW= https://github.com/thoughtbot/shoulda-context LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/convert_to_should_syntax SHEBANG_FILES= bin/* .include diff --git a/devel/rubygem-shoulda-matchers/Makefile b/devel/rubygem-shoulda-matchers/Makefile index 5f0872075f4a..0279f0cbe0c7 100644 --- a/devel/rubygem-shoulda-matchers/Makefile +++ b/devel/rubygem-shoulda-matchers/Makefile @@ -1,20 +1,19 @@ PORTNAME= shoulda-matchers PORTVERSION= 4.5.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Making tests easy on the fingers and eyes WWW= https://github.com/thoughtbot/shoulda-matchers LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport4>=4.2.0:devel/rubygem-activesupport4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-shoulda/Makefile b/devel/rubygem-shoulda/Makefile index 888c14247cee..e2a1bf05a3f2 100644 --- a/devel/rubygem-shoulda/Makefile +++ b/devel/rubygem-shoulda/Makefile @@ -1,23 +1,22 @@ PORTNAME= shoulda PORTVERSION= 4.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Making tests easy on the fingers and eyes WWW= https://github.com/thoughtbot/shoulda LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-shoulda-context>=2.0<3:devel/rubygem-shoulda-context \ rubygem-shoulda-matchers>=4.0<5:devel/rubygem-shoulda-matchers USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= script/* .include diff --git a/devel/rubygem-sidekiq-bulk/Makefile b/devel/rubygem-sidekiq-bulk/Makefile index a3e2262a1b35..8916c988b74a 100644 --- a/devel/rubygem-sidekiq-bulk/Makefile +++ b/devel/rubygem-sidekiq-bulk/Makefile @@ -1,20 +1,19 @@ PORTNAME= sidekiq-bulk PORTVERSION= 0.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Augment Sidekiq job classes with a push_bulk method WWW= https://github.com/aprescott/sidekiq-bulk LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-sidekiq>=0:devel/rubygem-sidekiq USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-sidekiq-cron-sidekiq64/Makefile b/devel/rubygem-sidekiq-cron-sidekiq64/Makefile index 73e6c2c902ff..2db391ccd833 100644 --- a/devel/rubygem-sidekiq-cron-sidekiq64/Makefile +++ b/devel/rubygem-sidekiq-cron-sidekiq64/Makefile @@ -1,22 +1,21 @@ PORTNAME= sidekiq-cron PORTVERSION= 1.8.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -sidekiq64 MAINTAINER= mfechner@FreeBSD.org COMMENT= Enables to set jobs to be run in specified time (using CRON notation) WWW= https://github.com/ondrejbartas/sidekiq-cron LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-fugit>=1<2:devel/rubygem-fugit \ rubygem-sidekiq64>=4.2.1:devel/rubygem-sidekiq64 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-sidekiq-cron/Makefile b/devel/rubygem-sidekiq-cron/Makefile index 4084793d9548..e7fd0cc7936e 100644 --- a/devel/rubygem-sidekiq-cron/Makefile +++ b/devel/rubygem-sidekiq-cron/Makefile @@ -1,21 +1,20 @@ PORTNAME= sidekiq-cron PORTVERSION= 1.8.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Enables to set jobs to be run in specified time (using CRON notation) WWW= https://github.com/ondrejbartas/sidekiq-cron LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-fugit>=1<2:devel/rubygem-fugit \ rubygem-sidekiq>=4.2.1:devel/rubygem-sidekiq USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-sidekiq-scheduler/Makefile b/devel/rubygem-sidekiq-scheduler/Makefile index 293a0cb0499e..f8e42495cd7f 100644 --- a/devel/rubygem-sidekiq-scheduler/Makefile +++ b/devel/rubygem-sidekiq-scheduler/Makefile @@ -1,23 +1,22 @@ PORTNAME= sidekiq-scheduler PORTVERSION= 4.0.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Lightweight job scheduler extension for Sidekiq WWW= https://sidekiq-scheduler.github.io/sidekiq-scheduler/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-redis>=4.2.0:databases/rubygem-redis \ rubygem-rufus-scheduler>=3.2<4:devel/rubygem-rufus-scheduler \ rubygem-sidekiq>=4<7:devel/rubygem-sidekiq \ rubygem-tilt>=1.4.0:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-sidekiq-unique-jobs/Makefile b/devel/rubygem-sidekiq-unique-jobs/Makefile index bb20872cc37e..5dbdd12ee9af 100644 --- a/devel/rubygem-sidekiq-unique-jobs/Makefile +++ b/devel/rubygem-sidekiq-unique-jobs/Makefile @@ -1,25 +1,24 @@ PORTNAME= sidekiq-unique-jobs PORTVERSION= 7.1.27 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ensure only a single copy of a job is in Redis WWW= https://github.com/mhenrixon/sidekiq-unique-jobs LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-brpoplpush-redis_script>=0.1.1<2.0.0:databases/rubygem-brpoplpush-redis_script \ rubygem-concurrent-ruby>=1.0.5<2:devel/rubygem-concurrent-ruby \ rubygem-sidekiq>=5.0<8.0:devel/rubygem-sidekiq \ rubygem-thor>=0.20<3.0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/uniquejobs .include diff --git a/devel/rubygem-sidekiq/Makefile b/devel/rubygem-sidekiq/Makefile index f5f644735484..7967f65545e4 100644 --- a/devel/rubygem-sidekiq/Makefile +++ b/devel/rubygem-sidekiq/Makefile @@ -1,27 +1,26 @@ PORTNAME= sidekiq PORTVERSION= 6.5.8 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple, efficient background processing for Ruby WWW= https://sidekiq.org/ LICENSE= LGPL3 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-connection_pool>=2.2.5<3:net/rubygem-connection_pool \ rubygem-rack22>=2.0,3<3,3:www/rubygem-rack22 \ rubygem-redis4>=4.5.0<5:databases/rubygem-redis4 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/sidekiq \ bin/sidekiqmon CPE_VENDOR= contribsys .include diff --git a/devel/rubygem-sidekiq64/Makefile b/devel/rubygem-sidekiq64/Makefile index 06312b24a5f1..31af5aa4cf63 100644 --- a/devel/rubygem-sidekiq64/Makefile +++ b/devel/rubygem-sidekiq64/Makefile @@ -1,29 +1,28 @@ PORTNAME= sidekiq PORTVERSION= 6.4.2 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 64 MAINTAINER= mfechner@FreeBSD.org COMMENT= Simple, efficient background processing for Ruby WWW= https://sidekiq.org/ LICENSE= LGPL3 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-connection_pool>=2.2.2:net/rubygem-connection_pool \ rubygem-rack22>=2.0,3<3,3:www/rubygem-rack22 \ rubygem-redis>=4.2.0:databases/rubygem-redis USES= cpe gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/sidekiq \ bin/sidekiqmon CPE_VENDOR= contribsys .include diff --git a/devel/rubygem-sidetiq/Makefile b/devel/rubygem-sidetiq/Makefile index d97ce5317167..d6eae4e8a553 100644 --- a/devel/rubygem-sidetiq/Makefile +++ b/devel/rubygem-sidetiq/Makefile @@ -1,22 +1,21 @@ PORTNAME= sidetiq PORTVERSION= 0.7.2 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Recurring jobs for Sidekiq WWW= https://github.com/endofunky/sidetiq LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-celluloid>=0.17.3:devel/rubygem-celluloid \ rubygem-ice_cube>=0.14.0:devel/rubygem-ice_cube \ rubygem-sidekiq>=4.1.0:devel/rubygem-sidekiq NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-sigdump/Makefile b/devel/rubygem-sigdump/Makefile index e5a3c4d44b97..770e13296e5f 100644 --- a/devel/rubygem-sigdump/Makefile +++ b/devel/rubygem-sigdump/Makefile @@ -1,17 +1,16 @@ PORTNAME= sigdump PORTVERSION= 0.2.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Setup signal handler which dumps backtrace of running threads WWW= https://github.com/frsyuki/sigdump LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-simple-navigation-rails50/Makefile b/devel/rubygem-simple-navigation-rails50/Makefile index 8006e52acdc4..6dc98a18e6f8 100644 --- a/devel/rubygem-simple-navigation-rails50/Makefile +++ b/devel/rubygem-simple-navigation-rails50/Makefile @@ -1,21 +1,20 @@ PORTNAME= simple-navigation PORTVERSION= 4.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= ruby@FreeBSD.org COMMENT= Create navigations for Rails, Sinatra or Padrino applications WWW= https://github.com/codeplant/simple-navigation LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport50>=2.3.2:devel/rubygem-activesupport50 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-simple-navigation-rails61/Makefile b/devel/rubygem-simple-navigation-rails61/Makefile index 91da11d2b583..1b2c0bbd80f1 100644 --- a/devel/rubygem-simple-navigation-rails61/Makefile +++ b/devel/rubygem-simple-navigation-rails61/Makefile @@ -1,21 +1,20 @@ PORTNAME= simple-navigation PORTVERSION= 4.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= bofh@FreeBSD.org COMMENT= Create navigations for Rails, Sinatra or Padrino applications WWW= https://github.com/codeplant/simple-navigation LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport61>=2.3.2:devel/rubygem-activesupport61 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-simple-navigation/Makefile b/devel/rubygem-simple-navigation/Makefile index a83ef924405f..b18e3b609148 100644 --- a/devel/rubygem-simple-navigation/Makefile +++ b/devel/rubygem-simple-navigation/Makefile @@ -1,20 +1,19 @@ PORTNAME= simple-navigation PORTVERSION= 4.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Create navigations for Rails, Sinatra or Padrino applications WWW= https://github.com/codeplant/simple-navigation LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport5>=2.3.2:devel/rubygem-activesupport5 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-simple_form-rails5/Makefile b/devel/rubygem-simple_form-rails5/Makefile index 4cf781800fa7..66a5324c8143 100644 --- a/devel/rubygem-simple_form-rails5/Makefile +++ b/devel/rubygem-simple_form-rails5/Makefile @@ -1,23 +1,22 @@ PORTNAME= simple_form PORTVERSION= 5.0.3 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= ruby@FreeBSD.org COMMENT= Forms made easy WWW= https://github.com/heartcombo/simple_form LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activemodel5>=5.0:databases/rubygem-activemodel5 \ rubygem-actionpack5>=5.0:www/rubygem-actionpack5 USES= cpe gem CPE_VENDOR= plataformatec -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-simple_form-rails50/Makefile b/devel/rubygem-simple_form-rails50/Makefile index 6952e86581db..e2e7d025e9d9 100644 --- a/devel/rubygem-simple_form-rails50/Makefile +++ b/devel/rubygem-simple_form-rails50/Makefile @@ -1,23 +1,22 @@ PORTNAME= simple_form PORTVERSION= 5.0.3 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= ruby@FreeBSD.org COMMENT= Forms made easy WWW= https://github.com/heartcombo/simple_form LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activemodel50>=5.0:databases/rubygem-activemodel50 \ rubygem-actionpack50>=5.0:www/rubygem-actionpack50 USES= cpe gem CPE_VENDOR= plataformatec -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-simple_form-rails61/Makefile b/devel/rubygem-simple_form-rails61/Makefile index 64e294d1206a..8523ee4d2991 100644 --- a/devel/rubygem-simple_form-rails61/Makefile +++ b/devel/rubygem-simple_form-rails61/Makefile @@ -1,23 +1,22 @@ PORTNAME= simple_form PORTVERSION= 5.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= bofh@FreeBSD.org COMMENT= Forms made easy WWW= https://github.com/heartcombo/simple_form LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack61>=5.2:www/rubygem-actionpack61 \ rubygem-activemodel61>=5.2:databases/rubygem-activemodel61 USES= cpe gem CPE_VENDOR= plataformatec -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-simple_form/Makefile b/devel/rubygem-simple_form/Makefile index 43a3157c1a3f..d8192c3913b6 100644 --- a/devel/rubygem-simple_form/Makefile +++ b/devel/rubygem-simple_form/Makefile @@ -1,24 +1,23 @@ PORTNAME= simple_form PORTVERSION= 4.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Forms made easy WWW= https://github.com/plataformatec/simple_form LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activemodel4>=4:databases/rubygem-activemodel4 \ rubygem-actionpack4>=4:www/rubygem-actionpack4 PORTSCOUT= ignore:1 USES= cpe gem CPE_VENDOR= plataformatec -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-simplecov/Makefile b/devel/rubygem-simplecov/Makefile index 149beac52136..d421cb7bd4f7 100644 --- a/devel/rubygem-simplecov/Makefile +++ b/devel/rubygem-simplecov/Makefile @@ -1,22 +1,21 @@ PORTNAME= simplecov PORTVERSION= 0.21.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Powerful configuration library and automatic merging of coverage across test suites WWW= https://github.com/simplecov-ruby/simplecov LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-docile>=1.1<2:devel/rubygem-docile \ rubygem-simplecov-html>=0.11<1:textproc/rubygem-simplecov-html \ rubygem-simplecov_json_formatter>=0.1<1:devel/rubygem-simplecov_json_formatter USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-simplecov_json_formatter/Makefile b/devel/rubygem-simplecov_json_formatter/Makefile index d92d85a3790c..afdf84bbaf87 100644 --- a/devel/rubygem-simplecov_json_formatter/Makefile +++ b/devel/rubygem-simplecov_json_formatter/Makefile @@ -1,17 +1,16 @@ PORTNAME= simplecov_json_formatter PORTVERSION= 0.1.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= JSON formatter for SimpleCov WWW= https://github.com/codeclimate-community/simplecov_json_formatter LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-singleton/Makefile b/devel/rubygem-singleton/Makefile index 8f43aa418fb1..c4b443b19bbc 100644 --- a/devel/rubygem-singleton/Makefile +++ b/devel/rubygem-singleton/Makefile @@ -1,19 +1,18 @@ PORTNAME= singleton PORTVERSION= 0.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Implement the Singleton pattern WWW= https://github.com/ruby/singleton LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-skiptrace/Makefile b/devel/rubygem-skiptrace/Makefile index 4e0d6443186b..7c3ab5f8d92d 100644 --- a/devel/rubygem-skiptrace/Makefile +++ b/devel/rubygem-skiptrace/Makefile @@ -1,16 +1,15 @@ PORTNAME= skiptrace PORTVERSION= 0.8.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Bindings for your Ruby exceptions WWW= https://github.com/gsamokovarov/skiptrace LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-slack-messenger/Makefile b/devel/rubygem-slack-messenger/Makefile index 0168e5af7cb3..734c445699f1 100644 --- a/devel/rubygem-slack-messenger/Makefile +++ b/devel/rubygem-slack-messenger/Makefile @@ -1,17 +1,16 @@ PORTNAME= slack-messenger PORTVERSION= 2.3.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Slim ruby wrapper for posting to slack webhooks WWW= https://rubygems.org/gems/slack-messenger LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-slack-notifier/Makefile b/devel/rubygem-slack-notifier/Makefile index bc755b10a430..34eae904db17 100644 --- a/devel/rubygem-slack-notifier/Makefile +++ b/devel/rubygem-slack-notifier/Makefile @@ -1,17 +1,16 @@ PORTNAME= slack-notifier PORTVERSION= 2.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby wrapper for posting to slack webhooks WWW= https://github.com/stevenosloan/slack-notifier LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-slim/Makefile b/devel/rubygem-slim/Makefile index a49bc9bc939b..d1a630e15ffb 100644 --- a/devel/rubygem-slim/Makefile +++ b/devel/rubygem-slim/Makefile @@ -1,23 +1,22 @@ PORTNAME= slim PORTVERSION= 4.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Template language whose goal is reduce the syntax to essential parts WWW= http://slim-lang.com/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-temple>=0.7.6:devel/rubygem-temple \ rubygem-tilt>=2.0.6:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/slimrb .include diff --git a/devel/rubygem-slop/Makefile b/devel/rubygem-slop/Makefile index e32e6b148bc4..4fb502aeb11f 100644 --- a/devel/rubygem-slop/Makefile +++ b/devel/rubygem-slop/Makefile @@ -1,18 +1,17 @@ PORTNAME= slop PORTVERSION= 4.9.3 CATEGORIES= devel ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple DSL for gathering options and parsing the command line WWW= https://github.com/leejarvis/slop LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-slop3/Makefile b/devel/rubygem-slop3/Makefile index 5d11167ebceb..25bb9381f716 100644 --- a/devel/rubygem-slop3/Makefile +++ b/devel/rubygem-slop3/Makefile @@ -1,19 +1,18 @@ PORTNAME= slop PORTVERSION= 3.6.0 CATEGORIES= devel ruby MASTER_SITES= RG PKGNAMESUFFIX= 3 MAINTAINER= ruby@FreeBSD.org COMMENT= Simple DSL for gathering options and parsing the command line WWW= https://github.com/leejarvis/slop LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-slow_enumerator_tools/Makefile b/devel/rubygem-slow_enumerator_tools/Makefile index 76a63c9b48d8..b0effc9709d9 100644 --- a/devel/rubygem-slow_enumerator_tools/Makefile +++ b/devel/rubygem-slow_enumerator_tools/Makefile @@ -1,18 +1,17 @@ PORTNAME= slow_enumerator_tools PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Tools for transforming enumerators that produce data slowly and unpredictably WWW= https://github.com/ddfreyne/slow_enumerator_tools LICENSE= MIT RUN_DEPENDS= rubygem-bundler>=1.15:sysutils/rubygem-bundler USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-smart_properties/Makefile b/devel/rubygem-smart_properties/Makefile index d930cdd60d85..cea1652170c4 100644 --- a/devel/rubygem-smart_properties/Makefile +++ b/devel/rubygem-smart_properties/Makefile @@ -1,22 +1,21 @@ PORTNAME= smart_properties PORTVERSION= 1.17.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= bofh@FreeBSD.org COMMENT= Flexible and feature-rich alternative to Ruby accessors WWW= https://github.com/t6d/smart_properties LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-pry>0:devel/rubygem-pry \ rubygem-rake>=13.0:devel/rubygem-rake \ rubygem-rspec>=3.0:devel/rubygem-rspec USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-snaky_hash/Makefile b/devel/rubygem-snaky_hash/Makefile index 10df31c1a3bf..c6e2620ddc06 100644 --- a/devel/rubygem-snaky_hash/Makefile +++ b/devel/rubygem-snaky_hash/Makefile @@ -1,21 +1,20 @@ PORTNAME= snaky_hash PORTVERSION= 2.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Hashie::Mash joint to make \#snakelife better WWW= https://gitlab.com/oauth-xx/snaky_hash LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-hashie>=0:devel/rubygem-hashie \ rubygem-version_gem>=1.1.1<2:devel/rubygem-version_gem USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-snowplow-tracker/Makefile b/devel/rubygem-snowplow-tracker/Makefile index 14fcdbe4be80..f3ec57ff64b8 100644 --- a/devel/rubygem-snowplow-tracker/Makefile +++ b/devel/rubygem-snowplow-tracker/Makefile @@ -1,18 +1,17 @@ PORTNAME= snowplow-tracker PORTVERSION= 0.8.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Tracker to collect ruby data WWW= https://github.com/snowplow/snowplow-ruby-tracker LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE-2.0.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-soap4r/Makefile b/devel/rubygem-soap4r/Makefile index 063bd56fcfdc..ae9d1048e593 100644 --- a/devel/rubygem-soap4r/Makefile +++ b/devel/rubygem-soap4r/Makefile @@ -1,21 +1,20 @@ PORTNAME= soap4r PORTVERSION= 1.5.8 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby implementation of SOAP 1.1 WWW= https://github.com/felipec/soap4r LICENSE= GPLv2+ RUBY LICENSE_COMB= dual 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 .include diff --git a/devel/rubygem-solve/Makefile b/devel/rubygem-solve/Makefile index 0711f2b40c73..552f0a8c1cae 100644 --- a/devel/rubygem-solve/Makefile +++ b/devel/rubygem-solve/Makefile @@ -1,21 +1,20 @@ PORTNAME= solve PORTVERSION= 4.0.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby version constraint solver WWW= https://github.com/berkshelf/solve LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-molinillo>=0.6<1:devel/rubygem-molinillo \ rubygem-semverse>=1.1<4.0:devel/rubygem-semverse USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-sorted_set/Makefile b/devel/rubygem-sorted_set/Makefile index 083467839291..5615107cdaee 100644 --- a/devel/rubygem-sorted_set/Makefile +++ b/devel/rubygem-sorted_set/Makefile @@ -1,20 +1,19 @@ PORTNAME= sorted_set PORTVERSION= 1.0.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Implements a variant of Set WWW= https://github.com/knu/sorted_set LICENSE= MIT RUN_DEPENDS= rubygem-rbtree>=0:devel/rubygem-rbtree \ rubygem-set>=1.0<2:devel/rubygem-set USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-spring-watcher-listen/Makefile b/devel/rubygem-spring-watcher-listen/Makefile index fd9b93866de6..66499ca270cf 100644 --- a/devel/rubygem-spring-watcher-listen/Makefile +++ b/devel/rubygem-spring-watcher-listen/Makefile @@ -1,21 +1,20 @@ PORTNAME= spring-watcher-listen PORTVERSION= 2.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Makes spring watch files using the listen gem WWW= https://github.com/jonleighton/spring-watcher-listen LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-listen>=2.7<4.0:devel/rubygem-listen \ rubygem-spring>=4:devel/rubygem-spring USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-spring/Makefile b/devel/rubygem-spring/Makefile index 1875bbd89391..b617d1ca856f 100644 --- a/devel/rubygem-spring/Makefile +++ b/devel/rubygem-spring/Makefile @@ -1,20 +1,19 @@ PORTNAME= spring PORTVERSION= 4.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rails application preloader WWW= https://github.com/rails/spring LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/spring .include diff --git a/devel/rubygem-sprockets-es6/Makefile b/devel/rubygem-sprockets-es6/Makefile index b8e0aff52cf6..a3c5dfdd1b46 100644 --- a/devel/rubygem-sprockets-es6/Makefile +++ b/devel/rubygem-sprockets-es6/Makefile @@ -1,21 +1,20 @@ PORTNAME= sprockets-es6 PORTVERSION= 0.9.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Converts ES6 code into vanilla ES5 with Babel JS WWW= https://github.com/TannerRogalsky/sprockets-es6 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-babel-source>=5.8.11:textproc/rubygem-babel-source \ rubygem-babel-transpiler>=0:textproc/rubygem-babel-transpiler \ rubygem-sprockets3>=3.0:devel/rubygem-sprockets3 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-sprockets-helpers/Makefile b/devel/rubygem-sprockets-helpers/Makefile index e4262e04fc7f..bee53d90d8d9 100644 --- a/devel/rubygem-sprockets-helpers/Makefile +++ b/devel/rubygem-sprockets-helpers/Makefile @@ -1,20 +1,19 @@ PORTNAME= sprockets-helpers PORTVERSION= 1.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Asset path helpers for Sprockets 2.x applications WWW= https://github.com/petebrowne/sprockets-helpers LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-sprockets3>=2.2:devel/rubygem-sprockets3 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-sprockets-rails-rails4/Makefile b/devel/rubygem-sprockets-rails-rails4/Makefile index 3b7ca430a487..9fb919c0d8c5 100644 --- a/devel/rubygem-sprockets-rails-rails4/Makefile +++ b/devel/rubygem-sprockets-rails-rails4/Makefile @@ -1,25 +1,24 @@ PORTNAME= sprockets-rails PORTVERSION= 3.2.2 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails4 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Sprockets Rails integration WWW= https://github.com/rails/sprockets-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack4>=4.0:www/rubygem-actionpack4 \ rubygem-activesupport4>=4.0:devel/rubygem-activesupport4 \ rubygem-sprockets3>=3.0.0:devel/rubygem-sprockets3 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^3\.2\. .include diff --git a/devel/rubygem-sprockets-rails-rails5/Makefile b/devel/rubygem-sprockets-rails-rails5/Makefile index 3c7992ba778c..ed37fd93841b 100644 --- a/devel/rubygem-sprockets-rails-rails5/Makefile +++ b/devel/rubygem-sprockets-rails-rails5/Makefile @@ -1,25 +1,24 @@ PORTNAME= sprockets-rails PORTVERSION= 3.2.2 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Sprockets Rails integration WWW= https://github.com/rails/sprockets-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack5>=4.0:www/rubygem-actionpack5 \ rubygem-activesupport5>=4.0:devel/rubygem-activesupport5 \ rubygem-sprockets3>=3.0.0:devel/rubygem-sprockets3 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^3\.2\. .include diff --git a/devel/rubygem-sprockets-rails-rails50/Makefile b/devel/rubygem-sprockets-rails-rails50/Makefile index 8f953453976e..7db997cde393 100644 --- a/devel/rubygem-sprockets-rails-rails50/Makefile +++ b/devel/rubygem-sprockets-rails-rails50/Makefile @@ -1,25 +1,24 @@ PORTNAME= sprockets-rails PORTVERSION= 3.2.2 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Sprockets Rails integration WWW= https://github.com/rails/sprockets-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack50>=4.0:www/rubygem-actionpack50 \ rubygem-activesupport50>=4.0:devel/rubygem-activesupport50 \ rubygem-sprockets3>=3.0.0:devel/rubygem-sprockets3 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^3\.2\. .include diff --git a/devel/rubygem-sprockets-rails-rails52/Makefile b/devel/rubygem-sprockets-rails-rails52/Makefile index 5d962c5de352..4a41bce5ba0a 100644 --- a/devel/rubygem-sprockets-rails-rails52/Makefile +++ b/devel/rubygem-sprockets-rails-rails52/Makefile @@ -1,23 +1,22 @@ PORTNAME= sprockets-rails PORTVERSION= 3.4.2 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Sprockets Rails integration WWW= https://github.com/rails/sprockets-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack52>=5.2:www/rubygem-actionpack52 \ rubygem-activesupport52>=5.2:devel/rubygem-activesupport52 \ rubygem-sprockets3>=3.0.0:devel/rubygem-sprockets3 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-sprockets-rails-rails60/Makefile b/devel/rubygem-sprockets-rails-rails60/Makefile index 55e7b88ea42e..d9a09c4e82d7 100644 --- a/devel/rubygem-sprockets-rails-rails60/Makefile +++ b/devel/rubygem-sprockets-rails-rails60/Makefile @@ -1,23 +1,22 @@ PORTNAME= sprockets-rails PORTVERSION= 3.4.2 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Sprockets Rails integration WWW= https://github.com/rails/sprockets-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack60>=5.2:www/rubygem-actionpack60 \ rubygem-activesupport60>=5.2:devel/rubygem-activesupport60 \ rubygem-sprockets3>=3.0.0:devel/rubygem-sprockets3 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-sprockets-rails-rails61/Makefile b/devel/rubygem-sprockets-rails-rails61/Makefile index 2e60e59d2a70..26b9a5dc94c2 100644 --- a/devel/rubygem-sprockets-rails-rails61/Makefile +++ b/devel/rubygem-sprockets-rails-rails61/Makefile @@ -1,23 +1,22 @@ PORTNAME= sprockets-rails PORTVERSION= 3.4.2 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Sprockets Rails integration WWW= https://github.com/rails/sprockets-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack61>=5.2:www/rubygem-actionpack61 \ rubygem-activesupport61>=5.2:devel/rubygem-activesupport61 \ rubygem-sprockets3>=3.0.0:devel/rubygem-sprockets3 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-sprockets-rails-rails70/Makefile b/devel/rubygem-sprockets-rails-rails70/Makefile index 8e7683e9dbc0..a73212f1436e 100644 --- a/devel/rubygem-sprockets-rails-rails70/Makefile +++ b/devel/rubygem-sprockets-rails-rails70/Makefile @@ -1,23 +1,22 @@ PORTNAME= sprockets-rails PORTVERSION= 3.4.2 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails70 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Sprockets Rails integration WWW= https://github.com/rails/sprockets-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack70>=5.2:www/rubygem-actionpack70 \ rubygem-activesupport70>=5.2:devel/rubygem-activesupport70 \ rubygem-sprockets3>=3.0.0:devel/rubygem-sprockets3 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-sprockets-sass/Makefile b/devel/rubygem-sprockets-sass/Makefile index bb1b3a22767b..e2b91d78b088 100644 --- a/devel/rubygem-sprockets-sass/Makefile +++ b/devel/rubygem-sprockets-sass/Makefile @@ -1,21 +1,20 @@ PORTNAME= sprockets-sass PORTVERSION= 1.3.1 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Implements a sprockets-aware sass importer WWW= https://github.com/petebrowne/sprockets-sass LICENSE= MIT RUN_DEPENDS= rubygem-sprockets2>=2.0<3:devel/rubygem-sprockets2 \ rubygem-tilt1>=1.1<2:devel/rubygem-tilt1 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-sprockets/Makefile b/devel/rubygem-sprockets/Makefile index a227e9a7a8e1..df89ef581500 100644 --- a/devel/rubygem-sprockets/Makefile +++ b/devel/rubygem-sprockets/Makefile @@ -1,25 +1,24 @@ PORTNAME= sprockets PORTVERSION= 4.1.1 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rack-based asset packaging system WWW= https://github.com/rails/sprockets LICENSE= MIT RUN_DEPENDS= rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby \ rubygem-rack22>=1,3<3,3:www/rubygem-rack22 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/sprockets CPE_VENDOR= sprockets_project .include diff --git a/devel/rubygem-sprockets2/Makefile b/devel/rubygem-sprockets2/Makefile index 64085a0836f3..efe7c7da49cd 100644 --- a/devel/rubygem-sprockets2/Makefile +++ b/devel/rubygem-sprockets2/Makefile @@ -1,29 +1,28 @@ PORTNAME= sprockets PORTVERSION= 2.12.5 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 2 MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby library that preprocesses and concatenates JavaScript files WWW= https://github.com/rails/sprockets LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-hike1>=1.2,1<2,1:devel/rubygem-hike1 \ rubygem-multi_json>=1.0<2:devel/rubygem-multi_json \ rubygem-rack16>=1.0<2:www/rubygem-rack16 \ rubygem-tilt1>=1.1<2:devel/rubygem-tilt1 USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/sprockets PORTSCOUT= limit:^2\. .include diff --git a/devel/rubygem-sprockets3/Makefile b/devel/rubygem-sprockets3/Makefile index 06e0671ac4b7..fe45c3deb701 100644 --- a/devel/rubygem-sprockets3/Makefile +++ b/devel/rubygem-sprockets3/Makefile @@ -1,27 +1,26 @@ PORTNAME= sprockets PORTVERSION= 3.7.2 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 3 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby library that preprocesses and concatenates JavaScript files WWW= https://github.com/rails/sprockets LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby \ rubygem-rack16>=1<3:www/rubygem-rack16 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= sprockets_project post-install: @${RM} ${STAGEDIR}${PREFIX}/bin/sprockets .include diff --git a/devel/rubygem-spruz/Makefile b/devel/rubygem-spruz/Makefile index 3b8430eaf4f9..e2864e4128f6 100644 --- a/devel/rubygem-spruz/Makefile +++ b/devel/rubygem-spruz/Makefile @@ -1,19 +1,18 @@ PORTNAME= spruz PORTVERSION= 0.2.13 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Small Ruby library of mixed utils/extensions WWW= https://github.com/flori/spruz LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/enum .include diff --git a/devel/rubygem-stackprof/Makefile b/devel/rubygem-stackprof/Makefile index 4645b0ac3a9c..f24eb1aca170 100644 --- a/devel/rubygem-stackprof/Makefile +++ b/devel/rubygem-stackprof/Makefile @@ -1,24 +1,23 @@ PORTNAME= stackprof PORTVERSION= 0.2.22 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Fast sampling profiler for ruby code WWW= https://github.com/tmm1/stackprof LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem python shebangfix -USE_RUBY= yes SHEBANG_FILES= vendor/gprof2dot/gprof2dot.py \ vendor/gprof2dot/hotshotmain.py \ vendor/FlameGraph/flamegraph.pl PLIST_FILES= bin/stackprof \ bin/stackprof-flamegraph.pl \ bin/stackprof-gprof2dot.py .include diff --git a/devel/rubygem-state_machine/Makefile b/devel/rubygem-state_machine/Makefile index dedc29de432e..9ee2ed7830bb 100644 --- a/devel/rubygem-state_machine/Makefile +++ b/devel/rubygem-state_machine/Makefile @@ -1,17 +1,16 @@ PORTNAME= state_machine PORTVERSION= 1.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Support for creating state machines for attributes on any Ruby class WWW= https://www.pluginaweek.org LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-state_machines/Makefile b/devel/rubygem-state_machines/Makefile index 5d23d0b84e21..e9d37907fff9 100644 --- a/devel/rubygem-state_machines/Makefile +++ b/devel/rubygem-state_machines/Makefile @@ -1,18 +1,17 @@ PORTNAME= state_machines PORTVERSION= 0.5.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Support for creating state machines for attributes on any Ruby class WWW= https://github.com/state-machines/state_machines LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-statsd-instrument/Makefile b/devel/rubygem-statsd-instrument/Makefile index 76a4616eabdb..ba317654b614 100644 --- a/devel/rubygem-statsd-instrument/Makefile +++ b/devel/rubygem-statsd-instrument/Makefile @@ -1,18 +1,17 @@ PORTNAME= statsd-instrument PORTVERSION= 3.5.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= StatsD client for Ruby applications WWW= https://github.com/Shopify/statsd-instrument LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-statsd-ruby/Makefile b/devel/rubygem-statsd-ruby/Makefile index 72aa2f0c23e3..f09f55222ca4 100644 --- a/devel/rubygem-statsd-ruby/Makefile +++ b/devel/rubygem-statsd-ruby/Makefile @@ -1,18 +1,17 @@ PORTNAME= statsd-ruby PORTVERSION= 1.5.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby Statsd client that is not port of the Python implementation WWW= https://github.com/reinh/statsd LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-statsd/Makefile b/devel/rubygem-statsd/Makefile index 6fe87168d74d..cb16a190d1af 100644 --- a/devel/rubygem-statsd/Makefile +++ b/devel/rubygem-statsd/Makefile @@ -1,21 +1,20 @@ PORTNAME= statsd PORTVERSION= 0.5.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby port of the statsd python and node.js tools WWW= https://github.com/quasor/statsd RUN_DEPENDS= rubygem-erubis>=2.6.6:www/rubygem-erubis \ rubygem-eventmachine>=0.12.10:devel/rubygem-eventmachine \ rubygem-mongo>=1.2.4:devel/rubygem-mongo USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/statsd .include diff --git a/devel/rubygem-stella/Makefile b/devel/rubygem-stella/Makefile index 82af28d78044..e1371bee3d6c 100644 --- a/devel/rubygem-stella/Makefile +++ b/devel/rubygem-stella/Makefile @@ -1,38 +1,37 @@ PORTNAME= stella PORTVERSION= 2.1.2.004 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Define realistic testplans and run them against your webapps WWW= https://github.com/solutious/stella LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-benelux>=0.6.1:devel/rubygem-benelux \ rubygem-drydock>=0.6.9:devel/rubygem-drydock \ rubygem-familia>=0.7.1:databases/rubygem-familia \ rubygem-gibbler>=0.8.9:devel/rubygem-gibbler \ rubygem-nokogiri>=1.4.4:textproc/rubygem-nokogiri \ rubygem-public_suffix_service>=0.8.1:dns/rubygem-public_suffix_service \ rubygem-storable>=0.8.8:devel/rubygem-storable \ rubygem-sysinfo>=0.7.3:devel/rubygem-sysinfo \ rubygem-whois>=1.6.6:net/rubygem-whois \ rubygem-yajl-ruby>=0.7.9:devel/rubygem-yajl-ruby USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/stella # bin/stella CONFLICTS_INSTALL= stella SHEBANG_FILES= bin/stella \ support/sample_webapp/app.rb .include diff --git a/devel/rubygem-stemmer/Makefile b/devel/rubygem-stemmer/Makefile index 53edf044638f..78586c8cd4f3 100644 --- a/devel/rubygem-stemmer/Makefile +++ b/devel/rubygem-stemmer/Makefile @@ -1,15 +1,14 @@ PORTNAME= stemmer PORTVERSION= 1.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Implementation of the Porter word stemming algorithm WWW= https://rubygems.org/gems/stemmer USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-stomp/Makefile b/devel/rubygem-stomp/Makefile index 66cc673b2158..6a3f01df48bf 100644 --- a/devel/rubygem-stomp/Makefile +++ b/devel/rubygem-stomp/Makefile @@ -1,22 +1,21 @@ PORTNAME= stomp PORTVERSION= 1.4.10 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Streaming Text Orientated Messaging Protocol gem WWW= https://github.com/stompgem/stomp LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/catstomp bin/stompcat SHEBANG_FILES= examples/*.sh test/*.sh .include diff --git a/devel/rubygem-stoplight/Makefile b/devel/rubygem-stoplight/Makefile index 19b2af56e448..14d0e566928a 100644 --- a/devel/rubygem-stoplight/Makefile +++ b/devel/rubygem-stoplight/Makefile @@ -1,18 +1,17 @@ PORTNAME= stoplight PORTVERSION= 3.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Implementation of the circuit breaker pattern WWW= https://github.com/bolshakov/stoplight LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-storable/Makefile b/devel/rubygem-storable/Makefile index f06ef4978783..fe9ed3cdb8c9 100644 --- a/devel/rubygem-storable/Makefile +++ b/devel/rubygem-storable/Makefile @@ -1,18 +1,17 @@ PORTNAME= storable PORTVERSION= 0.8.9 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Marshal Ruby classes into and out of multiple formats WWW= https://github.com/delano/storable LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-stream/Makefile b/devel/rubygem-stream/Makefile index c13eefde49e7..d3b3e97412fb 100644 --- a/devel/rubygem-stream/Makefile +++ b/devel/rubygem-stream/Makefile @@ -1,18 +1,17 @@ PORTNAME= stream PORTVERSION= 0.5.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Interface for external iterators WWW= https://github.com/monora/stream LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-streetaddress/Makefile b/devel/rubygem-streetaddress/Makefile index 582bfc35d65d..0e64347d82ee 100644 --- a/devel/rubygem-streetaddress/Makefile +++ b/devel/rubygem-streetaddress/Makefile @@ -1,17 +1,16 @@ PORTNAME= StreetAddress PORTVERSION= 1.0.6 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Parses one line street addresses into normalized address object WWW= https://github.com/derrek/street-address LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-stringex/Makefile b/devel/rubygem-stringex/Makefile index fbc6689980db..dd925148e1b1 100644 --- a/devel/rubygem-stringex/Makefile +++ b/devel/rubygem-stringex/Makefile @@ -1,19 +1,18 @@ PORTNAME= stringex PORTVERSION= 2.8.5 PORTEPOCH= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Some useful extensions to the Ruby String class WWW= https://github.com/rsl/stringex LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-stringio/Makefile b/devel/rubygem-stringio/Makefile index bbaf079f5038..0c268d31e87a 100644 --- a/devel/rubygem-stringio/Makefile +++ b/devel/rubygem-stringio/Makefile @@ -1,16 +1,15 @@ PORTNAME= stringio PORTVERSION= 3.0.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Pseudo IO class from/to String WWW= https://github.com/ruby/stringio LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-strings-ansi/Makefile b/devel/rubygem-strings-ansi/Makefile index 4e0686d72706..fe12e769a8c4 100644 --- a/devel/rubygem-strings-ansi/Makefile +++ b/devel/rubygem-strings-ansi/Makefile @@ -1,18 +1,17 @@ PORTNAME= strings-ansi PORTVERSION= 0.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Methods for processing ANSI escape codes in strings WWW= https://github.com/piotrmurach/strings-ansi LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-strings/Makefile b/devel/rubygem-strings/Makefile index da02de5985fb..55090c0a00f9 100644 --- a/devel/rubygem-strings/Makefile +++ b/devel/rubygem-strings/Makefile @@ -1,22 +1,21 @@ PORTNAME= strings PORTVERSION= 0.2.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Useful functions for transforming strings WWW= https://github.com/piotrmurach/strings LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-strings-ansi>=0.2<1:devel/rubygem-strings-ansi \ rubygem-unicode-display_width>=1.5<3.0:devel/rubygem-unicode-display_width \ rubygem-unicode_utils>=1.4<2:devel/rubygem-unicode_utils USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-strong_migrations/Makefile b/devel/rubygem-strong_migrations/Makefile index c77e23665028..cdd26ac6569c 100644 --- a/devel/rubygem-strong_migrations/Makefile +++ b/devel/rubygem-strong_migrations/Makefile @@ -1,20 +1,19 @@ PORTNAME= strong_migrations PORTVERSION= 1.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Catch unsafe migrations at dev time WWW= https://github.com/ankane/strong_migrations LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activerecord52>=5.2:databases/rubygem-activerecord52 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-strong_migrations61/Makefile b/devel/rubygem-strong_migrations61/Makefile index 39bced06e4ab..404b6d54982a 100644 --- a/devel/rubygem-strong_migrations61/Makefile +++ b/devel/rubygem-strong_migrations61/Makefile @@ -1,21 +1,20 @@ PORTNAME= strong_migrations PORTVERSION= 1.4.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= bofh@FreeBSD.org COMMENT= Catch unsafe migrations at dev time WWW= https://github.com/ankane/strong_migrations LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activerecord61>=5.2:databases/rubygem-activerecord61 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-strptime/Makefile b/devel/rubygem-strptime/Makefile index 931b5c26f734..e898dafa294d 100644 --- a/devel/rubygem-strptime/Makefile +++ b/devel/rubygem-strptime/Makefile @@ -1,16 +1,15 @@ PORTNAME= strptime PORTVERSION= 0.2.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= girgen@FreeBSD.org COMMENT= Fast strptime engine WWW= https://github.com/nurse/strptime LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-strscan/Makefile b/devel/rubygem-strscan/Makefile index 9c5801c036e3..d3c3d2a316f3 100644 --- a/devel/rubygem-strscan/Makefile +++ b/devel/rubygem-strscan/Makefile @@ -1,16 +1,15 @@ PORTNAME= strscan PORTVERSION= 3.0.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Provide lexical scanning operations on a String WWW= https://github.com/ruby/strscan LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-structured_warnings/Makefile b/devel/rubygem-structured_warnings/Makefile index 15a06b6d0e40..d831ce8a057e 100644 --- a/devel/rubygem-structured_warnings/Makefile +++ b/devel/rubygem-structured_warnings/Makefile @@ -1,17 +1,16 @@ PORTNAME= structured_warnings PORTVERSION= 0.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Implementation of structured warnings for Ruby WWW= https://github.com/schmidt/structured_warnings LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-stud/Makefile b/devel/rubygem-stud/Makefile index 09860ea9d7e6..7e21f60d9719 100644 --- a/devel/rubygem-stud/Makefile +++ b/devel/rubygem-stud/Makefile @@ -1,16 +1,15 @@ PORTNAME= stud PORTVERSION= 0.0.23 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Common code techniques WWW= https://github.com/jordansissel/ruby-stud LICENSE= APACHE20 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-subexec/Makefile b/devel/rubygem-subexec/Makefile index 1e087526136a..c8c5f4ed28cb 100644 --- a/devel/rubygem-subexec/Makefile +++ b/devel/rubygem-subexec/Makefile @@ -1,17 +1,16 @@ PORTNAME= subexec PORTVERSION= 0.2.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Subexec spawns a subprocess with an optional timeout WWW= https://github.com/nulayer/subexec LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-sucker_punch/Makefile b/devel/rubygem-sucker_punch/Makefile index 1242bf6772db..4449d287e5be 100644 --- a/devel/rubygem-sucker_punch/Makefile +++ b/devel/rubygem-sucker_punch/Makefile @@ -1,20 +1,19 @@ PORTNAME= sucker_punch PORTVERSION= 3.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Asynchronous processing library for Ruby WWW= https://github.com/brandonhilkert/sucker_punch LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-sugar-high/Makefile b/devel/rubygem-sugar-high/Makefile index 8d96fceecc31..3277263a2432 100644 --- a/devel/rubygem-sugar-high/Makefile +++ b/devel/rubygem-sugar-high/Makefile @@ -1,18 +1,17 @@ PORTNAME= sugar-high PORTVERSION= 0.7.3 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= More Ruby sugar WWW= https://github.com/kristianmandrup/sugar-high LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-sumbur/Makefile b/devel/rubygem-sumbur/Makefile index a0b27cf8ef01..3c078f95f7bf 100644 --- a/devel/rubygem-sumbur/Makefile +++ b/devel/rubygem-sumbur/Makefile @@ -1,15 +1,14 @@ PORTNAME= sumbur PORTVERSION= 0.1.2.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Consistent spreading for server balancing WWW= https://github.com/mailru/sumbur-ruby LICENSE= MIT -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-sundawg_country_codes/Makefile b/devel/rubygem-sundawg_country_codes/Makefile index 02887e2ba25e..6959dca28e76 100644 --- a/devel/rubygem-sundawg_country_codes/Makefile +++ b/devel/rubygem-sundawg_country_codes/Makefile @@ -1,15 +1,14 @@ PORTNAME= sundawg_country_codes PORTVERSION= 0.0.7 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Manage ISO 3166 country names and codes WWW= https://github.com/HoyaBoya/country_codes NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-svn2git/Makefile b/devel/rubygem-svn2git/Makefile index 711412974bb2..8ecb6b60244e 100644 --- a/devel/rubygem-svn2git/Makefile +++ b/devel/rubygem-svn2git/Makefile @@ -1,21 +1,20 @@ PORTNAME= svn2git PORTVERSION= 2.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= matthew@FreeBSD.org COMMENT= Ruby utilities for exporting SVN repo to git WWW= https://github.com/nirvdrum/svn2git LICENSE= MIT RUN_DEPENDS= git>0:devel/git CONFLICTS_INSTALL= svn2git NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/svn2git .include diff --git a/devel/rubygem-swagger-blocks/Makefile b/devel/rubygem-swagger-blocks/Makefile index e83521383dd7..12064bdf3e5d 100644 --- a/devel/rubygem-swagger-blocks/Makefile +++ b/devel/rubygem-swagger-blocks/Makefile @@ -1,17 +1,16 @@ PORTNAME= swagger-blocks PORTVERSION= 3.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Define and serve live-updating Swagger JSON for Ruby apps WWW= https://github.com/fotinakis/swagger-blocks LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-sync/Makefile b/devel/rubygem-sync/Makefile index 61d416a626db..fa09e2de697c 100644 --- a/devel/rubygem-sync/Makefile +++ b/devel/rubygem-sync/Makefile @@ -1,18 +1,17 @@ PORTNAME= sync PORTVERSION= 0.5.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Provide a two-phase lock with a counter WWW= https://github.com/ruby/sync LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-sysinfo/Makefile b/devel/rubygem-sysinfo/Makefile index 0eb1b4ecb061..a9dfcb740cc2 100644 --- a/devel/rubygem-sysinfo/Makefile +++ b/devel/rubygem-sysinfo/Makefile @@ -1,26 +1,25 @@ PORTNAME= sysinfo PORTVERSION= 0.8.1 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= All your system-independent infoz in one handy class WWW= https://github.com/delano/sysinfo LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-drydock>=0:devel/rubygem-drydock \ rubygem-storable>=0:devel/rubygem-storable USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/sysinfo SHEBANG_FILES= bin/sysinfo .include diff --git a/devel/rubygem-syslog/Makefile b/devel/rubygem-syslog/Makefile index d7872103f71a..70223e96f568 100644 --- a/devel/rubygem-syslog/Makefile +++ b/devel/rubygem-syslog/Makefile @@ -1,17 +1,16 @@ PORTNAME= syslog PORTVERSION= 0.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby interface for the POSIX system logging facility WWW= https://github.com/ruby/syslog LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-systemu/Makefile b/devel/rubygem-systemu/Makefile index c0530e186448..6ab06d013e6b 100644 --- a/devel/rubygem-systemu/Makefile +++ b/devel/rubygem-systemu/Makefile @@ -1,19 +1,18 @@ PORTNAME= systemu PORTVERSION= 2.6.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Portable replacement for popen4 WWW= https://github.com/ahoward/systemu LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-table_print/Makefile b/devel/rubygem-table_print/Makefile index c68da631cef9..7fb67622f245 100644 --- a/devel/rubygem-table_print/Makefile +++ b/devel/rubygem-table_print/Makefile @@ -1,18 +1,17 @@ PORTNAME= table_print PORTVERSION= 1.5.7 CATEGORIES= devel ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Turn objects into formatted columns WWW= http://tableprintgem.com/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tdiff/Makefile b/devel/rubygem-tdiff/Makefile index 012e55712774..deec638dbe14 100644 --- a/devel/rubygem-tdiff/Makefile +++ b/devel/rubygem-tdiff/Makefile @@ -1,18 +1,17 @@ PORTNAME= tdiff PORTVERSION= 0.3.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Calculates the differences between two tree-like structures WWW= https://github.com/postmodern/tdiff #readme LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-telesign/Makefile b/devel/rubygem-telesign/Makefile index b54e644a0be4..0d2caa9d88dd 100644 --- a/devel/rubygem-telesign/Makefile +++ b/devel/rubygem-telesign/Makefile @@ -1,19 +1,18 @@ PORTNAME= telesign PORTVERSION= 2.2.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= TeleSign Ruby SDK WWW= http://rubygems.org/gems/telesign LICENSE= MIT RUN_DEPENDS= rubygem-net-http-persistent>=3.0.0<5.0:www/rubygem-net-http-persistent USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-telesignenterprise/Makefile b/devel/rubygem-telesignenterprise/Makefile index d14c1abf5796..a806a8f75a0e 100644 --- a/devel/rubygem-telesignenterprise/Makefile +++ b/devel/rubygem-telesignenterprise/Makefile @@ -1,19 +1,18 @@ PORTNAME= telesignenterprise PORTVERSION= 2.2.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= TeleSign Enterprise Ruby SDK WWW= https://rubygems.org/gems/telesignenterprise LICENSE= MIT RUN_DEPENDS= rubygem-telesign>=2.2.3<2.3:devel/rubygem-telesign USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tempfile/Makefile b/devel/rubygem-tempfile/Makefile index 257cfc50efba..c03e5e28260e 100644 --- a/devel/rubygem-tempfile/Makefile +++ b/devel/rubygem-tempfile/Makefile @@ -1,18 +1,17 @@ PORTNAME= tempfile PORTVERSION= 0.1.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Utility class for managing temporary files WWW= https://github.com/ruby/tempfile LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-templater/Makefile b/devel/rubygem-templater/Makefile index 1311b0c1a6e2..1dd3fcbfa838 100644 --- a/devel/rubygem-templater/Makefile +++ b/devel/rubygem-templater/Makefile @@ -1,21 +1,20 @@ PORTNAME= templater PORTVERSION= 1.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby code generation framework WWW= https://github.com/jnicklas/templater LICENSE= MIT RUN_DEPENDS= rubygem-diff-lcs>=1.1.2:textproc/rubygem-diff-lcs \ rubygem-extlib>=0.9.5:devel/rubygem-extlib \ rubygem-highline>=1.4.0:devel/rubygem-highline USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-temple/Makefile b/devel/rubygem-temple/Makefile index 2b603d463527..aea687e8b955 100644 --- a/devel/rubygem-temple/Makefile +++ b/devel/rubygem-temple/Makefile @@ -1,18 +1,17 @@ PORTNAME= temple PORTVERSION= 0.9.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Template compilation framework in Ruby WWW= https://github.com/judofyr/temple LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-term-ansicolor/Makefile b/devel/rubygem-term-ansicolor/Makefile index 0b9f878e7f26..3aac7f0c7a70 100644 --- a/devel/rubygem-term-ansicolor/Makefile +++ b/devel/rubygem-term-ansicolor/Makefile @@ -1,27 +1,26 @@ PORTNAME= term-ansicolor PORTVERSION= 1.7.1 CATEGORIES= devel ruby MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Term::ANSIColor for Ruby WWW= https://flori.github.io/term-ansicolor/ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-tins>=1.0<2:devel/rubygem-tins USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/term_cdiff \ bin/term_colortab \ bin/term_decolor \ bin/term_display \ bin/term_mandel \ bin/term_snow .include diff --git a/devel/rubygem-terrapin/Makefile b/devel/rubygem-terrapin/Makefile index 4a98a0522c94..cf96e0045e36 100644 --- a/devel/rubygem-terrapin/Makefile +++ b/devel/rubygem-terrapin/Makefile @@ -1,21 +1,20 @@ PORTNAME= terrapin PORTVERSION= 0.6.0 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Run shell commands safely WWW= https://github.com/thoughtbot/terrapin LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-climate_control>=0.0.3:devel/rubygem-climate_control USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-test-unit/Makefile b/devel/rubygem-test-unit/Makefile index 816018c6181e..27bd921c59cf 100644 --- a/devel/rubygem-test-unit/Makefile +++ b/devel/rubygem-test-unit/Makefile @@ -1,23 +1,22 @@ PORTNAME= test-unit PORTVERSION= 3.5.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Improved version of Test::Unit bundled in Ruby WWW= https://github.com/test-unit/test-unit LICENSE= BSD2CLAUSE PSFL RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL LICENSE_FILE_PSFL= ${WRKSRC}/PSFL LICENSE_FILE_RUBY= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-power_assert>=0:devel/rubygem-power_assert USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-thor/Makefile b/devel/rubygem-thor/Makefile index 80eb9e85a6b0..12badb1df399 100644 --- a/devel/rubygem-thor/Makefile +++ b/devel/rubygem-thor/Makefile @@ -1,20 +1,19 @@ PORTNAME= thor PORTVERSION= 1.2.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Scripting framework that replaces rake, sake, and rubigen WWW= https://github.com/rails/thor LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/thor .include diff --git a/devel/rubygem-thor0/Makefile b/devel/rubygem-thor0/Makefile index 11f2849c16c3..194bf42d44a9 100644 --- a/devel/rubygem-thor0/Makefile +++ b/devel/rubygem-thor0/Makefile @@ -1,23 +1,22 @@ PORTNAME= thor PORTVERSION= 0.20.3 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 0 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Scripting framework that replaces rake, sake, and rubigen WWW= https://github.com/erikhuda/thor LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/thor PORTSCOUT= limit:^0\. .include diff --git a/devel/rubygem-thor10/Makefile b/devel/rubygem-thor10/Makefile index 34972e090bcb..9cc7aceaae6c 100644 --- a/devel/rubygem-thor10/Makefile +++ b/devel/rubygem-thor10/Makefile @@ -1,25 +1,24 @@ # PORTNAME= thor PORTVERSION= 1.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 10 MAINTAINER= mfechner@FreeBSD.org COMMENT= Scripting framework that replaces rake, sake, and rubigen WWW= https://github.com/erikhuda/thor LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\.0\. post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/thor .include diff --git a/devel/rubygem-thread_safe/Makefile b/devel/rubygem-thread_safe/Makefile index 8f44c27e7366..2986049390f9 100644 --- a/devel/rubygem-thread_safe/Makefile +++ b/devel/rubygem-thread_safe/Makefile @@ -1,17 +1,16 @@ PORTNAME= thread_safe PORTVERSION= 0.3.6 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Thread-safe collections and utilities for Ruby WWW= https://github.com/ruby-concurrency/thread_safe LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-thrift/Makefile b/devel/rubygem-thrift/Makefile index 33c47ee81f54..880997e0c682 100644 --- a/devel/rubygem-thrift/Makefile +++ b/devel/rubygem-thrift/Makefile @@ -1,22 +1,21 @@ PORTNAME= thrift PORTVERSION= ${THRIFT_PORTVERSION} # to keep in sync with ../thrift PORTEPOCH= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= komarov@valerka.net COMMENT= Ruby interface to thrift WWW= https://thrift.apache.org/ LICENSE= APACHE20 -USE_RUBY= yes USES= cpe gem CPE_VENDOR= apache # Workaround for stage-qa: post-install: ${FIND} ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR}/ -name '*.o' -o -name '*.so' | ${XARGS} ${STRIP_CMD} .include "../thrift/bsd.thrift.mk" .include diff --git a/devel/rubygem-thwait/Makefile b/devel/rubygem-thwait/Makefile index d60280092d44..720fead704fd 100644 --- a/devel/rubygem-thwait/Makefile +++ b/devel/rubygem-thwait/Makefile @@ -1,20 +1,19 @@ PORTNAME= thwait PORTVERSION= 0.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Watches for termination of multiple threads WWW= https://github.com/ruby/thwait LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-e2mmap>=0:devel/rubygem-e2mmap USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tilt/Makefile b/devel/rubygem-tilt/Makefile index a1fe91608c38..5102f5a44619 100644 --- a/devel/rubygem-tilt/Makefile +++ b/devel/rubygem-tilt/Makefile @@ -1,20 +1,19 @@ PORTNAME= tilt PORTVERSION= 2.0.11 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Generic interface to multiple Ruby template engines WWW= https://github.com/rtomayko/tilt LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/tilt .include diff --git a/devel/rubygem-tilt1/Makefile b/devel/rubygem-tilt1/Makefile index 870f0905a053..2a7315506901 100644 --- a/devel/rubygem-tilt1/Makefile +++ b/devel/rubygem-tilt1/Makefile @@ -1,20 +1,19 @@ PORTNAME= tilt PORTVERSION= 1.4.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= ruby@FreeBSD.org COMMENT= Generic interface to multiple Ruby template engines WWW= https://github.com/rtomayko/tilt LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem PORTSCOUT= limit:^1\. .include diff --git a/devel/rubygem-time/Makefile b/devel/rubygem-time/Makefile index ef223d724415..61cd9cd7f713 100644 --- a/devel/rubygem-time/Makefile +++ b/devel/rubygem-time/Makefile @@ -1,21 +1,20 @@ PORTNAME= time PORTVERSION= 0.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Extend the Time class with methods for parsing and conversion WWW= https://github.com/ruby/time LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-date>=0:devel/rubygem-date USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-timecop/Makefile b/devel/rubygem-timecop/Makefile index f51e323db96b..f8ae45543129 100644 --- a/devel/rubygem-timecop/Makefile +++ b/devel/rubygem-timecop/Makefile @@ -1,18 +1,17 @@ PORTNAME= timecop PORTVERSION= 0.9.6 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Mock current time to test time-dependent code WWW= https://github.com/travisjeffery/timecop LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-timeliness/Makefile b/devel/rubygem-timeliness/Makefile index 239bc50c6441..fbbfb6be1681 100644 --- a/devel/rubygem-timeliness/Makefile +++ b/devel/rubygem-timeliness/Makefile @@ -1,18 +1,17 @@ PORTNAME= timeliness PORTVERSION= 0.4.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Fast date/time parser with customisable formats, timezone and I18n support WWW= https://github.com/adzap/timeliness LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-timeout/Makefile b/devel/rubygem-timeout/Makefile index 15189e34d6f9..ad3285463d66 100644 --- a/devel/rubygem-timeout/Makefile +++ b/devel/rubygem-timeout/Makefile @@ -1,19 +1,18 @@ PORTNAME= timeout PORTVERSION= 0.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Auto-terminate potentially long-running operations in Ruby WWW= https://github.com/ruby/timeout LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-timers/Makefile b/devel/rubygem-timers/Makefile index fae2293ba73f..067b8680a881 100644 --- a/devel/rubygem-timers/Makefile +++ b/devel/rubygem-timers/Makefile @@ -1,17 +1,16 @@ PORTNAME= timers PORTVERSION= 4.3.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Pure Ruby one-shot and periodic timers WWW= https://github.com/socketry/timers LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tins/Makefile b/devel/rubygem-tins/Makefile index 9f0b0503d2f7..9ae05153c93a 100644 --- a/devel/rubygem-tins/Makefile +++ b/devel/rubygem-tins/Makefile @@ -1,20 +1,19 @@ PORTNAME= tins PORTVERSION= 1.32.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Useful tools library in Ruby WWW= https://github.com/flori/tins LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-sync>=0:devel/rubygem-sync USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-titlecase/Makefile b/devel/rubygem-titlecase/Makefile index 538e121e4e20..41c25070a3b4 100644 --- a/devel/rubygem-titlecase/Makefile +++ b/devel/rubygem-titlecase/Makefile @@ -1,16 +1,15 @@ PORTNAME= titlecase PORTVERSION= 0.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby string extensions to add title case support WWW= https://github.com/samsouder/titlecase LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-tmpdir/Makefile b/devel/rubygem-tmpdir/Makefile index 7895afa89d44..a3b6d7108ce2 100644 --- a/devel/rubygem-tmpdir/Makefile +++ b/devel/rubygem-tmpdir/Makefile @@ -1,20 +1,19 @@ PORTNAME= tmpdir PORTVERSION= 0.1.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Extend the Dir class to manage the OS temporary file path WWW= https://github.com/ruby/tmpdir LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual RUN_DEPENDS= rubygem-fileutils>=0:devel/rubygem-fileutils USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-to_regexp/Makefile b/devel/rubygem-to_regexp/Makefile index a78e38f7b27d..778cc2dc2c9b 100644 --- a/devel/rubygem-to_regexp/Makefile +++ b/devel/rubygem-to_regexp/Makefile @@ -1,18 +1,17 @@ PORTNAME= to_regexp PORTVERSION= 0.2.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Provides a safe way to convert strings to regexps WWW= https://github.com/seamusabshere/to_regexp LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tool/Makefile b/devel/rubygem-tool/Makefile index ca3cb05145e6..ac04153732a0 100644 --- a/devel/rubygem-tool/Makefile +++ b/devel/rubygem-tool/Makefile @@ -1,18 +1,17 @@ PORTNAME= tool PORTVERSION= 0.2.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby library used by Sinatra 2.0, Mustermann and related projects WWW= https://github.com/rkh/tool LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tracer/Makefile b/devel/rubygem-tracer/Makefile index 10d9187b8e30..83c389b71cfe 100644 --- a/devel/rubygem-tracer/Makefile +++ b/devel/rubygem-tracer/Makefile @@ -1,19 +1,18 @@ PORTNAME= tracer PORTVERSION= 0.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Output a source level execution trace of a Ruby program WWW= https://github.com/ruby/tracer LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-traces/Makefile b/devel/rubygem-traces/Makefile index 0a0e11df28f8..26cbb42a0127 100644 --- a/devel/rubygem-traces/Makefile +++ b/devel/rubygem-traces/Makefile @@ -1,17 +1,16 @@ PORTNAME= traces PORTVERSION= 0.8.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Application instrumentation and tracing WWW= https://github.com/socketry/traces LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-trailblazer-option/Makefile b/devel/rubygem-trailblazer-option/Makefile index 420dcf7f488b..009dfdd6e609 100644 --- a/devel/rubygem-trailblazer-option/Makefile +++ b/devel/rubygem-trailblazer-option/Makefile @@ -1,18 +1,17 @@ PORTNAME= trailblazer-option PORTVERSION= 0.1.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Dynamic options to evaluate at runtime WWW= https://github.com/trailblazer/trailblazer-option LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-transaction-simple/Makefile b/devel/rubygem-transaction-simple/Makefile index 9f8290249183..845f1132d043 100644 --- a/devel/rubygem-transaction-simple/Makefile +++ b/devel/rubygem-transaction-simple/Makefile @@ -1,18 +1,17 @@ PORTNAME= transaction-simple PORTVERSION= 1.4.0.2 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple object transaction support WWW= http://trans-simple.rubyforge.org/ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-travis/Makefile b/devel/rubygem-travis/Makefile index a110351f9ab9..41be874652e1 100644 --- a/devel/rubygem-travis/Makefile +++ b/devel/rubygem-travis/Makefile @@ -1,28 +1,27 @@ PORTNAME= travis PORTVERSION= 1.11.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= CLI and Ruby client library for Travis CI WWW= https://github.com/travis-ci/travis.rb LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-faraday1>=1.0<2:www/rubygem-faraday1 \ rubygem-faraday_middleware>=1.0<2:www/rubygem-faraday_middleware \ rubygem-gh>=0.13<1:devel/rubygem-gh \ rubygem-highline>=2.0<3:devel/rubygem-highline \ rubygem-json_pure>=2.3<3:devel/rubygem-json_pure \ rubygem-launchy>=2.1<3:devel/rubygem-launchy \ rubygem-pusher-client>=0.4<1:www/rubygem-pusher-client USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/travis .include diff --git a/devel/rubygem-treetop/Makefile b/devel/rubygem-treetop/Makefile index c4c1f9e362c4..d921e5c8c00a 100644 --- a/devel/rubygem-treetop/Makefile +++ b/devel/rubygem-treetop/Makefile @@ -1,22 +1,21 @@ PORTNAME= treetop PORTVERSION= 1.6.11 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby-based DSL for text parsing and interpretation WWW= https://github.com/cjheath/treetop LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-polyglot>=0.3<1:devel/rubygem-polyglot USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/tt .include diff --git a/devel/rubygem-trollop/Makefile b/devel/rubygem-trollop/Makefile index ed68014d3a74..95a92c2f3439 100644 --- a/devel/rubygem-trollop/Makefile +++ b/devel/rubygem-trollop/Makefile @@ -1,17 +1,16 @@ PORTNAME= trollop PORTVERSION= 2.9.10 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Commandline option parser for Ruby that gets out of your way WWW= https://manageiq.github.io/trollop/ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-trollop1/Makefile b/devel/rubygem-trollop1/Makefile index e139837bf699..f1bb467edccc 100644 --- a/devel/rubygem-trollop1/Makefile +++ b/devel/rubygem-trollop1/Makefile @@ -1,20 +1,19 @@ PORTNAME= trollop PORTVERSION= 1.16.2 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Commandline option parser for Ruby that gets out of your way WWW= https://manageiq.github.io/trollop/ LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\. .include diff --git a/devel/rubygem-tsort/Makefile b/devel/rubygem-tsort/Makefile index b8c8ea952873..7c274efee962 100644 --- a/devel/rubygem-tsort/Makefile +++ b/devel/rubygem-tsort/Makefile @@ -1,19 +1,18 @@ PORTNAME= tsort PORTVERSION= 0.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Topological sorting using Tarjan's algorithm WWW= https://github.com/ruby/tsort LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tty-box/Makefile b/devel/rubygem-tty-box/Makefile index 011de80db97e..55b5a5ec4dcf 100644 --- a/devel/rubygem-tty-box/Makefile +++ b/devel/rubygem-tty-box/Makefile @@ -1,22 +1,21 @@ PORTNAME= tty-box PORTVERSION= 0.7.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Draw various frames and boxes in your terminal interface WWW= https://ttytoolkit.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-pastel>=0.8<1:devel/rubygem-pastel \ rubygem-strings>=0.2.0<0.3:devel/rubygem-strings \ rubygem-tty-cursor>=0.7<1:devel/rubygem-tty-cursor USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tty-color/Makefile b/devel/rubygem-tty-color/Makefile index 2c3b1b25b827..4351ad4488d7 100644 --- a/devel/rubygem-tty-color/Makefile +++ b/devel/rubygem-tty-color/Makefile @@ -1,18 +1,17 @@ PORTNAME= tty-color PORTVERSION= 0.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Terminal color capabilities detection WWW= https://ttytoolkit.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tty-command/Makefile b/devel/rubygem-tty-command/Makefile index 5bbc69c0aa9c..77e4647423e2 100644 --- a/devel/rubygem-tty-command/Makefile +++ b/devel/rubygem-tty-command/Makefile @@ -1,20 +1,19 @@ PORTNAME= tty-command PORTVERSION= 0.10.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Execute shell commands with pretty logging WWW= https://ttytoolkit.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-pastel>=0.8<1:devel/rubygem-pastel USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tty-config/Makefile b/devel/rubygem-tty-config/Makefile index d4e42dd231f8..4107169347f7 100644 --- a/devel/rubygem-tty-config/Makefile +++ b/devel/rubygem-tty-config/Makefile @@ -1,18 +1,17 @@ PORTNAME= tty-config PORTVERSION= 0.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Highly customisable application configuration interface for terminal tools WWW= https://ttytoolkit.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tty-cursor/Makefile b/devel/rubygem-tty-cursor/Makefile index 4ecebfa414fe..c7c3cde0ccdd 100644 --- a/devel/rubygem-tty-cursor/Makefile +++ b/devel/rubygem-tty-cursor/Makefile @@ -1,18 +1,17 @@ PORTNAME= tty-cursor PORTVERSION= 0.7.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Move terminal cursor around WWW= https://ttytoolkit.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tty-editor/Makefile b/devel/rubygem-tty-editor/Makefile index f1dcb8e30da4..2fb2bbdc2451 100644 --- a/devel/rubygem-tty-editor/Makefile +++ b/devel/rubygem-tty-editor/Makefile @@ -1,20 +1,19 @@ PORTNAME= tty-editor PORTVERSION= 0.7.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Open a file or text in a preferred terminal text editor WWW= https://ttytoolkit.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-tty-prompt>=0.22<1:devel/rubygem-tty-prompt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tty-file/Makefile b/devel/rubygem-tty-file/Makefile index acb3ad34fd5b..f4c3bb0c4051 100644 --- a/devel/rubygem-tty-file/Makefile +++ b/devel/rubygem-tty-file/Makefile @@ -1,22 +1,21 @@ PORTNAME= tty-file PORTVERSION= 0.10.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= File and directory manipulation utility methods WWW= https://ttytoolkit.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-diff-lcs>=1.3<2:textproc/rubygem-diff-lcs \ rubygem-pastel>=0.8<1:devel/rubygem-pastel \ rubygem-tty-prompt>=0.22<1:devel/rubygem-tty-prompt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tty-font/Makefile b/devel/rubygem-tty-font/Makefile index a425eccc8a2d..12c389b716b9 100644 --- a/devel/rubygem-tty-font/Makefile +++ b/devel/rubygem-tty-font/Makefile @@ -1,18 +1,17 @@ PORTNAME= tty-font PORTVERSION= 0.5.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Large stylized characters using terminal friendly fonts WWW= https://ttytoolkit.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tty-logger/Makefile b/devel/rubygem-tty-logger/Makefile index 08ac6d410080..b4399ec7b8af 100644 --- a/devel/rubygem-tty-logger/Makefile +++ b/devel/rubygem-tty-logger/Makefile @@ -1,20 +1,19 @@ PORTNAME= tty-logger PORTVERSION= 0.6.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Readable, structured and beautiful terminal logging WWW= https://ttytoolkit.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-pastel>=0.8<1:devel/rubygem-pastel USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tty-markdown/Makefile b/devel/rubygem-tty-markdown/Makefile index 795324cc952c..b4368ca40e3a 100644 --- a/devel/rubygem-tty-markdown/Makefile +++ b/devel/rubygem-tty-markdown/Makefile @@ -1,25 +1,24 @@ PORTNAME= tty-markdown PORTVERSION= 0.7.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Convert markdown document/text into terminal friendly output WWW= https://ttytoolkit.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-kramdown>=1.16.2<3.0:textproc/rubygem-kramdown \ rubygem-pastel>=0.8<1:devel/rubygem-pastel \ rubygem-rouge>=3.14<4:textproc/rubygem-rouge \ rubygem-strings>=0.2.0<1:devel/rubygem-strings \ rubygem-tty-color>=0.5<1:devel/rubygem-tty-color \ rubygem-tty-screen>=0.8<1:devel/rubygem-tty-screen USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tty-pager/Makefile b/devel/rubygem-tty-pager/Makefile index bf7e52927b9d..adbe1f98786f 100644 --- a/devel/rubygem-tty-pager/Makefile +++ b/devel/rubygem-tty-pager/Makefile @@ -1,21 +1,20 @@ PORTNAME= tty-pager PORTVERSION= 0.14.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Terminal output paging in cross-platform way WWW= https://ttytoolkit.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-strings>=0.2.0<0.3:devel/rubygem-strings \ rubygem-tty-screen>=0.8<1:devel/rubygem-tty-screen USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tty-pie/Makefile b/devel/rubygem-tty-pie/Makefile index a4fa46cd0949..9cea078829a3 100644 --- a/devel/rubygem-tty-pie/Makefile +++ b/devel/rubygem-tty-pie/Makefile @@ -1,21 +1,20 @@ PORTNAME= tty-pie PORTVERSION= 0.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Draw pie charts in your terminal window WWW= https://ttytoolkit.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-pastel>=0.8<1:devel/rubygem-pastel \ rubygem-tty-cursor>=0.7<1:devel/rubygem-tty-cursor USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tty-platform/Makefile b/devel/rubygem-tty-platform/Makefile index 25b4c11b8f88..a11cb50b3546 100644 --- a/devel/rubygem-tty-platform/Makefile +++ b/devel/rubygem-tty-platform/Makefile @@ -1,18 +1,17 @@ PORTNAME= tty-platform PORTVERSION= 0.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Query methods for detecting different OS WWW= https://ttytoolkit.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tty-progressbar/Makefile b/devel/rubygem-tty-progressbar/Makefile index d9208cb36a93..ffe7bf2f2a0c 100644 --- a/devel/rubygem-tty-progressbar/Makefile +++ b/devel/rubygem-tty-progressbar/Makefile @@ -1,24 +1,23 @@ PORTNAME= tty-progressbar PORTVERSION= 0.18.2 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Flexible progress bars drawing in terminal emulators WWW= https://ttytoolkit.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-strings-ansi>=0.2<1:devel/rubygem-strings-ansi \ rubygem-tty-cursor>=0.7<1:devel/rubygem-tty-cursor \ rubygem-tty-screen>=0.8<1:devel/rubygem-tty-screen \ rubygem-unicode-display_width>=1.6<3.0:devel/rubygem-unicode-display_width USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tty-prompt/Makefile b/devel/rubygem-tty-prompt/Makefile index 8245cf3e092b..9cb10219b614 100644 --- a/devel/rubygem-tty-prompt/Makefile +++ b/devel/rubygem-tty-prompt/Makefile @@ -1,21 +1,20 @@ PORTNAME= tty-prompt PORTVERSION= 0.23.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Beautiful and powerful interactive command line prompt WWW= https://ttytoolkit.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-pastel>=0.8<1:devel/rubygem-pastel \ rubygem-tty-reader>=0.8<1:devel/rubygem-tty-reader USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tty-reader/Makefile b/devel/rubygem-tty-reader/Makefile index d4f128185c31..49c23232f60c 100644 --- a/devel/rubygem-tty-reader/Makefile +++ b/devel/rubygem-tty-reader/Makefile @@ -1,22 +1,21 @@ PORTNAME= tty-reader PORTVERSION= 0.9.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Methods for processing keyboard input WWW= https://ttytoolkit.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-tty-cursor>=0.7<1:devel/rubygem-tty-cursor \ rubygem-tty-screen>=0.8<1:devel/rubygem-tty-screen \ rubygem-wisper>=2.0<3:devel/rubygem-wisper USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tty-screen/Makefile b/devel/rubygem-tty-screen/Makefile index 22eaedea0f20..cee6778b8da9 100644 --- a/devel/rubygem-tty-screen/Makefile +++ b/devel/rubygem-tty-screen/Makefile @@ -1,18 +1,17 @@ PORTNAME= tty-screen PORTVERSION= 0.8.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Terminal screen size detection WWW= https://ttytoolkit.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tty-spinner/Makefile b/devel/rubygem-tty-spinner/Makefile index 0437b8facd6c..051b53b31b30 100644 --- a/devel/rubygem-tty-spinner/Makefile +++ b/devel/rubygem-tty-spinner/Makefile @@ -1,20 +1,19 @@ PORTNAME= tty-spinner PORTVERSION= 0.9.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Terminal spinner for tasks with non-deterministic time WWW= https://ttytoolkit.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-tty-cursor>=0.7<1:devel/rubygem-tty-cursor USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tty-table/Makefile b/devel/rubygem-tty-table/Makefile index b7cc4b03be53..dbbb68b30bdc 100644 --- a/devel/rubygem-tty-table/Makefile +++ b/devel/rubygem-tty-table/Makefile @@ -1,22 +1,21 @@ PORTNAME= tty-table PORTVERSION= 0.12.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Fexible and intuitive table generator WWW= https://ttytoolkit.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-pastel>=0.8<1:devel/rubygem-pastel \ rubygem-strings>=0.2.0<0.3:devel/rubygem-strings \ rubygem-tty-screen>=0.8<1:devel/rubygem-tty-screen USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tty-tree/Makefile b/devel/rubygem-tty-tree/Makefile index 6ee006fdfefa..538879092046 100644 --- a/devel/rubygem-tty-tree/Makefile +++ b/devel/rubygem-tty-tree/Makefile @@ -1,18 +1,17 @@ PORTNAME= tty-tree PORTVERSION= 0.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Print directory or structured data in tree like format WWW= https://ttytoolkit.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tty-which/Makefile b/devel/rubygem-tty-which/Makefile index 74469180656b..a4047707f9f5 100644 --- a/devel/rubygem-tty-which/Makefile +++ b/devel/rubygem-tty-which/Makefile @@ -1,18 +1,17 @@ PORTNAME= tty-which PORTVERSION= 0.5.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Platform independent implementation of Unix which command WWW= https://ttytoolkit.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tty/Makefile b/devel/rubygem-tty/Makefile index 0382533be818..016db6830a0f 100644 --- a/devel/rubygem-tty/Makefile +++ b/devel/rubygem-tty/Makefile @@ -1,46 +1,45 @@ PORTNAME= tty PORTVERSION= 0.10.0 PORTREVISION= 10 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Toolbox for developing beautiful CLI clients WWW= https://ttytoolkit.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-bundler>=1.16:sysutils/rubygem-bundler \ rubygem-equatable>=0.5<1:devel/rubygem-equatable \ rubygem-pastel>=0.7.2<1:devel/rubygem-pastel \ rubygem-thor0>=0.20.0<0.21:devel/rubygem-thor0 \ rubygem-tty-box>=0.4.1<1:devel/rubygem-tty-box \ rubygem-tty-color>=0.5<1:devel/rubygem-tty-color \ rubygem-tty-command>=0.9<1:devel/rubygem-tty-command \ rubygem-tty-config>=0.3.2<1:devel/rubygem-tty-config \ rubygem-tty-cursor>=0.7<1:devel/rubygem-tty-cursor \ rubygem-tty-editor>=0.5<1:devel/rubygem-tty-editor \ rubygem-tty-file>=0.8<1:devel/rubygem-tty-file \ rubygem-tty-font>=0.4.0<1:devel/rubygem-tty-font \ rubygem-tty-logger>=0.2.0<1:devel/rubygem-tty-logger \ rubygem-tty-markdown>=0.6.0<1:devel/rubygem-tty-markdown \ rubygem-tty-pager>=0.12<1:devel/rubygem-tty-pager \ rubygem-tty-pie>=0.3<1:devel/rubygem-tty-pie \ rubygem-tty-platform>=0.2<1:devel/rubygem-tty-platform \ rubygem-tty-progressbar>=0.17<1:devel/rubygem-tty-progressbar \ rubygem-tty-prompt>=0.19<1:devel/rubygem-tty-prompt \ rubygem-tty-screen>=0.7<1:devel/rubygem-tty-screen \ rubygem-tty-spinner>=0.9<1:devel/rubygem-tty-spinner \ rubygem-tty-table>=0.11.0<1:devel/rubygem-tty-table \ rubygem-tty-tree>=0.3<1:devel/rubygem-tty-tree \ rubygem-tty-which>=0.4<1:devel/rubygem-tty-which USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/teletype .include diff --git a/devel/rubygem-turn/Makefile b/devel/rubygem-turn/Makefile index a0b897930ef4..986aacf515aa 100644 --- a/devel/rubygem-turn/Makefile +++ b/devel/rubygem-turn/Makefile @@ -1,24 +1,23 @@ PORTNAME= turn PORTVERSION= 0.9.7 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= New output format for Test::Unit WWW= https://github.com/turn-project/turn LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ansi>=0:devel/rubygem-ansi \ rubygem-minitest>=4:devel/rubygem-minitest USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/turn .include diff --git a/devel/rubygem-typed-array/Makefile b/devel/rubygem-typed-array/Makefile index 4313b0ed411b..6502b1cd40e6 100644 --- a/devel/rubygem-typed-array/Makefile +++ b/devel/rubygem-typed-array/Makefile @@ -1,15 +1,14 @@ PORTNAME= typed-array PORTVERSION= 0.1.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= tota@FreeBSD.org COMMENT= Provides methods for creating type-enforced Arrays WWW= https://github.com/yaauie/typed-array NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-typeprof/Makefile b/devel/rubygem-typeprof/Makefile index 70ba2943fcfb..60d8f4bd12b5 100644 --- a/devel/rubygem-typeprof/Makefile +++ b/devel/rubygem-typeprof/Makefile @@ -1,22 +1,21 @@ PORTNAME= typeprof PORTVERSION= 0.21.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Type analysis tool for Ruby code WWW= https://github.com/ruby/typeprof LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rbs>=1.8.1:devel/rubygem-rbs USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/typeprof .include diff --git a/devel/rubygem-tzinfo-data/Makefile b/devel/rubygem-tzinfo-data/Makefile index 614d55123498..f9205fde9cdd 100644 --- a/devel/rubygem-tzinfo-data/Makefile +++ b/devel/rubygem-tzinfo-data/Makefile @@ -1,20 +1,19 @@ PORTNAME= tzinfo-data PORTVERSION= 1.2022.6 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= IANA Time Zone database for TZInfo WWW= https://tzinfo.github.io/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-tzinfo>=1.0.0:devel/rubygem-tzinfo USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tzinfo/Makefile b/devel/rubygem-tzinfo/Makefile index c55cebc5d398..daca86b9b267 100644 --- a/devel/rubygem-tzinfo/Makefile +++ b/devel/rubygem-tzinfo/Makefile @@ -1,20 +1,19 @@ PORTNAME= tzinfo PORTVERSION= 2.0.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Daylight-savings aware timezone support for Ruby WWW= https://tzinfo.github.io/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-tzinfo1/Makefile b/devel/rubygem-tzinfo1/Makefile index 6e8c3c5ad46f..1b1bdfca5f20 100644 --- a/devel/rubygem-tzinfo1/Makefile +++ b/devel/rubygem-tzinfo1/Makefile @@ -1,23 +1,22 @@ PORTNAME= tzinfo PORTVERSION= 1.2.10 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Daylight-savings aware timezone support for Ruby WWW= https://tzinfo.github.io/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-thread_safe>=0.1<1:devel/rubygem-thread_safe USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\. .include diff --git a/devel/rubygem-uber/Makefile b/devel/rubygem-uber/Makefile index 834764a3a876..001b43c9cde3 100644 --- a/devel/rubygem-uber/Makefile +++ b/devel/rubygem-uber/Makefile @@ -1,17 +1,16 @@ PORTNAME= uber PORTVERSION= 0.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Gem-authoring framework WWW= https://github.com/apotonick/uber LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-un/Makefile b/devel/rubygem-un/Makefile index bf355e2eaa7c..74965bf2b228 100644 --- a/devel/rubygem-un/Makefile +++ b/devel/rubygem-un/Makefile @@ -1,19 +1,18 @@ PORTNAME= un PORTVERSION= 0.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Utilities to replace common UNIX commands WWW= https://github.com/ruby/un LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-unicode-display_width/Makefile b/devel/rubygem-unicode-display_width/Makefile index c692e8bb6e4b..16d213eb261d 100644 --- a/devel/rubygem-unicode-display_width/Makefile +++ b/devel/rubygem-unicode-display_width/Makefile @@ -1,18 +1,17 @@ PORTNAME= unicode-display_width PORTVERSION= 2.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Get the display size of a string WWW= https://github.com/janlelis/unicode-display_width LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-unicode/Makefile b/devel/rubygem-unicode/Makefile index 0956bfe2fa39..80b0f11e736c 100644 --- a/devel/rubygem-unicode/Makefile +++ b/devel/rubygem-unicode/Makefile @@ -1,15 +1,14 @@ PORTNAME= unicode PORTVERSION= 0.4.4.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Unicode string manipulation library for Ruby WWW= http://www.yoshidam.net/Ruby.html #unicode LICENSE= RUBY USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-unicode_utils/Makefile b/devel/rubygem-unicode_utils/Makefile index a772d3e1d144..9f8ffec4a15d 100644 --- a/devel/rubygem-unicode_utils/Makefile +++ b/devel/rubygem-unicode_utils/Makefile @@ -1,18 +1,17 @@ PORTNAME= unicode_utils PORTVERSION= 1.4.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Additional Unicode aware functions WWW= https://github.com/lang/unicode_utils LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-unleash/Makefile b/devel/rubygem-unleash/Makefile index 2ed0a35f52c6..789fa6cee212 100644 --- a/devel/rubygem-unleash/Makefile +++ b/devel/rubygem-unleash/Makefile @@ -1,22 +1,21 @@ PORTNAME= unleash PORTVERSION= 3.2.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Ruby client for Unleash WWW= https://github.com/unleash/unleash-client-ruby LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-murmurhash3>=0.1.6<0.2.0:devel/rubygem-murmurhash3 USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/unleash-client .include diff --git a/devel/rubygem-useragent/Makefile b/devel/rubygem-useragent/Makefile index 591fdb61eb02..1d9a2077b01a 100644 --- a/devel/rubygem-useragent/Makefile +++ b/devel/rubygem-useragent/Makefile @@ -1,18 +1,17 @@ PORTNAME= useragent PORTVERSION= 0.16.10 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sirl33tname@gmail.com COMMENT= HTTP User Agent parser WWW= https://github.com/gshutler/useragent LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-uuid/Makefile b/devel/rubygem-uuid/Makefile index fa683bb9736b..edbc1250df12 100644 --- a/devel/rubygem-uuid/Makefile +++ b/devel/rubygem-uuid/Makefile @@ -1,20 +1,19 @@ PORTNAME= uuid PORTVERSION= 2.3.9 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= UUID Generator for Ruby WWW= https://github.com/assaf/uuid LICENSE= MIT RUN_DEPENDS= rubygem-macaddr>=1.0:net/rubygem-macaddr NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/uuid .include diff --git a/devel/rubygem-uuidtools/Makefile b/devel/rubygem-uuidtools/Makefile index c73515a53e84..579fa221fb8e 100644 --- a/devel/rubygem-uuidtools/Makefile +++ b/devel/rubygem-uuidtools/Makefile @@ -1,18 +1,17 @@ PORTNAME= uuidtools PORTVERSION= 2.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple universally unique ID generation library WWW= https://github.com/sporkmonger/uuidtools LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-valid/Makefile b/devel/rubygem-valid/Makefile index a12d7a9713bd..09f460193c6e 100644 --- a/devel/rubygem-valid/Makefile +++ b/devel/rubygem-valid/Makefile @@ -1,17 +1,16 @@ PORTNAME= valid PORTVERSION= 1.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ports@armchairs.be COMMENT= Standalone, generic object validator for ruby WWW= https://github.com/zombor/Validator LICENSE= ISCL USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-validatable/Makefile b/devel/rubygem-validatable/Makefile index 1f27eb5b4cdb..e643cf317416 100644 --- a/devel/rubygem-validatable/Makefile +++ b/devel/rubygem-validatable/Makefile @@ -1,17 +1,16 @@ PORTNAME= validatable PORTVERSION= 1.6.7 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library for adding database/object validations WWW= http://validatable.rubyforge.org/ LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-validate_email/Makefile b/devel/rubygem-validate_email/Makefile index 54995af0679e..8a5161498261 100644 --- a/devel/rubygem-validate_email/Makefile +++ b/devel/rubygem-validate_email/Makefile @@ -1,21 +1,20 @@ PORTNAME= validate_email PORTVERSION= 0.1.6 PORTREVISION= 3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Validating email addresses in Rails 3 models WWW= https://github.com/perfectline/validates_email/tree/master LICENSE= MIT RUN_DEPENDS= rubygem-activemodel61>=3.0:databases/rubygem-activemodel61 \ rubygem-mail>=2.2.5:mail/rubygem-mail USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-validate_url/Makefile b/devel/rubygem-validate_url/Makefile index 4a4b19e02397..26c03372d193 100644 --- a/devel/rubygem-validate_url/Makefile +++ b/devel/rubygem-validate_url/Makefile @@ -1,21 +1,20 @@ PORTNAME= validate_url PORTVERSION= 1.0.13 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Validating urls in Rails WWW= https://github.com/perfectline/validates_url/tree/master LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-activemodel61>=3.0:databases/rubygem-activemodel61 \ rubygem-public_suffix>=0:dns/rubygem-public_suffix USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-validates_timeliness/Makefile b/devel/rubygem-validates_timeliness/Makefile index 0b9c5e1323a5..756163b01d53 100644 --- a/devel/rubygem-validates_timeliness/Makefile +++ b/devel/rubygem-validates_timeliness/Makefile @@ -1,21 +1,20 @@ PORTNAME= validates_timeliness PORTVERSION= 6.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Add validation methods to ActiveModel for validating dates and times WWW= https://github.com/adzap/validates_timeliness LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activemodel61>=6.0.0<7:databases/rubygem-activemodel61 \ rubygem-timeliness>=0.3.10<1:devel/rubygem-timeliness USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-version_gem/Makefile b/devel/rubygem-version_gem/Makefile index f342b3d9af95..97a5abb254fc 100644 --- a/devel/rubygem-version_gem/Makefile +++ b/devel/rubygem-version_gem/Makefile @@ -1,18 +1,17 @@ PORTNAME= version_gem PORTVERSION= 1.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Introspectable Version module WWW= https://github.com/oauth-xx/version_gem LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-versionomy/Makefile b/devel/rubygem-versionomy/Makefile index 291f585d51da..bc25dea26163 100644 --- a/devel/rubygem-versionomy/Makefile +++ b/devel/rubygem-versionomy/Makefile @@ -1,18 +1,17 @@ PORTNAME= versionomy PORTVERSION= 0.5.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Generalized version number library for Ruby WWW= https://dazuma.github.io/versionomy/ LICENSE= BSD3CLAUSE RUN_DEPENDS= rubygem-blockenspiel>=0.5:devel/rubygem-blockenspiel NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-view_component-rails61/Makefile b/devel/rubygem-view_component-rails61/Makefile index 76e0cbe6ee89..235683bff0f7 100644 --- a/devel/rubygem-view_component-rails61/Makefile +++ b/devel/rubygem-view_component-rails61/Makefile @@ -1,23 +1,22 @@ PORTNAME= view_component PORTVERSION= 2.74.1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= mfechner@FreeBSD.org COMMENT= View components for Rails WWW= https://github.com/github/view_component LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activesupport61>=5<8:devel/rubygem-activesupport61 \ rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby \ rubygem-method_source>=1.0<2:devel/rubygem-method_source USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-virtus/Makefile b/devel/rubygem-virtus/Makefile index a666f4817e04..3c2280abbd10 100644 --- a/devel/rubygem-virtus/Makefile +++ b/devel/rubygem-virtus/Makefile @@ -1,22 +1,21 @@ PORTNAME= virtus PORTVERSION= 2.0.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Attributes on Steroids for Plain Old Ruby Objects WWW= https://github.com/solnic/virtus LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-axiom-types>=0.1<1:devel/rubygem-axiom-types \ rubygem-coercible>=1.0<2:devel/rubygem-coercible \ rubygem-descendants_tracker>=0.0.3<1:devel/rubygem-descendants_tracker USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-warbler/Makefile b/devel/rubygem-warbler/Makefile index f2c531da4151..6643b55bb1d9 100644 --- a/devel/rubygem-warbler/Makefile +++ b/devel/rubygem-warbler/Makefile @@ -1,27 +1,26 @@ PORTNAME= warbler PORTVERSION= 2.0.5 PORTREVISION= 1 CATEGORIES= devel rubygems java MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Constructor of .war files of Rails applications WWW= https://github.com/jruby/warbler LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= jruby:lang/jruby \ rubygem-jruby-jars>=9.0.0.0:devel/rubygem-jruby-jars \ rubygem-jruby-rack>=1.1.1<1.3:www/rubygem-jruby-rack \ rubygem-rake>=10.1.0:devel/rubygem-rake \ rubygem-rubyzip13>=1.0<1.4:archivers/rubygem-rubyzip13 USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/warble .include diff --git a/devel/rubygem-warden/Makefile b/devel/rubygem-warden/Makefile index 59be2e07da92..088290a580da 100644 --- a/devel/rubygem-warden/Makefile +++ b/devel/rubygem-warden/Makefile @@ -1,20 +1,19 @@ PORTNAME= warden PORTVERSION= 1.2.9 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Rack middleware that provides authentication for rack applications WWW= https://github.com/wardencommunity/warden LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rack>=2.0.9,3:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-warning/Makefile b/devel/rubygem-warning/Makefile index 48e56d124c48..f951626edcca 100644 --- a/devel/rubygem-warning/Makefile +++ b/devel/rubygem-warning/Makefile @@ -1,18 +1,17 @@ PORTNAME= warning PORTVERSION= 1.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Adds custom processing for warnings WWW= https://github.com/jeremyevans/ruby-warning LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-wdm/Makefile b/devel/rubygem-wdm/Makefile index a47bc32951e7..6ef0638c0563 100644 --- a/devel/rubygem-wdm/Makefile +++ b/devel/rubygem-wdm/Makefile @@ -1,17 +1,16 @@ PORTNAME= wdm PORTVERSION= 0.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= joe@thrallingpenguin.com COMMENT= Library for monitoring directories for changes WWW= https://github.com/Maher4Ever/wdm LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-weakref/Makefile b/devel/rubygem-weakref/Makefile index 2d9b19f26cc5..f46ad9671850 100644 --- a/devel/rubygem-weakref/Makefile +++ b/devel/rubygem-weakref/Makefile @@ -1,19 +1,18 @@ PORTNAME= weakref PORTVERSION= 0.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Allow a referenced object to be garbage-collected WWW= https://github.com/ruby/weakref LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-web-console-rails60/Makefile b/devel/rubygem-web-console-rails60/Makefile index 6c6f1b842910..a69c7899e3ac 100644 --- a/devel/rubygem-web-console-rails60/Makefile +++ b/devel/rubygem-web-console-rails60/Makefile @@ -1,27 +1,26 @@ PORTNAME= web-console PORTVERSION= 4.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Debugging tool for your Ruby on Rails applications WWW= https://github.com/rails/web-console LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activemodel60>=6.0.0:databases/rubygem-activemodel60 \ rubygem-actionview60>=6.0.0:devel/rubygem-actionview60 \ rubygem-bindex>=0.4.0:devel/rubygem-bindex \ rubygem-railties60>=6.0.0:www/rubygem-railties60 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= web_console .include diff --git a/devel/rubygem-web-console-rails61/Makefile b/devel/rubygem-web-console-rails61/Makefile index c2346103a59e..b0c3fd5281b4 100644 --- a/devel/rubygem-web-console-rails61/Makefile +++ b/devel/rubygem-web-console-rails61/Makefile @@ -1,27 +1,26 @@ PORTNAME= web-console PORTVERSION= 4.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Debugging tool for your Ruby on Rails applications WWW= https://github.com/rails/web-console LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activemodel61>=6.0.0:databases/rubygem-activemodel61 \ rubygem-actionview61>=6.0.0:devel/rubygem-actionview61 \ rubygem-bindex>=0.4.0:devel/rubygem-bindex \ rubygem-railties61>=6.0.0:www/rubygem-railties61 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= web_console .include diff --git a/devel/rubygem-web-console2/Makefile b/devel/rubygem-web-console2/Makefile index 18e293011556..0954cad35dd8 100644 --- a/devel/rubygem-web-console2/Makefile +++ b/devel/rubygem-web-console2/Makefile @@ -1,30 +1,29 @@ PORTNAME= web-console PORTVERSION= 2.3.0 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 2 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Debugging tool for your Ruby on Rails applications WWW= https://github.com/rails/web-console LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activemodel4>=4.0:databases/rubygem-activemodel4 \ rubygem-binding_of_caller>=0.7.2:devel/rubygem-binding_of_caller \ rubygem-railties4>=4.0:www/rubygem-railties4 \ rubygem-sprockets-rails-rails4>=2.0:devel/rubygem-sprockets-rails-rails4 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= web_console PORTSCOUT= limit:^2\. .include diff --git a/devel/rubygem-web-console3-rails5/Makefile b/devel/rubygem-web-console3-rails5/Makefile index fa6341fea937..21f789b51e8e 100644 --- a/devel/rubygem-web-console3-rails5/Makefile +++ b/devel/rubygem-web-console3-rails5/Makefile @@ -1,30 +1,29 @@ PORTNAME= web-console PORTVERSION= 3.7.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 3-rails5 MAINTAINER= ruby@FreeBSD.org COMMENT= Debugging tool for your Ruby on Rails applications WWW= https://github.com/rails/web-console LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activemodel5>=5.0:databases/rubygem-activemodel5 \ rubygem-actionview5>=5.0:devel/rubygem-actionview5 \ rubygem-bindex>=0.4.0:devel/rubygem-bindex \ rubygem-railties5>=5.0:www/rubygem-railties5 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= web_console # web-console 4.0.0+ requires Rails 6.0.0+ PORTSCOUT= limit:^3\. .include diff --git a/devel/rubygem-web-console3-rails50/Makefile b/devel/rubygem-web-console3-rails50/Makefile index 2b725bfe83b9..c19737fb503b 100644 --- a/devel/rubygem-web-console3-rails50/Makefile +++ b/devel/rubygem-web-console3-rails50/Makefile @@ -1,30 +1,29 @@ PORTNAME= web-console PORTVERSION= 3.7.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 3-rails50 MAINTAINER= ruby@FreeBSD.org COMMENT= Debugging tool for your Ruby on Rails applications WWW= https://github.com/rails/web-console LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activemodel50>=5.0:databases/rubygem-activemodel50 \ rubygem-actionview50>=5.0:devel/rubygem-actionview50 \ rubygem-bindex>=0.4.0:devel/rubygem-bindex \ rubygem-railties50>=5.0:www/rubygem-railties50 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= web_console # web-console 4.0.0+ requires Rails 6.0.0+ PORTSCOUT= limit:^3\. .include diff --git a/devel/rubygem-web-console3-rails52/Makefile b/devel/rubygem-web-console3-rails52/Makefile index e838c14634d8..16fd0a8c6ace 100644 --- a/devel/rubygem-web-console3-rails52/Makefile +++ b/devel/rubygem-web-console3-rails52/Makefile @@ -1,30 +1,29 @@ PORTNAME= web-console PORTVERSION= 3.7.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 3-rails52 MAINTAINER= ruby@FreeBSD.org COMMENT= Debugging tool for your Ruby on Rails applications WWW= https://github.com/rails/web-console LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activemodel52>=5.0:databases/rubygem-activemodel52 \ rubygem-actionview52>=5.0:devel/rubygem-actionview52 \ rubygem-bindex>=0.4.0:devel/rubygem-bindex \ rubygem-railties52>=5.0:www/rubygem-railties52 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= web_console # web-console 4.0.0+ requires Rails 6.0.0+ PORTSCOUT= limit:^3\. .include diff --git a/devel/rubygem-webby/Makefile b/devel/rubygem-webby/Makefile index 107116d68c5a..fa235146d4f0 100644 --- a/devel/rubygem-webby/Makefile +++ b/devel/rubygem-webby/Makefile @@ -1,26 +1,25 @@ PORTNAME= webby PORTVERSION= 0.9.4 PORTREVISION= 2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= zi@FreeBSD.org COMMENT= Small website management system WWW= https://rubygems.org/gems/webby LICENSE= MIT RUN_DEPENDS= rubygem-bones>=2.5.0:devel/rubygem-bones \ rubygem-directory_watcher>=1.1.2:devel/rubygem-directory_watcher \ rubygem-hpricot>=0.6.0:www/rubygem-hpricot \ rubygem-launchy>=0.3.2:devel/rubygem-launchy \ rubygem-logging>=0.9.7:devel/rubygem-logging \ rubygem-loquacious>=1.3.0:devel/rubygem-loquacious \ rubygem-rspec>=1.2.2:devel/rubygem-rspec NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/webby bin/webby-gen .include diff --git a/devel/rubygem-webfinger/Makefile b/devel/rubygem-webfinger/Makefile index 2901799c3f23..0f84e048369b 100644 --- a/devel/rubygem-webfinger/Makefile +++ b/devel/rubygem-webfinger/Makefile @@ -1,22 +1,21 @@ PORTNAME= webfinger PORTVERSION= 1.1.0 PORTREVISION= 2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= WebFinger client library WWW= https://github.com/nov/webfinger LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activesupport61>=3.0:devel/rubygem-activesupport61 \ rubygem-httpclient>=2.4:www/rubygem-httpclient USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-webpacker-rails60/Makefile b/devel/rubygem-webpacker-rails60/Makefile index 8bcdd6473e8f..cfe570d2371c 100644 --- a/devel/rubygem-webpacker-rails60/Makefile +++ b/devel/rubygem-webpacker-rails60/Makefile @@ -1,25 +1,24 @@ PORTNAME= webpacker PORTVERSION= 5.4.3 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Use Webpack to manage app-like JavaScript modules in Rails WWW= https://github.com/rails/webpacker LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport60>=5.2:devel/rubygem-activesupport60 \ rubygem-rack-proxy>=0.6.1:www/rubygem-rack-proxy \ rubygem-railties60>=5.2:www/rubygem-railties60 \ rubygem-semantic_range>=2.3.0:devel/rubygem-semantic_range \ yarn:www/yarn USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-webpacker-rails61/Makefile b/devel/rubygem-webpacker-rails61/Makefile index 14a40eb5d1da..4037d99dd69c 100644 --- a/devel/rubygem-webpacker-rails61/Makefile +++ b/devel/rubygem-webpacker-rails61/Makefile @@ -1,26 +1,25 @@ PORTNAME= webpacker PORTVERSION= 5.4.3 PORTREVISION= 2 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Use Webpack to manage app-like JavaScript modules in Rails WWW= https://github.com/rails/webpacker LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport61>=5.2:devel/rubygem-activesupport61 \ rubygem-rack-proxy>=0.6.1:www/rubygem-rack-proxy \ rubygem-railties61>=5.2:www/rubygem-railties61 \ rubygem-semantic_range>=2.3.0:devel/rubygem-semantic_range \ yarn:www/yarn USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-webpacker4-rails60/Makefile b/devel/rubygem-webpacker4-rails60/Makefile index b80fecb2f163..f046cae04b1b 100644 --- a/devel/rubygem-webpacker4-rails60/Makefile +++ b/devel/rubygem-webpacker4-rails60/Makefile @@ -1,26 +1,25 @@ PORTNAME= webpacker PORTVERSION= 4.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4-rails60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Use Webpack to manage app-like JavaScript modules in Rails WWW= https://github.com/rails/webpacker LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport60>=4.2:devel/rubygem-activesupport60 \ rubygem-rack-proxy>=0.6.1:www/rubygem-rack-proxy \ rubygem-railties60>=4.2:www/rubygem-railties60 \ yarn:www/yarn USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^4\. .include diff --git a/devel/rubygem-will_paginate/Makefile b/devel/rubygem-will_paginate/Makefile index fcf720aa5fdb..4e8565a4fc7b 100644 --- a/devel/rubygem-will_paginate/Makefile +++ b/devel/rubygem-will_paginate/Makefile @@ -1,19 +1,18 @@ PORTNAME= will_paginate PORTVERSION= 3.3.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Pagination plugin for web frameworks and other apps WWW= https://github.com/mislav/will_paginate LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cpe gem CPE_VENDOR= mislav_marohnic -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-windows_error/Makefile b/devel/rubygem-windows_error/Makefile index a7e391582717..1daac55177f2 100644 --- a/devel/rubygem-windows_error/Makefile +++ b/devel/rubygem-windows_error/Makefile @@ -1,18 +1,17 @@ PORTNAME= windows_error PORTVERSION= 0.1.4 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Provides a way to look up Windows NTSTATUS and Win32 Error Codes WWW= https://github.com/rapid7/windows_error LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-wisper/Makefile b/devel/rubygem-wisper/Makefile index 4745e8e43bf8..3fa020028197 100644 --- a/devel/rubygem-wisper/Makefile +++ b/devel/rubygem-wisper/Makefile @@ -1,20 +1,19 @@ PORTNAME= wisper PORTVERSION= 2.0.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Library for Ruby objects with Publish-Subscribe capabilities WWW= https://github.com/krisleech/wisper LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/console ${STAGEDIR}${PREFIX}/bin/setup .include diff --git a/devel/rubygem-with_env/Makefile b/devel/rubygem-with_env/Makefile index 762b3cb8303d..b12acf665a77 100644 --- a/devel/rubygem-with_env/Makefile +++ b/devel/rubygem-with_env/Makefile @@ -1,20 +1,19 @@ PORTNAME= with_env PORTVERSION= 1.1.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Execute code with env variables WWW= https://github.com/mhs/with_env-rb LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= bin/setup .include diff --git a/devel/rubygem-wmi-lite/Makefile b/devel/rubygem-wmi-lite/Makefile index e82b31b59720..e402e1712188 100644 --- a/devel/rubygem-wmi-lite/Makefile +++ b/devel/rubygem-wmi-lite/Makefile @@ -1,18 +1,17 @@ PORTNAME= wmi-lite PORTVERSION= 1.0.5 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= renchap@cocoa-x.com COMMENT= Lightweight utility over win32ole for accessing basic WMI WWW= https://github.com/opscode/wmi-lite LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-xdg/Makefile b/devel/rubygem-xdg/Makefile index dc997f85684d..a95a56099bc5 100644 --- a/devel/rubygem-xdg/Makefile +++ b/devel/rubygem-xdg/Makefile @@ -1,23 +1,22 @@ PORTNAME= xdg PORTVERSION= 6.6.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= XDG Base Directory Standard Library for Ruby WWW= https://github.com/bkuhlmann/xdg LICENSE= HIPPOCRATIC LICENSE_NAME= Hippocratic License 2.1.0 LICENSE_FILE= ${WRKSRC}/LICENSE.adoc LICENSE_PERMS= auto-accept dist-mirror pkg-mirror BROKEN_RUBY27= yes BROKEN_RUBY30= yes USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-xdg2/Makefile b/devel/rubygem-xdg2/Makefile index 5a6addeed2b8..324e4cef7a5c 100644 --- a/devel/rubygem-xdg2/Makefile +++ b/devel/rubygem-xdg2/Makefile @@ -1,21 +1,20 @@ PORTNAME= xdg PORTVERSION= 2.2.5 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 2 MAINTAINER= sunpoet@FreeBSD.org COMMENT= XDG Base Directory Standard Library for Ruby WWW= https://github.com/bkuhlmann/xdg LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^2\. .include diff --git a/devel/rubygem-xdg3/Makefile b/devel/rubygem-xdg3/Makefile index 5dbf0ea3201e..43dbe300752c 100644 --- a/devel/rubygem-xdg3/Makefile +++ b/devel/rubygem-xdg3/Makefile @@ -1,23 +1,22 @@ PORTNAME= xdg PORTVERSION= 3.1.1 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 3 MAINTAINER= sunpoet@FreeBSD.org COMMENT= XDG Base Directory Standard Library for Ruby WWW= https://github.com/bkuhlmann/xdg LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes # xdg 4.0.0+ requires ruby 2.7+ PORTSCOUT= limit:^3\. .include diff --git a/devel/rubygem-xdg4/Makefile b/devel/rubygem-xdg4/Makefile index 55294a2b8b47..bbddd98e3376 100644 --- a/devel/rubygem-xdg4/Makefile +++ b/devel/rubygem-xdg4/Makefile @@ -1,23 +1,22 @@ PORTNAME= xdg PORTVERSION= 4.5.0 PORTREVISION= 1 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4 MAINTAINER= sunpoet@FreeBSD.org COMMENT= XDG Base Directory Standard Library for Ruby WWW= https://github.com/bkuhlmann/xdg LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.adoc USES= gem -USE_RUBY= yes NO_ARCH= yes # xdg 5.0.0+ requires ruby 3.0+ PORTSCOUT= limit:^4\. .include diff --git a/devel/rubygem-xdg5/Makefile b/devel/rubygem-xdg5/Makefile index 41ed27b97ff5..09345f91dc60 100644 --- a/devel/rubygem-xdg5/Makefile +++ b/devel/rubygem-xdg5/Makefile @@ -1,24 +1,23 @@ PORTNAME= xdg PORTVERSION= 5.3.0 CATEGORIES= devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= XDG Base Directory Standard Library for Ruby WWW= https://github.com/bkuhlmann/xdg LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.adoc BROKEN_RUBY27= yes USES= gem -USE_RUBY= yes NO_ARCH= yes # xdg 6.0.0+ requires ruby 3.1+ PORTSCOUT= limit:^5\. .include diff --git a/devel/rubygem-xorcist/Makefile b/devel/rubygem-xorcist/Makefile index 614c8b45a190..4ce2375513e5 100644 --- a/devel/rubygem-xorcist/Makefile +++ b/devel/rubygem-xorcist/Makefile @@ -1,15 +1,14 @@ PORTNAME= xorcist PORTVERSION= 1.1.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= bofh@FreeBSD.org COMMENT= Blazing-fast-cross-platform-monkey-patch-free string XOR WWW= https://github.com/fny/xorcist LICENSE= RUBY USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-xpath/Makefile b/devel/rubygem-xpath/Makefile index dbf35a502f7d..a38d218e9c79 100644 --- a/devel/rubygem-xpath/Makefile +++ b/devel/rubygem-xpath/Makefile @@ -1,19 +1,18 @@ PORTNAME= xpath PORTVERSION= 3.2.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= DSL for generating XPath Expressions WWW= https://github.com/teamcapybara/xpath LICENSE= MIT RUN_DEPENDS= rubygem-nokogiri>=1.8:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-xxhash/Makefile b/devel/rubygem-xxhash/Makefile index 299d0df85ca8..80507521fb8c 100644 --- a/devel/rubygem-xxhash/Makefile +++ b/devel/rubygem-xxhash/Makefile @@ -1,16 +1,15 @@ PORTNAME= xxhash PORTVERSION= 0.5.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby wrapper for xxHash lib WWW= https://github.com/nashby/xxhash LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-yajl-ruby/Makefile b/devel/rubygem-yajl-ruby/Makefile index 8dc761455588..58f69d9fcfd5 100644 --- a/devel/rubygem-yajl-ruby/Makefile +++ b/devel/rubygem-yajl-ruby/Makefile @@ -1,16 +1,15 @@ PORTNAME= yajl-ruby PORTVERSION= 1.4.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Streaming JSON parsing and encoding library for Ruby WWW= https://github.com/brianmario/yajl-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-yui-compressor/Makefile b/devel/rubygem-yui-compressor/Makefile index 6071fac30eea..98b3b17dc5d8 100644 --- a/devel/rubygem-yui-compressor/Makefile +++ b/devel/rubygem-yui-compressor/Makefile @@ -1,17 +1,16 @@ PORTNAME= yui-compressor PORTVERSION= 0.12.0 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= YUI Compressor for minifying JavaScript and CSS assets WWW= https://github.com/sstephenson/ruby-yui-compressor LICENSE= BSD3CLAUSE MIT MPL11 MPL20 LICENSE_COMB= multi NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/devel/rubygem-zeitwerk/Makefile b/devel/rubygem-zeitwerk/Makefile index 53df767e996b..36d8c69535ae 100644 --- a/devel/rubygem-zeitwerk/Makefile +++ b/devel/rubygem-zeitwerk/Makefile @@ -1,17 +1,16 @@ PORTNAME= zeitwerk PORTVERSION= 2.6.6 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Efficient and thread-safe code loader WWW= https://github.com/fxn/zeitwerk LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-zentest/Makefile b/devel/rubygem-zentest/Makefile index 6d67345622d9..79d9870b1e0e 100644 --- a/devel/rubygem-zentest/Makefile +++ b/devel/rubygem-zentest/Makefile @@ -1,24 +1,23 @@ PORTNAME= zentest PORTVERSION= 4.12.1 PORTEPOCH= 1 CATEGORIES= devel rubygems MASTER_SITES= RG DISTNAME= ZenTest-${PORTVERSION} MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby Unit Testing Utility WWW= https://github.com/seattlerb/zentest LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/multigem \ bin/multiruby \ bin/unit_diff \ bin/zentest .include diff --git a/devel/rubygem-zhexdump/Makefile b/devel/rubygem-zhexdump/Makefile index 4a719222e84f..2e3299f9aa58 100644 --- a/devel/rubygem-zhexdump/Makefile +++ b/devel/rubygem-zhexdump/Makefile @@ -1,18 +1,17 @@ PORTNAME= zhexdump PORTVERSION= 0.0.2 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Highly flexible hexdump implementation WWW= https://github.com/zed-0xff/zhexdump LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/devel/rubygem-zlib/Makefile b/devel/rubygem-zlib/Makefile index b0e1e46cffd9..50a084c7bba0 100644 --- a/devel/rubygem-zlib/Makefile +++ b/devel/rubygem-zlib/Makefile @@ -1,17 +1,16 @@ PORTNAME= zlib PORTVERSION= 2.1.1 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby interface for the zlib compression/decompression library WWW= https://github.com/ruby/zlib LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include diff --git a/devel/rubygem-zstd-ruby/Makefile b/devel/rubygem-zstd-ruby/Makefile index d2072bde8798..ff769e1238bf 100644 --- a/devel/rubygem-zstd-ruby/Makefile +++ b/devel/rubygem-zstd-ruby/Makefile @@ -1,15 +1,14 @@ PORTNAME= zstd-ruby PORTVERSION= 1.5.2.3 CATEGORIES= devel rubygems MASTER_SITES= RG MAINTAINER= rodrigo@FreeBSD.org COMMENT= Ruby binding for zstd WWW= https://github.com/SpringMT/zstd-ruby LICENSE= BSD3CLAUSE USES= gem -USE_RUBY= yes .include diff --git a/devel/yaggo/Makefile b/devel/yaggo/Makefile index debdd781cdd1..c24398e472dc 100644 --- a/devel/yaggo/Makefile +++ b/devel/yaggo/Makefile @@ -1,20 +1,20 @@ PORTNAME= yaggo PORTVERSION= 1.5.9 DISTVERSIONPREFIX= v CATEGORIES= devel MAINTAINER= jwb@FreeBSD.org COMMENT= Generate command line parser using getopt_long WWW= https://github.com/gmarcais/yaggo LICENSE= GPLv3 -NO_ARCH= yes -USE_RUBY= yes - +USES= ruby USE_GITHUB= yes GH_ACCOUNT= gmarcais +NO_ARCH= yes + PLIST_FILES= bin/yaggo man/man1/yaggo.1.gz share/doc/yaggo/README.md .include diff --git a/dns/dns_balance/Makefile b/dns/dns_balance/Makefile index b3395720b667..aa1b9003933d 100644 --- a/dns/dns_balance/Makefile +++ b/dns/dns_balance/Makefile @@ -1,56 +1,55 @@ PORTNAME= dns_balance PORTVERSION= 2.1 CATEGORIES= dns MASTER_SITES= https://BSDforge.com/projects/source/dns/dns_balance/ MAINTAINER= portmaster@BSDforge.com COMMENT= Dynamic load-balancing DNS server WWW= https://www.netlab.cs.tsukuba.ac.jp/~yokota/izumi/dns_balance/ LICENSE= BSD2CLAUSE -USE_RUBY= yes -USES= shebangfix tar:xz +USES= ruby shebangfix tar:xz USE_RC_SUBR= dns_balance NO_BUILD= yes SHEBANG_FILES= ${WRKSRC}/dns_balance.rb \ ${WRKSRC}/sample/makedb.rb \ ${WRKSRC}/sample/make_namespace.rb ETCS= addrdb.rb \ namespace.rb LIBS= as_search.rb \ cache.rb \ datatype.rb \ log_writer.rb \ multilog.rb \ util.rb PLIST_SUB+= ETCDIR=${ETCDIR} SUB_LIST+= RUBY=${RUBY} OPTIONS_DEFINE= DOCS EXAMPLES post-patch: ${SED} -E -e "s,%%PREFIX%%,${PREFIX},g" \ -e "s,%%PORTNAME%%,${PORTNAME},g" \ -e "s,%%ETCDIR%%,${ETCDIR},g" \ ${WRKSRC}/dns_balance.rb > ${WRKSRC}/dns_balance do-install: ${INSTALL_SCRIPT} ${WRKSRC}/dns_balance ${STAGEDIR}${PREFIX}/sbin @${MKDIR} ${STAGEDIR}${ETCDIR} .for FILE in ${ETCS} ${INSTALL_DATA} ${WRKSRC}/${FILE} ${STAGEDIR}${ETCDIR}/${FILE}.dist .endfor @${MKDIR} ${STAGEDIR}${PREFIX}/lib/${PORTNAME} (cd ${WRKSRC} && ${INSTALL_DATA} ${LIBS} \ ${STAGEDIR}${PREFIX}/lib/${PORTNAME}) @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/sample/* ${STAGEDIR}${EXAMPLESDIR} @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README* ${WRKSRC}/Q_and_A* ${STAGEDIR}${DOCSDIR} .include diff --git a/dns/rubygem-dnsruby/Makefile b/dns/rubygem-dnsruby/Makefile index c3e79889565a..e7d2ba7f8e74 100644 --- a/dns/rubygem-dnsruby/Makefile +++ b/dns/rubygem-dnsruby/Makefile @@ -1,20 +1,19 @@ PORTNAME= dnsruby PORTVERSION= 1.61.9 CATEGORIES= dns rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Pure Ruby DNS client library WWW= https://github.com/alexdalitz/dnsruby LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-simpleidn>=0.1<1:dns/rubygem-simpleidn USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/dns/rubygem-gitlab-net-dns/Makefile b/dns/rubygem-gitlab-net-dns/Makefile index 068874b98505..c102c893f0e4 100644 --- a/dns/rubygem-gitlab-net-dns/Makefile +++ b/dns/rubygem-gitlab-net-dns/Makefile @@ -1,18 +1,17 @@ PORTNAME= gitlab-net-dns PORTVERSION= 0.9.1 CATEGORIES= dns rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Pure Ruby DNS library WWW= https://gitlab.com/gitlab-org/gitlab-net-dns LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/dns/rubygem-google-apis-dns_v1/Makefile b/dns/rubygem-google-apis-dns_v1/Makefile index 4ad31c5e6757..77e6b8170df7 100644 --- a/dns/rubygem-google-apis-dns_v1/Makefile +++ b/dns/rubygem-google-apis-dns_v1/Makefile @@ -1,20 +1,19 @@ PORTNAME= google-apis-dns_v1 PORTVERSION= 0.28.0 CATEGORIES= dns rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple REST client for version V1 of the Cloud DNS API WWW= https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dns_v1 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-google-apis-core>=0.9.0<2.0:devel/rubygem-google-apis-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/dns/rubygem-google-cloud-dns/Makefile b/dns/rubygem-google-cloud-dns/Makefile index f771e0bfc8e3..9c2f7da9140e 100644 --- a/dns/rubygem-google-cloud-dns/Makefile +++ b/dns/rubygem-google-cloud-dns/Makefile @@ -1,23 +1,22 @@ PORTNAME= google-cloud-dns PORTVERSION= 0.36.0 CATEGORIES= dns rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official library for Google Cloud DNS WWW= https://github.com/googleapis/google-cloud-ruby/tree/main/google-cloud-dns LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-google-apis-dns_v1>=0.1<1:dns/rubygem-google-apis-dns_v1 \ rubygem-google-cloud-core>=1.6<2:net/rubygem-google-cloud-core \ rubygem-googleauth>=0.16.2<2.0:security/rubygem-googleauth \ rubygem-zonefile>=1.04<2:dns/rubygem-zonefile USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/dns/rubygem-idn-ruby/Makefile b/dns/rubygem-idn-ruby/Makefile index 53ab4f9485d0..7140112dce0f 100644 --- a/dns/rubygem-idn-ruby/Makefile +++ b/dns/rubygem-idn-ruby/Makefile @@ -1,18 +1,17 @@ PORTNAME= idn-ruby PORTVERSION= 0.1.5 CATEGORIES= dns rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= LibIDN Ruby Bindings WWW= https://github.com/deepfryed/idn-ruby LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libidn.so:dns/libidn USES= gem -USE_RUBY= yes .include diff --git a/dns/rubygem-net-dns/Makefile b/dns/rubygem-net-dns/Makefile index 495b4fd9f1b4..645b61add7f0 100644 --- a/dns/rubygem-net-dns/Makefile +++ b/dns/rubygem-net-dns/Makefile @@ -1,18 +1,17 @@ PORTNAME= net-dns PORTVERSION= 0.9.0 CATEGORIES= dns rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Pure Ruby DNS library WWW= https://github.com/bluemonk/net-dns LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/dns/rubygem-public_suffix/Makefile b/dns/rubygem-public_suffix/Makefile index 617236f8c9d8..42b21c1ed6e3 100644 --- a/dns/rubygem-public_suffix/Makefile +++ b/dns/rubygem-public_suffix/Makefile @@ -1,24 +1,23 @@ PORTNAME= public_suffix PORTVERSION= 5.0.0 PORTREVISION= 4 CATEGORIES= dns rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby domain name parser based on the Public Suffix List WWW= https://github.com/weppos/publicsuffix-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt PATCH_DEPENDS= public_suffix_list>=0:dns/public_suffix_list USES= gem -USE_RUBY= yes NO_ARCH= yes post-patch: @${CP} ${LOCALBASE}/share/public_suffix_list/public_suffix_list.dat ${WRKSRC}/data/definitions.txt .include diff --git a/dns/rubygem-public_suffix_service/Makefile b/dns/rubygem-public_suffix_service/Makefile index 5a93ba4f1ea0..0d1538fadf22 100644 --- a/dns/rubygem-public_suffix_service/Makefile +++ b/dns/rubygem-public_suffix_service/Makefile @@ -1,24 +1,23 @@ PORTNAME= public_suffix_service PORTVERSION= 0.9.1 PORTREVISION= 70 CATEGORIES= dns rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Parse and decompose domain names into TLD, domain, and subdomains WWW= http://www.simonecarletti.com/code/public_suffix_service LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE PATCH_DEPENDS= public_suffix_list>=0:dns/public_suffix_list USES= gem -USE_RUBY= yes NO_ARCH= yes post-patch: @${CP} ${LOCALBASE}/share/public_suffix_list/public_suffix_list.dat ${WRKSRC}/lib/public_suffix/definitions.txt .include diff --git a/dns/rubygem-resolv-replace/Makefile b/dns/rubygem-resolv-replace/Makefile index a047bd5b161b..f9684172198a 100644 --- a/dns/rubygem-resolv-replace/Makefile +++ b/dns/rubygem-resolv-replace/Makefile @@ -1,21 +1,20 @@ PORTNAME= resolv-replace PORTVERSION= 0.1.0 CATEGORIES= dns rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Replace Socket DNS with Resolv WWW= https://github.com/ruby/resolv-replace LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-resolv>=0:dns/rubygem-resolv USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/dns/rubygem-resolv/Makefile b/dns/rubygem-resolv/Makefile index 925d34e96f98..b2078f8f6d69 100644 --- a/dns/rubygem-resolv/Makefile +++ b/dns/rubygem-resolv/Makefile @@ -1,19 +1,18 @@ PORTNAME= resolv PORTVERSION= 0.2.1 CATEGORIES= dns rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Thread-aware DNS resolver library in Ruby WWW= https://github.com/ruby/resolv LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/dns/rubygem-simpleidn/Makefile b/dns/rubygem-simpleidn/Makefile index 20f8fc674759..a8eee740a129 100644 --- a/dns/rubygem-simpleidn/Makefile +++ b/dns/rubygem-simpleidn/Makefile @@ -1,19 +1,18 @@ PORTNAME= simpleidn PORTVERSION= 0.1.1 CATEGORIES= dns rubygems MASTER_SITES= RG MAINTAINER= douglas@douglasthrift.net COMMENT= Easy conversion from IDNA strings to unicode strings and vice-versa WWW= https://github.com/mmriis/simpleidn LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENCE RUN_DEPENDS= rubygem-unf>=0.1.4:textproc/rubygem-unf NO_ARCH= yes USES= gem -USE_RUBY= yes .include diff --git a/dns/rubygem-validates_hostname/Makefile b/dns/rubygem-validates_hostname/Makefile index 975fbf6883e3..5e81367614a6 100644 --- a/dns/rubygem-validates_hostname/Makefile +++ b/dns/rubygem-validates_hostname/Makefile @@ -1,21 +1,20 @@ PORTNAME= validates_hostname PORTVERSION= 1.0.11 CATEGORIES= dns rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Extension to ActiveRecord::Base for validating hostnames WWW= https://github.com/KimNorgaard/validates_hostname LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activerecord60>=3.0:databases/rubygem-activerecord60 \ rubygem-activesupport60>=3.0:devel/rubygem-activesupport60 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/dns/rubygem-zonefile/Makefile b/dns/rubygem-zonefile/Makefile index d9dd4e287e70..be78ed806e65 100644 --- a/dns/rubygem-zonefile/Makefile +++ b/dns/rubygem-zonefile/Makefile @@ -1,17 +1,16 @@ PORTNAME= zonefile PORTVERSION= 1.06 CATEGORIES= dns rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Library to manipulate BIND compatible Zonefiles (RFC1035) WWW= https://github.com/boesemar/zonefile LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/editors/diakonos/Makefile b/editors/diakonos/Makefile index 052d74ae78ea..a299f317245d 100644 --- a/editors/diakonos/Makefile +++ b/editors/diakonos/Makefile @@ -1,46 +1,45 @@ PORTNAME= diakonos DISTVERSIONPREFIX= v DISTVERSION= 0.9.7 PORTREVISION= 1 CATEGORIES= editors ruby MAINTAINER= christopher.petrik@usm.edu COMMENT= Console editor for the masses WWW= https://github.com/Pistos/diakonos LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENCE 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 NO_BUILD= yes SUB_FILES= installation.rb SUB_LIST= RUBY_SITELIBDIR=${RUBY_SITELIBDIR} OPTIONS_DEFINE= DOCS do-install: ${INSTALL_SCRIPT} ${WRKSRC}/bin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin @${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR}/${PORTNAME} cd ${WRKSRC}/lib && ${COPYTREE_SHARE} . ${STAGEDIR}${RUBY_SITELIBDIR} ${INSTALL_SCRIPT} ${WRKDIR}/installation.rb \ ${STAGEDIR}${RUBY_SITELIBDIR}/${PORTNAME} ${INSTALL_DATA} ${WRKSRC}/diakonos.conf \ ${STAGEDIR}${PREFIX}/etc/diakonos.conf.sample ${INSTALL_DATA} ${WRKSRC}/diakonos-256-colour.conf \ ${STAGEDIR}${PREFIX}/etc/diakonos-256-colour.conf.sample post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR}/help (cd ${WRKSRC} && ${INSTALL_DATA} CHANGELOG README.rdoc \ ${STAGEDIR}${DOCSDIR}) ${INSTALL_DATA} ${WRKSRC}/help/*.dhf ${STAGEDIR}${DOCSDIR}/help .include diff --git a/editors/rubygem-neovim/Makefile b/editors/rubygem-neovim/Makefile index 2d1734723334..d8a624f5a8bd 100644 --- a/editors/rubygem-neovim/Makefile +++ b/editors/rubygem-neovim/Makefile @@ -1,27 +1,26 @@ PORTNAME= neovim PORTVERSION= 0.9.0 CATEGORIES= editors rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby bindings for neovim WWW= https://github.com/neovim/neovim-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= nvim:editors/neovim \ rubygem-msgpack>=1.1<2:devel/rubygem-msgpack \ rubygem-multi_json>=1.0<2:devel/rubygem-multi_json TEST_DEPENDS= rubygem-bundler>=0:sysutils/rubygem-bundler \ rubygem-rake>=0:devel/rubygem-rake \ rubygem-rspec>=0:devel/rubygem-rspec USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/neovim-ruby-host .include diff --git a/emulators/libc6-shim/Makefile b/emulators/libc6-shim/Makefile index b65f89a7d034..b252537f994d 100644 --- a/emulators/libc6-shim/Makefile +++ b/emulators/libc6-shim/Makefile @@ -1,47 +1,47 @@ PORTNAME= libc6-shim DISTVERSION= 20221220 CATEGORIES= emulators MAINTAINER= iwtcex@gmail.com COMMENT= ABI-compatible glibc shim library WWW= https://github.com/shkhln/libc6-shim LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE ONLY_FOR_ARCHS= amd64 +USES= ruby USE_GITHUB= yes GH_ACCOUNT= shkhln GH_PROJECT= libc6-shim -USE_RUBY= yes PORTSCOUT= ignore:1 post-patch: ${REINPLACE_CMD} -e 's|../icds|../${DATADIR_REL}/icds|' ${WRKSRC}/bin/nv-sglrun ${REINPLACE_CMD} -e 's|../lib64|../lib/${PORTNAME}|' -e 's|../lib32|../lib32/${PORTNAME}|' ${WRKSRC}/bin/with-glibc-shim do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/lib/${PORTNAME} ${MKDIR} ${STAGEDIR}${PREFIX}/lib32/${PORTNAME} ${MKDIR} ${STAGEDIR}${DATADIR}/icds/ocl ${MKDIR} ${STAGEDIR}${DATADIR}/icds/vk ${INSTALL_SCRIPT} \ ${WRKSRC}/bin/nv-sglrun \ ${WRKSRC}/bin/with-glibc-shim \ ${STAGEDIR}${PREFIX}/bin ${INSTALL_LIB} \ ${WRKSRC}/build/lib64/libc6*.so \ ${STAGEDIR}${PREFIX}/lib/${PORTNAME} ${INSTALL_LIB} \ ${WRKSRC}/build/lib32/libc6*.so \ ${STAGEDIR}${PREFIX}/lib32/${PORTNAME} ${INSTALL_DATA} \ ${WRKSRC}/icds/ocl/nv.icd \ ${STAGEDIR}${DATADIR}/icds/ocl ${INSTALL_DATA} \ ${WRKSRC}/icds/vk/nv.json \ ${STAGEDIR}${DATADIR}/icds/vk .include diff --git a/emulators/rubygem-fission/Makefile b/emulators/rubygem-fission/Makefile index 5286f5cb356e..e6d8badcea7b 100644 --- a/emulators/rubygem-fission/Makefile +++ b/emulators/rubygem-fission/Makefile @@ -1,23 +1,22 @@ PORTNAME= fission PORTVERSION= 0.5.0 PORTREVISION= 1 CATEGORIES= emulators rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Utility to manage VMware Fusion VMs from the command line WWW= https://github.com/thbishop/fission LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-CFPropertyList>=2.2:devel/rubygem-CFPropertyList USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/fission .include diff --git a/finance/rubygem-money/Makefile b/finance/rubygem-money/Makefile index fb5969929409..46675a935ede 100644 --- a/finance/rubygem-money/Makefile +++ b/finance/rubygem-money/Makefile @@ -1,20 +1,19 @@ PORTNAME= money PORTVERSION= 6.14.1 CATEGORIES= finance rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library for handling money and different currencies WWW= https://rubymoney.github.io/money/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-i18n>=0.6.4,2<2,2:devel/rubygem-i18n USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/ftp/rubygem-curb/Makefile b/ftp/rubygem-curb/Makefile index 15c99c35812b..1f0accc8673e 100644 --- a/ftp/rubygem-curb/Makefile +++ b/ftp/rubygem-curb/Makefile @@ -1,18 +1,17 @@ PORTNAME= curb PORTVERSION= 0.9.11 CATEGORIES= ftp rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby bindings for libcurl WWW= https://github.com/taf2/curb LICENSE= RUBY LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libcurl.so:ftp/curl USES= gem -USE_RUBY= yes .include diff --git a/ftp/rubygem-net-ftp/Makefile b/ftp/rubygem-net-ftp/Makefile index ec5f4c0b31db..866384fb2ffd 100644 --- a/ftp/rubygem-net-ftp/Makefile +++ b/ftp/rubygem-net-ftp/Makefile @@ -1,22 +1,21 @@ PORTNAME= net-ftp PORTVERSION= 0.2.0 CATEGORIES= ftp rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Support for the File Transfer Protocol WWW= https://github.com/ruby/net-ftp LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-net-protocol>=0:net/rubygem-net-protocol \ rubygem-time>=0:devel/rubygem-time USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/games/linux-steam-utils/Makefile b/games/linux-steam-utils/Makefile index 19a2d37a21eb..2e16c0af52cf 100644 --- a/games/linux-steam-utils/Makefile +++ b/games/linux-steam-utils/Makefile @@ -1,45 +1,43 @@ PORTNAME= steam-utils DISTVERSION= 20221113 CATEGORIES= games linux PKGNAMEPREFIX= linux- MAINTAINER= iwtcex@gmail.com COMMENT= Steam launcher for FreeBSD WWW= https://github.com/shkhln/linuxulator-steam-utils LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE ONLY_FOR_ARCHS= amd64 RUN_DEPENDS= ca_root_nss>=0:security/ca_root_nss \ gtar:archivers/gtar \ 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 PORTSCOUT= ignore:1 SUB_FILES= pkg-message .include post-install: .for executable in steam steam-install lsu-register-proton lsu-wine-env ${LN} -s ../steam-utils/bin/${executable} ${STAGEDIR}${PREFIX}/bin/${executable} .endfor .include diff --git a/games/ninix-aya/Makefile b/games/ninix-aya/Makefile index f75fb87dd82a..387d3d9a3f3c 100644 --- a/games/ninix-aya/Makefile +++ b/games/ninix-aya/Makefile @@ -1,27 +1,26 @@ PORTNAME= ninix-aya PORTVERSION= 5.0.9 CATEGORIES= games MASTER_SITES= OSDN/${PORTNAME} MAINTAINER= ports@FreeBSD.org COMMENT= Desktop mascot program compatible with "Ukagaka" WWW= http://ninix-aya.sourceforge.jp/ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-charlock_holmes>=0.7.3:textproc/rubygem-charlock_holmes \ rubygem-gstreamer>=3.1.8:multimedia/rubygem-gstreamer \ rubygem-gettext>=3.2.2:devel/rubygem-gettext \ rubygem-gtk3>=3.1.8:x11-toolkits/rubygem-gtk3 \ rubygem-narray>=0.6.1.1:math/rubygem-narray \ rubygem-rubyzip>=1.2.1:archivers/rubygem-rubyzip +USES= gettext ruby tar:tgz NO_ARCH= yes PORTDOCS= COPYING ChangeLog README README.ninix SAORI -USES= gettext tar:tgz -USE_RUBY= yes OPTIONS_DEFINE= DOCS .include diff --git a/games/rubygem-fortune_gem/Makefile b/games/rubygem-fortune_gem/Makefile index 72c1d91c8292..533029ddbe2e 100644 --- a/games/rubygem-fortune_gem/Makefile +++ b/games/rubygem-fortune_gem/Makefile @@ -1,17 +1,16 @@ PORTNAME= fortune_gem PORTVERSION= 0.0.9 CATEGORIES= games rubygems MASTER_SITES= RG MAINTAINER= mose@mose.com COMMENT= Unix fortune program, implemented as a ruby gem WWW= https://github.com/nodanaonlyzuul/fortune_gem LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/fortune_gem .include diff --git a/games/rubygem-lolcat/Makefile b/games/rubygem-lolcat/Makefile index 6952cbcf5114..3c6f33a0d763 100644 --- a/games/rubygem-lolcat/Makefile +++ b/games/rubygem-lolcat/Makefile @@ -1,37 +1,36 @@ PORTNAME= lolcat PORTVERSION= 100.0.1 CATEGORIES= games MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rainbows and unicorns WWW= https://github.com/busyloop/lolcat LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-manpages>=0.6.1<0.7:devel/rubygem-manpages \ rubygem-optimist>=3.0.0<3.1:devel/rubygem-optimist \ rubygem-paint>=2.1<3:devel/rubygem-paint USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/lolcat \ share/man/man6/lolcat.6.gz # bin/lolcat CONFLICTS_INSTALL= lolcat post-build: @${REINPLACE_CMD} -e 's|man/lolcat.6|&.gz|' ${WRKSRC}/${GEMSPEC} # compress the manpage manually instead of MANDIRS because of the order in # _STAGE_SEQ: 820:gem-autoplist 850:compress-man post-install: ${GZIP_CMD} ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/man/lolcat.6 .include diff --git a/games/rubygem-vimgolf/Makefile b/games/rubygem-vimgolf/Makefile index 2d04be7caca2..228ce6a88e59 100644 --- a/games/rubygem-vimgolf/Makefile +++ b/games/rubygem-vimgolf/Makefile @@ -1,22 +1,21 @@ PORTNAME= vimgolf PORTVERSION= 0.5.0 CATEGORIES= games rubygems MASTER_SITES= RG MAINTAINER= dereks@lifeofadishwasher.com COMMENT= CLI client for vimgolf.com WWW= https://github.com/igrigorik/vimgolf LICENSE= MIT RUN_DEPENDS= rubygem-highline>=2.0:devel/rubygem-highline \ rubygem-json_pure>=2.3:devel/rubygem-json_pure \ rubygem-thor>=1.0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/${PORTNAME} .include diff --git a/graphics/ruby-gd/Makefile b/graphics/ruby-gd/Makefile index 08e295fdc411..1f9e9bd04b69 100644 --- a/graphics/ruby-gd/Makefile +++ b/graphics/ruby-gd/Makefile @@ -1,89 +1,87 @@ PORTNAME= gd PORTVERSION= 0.8.0 PORTREVISION= 8 CATEGORIES= graphics ruby MASTER_SITES= ftp://ftp.jp.vim.org/pub/distfiles/ruby/ \ http://www.mmnt.net/db/0/8/ftp.jp.vim.org/pub/distfiles/ruby/ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} DISTNAME= ruby-GD-0.7.4 DIST_SUBDIR= ruby MAINTAINER= dinoex@FreeBSD.org COMMENT= Ruby extension library to use Thomas Boutell's gd library WWW= https://github.com/Spakman/ruby-gd LIB_DEPENDS= libfreetype.so:print/freetype2 \ 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} CONFIGURE_ARGS= --with-jpeg \ --with-ttf \ --with-freetype \ --with-z \ --with-png \ --enable-gd2_0 INSTALL_TARGET= site-install OPTIONS_DEFINE= DOCS EXAMPLES .include # Hmm, GREP and TRUE seem to be defined in the bsd.port.post.mk stage. .if exists(${LOCALBASE}/bin/gd2topng) GD_X11_CHECK!= ldd ${LOCALBASE}/bin/gd2topng | grep -w 'libX11\.so' || ${ECHO_CMD} .else GD_X11_CHECK= # empty .endif .if !empty(GD_X11_CHECK) USES= xorg USE_XORG= xpm x11 CONFIGURE_ARGS+= --with-X11-dir="${LOCALBASE}" --with-xpm .endif EXAMPLES_EN= example.rb \ gdtestttf.rb \ webpng.rb DOCS_EN= Changes \ TODO \ readme.en \ doc/INSTALL.en \ doc/manual.html \ doc/manual.rd \ doc/manual_index.html DOCS_JA= readme.ja \ doc/INSTALL.ja post-patch: ${RUBY} -i -pe 'sub %r:/win98/windows/FONTS:, "${LOCALBASE}/share/fonts/TrueType"' ${WRKSRC}/sample/gdtestttf.rb post-configure: ${REINPLACE_CMD} -e 's|^V = 0|V = 1|' \ -e 's|^libdir = .*|libdir = ${PREFIX}/lib|' \ ${WRKSRC}/Makefile post-install: .if ${PORT_OPTIONS:MDOCS} ${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR}/ja .for f in ${DOCS_EN} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ .endfor .for f in ${DOCS_JA} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ja/ .endfor .endif .if ${PORT_OPTIONS:MEXAMPLES} ${MKDIR} ${STAGEDIR}${RUBY_MODEXAMPLESDIR} .for f in ${EXAMPLES_EN} ${INSTALL_DATA} ${WRKSRC}/sample/${f} ${STAGEDIR}${RUBY_MODEXAMPLESDIR}/ .endfor .endif .include diff --git a/graphics/rubygem-blurhash/Makefile b/graphics/rubygem-blurhash/Makefile index ffbc1e584ab8..c6b25238aedf 100644 --- a/graphics/rubygem-blurhash/Makefile +++ b/graphics/rubygem-blurhash/Makefile @@ -1,18 +1,17 @@ PORTNAME= blurhash PORTVERSION= 0.1.6 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= bofh@FreeBSD.org COMMENT= Ruby bindings for Blurhash library WWW= https://github.com/Gargron/blurhash LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ffi>0:devel/rubygem-ffi -USE_RUBY= yes USES= gem .include diff --git a/graphics/rubygem-cairo/Makefile b/graphics/rubygem-cairo/Makefile index 14f33425bcbb..22e38a2fb449 100644 --- a/graphics/rubygem-cairo/Makefile +++ b/graphics/rubygem-cairo/Makefile @@ -1,21 +1,20 @@ PORTNAME= cairo PORTVERSION= 1.17.8 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby binding for GLib2 WWW= https://github.com/rcairo/rcairo LICENSE= GPLv2+ RUBY LICENSE_COMB= dual RUN_DEPENDS= rubygem-native-package-installer>=1.0.3:devel/rubygem-native-package-installer \ rubygem-pkg-config>=1.2.2:devel/rubygem-pkg-config \ rubygem-red-colors>=0:graphics/rubygem-red-colors USES= gem gnome pkgconfig USE_GNOME= cairo -USE_RUBY= yes .include diff --git a/graphics/rubygem-captcha/Makefile b/graphics/rubygem-captcha/Makefile index a72c6889fd74..34992601f5d9 100644 --- a/graphics/rubygem-captcha/Makefile +++ b/graphics/rubygem-captcha/Makefile @@ -1,20 +1,19 @@ PORTNAME= captcha PORTVERSION= 1.2.2 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple CAPTCHA written in Ruby WWW= https://github.com/winton/captcha LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-rmagick>=2.9.2:graphics/rubygem-rmagick USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/graphics/rubygem-chunky_png/Makefile b/graphics/rubygem-chunky_png/Makefile index f82c627617e5..2317cfc5bf69 100644 --- a/graphics/rubygem-chunky_png/Makefile +++ b/graphics/rubygem-chunky_png/Makefile @@ -1,18 +1,17 @@ PORTNAME= chunky_png PORTVERSION= 1.4.0 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby library to read and write PNG images WWW= https://github.com/wvanbergen/chunky_png/wiki LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/graphics/rubygem-clutter-gdk/Makefile b/graphics/rubygem-clutter-gdk/Makefile index 7d9e670bb523..62991a88a34e 100644 --- a/graphics/rubygem-clutter-gdk/Makefile +++ b/graphics/rubygem-clutter-gdk/Makefile @@ -1,21 +1,20 @@ PORTNAME= clutter-gdk PORTVERSION= 4.0.3 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding of GDK-specific API of Clutter WWW= https://ruby-gnome.github.io/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB RUN_DEPENDS= rubygem-clutter>=${PORTVERSION}:graphics/rubygem-clutter \ rubygem-gdk3>=${PORTVERSION}:x11-toolkits/rubygem-gdk3 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/graphics/rubygem-clutter-gtk/Makefile b/graphics/rubygem-clutter-gtk/Makefile index b91f33c10443..654387502d94 100644 --- a/graphics/rubygem-clutter-gtk/Makefile +++ b/graphics/rubygem-clutter-gtk/Makefile @@ -1,24 +1,23 @@ PORTNAME= clutter-gtk PORTVERSION= 4.0.3 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding of Clutter-GTK WWW= https://ruby-gnome.github.io/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB BUILD_DEPENDS= rubygem-rake>=0:devel/rubygem-rake LIB_DEPENDS= libclutter-gtk-1.0.so:graphics/clutter-gtk3 RUN_DEPENDS= rubygem-clutter>=${PORTVERSION}:graphics/rubygem-clutter \ rubygem-clutter-gdk>=${PORTVERSION}:graphics/rubygem-clutter-gdk \ rubygem-gtk3>=${PORTVERSION}:x11-toolkits/rubygem-gtk3 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/graphics/rubygem-clutter/Makefile b/graphics/rubygem-clutter/Makefile index afff0f1fa3b7..c88494ac4f6c 100644 --- a/graphics/rubygem-clutter/Makefile +++ b/graphics/rubygem-clutter/Makefile @@ -1,24 +1,23 @@ PORTNAME= clutter PORTVERSION= 4.0.3 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding of Clutter WWW= https://ruby-gnome.github.io/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB BUILD_DEPENDS= rubygem-rake>=0:devel/rubygem-rake LIB_DEPENDS= libclutter-1.0.so:graphics/clutter RUN_DEPENDS= rubygem-cairo-gobject>=${PORTVERSION}:devel/rubygem-cairo-gobject \ rubygem-gobject-introspection>=${PORTVERSION}:devel/rubygem-gobject-introspection \ rubygem-pango>=${PORTVERSION}:x11-toolkits/rubygem-pango USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/graphics/rubygem-dragonfly/Makefile b/graphics/rubygem-dragonfly/Makefile index bf17da629e43..cd5d67b73728 100644 --- a/graphics/rubygem-dragonfly/Makefile +++ b/graphics/rubygem-dragonfly/Makefile @@ -1,25 +1,24 @@ PORTNAME= dragonfly PORTVERSION= 1.4.0 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= On-the-fly Rack-based image handling framework WWW= https://github.com/markevans/dragonfly LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-addressable>=2.3<3:www/rubygem-addressable \ rubygem-multi_json>=1.0<2:devel/rubygem-multi_json \ rubygem-rack>=1.3,3:www/rubygem-rack USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= dev/test_rails ruby_OLD_CMD= "env ruby" .include diff --git a/graphics/rubygem-emoji/Makefile b/graphics/rubygem-emoji/Makefile index 1215bb66b322..6fd5ee267382 100644 --- a/graphics/rubygem-emoji/Makefile +++ b/graphics/rubygem-emoji/Makefile @@ -1,20 +1,19 @@ PORTNAME= emoji PORTVERSION= 1.0.7 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby gem for emoji WWW= https://github.com/wpeterson/emoji LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-json>=0:devel/rubygem-json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/graphics/rubygem-exifr/Makefile b/graphics/rubygem-exifr/Makefile index ac166ff956bc..17068b65c8e0 100644 --- a/graphics/rubygem-exifr/Makefile +++ b/graphics/rubygem-exifr/Makefile @@ -1,19 +1,18 @@ PORTNAME= exifr PORTVERSION= 1.3.10 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Pure-ruby EXIF reader WWW= https://github.com/remvee/exifr LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/exifr .include diff --git a/graphics/rubygem-ezprint/Makefile b/graphics/rubygem-ezprint/Makefile index 8fa2d6ead94e..1ad51fdaf408 100644 --- a/graphics/rubygem-ezprint/Makefile +++ b/graphics/rubygem-ezprint/Makefile @@ -1,19 +1,18 @@ PORTNAME= ezprint PORTVERSION= 1.0.1 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Rails wrapper for the PDFKit library WWW= https://github.com/jstewart/ezprint LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-pdfkit>=0.8.0:graphics/rubygem-pdfkit NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/graphics/rubygem-fastimage/Makefile b/graphics/rubygem-fastimage/Makefile index 596edbf3425d..5d2e073b3a43 100644 --- a/graphics/rubygem-fastimage/Makefile +++ b/graphics/rubygem-fastimage/Makefile @@ -1,18 +1,17 @@ PORTNAME= fastimage DISTVERSION= 2.2.6 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= FastImage finds the size or type of an image WWW= https://github.com/sdsykes/fastimage LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/graphics/rubygem-flamegraph/Makefile b/graphics/rubygem-flamegraph/Makefile index 94e897315889..d83f51bb746c 100644 --- a/graphics/rubygem-flamegraph/Makefile +++ b/graphics/rubygem-flamegraph/Makefile @@ -1,17 +1,16 @@ PORTNAME= flamegraph PORTVERSION= 0.9.5 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Flamegraph support for arbitrary ruby apps WWW= https://github.com/SamSaffron/flamegraph LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/graphics/rubygem-gd2/Makefile b/graphics/rubygem-gd2/Makefile index cb154211be4e..504fdb8a33d7 100644 --- a/graphics/rubygem-gd2/Makefile +++ b/graphics/rubygem-gd2/Makefile @@ -1,23 +1,22 @@ PORTNAME= gd2 PORTVERSION= 1.1.1 PORTREVISION= 7 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby interface to gd 2 library WWW= http://gd2.rubyforge.org/ LICENSE= GPLv2 LIB_DEPENDS= libgd.so:graphics/gd NO_ARCH= yes -USE_RUBY= yes USES= gem post-patch: @${REINPLACE_CMD} 's|libgd.so.2|libgd.so.5|' ${WRKSRC}/lib/gd2.rb .include diff --git a/graphics/rubygem-gdk_pixbuf2/Makefile b/graphics/rubygem-gdk_pixbuf2/Makefile index b00b303ba5ef..abff36aa4e35 100644 --- a/graphics/rubygem-gdk_pixbuf2/Makefile +++ b/graphics/rubygem-gdk_pixbuf2/Makefile @@ -1,22 +1,21 @@ PORTNAME= gdk_pixbuf2 PORTVERSION= 4.0.3 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding of GdkPixbuf 2.x WWW= https://ruby-gnome.github.io/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB BUILD_DEPENDS= rubygem-rake>=0:devel/rubygem-rake RUN_DEPENDS= rubygem-gio2>=${PORTVERSION}:devel/rubygem-gio2 USES= gem gnome USE_GNOME= gdkpixbuf2 -USE_RUBY= yes NO_ARCH= yes .include diff --git a/graphics/rubygem-gemojione/Makefile b/graphics/rubygem-gemojione/Makefile index 7134f229a7b3..cb33081a9f6d 100644 --- a/graphics/rubygem-gemojione/Makefile +++ b/graphics/rubygem-gemojione/Makefile @@ -1,20 +1,19 @@ PORTNAME= gemojione PORTVERSION= 4.3.3 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Gem containing EmojiOne unicode/image assets WWW= https://github.com/bonusly/gemojione LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-json>=0:devel/rubygem-json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/graphics/rubygem-gemojione32/Makefile b/graphics/rubygem-gemojione32/Makefile index f8973bf06161..2ee248947ec0 100644 --- a/graphics/rubygem-gemojione32/Makefile +++ b/graphics/rubygem-gemojione32/Makefile @@ -1,23 +1,22 @@ PORTNAME= gemojione PORTVERSION= 3.2.0 CATEGORIES= graphics rubygems MASTER_SITES= RG PKGNAMESUFFIX= 32 MAINTAINER= mfechner@FreeBSD.org COMMENT= Gem containing EmojiOne unicode/image assets WWW= https://github.com/jonathanwiesel/gemojione LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-json>=0:devel/rubygem-json USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^3\.2\. .include diff --git a/graphics/rubygem-geokit/Makefile b/graphics/rubygem-geokit/Makefile index f66eefe42fcd..6a2e0a67c45a 100644 --- a/graphics/rubygem-geokit/Makefile +++ b/graphics/rubygem-geokit/Makefile @@ -1,17 +1,16 @@ PORTNAME= geokit PORTVERSION= 1.13.1 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby gem for maps-based apps WWW= https://github.com/geokit/geokit LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/graphics/rubygem-gitlab_emoji/Makefile b/graphics/rubygem-gitlab_emoji/Makefile index edfca8ecec22..71ac83b0d448 100644 --- a/graphics/rubygem-gitlab_emoji/Makefile +++ b/graphics/rubygem-gitlab_emoji/Makefile @@ -1,21 +1,20 @@ PORTNAME= gitlab_emoji PORTVERSION= 0.3.1 PORTREVISION= 1 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provides Gitlab Emoji assets WWW= https://gitlab.com/gitlab-org/gitlab_emoji LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-gemojione>=2.2.1:graphics/rubygem-gemojione USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/graphics/rubygem-gruff/Makefile b/graphics/rubygem-gruff/Makefile index e4b29c6e6729..a50208b7e5b9 100644 --- a/graphics/rubygem-gruff/Makefile +++ b/graphics/rubygem-gruff/Makefile @@ -1,21 +1,20 @@ PORTNAME= gruff PORTVERSION= 0.19.0 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Beautiful graphing library for Ruby using RMagick WWW= https://github.com/topfunky/gruff LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-histogram>=0:graphics/rubygem-histogram \ rubygem-rmagick>=4.2:graphics/rubygem-rmagick USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/graphics/rubygem-histogram/Makefile b/graphics/rubygem-histogram/Makefile index 4bed6f29c34a..8a0c9a63aa9e 100644 --- a/graphics/rubygem-histogram/Makefile +++ b/graphics/rubygem-histogram/Makefile @@ -1,22 +1,21 @@ PORTNAME= histogram PORTVERSION= 0.2.4.1 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Give objects the ability to 'histogram' in several useful ways WWW= https://github.com/jtprince/histogram LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/histogram SHEBANG_FILES= bin/histogram .include diff --git a/graphics/rubygem-image_processing/Makefile b/graphics/rubygem-image_processing/Makefile index 83d84392895b..dac4b73b55e5 100644 --- a/graphics/rubygem-image_processing/Makefile +++ b/graphics/rubygem-image_processing/Makefile @@ -1,21 +1,20 @@ PORTNAME= image_processing PORTVERSION= 1.12.2 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= High-level wrapper for processing images for the web with ImageMagick or libvips WWW= https://github.com/janko/image_processing LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-mini_magick>=4.9.5<5:graphics/rubygem-mini_magick \ rubygem-ruby-vips>=2.0.17<3:graphics/rubygem-ruby-vips USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/graphics/rubygem-image_science/Makefile b/graphics/rubygem-image_science/Makefile index 72f82d92d6b3..082fb023dd0f 100644 --- a/graphics/rubygem-image_science/Makefile +++ b/graphics/rubygem-image_science/Makefile @@ -1,21 +1,20 @@ PORTNAME= image_science PORTVERSION= 1.3.2 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby library that generates thumbnails WWW= https://github.com/seattlerb/image_science LICENSE= MIT RUN_DEPENDS= rubygem-rubyinline>=3.9<4:devel/rubygem-rubyinline USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/image_science_thumb .include diff --git a/graphics/rubygem-imagesize/Makefile b/graphics/rubygem-imagesize/Makefile index 2c5661f79f16..200661037d56 100644 --- a/graphics/rubygem-imagesize/Makefile +++ b/graphics/rubygem-imagesize/Makefile @@ -1,18 +1,17 @@ PORTNAME= imagesize PORTVERSION= 0.1.1 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= RubyGem for finding the size of an image WWW= http://imagesize.rubyforge.org/ LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/graphics/rubygem-invisible_captcha/Makefile b/graphics/rubygem-invisible_captcha/Makefile index 61f6afa61eb3..a85451667086 100644 --- a/graphics/rubygem-invisible_captcha/Makefile +++ b/graphics/rubygem-invisible_captcha/Makefile @@ -1,19 +1,18 @@ PORTNAME= invisible_captcha PORTVERSION= 2.0.0 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Unobtrusive CAPTCHA for ruby WWW= https://github.com/markets/invisible_captcha LICENSE= MIT RUN_DEPENDS= rubygem-rails61>=5.0:www/rubygem-rails61 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/graphics/rubygem-mini_magick/Makefile b/graphics/rubygem-mini_magick/Makefile index 5986dd75d2fa..319089dbae63 100644 --- a/graphics/rubygem-mini_magick/Makefile +++ b/graphics/rubygem-mini_magick/Makefile @@ -1,41 +1,40 @@ PORTNAME= mini_magick PORTVERSION= 4.11.0 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Manipulate images with minimal use of memory via ImageMagick WWW= https://github.com/minimagick/minimagick LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE OPTIONS_DEFINE= X11 OPTIONS_SINGLE= IMAGEMAGICK OPTIONS_SINGLE_IMAGEMAGICK= IMAGEMAGICK6 IMAGEMAGICK7 OPTIONS_DEFAULT=IMAGEMAGICK7 X11 IMAGEMAGICK6_DESC= Use ImageMagick 6.x (graphics/ImageMagick6*) IMAGEMAGICK7_DESC= Use ImageMagick 7.x (graphics/ImageMagick7*) USES= gem -USE_RUBY= yes NO_ARCH= yes .include .if ${PORT_OPTIONS:MX11} .if ${PORT_OPTIONS:MIMAGEMAGICK7} USES+= magick:7 .else USES+= magick:6 .endif .else .if ${PORT_OPTIONS:MIMAGEMAGICK7} USES+= magick:7,nox11 .else USES+= magick:6,nox11 .endif .endif .include diff --git a/graphics/rubygem-mini_magick410/Makefile b/graphics/rubygem-mini_magick410/Makefile index a078b10cb937..b9d2e089ef43 100644 --- a/graphics/rubygem-mini_magick410/Makefile +++ b/graphics/rubygem-mini_magick410/Makefile @@ -1,44 +1,43 @@ PORTNAME= mini_magick PORTVERSION= 4.10.1 CATEGORIES= graphics rubygems MASTER_SITES= RG PKGNAMESUFFIX= 410 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Manipulate images with minimal use of memory via ImageMagick WWW= https://github.com/minimagick/minimagick LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE OPTIONS_DEFINE= X11 OPTIONS_SINGLE= IMAGEMAGICK OPTIONS_SINGLE_IMAGEMAGICK= IMAGEMAGICK6 IMAGEMAGICK7 OPTIONS_DEFAULT=IMAGEMAGICK7 X11 IMAGEMAGICK6_DESC= Use ImageMagick 6.x (graphics/ImageMagick6*) IMAGEMAGICK7_DESC= Use ImageMagick 7.x (graphics/ImageMagick7*) USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^4\.10\. .include .if ${PORT_OPTIONS:MX11} .if ${PORT_OPTIONS:MIMAGEMAGICK7} USES+= magick:7 .else USES+= magick:6 .endif .else .if ${PORT_OPTIONS:MIMAGEMAGICK7} USES+= magick:7,nox11 .else USES+= magick:6,nox11 .endif .endif .include diff --git a/graphics/rubygem-objectdetect/Makefile b/graphics/rubygem-objectdetect/Makefile index d5951f8fd752..391e3f595d0a 100644 --- a/graphics/rubygem-objectdetect/Makefile +++ b/graphics/rubygem-objectdetect/Makefile @@ -1,23 +1,22 @@ PORTNAME= objectdetect PORTVERSION= 0.0.3 PORTREVISION= 13 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= tota@FreeBSD.org COMMENT= Simple library for detecting objects in pictures WWW= https://rubygems.org/gems/objectdetect LICENSE= MIT BROKEN= OpenCV4 no longer ships OpencCV-1.0 headers LIB_DEPENDS= libopencv_video.so:graphics/opencv -USE_RUBY= yes USES= gem pkgconfig post-patch: ${REINPLACE_CMD} -E 's|(objectdetect)|\1/version|' ${WRKSRC}/test/test_helper.rb .include diff --git a/graphics/rubygem-opengl/Makefile b/graphics/rubygem-opengl/Makefile index 5431ec51adc4..bb6e82c19b35 100644 --- a/graphics/rubygem-opengl/Makefile +++ b/graphics/rubygem-opengl/Makefile @@ -1,20 +1,19 @@ PORTNAME= opengl PORTVERSION= 0.10.0 PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= graphics ruby MASTER_SITES= RG DIST_SUBDIR= ruby MAINTAINER= ruby@FreeBSD.org COMMENT= OpenGL wrapper for Ruby WWW= https://github.com/larskanis/opengl LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gl gem USE_GL= glut -USE_RUBY= yes .include diff --git a/graphics/rubygem-pdfkit/Makefile b/graphics/rubygem-pdfkit/Makefile index 8fd42b1157a6..af4e0688f32b 100644 --- a/graphics/rubygem-pdfkit/Makefile +++ b/graphics/rubygem-pdfkit/Makefile @@ -1,21 +1,20 @@ PORTNAME= pdfkit PORTVERSION= 0.8.7 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Uses wkhtmltopdf to create PDFs using HTML WWW= https://github.com/pdfkit/pdfkit LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= wkhtmltopdf:converters/wkhtmltopdf USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes .include diff --git a/graphics/rubygem-png/Makefile b/graphics/rubygem-png/Makefile index f0a2aba178d0..904c4d7875fc 100644 --- a/graphics/rubygem-png/Makefile +++ b/graphics/rubygem-png/Makefile @@ -1,19 +1,18 @@ PORTNAME= png PORTVERSION= 1.2.1 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Almost-pure-ruby PNG library WWW= https://www.zenspider.com/projects/png.html LICENSE= MIT RUN_DEPENDS= rubygem-rubyinline>=3.9<4:devel/rubygem-rubyinline USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/graphics/rubygem-railroad/Makefile b/graphics/rubygem-railroad/Makefile index e2248dfe9164..cb282cd8368b 100644 --- a/graphics/rubygem-railroad/Makefile +++ b/graphics/rubygem-railroad/Makefile @@ -1,20 +1,19 @@ PORTNAME= railroad PORTVERSION= 0.5.0 CATEGORIES= graphics devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Class diagrams generator for Ruby on Rails applications WWW= http://railroad.rubyforge.org/ LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/railroad .include diff --git a/graphics/rubygem-red-colors/Makefile b/graphics/rubygem-red-colors/Makefile index 75e238a9a2e5..10352844a6ad 100644 --- a/graphics/rubygem-red-colors/Makefile +++ b/graphics/rubygem-red-colors/Makefile @@ -1,20 +1,19 @@ PORTNAME= red-colors PORTVERSION= 0.3.0 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Provide a wide array of features for dealing with colors WWW= https://github.com/red-data-tools/red-colors LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-matrix>=0:math/rubygem-matrix USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/graphics/rubygem-rmagick/Makefile b/graphics/rubygem-rmagick/Makefile index 672e08bc558c..d73f2b15e6d4 100644 --- a/graphics/rubygem-rmagick/Makefile +++ b/graphics/rubygem-rmagick/Makefile @@ -1,26 +1,25 @@ PORTNAME= rmagick PORTVERSION= 5.1.0 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby binding for ImageMagick WWW= https://github.com/rmagick/rmagick LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-pkg-config>=1.4<2:devel/rubygem-pkg-config USES= gem pkgconfig shebangfix -USE_RUBY= yes SHEBANG_FILES= .devcontainer/*.sh OPTIONS_DEFINE= X11 OPTIONS_DEFAULT=X11 X11_USES= magick:7 X11_USES_OFF= magick:7,nox11 .include diff --git a/graphics/rubygem-rsvg2/Makefile b/graphics/rubygem-rsvg2/Makefile index c432162cd75a..fbd421d2b8c1 100644 --- a/graphics/rubygem-rsvg2/Makefile +++ b/graphics/rubygem-rsvg2/Makefile @@ -1,23 +1,22 @@ PORTNAME= rsvg2 PORTVERSION= 4.0.3 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding of librsvg 2.x WWW= https://ruby-gnome.github.io/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB BUILD_DEPENDS= rubygem-rake>=0:devel/rubygem-rake RUN_DEPENDS= rubygem-cairo-gobject>=${PORTVERSION}:devel/rubygem-cairo-gobject \ rubygem-gdk_pixbuf2>=${PORTVERSION}:graphics/rubygem-gdk_pixbuf2 USES= gem gnome USE_GNOME= librsvg2 -USE_RUBY= yes NO_ARCH= yes .include diff --git a/graphics/rubygem-ruby-graphviz/Makefile b/graphics/rubygem-ruby-graphviz/Makefile index c586505089d4..e12f88d9743c 100644 --- a/graphics/rubygem-ruby-graphviz/Makefile +++ b/graphics/rubygem-ruby-graphviz/Makefile @@ -1,27 +1,26 @@ PORTNAME= ruby-graphviz PORTVERSION= 1.2.5 CATEGORIES= graphics ruby rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby Interface to the GraphViz Graphing Tool WWW= https://github.com/glejeune/Ruby-Graphviz LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING.md RUN_DEPENDS= gxl2dot:graphics/graphviz \ rubygem-rexml>=0:textproc/rubygem-rexml USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/dot2ruby \ bin/gem2gv \ bin/git2gv \ bin/ruby2gv \ bin/xml2gv .include diff --git a/graphics/rubygem-ruby-vips/Makefile b/graphics/rubygem-ruby-vips/Makefile index f09a9dfcc35b..2cc493cb4596 100644 --- a/graphics/rubygem-ruby-vips/Makefile +++ b/graphics/rubygem-ruby-vips/Makefile @@ -1,24 +1,23 @@ PORTNAME= ruby-vips PORTVERSION= 2.1.4 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Binding for the vips image processing library WWW= https://github.com/libvips/ruby-vips LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libvips.so:graphics/vips RUN_DEPENDS= rubygem-ffi>=1.12<2:devel/rubygem-ffi USES= gem gnome shebangfix USE_GNOME= glib20 -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= example/*.rb .include diff --git a/graphics/rubygem-scruffy/Makefile b/graphics/rubygem-scruffy/Makefile index 34bf6f08af10..15179a8e7f83 100644 --- a/graphics/rubygem-scruffy/Makefile +++ b/graphics/rubygem-scruffy/Makefile @@ -1,21 +1,20 @@ PORTNAME= scruffy PORTVERSION= 0.2.6 PORTREVISION= 2 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Beautiful Graphs for Ruby WWW= https://github.com/brasten/scruffy LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem post-patch: @${REINPLACE_CMD} -e 's|#{options|0 0 #{options|' ${WRKSRC}/lib/scruffy/renderers/base.rb .include diff --git a/graphics/rubygem-tanuki_emoji/Makefile b/graphics/rubygem-tanuki_emoji/Makefile index 80a90dfe3dcb..1a8a345392c7 100644 --- a/graphics/rubygem-tanuki_emoji/Makefile +++ b/graphics/rubygem-tanuki_emoji/Makefile @@ -1,18 +1,17 @@ PORTNAME= tanuki_emoji PORTVERSION= 0.6.0 CATEGORIES= graphics rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Emoji character information and metadata WWW= https://gitlab.com/gitlab-org/tanuki_emoji LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/irc/rbot/Makefile b/irc/rbot/Makefile index 2a2415fe5549..aca35f99db58 100644 --- a/irc/rbot/Makefile +++ b/irc/rbot/Makefile @@ -1,49 +1,47 @@ PORTNAME= rbot PORTVERSION= 20160325 PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= irc ruby MAINTAINER= ports@FreeBSD.org COMMENT= Ruby IRC bot similar to infobot WWW= https://ruby-rbot.org/ LICENSE= GPLv2 MIT LICENSE_COMB= dual LICENSE_FILE_GPLv2= ${WRKSRC}/GPLv2 LICENSE_FILE_MIT= ${WRKSRC}/COPYING.rbot RUN_DEPENDS= ${RUBY_SITEARCHLIBDIR}/tokyocabinet.so:databases/ruby-tokyocabinet \ rubygem-gettext>=0:devel/rubygem-gettext \ rubygem-htmlentities>=0:textproc/rubygem-htmlentities \ rubygem-hpricot>=0:www/rubygem-hpricot \ rubygem-mechanize>=0:www/rubygem-mechanize \ rubygem-tzinfo>=0:devel/rubygem-tzinfo \ rubygem-oauth>=0:net/rubygem-oauth \ rubygem-oauth21>=0:net/rubygem-oauth21 LIB_DEPENDS= libtokyocabinet.so:databases/tokyocabinet -USES= cpe +USES= cpe ruby:setup -USE_RUBY= yes -USE_RUBY_SETUP= yes CONFIGURE_ARGS= --prefix=${PREFIX} NO_ARCH= yes USE_GITHUB= yes GH_ACCOUNT= ruby-${PORTNAME} GH_TAGNAME= e358601cc521d8aced941eb928fae2d8c53cf0c2 SUB_FILES= pkg-message PORTDOCS= REQUIREMENTS ChangeLog CPE_VENDOR= ruby-rbot OPTIONS_DEFINE= DOCS post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} .include diff --git a/irc/rubygem-cinch/Makefile b/irc/rubygem-cinch/Makefile index ef8d5426a67c..fec18aa0371b 100644 --- a/irc/rubygem-cinch/Makefile +++ b/irc/rubygem-cinch/Makefile @@ -1,17 +1,16 @@ PORTNAME= cinch PORTVERSION= 2.3.4 CATEGORIES= irc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= IRC Bot Building Framework WWW= https://github.com/cinchrb/cinch LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/irc/rubygem-cogbot/Makefile b/irc/rubygem-cogbot/Makefile index 62a298e17ddb..3984b818be8d 100644 --- a/irc/rubygem-cogbot/Makefile +++ b/irc/rubygem-cogbot/Makefile @@ -1,31 +1,30 @@ PORTNAME= cogbot PORTVERSION= 0.1.13 PORTREVISION= 8 CATEGORIES= irc rubygems MASTER_SITES= RG MAINTAINER= mose@mose.com COMMENT= Irc bot based on Cinch WWW= https://github.com/mose/cogbot LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-cinch>=2.3.3:irc/rubygem-cinch \ rubygem-thor0>=0.19.4:devel/rubygem-thor0 \ rubygem-eventmachine>=1.2.3:devel/rubygem-eventmachine \ rubygem-eventmachine_httpserver>=0.2.1:www/rubygem-eventmachine_httpserver \ rubygem-nokogiri>=1.8.0:textproc/rubygem-nokogiri \ rubygem-daemons>=1.2.4:devel/rubygem-daemons \ rubygem-twitter>=6.1.0:net/rubygem-twitter \ rubygem-json>=2.1.0:devel/rubygem-json \ rubygem-yajl-ruby>=1.3.0:devel/rubygem-yajl-ruby \ rubygem-fortune_gem>=0.0.9:games/rubygem-fortune_gem NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/cogbot .include diff --git a/irc/rubygem-lita-irc/Makefile b/irc/rubygem-lita-irc/Makefile index 69af70fc24cc..29663f4b9ef2 100644 --- a/irc/rubygem-lita-irc/Makefile +++ b/irc/rubygem-lita-irc/Makefile @@ -1,21 +1,20 @@ PORTNAME= lita-irc PORTVERSION= 2.2.0 PORTREVISION= 2 CATEGORIES= irc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= IRC adapter for the Lita chat robot WWW= https://github.com/litaio/lita-irc LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-cinch>=2.0:irc/rubygem-cinch \ rubygem-lita>=4.0:net-im/rubygem-lita NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/irc/rubygem-net-irc/Makefile b/irc/rubygem-net-irc/Makefile index 79fc8d3c41c4..98e250415c43 100644 --- a/irc/rubygem-net-irc/Makefile +++ b/irc/rubygem-net-irc/Makefile @@ -1,24 +1,23 @@ PORTNAME= net-irc PORTVERSION= 0.0.9 PORTREVISION= 1 CATEGORIES= irc rubygems MASTER_SITES= RG MAINTAINER= tota@FreeBSD.org COMMENT= Ruby library for implementing IRC server and client WWW= https://github.com/cho45/net-irc LICENSE= RUBY NO_ARCH= yes REINPLACE_ARGS= -i '' -USE_RUBY= yes USES= gem post-patch: @${REINPLACE_CMD} -e '1d' \ ${WRKSRC}/spec/channel_manager_spec.rb \ ${WRKSRC}/spec/net-irc_spec.rb .include diff --git a/japanese/gedy/Makefile b/japanese/gedy/Makefile index 1169c97e94d4..3946594de13d 100644 --- a/japanese/gedy/Makefile +++ b/japanese/gedy/Makefile @@ -1,41 +1,40 @@ PORTNAME= gedy PORTVERSION= 0.9.0 PORTREVISION= 3 CATEGORIES= japanese ruby MASTER_SITES= http://hito.music.coocan.jp/pasori/ DISTNAME= ${PORTNAME} EXTRACT_SUFX= # empty DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} MAINTAINER= ume@FreeBSD.org COMMENT= GNOME Edy Viewer WWW= http://hito.music.coocan.jp/pasori/gedyviewer.html LICENSE= GPLv2 RUN_DEPENDS= rubygem-gtk2>0:x11-toolkits/rubygem-gtk2 \ 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 EXTRACT_CMD= ${CP} EXTRACT_BEFORE_ARGS= -p EXTRACT_AFTER_ARGS= . NO_WRKSUBDIR= yes NO_ARCH= yes NO_BUILD= yes PLIST_FILES= bin/${PORTNAME} post-patch: @${REINPLACE_CMD} -e 's/Gdk::Atom.new(0)/Gdk::Selection::CLIPBOARD/g' \ ${WRKSRC}/${PORTNAME} do-install: ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin .include diff --git a/japanese/gsuica/Makefile b/japanese/gsuica/Makefile index 5f64016fa7a3..ebf3e6612e9e 100644 --- a/japanese/gsuica/Makefile +++ b/japanese/gsuica/Makefile @@ -1,57 +1,56 @@ PORTNAME= gsuica PORTVERSION= 0.9.1 PORTREVISION= 4 CATEGORIES= japanese ruby MASTER_SITES= http://hito.music.coocan.jp/pasori/ DISTNAME= ${PORTNAME} EXTRACT_SUFX= # empty DIST_SUBDIR= ${PORTNAME}-${PORTVERSION} MAINTAINER= ume@FreeBSD.org COMMENT= GNOME SUICA Viewer WWW= http://hito.music.coocan.jp/pasori/gsuica.html LICENSE= GPLv2 RUN_DEPENDS= rubygem-gtk2>0:x11-toolkits/rubygem-gtk2 \ 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 EXTRACT_CMD= ${CP} EXTRACT_BEFORE_ARGS= -p EXTRACT_AFTER_ARGS= . NO_WRKSUBDIR= yes NO_ARCH= yes NO_BUILD= yes PLIST_FILES= bin/${PORTNAME} post-patch: @${REINPLACE_CMD} -e 's/Gdk::Atom.new(0)/Gdk::Selection::CLIPBOARD/g' \ ${WRKSRC}/${PORTNAME} do-install: ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin # Fetch station code database station-code-fetch: @(cd ${WRKDIR}; \ ${SETENV} ${FETCH_ENV} ${FETCH_CMD} ${FETCH_BEFORE_ARGS} \ -o StationCode.xls \ http://www.denno.net/SFCardFan/sendexcel.php; \ ${FETCH_AFTER_ARGS} \ ${SETENV} ${FETCH_ENV} ${FETCH_CMD} ${FETCH_BEFORE_ARGS} \ ${MASTER_SITES}station_code_conv.sh ${FETCH_AFTER_ARGS}) # Install station code database into ~/.gsuica/station_code # BUILD_DEPENDS+= nkf:japanese/nkf # BUILD_DEPENDS+= xlhtml:textproc/xlhtml station-code-install: @(cd ${WRKDIR}; ${SH} station_code_conv.sh StationCode.xls) .include diff --git a/japanese/migemo/Makefile b/japanese/migemo/Makefile index e3b82e87f108..ba37e642709f 100644 --- a/japanese/migemo/Makefile +++ b/japanese/migemo/Makefile @@ -1,74 +1,73 @@ PORTNAME= migemo PORTVERSION= 0.40 PORTREVISION= 9 PORTEPOCH= 1 CATEGORIES= japanese elisp MASTER_SITES= http://0xcc.net/migemo/ \ LOCAL/nobutaka/:skkdic DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${SKKDIC_FILE}.bz2:skkdic DIST_SUBDIR= migemo EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= nobutaka@FreeBSD.org COMMENT?= Japanese incremental search tool WWW= http://migemo.namazu.org/ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING BUILD_DEPENDS= ${RUBY_SITELIBDIR}/romkan.rb:japanese/ruby-romkan \ ${RUBY_SITELIBDIR}/bsearch.rb:devel/ruby-bsearch RUN_DEPENDS= ${RUBY_SITELIBDIR}/romkan.rb:japanese/ruby-romkan \ ${RUBY_SITELIBDIR}/bsearch.rb:devel/ruby-bsearch 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 \ ${FILESDIR}/extra-patch-configure.in PLIST_SUB= MIGEMO="" ELISP="@comment " .endif MAKE_JOBS_UNSAFE= yes SHEBANG_FILES= migemo migemo-client migemo-grep migemo-server SKKDIC_FILE= SKK-JISYO.L-20110813 EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-Makefile.am.ruby19 \ ${PATCHDIR}/extra-patch-configure.in.ruby19 \ ${PATCHDIR}/extra-patch-genchars.sh \ ${PATCHDIR}/extra-patch-migemo \ ${PATCHDIR}/extra-patch-migemo-cache.rb \ ${PATCHDIR}/extra-patch-migemo-client \ ${PATCHDIR}/extra-patch-migemo-convert.rb \ ${PATCHDIR}/extra-patch-migemo-grep \ ${PATCHDIR}/extra-patch-migemo-index.rb \ ${PATCHDIR}/extra-patch-migemo-server \ ${PATCHDIR}/extra-patch-migemo.rb.in \ ${PATCHDIR}/extra-patch-tests_Makefile.am .include post-extract: .if ${SLAVE_PORT} == "no" ${BZIP2_CMD} -cd ${DISTDIR}/${DIST_SUBDIR}/${SKKDIC_FILE}.bz2 > ${WRKSRC}/SKK-JISYO.L .endif post-patch: .if ${SLAVE_PORT} == "no" @cd ${WRKSRC} ; \ for f in ${SHEBANG_FILES} ; do \ ${REINPLACE_CMD} -e 's:#!.*:#!${RUBY} -Ke:' $$f ; \ done .endif post-configure: .if ${SLAVE_PORT} == "no" (cd ${WRKSRC}; ${CAT} SKK-JISYO.L | ${RUBY} -Ke migemo-convert.rb > migemo-dict) .endif .include diff --git a/japanese/ruby-romkan/Makefile b/japanese/ruby-romkan/Makefile index 6d57579adf68..dae5df860dc9 100644 --- a/japanese/ruby-romkan/Makefile +++ b/japanese/ruby-romkan/Makefile @@ -1,43 +1,43 @@ PORTNAME= romkan PORTVERSION= 0.4 PORTREVISION= 1 CATEGORIES= japanese converters ruby MASTER_SITES= http://0xcc.net/ruby-romkan/ DISTNAME= ruby-${PORTNAME}-${PORTVERSION} DIST_SUBDIR= ruby MAINTAINER= ruby@FreeBSD.org COMMENT= Romaji <-> Kana conversion library for Ruby WWW= http://0xcc.net/ruby-romkan/index.html.en -USE_RUBY= yes +USES= ruby NO_BUILD= yes EXAMPLES= test.rb test.sh DOCS= ChangeLog romkan.en.rd romkan.ja.rd OPTIONS_DEFINE= DOCS EXAMPLES .include PKGNAMEPREFIX:= ${PKGNAMEPREFIX}${RUBY_PKGNAMEPREFIX} do-install: ${MKDIR} ${STAGEDIR}/${RUBY_SITELIBDIR} ${INSTALL_SCRIPT} ${WRKSRC}/romkan.rb ${STAGEDIR}${RUBY_SITELIBDIR}/ do-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${RUBY_MODEXAMPLESDIR} .for f in ${EXAMPLES} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODEXAMPLESDIR} .endfor do-install-DOCS-on: ${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR} .for f in ${DOCS} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ .endfor .include diff --git a/japanese/ruby-uconv/Makefile b/japanese/ruby-uconv/Makefile index 4b8570095431..71ec25d3ffec 100644 --- a/japanese/ruby-uconv/Makefile +++ b/japanese/ruby-uconv/Makefile @@ -1,30 +1,29 @@ PORTNAME= uconv PORTVERSION= 0.5.3 CATEGORIES= japanese converters ruby MASTER_SITES= http://www.yoshidam.net/ DIST_SUBDIR= ruby MAINTAINER= ruby@FreeBSD.org 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 MAKE_ARGS= INSTALL_PROG="${INSTALL_PROGRAM}" \ INSTALL_DATA="${INSTALL_DATA}" OPTIONS_DEFINE= DOCS .include PKGNAMEPREFIX:= ${PKGNAMEPREFIX}${RUBY_PKGNAMEPREFIX} post-install: ${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR}/ja ${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${RUBY_MODDOCDIR}/ ${INSTALL_DATA} ${WRKSRC}/README.ja ${STAGEDIR}${RUBY_MODDOCDIR}/ja/ .include diff --git a/japanese/rubygem-jpmobile-ipaddresses/Makefile b/japanese/rubygem-jpmobile-ipaddresses/Makefile index 6c1da517b2d9..2fb85c491540 100644 --- a/japanese/rubygem-jpmobile-ipaddresses/Makefile +++ b/japanese/rubygem-jpmobile-ipaddresses/Makefile @@ -1,21 +1,20 @@ PORTNAME= jpmobile-ipaddresses PORTVERSION= 0.0.2 CATEGORIES= japanese www rubygems MASTER_SITES= RG MAINTAINER= tota@FreeBSD.org COMMENT= Carrier IP Address List for jpmobile WWW= https://github.com/jpmobile/jpmobile-ipaddresses LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include PKGNAMEPREFIX:= ${PKGNAMEPREFIX}rubygem- .include diff --git a/japanese/rubygem-jpmobile-terminfo/Makefile b/japanese/rubygem-jpmobile-terminfo/Makefile index 13c1e1030226..1cf3bbbd0577 100644 --- a/japanese/rubygem-jpmobile-terminfo/Makefile +++ b/japanese/rubygem-jpmobile-terminfo/Makefile @@ -1,21 +1,20 @@ PORTNAME= jpmobile-terminfo PORTVERSION= 0.0.3 CATEGORIES= japanese www rubygems MASTER_SITES= RG MAINTAINER= tota@FreeBSD.org COMMENT= Carrier terminal information List for jpmobile WWW= https://github.com/jpmobile/jpmobile-terminfo LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include PKGNAMEPREFIX:= ${PKGNAMEPREFIX}rubygem- .include diff --git a/japanese/rubygem-jpmobile4/Makefile b/japanese/rubygem-jpmobile4/Makefile index df9bbd3a7457..31a2ca888094 100644 --- a/japanese/rubygem-jpmobile4/Makefile +++ b/japanese/rubygem-jpmobile4/Makefile @@ -1,36 +1,35 @@ PORTNAME= jpmobile PORTVERSION= 4.2.5 CATEGORIES= japanese www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4 MAINTAINER= tota@FreeBSD.org COMMENT= Rails plugin for Japanese mobile-phones WWW= https://jpmobile-rails.org LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-rails4>0:www/rubygem-rails4 USES= gem -USE_RUBY= yes NO_ARCH= yes OPTIONS_DEFINE= GEOKIT IPADDRESSES TERMINFO OPTIONS_DEFAULT= IPADDRESSES TERMINFO GEOKIT_DESC= Run with geokit IPADDRESSES_DESC= IP address validation support TERMINFO_DESC= Terminal information support GEOKIT_RUN_DEPENDS= rubygem-geokit>=1.5.0:graphics/rubygem-geokit IPADDRESSES_RUN_DEPENDS= ja-rubygem-jpmobile-ipaddresses>=0.0.1:japanese/rubygem-jpmobile-ipaddresses TERMINFO_RUN_DEPENDS= ja-rubygem-jpmobile-terminfo>=0.0.2:japanese/rubygem-jpmobile-terminfo .include PKGNAMEPREFIX:= ${PKGNAMEPREFIX}rubygem- .include diff --git a/japanese/rubygem-mail-iso-2022-jp/Makefile b/japanese/rubygem-mail-iso-2022-jp/Makefile index 758bffdbcc37..f2cba58bca10 100644 --- a/japanese/rubygem-mail-iso-2022-jp/Makefile +++ b/japanese/rubygem-mail-iso-2022-jp/Makefile @@ -1,23 +1,22 @@ PORTNAME= mail-iso-2022-jp PORTVERSION= 2.0.9 CATEGORIES= japanese mail rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provides 'mail' gem with iso-2022-jp conversion capability WWW= https://github.com/kuroda/mail-iso-2022-jp LICENSE= MIT RUN_DEPENDS= rubygem-mail>=2.2.6,2<2.7.2,2:mail/rubygem-mail USES= gem -USE_RUBY= yes NO_ARCH= yes .include PKGNAMEPREFIX:= ${PKGNAMEPREFIX}rubygem- .include diff --git a/japanese/rubygem-myrurema/Makefile b/japanese/rubygem-myrurema/Makefile index 084b630c9f6e..1217b291af5b 100644 --- a/japanese/rubygem-myrurema/Makefile +++ b/japanese/rubygem-myrurema/Makefile @@ -1,23 +1,22 @@ PORTNAME= myrurema PORTVERSION= 0.3.5 CATEGORIES= japanese rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Tool which helps searching/browsing/writing the Japanese Ruby docs WWW= https://github.com/yhara/myrurema RUN_DEPENDS= rubygem-launchy>=2.3<3:devel/rubygem-launchy USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rurema .include PKGNAMEPREFIX:= ${PKGNAMEPREFIX}rubygem- .include diff --git a/java/openjfx14/Makefile b/java/openjfx14/Makefile index fc5b9840e4e8..924d00c769b7 100644 --- a/java/openjfx14/Makefile +++ b/java/openjfx14/Makefile @@ -1,165 +1,165 @@ PORTNAME= openjfx DISTVERSION= 14.0.2.1+1 PORTREVISION= 8 CATEGORIES= java x11-toolkits devel MASTER_SITES= https://repo.maven.apache.org/maven2/org/apache/lucene/lucene-core/7.7.1/:core \ https://repo.maven.apache.org/maven2/org/apache/lucene/lucene-grouping/7.7.1/:grouping \ https://repo.maven.apache.org/maven2/org/apache/lucene/lucene-queries/7.7.1/:queries \ https://repo.maven.apache.org/maven2/org/apache/lucene/lucene-queryparser/7.7.1/:queryparser \ https://repo.maven.apache.org/maven2/org/apache/lucene/lucene-sandbox/7.7.1/:sandbox \ https://repo1.maven.org/maven2/org/antlr/antlr4/4.7.2/:antlr PKGNAMESUFFIX= 14 DISTFILES= lucene-core-7.7.1.jar:core \ lucene-grouping-7.7.1.jar:grouping \ lucene-queries-7.7.1.jar:queries \ lucene-queryparser-7.7.1.jar:queryparser \ lucene-sandbox-7.7.1.jar:sandbox \ antlr4-4.7.2-complete.jar:antlr MAINTAINER= mikael@FreeBSD.org COMMENT= JavaFX SDK overlay for OpenJDK 11 WWW= https://openjdk.java.net/projects/openjfx/ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE ONLY_FOR_ARCHS= aarch64 amd64 i386 powerpc64 powerpc64le BUILD_DEPENDS= zip:archivers/zip \ apache-ant>0:devel/apache-ant \ gradle62>=6.2:devel/gradle62 \ ${JAVALIBDIR}/junit.jar:java/junit LIB_DEPENDS= libasound.so:audio/alsa-lib \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 USES= gettext-runtime gl gnome jpeg localbase:ldflags ninja pkgconfig \ sqlite xorg USE_GITHUB= yes GH_ACCOUNT= openjdk GH_PROJECT= jfx USE_GL= gl USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk20 gtk30 pango USE_JAVA= yes JAVA_VERSION= 11 USE_LDCONFIG= yes USE_XORG= x11 xtst xxf86vm CFLAGS+= -Wno-unused-command-line-argument PLIST_SUB= INSTALLDIR=${_INSTALLDIR} OPTIONS_DEFINE= MEDIA SWT TEST WEBKIT OPTIONS_DEFAULT= MEDIA WEBKIT OPTIONS_SUB= yes MEDIA_DESC= Media module SWT_DESC= SWT support MEDIA_LIB_DEPENDS= libavcodec.so:multimedia/ffmpeg \ libsndio.so:audio/sndio MEDIA_USES= gmake MEDIA_VARS= COMPILE_MEDIA=true SWT_BUILD_DEPENDS= swt>0:x11-toolkits/swt SWT_RUN_DEPENDS= swt>0:x11-toolkits/swt SWT_VARS= COMPILE_SWT=true TEST_USES= display:test TEST_VARS= AWT_TEST=true FULL_TEST=true # Gradle calls CMake during the build 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 \ CXX=${WRKDIR}/bin/cxxwrapper \ GRADLE_USER_HOME=${WRKDIR}/gradle-home \ JAVA_VERSION=${JAVA_VERSION} _GRADLE_RUN= ${SETENV} ${_GRADLE_ENV} gradle62 --no-daemon _INSTALLDIR= ${PREFIX}/${PKGBASE} post-extract: ${MKDIR} ${WRKDIR}/jars .for f in core grouping queries queryparser sandbox ${CP} ${DISTDIR}/lucene-${f}-7.7.1.jar ${WRKDIR}/jars .endfor ${CP} ${DISTDIR}/antlr4-4.7.2-complete.jar ${WRKDIR}/jars # The BSD Makefiles for GStreamer-lite and Jfxmedia are based on the # Linux versions. Prepare the tree, so that we only see the changes # from Linux's Makefile in our own patches. pre-patch: @${CP} -r ${WRKSRC}/modules/javafx.media/src/main/native/jfxmedia/projects/linux \ ${WRKSRC}/modules/javafx.media/src/main/native/jfxmedia/projects/bsd @${CP} -r ${WRKSRC}/modules/javafx.media/src/main/native/gstreamer/projects/linux \ ${WRKSRC}/modules/javafx.media/src/main/native/gstreamer/projects/bsd post-patch: @${MKDIR} ${WRKDIR}/bin @${PRINTF} '#!/bin/sh\nexport CCACHE_DIR=${CCACHE_DIR}\nexec ${CCACHE_BIN} ${CC} ${CFLAGS} ${LDFLAGS} "$$@"\n' > ${WRKDIR}/bin/ccwrapper @${PRINTF} '#!/bin/sh\nexport CCACHE_DIR=${CCACHE_DIR}\nexec ${CCACHE_BIN} ${CXX} ${CXXFLAGS} ${LDFLAGS} "$$@"\n' > ${WRKDIR}/bin/cxxwrapper @${CHMOD} +x ${WRKDIR}/bin/ccwrapper ${WRKDIR}/bin/cxxwrapper @${REINPLACE_CMD} -e 's|gcc|${WRKDIR}/bin/ccwrapper|g' \ -e 's|g\+\+|${WRKDIR}/bin/cxxwrapper|g' \ ${WRKSRC}/buildSrc/bsd.gradle # Add a *BSD native audio sink to GStreamer-lite instead of using the # bundled ALSA sink. Currently we add an sndio sink, but this is an extension # point for eventually adding an OSS backend (or others) as an option as well. # If you add a new one make sure it registers itself as "bsdaudiosink" as defined # in modules/media/src/main/native/jfxmedia/platform/gstreamer/GstPipelineFactory.cpp @${MKDIR} ${WRKSRC}/modules/javafx.media/src/main/native/gstreamer/gstreamer-lite/gst-plugins-base/ext/bsdaudio @${CP} ${FILESDIR}/gstsndio.* ${FILESDIR}/sndiosink.* \ ${WRKSRC}/modules/javafx.media/src/main/native/gstreamer/gstreamer-lite/gst-plugins-base/ext/bsdaudio @cd ${WRKSRC}/modules/javafx.media/src/main/native/gstreamer/gstreamer-lite/gst-plugins-base/ext/bsdaudio && \ ${LN} -s gstsndio.c gstbsdaudio.c && \ ${LN} -s sndiosink.c bsdaudiosink.c # Pull Java dependencies from LOCALBASE @${REINPLACE_CMD} 's|/usr/local|${LOCALBASE}|g' \ ${WRKSRC}/build.gradle ${WRKSRC}/buildSrc/build.gradle # Remove bundled libraries. We use the system's versions instead. @cd ${WRKSRC}/modules/javafx.web/src/main/native/Source/ThirdParty && \ ${RM} -r icu libxml libxslt sqlite @${RM} -r ${WRKSRC}/modules/javafx.web/src/main/native/Source/WTF/icu @cd ${WRKSRC}/modules/javafx.media/src/main/native/gstreamer/3rd_party && \ ${RM} -r glib libffi do-configure: @${MKDIR} ${WRKDIR}/gradle-home @${ECHO_CMD} "NUM_COMPILE_THREADS = ${MAKE_JOBS_NUMBER}" > ${WRKSRC}/gradle.properties @${ECHO_CMD} "JFX_DEPS_URL = ${WRKDIR}/jars" > ${WRKSRC}/gradle.properties .for prop in COMPILE_MEDIA COMPILE_WEBKIT AWT_TEST FULL_TEST @${ECHO_CMD} "${prop} = ${${prop}:Ufalse}" >> ${WRKSRC}/gradle.properties .endfor @${ECHO_CMD} "BSD.compileSWT = ${COMPILE_SWT:Ufalse};" >> ${WRKSRC}/buildSrc/bsd.gradle # the java doc are not installed on FreeBSD so exclude the javadoc task # as it'll fail otherwise do-build: @cd ${WRKSRC} && ${_GRADLE_RUN} zips --exclude-task javadoc # it's not recommended to install openjfx inside openjdk directory do-install: @${MKDIR} ${STAGEDIR}${_INSTALLDIR} \ ${STAGEDIR}${_INSTALLDIR}/lib \ ${STAGEDIR}${_INSTALLDIR}/jmods ${INSTALL_DATA} ${WRKSRC}/build/javafx-exports.zip ${STAGEDIR}${_INSTALLDIR} (cd ${WRKSRC}/build/artifacts/javafx-sdk-14.0.2.1/lib && ${COPYTREE_SHARE} . ${STAGEDIR}${_INSTALLDIR}/lib) @${MV} ${STAGEDIR}${_INSTALLDIR}/lib/src.zip ${STAGEDIR}${_INSTALLDIR}/lib/javafx-src.zip (cd ${WRKSRC}/build/artifacts/javafx-jmods-14.0.2.1 && ${COPYTREE_SHARE} . ${STAGEDIR}${_INSTALLDIR}/jmods) @${FIND} ${STAGEDIR}${_INSTALLDIR}/lib -name '*.so' -exec ${STRIP_CMD} \{\} \; do-test-TEST-on: @cd ${WRKSRC} && ${_GRADLE_RUN} check test .include diff --git a/lang/ruby27/Makefile b/lang/ruby27/Makefile index 1326301338a5..73c1965bae3d 100644 --- a/lang/ruby27/Makefile +++ b/lang/ruby27/Makefile @@ -1,229 +1,226 @@ PORTNAME= ruby PORTVERSION= ${RUBY_PORTVERSION} PORTREVISION= ${RUBY_PORTREVISION} PORTEPOCH= ${RUBY_PORTEPOCH} CATEGORIES= lang ruby MASTER_SITES= RUBY/${MASTER_SITE_SUBDIR_RUBY} DISTNAME= ${RUBY_DISTNAME} DIST_SUBDIR= ruby MAINTAINER= ruby@FreeBSD.org COMMENT= Object-oriented interpreted scripting language WWW= https://www.ruby-lang.org/en/ LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL LICENSE_FILE_RUBY= ${WRKSRC}/COPYING DEPRECATED= Please migrate to newer versions. Ruby 2.7 will reach its EoL on April 12, 2023 EXPIRATION_DATE= 2023-04-12 # Using LIB_DEPENDS finds the libffi from gcc which causes problems BUILD_DEPENDS= libffi>=0:devel/libffi 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 \ --enable-pthread \ --enable-shared \ --enable-install-static-library \ --with-ruby-version=minor \ --with-sitedir="${PREFIX}/lib/ruby/site_ruby" \ --with-vendordir="${PREFIX}/lib/ruby/vendor_ruby" CONFIGURE_ENV= debugflags= CPPFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes # Keep this, else ruby will fail to load libraries dependent of libpthread. LIBS+= -lpthread -L${LOCALBASE}/lib USE_LDCONFIG= yes WRKSRC= ${RUBY_WRKSRC} 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 OPTIONS_SINGLE= EDIT OPTIONS_SINGLE_EDIT= LIBEDIT READLINE OPTIONS_SUB= yes CAPIDOCS_DESC= Build and install C API documents GMP_DESC= Use GMP to accelerate Bignum operations RDOC_DESC= Build and install Rdoc indexes EDIT_DESC= Which line editing lib to use LIBEDIT_DESC= Use libedit READLINE_DESC= Use libreadline CAPIDOCS_BUILD_DEPENDS= doxygen>=1.8.13,2:devel/doxygen \ dot:graphics/graphviz CAPIDOCS_CONFIGURE_ENABLE= install-capi GMP_CONFIGURE_WITH= gmp GMP_LIB_DEPENDS= libgmp.so:math/gmp LIBEDIT_CONFIGURE_ON= --enable-libedit --with-libedit-dir=${LOCALBASE} LIBEDIT_USES= libedit RDOC_CONFIGURE_ENABLE= install-rdoc READLINE_CONFIGURE_ON= --disable-libedit --with-readline-dir=${LOCALBASE} READLINE_USES= readline CPE_VENDOR= ruby-lang CPE_VERSION= ${RUBY_RELVERSION} CPE_UPDATE= p${RUBY_PATCHLEVEL} .include # PORTREVISION/PORTEPOCH hack .if ${PORTREVISION} != 0 _SUF1= _${PORTREVISION} .endif .if ${PORTEPOCH} != 0 _SUF2= ,${PORTEPOCH} .endif .if ${OPSYS} == "FreeBSD" .if exists(/usr/sbin/dtrace) && (${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH} == powerpc64le || ${ARCH} == powerpc64 || ${ARCH} == powerpc) CONFIGURE_ARGS+=--enable-dtrace .else CONFIGURE_ARGS+=--disable-dtrace .endif .endif # keep in sync with all platforms where libunwind is available .if ${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH} == armv7 || ${ARCH} == i386 || ${ARCH} == powerpc64 || ${ARCH} == powerpc64le LIB_DEPENDS+= libunwind.so:devel/libunwind .endif .if defined(PPC_ABI) && ${PPC_ABI} == ELFv1 USE_GCC= yes .endif .if ${ARCH} == armv6 || ${ARCH} == armv7 || ${ARCH} == powerpc CONFIGURE_ARGS+=--with-setjmp-type=_setjmp CONFIGURE_ENV+= ac_cv_func__setjmp=yes .endif .if ${PORT_OPTIONS:MCAPIDOCS} MAKE_JOBS_UNSAFE= yes .endif .if ${RUBY_VER} == ${RUBY_DEFAULT_VER} PLIST_SUB+= IF_DEFAULT="" .else PKGNAMESUFFIX= ${RUBY_SUFFIX} PLIST_SUB+= IF_DEFAULT="@comment " .endif INSTALLED_SCRIPTS= erb ruby INSTALLED_MANUALS= erb ruby EXTSAMPLES= bigdecimal/sample/*.rb EXTDOCS= readline/README \ ripper/README \ stringio/README.md \ syslog/syslog.txt # Macros to change variables in rbconfig.rb RB_SET_CONF_VAR=${SH} -c '${REINPLACE_CMD} -E -e "s,(CONFIG\[\"$$0\"\][[:space:]]*=[[:space:]]*)(\(?)(.*)(\)?),\1\2$$1\4," ${WRKSRC}/rbconfig.rb' -- post-patch: # We get these from other ports .for d in bin/bundle* bin/gem bin/*racc* bin/irb bin/rdoc bin/ri \ lib/bundler* libexec/bundler* \ man/bundle* man/gemfile* man/irb.1 man/ri.1 \ ext/dbm ext/gdbm ext/win32ole @${RM} -r ${BUILD_WRKSRC}/${d} .endfor post-build: # # Hack to allow modules to be installed into separate PREFIX and/or under user # privileges # @${RB_SET_CONF_VAR} "prefix" "ENV['PREFIX'] || \3" @${RB_SET_CONF_VAR} "INSTALL" "'/usr/bin/install -c'" @${RB_SET_CONF_VAR} "INSTALL_PROGRAM" "ENV['RB_USER_INSTALL'] ? '${INSTALL} ${COPY} ${STRIP} -m ${BINMODE}' : '${INSTALL_PROGRAM}'" @${RB_SET_CONF_VAR} "INSTALL_SCRIPT" "ENV['RB_USER_INSTALL'] ? '${INSTALL} ${COPY} -m ${BINMODE}' : '${INSTALL_SCRIPT}'" @${RB_SET_CONF_VAR} "INSTALL_DATA" "ENV['RB_USER_INSTALL'] ? '${INSTALL} ${COPY} -m ${SHAREMODE}' : '${INSTALL_DATA}'" post-build-CAPIDOCS-on: @${FIND} ${WRKSRC}/doc -type d -empty -delete pre-install: ${MKDIR} ${STAGEDIR}${RUBY_SITEARCHLIBDIR} ${MKDIR} ${STAGEDIR}${RUBY_VENDORARCHLIBDIR} pre-install-DOCS-on: ${MKDIR} ${STAGEDIR}${RUBY_DOCDIR} pre-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${RUBY_EXAMPLESDIR} pre-install-RDOC-on: ${MKDIR} ${STAGEDIR}${RUBY_RIDIR} ${MKDIR} ${STAGEDIR}${RUBY_SITERIDIR} post-install: .if ${RUBY_VER} == ${RUBY_DEFAULT_VER} # # Link just installed "ruby" to "ruby27", etc. # . for FILE in ${INSTALLED_SCRIPTS} ${LN} -fs ${FILE}${RUBY_SUFFIX} ${STAGEDIR}${PREFIX}/bin/${FILE} . endfor # # Link "ruby.1.gz" to "ruby27.1.gz", etc. # . for FILE in ${INSTALLED_MANUALS} ${LN} -fs ${FILE}${RUBY_SUFFIX}.1.gz ${STAGEDIR}${MANPREFIX}/man/man1/${FILE}.1.gz . endfor .endif post-install-CAPIDOCS-on: ${RM} ${WRKSRC}/doc/capi/.timestamp ${STAGEDIR}${PREFIX}/share/doc/ruby${RUBY_SUFFIX}/capi/.timestamp cd ${STAGEDIR}${PREFIX} && ${FIND} share/doc/ruby${RUBY_SUFFIX}/capi/ -type f >> ${TMPPLIST} post-install-DEBUG-off: # # XXX: hack to strip ruby binary. Ruby uses its own install script that seems # bogus to hack. # .if defined(STRIP) && ${STRIP} == -s ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/ruby${RUBY_SUFFIX} ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libruby${RUBY_SHLIBVER}.so.${RUBY_SHLIBVER} ${FIND} ${STAGEDIR}${RUBY_ARCHLIBDIR} -type f -name '*\.so' -exec ${STRIP_CMD} {} \; .endif post-install-DOCS-on: # Create all dirs required (":u" isn't avaiable in STABLE yet :-() ${MKDIR} ${EXTDOCS:C|^([^/]+)/.*|\1|:S|^|${STAGEDIR}${RUBY_DOCDIR}/|} .for FILE in ${EXTDOCS} ${INSTALL_DATA} ${WRKSRC}/ext/${FILE} \ ${STAGEDIR}${RUBY_DOCDIR}/${FILE:C|^([^/]+)/.*|\1|}/ .endfor @(cd ${WRKSRC}/doc/ && ${COPYTREE_SHARE} \* ${STAGEDIR}${RUBY_DOCDIR}/) ${INSTALL_DATA} ${WRKSRC}/COPYING* \ ${WRKSRC}/ChangeLog \ ${WRKSRC}/LEGAL \ ${WRKSRC}/README* \ ${STAGEDIR}${RUBY_DOCDIR}/ post-install-EXAMPLES-on: # Create all dirs required (":u" isn't avaiable in STABLE yet :-() ${MKDIR} ${EXTSAMPLES:C|^([^/]+)/.*|\1|:S|^|${STAGEDIR}${RUBY_EXAMPLESDIR}/|} .for FILE in ${EXTSAMPLES} ${INSTALL_DATA} ${WRKSRC}/ext/${FILE} \ ${STAGEDIR}${RUBY_EXAMPLESDIR}/${FILE:C|^([^/]+)/.*|\1|}/ .endfor (cd ${WRKSRC}/sample/ && ${COPYTREE_SHARE} . ${STAGEDIR}${RUBY_EXAMPLESDIR}/) do-test: cd ${WRKSRC} && ${MAKE_CMD} test .include diff --git a/lang/ruby30/Makefile b/lang/ruby30/Makefile index b4e564ce8bd8..1dddd85809bf 100644 --- a/lang/ruby30/Makefile +++ b/lang/ruby30/Makefile @@ -1,218 +1,215 @@ PORTNAME= ruby PORTVERSION= ${RUBY_PORTVERSION} PORTREVISION= ${RUBY_PORTREVISION} PORTEPOCH= ${RUBY_PORTEPOCH} CATEGORIES= lang ruby MASTER_SITES= RUBY/${MASTER_SITE_SUBDIR_RUBY} DISTNAME= ${RUBY_DISTNAME} DIST_SUBDIR= ruby MAINTAINER= ruby@FreeBSD.org COMMENT= Object-oriented interpreted scripting language WWW= https://www.ruby-lang.org/en/ LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL LICENSE_FILE_RUBY= ${WRKSRC}/COPYING # Using LIB_DEPENDS finds the libffi from gcc which causes problems BUILD_DEPENDS= libffi>=0:devel/libffi 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 \ --enable-pthread \ --enable-shared \ --enable-install-static-library \ --with-ruby-version=minor \ --with-sitedir="${PREFIX}/lib/ruby/site_ruby" \ --with-vendordir="${PREFIX}/lib/ruby/vendor_ruby" CONFIGURE_ENV= debugflags= CPPFLAGS+= -I${LOCALBASE}/include GNU_CONFIGURE= yes # Keep this, else ruby will fail to load libraries dependent of libpthread. LIBS+= -lpthread -L${LOCALBASE}/lib USE_LDCONFIG= yes 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 OPTIONS_SINGLE= EDIT OPTIONS_SINGLE_EDIT= LIBEDIT READLINE OPTIONS_SUB= yes CAPIDOCS_DESC= Build and install C API documents GMP_DESC= Use GMP to accelerate Bignum operations RDOC_DESC= Build and install Rdoc indexes EDIT_DESC= Which line editing lib to use LIBEDIT_DESC= Use libedit READLINE_DESC= Use libreadline CAPIDOCS_BUILD_DEPENDS= doxygen>=1.8.13,2:devel/doxygen \ dot:graphics/graphviz CAPIDOCS_CONFIGURE_ENABLE= install-capi GMP_CONFIGURE_WITH= gmp GMP_LIB_DEPENDS= libgmp.so:math/gmp LIBEDIT_CONFIGURE_ON= --enable-libedit --with-libedit-dir=${LOCALBASE} LIBEDIT_USES= libedit RDOC_CONFIGURE_ENABLE= install-rdoc READLINE_CONFIGURE_ON= --disable-libedit --with-readline-dir=${LOCALBASE} READLINE_USES= readline CPE_VENDOR= ruby-lang CPE_VERSION= ${RUBY_RELVERSION} CPE_UPDATE= p${RUBY_PATCHLEVEL} .include # PORTREVISION/PORTEPOCH hack .if ${PORTREVISION} != 0 _SUF1= _${PORTREVISION} .endif .if ${PORTEPOCH} != 0 _SUF2= ,${PORTEPOCH} .endif #.if ${OPSYS} == "FreeBSD" #.if exists(/usr/sbin/dtrace) && (${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH} == powerpc64le || ${ARCH} == powerpc64 || ${ARCH} == powerpc) #CONFIGURE_ARGS+=--enable-dtrace #.else #CONFIGURE_ARGS+=--disable-dtrace #.endif #.endif # keep in sync with all platforms where libunwind is available .if ${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH} == armv7 || ${ARCH} == i386 || ${ARCH} == powerpc64 || ${ARCH} == powerpc64le LIB_DEPENDS+= libunwind.so:devel/libunwind .endif .if defined(PPC_ABI) && ${PPC_ABI} == ELFv1 USE_GCC= yes .endif .if ${ARCH} == armv6 || ${ARCH} == armv7 || ${ARCH} == powerpc CONFIGURE_ARGS+=--with-setjmp-type=_setjmp CONFIGURE_ENV+= ac_cv_func__setjmp=yes .endif .if ${RUBY_VER} == ${RUBY_DEFAULT_VER} PLIST_SUB+= IF_DEFAULT="" .else PKGNAMESUFFIX= ${RUBY_SUFFIX} PLIST_SUB+= IF_DEFAULT="@comment " .endif INSTALLED_SCRIPTS= ruby INSTALLED_MANUALS= ruby EXTSAMPLES= bigdecimal/sample/*.rb EXTDOCS= readline/README \ ripper/README \ stringio/README.md \ syslog/syslog.txt # Macros to change variables in rbconfig.rb RB_SET_CONF_VAR=${SH} -c '${REINPLACE_CMD} -E -e "s,(CONFIG\[\"$$0\"\][[:space:]]*=[[:space:]]*)(\(?)(.*)(\)?),\1\2$$1\4," ${WRKSRC}/rbconfig.rb' -- post-patch: # We get these from other ports .for d in bin/* ext/dbm ext/gdbm ext/win32* lib/bundler* libexec/bundler* man/bundle* man/erb.1 man/gemfile* man/irb.1 man/ri.1 @${RM} -r ${BUILD_WRKSRC}/${d} .endfor post-build: # # Hack to allow modules to be installed into separate PREFIX and/or under user # privileges # @${RB_SET_CONF_VAR} "prefix" "ENV['PREFIX'] || \3" @${RB_SET_CONF_VAR} "INSTALL" "'/usr/bin/install -c'" @${RB_SET_CONF_VAR} "INSTALL_PROGRAM" "ENV['RB_USER_INSTALL'] ? '${INSTALL} ${COPY} ${STRIP} -m ${BINMODE}' : '${INSTALL_PROGRAM}'" @${RB_SET_CONF_VAR} "INSTALL_SCRIPT" "ENV['RB_USER_INSTALL'] ? '${INSTALL} ${COPY} -m ${BINMODE}' : '${INSTALL_SCRIPT}'" @${RB_SET_CONF_VAR} "INSTALL_DATA" "ENV['RB_USER_INSTALL'] ? '${INSTALL} ${COPY} -m ${SHAREMODE}' : '${INSTALL_DATA}'" post-build-CAPIDOCS-on: @${FIND} ${WRKSRC}/doc -type d -empty -delete pre-install: ${MKDIR} ${STAGEDIR}${RUBY_SITEARCHLIBDIR} ${MKDIR} ${STAGEDIR}${RUBY_VENDORARCHLIBDIR} pre-install-DOCS-on: ${MKDIR} ${STAGEDIR}${RUBY_DOCDIR} pre-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${RUBY_EXAMPLESDIR} pre-install-RDOC-on: ${MKDIR} ${STAGEDIR}${RUBY_RIDIR} ${MKDIR} ${STAGEDIR}${RUBY_SITERIDIR} post-install: .if ${RUBY_VER} == ${RUBY_DEFAULT_VER} # # Link just installed "ruby" to "ruby30", etc. # . for FILE in ${INSTALLED_SCRIPTS} ${LN} -fs ${FILE}${RUBY_SUFFIX} ${STAGEDIR}${PREFIX}/bin/${FILE} . endfor # # Link "ruby.1.gz" to "ruby30.1.gz", etc. # . for FILE in ${INSTALLED_MANUALS} ${LN} -fs ${FILE}${RUBY_SUFFIX}.1.gz ${STAGEDIR}${MANPREFIX}/man/man1/${FILE}.1.gz . endfor .endif post-install-CAPIDOCS-on: ${RM} ${WRKSRC}/doc/capi/.timestamp ${STAGEDIR}${PREFIX}/share/doc/ruby${RUBY_SUFFIX}/capi/.timestamp cd ${STAGEDIR}${PREFIX} && ${FIND} share/doc/ruby${RUBY_SUFFIX}/capi/ -type f >> ${TMPPLIST} post-install-DEBUG-off: # # XXX: hack to strip ruby binary. Ruby uses its own install script that seems # bogus to hack. # .if defined(STRIP) && ${STRIP} == -s ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/ruby${RUBY_SUFFIX} ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libruby${RUBY_SHLIBVER}.so.${RUBY_SHLIBVER} ${FIND} ${STAGEDIR}${RUBY_ARCHLIBDIR} -type f -name '*\.so' -exec ${STRIP_CMD} {} \; .endif post-install-DOCS-on: # Create all dirs required (":u" isn't avaiable in STABLE yet :-() ${MKDIR} ${EXTDOCS:C|^([^/]+)/.*|\1|:S|^|${STAGEDIR}${RUBY_DOCDIR}/|} .for FILE in ${EXTDOCS} ${INSTALL_DATA} ${WRKSRC}/ext/${FILE} \ ${STAGEDIR}${RUBY_DOCDIR}/${FILE:C|^([^/]+)/.*|\1|}/ .endfor @(cd ${WRKSRC}/doc/ && ${COPYTREE_SHARE} \* ${STAGEDIR}${RUBY_DOCDIR}/) ${INSTALL_DATA} ${WRKSRC}/COPYING* \ ${WRKSRC}/ChangeLog \ ${WRKSRC}/LEGAL \ ${WRKSRC}/README* \ ${STAGEDIR}${RUBY_DOCDIR}/ post-install-EXAMPLES-on: # Create all dirs required (":u" isn't avaiable in STABLE yet :-() ${MKDIR} ${EXTSAMPLES:C|^([^/]+)/.*|\1|:S|^|${STAGEDIR}${RUBY_EXAMPLESDIR}/|} .for FILE in ${EXTSAMPLES} ${INSTALL_DATA} ${WRKSRC}/ext/${FILE} \ ${STAGEDIR}${RUBY_EXAMPLESDIR}/${FILE:C|^([^/]+)/.*|\1|}/ .endfor (cd ${WRKSRC}/sample/ && ${COPYTREE_SHARE} . ${STAGEDIR}${RUBY_EXAMPLESDIR}/) do-test: cd ${WRKSRC} && ${MAKE_CMD} test .include diff --git a/lang/ruby31/Makefile b/lang/ruby31/Makefile index 0bf41f00efa0..d8eac85a03f8 100644 --- a/lang/ruby31/Makefile +++ b/lang/ruby31/Makefile @@ -1,223 +1,220 @@ PORTNAME= ruby DISTVERSION= ${RUBY_DISTVERSION} PORTREVISION= ${RUBY_PORTREVISION} PORTEPOCH= ${RUBY_PORTEPOCH} CATEGORIES= lang ruby MASTER_SITES= RUBY/${MASTER_SITE_SUBDIR_RUBY} DIST_SUBDIR= ruby MAINTAINER= ruby@FreeBSD.org COMMENT= Object-oriented interpreted scripting language WWW= https://www.ruby-lang.org/en/ LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE= ${WRKSRC}/BSDL LICENSE_FILE_RUBY= ${WRKSRC}/COPYING # Using LIB_DEPENDS finds the libffi from gcc which causes problems BUILD_DEPENDS= libffi>=0:devel/libffi 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 GNU_CONFIGURE= yes CONFIGURE_ARGS= ${RUBY_CONFIGURE_ARGS} \ --disable-rpath \ --enable-install-static-library \ --enable-pthread \ --enable-shared \ --with-ruby-version=minor \ --with-sitedir="${PREFIX}/lib/ruby/site_ruby" \ --with-vendordir="${PREFIX}/lib/ruby/vendor_ruby" CONFIGURE_ENV= debugflags= CPPFLAGS+= -I${LOCALBASE}/include # Keep this, else ruby will fail to load libraries dependent of libpthread. LIBS+= -lpthread -L${LOCALBASE}/lib WRKSRC= ${RUBY_WRKSRC} RUBY_VER= 3.1 OPTIONS_DEFINE= CAPIDOCS DEBUG DOCS EXAMPLES GMP RDOC OPTIONS_DEFAULT= LIBEDIT RDOC OPTIONS_SINGLE= EDIT OPTIONS_SINGLE_EDIT= LIBEDIT READLINE OPTIONS_SUB= yes CAPIDOCS_DESC= Build and install C API documents EDIT_DESC= Which line editing lib to use GMP_DESC= Use GMP to accelerate Bignum operations LIBEDIT_DESC= Use libedit RDOC_DESC= Build and install Rdoc indexes READLINE_DESC= Use libreadline CAPIDOCS_BUILD_DEPENDS= dot:graphics/graphviz \ doxygen>=1.8.13,2:devel/doxygen CAPIDOCS_CONFIGURE_ENABLE= install-capi GMP_LIB_DEPENDS= libgmp.so:math/gmp GMP_CONFIGURE_WITH= gmp LIBEDIT_USES= libedit LIBEDIT_CONFIGURE_ON= --enable-libedit \ --with-libedit-dir=${LOCALBASE} RDOC_CONFIGURE_ENABLE= install-rdoc READLINE_USES= readline READLINE_CONFIGURE_ON= --disable-libedit \ --with-readline-dir=${LOCALBASE} .include # PORTREVISION/PORTEPOCH hack .if ${PORTREVISION} != 0 _SUF1= _${PORTREVISION} .endif .if ${PORTEPOCH} != 0 _SUF2= ,${PORTEPOCH} .endif #.if ${OPSYS} == "FreeBSD" #.if exists(/usr/sbin/dtrace) && (${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH} == powerpc64le || ${ARCH} == powerpc64 || ${ARCH} == powerpc) #CONFIGURE_ARGS+=--enable-dtrace #.else #CONFIGURE_ARGS+=--disable-dtrace #.endif #.endif # keep in sync with all platforms where libunwind is available .if ${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH} == armv7 || ${ARCH} == \ i386 || ${ARCH} == powerpc64 || ${ARCH} == powerpc64le LIB_DEPENDS+= libunwind.so:devel/libunwind .endif .if defined(PPC_ABI) && ${PPC_ABI} == ELFv1 USE_GCC= yes .endif .if ${ARCH} == armv6 || ${ARCH} == armv7 || ${ARCH} == powerpc CONFIGURE_ARGS+= --with-setjmp-type=_setjmp CONFIGURE_ENV+= ac_cv_func__setjmp=yes .endif .if ${RUBY_VER} == ${RUBY_DEFAULT_VER} PLIST_SUB+= IF_DEFAULT="" .else PKGNAMESUFFIX= ${RUBY_SUFFIX} PLIST_SUB+= IF_DEFAULT="@comment " .endif INSTALLED_SCRIPTS= ruby INSTALLED_MANUALS= ruby EXTSAMPLES= bigdecimal/sample/*.rb EXTDOCS= readline/README ripper/README stringio/README.md \ syslog/syslog.txt # Macros to change variables in rbconfig.rb RB_SET_CONF_VAR= ${SH} -c \ '${REINPLACE_CMD} -E -e "s,(CONFIG\[\"$$0\"\][[:space:]]*=[[:space:]]*)(\(?)(.*)(\)?),\1\2$$1\4," ${WRKSRC}/rbconfig.rb' \ -- post-patch: # We get these from other ports .for d in bin/* ext/dbm ext/gdbm ext/win32* lib/bundler* libexec/bundler* \ man/bundle* man/erb.1 man/gemfile* man/irb.1 man/ri.1 @${RM} -r ${BUILD_WRKSRC}/${d} .endfor post-build: # # Hack to allow modules to be installed into separate PREFIX and/or under user # privileges # @${RB_SET_CONF_VAR} "prefix" "ENV['PREFIX'] || \3" @${RB_SET_CONF_VAR} "INSTALL" "'/usr/bin/install -c'" @${RB_SET_CONF_VAR} "INSTALL_PROGRAM" "ENV['RB_USER_INSTALL'] ? '${INSTALL} ${COPY} ${STRIP} -m ${BINMODE}' : '${INSTALL_PROGRAM}'" @${RB_SET_CONF_VAR} "INSTALL_SCRIPT" "ENV['RB_USER_INSTALL'] ? '${INSTALL} ${COPY} -m ${BINMODE}' : '${INSTALL_SCRIPT}'" @${RB_SET_CONF_VAR} "INSTALL_DATA" "ENV['RB_USER_INSTALL'] ? '${INSTALL} ${COPY} -m ${SHAREMODE}' : '${INSTALL_DATA}'" post-build-CAPIDOCS-on: @${FIND} ${WRKSRC}/doc -type d -empty -delete pre-install: ${MKDIR} ${STAGEDIR}${RUBY_SITEARCHLIBDIR} ${MKDIR} ${STAGEDIR}${RUBY_VENDORARCHLIBDIR} pre-install-DOCS-on: ${MKDIR} ${STAGEDIR}${RUBY_DOCDIR} pre-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${RUBY_EXAMPLESDIR} pre-install-RDOC-on: ${MKDIR} ${STAGEDIR}${RUBY_RIDIR} ${MKDIR} ${STAGEDIR}${RUBY_SITERIDIR} post-install: .if ${RUBY_VER} == ${RUBY_DEFAULT_VER} # # Link just installed "ruby" to "ruby31", etc. # . for FILE in ${INSTALLED_SCRIPTS} ${LN} -fs ${FILE}${RUBY_SUFFIX} ${STAGEDIR}${PREFIX}/bin/${FILE} . endfor # # Link "ruby.1.gz" to "ruby31.1.gz", etc. # . for FILE in ${INSTALLED_MANUALS} ${LN} -fs ${FILE}${RUBY_SUFFIX}.1.gz ${STAGEDIR}${MANPREFIX}/man/man1/${FILE}.1.gz . endfor .endif post-install-CAPIDOCS-on: ${RM} ${WRKSRC}/doc/capi/.timestamp ${STAGEDIR}${PREFIX}/share/doc/ruby${RUBY_SUFFIX}/capi/.timestamp cd ${STAGEDIR}${PREFIX} && ${FIND} share/doc/ruby${RUBY_SUFFIX}/capi/ -type f >> ${TMPPLIST} post-install-DEBUG-off: # # XXX: hack to strip ruby binary. Ruby uses its own install script that seems # bogus to hack. # .if defined(STRIP) && ${STRIP} == -s ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/ruby${RUBY_SUFFIX} ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libruby${RUBY_SHLIBVER}.so.${RUBY_SHLIBVER} ${FIND} ${STAGEDIR}${RUBY_ARCHLIBDIR} -type f -name '*\.so' -exec ${STRIP_CMD} {} \; .endif post-install-DOCS-on: # Create all dirs required (":u" isn't avaiable in STABLE yet :-() ${MKDIR} ${EXTDOCS:C|^([^/]+)/.*|\1|:S|^|${STAGEDIR}${RUBY_DOCDIR}/|} .for FILE in ${EXTDOCS} ${INSTALL_DATA} ${WRKSRC}/ext/${FILE} \ ${STAGEDIR}${RUBY_DOCDIR}/${FILE:C|^([^/]+)/.*|\1|}/ .endfor @(cd ${WRKSRC}/doc/ && ${COPYTREE_SHARE} \* ${STAGEDIR}${RUBY_DOCDIR}/) ${INSTALL_DATA} ${WRKSRC}/COPYING* \ ${WRKSRC}/ChangeLog \ ${WRKSRC}/LEGAL \ ${WRKSRC}/README* \ ${STAGEDIR}${RUBY_DOCDIR}/ post-install-EXAMPLES-on: # Create all dirs required (":u" isn't avaiable in STABLE yet :-() ${MKDIR} ${EXTSAMPLES:C|^([^/]+)/.*|\1|:S|^|${STAGEDIR}${RUBY_EXAMPLESDIR}/|} .for FILE in ${EXTSAMPLES} ${INSTALL_DATA} ${WRKSRC}/ext/${FILE} \ ${STAGEDIR}${RUBY_EXAMPLESDIR}/${FILE:C|^([^/]+)/.*|\1|}/ .endfor (cd ${WRKSRC}/sample/ && ${COPYTREE_SHARE} . ${STAGEDIR}${RUBY_EXAMPLESDIR}/) do-test: cd ${WRKSRC} && ${MAKE_CMD} test .include diff --git a/lang/ruby32/Makefile b/lang/ruby32/Makefile index 7ac4d13817e0..928c79b8e2a2 100644 --- a/lang/ruby32/Makefile +++ b/lang/ruby32/Makefile @@ -1,226 +1,223 @@ PORTNAME= ruby DISTVERSION= ${RUBY_DISTVERSION} PORTREVISION= ${RUBY_PORTREVISION} PORTEPOCH= ${RUBY_PORTEPOCH} CATEGORIES= lang ruby MASTER_SITES= RUBY/${MASTER_SITE_SUBDIR_RUBY} DIST_SUBDIR= ruby MAINTAINER= ruby@FreeBSD.org COMMENT= Object-oriented interpreted scripting language WWW= https://www.ruby-lang.org/en/ LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE= ${WRKSRC}/BSDL LICENSE_FILE_RUBY= ${WRKSRC}/COPYING # Using LIB_DEPENDS finds the libffi from gcc which causes problems BUILD_DEPENDS= libffi>=0:devel/libffi 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 GNU_CONFIGURE= yes CONFIGURE_ARGS= ${RUBY_CONFIGURE_ARGS} \ --disable-rpath \ --enable-install-static-library \ --enable-pthread \ --enable-shared \ --with-ruby-version="${RUBY_VER}" \ --with-sitedir="${PREFIX}/lib/ruby/site_ruby" \ --with-vendordir="${PREFIX}/lib/ruby/vendor_ruby" CONFIGURE_ENV= debugflags= CPPFLAGS+= -I${LOCALBASE}/include # Keep this, else ruby will fail to load libraries dependent of libpthread. LIBS+= -lpthread -L${LOCALBASE}/lib WRKSRC= ${RUBY_WRKSRC} RUBY_VER= 3.2 OPTIONS_DEFINE= CAPIDOCS DEBUG DOCS EXAMPLES GMP RDOC YJIT OPTIONS_DEFAULT= LIBEDIT RDOC OPTIONS_SINGLE= EDIT OPTIONS_SINGLE_EDIT= LIBEDIT READLINE OPTIONS_SUB= yes CAPIDOCS_DESC= Build and install C API documents EDIT_DESC= Which line editing lib to use GMP_DESC= Use GMP to accelerate Bignum operations LIBEDIT_DESC= Use libedit RDOC_DESC= Build and install Rdoc indexes READLINE_DESC= Use libreadline YJIT_DESC= Enable YJIT (Yet Another Ruby JIT) CAPIDOCS_BUILD_DEPENDS= dot:graphics/graphviz \ doxygen>=1.8.13,2:devel/doxygen CAPIDOCS_CONFIGURE_ENABLE= install-capi GMP_LIB_DEPENDS= libgmp.so:math/gmp GMP_CONFIGURE_WITH= gmp LIBEDIT_USES= libedit LIBEDIT_CONFIGURE_ON= --enable-libedit \ --with-libedit-dir=${LOCALBASE} RDOC_CONFIGURE_ENABLE= install-rdoc READLINE_USES= readline READLINE_CONFIGURE_ON= --disable-libedit \ --with-readline-dir=${LOCALBASE} YJIT_BUILD_DEPENDS= ${RUST_DEFAULT}>=1.58.0:lang/${RUST_DEFAULT} YJIT_CONFIGURE_ENABLE= yjit .include # PORTREVISION/PORTEPOCH hack .if ${PORTREVISION} != 0 _SUF1= _${PORTREVISION} .endif .if ${PORTEPOCH} != 0 _SUF2= ,${PORTEPOCH} .endif #.if ${OPSYS} == "FreeBSD" #.if exists(/usr/sbin/dtrace) && (${ARCH} == amd64 || ${ARCH} == i386 || ${ARCH} == powerpc64le || ${ARCH} == powerpc64 || ${ARCH} == powerpc) #CONFIGURE_ARGS+=--enable-dtrace #.else #CONFIGURE_ARGS+=--disable-dtrace #.endif #.endif # keep in sync with all platforms where libunwind is available .if ${ARCH} == aarch64 || ${ARCH} == amd64 || ${ARCH} == armv7 || ${ARCH} == \ i386 || ${ARCH} == powerpc64 || ${ARCH} == powerpc64le LIB_DEPENDS+= libunwind.so:devel/libunwind .endif .if defined(PPC_ABI) && ${PPC_ABI} == ELFv1 USE_GCC= yes .endif .if ${ARCH} == armv6 || ${ARCH} == armv7 || ${ARCH} == powerpc CONFIGURE_ARGS+= --with-setjmp-type=_setjmp CONFIGURE_ENV+= ac_cv_func__setjmp=yes .endif .if ${RUBY_VER} == ${RUBY_DEFAULT_VER} PLIST_SUB+= IF_DEFAULT="" .else PKGNAMESUFFIX= ${RUBY_SUFFIX} PLIST_SUB+= IF_DEFAULT="@comment " .endif INSTALLED_SCRIPTS= ruby INSTALLED_MANUALS= ruby EXTSAMPLES= bigdecimal/sample/*.rb EXTDOCS= readline/README ripper/README stringio/README.md \ syslog/syslog.txt # Macros to change variables in rbconfig.rb RB_SET_CONF_VAR= ${SH} -c \ '${REINPLACE_CMD} -E -e "s,(CONFIG\[\"$$0\"\][[:space:]]*=[[:space:]]*)(\(?)(.*)(\)?),\1\2$$1\4," ${WRKSRC}/rbconfig.rb' \ -- post-patch: # We get these from other ports .for d in bin/* ext/dbm ext/gdbm ext/win32* lib/bundler* libexec/bundler* \ man/bundle* man/erb.1 man/gemfile* man/irb.1 man/ri.1 @${RM} -r ${BUILD_WRKSRC}/${d} .endfor post-build: # # Hack to allow modules to be installed into separate PREFIX and/or under user # privileges # @${RB_SET_CONF_VAR} "prefix" "ENV['PREFIX'] || \3" @${RB_SET_CONF_VAR} "INSTALL" "'/usr/bin/install -c'" @${RB_SET_CONF_VAR} "INSTALL_PROGRAM" "ENV['RB_USER_INSTALL'] ? '${INSTALL} ${COPY} ${STRIP} -m ${BINMODE}' : '${INSTALL_PROGRAM}'" @${RB_SET_CONF_VAR} "INSTALL_SCRIPT" "ENV['RB_USER_INSTALL'] ? '${INSTALL} ${COPY} -m ${BINMODE}' : '${INSTALL_SCRIPT}'" @${RB_SET_CONF_VAR} "INSTALL_DATA" "ENV['RB_USER_INSTALL'] ? '${INSTALL} ${COPY} -m ${SHAREMODE}' : '${INSTALL_DATA}'" post-build-CAPIDOCS-on: @${FIND} ${WRKSRC}/doc -type d -empty -delete pre-install: ${MKDIR} ${STAGEDIR}${RUBY_SITEARCHLIBDIR} ${MKDIR} ${STAGEDIR}${RUBY_VENDORARCHLIBDIR} pre-install-DOCS-on: ${MKDIR} ${STAGEDIR}${RUBY_DOCDIR} pre-install-EXAMPLES-on: ${MKDIR} ${STAGEDIR}${RUBY_EXAMPLESDIR} pre-install-RDOC-on: ${MKDIR} ${STAGEDIR}${RUBY_RIDIR} ${MKDIR} ${STAGEDIR}${RUBY_SITERIDIR} post-install: .if ${RUBY_VER} == ${RUBY_DEFAULT_VER} # # Link just installed "ruby" to "ruby31", etc. # . for FILE in ${INSTALLED_SCRIPTS} ${LN} -fs ${FILE}${RUBY_SUFFIX} ${STAGEDIR}${PREFIX}/bin/${FILE} . endfor # # Link "ruby.1.gz" to "ruby31.1.gz", etc. # . for FILE in ${INSTALLED_MANUALS} ${LN} -fs ${FILE}${RUBY_SUFFIX}.1.gz ${STAGEDIR}${MANPREFIX}/man/man1/${FILE}.1.gz . endfor .endif post-install-CAPIDOCS-on: ${RM} ${WRKSRC}/doc/capi/.timestamp ${STAGEDIR}${PREFIX}/share/doc/ruby${RUBY_SUFFIX}/capi/.timestamp cd ${STAGEDIR}${PREFIX} && ${FIND} share/doc/ruby${RUBY_SUFFIX}/capi/ -type f >> ${TMPPLIST} post-install-DEBUG-off: # # XXX: hack to strip ruby binary. Ruby uses its own install script that seems # bogus to hack. # .if defined(STRIP) && ${STRIP} == -s ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/ruby${RUBY_SUFFIX} ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libruby${RUBY_SHLIBVER}.so.${RUBY_SHLIBVER} ${FIND} ${STAGEDIR}${RUBY_ARCHLIBDIR} -type f -name '*\.so' -exec ${STRIP_CMD} {} \; .endif post-install-DOCS-on: # Create all dirs required (":u" isn't avaiable in STABLE yet :-() ${MKDIR} ${EXTDOCS:C|^([^/]+)/.*|\1|:S|^|${STAGEDIR}${RUBY_DOCDIR}/|} .for FILE in ${EXTDOCS} ${INSTALL_DATA} ${WRKSRC}/ext/${FILE} \ ${STAGEDIR}${RUBY_DOCDIR}/${FILE:C|^([^/]+)/.*|\1|}/ .endfor @(cd ${WRKSRC}/doc/ && ${COPYTREE_SHARE} \* ${STAGEDIR}${RUBY_DOCDIR}/) ${INSTALL_DATA} ${WRKSRC}/COPYING* \ ${WRKSRC}/ChangeLog \ ${WRKSRC}/LEGAL \ ${WRKSRC}/README* \ ${STAGEDIR}${RUBY_DOCDIR}/ post-install-EXAMPLES-on: # Create all dirs required (":u" isn't avaiable in STABLE yet :-() ${MKDIR} ${EXTSAMPLES:C|^([^/]+)/.*|\1|:S|^|${STAGEDIR}${RUBY_EXAMPLESDIR}/|} .for FILE in ${EXTSAMPLES} ${INSTALL_DATA} ${WRKSRC}/ext/${FILE} \ ${STAGEDIR}${RUBY_EXAMPLESDIR}/${FILE:C|^([^/]+)/.*|\1|}/ .endfor (cd ${WRKSRC}/sample/ && ${COPYTREE_SHARE} . ${STAGEDIR}${RUBY_EXAMPLESDIR}/) do-test: cd ${WRKSRC} && ${MAKE_CMD} test .include diff --git a/lang/rubygem-ruby_language_server/Makefile b/lang/rubygem-ruby_language_server/Makefile index e00858b01b01..e059812ac367 100644 --- a/lang/rubygem-ruby_language_server/Makefile +++ b/lang/rubygem-ruby_language_server/Makefile @@ -1,31 +1,30 @@ PORTNAME= ruby_language_server PORTVERSION= 0.3.16 CATEGORIES= lang rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Language server implementation for Ruby WWW= https://github.com/kwerle/ruby_language_server LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activerecord61>=6.1<7:databases/rubygem-activerecord61 \ rubygem-amatch>=0:textproc/rubygem-amatch \ rubygem-bundler>=0,1:sysutils/rubygem-bundler \ rubygem-etc>=0:devel/rubygem-etc \ rubygem-fuzzy_match>=0:devel/rubygem-fuzzy_match \ rubygem-json>=0:devel/rubygem-json \ rubygem-rubocop-performance>=0:devel/rubygem-rubocop-performance \ rubygem-rubocop-rspec>=0:devel/rubygem-rubocop-rspec \ rubygem-rubocop>=0:devel/rubygem-rubocop \ rubygem-sqlite3>=0:databases/rubygem-sqlite3 USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/ruby_language_server .include diff --git a/mail/bsfilter/Makefile b/mail/bsfilter/Makefile index a3b139d58ff8..cb927ee5b201 100644 --- a/mail/bsfilter/Makefile +++ b/mail/bsfilter/Makefile @@ -1,38 +1,37 @@ PORTNAME= bsfilter PORTVERSION= 1.0.19 PORTREVISION= 3 CATEGORIES= mail ruby MASTER_SITES= OSDN/bsfilter MAINTAINER= ports@FreeBSD.org COMMENT= Bayesian spam filter written in Ruby WWW= https://en.sourceforge.jp/projects/bsfilter/ LICENSE= GPLv2 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 .include .if ${RUBY_VER:M3*} != "" RUN_DEPENDS+= rubygem-sdbm>=1.0.0:databases/rubygem-sdbm .endif do-install: ${INSTALL_SCRIPT} ${WRKSRC}/bsfilter/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} .for FILE in bsfilter.conf.sample dot-qmail.sample ${INSTALL_DATA} ${FILESDIR}/${FILE} ${STAGEDIR}${EXAMPLESDIR} .endfor .for DIR in mda mua cd ${WRKSRC} && ${COPYTREE_SHARE} ${DIR} ${STAGEDIR}${EXAMPLESDIR} .endfor .include diff --git a/mail/lens/Makefile b/mail/lens/Makefile index 76a264297964..1338093407bf 100644 --- a/mail/lens/Makefile +++ b/mail/lens/Makefile @@ -1,39 +1,38 @@ PORTNAME= lens PORTVERSION= 0.2 PORTREVISION= 2 CATEGORIES= mail ruby MASTER_SITES= http://www.pitecan.com/Lens/ \ LOCAL/tota/lens MAINTAINER= tota@FreeBSD.org 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 LIB_FILES= lens.rb maildir.rb message.rb parsedate.rb classify.rb SHEBANG_FILES= lens OPTIONS_DEFINE= DOCS EXAMPLES do-install: ${INSTALL_SCRIPT} ${WRKSRC}/lens ${STAGEDIR}${PREFIX}/bin @${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR}/lens .for f in ${LIB_FILES} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_SITELIBDIR}/lens .endfor do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/index.html ${STAGEDIR}${DOCSDIR} do-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/lensrc.sample ${STAGEDIR}${EXAMPLESDIR}/dot.lensrc ${INSTALL_DATA} ${WRKSRC}/commandmailrc.sample ${STAGEDIR}${EXAMPLESDIR}/dot.commandmailrc .include diff --git a/mail/milter-manager/Makefile b/mail/milter-manager/Makefile index 84f14afcffca..5c2e8efe80ba 100644 --- a/mail/milter-manager/Makefile +++ b/mail/milter-manager/Makefile @@ -1,48 +1,47 @@ PORTNAME= milter-manager DISTVERSION= 2.1.6 PORTREVISION= 1 CATEGORIES= mail ruby MASTER_SITES= https://github.com/${PORTNAME}/${PORTNAME}/releases/download/${DISTVERSION}/ MAINTAINER= ports@FreeBSD.org COMMENT= Super milter that can invoke several milters selectively WWW= https://milter-manager.osdn.jp/ LICENSE= AGPLv3 GFDL GPLv3 LGPL3 LICENSE_COMB= multi BUILD_DEPENDS= rubygem-gio2>0:devel/rubygem-gio2 LIB_DEPENDS= libev.so:devel/libev RUN_DEPENDS= rubygem-gio2>0:devel/rubygem-gio2 \ 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} \ --with-libev \ --with-package-platform=freebsd INSTALL_TARGET= install-strip CFLAGS+= -fdeclspec CPPFLAGS+= -I${LOCALBASE}/include LIBS+= -L${LOCALBASE}/lib PORTDOCS= * PORTEXAMPLES= * OPTIONS_DEFINE= DOCS EXAMPLES post-patch: @${FIND} ${WRKSRC} -type f -name Makefile.in -exec \ ${REINPLACE_CMD} -e "s#\$$(datadir)/@PACKAGE@#${DATADIR}#" \ -e "s#\$$(datarootdir)/\$$(PACKAGE)#${DATADIR}#" {} + @${REINPLACE_CMD} -e "s#\\\\\$$(pkgdatadir)/sample#${EXAMPLESDIR}#" ${WRKSRC}/configure .include diff --git a/mail/rubygem-actionmailbox60/Makefile b/mail/rubygem-actionmailbox60/Makefile index 6788f12a288e..077b09521eab 100644 --- a/mail/rubygem-actionmailbox60/Makefile +++ b/mail/rubygem-actionmailbox60/Makefile @@ -1,29 +1,28 @@ PORTNAME= actionmailbox PORTVERSION= 6.0.6 CATEGORIES= mail rubygems MASTER_SITES= RG PKGNAMESUFFIX= 60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Receive and process incoming emails in Rails applications WWW= https://github.com/rails/rails/tree/main/actionmailbox \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack60>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack60 \ rubygem-activejob60>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activejob60 \ rubygem-activerecord60>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-activerecord60 \ rubygem-activestorage60>=${PORTVERSION}<${PORTVERSION}_99:net/rubygem-activestorage60 \ rubygem-activesupport60>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport60 \ rubygem-mail>=2.7.1,2:mail/rubygem-mail USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^6\.0\. .include diff --git a/mail/rubygem-actionmailbox61/Makefile b/mail/rubygem-actionmailbox61/Makefile index 61c1e31dcccc..4ebec87b4eba 100644 --- a/mail/rubygem-actionmailbox61/Makefile +++ b/mail/rubygem-actionmailbox61/Makefile @@ -1,29 +1,28 @@ PORTNAME= actionmailbox PORTVERSION= 6.1.7 CATEGORIES= mail rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Receive and process incoming emails in Rails applications WWW= https://github.com/rails/rails/tree/main/actionmailbox \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack61>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack61 \ rubygem-activejob61>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activejob61 \ rubygem-activerecord61>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-activerecord61 \ rubygem-activestorage61>=${PORTVERSION}<${PORTVERSION}_99:net/rubygem-activestorage61 \ rubygem-activesupport61>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport61 \ rubygem-mail>=2.7.1,2:mail/rubygem-mail USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^6\.1\. .include diff --git a/mail/rubygem-actionmailbox70/Makefile b/mail/rubygem-actionmailbox70/Makefile index 2d3e3b1a7ac3..37653d589e07 100644 --- a/mail/rubygem-actionmailbox70/Makefile +++ b/mail/rubygem-actionmailbox70/Makefile @@ -1,32 +1,31 @@ PORTNAME= actionmailbox PORTVERSION= 7.0.3.1 CATEGORIES= mail rubygems MASTER_SITES= RG PKGNAMESUFFIX= 70 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Receive and process incoming emails in Rails applications WWW= https://github.com/rails/rails/tree/main/actionmailbox \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack70>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack70 \ rubygem-activejob70>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activejob70 \ rubygem-activerecord70>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-activerecord70 \ rubygem-activestorage70>=${PORTVERSION}<${PORTVERSION}_99:net/rubygem-activestorage70 \ rubygem-activesupport70>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport70 \ rubygem-mail>=2.7.1,2:mail/rubygem-mail \ rubygem-net-imap>=0:mail/rubygem-net-imap \ rubygem-net-pop>=0:mail/rubygem-net-pop \ rubygem-net-smtp>=0:mail/rubygem-net-smtp USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^7\.0\. .include diff --git a/mail/rubygem-actionmailer4/Makefile b/mail/rubygem-actionmailer4/Makefile index 58af243bd453..436f382ebd03 100644 --- a/mail/rubygem-actionmailer4/Makefile +++ b/mail/rubygem-actionmailer4/Makefile @@ -1,27 +1,26 @@ PORTNAME= actionmailer PORTVERSION= 4.2.11.3 CATEGORIES= mail rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Easy email delivery and testing for Ruby WWW= https://github.com/rails/rails/tree/main/actionmailer LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack4>=${PORTVERSION}:www/rubygem-actionpack4 \ rubygem-actionview4>=${PORTVERSION}:devel/rubygem-actionview4 \ rubygem-activejob4>=${PORTVERSION}:devel/rubygem-activejob4 \ rubygem-mail>=2.5.4,2<3,2:mail/rubygem-mail \ rubygem-rails-dom-testing1>=1.0.5<2:textproc/rubygem-rails-dom-testing1 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^4\.2\. .include diff --git a/mail/rubygem-actionmailer5/Makefile b/mail/rubygem-actionmailer5/Makefile index c8f14f4e4433..6f4a580f33a4 100644 --- a/mail/rubygem-actionmailer5/Makefile +++ b/mail/rubygem-actionmailer5/Makefile @@ -1,27 +1,26 @@ PORTNAME= actionmailer PORTVERSION= 5.1.7 CATEGORIES= mail rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Easy email delivery and testing for Ruby WWW= https://github.com/rails/rails/tree/main/actionmailer LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack5>=${PORTVERSION}:www/rubygem-actionpack5 \ rubygem-actionview5>=${PORTVERSION}:devel/rubygem-actionview5 \ rubygem-activejob5>=${PORTVERSION}:devel/rubygem-activejob5 \ rubygem-mail>=2.5.4,2<3,2:mail/rubygem-mail \ rubygem-rails-dom-testing-rails5>=2.0<3:textproc/rubygem-rails-dom-testing-rails5 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^5\.1\. .include diff --git a/mail/rubygem-actionmailer50/Makefile b/mail/rubygem-actionmailer50/Makefile index d57e2aff6000..49f4375a3065 100644 --- a/mail/rubygem-actionmailer50/Makefile +++ b/mail/rubygem-actionmailer50/Makefile @@ -1,27 +1,26 @@ PORTNAME= actionmailer PORTVERSION= 5.0.7.2 CATEGORIES= mail rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Easy email delivery and testing for Ruby WWW= https://github.com/rails/rails/tree/main/actionmailer LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack50>=${PORTVERSION}:www/rubygem-actionpack50 \ rubygem-actionview50>=${PORTVERSION}:devel/rubygem-actionview50 \ rubygem-activejob50>=${PORTVERSION}:devel/rubygem-activejob50 \ rubygem-mail>=2.5.4,2<3,2:mail/rubygem-mail \ rubygem-rails-dom-testing-rails50>=2.0<3:textproc/rubygem-rails-dom-testing-rails50 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^5\.0\. .include diff --git a/mail/rubygem-actionmailer52/Makefile b/mail/rubygem-actionmailer52/Makefile index 5cb93eaea5d5..29e968b0de53 100644 --- a/mail/rubygem-actionmailer52/Makefile +++ b/mail/rubygem-actionmailer52/Makefile @@ -1,27 +1,26 @@ PORTNAME= actionmailer PORTVERSION= 5.2.8.1 CATEGORIES= mail rubygems MASTER_SITES= RG PKGNAMESUFFIX= 52 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Easy email delivery and testing for Ruby WWW= https://github.com/rails/rails/tree/main/actionmailer LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack52>=${PORTVERSION}:www/rubygem-actionpack52 \ rubygem-actionview52>=${PORTVERSION}:devel/rubygem-actionview52 \ rubygem-activejob52>=${PORTVERSION}:devel/rubygem-activejob52 \ rubygem-mail>=2.5.4,2<3,2:mail/rubygem-mail \ rubygem-rails-dom-testing-rails52>=2.0<3:textproc/rubygem-rails-dom-testing-rails52 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^5\.2\. .include diff --git a/mail/rubygem-actionmailer60/Makefile b/mail/rubygem-actionmailer60/Makefile index 1cf1f28d87b0..111f16eadac3 100644 --- a/mail/rubygem-actionmailer60/Makefile +++ b/mail/rubygem-actionmailer60/Makefile @@ -1,28 +1,27 @@ PORTNAME= actionmailer PORTVERSION= 6.0.6 CATEGORIES= mail rubygems MASTER_SITES= RG PKGNAMESUFFIX= 60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Easy email delivery and testing for Ruby WWW= https://github.com/rails/rails/tree/main/actionmailer \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack60>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack60 \ rubygem-actionview60>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-actionview60 \ rubygem-activejob60>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activejob60 \ rubygem-mail>=2.5.4,2<3,2:mail/rubygem-mail \ rubygem-rails-dom-testing-rails60>=2.0<3:textproc/rubygem-rails-dom-testing-rails60 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^6\.0\. .include diff --git a/mail/rubygem-actionmailer61/Makefile b/mail/rubygem-actionmailer61/Makefile index b804879ef595..df8d2cc26184 100644 --- a/mail/rubygem-actionmailer61/Makefile +++ b/mail/rubygem-actionmailer61/Makefile @@ -1,29 +1,28 @@ PORTNAME= actionmailer PORTVERSION= 6.1.7 CATEGORIES= mail rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Easy email delivery and testing for Ruby WWW= https://github.com/rails/rails/tree/main/actionmailer \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack61>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack61 \ rubygem-actionview61>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-actionview61 \ rubygem-activejob61>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activejob61 \ rubygem-activesupport61>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport61 \ rubygem-mail>=2.5.4,2<3,2:mail/rubygem-mail \ rubygem-rails-dom-testing-rails61>=2.0<3:textproc/rubygem-rails-dom-testing-rails61 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^6\.1\. .include diff --git a/mail/rubygem-actionmailer70/Makefile b/mail/rubygem-actionmailer70/Makefile index e378db5f5802..87b524828e00 100644 --- a/mail/rubygem-actionmailer70/Makefile +++ b/mail/rubygem-actionmailer70/Makefile @@ -1,32 +1,31 @@ PORTNAME= actionmailer PORTVERSION= 7.0.3.1 CATEGORIES= mail rubygems MASTER_SITES= RG PKGNAMESUFFIX= 70 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Compose, deliver, and test emails on Rails WWW= https://github.com/rails/rails/tree/main/actionmailer \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack70>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack70 \ rubygem-actionview70>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-actionview70 \ rubygem-activejob70>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activejob70 \ rubygem-activesupport70>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport70 \ rubygem-mail>=2.5.4,2<3,2:mail/rubygem-mail \ rubygem-net-imap>=0:mail/rubygem-net-imap \ rubygem-net-pop>=0:mail/rubygem-net-pop \ rubygem-net-smtp>=0:mail/rubygem-net-smtp \ rubygem-rails-dom-testing-rails70>=2.0<3:textproc/rubygem-rails-dom-testing-rails70 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^7\.0\. .include diff --git a/mail/rubygem-email_reply_parser-discourse/Makefile b/mail/rubygem-email_reply_parser-discourse/Makefile index 7932197c6956..d6268050fdb7 100644 --- a/mail/rubygem-email_reply_parser-discourse/Makefile +++ b/mail/rubygem-email_reply_parser-discourse/Makefile @@ -1,17 +1,16 @@ PORTNAME= email_reply_parser-discourse PORTVERSION= 0.6 CATEGORIES= mail rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Email Reply Parser WWW= https://github.com/github/email_reply_parser LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/mail/rubygem-email_reply_parser/Makefile b/mail/rubygem-email_reply_parser/Makefile index 0c5d2b36541a..367659b6dc00 100644 --- a/mail/rubygem-email_reply_parser/Makefile +++ b/mail/rubygem-email_reply_parser/Makefile @@ -1,18 +1,17 @@ PORTNAME= email_reply_parser PORTVERSION= 0.5.10 CATEGORIES= mail rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Library to parse plain text email content WWW= https://github.com/github/email_reply_parser LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/mail/rubygem-email_reply_trimmer/Makefile b/mail/rubygem-email_reply_trimmer/Makefile index 60908e01dac7..74e639cbaef7 100644 --- a/mail/rubygem-email_reply_trimmer/Makefile +++ b/mail/rubygem-email_reply_trimmer/Makefile @@ -1,18 +1,17 @@ PORTNAME= email_reply_trimmer PORTVERSION= 0.1.13 CATEGORIES= mail rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Library to trim replies from plain text email WWW= https://github.com/discourse/email_reply_trimmer LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/mail/rubygem-exception_notification/Makefile b/mail/rubygem-exception_notification/Makefile index 74cf66a55f5a..5891c903a8f9 100644 --- a/mail/rubygem-exception_notification/Makefile +++ b/mail/rubygem-exception_notification/Makefile @@ -1,21 +1,20 @@ PORTNAME= exception_notification PORTVERSION= 4.5.0 CATEGORIES= mail rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Exception notification for Rails apps WWW= https://github.com/smartinez87/exception_notification LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionmailer52>=5.2<8:mail/rubygem-actionmailer52 \ rubygem-activesupport52>=5.2<8:devel/rubygem-activesupport52 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/mail/rubygem-gitlab-mail_room/Makefile b/mail/rubygem-gitlab-mail_room/Makefile index e4fcccca232b..fa557faa9dbf 100644 --- a/mail/rubygem-gitlab-mail_room/Makefile +++ b/mail/rubygem-gitlab-mail_room/Makefile @@ -1,26 +1,25 @@ PORTNAME= gitlab-mail_room PORTVERSION= 0.0.20 PORTREVISION= 0 CATEGORIES= mail rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Proxy email (gmail) from IMAP to a delivery method WWW= https://github.com/tpitale/mail_room LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-io-wait01>=0.1.0<0.2:devel/rubygem-io-wait01 \ rubygem-jwt>=2.0:www/rubygem-jwt \ rubygem-net-imap>=0.2.1:mail/rubygem-net-imap \ rubygem-oauth2>=1.4.4<3:net/rubygem-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/mail_room .include diff --git a/mail/rubygem-mail/Makefile b/mail/rubygem-mail/Makefile index fcc340615d4d..8ce60d1ff045 100644 --- a/mail/rubygem-mail/Makefile +++ b/mail/rubygem-mail/Makefile @@ -1,33 +1,32 @@ PORTNAME= mail PORTVERSION= 2.7.1 PORTREVISION= 2 PORTEPOCH= 2 CATEGORIES= mail rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby email handler WWW= https://github.com/mikel/mail LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-mini_mime>=0.1.1:mail/rubygem-mini_mime USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= mail_project .include # See https://github.com/mikel/mail/pull/1439 .if ${RUBY_VER} >= 3.1 RUN_DEPENDS+= rubygem-net-imap>=0:mail/rubygem-net-imap \ rubygem-net-pop>=0:mail/rubygem-net-pop \ rubygem-net-smtp>=0:mail/rubygem-net-smtp .endif .include diff --git a/mail/rubygem-mail_room/Makefile b/mail/rubygem-mail_room/Makefile index deaf9f020a46..e64c8d996a11 100644 --- a/mail/rubygem-mail_room/Makefile +++ b/mail/rubygem-mail_room/Makefile @@ -1,20 +1,19 @@ PORTNAME= mail_room PORTVERSION= 0.10.0 CATEGORIES= mail rubygems MASTER_SITES= RG MAINTAINER= ports@FreeBSD.org COMMENT= Proxy email (gmail) from IMAP to a delivery method WWW= https://github.com/tpitale/mail_room LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/mail_room .include diff --git a/mail/rubygem-mailboxer/Makefile b/mail/rubygem-mailboxer/Makefile index 0127c8db7880..b4086b5d794c 100644 --- a/mail/rubygem-mailboxer/Makefile +++ b/mail/rubygem-mailboxer/Makefile @@ -1,21 +1,20 @@ PORTNAME= mailboxer PORTVERSION= 0.15.1 CATEGORIES= mail rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Send messages inside a web application WWW= https://github.com/mailboxer/mailboxer LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-carrierwave>=0.5.8:www/rubygem-carrierwave \ rubygem-rails5>=5.0.0:www/rubygem-rails5 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/mail/rubygem-mailfactory/Makefile b/mail/rubygem-mailfactory/Makefile index 89775f5b69b0..872043a95620 100644 --- a/mail/rubygem-mailfactory/Makefile +++ b/mail/rubygem-mailfactory/Makefile @@ -1,20 +1,19 @@ PORTNAME= mailfactory PORTVERSION= 1.4.0 CATEGORIES= mail rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple to use module for generating RGC compliant MIME mail WWW= https://github.com/tmm1/mailfactory LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual RUN_DEPENDS= rubygem-mime-types>=1.13.1:misc/rubygem-mime-types NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/mail/rubygem-mini_mime/Makefile b/mail/rubygem-mini_mime/Makefile index 1eab370c7a79..f28c5ea09fbf 100644 --- a/mail/rubygem-mini_mime/Makefile +++ b/mail/rubygem-mini_mime/Makefile @@ -1,18 +1,17 @@ PORTNAME= mini_mime PORTVERSION= 1.1.2 CATEGORIES= mail rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Lightweight mime type lookup toy WWW= https://github.com/discourse/mini_mime LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/mail/rubygem-net-imap/Makefile b/mail/rubygem-net-imap/Makefile index 4b23b9852fb7..0be156eba000 100644 --- a/mail/rubygem-net-imap/Makefile +++ b/mail/rubygem-net-imap/Makefile @@ -1,21 +1,20 @@ PORTNAME= net-imap PORTVERSION= 0.3.1 CATEGORIES= mail rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby client api for Internet Message Access Protocol WWW= https://github.com/ruby/net-imap LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-net-protocol>=0:net/rubygem-net-protocol USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/mail/rubygem-net-pop/Makefile b/mail/rubygem-net-pop/Makefile index 56ddf4e75bfb..067edb5e748e 100644 --- a/mail/rubygem-net-pop/Makefile +++ b/mail/rubygem-net-pop/Makefile @@ -1,21 +1,20 @@ PORTNAME= net-pop PORTVERSION= 0.1.2 CATEGORIES= mail rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby client library for POP3 WWW= https://github.com/ruby/net-pop LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-net-protocol>=0:net/rubygem-net-protocol USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/mail/rubygem-net-smtp/Makefile b/mail/rubygem-net-smtp/Makefile index 0127d5f65c00..57323d8f6bb8 100644 --- a/mail/rubygem-net-smtp/Makefile +++ b/mail/rubygem-net-smtp/Makefile @@ -1,21 +1,20 @@ PORTNAME= net-smtp PORTVERSION= 0.3.3 CATEGORIES= mail rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple Mail Transfer Protocol client library for Ruby WWW= https://github.com/ruby/net-smtp LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-net-protocol>=0:net/rubygem-net-protocol USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/mail/rubygem-pony/Makefile b/mail/rubygem-pony/Makefile index 02339e04dd67..81202cddd46f 100644 --- a/mail/rubygem-pony/Makefile +++ b/mail/rubygem-pony/Makefile @@ -1,19 +1,18 @@ PORTNAME= pony PORTVERSION= 1.13 CATEGORIES= mail rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Express way to send mail from Ruby WWW= https://github.com/benprew/pony LICENSE= MIT RUN_DEPENDS= rubygem-mail>=2.0:mail/rubygem-mail USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/mail/rubygem-premailer-rails-rails5/Makefile b/mail/rubygem-premailer-rails-rails5/Makefile index 2a5899301a91..4dcf62f3c8ba 100644 --- a/mail/rubygem-premailer-rails-rails5/Makefile +++ b/mail/rubygem-premailer-rails-rails5/Makefile @@ -1,23 +1,22 @@ PORTNAME= premailer-rails PORTVERSION= 1.12.0 CATEGORIES= mail rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= ruby@FreeBSD.org COMMENT= Improve the rendering of HTML emails WWW= https://github.com/fphilipe/premailer-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-actionmailer5>=3:mail/rubygem-actionmailer5 \ rubygem-net-smtp>=0:mail/rubygem-net-smtp \ rubygem-premailer>=1.7.9<2:mail/rubygem-premailer USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/mail/rubygem-premailer-rails-rails52/Makefile b/mail/rubygem-premailer-rails-rails52/Makefile index 50bae25e26d7..83e4727bf618 100644 --- a/mail/rubygem-premailer-rails-rails52/Makefile +++ b/mail/rubygem-premailer-rails-rails52/Makefile @@ -1,23 +1,22 @@ PORTNAME= premailer-rails PORTVERSION= 1.12.0 CATEGORIES= mail rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= ruby@FreeBSD.org COMMENT= Improve the rendering of HTML emails WWW= https://github.com/fphilipe/premailer-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-actionmailer52>=3:mail/rubygem-actionmailer52 \ rubygem-net-smtp>=0:mail/rubygem-net-smtp \ rubygem-premailer>=1.7.9<2:mail/rubygem-premailer USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/mail/rubygem-premailer-rails-rails60/Makefile b/mail/rubygem-premailer-rails-rails60/Makefile index f73605df6c4f..1460758888d7 100644 --- a/mail/rubygem-premailer-rails-rails60/Makefile +++ b/mail/rubygem-premailer-rails-rails60/Makefile @@ -1,23 +1,22 @@ PORTNAME= premailer-rails PORTVERSION= 1.12.0 CATEGORIES= mail rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails60 MAINTAINER= ruby@FreeBSD.org COMMENT= Improve the rendering of HTML emails WWW= https://github.com/fphilipe/premailer-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-actionmailer60>=3:mail/rubygem-actionmailer60 \ rubygem-net-smtp>=0:mail/rubygem-net-smtp \ rubygem-premailer>=1.7.9<2:mail/rubygem-premailer USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/mail/rubygem-premailer-rails-rails61/Makefile b/mail/rubygem-premailer-rails-rails61/Makefile index 8f1397c5d8c2..6902fbc0d90e 100644 --- a/mail/rubygem-premailer-rails-rails61/Makefile +++ b/mail/rubygem-premailer-rails-rails61/Makefile @@ -1,22 +1,21 @@ PORTNAME= premailer-rails PORTVERSION= 1.10.3 CATEGORIES= mail rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= ruby@FreeBSD.org COMMENT= Improve the rendering of HTML emails WWW= https://github.com/fphilipe/premailer-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-actionmailer61>=3:mail/rubygem-actionmailer61 \ rubygem-premailer>=1.7.9<2:mail/rubygem-premailer USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/mail/rubygem-premailer-rails/Makefile b/mail/rubygem-premailer-rails/Makefile index 1e65a016d419..d2d1ad2a9230 100644 --- a/mail/rubygem-premailer-rails/Makefile +++ b/mail/rubygem-premailer-rails/Makefile @@ -1,22 +1,21 @@ PORTNAME= premailer-rails PORTVERSION= 1.12.0 CATEGORIES= mail rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Improve the rendering of HTML emails WWW= https://github.com/fphilipe/premailer-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-actionmailer4>=3:mail/rubygem-actionmailer4 \ rubygem-net-smtp>=0:mail/rubygem-net-smtp \ rubygem-premailer>=1.7.9<2:mail/rubygem-premailer USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/mail/rubygem-premailer/Makefile b/mail/rubygem-premailer/Makefile index 24960a2fdbe2..4840d1ab4b07 100644 --- a/mail/rubygem-premailer/Makefile +++ b/mail/rubygem-premailer/Makefile @@ -1,24 +1,23 @@ PORTNAME= premailer PORTVERSION= 1.18.0 CATEGORIES= mail rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Improve the rendering of HTML emails WWW= https://github.com/premailer/premailer LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-addressable>=0:www/rubygem-addressable \ rubygem-css_parser>=1.12.0:textproc/rubygem-css_parser \ rubygem-htmlentities>=4.0.0:textproc/rubygem-htmlentities USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/premailer .include diff --git a/mail/rubygem-rmail/Makefile b/mail/rubygem-rmail/Makefile index 3530b4f9a9a1..042344f665e6 100644 --- a/mail/rubygem-rmail/Makefile +++ b/mail/rubygem-rmail/Makefile @@ -1,16 +1,15 @@ PORTNAME= rmail PORTVERSION= 1.1.4 CATEGORIES= mail rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Lightweight mail library LICENSE= BSD3CLAUSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/mail/rubygem-roadie-rails-rails4/Makefile b/mail/rubygem-roadie-rails-rails4/Makefile index 05906f9ad0a7..6fec6684b072 100644 --- a/mail/rubygem-roadie-rails-rails4/Makefile +++ b/mail/rubygem-roadie-rails-rails4/Makefile @@ -1,25 +1,24 @@ PORTNAME= roadie-rails PORTVERSION= 1.3.0 PORTREVISION= 1 CATEGORIES= mail rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails4 MAINTAINER= ruby@FreeBSD.org COMMENT= Helper for generating HTML mails in Rails applications WWW= https://github.com/Mange/roadie-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-railties4>=3.0<5.3:www/rubygem-railties4 \ rubygem-roadie3>=3.1<4:mail/rubygem-roadie3 USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= setup.sh .include diff --git a/mail/rubygem-roadie-rails-rails52/Makefile b/mail/rubygem-roadie-rails-rails52/Makefile index 4108de8abf4a..d267582a00d9 100644 --- a/mail/rubygem-roadie-rails-rails52/Makefile +++ b/mail/rubygem-roadie-rails-rails52/Makefile @@ -1,24 +1,23 @@ PORTNAME= roadie-rails PORTVERSION= 2.2.0 CATEGORIES= mail rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= mikael@FreeBSD.org COMMENT= Helper for generating HTML mails in Rails applications WWW= https://github.com/Mange/roadie-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-railties52>=3.0:www/rubygem-railties52 \ rubygem-roadie3>=3.1:mail/rubygem-roadie3 USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= setup.sh .include diff --git a/mail/rubygem-roadie-rails-rails61/Makefile b/mail/rubygem-roadie-rails-rails61/Makefile index 1a7d8f41f58c..3152fb5fe5da 100644 --- a/mail/rubygem-roadie-rails-rails61/Makefile +++ b/mail/rubygem-roadie-rails-rails61/Makefile @@ -1,24 +1,23 @@ PORTNAME= roadie-rails PORTVERSION= 3.0.0 CATEGORIES= mail rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= mikael@FreeBSD.org COMMENT= Helper for generating HTML mails in Rails applications WWW= https://github.com/Mange/roadie-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-railties61>=5.1:www/rubygem-railties61 \ rubygem-roadie>=5.0:mail/rubygem-roadie USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= setup.sh .include diff --git a/mail/rubygem-roadie/Makefile b/mail/rubygem-roadie/Makefile index 505728d68350..9fa6676d2319 100644 --- a/mail/rubygem-roadie/Makefile +++ b/mail/rubygem-roadie/Makefile @@ -1,21 +1,20 @@ PORTNAME= roadie PORTVERSION= 5.1.0 CATEGORIES= mail rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Helper for generating HTML mails WWW= https://github.com/Mange/roadie LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-css_parser>=1.4<2:textproc/rubygem-css_parser \ rubygem-nokogiri>=1.8<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/mail/rubygem-roadie3/Makefile b/mail/rubygem-roadie3/Makefile index b25693abaab6..d13eb15cfed8 100644 --- a/mail/rubygem-roadie3/Makefile +++ b/mail/rubygem-roadie3/Makefile @@ -1,24 +1,23 @@ PORTNAME= roadie PORTVERSION= 3.5.1 CATEGORIES= mail rubygems MASTER_SITES= RG PKGNAMESUFFIX= 3 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Helper for generating HTML mails WWW= https://github.com/Mange/roadie LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-css_parser>=1.4<2:textproc/rubygem-css_parser \ rubygem-nokogiri>=1.8<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^3\. .include diff --git a/mail/rubygem-ruby-qmail/Makefile b/mail/rubygem-ruby-qmail/Makefile index 996f371ced80..279e7e758e94 100644 --- a/mail/rubygem-ruby-qmail/Makefile +++ b/mail/rubygem-ruby-qmail/Makefile @@ -1,19 +1,18 @@ PORTNAME= ruby-qmail PORTVERSION= 0.1.1 CATEGORIES= mail rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby qmail library WWW= https://github.com/afair/ruby-qmail LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rspec>=1.2.9:devel/rubygem-rspec NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/mail/rubygem-valid_email/Makefile b/mail/rubygem-valid_email/Makefile index 1ab51789d466..b972971b4464 100644 --- a/mail/rubygem-valid_email/Makefile +++ b/mail/rubygem-valid_email/Makefile @@ -1,23 +1,22 @@ PORTNAME= valid_email PORTVERSION= 0.1.4 PORTREVISION= 1 CATEGORIES= mail rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= ActiveModel Validation for email WWW= https://github.com/hallelujah/valid_email LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activemodel61>=0:databases/rubygem-activemodel61 \ rubygem-mail>=2.6.1:mail/rubygem-mail \ rubygem-simpleidn>=0:dns/rubygem-simpleidn USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/mail/rubygem-vmail/Makefile b/mail/rubygem-vmail/Makefile index 643fd89ae7a6..55ad9233cb46 100644 --- a/mail/rubygem-vmail/Makefile +++ b/mail/rubygem-vmail/Makefile @@ -1,27 +1,26 @@ PORTNAME= vmail PORTVERSION= 2.9.8 PORTREVISION= 2 CATEGORIES= mail rubygems MASTER_SITES= RG MAINTAINER= hhyou@cs.nctu.edu.tw COMMENT= Vim interface to Gmail WWW= https://danielchoi.com/software/vmail.html LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt RUN_DEPENDS= rubygem-highline1>=1.6.1:devel/rubygem-highline1 \ rubygem-mail>=2.2.12:mail/rubygem-mail \ rubygem-sequel>=3.24.1:devel/rubygem-sequel \ rubygem-sqlite3>=1.3.3:databases/rubygem-sqlite3 \ rubygem-versionomy>=0.4.4:devel/rubygem-versionomy \ vim:editors/vim NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/vmail bin/vmail_client bin/vmailsend .include diff --git a/math/rubygem-algebra/Makefile b/math/rubygem-algebra/Makefile index 67d0540cbcc6..e1dd4e7385e3 100644 --- a/math/rubygem-algebra/Makefile +++ b/math/rubygem-algebra/Makefile @@ -1,13 +1,12 @@ PORTNAME= algebra PORTVERSION= 0.2.3 CATEGORIES= math rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library for mathematical computations WWW= https://github.com/kunishi/algebra-ruby2 -USE_RUBY= yes USES= gem .include diff --git a/math/rubygem-bigdecimal/Makefile b/math/rubygem-bigdecimal/Makefile index cba133b048d5..1c5e0843724b 100644 --- a/math/rubygem-bigdecimal/Makefile +++ b/math/rubygem-bigdecimal/Makefile @@ -1,15 +1,14 @@ PORTNAME= bigdecimal PORTVERSION= 3.1.2 CATEGORIES= math rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Arbitrary-precision decimal floating-point number class WWW= https://github.com/ruby/bigdecimal LICENSE= RUBY USES= gem -USE_RUBY= yes .include diff --git a/math/rubygem-enumerable-statistics/Makefile b/math/rubygem-enumerable-statistics/Makefile index 84a2d01c2b2d..9538f58656b1 100644 --- a/math/rubygem-enumerable-statistics/Makefile +++ b/math/rubygem-enumerable-statistics/Makefile @@ -1,16 +1,15 @@ PORTNAME= enumerable-statistics PORTVERSION= 2.0.7 CATEGORIES= math rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Statistics features for Enumerable WWW= https://github.com/mrkn/enumerable-statistics LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes .include diff --git a/math/rubygem-expression_parser/Makefile b/math/rubygem-expression_parser/Makefile index 3b69d63c9586..e20af19044fc 100644 --- a/math/rubygem-expression_parser/Makefile +++ b/math/rubygem-expression_parser/Makefile @@ -1,15 +1,14 @@ PORTNAME= expression_parser PORTVERSION= 0.9.0 CATEGORIES= math rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Mathematical expression parser for Ruby WWW= http://lukaszwrobel.pl/blog/math-parser-part-3-implementation NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/math/rubygem-fftw3/Makefile b/math/rubygem-fftw3/Makefile index 18eba5335d99..d4cd7da2a988 100644 --- a/math/rubygem-fftw3/Makefile +++ b/math/rubygem-fftw3/Makefile @@ -1,16 +1,15 @@ PORTNAME= fftw3 PORTVERSION= 0.3 CATEGORIES= math rubygems MASTER_SITES= RG MAINTAINER= murashin@gfd-dennou.org COMMENT= Ruby interface to the FFTW ver.3 WWW= http://ruby.gfd-dennou.org/products/ruby-fftw3/ RUN_DEPENDS= rubygem-narray>0:math/rubygem-narray LIB_DEPENDS= libfftw3.so:math/fftw3 -USE_RUBY= yes USES= gem .include diff --git a/math/rubygem-mathn/Makefile b/math/rubygem-mathn/Makefile index dd5a2719190f..03d370d99f80 100644 --- a/math/rubygem-mathn/Makefile +++ b/math/rubygem-mathn/Makefile @@ -1,16 +1,15 @@ PORTNAME= mathn PORTVERSION= 0.1.0 CATEGORIES= math rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Deprecated library that extends math operations WWW= https://github.com/ruby/mathn LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include diff --git a/math/rubygem-matrix/Makefile b/math/rubygem-matrix/Makefile index 8cde85848d61..1186c52a5b4f 100644 --- a/math/rubygem-matrix/Makefile +++ b/math/rubygem-matrix/Makefile @@ -1,19 +1,18 @@ PORTNAME= matrix PORTVERSION= 0.4.2 CATEGORIES= math rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Implementation of Matrix and Vector classes WWW= https://github.com/ruby/matrix LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/math/rubygem-mtrc/Makefile b/math/rubygem-mtrc/Makefile index acc091c48ddf..570ab7c462b7 100644 --- a/math/rubygem-mtrc/Makefile +++ b/math/rubygem-mtrc/Makefile @@ -1,18 +1,17 @@ PORTNAME= mtrc DISTVERSION= 0.0.4 CATEGORIES= math rubygems benchmarks MASTER_SITES= RG MAINTAINER= dch@FreeBSD.org COMMENT= Minimal metric aggregation library WWW= https://github.com/aphyr/mtrc LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem NO_ARCH= yes -USE_RUBY= yes .include diff --git a/math/rubygem-narray/Makefile b/math/rubygem-narray/Makefile index 918ada41a605..88211faf6595 100644 --- a/math/rubygem-narray/Makefile +++ b/math/rubygem-narray/Makefile @@ -1,15 +1,14 @@ PORTNAME= narray PORTVERSION= ${NARRAY_VERSION} CATEGORIES= math rubygems MASTER_SITES= RG MAINTAINER= murashin@gfd-dennou.org COMMENT= Numerical N-dimensional array library for Ruby WWW= https://rubygems.org/gems/narray -USE_RUBY= yes USES= gem .include "${.CURDIR}/Makefile.version" .include diff --git a/math/rubygem-narray_miss/Makefile b/math/rubygem-narray_miss/Makefile index 4adfb8236962..b1116738d5ff 100644 --- a/math/rubygem-narray_miss/Makefile +++ b/math/rubygem-narray_miss/Makefile @@ -1,17 +1,16 @@ PORTNAME= narray_miss PORTVERSION= 1.4.0 CATEGORIES= math rubygems MASTER_SITES= RG MAINTAINER= murashin@gfd-dennou.org COMMENT= Additional class with processing of missing value to NArray WWW= http://ruby.gfd-dennou.org/products/narray_miss/ RUN_DEPENDS= rubygem-narray>0:math/rubygem-narray USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/math/rubygem-numru-misc/Makefile b/math/rubygem-numru-misc/Makefile index baaf7214582e..4c47b6b16e31 100644 --- a/math/rubygem-numru-misc/Makefile +++ b/math/rubygem-numru-misc/Makefile @@ -1,16 +1,15 @@ PORTNAME= numru-misc PORTVERSION= 0.1.2 CATEGORIES= math rubygems MASTER_SITES= RG MAINTAINER= murashin@gfd-dennou.org COMMENT= Miscellaneous functions and classes to help Ruby programming WWW= http://ruby.gfd-dennou.org/products/numru-misc/ RUN_DEPENDS= rubygem-narray>0:math/rubygem-narray \ rubygem-narray_miss>0:math/rubygem-narray_miss -USE_RUBY= yes USES= gem .include diff --git a/math/rubygem-numru-units/Makefile b/math/rubygem-numru-units/Makefile index 9e2f579bd89c..a1be0e4a5689 100644 --- a/math/rubygem-numru-units/Makefile +++ b/math/rubygem-numru-units/Makefile @@ -1,15 +1,14 @@ PORTNAME= numru-units PORTVERSION= 1.9.0 CATEGORIES= math rubygems MASTER_SITES= RG MAINTAINER= murashin@gfd-dennou.org COMMENT= Class to handle units of physical quantities for Ruby WWW= https://www.gfd-dennou.org/arch/ruby/products/numru-units/ NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/math/rubygem-prime/Makefile b/math/rubygem-prime/Makefile index 21c3a39af08a..d3c34e858b38 100644 --- a/math/rubygem-prime/Makefile +++ b/math/rubygem-prime/Makefile @@ -1,22 +1,21 @@ PORTNAME= prime PORTVERSION= 0.1.2 CATEGORIES= math rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Prime numbers and factorization library WWW= https://github.com/ruby/prime LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-forwardable>=0:devel/rubygem-forwardable \ rubygem-singleton>=0:devel/rubygem-singleton USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/math/rubygem-rb-gsl/Makefile b/math/rubygem-rb-gsl/Makefile index bd4aa6fcd5e1..f0967a1947c9 100644 --- a/math/rubygem-rb-gsl/Makefile +++ b/math/rubygem-rb-gsl/Makefile @@ -1,20 +1,19 @@ PORTNAME= gsl PORTVERSION= 2.1.0.2 PORTREVISION= 5 CATEGORIES= math rubygems MASTER_SITES= RG PKGNAMEPREFIX= rubygem-rb- MAINTAINER= murashin@gfd-dennou.org COMMENT= Ruby extension library for GSL (GNU Scientific Library) WWW= https://github.com/blackwinter/rb-gsl LICENSE= GPLv2 LIB_DEPENDS= libgsl.so:math/gsl RUN_DEPENDS= rubygem-narray>=0.5.9:math/rubygem-narray -USE_RUBY= yes USES= gem .include diff --git a/misc/inplace/Makefile b/misc/inplace/Makefile index cd07d302cd56..425cd43178e7 100644 --- a/misc/inplace/Makefile +++ b/misc/inplace/Makefile @@ -1,26 +1,25 @@ PORTNAME= inplace PORTVERSION= 1.2.3 PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= ftp://ftp.iDaemons.org/pub/distfiles/ \ LOCAL/knu MAINTAINER= ports@FreeBSD.org 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 uidfix ruby shebangfix MAKE_ARGS= PREFIX="${PREFIX}" MANPREFIX="${MANPREFIX}" MAKEFILE= BSDmakefile SHEBANG_FILES= lib/inplace.rb PLIST_FILES= bin/inplace \ man/man1/inplace.1.gz test: build cd ${WRKSRC}; ${MAKE} test .include diff --git a/misc/rubygem-dotenv-rails-rails4/Makefile b/misc/rubygem-dotenv-rails-rails4/Makefile index 07ac968cca81..68e503e477a9 100644 --- a/misc/rubygem-dotenv-rails-rails4/Makefile +++ b/misc/rubygem-dotenv-rails-rails4/Makefile @@ -1,22 +1,21 @@ PORTNAME= dotenv-rails PORTVERSION= 2.8.1 CATEGORIES= misc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails4 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Autoload dotenv in Rails WWW= https://github.com/bkeepers/dotenv LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-dotenv>=${PORTVERSION}:misc/rubygem-dotenv \ rubygem-railties4>=3.2:www/rubygem-railties4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/misc/rubygem-dotenv-rails-rails5/Makefile b/misc/rubygem-dotenv-rails-rails5/Makefile index 32f9e5a0583c..782ee7a604a9 100644 --- a/misc/rubygem-dotenv-rails-rails5/Makefile +++ b/misc/rubygem-dotenv-rails-rails5/Makefile @@ -1,22 +1,21 @@ PORTNAME= dotenv-rails PORTVERSION= 2.8.1 CATEGORIES= misc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Autoload dotenv in Rails WWW= https://github.com/bkeepers/dotenv LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-dotenv>=${PORTVERSION}:misc/rubygem-dotenv \ rubygem-railties5>=3.2:www/rubygem-railties5 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/misc/rubygem-dotenv-rails-rails50/Makefile b/misc/rubygem-dotenv-rails-rails50/Makefile index a5d72e910903..2ed23f54054f 100644 --- a/misc/rubygem-dotenv-rails-rails50/Makefile +++ b/misc/rubygem-dotenv-rails-rails50/Makefile @@ -1,22 +1,21 @@ PORTNAME= dotenv-rails PORTVERSION= 2.8.1 CATEGORIES= misc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Autoload dotenv in Rails WWW= https://github.com/bkeepers/dotenv LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-dotenv>=${PORTVERSION}:misc/rubygem-dotenv \ rubygem-railties50>=3.2:www/rubygem-railties50 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/misc/rubygem-dotenv-rails-rails61/Makefile b/misc/rubygem-dotenv-rails-rails61/Makefile index de215a41b8a8..fb522019abb1 100644 --- a/misc/rubygem-dotenv-rails-rails61/Makefile +++ b/misc/rubygem-dotenv-rails-rails61/Makefile @@ -1,22 +1,21 @@ PORTNAME= dotenv-rails PORTVERSION= 2.8.1 CATEGORIES= misc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= bofh@FreeBSD.org COMMENT= Autoload dotenv in Rails WWW= https://github.com/bkeepers/dotenv LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-dotenv>=${PORTVERSION}:misc/rubygem-dotenv \ rubygem-railties61>=6.1:www/rubygem-railties61 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/misc/rubygem-dotenv/Makefile b/misc/rubygem-dotenv/Makefile index 8bd5154e4ec1..f8a4d4e79838 100644 --- a/misc/rubygem-dotenv/Makefile +++ b/misc/rubygem-dotenv/Makefile @@ -1,22 +1,21 @@ PORTNAME= dotenv PORTVERSION= 2.8.1 CATEGORIES= misc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Loads environment variables from .env WWW= https://github.com/bkeepers/dotenv LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes CONFLICTS_INSTALL= py*-python-dotenv # bin/dotenv PLIST_FILES= bin/dotenv .include diff --git a/misc/rubygem-haversine_distance/Makefile b/misc/rubygem-haversine_distance/Makefile index 4c037d6eae1a..f7d8a682de4c 100644 --- a/misc/rubygem-haversine_distance/Makefile +++ b/misc/rubygem-haversine_distance/Makefile @@ -1,17 +1,16 @@ PORTNAME= haversine_distance PORTVERSION= 1.1.1 CATEGORIES= misc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Calculate the great-circle distance WWW= https://github.com/jirapong/haversine_distance LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/misc/rubygem-iesd/Makefile b/misc/rubygem-iesd/Makefile index c225269fc6b8..a7cdedd100d4 100644 --- a/misc/rubygem-iesd/Makefile +++ b/misc/rubygem-iesd/Makefile @@ -1,19 +1,18 @@ PORTNAME= iesd PORTVERSION= 1.2.2 CATEGORIES= misc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Modify Extensions, Kextcache and Packages on InstallESD WWW= https://github.com/ntkme/iesd LICENSE= BSD2CLAUSE USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/iesd .include diff --git a/misc/rubygem-mime-types-data/Makefile b/misc/rubygem-mime-types-data/Makefile index 86c8402a81d4..2908b5fdac38 100644 --- a/misc/rubygem-mime-types-data/Makefile +++ b/misc/rubygem-mime-types-data/Makefile @@ -1,18 +1,17 @@ PORTNAME= mime-types-data PORTVERSION= 3.2022.0105 CATEGORIES= misc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= MIME Type registry data WWW= https://github.com/mime-types/mime-types-data LICENSE= MIT LICENSE_FILE= ${WRKSRC}/Licence.md USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/misc/rubygem-mime-types/Makefile b/misc/rubygem-mime-types/Makefile index 30c5beee00f0..ea10f21c6b20 100644 --- a/misc/rubygem-mime-types/Makefile +++ b/misc/rubygem-mime-types/Makefile @@ -1,20 +1,19 @@ PORTNAME= mime-types PORTVERSION= 3.4.1 CATEGORIES= misc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby gem which provides a mailcap-like MIME Content-Type lookup WWW= https://github.com/mime-types/ruby-mime-types LICENSE= MIT LICENSE_FILE= ${WRKSRC}/Licence.md RUN_DEPENDS= rubygem-mime-types-data>=3.2015<4:misc/rubygem-mime-types-data USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/misc/rubygem-mimemagic/Makefile b/misc/rubygem-mimemagic/Makefile index c39319f8f11a..7268e1292669 100644 --- a/misc/rubygem-mimemagic/Makefile +++ b/misc/rubygem-mimemagic/Makefile @@ -1,22 +1,21 @@ PORTNAME= mimemagic PORTVERSION= 0.4.3 CATEGORIES= misc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= MIME detection by extension or content in pure ruby WWW= https://github.com/mimemagicrb/mimemagic LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-nokogiri>=1<2:textproc/rubygem-nokogiri \ rubygem-rake>=0:devel/rubygem-rake \ shared-mime-info>=0:misc/shared-mime-info USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/misc/rubygem-octicons/Makefile b/misc/rubygem-octicons/Makefile index a42471d468c3..fddae4532d72 100644 --- a/misc/rubygem-octicons/Makefile +++ b/misc/rubygem-octicons/Makefile @@ -1,20 +1,19 @@ PORTNAME= octicons PORTVERSION= 17.9.0 CATEGORIES= misc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Package that distributes Octicons in a gem WWW= https://github.com/primer/octicons LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-nokogiri>=1.6.3.1:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/misc/rubygem-rabbit/Makefile b/misc/rubygem-rabbit/Makefile index dc8885b252c7..94ce22c89b86 100644 --- a/misc/rubygem-rabbit/Makefile +++ b/misc/rubygem-rabbit/Makefile @@ -1,44 +1,43 @@ PORTNAME= rabbit PORTVERSION= 3.0.1 PORTREVISION= 1 CATEGORIES= misc rubygems MASTER_SITES= RG MAINTAINER= tota@FreeBSD.org COMMENT= RD-document-based presentation application WWW= https://rabbit-shocker.org/en/ LICENSE= GPLv2+ LICENSE_FILE_GPLv2+ = ${WRKSRC}/GPL RUN_DEPENDS= rubygem-coderay>=1.0.0:textproc/rubygem-coderay \ rubygem-faraday1>0:www/rubygem-faraday1 \ rubygem-gdk_pixbuf2>=3.0.9:graphics/rubygem-gdk_pixbuf2 \ rubygem-gettext>=3.0.1:devel/rubygem-gettext \ rubygem-gtk3>0:x11-toolkits/rubygem-gtk3 \ rubygem-hikidoc>0:textproc/rubygem-hikidoc \ rubygem-kramdown>0:textproc/rubygem-kramdown \ rubygem-kramdown-parser-gfm>0:textproc/rubygem-kramdown-parser-gfm \ rubygem-nokogiri>0:textproc/rubygem-nokogiri \ rubygem-poppler>=3.2.5:x11-toolkits/rubygem-poppler \ rubygem-rdtool>0:textproc/rubygem-rdtool \ rubygem-rouge>0:textproc/rubygem-rouge \ rubygem-rsvg2>=3.1.4:graphics/rubygem-rsvg2 \ rubygem-rttool>0:textproc/rubygem-rttool NO_ARCH= yes USES= gem gettext -USE_RUBY= yes PLIST_FILES= bin/rabbit bin/rabbirc bin/rabbit-command bin/rabbit-slide \ bin/rabbit-theme OPTIONS_DEFINE= MIMETEX MIMETEX_DESC= Run with mimetex MIMETEX_RUN_DEPENDS= ${LOCALBASE}/www/mimetex/cgi-bin/mimetex.cgi:www/mimetex post-patch-MIMETEX-on: ${REINPLACE_CMD} -e 's|"mimetex.cgi"|"${PREFIX}/www/mimetex/cgi-bin/mimetex.cgi"|' \ ${WRKSRC}/lib/rabbit/parser/ext/tex.rb .include diff --git a/misc/rubygem-vpim/Makefile b/misc/rubygem-vpim/Makefile index ac8dcb53692f..c707b9b907bc 100644 --- a/misc/rubygem-vpim/Makefile +++ b/misc/rubygem-vpim/Makefile @@ -1,20 +1,19 @@ PORTNAME= vpim PORTVERSION= 13.11.11 CATEGORIES= misc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Pure Ruby library for decoding and encoding vCard and iCalendar data WWW= http://vpim.rubyforge.org/ LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/reminder bin/rrule .include diff --git a/multimedia/rubygem-av/Makefile b/multimedia/rubygem-av/Makefile index eae13357658b..0d2b0ca2e620 100644 --- a/multimedia/rubygem-av/Makefile +++ b/multimedia/rubygem-av/Makefile @@ -1,21 +1,20 @@ PORTNAME= av PORTVERSION= 0.9.0 PORTREVISION= 1 CATEGORIES= multimedia rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Programmable Ruby interface for FFMPEG/Libav WWW= https://github.com/ruby-av LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-cocaine>=0.5.3:devel/rubygem-cocaine USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/multimedia/rubygem-clutter-gstreamer/Makefile b/multimedia/rubygem-clutter-gstreamer/Makefile index ddef9154ffe5..4d9662843d0d 100644 --- a/multimedia/rubygem-clutter-gstreamer/Makefile +++ b/multimedia/rubygem-clutter-gstreamer/Makefile @@ -1,24 +1,23 @@ PORTNAME= clutter-gstreamer PORTVERSION= 4.0.3 CATEGORIES= multimedia rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding of Clutter-GStreamer WWW= https://ruby-gnome.github.io/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB BUILD_DEPENDS= rubygem-rake>=0:devel/rubygem-rake LIB_DEPENDS= libclutter-gst-3.0.so:multimedia/clutter-gst3 RUN_DEPENDS= rubygem-clutter>=${PORTSVERSION}:graphics/rubygem-clutter \ rubygem-gdk_pixbuf2>=${PORTSVERSION}:graphics/rubygem-gdk_pixbuf2 \ rubygem-gstreamer>=${PORTVERSION}:multimedia/rubygem-gstreamer USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/multimedia/rubygem-flvtool2/Makefile b/multimedia/rubygem-flvtool2/Makefile index b653abbdba7e..30a72cf2b318 100644 --- a/multimedia/rubygem-flvtool2/Makefile +++ b/multimedia/rubygem-flvtool2/Makefile @@ -1,19 +1,18 @@ PORTNAME= flvtool2 PORTVERSION= 1.0.6 CATEGORIES= multimedia rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Flash video (FLV) manipulation tool WWW= https://github.com/unnu/flvtool2 LICENSE= BSD3CLAUSE NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/flvtool2 .include diff --git a/multimedia/rubygem-gstreamer/Makefile b/multimedia/rubygem-gstreamer/Makefile index 3d9f80323dcb..5bf51a8f79eb 100644 --- a/multimedia/rubygem-gstreamer/Makefile +++ b/multimedia/rubygem-gstreamer/Makefile @@ -1,19 +1,18 @@ PORTNAME= gstreamer PORTVERSION= 4.0.3 CATEGORIES= multimedia rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding of GStreamer WWW= https://ruby-gnome.github.io/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB LIB_DEPENDS= libgstreamer-1.0.so:multimedia/gstreamer1 RUN_DEPENDS= rubygem-gobject-introspection>=${PORTVERSION}:devel/rubygem-gobject-introspection USES= gem -USE_RUBY= yes .include diff --git a/multimedia/rubygem-paperclip-av-transcoder-rails50/Makefile b/multimedia/rubygem-paperclip-av-transcoder-rails50/Makefile index 8e8b7a9e6fb5..7e8794cd6df5 100644 --- a/multimedia/rubygem-paperclip-av-transcoder-rails50/Makefile +++ b/multimedia/rubygem-paperclip-av-transcoder-rails50/Makefile @@ -1,22 +1,21 @@ PORTNAME= paperclip-av-transcoder PORTVERSION= 0.6.4 CATEGORIES= multimedia rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= ruby@FreeBSD.org COMMENT= Audio/Video transcoder for Paperclip using FFMPEG/Avconv WWW= https://github.com/ruby-av/paperclip-av-transcoder/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-av>=0.9.0:multimedia/rubygem-av \ rubygem-paperclip-rails50>=2.5.2:devel/rubygem-paperclip-rails50 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/multimedia/rubygem-paperclip-av-transcoder/Makefile b/multimedia/rubygem-paperclip-av-transcoder/Makefile index c1e2527b5902..a3102241c550 100644 --- a/multimedia/rubygem-paperclip-av-transcoder/Makefile +++ b/multimedia/rubygem-paperclip-av-transcoder/Makefile @@ -1,21 +1,20 @@ PORTNAME= paperclip-av-transcoder PORTVERSION= 0.6.4 CATEGORIES= multimedia rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Audio/Video transcoder for Paperclip using FFMPEG/Avconv WWW= https://github.com/ruby-av/paperclip-av-transcoder/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-av>=0.9.0:multimedia/rubygem-av \ rubygem-paperclip-rails5>=2.5.2:devel/rubygem-paperclip-rails5 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/multimedia/rubygem-streamio-ffmpeg/Makefile b/multimedia/rubygem-streamio-ffmpeg/Makefile index 489d18197979..e375f70de9a8 100644 --- a/multimedia/rubygem-streamio-ffmpeg/Makefile +++ b/multimedia/rubygem-streamio-ffmpeg/Makefile @@ -1,22 +1,21 @@ PORTNAME= streamio-ffmpeg PORTVERSION= 3.0.2 PORTREVISION= 3 CATEGORIES= multimedia rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Wraps ffmpeg to read metadata and transcodes videos WWW= https://github.com/streamio/streamio-ffmpeg LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-multi_json>=1.8<2:devel/rubygem-multi_json \ ffmpeg>=3.4.2,1:multimedia/ffmpeg USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net-im/mastodon/Makefile b/net-im/mastodon/Makefile index eddd118e9063..fd86a0979acd 100644 --- a/net-im/mastodon/Makefile +++ b/net-im/mastodon/Makefile @@ -1,71 +1,70 @@ PORTNAME= mastodon DISTVERSIONPREFIX= v DISTVERSION= 4.0.2 CATEGORIES= net-im www MAINTAINER= bofh@FreeBSD.org COMMENT= GNU Social-compatible microblogging server WWW= https://github.com/tootsuite/mastodon LICENSE= AGPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libidn.so:dns/libidn RUN_DEPENDS= autoconf>=2.71:devel/autoconf \ curl>0:ftp/curl \ ffmpeg>0:multimedia/ffmpeg \ git>=0:devel/git \ gmake>0:devel/gmake \ gnupg>0:security/gnupg \ redis>0:databases/redis \ rubygem-bundler>=0:sysutils/rubygem-bundler \ sudo>0:security/sudo \ wget>0:ftp/wget \ yarn>:www/yarn USES= magick:7,run pgsql USE_GITHUB= yes USE_RC_SUBR= mastodon_sidekiq mastodon_streaming mastodon_web -USE_RUBY= yes NO_ARCH= yes NO_BUILD= yes USERS= ${PORTNAME} GROUPS= ${PORTNAME} RM_MASTODONFILES= .dockerignore dist/mastodon-web.service \ dist/mastodon-sidekiq.service \ dist/mastodon-streaming.service RM_MASTODONDIRS= .circleci .github post-extract: .for _F in ${RM_MASTODONFILES} @${RM} ${WRKSRC}/${_F} .endfor .for _D in ${RM_MASTODONDIRS} @${RM} -r ${WRKSRC}/${_D} .endfor post-patch: @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|'\ ${WRKSRC}/dist/nginx.conf do-install: ${FIND} ${WRKSRC} -name '*.orig' -delete ${FIND} ${WRKSRC} -name '*.bak' -delete ${FIND} ${WRKSRC} -name '*.gitkeep' -delete ${FIND} ${WRKSRC} -name '*.gitignore' -delete ${MV} ${WRKSRC}/dist/nginx.conf ${WRKSRC}/dist/nginx.conf.sample (cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/www/${PORTNAME}) post-install: @${ECHO_CMD} "@owner mastodon" >> ${TMPPLIST} @${ECHO_CMD} "@group mastodon" >> ${TMPPLIST} ${FIND} -s ${STAGEDIR}${WWWDIR} -not -type d | ${SORT} | \ ${SED} -e 's#^${STAGEDIR}${PREFIX}/##' | \ ${SED} -E -e '/sample$$/ s#^#@sample #' >> ${TMPPLIST} ${FIND} -s ${STAGEDIR}${WWWDIR} -type d | ${SORT} | \ ${SED} -e 's#^${STAGEDIR}${PREFIX}/#@dir #' >> ${TMPPLIST} .include diff --git a/net-im/mikutter/Makefile b/net-im/mikutter/Makefile index af83c07f371f..977c1c5eb198 100644 --- a/net-im/mikutter/Makefile +++ b/net-im/mikutter/Makefile @@ -1,78 +1,77 @@ PORTNAME= mikutter PORTVERSION= 5.0.4 CATEGORIES= net-im ruby MASTER_SITES= https://mikutter.hachune.net/bin/ \ LOCAL/meta/${PORTNAME} MAINTAINER= meta@FreeBSD.org COMMENT= Simple, powerful, and moeful Twitter client WWW= https://mikutter.hachune.net/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-gtk3>=3.4.9:x11-toolkits/rubygem-gtk3 \ rubygem-cairo>=1.16.2:graphics/rubygem-cairo \ rubygem-addressable>=2.8.0:www/rubygem-addressable \ rubygem-delayer>=1.2.1:devel/rubygem-delayer \ rubygem-delayer-deferred>=2.2.0:devel/rubygem-delayer-deferred \ rubygem-diva>=2.0.1:devel/rubygem-diva \ rubygem-gettext>=3.4.1:devel/rubygem-gettext \ rubygem-gio2>=3.3.1:devel/rubygem-gio2 \ rubygem-httpclient>=2.8.3:www/rubygem-httpclient \ rubygem-instance_storage>=1.0.0:devel/rubygem-instance_storage \ rubygem-locale>=2.1.2:devel/rubygem-locale \ rubygem-memoist>=0.16.2:devel/rubygem-memoist \ rubygem-moneta>=0.7:devel/rubygem-moneta \ rubygem-nokogiri>=1.8.5:textproc/rubygem-nokogiri \ rubygem-oauth>=0.5.8:net/rubygem-oauth \ rubygem-pluggaloid>=1.7.0:devel/rubygem-pluggaloid \ rubygem-prime>=0.1.2:math/rubygem-prime \ rubygem-text>=1.3.1:textproc/rubygem-text \ rubygem-totoridipjp>=0.1.0:www/rubygem-totoridipjp \ rubygem-twitter-text>=2.1.0:textproc/rubygem-twitter-text \ 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 SHEBANG_FILES= mikutter.rb \ core/miku/miku.rb PORTDOCS= README SUB_FILES= mikutter.desktop SUB_LIST= RUBY_SITELIBDIR=${RUBY_SITELIBDIR} OPTIONS_DEFINE= DOCS NOTIFY NOTIFY_DESC= notify-send support OPTIONS_DEFAULT= ${OPTIONS_DEFINE} NOTIFY_RUN_DEPENDS= notify-send:devel/libnotify post-patch: @${REINPLACE_CMD} \ -e "s|%%RUBY_SITELIBDIR%%|${RUBY_SITELIBDIR}|" \ -e "s|%%RUBY_WITH_SUFFIX%%|${RUBY_WITH_SUFFIX}|" \ ${WRKSRC}/mikutter.rb @${RM} -r ${WRKSRC}/vendor do-install: ${INSTALL_SCRIPT} ${INSTALL_WRKSRC}/mikutter.rb ${STAGEDIR}${PREFIX}/bin/mikutter cd ${INSTALL_WRKSRC} \ && ${COPYTREE_SHARE} core ${STAGEDIR}${RUBY_SITELIBDIR}/mikutter \ && ${COPYTREE_SHARE} plugin ${STAGEDIR}${RUBY_SITELIBDIR}/mikutter ${INSTALL_DATA} ${WRKDIR}/${SUB_FILES} ${STAGEDIR}${PREFIX}/share/applications/ @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${INSTALL_WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR} x-generate-plist: stage ${ECHO} bin/mikutter > pkg-plist.new ${FIND} ${STAGEDIR}${RUBY_SITELIBDIR}/mikutter -type f | ${SORT} | ${SED} -e 's,${STAGEDIR}${RUBY_SITELIBDIR},%%RUBY_SITELIBDIR%%,' >> pkg-plist.new ${ECHO} share/applications/mikutter.desktop >> pkg-plist.new .include diff --git a/net-im/rubygem-discordrb-webhooks-blackst0ne/Makefile b/net-im/rubygem-discordrb-webhooks-blackst0ne/Makefile index 6b77aeffc5b9..b7a2e58e03ee 100644 --- a/net-im/rubygem-discordrb-webhooks-blackst0ne/Makefile +++ b/net-im/rubygem-discordrb-webhooks-blackst0ne/Makefile @@ -1,19 +1,18 @@ PORTNAME= discordrb-webhooks-blackst0ne PORTVERSION= 3.3.0 CATEGORIES= net-im rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Discord API for Ruby WWW= https://github.com/blackst0ne/discordrb LICENSE= MIT RUN_DEPENDS= rubygem-rest-client>=2.0:www/rubygem-rest-client USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net-im/rubygem-discordrb-webhooks/Makefile b/net-im/rubygem-discordrb-webhooks/Makefile index fb88dccf287f..2871d1456cac 100644 --- a/net-im/rubygem-discordrb-webhooks/Makefile +++ b/net-im/rubygem-discordrb-webhooks/Makefile @@ -1,19 +1,18 @@ PORTNAME= discordrb-webhooks PORTVERSION= 3.4.2 CATEGORIES= net-im rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Discord API for Ruby WWW= https://github.com/shardlab/discordrb LICENSE= MIT RUN_DEPENDS= rubygem-rest-client>=2.0:www/rubygem-rest-client USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net-im/rubygem-hipchat/Makefile b/net-im/rubygem-hipchat/Makefile index 668cdcd007be..fd86803fcaf1 100644 --- a/net-im/rubygem-hipchat/Makefile +++ b/net-im/rubygem-hipchat/Makefile @@ -1,21 +1,20 @@ PORTNAME= hipchat PORTVERSION= 1.6.0 CATEGORIES= net-im rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby library to interact with HipChat WWW= https://github.com/hipchat/hipchat-rb LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-httparty>=0:www/rubygem-httparty \ rubygem-mimemagic>=0:misc/rubygem-mimemagic USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net-im/rubygem-lita/Makefile b/net-im/rubygem-lita/Makefile index f070288ac975..58a74e136bb8 100644 --- a/net-im/rubygem-lita/Makefile +++ b/net-im/rubygem-lita/Makefile @@ -1,35 +1,34 @@ PORTNAME= lita PORTVERSION= 4.8.0 PORTREVISION= 1 CATEGORIES= net-im rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Multi-service chat bot with extendable behavior WWW= https://github.com/litaio/lita LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= redis>=0:databases/redis \ rubygem-bundler>=2.0:sysutils/rubygem-bundler \ rubygem-faraday1>=1.0:www/rubygem-faraday1 \ rubygem-http_router>=0.11:www/rubygem-http_router \ rubygem-i18n>=1.8,2:devel/rubygem-i18n \ rubygem-ice_nine>=0.11:devel/rubygem-ice_nine \ rubygem-multi_json>=1.15:devel/rubygem-multi_json \ rubygem-puma>=4.3:www/rubygem-puma \ rubygem-rack>=2.2,3:www/rubygem-rack \ rubygem-redis-namespace>=1.7:databases/rubygem-redis-namespace \ rubygem-thor>=1.0:devel/rubygem-thor USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/lita SHEBANG_FILES= script/ci .include diff --git a/net-im/rubygem-termtter/Makefile b/net-im/rubygem-termtter/Makefile index 43499c8cbb74..6702b20cc522 100644 --- a/net-im/rubygem-termtter/Makefile +++ b/net-im/rubygem-termtter/Makefile @@ -1,29 +1,28 @@ PORTNAME= termtter PORTVERSION= 2.2.9 PORTREVISION= 1 CATEGORIES= net-im rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Terminal based Twitter client WWW= https://termtter.github.io/ LICENSE= MIT RUN_DEPENDS= rubygem-activerecord4>=4.1.0<5:databases/rubygem-activerecord4 \ rubygem-builder>=3.1.4<4:devel/rubygem-builder \ rubygem-fluent-logger>=0.5.1<1:devel/rubygem-fluent-logger \ rubygem-highline1>=1.7.0<1.8:devel/rubygem-highline1 \ rubygem-json1>=1.8.0<1.9:devel/rubygem-json1 \ rubygem-notify>=0.5.1<0.6:devel/rubygem-notify \ rubygem-rubytter>=1.5.1<1.6:net/rubygem-rubytter \ rubygem-termcolor>=1.0<2:textproc/rubygem-termcolor USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/termtter bin/termtter_frame .include diff --git a/net-im/rubygem-tinder/Makefile b/net-im/rubygem-tinder/Makefile index cf4e6fa5dc58..d59a8600dcbd 100644 --- a/net-im/rubygem-tinder/Makefile +++ b/net-im/rubygem-tinder/Makefile @@ -1,28 +1,27 @@ PORTNAME= tinder PORTVERSION= 1.10.1 PORTREVISION= 3 CATEGORIES= net-im rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby API for interfacing with Campfire WWW= https://github.com/collectiveidea/tinder LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-eventmachine>=1.0<2:devel/rubygem-eventmachine \ rubygem-faraday0>=0.9.0<1:www/rubygem-faraday0 \ rubygem-faraday_middleware0>=0.9<1:www/rubygem-faraday_middleware0 \ rubygem-hashie>=1.0:devel/rubygem-hashie \ rubygem-json1>=1.8.0<1.9:devel/rubygem-json1 \ rubygem-mime-types>=0:misc/rubygem-mime-types \ rubygem-multi_json>=1.7<2:devel/rubygem-multi_json \ rubygem-twitter-stream>=0.1<1:net/rubygem-twitter-stream USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net-mgmt/rubygem-blimpy/Makefile b/net-mgmt/rubygem-blimpy/Makefile index 8aeffd1c1ad5..8d6f81d8bf3f 100644 --- a/net-mgmt/rubygem-blimpy/Makefile +++ b/net-mgmt/rubygem-blimpy/Makefile @@ -1,24 +1,23 @@ PORTNAME= blimpy PORTVERSION= 0.6.7 CATEGORIES= net-mgmt rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Tool for managing a fleet of machines in the cloud WWW= https://github.com/rtyler/blimpy LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-fog>=0:devel/rubygem-fog \ rubygem-minitar>=0:archivers/rubygem-minitar \ rubygem-thor>=0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/blimpy .include diff --git a/net-mgmt/rubygem-checkson/Makefile b/net-mgmt/rubygem-checkson/Makefile index 9536642543ba..c8c4a62217ae 100644 --- a/net-mgmt/rubygem-checkson/Makefile +++ b/net-mgmt/rubygem-checkson/Makefile @@ -1,19 +1,18 @@ PORTNAME= checkson DISTVERSION= 1.3 CATEGORIES= net-mgmt rubygems MASTER_SITES= RG MAINTAINER= florian@fsrv.xyz COMMENT= Simple checking tool for easy os checks WWW= https://gitlab.fsrv.xyz LICENSE= BSD3CLAUSE USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/checkson .include diff --git a/net-mgmt/rubygem-oxidized-script/Makefile b/net-mgmt/rubygem-oxidized-script/Makefile index 97816501c195..c30a65c9a609 100644 --- a/net-mgmt/rubygem-oxidized-script/Makefile +++ b/net-mgmt/rubygem-oxidized-script/Makefile @@ -1,22 +1,21 @@ PORTNAME= oxidized-script PORTVERSION= 0.6.0 CATEGORIES= net-mgmt rubygems MASTER_SITES= RG MAINTAINER= nick@foobar.org COMMENT= CLI and Library to interface with network devices in rubygems-oxidized WWW= https://github.com/ytti/oxidized-script LICENSE= APACHE20 RUN_DEPENDS= rubygem-oxidized>=0.25:net-mgmt/rubygem-oxidized \ rubygem-slop3>=3.5:devel/rubygem-slop3 USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/oxs .include diff --git a/net-mgmt/rubygem-oxidized-web/Makefile b/net-mgmt/rubygem-oxidized-web/Makefile index 07ff98817324..25ef33d545b0 100644 --- a/net-mgmt/rubygem-oxidized-web/Makefile +++ b/net-mgmt/rubygem-oxidized-web/Makefile @@ -1,30 +1,29 @@ PORTNAME= oxidized-web PORTVERSION= 0.13.1 PORTREVISION= 3 CATEGORIES= net-mgmt rubygems MASTER_SITES= RG MAINTAINER= nick@foobar.org COMMENT= Web user interface and RESTful API for rubygems-oxidized WWW= https://github.com/ytti/oxidized-web LICENSE= APACHE20 RUN_DEPENDS= rubygem-charlock_holmes>=0.7.5:textproc/rubygem-charlock_holmes \ rubygem-emk-sinatra-url-for>=0.2:www/rubygem-emk-sinatra-url-for \ rubygem-haml>=5.0:www/rubygem-haml \ rubygem-htmlentities>=4.3:textproc/rubygem-htmlentities \ rubygem-json>=1.7.0:devel/rubygem-json \ rubygem-oxidized>=0.26:net-mgmt/rubygem-oxidized \ rubygem-puma>=3.11.4:www/rubygem-puma \ rubygem-rack-test>=0.7.0:www/rubygem-rack-test \ rubygem-sass>=3.3:textproc/rubygem-sass \ rubygem-sinatra-contrib1>=1.4.6:www/rubygem-sinatra-contrib1 \ rubygem-sinatra1>=1.4.6:www/rubygem-sinatra1 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net-mgmt/rubygem-oxidized/Makefile b/net-mgmt/rubygem-oxidized/Makefile index 057ae4c24842..e0386b6bad61 100644 --- a/net-mgmt/rubygem-oxidized/Makefile +++ b/net-mgmt/rubygem-oxidized/Makefile @@ -1,36 +1,35 @@ PORTNAME= oxidized PORTVERSION= 0.28.0 PORTREVISION= 1 CATEGORIES= net-mgmt rubygems MASTER_SITES= RG MAINTAINER= nick@foobar.org COMMENT= Network device configuration backup tool WWW= https://github.com/ytti/oxidized LICENSE= APACHE20 RUN_DEPENDS= rubygem-asetus>=0.1<1:devel/rubygem-asetus \ rubygem-bcrypt_pbkdf>=1.0<2:security/rubygem-bcrypt_pbkdf \ rubygem-ed25519>=1.2<2:security/rubygem-ed25519 \ rubygem-net-ssh5>=5<6,2:security/rubygem-net-ssh5 \ rubygem-net-telnet>=0.2<1:security/rubygem-net-telnet \ rubygem-rugged>=1.0:devel/rubygem-rugged \ rubygem-slop>=4.6<5:devel/rubygem-slop USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes USE_RC_SUBR= oxidized PLIST_FILES= bin/oxidized SHEBANG_FILES= extra/*.runit USERS= oxidized GROUPS= oxidized SUB_LIST= RUBY=${RUBY} .include diff --git a/net-mgmt/rubygem-riemann-client/Makefile b/net-mgmt/rubygem-riemann-client/Makefile index 6b63e7071868..8fd7252b5be1 100644 --- a/net-mgmt/rubygem-riemann-client/Makefile +++ b/net-mgmt/rubygem-riemann-client/Makefile @@ -1,21 +1,20 @@ PORTNAME= riemann-client DISTVERSION= 1.0.1 CATEGORIES= net-mgmt rubygems MASTER_SITES= RG MAINTAINER= dch@FreeBSD.org COMMENT= Client for the distributed event system Riemann WWW= https://github.com/riemann/riemann-ruby-client LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-beefcake>=1.2:net/rubygem-beefcake \ rubygem-mtrc>=0.0.4:math/rubygem-mtrc USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net-mgmt/rubygem-riemann-dash/Makefile b/net-mgmt/rubygem-riemann-dash/Makefile index 408a7b912399..bb8b978d8f44 100644 --- a/net-mgmt/rubygem-riemann-dash/Makefile +++ b/net-mgmt/rubygem-riemann-dash/Makefile @@ -1,34 +1,33 @@ PORTNAME= riemann-dash DISTVERSION= 0.2.14 CATEGORIES= net-mgmt rubygems MASTER_SITES= RG MAINTAINER= dch@FreeBSD.org COMMENT= Configurable websocket/javascript based dashboard for net-mgmt/riemann WWW= https://github.com/riemann/riemann-dash LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-multi_json>=0:devel/rubygem-multi_json \ rubygem-sass>=0:textproc/rubygem-sass \ rubygem-erubis>=0:www/rubygem-erubis \ rubygem-sinatra>=0:www/rubygem-sinatra USES= gem NO_ARCH= yes -USE_RUBY= yes post-install: # move the public HTML files into DATADIR for webservers # even when the package version & path changes ${MKDIR} ${STAGEDIR}${DATADIR} ${MV} ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/lib/riemann/dash/public \ ${STAGEDIR}${DATADIR}/www # the eruby template is valid HTML so drop it into public dir # and it can all be served directly via your webserver ${CP} ${WRKSRC}/lib/riemann/dash/views/index.erubis \ ${STAGEDIR}${DATADIR}/www/index.html .include diff --git a/net-mgmt/rubygem-riemann-rabbitmq/Makefile b/net-mgmt/rubygem-riemann-rabbitmq/Makefile index 5e97cb8aee34..5080fcf7dad5 100644 --- a/net-mgmt/rubygem-riemann-rabbitmq/Makefile +++ b/net-mgmt/rubygem-riemann-rabbitmq/Makefile @@ -1,37 +1,36 @@ PORTNAME= riemann-rabbitmq DISTVERSION= 0.1.3 PORTREVISION= 1 CATEGORIES= net-mgmt rubygems MASTER_SITES= RG MAINTAINER= dch@FreeBSD.org COMMENT= Send your RabbitMQ metrics to Riemann WWW= https://github.com/riemann/riemann-tools LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-riemann-tools>=0.2.14:net-mgmt/rubygem-riemann-tools \ rubygem-faraday0>=0.8.5:www/rubygem-faraday0 USES= gem -USE_RUBY= yes NO_ARCH= yes post-patch: # hide sensitive command-line parameters from casual users @${SED} -i -e $$'/^#!.*ruby.*/a\\\nProcess.setproctitle($$0)\n' \ ${WRKSRC}/bin/riemann-* PORTDOCS= README.md PLIST_FILES= bin/riemann-rabbitmq OPTIONS_DEFINE= DOCS post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} .include diff --git a/net-mgmt/rubygem-riemann-tail/Makefile b/net-mgmt/rubygem-riemann-tail/Makefile index 222cb6381956..280ca89fb2bf 100644 --- a/net-mgmt/rubygem-riemann-tail/Makefile +++ b/net-mgmt/rubygem-riemann-tail/Makefile @@ -1,33 +1,32 @@ PORTNAME= riemann-tail DISTVERSION= 0.0.1 PORTREVISION= 1 CATEGORIES= net-mgmt rubygems MASTER_SITES= RG MAINTAINER= dch@FreeBSD.org COMMENT= Tail Riemann event streams from the console WWW= https://github.com/wkf/riemann-tail LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-colorize>=0:devel/rubygem-colorize \ rubygem-faye-websocket>=0:www/rubygem-faye-websocket \ rubygem-thor0>=0:devel/rubygem-thor0 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTDOCS= README.md PLIST_FILES= bin/riemann-tail OPTIONS_DEFINE= DOCS post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} .include diff --git a/net-mgmt/rubygem-riemann-tools/Makefile b/net-mgmt/rubygem-riemann-tools/Makefile index e89ad30d12d2..13bd67aaa08b 100644 --- a/net-mgmt/rubygem-riemann-tools/Makefile +++ b/net-mgmt/rubygem-riemann-tools/Makefile @@ -1,35 +1,34 @@ PORTNAME= riemann-tools DISTVERSION= 1.7.1 CATEGORIES= net-mgmt rubygems MASTER_SITES= RG MAINTAINER= romain@FreeBSD.org COMMENT= Collection of utilities which submit events to Riemann WWW= https://github.com/riemann/riemann-tools LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-json>=1.8:devel/rubygem-json \ rubygem-optimist>=3.0:devel/rubygem-optimist \ rubygem-riemann-client>=1.0:net-mgmt/rubygem-riemann-client USES= gem -USE_RUBY= yes NO_ARCH= yes post-patch: # hide sensitive command-line parameters from casual users @${SED} -i -e $$'/^#!.*ruby.*/a\\\nProcess.setproctitle($$0)\n' \ ${WRKSRC}/bin/riemann-* PORTDOCS= README.markdown OPTIONS_DEFINE= DOCS post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR} .include diff --git a/net-mgmt/rubygem-snmp/Makefile b/net-mgmt/rubygem-snmp/Makefile index 100141e43b6e..2b94e82372c6 100644 --- a/net-mgmt/rubygem-snmp/Makefile +++ b/net-mgmt/rubygem-snmp/Makefile @@ -1,15 +1,14 @@ PORTNAME= snmp PORTVERSION= 1.2.0 CATEGORIES= net-mgmt rubygems MASTER_SITES= RG MAINTAINER= mhjacks@swbell.net COMMENT= SNMP library for Ruby WWW= https://rubygems.org/gems/snmp NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/net-mgmt/rubygem-visage-app/Makefile b/net-mgmt/rubygem-visage-app/Makefile index d127814c7da7..cf9977b06c94 100644 --- a/net-mgmt/rubygem-visage-app/Makefile +++ b/net-mgmt/rubygem-visage-app/Makefile @@ -1,26 +1,25 @@ PORTNAME= visage-app PORTVERSION= 2.1.0 PORTREVISION= 4 CATEGORIES= net-mgmt rubygems MASTER_SITES= RG MAINTAINER= ports@FreeBSD.org COMMENT= Graph tool for Collectd WWW= https://rubygems.org/gems/visage-app LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENCE RUN_DEPENDS= rubygem-errand>=0.7.3:devel/rubygem-errand \ rubygem-haml>=3.1.4:www/rubygem-haml \ rubygem-sinatra1>=1.3.2:www/rubygem-sinatra1 \ rubygem-tilt>=1.3.3:devel/rubygem-tilt \ rubygem-yajl-ruby>=1.1.0:devel/rubygem-yajl-ruby NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/visage-app .include diff --git a/net/dtcp/Makefile b/net/dtcp/Makefile index aec70c8ed5fc..9dc99cddeca2 100644 --- a/net/dtcp/Makefile +++ b/net/dtcp/Makefile @@ -1,29 +1,28 @@ PORTNAME= dtcp PORTVERSION= 20130602 PORTREVISION= 4 CATEGORIES= net MASTER_SITES= http://www.mahoroba.org/~ume/ipv6/ MAINTAINER= ume@FreeBSD.org COMMENT= Dynamic Tunnel Configuration Protocol daemon and client WWW= https://www.mahoroba.org/~ume/dtcp/ LICENSE= BSD3CLAUSE RUN_DEPENDS= rubygem-dbm>0:databases/rubygem-dbm .if defined(WITH_QPOPAUTH) 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} PLIST_FILES= sbin/dtcpauth sbin/dtcpc sbin/dtcps \ man/man8/dtcpauth.8.gz man/man8/dtcpc.8.gz \ man/man8/dtcps.8.gz .include diff --git a/net/foreman-proxy/Makefile b/net/foreman-proxy/Makefile index 2ca0f3721e77..e8b3b456ffdf 100644 --- a/net/foreman-proxy/Makefile +++ b/net/foreman-proxy/Makefile @@ -1,107 +1,106 @@ PORTNAME= foreman-proxy PORTVERSION= 3.4.0 CATEGORIES= net MASTER_SITES= https://downloads.theforeman.org/foreman-proxy/ MAINTAINER= freebsd@moov.de COMMENT= Foreman Proxy Agent WWW= https://theforeman.org/ LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-bundler_ext>=0.4:sysutils/rubygem-bundler_ext \ rubygem-concurrent-ruby>=1.0:devel/rubygem-concurrent-ruby \ rubygem-json>=1.8.1:devel/rubygem-json \ rubygem-logging>=0:devel/rubygem-logging \ rubygem-rack>=2.0:www/rubygem-rack \ rubygem-rb-kqueue>=0.2.2:devel/rubygem-rb-kqueue \ rubygem-rsec>=0.4.3:devel/rubygem-rsec \ rubygem-sd_notify>=0.1.1:devel/rubygem-sd_notify \ rubygem-sinatra>=2.0:www/rubygem-sinatra \ rubygem-webrick>=1.7:www/rubygem-webrick \ 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 PUPPET7_DESC= Depend on Puppet 7 NO_ARCH= yes NO_BUILD= yes USE_RC_SUBR= foreman-proxy -USE_RUBY= yes FOREMAN_PROXY_USER?= foreman_proxy FOREMAN_PROXY_GROUP?= foreman_proxy FOREMAN_PROXY_LOGDIR?= ${DESTDIR}/var/log/foreman-proxy FOREMAN_PROXY_RUNDIR?= ${DESTDIR}/var/run/foreman-proxy USERS= ${FOREMAN_PROXY_USER} GROUPS= ${FOREMAN_PROXY_GROUP} SUB_LIST= RUBY="${RUBY}" \ FOREMAN_PROXY_USER="${FOREMAN_PROXY_USER}" \ FOREMAN_PROXY_GROUP="${FOREMAN_PROXY_GROUP}" \ FOREMAN_PROXY_RUNDIR="${FOREMAN_PROXY_RUNDIR}" \ FOREMAN_PROXY_LOGDIR="${FOREMAN_PROXY_LOGDIR}" PLIST_SUB= ${SUB_LIST} MKDIR="${MKDIR}" SHEBANG_FILES= extra/foreman-debug-proxy BMC_RUN_DEPENDS= rubygem-rubyipmi>=0.10.0:sysutils/rubygem-rubyipmi \ rubygem-redfish_client>=0.5.1:sysutils/rubygem-redfish_client PUPPET7_RUN_DEPENDS= puppet:sysutils/puppet7 \ rubygem-ruby-augeas>=0.5:textproc/rubygem-ruby-augeas post-patch: @${REINPLACE_CMD} \ -e "s|/usr/bin/env ruby|${RUBY}|g" \ -e "s|/usr/bin/ruby|${RUBY}|g" \ -e "s|%%PREFIX%%|${PREFIX}|g" \ -e "s|%%DATADIR%%|${DATADIR}|g" \ ${WRKSRC}/bin/smart-proxy \ ${WRKSRC}/extra/dhcpd_config_check.rb \ ${WRKSRC}/extra/foreman-debug-proxy \ ${WRKSRC}/extra/migrate_settings.rb \ ${WRKSRC}/extra/puppet_sign.rb \ ${WRKSRC}/extra/query.rb \ ${WRKSRC}/extra/register_service.rb @${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|g" \ -e "s|%%LOCALBASE%%|${LOCALBASE}|g" \ ${WRKSRC}/config/settings.d/*.yml.example \ ${WRKSRC}/lib/proxy/http_download.rb do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/foreman-proxy/settings.d ${MKDIR} ${STAGEDIR}${DATADIR}/extra ${LN} -s ${PREFIX}/etc/foreman-proxy ${STAGEDIR}${DATADIR}/config ${INSTALL_SCRIPT} ${WRKSRC}/bin/smart-proxy \ ${STAGEDIR}${PREFIX}/sbin/smart-proxy .for file in CHANGELOG Contributors Gemfile LICENSE README.md \ smart_proxy.gemspec VERSION bundler.d config.ru lib modules ${CP} -r ${WRKSRC}/${file} ${STAGEDIR}${DATADIR} .endfor ${LN} -s Gemfile ${STAGEDIR}${DATADIR}/Gemfile.in .for script in dhcpd_config_check.rb foreman-debug-proxy \ migrate_settings.rb puppet_sign.rb query.rb register_service.rb ${INSTALL_SCRIPT} ${WRKSRC}/extra/${script} \ ${STAGEDIR}${DATADIR}/extra/${script} .endfor ${CP} -r ${WRKSRC}/extra/migrations ${STAGEDIR}${DATADIR}/extra ${INSTALL_DATA} ${WRKSRC}/config/settings.yml.example \ ${STAGEDIR}${PREFIX}/etc/foreman-proxy/settings.yml.sample .for cfg in bmc dhcp_isc dhcp_libvirt dhcp_native_ms dhcp dns_dnscmd \ dns_libvirt dns_nsupdate_gss dns_nsupdate dns facts httpboot logs \ puppet_proxy_puppet_api puppet puppetca_hostname_whitelisting \ puppetca_http_api puppetca_token_whitelisting puppetca realm_freeipa \ realm registration templates tftp ${INSTALL_DATA} ${WRKSRC}/config/settings.d/${cfg}.yml.example \ ${STAGEDIR}${PREFIX}/etc/foreman-proxy/settings.d/${cfg}.yml.sample .endfor ${MKDIR} -m 0700 ${STAGEDIR}${FOREMAN_PROXY_LOGDIR} \ ${STAGEDIR}${FOREMAN_PROXY_RUNDIR} .include diff --git a/net/rubygem-activestorage52/Makefile b/net/rubygem-activestorage52/Makefile index e473750ada74..adaa3de453da 100644 --- a/net/rubygem-activestorage52/Makefile +++ b/net/rubygem-activestorage52/Makefile @@ -1,25 +1,24 @@ PORTNAME= activestorage PORTVERSION= 5.2.8.1 CATEGORIES= net rubygems MASTER_SITES= RG PKGNAMESUFFIX= 52 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Attach cloud and local files in Rails applications WWW= https://github.com/rails/rails/tree/main/activestorage LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack52>=${PORTVERSION}:www/rubygem-actionpack52 \ rubygem-activerecord52>=${PORTVERSION}:databases/rubygem-activerecord52 \ rubygem-marcel>=1.0.0<1.1:devel/rubygem-marcel USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^5\.2\. .include diff --git a/net/rubygem-activestorage60/Makefile b/net/rubygem-activestorage60/Makefile index 6a898a8fb644..a1c3dbe9f3b5 100644 --- a/net/rubygem-activestorage60/Makefile +++ b/net/rubygem-activestorage60/Makefile @@ -1,27 +1,26 @@ PORTNAME= activestorage PORTVERSION= 6.0.6 CATEGORIES= net rubygems MASTER_SITES= RG PKGNAMESUFFIX= 60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Attach cloud and local files in Rails applications WWW= https://github.com/rails/rails/tree/main/activestorage \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack60>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack60 \ rubygem-activejob60>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activejob60 \ rubygem-activerecord60>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-activerecord60 \ rubygem-marcel>=1.0<2:devel/rubygem-marcel USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^6\.0\. .include diff --git a/net/rubygem-activestorage61/Makefile b/net/rubygem-activestorage61/Makefile index 330dad109a3d..25adb68fc54a 100644 --- a/net/rubygem-activestorage61/Makefile +++ b/net/rubygem-activestorage61/Makefile @@ -1,29 +1,28 @@ PORTNAME= activestorage PORTVERSION= 6.1.7 CATEGORIES= net rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Attach cloud and local files in Rails applications WWW= https://github.com/rails/rails/tree/main/activestorage \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack61>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack61 \ rubygem-activejob61>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activejob61 \ rubygem-activerecord61>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-activerecord61 \ rubygem-activesupport61>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport61 \ rubygem-marcel>=1.0<2:devel/rubygem-marcel \ rubygem-mini_mime>=1.1.0:mail/rubygem-mini_mime USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^6\.1\. .include diff --git a/net/rubygem-activestorage70/Makefile b/net/rubygem-activestorage70/Makefile index 7eff04a570cf..a460f74734d3 100644 --- a/net/rubygem-activestorage70/Makefile +++ b/net/rubygem-activestorage70/Makefile @@ -1,29 +1,28 @@ PORTNAME= activestorage PORTVERSION= 7.0.3.1 CATEGORIES= net rubygems MASTER_SITES= RG PKGNAMESUFFIX= 70 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Attach cloud and local files in Rails applications WWW= https://github.com/rails/rails/tree/main/activestorage \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack70>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack70 \ rubygem-activejob70>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activejob70 \ rubygem-activerecord70>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-activerecord70 \ rubygem-activesupport70>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport70 \ rubygem-marcel>=1.0<2:devel/rubygem-marcel \ rubygem-mini_mime>=1.1.0:mail/rubygem-mini_mime USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^7\.0\. .include diff --git a/net/rubygem-amazon-ec2/Makefile b/net/rubygem-amazon-ec2/Makefile index 96d7e321c2ab..47240caa4a7a 100644 --- a/net/rubygem-amazon-ec2/Makefile +++ b/net/rubygem-amazon-ec2/Makefile @@ -1,18 +1,17 @@ PORTNAME= amazon-ec2 PORTVERSION= 0.9.17 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= swills@FreeBSD.org COMMENT= Library for accessing the Amazon Web Services APIs WWW= https://github.com/grempe/amazon-ec2 RUN_DEPENDS= rubygem-xml-simple>=1.0.12:textproc/rubygem-xml-simple 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 .include diff --git a/net/rubygem-amq-protocol/Makefile b/net/rubygem-amq-protocol/Makefile index 6d2e2eab62c1..eeae5085ca2c 100644 --- a/net/rubygem-amq-protocol/Makefile +++ b/net/rubygem-amq-protocol/Makefile @@ -1,22 +1,21 @@ PORTNAME= amq-protocol PORTVERSION= 2.3.2 PORTREVISION= 1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= AMQP serialization library for Ruby WWW= https://github.com/ruby-amqp/amq-protocol LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem python:env shebangfix -USE_RUBY= yes NO_ARCH= yes REINPLACE_ARGS= -i '' SHEBANG_FILES= codegen/codegen.py .include diff --git a/net/rubygem-amqp-utils/Makefile b/net/rubygem-amqp-utils/Makefile index 3b278de8a498..e1451e4fcfe2 100644 --- a/net/rubygem-amqp-utils/Makefile +++ b/net/rubygem-amqp-utils/Makefile @@ -1,31 +1,30 @@ PORTNAME= amqp-utils PORTVERSION= 0.5.1 PORTREVISION= 5 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= loic-freebsd@loicp.eu COMMENT= Command-line utilities to work with AMQP-compliant queues WWW= https://github.com/dougbarth/amqp-utils LICENSE= MIT LICENSE_FILE= ${WRKSRC}/License.txt RUN_DEPENDS= rubygem-amqp>=0.7.1:net/rubygem-amqp \ rubygem-clio>=0.3.0:devel/rubygem-clio \ rubygem-facets>=2.9:devel/rubygem-facets \ rubygem-heredoc_unindent>=1.1.2:textproc/rubygem-heredoc_unindent \ rubygem-json1>=1.5:devel/rubygem-json1 \ rubygem-msgpack>=0.4.5:devel/rubygem-msgpack \ 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 \ bin/amqp-peek bin/amqp-pop \ bin/amqp-purge bin/amqp-spy bin/amqp-statq bin/amqp-unbind \ bin/amqp-delexch bin/amqp-exchange .include diff --git a/net/rubygem-amqp/Makefile b/net/rubygem-amqp/Makefile index 67e0d1b7018c..d9f23f83814a 100644 --- a/net/rubygem-amqp/Makefile +++ b/net/rubygem-amqp/Makefile @@ -1,21 +1,20 @@ PORTNAME= amqp PORTVERSION= 1.8.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Implementation of the AMQP protocol for RabbitMQ clients WWW= http://rubyamqp.info/ LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual RUN_DEPENDS= rubygem-amq-protocol>=2.2.0:net/rubygem-amq-protocol \ rubygem-eventmachine>=0:devel/rubygem-eventmachine USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-apollo_upload_server/Makefile b/net/rubygem-apollo_upload_server/Makefile index cb209bea951a..00502bc6b85f 100644 --- a/net/rubygem-apollo_upload_server/Makefile +++ b/net/rubygem-apollo_upload_server/Makefile @@ -1,21 +1,20 @@ PORTNAME= apollo_upload_server PORTVERSION= 2.1.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Apollo-upload-server middleware for rails WWW= https://github.com/jetruby/apollo_upload_server-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-actionpack61>=4.2:www/rubygem-actionpack61 \ rubygem-graphql>=1.8:devel/rubygem-graphql USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-asset_sync/Makefile b/net/rubygem-asset_sync/Makefile index 3fd79ec940a4..cb24fe2270f4 100644 --- a/net/rubygem-asset_sync/Makefile +++ b/net/rubygem-asset_sync/Makefile @@ -1,22 +1,21 @@ PORTNAME= asset_sync PORTVERSION= 2.16.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Synchronizes Assets between Rails and S3 WWW= https://github.com/AssetSync/asset_sync LICENSE= MIT RUN_DEPENDS= rubygem-activemodel4>=4.1.0:databases/rubygem-activemodel4 \ rubygem-fog-core>=0:devel/rubygem-fog-core \ rubygem-mime-types>=2.99:misc/rubygem-mime-types \ rubygem-unf>=0:textproc/rubygem-unf USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-aws-s3/Makefile b/net/rubygem-aws-s3/Makefile index b9e203fe66db..0962be228f53 100644 --- a/net/rubygem-aws-s3/Makefile +++ b/net/rubygem-aws-s3/Makefile @@ -1,20 +1,19 @@ PORTNAME= aws-s3 PORTVERSION= 0.6.3 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= swills@FreeBSD.org COMMENT= Client library for Amazon S3 REST API WWW= https://rubygems.org/gems/aws-s3 RUN_DEPENDS= rubygem-xml-simple>=0:textproc/rubygem-xml-simple \ rubygem-builder>=0:devel/rubygem-builder \ rubygem-mime-types>=0:misc/rubygem-mime-types NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/s3sh .include diff --git a/net/rubygem-aws-ses/Makefile b/net/rubygem-aws-ses/Makefile index ec15aa21d2e0..c0eac25fd80b 100644 --- a/net/rubygem-aws-ses/Makefile +++ b/net/rubygem-aws-ses/Makefile @@ -1,23 +1,22 @@ PORTNAME= aws-ses PORTVERSION= 0.7.1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Client library for REST API of Amazon SES WWW= https://github.com/drewblas/aws-ses LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-builder>=0:devel/rubygem-builder \ rubygem-mail>=2.2.5:mail/rubygem-mail \ rubygem-mime-types>=0:misc/rubygem-mime-types \ rubygem-xml-simple>=0:textproc/rubygem-xml-simple USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-azure-core/Makefile b/net/rubygem-azure-core/Makefile index 3d2a5fda516e..8c0a9687ece7 100644 --- a/net/rubygem-azure-core/Makefile +++ b/net/rubygem-azure-core/Makefile @@ -1,22 +1,21 @@ PORTNAME= azure-core PORTVERSION= 0.1.15 PORTREVISION= 1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Client Core Library for Ruby SDK WWW= https://github.com/Azure/azure-ruby-asm-core LICENSE= APACHE20 RUN_DEPENDS= rubygem-faraday0>=0.9<1:www/rubygem-faraday0 \ rubygem-faraday_middleware0>=0.10<1:www/rubygem-faraday_middleware0 \ rubygem-nokogiri>=1.6<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-azure/Makefile b/net/rubygem-azure/Makefile index 4904526c6baf..e1b1cadefc59 100644 --- a/net/rubygem-azure/Makefile +++ b/net/rubygem-azure/Makefile @@ -1,30 +1,29 @@ PORTNAME= azure PORTVERSION= 0.7.10 PORTREVISION= 2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Microsoft Azure Client Library for Ruby WWW= https://github.com/Azure/azure-sdk-for-ruby LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-addressable>=2.3<3:www/rubygem-addressable \ rubygem-azure-core>=0.1<1:net/rubygem-azure-core \ rubygem-faraday0>=0.9<1:www/rubygem-faraday0 \ rubygem-faraday_middleware0>=0.10<1:www/rubygem-faraday_middleware0 \ rubygem-mime-types>=1<4.0:misc/rubygem-mime-types \ rubygem-nokogiri>=1.6<2:textproc/rubygem-nokogiri \ rubygem-systemu>=2.6<3:devel/rubygem-systemu \ rubygem-thor0>=0.19<1:devel/rubygem-thor0 USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/pfxer .include diff --git a/net/rubygem-beefcake/Makefile b/net/rubygem-beefcake/Makefile index 9fa05eff93ee..751abab617ae 100644 --- a/net/rubygem-beefcake/Makefile +++ b/net/rubygem-beefcake/Makefile @@ -1,20 +1,19 @@ PORTNAME= beefcake DISTVERSION= 1.2.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= dch@FreeBSD.org COMMENT= Protocol Buffers library in pure Ruby WWW= https://github.com/protobuf-ruby/beefcake LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/protoc-gen-beefcake .include diff --git a/net/rubygem-bunny/Makefile b/net/rubygem-bunny/Makefile index 1d0b62583972..0db13102577b 100644 --- a/net/rubygem-bunny/Makefile +++ b/net/rubygem-bunny/Makefile @@ -1,19 +1,18 @@ PORTNAME= bunny PORTVERSION= 2.9.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= renchap@cocoa-x.com COMMENT= Another synchronous Ruby AMQP client WWW= https://github.com/ruby-amqp/bunny LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-amq-protocol>=2.2.0:net/rubygem-amq-protocol NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/net/rubygem-cloudflare/Makefile b/net/rubygem-cloudflare/Makefile index fa79b9bb4020..21a20935a6ed 100644 --- a/net/rubygem-cloudflare/Makefile +++ b/net/rubygem-cloudflare/Makefile @@ -1,19 +1,18 @@ PORTNAME= cloudflare PORTVERSION= 4.3.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby wrapper for the Cloudflare API WWW= https://github.com/socketry/cloudflare LICENSE= MIT RUN_DEPENDS= rubygem-async-rest>=0.12.3<0.13:www/rubygem-async-rest USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-connection_pool/Makefile b/net/rubygem-connection_pool/Makefile index 3a5b9ba92fd8..28bae3973618 100644 --- a/net/rubygem-connection_pool/Makefile +++ b/net/rubygem-connection_pool/Makefile @@ -1,18 +1,17 @@ PORTNAME= connection_pool PORTVERSION= 2.3.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Generic connection pool for Ruby WWW= https://github.com/mperham/connection_pool LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-docker-api/Makefile b/net/rubygem-docker-api/Makefile index 2c88b54a6926..c40093f76482 100644 --- a/net/rubygem-docker-api/Makefile +++ b/net/rubygem-docker-api/Makefile @@ -1,20 +1,19 @@ PORTNAME= docker-api PORTVERSION= 1.34.2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= romain@FreeBSD.org COMMENT= Simple REST client for the Docker Remote API WWW= https://rubygems.org/gems/docker-api LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-excon>=0.47.0:devel/rubygem-excon \ rubygem-multi_json>=0:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-dogapi/Makefile b/net/rubygem-dogapi/Makefile index b8b3d334edb5..aef65d2bd0e9 100644 --- a/net/rubygem-dogapi/Makefile +++ b/net/rubygem-dogapi/Makefile @@ -1,20 +1,19 @@ PORTNAME= dogapi PORTVERSION= 1.45.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby bindings for Datadog API WWW= https://github.com/DataDog/dogapi-rb LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-multi_json>=0:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-domain_name/Makefile b/net/rubygem-domain_name/Makefile index 5bec76a9d979..d20ae4cc3f3b 100644 --- a/net/rubygem-domain_name/Makefile +++ b/net/rubygem-domain_name/Makefile @@ -1,21 +1,20 @@ PORTNAME= domain_name PORTVERSION= 0.5.20190701 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Domain Name manipulation library for ruby WWW= https://github.com/knu/ruby-domain_name LICENSE= BSD2CLAUSE BSD3CLAUSE MPL20 LICENSE_COMB= multi LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-unf>=0.0.5<1.0.0:textproc/rubygem-unf USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-dropbox-sdk/Makefile b/net/rubygem-dropbox-sdk/Makefile index 3f1e89a8304e..3b0791c1fb90 100644 --- a/net/rubygem-dropbox-sdk/Makefile +++ b/net/rubygem-dropbox-sdk/Makefile @@ -1,20 +1,19 @@ PORTNAME= dropbox-sdk PORTVERSION= 1.6.5 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Library of the Dropbox API web endpoints WWW= https://www.dropbox.com/developers LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-json>=0:devel/rubygem-json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-aliyun/Makefile b/net/rubygem-fog-aliyun/Makefile index d906bebe0682..9368f5d43881 100644 --- a/net/rubygem-fog-aliyun/Makefile +++ b/net/rubygem-fog-aliyun/Makefile @@ -1,24 +1,23 @@ PORTNAME= fog-aliyun PORTVERSION= 0.3.19 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support aliyun OSS/ECS WWW= https://github.com/fog/fog-aliyun LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-aliyun-sdk>=0.8.0<0.9:devel/rubygem-aliyun-sdk \ rubygem-fog-core>=0:devel/rubygem-fog-core \ rubygem-fog-json>=0:devel/rubygem-fog-json \ rubygem-ipaddress>=0.8<1:net/rubygem-ipaddress \ rubygem-xml-simple>=1.1<2:textproc/rubygem-xml-simple USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-atmos/Makefile b/net/rubygem-fog-atmos/Makefile index 6efaac63dc1a..9bf14135dbf0 100644 --- a/net/rubygem-fog-atmos/Makefile +++ b/net/rubygem-fog-atmos/Makefile @@ -1,21 +1,20 @@ PORTNAME= fog-atmos PORTVERSION= 0.1.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support Atmos Cloud Storage WWW= https://github.com/fog/fog-atmos LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core>=0:devel/rubygem-fog-core \ rubygem-fog-xml>=0:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-aws/Makefile b/net/rubygem-fog-aws/Makefile index 696622f70b83..b8445bb16fe9 100644 --- a/net/rubygem-fog-aws/Makefile +++ b/net/rubygem-fog-aws/Makefile @@ -1,25 +1,24 @@ PORTNAME= fog-aws PORTVERSION= 3.15.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support Amazon Web Services WWW= https://github.com/fog/fog-aws LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core>=2.1<3:devel/rubygem-fog-core \ rubygem-fog-json>=1.1<2:devel/rubygem-fog-json \ rubygem-fog-xml>=0.1<1:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/console ${STAGEDIR}${PREFIX}/bin/setup .include diff --git a/net/rubygem-fog-azure/Makefile b/net/rubygem-fog-azure/Makefile index a2ec902dba1f..0e2b6ade20bd 100644 --- a/net/rubygem-fog-azure/Makefile +++ b/net/rubygem-fog-azure/Makefile @@ -1,24 +1,23 @@ PORTNAME= fog-azure PORTVERSION= 0.0.2 PORTREVISION= 2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Module for the 'fog' gem to support Microsoft Azure WWW= https://github.com/fog/fog-azure LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-azure>=0.6<1:net/rubygem-azure \ rubygem-fog-core1>=1.27<2:devel/rubygem-fog-core1 \ rubygem-fog-json>=1.0<2:devel/rubygem-fog-json \ rubygem-fog-xml>=0.1<1:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-brightbox/Makefile b/net/rubygem-fog-brightbox/Makefile index 0f682a260cf4..8f46c18cc491 100644 --- a/net/rubygem-fog-brightbox/Makefile +++ b/net/rubygem-fog-brightbox/Makefile @@ -1,22 +1,21 @@ PORTNAME= fog-brightbox PORTVERSION= 1.8.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support Brightbox Cloud WWW= https://github.com/fog/fog-brightbox LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-dry-inflector>=0:devel/rubygem-dry-inflector \ rubygem-fog-core>=1.45<3.0:devel/rubygem-fog-core \ rubygem-fog-json>=0:devel/rubygem-fog-json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-cloudatcost/Makefile b/net/rubygem-fog-cloudatcost/Makefile index d75b1b9d51de..b71a39ab9ed9 100644 --- a/net/rubygem-fog-cloudatcost/Makefile +++ b/net/rubygem-fog-cloudatcost/Makefile @@ -1,22 +1,21 @@ PORTNAME= fog-cloudatcost PORTVERSION= 0.4.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support CloudAtCost WWW= https://github.com/fog/fog-cloudatcost LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-fog-core>=0:devel/rubygem-fog-core \ rubygem-fog-json>=0:devel/rubygem-fog-json \ rubygem-ipaddress>=0:net/rubygem-ipaddress USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-cloudstack/Makefile b/net/rubygem-fog-cloudstack/Makefile index f1b302cda84c..eaa867f094c9 100644 --- a/net/rubygem-fog-cloudstack/Makefile +++ b/net/rubygem-fog-cloudstack/Makefile @@ -1,22 +1,21 @@ PORTNAME= fog-cloudstack PORTVERSION= 0.1.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support CloudStack WWW= https://github.com/fog/fog-cloudstack LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core>=2.1<3:devel/rubygem-fog-core \ rubygem-fog-json>=1.1<2:devel/rubygem-fog-json \ rubygem-fog-xml>=0.1<1:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-digitalocean/Makefile b/net/rubygem-fog-digitalocean/Makefile index 96561cfacdcd..ab74d1ce30d2 100644 --- a/net/rubygem-fog-digitalocean/Makefile +++ b/net/rubygem-fog-digitalocean/Makefile @@ -1,23 +1,22 @@ PORTNAME= fog-digitalocean PORTVERSION= 0.4.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support DigitalOcean WWW= https://github.com/fog/fog-digitalocean LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core>=0:devel/rubygem-fog-core \ rubygem-fog-json>=0:devel/rubygem-fog-json \ rubygem-fog-xml>=0:textproc/rubygem-fog-xml \ rubygem-ipaddress>=0.5:net/rubygem-ipaddress USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-dnsimple/Makefile b/net/rubygem-fog-dnsimple/Makefile index 75565231d60b..6bccc3d2616f 100644 --- a/net/rubygem-fog-dnsimple/Makefile +++ b/net/rubygem-fog-dnsimple/Makefile @@ -1,24 +1,23 @@ PORTNAME= fog-dnsimple PORTVERSION= 2.1.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support DNSimple WWW= https://github.com/fog/fog-dnsimple LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-fog-core>=1.38<3:devel/rubygem-fog-core \ rubygem-fog-json>=0:devel/rubygem-fog-json USES= gem -USE_RUBY= yes NO_ARCH= yes post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/console ${STAGEDIR}${PREFIX}/bin/setup .include diff --git a/net/rubygem-fog-dynect/Makefile b/net/rubygem-fog-dynect/Makefile index 0569ea718adc..cb9883ed5b2b 100644 --- a/net/rubygem-fog-dynect/Makefile +++ b/net/rubygem-fog-dynect/Makefile @@ -1,22 +1,21 @@ PORTNAME= fog-dynect PORTVERSION= 0.5.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support Dynect DNS WWW= https://github.com/fog/fog-dynect LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core>=0:devel/rubygem-fog-core \ rubygem-fog-json>=0:devel/rubygem-fog-json \ rubygem-fog-xml>=0:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-ecloud/Makefile b/net/rubygem-fog-ecloud/Makefile index 6bb8495fc1f6..a19f4227f201 100644 --- a/net/rubygem-fog-ecloud/Makefile +++ b/net/rubygem-fog-ecloud/Makefile @@ -1,21 +1,20 @@ PORTNAME= fog-ecloud PORTVERSION= 0.3.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support Terremark EnterpriseCloud WWW= https://github.com/fog/fog-ecloud LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core>=0:devel/rubygem-fog-core \ rubygem-fog-xml>=0:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-google/Makefile b/net/rubygem-fog-google/Makefile index c8fb5429e121..a94c539eb741 100644 --- a/net/rubygem-fog-google/Makefile +++ b/net/rubygem-fog-google/Makefile @@ -1,33 +1,32 @@ PORTNAME= fog-google PORTVERSION= 1.19.0 PORTREVISION= 2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support Google Cloud WWW= https://github.com/fog/fog-google LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core210>=0<2.3:devel/rubygem-fog-core210 \ rubygem-fog-json>=1.2<2:devel/rubygem-fog-json \ rubygem-fog-xml>=0.1.0<0.2:textproc/rubygem-fog-xml \ rubygem-google-apis-compute_v1>=0.14<1:devel/rubygem-google-apis-compute_v1 \ rubygem-google-apis-dns_v1>=0.12<1:dns/rubygem-google-apis-dns_v1 \ rubygem-google-apis-iamcredentials_v1>=0.6<1:devel/rubygem-google-apis-iamcredentials_v1 \ rubygem-google-apis-monitoring_v3>=0.12<1:devel/rubygem-google-apis-monitoring_v3 \ rubygem-google-apis-pubsub_v1>=0.7<1:devel/rubygem-google-apis-pubsub_v1 \ rubygem-google-apis-sqladmin_v1beta4>=0.13<1:devel/rubygem-google-apis-sqladmin_v1beta4 \ rubygem-google-apis-storage_v1>=0.6<1:devel/rubygem-google-apis-storage_v1 \ rubygem-google-cloud-env>=1.2<2:net/rubygem-google-cloud-env USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= .github/scripts/setup_creds.sh .include diff --git a/net/rubygem-fog-gridscale/Makefile b/net/rubygem-fog-gridscale/Makefile index f3a0178427d8..9267b6e2a21e 100644 --- a/net/rubygem-fog-gridscale/Makefile +++ b/net/rubygem-fog-gridscale/Makefile @@ -1,22 +1,21 @@ PORTNAME= fog-gridscale PORTVERSION= 0.1.5 PORTREVISION= 1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= egypcio@FreeBSD.org COMMENT= Module for the 'fog' gem to support gridscale WWW= https://github.com/gridscale/fog-gridscale LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core>=0:devel/rubygem-fog-core \ rubygem-fog-json>=0:devel/rubygem-fog-json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-internet-archive/Makefile b/net/rubygem-fog-internet-archive/Makefile index f2963bf58160..a332fb33135c 100644 --- a/net/rubygem-fog-internet-archive/Makefile +++ b/net/rubygem-fog-internet-archive/Makefile @@ -1,21 +1,20 @@ PORTNAME= fog-internet-archive PORTVERSION= 0.0.2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support Internet Archive WWW= https://github.com/fog/fog-internet-archive LICENSE= MIT RUN_DEPENDS= rubygem-fog-core>=0:devel/rubygem-fog-core \ rubygem-fog-json>=0:devel/rubygem-fog-json \ rubygem-fog-xml>=0:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-joyent/Makefile b/net/rubygem-fog-joyent/Makefile index c7dbb4ccf572..afe9939b0236 100644 --- a/net/rubygem-fog-joyent/Makefile +++ b/net/rubygem-fog-joyent/Makefile @@ -1,22 +1,21 @@ PORTNAME= fog-joyent PORTVERSION= 0.0.1 PORTREVISION= 2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support Joyent WWW= https://github.com/fog/fog-joyent LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core1>=1.42<2:devel/rubygem-fog-core1 \ rubygem-fog-json>=1.0:devel/rubygem-fog-json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-local/Makefile b/net/rubygem-fog-local/Makefile index e4a1262fddd8..af8d4b304fa1 100644 --- a/net/rubygem-fog-local/Makefile +++ b/net/rubygem-fog-local/Makefile @@ -1,20 +1,19 @@ PORTNAME= fog-local PORTVERSION= 0.8.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support local filesystem storage WWW= https://github.com/fog/fog-local LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core>=1.27<3.0:devel/rubygem-fog-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-openstack/Makefile b/net/rubygem-fog-openstack/Makefile index eb41d6eea662..0078cbe53d63 100644 --- a/net/rubygem-fog-openstack/Makefile +++ b/net/rubygem-fog-openstack/Makefile @@ -1,21 +1,20 @@ PORTNAME= fog-openstack PORTVERSION= 1.1.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support OpenStack clouds WWW= https://github.com/fog/fog-openstack LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core>=2.1<3:devel/rubygem-fog-core \ rubygem-fog-json>=1.0:devel/rubygem-fog-json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-ovirt/Makefile b/net/rubygem-fog-ovirt/Makefile index 93e5dea6fc3a..94967b3e417a 100644 --- a/net/rubygem-fog-ovirt/Makefile +++ b/net/rubygem-fog-ovirt/Makefile @@ -1,24 +1,23 @@ PORTNAME= fog-ovirt PORTVERSION= 2.0.2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support oVirt platform WWW= https://github.com/fog/fog-ovirt LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-activesupport60>=0:devel/rubygem-activesupport60 \ rubygem-fog-core>=0:devel/rubygem-fog-core \ rubygem-fog-json>=0:devel/rubygem-fog-json \ rubygem-fog-xml>=0:textproc/rubygem-fog-xml \ rubygem-ovirt-engine-sdk>=4.3.1:net/rubygem-ovirt-engine-sdk USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-powerdns/Makefile b/net/rubygem-fog-powerdns/Makefile index 7c49fc427821..1fc2518b028c 100644 --- a/net/rubygem-fog-powerdns/Makefile +++ b/net/rubygem-fog-powerdns/Makefile @@ -1,22 +1,21 @@ PORTNAME= fog-powerdns PORTVERSION= 0.2.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support PowerDNS DNS services WWW= https://github.com/fog/fog-powerdns LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-fog-core>=0:devel/rubygem-fog-core \ rubygem-fog-json>=0:devel/rubygem-fog-json \ rubygem-fog-xml>=0:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-profitbricks/Makefile b/net/rubygem-fog-profitbricks/Makefile index 236db5a31679..e8837b64507a 100644 --- a/net/rubygem-fog-profitbricks/Makefile +++ b/net/rubygem-fog-profitbricks/Makefile @@ -1,22 +1,21 @@ PORTNAME= fog-profitbricks PORTVERSION= 4.1.1 PORTREVISION= 2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support ProfitBricks WWW= https://github.com/fog/fog-profitbricks LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core1>=1.42<2:devel/rubygem-fog-core1 \ rubygem-fog-json>=1.0<2:devel/rubygem-fog-json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-rackspace/Makefile b/net/rubygem-fog-rackspace/Makefile index 85a9276ea5e0..f7f3a70b9640 100644 --- a/net/rubygem-fog-rackspace/Makefile +++ b/net/rubygem-fog-rackspace/Makefile @@ -1,23 +1,22 @@ PORTNAME= fog-rackspace PORTVERSION= 0.1.6 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support Rackspace WWW= https://github.com/fog/fog-rackspace LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core>=1.35:devel/rubygem-fog-core \ rubygem-fog-json>=1.0:devel/rubygem-fog-json \ rubygem-fog-xml>=0.1:textproc/rubygem-fog-xml \ rubygem-ipaddress>=0.8:net/rubygem-ipaddress USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-radosgw/Makefile b/net/rubygem-fog-radosgw/Makefile index d519692028a1..bebc8632629f 100644 --- a/net/rubygem-fog-radosgw/Makefile +++ b/net/rubygem-fog-radosgw/Makefile @@ -1,22 +1,21 @@ PORTNAME= fog-radosgw PORTVERSION= 0.0.5 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Fog backend for provisioning users on Ceph Radosgw WWW= https://github.com/fog/fog-radosgw LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core>=1.21.0:devel/rubygem-fog-core \ rubygem-fog-json>=0:devel/rubygem-fog-json \ rubygem-fog-xml>=0.0.1:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-riakcs/Makefile b/net/rubygem-fog-riakcs/Makefile index 55c05c668613..794abf78355c 100644 --- a/net/rubygem-fog-riakcs/Makefile +++ b/net/rubygem-fog-riakcs/Makefile @@ -1,22 +1,21 @@ PORTNAME= fog-riakcs PORTVERSION= 0.1.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support RiakCS WWW= https://github.com/fog/fog-riakcs LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core>=0:devel/rubygem-fog-core \ rubygem-fog-json>=0:devel/rubygem-fog-json \ rubygem-fog-xml>=0:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-sakuracloud/Makefile b/net/rubygem-fog-sakuracloud/Makefile index 835d547ff674..4c7d694f002f 100644 --- a/net/rubygem-fog-sakuracloud/Makefile +++ b/net/rubygem-fog-sakuracloud/Makefile @@ -1,21 +1,20 @@ PORTNAME= fog-sakuracloud PORTVERSION= 1.7.5 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support Sakura no Cloud WWW= https://github.com/fog/fog-sakuracloud LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core>=0:devel/rubygem-fog-core \ rubygem-fog-json>=0:devel/rubygem-fog-json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-serverlove/Makefile b/net/rubygem-fog-serverlove/Makefile index d13ffc4cf670..389146999e2c 100644 --- a/net/rubygem-fog-serverlove/Makefile +++ b/net/rubygem-fog-serverlove/Makefile @@ -1,21 +1,20 @@ PORTNAME= fog-serverlove PORTVERSION= 0.1.2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support ServerLove WWW= https://github.com/fog/fog-serverlove LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core>=0:devel/rubygem-fog-core \ rubygem-fog-json>=0:devel/rubygem-fog-json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-softlayer/Makefile b/net/rubygem-fog-softlayer/Makefile index 19c9d0198b43..c5bed99f6129 100644 --- a/net/rubygem-fog-softlayer/Makefile +++ b/net/rubygem-fog-softlayer/Makefile @@ -1,20 +1,19 @@ PORTNAME= fog-softlayer PORTVERSION= 1.1.4 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provider to use the SoftLayer Cloud in applications WWW= https://github.com/fog/fog-softlayer LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-fog-core>=0:devel/rubygem-fog-core \ rubygem-fog-json>=0:devel/rubygem-fog-json NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/net/rubygem-fog-storm_on_demand/Makefile b/net/rubygem-fog-storm_on_demand/Makefile index 31422a4e0c38..5ef7640882c9 100644 --- a/net/rubygem-fog-storm_on_demand/Makefile +++ b/net/rubygem-fog-storm_on_demand/Makefile @@ -1,21 +1,20 @@ PORTNAME= fog-storm_on_demand PORTVERSION= 0.1.1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support StormOnDemand WWW= https://github.com/fog/fog-storm_on_demand LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core>=0:devel/rubygem-fog-core \ rubygem-fog-json>=0:devel/rubygem-fog-json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-terremark/Makefile b/net/rubygem-fog-terremark/Makefile index cc8af4217f33..6c6acfc4ec71 100644 --- a/net/rubygem-fog-terremark/Makefile +++ b/net/rubygem-fog-terremark/Makefile @@ -1,21 +1,20 @@ PORTNAME= fog-terremark PORTVERSION= 0.1.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support Terremark vCloud WWW= https://github.com/fog/fog-terremark LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core>=0:devel/rubygem-fog-core \ rubygem-fog-xml>=0:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-vmfusion/Makefile b/net/rubygem-fog-vmfusion/Makefile index 764c9038b807..eb42c8b2965b 100644 --- a/net/rubygem-fog-vmfusion/Makefile +++ b/net/rubygem-fog-vmfusion/Makefile @@ -1,21 +1,20 @@ PORTNAME= fog-vmfusion PORTVERSION= 0.1.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support VMware Fusion WWW= https://github.com/fog/fog-vmfusion LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fission>=0:emulators/rubygem-fission \ rubygem-fog-core>=0:devel/rubygem-fog-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-voxel/Makefile b/net/rubygem-fog-voxel/Makefile index b64a964c50b0..19a33b9bc92d 100644 --- a/net/rubygem-fog-voxel/Makefile +++ b/net/rubygem-fog-voxel/Makefile @@ -1,21 +1,20 @@ PORTNAME= fog-voxel PORTVERSION= 0.1.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support Voxel WWW= https://github.com/fog/fog-voxel LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core>=0:devel/rubygem-fog-core \ rubygem-fog-xml>=0:textproc/rubygem-fog-xml USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-vsphere/Makefile b/net/rubygem-fog-vsphere/Makefile index 31a01e24ba4e..08a41688f8cf 100644 --- a/net/rubygem-fog-vsphere/Makefile +++ b/net/rubygem-fog-vsphere/Makefile @@ -1,21 +1,20 @@ PORTNAME= fog-vsphere PORTVERSION= 3.5.2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support vSphere WWW= https://github.com/fog/fog-vsphere LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core>=0:devel/rubygem-fog-core \ rubygem-rbvmomi>=1.9<4:net/rubygem-rbvmomi USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-fog-xenserver/Makefile b/net/rubygem-fog-xenserver/Makefile index f91483153ca5..0ccbfc38a901 100644 --- a/net/rubygem-fog-xenserver/Makefile +++ b/net/rubygem-fog-xenserver/Makefile @@ -1,22 +1,21 @@ PORTNAME= fog-xenserver PORTVERSION= 1.0.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Module for the 'fog' gem to support XENSERVER WWW= https://github.com/fog/fog-xenserver LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core>=0:devel/rubygem-fog-core \ rubygem-fog-xml>=0:textproc/rubygem-fog-xml \ rubygem-xmlrpc>=0:net/rubygem-xmlrpc USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-gitaly-proto/Makefile b/net/rubygem-gitaly-proto/Makefile index 4aa3f824d40e..2aa93a5dd5a4 100644 --- a/net/rubygem-gitaly-proto/Makefile +++ b/net/rubygem-gitaly-proto/Makefile @@ -1,19 +1,18 @@ PORTNAME= gitaly-proto PORTVERSION= 1.37.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Protobuf specifications and client libraries for Gitaly WWW= https://gitlab.com/gitlab-org/gitaly-proto LICENSE= MIT RUN_DEPENDS= rubygem-grpc>=1.0:net/rubygem-grpc USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-gitaly/Makefile b/net/rubygem-gitaly/Makefile index f90eab2b45f9..a27046c91b1a 100644 --- a/net/rubygem-gitaly/Makefile +++ b/net/rubygem-gitaly/Makefile @@ -1,21 +1,20 @@ PORTNAME= gitaly PORTVERSION= 15.5.2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Auto-generated gRPC client for gitaly WWW= https://gitlab.com/gitlab-org/gitaly LICENSE= MIT RUN_DEPENDS= rubygem-grpc142>=1.0<2.0:net/rubygem-grpc142 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= gitlab .include diff --git a/net/rubygem-gitlab-fog-azure-rm/Makefile b/net/rubygem-gitlab-fog-azure-rm/Makefile index 17f0e288113f..6cb9f50be7e8 100644 --- a/net/rubygem-gitlab-fog-azure-rm/Makefile +++ b/net/rubygem-gitlab-fog-azure-rm/Makefile @@ -1,25 +1,24 @@ PORTNAME= gitlab-fog-azure-rm PORTVERSION= 1.4.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Stripped-down fork that enables Azure Blob Storage WWW= https://gitlab.com/gitlab-org/gitlab-fog-azure-rm LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-azure-storage-blob>=2.0<3:devel/rubygem-azure-storage-blob \ rubygem-azure-storage-common>=2.0<3:devel/rubygem-azure-storage-common \ rubygem-fog-core>=2.1.0<2.4:devel/rubygem-fog-core \ rubygem-fog-json>=1.2.0<1.3:devel/rubygem-fog-json \ rubygem-mime-types>=0:misc/rubygem-mime-types \ rubygem-ms_rest_azure>=0.12.0<0.13:devel/rubygem-ms_rest_azure USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-gitlab-omniauth-openid-connect/Makefile b/net/rubygem-gitlab-omniauth-openid-connect/Makefile index 26f5924bf72e..21ffce4209fb 100644 --- a/net/rubygem-gitlab-omniauth-openid-connect/Makefile +++ b/net/rubygem-gitlab-omniauth-openid-connect/Makefile @@ -1,22 +1,21 @@ PORTNAME= gitlab-omniauth-openid-connect PORTVERSION= 0.10.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= OpenID Connect Strategy for OmniAuth WWW= https://gitlab.com/gitlab-org/gitlab-omniauth-openid-connect LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-addressable>=2.7<3.0:www/rubygem-addressable \ rubygem-omniauth1>=1.9<3.0:security/rubygem-omniauth1 \ rubygem-openid_connect>=1.2<2.0:net/rubygem-openid_connect USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-gitlab_omniauth-ldap/Makefile b/net/rubygem-gitlab_omniauth-ldap/Makefile index cd2f0f6db742..7ee86969369d 100644 --- a/net/rubygem-gitlab_omniauth-ldap/Makefile +++ b/net/rubygem-gitlab_omniauth-ldap/Makefile @@ -1,23 +1,22 @@ PORTNAME= gitlab_omniauth-ldap PORTVERSION= 2.2.0 PORTREVISION= 0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= LDAP strategy for OmniAuth WWW= https://gitlab.com/gitlab-org/omniauth-ldap LICENSE= MIT RUN_DEPENDS= rubygem-net-ldap>=0.16<1:net/rubygem-net-ldap \ rubygem-omniauth>=1.3<3:security/rubygem-omniauth \ rubygem-pyu-ruby-sasl>=0.0.3.3<0.1:security/rubygem-pyu-ruby-sasl \ rubygem-rubyntlm>=0.5<1:net/rubygem-rubyntlm USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-google-cloud-bigquery/Makefile b/net/rubygem-google-cloud-bigquery/Makefile index b7720d334a40..67271c2ac1c9 100644 --- a/net/rubygem-google-cloud-bigquery/Makefile +++ b/net/rubygem-google-cloud-bigquery/Makefile @@ -1,25 +1,24 @@ PORTNAME= google-cloud-bigquery PORTVERSION= 1.18.0 PORTREVISION= 1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sanpei@FreeBSD.org COMMENT= Official Ruby library for Google BigQuery WWW= https://github.com/googleapis/google-cloud-ruby/tree/master/google-cloud-bigquery LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby \ rubygem-google-api-client>=0.33<1:devel/rubygem-google-api-client \ rubygem-google-cloud-core>=1.2<2:net/rubygem-google-cloud-core \ rubygem-googleauth>=0.9<2:security/rubygem-googleauth \ rubygem-mini_mime>=1.0<2:mail/rubygem-mini_mime USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-google-cloud-bigtable-admin-v2/Makefile b/net/rubygem-google-cloud-bigtable-admin-v2/Makefile index 7625fd841fa9..99985490394d 100644 --- a/net/rubygem-google-cloud-bigtable-admin-v2/Makefile +++ b/net/rubygem-google-cloud-bigtable-admin-v2/Makefile @@ -1,22 +1,21 @@ PORTNAME= google-cloud-bigtable-admin-v2 PORTVERSION= 0.15.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby Client for the Cloud Bigtable Admin V2 API WWW= https://github.com/googleapis/google-cloud-ruby/tree/master/google-cloud-bigtable-admin-v2 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-gapic-common>=0.10<2.0:devel/rubygem-gapic-common \ rubygem-google-cloud-errors>=1.0<2:net/rubygem-google-cloud-errors \ rubygem-grpc-google-iam-v1>=1.1<2:devel/rubygem-grpc-google-iam-v1 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-google-cloud-bigtable-v2/Makefile b/net/rubygem-google-cloud-bigtable-v2/Makefile index f91fd4e2f2d0..4a3d5d723f46 100644 --- a/net/rubygem-google-cloud-bigtable-v2/Makefile +++ b/net/rubygem-google-cloud-bigtable-v2/Makefile @@ -1,21 +1,20 @@ PORTNAME= google-cloud-bigtable-v2 PORTVERSION= 0.7.1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby Client for the Cloud Bigtable V2 API WWW= https://github.com/googleapis/google-cloud-ruby/tree/main/google-cloud-bigtable-v2 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-gapic-common>=0.12<2.0:devel/rubygem-gapic-common \ rubygem-google-cloud-errors>=1.0<2:net/rubygem-google-cloud-errors USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-google-cloud-bigtable/Makefile b/net/rubygem-google-cloud-bigtable/Makefile index e4547bc0c0a1..ea96c310976c 100644 --- a/net/rubygem-google-cloud-bigtable/Makefile +++ b/net/rubygem-google-cloud-bigtable/Makefile @@ -1,22 +1,21 @@ PORTNAME= google-cloud-bigtable PORTVERSION= 2.7.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official library for Cloud Bigtable API WWW= https://github.com/googleapis/google-cloud-ruby/tree/main/google-cloud-bigtable LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-google-cloud-bigtable-admin-v2>=0.0<1:net/rubygem-google-cloud-bigtable-admin-v2 \ rubygem-google-cloud-bigtable-v2>=0.0<1:net/rubygem-google-cloud-bigtable-v2 \ rubygem-google-cloud-core>=1.5<2:net/rubygem-google-cloud-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-google-cloud-core/Makefile b/net/rubygem-google-cloud-core/Makefile index 9d08a0bbc86d..0a7573a2f917 100644 --- a/net/rubygem-google-cloud-core/Makefile +++ b/net/rubygem-google-cloud-core/Makefile @@ -1,21 +1,20 @@ PORTNAME= google-cloud-core PORTVERSION= 1.6.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Internal shared library for Google Cloud Client Library WWW= https://github.com/googleapis/google-cloud-ruby/tree/master/google-cloud-core LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-google-cloud-env>=1.0<2:net/rubygem-google-cloud-env \ rubygem-google-cloud-errors>=1.0<2:net/rubygem-google-cloud-errors USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-google-cloud-env/Makefile b/net/rubygem-google-cloud-env/Makefile index 6c8ef91f7cbe..4343f4d951ca 100644 --- a/net/rubygem-google-cloud-env/Makefile +++ b/net/rubygem-google-cloud-env/Makefile @@ -1,20 +1,19 @@ PORTNAME= google-cloud-env PORTVERSION= 1.6.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Provides information on Google Cloud Platform hosting environment WWW= https://github.com/googleapis/ruby-cloud-env LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-faraday>=0.17.3<3.0:www/rubygem-faraday USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-google-cloud-errors/Makefile b/net/rubygem-google-cloud-errors/Makefile index ef712775d2bf..ace66bd9c123 100644 --- a/net/rubygem-google-cloud-errors/Makefile +++ b/net/rubygem-google-cloud-errors/Makefile @@ -1,18 +1,17 @@ PORTNAME= google-cloud-errors PORTVERSION= 1.3.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Define error classes for google-cloud-ruby WWW= https://github.com/googleapis/google-cloud-ruby/tree/main/google-cloud-errors LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-google-cloud-logging-v2/Makefile b/net/rubygem-google-cloud-logging-v2/Makefile index ebd61687d66f..d29e407cfdde 100644 --- a/net/rubygem-google-cloud-logging-v2/Makefile +++ b/net/rubygem-google-cloud-logging-v2/Makefile @@ -1,21 +1,20 @@ PORTNAME= google-cloud-logging-v2 PORTVERSION= 0.8.1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby Client for the Cloud Logging V2 API WWW= https://github.com/googleapis/google-cloud-ruby/tree/master/google-cloud-logging-v2 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-gapic-common>=0.10<2.0:devel/rubygem-gapic-common \ rubygem-google-cloud-errors>=1.0<2:net/rubygem-google-cloud-errors USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-google-cloud-logging/Makefile b/net/rubygem-google-cloud-logging/Makefile index 4634350df54b..7fe92426edc6 100644 --- a/net/rubygem-google-cloud-logging/Makefile +++ b/net/rubygem-google-cloud-logging/Makefile @@ -1,23 +1,22 @@ PORTNAME= google-cloud-logging PORTVERSION= 2.3.2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official library for Stackdriver Logging WWW= https://github.com/googleapis/google-cloud-ruby/tree/main/google-cloud-logging LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-concurrent-ruby>=1.1<2:devel/rubygem-concurrent-ruby \ rubygem-google-cloud-core>=1.5<2:net/rubygem-google-cloud-core \ rubygem-google-cloud-logging-v2>=0.0<1:net/rubygem-google-cloud-logging-v2 \ rubygem-stackdriver-core>=1.3<2:net/rubygem-stackdriver-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-google-cloud-pubsub-v1/Makefile b/net/rubygem-google-cloud-pubsub-v1/Makefile index e4b0f7ef93c5..f47a45be32f8 100644 --- a/net/rubygem-google-cloud-pubsub-v1/Makefile +++ b/net/rubygem-google-cloud-pubsub-v1/Makefile @@ -1,22 +1,21 @@ PORTNAME= google-cloud-pubsub-v1 PORTVERSION= 0.12.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby Client for the Cloud Pub/Sub V1 API WWW= https://github.com/googleapis/google-cloud-ruby/tree/main/google-cloud-pubsub-v1 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-gapic-common>=0.12<2.0:devel/rubygem-gapic-common \ rubygem-google-cloud-errors>=1.0<2:net/rubygem-google-cloud-errors \ rubygem-google-iam-v1>=0.0<2.0:devel/rubygem-google-iam-v1 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-google-cloud-pubsub/Makefile b/net/rubygem-google-cloud-pubsub/Makefile index 48a7c6f3f4a3..0fb40ec39d5d 100644 --- a/net/rubygem-google-cloud-pubsub/Makefile +++ b/net/rubygem-google-cloud-pubsub/Makefile @@ -1,23 +1,22 @@ PORTNAME= google-cloud-pubsub PORTVERSION= 2.13.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official library for Google Cloud Pub/Sub WWW= https://github.com/googleapis/google-cloud-ruby/tree/main/google-cloud-pubsub LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-concurrent-ruby>=1.1<2:devel/rubygem-concurrent-ruby \ rubygem-google-cloud-core>=1.5<2:net/rubygem-google-cloud-core \ rubygem-google-cloud-pubsub-v1>=0.8<1:net/rubygem-google-cloud-pubsub-v1 \ rubygem-retriable>=3.1<4:devel/rubygem-retriable USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-google-cloud-spanner-admin-database-v1/Makefile b/net/rubygem-google-cloud-spanner-admin-database-v1/Makefile index a4fb0cb2cc6d..9d8cc0122860 100644 --- a/net/rubygem-google-cloud-spanner-admin-database-v1/Makefile +++ b/net/rubygem-google-cloud-spanner-admin-database-v1/Makefile @@ -1,22 +1,21 @@ PORTNAME= google-cloud-spanner-admin-database-v1 PORTVERSION= 0.11.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby Client for the Cloud Spanner Database Admin V1 API WWW= https://github.com/googleapis/google-cloud-ruby/tree/main/google-cloud-spanner-admin-database-v1 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-gapic-common>=0.10<2.0:devel/rubygem-gapic-common \ rubygem-google-cloud-errors>=1.0<2:net/rubygem-google-cloud-errors \ rubygem-grpc-google-iam-v1>=1.1<2:devel/rubygem-grpc-google-iam-v1 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-google-cloud-spanner-admin-instance-v1/Makefile b/net/rubygem-google-cloud-spanner-admin-instance-v1/Makefile index f4038872c758..f99be39d1faf 100644 --- a/net/rubygem-google-cloud-spanner-admin-instance-v1/Makefile +++ b/net/rubygem-google-cloud-spanner-admin-instance-v1/Makefile @@ -1,22 +1,21 @@ PORTNAME= google-cloud-spanner-admin-instance-v1 PORTVERSION= 0.8.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby Client for the Cloud Spanner Instance Admin V1 API WWW= https://github.com/googleapis/google-cloud-ruby/tree/main/google-cloud-spanner-admin-instance-v1 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-gapic-common>=0.10<2.0:devel/rubygem-gapic-common \ rubygem-google-cloud-errors>=1.0<2:net/rubygem-google-cloud-errors \ rubygem-grpc-google-iam-v1>=1.1<2:devel/rubygem-grpc-google-iam-v1 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-google-cloud-spanner-v1/Makefile b/net/rubygem-google-cloud-spanner-v1/Makefile index 5d7ca4733b98..a7679b3e7384 100644 --- a/net/rubygem-google-cloud-spanner-v1/Makefile +++ b/net/rubygem-google-cloud-spanner-v1/Makefile @@ -1,21 +1,20 @@ PORTNAME= google-cloud-spanner-v1 PORTVERSION= 0.13.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby Client for the Cloud Spanner V1 API WWW= https://github.com/googleapis/google-cloud-ruby/tree/main/google-cloud-spanner-v1 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-gapic-common>=0.12<2.0:devel/rubygem-gapic-common \ rubygem-google-cloud-errors>=1.0<2:net/rubygem-google-cloud-errors USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-google-cloud-spanner/Makefile b/net/rubygem-google-cloud-spanner/Makefile index 4ab4354a021d..d0b1f057dc2b 100644 --- a/net/rubygem-google-cloud-spanner/Makefile +++ b/net/rubygem-google-cloud-spanner/Makefile @@ -1,24 +1,23 @@ PORTNAME= google-cloud-spanner PORTVERSION= 2.16.1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official library for Google Cloud Spanner API WWW= https://github.com/googleapis/ruby-spanner LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby \ rubygem-google-cloud-core>=1.5<2:net/rubygem-google-cloud-core \ rubygem-google-cloud-spanner-admin-database-v1>=0.1<1:net/rubygem-google-cloud-spanner-admin-database-v1 \ rubygem-google-cloud-spanner-admin-instance-v1>=0.1<1:net/rubygem-google-cloud-spanner-admin-instance-v1 \ rubygem-google-cloud-spanner-v1>=0.2<1:net/rubygem-google-cloud-spanner-v1 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-google-cloud-storage/Makefile b/net/rubygem-google-cloud-storage/Makefile index 6d88acb68eb7..a691c174a6c3 100644 --- a/net/rubygem-google-cloud-storage/Makefile +++ b/net/rubygem-google-cloud-storage/Makefile @@ -1,26 +1,25 @@ PORTNAME= google-cloud-storage PORTVERSION= 1.44.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Official library for Google Cloud Storage WWW= https://github.com/googleapis/google-cloud-ruby/tree/main/google-cloud-storage LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-addressable>=2.8<3:www/rubygem-addressable \ rubygem-digest-crc>=0.4<1:security/rubygem-digest-crc \ rubygem-google-apis-iamcredentials_v1>=0.1<1:devel/rubygem-google-apis-iamcredentials_v1 \ rubygem-google-apis-storage_v1>=0.19.0<1:devel/rubygem-google-apis-storage_v1 \ rubygem-google-cloud-core>=1.6<2:net/rubygem-google-cloud-core \ rubygem-googleauth>=0.16.2<2.0:security/rubygem-googleauth \ rubygem-mini_mime>=1.0<2:mail/rubygem-mini_mime USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-grpc/Makefile b/net/rubygem-grpc/Makefile index 9a774e0c0490..27c8500e1676 100644 --- a/net/rubygem-grpc/Makefile +++ b/net/rubygem-grpc/Makefile @@ -1,31 +1,30 @@ PORTNAME= grpc PORTVERSION= 1.48.0 PORTREVISION= 1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby implementation of gRPC WWW= https://github.com/grpc/grpc/tree/master/src/ruby LICENSE= BSD3CLAUSE LIB_DEPENDS= libcares.so:dns/c-ares \ libgrpc.so:devel/grpc RUN_DEPENDS= ca_root_nss>=0:security/ca_root_nss \ rubygem-google-protobuf>=3.19<4:devel/rubygem-google-protobuf \ 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 post-patch: @${RM} ${WRKSRC}/Makefile ${WRKSRC}/.yardopts @${RM} -r ${WRKSRC}/etc ${WRKSRC}/include ${WRKSRC}/third_party ${WRKSRC}/src/boringssl ${WRKSRC}/src/core @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/src/ruby/lib/grpc.rb @${REINPLACE_CMD} -Ee '/s\.files = /s;, "(Makefile|etc|include|third_party|src/boringssl|src/core)[^"]*"\.freeze;;g' ${WRKSRC}/${GEMSPEC} @${REINPLACE_CMD} -e '/s\.files = /s|"\.yardopts"\.freeze, ||' ${WRKSRC}/${GEMSPEC} .include diff --git a/net/rubygem-grpc142/Makefile b/net/rubygem-grpc142/Makefile index 4834089711ec..7ec96d06b6d1 100644 --- a/net/rubygem-grpc142/Makefile +++ b/net/rubygem-grpc142/Makefile @@ -1,32 +1,31 @@ PORTNAME= grpc PORTVERSION= 1.42.0 PORTREVISION= 1 CATEGORIES= net rubygems MASTER_SITES= RG PKGNAMESUFFIX= 142 MAINTAINER= mfechner@FreeBSD.org COMMENT= Ruby implementation of gRPC WWW= https://github.com/grpc/grpc/tree/master/src/ruby LICENSE= BSD3CLAUSE LIB_DEPENDS= libcares.so:dns/c-ares \ libgrpc.so:devel/grpc142 RUN_DEPENDS= ca_root_nss>=0:security/ca_root_nss \ rubygem-google-protobuf>=3.19<4:devel/rubygem-google-protobuf \ 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 post-patch: @${RM} ${WRKSRC}/Makefile ${WRKSRC}/.yardopts @${RM} -r ${WRKSRC}/etc ${WRKSRC}/include ${WRKSRC}/third_party ${WRKSRC}/src/boringssl ${WRKSRC}/src/core @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/src/ruby/lib/grpc.rb @${REINPLACE_CMD} -Ee '/s\.files = /s;, "(Makefile|etc|include|third_party|src/boringssl|src/core)[^"]*"\.freeze;;g' ${WRKSRC}/${GEMSPEC} @${REINPLACE_CMD} -e '/s\.files = /s|"\.yardopts"\.freeze, ||' ${WRKSRC}/${GEMSPEC} .include diff --git a/net/rubygem-hangouts-chat/Makefile b/net/rubygem-hangouts-chat/Makefile index 63151fe4e495..48cfe6cf8d88 100644 --- a/net/rubygem-hangouts-chat/Makefile +++ b/net/rubygem-hangouts-chat/Makefile @@ -1,17 +1,16 @@ PORTNAME= hangouts-chat PORTVERSION= 0.0.6 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Module 'hangouts-chat' gem to talk to G Suite Hangouts Chat rooms WWW= https://github.com/enzinia/hangouts-chat LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-http-parser/Makefile b/net/rubygem-http-parser/Makefile index 9fec03753404..4efe52b5134b 100644 --- a/net/rubygem-http-parser/Makefile +++ b/net/rubygem-http-parser/Makefile @@ -1,18 +1,17 @@ PORTNAME= http-parser PORTVERSION= 1.2.3 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Super fast http parser for Ruby WWW= https://github.com/cotag/http-parser LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-ffi-compiler>=1.0<2.0:devel/rubygem-ffi-compiler USES= gem -USE_RUBY= yes .include diff --git a/net/rubygem-http_parser.rb/Makefile b/net/rubygem-http_parser.rb/Makefile index e28bdbbb50aa..dd8c1780e306 100644 --- a/net/rubygem-http_parser.rb/Makefile +++ b/net/rubygem-http_parser.rb/Makefile @@ -1,16 +1,15 @@ PORTNAME= http_parser.rb PORTVERSION= 0.8.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple callback-based HTTP request/response parser WWW= https://github.com/tmm1/http_parser.rb LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE-MIT USES= gem -USE_RUBY= yes .include diff --git a/net/rubygem-httpauth/Makefile b/net/rubygem-httpauth/Makefile index 45e3d3d18951..6d7585dd64e3 100644 --- a/net/rubygem-httpauth/Makefile +++ b/net/rubygem-httpauth/Makefile @@ -1,18 +1,17 @@ PORTNAME= httpauth PORTVERSION= 0.2.1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Library for HTTP authentication protocol in RFC 2617 WWW= https://github.com/Manfred/HTTPauth LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-ipaddr/Makefile b/net/rubygem-ipaddr/Makefile index 1ec6cc11bda4..e967e2e0392d 100644 --- a/net/rubygem-ipaddr/Makefile +++ b/net/rubygem-ipaddr/Makefile @@ -1,19 +1,18 @@ PORTNAME= ipaddr PORTVERSION= 1.2.4 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Set of methods to manipulate an IP address WWW= https://github.com/ruby/ipaddr LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-ipaddr122/Makefile b/net/rubygem-ipaddr122/Makefile index ee19a2e474ce..199765485620 100644 --- a/net/rubygem-ipaddr122/Makefile +++ b/net/rubygem-ipaddr122/Makefile @@ -1,22 +1,21 @@ PORTNAME= ipaddr PORTVERSION= 1.2.2 CATEGORIES= net rubygems MASTER_SITES= RG PKGNAMESUFFIX= 122 MAINTAINER= ruby@FreeBSD.org COMMENT= Set of methods to manipulate an IP address WWW= https://github.com/ruby/ipaddr LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\.2\.2 .include diff --git a/net/rubygem-ipaddress/Makefile b/net/rubygem-ipaddress/Makefile index 8610a2ffb605..5e68954c4b7c 100644 --- a/net/rubygem-ipaddress/Makefile +++ b/net/rubygem-ipaddress/Makefile @@ -1,17 +1,16 @@ PORTNAME= ipaddress PORTVERSION= 0.8.3 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= IP address manipulation library for rubygems WWW= https://github.com/bluemonk/ipaddress LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/net/rubygem-iproto/Makefile b/net/rubygem-iproto/Makefile index ea8665a8acba..b63afe883b10 100644 --- a/net/rubygem-iproto/Makefile +++ b/net/rubygem-iproto/Makefile @@ -1,19 +1,18 @@ PORTNAME= iproto PORTVERSION= 0.3.17 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby implementation of Mail.Ru iproto protocol WWW= https://github.com/mailru/iproto-ruby RUN_DEPENDS= rubygem-bin_utils>=0.0.3:devel/rubygem-bin_utils LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/net/rubygem-kas-grpc/Makefile b/net/rubygem-kas-grpc/Makefile index 36cb449c82fc..eeb74cefc1d3 100644 --- a/net/rubygem-kas-grpc/Makefile +++ b/net/rubygem-kas-grpc/Makefile @@ -1,21 +1,20 @@ PORTNAME= kas-grpc PORTVERSION= 0.0.2 PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Auto-generated gRPC client for KAS WWW= https://gitlab.com/gitlab-org/cluster-integration/gitlab-agent LICENSE= MIT RUN_DEPENDS= rubygem-grpc142>=1.0<2.0:net/rubygem-grpc142 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-lita-gems/Makefile b/net/rubygem-lita-gems/Makefile index 91cc7f786fb0..ea312bc269cc 100644 --- a/net/rubygem-lita-gems/Makefile +++ b/net/rubygem-lita-gems/Makefile @@ -1,22 +1,21 @@ PORTNAME= lita-gems PORTVERSION= 1.1.0 PORTREVISION= 2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Lita handler for rubygems.org querying WWW= https://github.com/marsz/lita-gems LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-gems>=0.8.0:devel/rubygem-gems \ rubygem-lita>=2.6:net-im/rubygem-lita USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-macaddr/Makefile b/net/rubygem-macaddr/Makefile index 2ce30a860f9d..ab51777020b2 100644 --- a/net/rubygem-macaddr/Makefile +++ b/net/rubygem-macaddr/Makefile @@ -1,20 +1,19 @@ PORTNAME= macaddr PORTVERSION= 1.7.2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Cross Platform Mac Address Determination for Ruby WWW= https://github.com/ahoward/macaddr LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual RUN_DEPENDS= rubygem-systemu>=2.6.5<2.7:devel/rubygem-systemu USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-maxmind-db/Makefile b/net/rubygem-maxmind-db/Makefile index 21c61b5bed82..22724d91c6b0 100644 --- a/net/rubygem-maxmind-db/Makefile +++ b/net/rubygem-maxmind-db/Makefile @@ -1,20 +1,19 @@ PORTNAME= maxmind-db PORTVERSION= 1.1.1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= MaxMind DB Reader Ruby API WWW= https://github.com/maxmind/MaxMind-DB-Reader-ruby LICENSE= APACHE20 MIT LICENSE_COMB= dual LICENSE_FILE_APACHE20= ${WRKSRC}/LICENSE-APACHE LICENSE_FILE_MIT= ${WRKSRC}/LICENSE-MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-mqtt/Makefile b/net/rubygem-mqtt/Makefile index aaf422cd6ef0..66aa6fce608b 100644 --- a/net/rubygem-mqtt/Makefile +++ b/net/rubygem-mqtt/Makefile @@ -1,17 +1,16 @@ PORTNAME= mqtt PORTVERSION= 0.5.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Implementation of the MQTT protocol WWW= https://github.com/njh/ruby-mqtt LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md NO_ARCH= yes USES= gem -USE_RUBY= yes .include diff --git a/net/rubygem-nats-pure/Makefile b/net/rubygem-nats-pure/Makefile index feac624e6f46..469d54b1fd1d 100644 --- a/net/rubygem-nats-pure/Makefile +++ b/net/rubygem-nats-pure/Makefile @@ -1,17 +1,16 @@ PORTNAME= nats-pure DISTVERSION= 0.7.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= romain@FreeBSD.org COMMENT= Ruby client for NATS, the cloud native messaging system WWW= https://rubygems.org/gems/nats-pure LICENSE= APACHE20 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-net-ldap/Makefile b/net/rubygem-net-ldap/Makefile index 682109449ce7..0b1854f780ab 100644 --- a/net/rubygem-net-ldap/Makefile +++ b/net/rubygem-net-ldap/Makefile @@ -1,18 +1,17 @@ PORTNAME= net-ldap PORTVERSION= 0.17.1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Pure Ruby LDAP support library with most client features WWW= https://github.com/ruby-ldap/ruby-net-ldap LICENSE= MIT LICENSE_FILE= ${WRKSRC}/License.rdoc USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-net-netrc/Makefile b/net/rubygem-net-netrc/Makefile index a4f4683377d7..58060661801d 100644 --- a/net/rubygem-net-netrc/Makefile +++ b/net/rubygem-net-netrc/Makefile @@ -1,17 +1,16 @@ PORTNAME= net-netrc PORTVERSION= 0.2.2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= don@na.rim.or.jp COMMENT= Net::Netrc provides ftp(1)-style .netrc parsing WWW= https://rubygems.org/gems/net-netrc RUN_DEPENDS= rubygem-platform>=0.3.0:devel/rubygem-platform NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/net/rubygem-net-ntp/Makefile b/net/rubygem-net-ntp/Makefile index 8070e0fb6b60..9dff52d13242 100644 --- a/net/rubygem-net-ntp/Makefile +++ b/net/rubygem-net-ntp/Makefile @@ -1,18 +1,17 @@ PORTNAME= net-ntp PORTVERSION= 2.1.3 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Implementation of the NTP protocol WWW= https://github.com/zencoder/net-ntp LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-net-ping/Makefile b/net/rubygem-net-ping/Makefile index bf21980d9a25..a03a46bba7b9 100644 --- a/net/rubygem-net-ping/Makefile +++ b/net/rubygem-net-ping/Makefile @@ -1,15 +1,14 @@ PORTNAME= net-ping PORTVERSION= 2.0.8 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= romain@FreeBSD.org COMMENT= Collection of classes that provide different ways to ping computers WWW= https://github.com/chernesk/net-ping LICENSE= APACHE20 USES= gem -USE_RUBY= yes .include diff --git a/net/rubygem-net-protocol/Makefile b/net/rubygem-net-protocol/Makefile index 8e164775f803..1ed54f2d5ef4 100644 --- a/net/rubygem-net-protocol/Makefile +++ b/net/rubygem-net-protocol/Makefile @@ -1,20 +1,19 @@ PORTNAME= net-protocol PORTVERSION= 0.1.3 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Abstruct interface for net-* client WWW= https://github.com/ruby/net-protocol LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-timeout>=0:devel/rubygem-timeout USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-netrc/Makefile b/net/rubygem-netrc/Makefile index 427df90935e9..a0764721f36c 100644 --- a/net/rubygem-netrc/Makefile +++ b/net/rubygem-netrc/Makefile @@ -1,17 +1,16 @@ PORTNAME= netrc PORTVERSION= 0.11.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Read and update netrc files WWW= https://github.com/heroku/netrc LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/net/rubygem-network_interface/Makefile b/net/rubygem-network_interface/Makefile index 30daaf123afe..79b0a03765c3 100644 --- a/net/rubygem-network_interface/Makefile +++ b/net/rubygem-network_interface/Makefile @@ -1,18 +1,17 @@ PORTNAME= network_interface PORTVERSION= 0.0.2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Get network interface information from Ruby WWW= https://github.com/rapid7/network_interface LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes PLIST_FILES= bin/list_interfaces.rb .include diff --git a/net/rubygem-nkf/Makefile b/net/rubygem-nkf/Makefile index 9794e7a1fa04..437f15a88a36 100644 --- a/net/rubygem-nkf/Makefile +++ b/net/rubygem-nkf/Makefile @@ -1,19 +1,18 @@ PORTNAME= nkf PORTVERSION= 0.1.1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby extension for Network Kanji Filter WWW= https://github.com/ruby/nkf LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-no_proxy_fix/Makefile b/net/rubygem-no_proxy_fix/Makefile index b877412cac41..708905cb88e1 100644 --- a/net/rubygem-no_proxy_fix/Makefile +++ b/net/rubygem-no_proxy_fix/Makefile @@ -1,18 +1,17 @@ PORTNAME= no_proxy_fix PORTVERSION= 0.1.2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Fix for no_proxy bug WWW= https://github.com/ermaker/no_proxy_fix LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-oauth/Makefile b/net/rubygem-oauth/Makefile index 39316166eecc..728137373a24 100644 --- a/net/rubygem-oauth/Makefile +++ b/net/rubygem-oauth/Makefile @@ -1,20 +1,19 @@ PORTNAME= oauth PORTVERSION= 0.5.14 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Rubygem for Creating both OAuth Consumers and Service Providers WWW= https://github.com/oauth-xx/oauth-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/oauth .include diff --git a/net/rubygem-oauth2/Makefile b/net/rubygem-oauth2/Makefile index 4804c7ef375b..78c99f65b71c 100644 --- a/net/rubygem-oauth2/Makefile +++ b/net/rubygem-oauth2/Makefile @@ -1,25 +1,24 @@ PORTNAME= oauth2 PORTVERSION= 2.0.9 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby wrapper for the OAuth 2.0 protocol WWW= https://github.com/oauth-xx/oauth2 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-faraday>=0.17.3<3.0:www/rubygem-faraday \ rubygem-jwt>=1.0<3.0:www/rubygem-jwt \ rubygem-multi_xml>=0.5<1:textproc/rubygem-multi_xml \ rubygem-rack>=1.2,3<4,3:www/rubygem-rack \ rubygem-snaky_hash>=2.0<3:devel/rubygem-snaky_hash \ rubygem-version_gem>=1.1<2:devel/rubygem-version_gem USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-oauth21/Makefile b/net/rubygem-oauth21/Makefile index cac79d993a0e..2edabd6dda57 100644 --- a/net/rubygem-oauth21/Makefile +++ b/net/rubygem-oauth21/Makefile @@ -1,27 +1,26 @@ PORTNAME= oauth2 PORTVERSION= 1.4.11 CATEGORIES= net rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby wrapper for the OAuth 2.0 protocol WWW= https://github.com/oauth-xx/oauth2 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-faraday>=0.17.3<3.0:www/rubygem-faraday \ rubygem-jwt>=1.0<3.0:www/rubygem-jwt \ rubygem-multi_json>=1.3<2:devel/rubygem-multi_json \ rubygem-multi_xml>=0.5<1:textproc/rubygem-multi_xml \ rubygem-rack>=1.2,3<4,3:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\. .include diff --git a/net/rubygem-octokit/Makefile b/net/rubygem-octokit/Makefile index 41b8fd3535d3..4c64cb266b33 100644 --- a/net/rubygem-octokit/Makefile +++ b/net/rubygem-octokit/Makefile @@ -1,21 +1,20 @@ PORTNAME= octokit PORTVERSION= 4.25.1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple wrapper for the GitHub API WWW= https://github.com/octokit/octokit.rb LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-faraday>=1<3:www/rubygem-faraday \ rubygem-sawyer>=0.9<1:www/rubygem-sawyer USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-octopress-deploy/Makefile b/net/rubygem-octopress-deploy/Makefile index a8bd3967d4ae..d6c024ed97dd 100644 --- a/net/rubygem-octopress-deploy/Makefile +++ b/net/rubygem-octopress-deploy/Makefile @@ -1,20 +1,19 @@ PORTNAME= octopress-deploy PORTVERSION= 1.3.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Eases deployment of Jekyll or Octopress sites WWW= https://github.com/octopress/deploy LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-colorator>=0:textproc/rubygem-colorator USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-omniauth-auth0/Makefile b/net/rubygem-omniauth-auth0/Makefile index 6b043d938427..e39f56fe4d94 100644 --- a/net/rubygem-omniauth-auth0/Makefile +++ b/net/rubygem-omniauth-auth0/Makefile @@ -1,20 +1,19 @@ PORTNAME= omniauth-auth0 PORTVERSION= 3.0.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Authentication broker supporting different identity providers WWW= https://github.com/auth0/omniauth-auth0 LICENSE= MIT RUN_DEPENDS= rubygem-omniauth>=2.0<3:security/rubygem-omniauth \ rubygem-omniauth-oauth2>=1.4<2:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-omniauth-authentiq/Makefile b/net/rubygem-omniauth-authentiq/Makefile index 516dd10b2238..0004c7ba401b 100644 --- a/net/rubygem-omniauth-authentiq/Makefile +++ b/net/rubygem-omniauth-authentiq/Makefile @@ -1,22 +1,21 @@ PORTNAME= omniauth-authentiq PORTVERSION= 0.3.3 PORTREVISION= 1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Authentiq OAuth2 Strategy for OmniAuth WWW= https://github.com/AuthentiqID/omniauth-authentiq LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-jwt>=1.5:www/rubygem-jwt \ rubygem-omniauth-oauth2>=1.5:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-omniauth-azure-activedirectory-v2/Makefile b/net/rubygem-omniauth-azure-activedirectory-v2/Makefile index f05d7b341e2d..9fa53d9a9765 100644 --- a/net/rubygem-omniauth-azure-activedirectory-v2/Makefile +++ b/net/rubygem-omniauth-azure-activedirectory-v2/Makefile @@ -1,19 +1,18 @@ PORTNAME= omniauth-azure-activedirectory-v2 PORTVERSION= 2.0.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= OAuth 2 authentication with the Azure ActiveDirectory V2 API WWW= https://github.com/RIPGlobal/omniauth-azure-activedirectory-v2 LICENSE= MIT RUN_DEPENDS= rubygem-omniauth-oauth2>=1.8<3:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-omniauth-azure-oauth2/Makefile b/net/rubygem-omniauth-azure-oauth2/Makefile index c71840182f4f..7b2a24dea668 100644 --- a/net/rubygem-omniauth-azure-oauth2/Makefile +++ b/net/rubygem-omniauth-azure-oauth2/Makefile @@ -1,22 +1,21 @@ PORTNAME= omniauth-azure-oauth2 PORTVERSION= 0.0.10 PORTREVISION= 2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Azure OAuth2 Strategy for OmniAuth WWW= https://github.com/KonaTeam/omniauth-azure-oauth2 LICENSE= MIT RUN_DEPENDS= rubygem-jwt>=1.0<3:www/rubygem-jwt \ rubygem-omniauth>=1.0<3:security/rubygem-omniauth \ rubygem-omniauth-oauth2>=1.4<2:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-omniauth-facebook/Makefile b/net/rubygem-omniauth-facebook/Makefile index 645a3e0abcf4..125d26ba85bc 100644 --- a/net/rubygem-omniauth-facebook/Makefile +++ b/net/rubygem-omniauth-facebook/Makefile @@ -1,20 +1,19 @@ PORTNAME= omniauth-facebook PORTVERSION= 9.0.0 PORTREVISION= 1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Facebook OAuth2 Strategy for OmniAuth WWW= https://github.com/simi/omniauth-facebook LICENSE= MIT RUN_DEPENDS= rubygem-omniauth-oauth2>=1.2:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-omniauth-github-discourse/Makefile b/net/rubygem-omniauth-github-discourse/Makefile index 575ff62fe392..54c7ee83f419 100644 --- a/net/rubygem-omniauth-github-discourse/Makefile +++ b/net/rubygem-omniauth-github-discourse/Makefile @@ -1,21 +1,20 @@ PORTNAME= omniauth-github-discourse PORTVERSION= 1.1.2 PORTREVISION= 1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Fork of Official OmniAuth strategy for GitHub WWW= https://github.com/omniauth/omniauth-github LICENSE= MIT RUN_DEPENDS= rubygem-omniauth1>=1.0<2:security/rubygem-omniauth1 \ rubygem-omniauth-oauth2>=1.1<2:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-omniauth-github/Makefile b/net/rubygem-omniauth-github/Makefile index 14333dfb6302..1c60acdd4b42 100644 --- a/net/rubygem-omniauth-github/Makefile +++ b/net/rubygem-omniauth-github/Makefile @@ -1,20 +1,19 @@ PORTNAME= omniauth-github PORTVERSION= 2.0.1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Official OmniAuth strategy for GitHub WWW= https://github.com/omniauth/omniauth-github LICENSE= MIT RUN_DEPENDS= rubygem-omniauth>=2.0<3:security/rubygem-omniauth \ rubygem-omniauth-oauth2>=1.8<2:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-omniauth-google-oauth2/Makefile b/net/rubygem-omniauth-google-oauth2/Makefile index 8565bf1a05b4..181b432f593e 100644 --- a/net/rubygem-omniauth-google-oauth2/Makefile +++ b/net/rubygem-omniauth-google-oauth2/Makefile @@ -1,23 +1,22 @@ PORTNAME= omniauth-google-oauth2 PORTVERSION= 1.1.1 PORTREVISION= 0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Google OAuth2 strategy for OmniAuth 1.x WWW= https://github.com/zquestz/omniauth-google-oauth2 LICENSE= MIT RUN_DEPENDS= rubygem-jwt>=2.0:www/rubygem-jwt \ rubygem-oauth2>=2.0.6<2.1:net/rubygem-oauth2 \ rubygem-omniauth>=2.0<3:security/rubygem-omniauth \ rubygem-omniauth-oauth2>=1.8.0<1.9:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-omniauth-kerberos/Makefile b/net/rubygem-omniauth-kerberos/Makefile index df726dee0f35..e9288d7c7e7e 100644 --- a/net/rubygem-omniauth-kerberos/Makefile +++ b/net/rubygem-omniauth-kerberos/Makefile @@ -1,19 +1,18 @@ PORTNAME= omniauth-kerberos PORTVERSION= 0.3.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= OmniAuth strategy for Kerberos WWW= https://github.com/jgraichen/omniauth-kerberos LICENSE= MIT RUN_DEPENDS= rubygem-omniauth-multipassword>0:security/rubygem-omniauth-multipassword \ rubygem-timfel-krb5-auth>=0.8:security/rubygem-timfel-krb5 USES= gem NO_ARCH= yes -USE_RUBY= yes .include diff --git a/net/rubygem-omniauth-oauth/Makefile b/net/rubygem-omniauth-oauth/Makefile index 01f2132c04b6..f347dd48d9d3 100644 --- a/net/rubygem-omniauth-oauth/Makefile +++ b/net/rubygem-omniauth-oauth/Makefile @@ -1,21 +1,20 @@ PORTNAME= omniauth-oauth PORTVERSION= 1.2.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Generic OAuth strategy for OmniAuth WWW= https://github.com/omniauth/omniauth-oauth LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-oauth>=0:net/rubygem-oauth \ rubygem-omniauth1>=1.0<3:security/rubygem-omniauth1 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-omniauth-oauth2/Makefile b/net/rubygem-omniauth-oauth2/Makefile index aa30ee65c853..9b8b2b51a977 100644 --- a/net/rubygem-omniauth-oauth2/Makefile +++ b/net/rubygem-omniauth-oauth2/Makefile @@ -1,22 +1,21 @@ PORTNAME= omniauth-oauth2 PORTVERSION= 1.8.0 PORTREVISION= 1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Abstract OAuth2 strategy for OmniAuth WWW= https://github.com/omniauth/omniauth-oauth2 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-oauth2>=1.4<3:net/rubygem-oauth2 \ rubygem-omniauth>=1.9<3:security/rubygem-omniauth USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-omniauth-openid/Makefile b/net/rubygem-omniauth-openid/Makefile index 673f93dff85b..3c1e726a33e9 100644 --- a/net/rubygem-omniauth-openid/Makefile +++ b/net/rubygem-omniauth-openid/Makefile @@ -1,21 +1,20 @@ PORTNAME= omniauth-openid PORTVERSION= 2.0.1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= OpenID strategy for OmniAuth WWW= https://github.com/omniauth/omniauth-openid LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-omniauth>=1.0<3.0:security/rubygem-omniauth \ rubygem-rack-openid>=1.4.0<1.5:www/rubygem-rack-openid USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-omniauth-salesforce/Makefile b/net/rubygem-omniauth-salesforce/Makefile index 2d6794a8b9fe..0072ab05b082 100644 --- a/net/rubygem-omniauth-salesforce/Makefile +++ b/net/rubygem-omniauth-salesforce/Makefile @@ -1,22 +1,21 @@ PORTNAME= omniauth-salesforce PORTVERSION= 1.0.5 PORTREVISION= 2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= OmniAuth strategy for salesforce.com WWW= https://github.com/realdoug/omniauth-salesforce LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-omniauth>=1.0<3:security/rubygem-omniauth \ rubygem-omniauth-oauth2>=1.0<2:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-omniauth-twitter/Makefile b/net/rubygem-omniauth-twitter/Makefile index dcc29d4355fe..de642f3a985a 100644 --- a/net/rubygem-omniauth-twitter/Makefile +++ b/net/rubygem-omniauth-twitter/Makefile @@ -1,20 +1,19 @@ PORTNAME= omniauth-twitter PORTVERSION= 1.4.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= OmniAuth strategy for Twitter WWW= https://github.com/arunagw/omniauth-twitter LICENSE= MIT RUN_DEPENDS= rubygem-omniauth-oauth>=1.1<2:net/rubygem-omniauth-oauth \ rubygem-rack>=0,3:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-omniauth-ultraauth/Makefile b/net/rubygem-omniauth-ultraauth/Makefile index 64405248134e..22036c9dab06 100644 --- a/net/rubygem-omniauth-ultraauth/Makefile +++ b/net/rubygem-omniauth-ultraauth/Makefile @@ -1,20 +1,19 @@ PORTNAME= omniauth-ultraauth PORTVERSION= 0.0.2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Passwordless authentication plugin WWW= https://ultraauth.com/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-omniauth_openid_connect>=0.3.0:net/rubygem-omniauth_openid_connect USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-omniauth_openid_connect/Makefile b/net/rubygem-omniauth_openid_connect/Makefile index a2ec030f74df..d0437b6371cf 100644 --- a/net/rubygem-omniauth_openid_connect/Makefile +++ b/net/rubygem-omniauth_openid_connect/Makefile @@ -1,23 +1,22 @@ PORTNAME= omniauth_openid_connect PORTVERSION= 0.3.5 PORTREVISION= 1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= OpenID Connect Strategy for OmniAuth WWW= https://github.com/m0n9oose/omniauth_openid_connect LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-addressable>=2.5<3.0:www/rubygem-addressable \ rubygem-omniauth1>=1.9<2.0:security/rubygem-omniauth1 \ rubygem-openid_connect>=1.1<2.0:net/rubygem-openid_connect USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-open-uri-cached/Makefile b/net/rubygem-open-uri-cached/Makefile index b3936587d27b..96864d40dbb4 100644 --- a/net/rubygem-open-uri-cached/Makefile +++ b/net/rubygem-open-uri-cached/Makefile @@ -1,18 +1,17 @@ PORTNAME= open-uri-cached PORTVERSION= 1.0.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= OpenURI with transparent disk caching WWW= https://github.com/tigris/open-uri-cached LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-open-uri/Makefile b/net/rubygem-open-uri/Makefile index 0def58cecb1f..0cdca41ba13c 100644 --- a/net/rubygem-open-uri/Makefile +++ b/net/rubygem-open-uri/Makefile @@ -1,23 +1,22 @@ PORTNAME= open-uri PORTVERSION= 0.2.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Easy-to-use wrapper for Net::HTTP, Net::HTTPS and Net::FTP WWW= https://github.com/ruby/open-uri LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-stringio>=0:devel/rubygem-stringio \ rubygem-time>=0:devel/rubygem-time \ rubygem-uri>=0:net/rubygem-uri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-openid_connect/Makefile b/net/rubygem-openid_connect/Makefile index 1fe8754e408b..0311ea3ca078 100644 --- a/net/rubygem-openid_connect/Makefile +++ b/net/rubygem-openid_connect/Makefile @@ -1,29 +1,28 @@ PORTNAME= openid_connect PORTVERSION= 1.2.0 PORTREVISION= 1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= OpenID Connect Server & Client Library WWW= https://github.com/nov/openid_connect LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activemodel61>=0:databases/rubygem-activemodel61 \ rubygem-attr_required>=1.0.0:devel/rubygem-attr_required \ rubygem-json-jwt>=1.5.0:www/rubygem-json-jwt \ rubygem-rack-oauth2>=1.6.1:security/rubygem-rack-oauth2 \ rubygem-swd>=1.0.0:www/rubygem-swd \ rubygem-tzinfo>=0:devel/rubygem-tzinfo \ rubygem-validate_email>=0:devel/rubygem-validate_email \ rubygem-validate_url>=0:devel/rubygem-validate_url \ rubygem-webfinger>=1.0.1:devel/rubygem-webfinger USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-opennebula/Makefile b/net/rubygem-opennebula/Makefile index 9f58190e9911..49322c608154 100644 --- a/net/rubygem-opennebula/Makefile +++ b/net/rubygem-opennebula/Makefile @@ -1,26 +1,25 @@ PORTNAME= opennebula PORTVERSION= 6.4.2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Libraries needed to talk to OpenNebula WWW= https://opennebula.io/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-ipaddress>=0:net/rubygem-ipaddress \ rubygem-json>=0:devel/rubygem-json \ rubygem-nokogiri>=0:textproc/rubygem-nokogiri \ rubygem-parse-cron>=0:textproc/rubygem-parse-cron \ rubygem-rbvmomi>=0:net/rubygem-rbvmomi \ rubygem-treetop>=0:devel/rubygem-treetop \ rubygem-xmlrpc>=0:net/rubygem-xmlrpc USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-orchestrator_client/Makefile b/net/rubygem-orchestrator_client/Makefile index e7f295974aa2..cb02f5a8fb4a 100644 --- a/net/rubygem-orchestrator_client/Makefile +++ b/net/rubygem-orchestrator_client/Makefile @@ -1,20 +1,19 @@ PORTNAME= orchestrator_client PORTVERSION= 0.6.1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= puppet@FreeBSD.org COMMENT= Client library for Puppet orchestration services WWW= https://github.com/puppetlabs/orchestrator_client-ruby LICENSE= APACHE20 RUN_DEPENDS= rubygem-faraday1>=1.4:www/rubygem-faraday1 \ rubygem-net-http-persistent>=0:www/rubygem-net-http-persistent USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-ovirt-engine-sdk/Makefile b/net/rubygem-ovirt-engine-sdk/Makefile index 6da1da691af1..f28dce47ede7 100644 --- a/net/rubygem-ovirt-engine-sdk/Makefile +++ b/net/rubygem-ovirt-engine-sdk/Makefile @@ -1,21 +1,20 @@ PORTNAME= ovirt-engine-sdk PORTVERSION= 4.4.1 PORTREVISION= 2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby SDK for the oVirt Engine API WWW= https://ovirt.org/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libcurl.so:ftp/curl RUN_DEPENDS= rubygem-json>=1<3:devel/rubygem-json USES= gem gnome USE_GNOME= libxml2 -USE_RUBY= yes .include diff --git a/net/rubygem-packetfu/Makefile b/net/rubygem-packetfu/Makefile index 4c1b44aafd37..c20ff2ecb9f9 100644 --- a/net/rubygem-packetfu/Makefile +++ b/net/rubygem-packetfu/Makefile @@ -1,20 +1,19 @@ PORTNAME= packetfu PORTVERSION= 1.1.13 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Mid-level packet manipulation library for Ruby WWW= https://github.com/packetfu/packetfu LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-pcaprub>=0:net/rubygem-pcaprub NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/net/rubygem-pcaprub/Makefile b/net/rubygem-pcaprub/Makefile index ec5124586763..5f04ee507b26 100644 --- a/net/rubygem-pcaprub/Makefile +++ b/net/rubygem-pcaprub/Makefile @@ -1,15 +1,14 @@ PORTNAME= pcaprub PORTVERSION= 0.13.1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Libpcap bindings for ruby WWW= https://github.com/shadowbq/pcaprub LICENSE= LGPL21 -USE_RUBY= yes USES= gem .include diff --git a/net/rubygem-private_address_check/Makefile b/net/rubygem-private_address_check/Makefile index fecbdb00fd10..2e6c3299ee03 100644 --- a/net/rubygem-private_address_check/Makefile +++ b/net/rubygem-private_address_check/Makefile @@ -1,20 +1,19 @@ PORTNAME= private_address_check PORTVERSION= 0.5.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Check address for private network (RFC 1918) WWW= https://github.com/jtdowney/private_address_check LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= private_address_check_project .include diff --git a/net/rubygem-proxifier/Makefile b/net/rubygem-proxifier/Makefile index d4502bdb44f6..ebe5f8f4c7e8 100644 --- a/net/rubygem-proxifier/Makefile +++ b/net/rubygem-proxifier/Makefile @@ -1,20 +1,19 @@ PORTNAME= proxifier PORTVERSION= 1.0.3 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Add HTTP or SOCKS proxies support and force TCPSocket to use WWW= https://github.com/samuelkadolph/ruby-proxifier LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/pirb bin/pruby .include diff --git a/net/rubygem-qiniu/Makefile b/net/rubygem-qiniu/Makefile index b7c242d411ce..fdbd0ae6aaa6 100644 --- a/net/rubygem-qiniu/Makefile +++ b/net/rubygem-qiniu/Makefile @@ -1,22 +1,21 @@ PORTNAME= qiniu PORTVERSION= 6.9.1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Qiniu Resource (Cloud) Storage SDK for Ruby WWW= https://github.com/qiniu/ruby-sdk LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-mime-types>=3.1<4:misc/rubygem-mime-types \ rubygem-rest-client>=2.0<3:www/rubygem-rest-client \ rubygem-rexml>=3.2<4:textproc/rubygem-rexml USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-rabbiter/Makefile b/net/rubygem-rabbiter/Makefile index ce1851ddab19..56774949aeee 100644 --- a/net/rubygem-rabbiter/Makefile +++ b/net/rubygem-rabbiter/Makefile @@ -1,22 +1,21 @@ PORTNAME= rabbiter PORTVERSION= 2.0.4 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= tota@FreeBSD.org COMMENT= Twitter client for Rabbit WWW= https://rabbit-shocker.org/en/rabbiter/ LICENSE= GPLv2+ RUN_DEPENDS= rubygem-gio2>=2.1.1:devel/rubygem-gio2 \ rubygem-rabbit>=2.0.0:misc/rubygem-rabbit \ rubygem-twitter_oauth>0:security/rubygem-twitter_oauth \ rubygem-twitter>0:net/rubygem-twitter NO_ARCH= yes USES= gem -USE_RUBY= yes PLIST_FILES= bin/rabbiter .include diff --git a/net/rubygem-rbvmomi/Makefile b/net/rubygem-rbvmomi/Makefile index acf3eeed4dbe..09023bdfc13b 100644 --- a/net/rubygem-rbvmomi/Makefile +++ b/net/rubygem-rbvmomi/Makefile @@ -1,25 +1,24 @@ PORTNAME= rbvmomi PORTVERSION= 3.0.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby interface to the VMware vSphere API WWW= https://github.com/vmware/rbvmomi LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-builder>=3.2<4:devel/rubygem-builder \ rubygem-json>=2.3<3:devel/rubygem-json \ rubygem-nokogiri>=1.10<2:textproc/rubygem-nokogiri \ rubygem-optimist>=3.0<4:devel/rubygem-optimist USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rbvmomish .include diff --git a/net/rubygem-right_aws/Makefile b/net/rubygem-right_aws/Makefile index aac39a236050..bd4fe1137da4 100644 --- a/net/rubygem-right_aws/Makefile +++ b/net/rubygem-right_aws/Makefile @@ -1,25 +1,24 @@ PORTNAME= right_aws PORTVERSION= 3.1.0 PORTREVISION= 1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provides access to Amazon EC2, S3, SQS, and SDB web services WWW= https://github.com/rightscale/right_aws LICENSE= MIT RUN_DEPENDS= rubygem-right_http_connection>=1.2.5:net/rubygem-right_http_connection USES= gem -USE_RUBY= yes NO_ARCH= yes OPTIONS_DEFINE= LIBXML LIBXML_DESC= Use libxml instead of REXML LIBXML_RUN_DEPENDS= rubygem-libxml-ruby>=0.5.2:textproc/rubygem-libxml-ruby .include diff --git a/net/rubygem-right_flexiscale/Makefile b/net/rubygem-right_flexiscale/Makefile index 5bf555ce79ea..cfc72f2bbaed 100644 --- a/net/rubygem-right_flexiscale/Makefile +++ b/net/rubygem-right_flexiscale/Makefile @@ -1,20 +1,19 @@ PORTNAME= right_flexiscale PORTVERSION= 0.1.0 PORTREVISION= 1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provides Ruby access to the Flexiscale API WWW= https://github.com/rightscale/right_flexiscale LICENSE= MIT RUN_DEPENDS= rubygem-soap4r>=1.5.8:devel/rubygem-soap4r NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/net/rubygem-right_gogrid/Makefile b/net/rubygem-right_gogrid/Makefile index 404530227776..69bb59e70982 100644 --- a/net/rubygem-right_gogrid/Makefile +++ b/net/rubygem-right_gogrid/Makefile @@ -1,20 +1,19 @@ PORTNAME= right_gogrid PORTVERSION= 0.1.0 PORTREVISION= 1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provides Ruby access to the GoGrid API WWW= https://github.com/rightscale/right_gogrid LICENSE= MIT RUN_DEPENDS= rubygem-right_http_connection>=1.2.4:net/rubygem-right_http_connection USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-right_http_connection/Makefile b/net/rubygem-right_http_connection/Makefile index 19b7a0df92df..2d867b17627d 100644 --- a/net/rubygem-right_http_connection/Makefile +++ b/net/rubygem-right_http_connection/Makefile @@ -1,17 +1,16 @@ PORTNAME= right_http_connection PORTVERSION= 1.5.1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Persistent HTTP/HTTPS connections with error retries WWW= https://github.com/rightscale/right_http_connection LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-right_slicehost/Makefile b/net/rubygem-right_slicehost/Makefile index c54c19972d8c..62d11a9f63f8 100644 --- a/net/rubygem-right_slicehost/Makefile +++ b/net/rubygem-right_slicehost/Makefile @@ -1,18 +1,17 @@ PORTNAME= right_slicehost PORTVERSION= 0.1.0 PORTREVISION= 1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provides Ruby access to the Slicehost API WWW= https://github.com/rightscale/right_slicehost RUN_DEPENDS= rubygem-right_http_connection>=1.2.4:net/rubygem-right_http_connection USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-rsync/Makefile b/net/rubygem-rsync/Makefile index 9cf297d07066..38ce4ec1404e 100644 --- a/net/rubygem-rsync/Makefile +++ b/net/rubygem-rsync/Makefile @@ -1,20 +1,19 @@ PORTNAME= rsync PORTVERSION= 1.0.9 PORTREVISION= 1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby rsync library WWW= https://github.com/jbussdieker/ruby-rsync LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rsync:net/rsync NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/net/rubygem-ruby-growl/Makefile b/net/rubygem-ruby-growl/Makefile index d25597cb5c2f..3ec45a5065f9 100644 --- a/net/rubygem-ruby-growl/Makefile +++ b/net/rubygem-ruby-growl/Makefile @@ -1,22 +1,21 @@ PORTNAME= ruby-growl PORTVERSION= 4.1 PORTREVISION= 1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Pure-ruby growl notifier WWW= https://github.com/drbrain/ruby-growl LICENSE= BSD3CLAUSE RUN_DEPENDS= rubygem-uuid>=2.3.5:devel/rubygem-uuid NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/growl .include diff --git a/net/rubygem-ruby-openid/Makefile b/net/rubygem-ruby-openid/Makefile index 02b40da952bb..dab79c7d8410 100644 --- a/net/rubygem-ruby-openid/Makefile +++ b/net/rubygem-ruby-openid/Makefile @@ -1,18 +1,17 @@ PORTNAME= ruby-openid PORTVERSION= 2.9.2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= OpenID library written in pure Ruby WWW= https://github.com/openid/ruby-openid LICENSE= APACHE20 RUBY LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/net/rubygem-ruby-yadis/Makefile b/net/rubygem-ruby-yadis/Makefile index 2d7091716991..3a1c8fdbc4d7 100644 --- a/net/rubygem-ruby-yadis/Makefile +++ b/net/rubygem-ruby-yadis/Makefile @@ -1,17 +1,16 @@ PORTNAME= ruby-yadis PORTVERSION= 0.3.4 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Yadis Service discovery library written in pure Ruby WWW= http://www.openidenabled.com/yadis/libraries/ruby/ LICENSE= APACHE20 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/net/rubygem-ruby_smb/Makefile b/net/rubygem-ruby_smb/Makefile index 26000a717663..ce46b53dfdbd 100644 --- a/net/rubygem-ruby_smb/Makefile +++ b/net/rubygem-ruby_smb/Makefile @@ -1,28 +1,27 @@ PORTNAME= ruby_smb PORTVERSION= 3.1.7 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Message creator and parser for the SMB protocol family WWW= https://github.com/rapid7/ruby_smb LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-bindata>=0:devel/rubygem-bindata \ rubygem-openssl-ccm>=0:security/rubygem-openssl-ccm \ rubygem-openssl-cmac>=0:security/rubygem-openssl-cmac \ rubygem-rubyntlm>=0:net/rubygem-rubyntlm \ 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 \ examples/rename_file.rb NO_ARCH= yes .include diff --git a/net/rubygem-rubyntlm/Makefile b/net/rubygem-rubyntlm/Makefile index 7d4167331bac..54fb5fea0990 100644 --- a/net/rubygem-rubyntlm/Makefile +++ b/net/rubygem-rubyntlm/Makefile @@ -1,18 +1,17 @@ PORTNAME= rubyntlm PORTVERSION= 0.6.3 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Message creator and parser for the NTLM authentication WWW= https://github.com/WinRb/rubyntlm LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-rubytter/Makefile b/net/rubygem-rubytter/Makefile index bf6af70fe9ac..cf9daecbf761 100644 --- a/net/rubygem-rubytter/Makefile +++ b/net/rubygem-rubytter/Makefile @@ -1,20 +1,19 @@ PORTNAME= rubytter PORTVERSION= 1.5.1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple Twitter library WWW= https://github.com/jugyo/rubytter LICENSE= MIT RUN_DEPENDS= rubygem-json>=1.1.3:devel/rubygem-json \ rubygem-oauth>=0.3.6:net/rubygem-oauth USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-rudy/Makefile b/net/rubygem-rudy/Makefile index c483ee8b1a67..90edb5c0892a 100644 --- a/net/rubygem-rudy/Makefile +++ b/net/rubygem-rudy/Makefile @@ -1,32 +1,31 @@ PORTNAME= rudy PORTVERSION= 0.9.8.020 PORTREVISION= 1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= swills@FreeBSD.org COMMENT= EC2 deployment tool WWW= http://solutious.com/projects/rudy/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-amazon-ec2>=0.9.10:net/rubygem-amazon-ec2 \ rubygem-aws-s3>=0.6.1:net/rubygem-aws-s3 \ rubygem-annoy>=0.5.6:devel/rubygem-annoy \ rubygem-attic>=0.5.3:devel/rubygem-attic \ rubygem-caesars>=0.7.4:devel/rubygem-caesars \ rubygem-drydock>=0.6.9:devel/rubygem-drydock \ rubygem-highline>=1.5.1:devel/rubygem-highline \ rubygem-gibbler>=0.8.9:devel/rubygem-gibbler \ rubygem-rye>=0.9.3:net/rubygem-rye \ 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 NO_ARCH= yes .include diff --git a/net/rubygem-rye/Makefile b/net/rubygem-rye/Makefile index 80355b574f9e..d9ea5886b4c2 100644 --- a/net/rubygem-rye/Makefile +++ b/net/rubygem-rye/Makefile @@ -1,26 +1,25 @@ PORTNAME= rye PORTVERSION= 0.9.13 PORTREVISION= 1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= swills@FreeBSD.org COMMENT= Safely run SSH commands on a bunch of machines at the same time WWW= https://github.com/delano/rye/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-annoy>=0:devel/rubygem-annoy \ rubygem-docile>=1.0.1:devel/rubygem-docile \ rubygem-highline>=1.5.1:devel/rubygem-highline \ rubygem-net-scp>=1.0.2:security/rubygem-net-scp \ rubygem-net-ssh>=2.0.13:security/rubygem-net-ssh \ rubygem-sysinfo>=0.8.1:devel/rubygem-sysinfo NO_ARCH= yes -USE_RUBY= yes USES= gem shebangfix SHEBANG_FILES= try/*.rb tst/*.rb .include diff --git a/net/rubygem-serverengine/Makefile b/net/rubygem-serverengine/Makefile index ed894cf0198d..233330d50270 100644 --- a/net/rubygem-serverengine/Makefile +++ b/net/rubygem-serverengine/Makefile @@ -1,18 +1,17 @@ PORTNAME= serverengine PORTVERSION= 2.3.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= girgen@FreeBSD.org COMMENT= Framework to implement robust multiprocess servers WWW= https://github.com/treasure-data/serverengine LICENSE= APACHE20 RUN_DEPENDS= rubygem-sigdump>=0.2.2:devel/rubygem-sigdump NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/net/rubygem-simple_oauth/Makefile b/net/rubygem-simple_oauth/Makefile index 575d401fb8f8..2d996354feb6 100644 --- a/net/rubygem-simple_oauth/Makefile +++ b/net/rubygem-simple_oauth/Makefile @@ -1,18 +1,17 @@ PORTNAME= simple_oauth PORTVERSION= 0.3.1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Builds and verifies OAuth headers WWW= https://github.com/laserlemon/simple_oauth LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-spamcheck/Makefile b/net/rubygem-spamcheck/Makefile index 07f38e7c4b00..428ec4ad7fe8 100644 --- a/net/rubygem-spamcheck/Makefile +++ b/net/rubygem-spamcheck/Makefile @@ -1,20 +1,19 @@ PORTNAME= spamcheck PORTVERSION= 1.0.0 PORTREVISION= 0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Auto-generated gRPC client for SpamCheck WWW= https://rubygems.org/gems/spamcheck LICENSE= MIT RUN_DEPENDS= rubygem-grpc142>=1.0<2.0:net/rubygem-grpc142 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-stackdriver-core/Makefile b/net/rubygem-stackdriver-core/Makefile index a0e0b88edac4..4be44cc922f4 100644 --- a/net/rubygem-stackdriver-core/Makefile +++ b/net/rubygem-stackdriver-core/Makefile @@ -1,20 +1,19 @@ PORTNAME= stackdriver-core PORTVERSION= 1.5.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Internal shared library for the Ruby Stackdriver integration libraries WWW= https://github.com/googleapis/google-cloud-ruby/tree/master/stackdriver-core LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-google-cloud-core>=1.2<2:net/rubygem-google-cloud-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-stompserver/Makefile b/net/rubygem-stompserver/Makefile index 5ab17705efa3..9c565d2e8589 100644 --- a/net/rubygem-stompserver/Makefile +++ b/net/rubygem-stompserver/Makefile @@ -1,22 +1,21 @@ PORTNAME= stompserver PORTVERSION= 0.9.9 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provide reliable messaging using the stomp protocol LICENSE= MIT RUN_DEPENDS= rubygem-daemons>=1.0.2:devel/rubygem-daemons \ rubygem-eventmachine>=0.7.2:devel/rubygem-eventmachine \ rubygem-hoe>=1.3.0:devel/rubygem-hoe USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/stompserver .include diff --git a/net/rubygem-t/Makefile b/net/rubygem-t/Makefile index e33c84639fcb..578ef571e57c 100644 --- a/net/rubygem-t/Makefile +++ b/net/rubygem-t/Makefile @@ -1,29 +1,28 @@ PORTNAME= t PORTVERSION= 3.1.0 PORTREVISION= 3 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Command-line power tool for Twitter WWW= https://sferik.github.io/t/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-geokit>=1.9<2:graphics/rubygem-geokit \ rubygem-htmlentities>=4.3<5:textproc/rubygem-htmlentities \ rubygem-launchy>=2.4<3:devel/rubygem-launchy \ rubygem-oauth>=0.5.1<0.6:net/rubygem-oauth \ rubygem-retryable>=3.0<4:devel/rubygem-retryable \ rubygem-thor>=0.19.1<2:devel/rubygem-thor \ rubygem-twitter>=6.0:net/rubygem-twitter USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/t .include diff --git a/net/rubygem-train-core/Makefile b/net/rubygem-train-core/Makefile index 7fe4ef7aef99..f0c8ed531f24 100644 --- a/net/rubygem-train-core/Makefile +++ b/net/rubygem-train-core/Makefile @@ -1,25 +1,24 @@ PORTNAME= train-core PORTVERSION= 3.10.7 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Minimal Train with a backends for ssh and winrm WWW= https://github.com/inspec/train LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-addressable>=2.5<3:www/rubygem-addressable \ rubygem-ffi>=1.3.1:devel/rubygem-ffi \ rubygem-json>=1.8<3.0:devel/rubygem-json \ rubygem-mixlib-shellout>=2.0<4.0:devel/rubygem-mixlib-shellout \ rubygem-net-scp>=1.2<5.0:security/rubygem-net-scp \ rubygem-net-ssh6>=2.9<8.0:security/rubygem-net-ssh6 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-train-winrm/Makefile b/net/rubygem-train-winrm/Makefile index 5718c62efea1..ff17c9579156 100644 --- a/net/rubygem-train-winrm/Makefile +++ b/net/rubygem-train-winrm/Makefile @@ -1,22 +1,21 @@ PORTNAME= train-winrm PORTVERSION= 0.2.11 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Allow applictaions using Train to speak to Windows using Remote Management WWW= https://github.com/inspec/train-winrm LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-winrm>=2.0<3:sysutils/rubygem-winrm \ rubygem-winrm-elevated>=1.2.2<1.3:sysutils/rubygem-winrm-elevated \ rubygem-winrm-fs>=1.0<2:sysutils/rubygem-winrm-fs USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-train/Makefile b/net/rubygem-train/Makefile index 7881101b0c9b..0765a11c4c20 100644 --- a/net/rubygem-train/Makefile +++ b/net/rubygem-train/Makefile @@ -1,31 +1,30 @@ PORTNAME= train PORTVERSION= 3.10.7 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Transport interface to talk to different backends WWW= https://github.com/inspec/train LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport60>=6.0.3.1:devel/rubygem-activesupport60 \ rubygem-azure_graph_rbac>=0.16<1:devel/rubygem-azure_graph_rbac \ rubygem-azure_mgmt_key_vault>=0.17<1:devel/rubygem-azure_mgmt_key_vault \ rubygem-azure_mgmt_resources>=0.15<1:devel/rubygem-azure_mgmt_resources \ rubygem-azure_mgmt_security>=0.18<1:devel/rubygem-azure_mgmt_security \ rubygem-azure_mgmt_storage>=0.18<1:devel/rubygem-azure_mgmt_storage \ rubygem-docker-api>=1.26<3.0:net/rubygem-docker-api \ rubygem-google-api-client>=0.23.9:devel/rubygem-google-api-client \ rubygem-googleauth>=0.6.6:security/rubygem-googleauth \ rubygem-inifile>=3.0<4:textproc/rubygem-inifile \ rubygem-train-core>=${PORTVERSION}<${PORTVERSION}_99:net/rubygem-train-core \ rubygem-train-winrm>=0.2<1:net/rubygem-train-winrm USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-tweetstream/Makefile b/net/rubygem-tweetstream/Makefile index 612037b48ce0..7bbed5d4a4fd 100644 --- a/net/rubygem-tweetstream/Makefile +++ b/net/rubygem-tweetstream/Makefile @@ -1,26 +1,25 @@ PORTNAME= tweetstream PORTVERSION= 2.6.1 PORTREVISION= 1 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= TweetStream provides simple Ruby access to Twitter Streaming API WWW= https://github.com/tweetstream/tweetstream LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-daemons>=1.1<2:devel/rubygem-daemons \ rubygem-em-http-request>=1.1.1:www/rubygem-em-http-request \ rubygem-em-twitter>=0.3<1:www/rubygem-em-twitter \ rubygem-multi_json>=1.3<2:devel/rubygem-multi_json \ rubygem-twitter>=5.5:net/rubygem-twitter USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-twitter-stream/Makefile b/net/rubygem-twitter-stream/Makefile index c53e78baa7eb..4eb87b9676ce 100644 --- a/net/rubygem-twitter-stream/Makefile +++ b/net/rubygem-twitter-stream/Makefile @@ -1,23 +1,22 @@ PORTNAME= twitter-stream PORTVERSION= 0.1.16 PORTREVISION= 2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Twitter realtime API client WWW= https://github.com/voloko/twitter-stream LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-eventmachine>=0.12.8:devel/rubygem-eventmachine \ rubygem-http_parser.rb>=0.5.1:net/rubygem-http_parser.rb \ rubygem-simple_oauth>=0.1.4:net/rubygem-simple_oauth USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-twitter/Makefile b/net/rubygem-twitter/Makefile index 18a5240f7bbe..0cb17b4c6a04 100644 --- a/net/rubygem-twitter/Makefile +++ b/net/rubygem-twitter/Makefile @@ -1,30 +1,29 @@ PORTNAME= twitter PORTVERSION= 7.0.0 PORTREVISION= 3 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby interface to the Twitter API WWW= https://sferik.github.io/twitter/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-addressable>=2.3<3:www/rubygem-addressable \ rubygem-buftok>=0.2.0<1:devel/rubygem-buftok \ rubygem-equalizer>=0.0.11<0.1:devel/rubygem-equalizer \ rubygem-http4>=4.0<5:www/rubygem-http4 \ rubygem-http-form_data>=2.0<3:www/rubygem-http-form_data \ rubygem-http_parser.rb>=0.6.0<1:net/rubygem-http_parser.rb \ rubygem-memoizable>=0.4.0<0.5:devel/rubygem-memoizable \ rubygem-multipart-post>=2.0<3:www/rubygem-multipart-post \ rubygem-naught>=1.0<2:devel/rubygem-naught \ rubygem-simple_oauth>=0.3.0<0.4:net/rubygem-simple_oauth USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-twitter4r/Makefile b/net/rubygem-twitter4r/Makefile index fc5612f25754..233adc0cd3a6 100644 --- a/net/rubygem-twitter4r/Makefile +++ b/net/rubygem-twitter4r/Makefile @@ -1,23 +1,22 @@ PORTNAME= twitter4r PORTVERSION= 0.7.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Twitter client API in pure Ruby WWW= https://github.com/twitter4r/twitter4r-core LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-json>=1.1.1:devel/rubygem-json \ rubygem-oauth>=0.4.1:net/rubygem-oauth USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/t4r-oauth-access bin/t4rsh .include diff --git a/net/rubygem-u2f/Makefile b/net/rubygem-u2f/Makefile index 77798dfbb12a..e6f085b52882 100644 --- a/net/rubygem-u2f/Makefile +++ b/net/rubygem-u2f/Makefile @@ -1,18 +1,17 @@ PORTNAME= u2f PORTVERSION= 1.0.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Library for handling registration and authentication of U2F devices WWW= https://github.com/castle/ruby-u2f LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-u2f0/Makefile b/net/rubygem-u2f0/Makefile index fdca37fb911d..661c840e16c0 100644 --- a/net/rubygem-u2f0/Makefile +++ b/net/rubygem-u2f0/Makefile @@ -1,21 +1,20 @@ PORTNAME= u2f PORTVERSION= 0.2.1 CATEGORIES= net rubygems MASTER_SITES= RG PKGNAMESUFFIX= 0 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Library for handling registration and authentication of U2F devices WWW= https://github.com/castle/ruby-u2f LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^0\. .include diff --git a/net/rubygem-uri-redis/Makefile b/net/rubygem-uri-redis/Makefile index 87594e49d7e6..b467a373f6da 100644 --- a/net/rubygem-uri-redis/Makefile +++ b/net/rubygem-uri-redis/Makefile @@ -1,18 +1,17 @@ PORTNAME= uri-redis PORTVERSION= 0.4.2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Support for parsing redis://host:port/dbindex/keyname WWW= https://github.com/delano/uri-redis LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-uri/Makefile b/net/rubygem-uri/Makefile index d179ee8c1f2b..194f85949845 100644 --- a/net/rubygem-uri/Makefile +++ b/net/rubygem-uri/Makefile @@ -1,19 +1,18 @@ PORTNAME= uri PORTVERSION= 0.11.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Provide classes to handle Uniform Resource Identifiers WWW= https://github.com/ruby/uri LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-uri_template/Makefile b/net/rubygem-uri_template/Makefile index fe3d552520ab..0a07d9f2e40f 100644 --- a/net/rubygem-uri_template/Makefile +++ b/net/rubygem-uri_template/Makefile @@ -1,17 +1,16 @@ PORTNAME= uri_template PORTVERSION= 0.7.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Templating system for URIs WWW= https://github.com/hannesg/uri_template LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/net/rubygem-whois/Makefile b/net/rubygem-whois/Makefile index 06eea3448c69..8f976a936b73 100644 --- a/net/rubygem-whois/Makefile +++ b/net/rubygem-whois/Makefile @@ -1,21 +1,20 @@ PORTNAME= whois PORTVERSION= 5.1.0 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby whois library WWW= https://whoisrb.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activesupport4>=3:devel/rubygem-activesupport4 NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/whoisrb .include diff --git a/net/rubygem-xmlrpc/Makefile b/net/rubygem-xmlrpc/Makefile index 2b3e4ba100d7..f2e95b6b1d5f 100644 --- a/net/rubygem-xmlrpc/Makefile +++ b/net/rubygem-xmlrpc/Makefile @@ -1,21 +1,20 @@ PORTNAME= xmlrpc PORTVERSION= 0.3.2 CATEGORIES= net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby standard library package 'xmlrpc' WWW= https://github.com/ruby/xmlrpc LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-webrick>=0:www/rubygem-webrick USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/ports-mgmt/packagekit/Makefile b/ports-mgmt/packagekit/Makefile index 8d5268d6a4eb..25a3b007ff6e 100644 --- a/ports-mgmt/packagekit/Makefile +++ b/ports-mgmt/packagekit/Makefile @@ -1,92 +1,92 @@ PORTNAME= PackageKit PORTVERSION= 0.6.11 PORTREVISION?= 9 CATEGORIES= ports-mgmt sysutils MASTER_SITES= http://www.packagekit.org/releases/ MAINTAINER= gnome@FreeBSD.org COMMENT?= DBUS packaging abstraction layer WWW= http://www.packagekit.org BUILD_DEPENDS= ${LOCALBASE}/bin/docbook2man:textproc/docbook-utils LIB_DEPENDS= libdbus-glib-1.so:devel/dbus-glib \ libpolkit-gobject-1.so:sysutils/polkit \ libck-connector.so:sysutils/consolekit2 RUN_DEPENDS= lsof:sysutils/lsof \ bash:shells/bash IGNORE= does not build with new polkit USES= cpe gettext gmake gnome iconv libtool pathfix pkgconfig \ python:build shared-mime-info shebangfix sqlite:3 CPE_VENDOR= packagekit_project SHEBANG_FILES= backends/test/helpers/search-name.sh \ contrib/cron/packagekit-background.cron USE_GNOME= glib20 intltool introspection USE_LDCONFIG= yes GNU_CONFIGURE= yes LIBS+= -lexecinfo CONFIGURE_ARGS+=--with-security-framework=polkit \ --localstatedir=/var \ --disable-static \ --disable-gtk-doc \ --disable-managed \ --disable-browser-plugin \ --disable-gstreamer-plugin \ --disable-networkmanager \ --disable-connman INSTALL_TARGET= install-strip MAKE_JOBS_UNSAFE=yes .if !defined(SLAVEPORT) OPTIONS_DEFINE= PORTS MANPAGES OPTIONS_DEFAULT=PORTS PORTS_DESC=Use portupgrade for management, dummy if disabled .include . if ${PORT_OPTIONS:MMANPAGES} BUILD_DEPENDS+= docbook-sgml>0:textproc/docbook-sgml \ xsltproc:textproc/libxslt \ ${LOCALBASE}/share/xsl/docbook/manpages/docbook.xsl:textproc/docbook-xsl PLIST_SUB+= MAN='' . else CONFIGURE_ARGS+=--disable-man-pages PLIST_SUB+= MAN='@comment ' . endif . 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 CONFIGURE_ARGS+=--disable-ports --with-default-backend=dummy PLIST_SUB+= PORTS="@comment " . endif CONFIGURE_ARGS+=--disable-gtk-module PLIST_SUB+= GTK="@comment " CONFIGURE_ARGS+=--disable-qt .endif post-patch: @${REINPLACE_CMD} -E -e 's/.*WARNINGFLAGS_CPP.*-Werror/#$$&/' \ -e 's|-DG_DISABLE_DEPRECATED||g' \ -e 's|-Wmissing-include-dirs||g' ${WRKSRC}/configure @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/src/pk-lsof.c @${REINPLACE_CMD} -e 's|girepositry|girepository|g' \ ${WRKSRC}/lib/packagekit-glib2/Makefile.in @${FIND} ${WRKSRC} -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \ '/xsltproc/s|.xsl [$$]? &> /dev|.xsl $$? > /dev|g' post-install: .if !defined(SLAVEPORT) @${INSTALL_DATA} ${WRKSRC}/data/transactions.db \ ${STAGEDIR}${PREFIX}/share/PackageKit/transactions.db .endif .include diff --git a/ports-mgmt/portupgrade-devel/Makefile b/ports-mgmt/portupgrade-devel/Makefile index 44aaa0892fe9..79470ab216d7 100644 --- a/ports-mgmt/portupgrade-devel/Makefile +++ b/ports-mgmt/portupgrade-devel/Makefile @@ -1,61 +1,60 @@ PORTNAME= portupgrade PORTVERSION= 20180309 PORTREVISION= 0 PORTEPOCH= 3 CATEGORIES= ports-mgmt MASTER_SITES= GH \ http://mirror.shatow.net/freebsd/${PORTNAME}/ \ LOCAL/bdrewery/${PORTNAME}/ PKGNAMESUFFIX= -devel MAINTAINER= bdrewery@FreeBSD.org COMMENT= FreeBSD ports/packages management tool (devel version) WWW= https://wiki.freebsd.org/portupgrade LICENSE= BSD3CLAUSE 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}" EXAMPLESDIR= ${PREFIX}/share/examples/pkgtools DOCSDIR= ${PREFIX}/share/doc/pkgtools OPTIONS_DEFINE= DOCS EXAMPLES .include INSTALL_TARGET= install .if ${PORT_OPTIONS:MDOCS} INSTALL_TARGET+= install-doc .endif .if ${RUBY_VER} >= 3.2 # databases/ruby-bdb is BROKEN with Ruby 3.2 RUN_DEPENDS+= rubygem-dbm>0:databases/rubygem-dbm .else # For PKG_DBDRIVER={bdb_btree,bdb_hash} RUN_DEPENDS+= ${RUBY_SITEARCHLIBDIR}/bdb.so:databases/ruby-bdb .endif regression-test: patch cd ${WRKSRC} && ${MAKE} test post-patch: .SILENT REVISION=`readlink "${_DISTDIR}/portupgrade/latest" | ${SED} -E -e 's,.*pkgtools-(.*).tar.gz,\1,g'` && ${SED} -E -e "s,%%DATE%%,${PORTVERSION},g;s,%%REVISION%%,$${REVISION},g" \ ${WRKSRC}/lib/pkgtools/revision.rb.in > ${WRKSRC}/lib/pkgtools/revision.rb post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/lib/compat/pkg .include diff --git a/ports-mgmt/portupgrade/Makefile b/ports-mgmt/portupgrade/Makefile index 4fc1e8e6b928..f9a899bb78f4 100644 --- a/ports-mgmt/portupgrade/Makefile +++ b/ports-mgmt/portupgrade/Makefile @@ -1,53 +1,52 @@ PORTNAME= portupgrade PORTVERSION= 2.4.16 PORTREVISION= 0 PORTEPOCH= 2 CATEGORIES= ports-mgmt MASTER_SITES= LOCAL/bdrewery/${PORTNAME}/ \ http://mirror.shatow.net/freebsd/${PORTNAME}/ \ GH MAINTAINER= bdrewery@FreeBSD.org COMMENT= FreeBSD ports/packages administration and management tool suite WWW= https://wiki.freebsd.org/portupgrade LICENSE= BSD3CLAUSE OPTIONS_DEFINE= DOCS CONFLICTS_INSTALL= portupgrade-devel USE_GITHUB= yes GH_ACCOUNT= freebsd DIST_SUBDIR= ${PORTNAME} -USES= uidfix -USE_RUBY= yes +USES= ruby uidfix USE_LDCONFIG= ${PREFIX}/lib/compat/pkg MAKE_ARGS= PREFIX="${PREFIX}" RUBY="${RUBY}" \ RUBY_SITELIBDIR="${RUBY_SITELIBDIR}" MKDIR="${MKDIR}" EXAMPLESDIR= ${PREFIX}/share/examples/pkgtools DOCSDIR= ${PREFIX}/share/doc/pkgtools .include INSTALL_TARGET= install .if ${PORT_OPTIONS:MDOCS} INSTALL_TARGET+= install-doc .endif .if ${RUBY_VER} >= 3.2 # databases/ruby-bdb is BROKEN with Ruby 3.2 RUN_DEPENDS+= rubygem-dbm>0:databases/rubygem-dbm .else # For PKG_DBDRIVER={bdb_btree,bdb_hash} RUN_DEPENDS+= ${RUBY_SITEARCHLIBDIR}/bdb.so:databases/ruby-bdb .endif post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/lib/compat/pkg .include diff --git a/print/rubygem-afm/Makefile b/print/rubygem-afm/Makefile index ab8470d673ea..b32e997ee95e 100644 --- a/print/rubygem-afm/Makefile +++ b/print/rubygem-afm/Makefile @@ -1,17 +1,16 @@ PORTNAME= afm PORTVERSION= 0.2.2 CATEGORIES= print rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Read AFM files and use the data conveniently WWW= https://github.com/halfbyte/afm LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/print/rubygem-color-tools/Makefile b/print/rubygem-color-tools/Makefile index ce9603281a03..f6f2c4c1e5f2 100644 --- a/print/rubygem-color-tools/Makefile +++ b/print/rubygem-color-tools/Makefile @@ -1,17 +1,16 @@ PORTNAME= color-tools PORTVERSION= 1.3.0 CATEGORIES= print rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provides colour space definition and manipulation WWW= https://github.com/ripta/color-tools LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/print/rubygem-color/Makefile b/print/rubygem-color/Makefile index 05249a03743a..f12423c6a25c 100644 --- a/print/rubygem-color/Makefile +++ b/print/rubygem-color/Makefile @@ -1,17 +1,16 @@ PORTNAME= color PORTVERSION= 1.8 CATEGORIES= print rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provides colour space definition and manipulation WWW= https://github.com/halostatue/color LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/print/rubygem-color_diff/Makefile b/print/rubygem-color_diff/Makefile index 1006b072f132..b2f77f4837d0 100644 --- a/print/rubygem-color_diff/Makefile +++ b/print/rubygem-color_diff/Makefile @@ -1,17 +1,16 @@ PORTNAME= color_diff PORTVERSION= 0.1 CATEGORIES= print rubygems MASTER_SITES= RG MAINTAINER= bofh@FreeBSD.org COMMENT= Calculate RGB color distances using CIEDE2000 formula WWW= https://github.com/hansondr/color_diff LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/print/rubygem-pdf-core/Makefile b/print/rubygem-pdf-core/Makefile index 8455ce20245d..9cb4500ae2d4 100644 --- a/print/rubygem-pdf-core/Makefile +++ b/print/rubygem-pdf-core/Makefile @@ -1,21 +1,20 @@ PORTNAME= pdf-core PORTVERSION= 0.9.0 CATEGORIES= print rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby library to render PDF documents WWW= https://prawnpdf.org/ LICENSE= GPLv2 GPLv3 RUBY LICENSE_COMB= dual LICENSE_FILE_GPLv2= ${WRKSRC}/GPLv2 LICENSE_FILE_GPLv3= ${WRKSRC}/GPLv3 LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/print/rubygem-pdf-reader/Makefile b/print/rubygem-pdf-reader/Makefile index 8543747eb006..fe5690bc9017 100644 --- a/print/rubygem-pdf-reader/Makefile +++ b/print/rubygem-pdf-reader/Makefile @@ -1,26 +1,25 @@ PORTNAME= pdf-reader PORTVERSION= 2.11.0 CATEGORIES= print rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= PDF parser conforming as much as possible to the PDF specification WWW= https://github.com/yob/pdf-reader LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-afm>=0.2.1<0.3:print/rubygem-afm \ rubygem-ascii85>=1.0<2:devel/rubygem-ascii85 \ rubygem-hashery>=2.0<3:devel/rubygem-hashery \ rubygem-ruby-rc4>=0:security/rubygem-ruby-rc4 \ rubygem-ttfunk>=0:print/rubygem-ttfunk USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/pdf_callbacks bin/pdf_object bin/pdf_text .include diff --git a/print/rubygem-pdf-writer/Makefile b/print/rubygem-pdf-writer/Makefile index 304367cfa799..86f2a6b0f671 100644 --- a/print/rubygem-pdf-writer/Makefile +++ b/print/rubygem-pdf-writer/Makefile @@ -1,22 +1,21 @@ PORTNAME= pdf-writer PORTVERSION= 1.1.8 CATEGORIES= print rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Pure Ruby PDF document creation library WWW= https://github.com/metaskills/pdf-writer LICENSE= MIT RUN_DEPENDS= rubygem-color>=1.4.0:print/rubygem-color \ rubygem-transaction-simple>=1.3:devel/rubygem-transaction-simple NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/techbook .include diff --git a/print/rubygem-prawn-core/Makefile b/print/rubygem-prawn-core/Makefile index b1401aa49fe6..04a37baaf04a 100644 --- a/print/rubygem-prawn-core/Makefile +++ b/print/rubygem-prawn-core/Makefile @@ -1,18 +1,17 @@ PORTNAME= prawn-core PORTVERSION= 0.8.4 CATEGORIES= print rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Core of Rubygem-prawn WWW= http://prawn.majesticseacreature.com LICENSE= GPLv2 RUBY LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/print/rubygem-prawn-flexible-table/Makefile b/print/rubygem-prawn-flexible-table/Makefile index 71ea3528a3cf..e59357ff2851 100644 --- a/print/rubygem-prawn-flexible-table/Makefile +++ b/print/rubygem-prawn-flexible-table/Makefile @@ -1,19 +1,18 @@ PORTNAME= prawn-flexible-table PORTVERSION= 0.1.2 PORTREVISION= 1 CATEGORIES= print rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Create tables with *span attributes for each cell with Prawn WWW= https://github.com/blaxter/prawn-flexible-table LICENSE= GPLv2 RUBY LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/print/rubygem-prawn-format/Makefile b/print/rubygem-prawn-format/Makefile index a9b426bdf672..6200da7566dd 100644 --- a/print/rubygem-prawn-format/Makefile +++ b/print/rubygem-prawn-format/Makefile @@ -1,20 +1,19 @@ PORTNAME= prawn-format PORTVERSION= 0.2.3 CATEGORIES= print rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Extension of Prawn that allows inline formatting WWW= https://github.com/practicingruby/prawn-format LICENSE= GPLv2 RUBY LICENSE_COMB= dual RUN_DEPENDS= rubygem-prawn-core>=0:print/rubygem-prawn-core NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/print/rubygem-prawn-graph/Makefile b/print/rubygem-prawn-graph/Makefile index 1bdbd4d933d9..d39408945cc3 100644 --- a/print/rubygem-prawn-graph/Makefile +++ b/print/rubygem-prawn-graph/Makefile @@ -1,20 +1,19 @@ PORTNAME= prawn-graph PORTVERSION= 1.0.6 CATEGORIES= print rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Draw basic graphs and charts natively in your PDFs WWW= https://prawn-graph.ryanstenhouse.jp/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-prawn>=0.11.1:print/rubygem-prawn \ rubygem-prawn_shapes>=1.2:print/rubygem-prawn_shapes NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/print/rubygem-prawn-icon/Makefile b/print/rubygem-prawn-icon/Makefile index c5309705a6aa..16f4ef58bbb6 100644 --- a/print/rubygem-prawn-icon/Makefile +++ b/print/rubygem-prawn-icon/Makefile @@ -1,23 +1,22 @@ PORTNAME= prawn-icon PORTVERSION= 3.1.0 CATEGORIES= print rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Provide various icon fonts for the Prawn PDF toolkit WWW= https://github.com/jessedoyle/prawn-icon LICENSE= GPLv2 GPLv3 RUBY LICENSE_COMB= dual LICENSE_FILE_GPLv2= ${WRKSRC}/GPLv2 LICENSE_FILE_GPLv3= ${WRKSRC}/GPLv3 LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-prawn>=1.1.0<3.0.0:print/rubygem-prawn USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/print/rubygem-prawn-js/Makefile b/print/rubygem-prawn-js/Makefile index a040164b4ef3..15f441e5bc40 100644 --- a/print/rubygem-prawn-js/Makefile +++ b/print/rubygem-prawn-js/Makefile @@ -1,19 +1,18 @@ PORTNAME= prawn-js PORTVERSION= 0.7.1 CATEGORIES= print rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simplifies embedding JavaScript in your PDF files WWW= https://pat.github.io/thinking-sphinx/ LICENSE= MIT RUN_DEPENDS= rubygem-prawn-core>=0.6.1:print/rubygem-prawn-core NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/print/rubygem-prawn-layout/Makefile b/print/rubygem-prawn-layout/Makefile index a47f4f5a5ef0..991755fa0ff8 100644 --- a/print/rubygem-prawn-layout/Makefile +++ b/print/rubygem-prawn-layout/Makefile @@ -1,18 +1,17 @@ PORTNAME= prawn-layout PORTVERSION= 0.8.4 CATEGORIES= print rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Prawn Extension to Provides Table Support and Other Layout WWW= https://github.com/practicingruby/prawn-layout LICENSE= GPLv2 RUBY LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/print/rubygem-prawn-security/Makefile b/print/rubygem-prawn-security/Makefile index 8df534550a97..1e390e014a04 100644 --- a/print/rubygem-prawn-security/Makefile +++ b/print/rubygem-prawn-security/Makefile @@ -1,18 +1,17 @@ PORTNAME= prawn-security PORTVERSION= 0.8.4 CATEGORIES= print rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Extension of Prawn WWW= https://github.com/madriska/prawn-security LICENSE= GPLv2 RUBY LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/print/rubygem-prawn-svg/Makefile b/print/rubygem-prawn-svg/Makefile index 0fc31f87b001..674adac669cd 100644 --- a/print/rubygem-prawn-svg/Makefile +++ b/print/rubygem-prawn-svg/Makefile @@ -1,22 +1,21 @@ PORTNAME= prawn-svg PORTVERSION= 0.32.0 CATEGORIES= print rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= SVG renderer for Prawn PDF library WWW= https://github.com/mogest/prawn-svg LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-css_parser>=1.6<2:textproc/rubygem-css_parser \ rubygem-prawn>=0.11.1<3:print/rubygem-prawn \ rubygem-rexml>=3.2<4:textproc/rubygem-rexml USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/print/rubygem-prawn-table/Makefile b/print/rubygem-prawn-table/Makefile index cdf6103c12ee..bf170022f12a 100644 --- a/print/rubygem-prawn-table/Makefile +++ b/print/rubygem-prawn-table/Makefile @@ -1,23 +1,22 @@ PORTNAME= prawn-table PORTVERSION= 0.2.2 CATEGORIES= print rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Provide tables for the Prawn PDF toolkit WWW= https://github.com/prawnpdf/prawn-table LICENSE= GPLv2 GPLv3 RUBY LICENSE_COMB= dual LICENSE_FILE_GPLv2= ${WRKSRC}/GPLv2 LICENSE_FILE_GPLv3= ${WRKSRC}/GPLv3 LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-prawn>=1.3.0<3.0.0:print/rubygem-prawn USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/print/rubygem-prawn-templates/Makefile b/print/rubygem-prawn-templates/Makefile index a2388dae3178..446ac505356f 100644 --- a/print/rubygem-prawn-templates/Makefile +++ b/print/rubygem-prawn-templates/Makefile @@ -1,23 +1,22 @@ PORTNAME= prawn-templates PORTVERSION= 0.1.2 CATEGORIES= print rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Include other pdfs or combine several pdf documents into one WWW= https://github.com/prawnpdf/prawn-templates LICENSE= GPLv2 GPLv3 LICENSE_COMB= dual LICENSE_FILE_GPLv2= ${WRKSRC}/GPLv2 LICENSE_FILE_GPLv3= ${WRKSRC}/GPLv3 RUN_DEPENDS= rubygem-pdf-reader>=2.0<3:print/rubygem-pdf-reader \ rubygem-prawn>=2.2<3:print/rubygem-prawn USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/print/rubygem-prawn/Makefile b/print/rubygem-prawn/Makefile index d30dbeacd6e0..5fdf15e16e0b 100644 --- a/print/rubygem-prawn/Makefile +++ b/print/rubygem-prawn/Makefile @@ -1,24 +1,23 @@ PORTNAME= prawn PORTVERSION= 2.4.0 CATEGORIES= print rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Fast, tiny, and nimble PDF generator for Ruby WWW= https://prawnpdf.org/ LICENSE= RUBY GPLv2 GPLv3 LICENSE_COMB= dual LICENSE_FILE_GPLv2= ${WRKSRC}/GPLv2 LICENSE_FILE_GPLv3= ${WRKSRC}/GPLv3 LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-pdf-core>=0.9.0<0.10:print/rubygem-pdf-core \ rubygem-ttfunk>=1.7<2:print/rubygem-ttfunk USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/print/rubygem-prawn_shapes/Makefile b/print/rubygem-prawn_shapes/Makefile index 36f6280f818e..81cdacaa240d 100644 --- a/print/rubygem-prawn_shapes/Makefile +++ b/print/rubygem-prawn_shapes/Makefile @@ -1,18 +1,17 @@ PORTNAME= prawn_shapes PORTVERSION= 1.2.1 CATEGORIES= print rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Adds additional vector shapes to Prawn WWW= https://github.com/Bluejade/prawn-shapes LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/print/rubygem-rbpdf-font/Makefile b/print/rubygem-rbpdf-font/Makefile index a217a5af521f..b32eeaf22d31 100644 --- a/print/rubygem-rbpdf-font/Makefile +++ b/print/rubygem-rbpdf-font/Makefile @@ -1,18 +1,17 @@ PORTNAME= rbpdf-font PORTVERSION= 1.19.1 CATEGORIES= print rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= RBPDF font files WWW= https://github.com/naitoh/rbpdf/tree/master/rbpdf-font LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/print/rubygem-rbpdf/Makefile b/print/rubygem-rbpdf/Makefile index aa51fceaa738..2dd4a101674c 100644 --- a/print/rubygem-rbpdf/Makefile +++ b/print/rubygem-rbpdf/Makefile @@ -1,21 +1,20 @@ PORTNAME= rbpdf PORTVERSION= 1.20.1 CATEGORIES= print rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby library for creating ERB enabled PDF templates WWW= https://github.com/naitoh/rbpdf LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/LICENSE.TXT RUN_DEPENDS= rubygem-htmlentities>=0:textproc/rubygem-htmlentities \ rubygem-rbpdf-font>=1.19.0<1.20:print/rubygem-rbpdf-font USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/print/rubygem-ttfunk/Makefile b/print/rubygem-ttfunk/Makefile index 3f2eba7679c6..79e1a053b15a 100644 --- a/print/rubygem-ttfunk/Makefile +++ b/print/rubygem-ttfunk/Makefile @@ -1,21 +1,20 @@ PORTNAME= ttfunk PORTVERSION= 1.7.0 CATEGORIES= print rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Font Metrics Parser for the Prawn PDF generator WWW= https://github.com/prawnpdf/ttfunk LICENSE= RUBY GPLv2 GPLv3 LICENSE_COMB= dual LICENSE_FILE_GPLv2= ${WRKSRC}/GPLv2 LICENSE_FILE_GPLv3= ${WRKSRC}/GPLv3 LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/russian/rubygem-russian/Makefile b/russian/rubygem-russian/Makefile index a251c6599b2f..e020d3ed5c22 100644 --- a/russian/rubygem-russian/Makefile +++ b/russian/rubygem-russian/Makefile @@ -1,17 +1,16 @@ PORTNAME= russian PORTVERSION= 0.6.0 CATEGORIES= russian devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Russian language support for Ruby and Rails, based on I18n library WWW= https://github.com/yaroslav/russian LICENSE= MIT RUN_DEPENDS= rubygem-i18n>=0.5.0:devel/rubygem-i18n -USE_RUBY= yes USES= gem .include diff --git a/science/rubygem-ai4r/Makefile b/science/rubygem-ai4r/Makefile index 569c5070c92d..f7d32a64d5e2 100644 --- a/science/rubygem-ai4r/Makefile +++ b/science/rubygem-ai4r/Makefile @@ -1,16 +1,15 @@ PORTNAME= ai4r PORTVERSION= 1.13 CATEGORIES= science rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Various Ruby artificial intelligence algorithm implementations WWW= http://www.ai4r.org/ LICENSE= MPL11 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/science/rubygem-cdo/Makefile b/science/rubygem-cdo/Makefile index c1316defb763..a51b4ccecd08 100644 --- a/science/rubygem-cdo/Makefile +++ b/science/rubygem-cdo/Makefile @@ -1,19 +1,18 @@ PORTNAME= cdo PORTVERSION= 1.5.1 CATEGORIES= science rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding to CDO (Climate Data Operators) WWW= https://code.mpimet.mpg.de/projects/cdo/wiki/Cdo%7Brbpy%7D LICENSE= BSD3CLAUSE RUN_DEPENDS= cdo:science/cdo USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/science/rubygem-rgeo-geojson/Makefile b/science/rubygem-rgeo-geojson/Makefile index 9e27c91b9e71..b1279f23f3de 100644 --- a/science/rubygem-rgeo-geojson/Makefile +++ b/science/rubygem-rgeo-geojson/Makefile @@ -1,20 +1,19 @@ PORTNAME= rgeo-geojson PORTVERSION= 2.1.1 CATEGORIES= science rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= GeoJSON formatting and parsing in Ruby WWW= https://github.com/rgeo/rgeo-geojson LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-rgeo>=1.0.0:science/rubygem-rgeo USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/science/rubygem-rgeo-proj4/Makefile b/science/rubygem-rgeo-proj4/Makefile index 23ce2c64786b..69999efc588f 100644 --- a/science/rubygem-rgeo-proj4/Makefile +++ b/science/rubygem-rgeo-proj4/Makefile @@ -1,22 +1,21 @@ PORTNAME= rgeo-proj4 PORTVERSION= 3.1.1 PORTREVISION= 1 CATEGORIES= science rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Proj.4 extension for RGeo WWW= https://github.com/rgeo/rgeo-proj4 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libproj.so:graphics/proj RUN_DEPENDS= rubygem-rgeo>=2.0<3:science/rubygem-rgeo USES= gem -USE_RUBY= yes CONFIGURE_ARGS= --with-proj-dir=${LOCALBASE} .include diff --git a/science/rubygem-rgeo-shapefile/Makefile b/science/rubygem-rgeo-shapefile/Makefile index 5f478dad88e5..6872f598c6ac 100644 --- a/science/rubygem-rgeo-shapefile/Makefile +++ b/science/rubygem-rgeo-shapefile/Makefile @@ -1,21 +1,20 @@ PORTNAME= rgeo-shapefile PORTVERSION= 3.0.0 CATEGORIES= science rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= RGeo module for reading the ESRI shapefile format WWW= https://github.com/rgeo/rgeo-shapefile LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-dbf>=4.0<5:databases/rubygem-dbf \ rubygem-rgeo>=1.0:science/rubygem-rgeo USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/science/rubygem-rgeo/Makefile b/science/rubygem-rgeo/Makefile index e1fa4eacff49..7fad778a72df 100644 --- a/science/rubygem-rgeo/Makefile +++ b/science/rubygem-rgeo/Makefile @@ -1,18 +1,17 @@ PORTNAME= rgeo PORTVERSION= 2.4.0 CATEGORIES= science rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Geospatial data library for Ruby (RGeo) WWW= https://github.com/rgeo/rgeo LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libgeos.so:graphics/geos USES= gem -USE_RUBY= yes .include diff --git a/science/rubygem-ruby-dcl/Makefile b/science/rubygem-ruby-dcl/Makefile index 1cd46158a069..f9fcf586b5aa 100644 --- a/science/rubygem-ruby-dcl/Makefile +++ b/science/rubygem-ruby-dcl/Makefile @@ -1,25 +1,24 @@ PORTNAME= ruby-dcl PORTVERSION= 1.8.1 CATEGORIES= science rubygems MASTER_SITES= RG MAINTAINER= murashin@gfd-dennou.org COMMENT= Ruby interface to the scientific graphic library DCL WWW= http://ruby.gfd-dennou.org/products/ruby-dcl/ LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt BUILD_DEPENDS= rubygem-narray>=0.5.5:math/rubygem-narray LIB_DEPENDS= libcdcl.so:science/cdcl \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 RUN_DEPENDS= rubygem-narray>=0.5.5:math/rubygem-narray \ rubygem-narray_miss>0:math/rubygem-narray_miss USES= gem gettext-runtime gnome xorg USE_GNOME= atk cairo gdkpixbuf2 glib20 gtk20 pango USE_XORG= ice sm x11 -USE_RUBY= yes .include diff --git a/science/rubygem-ruby-netcdf/Makefile b/science/rubygem-ruby-netcdf/Makefile index 98dda7aae1eb..7d6120ea70fb 100644 --- a/science/rubygem-ruby-netcdf/Makefile +++ b/science/rubygem-ruby-netcdf/Makefile @@ -1,20 +1,19 @@ PORTNAME= ruby-netcdf PORTVERSION= 0.8.0 CATEGORIES= science rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby interface to the NetCDF scientific IO library WWW= https://www.gfd-dennou.org/arch/ruby/products/ruby-netcdf/ LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libnetcdf.so:science/netcdf RUN_DEPENDS= rubygem-narray>=0:math/rubygem-narray \ rubygem-narray_miss>=0:math/rubygem-narray_miss USES= gem -USE_RUBY= yes .include diff --git a/security/metasploit/Makefile b/security/metasploit/Makefile index b27fd10ce821..cba7b5b625be 100644 --- a/security/metasploit/Makefile +++ b/security/metasploit/Makefile @@ -1,193 +1,192 @@ PORTNAME= metasploit DISTVERSION= 6.2.23 PORTREVISION= 2 CATEGORIES= security MAINTAINER= tanawts@gmail.com COMMENT= Exploit-Framework for Penetration-Testing WWW= https://metasploit.org/ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \ nmap:security/nmap \ rubygem-actionpack60>=6.0:www/rubygem-actionpack60 \ rubygem-activerecord60>=6.0:databases/rubygem-activerecord60 \ rubygem-activesupport60>=6.0:devel/rubygem-activesupport60 \ rubygem-aws-sdk-ec2>=0:devel/rubygem-aws-sdk-ec2 \ rubygem-aws-sdk-iam>=0:devel/rubygem-aws-sdk-iam \ rubygem-aws-sdk-s3>=0:devel/rubygem-aws-sdk-s3 \ rubygem-bcrypt>=0:security/rubygem-bcrypt \ rubygem-bcrypt_pbkdf>=0:security/rubygem-bcrypt_pbkdf \ rubygem-bson>=0:devel/rubygem-bson \ rubygem-bundler>=0:sysutils/rubygem-bundler \ rubygem-concurrent-ruby>=0:devel/rubygem-concurrent-ruby \ rubygem-dnsruby>=0:dns/rubygem-dnsruby \ rubygem-ed25519>=0:security/rubygem-ed25519 \ rubygem-em-http-request>=0:www/rubygem-em-http-request \ rubygem-eventmachine>=0:devel/rubygem-eventmachine \ rubygem-faker>=0:devel/rubygem-faker \ rubygem-faye-websocket>=0:www/rubygem-faye-websocket \ rubygem-filesize>=0:devel/rubygem-filesize \ rubygem-hrr_rb_ssh-ed25519>=0:security/rubygem-hrr_rb_ssh-ed25519 \ rubygem-http-cookie>=0:www/rubygem-http-cookie \ rubygem-irb>=0:devel/rubygem-irb \ rubygem-jsobfu>=0:www/rubygem-jsobfu \ rubygem-json>=0:devel/rubygem-json \ rubygem-metasm>=0:devel/rubygem-metasm \ rubygem-metasploit-aggregator>=0:security/rubygem-metasploit-aggregator \ rubygem-metasploit-concern>=0:security/rubygem-metasploit-concern \ rubygem-metasploit-credential>=0:security/rubygem-metasploit-credential \ rubygem-metasploit-model>=0:security/rubygem-metasploit-model \ rubygem-metasploit-payloads>=2.0.66:security/rubygem-metasploit-payloads \ rubygem-metasploit_data_models>=0:security/rubygem-metasploit_data_models \ rubygem-metasploit_payloads-mettle>=1.0.17:security/rubygem-metasploit_payloads-mettle \ rubygem-mqtt>=0:net/rubygem-mqtt \ rubygem-msgpack>=0:devel/rubygem-msgpack \ rubygem-nessus_rest>=0:security/rubygem-nessus_rest \ rubygem-net-ldap>=0:net/rubygem-net-ldap \ rubygem-net-ssh>=0:security/rubygem-net-ssh \ rubygem-network_interface>=0:net/rubygem-network_interface \ rubygem-nexpose>=0:security/rubygem-nexpose \ rubygem-nokogiri>=0:textproc/rubygem-nokogiri \ rubygem-octokit>=0:net/rubygem-octokit \ rubygem-openssl-ccm>=0:security/rubygem-openssl-ccm \ rubygem-openvas-omp>=0:security/rubygem-openvas-omp \ rubygem-packetfu>=0:net/rubygem-packetfu \ rubygem-patch_finder>=0:devel/rubygem-patch_finder \ rubygem-pcaprub>=0:net/rubygem-pcaprub \ rubygem-pdf-reader>=0:print/rubygem-pdf-reader \ rubygem-pg>=0:databases/rubygem-pg \ rubygem-puma>=0:www/rubygem-puma \ rubygem-railties60>=6.0:www/rubygem-railties60 \ rubygem-recog>=0:security/rubygem-recog \ rubygem-redcarpet>=0:textproc/rubygem-redcarpet \ rubygem-reline>=0:devel/rubygem-reline \ rubygem-rex-arch>=0:security/rubygem-rex-arch \ rubygem-rex-bin_tools>=0:security/rubygem-rex-bin_tools \ rubygem-rex-core>=0:security/rubygem-rex-core \ rubygem-rex-encoder>=0:security/rubygem-rex-encoder \ rubygem-rex-exploitation>=0:security/rubygem-rex-exploitation \ rubygem-rex-java>=0:security/rubygem-rex-java \ rubygem-rex-mime>=0:security/rubygem-rex-mime \ rubygem-rex-nop>=0:security/rubygem-rex-nop \ rubygem-rex-ole>=0:security/rubygem-rex-ole \ rubygem-rex-powershell>=0:security/rubygem-rex-powershell \ rubygem-rex-random_identifier>=0:security/rubygem-rex-random_identifier \ rubygem-rex-registry>=0:security/rubygem-rex-registry \ rubygem-rex-rop_builder>=0:security/rubygem-rex-rop_builder \ rubygem-rex-socket>=0:security/rubygem-rex-socket \ rubygem-rex-sslscan>=0:security/rubygem-rex-sslscan \ rubygem-rex-struct2>=0:security/rubygem-rex-struct2 \ rubygem-rex-text>=0:security/rubygem-rex-text \ rubygem-rex-zip>=0:security/rubygem-rex-zip \ rubygem-ruby-macho>=0:devel/rubygem-ruby-macho \ rubygem-ruby_smb>=0:net/rubygem-ruby_smb \ rubygem-rubyntlm>=0:net/rubygem-rubyntlm \ rubygem-rubyzip>=0:archivers/rubygem-rubyzip \ rubygem-sinatra>=0:www/rubygem-sinatra \ rubygem-sqlite3>=0:databases/rubygem-sqlite3 \ rubygem-sshkey>=0:security/rubygem-sshkey \ rubygem-swagger-blocks>=0:devel/rubygem-swagger-blocks \ rubygem-thin>=0:www/rubygem-thin \ rubygem-tzinfo-data>=0:devel/rubygem-tzinfo-data \ rubygem-tzinfo>=0:devel/rubygem-tzinfo \ rubygem-unix-crypt>=0:security/rubygem-unix-crypt \ rubygem-warden>=0:devel/rubygem-warden \ rubygem-windows_error>=0:devel/rubygem-windows_error \ rubygem-winrm>=0:sysutils/rubygem-winrm \ rubygem-xdr>=0:converters/rubygem-xdr \ 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 \ data/exploits/CVE-2017-7494/install-deps.sh \ data/exploits/CVE-2021-3156/nss_generic2.py \ data/exploits/CVE-2021-3156/nss_u14.py \ data/exploits/CVE-2021-3156/nss_u16.py \ data/exploits/CVE-2021-3156/userspec_c7.py \ data/exploits/CVE-2021-3156/userspec_generic.py \ docker/bin/msfconsole docker/bin/msfvenom docker/entrypoint.sh \ external/source/exploits/CVE-2020-9850/payload/loader/make.py \ external/source/exploits/CVE-2020-9850/payload/sbx/build-threadexec.sh \ external/source/exploits/CVE-2020-9850/payload/sbx/build-webkit.sh \ external/source/exploits/CVE-2020-9850/payload/sbx/embed.py \ external/source/metsvc/test.rb \ external/source/msfJavaToolkit/compile.sh \ external/source/msfJavaToolkit/testCompilation.rb \ external/source/msfJavaToolkit/testKeytool.rb \ external/source/shellcode/windows/build.sh \ external/source/shellcode/windows/x64/build.py \ external/source/shellcode/windows/x86/build.py \ external/source/shellcode/windows/x86/src/hash.py \ modules/auxiliary/admin/http/cisco_7937g_ssh_privesc.py \ modules/auxiliary/admin/http/grafana_auth_bypass.py \ modules/auxiliary/admin/teradata/teradata_odbc_sql.py \ modules/auxiliary/dos/cisco/cisco_7937g_dos.py \ modules/auxiliary/dos/cisco/cisco_7937g_dos_reboot.py \ modules/auxiliary/dos/http/slowloris.py \ modules/auxiliary/dos/tcp/claymore_dos.py \ modules/auxiliary/example.py \ modules/auxiliary/gather/get_user_spns.py \ modules/auxiliary/gather/mikrotik_winbox_fileread.py \ modules/auxiliary/gather/office365userenum.py \ modules/auxiliary/scanner/http/onion_omega2_login.py \ modules/auxiliary/scanner/http/rdp_web_login.py \ modules/auxiliary/scanner/msmail/exchange_enum.go \ modules/auxiliary/scanner/msmail/host_id.go \ modules/auxiliary/scanner/msmail/onprem_enum.go \ modules/auxiliary/scanner/smb/impacket/dcomexec.py \ modules/auxiliary/scanner/smb/impacket/secretsdump.py \ modules/auxiliary/scanner/smb/impacket/wmiexec.py \ modules/auxiliary/scanner/ssl/bleichenbacher_oracle.py \ modules/auxiliary/scanner/teradata/teradata_odbc_login.py \ modules/auxiliary/scanner/wproxy/att_open_proxy.py \ modules/exploits/example.py \ modules/exploits/linux/smtp/haraka.py \ tools/dev/import-dev-keys.sh tools/dev/sign-dev-keys.sh \ tools/dev/update_joomla_components.py \ tools/hardware/killerbee_msfrelay.py \ tools/modules/aws-aggregator-userdata.sh SHEBANG_LANG= go STRIP= NO_ARCH= yes NO_ARCH_IGNORE= template_x64_bsd.bin template_x86_bsd.bin CVE-2013-2171.bin post-patch: ${REINPLACE_CMD} 's,git ls-files,find . ! -type d | sed "s|^./||", ; \ /rb-readline/d ; /win32api/d' \ ${WRKSRC}/metasploit-framework.gemspec ${REINPLACE_CMD} "/concurrent-ruby/s|,'1.0.5'|| ; /reline/s|, '0.2.5'|| ; /pcaprub/s|, '0.12.4'|| ; /io-console/s|, '0.5.9'|| ; /faraday/s|, '1.8.0'||" \ ${WRKSRC}/metasploit-framework.gemspec do-build: ${RM} ${WRKSRC}/Gemfile.lock ${TOUCH} ${WRKSRC}/Gemfile.lock ${REINPLACE_CMD} "/^group :coverage/,/^end/d ; /^group :development/,/^end/d ; /^group :test/,/^end/d ; /git:/d ; /sqlite3/s|, '~>1.3.0'||" \ ${WRKSRC}/Gemfile do-install: @${MKDIR} ${STAGEDIR}${DATADIR} cd ${WRKSRC} && ${PAX} -rw . ${STAGEDIR}${DATADIR} .for f in msfconsole msfd msfdb msfrpc msfrpcd msfvenom ${RLN} ${STAGEDIR}${DATADIR}/${f} ${STAGEDIR}${PREFIX}/bin/${f} .endfor post-install: @${FIND} ${STAGEDIR} ! -type d | \ ${SED} 's,${STAGEDIR}${PREFIX}/,, ; /Gemfile.lock/s|^|@(,,0666) |' >> ${TMPPLIST} @${FIND} -ds ${STAGEDIR}${DATADIR} -type d -empty | \ ${SED} 's,${STAGEDIR}${PREFIX}/,, ; s,^,@dir ,' >> ${TMPPLIST} .include diff --git a/security/rubygem-acme-client/Makefile b/security/rubygem-acme-client/Makefile index d20a95965f76..0d110177b1d6 100644 --- a/security/rubygem-acme-client/Makefile +++ b/security/rubygem-acme-client/Makefile @@ -1,24 +1,23 @@ PORTNAME= acme-client PORTVERSION= 2.0.11 PORTREVISION= 1 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Client for the ACME protocol WWW= https://github.com/unixcharles/acme-client LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-faraday>=1.0<3.0.0:www/rubygem-faraday \ rubygem-faraday-retry1>=1.0<2:www/rubygem-faraday-retry1 USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= bin/setup .include diff --git a/security/rubygem-aes_key_wrap/Makefile b/security/rubygem-aes_key_wrap/Makefile index f9c90530d73a..cc97ef0a3ab8 100644 --- a/security/rubygem-aes_key_wrap/Makefile +++ b/security/rubygem-aes_key_wrap/Makefile @@ -1,20 +1,19 @@ PORTNAME= aes_key_wrap PORTVERSION= 1.1.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby implementation of AES Key Wrap WWW= https://github.com/tomdalling/aes_key_wrap LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= bin/setup .include diff --git a/security/rubygem-airbrussh/Makefile b/security/rubygem-airbrussh/Makefile index 3d68bf354039..6bac75f4279a 100644 --- a/security/rubygem-airbrussh/Makefile +++ b/security/rubygem-airbrussh/Makefile @@ -1,22 +1,21 @@ PORTNAME= airbrussh PORTVERSION= 1.4.1 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Replacement log formatter for SSHKit WWW= https://github.com/mattbrictson/airbrussh LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-sshkit>=1.7.1:security/rubygem-sshkit USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= bin/setup .include diff --git a/security/rubygem-android_key_attestation/Makefile b/security/rubygem-android_key_attestation/Makefile index 816cb35af3e7..f4e8e69c125b 100644 --- a/security/rubygem-android_key_attestation/Makefile +++ b/security/rubygem-android_key_attestation/Makefile @@ -1,17 +1,16 @@ PORTNAME= android_key_attestation PORTVERSION= 0.3.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Android key attestation verification WWW= https://github.com/bdewater/android_key_attestation LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-attr_encrypted/Makefile b/security/rubygem-attr_encrypted/Makefile index decf1722b389..2324e6ae2240 100644 --- a/security/rubygem-attr_encrypted/Makefile +++ b/security/rubygem-attr_encrypted/Makefile @@ -1,19 +1,18 @@ PORTNAME= attr_encrypted PORTVERSION= 3.1.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Generates attr_accessors that encrypt and decrypt attributes WWW= https://github.com/attr-encrypted/attr_encrypted LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-encryptor>=3.0.0:security/rubygem-encryptor NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-bcrypt-ruby/Makefile b/security/rubygem-bcrypt-ruby/Makefile index 774db4b3a483..f0127b4ce2c8 100644 --- a/security/rubygem-bcrypt-ruby/Makefile +++ b/security/rubygem-bcrypt-ruby/Makefile @@ -1,20 +1,19 @@ PORTNAME= bcrypt-ruby PORTVERSION= 3.1.5 PORTREVISION= 1 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Sophisticated and secure hash algorithm for passwords WWW= https://github.com/codahale/bcrypt-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-bcrypt>=3.1.3:security/rubygem-bcrypt NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-bcrypt/Makefile b/security/rubygem-bcrypt/Makefile index 4476eebdfa2f..65a062f4f904 100644 --- a/security/rubygem-bcrypt/Makefile +++ b/security/rubygem-bcrypt/Makefile @@ -1,16 +1,15 @@ PORTNAME= bcrypt PORTVERSION= 3.1.18 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= OpenBSD bcrypt password hashing algorithm WWW= https://github.com/bcrypt-ruby/bcrypt-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes .include diff --git a/security/rubygem-bcrypt_pbkdf/Makefile b/security/rubygem-bcrypt_pbkdf/Makefile index 004a40d0f636..e1cf7679b373 100644 --- a/security/rubygem-bcrypt_pbkdf/Makefile +++ b/security/rubygem-bcrypt_pbkdf/Makefile @@ -1,16 +1,15 @@ PORTNAME= bcrypt_pbkdf PORTVERSION= 1.1.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= This gem implements bcrypt_pdkfd WWW= https://github.com/net-ssh/bcrypt_pbkdf-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes .include diff --git a/security/rubygem-cose/Makefile b/security/rubygem-cose/Makefile index e99978ab2c1b..b01fdec14213 100644 --- a/security/rubygem-cose/Makefile +++ b/security/rubygem-cose/Makefile @@ -1,21 +1,20 @@ PORTNAME= cose PORTVERSION= 1.2.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Ruby implementation of RFC 8152 CBOR Object Signing and Encryption WWW= https://github.com/heartcombo/devise LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-cbor>=0.5.9<0.6:devel/rubygem-cbor \ rubygem-openssl-signature_algorithm>=1.0<2:security/rubygem-openssl-signature_algorithm USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-cvss-suite/Makefile b/security/rubygem-cvss-suite/Makefile index de16f8ad65c0..d21ee54ef3de 100644 --- a/security/rubygem-cvss-suite/Makefile +++ b/security/rubygem-cvss-suite/Makefile @@ -1,22 +1,21 @@ PORTNAME= cvss-suite PORTVERSION= 3.0.1 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Ruby binding to process CVSS entries WWW= https://github.com/0llirocks/cvss-suite LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= bash:shells/bash USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= bin/setup .include diff --git a/security/rubygem-declarative_policy/Makefile b/security/rubygem-declarative_policy/Makefile index a05c96ec8e54..ced7a94eabf2 100644 --- a/security/rubygem-declarative_policy/Makefile +++ b/security/rubygem-declarative_policy/Makefile @@ -1,18 +1,17 @@ PORTNAME= declarative_policy PORTVERSION= 1.1.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Authorization framework with a declarative DSL WWW= https://gitlab.com/gitlab-org/declarative-policy LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-devise-two-factor-rails5/Makefile b/security/rubygem-devise-two-factor-rails5/Makefile index b0e8eb01a080..ee8b8f4a8703 100644 --- a/security/rubygem-devise-two-factor-rails5/Makefile +++ b/security/rubygem-devise-two-factor-rails5/Makefile @@ -1,27 +1,26 @@ PORTNAME= devise-two-factor PORTVERSION= 4.0.2 CATEGORIES= security rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Barebones two-factor authentication with Devise WWW= https://github.com/tinfoil/devise-two-factor LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport5>=0<7.1:devel/rubygem-activesupport5 \ rubygem-attr_encrypted>=1.3<4:security/rubygem-attr_encrypted \ rubygem-devise-rails5>=4.0<5:devel/rubygem-devise-rails5 \ rubygem-railties5>=0<7.1:www/rubygem-railties5 \ rubygem-rotp>=6.0<7:devel/rubygem-rotp USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^4\. .include diff --git a/security/rubygem-devise-two-factor-rails61/Makefile b/security/rubygem-devise-two-factor-rails61/Makefile index 19d2b9827eac..21274cc41f27 100644 --- a/security/rubygem-devise-two-factor-rails61/Makefile +++ b/security/rubygem-devise-two-factor-rails61/Makefile @@ -1,25 +1,24 @@ PORTNAME= devise-two-factor PORTVERSION= 4.0.2 CATEGORIES= security rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= mfechner@FreeBSD.org COMMENT= Barebones two-factor authentication with Devise WWW= https://github.com/tinfoil/devise-two-factor LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport61>=0<7.1:devel/rubygem-activesupport61 \ rubygem-attr_encrypted>=3<4:security/rubygem-attr_encrypted \ rubygem-devise-rails61>=4.0<5:devel/rubygem-devise-rails61 \ rubygem-railties61>=0<7.1:www/rubygem-railties61 \ rubygem-rotp>=6.0<7:devel/rubygem-rotp USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-devise-two-factor-rails70/Makefile b/security/rubygem-devise-two-factor-rails70/Makefile index 18d170006839..8458948f6675 100644 --- a/security/rubygem-devise-two-factor-rails70/Makefile +++ b/security/rubygem-devise-two-factor-rails70/Makefile @@ -1,24 +1,23 @@ PORTNAME= devise-two-factor PORTVERSION= 5.0.0 CATEGORIES= security rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails70 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Barebones two-factor authentication with Devise WWW= https://github.com/tinfoil/devise-two-factor LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport70>=7.0<8:devel/rubygem-activesupport70 \ rubygem-devise-rails70>=4.0<5:devel/rubygem-devise-rails70 \ rubygem-railties70>=7.0<8:www/rubygem-railties70 \ rubygem-rotp>=6.0<7:devel/rubygem-rotp USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-devise-two-factor/Makefile b/security/rubygem-devise-two-factor/Makefile index 6116c9a2a0b2..aea2b306e399 100644 --- a/security/rubygem-devise-two-factor/Makefile +++ b/security/rubygem-devise-two-factor/Makefile @@ -1,26 +1,25 @@ PORTNAME= devise-two-factor PORTVERSION= 4.0.2 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Barebones two-factor authentication with Devise WWW= https://github.com/tinfoil/devise-two-factor LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport50>=0<7.1:devel/rubygem-activesupport50 \ rubygem-attr_encrypted>=1.3<4:security/rubygem-attr_encrypted \ rubygem-devise>=4.0<5:devel/rubygem-devise \ rubygem-railties50>=0<7.1:www/rubygem-railties50 \ rubygem-rotp>=6.0<7:devel/rubygem-rotp USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^4\. .include diff --git a/security/rubygem-devise_pam_authenticatable2-rails61/Makefile b/security/rubygem-devise_pam_authenticatable2-rails61/Makefile index b1970966a19c..a94b00b09648 100644 --- a/security/rubygem-devise_pam_authenticatable2-rails61/Makefile +++ b/security/rubygem-devise_pam_authenticatable2-rails61/Makefile @@ -1,22 +1,21 @@ PORTNAME= devise_pam_authenticatable2 PORTVERSION= 9.2.0 CATEGORIES= security rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= bofh@FreeBSD.org COMMENT= Devise PAM authentication module using rpam2 WWW= https://github.com/devkral/devise_pam_authenticatable2 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-devise-rails61>=4.0.0:devel/rubygem-devise-rails61 \ rubygem-rpam2>=4.0:security/rubygem-rpam2 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-devise_pam_authenticatable2/Makefile b/security/rubygem-devise_pam_authenticatable2/Makefile index 961e0a07b9f1..037b4e7f4949 100644 --- a/security/rubygem-devise_pam_authenticatable2/Makefile +++ b/security/rubygem-devise_pam_authenticatable2/Makefile @@ -1,21 +1,20 @@ PORTNAME= devise_pam_authenticatable2 PORTVERSION= 9.2.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Devise PAM authentication module using rpam2 WWW= https://github.com/devkral/devise_pam_authenticatable2 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-devise-rails5>=4.0.0:devel/rubygem-devise-rails5 \ rubygem-rpam2>=4.0:security/rubygem-rpam2 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-digest-crc/Makefile b/security/rubygem-digest-crc/Makefile index e7d16c9d25fd..fca12399b4c7 100644 --- a/security/rubygem-digest-crc/Makefile +++ b/security/rubygem-digest-crc/Makefile @@ -1,18 +1,17 @@ PORTNAME= digest-crc PORTVERSION= 0.6.4 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Adds support for CRC to the Digest module WWW= https://github.com/postmodern/digest-crc LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-rake>=12.0.0<14.0.0:devel/rubygem-rake USES= gem -USE_RUBY= yes .include diff --git a/security/rubygem-digest/Makefile b/security/rubygem-digest/Makefile index 7c8605f320a5..95d1bf6d18ae 100644 --- a/security/rubygem-digest/Makefile +++ b/security/rubygem-digest/Makefile @@ -1,17 +1,16 @@ PORTNAME= digest PORTVERSION= 3.1.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Framework for message digest libraries WWW= https://github.com/ruby/digest LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include diff --git a/security/rubygem-doorkeeper-openid_connect/Makefile b/security/rubygem-doorkeeper-openid_connect/Makefile index a0598e982db2..f097bed10a1f 100644 --- a/security/rubygem-doorkeeper-openid_connect/Makefile +++ b/security/rubygem-doorkeeper-openid_connect/Makefile @@ -1,22 +1,21 @@ PORTNAME= doorkeeper-openid_connect PORTVERSION= 1.7.5 PORTREVISION= 2 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= OpenID Connect extension for Doorkeeper WWW= https://github.com/doorkeeper-gem/doorkeeper-openid_connect LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-doorkeeper>=5.2<5.6:security/rubygem-doorkeeper \ rubygem-json-jwt115>=1.11:www/rubygem-json-jwt115 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-doorkeeper-rails5/Makefile b/security/rubygem-doorkeeper-rails5/Makefile index 6e3b4ea61f08..2c416fc6ffa8 100644 --- a/security/rubygem-doorkeeper-rails5/Makefile +++ b/security/rubygem-doorkeeper-rails5/Makefile @@ -1,23 +1,22 @@ PORTNAME= doorkeeper PORTVERSION= 5.6.0 CATEGORIES= security rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= ruby@FreeBSD.org COMMENT= OAuth2 provider for Rails and Grape WWW= https://github.com/doorkeeper-gem/doorkeeper LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-railties5>=5:www/rubygem-railties5 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= doorkeeper_project .include diff --git a/security/rubygem-doorkeeper-rails50/Makefile b/security/rubygem-doorkeeper-rails50/Makefile index cc0eebbe53ea..7c9ce1ea83d8 100644 --- a/security/rubygem-doorkeeper-rails50/Makefile +++ b/security/rubygem-doorkeeper-rails50/Makefile @@ -1,23 +1,22 @@ PORTNAME= doorkeeper PORTVERSION= 5.6.0 CATEGORIES= security rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= ruby@FreeBSD.org COMMENT= OAuth2 provider for Rails and Grape WWW= https://github.com/doorkeeper-gem/doorkeeper LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-railties50>=5:www/rubygem-railties50 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= doorkeeper_project .include diff --git a/security/rubygem-doorkeeper-rails61/Makefile b/security/rubygem-doorkeeper-rails61/Makefile index 4fb506990cb6..cbebed18f653 100644 --- a/security/rubygem-doorkeeper-rails61/Makefile +++ b/security/rubygem-doorkeeper-rails61/Makefile @@ -1,23 +1,22 @@ PORTNAME= doorkeeper PORTVERSION= 5.6.2 CATEGORIES= security rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= bofh@FreeBSD.org COMMENT= OAuth2 provider for Rails and Grape WWW= https://github.com/doorkeeper-gem/doorkeeper LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-railties61>=5:www/rubygem-railties61 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= doorkeeper_project .include diff --git a/security/rubygem-doorkeeper/Makefile b/security/rubygem-doorkeeper/Makefile index 59e956e75d04..ef1e712da7a7 100644 --- a/security/rubygem-doorkeeper/Makefile +++ b/security/rubygem-doorkeeper/Makefile @@ -1,23 +1,22 @@ PORTNAME= doorkeeper PORTVERSION= 5.5.4 PORTREVISION= 1 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= OAuth2 provider for Rails and Grape WWW= https://github.com/doorkeeper-gem/doorkeeper LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-railties61>=5:www/rubygem-railties61 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= doorkeeper_project .include diff --git a/security/rubygem-ed25519/Makefile b/security/rubygem-ed25519/Makefile index d05626e2e1bd..62bd35fbeeab 100644 --- a/security/rubygem-ed25519/Makefile +++ b/security/rubygem-ed25519/Makefile @@ -1,16 +1,15 @@ PORTNAME= ed25519 PORTVERSION= 1.3.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding to the Ed25519 (RFC 8032) WWW= https://github.com/RubyCrypto/ed25519 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes .include diff --git a/security/rubygem-ed2551912/Makefile b/security/rubygem-ed2551912/Makefile index 0164d8b97d45..d1b13c2ee5d1 100644 --- a/security/rubygem-ed2551912/Makefile +++ b/security/rubygem-ed2551912/Makefile @@ -1,19 +1,18 @@ PORTNAME= ed25519 PORTVERSION= 1.2.4 CATEGORIES= security rubygems MASTER_SITES= RG PKGNAMESUFFIX= 12 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding to the Ed25519 (RFC 8032) WWW= https://github.com/RubyCrypto/ed25519 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes PORTSCOUT= limit:^1\.2\. .include diff --git a/security/rubygem-encryptor/Makefile b/security/rubygem-encryptor/Makefile index dabe93ef3bb9..0b9dfe9d610a 100644 --- a/security/rubygem-encryptor/Makefile +++ b/security/rubygem-encryptor/Makefile @@ -1,17 +1,16 @@ PORTNAME= encryptor PORTVERSION= 3.0.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Wrapper for the standard ruby OpenSSL library WWW= https://github.com/attr-encrypted/encryptor LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-ezcrypto/Makefile b/security/rubygem-ezcrypto/Makefile index a60bc9f92572..f108b3d04357 100644 --- a/security/rubygem-ezcrypto/Makefile +++ b/security/rubygem-ezcrypto/Makefile @@ -1,22 +1,21 @@ PORTNAME= ezcrypto PORTVERSION= 0.7.2 PORTREVISION= 1 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= skreuzer@FreeBSD.org COMMENT= Wrapper for the poorly documented OpenSSL ruby library WWW= https://rubygems.org/gems/ezcrypto LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes post-patch: @${REINPLACE_CMD} -e 's|"test/store".freeze, ||' ${WRKSRC}/${GEMSPEC} .include diff --git a/security/rubygem-googleauth/Makefile b/security/rubygem-googleauth/Makefile index 4936e1af7b14..fa1a5f331aa6 100644 --- a/security/rubygem-googleauth/Makefile +++ b/security/rubygem-googleauth/Makefile @@ -1,25 +1,24 @@ PORTNAME= googleauth PORTVERSION= 1.3.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Google Auth Library for Ruby WWW= https://github.com/googleapis/google-auth-library-ruby LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-faraday>=0.17.3<3.0:www/rubygem-faraday \ rubygem-jwt>=1.4<3.0:www/rubygem-jwt \ rubygem-memoist>=0.16<1:devel/rubygem-memoist \ rubygem-multi_json>=1.11<2:devel/rubygem-multi_json \ rubygem-os>=0.9<2.0:devel/rubygem-os \ rubygem-signet>=0.16<2:security/rubygem-signet USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-gpgme/Makefile b/security/rubygem-gpgme/Makefile index 40813bbc222a..46cb5ce98fac 100644 --- a/security/rubygem-gpgme/Makefile +++ b/security/rubygem-gpgme/Makefile @@ -1,26 +1,25 @@ PORTNAME= gpgme PORTVERSION= 2.0.21 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby interface to GnuPG Made Easy (GPGME) WWW= https://github.com/ueno/ruby-gpgme LICENSE= LGPL21+ BUILD_DEPENDS= gpgme>=1.1.2:security/gpgme \ libassuan>=2.5.5:security/libassuan \ libgpg-error>=1.45:security/libgpg-error LIB_DEPENDS= libassuan.so:security/libassuan \ libgpg-error.so:security/libgpg-error \ libgpgme.so:security/gpgme USES= gem shebangfix -USE_RUBY= yes CONFIGURE_ARGS= --use-system-libraries SHEBANG_FILES= test/pinentry .include diff --git a/security/rubygem-gpgr/Makefile b/security/rubygem-gpgr/Makefile index a332a75b81e6..6cea3f60f774 100644 --- a/security/rubygem-gpgr/Makefile +++ b/security/rubygem-gpgr/Makefile @@ -1,19 +1,18 @@ PORTNAME= gpgr PORTVERSION= 0.1.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Very light interface to the command-line GPG tool WWW= https://github.com/HHRy/gpgr LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= gpg:security/gnupg NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-gssapi/Makefile b/security/rubygem-gssapi/Makefile index 781e2913b51f..c8078c061e28 100644 --- a/security/rubygem-gssapi/Makefile +++ b/security/rubygem-gssapi/Makefile @@ -1,19 +1,18 @@ PORTNAME= gssapi PORTVERSION= 1.3.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= joe@thrallingpenguin.com COMMENT= Ruby FFI Library wrapper for GSSAPI WWW= https://github.com/zenchild/gssapi LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-ffi>=1.0.1:devel/rubygem-ffi NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-haiti-hash/Makefile b/security/rubygem-haiti-hash/Makefile index b0ea3fc50c10..24c2beafcb69 100644 --- a/security/rubygem-haiti-hash/Makefile +++ b/security/rubygem-haiti-hash/Makefile @@ -1,24 +1,23 @@ PORTNAME= haiti-hash DISTVERSION= 1.4.1 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= salvadore@FreeBSD.org COMMENT= Hash type identifier (CLI tool and library) WWW= https://noraj.github.io/haiti/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-docopt>=0.6<1:devel/rubygem-docopt \ rubygem-paint>=2.2<3:devel/rubygem-paint USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/haiti \ bin/haiti_console .include diff --git a/security/rubygem-hkdf/Makefile b/security/rubygem-hkdf/Makefile index 6d3c53cc2ca6..ff5394addf05 100644 --- a/security/rubygem-hkdf/Makefile +++ b/security/rubygem-hkdf/Makefile @@ -1,18 +1,17 @@ PORTNAME= hkdf PORTVERSION= 1.0.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= HMAC-based Key Derivation Function WWW= https://github.com/jtdowney/hkdf LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-hkdf0/Makefile b/security/rubygem-hkdf0/Makefile index d19db4b2cac1..bc453aa0d4f8 100644 --- a/security/rubygem-hkdf0/Makefile +++ b/security/rubygem-hkdf0/Makefile @@ -1,21 +1,20 @@ PORTNAME= hkdf PORTVERSION= 0.3.0 CATEGORIES= security rubygems MASTER_SITES= RG PKGNAMESUFFIX= 0 MAINTAINER= sunpoet@FreeBSD.org COMMENT= HMAC-based Key Derivation Function WWW= https://github.com/jtdowney/hkdf LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^0\. .include diff --git a/security/rubygem-hrr_rb_ssh-ed25519/Makefile b/security/rubygem-hrr_rb_ssh-ed25519/Makefile index c123c87b0746..3191e795754a 100644 --- a/security/rubygem-hrr_rb_ssh-ed25519/Makefile +++ b/security/rubygem-hrr_rb_ssh-ed25519/Makefile @@ -1,20 +1,19 @@ PORTNAME= hrr_rb_ssh-ed25519 DISTVERSION= 0.4.2 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= hrr_rb_ssh extension that supports ED25519 WWW= https://github.com/hirura/hrr_rb_ssh-ed25519 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-ed25519>=1.2:security/rubygem-ed25519 \ rubygem-hrr_rb_ssh>=0.4:security/rubygem-hrr_rb_ssh NO_ARCH= yes USES= gem -USE_RUBY= yes .include diff --git a/security/rubygem-hrr_rb_ssh/Makefile b/security/rubygem-hrr_rb_ssh/Makefile index e828a91db3d7..cd618e08d978 100644 --- a/security/rubygem-hrr_rb_ssh/Makefile +++ b/security/rubygem-hrr_rb_ssh/Makefile @@ -1,17 +1,16 @@ PORTNAME= hrr_rb_ssh DISTVERSION= 0.4.2 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Pure Ruby SSH 2.0 server implementation WWW= https://github.com/hirura/hrr_rb_ssh LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes USES= gem -USE_RUBY= yes .include diff --git a/security/rubygem-lockbox/Makefile b/security/rubygem-lockbox/Makefile index f5e42b93b690..64c91bbdfabd 100644 --- a/security/rubygem-lockbox/Makefile +++ b/security/rubygem-lockbox/Makefile @@ -1,18 +1,17 @@ PORTNAME= lockbox PORTVERSION= 0.6.8 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Modern encryption for Rails WWW= https://github.com/ankane/lockbox LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-metasploit-aggregator/Makefile b/security/rubygem-metasploit-aggregator/Makefile index d7a279757893..30f1850ac6d7 100644 --- a/security/rubygem-metasploit-aggregator/Makefile +++ b/security/rubygem-metasploit-aggregator/Makefile @@ -1,20 +1,19 @@ PORTNAME= metasploit-aggregator PORTVERSION= 1.0.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Proxy for Meterpreter sessions WWW= https://github.com/rapid7/metasploit-aggregator LICENSE= BSD3CLAUSE RUN_DEPENDS= rubygem-grpc>=0:net/rubygem-grpc \ rubygem-rex-arch>=0:security/rubygem-rex-arch NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/metasploit-aggregator .include diff --git a/security/rubygem-metasploit-concern/Makefile b/security/rubygem-metasploit-concern/Makefile index 22d1de8ec685..e5f7d3d4dab1 100644 --- a/security/rubygem-metasploit-concern/Makefile +++ b/security/rubygem-metasploit-concern/Makefile @@ -1,22 +1,21 @@ PORTNAME= metasploit-concern PORTVERSION= 4.0.4 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Automatically include Modules from app/concerns WWW= https://github.com/rapid7/metasploit-concern LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activemodel60>=6.0:databases/rubygem-activemodel60 \ rubygem-activesupport60>=6.0:devel/rubygem-activesupport60 \ rubygem-railties60>=6.0:www/rubygem-railties60 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-metasploit-credential/Makefile b/security/rubygem-metasploit-credential/Makefile index c8464188829b..dd2bb5dc7a0b 100644 --- a/security/rubygem-metasploit-credential/Makefile +++ b/security/rubygem-metasploit-credential/Makefile @@ -1,27 +1,26 @@ PORTNAME= metasploit-credential PORTVERSION= 5.0.8 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Credential models for metasploit-framework and Metasploit Pro WWW= https://github.com/rapid7/metasploit-credential LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-metasploit-concern>=0:security/rubygem-metasploit-concern \ rubygem-metasploit_data_models>=5.0.0:security/rubygem-metasploit_data_models \ rubygem-metasploit-model>=0:security/rubygem-metasploit-model \ rubygem-net-ssh>=0:security/rubygem-net-ssh \ rubygem-pg>=0:databases/rubygem-pg \ rubygem-railties60>=6.0:www/rubygem-railties60 \ rubygem-rex-socket>=0:security/rubygem-rex-socket \ rubygem-rubyntlm>=0:net/rubygem-rubyntlm \ rubygem-rubyzip>=0:archivers/rubygem-rubyzip NO_ARCH= yes USES= gem -USE_RUBY= yes .include diff --git a/security/rubygem-metasploit-model/Makefile b/security/rubygem-metasploit-model/Makefile index a432d0a495df..c4d3e9a99989 100644 --- a/security/rubygem-metasploit-model/Makefile +++ b/security/rubygem-metasploit-model/Makefile @@ -1,22 +1,21 @@ PORTNAME= metasploit-model PORTVERSION= 4.0.6 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Metasploit Model Mixins and Validators WWW= https://github.com/rapid7/metasploit-model LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activemodel60>=6.0:databases/rubygem-activemodel60 \ rubygem-activesupport60>=6.0:devel/rubygem-activesupport60 \ rubygem-railties60>=6.0:www/rubygem-railties60 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-metasploit-payloads/Makefile b/security/rubygem-metasploit-payloads/Makefile index 49eb0655c588..7d1a3028eb6a 100644 --- a/security/rubygem-metasploit-payloads/Makefile +++ b/security/rubygem-metasploit-payloads/Makefile @@ -1,20 +1,19 @@ PORTNAME= metasploit-payloads PORTVERSION= 2.0.66 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Compiled binaries for Metasploit's Meterpreter WWW= https://github.com/rapid7/metasploit-payloads LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes NO_ARCH_IGNORE= libndkstager.so STRIP= .include diff --git a/security/rubygem-metasploit_data_models/Makefile b/security/rubygem-metasploit_data_models/Makefile index 2a85e4c8b288..dadafd577ad0 100644 --- a/security/rubygem-metasploit_data_models/Makefile +++ b/security/rubygem-metasploit_data_models/Makefile @@ -1,28 +1,27 @@ PORTNAME= metasploit_data_models PORTVERSION= 5.0.5 PORTEPOCH= 2 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Database layer for Metasploit WWW= https://github.com/rapid7/metasploit_data_models LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activerecord60>=6.0:databases/rubygem-activerecord60 \ rubygem-activesupport60>=6.0:devel/rubygem-activesupport60 \ rubygem-arel-helpers>=0:databases/rubygem-arel-helpers \ rubygem-metasploit-concern>=0:security/rubygem-metasploit-concern \ rubygem-metasploit-model>=3.1:security/rubygem-metasploit-model \ rubygem-pg>=0:databases/rubygem-pg \ rubygem-railties60>=6.0:www/rubygem-railties60 \ rubygem-recog>=2.0:security/rubygem-recog \ rubygem-webrick>=0:www/rubygem-webrick NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-metasploit_payloads-mettle/Makefile b/security/rubygem-metasploit_payloads-mettle/Makefile index 66a7f7327e43..70dfdcb02e1d 100644 --- a/security/rubygem-metasploit_payloads-mettle/Makefile +++ b/security/rubygem-metasploit_payloads-mettle/Makefile @@ -1,18 +1,17 @@ PORTNAME= metasploit_payloads-mettle PORTVERSION= 1.0.17 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Compiled binaries for Metasploit's next-gen Meterpreter WWW= https://github.com/rapid7/mettle LICENSE= BSD3CLAUSE USES= gem -USE_RUBY= yes NO_ARCH= yes STRIP= .include diff --git a/security/rubygem-nessus_rest/Makefile b/security/rubygem-nessus_rest/Makefile index 4801324442b6..3e87fd7f3328 100644 --- a/security/rubygem-nessus_rest/Makefile +++ b/security/rubygem-nessus_rest/Makefile @@ -1,18 +1,17 @@ PORTNAME= nessus_rest PORTVERSION= 0.1.6 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Communicate with Nessus Scanner over REST/JSON interface WWW= https://github.com/kost/nessus_rest-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-net-scp/Makefile b/security/rubygem-net-scp/Makefile index 97dfdfa3621f..62ad916939ca 100644 --- a/security/rubygem-net-scp/Makefile +++ b/security/rubygem-net-scp/Makefile @@ -1,20 +1,19 @@ PORTNAME= net-scp PORTVERSION= 4.0.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Non-interactive SCP processing WWW= https://github.com/net-ssh/net-scp LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-net-ssh6>=2.6.5<7.0.0:security/rubygem-net-ssh6 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-net-scp1/Makefile b/security/rubygem-net-scp1/Makefile index 48f60209f501..50e567089bb5 100644 --- a/security/rubygem-net-scp1/Makefile +++ b/security/rubygem-net-scp1/Makefile @@ -1,23 +1,22 @@ PORTNAME= net-scp PORTVERSION= 1.2.1 CATEGORIES= security rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= ruby@FreeBSD.org COMMENT= Non-interactive SCP processing WWW= https://github.com/net-ssh/net-scp LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-net-ssh>=2.6.5,2:security/rubygem-net-ssh USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\. .include diff --git a/security/rubygem-net-sftp/Makefile b/security/rubygem-net-sftp/Makefile index c68fc74ff12f..bcbabad7cea9 100644 --- a/security/rubygem-net-sftp/Makefile +++ b/security/rubygem-net-sftp/Makefile @@ -1,19 +1,18 @@ PORTNAME= net-sftp PORTVERSION= 4.0.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Implementation of the SFTP client protocol WWW= https://github.com/net-ssh/net-sftp LICENSE= MIT RUN_DEPENDS= rubygem-net-ssh>=5.0.0,2<8.0.0,2:security/rubygem-net-ssh USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-net-sftp2/Makefile b/security/rubygem-net-sftp2/Makefile index 6c1bd850481e..71e41b89f4ac 100644 --- a/security/rubygem-net-sftp2/Makefile +++ b/security/rubygem-net-sftp2/Makefile @@ -1,22 +1,21 @@ PORTNAME= net-sftp PORTVERSION= 2.1.2 CATEGORIES= security rubygems MASTER_SITES= RG PKGNAMESUFFIX= 2 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Implementation of the SFTP client protocol WWW= https://github.com/net-ssh/net-sftp LICENSE= MIT RUN_DEPENDS= rubygem-net-ssh>=2.6.5,2:security/rubygem-net-ssh USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^2\. .include diff --git a/security/rubygem-net-ssh-gateway/Makefile b/security/rubygem-net-ssh-gateway/Makefile index 47ad1342dd4e..5e85bfcd7c0a 100644 --- a/security/rubygem-net-ssh-gateway/Makefile +++ b/security/rubygem-net-ssh-gateway/Makefile @@ -1,20 +1,19 @@ PORTNAME= net-ssh-gateway PORTVERSION= 2.0.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Establish Net::SSH connections through firewalls WWW= https://github.com/net-ssh/net-ssh-gateway LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-net-ssh>=4.0.0,2:security/rubygem-net-ssh USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-net-ssh-krb/Makefile b/security/rubygem-net-ssh-krb/Makefile index 9281edff7a26..e06a534cf6b8 100644 --- a/security/rubygem-net-ssh-krb/Makefile +++ b/security/rubygem-net-ssh-krb/Makefile @@ -1,20 +1,19 @@ PORTNAME= net-ssh-krb DISTVERSION= 0.5.1 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= romain@FreeBSD.org COMMENT= Add Kerberos authentication capabilities to Net::SSH WWW= https://rubygems.org/gems/net-ssh-krb LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-gssapi>=1.3:security/rubygem-gssapi \ rubygem-net-ssh>=2.0:security/rubygem-net-ssh USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-net-ssh-multi/Makefile b/security/rubygem-net-ssh-multi/Makefile index 190492167845..5cd0ca21f78e 100644 --- a/security/rubygem-net-ssh-multi/Makefile +++ b/security/rubygem-net-ssh-multi/Makefile @@ -1,20 +1,19 @@ PORTNAME= net-ssh-multi PORTVERSION= 1.2.1 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= renchap@cocoa-x.com COMMENT= SSH connection multiplexing library for Ruby WWW= https://github.com/net-ssh/net-ssh-multi LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-net-ssh>=2.6.5:security/rubygem-net-ssh \ rubygem-net-ssh-gateway>=1.2.0:security/rubygem-net-ssh-gateway NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-net-ssh/Makefile b/security/rubygem-net-ssh/Makefile index 726835e92a4e..ab35dc242f7a 100644 --- a/security/rubygem-net-ssh/Makefile +++ b/security/rubygem-net-ssh/Makefile @@ -1,27 +1,26 @@ PORTNAME= net-ssh PORTVERSION= 7.0.1 PORTEPOCH= 2 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Non-interactive SSH processing WWW= https://github.com/net-ssh/net-ssh LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= support/ssh_tunnel_bug.rb OPTIONS_DEFINE= PROMPT_PASSPHRASES OPTIONS_DEFAULT=PROMPT_PASSPHRASES PROMPT_PASSPHRASES_DESC= Prompt for passphrases on keys PROMPT_PASSPHRASES_RUN_DEPENDS= rubygem-ruby-termios>=0:comms/rubygem-ruby-termios .include diff --git a/security/rubygem-net-ssh5/Makefile b/security/rubygem-net-ssh5/Makefile index d6ac862cb699..4fe7d875b95e 100644 --- a/security/rubygem-net-ssh5/Makefile +++ b/security/rubygem-net-ssh5/Makefile @@ -1,29 +1,28 @@ PORTNAME= net-ssh PORTVERSION= 5.2.0 PORTEPOCH= 2 CATEGORIES= security rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 MAINTAINER= ruby@FreeBSD.org COMMENT= Non-interactive SSH processing WWW= https://github.com/net-ssh/net-ssh LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem shebangfix -USE_RUBY= yes OPTIONS_DEFINE= PROMPT_PASSPHRASES OPTIONS_DEFAULT=PROMPT_PASSPHRASES PROMPT_PASSPHRASES_DESC= Prompt for passphrases on keys SHEBANG_FILES= support/ssh_tunnel_bug.rb NO_ARCH= yes PROMPT_PASSPHRASES_RUN_DEPENDS= rubygem-ruby-termios>=0:comms/rubygem-ruby-termios PORTSCOUT= limit:^5\. .include diff --git a/security/rubygem-net-ssh6/Makefile b/security/rubygem-net-ssh6/Makefile index 37dd0ab8bfe2..16a6a077ec1f 100644 --- a/security/rubygem-net-ssh6/Makefile +++ b/security/rubygem-net-ssh6/Makefile @@ -1,29 +1,28 @@ PORTNAME= net-ssh PORTVERSION= 6.1.0 CATEGORIES= security rubygems MASTER_SITES= RG PKGNAMESUFFIX= 6 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Non-interactive SSH processing WWW= https://github.com/net-ssh/net-ssh LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^6\. SHEBANG_FILES= support/ssh_tunnel_bug.rb OPTIONS_DEFINE= PROMPT_PASSPHRASES OPTIONS_DEFAULT=PROMPT_PASSPHRASES PROMPT_PASSPHRASES_DESC= Prompt for passphrases on keys PROMPT_PASSPHRASES_RUN_DEPENDS= rubygem-ruby-termios>=0:comms/rubygem-ruby-termios .include diff --git a/security/rubygem-net-telnet/Makefile b/security/rubygem-net-telnet/Makefile index c9b906c94511..0582e834aec5 100644 --- a/security/rubygem-net-telnet/Makefile +++ b/security/rubygem-net-telnet/Makefile @@ -1,19 +1,18 @@ PORTNAME= net-telnet PORTVERSION= 0.2.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provides telnet client functionality WWW= https://github.com/ruby/net-telnet LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem shebangfix SHEBANG_FILES= bin/setup .include diff --git a/security/rubygem-nexpose/Makefile b/security/rubygem-nexpose/Makefile index dc4ad228e9c2..78c61d811f3f 100644 --- a/security/rubygem-nexpose/Makefile +++ b/security/rubygem-nexpose/Makefile @@ -1,17 +1,16 @@ PORTNAME= nexpose PORTVERSION= 7.3.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Ruby API to Rapid7 Nexpose vulnerability management WWW= https://github.com/rapid7/nexpose-client LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING NO_ARCH= yes USES= gem -USE_RUBY= yes .include diff --git a/security/rubygem-nmap-parser/Makefile b/security/rubygem-nmap-parser/Makefile index cb1b674f4e6a..89ba9982f2eb 100644 --- a/security/rubygem-nmap-parser/Makefile +++ b/security/rubygem-nmap-parser/Makefile @@ -1,19 +1,18 @@ PORTNAME= nmap-parser PORTVERSION= 0.3.5 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby interface to Nmap scan data WWW= http://rubynmap.sourceforge.net LICENSE= MIT RUN_DEPENDS= nmap:security/nmap NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-omniauth-alicloud/Makefile b/security/rubygem-omniauth-alicloud/Makefile index a3b5ba90f7f5..223fd2eac551 100644 --- a/security/rubygem-omniauth-alicloud/Makefile +++ b/security/rubygem-omniauth-alicloud/Makefile @@ -1,20 +1,19 @@ PORTNAME= omniauth-alicloud PORTVERSION= 2.0.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Wrapper the AliCloud Oauth2 API WWW= https://gitlab.com/gitlab-jh/jh-team/omniauth-alicloud LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-omniauth-oauth2>=1.8<2:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-omniauth-atlassian-oauth2/Makefile b/security/rubygem-omniauth-atlassian-oauth2/Makefile index f8a1f79d7cde..e74657e9c92b 100644 --- a/security/rubygem-omniauth-atlassian-oauth2/Makefile +++ b/security/rubygem-omniauth-atlassian-oauth2/Makefile @@ -1,21 +1,20 @@ PORTNAME= omniauth-atlassian-oauth2 PORTVERSION= 0.2.0 PORTREVISION= 1 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Atlassian OAuth2 strategy for OmniAuth WWW= https://github.com/aguynamedben/omniauth-atlassian-oauth2 LICENSE= MIT RUN_DEPENDS= rubygem-omniauth1>=1.1.1:security/rubygem-omniauth1 \ rubygem-omniauth-oauth2>=1.5:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-omniauth-bitbucket/Makefile b/security/rubygem-omniauth-bitbucket/Makefile index 3eb2e6c4347c..da43dbc74ff8 100644 --- a/security/rubygem-omniauth-bitbucket/Makefile +++ b/security/rubygem-omniauth-bitbucket/Makefile @@ -1,22 +1,21 @@ PORTNAME= omniauth-bitbucket PORTVERSION= 0.0.2 PORTREVISION= 1 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= OmniAuth strategy for Bitbucket WWW= https://github.com/sishen/omniauth-bitbucket LICENSE= MIT RUN_DEPENDS= rubygem-multi_json>=1.7<2:devel/rubygem-multi_json \ rubygem-omniauth1>=1.1<2:security/rubygem-omniauth1 \ rubygem-omniauth-oauth>=1.0<2:net/rubygem-omniauth-oauth USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-omniauth-cas/Makefile b/security/rubygem-omniauth-cas/Makefile index 515cdc97c29d..ab6c0b4256fc 100644 --- a/security/rubygem-omniauth-cas/Makefile +++ b/security/rubygem-omniauth-cas/Makefile @@ -1,22 +1,21 @@ PORTNAME= omniauth-cas PORTVERSION= 2.0.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Central Authentication Service (CAS) strategy for OmniAuth WWW= https://github.com/dlindahl/omniauth-cas LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-addressable>=2.3<3:www/rubygem-addressable \ rubygem-nokogiri>=1.5<2:textproc/rubygem-nokogiri \ rubygem-omniauth1>=1.2<2:security/rubygem-omniauth1 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-omniauth-cas3-oauth2/Makefile b/security/rubygem-omniauth-cas3-oauth2/Makefile index 789e3db327a6..6d0f6c50626a 100644 --- a/security/rubygem-omniauth-cas3-oauth2/Makefile +++ b/security/rubygem-omniauth-cas3-oauth2/Makefile @@ -1,23 +1,22 @@ PORTNAME= omniauth-cas3 PORTVERSION= 1.1.4 CATEGORIES= security rubygems MASTER_SITES= RG PKGNAMESUFFIX= -oauth2 MAINTAINER= mfechner@FreeBSD.org COMMENT= CAS 3.0 Strategy for OmniAuth WWW= https://github.com/tduehr/omniauth-cas3 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-addressable>=2.3<3:www/rubygem-addressable \ rubygem-nokogiri>=1.7.1<2:textproc/rubygem-nokogiri \ rubygem-omniauth>=1.2<3:security/rubygem-omniauth USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-omniauth-cas3/Makefile b/security/rubygem-omniauth-cas3/Makefile index 7bbc4dde27fe..354d34db9fe4 100644 --- a/security/rubygem-omniauth-cas3/Makefile +++ b/security/rubygem-omniauth-cas3/Makefile @@ -1,23 +1,22 @@ PORTNAME= omniauth-cas3 PORTVERSION= 1.1.4 PORTREVISION= 1 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= CAS 3.0 Strategy for OmniAuth WWW= https://github.com/tduehr/omniauth-cas3 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-addressable>=2.3<3:www/rubygem-addressable \ rubygem-nokogiri>=1.7.1<2:textproc/rubygem-nokogiri \ rubygem-omniauth1>=1.2<2:security/rubygem-omniauth1 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-omniauth-dingtalk-oauth2/Makefile b/security/rubygem-omniauth-dingtalk-oauth2/Makefile index 64b53916e8f4..a8004f882cf8 100644 --- a/security/rubygem-omniauth-dingtalk-oauth2/Makefile +++ b/security/rubygem-omniauth-dingtalk-oauth2/Makefile @@ -1,21 +1,20 @@ PORTNAME= omniauth-dingtalk-oauth2 PORTVERSION= 1.0.1 PORTREVISION= 1 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Wrapper the DingTalk Oauth2 API WWW= https://gitlab.com/gitlab-jh/jh-team/omniauth-dingtalk LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-omniauth-oauth2>=1.7<3:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-omniauth-gitlab/Makefile b/security/rubygem-omniauth-gitlab/Makefile index 320a7138e32b..159210eeda6f 100644 --- a/security/rubygem-omniauth-gitlab/Makefile +++ b/security/rubygem-omniauth-gitlab/Makefile @@ -1,21 +1,20 @@ PORTNAME= omniauth-gitlab PORTVERSION= 4.1.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= OmniAuth strategy for GitLab WWW= https://github.com/linchus/omniauth-gitlab LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-omniauth>=2.0<3:security/rubygem-omniauth \ rubygem-omniauth-oauth2>=1.8.0<1.9:net/rubygem-omniauth-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-omniauth-jwt/Makefile b/security/rubygem-omniauth-jwt/Makefile index f1a7459cd946..7bfc493a01fe 100644 --- a/security/rubygem-omniauth-jwt/Makefile +++ b/security/rubygem-omniauth-jwt/Makefile @@ -1,22 +1,21 @@ PORTNAME= omniauth-jwt PORTVERSION= 0.0.2 PORTREVISION= 1 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= OmniAuth strategy to accept JWT-based single sign-on WWW= https://github.com/mbleigh/omniauth-jwt LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-jwt>=0:www/rubygem-jwt \ rubygem-omniauth1>=1.1<2:security/rubygem-omniauth1 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-omniauth-multipassword/Makefile b/security/rubygem-omniauth-multipassword/Makefile index b4fa302bcfdd..a799aa1b0a43 100644 --- a/security/rubygem-omniauth-multipassword/Makefile +++ b/security/rubygem-omniauth-multipassword/Makefile @@ -1,21 +1,20 @@ PORTNAME= omniauth-multipassword PORTVERSION= 0.4.2 PORTREVISION= 1 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= OmniAuth strategy using different password strategies WWW= https://github.com/jgraichen/omniauth-multipassword LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-omniauth1>=1.0<2:security/rubygem-omniauth1 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-omniauth-oauth2-generic/Makefile b/security/rubygem-omniauth-oauth2-generic/Makefile index b2e8d5ba60a3..f7a07c739272 100644 --- a/security/rubygem-omniauth-oauth2-generic/Makefile +++ b/security/rubygem-omniauth-oauth2-generic/Makefile @@ -1,24 +1,23 @@ PORTNAME= omniauth-oauth2-generic PORTVERSION= 0.2.8 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Generic, Configurable OmniAuth Strategy for OAuth2 providers WWW= https://gitlab.com/satorix/omniauth-oauth2-generic LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-omniauth-oauth2>=1.0<2:net/rubygem-omniauth-oauth2 \ rubygem-rake>=0:devel/rubygem-rake USES= gem -USE_RUBY= yes NO_ARCH= yes post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/console ${STAGEDIR}${PREFIX}/bin/setup .include diff --git a/security/rubygem-omniauth-rails_csrf_protection/Makefile b/security/rubygem-omniauth-rails_csrf_protection/Makefile index 8bd530bec7e1..2df24a6ee691 100644 --- a/security/rubygem-omniauth-rails_csrf_protection/Makefile +++ b/security/rubygem-omniauth-rails_csrf_protection/Makefile @@ -1,21 +1,20 @@ PORTNAME= omniauth-rails_csrf_protection PORTVERSION= 1.0.1 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Mitigation against CVE-2015-9284 for OmniAuth WWW= https://github.com/cookpad/omniauth-rails_csrf_protection LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-actionpack61>=4.2:www/rubygem-actionpack61 \ rubygem-omniauth>=2.0<3:security/rubygem-omniauth USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-omniauth-saml/Makefile b/security/rubygem-omniauth-saml/Makefile index 95946b636950..742fe5243465 100644 --- a/security/rubygem-omniauth-saml/Makefile +++ b/security/rubygem-omniauth-saml/Makefile @@ -1,21 +1,20 @@ PORTNAME= omniauth-saml PORTVERSION= 2.1.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= OmniAuth strategy for SAML WWW= https://github.com/omniauth/omniauth-saml LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-omniauth>=2.0<3:security/rubygem-omniauth \ rubygem-ruby-saml>=1.12<2:security/rubygem-ruby-saml USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-omniauth-saml1/Makefile b/security/rubygem-omniauth-saml1/Makefile index cc04b2fe7360..af2c1a272254 100644 --- a/security/rubygem-omniauth-saml1/Makefile +++ b/security/rubygem-omniauth-saml1/Makefile @@ -1,22 +1,21 @@ PORTNAME= omniauth-saml PORTVERSION= 1.10.3 CATEGORIES= security rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= bofh@FreeBSD.org COMMENT= OmniAuth strategy for SAML WWW= https://github.com/omniauth/omniauth-saml LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-omniauth1>=1.3.2:security/rubygem-omniauth1 \ rubygem-ruby-saml>=1.9<2:security/rubygem-ruby-saml USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-omniauth-shibboleth/Makefile b/security/rubygem-omniauth-shibboleth/Makefile index d1dd2792d5e0..d952487bcfc0 100644 --- a/security/rubygem-omniauth-shibboleth/Makefile +++ b/security/rubygem-omniauth-shibboleth/Makefile @@ -1,20 +1,19 @@ PORTNAME= omniauth-shibboleth PORTVERSION= 1.3.0 PORTREVISION= 1 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= OmniAuth Shibboleth strategies for OmniAuth 1.x WWW= https://github.com/toyokazu/omniauth-shibboleth LICENSE= MIT RUN_DEPENDS= rubygem-omniauth1>=1.0.0:security/rubygem-omniauth1 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-omniauth/Makefile b/security/rubygem-omniauth/Makefile index 103beef2a716..deb12120d058 100644 --- a/security/rubygem-omniauth/Makefile +++ b/security/rubygem-omniauth/Makefile @@ -1,22 +1,21 @@ PORTNAME= omniauth PORTVERSION= 2.1.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Generalized Rack framework for multiple-provider authentication WWW= https://github.com/omniauth/omniauth LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-hashie>=3.4.6:devel/rubygem-hashie \ rubygem-rack>=2.2.3,3:www/rubygem-rack \ rubygem-rack-protection>=0:www/rubygem-rack-protection USES= cpe gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-omniauth1/Makefile b/security/rubygem-omniauth1/Makefile index 0dd9067e565d..3ddfe15d09e1 100644 --- a/security/rubygem-omniauth1/Makefile +++ b/security/rubygem-omniauth1/Makefile @@ -1,25 +1,24 @@ PORTNAME= omniauth PORTVERSION= 1.9.2 PORTREVISION= 1 CATEGORIES= security rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Generalized Rack framework for multiple-provider authentication WWW= https://github.com/omniauth/omniauth LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-hashie>=3.4.6:devel/rubygem-hashie \ rubygem-rack22>=1.6.2,3<3,3:www/rubygem-rack22 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\. .include diff --git a/security/rubygem-openssl-ccm/Makefile b/security/rubygem-openssl-ccm/Makefile index c8cfb54fc3b0..24da09ddd7af 100644 --- a/security/rubygem-openssl-ccm/Makefile +++ b/security/rubygem-openssl-ccm/Makefile @@ -1,18 +1,17 @@ PORTNAME= openssl-ccm PORTVERSION= 1.2.3 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Implementation of RFC 3610 - Counter with CBC-MAC (CCM) WWW= https://github.com/SmallLars/openssl-ccm LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-openssl-cmac/Makefile b/security/rubygem-openssl-cmac/Makefile index ee0cdf3f9816..5de79af2e10c 100644 --- a/security/rubygem-openssl-cmac/Makefile +++ b/security/rubygem-openssl-cmac/Makefile @@ -1,18 +1,17 @@ PORTNAME= openssl-cmac PORTVERSION= 2.0.2 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Implementation of RFC 4493, 4494, 4615 - AES-CMAC Algorithm WWW= https://github.com/SmallLars/openssl-cmac LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-openssl-signature_algorithm/Makefile b/security/rubygem-openssl-signature_algorithm/Makefile index c653d770566f..166f5b641e13 100644 --- a/security/rubygem-openssl-signature_algorithm/Makefile +++ b/security/rubygem-openssl-signature_algorithm/Makefile @@ -1,18 +1,17 @@ PORTNAME= openssl-signature_algorithm PORTVERSION= 1.0.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= ECDSA, RSA-PSS and RSA-PKCS for ruby WWW= https://github.com/cedarcode/openssl-signature_algorithm LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-openssl/Makefile b/security/rubygem-openssl/Makefile index 38a08dba75f1..31f8c673587d 100644 --- a/security/rubygem-openssl/Makefile +++ b/security/rubygem-openssl/Makefile @@ -1,20 +1,19 @@ PORTNAME= openssl PORTVERSION= 3.0.1 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby gem that wraps around the OpenSSL library WWW= https://github.com/ruby/openssl LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE.txt USES= cpe gem ssl -USE_RUBY= yes CPE_VENDOR= ruby-lang .include diff --git a/security/rubygem-openssl2/Makefile b/security/rubygem-openssl2/Makefile index 41a98a531b1c..647064ae2395 100644 --- a/security/rubygem-openssl2/Makefile +++ b/security/rubygem-openssl2/Makefile @@ -1,25 +1,24 @@ PORTNAME= openssl PORTVERSION= 2.2.2 CATEGORIES= security rubygems MASTER_SITES= RG PKGNAMESUFFIX= 2 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Wrap the OpenSSL library WWW= https://github.com/ruby/openssl LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ipaddr>=0:net/rubygem-ipaddr USES= cpe gem ssl -USE_RUBY= yes CPE_VENDOR= ruby-lang PORTSCOUT= limit:^2\. .include diff --git a/security/rubygem-openssl221/Makefile b/security/rubygem-openssl221/Makefile index d028e5c4f83d..7d546de16ed0 100644 --- a/security/rubygem-openssl221/Makefile +++ b/security/rubygem-openssl221/Makefile @@ -1,25 +1,24 @@ PORTNAME= openssl PORTVERSION= 2.2.1 CATEGORIES= security rubygems MASTER_SITES= RG PKGNAMESUFFIX= 221 MAINTAINER= ruby@FreeBSD.org COMMENT= Wrap the OpenSSL library WWW= https://github.com/ruby/openssl LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/BSDL LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ipaddr122>=0:net/rubygem-ipaddr122 USES= cpe gem ssl -USE_RUBY= yes CPE_VENDOR= ruby-lang PORTSCOUT= limit:^2\.2\.1 .include diff --git a/security/rubygem-openvas-omp/Makefile b/security/rubygem-openvas-omp/Makefile index ffc41f26d69a..781fcfb0fb87 100644 --- a/security/rubygem-openvas-omp/Makefile +++ b/security/rubygem-openvas-omp/Makefile @@ -1,18 +1,17 @@ PORTNAME= openvas-omp PORTVERSION= 0.0.4 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Communicate with OpenVAS manager through OMP WWW= https://github.com/kost/openvas-omp-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-origami/Makefile b/security/rubygem-origami/Makefile index 1c1d99ce2bef..4fa3550f1325 100644 --- a/security/rubygem-origami/Makefile +++ b/security/rubygem-origami/Makefile @@ -1,21 +1,20 @@ PORTNAME= origami PORTVERSION= 2.1.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Ruby framework to parse analyze and forge PDF documents WWW= https://github.com/gdelugre/origami LICENSE= LGPL3+ LICENSE_FILE= ${WRKSRC}/COPYING.LESSER RUN_DEPENDS= rubygem-colorize>=0.7:devel/rubygem-colorize NO_ARCH= yes USES= gem shebangfix SHEBANG_FILES= examples/*/*.rb -USE_RUBY= yes .include diff --git a/security/rubygem-pbkdf2-ruby/Makefile b/security/rubygem-pbkdf2-ruby/Makefile index a5c780e512b8..9394e63e547f 100644 --- a/security/rubygem-pbkdf2-ruby/Makefile +++ b/security/rubygem-pbkdf2-ruby/Makefile @@ -1,17 +1,16 @@ PORTNAME= pbkdf2-ruby PORTVERSION= 0.2.1 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= feld@FreeBSD.org COMMENT= Password Based Key Derivation Function 2 for Ruby WWW= https://github.com/emerose/pbkdf2-ruby LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-pundit/Makefile b/security/rubygem-pundit/Makefile index 702facc6542c..28a009daf394 100644 --- a/security/rubygem-pundit/Makefile +++ b/security/rubygem-pundit/Makefile @@ -1,20 +1,19 @@ PORTNAME= pundit PORTVERSION= 2.2.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Object oriented authorization for Rails applications WWW= https://github.com/varvet/pundit LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activesupport5>=3.0.0:devel/rubygem-activesupport5 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-pundit61/Makefile b/security/rubygem-pundit61/Makefile index 291b0d94d290..8b78d757df10 100644 --- a/security/rubygem-pundit61/Makefile +++ b/security/rubygem-pundit61/Makefile @@ -1,21 +1,20 @@ PORTNAME= pundit PORTVERSION= 2.3.0 CATEGORIES= security rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= bofh@FreeBSD.org COMMENT= Object oriented authorization for Rails applications WWW= https://github.com/varvet/pundit LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activesupport61>=3.0.0:devel/rubygem-activesupport61 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-pyu-ruby-sasl/Makefile b/security/rubygem-pyu-ruby-sasl/Makefile index 6aa39d959ab7..80e435de7081 100644 --- a/security/rubygem-pyu-ruby-sasl/Makefile +++ b/security/rubygem-pyu-ruby-sasl/Makefile @@ -1,17 +1,16 @@ PORTNAME= pyu-ruby-sasl PORTVERSION= 0.0.3.3 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple Authentication and Security Layer WWW= https://github.com/pyu10055/ruby-sasl LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-rack-oauth2/Makefile b/security/rubygem-rack-oauth2/Makefile index 3822fc29b050..49b1e7422a78 100644 --- a/security/rubygem-rack-oauth2/Makefile +++ b/security/rubygem-rack-oauth2/Makefile @@ -1,24 +1,23 @@ PORTNAME= rack-oauth2 PORTVERSION= 1.21.3 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= OAuth 2.0 Server & Client Library WWW= https://github.com/nov/rack-oauth2 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport61>=0:devel/rubygem-activesupport61 \ rubygem-attr_required>=0:devel/rubygem-attr_required \ rubygem-httpclient>=0:www/rubygem-httpclient \ rubygem-json-jwt>=1.11.0:www/rubygem-json-jwt \ rubygem-rack>=2.1.0,3:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-razorback-scriptNugget/Makefile b/security/rubygem-razorback-scriptNugget/Makefile index 0ad9eb5dac00..a79d1b7817fb 100644 --- a/security/rubygem-razorback-scriptNugget/Makefile +++ b/security/rubygem-razorback-scriptNugget/Makefile @@ -1,17 +1,16 @@ PORTNAME= razorback-scriptNugget PORTVERSION= 0.5.0 PORTREVISION= 1 CATEGORIES= security rubygems MASTER_SITES= SF/razorbacktm/Bindings DISTNAME= scriptNugget-ruby-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Framework for an intelligence driven security - Script Nugget Ruby WWW= http://razorbacktm.sourceforge.net/ NO_ARCH= yes -USE_RUBY= yes USES= gem shebangfix SHEBANG_FILES= lib/razorback.rb .include diff --git a/security/rubygem-rbnacl-libsodium/Makefile b/security/rubygem-rbnacl-libsodium/Makefile index e58733908e50..f24d5de42864 100644 --- a/security/rubygem-rbnacl-libsodium/Makefile +++ b/security/rubygem-rbnacl-libsodium/Makefile @@ -1,24 +1,23 @@ PORTNAME= rbnacl-libsodium PORTVERSION= 1.0.16 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Port rbnacl with bundled libsodium WWW= https://github.com/cryptosphere/rbnacl-libsodium LICENSE= MIT RUN_DEPENDS= rubygem-rbnacl>=3.0.1:security/rubygem-rbnacl USES= gem libtool USE_LDCONFIG= yes -USE_RUBY= yes post-install: ( cd ${WRKSRC} && \ ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/${GEMS_DIR}/${PORTNAME}-${PORTVERSION} ) ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/vendor/libsodium/src/libsodium/.libs/libsodium.so.23.1.0 ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/vendor/libsodium/dist/lib/libsodium.so.23.1.0 .include diff --git a/security/rubygem-rbnacl/Makefile b/security/rubygem-rbnacl/Makefile index ab7cf65e6f5b..e76046b39b30 100644 --- a/security/rubygem-rbnacl/Makefile +++ b/security/rubygem-rbnacl/Makefile @@ -1,19 +1,18 @@ PORTNAME= rbnacl PORTVERSION= 5.0.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Networking and Cryptography (NaCl) library WWW= https://github.com/cryptosphere/rbnacl LICENSE= MIT LIB_DEPENDS= libsodium.so:security/libsodium RUN_DEPENDS= rubygem-ffi>=0:devel/rubygem-ffi NO_ARCH= yes USES= gem -USE_RUBY= yes .include diff --git a/security/rubygem-recog/Makefile b/security/rubygem-recog/Makefile index dd8627da43a4..d3a41044a47a 100644 --- a/security/rubygem-recog/Makefile +++ b/security/rubygem-recog/Makefile @@ -1,26 +1,25 @@ PORTNAME= recog PORTVERSION= 2.3.23 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Framework for fingerprinting products WWW= https://github.com/rapid7/recog LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING 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 PLIST_FILES= bin/recog_cleanup \ bin/recog_export \ bin/recog_match \ bin/recog_standardize \ bin/recog_verify .include diff --git a/security/rubygem-rex-arch/Makefile b/security/rubygem-rex-arch/Makefile index 32d1dffd1865..516a4a1b87dd 100644 --- a/security/rubygem-rex-arch/Makefile +++ b/security/rubygem-rex-arch/Makefile @@ -1,19 +1,18 @@ PORTNAME= rex-arch PORTVERSION= 0.1.14 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Ruby Exploitation(Rex) library with architecture specific information WWW= https://github.com/rapid7/rex-arch LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rex-text>=0:security/rubygem-rex-text NO_ARCH= yes USES= gem -USE_RUBY= yes .include diff --git a/security/rubygem-rex-bin_tools/Makefile b/security/rubygem-rex-bin_tools/Makefile index b98dccb7a167..60db7343ee08 100644 --- a/security/rubygem-rex-bin_tools/Makefile +++ b/security/rubygem-rex-bin_tools/Makefile @@ -1,30 +1,29 @@ PORTNAME= rex-bin_tools PORTVERSION= 0.1.8 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Ruby Exploitation(Rex) Library for Binary Manipulation WWW= https://github.com/rapid7/rex-bin_tools LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= nasm>=0:devel/nasm \ rubygem-metasm>=0:devel/rubygem-metasm \ rubygem-rex-arch>=0:security/rubygem-rex-arch \ rubygem-rex-core>=0:security/rubygem-rex-core \ rubygem-rex-struct2>=0:security/rubygem-rex-struct2 \ rubygem-rex-text>=0:security/rubygem-rex-text NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/msfbinscan \ bin/msfelfscan \ bin/msfmachscan \ bin/msfpescan .include diff --git a/security/rubygem-rex-core/Makefile b/security/rubygem-rex-core/Makefile index 09b0b345fce3..18f15ac63612 100644 --- a/security/rubygem-rex-core/Makefile +++ b/security/rubygem-rex-core/Makefile @@ -1,17 +1,16 @@ PORTNAME= rex-core PORTVERSION= 0.1.28 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Core libraries required for the Ruby Exploitation (Rex) Suite WWW= https://github.com/rapid7/rex-core LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes USES= gem -USE_RUBY= yes .include diff --git a/security/rubygem-rex-encoder/Makefile b/security/rubygem-rex-encoder/Makefile index 456584699dec..ea1e57d49989 100644 --- a/security/rubygem-rex-encoder/Makefile +++ b/security/rubygem-rex-encoder/Makefile @@ -1,22 +1,21 @@ PORTNAME= rex-encoder PORTVERSION= 0.1.6 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Ruby Exploitation(Rex) library for various polymorphic encoders WWW= https://github.com/rapid7/rex-encoder LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-metasm>=0:devel/rubygem-metasm \ rubygem-rex-arch>=0:security/rubygem-rex-arch \ rubygem-rex-text>=0:security/rubygem-rex-text NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-rex-exploitation/Makefile b/security/rubygem-rex-exploitation/Makefile index 84fec3c12840..a0cc1359b002 100644 --- a/security/rubygem-rex-exploitation/Makefile +++ b/security/rubygem-rex-exploitation/Makefile @@ -1,25 +1,24 @@ PORTNAME= rex-exploitation PORTVERSION= 0.1.35 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Ruby Exploitation(Rex) library for various exploitation helpers WWW= https://github.com/rapid7/rex-exploitation LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-jsobfu>=0:www/rubygem-jsobfu \ rubygem-metasm>=0:devel/rubygem-metasm \ rubygem-rex-arch>=0:security/rubygem-rex-arch \ rubygem-rex-encoder>=0:security/rubygem-rex-encoder \ rubygem-rexml>=0:textproc/rubygem-rexml \ rubygem-rex-text>=0:security/rubygem-rex-text NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-rex-java/Makefile b/security/rubygem-rex-java/Makefile index 401e8e1ef464..73ea74b11953 100644 --- a/security/rubygem-rex-java/Makefile +++ b/security/rubygem-rex-java/Makefile @@ -1,18 +1,17 @@ PORTNAME= rex-java PORTVERSION= 0.1.6 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Ruby Exploitation(Rex) library for parsing Java serialized streams WWW= https://github.com/rapid7/rex-java LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-rex-mime/Makefile b/security/rubygem-rex-mime/Makefile index 5ba1561f2133..2def07a2fc40 100644 --- a/security/rubygem-rex-mime/Makefile +++ b/security/rubygem-rex-mime/Makefile @@ -1,20 +1,19 @@ PORTNAME= rex-mime PORTVERSION= 0.1.7 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Ruby Exploitation(Rex) methods for creating and parsing MIME messages WWW= https://github.com/rapid7/rex-mime LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rex-text>=0:security/rubygem-rex-text NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-rex-nop/Makefile b/security/rubygem-rex-nop/Makefile index 0bfe2b6b45b4..1ffb3ef588cc 100644 --- a/security/rubygem-rex-nop/Makefile +++ b/security/rubygem-rex-nop/Makefile @@ -1,20 +1,19 @@ PORTNAME= rex-nop PORTVERSION= 0.1.2 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Ruby Exploitation(Rex) library for NOP generation WWW= https://github.com/rapid7/rex-nop LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rex-arch>=0:security/rubygem-rex-arch NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-rex-ole/Makefile b/security/rubygem-rex-ole/Makefile index 36a8fa26d192..30468ae58811 100644 --- a/security/rubygem-rex-ole/Makefile +++ b/security/rubygem-rex-ole/Makefile @@ -1,20 +1,19 @@ PORTNAME= rex-ole PORTVERSION= 0.1.7 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Ruby Exploitation(Rex) library for working with OLE files and streams WWW= https://github.com/rapid7/rex-ole LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rex-text>=0:security/rubygem-rex-text NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-rex-powershell/Makefile b/security/rubygem-rex-powershell/Makefile index 75704e7e0758..95668c4b2155 100644 --- a/security/rubygem-rex-powershell/Makefile +++ b/security/rubygem-rex-powershell/Makefile @@ -1,22 +1,21 @@ PORTNAME= rex-powershell PORTVERSION= 0.1.96 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Ruby Exploitation(Rex) library for generating Powershell scripts WWW= https://github.com/rapid7/rex-powershell LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rex-random_identifier>=0:security/rubygem-rex-random_identifier \ rubygem-rex-text>=0:security/rubygem-rex-text \ rubygem-ruby-rc4>=0:security/rubygem-ruby-rc4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-rex-random_identifier/Makefile b/security/rubygem-rex-random_identifier/Makefile index 5a5287aa360e..dec86cf1606d 100644 --- a/security/rubygem-rex-random_identifier/Makefile +++ b/security/rubygem-rex-random_identifier/Makefile @@ -1,19 +1,18 @@ PORTNAME= rex-random_identifier PORTVERSION= 0.1.8 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Ruby Exploitation(Rex) library for generating Random identifier WWW= https://github.com/rapid7/rex-random_identifier LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rex-text>=0:security/rubygem-rex-text NO_ARCH= yes USES= gem -USE_RUBY= yes .include diff --git a/security/rubygem-rex-registry/Makefile b/security/rubygem-rex-registry/Makefile index 55d5d5c4c9c8..c428495905eb 100644 --- a/security/rubygem-rex-registry/Makefile +++ b/security/rubygem-rex-registry/Makefile @@ -1,18 +1,17 @@ PORTNAME= rex-registry PORTVERSION= 0.1.4 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Ruby Exploitation(Rex) library for parsing offline registry files WWW= https://github.com/rapid7/rex-registry LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-rex-rop_builder/Makefile b/security/rubygem-rex-rop_builder/Makefile index 37162d106d3a..637d55f645e6 100644 --- a/security/rubygem-rex-rop_builder/Makefile +++ b/security/rubygem-rex-rop_builder/Makefile @@ -1,24 +1,23 @@ PORTNAME= rex-rop_builder PORTVERSION= 0.1.4 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Ruby Exploitation(Rex) library for building ROP chains WWW= https://github.com/rapid7/rex-rop_builder LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-metasm>=0:devel/rubygem-metasm \ rubygem-rex-core>=0:security/rubygem-rex-core \ rubygem-rex-text>=0:security/rubygem-rex-text NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/msfrop .include diff --git a/security/rubygem-rex-socket/Makefile b/security/rubygem-rex-socket/Makefile index 24df0978232b..e273c90fb82a 100644 --- a/security/rubygem-rex-socket/Makefile +++ b/security/rubygem-rex-socket/Makefile @@ -1,19 +1,18 @@ PORTNAME= rex-socket PORTVERSION= 0.1.41 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Ruby Exploitation(Rex) socket abstraction library WWW= https://github.com/rapid7/rex-socket LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rex-core>=0:security/rubygem-rex-core NO_ARCH= yes USES= gem -USE_RUBY= yes .include diff --git a/security/rubygem-rex-sslscan/Makefile b/security/rubygem-rex-sslscan/Makefile index 02cbf7cee1bc..fe680d49b51d 100644 --- a/security/rubygem-rex-sslscan/Makefile +++ b/security/rubygem-rex-sslscan/Makefile @@ -1,21 +1,20 @@ PORTNAME= rex-sslscan PORTVERSION= 0.1.7 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Ruby Exploitation(Rex) library for scanning SSL/TLS capabilities WWW= https://github.com/rapid7/rex-sslscan LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rex-core>=0:security/rubygem-rex-core \ rubygem-rex-socket>=0:security/rubygem-rex-socket \ rubygem-rex-text>=0:security/rubygem-rex-text NO_ARCH= yes USES= gem -USE_RUBY= yes .include diff --git a/security/rubygem-rex-struct2/Makefile b/security/rubygem-rex-struct2/Makefile index 2b7386ecf5c7..20d28eb4c779 100644 --- a/security/rubygem-rex-struct2/Makefile +++ b/security/rubygem-rex-struct2/Makefile @@ -1,18 +1,17 @@ PORTNAME= rex-struct2 PORTVERSION= 0.1.3 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Ruby Exploitation(Rex) library for creating and using C-like structs WWW= https://github.com/rapid7/rex-struct2 LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-rex-text/Makefile b/security/rubygem-rex-text/Makefile index 5ef85350c812..4925be10a89e 100644 --- a/security/rubygem-rex-text/Makefile +++ b/security/rubygem-rex-text/Makefile @@ -1,18 +1,17 @@ PORTNAME= rex-text PORTVERSION= 0.2.39 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Ruby Exploitation(Rex) methods for text manipulation and generation WWW= https://github.com/rapid7/rex-text LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-rex-zip/Makefile b/security/rubygem-rex-zip/Makefile index 71a34aca6246..2aa6814077a6 100644 --- a/security/rubygem-rex-zip/Makefile +++ b/security/rubygem-rex-zip/Makefile @@ -1,20 +1,19 @@ PORTNAME= rex-zip PORTVERSION= 0.1.4 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= Ruby Exploitation(Rex) library for working with zip and related files WWW= https://github.com/rapid7/rex-zip LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rex-text>=0:security/rubygem-rex-text NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-roauth/Makefile b/security/rubygem-roauth/Makefile index a5d53843f995..39f3e12b96c0 100644 --- a/security/rubygem-roauth/Makefile +++ b/security/rubygem-roauth/Makefile @@ -1,15 +1,14 @@ PORTNAME= roauth PORTVERSION= 0.0.8 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= tota@FreeBSD.org COMMENT= Simple Ruby OAuth library WWW= https://github.com/maccman/roauth NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-rpam2/Makefile b/security/rubygem-rpam2/Makefile index 0591dd343bfa..3b392b50c4b2 100644 --- a/security/rubygem-rpam2/Makefile +++ b/security/rubygem-rpam2/Makefile @@ -1,15 +1,14 @@ PORTNAME= rpam2 PORTVERSION= 4.0.2 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= PAM integration with ruby WWW= https://github.com/devkral/rpam2 LICENSE= MIT USES= gem -USE_RUBY= yes .include diff --git a/security/rubygem-ruby-hmac/Makefile b/security/rubygem-ruby-hmac/Makefile index 11d442b221f6..1833f32a8f18 100644 --- a/security/rubygem-ruby-hmac/Makefile +++ b/security/rubygem-ruby-hmac/Makefile @@ -1,17 +1,16 @@ PORTNAME= ruby-hmac PORTVERSION= 0.4.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Common interface to HMAC functionality WWW= http://ruby-hmac.rubyforge.org/ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-ruby-rc4/Makefile b/security/rubygem-ruby-rc4/Makefile index e7c7820534b6..049965d80f78 100644 --- a/security/rubygem-ruby-rc4/Makefile +++ b/security/rubygem-ruby-rc4/Makefile @@ -1,17 +1,16 @@ PORTNAME= ruby-rc4 PORTVERSION= 0.1.5 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Pure Ruby implementation of the RC4 algorithm WWW= https://github.com/caiges/Ruby-RC4 LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-ruby-saml/Makefile b/security/rubygem-ruby-saml/Makefile index 630b44a4631c..33279cbaef92 100644 --- a/security/rubygem-ruby-saml/Makefile +++ b/security/rubygem-ruby-saml/Makefile @@ -1,21 +1,20 @@ PORTNAME= ruby-saml PORTVERSION= 1.13.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= SAML toolkit for Ruby on Rails WWW= https://github.com/onelogin/ruby-saml LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-nokogiri>=1.10.5:textproc/rubygem-nokogiri \ rubygem-rexml>=0:textproc/rubygem-rexml USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-safety_net_attestation/Makefile b/security/rubygem-safety_net_attestation/Makefile index 46934dbd8006..70faa56c99a7 100644 --- a/security/rubygem-safety_net_attestation/Makefile +++ b/security/rubygem-safety_net_attestation/Makefile @@ -1,19 +1,18 @@ PORTNAME= safety_net_attestation PORTVERSION= 0.4.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= SafetyNet attestation response verification WWW= https://github.com/bdewater/safety_net_attestation LICENSE= MIT RUN_DEPENDS= rubygem-jwt>=2.0<3:www/rubygem-jwt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-scrypt/Makefile b/security/rubygem-scrypt/Makefile index fd471bda503f..37c40470ffaa 100644 --- a/security/rubygem-scrypt/Makefile +++ b/security/rubygem-scrypt/Makefile @@ -1,18 +1,17 @@ PORTNAME= scrypt PORTVERSION= 3.0.7 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Scrypt key derivation function WWW= https://github.com/pbhogan/scrypt LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-ffi-compiler>=1.0<2.0:devel/rubygem-ffi-compiler USES= gem -USE_RUBY= yes .include diff --git a/security/rubygem-securecompare/Makefile b/security/rubygem-securecompare/Makefile index 8c154ed8a3ee..6b07a8e20672 100644 --- a/security/rubygem-securecompare/Makefile +++ b/security/rubygem-securecompare/Makefile @@ -1,17 +1,16 @@ PORTNAME= securecompare PORTVERSION= 1.0.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Constant time string comparison WWW= https://github.com/samuelkadolph/securecompare LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-securerandom/Makefile b/security/rubygem-securerandom/Makefile index c20a433db1d5..780c67079e64 100644 --- a/security/rubygem-securerandom/Makefile +++ b/security/rubygem-securerandom/Makefile @@ -1,19 +1,18 @@ PORTNAME= securerandom PORTVERSION= 0.2.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Interface for secure random number generator WWW= https://github.com/ruby/securerandom LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-signet/Makefile b/security/rubygem-signet/Makefile index 521dd4509f17..53fe7e33eb16 100644 --- a/security/rubygem-signet/Makefile +++ b/security/rubygem-signet/Makefile @@ -1,23 +1,22 @@ PORTNAME= signet PORTVERSION= 0.17.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= OAuth 1.0 / OAuth 2.0 implementation WWW= https://github.com/google/signet LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-addressable>=2.8<3:www/rubygem-addressable \ rubygem-faraday>=0.17.5<3.0:www/rubygem-faraday \ rubygem-jwt>=1.5<3.0:www/rubygem-jwt \ rubygem-multi_json>=1.10<2:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-six/Makefile b/security/rubygem-six/Makefile index 72383787f9f2..1b20bb6f6404 100644 --- a/security/rubygem-six/Makefile +++ b/security/rubygem-six/Makefile @@ -1,18 +1,17 @@ PORTNAME= six PORTVERSION= 0.2.2 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Very simple authorization gem WWW= https://github.com/dzaporozhets/six LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-ssh_data/Makefile b/security/rubygem-ssh_data/Makefile index a3d467e5a0b2..28e530ca370d 100644 --- a/security/rubygem-ssh_data/Makefile +++ b/security/rubygem-ssh_data/Makefile @@ -1,18 +1,17 @@ PORTNAME= ssh_data PORTVERSION= 1.3.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Library for parsing SSH certificates WWW= https://github.com/github/ssh_data LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-sshkey/Makefile b/security/rubygem-sshkey/Makefile index 0fc345028879..1e6f012e431a 100644 --- a/security/rubygem-sshkey/Makefile +++ b/security/rubygem-sshkey/Makefile @@ -1,18 +1,17 @@ PORTNAME= sshkey PORTVERSION= 2.0.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Generate private/public SSH keypairs using pure Ruby WWW= https://github.com/bensie/sshkey LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-sshkit/Makefile b/security/rubygem-sshkit/Makefile index b7df8a97eaf9..5442a6526fc1 100644 --- a/security/rubygem-sshkit/Makefile +++ b/security/rubygem-sshkit/Makefile @@ -1,21 +1,20 @@ PORTNAME= sshkit PORTVERSION= 1.21.3 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Toolkit for remotely running commands on groups of servers WWW= https://github.com/capistrano/sshkit LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-net-scp>=1.1.2:security/rubygem-net-scp \ rubygem-net-ssh>=2.8.0,2:security/rubygem-net-ssh USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-sslshake/Makefile b/security/rubygem-sslshake/Makefile index 74c7999bceb3..013f527cb31d 100644 --- a/security/rubygem-sslshake/Makefile +++ b/security/rubygem-sslshake/Makefile @@ -1,17 +1,16 @@ PORTNAME= sslshake PORTVERSION= 1.3.1 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simulate SSL and TLD handshake WWW= https://github.com/arlimus/sslshake LICENSE= MPL20 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-ssrf_filter/Makefile b/security/rubygem-ssrf_filter/Makefile index 9d510099a961..09d50f0219f5 100644 --- a/security/rubygem-ssrf_filter/Makefile +++ b/security/rubygem-ssrf_filter/Makefile @@ -1,17 +1,16 @@ PORTNAME= ssrf_filter PORTVERSION= 1.0.7 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Gem to prevent SSRF attacks WWW= https://github.com/arkadiyt/ssrf_filter LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-timfel-krb5/Makefile b/security/rubygem-timfel-krb5/Makefile index bac9049db0e6..e34b6d7585f3 100644 --- a/security/rubygem-timfel-krb5/Makefile +++ b/security/rubygem-timfel-krb5/Makefile @@ -1,16 +1,15 @@ PORTNAME= timfel-krb5-auth PORTVERSION= 0.8.3 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= KRB5 for Ruby WWW= https://github.com/timfel/krb5-auth BUILD_DEPENDS= krb5>0:security/krb5 RUN_DEPENDS= krb5>0:security/krb5 -USE_RUBY= yes USES= gem .include diff --git a/security/rubygem-tpm-key_attestation/Makefile b/security/rubygem-tpm-key_attestation/Makefile index 0c4c81bd41b3..7522da3e89cb 100644 --- a/security/rubygem-tpm-key_attestation/Makefile +++ b/security/rubygem-tpm-key_attestation/Makefile @@ -1,21 +1,20 @@ PORTNAME= tpm-key_attestation PORTVERSION= 0.10.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= TPM Key Attestation verifier WWW= https://github.com/cedarcode/tpm-key_attestation LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-bindata>=2.4<3:devel/rubygem-bindata \ rubygem-openssl-signature_algorithm>=1.0<2:security/rubygem-openssl-signature_algorithm USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-twitter_oauth/Makefile b/security/rubygem-twitter_oauth/Makefile index b12983292cf2..9749c50d3c9c 100644 --- a/security/rubygem-twitter_oauth/Makefile +++ b/security/rubygem-twitter_oauth/Makefile @@ -1,22 +1,21 @@ PORTNAME= twitter_oauth PORTVERSION= 0.4.94 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Twitter OAuth REST API client library for Ruby WWW= https://github.com/moomerman/twitter_oauth LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-json>=1.8.0:devel/rubygem-json \ rubygem-mime-types>=1.16:misc/rubygem-mime-types \ rubygem-oauth>=0.4.7:net/rubygem-oauth USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-unix-crypt/Makefile b/security/rubygem-unix-crypt/Makefile index 9a76f5cd357a..2701656e3d18 100644 --- a/security/rubygem-unix-crypt/Makefile +++ b/security/rubygem-unix-crypt/Makefile @@ -1,19 +1,18 @@ PORTNAME= unix-crypt PORTVERSION= 1.3.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= antoine@FreeBSD.org COMMENT= UNIX crypt(3) algorithm using DES, MD5, SHA256 and SHA512 WWW= https://github.com/mogest/unix-crypt LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes USES= gem -USE_RUBY= yes PLIST_FILES= bin/mkunixcrypt .include diff --git a/security/rubygem-vault/Makefile b/security/rubygem-vault/Makefile index 2572f3ba20e0..96b95fcb5f6b 100644 --- a/security/rubygem-vault/Makefile +++ b/security/rubygem-vault/Makefile @@ -1,20 +1,19 @@ PORTNAME= vault PORTVERSION= 0.17.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby API client for interacting with a Vault server WWW= https://github.com/hashicorp/vault-ruby LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-aws-sigv4>=0:devel/rubygem-aws-sigv4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/rubygem-webauthn/Makefile b/security/rubygem-webauthn/Makefile index 0ae1b7473e0d..a7cf431e936f 100644 --- a/security/rubygem-webauthn/Makefile +++ b/security/rubygem-webauthn/Makefile @@ -1,30 +1,29 @@ PORTNAME= webauthn PORTVERSION= 2.4.1 PORTREVISION= 1 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= WebAuthn ruby server library WWW= https://github.com/cedarcode/webauthn-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-android_key_attestation>=0.3.0<0.4:security/rubygem-android_key_attestation \ rubygem-awrence>=1.1<2:devel/rubygem-awrence \ rubygem-bindata>=2.4<3:devel/rubygem-bindata \ rubygem-cbor>=0.5.9<0.6:devel/rubygem-cbor \ rubygem-cose>=1.1<2:security/rubygem-cose \ rubygem-openssl2>=2.0<3:security/rubygem-openssl2 \ rubygem-safety_net_attestation>=0.4.0<0.5:security/rubygem-safety_net_attestation \ rubygem-securecompare>=1.0<2:security/rubygem-securecompare \ 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 .include diff --git a/security/rubygem-webpush/Makefile b/security/rubygem-webpush/Makefile index c8ef93c22e31..c2b87611eccb 100644 --- a/security/rubygem-webpush/Makefile +++ b/security/rubygem-webpush/Makefile @@ -1,21 +1,20 @@ PORTNAME= webpush PORTVERSION= 1.1.0 CATEGORIES= security rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Encryption utilities for Web Push payload WWW= https://github.com/zaru/webpush LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-hkdf0>=0.2<1:security/rubygem-hkdf0 \ rubygem-jwt>=2.0<3:www/rubygem-jwt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/security/whatweb/Makefile b/security/whatweb/Makefile index ddf341bde798..9cdbe23869dc 100644 --- a/security/whatweb/Makefile +++ b/security/whatweb/Makefile @@ -1,43 +1,41 @@ PORTNAME= whatweb DISTVERSION= 0.4.8-${GH_TAGNAME} PORTREVISION= 2 CATEGORIES= security www MAINTAINER= rm@FreeBSD.org COMMENT= Tool to fingerprint web site components WWW= https://www.morningstarsecurity.com/research/whatweb LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/LICENSE 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 OPTIONS_DEFINE= DOCS post-patch: ${REINPLACE_CMD} -e \ 's!/usr/share/whatweb/!${RUBY_SITELIBDIR}/whatweb!' \ ${WRKSRC}/whatweb do-install: .for dir in addons lib my-plugins plugin-development plugins plugins-disabled ( cd ${WRKSRC}/${dir} && \ ${COPYTREE_SHARE} . ${STAGEDIR}${RUBY_SITELIBDIR}/whatweb/${dir} ) .endfor ${INSTALL_MAN} ${WRKSRC}/whatweb.1 ${STAGEDIR}${MANPREFIX}/man/man1 ${INSTALL_SCRIPT} ${WRKSRC}/whatweb ${STAGEDIR}${PREFIX}/bin/whatweb do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include diff --git a/shells/rubygem-shellwords/Makefile b/shells/rubygem-shellwords/Makefile index be77ce7488af..90ff092d2443 100644 --- a/shells/rubygem-shellwords/Makefile +++ b/shells/rubygem-shellwords/Makefile @@ -1,19 +1,18 @@ PORTNAME= shellwords PORTVERSION= 0.1.0 CATEGORIES= shells rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Manipulate strings with word parsing rules of UNIX Bourne shell WWW= https://github.com/ruby/shellwords LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/ck4up/Makefile b/sysutils/ck4up/Makefile index 2257f4fce29a..c3d6bf3344ad 100644 --- a/sysutils/ck4up/Makefile +++ b/sysutils/ck4up/Makefile @@ -1,33 +1,33 @@ PORTNAME= ck4up PORTVERSION= 1.4 PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= http://jue.li/crux/ck4up/ MAINTAINER= ports@FreeBSD.org COMMENT= Check HTTP and FTP sites for updates WWW= http://jue.li/crux/ck4up/ RUN_DEPENDS= rubygem-gdbm>=2.0.0,2:databases/rubygem-gdbm +USES= ruby:run + NO_BUILD= yes NO_ARCH= yes -USE_RUBY= yes -RUBY_NO_BUILD_DEPENDS= yes PORTEXAMPLES= ck4up.conf PLIST_FILES= bin/ck4up \ man/man1/ck4up.1.gz OPTIONS_DEFINE= EXAMPLES post-patch: @${REINPLACE_CMD} -e 's|/usr|${LOCALBASE}|g' \ ${WRKSRC}/Makefile post-install: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/ck4up.conf ${STAGEDIR}${EXAMPLESDIR} .include diff --git a/sysutils/dtrace-toolkit/Makefile b/sysutils/dtrace-toolkit/Makefile index f77a41e753f5..8847c48f8539 100644 --- a/sysutils/dtrace-toolkit/Makefile +++ b/sysutils/dtrace-toolkit/Makefile @@ -1,104 +1,103 @@ PORTNAME= dtrace-toolkit PORTVERSION= 1.0 PORTREVISION= 7 CATEGORIES= sysutils MAINTAINER= 0mp@FreeBSD.org COMMENT= Collection of useful scripts for DTrace WWW= https://github.com/opendtrace/toolkit 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 \ Code/Perl/func_slow.pl \ Code/Perl/hello.pl \ Code/Perl/hello_strict.pl \ Code/Python/func_abc.py \ Code/Python/func_slow.py \ Code/Ruby/func_abc.rb \ Code/Ruby/func_slow.rb \ Code/Shell/func_abc.sh \ Code/Shell/func_slow.sh \ Code/Shell/func_waste.sh \ Disk/diskhits \ Disk/iopending \ FS/vopstat \ Include/test.ksh \ Kernel/cpudists \ Kernel/cputimes \ Kernel/dnlcstat \ Mem/xvmstat \ Net/connections \ Net/tcpsnoop \ Net/tcpsnoop_snv \ Net/tcptop \ Net/tcptop_snv \ Proc/dappprof \ Proc/dapptrace \ Proc/fddist \ Proc/lastwords \ Proc/pfilestat \ Proc/sampleproc \ Proc/topsysproc \ System/topsyscall \ Zones/zvmstat \ dexplorer \ dtruss \ dvmstat \ errinfo \ execsnoop \ hotkernel \ hotuser \ install \ iopattern \ iosnoop \ iotop \ opensnoop \ procsystime \ rwsnoop \ rwtop \ statsnoop SHEBANG_LANG= sh sh_OLD_CMD= /usr/bin/sh ./sh sh_CMD= ${SH} perl_OLD_CMD= \\./perl ruby_OLD_CMD= \\./ruby NO_ARCH= yes NO_BUILD= yes SUB_FILES= pkg-message .include .if ${OPSYS} == FreeBSD # lstat calls are no longer available on 12.0+ EXTRA_PATCHES= ${PATCHDIR}/extra-patch-dtruss .endif do-install: @${MKDIR} ${STAGEDIR}${DATADIR} (cd ${WRKSRC} && ${TAR} --exclude '*.orig' -cf - . ) | \ (cd ${STAGEDIR}${DATADIR}/ && ${TAR} xvf -) ${RLN} ${STAGEDIR}${DATADIR}/dtruss ${STAGEDIR}${PREFIX}/bin/dtruss ${RLN} ${STAGEDIR}${DATADIR}/hotkernel ${STAGEDIR}${PREFIX}/bin/hotkernel ${RLN} ${STAGEDIR}${DATADIR}/procsystime ${STAGEDIR}${PREFIX}/bin/procsystime ${RLN} ${STAGEDIR}${DATADIR}/opensnoop ${STAGEDIR}${PREFIX}/bin/opensnoop ${RLN} ${STAGEDIR}${DATADIR}/Apps/shellsnoop ${STAGEDIR}${PREFIX}/bin/shellsnoop .for MANPAGE in dtruss hotkernel procsystime opensnoop shellsnoop ${RLN} ${STAGEDIR}${DATADIR}/Man/man1m/${MANPAGE}.1m \ ${STAGEDIR}${MAN1PREFIX}/man/man1/${MANPAGE}.1 .endfor ${ECHO_CMD} 'MANPATH ${DATADIR}/Man' > ${STAGEDIR}${PREFIX}/etc/man.d/${PORTNAME}.conf .include diff --git a/sysutils/facter/Makefile b/sysutils/facter/Makefile index 0142422683f8..6865f32dea8f 100644 --- a/sysutils/facter/Makefile +++ b/sysutils/facter/Makefile @@ -1,58 +1,57 @@ PORTNAME= facter PORTVERSION= 3.14.24 PORTREVISION= 1 CATEGORIES?= sysutils MASTER_SITES= https://downloads.puppetlabs.com/facter/ MAINTAINER= puppet@FreeBSD.org COMMENT= Cross-platform library for retrieving facts from OS WWW= https://puppetlabs.com/facter LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_DragonFly= DragonFly is not supported upstream LIB_DEPENDS= libboost_system.so:devel/boost-libs \ libcurl.so:ftp/curl \ libleatherman_locale.so:devel/leatherman \ liblibcpp-hocon.so:devel/cpp-hocon \ libyaml-cpp.so:devel/yaml-cpp CONFLICTS_INSTALL= rubygem-facter 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 OPTIONS_DEFINE= FACTER_JAVA FACTER_JAVA_DESC= Build with Java bindings for puppetserver FACTER_JAVA_USE= java=yes FACTER_JAVA_VARS= JAVA_BUILD=yes FACTER_JAVA_CMAKE_ON= -DJAVA_HOME=${JAVA_HOME} OPTIONS_DEFAULT= FACTER_JAVA OPTIONS_SUB= yes .include post-patch: @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|g' \ ${WRKSRC}/lib/src/facts/posix/collection.cc \ ${WRKSRC}/lib/src/util/config/posix/config.cc post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER}/specifications ${INSTALL_DATA} ${WRKSRC}/.gemspec ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER}/specifications/${DISTNAME}.gemspec test: build cd ${WRKSRC}/lib && bundle install --path vendor cd ${CONFIGURE_WRKSRC} && ${MAKE_CMD} test .include diff --git a/sysutils/libchk/Makefile b/sysutils/libchk/Makefile index 3facc7c4ce52..4d6a0ddc9543 100644 --- a/sysutils/libchk/Makefile +++ b/sysutils/libchk/Makefile @@ -1,21 +1,20 @@ PORTNAME= libchk PORTVERSION= 1.10.3 CATEGORIES= sysutils MASTER_SITES= ftp://ftp.iDaemons.org/pub/distfiles/ \ LOCAL/knu MAINTAINER= ports@FreeBSD.org COMMENT= Tool to check shared library links WWW= http://svn.idaemons.org/cgi-bin/viewvc.cgi/trunk/?root=libchk LICENSE= BSD2CLAUSE -USES= tar:bzip2 uidfix -USE_RUBY= yes +USES= ruby tar:bzip2 uidfix MAKE_ARGS= PREFIX="${PREFIX}" PLIST_FILES= man/man1/libchk.1.gz \ sbin/libchk .include diff --git a/sysutils/mcollective/Makefile b/sysutils/mcollective/Makefile index c605460c4887..520d9cb73fb9 100644 --- a/sysutils/mcollective/Makefile +++ b/sysutils/mcollective/Makefile @@ -1,55 +1,54 @@ PORTNAME= mcollective PORTVERSION= 2.12.5 CATEGORIES= sysutils MASTER_SITES= https://downloads.puppetlabs.com/${PORTNAME}/ MAINTAINER= puppet@FreeBSD.org COMMENT= Modern scalable datacenter orchestration framework WWW= http://docs.puppetlabs.com/mcollective/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/COPYING BROKEN_RUBY30= yes BROKEN_RUBY31= yes 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 CFG_FILES= client.cfg data-help.erb discovery-help.erb facts.yaml \ metadata-help.erb rpc-help.erb server.cfg # don't make .bak files REINPLACE_ARGS= -i "" SCRIPTS= mco SUB_LIST+= RUBY=${RUBY} OPTIONS_DEFINE= DOCS post-patch: @${REINPLACE_CMD} -e "s|/etc/mcollective|${ETCDIR}|" \ ${WRKSRC}/bin/mcollectived \ ${WRKSRC}/etc/server.cfg.dist \ ${WRKSRC}/etc/client.cfg.dist \ ${WRKSRC}/lib/mcollective/config.rb \ ${WRKSRC}/lib/mcollective/util.rb \ ${WRKSRC}/lib/mcollective/rpc.rb @${REINPLACE_CMD} -e "s|/usr/libexec/mcollective|${PREFIX}/share|" \ ${WRKSRC}/etc/server.cfg.dist \ ${WRKSRC}/etc/client.cfg.dist do-install: cd ${WRKSRC} ; ${RUBY} install.rb --destdir=${STAGEDIR} --configdir=${ETCDIR} --plugindir=${DATADIR} .for cfg in ${CFG_FILES} ${MV} ${STAGEDIR}${ETCDIR}/${cfg} ${STAGEDIR}${ETCDIR}/${cfg}.sample .endfor .include diff --git a/sysutils/mmve/Makefile b/sysutils/mmve/Makefile index 41e067e482e2..ce6886af960e 100644 --- a/sysutils/mmve/Makefile +++ b/sysutils/mmve/Makefile @@ -1,29 +1,28 @@ PORTNAME= mmve PORTVERSION= 0.2.0 DISTVERSIONPREFIX= v CATEGORIES= sysutils MAINTAINER= tj+freebsd_ports@a13.fr COMMENT= Mass MV Editor: move files with your text editor WWW= https://rubygems.org/gems/mmve LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE 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 USE_GITHUB= yes GH_ACCOUNT= tjouan do-install: ${INSTALL_SCRIPT} ${WRKSRC}/bin/mmve ${STAGEDIR}${PREFIX}/bin @cd ${WRKSRC}/lib && ${COPYTREE_SHARE} . ${STAGEDIR}${RUBY_SITELIBDIR} .include diff --git a/sysutils/mnrpes/Makefile b/sysutils/mnrpes/Makefile index 460474061854..257558779674 100644 --- a/sysutils/mnrpes/Makefile +++ b/sysutils/mnrpes/Makefile @@ -1,46 +1,46 @@ PORTNAME= mnrpes PORTVERSION= 2014041501 CATEGORIES= sysutils MAINTAINER= robak@FreeBSD.org COMMENT= MCollective and Rufus scheduler wrapper WWW= https://github.com/nullDowntimeLtd/mnrpes LICENSE= APACHE20 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 USE_RC_SUBR= mnrpes_receiver \ mnrpes_scheduler PLIST_SUB+= PORTNAME=${PORTNAME} NO_ARCH= yes NO_BUILD= yes do-install: ${MKDIR} ${STAGEDIR}${ETCDIR} ${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR}/${PORTNAME} ${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR}/${PORTNAME}/output ${INSTALL_SCRIPT} ${WRKSRC}/bin/mnrpes-receiver.rb ${STAGEDIR}${PREFIX}/bin/ ${INSTALL_SCRIPT} ${WRKSRC}/bin/mnrpes-scheduler.rb ${STAGEDIR}${PREFIX}/bin/ ${INSTALL_SCRIPT} ${WRKSRC}/lib/mnrpes.rb ${STAGEDIR}${RUBY_SITELIBDIR}/ ${INSTALL_SCRIPT} ${WRKSRC}/lib/mnrpes/receiver.rb ${STAGEDIR}${RUBY_SITELIBDIR}/mnrpes/ ${INSTALL_SCRIPT} ${WRKSRC}/lib/mnrpes/scheduler.rb ${STAGEDIR}${RUBY_SITELIBDIR}/mnrpes/ ${INSTALL_SCRIPT} ${WRKSRC}/lib/mnrpes/output/flapjack.rb ${STAGEDIR}${RUBY_SITELIBDIR}/mnrpes/output/ ${INSTALL_SCRIPT} ${WRKSRC}/lib/mnrpes/output/nagios.rb ${STAGEDIR}${RUBY_SITELIBDIR}/mnrpes/output/ ${INSTALL_SCRIPT} ${WRKSRC}/lib/mnrpes/output/redis_status.rb ${STAGEDIR}${RUBY_SITELIBDIR}/mnrpes/output/ ${INSTALL_SCRIPT} ${WRKSRC}/lib/mnrpes/output/stdout.rb ${STAGEDIR}${RUBY_SITELIBDIR}/mnrpes/output/ ${INSTALL_DATA} ${WRKSRC}/etc/checks.txt.dist ${STAGEDIR}${ETCDIR} ${INSTALL_DATA} ${WRKSRC}/etc/mnrpes-receiver.cfg.dist ${STAGEDIR}${ETCDIR} ${INSTALL_DATA} ${WRKSRC}/etc/mnrpes-scheduler.cfg.dist ${STAGEDIR}${ETCDIR} ${MKDIR} ${STAGEDIR}/var/run/${PORTNAME} ${MKDIR} ${STAGEDIR}/var/log/${PORTNAME} .include diff --git a/sysutils/pdumpfs/Makefile b/sysutils/pdumpfs/Makefile index 761e403efbd4..f239ff78af7d 100644 --- a/sysutils/pdumpfs/Makefile +++ b/sysutils/pdumpfs/Makefile @@ -1,38 +1,37 @@ PORTNAME= pdumpfs PORTVERSION= 1.3 PORTREVISION= 5 CATEGORIES= sysutils MASTER_SITES= http://0xcc.net/pdumpfs/ MAINTAINER= ports@FreeBSD.org COMMENT= Daily backup system similar to Plan9's dumpfs WWW= http://0xcc.net/pdumpfs/ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING -USE_RUBY= yes -USES= shebangfix +USES= ruby shebangfix NO_ARCH= yes SHEBANG_FILES= ${WRKSRC}/pdumpfs.in ALL_TARGET= pdumpfs PLIST_FILES= man/ja/man8/pdumpfs.8.gz \ man/man8/pdumpfs.8.gz \ sbin/pdumpfs PORTDOCS= * OPTIONS_DEFINE= DOCS do-install: ${INSTALL_SCRIPT} ${WRKSRC}/pdumpfs ${STAGEDIR}${PREFIX}/sbin ${INSTALL_MAN} ${WRKSRC}/man/man8/pdumpfs.8 ${STAGEDIR}${MANPREFIX}/man/man8 ${RUBY} -ni -r nkf -e 'puts NKF.nkf("-e",$$_)' ${WRKSRC}/man/ja/man8/pdumpfs.8 ${INSTALL_MAN} ${WRKSRC}/man/ja/man8/pdumpfs.8 ${STAGEDIR}${MANPREFIX}/man/ja/man8 do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC}/doc && ${COPYTREE_SHARE} . ${STAGEDIR}${DOCSDIR} .include diff --git a/sysutils/puppet-lint/Makefile b/sysutils/puppet-lint/Makefile index a4c1c6aae238..bad7c82fcb71 100644 --- a/sysutils/puppet-lint/Makefile +++ b/sysutils/puppet-lint/Makefile @@ -1,18 +1,17 @@ PORTNAME= puppet-lint PORTVERSION= 3.0.1 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= puppet@FreeBSD.org COMMENT= Checks Puppet manifests against the style guide WWW= http://puppet-lint.com/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes PLIST_FILES= bin/puppet-lint NO_ARCH= yes .include diff --git a/sysutils/puppet6/Makefile b/sysutils/puppet6/Makefile index b36a1f107f8a..93bfa21c18d0 100644 --- a/sysutils/puppet6/Makefile +++ b/sysutils/puppet6/Makefile @@ -1,142 +1,141 @@ PORTNAME= puppet PORTVERSION= 6.28.0 PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= https://forge.puppet.com/v3/files/:forge PKGNAMESUFFIX= 6 MAINTAINER= puppet@FreeBSD.org COMMENT= Configuration management framework written in Ruby WWW= https://puppet.com/docs/puppet/latest/puppet_index.html LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_RUBY30= yes BROKEN_RUBY31= yes RUN_DEPENDS= rubygem-concurrent-ruby>=1.0:devel/rubygem-concurrent-ruby \ rubygem-deep_merge>=1.0:devel/rubygem-deep_merge \ rubygem-fast_gettext1>=1.1:devel/rubygem-fast_gettext1 \ rubygem-ffi>=1.9.24:devel/rubygem-ffi \ rubygem-hiera>=3.2.1:sysutils/rubygem-hiera \ rubygem-httpclient>=2.8:www/rubygem-httpclient \ rubygem-locale>=2.1:devel/rubygem-locale \ rubygem-multi_json>=1.10:devel/rubygem-multi_json \ rubygem-puppet-resource_api>=0:devel/rubygem-puppet-resource_api \ rubygem-ruby-augeas>=0:textproc/rubygem-ruby-augeas \ rubygem-semantic_puppet>=1:devel/rubygem-semantic_puppet -USES= cpe +USES= cpe ruby USE_GITHUB= yes GH_ACCOUNT= puppetlabs CONFLICTS_INSTALL= puppet7 PLIST_SUB= PORTVERSION="${PORTVERSION}" NO_ARCH= yes NO_BUILD= yes -USE_RUBY= yes USE_RC_SUBR= puppet PORTDOCS= LICENSE README.md PORTEXAMPLES= * USERS= puppet GROUPS= puppet SUB_FILES+= pkg-message SUB_LIST= RUBY=${RUBY} OPTIONS_DEFINE= DOCS EXAMPLES OPTIONS_DEFAULT= CFACTER OPTIONS_RADIO= FACTER OPTIONS_RADIO_FACTER= CFACTER RFACTER RFACTER_DESC= Use facter 4.x (future facter, written in Ruby) CFACTER_DESC= Use facter 3.x (written in C++) RFACTER_BUILD_DEPENDS= rubygem-facter>=4.0:sysutils/rubygem-facter RFACTER_RUN_DEPENDS= rubygem-facter>=4.0:sysutils/rubygem-facter CFACTER_BUILD_DEPENDS= facter>=3.0:sysutils/facter CFACTER_RUN_DEPENDS= facter>=3.0:sysutils/facter # Get versions from # https://github.com/puppetlabs/puppet-agent/tree/6.x/configs/components FORGE_MODULES= augeas_core=1.1.2 \ cron_core=1.0.5 \ host_core=1.0.3 \ mount_core=1.0.4 \ scheduled_task=1.0.0 \ selinux_core=1.1.0 \ sshkeys_core=1.0.3 \ yumrepo_core=1.0.7 \ zfs_core=1.2.0 \ zone_core=1.0.3 .for module in ${FORGE_MODULES} DISTFILES+= puppetlabs-${module:C/=.*//}-${module:C/.*=//}.tar.gz:forge .endfor post-patch: @${REINPLACE_CMD} -e "s|/etc/puppetlabs/puppet|${ETCDIR}|" \ ${WRKSRC}/install.rb \ ${WRKSRC}/lib/puppet/reference/configuration.rb \ ${WRKSRC}/lib/puppet/util/run_mode.rb @${REINPLACE_CMD} -e "s|/etc/puppetlabs/code|${ETCDIR}|" \ ${WRKSRC}/install.rb \ ${WRKSRC}/lib/puppet/reference/configuration.rb \ ${WRKSRC}/lib/puppet/util/run_mode.rb @${REINPLACE_CMD} -e "s|/opt/puppetlabs/puppet/cache|/var/puppet|" \ ${WRKSRC}/install.rb \ ${WRKSRC}/lib/puppet/reference/configuration.rb \ ${WRKSRC}/lib/puppet/util/run_mode.rb @${REINPLACE_CMD} -e "s|/var/run/puppetlabs|/var/run/puppet|" \ ${WRKSRC}/install.rb \ ${WRKSRC}/lib/puppet/util/run_mode.rb @${REINPLACE_CMD} -e "s|/var/log/puppetlabs/puppet|/var/log/puppet|" \ ${WRKSRC}/install.rb \ ${WRKSRC}/lib/puppet/util/run_mode.rb @${REINPLACE_CMD} -e "s|/opt/puppetlabs/puppet/modules|${ETCDIR}/modules|" \ -e "s|/opt/puppetlabs/puppet/vendor_modules|${ETCDIR}/vendor_modules|" \ ${WRKSRC}/lib/puppet/defaults.rb @${REINPLACE_CMD} -e "s|/opt/puppetlabs/puppet/bin/gem|${LOCALBASE}/bin/gem|" \ ${WRKSRC}/lib/puppet/provider/package/puppet_gem.rb @${REINPLACE_CMD} -e "s|\$$confdir/ssl|/var/puppet/ssl|" \ ${WRKSRC}/lib/puppet/defaults.rb @${REINPLACE_CMD} -e "s|\.\./\.\./\.\./locales|../locales|" \ ${WRKSRC}/lib/puppet/gettext/config.rb do-install: @cd ${WRKSRC} && ${SETENV} PREFIX=${PREFIX} LC_ALL=C.UTF-8 ${RUBY} ${WRKSRC}/install.rb --no-configs --destdir=${STAGEDIR} \ --localedir=${RUBY_SITELIBDIR}/puppet/locales post-install: ${MKDIR} ${STAGEDIR}${ETCDIR}/manifests ${MKDIR} ${STAGEDIR}${ETCDIR}/modules ${MKDIR} ${STAGEDIR}${ETCDIR}/vendor_modules .for module in ${FORGE_MODULES} (cd ${WRKDIR}/puppetlabs-${module:C/=.*//}-${module:C/.*=//} && ${COPYTREE_SHARE} . ${STAGEDIR}${ETCDIR}/vendor_modules/${module:C/=.*//}) .endfor ${MKDIR} ${STAGEDIR}/var/puppet ${INSTALL_DATA} ${WRKSRC}/conf/auth.conf ${STAGEDIR}${ETCDIR}/auth.conf-dist ${SETENV} LC_ALL=C.UTF-8 ${RUBY} -I ${STAGEDIR}/${RUBY_SITELIBDIR} ${STAGEDIR}${PREFIX}/bin/puppet agent --genconfig \ --confdir=${ETCDIR} \ --rundir=/var/run/puppet \ --vardir=/var/puppet \ --logdir=/var/log/puppet \ --codedir=${ETCDIR} \ > ${STAGEDIR}${ETCDIR}/puppet.conf-dist @${ECHO} ${STAGEDIR}${RUBY_SITELIBDIR}/puppet.rb | \ ${SED} 's,^${STAGEDIR}${PREFIX}/,,' >> ${TMPPLIST} @${FIND} ${STAGEDIR}${RUBY_SITELIBDIR}/${PORTNAME} -type f | \ ${SED} 's,^${STAGEDIR}${PREFIX}/,,' >> ${TMPPLIST} ${MKDIR} ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER}/specifications ${INSTALL_DATA} ${WRKSRC}/.gemspec ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER}/specifications/${PORTNAME}-${PORTVERSION}.gemspec post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} .include diff --git a/sysutils/puppet7/Makefile b/sysutils/puppet7/Makefile index 64f4958b8779..4955ed07e372 100644 --- a/sysutils/puppet7/Makefile +++ b/sysutils/puppet7/Makefile @@ -1,140 +1,139 @@ PORTNAME= puppet PORTVERSION= 7.21.0 CATEGORIES= sysutils MASTER_SITES= https://forge.puppet.com/v3/files/:forge PKGNAMESUFFIX= 7 MAINTAINER= puppet@FreeBSD.org COMMENT= Configuration management framework written in Ruby WWW= https://puppet.com/docs/puppet/latest/puppet_index.html LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-concurrent-ruby>1.0:devel/rubygem-concurrent-ruby \ rubygem-deep_merge>1.0:devel/rubygem-deep_merge \ rubygem-fast_gettext1>=1.1:devel/rubygem-fast_gettext1 \ rubygem-hiera>=3.2.1:sysutils/rubygem-hiera \ rubygem-locale>=2.1:devel/rubygem-locale \ rubygem-multi_json>=1.10:devel/rubygem-multi_json \ rubygem-puppet-resource_api>=1.5:devel/rubygem-puppet-resource_api \ rubygem-ruby-augeas>=0:textproc/rubygem-ruby-augeas \ rubygem-scanf>=1:devel/rubygem-scanf \ rubygem-semantic_puppet>=1:devel/rubygem-semantic_puppet -USES= cpe +USES= cpe ruby USE_GITHUB= yes GH_ACCOUNT= puppetlabs CONFLICTS_INSTALL= puppet6 PLIST_SUB= PORTVERSION="${PORTVERSION}" NO_ARCH= yes NO_BUILD= yes -USE_RUBY= yes USE_RC_SUBR= puppet PORTDOCS= LICENSE README.md PORTEXAMPLES= * USERS= puppet GROUPS= puppet SUB_FILES+= pkg-message SUB_LIST= RUBY=${RUBY} OPTIONS_DEFINE= DOCS EXAMPLES OPTIONS_DEFAULT= RFACTER OPTIONS_RADIO= FACTER OPTIONS_RADIO_FACTER= CFACTER RFACTER RFACTER_DESC= Use facter 4.x (future facter, written in Ruby) CFACTER_DESC= Use facter 3.x (written in C++) RFACTER_BUILD_DEPENDS= rubygem-facter>=4.0:sysutils/rubygem-facter RFACTER_RUN_DEPENDS= rubygem-facter>=4.0:sysutils/rubygem-facter CFACTER_BUILD_DEPENDS= facter>=3.0:sysutils/facter CFACTER_RUN_DEPENDS= facter>=3.0:sysutils/facter # Get versions from # https://github.com/puppetlabs/puppet-agent/tree/main/configs/components FORGE_MODULES= augeas_core=1.2.0 \ cron_core=1.0.5 \ host_core=1.0.3 \ mount_core=1.0.4 \ scheduled_task=1.0.0 \ selinux_core=1.1.0 \ sshkeys_core=2.2.0 \ yumrepo_core=1.0.7 \ zfs_core=1.2.0 \ zone_core=1.0.3 .for module in ${FORGE_MODULES} DISTFILES+= puppetlabs-${module:C/=.*//}-${module:C/.*=//}.tar.gz:forge .endfor post-patch: @${REINPLACE_CMD} -e "s|/etc/puppetlabs/puppet|${ETCDIR}|" \ ${WRKSRC}/install.rb \ ${WRKSRC}/lib/puppet/reference/configuration.rb \ ${WRKSRC}/lib/puppet/util/run_mode.rb @${REINPLACE_CMD} -e "s|/etc/puppetlabs/code|${ETCDIR}|" \ ${WRKSRC}/install.rb \ ${WRKSRC}/lib/puppet/reference/configuration.rb \ ${WRKSRC}/lib/puppet/util/run_mode.rb @${REINPLACE_CMD} -e "s|/opt/puppetlabs/puppet/cache|/var/puppet|" \ ${WRKSRC}/install.rb \ ${WRKSRC}/lib/puppet/reference/configuration.rb \ ${WRKSRC}/lib/puppet/util/run_mode.rb @${REINPLACE_CMD} -e "s|/var/run/puppetlabs|/var/run/puppet|" \ ${WRKSRC}/install.rb \ ${WRKSRC}/lib/puppet/util/run_mode.rb @${REINPLACE_CMD} -e "s|/var/log/puppetlabs/puppet|/var/log/puppet|" \ ${WRKSRC}/install.rb \ ${WRKSRC}/lib/puppet/util/run_mode.rb @${REINPLACE_CMD} -e "s|/opt/puppetlabs/puppet/public|/var/puppet/state|" \ ${WRKSRC}/install.rb \ ${WRKSRC}/lib/puppet/util/run_mode.rb @${REINPLACE_CMD} -e "s|/opt/puppetlabs/puppet/modules|${ETCDIR}/modules|" \ -e "s|/etc/puppetlabs/puppetserver/ca|/var/puppetserver/ca|" \ -e "s|/opt/puppetlabs/puppet/vendor_modules|${ETCDIR}/vendor_modules|" \ ${WRKSRC}/lib/puppet/defaults.rb @${REINPLACE_CMD} -e "s|/opt/puppetlabs/puppet/bin/gem|${LOCALBASE}/bin/gem|" \ ${WRKSRC}/lib/puppet/provider/package/puppet_gem.rb @${REINPLACE_CMD} -e "s|\$$confdir/ssl|/var/puppet/ssl|" \ ${WRKSRC}/lib/puppet/defaults.rb @${REINPLACE_CMD} -e "s|\.\./\.\./\.\./locales|../locales|" \ ${WRKSRC}/lib/puppet/gettext/config.rb do-install: @cd ${WRKSRC} && ${SETENV} PREFIX=${PREFIX} LC_ALL=C.UTF-8 ${RUBY} ${WRKSRC}/install.rb --no-configs --destdir=${STAGEDIR} \ --localedir=${RUBY_SITELIBDIR}/puppet/locales --publicdir=/var/puppet/state/ post-install: ${MKDIR} ${STAGEDIR}${ETCDIR}/manifests ${MKDIR} ${STAGEDIR}${ETCDIR}/modules ${MKDIR} ${STAGEDIR}${ETCDIR}/vendor_modules .for module in ${FORGE_MODULES} (cd ${WRKDIR}/puppetlabs-${module:C/=.*//}-${module:C/.*=//} && ${COPYTREE_SHARE} . ${STAGEDIR}${ETCDIR}/vendor_modules/${module:C/=.*//}) .endfor ${MKDIR} ${STAGEDIR}/var/puppet ${SETENV} LC_ALL=C.UTF-8 ${RUBY} -I ${STAGEDIR}/${RUBY_SITELIBDIR} ${STAGEDIR}${PREFIX}/bin/puppet agent --genconfig \ --confdir=${ETCDIR} \ --rundir=/var/run/puppet \ --vardir=/var/puppet \ --logdir=/var/log/puppet \ --codedir=${ETCDIR} \ > ${STAGEDIR}${ETCDIR}/puppet.conf-dist @${ECHO} ${STAGEDIR}${RUBY_SITELIBDIR}/puppet.rb | \ ${SED} 's,^${STAGEDIR}${PREFIX}/,,' >> ${TMPPLIST} @${FIND} ${STAGEDIR}${RUBY_SITELIBDIR}/${PORTNAME} -type f | \ ${SED} 's,^${STAGEDIR}${PREFIX}/,,' >> ${TMPPLIST} ${MKDIR} ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER}/specifications ${INSTALL_DATA} ${WRKSRC}/.gemspec ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER}/specifications/${PORTNAME}-${PORTVERSION}.gemspec post-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} post-install-EXAMPLES-on: @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} cd ${WRKSRC}/examples/ && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} .include diff --git a/sysutils/puppetserver6/Makefile b/sysutils/puppetserver6/Makefile index b41d86bac418..ec7f85a5e15d 100644 --- a/sysutils/puppetserver6/Makefile +++ b/sysutils/puppetserver6/Makefile @@ -1,98 +1,97 @@ PORTNAME= puppetserver PORTVERSION= 6.20.0 CATEGORIES= sysutils java MASTER_SITES= https://downloads.puppetlabs.com/puppet/:upstream \ https://raw.githubusercontent.com/jruby/jruby/fb3ba4b3543b72e735ba53b51e6b7ec8a9916e1b/lib/ruby/stdlib/ffi/:ffi PKGNAMESUFFIX= 6 DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:upstream \ ffi.rb:ffi EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= puppet@FreeBSD.org COMMENT= Puppet Server running in the JVM WWW= https://docs.puppetlabs.com/puppetserver/latest/services_master_puppetserver.html LICENSE= APACHE20 RUN_DEPENDS= bash>=0:shells/bash \ puppet6>=0:sysutils/puppet6 \ rubygem-puppetserver-ca>=1:sysutils/rubygem-puppetserver-ca \ 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+ CONFLICTS_INSTALL= puppetserver7 SHEBANG_FILES= ext/bin/puppetserver USERS= puppet GROUPS= puppet SUB_LIST= JAVA_HOME=${JAVA_HOME} SUB_FILES= pkg-message pre-patch: ${CP} ${_DISTDIR}/ffi.rb ${WRKSRC} post-patch: .for file in ext/config/logback.xml ext/config/request-logging.xml \ ext/config/conf.d/global.conf ext/config/conf.d/puppetserver.conf \ ext/config/conf.d/web-routes.conf ext/config/conf.d/webserver.conf \ ext/config/conf.d/auth.conf ext/config/services.d/ca.cfg \ ext/system-config/services.d/bootstrap.cfg ext/bin/puppetserver \ ext/cli_defaults/cli-defaults.sh ext/cli/foreground @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|' \ -e 's|%%RUBY_SITELIBDIR%%|${RUBY_SITELIBDIR}|' \ -e 's|%%RUBY_VER%%|${RUBY_VER}|' \ -e 's|%%JAVA%%|${JAVA}|' \ -e 's|%%ETCDIR%%|${ETCDIR}|' \ -e 's|%%DATADIR%%|${DATADIR}|' \ ${WRKSRC}/${file} .endfor @${REINPLACE_CMD} -e 's|#!/opt/puppetlabs/puppet/bin/ruby|#!${RUBY}|' \ ${WRKSRC}/ext/cli/ca do-install: @${MKDIR} ${STAGEDIR}${DATADIR}/cli/apps @${MKDIR} ${STAGEDIR}${DATADIR}/lib @${MKDIR} ${STAGEDIR}${ETCDIR}/conf.d @${MKDIR} ${STAGEDIR}${ETCDIR}/services.d @${MKDIR} ${STAGEDIR}${PREFIX}/etc/puppet/code @${MKDIR} ${STAGEDIR}/var/log/puppetserver @${MKDIR} ${STAGEDIR}/var/puppet/server @${MKDIR} ${STAGEDIR}/var/puppet/server/data @${MKDIR} ${STAGEDIR}/var/puppetserver @${MKDIR} ${STAGEDIR}/var/run/puppetserver ${INSTALL_DATA} ${WRKSRC}/puppet-server-release.jar ${STAGEDIR}${DATADIR}/puppet-server-release.jar ${INSTALL_DATA} ${WRKSRC}/ext/config/conf.d/global.conf ${STAGEDIR}${ETCDIR}/conf.d/global.conf.sample ${INSTALL_DATA} ${WRKSRC}/ext/config/logback.xml ${STAGEDIR}${ETCDIR}/logback.xml.sample ${INSTALL_DATA} ${WRKSRC}/ext/config/request-logging.xml ${STAGEDIR}${ETCDIR}/request-logging.xml.sample ${INSTALL_DATA} ${WRKSRC}/ext/config/conf.d/puppetserver.conf ${STAGEDIR}${ETCDIR}/conf.d/puppetserver.conf.sample ${INSTALL_DATA} ${WRKSRC}/ext/config/conf.d/web-routes.conf ${STAGEDIR}${ETCDIR}/conf.d/web-routes.conf.sample ${INSTALL_DATA} ${WRKSRC}/ext/config/conf.d/webserver.conf ${STAGEDIR}${ETCDIR}/conf.d/webserver.conf.sample ${INSTALL_DATA} ${WRKSRC}/ext/config/conf.d/auth.conf ${STAGEDIR}${ETCDIR}/conf.d/auth.conf.sample ${INSTALL_DATA} ${WRKSRC}/ext/config/conf.d/metrics.conf ${STAGEDIR}${ETCDIR}/conf.d/metrics.conf.sample ${INSTALL_DATA} ${WRKSRC}/ext/config/services.d/ca.cfg ${STAGEDIR}${ETCDIR}/services.d/ca.cfg.sample ${INSTALL_DATA} ${WRKSRC}/ext/system-config/services.d/bootstrap.cfg ${STAGEDIR}${ETCDIR}/services.d/bootstrap.cfg.sample ${INSTALL_DATA} ${WRKSRC}/ext/bin/puppetserver ${STAGEDIR}${PREFIX}/bin/puppetserver ${INSTALL_DATA} ${WRKSRC}/ext/ezbake-functions.sh ${STAGEDIR}${DATADIR}/ezbake-functions.sh ${INSTALL_DATA} ${WRKSRC}/ext/cli/ca ${STAGEDIR}${DATADIR}/cli/apps/ca ${INSTALL_DATA} ${WRKSRC}/ext/cli/foreground ${STAGEDIR}${DATADIR}/cli/apps/foreground ${INSTALL_DATA} ${WRKSRC}/ext/cli/gem ${STAGEDIR}${DATADIR}/cli/apps/gem ${INSTALL_DATA} ${WRKSRC}/ext/cli/irb ${STAGEDIR}${DATADIR}/cli/apps/irb ${INSTALL_DATA} ${WRKSRC}/ext/cli/reload ${STAGEDIR}${DATADIR}/cli/apps/reload ${INSTALL_DATA} ${WRKSRC}/ext/cli/ruby ${STAGEDIR}${DATADIR}/cli/apps/ruby ${INSTALL_DATA} ${WRKSRC}/ext/cli/start ${STAGEDIR}${DATADIR}/cli/apps/start ${INSTALL_DATA} ${WRKSRC}/ext/cli/stop ${STAGEDIR}${DATADIR}/cli/apps/stop ${INSTALL_DATA} ${WRKSRC}/ext/cli_defaults/cli-defaults.sh ${STAGEDIR}${DATADIR}/cli/cli-defaults.sh ${INSTALL_DATA} ${WRKSRC}/ffi.rb ${STAGEDIR}${DATADIR}/lib .include diff --git a/sysutils/puppetserver7/Makefile b/sysutils/puppetserver7/Makefile index 670fed3d4467..f61f5fccd712 100644 --- a/sysutils/puppetserver7/Makefile +++ b/sysutils/puppetserver7/Makefile @@ -1,94 +1,93 @@ PORTNAME= puppetserver PORTVERSION= 7.9.3 CATEGORIES= sysutils java MASTER_SITES= https://downloads.puppetlabs.com/puppet/ PKGNAMESUFFIX= 7 DISTFILES= ${DISTNAME}${EXTRACT_SUFX} EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= puppet@FreeBSD.org COMMENT= Puppet Server running in the JVM WWW= https://docs.puppetlabs.com/puppetserver/latest/services_master_puppetserver.html LICENSE= APACHE20 ONLY_FOR_ARCHS= amd64 RUN_DEPENDS= bash>=0:shells/bash \ puppet7>=0:sysutils/puppet7 \ rubygem-puppetserver-ca>=1:sysutils/rubygem-puppetserver-ca \ 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+ CONFLICTS_INSTALL= puppetserver5 puppetserver6 SHEBANG_FILES= ext/bin/puppetserver USERS= puppet GROUPS= puppet SUB_LIST= JAVA_HOME=${JAVA_HOME} SUB_FILES= pkg-message post-patch: .for file in ext/config/logback.xml ext/config/request-logging.xml \ ext/config/conf.d/global.conf ext/config/conf.d/puppetserver.conf \ ext/config/conf.d/web-routes.conf ext/config/conf.d/webserver.conf \ ext/config/conf.d/auth.conf ext/config/services.d/ca.cfg \ ext/system-config/services.d/bootstrap.cfg ext/bin/puppetserver \ ext/cli_defaults/cli-defaults.sh ext/cli/foreground @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|' \ -e 's|%%RUBY_SITELIBDIR%%|${RUBY_SITELIBDIR}|' \ -e 's|%%RUBY_VER%%|${RUBY_VER}|' \ -e 's|%%JAVA%%|${JAVA}|' \ -e 's|%%ETCDIR%%|${ETCDIR}|' \ -e 's|%%DATADIR%%|${DATADIR}|' \ ${WRKSRC}/${file} .endfor @${REINPLACE_CMD} -e 's|#!/opt/puppetlabs/puppet/bin/ruby|#!${RUBY}|' \ ${WRKSRC}/ext/cli/ca \ ${WRKSRC}/ext/cli/dropsonde do-install: @${MKDIR} ${STAGEDIR}${DATADIR}/cli/apps @${MKDIR} ${STAGEDIR}${ETCDIR}/conf.d @${MKDIR} ${STAGEDIR}${ETCDIR}/services.d @${MKDIR} ${STAGEDIR}${PREFIX}/etc/puppet/code @${MKDIR} ${STAGEDIR}/var/log/puppetserver @${MKDIR} ${STAGEDIR}/var/puppet/server @${MKDIR} ${STAGEDIR}/var/puppet/server/data @${MKDIR} ${STAGEDIR}/var/puppetserver @${MKDIR} ${STAGEDIR}/var/run/puppetserver ${INSTALL_DATA} ${WRKSRC}/puppet-server-release.jar ${STAGEDIR}${DATADIR}/puppet-server-release.jar ${INSTALL_DATA} ${WRKSRC}/ext/config/conf.d/global.conf ${STAGEDIR}${ETCDIR}/conf.d/global.conf.sample ${INSTALL_DATA} ${WRKSRC}/ext/config/logback.xml ${STAGEDIR}${ETCDIR}/logback.xml.sample ${INSTALL_DATA} ${WRKSRC}/ext/config/request-logging.xml ${STAGEDIR}${ETCDIR}/request-logging.xml.sample ${INSTALL_DATA} ${WRKSRC}/ext/config/conf.d/puppetserver.conf ${STAGEDIR}${ETCDIR}/conf.d/puppetserver.conf.sample ${INSTALL_DATA} ${WRKSRC}/ext/config/conf.d/web-routes.conf ${STAGEDIR}${ETCDIR}/conf.d/web-routes.conf.sample ${INSTALL_DATA} ${WRKSRC}/ext/config/conf.d/webserver.conf ${STAGEDIR}${ETCDIR}/conf.d/webserver.conf.sample ${INSTALL_DATA} ${WRKSRC}/ext/config/conf.d/auth.conf ${STAGEDIR}${ETCDIR}/conf.d/auth.conf.sample ${INSTALL_DATA} ${WRKSRC}/ext/config/conf.d/metrics.conf ${STAGEDIR}${ETCDIR}/conf.d/metrics.conf.sample ${INSTALL_DATA} ${WRKSRC}/ext/config/services.d/ca.cfg ${STAGEDIR}${ETCDIR}/services.d/ca.cfg.sample ${INSTALL_DATA} ${WRKSRC}/ext/system-config/services.d/bootstrap.cfg ${STAGEDIR}${ETCDIR}/services.d/bootstrap.cfg.sample ${INSTALL_DATA} ${WRKSRC}/ext/bin/puppetserver ${STAGEDIR}${PREFIX}/bin/puppetserver ${INSTALL_DATA} ${WRKSRC}/ext/ezbake-functions.sh ${STAGEDIR}${DATADIR}/ezbake-functions.sh ${INSTALL_DATA} ${WRKSRC}/ext/cli/ca ${STAGEDIR}${DATADIR}/cli/apps/ca ${INSTALL_DATA} ${WRKSRC}/ext/cli/foreground ${STAGEDIR}${DATADIR}/cli/apps/foreground ${INSTALL_DATA} ${WRKSRC}/ext/cli/gem ${STAGEDIR}${DATADIR}/cli/apps/gem ${INSTALL_DATA} ${WRKSRC}/ext/cli/irb ${STAGEDIR}${DATADIR}/cli/apps/irb ${INSTALL_DATA} ${WRKSRC}/ext/cli/reload ${STAGEDIR}${DATADIR}/cli/apps/reload ${INSTALL_DATA} ${WRKSRC}/ext/cli/ruby ${STAGEDIR}${DATADIR}/cli/apps/ruby ${INSTALL_DATA} ${WRKSRC}/ext/cli/start ${STAGEDIR}${DATADIR}/cli/apps/start ${INSTALL_DATA} ${WRKSRC}/ext/cli/stop ${STAGEDIR}${DATADIR}/cli/apps/stop ${INSTALL_DATA} ${WRKSRC}/ext/cli_defaults/cli-defaults.sh ${STAGEDIR}${DATADIR}/cli/cli-defaults.sh .include diff --git a/sysutils/rhc/Makefile b/sysutils/rhc/Makefile index 4fdc7e4a9ae6..b54a3b9e340e 100644 --- a/sysutils/rhc/Makefile +++ b/sysutils/rhc/Makefile @@ -1,29 +1,28 @@ PORTNAME= rhc PORTVERSION= 1.32.2 PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= RG MAINTAINER= dereckson@gmail.com COMMENT= Administration console client for RedHat OpenShift WWW= https://github.com/openshift/rhc LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= minitar:archivers/rubygem-minitar-cli \ commander:devel/rubygem-commander \ rubygem-highline>=1.6.11:devel/rubygem-highline \ rubygem-httpclient>=2.4:www/rubygem-httpclient \ rubygem-net-scp>=1.1.2:security/rubygem-net-scp \ rubygem-net-ssh>=2.0.11:security/rubygem-net-ssh \ rubygem-net-ssh-multi>=1.2.0:security/rubygem-net-ssh-multi \ rubygem-open4>0:devel/rubygem-open4 NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/rhc .include diff --git a/sysutils/rubygem-backup/Makefile b/sysutils/rubygem-backup/Makefile index d72156fa48f5..3b3bdbf181d9 100644 --- a/sysutils/rubygem-backup/Makefile +++ b/sysutils/rubygem-backup/Makefile @@ -1,84 +1,83 @@ PORTNAME= backup PORTVERSION= 4.4.1 PORTREVISION= 2 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Perform backup operations on remote and local environment WWW= https://github.com/backup/backup LICENSE= MIT RUN_DEPENDS= rubygem-CFPropertyList>=2.3.1:devel/rubygem-CFPropertyList \ rubygem-addressable>=2.3.5:www/rubygem-addressable \ rubygem-atomic>=1.1.14:devel/rubygem-atomic \ rubygem-aws-ses>=0.5.0:net/rubygem-aws-ses \ rubygem-buftok>=0.2.0:devel/rubygem-buftok \ rubygem-builder>=3.2.2:devel/rubygem-builder \ rubygem-descendants_tracker>=0.0.3:devel/rubygem-descendants_tracker \ rubygem-dogapi>=1.11.0:net/rubygem-dogapi \ rubygem-dropbox-sdk>=1.6.5:net/rubygem-dropbox-sdk \ rubygem-equalizer>=0.0.9:devel/rubygem-equalizer \ rubygem-excon>=0.44.4:devel/rubygem-excon \ rubygem-faraday0>=0.8.8:www/rubygem-faraday0 \ rubygem-fission>=0.5.0:emulators/rubygem-fission \ rubygem-flowdock>=0.4.0:www/rubygem-flowdock \ rubygem-fog>=1.28.0:devel/rubygem-fog \ rubygem-fog-atmos>=0.1.0:net/rubygem-fog-atmos \ rubygem-fog-aws>=0.1.1:net/rubygem-fog-aws \ rubygem-fog-brightbox>=0.7.1:net/rubygem-fog-brightbox \ rubygem-fog-core>=1.29.0:devel/rubygem-fog-core \ rubygem-fog-ecloud>=0.0.2:net/rubygem-fog-ecloud \ rubygem-fog-json>=1.0.0:devel/rubygem-fog-json \ rubygem-fog-profitbricks>=0.0.2:net/rubygem-fog-profitbricks \ rubygem-fog-radosgw>=0.0.3:net/rubygem-fog-radosgw \ rubygem-fog-riakcs>=0.1.0:net/rubygem-fog-riakcs \ rubygem-fog-sakuracloud>=1.0.0:net/rubygem-fog-sakuracloud \ rubygem-fog-serverlove>=0.1.1:net/rubygem-fog-serverlove \ rubygem-fog-softlayer>=0.4.1:net/rubygem-fog-softlayer \ rubygem-fog-storm_on_demand>=0.1.0:net/rubygem-fog-storm_on_demand \ rubygem-fog-terremark>=0.0.4:net/rubygem-fog-terremark \ rubygem-fog-vmfusion>=0.0.1:net/rubygem-fog-vmfusion \ rubygem-fog-voxel>=0.0.2:net/rubygem-fog-voxel \ rubygem-fog-xml>=0.1.1:textproc/rubygem-fog-xml \ rubygem-formatador>=0.2.5:devel/rubygem-formatador \ rubygem-hipchat>=1.0.1:net-im/rubygem-hipchat \ rubygem-http>=0.5.0:www/rubygem-http \ rubygem-http_parser.rb>=0.6.0:net/rubygem-http_parser.rb \ rubygem-httparty>=0.12.0:www/rubygem-httparty \ rubygem-inflecto>=0.0.2:devel/rubygem-inflecto \ rubygem-ipaddress>=0.8.0:net/rubygem-ipaddress \ rubygem-json>=1.8.2:devel/rubygem-json \ rubygem-mail>=2.6.3,2:mail/rubygem-mail \ rubygem-memoizable>=0.4.0:devel/rubygem-memoizable \ rubygem-mime-types>=2.4.3:misc/rubygem-mime-types \ rubygem-multi_json>=1.10.1:devel/rubygem-multi_json \ rubygem-multi_xml>=0.5.5:textproc/rubygem-multi_xml \ rubygem-multipart-post>=1.2.0:www/rubygem-multipart-post \ rubygem-net-scp>=1.2.1:security/rubygem-net-scp \ rubygem-net-sftp>=2.1.2:security/rubygem-net-sftp \ rubygem-net-ssh>=3.2.0,2:security/rubygem-net-ssh \ rubygem-netrc>=0.11.0:net/rubygem-netrc \ rubygem-nokogiri>=1.8.2:textproc/rubygem-nokogiri \ rubygem-open4>=1.3.0:devel/rubygem-open4 \ rubygem-pagerduty>=2.0.0:www/rubygem-pagerduty \ rubygem-qiniu>=6.5.1:net/rubygem-qiniu \ rubygem-rest-client>=1.7.3:www/rubygem-rest-client \ rubygem-ruby-hmac>=0.4.0:security/rubygem-ruby-hmac \ rubygem-simple_oauth>=0.2.0:net/rubygem-simple_oauth \ rubygem-thor>=0.18.1:devel/rubygem-thor \ rubygem-thread_safe>=0.1.3:devel/rubygem-thread_safe \ rubygem-twitter>=5.5.0:net/rubygem-twitter \ rubygem-unf>=0.1.3:textproc/rubygem-unf \ rubygem-unf_ext>=0.0.6:textproc/rubygem-unf_ext \ rubygem-xml-simple>=1.1.4:textproc/rubygem-xml-simple USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/backup .include diff --git a/sysutils/rubygem-bolt/Makefile b/sysutils/rubygem-bolt/Makefile index 301372744205..f6781f99b8fe 100644 --- a/sysutils/rubygem-bolt/Makefile +++ b/sysutils/rubygem-bolt/Makefile @@ -1,58 +1,57 @@ PORTNAME= bolt PORTVERSION= 3.26.2 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= puppet@FreeBSD.org COMMENT= Execute commands remotely over SSH and WinRM WWW= https://github.com/puppetlabs/bolt LICENSE= APACHE20 RUN_DEPENDS= r10k:sysutils/rubygem-r10k \ rubygem-addressable>=2.5:www/rubygem-addressable \ rubygem-aws-sdk-ec2>1:devel/rubygem-aws-sdk-ec2 \ rubygem-CFPropertyList>=2.2:devel/rubygem-CFPropertyList \ rubygem-concurrent-ruby>=1.0:devel/rubygem-concurrent-ruby \ rubygem-ffi>=1.13:devel/rubygem-ffi \ rubygem-hiera-eyaml>=3:sysutils/rubygem-hiera-eyaml \ rubygem-jwt>=2.2:www/rubygem-jwt \ rubygem-logging>=2.2:devel/rubygem-logging \ rubygem-net-scp1>=1.2<2:security/rubygem-net-scp1 \ rubygem-net-ssh>=4.0:security/rubygem-net-ssh \ rubygem-net-ssh-krb>=0.5:security/rubygem-net-ssh-krb \ rubygem-orchestrator_client>=0.5:net/rubygem-orchestrator_client \ rubygem-puppet-resource_api>=1.8.1:devel/rubygem-puppet-resource_api \ rubygem-puppet-strings>=2.3:textproc/rubygem-puppet-strings \ rubygem-puppetfile-resolver>=0.6.2:sysutils/rubygem-puppetfile-resolver \ rubygem-ruby_smb>=1.0:net/rubygem-ruby_smb \ rubygem-terminal-table>=3.0<4:textproc/rubygem-terminal-table \ rubygem-winrm-fs>=1.3:sysutils/rubygem-winrm-fs \ rubygem-winrm>=2.0:sysutils/rubygem-winrm USES= gem shebangfix -USE_RUBY= yes ruby_OLD_CMD+= /opt/puppetlabs/puppet/bin/ruby SHEBANG_FILES= libexec/* NO_ARCH= yes PLIST_FILES= bin/bolt \ etc/bash_completion.d/bolt OPTIONS_SINGLE= PUPPET OPTIONS_SINGLE_PUPPET=PUPPET6 PUPPET7 OPTIONS_DEFAULT=PUPPET7 PUPPET6_DESC= Depend on sysutils/puppet6 PUPPET7_DESC= Depend on sysutils/puppet7 PUPPET6_RUN_DEPENDS=puppet:sysutils/puppet6 PUPPET7_RUN_DEPENDS=puppet:sysutils/puppet7 post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d ${INSTALL_DATA} ${WRKSRC}/resources/bolt_bash_completion.sh ${STAGEDIR}${PREFIX}/etc/bash_completion.d/bolt .include diff --git a/sysutils/rubygem-bosh-gen/Makefile b/sysutils/rubygem-bosh-gen/Makefile index 56124c9dfc2b..3640c96e7bc2 100644 --- a/sysutils/rubygem-bosh-gen/Makefile +++ b/sysutils/rubygem-bosh-gen/Makefile @@ -1,31 +1,30 @@ PORTNAME= bosh-gen PORTVERSION= 0.101.2 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Generators for creating BOSH releases WWW= https://github.com/cloudfoundry-community/bosh-gen LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport4>=4.0<5.0:devel/rubygem-activesupport4 \ rubygem-cyoi>=0.10<1:devel/rubygem-cyoi \ rubygem-fog>=1.11:devel/rubygem-fog \ rubygem-fog-aws>=0:net/rubygem-fog-aws \ rubygem-mime-types>=0:misc/rubygem-mime-types \ rubygem-progressbar>=0:devel/rubygem-progressbar \ rubygem-readwritesettings>=3.0<4:devel/rubygem-readwritesettings \ rubygem-thor>=0:devel/rubygem-thor USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/bosh-gen SHEBANG_FILES= lib/bosh/gen/generators/new_release_generator/templates/manifests/operators/pick-from-cloud-config.sh.tt .include diff --git a/sysutils/rubygem-bundler/Makefile b/sysutils/rubygem-bundler/Makefile index 880e9e1fe7fa..187746b72dde 100644 --- a/sysutils/rubygem-bundler/Makefile +++ b/sysutils/rubygem-bundler/Makefile @@ -1,24 +1,23 @@ PORTNAME= bundler PORTVERSION= 2.4.1 PORTEPOCH= 1 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Tool that manages gem dependencies for Ruby applications WWW= https://bundler.io/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= cpe gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/bundle \ bin/bundler CONFLICTS_INSTALL= go-tools # bin/bundle .include diff --git a/sysutils/rubygem-bundler_ext/Makefile b/sysutils/rubygem-bundler_ext/Makefile index 1be3112fcac5..3e756e7fb3d3 100644 --- a/sysutils/rubygem-bundler_ext/Makefile +++ b/sysutils/rubygem-bundler_ext/Makefile @@ -1,20 +1,19 @@ PORTNAME= bundler_ext PORTVERSION= 0.4.2 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Loads gems installed on the system using Bundler Gemfile DSL WWW= https://github.com/bundlerext/bundler_ext LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-bundler>=0:sysutils/rubygem-bundler USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-capistrano-ext/Makefile b/sysutils/rubygem-capistrano-ext/Makefile index 8539f5224bb4..c58048c03869 100644 --- a/sysutils/rubygem-capistrano-ext/Makefile +++ b/sysutils/rubygem-capistrano-ext/Makefile @@ -1,20 +1,19 @@ PORTNAME= capistrano-ext PORTVERSION= 1.2.1 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Useful task libraries and methods for Capistrano WWW= https://www.capify.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-capistrano>=1.0.0:sysutils/rubygem-capistrano USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-capistrano-harrow/Makefile b/sysutils/rubygem-capistrano-harrow/Makefile index 497e5d51231b..e8408e5a7080 100644 --- a/sysutils/rubygem-capistrano-harrow/Makefile +++ b/sysutils/rubygem-capistrano-harrow/Makefile @@ -1,18 +1,17 @@ PORTNAME= capistrano-harrow PORTVERSION= 0.5.3 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Capistrano plugin for integration with Harrow.io WWW= https://github.com/harrowio/capistrano-harrow LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-capistrano/Makefile b/sysutils/rubygem-capistrano/Makefile index e2c49b0c818f..82b3f12838ef 100644 --- a/sysutils/rubygem-capistrano/Makefile +++ b/sysutils/rubygem-capistrano/Makefile @@ -1,25 +1,24 @@ PORTNAME= capistrano PORTVERSION= 3.17.1 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Utility for executing commands in parallel on multiple machines WWW= https://github.com/capistrano/capistrano LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-airbrussh>=1.0.0:security/rubygem-airbrussh \ rubygem-i18n>=0:devel/rubygem-i18n \ rubygem-rake>=10.0.0:devel/rubygem-rake \ rubygem-sshkit>=1.9.0:security/rubygem-sshkit USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/cap bin/capify .include diff --git a/sysutils/rubygem-chef-bin/Makefile b/sysutils/rubygem-chef-bin/Makefile index fa4f2db7fc5b..1d7b65a994d3 100644 --- a/sysutils/rubygem-chef-bin/Makefile +++ b/sysutils/rubygem-chef-bin/Makefile @@ -1,28 +1,27 @@ PORTNAME= chef-bin PORTVERSION= 16.18.0 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Chef-branded binstubs for chef-client WWW= https://github.com/chef/chef/tree/main/chef-bin LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-chef>=${PORTVERSION}:sysutils/rubygem-chef USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/chef-apply \ bin/chef-client \ bin/chef-resource-inspector \ bin/chef-service-manager \ bin/chef-shell \ bin/chef-solo \ bin/chef-windows-service .include diff --git a/sysutils/rubygem-chef-cleanroom/Makefile b/sysutils/rubygem-chef-cleanroom/Makefile index bd648b28215b..53596dde2bdf 100644 --- a/sysutils/rubygem-chef-cleanroom/Makefile +++ b/sysutils/rubygem-chef-cleanroom/Makefile @@ -1,20 +1,19 @@ PORTNAME= chef-cleanroom PORTVERSION= 1.0.5 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Safely evaluate Ruby DSLs with cleanroom WWW= https://github.com/chef/cleanroom LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= .expeditor/buildkite/verify.sh .include diff --git a/sysutils/rubygem-chef-config/Makefile b/sysutils/rubygem-chef-config/Makefile index 6fdd80b95bd8..5503c957078a 100644 --- a/sysutils/rubygem-chef-config/Makefile +++ b/sysutils/rubygem-chef-config/Makefile @@ -1,25 +1,24 @@ PORTNAME= chef-config PORTVERSION= 16.18.0 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Default configuration and config loading library for Chef WWW= https://github.com/chef/chef/tree/main/chef-config LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-addressable>=0:www/rubygem-addressable \ rubygem-chef-utils>=${PORTVERSION}:sysutils/rubygem-chef-utils \ rubygem-fuzzyurl>=0:www/rubygem-fuzzyurl \ rubygem-mixlib-config>=2.2.12<4.0:devel/rubygem-mixlib-config \ rubygem-mixlib-shellout>=2.0<4.0:devel/rubygem-mixlib-shellout \ rubygem-tomlrb1>=1.2<2:textproc/rubygem-tomlrb1 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-chef-telemetry/Makefile b/sysutils/rubygem-chef-telemetry/Makefile index ff85bf10eda1..7c8795c8828a 100644 --- a/sysutils/rubygem-chef-telemetry/Makefile +++ b/sysutils/rubygem-chef-telemetry/Makefile @@ -1,22 +1,21 @@ PORTNAME= chef-telemetry PORTVERSION= 1.0.14 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Send user actions to the Chef telemetry system WWW= https://github.com/chef/chef-telemetry LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-chef-config>=0:sysutils/rubygem-chef-config \ rubygem-concurrent-ruby>=1.0<2:devel/rubygem-concurrent-ruby \ rubygem-ffi-yajl>=2.2<3:devel/rubygem-ffi-yajl USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-chef-utils/Makefile b/sysutils/rubygem-chef-utils/Makefile index b40efd84a058..b9777327fbf4 100644 --- a/sysutils/rubygem-chef-utils/Makefile +++ b/sysutils/rubygem-chef-utils/Makefile @@ -1,18 +1,17 @@ PORTNAME= chef-utils PORTVERSION= 16.18.0 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Basic utility functions for Core Chef Infra development WWW= https://github.com/chef/chef/tree/main/chef-utils LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-chef-vault/Makefile b/sysutils/rubygem-chef-vault/Makefile index a20c931dcdc7..dbc1dc303440 100644 --- a/sysutils/rubygem-chef-vault/Makefile +++ b/sysutils/rubygem-chef-vault/Makefile @@ -1,20 +1,19 @@ PORTNAME= chef-vault PORTVERSION= 4.1.10 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Data encryption support for Chef Infra using data bags WWW= https://github.com/chef/chef-vault LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/chef-vault .include diff --git a/sysutils/rubygem-chef-zero/Makefile b/sysutils/rubygem-chef-zero/Makefile index d93e90adb4e5..8be6f8e6c3ef 100644 --- a/sysutils/rubygem-chef-zero/Makefile +++ b/sysutils/rubygem-chef-zero/Makefile @@ -1,28 +1,27 @@ PORTNAME= chef-zero PORTVERSION= 15.0.11 PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Self-contained, easy-setup, fast-start in-memory Chef server WWW= https://github.com/chef/chef-zero LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-ffi-yajl>=2.2<3:devel/rubygem-ffi-yajl \ rubygem-hashie4>=2.0<5.0:devel/rubygem-hashie4 \ rubygem-mixlib-log>=2.0<4.0:devel/rubygem-mixlib-log \ rubygem-rack22>=2.0.6,3<3,3:www/rubygem-rack22 \ rubygem-uuidtools>=2.1<3:devel/rubygem-uuidtools \ rubygem-webrick>=0:www/rubygem-webrick USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/chef-zero .include diff --git a/sysutils/rubygem-chef/Makefile b/sysutils/rubygem-chef/Makefile index 7242a68af877..e3ffc1aaa50a 100644 --- a/sysutils/rubygem-chef/Makefile +++ b/sysutils/rubygem-chef/Makefile @@ -1,71 +1,70 @@ PORTNAME= chef PORTVERSION= 16.18.0 PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Systems integration framework. Client part WWW= https://www.chef.io/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-addressable>=0:www/rubygem-addressable \ rubygem-bcrypt_pbkdf>=1.1<2:security/rubygem-bcrypt_pbkdf \ rubygem-bundler>=1.10:sysutils/rubygem-bundler \ rubygem-chef-config>=${PORTVERSION}<${PORTVERSION}_99:sysutils/rubygem-chef-config \ rubygem-chef-utils>=${PORTVERSION}<${PORTVERSION}_99:sysutils/rubygem-chef-utils \ rubygem-chef-vault>=0:sysutils/rubygem-chef-vault \ rubygem-chef-zero>=14.0.11:sysutils/rubygem-chef-zero \ rubygem-diff-lcs>=1.2.4<1.6.0:textproc/rubygem-diff-lcs \ rubygem-ed25519>=1.2<2:security/rubygem-ed25519 \ rubygem-erubis>=2.7<3:www/rubygem-erubis \ rubygem-ffi>=1.9.25:devel/rubygem-ffi \ rubygem-ffi-libarchive>=1.0.3<2:devel/rubygem-ffi-libarchive \ rubygem-ffi-yajl>=2.2<3:devel/rubygem-ffi-yajl \ rubygem-highline>=1.6.9<3:devel/rubygem-highline \ rubygem-iniparse>=1.4<2:devel/rubygem-iniparse \ rubygem-inspec-core>=4.23<5:devel/rubygem-inspec-core \ rubygem-license-acceptance>=1.0.5<3:sysutils/rubygem-license-acceptance \ rubygem-mixlib-archive>=0.4<2.0:devel/rubygem-mixlib-archive \ rubygem-mixlib-authentication>=2.1<4:devel/rubygem-mixlib-authentication \ rubygem-mixlib-cli>=2.1.1<3.0:devel/rubygem-mixlib-cli \ rubygem-mixlib-log>=2.0.3<4.0:devel/rubygem-mixlib-log \ rubygem-mixlib-shellout>=3.1.1<4.0:devel/rubygem-mixlib-shellout \ rubygem-net-sftp>=2.1.2<5.0:security/rubygem-net-sftp \ rubygem-net-ssh6>=5.1<7:security/rubygem-net-ssh6 \ rubygem-net-ssh-multi>=1.2.1<2:security/rubygem-net-ssh-multi \ rubygem-ohai>=16.0<17:sysutils/rubygem-ohai \ rubygem-pastel>=0:devel/rubygem-pastel \ rubygem-plist>=3.2<4:devel/rubygem-plist \ rubygem-proxifier>=1.0<2:net/rubygem-proxifier \ rubygem-syslog-logger>=1.6<2:sysutils/rubygem-syslog-logger \ rubygem-train-core>=3.2.28<4:net/rubygem-train-core \ rubygem-train-winrm>=0.2.5:net/rubygem-train-winrm \ rubygem-tty-prompt>=0.21<1:devel/rubygem-tty-prompt \ rubygem-tty-screen>=0.6<1:devel/rubygem-tty-screen \ rubygem-tty-table>=0.11<1:devel/rubygem-tty-table \ rubygem-uuidtools>=2.1.5<3.0:devel/rubygem-uuidtools USES= cpe gem shebangfix -USE_RUBY= yes NO_ARCH= yes SUB_LIST= RUBY=${RUBY} USE_RC_SUBR= chef_client SHEBANG_FILES= spec/functional/assets/chefinittest \ spec/functional/assets/testchefsubsys SHEBANG_LANG= ksh post-patch: @${REINPLACE_CMD} -e '1d' ${WRKSRC}/spec/data/apt/chef-integration-test*/debian/rules post-install: # ${INSTALL_MAN} ${WRKSRC}/distro/common/man/man1/*.1 ${STAGEDIR}${PREFIX}/man/man1/ # ${INSTALL_MAN} ${WRKSRC}/distro/common/man/man8/*.8 ${STAGEDIR}${PREFIX}/man/man8/ ${MKDIR} ${STAGEDIR}/var/chef .include diff --git a/sysutils/rubygem-choria-mcorpc-support/Makefile b/sysutils/rubygem-choria-mcorpc-support/Makefile index 72c0e7d460d1..5b28978f5d38 100644 --- a/sysutils/rubygem-choria-mcorpc-support/Makefile +++ b/sysutils/rubygem-choria-mcorpc-support/Makefile @@ -1,23 +1,22 @@ PORTNAME= choria-mcorpc-support DISTVERSION= 2.26.1 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= puppet@FreeBSD.org COMMENT= Ruby support for the Choria Orchestration Server WWW= https://rubygems.org/gems/choria-mcorpc-support 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 \ rubygem-systemu>=2.6.4<3:devel/rubygem-systemu NO_ARCH= yes PLIST_FILES= bin/mco .include diff --git a/sysutils/rubygem-facter/Makefile b/sysutils/rubygem-facter/Makefile index e9e0affebfb5..9df488bb85f3 100644 --- a/sysutils/rubygem-facter/Makefile +++ b/sysutils/rubygem-facter/Makefile @@ -1,36 +1,35 @@ PORTNAME= facter PORTVERSION= 4.2.14 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= puppet@FreeBSD.org COMMENT= Cross-platform Ruby library for retrieving facts from OS WWW= https://puppetlabs.com/facter LICENSE= APACHE20 RUN_DEPENDS= rubygem-hocon>=1.3<2:devel/rubygem-hocon \ rubygem-thor>=1.0.1<2.0:devel/rubygem-thor # Soft dependencies that resolve more FreeBSD facts RUN_DEPENDS+= rubygem-ruby-augeas>0:textproc/rubygem-ruby-augeas \ rubygem-ffi>=1.0:devel/rubygem-ffi \ rubygem-rexml>0:textproc/rubygem-rexml \ rubygem-sys-filesystem>0:sysutils/rubygem-sys-filesystem USES= cpe gem CPE_VENDOR= puppet -USE_RUBY= yes CONFLICTS_INSTALL= facter # bin/facter NO_ARCH= yes PLIST_FILES= bin/facter ${GEMS_DIR}/facter .include post-install: (cd ${WRKSRC}/lib/facter/facts/freebsd && ${COPYTREE_SHARE} "ec2_metadata.rb ec2_userdata.rb ipaddress_interfaces.rb ipaddress6_interfaces.rb" ${STAGEDIR}/${PREFIX}/${GEMS_DIR}/facter-${PORTVERSION}/lib/facter/facts/freebsd) ${RLN} ${STAGEDIR}/${PREFIX}/${GEMS_LIB_DIR} ${STAGEDIR}/${PREFIX}/${GEMS_DIR}/facter .include diff --git a/sysutils/rubygem-fluent-mixin-plaintextformatter/Makefile b/sysutils/rubygem-fluent-mixin-plaintextformatter/Makefile index e9ebe4c00423..83ba48489a1b 100644 --- a/sysutils/rubygem-fluent-mixin-plaintextformatter/Makefile +++ b/sysutils/rubygem-fluent-mixin-plaintextformatter/Makefile @@ -1,19 +1,18 @@ PORTNAME= fluent-mixin-plaintextformatter PORTVERSION= 0.2.6 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= girgen@FreeBSD.org COMMENT= Fluentd plugin to include format values into json, tsv or csv WWW= https://github.com/tagomoris/fluent-mixin-plaintextformatter LICENSE= APACHE20 RUN_DEPENDS= \ rubygem-fluentd>0:sysutils/rubygem-fluentd \ rubygem-ltsv>0:textproc/rubygem-ltsv -USE_RUBY= yes USES= gem .include diff --git a/sysutils/rubygem-fluent-plugin-config-expander/Makefile b/sysutils/rubygem-fluent-plugin-config-expander/Makefile index 83414277b921..f2090a2a9930 100644 --- a/sysutils/rubygem-fluent-plugin-config-expander/Makefile +++ b/sysutils/rubygem-fluent-plugin-config-expander/Makefile @@ -1,17 +1,16 @@ PORTNAME= fluent-plugin-config-expander PORTVERSION= 1.0.1 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= girgen@FreeBSD.org COMMENT= Fluent plugin which provides directives for loop extraction WWW= https://github.com/tagomoris/fluent-plugin-config-expander LICENSE= APACHE20 RUN_DEPENDS= rubygem-fluentd>0:sysutils/rubygem-fluentd -USE_RUBY= yes USES= gem .include diff --git a/sysutils/rubygem-fluent-plugin-file-alternative/Makefile b/sysutils/rubygem-fluent-plugin-file-alternative/Makefile index 91d96227ab83..0d0b314dabe3 100644 --- a/sysutils/rubygem-fluent-plugin-file-alternative/Makefile +++ b/sysutils/rubygem-fluent-plugin-file-alternative/Makefile @@ -1,17 +1,16 @@ PORTNAME= fluent-plugin-file-alternative PORTVERSION= 0.2.2 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= girgen@FreeBSD.org COMMENT= Gems for fluent plugin of alternative implementation of out_file WWW= https://rubygems.org/gems/fluent-plugin-file-alternative RUN_DEPENDS= \ rubygem-fluentd>0:sysutils/rubygem-fluentd \ rubygem-fluent-mixin-plaintextformatter>0:sysutils/rubygem-fluent-mixin-plaintextformatter -USE_RUBY= yes USES= gem .include diff --git a/sysutils/rubygem-fluent-plugin-tail-asis/Makefile b/sysutils/rubygem-fluent-plugin-tail-asis/Makefile index df203e871dd5..4c1deb07aef4 100644 --- a/sysutils/rubygem-fluent-plugin-tail-asis/Makefile +++ b/sysutils/rubygem-fluent-plugin-tail-asis/Makefile @@ -1,16 +1,15 @@ PORTNAME= fluent-plugin-tail-asis PORTVERSION= 0.0.3 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ports@FreeBSD.org COMMENT= Gems for fluent plugin to read whole line into single key WWW= https://github.com/yteraoka/fluent-plugin-tail-asis RUN_DEPENDS= \ rubygem-fluentd>0:sysutils/rubygem-fluentd -USE_RUBY= yes USES= gem .include diff --git a/sysutils/rubygem-fluentd/Makefile b/sysutils/rubygem-fluentd/Makefile index c3c849246fa4..1f63dbf02ab2 100644 --- a/sysutils/rubygem-fluentd/Makefile +++ b/sysutils/rubygem-fluentd/Makefile @@ -1,44 +1,43 @@ PORTNAME= fluentd PORTVERSION= 1.15.3 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= girgen@FreeBSD.org COMMENT= Fluent event collector WWW= https://fluentd.org/ LICENSE= APACHE20 RUN_DEPENDS= \ rubygem-bundler>=0:sysutils/rubygem-bundler \ rubygem-cool.io>=1.4.5<2.0.0:devel/rubygem-cool.io \ rubygem-http_parser.rb>=0.5.1<0.9.0:net/rubygem-http_parser.rb \ rubygem-msgpack>=1.3.1<2.0.0:devel/rubygem-msgpack \ rubygem-serverengine>=2.2.5<3.0.0:net/rubygem-serverengine \ rubygem-sigdump>=0.2.2<0.3:devel/rubygem-sigdump \ rubygem-strptime>=0.2.2<1.0.0:devel/rubygem-strptime \ rubygem-tzinfo1>=1.0<3.0:devel/rubygem-tzinfo1 \ rubygem-tzinfo-data>=1.0<2:devel/rubygem-tzinfo-data \ rubygem-webrick>=1.4.2<1.8.0:www/rubygem-webrick \ rubygem-yajl-ruby>=1.0<2:devel/rubygem-yajl-ruby PLIST_FILES= bin/fluent-cap-ctl bin/fluent-cat bin/fluent-ctl \ bin/fluent-debug bin/fluent-gem bin/fluentd \ bin/fluent-binlog-reader bin/fluent-ca-generate \ bin/fluent-plugin-config-format bin/fluent-plugin-generate \ "@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 SUB_LIST+= USER=${USERS} GROUP=${GROUPS} RUBY=${RUBY} NO_ARCH= YES NO_LATEST_LINK= YES post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/fluentd/plugin ${CP} ${WRKSRC}/fluent.conf.sample ${STAGEDIR}${PREFIX}/etc/fluentd/ .include diff --git a/sysutils/rubygem-fssm/Makefile b/sysutils/rubygem-fssm/Makefile index 91f66c5faa19..19b21a158b16 100644 --- a/sysutils/rubygem-fssm/Makefile +++ b/sysutils/rubygem-fssm/Makefile @@ -1,17 +1,16 @@ PORTNAME= fssm PORTVERSION= 0.2.10 CATEGORIES= sysutils ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= State tracking and event firing utility WWW= https://github.com/ttilley/fssm LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/sysutils/rubygem-god/Makefile b/sysutils/rubygem-god/Makefile index 88cdb493ff6c..df6d69f77738 100644 --- a/sysutils/rubygem-god/Makefile +++ b/sysutils/rubygem-god/Makefile @@ -1,20 +1,19 @@ PORTNAME= god PORTVERSION= 0.13.7 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Monitoring framework written in Ruby WWW= http://godrb.com/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USE_RUBY= yes USES= gem CONFLICTS_INSTALL= coreutils # bin/god PLIST_FILES= bin/god .include diff --git a/sysutils/rubygem-guard-compat/Makefile b/sysutils/rubygem-guard-compat/Makefile index 7d4a62428b4b..f60bc5a613cb 100644 --- a/sysutils/rubygem-guard-compat/Makefile +++ b/sysutils/rubygem-guard-compat/Makefile @@ -1,18 +1,17 @@ PORTNAME= guard-compat PORTVERSION= 1.2.1 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Helps creating valid Guard plugins and testing them WWW= https://github.com/guard/guard-compat LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-guard-cucumber/Makefile b/sysutils/rubygem-guard-cucumber/Makefile index 728bd4398db5..87ff69290892 100644 --- a/sysutils/rubygem-guard-cucumber/Makefile +++ b/sysutils/rubygem-guard-cucumber/Makefile @@ -1,21 +1,20 @@ PORTNAME= guard-cucumber PORTVERSION= 3.0.0 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Automatically run your features WWW= https://github.com/guard/guard-cucumber LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-cucumber>=3.1:devel/rubygem-cucumber \ rubygem-nenv>=0.1:devel/rubygem-nenv USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-guard-livereload/Makefile b/sysutils/rubygem-guard-livereload/Makefile index 7691fb162bc7..1c8cf3506f0e 100644 --- a/sysutils/rubygem-guard-livereload/Makefile +++ b/sysutils/rubygem-guard-livereload/Makefile @@ -1,23 +1,22 @@ PORTNAME= guard-livereload PORTVERSION= 2.5.2 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Automatically reloads your browser when 'view' files are modified WWW= https://github.com/guard/guard-livereload LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-em-websocket>=0.5<1:www/rubygem-em-websocket \ rubygem-guard>=2.8<3:sysutils/rubygem-guard \ rubygem-guard-compat>=1.0<2:sysutils/rubygem-guard-compat \ rubygem-multi_json>=1.8<2:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-guard-minitest/Makefile b/sysutils/rubygem-guard-minitest/Makefile index 9a47f52e519c..d758fd05d8b1 100644 --- a/sysutils/rubygem-guard-minitest/Makefile +++ b/sysutils/rubygem-guard-minitest/Makefile @@ -1,21 +1,20 @@ PORTNAME= guard-minitest PORTVERSION= 2.4.6 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Automatically run your tests with Minitest framework WWW= https://github.com/guard/guard-minitest LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-guard-compat>=1.2<2:sysutils/rubygem-guard-compat \ rubygem-minitest>=3.0:devel/rubygem-minitest USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-guard-rspec/Makefile b/sysutils/rubygem-guard-rspec/Makefile index caa6e074913e..f821072a7db9 100644 --- a/sysutils/rubygem-guard-rspec/Makefile +++ b/sysutils/rubygem-guard-rspec/Makefile @@ -1,22 +1,21 @@ PORTNAME= guard-rspec PORTVERSION= 4.7.3 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Guard::RSpec automatically run your specs (much like autotest) WWW= https://github.com/guard/guard-rspec LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-guard>=2.1<3:sysutils/rubygem-guard \ rubygem-guard-compat>=1.1<2:sysutils/rubygem-guard-compat \ rubygem-rspec>=2.99.0<4.0:devel/rubygem-rspec USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-guard/Makefile b/sysutils/rubygem-guard/Makefile index 80716cce6e7e..b644cc0d853b 100644 --- a/sysutils/rubygem-guard/Makefile +++ b/sysutils/rubygem-guard/Makefile @@ -1,29 +1,28 @@ PORTNAME= guard PORTVERSION= 2.18.0 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Command line tool to easily handle events on file system modifications WWW= https://github.com/guard/guard LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-formatador>=0.2.4:devel/rubygem-formatador \ rubygem-listen>=2.7<4.0:devel/rubygem-listen \ rubygem-lumberjack>=1.0.12<2.0:devel/rubygem-lumberjack \ rubygem-nenv>=0.1<1:devel/rubygem-nenv \ rubygem-notiffany>=0<1:devel/rubygem-notiffany \ rubygem-pry>=0.13.0:devel/rubygem-pry \ rubygem-shellany>=0<1:sysutils/rubygem-shellany \ rubygem-thor>=0.18.1:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/_guard-core bin/guard .include diff --git a/sysutils/rubygem-hammer_cli/Makefile b/sysutils/rubygem-hammer_cli/Makefile index 4182df5361ee..11ae9dbd85e2 100644 --- a/sysutils/rubygem-hammer_cli/Makefile +++ b/sysutils/rubygem-hammer_cli/Makefile @@ -1,39 +1,38 @@ PORTNAME= hammer_cli PORTVERSION= 3.5.0 CATEGORIES= sysutils ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provides CLI interfaces for Ruby apps WWW= https://github.com/theforeman/hammer-cli LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-amazing_print>=0:devel/rubygem-amazing_print \ rubygem-apipie-bindings>=0.5.0:devel/rubygem-apipie-bindings \ rubygem-clamp11>=1.1<1.2.0:devel/rubygem-clamp11 \ rubygem-fast_gettext>=0:devel/rubygem-fast_gettext \ rubygem-highline>=0:devel/rubygem-highline \ rubygem-locale>=2.0.6:devel/rubygem-locale \ rubygem-logging>=0:devel/rubygem-logging \ rubygem-unicode>=0:devel/rubygem-unicode \ rubygem-unicode-display_width>=0:devel/rubygem-unicode-display_width USES= cpe gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/hammer \ bin/hammer-complete \ "@sample etc/hammer/cli_config.yml.sample" \ "@dir etc/hammer/cli.modules.d" CPE_VENDOR= theforeman post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/hammer/cli.modules.d ${INSTALL_DATA} ${WRKSRC}/config/cli_config.template.yml ${STAGEDIR}${PREFIX}/etc/hammer/cli_config.yml.sample .include diff --git a/sysutils/rubygem-hammer_cli_foreman/Makefile b/sysutils/rubygem-hammer_cli_foreman/Makefile index e8b296b02624..d7f1736aec56 100644 --- a/sysutils/rubygem-hammer_cli_foreman/Makefile +++ b/sysutils/rubygem-hammer_cli_foreman/Makefile @@ -1,28 +1,27 @@ PORTNAME= hammer_cli_foreman PORTVERSION= 3.5.0 CATEGORIES= sysutils ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Foreman commands for Hammer CLI WWW= https://github.com/theforeman/hammer-cli-foreman LICENSE= GPLv3+ RUN_DEPENDS= rubygem-apipie-bindings>=0.5.0:devel/rubygem-apipie-bindings \ rubygem-hammer_cli>=${PORTVERSION}:sysutils/rubygem-hammer_cli \ rubygem-jwt>=2.2.1:www/rubygem-jwt \ rubygem-rest-client>=1.8.0<3.0.0:www/rubygem-rest-client USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= "@sample etc/hammer/cli.modules.d/foreman.yml.sample" post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/hammer/cli.modules.d ${INSTALL_DATA} ${WRKSRC}/config/foreman.yml ${STAGEDIR}${PREFIX}/etc/hammer/cli.modules.d/foreman.yml.sample .include diff --git a/sysutils/rubygem-hammer_cli_foreman_bootdisk/Makefile b/sysutils/rubygem-hammer_cli_foreman_bootdisk/Makefile index b700ed51684d..030f46889a98 100644 --- a/sysutils/rubygem-hammer_cli_foreman_bootdisk/Makefile +++ b/sysutils/rubygem-hammer_cli_foreman_bootdisk/Makefile @@ -1,25 +1,24 @@ PORTNAME= hammer_cli_foreman_bootdisk PORTVERSION= 0.3.0 CATEGORIES= sysutils ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Foreman bootdisk commands for Hammer CLI WWW= https://github.com/theforeman/hammer_cli_foreman_bootdisk LICENSE= GPLv3+ RUN_DEPENDS= rubygem-hammer_cli_foreman>=0.1.2:sysutils/rubygem-hammer_cli_foreman USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= "@sample etc/hammer/cli.modules.d/foreman_bootdisk.yml.sample" post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/hammer/cli.modules.d ${INSTALL_DATA} ${WRKSRC}/config/foreman_bootdisk.yml ${STAGEDIR}${PREFIX}/etc/hammer/cli.modules.d/foreman_bootdisk.yml.sample .include diff --git a/sysutils/rubygem-hammer_cli_foreman_salt/Makefile b/sysutils/rubygem-hammer_cli_foreman_salt/Makefile index 4b8622503df6..134f810588a1 100644 --- a/sysutils/rubygem-hammer_cli_foreman_salt/Makefile +++ b/sysutils/rubygem-hammer_cli_foreman_salt/Makefile @@ -1,25 +1,24 @@ PORTNAME= hammer_cli_foreman_salt PORTVERSION= 0.1.0 CATEGORIES= sysutils ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= SaltStack integration commands for Hammer CLI WWW= https://github.com/theforeman/hammer_cli_foreman_salt LICENSE= GPLv3 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 PLIST_FILES= "@sample etc/hammer/cli.modules.d/foreman_salt.yml.sample" post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/hammer/cli.modules.d ${INSTALL_DATA} ${WRKSRC}/config/foreman_salt.yml ${STAGEDIR}${PREFIX}/etc/hammer/cli.modules.d/foreman_salt.yml.sample .include diff --git a/sysutils/rubygem-hammer_cli_foreman_ssh/Makefile b/sysutils/rubygem-hammer_cli_foreman_ssh/Makefile index da7dbcdc1e5a..a205ddf0fcea 100644 --- a/sysutils/rubygem-hammer_cli_foreman_ssh/Makefile +++ b/sysutils/rubygem-hammer_cli_foreman_ssh/Makefile @@ -1,28 +1,27 @@ PORTNAME= hammer_cli_foreman_ssh PORTVERSION= 0.0.3 PORTREVISION= 1 CATEGORIES= sysutils ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= SSH host commands for Hammer CLI WWW= https://github.com/theforeman/hammer-cli-foreman-ssh LICENSE= GPLv3+ RUN_DEPENDS= rubygem-hammer_cli>=0.0.6:sysutils/rubygem-hammer_cli \ rubygem-hammer_cli_foreman>=0:sysutils/rubygem-hammer_cli_foreman \ rubygem-net-ssh-multi>=1.2.1:security/rubygem-net-ssh-multi USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= "@sample etc/hammer/cli.modules.d/foreman_ssh.yml.sample" post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/hammer/cli.modules.d ${INSTALL_DATA} ${WRKSRC}/config/foreman_ssh.yml ${STAGEDIR}${PREFIX}/etc/hammer/cli.modules.d/foreman_ssh.yml.sample .include diff --git a/sysutils/rubygem-hiera-eyaml/Makefile b/sysutils/rubygem-hiera-eyaml/Makefile index 44815f6ce2c2..7f9068c2e2f4 100644 --- a/sysutils/rubygem-hiera-eyaml/Makefile +++ b/sysutils/rubygem-hiera-eyaml/Makefile @@ -1,24 +1,23 @@ PORTNAME= hiera-eyaml PORTVERSION= 3.3.0 PORTREVISION= 1 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= puppet@FreeBSD.org COMMENT= Backend for Hiera that provides encryption/decryption for properties WWW= https://github.com/voxpupuli/hiera-eyaml LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-highline>=0:devel/rubygem-highline \ rubygem-optimist>=0:devel/rubygem-optimist USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/eyaml .include diff --git a/sysutils/rubygem-hiera-file/Makefile b/sysutils/rubygem-hiera-file/Makefile index 7da20ef6dc85..ea9400999ff2 100644 --- a/sysutils/rubygem-hiera-file/Makefile +++ b/sysutils/rubygem-hiera-file/Makefile @@ -1,18 +1,17 @@ PORTNAME= hiera-file PORTVERSION= 1.1.1 PORTREVISION= 2 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= matthew@FreeBSD.org COMMENT= Data backend for Hiera that returns whole files WWW= https://github.com/adrienthebo/hiera-file NO_ARCH= yes -USE_RUBY= yes USES= gem RUN_DEPENDS= rubygem-hiera>=0:sysutils/rubygem-hiera .include diff --git a/sysutils/rubygem-hiera/Makefile b/sysutils/rubygem-hiera/Makefile index a09c76502c5e..77c2efc05b7b 100644 --- a/sysutils/rubygem-hiera/Makefile +++ b/sysutils/rubygem-hiera/Makefile @@ -1,33 +1,32 @@ PORTNAME= hiera PORTVERSION= 3.10.0 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Pluggable data store for hierarchical data WWW= https://github.com/puppetlabs/hiera LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/COPYING USES= cpe gem -USE_RUBY= yes NO_ARCH= yes PLIST_DIRS= /var/db/hiera PLIST_FILES= bin/hiera CPE_VENDOR= puppet post-install: ${REINPLACE_CMD} 's|/etc/puppetlabs/code/environments/%{environment}/hieradata|/var/db/hiera|' \ ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/lib/hiera/util.rb \ ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/spec/unit/util_spec.rb ${REINPLACE_CMD} 's|/etc/puppetlabs/code|${PREFIX}/etc|' \ ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/lib/hiera/util.rb \ ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/spec/unit/util_spec.rb ${FIND} ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR} -name \*.bak -delete ${MKDIR} ${STAGEDIR}/var/db/hiera .include diff --git a/sysutils/rubygem-hieracles/Makefile b/sysutils/rubygem-hieracles/Makefile index 7269f1a9ed13..edb279cd701d 100644 --- a/sysutils/rubygem-hieracles/Makefile +++ b/sysutils/rubygem-hieracles/Makefile @@ -1,31 +1,30 @@ PORTNAME= hieracles PORTVERSION= 0.4.2 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ports@FreeBSD.org COMMENT= CLI tool for Hiera parameters visualisation and analysis WWW= https://github.com/Gandi/hieracles/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-deep_merge>=1.0.1:devel/rubygem-deep_merge \ rubygem-awesome_print>=1.6.1:devel/rubygem-awesome_print \ rubygem-httparty>=0.13.7:www/rubygem-httparty NO_ARCH= yes -USE_RUBY= yes USES= gem CONFLICTS_INSTALL= zh-hc # bin/hc PLIST_FILES= bin/hc man/man1/hc.1.gz \ bin/ppdb man/man1/ppdb.1.gz \ bin/hieracles post-install: ${INSTALL_MAN} ${WRKSRC}/hc.1 ${STAGEDIR}${PREFIX}/man/man1/ ${INSTALL_MAN} ${WRKSRC}/ppdb.1 ${STAGEDIR}${PREFIX}/man/man1/ .include diff --git a/sysutils/rubygem-httplog/Makefile b/sysutils/rubygem-httplog/Makefile index edd4dfbb7f46..2f8c5ca4f832 100644 --- a/sysutils/rubygem-httplog/Makefile +++ b/sysutils/rubygem-httplog/Makefile @@ -1,20 +1,19 @@ PORTNAME= httplog PORTVERSION= 1.6.2 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Log outgoing HTTP requests WWW= https://github.com/trusche/httplog LICENSE= MIT RUN_DEPENDS= rubygem-rack>=2.0,3:www/rubygem-rack \ rubygem-rainbow>=2.0.0:devel/rubygem-rainbow USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-itamae/Makefile b/sysutils/rubygem-itamae/Makefile index 59f50b798a2a..6389e2bf5635 100644 --- a/sysutils/rubygem-itamae/Makefile +++ b/sysutils/rubygem-itamae/Makefile @@ -1,26 +1,25 @@ PORTNAME= itamae PORTVERSION= 1.10.7 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= naito.yuichiro@gmail.com COMMENT= Simple and lightweight configuration management tool WWW= https://github.com/itamae-kitchen/itamae LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ansi>=0:devel/rubygem-ansi \ rubygem-hashie>=0:devel/rubygem-hashie \ rubygem-schash>=0.1.0:devel/rubygem-schash \ rubygem-specinfra>=2.64.0:sysutils/rubygem-specinfra \ rubygem-thor>=0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/itamae .include diff --git a/sysutils/rubygem-librarian-puppet/Makefile b/sysutils/rubygem-librarian-puppet/Makefile index 0605aa28bf74..bf3024fe9b20 100644 --- a/sysutils/rubygem-librarian-puppet/Makefile +++ b/sysutils/rubygem-librarian-puppet/Makefile @@ -1,23 +1,22 @@ PORTNAME= librarian-puppet PORTVERSION= 3.0.1 PORTREVISION= 1 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= robak@FreeBSD.org COMMENT= Tool for management and bundling Puppet modules WWW= https://github.com/rodjek/librarian-puppet LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-librarianp>=0.6.3:devel/rubygem-librarianp \ rubygem-puppet_forge>=2.1:sysutils/rubygem-puppet_forge \ rubygem-rsync>0:net/rubygem-rsync NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/librarian-puppet .include diff --git a/sysutils/rubygem-license-acceptance/Makefile b/sysutils/rubygem-license-acceptance/Makefile index 31fe83d9ea3d..e5fef11513fc 100644 --- a/sysutils/rubygem-license-acceptance/Makefile +++ b/sysutils/rubygem-license-acceptance/Makefile @@ -1,23 +1,22 @@ PORTNAME= license-acceptance PORTVERSION= 2.1.13 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Chef End User License Agreement Acceptance for Ruby products WWW= https://github.com/chef/license-acceptance LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-pastel>=0.7<1:devel/rubygem-pastel \ rubygem-tomlrb1>=1.2<3.0:textproc/rubygem-tomlrb1 \ rubygem-tty-box>=0.6<1:devel/rubygem-tty-box \ rubygem-tty-prompt>=0.20<1:devel/rubygem-tty-prompt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-license_scout/Makefile b/sysutils/rubygem-license_scout/Makefile index 57c2974f3dd2..4654c40497dd 100644 --- a/sysutils/rubygem-license_scout/Makefile +++ b/sysutils/rubygem-license_scout/Makefile @@ -1,30 +1,29 @@ PORTNAME= license_scout PORTVERSION= 2.6.7 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Discover license files of a project's dependencies WWW= https://github.com/chef/license_scout LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-ffi-yajl>=2.2<3:devel/rubygem-ffi-yajl \ rubygem-fuzzy_match>=0:devel/rubygem-fuzzy_match \ rubygem-licensee>=9.8<10:devel/rubygem-licensee \ rubygem-mixlib-cli>=0:devel/rubygem-mixlib-cli \ rubygem-mixlib-config>=3.0<4.0:devel/rubygem-mixlib-config \ rubygem-mixlib-log>=0:devel/rubygem-mixlib-log \ rubygem-mixlib-shellout>=2.2<4.0:devel/rubygem-mixlib-shellout \ rubygem-terminal-table>=0:textproc/rubygem-terminal-table \ rubygem-toml-rb>=1.0:www/rubygem-toml-rb USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/license_scout .include diff --git a/sysutils/rubygem-log4r/Makefile b/sysutils/rubygem-log4r/Makefile index a5d3e800a8a1..13ea14cce60f 100644 --- a/sysutils/rubygem-log4r/Makefile +++ b/sysutils/rubygem-log4r/Makefile @@ -1,18 +1,17 @@ PORTNAME= log4r PORTVERSION= 1.1.10 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Flexible logging library for use in Ruby programs WWW= https://github.com/colbygk/log4r LICENSE= LGPL3 PORTSCOUT= skipv:1.1.11 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/sysutils/rubygem-logify/Makefile b/sysutils/rubygem-logify/Makefile index f87b4a3d210e..7b7a6fa9718d 100644 --- a/sysutils/rubygem-logify/Makefile +++ b/sysutils/rubygem-logify/Makefile @@ -1,17 +1,16 @@ PORTNAME= logify PORTVERSION= 0.2.0 CATEGORIES= sysutils ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Lightweight logging library for Ruby WWW= https://github.com/sethvargo/logify LICENSE= APACHE20 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/sysutils/rubygem-mogilefs-client/Makefile b/sysutils/rubygem-mogilefs-client/Makefile index fb7bd452d5fe..dc5d5aeceff8 100644 --- a/sysutils/rubygem-mogilefs-client/Makefile +++ b/sysutils/rubygem-mogilefs-client/Makefile @@ -1,19 +1,18 @@ PORTNAME= mogilefs-client PORTVERSION= 3.12.2 CATEGORIES= sysutils MASTER_SITES= RG MAINTAINER= trociny@FreeBSD.org COMMENT= MogileFS client library for Ruby WWW= https://yhbt.net/mogilefs-client/ LICENSE= BSD3CLAUSE NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/mog .include diff --git a/sysutils/rubygem-mothra/Makefile b/sysutils/rubygem-mothra/Makefile index 712d587b4ac1..4af83eaf008c 100644 --- a/sysutils/rubygem-mothra/Makefile +++ b/sysutils/rubygem-mothra/Makefile @@ -1,22 +1,21 @@ PORTNAME= mothra PORTVERSION= 0.0.3 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= linpct@gmail.com COMMENT= FreeBSD send-pr command line tool for Bugzilla system WWW= https://github.com/pct/mothra LICENSE= MIT RUN_DEPENDS= rubygem-colorize>=0.7.3:devel/rubygem-colorize \ rubygem-rodzilla>=0.3.6:devel/rubygem-rodzilla \ rubygem-thor>=0.19.1:devel/rubygem-thor NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/mothra .include diff --git a/sysutils/rubygem-murder/Makefile b/sysutils/rubygem-murder/Makefile index 284a980342f5..b32e21b978f7 100644 --- a/sysutils/rubygem-murder/Makefile +++ b/sysutils/rubygem-murder/Makefile @@ -1,17 +1,16 @@ PORTNAME= murder PORTVERSION= 0.1.2 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Large scale deploys using BitTorrent WWW= https://github.com/lg/murder LICENSE= APACHE20 NO_ARCH= yes -USE_RUBY= yes USES= gem python .include diff --git a/sysutils/rubygem-ohai/Makefile b/sysutils/rubygem-ohai/Makefile index 7894b6b68ebb..4a224336731b 100644 --- a/sysutils/rubygem-ohai/Makefile +++ b/sysutils/rubygem-ohai/Makefile @@ -1,33 +1,32 @@ PORTNAME= ohai PORTVERSION= 16.17.0 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ohai profiles your system and emits JSON WWW= https://github.com/chef/ohai LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-chef-config>=14.12<17:sysutils/rubygem-chef-config \ rubygem-chef-utils>=16.0<17:sysutils/rubygem-chef-utils \ rubygem-ffi>=1.9<2:devel/rubygem-ffi \ rubygem-ffi-yajl>=2.2<3:devel/rubygem-ffi-yajl \ rubygem-ipaddress>=0:net/rubygem-ipaddress \ rubygem-mixlib-cli>=1.7.0:devel/rubygem-mixlib-cli \ rubygem-mixlib-config>=2.0<4.0:devel/rubygem-mixlib-config \ rubygem-mixlib-log>=2.0.1<4.0:devel/rubygem-mixlib-log \ rubygem-mixlib-shellout>=3.2.5<4:devel/rubygem-mixlib-shellout \ rubygem-plist>=3.1<4:devel/rubygem-plist \ rubygem-train-core>=0:net/rubygem-train-core \ rubygem-wmi-lite>=1.0<2:devel/rubygem-wmi-lite USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/ohai .include diff --git a/sysutils/rubygem-parallel/Makefile b/sysutils/rubygem-parallel/Makefile index 6bb58d11f636..af24b6f01952 100644 --- a/sysutils/rubygem-parallel/Makefile +++ b/sysutils/rubygem-parallel/Makefile @@ -1,18 +1,17 @@ PORTNAME= parallel PORTVERSION= 1.22.1 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Run any kind of code in parallel processes WWW= https://github.com/grosser/parallel LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-puppet_forge/Makefile b/sysutils/rubygem-puppet_forge/Makefile index a834480deab2..1cf347a4003d 100644 --- a/sysutils/rubygem-puppet_forge/Makefile +++ b/sysutils/rubygem-puppet_forge/Makefile @@ -1,23 +1,22 @@ PORTNAME= puppet_forge PORTVERSION= 3.2.0 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby client for the Puppet Forge API WWW= https://github.com/puppetlabs/forge-ruby LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-faraday1>=1.3:www/rubygem-faraday1 \ rubygem-faraday_middleware>=1.0:www/rubygem-faraday_middleware \ rubygem-minitar>=0:archivers/rubygem-minitar \ rubygem-semantic_puppet>=1.0<2:devel/rubygem-semantic_puppet USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-puppetfile-resolver/Makefile b/sysutils/rubygem-puppetfile-resolver/Makefile index e2b19c89a17f..83bc0721d28d 100644 --- a/sysutils/rubygem-puppetfile-resolver/Makefile +++ b/sysutils/rubygem-puppetfile-resolver/Makefile @@ -1,21 +1,20 @@ PORTNAME= puppetfile-resolver DISTVERSION= 0.6.2 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= puppet@FreeBSD.org COMMENT= Dependency resolver for Puppetfiles as a gem WWW= https://rubygems.org/gems/puppetfile-resolver LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-molinillo>=0.6<1:devel/rubygem-molinillo \ rubygem-semantic_puppet>=1.0<2:devel/rubygem-semantic_puppet USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-puppetserver-ca/Makefile b/sysutils/rubygem-puppetserver-ca/Makefile index 1af53fe3544f..3075ed8a23ab 100644 --- a/sysutils/rubygem-puppetserver-ca/Makefile +++ b/sysutils/rubygem-puppetserver-ca/Makefile @@ -1,20 +1,19 @@ PORTNAME= puppetserver-ca PORTVERSION= 2.3.6 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= puppet@FreeBSD.org COMMENT= Ruby CLI tool to interact with the Puppet Server Certificate Authority WWW= https://github.com/puppetlabs/puppetserver-ca-cli/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/puppetserver-ca .include diff --git a/sysutils/rubygem-r10k/Makefile b/sysutils/rubygem-r10k/Makefile index d037ab968c4d..e39bf45389d4 100644 --- a/sysutils/rubygem-r10k/Makefile +++ b/sysutils/rubygem-r10k/Makefile @@ -1,33 +1,32 @@ PORTNAME= r10k PORTVERSION= 3.15.3 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= puppet@FreeBSD.org COMMENT= Tool for deploying Puppet environments and modules WWW= https://github.com/puppetlabs/r10k LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-colored2>=3.1.2:textproc/rubygem-colored2 \ rubygem-cri>=2.15.6:devel/rubygem-cri \ rubygem-gettext-setup>=0.24:devel/rubygem-gettext-setup \ rubygem-jwt>=2.2:www/rubygem-jwt \ rubygem-log4r>=1.1.10:sysutils/rubygem-log4r \ rubygem-multi_json>=1.10:devel/rubygem-multi_json \ rubygem-puppet_forge>=2.3.0:sysutils/rubygem-puppet_forge USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/r10k post-patch: @${REINPLACE_CMD} -e 's|%%PREFIX%%|${PREFIX}|' \ ${WRKSRC}/lib/r10k/settings.rb \ ${WRKSRC}/lib/r10k/settings/loader.rb .include diff --git a/sysutils/rubygem-redfish_client/Makefile b/sysutils/rubygem-redfish_client/Makefile index 8fa00a4dc05c..4b2ce1743c3f 100644 --- a/sysutils/rubygem-redfish_client/Makefile +++ b/sysutils/rubygem-redfish_client/Makefile @@ -1,20 +1,19 @@ PORTNAME= redfish_client PORTVERSION= 0.5.4 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= freebsd@moov.de COMMENT= Simple Redfish client library WWW= https://github.com/xlab-steampunk/redfish-client-ruby LICENSE= APACHE20 RUN_DEPENDS= rubygem-excon>=0.60:devel/rubygem-excon \ rubygem-server_sent_events>=0.1:devel/rubygem-server_sent_events USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-rubyipmi/Makefile b/sysutils/rubygem-rubyipmi/Makefile index 42ebabf71910..afc809427ee0 100644 --- a/sysutils/rubygem-rubyipmi/Makefile +++ b/sysutils/rubygem-rubyipmi/Makefile @@ -1,20 +1,19 @@ PORTNAME= rubyipmi PORTVERSION= 0.11.1 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Command line wrapper for ipmitool and freeipmi WWW= https://github.com/logicminds/rubyipmi LICENSE= LGPL21 RUN_DEPENDS= ${LOCALBASE}/sbin/bmc-device:sysutils/freeipmi \ rubygem-highline>=0:devel/rubygem-highline USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-serverspec/Makefile b/sysutils/rubygem-serverspec/Makefile index 8321661cf92a..8b6460a812e5 100644 --- a/sysutils/rubygem-serverspec/Makefile +++ b/sysutils/rubygem-serverspec/Makefile @@ -1,25 +1,24 @@ PORTNAME= serverspec PORTVERSION= 2.41.5 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= naito.yuichiro@gmail.com COMMENT= Test suite for server configuration WWW= https://serverspec.org LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-multi_json>=0:devel/rubygem-multi_json \ rubygem-rspec>=3.0:devel/rubygem-rspec \ rubygem-rspec-its>=1.2.0:devel/rubygem-rspec-its \ rubygem-specinfra>=2.72:sysutils/rubygem-specinfra USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/serverspec-init .include diff --git a/sysutils/rubygem-shellany/Makefile b/sysutils/rubygem-shellany/Makefile index 46d86bdb1198..9061d9d1a21c 100644 --- a/sysutils/rubygem-shellany/Makefile +++ b/sysutils/rubygem-shellany/Makefile @@ -1,18 +1,17 @@ PORTNAME= shellany PORTVERSION= 0.0.1 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= MRI+JRuby compatible command output capturing WWW= https://github.com/guard/shellany LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-smart_proxy_dynflow/Makefile b/sysutils/rubygem-smart_proxy_dynflow/Makefile index 74c8c8bda617..4e6354eae200 100644 --- a/sysutils/rubygem-smart_proxy_dynflow/Makefile +++ b/sysutils/rubygem-smart_proxy_dynflow/Makefile @@ -1,31 +1,30 @@ PORTNAME= smart_proxy_dynflow PORTVERSION= 0.9.0 CATEGORIES= sysutils ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Plugin to use Dynflow in Foreman Smart Proxy WWW= https://github.com/theforeman/smart_proxy_dynflow LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= foreman-proxy>=1.12.0:net/foreman-proxy \ rubygem-dynflow>=1.6<2:devel/rubygem-dynflow \ rubygem-rest-client>=0:www/rubygem-rest-client \ rubygem-sqlite3>=0:databases/rubygem-sqlite3 USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= "@sample etc/foreman-proxy/settings.d/dynflow.yml.sample" \ share/foreman-proxy/bundler.d/dynflow.rb post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/foreman-proxy/settings.d ${STAGEDIR}${PREFIX}/share/foreman-proxy/bundler.d ${INSTALL_DATA} ${WRKSRC}/settings.d/dynflow.yml.example ${STAGEDIR}${PREFIX}/etc/foreman-proxy/settings.d/dynflow.yml.sample ${INSTALL_DATA} ${WRKSRC}/bundler.d/dynflow.rb ${STAGEDIR}${PREFIX}/share/foreman-proxy/bundler.d/dynflow.rb .include diff --git a/sysutils/rubygem-smart_proxy_remote_execution_ssh/Makefile b/sysutils/rubygem-smart_proxy_remote_execution_ssh/Makefile index 5ebda05aebaf..53fa2c707d40 100644 --- a/sysutils/rubygem-smart_proxy_remote_execution_ssh/Makefile +++ b/sysutils/rubygem-smart_proxy_remote_execution_ssh/Makefile @@ -1,31 +1,30 @@ PORTNAME= smart_proxy_remote_execution_ssh PORTVERSION= 0.9.0 CATEGORIES= sysutils ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= SSH remote execution provider for foreman-proxy WWW= https://github.com/theforeman/smart_proxy_remote_execution_ssh LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= foreman-proxy>=1.12.0:net/foreman-proxy \ rubygem-mqtt>=0:net/rubygem-mqtt \ rubygem-net-ssh>=4.2.0,2:security/rubygem-net-ssh \ rubygem-smart_proxy_dynflow>=0.8<1:sysutils/rubygem-smart_proxy_dynflow USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= "@sample etc/foreman-proxy/settings.d/remote_execution_ssh.yml.sample" \ share/foreman-proxy/bundler.d/remote_execution_ssh.rb post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/foreman-proxy/settings.d ${STAGEDIR}${PREFIX}/share/foreman-proxy/bundler.d ${INSTALL_DATA} ${WRKSRC}/settings.d/remote_execution_ssh.yml.example ${STAGEDIR}${PREFIX}/etc/foreman-proxy/settings.d/remote_execution_ssh.yml.sample ${INSTALL_DATA} ${WRKSRC}/bundler.d/remote_execution_ssh.rb ${STAGEDIR}${PREFIX}/share/foreman-proxy/bundler.d/remote_execution_ssh.rb .include diff --git a/sysutils/rubygem-smart_proxy_salt/Makefile b/sysutils/rubygem-smart_proxy_salt/Makefile index 9c42bb6548f2..fb605c5626cf 100644 --- a/sysutils/rubygem-smart_proxy_salt/Makefile +++ b/sysutils/rubygem-smart_proxy_salt/Makefile @@ -1,37 +1,36 @@ PORTNAME= smart_proxy_salt PORTVERSION= 5.0.0 CATEGORIES= sysutils ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= SaltStack Plug-In for Foreman's Smart Proxy WWW= https://github.com/theforeman/smart_proxy_salt LICENSE= GPLv3 RUN_DEPENDS= foreman-proxy>=1.8.0:net/foreman-proxy \ ${PYTHON_PKGNAMEPREFIX}salt>0:sysutils/py-salt@${PY_FLAVOR} \ rubygem-smart_proxy_dynflow>=0.5.0:sysutils/rubygem-smart_proxy_dynflow USES= cpe gem python shebangfix -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= theforeman SHEBANG_FILES= bin/foreman-node \ sbin/upload-salt-reports python_OLD_CMD= /usr/bin/salt_python_wrapper post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/bin/foreman-node ${WRKSRC}/sbin/upload-salt-reports post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/etc/foreman-proxy/settings.d ${STAGEDIR}${PREFIX}/etc/salt ${STAGEDIR}${PREFIX}/share/foreman-proxy/bundler.d ${INSTALL_DATA} ${WRKSRC}/settings.d/salt.yml.example ${STAGEDIR}${PREFIX}/etc/foreman-proxy/settings.d/salt.yml.sample ${INSTALL_DATA} ${WRKSRC}/etc/foreman.yaml.example ${STAGEDIR}${PREFIX}/etc/salt/foreman.yaml.sample ${INSTALL_SCRIPT} ${WRKSRC}/sbin/upload-salt-reports ${STAGEDIR}${PREFIX}/sbin ${INSTALL_DATA} ${FILESDIR}/salt.rb ${STAGEDIR}${PREFIX}/share/foreman-proxy/bundler.d/salt.rb .include diff --git a/sysutils/rubygem-specinfra/Makefile b/sysutils/rubygem-specinfra/Makefile index 5cc119ba0cc3..8dea22463baf 100644 --- a/sysutils/rubygem-specinfra/Makefile +++ b/sysutils/rubygem-specinfra/Makefile @@ -1,22 +1,21 @@ PORTNAME= specinfra PORTVERSION= 2.82.16 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= naito.yuichiro@gmail.com COMMENT= Test suite for server configuration WWW= https://github.com/mizzy/specinfra LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-net-scp>=0:security/rubygem-net-scp \ rubygem-net-ssh>=2.7:security/rubygem-net-ssh \ rubygem-net-telnet>=0:security/rubygem-net-telnet USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-sys-admin/Makefile b/sysutils/rubygem-sys-admin/Makefile index 590919daa2b8..3a03bdc9a50c 100644 --- a/sysutils/rubygem-sys-admin/Makefile +++ b/sysutils/rubygem-sys-admin/Makefile @@ -1,20 +1,19 @@ PORTNAME= sys-admin PORTVERSION= 1.8.1 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Unified, cross platform replacement for the Etc module WWW= https://github.com/djberg96/sys-admin LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-ffi>=1.1<2:devel/rubygem-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-sys-cpu/Makefile b/sysutils/rubygem-sys-cpu/Makefile index 0d33a2237549..ed52e849209f 100644 --- a/sysutils/rubygem-sys-cpu/Makefile +++ b/sysutils/rubygem-sys-cpu/Makefile @@ -1,20 +1,19 @@ PORTNAME= sys-cpu PORTVERSION= 1.0.6 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Interface for getting information about the CPU WWW= https://github.com/djberg96/sys-cpu LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-ffi>=1.1<2:devel/rubygem-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-sys-filesystem/Makefile b/sysutils/rubygem-sys-filesystem/Makefile index eada2b845b32..7e0b64843745 100644 --- a/sysutils/rubygem-sys-filesystem/Makefile +++ b/sysutils/rubygem-sys-filesystem/Makefile @@ -1,20 +1,19 @@ PORTNAME= sys-filesystem PORTVERSION= 1.4.3 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby interface for getting filesystem information WWW= https://github.com/djberg96/sys-filesystem LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-ffi>=1.1<2:devel/rubygem-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-sys-host/Makefile b/sysutils/rubygem-sys-host/Makefile index 986648403623..26e8631e2c08 100644 --- a/sysutils/rubygem-sys-host/Makefile +++ b/sysutils/rubygem-sys-host/Makefile @@ -1,15 +1,14 @@ PORTNAME= sys-host PORTVERSION= 0.6.2 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provides hostname, IP address, and other information for a given host WWW= https://github.com/djberg96/sys-host LICENSE= ART20 -USE_RUBY= yes USES= gem .include diff --git a/sysutils/rubygem-sys-proctable/Makefile b/sysutils/rubygem-sys-proctable/Makefile index 546787551a5b..403d3df848bb 100644 --- a/sysutils/rubygem-sys-proctable/Makefile +++ b/sysutils/rubygem-sys-proctable/Makefile @@ -1,20 +1,19 @@ PORTNAME= sys-proctable PORTVERSION= 1.2.7 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby interface for getting process information WWW= https://github.com/djberg96/sys-proctable LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-ffi>=1.1<2:devel/rubygem-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-sys-uname/Makefile b/sysutils/rubygem-sys-uname/Makefile index dea55520e261..bd723553196c 100644 --- a/sysutils/rubygem-sys-uname/Makefile +++ b/sysutils/rubygem-sys-uname/Makefile @@ -1,20 +1,19 @@ PORTNAME= sys-uname PORTVERSION= 1.2.2 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby interface for getting system information WWW= https://github.com/djberg96/sys-uname LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-ffi>=1.1<2:devel/rubygem-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-sys-uptime/Makefile b/sysutils/rubygem-sys-uptime/Makefile index fbdb5dacd51d..eb4f40b6e415 100644 --- a/sysutils/rubygem-sys-uptime/Makefile +++ b/sysutils/rubygem-sys-uptime/Makefile @@ -1,20 +1,19 @@ PORTNAME= sys-uptime PORTVERSION= 0.7.5 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provides uptime and boot time information WWW= https://github.com/djberg96/sys-uptime LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-ffi>=1.1<2:devel/rubygem-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-syslog-logger/Makefile b/sysutils/rubygem-syslog-logger/Makefile index 0b4422b33503..2d919fc9b274 100644 --- a/sysutils/rubygem-syslog-logger/Makefile +++ b/sysutils/rubygem-syslog-logger/Makefile @@ -1,17 +1,16 @@ PORTNAME= syslog-logger PORTVERSION= 1.6.8 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Improved Logger replacement that logs to syslog WWW= https://github.com/ngmoco/syslog_logger LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-teamocil/Makefile b/sysutils/rubygem-teamocil/Makefile index 8d456ddf2642..f2321c041e58 100644 --- a/sysutils/rubygem-teamocil/Makefile +++ b/sysutils/rubygem-teamocil/Makefile @@ -1,23 +1,22 @@ PORTNAME= teamocil PORTVERSION= 1.4.2 PORTREVISION= 1 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Helps you to set up window and splits layouts for tmux WWW= https://github.com/remiprev/teamocil LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= tmux:sysutils/tmux USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/teamocil .include diff --git a/sysutils/rubygem-tmuxinator/Makefile b/sysutils/rubygem-tmuxinator/Makefile index 5b8ae3afdbd7..3053df65c40e 100644 --- a/sysutils/rubygem-tmuxinator/Makefile +++ b/sysutils/rubygem-tmuxinator/Makefile @@ -1,41 +1,40 @@ PORTNAME= tmuxinator PORTVERSION= 3.0.5 CATEGORIES= sysutils ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Manage complex tmux sessions easily WWW= https://github.com/tmuxinator/tmuxinator LICENSE= MIT RUN_DEPENDS= rubygem-erubis>=2.6<3:www/rubygem-erubis \ rubygem-thor>=1.2.1<1.3:devel/rubygem-thor \ rubygem-xdg2>=2.2.5<3:devel/rubygem-xdg2 USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/tmuxinator \ etc/bash_completion.d/_tmuxinator.bash \ share/zsh/site-functions/_tmuxinator OPTIONS_SINGLE= TMUX OPTIONS_SINGLE_TMUX= TMUX TMUX23 OPTIONS_DEFAULT=TMUX TMUX_DESC= Use tmux from sysutils/tmux TMUX23_DESC= Use tmux from sysutils/tmux23 TMUX_RUN_DEPENDS= tmux:sysutils/tmux TMUX23_RUN_DEPENDS= tmux:sysutils/tmux23 post-install: @${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d ${INSTALL_DATA} ${WRKSRC}/completion/tmuxinator.bash ${STAGEDIR}${PREFIX}/etc/bash_completion.d/_tmuxinator.bash @${MKDIR} ${STAGEDIR}${PREFIX}/share/zsh/site-functions ${INSTALL_DATA} ${WRKSRC}/completion/tmuxinator.zsh ${STAGEDIR}${PREFIX}/share/zsh/site-functions/_tmuxinator .include diff --git a/sysutils/rubygem-vagrant-bhyve/Makefile b/sysutils/rubygem-vagrant-bhyve/Makefile index a5e849493e61..36900a6eea23 100644 --- a/sysutils/rubygem-vagrant-bhyve/Makefile +++ b/sysutils/rubygem-vagrant-bhyve/Makefile @@ -1,15 +1,14 @@ PORTNAME= vagrant-bhyve PORTVERSION= 0.1.0 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Vagrant provider plugin to support bhyve WWW= https://github.com/jesa7955/vagrant-bhyve RUN_DEPENDS= rubygem-ruby_expect>=0:textproc/rubygem-ruby_expect -USE_RUBY= yes USES= gem .include diff --git a/sysutils/rubygem-vagrant-mutate/Makefile b/sysutils/rubygem-vagrant-mutate/Makefile index 6c9c63cde38d..a66a4aea96c5 100644 --- a/sysutils/rubygem-vagrant-mutate/Makefile +++ b/sysutils/rubygem-vagrant-mutate/Makefile @@ -1,18 +1,17 @@ PORTNAME= vagrant-mutate PORTVERSION= 1.2.0 PORTREVISION= 1 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Convert vagrant boxes to work with different providers WWW= https://github.com/sciurus/vagrant-mutate LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/sysutils/rubygem-vagrant-vbguest/Makefile b/sysutils/rubygem-vagrant-vbguest/Makefile index c48c60141b60..94f7fe4ff8c2 100644 --- a/sysutils/rubygem-vagrant-vbguest/Makefile +++ b/sysutils/rubygem-vagrant-vbguest/Makefile @@ -1,22 +1,21 @@ PORTNAME= vagrant-vbguest PORTVERSION= 0.30.0 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Vagrant plugin to install the VirtualBoxAdditions into the guest VM WWW= https://github.com/dotless-de/vagrant-vbguest LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-i18n>=0:devel/rubygem-i18n \ rubygem-log4r>=0:sysutils/rubygem-log4r \ rubygem-micromachine>=2<4:devel/rubygem-micromachine USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-vagrant_cloud/Makefile b/sysutils/rubygem-vagrant_cloud/Makefile index 38576683489e..601ff47f8fb2 100644 --- a/sysutils/rubygem-vagrant_cloud/Makefile +++ b/sysutils/rubygem-vagrant_cloud/Makefile @@ -1,23 +1,22 @@ PORTNAME= vagrant_cloud PORTVERSION= 3.0.5 CATEGORIES= sysutils rubygems devel MASTER_SITES= RG MAINTAINER= cmt@FreeBSD.org COMMENT= Vagrant Cloud API wrapper for Ruby WWW= https://www.vagrantup.com/docs/cli/cloud.html LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= rubygem-rest-client>=2.0.2:www/rubygem-rest-client RUN_DEPENDS= rubygem-excon>=0.73<1.0:devel/rubygem-excon \ rubygem-log4r>=1.1.10<1.2:sysutils/rubygem-log4r \ rubygem-rexml>=3.2.5:textproc/rubygem-rexml USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-vmstat/Makefile b/sysutils/rubygem-vmstat/Makefile index b9e610b3b243..d1eecf4915bd 100644 --- a/sysutils/rubygem-vmstat/Makefile +++ b/sysutils/rubygem-vmstat/Makefile @@ -1,16 +1,15 @@ PORTNAME= vmstat PORTVERSION= 2.3.1 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library to gather memory, cpu, network, load avg and disk information WWW= https://threez.github.io/ruby-vmstat/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include diff --git a/sysutils/rubygem-win32-file-security/Makefile b/sysutils/rubygem-win32-file-security/Makefile index 83f270c14074..a58a79794312 100644 --- a/sysutils/rubygem-win32-file-security/Makefile +++ b/sysutils/rubygem-win32-file-security/Makefile @@ -1,19 +1,18 @@ PORTNAME= win32-file-security PORTVERSION= 1.0.10 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= File security methods for the File class on MS Windows WWW= https://github.com/chef/win32-file-security/ LICENSE= ART20 RUN_DEPENDS= rubygem-ffi>0:devel/rubygem-ffi \ rubygem-ffi-win32-extensions>0:devel/rubygem-ffi-win32-extensions NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/sysutils/rubygem-win32-file-stat/Makefile b/sysutils/rubygem-win32-file-stat/Makefile index 34f93939be04..b83fdcfb722c 100644 --- a/sysutils/rubygem-win32-file-stat/Makefile +++ b/sysutils/rubygem-win32-file-stat/Makefile @@ -1,19 +1,18 @@ PORTNAME= win32-file-stat PORTVERSION= 1.5.5 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= File::Stat class tailored to MS Windows WWW= https://github.com/chef/win32-file-stat/ LICENSE= ART20 RUN_DEPENDS= rubygem-ffi>0:devel/rubygem-ffi \ rubygem-ffi-win32-extensions>0:devel/rubygem-ffi-win32-extensions NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/sysutils/rubygem-win32-file/Makefile b/sysutils/rubygem-win32-file/Makefile index 489ada526aa0..cd163f186999 100644 --- a/sysutils/rubygem-win32-file/Makefile +++ b/sysutils/rubygem-win32-file/Makefile @@ -1,20 +1,19 @@ PORTNAME= win32-file PORTVERSION= 0.8.2 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Extra and redefined methods for the File class on MS Windows WWW= https://github.com/chef/win32-file LICENSE= ART20 RUN_DEPENDS= rubygem-ffi>0:devel/rubygem-ffi \ rubygem-ffi-win32-extensions>0:devel/rubygem-ffi-win32-extensions \ rubygem-win32-file-stat>=1.4.0:sysutils/rubygem-win32-file-stat NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/sysutils/rubygem-winrm-elevated/Makefile b/sysutils/rubygem-winrm-elevated/Makefile index 04c9afb77a4c..bbba405e7b9d 100644 --- a/sysutils/rubygem-winrm-elevated/Makefile +++ b/sysutils/rubygem-winrm-elevated/Makefile @@ -1,22 +1,21 @@ PORTNAME= winrm-elevated PORTVERSION= 1.2.3 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby library for running commands as elevated WWW= https://github.com/WinRb/winrm-elevated LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-erubi>=1.8<2:www/rubygem-erubi \ rubygem-winrm>=2.0<3:sysutils/rubygem-winrm \ rubygem-winrm-fs>=1.0<2:sysutils/rubygem-winrm-fs USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/rubygem-winrm-fs/Makefile b/sysutils/rubygem-winrm-fs/Makefile index f7dc4c5ec8a6..cfb86bc8f687 100644 --- a/sysutils/rubygem-winrm-fs/Makefile +++ b/sysutils/rubygem-winrm-fs/Makefile @@ -1,25 +1,24 @@ PORTNAME= winrm-fs PORTVERSION= 1.3.5 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library for file system operations via WinRM WWW= https://github.com/WinRb/winrm-fs LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-erubi>=1.8<2:www/rubygem-erubi \ rubygem-logging>=1.6.1<3.0:devel/rubygem-logging \ rubygem-rubyzip>=2.0<3:archivers/rubygem-rubyzip \ rubygem-winrm>=2.0<3:sysutils/rubygem-winrm USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rwinrmcp .include diff --git a/sysutils/rubygem-winrm/Makefile b/sysutils/rubygem-winrm/Makefile index 42cfa93022cc..f29ee570b8bc 100644 --- a/sysutils/rubygem-winrm/Makefile +++ b/sysutils/rubygem-winrm/Makefile @@ -1,29 +1,28 @@ PORTNAME= winrm PORTVERSION= 2.3.4 CATEGORIES= sysutils rubygems MASTER_SITES= RG MAINTAINER= joe@thrallingpenguin.com COMMENT= Library for Windows Remote Management WWW= https://github.com/WinRb/WinRM LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-builder>=2.1.2:devel/rubygem-builder \ rubygem-erubi>=1.8<2:www/rubygem-erubi \ rubygem-gssapi>=1.2<2:security/rubygem-gssapi \ rubygem-gyoku>=1.0<2:devel/rubygem-gyoku \ rubygem-httpclient>=2.2.0.2<3:www/rubygem-httpclient \ rubygem-logging>=1.6.1<3.0:devel/rubygem-logging \ rubygem-nori>=2.0<3:devel/rubygem-nori \ rubygem-rubyntlm>=0.6.1<0.7:net/rubygem-rubyntlm USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rwinrm .include diff --git a/sysutils/rubygem-yell/Makefile b/sysutils/rubygem-yell/Makefile index b04ae1381da0..21aabc4ccfcd 100644 --- a/sysutils/rubygem-yell/Makefile +++ b/sysutils/rubygem-yell/Makefile @@ -1,18 +1,17 @@ PORTNAME= yell PORTVERSION= 2.2.2 CATEGORIES= sysutils ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Extensible logging library for Ruby WWW= https://github.com/rudionrails/yell LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/sysutils/vagrant/Makefile b/sysutils/vagrant/Makefile index 59669a5fe925..788b15dec521 100644 --- a/sysutils/vagrant/Makefile +++ b/sysutils/vagrant/Makefile @@ -1,113 +1,112 @@ PORTNAME= vagrant PORTVERSION= 2.3.2 DISTVERSIONPREFIX= v CATEGORIES= sysutils rubygems devel MAINTAINER= joe@thrallingpenguin.com COMMENT= Vagrant Virtual Machine Manager WWW= https://www.vagrantup.com/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= rubygem-builder>=2.1.2:devel/rubygem-builder \ rubygem-bundler>=1.12.5:sysutils/rubygem-bundler \ rubygem-main>=1.0:devel/rubygem-main RUN_DEPENDS= ca_root_nss>=0:security/ca_root_nss \ curl:ftp/curl \ rubygem-bcrypt_pbkdf>=1.1:security/rubygem-bcrypt_pbkdf \ rubygem-bundler>=1.12.5:sysutils/rubygem-bundler \ rubygem-childprocess>=4.1.0:devel/rubygem-childprocess \ rubygem-ed25519>=1.3.0:security/rubygem-ed25519 \ rubygem-erubi>=0:www/rubygem-erubi \ rubygem-googleapis-common-protos-types>=1.3.0:devel/rubygem-googleapis-common-protos-types \ rubygem-grpc>=1.48.0:net/rubygem-grpc \ rubygem-hashicorp-checkpoint>=0.1.5<0.2:www/rubygem-hashicorp-checkpoint \ rubygem-i18n>=1.8,2<2,2:devel/rubygem-i18n \ rubygem-ipaddr>=1.2.4:net/rubygem-ipaddr \ rubygem-listen>=3.6:devel/rubygem-listen \ rubygem-log4r>=1.1.9<1.1.11:sysutils/rubygem-log4r \ rubygem-mime-types>=3.3:misc/rubygem-mime-types \ rubygem-net-ftp>=0.1:ftp/rubygem-net-ftp \ rubygem-net-scp>=3.0.0:security/rubygem-net-scp \ rubygem-net-sftp>=3.0:security/rubygem-net-sftp \ rubygem-net-ssh6>=6.1.0<6.2:security/rubygem-net-ssh6 \ rubygem-rb-kqueue>=0.2.0<0.3:devel/rubygem-rb-kqueue \ rubygem-rexml>=3.2:textproc/rubygem-rexml \ rubygem-rgl>=0.5.7:devel/rubygem-rgl \ rubygem-ruby_dep>=0:devel/rubygem-ruby_dep \ rubygem-rubyzip>=2.2<3:archivers/rubygem-rubyzip \ rubygem-vagrant_cloud>=3.0.5<3.1:sysutils/rubygem-vagrant_cloud \ rubygem-wdm>=0.1.0<0.2:devel/rubygem-wdm \ rubygem-winrm-elevated>=1.2.1<2:sysutils/rubygem-winrm-elevated \ 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 GEM_ENV+= RB_USER_INSTALL=yes SHEBANG_FILES= plugins/hosts/darwin/scripts/install_virtualbox.sh \ scripts/sign.sh scripts/website_push_www.sh GEMFILES= vagrant-${PORTVERSION}.gem RUBYGEMBIN= gem NO_ARCH= yes PLIST_SUB+= DOC_DIR="lib/ruby/gems/${RUBY_VER}/doc" \ GEM_BASE_DIR="lib/ruby/gems/${RUBY_VER}/gems" \ GEMS_DIR="lib/ruby/gems/${RUBY_VER}" \ PORTVERSION="${PORTVERSION}" RUBYGEM_ARGS= -l --no-document --no-update-sources --install-dir \ ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER} \ --ignore-dependencies --bindir=${STAGEDIR}${PREFIX}/bin OPTIONS_DEFINE= BASH ZSH OPTIONS_DEFAULT= BASH ZSH BASH_PLIST_FILES= share/bash-completion/completions/vagrant ZSH_PLIST_FILES= share/share/zsh/site-functions/_vagrant REMOVE_TARGETS= .envrc .runner.sh .vimrc .yardopts flake.lock flake.nix Gemfile \ gen.go go.mod go.sum Makefile Rakefile shell.nix \ vagrant-config.hcl vagrant-spec.config.example.rb \ vagrant.gemspec post-patch: @${REINPLACE_CMD} -e 's|@PREFIX@|${PREFIX}|g' \ ${WRKSRC}/bin/vagrant \ ${WRKSRC}/plugins/providers/virtualbox/action/network.rb \ ${WRKSRC}/templates/locales/en.yml do-build: (cd ${WRKSRC}; (${ECHO_CMD} -e "install:\n\techo\n") > Makefile) (cd ${WRKSRC}; ${SETENV} VAGRANT_INSTALLER_ENV=yes \ ${GEM_ENV} ${RUBYGEMBIN} build vagrant.gemspec) (cd ${WRKSRC}; ${SETENV} VAGRANT_INSTALLER_ENV=yes \ ${GEM_ENV} ${RUBYGEMBIN} install ${RUBYGEM_ARGS} \ ${GEMFILES} -- ${CONFIGURE_ARGS}) ${RMDIR} ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER}/build_info ${MKDIR} ${STAGEDIR}${DATADIR}/embedded/rgloader ${INSTALL_SCRIPT} ${FILESDIR}/loader.rb \ ${STAGEDIR}${DATADIR}/embedded/rgloader/loader.rb post-install: ${RMDIR} ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER}/doc ${RM} -r ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER}/gems/${PORTNAME}-${PORTVERSION}/nix .for FILE in ${REMOVE_TARGETS} ${RM} ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER}/gems/${PORTNAME}-${PORTVERSION}/${FILE} .endfor post-install-BASH-on: ${MKDIR} ${STAGEDIR}${PREFIX}/share/bash-completion/completions ${RLN} ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER}/gems/${PORTNAME}-${PORTVERSION}/contrib/bash/completion.sh ${STAGEDIR}${PREFIX}/share/bash-completion/completions/vagrant post-install-ZSH-on: ${MKDIR} ${STAGEDIR}${PREFIX}/share/share/zsh/site-functions ${RLN} ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER}/gems/${PORTNAME}-${PORTVERSION}/contrib/zsh/_vagrant ${STAGEDIR}${PREFIX}/share/share/zsh/site-functions .include diff --git a/sysutils/zfs-snapshot-mgmt/Makefile b/sysutils/zfs-snapshot-mgmt/Makefile index 09a3c4a3a246..dcaa958930db 100644 --- a/sysutils/zfs-snapshot-mgmt/Makefile +++ b/sysutils/zfs-snapshot-mgmt/Makefile @@ -1,30 +1,28 @@ PORTNAME= zfs-snapshot-mgmt PORTVERSION= 20090201 PORTREVISION= 3 CATEGORIES= sysutils MASTER_SITES= http://marcin.studio4plus.com/files/ MAINTAINER= johntdarrah@gmail.com 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 NO_ARCH= yes SUB_FILES= pkg-message post-patch: .SILENT ${FIND} ${WRKSRC} -type f -exec ${REINPLACE_CMD} \ -e 's|/usr/local|${PREFIX}|g' {} + do-install: ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8 ${STAGEDIR}${MANPREFIX}/man/man8 ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.conf.sample ${STAGEDIR}${PREFIX}/etc .include diff --git a/sysutils/zfstools/Makefile b/sysutils/zfstools/Makefile index 2096e877c97a..8ebf2c6bd323 100644 --- a/sysutils/zfstools/Makefile +++ b/sysutils/zfstools/Makefile @@ -1,37 +1,36 @@ PORTNAME= zfstools DISTVERSIONPREFIX=v DISTVERSION= 0.3.6 PORTREVISION= 2 CATEGORIES= sysutils ruby MASTER_SITES= GH \ http://mirror.shatow.net/freebsd/${PORTNAME}/ MAINTAINER= bdrewery@FreeBSD.org COMMENT= OpenSolaris-compatible auto snapshotting for ZFS WWW= https://github.com/bdrewery/zfstools 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 OPTIONS_DEFINE= DOCS .include do-install: @cd ${WRKSRC}/bin && ${COPYTREE_BIN} . ${STAGEDIR}${PREFIX}/sbin @cd ${WRKSRC}/lib && ${COPYTREE_SHARE} . ${STAGEDIR}${RUBY_SITELIBDIR} @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} .include diff --git a/textproc/docbookrx/Makefile b/textproc/docbookrx/Makefile index cef5c2b5c0a8..34c4fc6c9943 100644 --- a/textproc/docbookrx/Makefile +++ b/textproc/docbookrx/Makefile @@ -1,74 +1,74 @@ PORTNAME= docbookrx DISTVERSION= 1.0.0.dev CATEGORIES= textproc MAINTAINER= swills@FreeBSD.org COMMENT= DocBook to AsciiDoc converter WWW= https://github.com/asciidoctor/docbookrx LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${LOCALBASE}/bin/rake:devel/rubygem-rake \ gem:devel/ruby-gems \ rubygem-bundler>=1.16:sysutils/rubygem-bundler \ 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 GH_ACCOUNT= allanjude GH_PROJECT= docbookrx GH_TAGNAME= 06cae39 GEM_ENV+= RB_USER_INSTALL=yes USE_LOCALE?= en_US.UTF-8 GEM_ENV+= LANG=${USE_LOCALE} LC_ALL=${USE_LOCALE} RUBYGEM_ARGS= -l --no-update-sources --ignore-dependencies \ --install-dir ${STAGEDIR}${PREFIX}/lib/ruby/gems/${RUBY_VER} \ --bindir=${STAGEDIR}${PREFIX}/bin RUBYGEMBIN= ${LOCALBASE}/bin/gem GEMS_BASE_DIR= lib/ruby/gems/${RUBY_VER} GEMS_DIR= ${GEMS_BASE_DIR}/gems DOC_DIR= ${GEMS_BASE_DIR}/doc CACHE_DIR= ${GEMS_BASE_DIR}/cache EXT_DIR= ${GEMS_BASE_DIR}/extensions GEM_LIB_DIR?= ${GEMS_DIR}/${PORTNAME}-${DISTVERSION} .include .if ${PORT_OPTIONS:MDOCS} RUBYGEM_ARGS+= --document rdoc,ri .else RUBYGEM_ARGS+= --no-document .endif do-build: cd ${BUILD_WRKSRC} && ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} build --force ${PORTNAME}.gemspec do-install: cd ${INSTALL_WRKSRC} && ${SETENV} ${GEM_ENV} ${RUBYGEMBIN} install ${RUBYGEM_ARGS} ${PORTNAME}-${DISTVERSION}.gem -- ${CONFIGURE_ARGS} ${RM} -r ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR}/build_info ${FIND} ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR} -type f -name '*.so' -exec ${STRIP_CMD} {} + ${FIND} ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR} -type f \( -name mkmf.log -or -name gem_make.out \) -delete ${RM} -r ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/extensions \ ${STAGEDIR}${PREFIX}/${CACHE_DIR} 2> /dev/null || ${TRUE} ${RMDIR} ${STAGEDIR}${PREFIX}/${EXT_DIR} 2> /dev/null || ${TRUE} ${ECHO} bin/docbookrx >> ${TMPPLIST} ${ECHO} ${GEMS_BASE_DIR}/specifications/${PORTNAME}-${DISTVERSION}.gemspec >> ${TMPPLIST} .if ${PORT_OPTIONS:MDOCS} ${FIND} -ds ${STAGEDIR}${PREFIX}/${DOC_DIR} -type f -print | ${SED} -E -e \ 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} .endif ${FIND} -ds ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR} -type f -print | ${SED} -E -e \ 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} @if [ -d ${STAGEDIR}${PREFIX}/${EXT_DIR} ]; then \ ${FIND} -ds ${STAGEDIR}${PREFIX}/${EXT_DIR} -type f -print | ${SED} -E -e \ 's,^${STAGEDIR}${PREFIX}/?,,' >> ${TMPPLIST} ; \ fi .include diff --git a/textproc/groonga/Makefile b/textproc/groonga/Makefile index 7214ba8f06f7..31d3dda2ae21 100644 --- a/textproc/groonga/Makefile +++ b/textproc/groonga/Makefile @@ -1,75 +1,75 @@ PORTNAME= groonga PORTVERSION= 12.1.1 CATEGORIES= textproc MASTER_SITES= http://packages.groonga.org/source/groonga/ MAINTAINER= bofh@FreeBSD.org COMMENT= Open-source fulltext search engine and column store WWW= https://groonga.org/ LICENSE= LGPL21 LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libpcre.so:devel/pcre USES= gmake libedit libtool localbase:ldflags pathfix pkgconfig ssl USE_LDCONFIG= yes GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-benchmark \ --disable-document \ --localstatedir=/var \ --with-log-path=/var/log/groonga.log \ --with-munin-plugins \ --without-cutter \ --without-inkscape \ --without-kytea \ --without-lemon INSTALL_TARGET= install-strip #CPPFLAGS+= -I${LOCALBASE}/include #LDFLAGS+= -L${LOCALBASE}/lib OPTIONS_DEFINE= MECAB RUBY SUGGEST OPTIONS_DEFAULT= MECAB RUBY SUGGEST OPTIONS_SUB= yes MECAB_DESC= Morphological analysis support via MeCab SUGGEST_DESC= Suggestions support MECAB_LIB_DEPENDS= libmecab.so:japanese/mecab MECAB_CONFIGURE_OFF= --without-mecab RUBY_RUN_DEPENDS= rubygem-bundler>=0:sysutils/rubygem-bundler -RUBY_USE= RUBY=yes +RUBY_USES= ruby RUBY_CONFIGURE_ON= --enable-mruby SUGGEST_LIB_DEPENDS= libevent.so:devel/libevent \ libmsgpackc.so:devel/msgpack-c \ libzmq.so:net/libzmq2 SUGGEST_CONFIGURE_ON= --enable-zeromq \ --with-libevent=${LOCALBASE} \ --with-message-pack=${LOCALBASE} SUGGEST_CONFIGURE_OFF= --disable-zeromq \ --without-libevent \ --without-message-pack post-patch: @${REINPLACE_CMD} -e \ 's|lib/$${PACKAGE}/db/db|db/$${PACKAGE}/db| ; \ s|-lpthread|-pthread|' ${WRKSRC}/configure @${REINPLACE_CMD} -e \ '/NGX_PID_PATH/s|mkdir|${TRUE}| ; \ /NGX_HTTP_LOG_PATH/s|mkdir|${TRUE}| ; \ /NGX_ERROR_LOG_PATH/s|mkdir|${TRUE}|' \ ${WRKSRC}/vendor/nginx-1.23.2/auto/install # Avoid conflict with C++20 by adding .txt suffix @${MV} ${WRKSRC}/version ${WRKSRC}/version.txt @${REINPLACE_CMD} -Ei .c++20 '/test|cat/s/[[:<:]]version/&.txt/' \ ${WRKSRC}/version-gen.sh post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/sbin/groonga-httpd @${MKDIR} ${STAGEDIR}/var/log/groonga/httpd @${MKDIR} ${STAGEDIR}/var/run/groonga .include diff --git a/textproc/ruby-escape/Makefile b/textproc/ruby-escape/Makefile index 43921346d2aa..2478249497f5 100644 --- a/textproc/ruby-escape/Makefile +++ b/textproc/ruby-escape/Makefile @@ -1,28 +1,28 @@ PORTNAME= escape PORTVERSION= 0.2 CATEGORIES= textproc ruby MASTER_SITES= http://www.a-k-r.org/${PORTNAME}/ \ LOCAL/tota/ruby-escape PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} DIST_SUBDIR= ${RUBY_PKGNAMEPREFIX:S|${RUBY_SUFFIX}-||} MAINTAINER= tota@FreeBSD.org COMMENT= Ruby library provides HTML/URI/shell escaping functions WWW= http://www.a-k-r.org/escape/ -USE_RUBY= yes +USES= ruby NO_BUILD= yes DOCS= ChangeLog README OPTIONS_DEFINE= DOCS do-install: ${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR} @${INSTALL_DATA} ${INSTALL_WRKSRC}/escape.rb ${STAGEDIR}${RUBY_SITELIBDIR}/ @${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR} .for f in ${DOCS} @${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ .endfor .include diff --git a/textproc/ruby-format/Makefile b/textproc/ruby-format/Makefile index 458404e87342..d9566de8c770 100644 --- a/textproc/ruby-format/Makefile +++ b/textproc/ruby-format/Makefile @@ -1,31 +1,31 @@ PORTNAME= format PORTVERSION= 1.09 CATEGORIES= textproc ruby MASTER_SITES= SF/${PORTNAME}r/FormatR/FormatR.${PORTVERSION} PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} DISTNAME= FormatR.${PORTVERSION} DIST_SUBDIR= ruby MAINTAINER= ruby@FreeBSD.org COMMENT= Perl like formats for Ruby WWW= http://formatr.sourceforge.net/ -USE_RUBY= yes +USES= ruby NO_BUILD= yes OPTIONS_DEFINE= DOCS post-patch: ${RUBY} -i.orig -pe 'gsub(/"(format_test\.pl)/, "\"./\\1")' ${WRKSRC}/test_format.rb do-install: ${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR} ${INSTALL_DATA} ${WRKSRC}/format.rb ${STAGEDIR}${RUBY_SITELIBDIR}/ ${MKDIR} ${STAGEDIR}${RUBY_MODEXAMPLESDIR}/test .for f in test_format.rb format_test.pl ${INSTALL_SCRIPT} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODEXAMPLESDIR}/ .endfor ${INSTALL_DATA} ${WRKSRC}/test/* ${STAGEDIR}${RUBY_MODEXAMPLESDIR}/test/ .include diff --git a/textproc/ruby-htree/Makefile b/textproc/ruby-htree/Makefile index 0ab1668a5e6e..9e576816ef7d 100644 --- a/textproc/ruby-htree/Makefile +++ b/textproc/ruby-htree/Makefile @@ -1,43 +1,43 @@ PORTNAME= htree PORTVERSION= 0.8 PORTREVISION= 1 CATEGORIES= textproc www ruby MASTER_SITES= http://www.a-k-r.org/htree/ PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} DIST_SUBDIR= ruby MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby library to manipulate HTML/XML tree data structure WWW= http://www.a-k-r.org/htree/ BUILD_DEPENDS= rubygem-rdoc>=0.a:devel/rubygem-rdoc -OPTIONS_DEFINE= DOCS +USES= ruby -USE_RUBY= yes +OPTIONS_DEFINE= DOCS LIB_FILES= htree.rb htree DOCS= README \ doc DOCSDIR= ${RUBY_MODDOCDIR} PORTDOCS= * .include do-build: .if ${PORT_OPTIONS:MDOCS} cd ${BUILD_WRKSRC}; ${LOCALBASE}/bin/rdoc ${LIB_FILES} .endif do-install: @${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR} cd ${INSTALL_WRKSRC}; ${CP} -R ${LIB_FILES} ${STAGEDIR}${RUBY_SITELIBDIR}/ do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR} .for f in ${DOCS} ${CP} -R ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ .endfor .include diff --git a/textproc/ruby-rd-mode.el/Makefile b/textproc/ruby-rd-mode.el/Makefile index 2b245f187c24..db0ccadd1318 100644 --- a/textproc/ruby-rd-mode.el/Makefile +++ b/textproc/ruby-rd-mode.el/Makefile @@ -1,40 +1,40 @@ PORTNAME= rd-mode.el PORTVERSION= 0.6.38 PORTREVISION= 1 CATEGORIES= textproc ruby elisp MASTER_SITES= # none PKGNAMEPREFIX= ruby- # not ${RUBY_PKGNAMEPREFIX} since this is not version specific DISTFILES= # none MAINTAINER= ports@FreeBSD.org COMMENT= Emacs lisp module for editing RD files WWW= https://github.com/uwabami/rdtool BUILD_DEPENDS= ${NONEXISTENT}:textproc/ruby-rdtool:patch -USE_RUBY= yes +USES= ruby WRKSRC= ${WRKDIR}/utils NO_BUILD= yes ELISP_FILES= rd-mode.el EMACSLISPDIR= ${PREFIX}/share/emacs/site-lisp RUBY_ELISPDIR= ${PREFIX}/lib/ruby/elisp PLIST_SUB+= RUBY_ELISPDIR=${RUBY_ELISPDIR} do-extract: ${MKDIR} ${WRKDIR} ${LN} -sf `cd ${.CURDIR}/../ruby-rdtool; ${MAKE} -V WRKSRC`/utils ${WRKSRC} do-install: @${MKDIR} ${STAGEDIR}${RUBY_ELISPDIR}/ @${MKDIR} ${STAGEDIR}${EMACSLISPDIR}/ .for f in ${ELISP_FILES} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_ELISPDIR}/ ${LN} -sf ${RUBY_ELISPDIR}/${f} ${STAGEDIR}${EMACSLISPDIR}/ .endfor .include diff --git a/textproc/ruby-rdtool/Makefile b/textproc/ruby-rdtool/Makefile index 4cd2aaef77ff..675590382c6a 100644 --- a/textproc/ruby-rdtool/Makefile +++ b/textproc/ruby-rdtool/Makefile @@ -1,40 +1,38 @@ PORTNAME= rdtool PORTVERSION= 0.6.38 DISTVERSIONPREFIX= v CATEGORIES= textproc ruby PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} DIST_SUBDIR= ruby MAINTAINER= ruby@FreeBSD.org COMMENT= RD to HTML/man/etc. converter (RD is to Ruby as POD is to Perl) WWW= https://github.com/uwabami/rdtool BUILD_DEPENDS= racc:devel/rubygem-racc +USES= ruby:setup USE_GITHUB= yes GH_ACCOUNT= uwabami -USE_RUBY= yes -USE_RUBY_SETUP= yes - RUBY_MODNAME= rd DOCS_EN= README.rd doc/rd-draft.rd DOCS_JA= README.rd.ja doc/rd-draft.rd.ja OPTIONS_DEFINE= DOCS EXAMPLES post-install: ${MKDIR} ${STAGEDIR}${RUBY_SITELIBDIR}/rd ${INSTALL_DATA} ${WRKSRC}/lib/rd/dot.rd2rc ${STAGEDIR}${RUBY_SITELIBDIR}/rd/ ${MKDIR} ${STAGEDIR}${RUBY_MODEXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/lib/rd/dot.rd2rc ${STAGEDIR}${RUBY_MODEXAMPLESDIR}/ ${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR}/ja .for f in ${DOCS_EN} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ .endfor .for f in ${DOCS_JA} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ja/ .endfor .include diff --git a/textproc/ruby-rttool/Makefile b/textproc/ruby-rttool/Makefile index 7badb03747c0..75244d19f9d8 100644 --- a/textproc/ruby-rttool/Makefile +++ b/textproc/ruby-rttool/Makefile @@ -1,41 +1,39 @@ PORTNAME= rttool PORTVERSION= 1.0.3 PORTREVISION= 1 CATEGORIES= textproc ruby MASTER_SITES= http://www.rubyist.net/~rubikitch/archive/ \ LOCAL/tota/ruby-rttool PKGNAMEPREFIX= ${RUBY_PKGNAMEPREFIX} DIST_SUBDIR= ${RUBY_PKGNAMEPREFIX:S|${RUBY_SUFFIX}-||} MAINTAINER= tota@FreeBSD.org COMMENT= RT into HTML and plain text converter WWW= http://www.rubyist.net/~rubikitch/computer/rttool/index.en.html LICENSE= RUBY -USE_RUBY= yes -USES= shebangfix -USE_RUBY_SETUP= yes +USES= ruby:setup shebangfix SHEBANG_FILES= bin/rt/* lib/rt/* RUBY_MODNAME= rt BUILD_DEPENDS= rd2:textproc/ruby-rdtool DOCS_EN= rttool.en.html rttool.en.rd DOCS_JA= rttool.ja.html rttool.ja.rd OPTIONS_DEFINE= DOCS EXAMPLES post-install: @${MKDIR} ${STAGEDIR}${RUBY_MODDOCDIR}/ja .for f in ${DOCS_EN} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ .endfor .for f in ${DOCS_JA} ${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${RUBY_MODDOCDIR}/ja/ .endfor @${MKDIR} ${STAGEDIR}${RUBY_MODEXAMPLESDIR} cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${RUBY_MODEXAMPLESDIR} .include diff --git a/textproc/rubygem-abbrev/Makefile b/textproc/rubygem-abbrev/Makefile index 658392997a41..4ee722d20682 100644 --- a/textproc/rubygem-abbrev/Makefile +++ b/textproc/rubygem-abbrev/Makefile @@ -1,19 +1,18 @@ PORTNAME= abbrev PORTVERSION= 0.1.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Calculate a set of unique abbreviations for a given set of strings WWW= https://github.com/ruby/abbrev LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-actionpack-xml_parser-rails5/Makefile b/textproc/rubygem-actionpack-xml_parser-rails5/Makefile index 0f66530d71c5..73df87476840 100644 --- a/textproc/rubygem-actionpack-xml_parser-rails5/Makefile +++ b/textproc/rubygem-actionpack-xml_parser-rails5/Makefile @@ -1,23 +1,22 @@ PORTNAME= actionpack-xml_parser PORTVERSION= 2.0.1 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= XML parameters parser for Action Pack WWW= https://github.com/rails/actionpack-xml_parser LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-actionpack5>=5.0:www/rubygem-actionpack5 \ rubygem-railties5>=5.0:www/rubygem-railties5 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-actionpack-xml_parser-rails52/Makefile b/textproc/rubygem-actionpack-xml_parser-rails52/Makefile index 2d3f40d696c8..0df8f6afc0be 100644 --- a/textproc/rubygem-actionpack-xml_parser-rails52/Makefile +++ b/textproc/rubygem-actionpack-xml_parser-rails52/Makefile @@ -1,23 +1,22 @@ PORTNAME= actionpack-xml_parser PORTVERSION= 2.0.1 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= mikael@FreeBSD.org COMMENT= XML parameters parser for Action Pack WWW= https://github.com/rails/actionpack-xml_parser LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-actionpack52>=5.2:www/rubygem-actionpack52 \ rubygem-railties52>=5.2:www/rubygem-railties52 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-actionpack-xml_parser-rails61/Makefile b/textproc/rubygem-actionpack-xml_parser-rails61/Makefile index 181349c2b99b..0b6cfdc5981b 100644 --- a/textproc/rubygem-actionpack-xml_parser-rails61/Makefile +++ b/textproc/rubygem-actionpack-xml_parser-rails61/Makefile @@ -1,22 +1,21 @@ PORTNAME= actionpack-xml_parser PORTVERSION= 2.0.1 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= mikael@FreeBSD.org COMMENT= XML parameters parser for Action Pack WWW= https://github.com/rails/actionpack-xml_parser LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-actionpack61>=5.2:www/rubygem-actionpack61 \ rubygem-railties61>=5.2:www/rubygem-railties61 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-actiontext60/Makefile b/textproc/rubygem-actiontext60/Makefile index f587172732ec..f38dd9c169e4 100644 --- a/textproc/rubygem-actiontext60/Makefile +++ b/textproc/rubygem-actiontext60/Makefile @@ -1,28 +1,27 @@ PORTNAME= actiontext PORTVERSION= 6.0.6 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Edit and display rich text in Rails applications WWW= https://github.com/rails/rails/tree/main/actiontext \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack60>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack60 \ rubygem-activerecord60>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-activerecord60 \ rubygem-activestorage60>=${PORTVERSION}<${PORTVERSION}_99:net/rubygem-activestorage60 \ rubygem-activesupport60>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport60 \ rubygem-nokogiri>=1.8.5:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^6\.0\. .include diff --git a/textproc/rubygem-actiontext61/Makefile b/textproc/rubygem-actiontext61/Makefile index b83883f057d4..3045aa08bee1 100644 --- a/textproc/rubygem-actiontext61/Makefile +++ b/textproc/rubygem-actiontext61/Makefile @@ -1,28 +1,27 @@ PORTNAME= actiontext PORTVERSION= 6.1.7 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Edit and display rich text in Rails applications WWW= https://github.com/rails/rails/tree/main/actiontext \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack61>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack61 \ rubygem-activerecord61>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-activerecord61 \ rubygem-activestorage61>=${PORTVERSION}<${PORTVERSION}_99:net/rubygem-activestorage61 \ rubygem-activesupport61>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport61 \ rubygem-nokogiri>=1.8.5:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^6\.1\. .include diff --git a/textproc/rubygem-actiontext70/Makefile b/textproc/rubygem-actiontext70/Makefile index ed14815b0151..23da2fc78041 100644 --- a/textproc/rubygem-actiontext70/Makefile +++ b/textproc/rubygem-actiontext70/Makefile @@ -1,29 +1,28 @@ PORTNAME= actiontext PORTVERSION= 7.0.3.1 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 70 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Edit and display rich text in Rails applications WWW= https://github.com/rails/rails/tree/main/actiontext \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack70>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack70 \ rubygem-activerecord70>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-activerecord70 \ rubygem-activestorage70>=${PORTVERSION}<${PORTVERSION}_99:net/rubygem-activestorage70 \ rubygem-activesupport70>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport70 \ rubygem-globalid-rails70>=0.6.0:databases/rubygem-globalid-rails70 \ rubygem-nokogiri>=1.8.5:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^7\.0\. .include diff --git a/textproc/rubygem-albino/Makefile b/textproc/rubygem-albino/Makefile index 43a7d3ecee68..8dc4d53e3955 100644 --- a/textproc/rubygem-albino/Makefile +++ b/textproc/rubygem-albino/Makefile @@ -1,24 +1,23 @@ PORTNAME= albino PORTVERSION= 1.3.3 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby wrapper for pygmentize WWW= https://github.com/github/albino LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-posix-spawn>=0.3.6:devel/rubygem-posix-spawn \ ${PYTHON_PKGNAMEPREFIX}pygments>=0.8:textproc/py-pygments@${PY_FLAVOR} USES= gem python shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= vendor/multipygmentize .include diff --git a/textproc/rubygem-amatch/Makefile b/textproc/rubygem-amatch/Makefile index 26d8defa2964..876842d63adb 100644 --- a/textproc/rubygem-amatch/Makefile +++ b/textproc/rubygem-amatch/Makefile @@ -1,23 +1,22 @@ PORTNAME= amatch PORTVERSION= 0.4.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby library for approximate string matching and searching WWW= https://github.com/flori/amatch LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-mize>=0:devel/rubygem-mize \ rubygem-tins>=1.0<2:devel/rubygem-tins USES= gem -USE_RUBY= yes PLIST_FILES= bin/agrep bin/dupfind CONFLICTS_INSTALL= agrep # bin/agrep .include diff --git a/textproc/rubygem-asciidoctor-diagram/Makefile b/textproc/rubygem-asciidoctor-diagram/Makefile index 388218815363..5cdf2cc8da34 100644 --- a/textproc/rubygem-asciidoctor-diagram/Makefile +++ b/textproc/rubygem-asciidoctor-diagram/Makefile @@ -1,20 +1,19 @@ PORTNAME= asciidoctor-diagram PORTVERSION= 1.5.19 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= numisemis@yahoo.com COMMENT= Asciidoctor diagramming extension WWW= https://rubygems.org/gems/asciidoctor-diagram/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-asciidoctor>=1.5.7<3:textproc/rubygem-asciidoctor USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-asciidoctor-epub3/Makefile b/textproc/rubygem-asciidoctor-epub3/Makefile index ac98bac6454e..176c33441934 100644 --- a/textproc/rubygem-asciidoctor-epub3/Makefile +++ b/textproc/rubygem-asciidoctor-epub3/Makefile @@ -1,25 +1,24 @@ PORTNAME= asciidoctor-epub3 PORTVERSION= 1.5.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= doceng@FreeBSD.org COMMENT= Convert AsciiDoc documents to EPUB3 WWW= https://github.com/asciidoctor/asciidoctor-epub3 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-asciidoctor>=1.5.6<3:textproc/rubygem-asciidoctor \ rubygem-mime-types>=3.0:misc/rubygem-mime-types \ rubygem-gepub>=1.0.0:textproc/rubygem-gepub USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/asciidoctor-epub3 \ bin/adb-push-ebook .include diff --git a/textproc/rubygem-asciidoctor-include-ext/Makefile b/textproc/rubygem-asciidoctor-include-ext/Makefile index 26c83f8a52b4..6763fb9f6fe0 100644 --- a/textproc/rubygem-asciidoctor-include-ext/Makefile +++ b/textproc/rubygem-asciidoctor-include-ext/Makefile @@ -1,20 +1,19 @@ PORTNAME= asciidoctor-include-ext PORTVERSION= 0.4.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Reimplementation of the Asciidoctor's built-in (pre)processor WWW= https://github.com/jirutka/asciidoctor-include-ext LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-asciidoctor>=1.5.6<3.0.0:textproc/rubygem-asciidoctor USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-asciidoctor-kroki/Makefile b/textproc/rubygem-asciidoctor-kroki/Makefile index ad9284b55de7..ae9d9b1212bf 100644 --- a/textproc/rubygem-asciidoctor-kroki/Makefile +++ b/textproc/rubygem-asciidoctor-kroki/Makefile @@ -1,19 +1,18 @@ PORTNAME= asciidoctor-kroki PORTVERSION= 0.7.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Asciidoctor convert diagrams to images extension WWW= https://github.com/Mogztter/asciidoctor-kroki LICENSE= MIT RUN_DEPENDS= rubygem-asciidoctor>=2.0<3:textproc/rubygem-asciidoctor USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-asciidoctor-pdf/Makefile b/textproc/rubygem-asciidoctor-pdf/Makefile index 4070a439afb8..ae374fe5913c 100644 --- a/textproc/rubygem-asciidoctor-pdf/Makefile +++ b/textproc/rubygem-asciidoctor-pdf/Makefile @@ -1,31 +1,30 @@ PORTNAME= asciidoctor-pdf PORTVERSION= 2.3.4 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Convert AsciiDoc documents to PDF WWW= https://github.com/asciidoctor/asciidoctor-pdf LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-asciidoctor>=2.0<3:textproc/rubygem-asciidoctor \ rubygem-concurrent-ruby>=1.1<2:devel/rubygem-concurrent-ruby \ rubygem-matrix>=0.4<1:math/rubygem-matrix \ rubygem-prawn>=2.4.0<2.5:print/rubygem-prawn \ rubygem-prawn-icon>=3.1.0<3.2:print/rubygem-prawn-icon \ rubygem-prawn-svg>=0.31.0<1:print/rubygem-prawn-svg \ rubygem-prawn-table>=0.2.0<0.3:print/rubygem-prawn-table \ rubygem-prawn-templates>=0.1.0<0.2:print/rubygem-prawn-templates \ rubygem-treetop>=1.6.0<1.7:devel/rubygem-treetop USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/asciidoctor-pdf \ bin/asciidoctor-pdf-optimize .include diff --git a/textproc/rubygem-asciidoctor-plantuml/Makefile b/textproc/rubygem-asciidoctor-plantuml/Makefile index 381aea3bf400..06ed49001203 100644 --- a/textproc/rubygem-asciidoctor-plantuml/Makefile +++ b/textproc/rubygem-asciidoctor-plantuml/Makefile @@ -1,19 +1,18 @@ PORTNAME= asciidoctor-plantuml PORTVERSION= 0.1.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Asciidoctor PlantUML extension WWW= https://github.com/hsanson/asciidoctor-plantuml LICENSE= MIT RUN_DEPENDS= rubygem-asciidoctor>=2.0.17<3.0.0:textproc/rubygem-asciidoctor USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-asciidoctor-plantuml00/Makefile b/textproc/rubygem-asciidoctor-plantuml00/Makefile index 5664d03a2261..6698d2c3e6a4 100644 --- a/textproc/rubygem-asciidoctor-plantuml00/Makefile +++ b/textproc/rubygem-asciidoctor-plantuml00/Makefile @@ -1,22 +1,21 @@ PORTNAME= asciidoctor-plantuml PORTVERSION= 0.0.16 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 00 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Asciidoctor PlantUML extension WWW= https://github.com/hsanson/asciidoctor-plantuml LICENSE= MIT RUN_DEPENDS= rubygem-asciidoctor>=2.0.17<3.0.0:textproc/rubygem-asciidoctor USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^0\.0\. .include diff --git a/textproc/rubygem-asciidoctor/Makefile b/textproc/rubygem-asciidoctor/Makefile index 6bf35f3c7496..920e4086902a 100644 --- a/textproc/rubygem-asciidoctor/Makefile +++ b/textproc/rubygem-asciidoctor/Makefile @@ -1,20 +1,19 @@ PORTNAME= asciidoctor PORTVERSION= 2.0.18 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Fast, open source text processor and publishing toolchain WWW= https://asciidoctor.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/asciidoctor .include diff --git a/textproc/rubygem-autoprefixer-rails/Makefile b/textproc/rubygem-autoprefixer-rails/Makefile index c5b96deaf74d..0a75b635938d 100644 --- a/textproc/rubygem-autoprefixer-rails/Makefile +++ b/textproc/rubygem-autoprefixer-rails/Makefile @@ -1,20 +1,19 @@ PORTNAME= autoprefixer-rails PORTVERSION= 10.4.7.0 CATEGORIES= textproc ruby MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Parse CSS and add vendor prefixes to CSS rules WWW= https://github.com/ai/autoprefixer-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-execjs>=2<3:devel/rubygem-execjs USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-autoprefixer-rails1025/Makefile b/textproc/rubygem-autoprefixer-rails1025/Makefile index bff4ade24e24..2ddc49aea8f0 100644 --- a/textproc/rubygem-autoprefixer-rails1025/Makefile +++ b/textproc/rubygem-autoprefixer-rails1025/Makefile @@ -1,23 +1,22 @@ PORTNAME= autoprefixer-rails PORTVERSION= 10.2.5.1 CATEGORIES= textproc ruby MASTER_SITES= RG PKGNAMESUFFIX= 1025 MAINTAINER= mfechner@FreeBSD.org COMMENT= Parse CSS and add vendor prefixes to CSS rules WWW= https://github.com/ai/autoprefixer-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-execjs>=0:devel/rubygem-execjs USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^10\.2\.5\. .include diff --git a/textproc/rubygem-babel-source/Makefile b/textproc/rubygem-babel-source/Makefile index 4f6462c991ce..c87d870d2884 100644 --- a/textproc/rubygem-babel-source/Makefile +++ b/textproc/rubygem-babel-source/Makefile @@ -1,17 +1,16 @@ PORTNAME= babel-source PORTVERSION= 5.8.35 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Babel JS source WWW= https://github.com/babel/ruby-babel-transpiler LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-babel-transpiler/Makefile b/textproc/rubygem-babel-transpiler/Makefile index f5885b86b2f7..0ebc9c421f7f 100644 --- a/textproc/rubygem-babel-transpiler/Makefile +++ b/textproc/rubygem-babel-transpiler/Makefile @@ -1,20 +1,19 @@ PORTNAME= babel-transpiler PORTVERSION= 0.7.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby Babel is a bridge to the JS Babel transpiler WWW= https://github.com/babel/ruby-babel-transpiler LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-babel-source>=4.0:textproc/rubygem-babel-source \ rubygem-execjs>=2.0:devel/rubygem-execjs NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-babosa/Makefile b/textproc/rubygem-babosa/Makefile index f1758ad96c0b..f6c022f3d4a5 100644 --- a/textproc/rubygem-babosa/Makefile +++ b/textproc/rubygem-babosa/Makefile @@ -1,18 +1,17 @@ PORTNAME= babosa PORTVERSION= 1.0.4 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby library for creating slugs WWW= https://github.com/norman/babosa LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-case_transform/Makefile b/textproc/rubygem-case_transform/Makefile index 172e6fab70c0..f2676104b58e 100644 --- a/textproc/rubygem-case_transform/Makefile +++ b/textproc/rubygem-case_transform/Makefile @@ -1,19 +1,18 @@ PORTNAME= case_transform PORTVERSION= 0.2 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Extraction of the key_transform abilities of ActiveModelSerializers WWW= https://github.com/NullVoxPopuli/case_transform LICENSE= MIT RUN_DEPENDS= rubygem-activesupport5>0:devel/rubygem-activesupport5 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-case_transform61/Makefile b/textproc/rubygem-case_transform61/Makefile index f29e356fbb9e..d999a0e127ff 100644 --- a/textproc/rubygem-case_transform61/Makefile +++ b/textproc/rubygem-case_transform61/Makefile @@ -1,20 +1,19 @@ PORTNAME= case_transform PORTVERSION= 0.2 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= bofh@FreeBSD.org COMMENT= Extraction of the key_transform abilities of ActiveModelSerializers WWW= https://github.com/NullVoxPopuli/case_transform LICENSE= MIT RUN_DEPENDS= rubygem-activesupport61>0:devel/rubygem-activesupport61 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-character_set/Makefile b/textproc/rubygem-character_set/Makefile index acfe940bef82..b04170b498b7 100644 --- a/textproc/rubygem-character_set/Makefile +++ b/textproc/rubygem-character_set/Makefile @@ -1,18 +1,17 @@ PORTNAME= character_set PORTVERSION= 1.4.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Build, read, write and compare sets of Unicode codepoints WWW= https://github.com/jaynetics/character_set LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-sorted_set>=1.0<2:devel/rubygem-sorted_set USES= gem -USE_RUBY= yes .include diff --git a/textproc/rubygem-charlock_holmes/Makefile b/textproc/rubygem-charlock_holmes/Makefile index 1e695c215812..4e0e78e99b7e 100644 --- a/textproc/rubygem-charlock_holmes/Makefile +++ b/textproc/rubygem-charlock_holmes/Makefile @@ -1,20 +1,19 @@ PORTNAME= charlock_holmes DISTVERSION= 0.7.7 PORTREVISION= 5 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Gems for character encoding detection WWW= https://github.com/brianmario/charlock_holmes LICENSE= MIT LIB_DEPENDS= libicui18n.so:devel/icu USES= gem -USE_RUBY= yes CONFIGURE_ARGS= --with-icu-include=${LOCALBASE}/include .include diff --git a/textproc/rubygem-chewy/Makefile b/textproc/rubygem-chewy/Makefile index 40b2651307a3..e321c0382c67 100644 --- a/textproc/rubygem-chewy/Makefile +++ b/textproc/rubygem-chewy/Makefile @@ -1,22 +1,21 @@ PORTNAME= chewy PORTVERSION= 7.2.7 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= ODM and wrapper for Elasticsearch client WWW= https://github.com/toptal/chewy LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activesupport60>=4.0:devel/rubygem-activesupport60 \ rubygem-elasticsearch713>=7.12.0<7.14.0:textproc/rubygem-elasticsearch713 \ rubygem-elasticsearch-dsl>=0:textproc/rubygem-elasticsearch-dsl USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-citrus/Makefile b/textproc/rubygem-citrus/Makefile index 74071862637a..34fc5d0c9f72 100644 --- a/textproc/rubygem-citrus/Makefile +++ b/textproc/rubygem-citrus/Makefile @@ -1,16 +1,15 @@ PORTNAME= citrus PORTVERSION= 3.0.2 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Parsing Expressions for Ruby WWW= https://mjackson.github.io/citrus BUILD_DEPENDS= rubygem-rake>=0:devel/rubygem-rake NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-cld3/Makefile b/textproc/rubygem-cld3/Makefile index 1e7e2763c1c2..1beb5bcea52e 100644 --- a/textproc/rubygem-cld3/Makefile +++ b/textproc/rubygem-cld3/Makefile @@ -1,20 +1,19 @@ PORTNAME= cld3 PORTVERSION= 3.5.0 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Compact Language Detection for Ruby WWW= https://github.com/akihikodaki/cld3-ruby LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libprotobuf.so:devel/protobuf RUN_DEPENDS= rubygem-ffi>=1.1.0<1.16.0:devel/rubygem-ffi USES= gem pkgconfig -USE_RUBY= yes .include diff --git a/textproc/rubygem-coderay/Makefile b/textproc/rubygem-coderay/Makefile index f0cb745a0f39..02ea58925649 100644 --- a/textproc/rubygem-coderay/Makefile +++ b/textproc/rubygem-coderay/Makefile @@ -1,20 +1,19 @@ PORTNAME= coderay PORTVERSION= 1.1.3 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Fast and easy syntax highlighting for selected languages WWW= http://coderay.rubychan.de/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/coderay .include diff --git a/textproc/rubygem-colorator/Makefile b/textproc/rubygem-colorator/Makefile index c3e6d302d9fb..9080121b2764 100644 --- a/textproc/rubygem-colorator/Makefile +++ b/textproc/rubygem-colorator/Makefile @@ -1,18 +1,17 @@ PORTNAME= colorator PORTVERSION= 1.1.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Colorize your text in the terminal WWW= https://github.com/octopress/colorator LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-colored/Makefile b/textproc/rubygem-colored/Makefile index abb3adf1b9fa..3ac206cbd86f 100644 --- a/textproc/rubygem-colored/Makefile +++ b/textproc/rubygem-colored/Makefile @@ -1,17 +1,16 @@ PORTNAME= colored PORTVERSION= 1.2 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Colorize text on the console WWW= https://github.com/defunkt/colored LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-colored2/Makefile b/textproc/rubygem-colored2/Makefile index 72345aeba6cf..ad2763b886f3 100644 --- a/textproc/rubygem-colored2/Makefile +++ b/textproc/rubygem-colored2/Makefile @@ -1,17 +1,16 @@ PORTNAME= colored2 PORTVERSION= 3.1.2 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= romain@FreeBSD.org COMMENT= Colors in your terminal, simple as it can be WWW= https://rubygems.org/gems/colored2 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-commonmarker/Makefile b/textproc/rubygem-commonmarker/Makefile index 60ead2e73437..eae43b9aab8a 100644 --- a/textproc/rubygem-commonmarker/Makefile +++ b/textproc/rubygem-commonmarker/Makefile @@ -1,18 +1,17 @@ PORTNAME= commonmarker PORTVERSION= 0.23.6 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby wrapper for libcmark (CommonMark parser) WWW= https://github.com/gjtorikian/commonmarker LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes PLIST_FILES= bin/commonmarker .include diff --git a/textproc/rubygem-creole/Makefile b/textproc/rubygem-creole/Makefile index 7a0a50bd5eeb..eab3fa263719 100644 --- a/textproc/rubygem-creole/Makefile +++ b/textproc/rubygem-creole/Makefile @@ -1,17 +1,16 @@ PORTNAME= creole PORTVERSION= 0.5.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Creole-to-HTML converter WWW= https://github.com/minad/creole LICENSE= RUBY NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-css_parser/Makefile b/textproc/rubygem-css_parser/Makefile index c3d748df977e..54095464e3ee 100644 --- a/textproc/rubygem-css_parser/Makefile +++ b/textproc/rubygem-css_parser/Makefile @@ -1,20 +1,19 @@ PORTNAME= css_parser PORTVERSION= 1.12.0 CATEGORIES= textproc www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Set of classes for parsing CSS in Ruby WWW= https://github.com/premailer/css_parser LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-addressable>=0:www/rubygem-addressable USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-cssmin/Makefile b/textproc/rubygem-cssmin/Makefile index b180788373b6..490d3646afe0 100644 --- a/textproc/rubygem-cssmin/Makefile +++ b/textproc/rubygem-cssmin/Makefile @@ -1,18 +1,17 @@ PORTNAME= cssmin PORTVERSION= 1.0.3 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby library for minifying CSS. Inspired by cssmin.js and YUI Compressor WWW= https://github.com/rgrove/cssmin LICENSE= BSD3CLAUSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-cucumber-gherkin/Makefile b/textproc/rubygem-cucumber-gherkin/Makefile index 4b2881abde92..15611f61e56e 100644 --- a/textproc/rubygem-cucumber-gherkin/Makefile +++ b/textproc/rubygem-cucumber-gherkin/Makefile @@ -1,22 +1,21 @@ PORTNAME= cucumber-gherkin PORTVERSION= 25.0.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Fast Gherkin lexer/parser based on the Ragel State Machine Compiler WWW= https://github.com/cucumber/gherkin LICENSE= MIT RUN_DEPENDS= rubygem-cucumber-messages19>=19.1.4<20:devel/rubygem-cucumber-messages19 USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/gherkin \ bin/gherkin-ruby .include diff --git a/textproc/rubygem-cucumber-gherkin23/Makefile b/textproc/rubygem-cucumber-gherkin23/Makefile index dad5a4c6a527..fb26ecf0992b 100644 --- a/textproc/rubygem-cucumber-gherkin23/Makefile +++ b/textproc/rubygem-cucumber-gherkin23/Makefile @@ -1,26 +1,25 @@ PORTNAME= cucumber-gherkin PORTVERSION= 23.0.1 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 23 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Fast Gherkin lexer/parser based on the Ragel State Machine Compiler WWW= https://github.com/cucumber/common/tree/main/gherkin/ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-cucumber-messages18>=18.0.0<19:devel/rubygem-cucumber-messages18 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^23\. post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/gherkin ${STAGEDIR}${PREFIX}/bin/gherkin-ruby .include diff --git a/textproc/rubygem-cucumber-html-formatter/Makefile b/textproc/rubygem-cucumber-html-formatter/Makefile index 9ee260e53935..5578b889c174 100644 --- a/textproc/rubygem-cucumber-html-formatter/Makefile +++ b/textproc/rubygem-cucumber-html-formatter/Makefile @@ -1,21 +1,20 @@ PORTNAME= cucumber-html-formatter PORTVERSION= 20.1.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= HTML formatter for Cucumber WWW= https://github.com/cucumber/html-formatter LICENSE= MIT RUN_DEPENDS= rubygem-cucumber-messages18>=18.0.0<19:devel/rubygem-cucumber-messages18 USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/cucumber-html-formatter .include diff --git a/textproc/rubygem-cucumber-html-formatter19/Makefile b/textproc/rubygem-cucumber-html-formatter19/Makefile index 1736030e8e79..8e381078e1af 100644 --- a/textproc/rubygem-cucumber-html-formatter19/Makefile +++ b/textproc/rubygem-cucumber-html-formatter19/Makefile @@ -1,25 +1,24 @@ PORTNAME= cucumber-html-formatter PORTVERSION= 19.2.0 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 19 MAINTAINER= sunpoet@FreeBSD.org COMMENT= HTML formatter for Cucumber WWW= https://github.com/cucumber/html-formatter LICENSE= MIT RUN_DEPENDS= rubygem-cucumber-messages18>=18.0.0<19:devel/rubygem-cucumber-messages18 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^19\. post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/cucumber-html-formatter .include diff --git a/textproc/rubygem-diff-lcs/Makefile b/textproc/rubygem-diff-lcs/Makefile index f83a1a3434bd..c5cca9e9ddad 100644 --- a/textproc/rubygem-diff-lcs/Makefile +++ b/textproc/rubygem-diff-lcs/Makefile @@ -1,28 +1,27 @@ PORTNAME= diff-lcs PORTVERSION= 1.5.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= LCS-based diff library for ruby WWW= https://github.com/halostatue/diff-lcs LICENSE= ART20 GPLv2+ MIT LICENSE_COMB= dual LICENSE_FILE_ART20= ${WRKSRC}/docs/artistic.txt LICENSE_FILE_GPLv2+ = ${WRKSRC}/docs/COPYING.txt LICENSE_FILE_MIT= ${WRKSRC}/License.md USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/htmldiff bin/ldiff CONFLICTS_INSTALL= p5-HTML-Diff # bin/htmldiff SHEBANG_FILES= bin/htmldiff bin/ldiff ruby_OLD_CMD= ruby .include diff --git a/textproc/rubygem-diff_match_patch/Makefile b/textproc/rubygem-diff_match_patch/Makefile index 576e7c8d8567..522f390e61e2 100644 --- a/textproc/rubygem-diff_match_patch/Makefile +++ b/textproc/rubygem-diff_match_patch/Makefile @@ -1,18 +1,17 @@ PORTNAME= diff_match_patch PORTVERSION= 0.1.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Ruby implementation of Google diff_match_patch WWW= https://github.com/kalmbach/diff_match_patch LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-diffy/Makefile b/textproc/rubygem-diffy/Makefile index fd6ad11bb14d..76b209a6d0d4 100644 --- a/textproc/rubygem-diffy/Makefile +++ b/textproc/rubygem-diffy/Makefile @@ -1,18 +1,17 @@ PORTNAME= diffy PORTVERSION= 3.4.2 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Convenient diffing in ruby WWW= https://github.com/samg/diffy LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-docdiff/Makefile b/textproc/rubygem-docdiff/Makefile index d12f1f3e074f..4d20e1d6b696 100644 --- a/textproc/rubygem-docdiff/Makefile +++ b/textproc/rubygem-docdiff/Makefile @@ -1,21 +1,20 @@ PORTNAME= docdiff PORTVERSION= 0.6.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Compares two text files by word, by character, or by line WWW= https://github.com/hisashim/docdiff LICENSE= BSD3CLAUSE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/docdiff SHEBANG_FILES= docdiffwebui.cgi langfilter.rb */*.rb lib/docdiff/*.rb .include diff --git a/textproc/rubygem-elasticsearch-api/Makefile b/textproc/rubygem-elasticsearch-api/Makefile index 8936bb898233..5b0bc941ab25 100644 --- a/textproc/rubygem-elasticsearch-api/Makefile +++ b/textproc/rubygem-elasticsearch-api/Makefile @@ -1,20 +1,19 @@ PORTNAME= elasticsearch-api PORTVERSION= 7.17.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby API for Elasticsearch WWW= https://github.com/elastic/elasticsearch-ruby/tree/master/elasticsearch-api LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-multi_json>=0:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-elasticsearch-api713/Makefile b/textproc/rubygem-elasticsearch-api713/Makefile index 4aa159cae7e8..365708bac58f 100644 --- a/textproc/rubygem-elasticsearch-api713/Makefile +++ b/textproc/rubygem-elasticsearch-api713/Makefile @@ -1,23 +1,22 @@ PORTNAME= elasticsearch-api PORTVERSION= 7.13.3 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 713 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby API for Elasticsearch WWW= https://github.com/elastic/elasticsearch-ruby/tree/master/elasticsearch-api LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-multi_json>=0:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^7\.13\. .include diff --git a/textproc/rubygem-elasticsearch-dsl/Makefile b/textproc/rubygem-elasticsearch-dsl/Makefile index 57f651872f60..0fc09034c7f1 100644 --- a/textproc/rubygem-elasticsearch-dsl/Makefile +++ b/textproc/rubygem-elasticsearch-dsl/Makefile @@ -1,18 +1,17 @@ PORTNAME= elasticsearch-dsl PORTVERSION= 0.1.10 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby DSL builder for Elasticsearch WWW= https://github.com/elastic/elasticsearch-ruby/tree/master/elasticsearch-dsl LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-elasticsearch-model/Makefile b/textproc/rubygem-elasticsearch-model/Makefile index 8606ccc941f1..28420d58dc88 100644 --- a/textproc/rubygem-elasticsearch-model/Makefile +++ b/textproc/rubygem-elasticsearch-model/Makefile @@ -1,22 +1,21 @@ PORTNAME= elasticsearch-model PORTVERSION= 7.2.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= ActiveModel/Record integrations for Elasticsearch WWW= https://github.com/elastic/elasticsearch-rails/tree/master/elasticsearch-model LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activesupport5>=3:devel/rubygem-activesupport5 \ rubygem-elasticsearch>=7<8:textproc/rubygem-elasticsearch \ rubygem-hashie>=0:devel/rubygem-hashie USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-elasticsearch-model713/Makefile b/textproc/rubygem-elasticsearch-model713/Makefile index 78714dae09b2..15e79a76a566 100644 --- a/textproc/rubygem-elasticsearch-model713/Makefile +++ b/textproc/rubygem-elasticsearch-model713/Makefile @@ -1,23 +1,22 @@ PORTNAME= elasticsearch-model PORTVERSION= 7.2.1 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 713 MAINTAINER= mfechner@FreeBSD.org COMMENT= ActiveModel/Record integrations for Elasticsearch WWW= https://github.com/elastic/elasticsearch-rails/tree/master/elasticsearch-model LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activesupport61>=3:devel/rubygem-activesupport61 \ rubygem-elasticsearch713>=7<8:textproc/rubygem-elasticsearch713 \ rubygem-hashie>=0:devel/rubygem-hashie USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-elasticsearch-persistence/Makefile b/textproc/rubygem-elasticsearch-persistence/Makefile index 31d9d837e993..b10dda375ca2 100644 --- a/textproc/rubygem-elasticsearch-persistence/Makefile +++ b/textproc/rubygem-elasticsearch-persistence/Makefile @@ -1,24 +1,23 @@ PORTNAME= elasticsearch-persistence PORTVERSION= 7.2.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Persistence layer for Ruby models and Elasticsearch WWW= https://github.com/elastic/elasticsearch-rails/tree/master/elasticsearch-persistence LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activemodel5>=4:databases/rubygem-activemodel5 \ rubygem-activesupport5>=4:devel/rubygem-activesupport5 \ rubygem-elasticsearch>=7<8:textproc/rubygem-elasticsearch \ rubygem-elasticsearch-model>=${PORTVERSION}:textproc/rubygem-elasticsearch-model \ rubygem-hashie>=0:devel/rubygem-hashie USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-elasticsearch-rails/Makefile b/textproc/rubygem-elasticsearch-rails/Makefile index b92254e98af4..2593b49a6dea 100644 --- a/textproc/rubygem-elasticsearch-rails/Makefile +++ b/textproc/rubygem-elasticsearch-rails/Makefile @@ -1,18 +1,17 @@ PORTNAME= elasticsearch-rails PORTVERSION= 7.2.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby on Rails integrations for Elasticsearch WWW= https://github.com/elastic/elasticsearch-rails/tree/master/elasticsearch-rails LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-elasticsearch-transport/Makefile b/textproc/rubygem-elasticsearch-transport/Makefile index 02e3423105fd..570b6efcff6f 100644 --- a/textproc/rubygem-elasticsearch-transport/Makefile +++ b/textproc/rubygem-elasticsearch-transport/Makefile @@ -1,22 +1,21 @@ PORTNAME= elasticsearch-transport PORTVERSION= 7.17.1 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby client for Elasticsearch WWW= https://github.com/elastic/elasticsearch-ruby/tree/master/elasticsearch-transport LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-faraday1>=1<2:www/rubygem-faraday1 \ rubygem-multi_json>=0:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-elasticsearch-transport713/Makefile b/textproc/rubygem-elasticsearch-transport713/Makefile index bcb304f46ab8..852b0d549177 100644 --- a/textproc/rubygem-elasticsearch-transport713/Makefile +++ b/textproc/rubygem-elasticsearch-transport713/Makefile @@ -1,25 +1,24 @@ PORTNAME= elasticsearch-transport PORTVERSION= 7.13.3 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 713 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby client for Elasticsearch WWW= https://github.com/elastic/elasticsearch-ruby/tree/master/elasticsearch-transport LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-faraday1>=1<2:www/rubygem-faraday1 \ rubygem-multi_json>=0:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^7\.13\. .include diff --git a/textproc/rubygem-elasticsearch-xpack/Makefile b/textproc/rubygem-elasticsearch-xpack/Makefile index bd0b085ca5c7..def8dbf246cb 100644 --- a/textproc/rubygem-elasticsearch-xpack/Makefile +++ b/textproc/rubygem-elasticsearch-xpack/Makefile @@ -1,20 +1,19 @@ PORTNAME= elasticsearch-xpack PORTVERSION= 7.17.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby integrations for the X-Pack extensions for Elasticsearch WWW= https://github.com/elastic/elasticsearch-ruby/tree/master/elasticsearch-xpack LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-elasticsearch-api>=6:textproc/rubygem-elasticsearch-api USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-elasticsearch/Makefile b/textproc/rubygem-elasticsearch/Makefile index ead1ce1fe8d9..3591ca9164bc 100644 --- a/textproc/rubygem-elasticsearch/Makefile +++ b/textproc/rubygem-elasticsearch/Makefile @@ -1,23 +1,22 @@ PORTNAME= elasticsearch PORTVERSION= 7.17.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby integrations for Elasticsearch WWW= https://github.com/elastic/elasticsearch-ruby LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-elasticsearch-api>=${PORTVERSION}:textproc/rubygem-elasticsearch-api \ rubygem-elasticsearch-transport>=${PORTVERSION}:textproc/rubygem-elasticsearch-transport USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/elastic_ruby_console .include diff --git a/textproc/rubygem-elasticsearch713/Makefile b/textproc/rubygem-elasticsearch713/Makefile index bdcf7fcdfd66..41a7a27d5388 100644 --- a/textproc/rubygem-elasticsearch713/Makefile +++ b/textproc/rubygem-elasticsearch713/Makefile @@ -1,27 +1,26 @@ PORTNAME= elasticsearch PORTVERSION= 7.13.3 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 713 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby integrations for Elasticsearch WWW= https://github.com/elastic/elasticsearch-ruby LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-elasticsearch-api713>=${PORTVERSION}:textproc/rubygem-elasticsearch-api713 \ rubygem-elasticsearch-transport713>=${PORTVERSION}:textproc/rubygem-elasticsearch-transport713 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^7\.13\. post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/elastic_ruby_console .include diff --git a/textproc/rubygem-emot/Makefile b/textproc/rubygem-emot/Makefile index 6280fc8efa20..abc53706f3da 100644 --- a/textproc/rubygem-emot/Makefile +++ b/textproc/rubygem-emot/Makefile @@ -1,22 +1,21 @@ PORTNAME= emot PORTVERSION= 0.0.4 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Yet another emoji handler WWW= https://github.com/melborne/emot LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-thor>=0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/emot .include diff --git a/textproc/rubygem-escape_utils/Makefile b/textproc/rubygem-escape_utils/Makefile index 44dd4ba86e23..d004d4799fc3 100644 --- a/textproc/rubygem-escape_utils/Makefile +++ b/textproc/rubygem-escape_utils/Makefile @@ -1,16 +1,15 @@ PORTNAME= escape_utils PORTVERSION= 1.3.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Faster string escaping routines for your web apps WWW= https://github.com/brianmario/escape_utils LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes .include diff --git a/textproc/rubygem-extended-markdown-filter/Makefile b/textproc/rubygem-extended-markdown-filter/Makefile index 6e68426a7edc..0d8954a200e0 100644 --- a/textproc/rubygem-extended-markdown-filter/Makefile +++ b/textproc/rubygem-extended-markdown-filter/Makefile @@ -1,20 +1,19 @@ PORTNAME= extended-markdown-filter PORTVERSION= 0.7.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Custom markdown processor GitHubs HTML Pipeline WWW= https://rubygems.org/gems/extended-markdown-filter LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-html-pipeline>=2.9<3.0:textproc/rubygem-html-pipeline USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-ezamar/Makefile b/textproc/rubygem-ezamar/Makefile index c69eb4b6f1c8..155eea7456e1 100644 --- a/textproc/rubygem-ezamar/Makefile +++ b/textproc/rubygem-ezamar/Makefile @@ -1,16 +1,15 @@ PORTNAME= ezamar PORTVERSION= 2009.06 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Lightweight and simple templating engine for Ruby WWW= https://github.com/manveru/ezamar LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-fast_xs/Makefile b/textproc/rubygem-fast_xs/Makefile index f17e50e2d4b0..80bbb316cac8 100644 --- a/textproc/rubygem-fast_xs/Makefile +++ b/textproc/rubygem-fast_xs/Makefile @@ -1,17 +1,16 @@ PORTNAME= fast_xs PORTVERSION= 0.8.0 PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Systems integration framework. Expander WWW= http://fast-xs.rubyforge.org/ LICENSE= MIT -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-ferret/Makefile b/textproc/rubygem-ferret/Makefile index 29c9de331bd6..1796ea7dded4 100644 --- a/textproc/rubygem-ferret/Makefile +++ b/textproc/rubygem-ferret/Makefile @@ -1,23 +1,22 @@ PORTNAME= ferret PORTVERSION= 0.11.8.7 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby port of Lucene WWW= https://github.com/jkraemer/ferret LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE BROKEN_aarch64= fails to build: cannot determine target CPU BROKEN_riscv64= fails to build: cannot determine target CPU BROKEN_RUBY30= yes BROKEN_RUBY31= yes USES= gem -USE_RUBY= yes PLIST_FILES= bin/ferret-browser .include diff --git a/textproc/rubygem-fog-xml/Makefile b/textproc/rubygem-fog-xml/Makefile index 29a010c3a585..6b73ea28de18 100644 --- a/textproc/rubygem-fog-xml/Makefile +++ b/textproc/rubygem-fog-xml/Makefile @@ -1,21 +1,20 @@ PORTNAME= fog-xml PORTVERSION= 0.1.4 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Extraction of the XML parsing tools shared among 'fog' providers WWW= https://github.com/fog/fog-xml LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-fog-core>=0:devel/rubygem-fog-core \ rubygem-nokogiri>=1.5.11<2.0.0:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-gemoji/Makefile b/textproc/rubygem-gemoji/Makefile index d720b1a26cfa..110bf499b0dd 100644 --- a/textproc/rubygem-gemoji/Makefile +++ b/textproc/rubygem-gemoji/Makefile @@ -1,19 +1,18 @@ PORTNAME= gemoji PORTVERSION= 3.0.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Emoji assets WWW= https://github.com/github/gemoji LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/gemoji .include diff --git a/textproc/rubygem-gepub/Makefile b/textproc/rubygem-gepub/Makefile index 0cdcddae8f5d..f90911e3e38f 100644 --- a/textproc/rubygem-gepub/Makefile +++ b/textproc/rubygem-gepub/Makefile @@ -1,24 +1,23 @@ PORTNAME= gepub PORTVERSION= 1.0.15 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= doceng@FreeBSD.org COMMENT= Ruby generic EPUB parser/generator WWW= https://github.com/skoji/gepub LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-nokogiri>=1.8.2<2.0:textproc/rubygem-nokogiri \ rubygem-rubyzip>=1.1.1<2.4:archivers/rubygem-rubyzip USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/genepub \ bin/gepuber .include diff --git a/textproc/rubygem-github-linguist/Makefile b/textproc/rubygem-github-linguist/Makefile index 64d3bf0487ad..7c597aedb9fa 100644 --- a/textproc/rubygem-github-linguist/Makefile +++ b/textproc/rubygem-github-linguist/Makefile @@ -1,23 +1,22 @@ PORTNAME= github-linguist PORTVERSION= 7.24.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= GitHub Language detection WWW= https://github.com/github/linguist LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-cgi>=0:www/rubygem-cgi \ rubygem-charlock_holmes>=0.7.7<0.8:textproc/rubygem-charlock_holmes \ rubygem-mini_mime>=1.0<2:mail/rubygem-mini_mime \ rubygem-rugged>=1.0<2:devel/rubygem-rugged USES= gem -USE_RUBY= yes PLIST_FILES= bin/git-linguist bin/github-linguist .include diff --git a/textproc/rubygem-github-markup/Makefile b/textproc/rubygem-github-markup/Makefile index 1210482b7d57..97a292b27916 100644 --- a/textproc/rubygem-github-markup/Makefile +++ b/textproc/rubygem-github-markup/Makefile @@ -1,28 +1,27 @@ PORTNAME= github-markup PORTVERSION= 4.0.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Render any fancy markup WWW= https://github.com/github/markup LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem shebangfix -USE_RUBY= yes CONFLICTS_INSTALL= rubygem-github-markup* NO_ARCH= yes REINPLACE_ARGS= -i '' PLIST_FILES= bin/github-markup SHEBANG_FILES= script/* post-patch: @${REINPLACE_CMD} -e '1d' ${WRKSRC}/lib/github/commands/rest2html .include diff --git a/textproc/rubygem-github-markup17/Makefile b/textproc/rubygem-github-markup17/Makefile index 9d4e032b4c21..db09090647c8 100644 --- a/textproc/rubygem-github-markup17/Makefile +++ b/textproc/rubygem-github-markup17/Makefile @@ -1,32 +1,31 @@ PORTNAME= github-markup PORTVERSION= 1.7.0 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 17 MAINTAINER= mfechner@FreeBSD.org COMMENT= Render any fancy markup WWW= https://github.com/github/markup LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem shebangfix -USE_RUBY= yes CONFLICTS_INSTALL= rubygem-github-markup* NO_ARCH= yes REINPLACE_ARGS= -i '' PLIST_FILES= bin/github-markup SHEBANG_FILES= script/* PORTSCOUT= limit:^1\.7\. post-patch: @${REINPLACE_CMD} -e '1d' ${WRKSRC}/lib/github/commands/rest2html .include diff --git a/textproc/rubygem-gitlab-grit/Makefile b/textproc/rubygem-gitlab-grit/Makefile index 7c652cf54914..2834c912d2c7 100644 --- a/textproc/rubygem-gitlab-grit/Makefile +++ b/textproc/rubygem-gitlab-grit/Makefile @@ -1,23 +1,22 @@ PORTNAME= gitlab-grit PORTVERSION= 2.8.3 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library for extracting information from a git repository WWW= https://github.com/gitlabhq/grit LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-charlock_holmes>=0.7<1:textproc/rubygem-charlock_holmes \ rubygem-diff-lcs>=1.1<2:textproc/rubygem-diff-lcs \ rubygem-mime-types>=1.16:misc/rubygem-mime-types \ rubygem-posix-spawn>=0.3<1:devel/rubygem-posix-spawn USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-gitlab-markup/Makefile b/textproc/rubygem-gitlab-markup/Makefile index 3b98b66c380a..50b7032229f9 100644 --- a/textproc/rubygem-gitlab-markup/Makefile +++ b/textproc/rubygem-gitlab-markup/Makefile @@ -1,24 +1,23 @@ PORTNAME= gitlab-markup PORTVERSION= 1.8.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Render any fancy GitLab markup WWW= https://gitlab.com/gitlab-org/gitlab-markup LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem python:run shebangfix -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/gitlab-markup SHEBANG_FILES= lib/github/commands/rest2html \ script/bootstrap \ script/cibuild .include diff --git a/textproc/rubygem-google-cloud-translate-v2/Makefile b/textproc/rubygem-google-cloud-translate-v2/Makefile index b6ba1b6c552f..c56d9db830f7 100644 --- a/textproc/rubygem-google-cloud-translate-v2/Makefile +++ b/textproc/rubygem-google-cloud-translate-v2/Makefile @@ -1,24 +1,23 @@ PORTNAME= google-cloud-translate-v2 PORTVERSION= 0.4.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby Client for the Cloud Translation V2 API WWW= https://github.com/googleapis/google-cloud-ruby/tree/main/google-cloud-translate-v2 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-faraday1>=0.17.3<2.0:www/rubygem-faraday1 \ rubygem-google-cloud-core>=1.6<2:net/rubygem-google-cloud-core \ rubygem-googleapis-common-protos>=1.3.10<2.0:devel/rubygem-googleapis-common-protos \ rubygem-googleapis-common-protos-types>=1.0.5<2.0:devel/rubygem-googleapis-common-protos-types \ rubygem-googleauth>=0.16.2<2.0:security/rubygem-googleauth USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-google-cloud-translate-v3/Makefile b/textproc/rubygem-google-cloud-translate-v3/Makefile index f8777ed4b69c..9d1c6c942321 100644 --- a/textproc/rubygem-google-cloud-translate-v3/Makefile +++ b/textproc/rubygem-google-cloud-translate-v3/Makefile @@ -1,21 +1,20 @@ PORTNAME= google-cloud-translate-v3 PORTVERSION= 0.5.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby Client for the Cloud Translation V3 API WWW= https://github.com/googleapis/google-cloud-ruby/tree/main/google-cloud-translate-v3 LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-gapic-common>=0.10<2.0:devel/rubygem-gapic-common \ rubygem-google-cloud-errors>=1.0<2:net/rubygem-google-cloud-errors USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-google-cloud-translate/Makefile b/textproc/rubygem-google-cloud-translate/Makefile index a419b44dff0d..39911ee59d36 100644 --- a/textproc/rubygem-google-cloud-translate/Makefile +++ b/textproc/rubygem-google-cloud-translate/Makefile @@ -1,22 +1,21 @@ PORTNAME= google-cloud-translate PORTVERSION= 3.3.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby Client for the Cloud Translation API WWW= https://github.com/googleapis/google-cloud-ruby/tree/main/google-cloud-translate LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-google-cloud-core>=1.6<2:net/rubygem-google-cloud-core \ rubygem-google-cloud-translate-v2>=0.0<2.0:textproc/rubygem-google-cloud-translate-v2 \ rubygem-google-cloud-translate-v3>=0.0<2.0:textproc/rubygem-google-cloud-translate-v3 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-heredoc_unindent/Makefile b/textproc/rubygem-heredoc_unindent/Makefile index ee1977b19438..e4f611542f3b 100644 --- a/textproc/rubygem-heredoc_unindent/Makefile +++ b/textproc/rubygem-heredoc_unindent/Makefile @@ -1,17 +1,16 @@ PORTNAME= heredoc_unindent PORTVERSION= 1.2.0 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= loic-freebsd@loicp.eu COMMENT= Removes common margin from indented strings WWW= https://github.com/adrianomitre/heredoc_unindent LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-hikidoc/Makefile b/textproc/rubygem-hikidoc/Makefile index 9a9bfacc0e24..9ae81df64ed1 100644 --- a/textproc/rubygem-hikidoc/Makefile +++ b/textproc/rubygem-hikidoc/Makefile @@ -1,19 +1,18 @@ PORTNAME= hikidoc PORTVERSION= 0.1.0 CATEGORIES= textproc ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Text-to-HTML conversion tool for web writers WWW= https://github.com/hiki/hikidoc LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/hikidoc .include diff --git a/textproc/rubygem-html-pipeline/Makefile b/textproc/rubygem-html-pipeline/Makefile index ae2e509831fe..c86e952cbd79 100644 --- a/textproc/rubygem-html-pipeline/Makefile +++ b/textproc/rubygem-html-pipeline/Makefile @@ -1,21 +1,20 @@ PORTNAME= html-pipeline PORTVERSION= 2.14.3 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= GitHub HTML processing filters and utilities WWW= https://github.com/jch/html-pipeline LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport61>=2:devel/rubygem-activesupport61 \ rubygem-nokogiri>=1.4:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-html-proofer/Makefile b/textproc/rubygem-html-proofer/Makefile index 2742bb41a285..14eb9fe2e7fd 100644 --- a/textproc/rubygem-html-proofer/Makefile +++ b/textproc/rubygem-html-proofer/Makefile @@ -1,32 +1,31 @@ PORTNAME= html-proofer PORTVERSION= 4.4.3 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Test your rendered HTML files WWW= https://github.com/gjtorikian/html-proofer LICENSE= MIT RUN_DEPENDS= rubygem-addressable>=2.3<3:www/rubygem-addressable \ rubygem-mercenary>=0.3<1:devel/rubygem-mercenary \ rubygem-nokogiri>=1.13<2:textproc/rubygem-nokogiri \ rubygem-parallel>=1.10<2:sysutils/rubygem-parallel \ rubygem-rainbow>=3.0<4:devel/rubygem-rainbow \ rubygem-typhoeus>=1.3<2:www/rubygem-typhoeus \ rubygem-yell>=2.0<3:sysutils/rubygem-yell \ rubygem-zeitwerk>=2.5<3:devel/rubygem-zeitwerk USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/htmlproofer # html-proofer 5+ requires async 2.1.0+ which requires Ruby 3.1+ # Update to 5.* after Ruby 3.1 becomes the default version PORTSCOUT= limit:^4\. .include diff --git a/textproc/rubygem-html2text/Makefile b/textproc/rubygem-html2text/Makefile index 844cebdf5563..c2f0c20e6205 100644 --- a/textproc/rubygem-html2text/Makefile +++ b/textproc/rubygem-html2text/Makefile @@ -1,20 +1,19 @@ PORTNAME= html2text PORTVERSION= 0.3.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Convert HTML into a plain text format WWW= https://github.com/soundasleep/html2text_ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-nokogiri>=1.10.3<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-htmlentities/Makefile b/textproc/rubygem-htmlentities/Makefile index 98a4e4bbfec8..baf3e9f8dd83 100644 --- a/textproc/rubygem-htmlentities/Makefile +++ b/textproc/rubygem-htmlentities/Makefile @@ -1,17 +1,16 @@ PORTNAME= htmlentities PORTVERSION= 4.3.4 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= markun@onohara.to COMMENT= HTML entity encoding and decoding for Ruby WWW= https://rubygems.org/gems/htmlentities LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-ini/Makefile b/textproc/rubygem-ini/Makefile index bbe0e0fb4b63..78777c5a1f3c 100644 --- a/textproc/rubygem-ini/Makefile +++ b/textproc/rubygem-ini/Makefile @@ -1,17 +1,16 @@ PORTNAME= ini PORTVERSION= 0.1.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby INI File Parser and Writer WWW= https://rubygems.org/gems/ini LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-inifile/Makefile b/textproc/rubygem-inifile/Makefile index 55ad66451871..12ad88c29105 100644 --- a/textproc/rubygem-inifile/Makefile +++ b/textproc/rubygem-inifile/Makefile @@ -1,16 +1,15 @@ PORTNAME= inifile PORTVERSION= 3.0.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= douglas@douglasthrift.net COMMENT= Native Ruby package for reading and writing INI files WWW= https://github.com/twp/inifile LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-iso-639/Makefile b/textproc/rubygem-iso-639/Makefile index addb0e4be712..4743b217c2b9 100644 --- a/textproc/rubygem-iso-639/Makefile +++ b/textproc/rubygem-iso-639/Makefile @@ -1,18 +1,17 @@ PORTNAME= iso-639 PORTVERSION= 0.3.5 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= ISO 639-1 and ISO 639-2 language code entries and convenience methods WWW= https://github.com/xwmx/iso-639 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-itextomml/Makefile b/textproc/rubygem-itextomml/Makefile index 051b9d955092..8e0cb0dc0758 100644 --- a/textproc/rubygem-itextomml/Makefile +++ b/textproc/rubygem-itextomml/Makefile @@ -1,16 +1,15 @@ PORTNAME= itextomml PORTVERSION= 1.6.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Native Ruby bindings to itex2MML WWW= https://golem.ph.utexas.edu/~distler/blog/itex2MML.html LICENSE= GPLv2 LGPL20 MPL11 LICENSE_COMB= dual USES= gem -USE_RUBY= yes .include diff --git a/textproc/rubygem-jekyll-archives/Makefile b/textproc/rubygem-jekyll-archives/Makefile index b5f78f934fe0..1014cdb27aa7 100644 --- a/textproc/rubygem-jekyll-archives/Makefile +++ b/textproc/rubygem-jekyll-archives/Makefile @@ -1,19 +1,18 @@ PORTNAME= jekyll-archives PORTVERSION= 2.2.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= 0mp@FreeBSD.org COMMENT= Archive pages for Jekyll tags and categories WWW= https://jekyll.github.io/jekyll-archives/ LICENSE= MIT RUN_DEPENDS= rubygem-jekyll>=3.6<5.0:www/rubygem-jekyll USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-jekyll-assets/Makefile b/textproc/rubygem-jekyll-assets/Makefile index 51582f893e5f..a3fd3d8d9634 100644 --- a/textproc/rubygem-jekyll-assets/Makefile +++ b/textproc/rubygem-jekyll-assets/Makefile @@ -1,30 +1,29 @@ PORTNAME= jekyll-assets PORTVERSION= 3.0.12 PORTREVISION= 2 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Create JavaScript/CSS assets for Jekyll sites WWW= http://jekyll-assets.github.io/jekyll-assets/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport5>=5.0<6:devel/rubygem-activesupport5 \ rubygem-execjs>=2.7<3:devel/rubygem-execjs \ rubygem-extras>=0.2<1:devel/rubygem-extras \ rubygem-fastimage>=2.0<3:graphics/rubygem-fastimage \ rubygem-jekyll3>=3.5<4.0:www/rubygem-jekyll3 \ rubygem-jekyll-sanity>=1.2<2:www/rubygem-jekyll-sanity \ rubygem-liquid-tag-parser1>=1.0<2:textproc/rubygem-liquid-tag-parser1 \ rubygem-nokogiri>=1.8<2:textproc/rubygem-nokogiri \ rubygem-pathutil>=0.16<1:devel/rubygem-pathutil \ rubygem-sprockets3>=3.3<4.1:devel/rubygem-sprockets3 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-jekyll-email-protect/Makefile b/textproc/rubygem-jekyll-email-protect/Makefile index 5e5707bc2c45..0902316d1d9d 100644 --- a/textproc/rubygem-jekyll-email-protect/Makefile +++ b/textproc/rubygem-jekyll-email-protect/Makefile @@ -1,20 +1,19 @@ PORTNAME= jekyll-email-protect DISTVERSION= 1.1.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= 0mp@FreeBSD.org COMMENT= Email protection Liquid filter for Jekyll WWW= https://github.com/vwochnik/jekyll-email-protect LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-jekyll>=3.0:www/rubygem-jekyll USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-jekyll-feed/Makefile b/textproc/rubygem-jekyll-feed/Makefile index aa841a62b537..584fdcb5aa29 100644 --- a/textproc/rubygem-jekyll-feed/Makefile +++ b/textproc/rubygem-jekyll-feed/Makefile @@ -1,20 +1,19 @@ PORTNAME= jekyll-feed PORTVERSION= 0.17.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Generates an Atom feed from Jekyll posts WWW= https://github.com/jekyll/jekyll-feed LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-jekyll>=3.7<5.0:www/rubygem-jekyll USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-jekyll-gist/Makefile b/textproc/rubygem-jekyll-gist/Makefile index 9c7b34f21441..a989d0a32221 100644 --- a/textproc/rubygem-jekyll-gist/Makefile +++ b/textproc/rubygem-jekyll-gist/Makefile @@ -1,22 +1,21 @@ PORTNAME= jekyll-gist PORTVERSION= 1.5.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Liquid tag for displaying GitHub Gists in Jekyll sites WWW= https://github.com/jekyll/jekyll-gist LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-octokit>=4.2<5:net/rubygem-octokit USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= script/* .include diff --git a/textproc/rubygem-jekyll-mentions/Makefile b/textproc/rubygem-jekyll-mentions/Makefile index 86b1f69c236e..04258059d340 100644 --- a/textproc/rubygem-jekyll-mentions/Makefile +++ b/textproc/rubygem-jekyll-mentions/Makefile @@ -1,20 +1,19 @@ PORTNAME= jekyll-mentions PORTVERSION= 1.6.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= At-mention support for Jekyll sites WWW= https://github.com/jekyll/jekyll-mentions LICENSE= MIT RUN_DEPENDS= rubygem-html-pipeline>=2.3<3:textproc/rubygem-html-pipeline \ rubygem-jekyll>=3.7<5.0:www/rubygem-jekyll USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-jekyll-paginate/Makefile b/textproc/rubygem-jekyll-paginate/Makefile index eebedf2e1c3e..03abaa66ea69 100644 --- a/textproc/rubygem-jekyll-paginate/Makefile +++ b/textproc/rubygem-jekyll-paginate/Makefile @@ -1,21 +1,20 @@ PORTNAME= jekyll-paginate PORTVERSION= 1.1.0 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Built-in Pagination Generator for Jekyll WWW= https://github.com/jekyll/jekyll-paginate LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= script/* .include diff --git a/textproc/rubygem-jekyll-redirect-from/Makefile b/textproc/rubygem-jekyll-redirect-from/Makefile index 7b79534b0de5..fdbcef83f7d1 100644 --- a/textproc/rubygem-jekyll-redirect-from/Makefile +++ b/textproc/rubygem-jekyll-redirect-from/Makefile @@ -1,22 +1,21 @@ PORTNAME= jekyll-redirect-from PORTVERSION= 0.16.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Handles redirection URLs for Jekyll pages and posts WWW= https://github.com/jekyll/jekyll-redirect-from LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-jekyll>=3.3<5.0:www/rubygem-jekyll USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= script/* .include diff --git a/textproc/rubygem-jekyll-sass-converter/Makefile b/textproc/rubygem-jekyll-sass-converter/Makefile index 6679b3924d69..f25835c6867e 100644 --- a/textproc/rubygem-jekyll-sass-converter/Makefile +++ b/textproc/rubygem-jekyll-sass-converter/Makefile @@ -1,19 +1,18 @@ PORTNAME= jekyll-sass-converter PORTVERSION= 2.2.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Basic Sass converter for Jekyll WWW= https://github.com/jekyll/jekyll-sass-converter LICENSE= MIT RUN_DEPENDS= rubygem-sassc>=2.1.0<3.0:textproc/rubygem-sassc USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-jekyll-sass-converter1/Makefile b/textproc/rubygem-jekyll-sass-converter1/Makefile index 56bd3a922807..d9f5f446c28e 100644 --- a/textproc/rubygem-jekyll-sass-converter1/Makefile +++ b/textproc/rubygem-jekyll-sass-converter1/Makefile @@ -1,22 +1,21 @@ PORTNAME= jekyll-sass-converter PORTVERSION= 1.5.2 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Basic Sass converter for Jekyll WWW= https://github.com/jekyll/jekyll-sass-converter LICENSE= MIT RUN_DEPENDS= rubygem-sass>=3.4<4:textproc/rubygem-sass USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\. .include diff --git a/textproc/rubygem-jekyll-sitemap/Makefile b/textproc/rubygem-jekyll-sitemap/Makefile index c85397dba80b..7d9af2d0a5e7 100644 --- a/textproc/rubygem-jekyll-sitemap/Makefile +++ b/textproc/rubygem-jekyll-sitemap/Makefile @@ -1,22 +1,21 @@ PORTNAME= jekyll-sitemap PORTVERSION= 1.4.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Automatically generate a sitemap.xml for Jekyll sites WWW= https://github.com/jekyll/jekyll-sitemap LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-jekyll>=3.7<5.0:www/rubygem-jekyll USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= script/* .include diff --git a/textproc/rubygem-jemoji/Makefile b/textproc/rubygem-jemoji/Makefile index 7bfc45f56bfd..916c260a1f36 100644 --- a/textproc/rubygem-jemoji/Makefile +++ b/textproc/rubygem-jemoji/Makefile @@ -1,21 +1,20 @@ PORTNAME= jemoji PORTVERSION= 0.13.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= GitHub-flavored emoji plugin for Jekyll WWW= https://github.com/jekyll/jemoji LICENSE= MIT RUN_DEPENDS= rubygem-gemoji>=3<5:textproc/rubygem-gemoji \ rubygem-html-pipeline>=2.2<3:textproc/rubygem-html-pipeline \ rubygem-jekyll>=3.0<5.0:www/rubygem-jekyll USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-js_regex/Makefile b/textproc/rubygem-js_regex/Makefile index 04c71e27e1ae..7028d459a9ca 100644 --- a/textproc/rubygem-js_regex/Makefile +++ b/textproc/rubygem-js_regex/Makefile @@ -1,21 +1,20 @@ PORTNAME= js_regex PORTVERSION= 3.8.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Convert ruby native regular expressions for JavaScript WWW= https://github.com/jaynetics/js_regex LICENSE= MIT RUN_DEPENDS= rubygem-character_set>=1.4<2:textproc/rubygem-character_set \ rubygem-regexp_parser>=2.5<3:textproc/rubygem-regexp_parser \ rubygem-regexp_property_values>=1.0<2:textproc/rubygem-regexp_property_values USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-jsmin/Makefile b/textproc/rubygem-jsmin/Makefile index d80e04a0be9e..e32e5e3cbdd2 100644 --- a/textproc/rubygem-jsmin/Makefile +++ b/textproc/rubygem-jsmin/Makefile @@ -1,18 +1,17 @@ PORTNAME= jsmin PORTVERSION= 1.0.1 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby implementation of Douglas Crockford's JSMin JavaScript minifier WWW= https://github.com/rgrove/jsmin LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-kramdown-parser-gfm/Makefile b/textproc/rubygem-kramdown-parser-gfm/Makefile index 745f94ec660f..3e6d47520cb6 100644 --- a/textproc/rubygem-kramdown-parser-gfm/Makefile +++ b/textproc/rubygem-kramdown-parser-gfm/Makefile @@ -1,20 +1,19 @@ PORTNAME= kramdown-parser-gfm PORTVERSION= 1.1.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Kramdown parser for the GFM dialect of Markdown WWW= https://github.com/kramdown/parser-gfm LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-kramdown>=2.0<3:textproc/rubygem-kramdown USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-kramdown/Makefile b/textproc/rubygem-kramdown/Makefile index 30344df0c50a..f2b1915e0150 100644 --- a/textproc/rubygem-kramdown/Makefile +++ b/textproc/rubygem-kramdown/Makefile @@ -1,24 +1,23 @@ PORTNAME= kramdown PORTVERSION= 2.4.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Yet-another-markdown-parser but fast, pure Ruby WWW= https://kramdown.gettalong.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-rexml>=0:textproc/rubygem-rexml USES= cpe gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/kramdown CPE_VENDOR= kramdown_project .include diff --git a/textproc/rubygem-kramdown1/Makefile b/textproc/rubygem-kramdown1/Makefile index 9d1b6601bbb5..766e78b9728e 100644 --- a/textproc/rubygem-kramdown1/Makefile +++ b/textproc/rubygem-kramdown1/Makefile @@ -1,28 +1,27 @@ PORTNAME= kramdown PORTVERSION= 1.17.0 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Yet-another-markdown-parser but fast, pure Ruby WWW= https://kramdown.gettalong.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING USES= cpe gem shebangfix -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= kramdown_project PORTSCOUT= limit:^1\. SHEBANG_FILES= benchmark/*.sh post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/kramdown .include diff --git a/textproc/rubygem-kramdown23/Makefile b/textproc/rubygem-kramdown23/Makefile index d644c9181368..38c30b8c3651 100644 --- a/textproc/rubygem-kramdown23/Makefile +++ b/textproc/rubygem-kramdown23/Makefile @@ -1,29 +1,28 @@ PORTNAME= kramdown PORTVERSION= 2.3.2 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 23 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Yet-another-markdown-parser but fast, pure Ruby WWW= https://kramdown.gettalong.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-rexml>=0:textproc/rubygem-rexml USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= kramdown_project PORTSCOUT= limit:^2\.3\. post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/kramdown .include diff --git a/textproc/rubygem-kwalify/Makefile b/textproc/rubygem-kwalify/Makefile index 5d4bca287ebe..80967fb7c630 100644 --- a/textproc/rubygem-kwalify/Makefile +++ b/textproc/rubygem-kwalify/Makefile @@ -1,19 +1,18 @@ PORTNAME= kwalify PORTVERSION= 0.7.2 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Parser, schema validator, and data binding tool for YAML and JSON WWW= http://www.kuwata-lab.com/kwalify/ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/kwalify .include diff --git a/textproc/rubygem-libxml-ruby/Makefile b/textproc/rubygem-libxml-ruby/Makefile index 67cd7a10e249..0f0f7da2084e 100644 --- a/textproc/rubygem-libxml-ruby/Makefile +++ b/textproc/rubygem-libxml-ruby/Makefile @@ -1,17 +1,16 @@ PORTNAME= libxml-ruby PORTVERSION= 3.2.4 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby language bindings for the GNOME Libxml2 XML toolkit WWW= https://xml4r.github.io/libxml-ruby/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem gnome USE_GNOME= libxml2 -USE_RUBY= yes .include diff --git a/textproc/rubygem-linguistics/Makefile b/textproc/rubygem-linguistics/Makefile index c9706b3043e0..0ae5ebcf9e97 100644 --- a/textproc/rubygem-linguistics/Makefile +++ b/textproc/rubygem-linguistics/Makefile @@ -1,23 +1,22 @@ PORTNAME= linguistics PORTVERSION= 2.1.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Framework for extending Ruby objects with linguistic methods WWW= https://deveiate.org/projects/Linguistics/ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-loggability>=0.11<1:textproc/rubygem-loggability USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= lib/linguistics.rb \ lib/linguistics/en/linkparser.rb .include diff --git a/textproc/rubygem-liquid-tag-parser/Makefile b/textproc/rubygem-liquid-tag-parser/Makefile index c8c03da52eca..9ec4d13ccd2c 100644 --- a/textproc/rubygem-liquid-tag-parser/Makefile +++ b/textproc/rubygem-liquid-tag-parser/Makefile @@ -1,24 +1,23 @@ PORTNAME= liquid-tag-parser PORTVERSION= 2.0.2 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Parse liquid tags easily WWW= https://github.com/envygeeks/liquid-tag-parser LICENSE= MIT RUN_DEPENDS= rubygem-extras>=0.3<1:devel/rubygem-extras \ rubygem-liquid4>=3.0<5.0:textproc/rubygem-liquid4 USES= gem -USE_RUBY= yes NO_ARCH= yes # Disable rdoc OPTIONS_EXCLUDE=DOCS .include diff --git a/textproc/rubygem-liquid-tag-parser1/Makefile b/textproc/rubygem-liquid-tag-parser1/Makefile index bbb744ca67c4..ec50a0f79088 100644 --- a/textproc/rubygem-liquid-tag-parser1/Makefile +++ b/textproc/rubygem-liquid-tag-parser1/Makefile @@ -1,27 +1,26 @@ PORTNAME= liquid-tag-parser PORTVERSION= 1.9.0 PORTREVISION= 4 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Parse liquid tags easily WWW= https://github.com/envygeeks/liquid-tag-parser LICENSE= MIT RUN_DEPENDS= rubygem-extras>=0.3<1:devel/rubygem-extras \ rubygem-liquid4>=3.0<5.0:textproc/rubygem-liquid4 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\. # Disable rdoc OPTIONS_EXCLUDE=DOCS .include diff --git a/textproc/rubygem-liquid/Makefile b/textproc/rubygem-liquid/Makefile index 4d9dabdb6db1..ff849057022b 100644 --- a/textproc/rubygem-liquid/Makefile +++ b/textproc/rubygem-liquid/Makefile @@ -1,18 +1,17 @@ PORTNAME= liquid PORTVERSION= 5.4.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Library for rendering safe templates WWW= https://shopify.github.io/liquid/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-liquid4/Makefile b/textproc/rubygem-liquid4/Makefile index 2f4e6f79a8e6..53dc1c766bbd 100644 --- a/textproc/rubygem-liquid4/Makefile +++ b/textproc/rubygem-liquid4/Makefile @@ -1,21 +1,20 @@ PORTNAME= liquid PORTVERSION= 4.0.3 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Library for rendering safe templates WWW= https://shopify.github.io/liquid/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^4\. .include diff --git a/textproc/rubygem-loggability/Makefile b/textproc/rubygem-loggability/Makefile index 6b1d2c04396e..90427dc5be1e 100644 --- a/textproc/rubygem-loggability/Makefile +++ b/textproc/rubygem-loggability/Makefile @@ -1,17 +1,16 @@ PORTNAME= loggability PORTVERSION= 0.18.2 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Composable logging system built on the standard Logger library WWW= https://hg.sr.ht/~ged/Loggability LICENSE= BSD3CLAUSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-loofah/Makefile b/textproc/rubygem-loofah/Makefile index 99908a0f541b..10e07aa245af 100644 --- a/textproc/rubygem-loofah/Makefile +++ b/textproc/rubygem-loofah/Makefile @@ -1,23 +1,22 @@ PORTNAME= loofah PORTVERSION= 2.19.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Library for manipulating HTML/XML documents and fragments WWW= https://github.com/flavorjones/loofah LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt RUN_DEPENDS= rubygem-crass>=1.0.2<1.1:www/rubygem-crass \ rubygem-nokogiri>=1.5.9:textproc/rubygem-nokogiri USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= loofah_project .include diff --git a/textproc/rubygem-loofah218/Makefile b/textproc/rubygem-loofah218/Makefile index 82d44060b80b..7831f3225e3b 100644 --- a/textproc/rubygem-loofah218/Makefile +++ b/textproc/rubygem-loofah218/Makefile @@ -1,24 +1,23 @@ PORTNAME= loofah PORTVERSION= 2.18.0 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 218 MAINTAINER= mfechner@FreeBSD.org COMMENT= Library for manipulating HTML/XML documents and fragments WWW= https://github.com/flavorjones/loofah LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt RUN_DEPENDS= rubygem-crass>=1.0.2<1.1:www/rubygem-crass \ rubygem-nokogiri>=1.5.9:textproc/rubygem-nokogiri USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= loofah_project .include diff --git a/textproc/rubygem-ltsv/Makefile b/textproc/rubygem-ltsv/Makefile index ed4c99a2d8ce..16f4c59cf70f 100644 --- a/textproc/rubygem-ltsv/Makefile +++ b/textproc/rubygem-ltsv/Makefile @@ -1,15 +1,14 @@ PORTNAME= ltsv PORTVERSION= 0.1.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ports@FreeBSD.org COMMENT= Parser / Dumper for LTSV WWW= https://github.com/condor/ltsv NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-markaby/Makefile b/textproc/rubygem-markaby/Makefile index 8fcc61a999d8..1979b17b0bf8 100644 --- a/textproc/rubygem-markaby/Makefile +++ b/textproc/rubygem-markaby/Makefile @@ -1,18 +1,17 @@ PORTNAME= markaby PORTVERSION= 0.9.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= HTML Markup as Ruby WWW= https://markaby.github.io/ LICENSE= MIT RUN_DEPENDS= rubygem-builder>=0:devel/rubygem-builder NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-mdl/Makefile b/textproc/rubygem-mdl/Makefile index ce844db618d1..b9b586ccf3b9 100644 --- a/textproc/rubygem-mdl/Makefile +++ b/textproc/rubygem-mdl/Makefile @@ -1,26 +1,25 @@ PORTNAME= mdl PORTVERSION= 0.11.0 PORTREVISION= 2 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= vvelox@vvelox.net COMMENT= Check markdown files and flag style issues WWW= https://github.com/markdownlint/markdownlint LICENSE= MIT RUN_DEPENDS= rubygem-kramdown>=2.3<3:textproc/rubygem-kramdown \ rubygem-kramdown-parser-gfm>=1.1<2:textproc/rubygem-kramdown-parser-gfm \ rubygem-mixlib-cli>=2.1.1<3:devel/rubygem-mixlib-cli \ rubygem-mixlib-config>=2.2.1<4:devel/rubygem-mixlib-config \ rubygem-mixlib-shellout>=0:devel/rubygem-mixlib-shellout USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/mdl .include diff --git a/textproc/rubygem-minima/Makefile b/textproc/rubygem-minima/Makefile index d4ca8ea8d115..7f9ac0fae2f7 100644 --- a/textproc/rubygem-minima/Makefile +++ b/textproc/rubygem-minima/Makefile @@ -1,22 +1,21 @@ PORTNAME= minima PORTVERSION= 2.5.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Beautiful, minimal theme for Jekyll WWW= https://github.com/jekyll/minima LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-jekyll>=3.5<5.0:www/rubygem-jekyll \ rubygem-jekyll-feed>=0.9<1:textproc/rubygem-jekyll-feed \ rubygem-jekyll-seo-tag>=2.1<3:www/rubygem-jekyll-seo-tag USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-multi_xml/Makefile b/textproc/rubygem-multi_xml/Makefile index a649f77bff76..67aaf44ce765 100644 --- a/textproc/rubygem-multi_xml/Makefile +++ b/textproc/rubygem-multi_xml/Makefile @@ -1,25 +1,24 @@ PORTNAME= multi_xml PORTVERSION= 0.6.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby library provide swappable XML backends WWW= https://github.com/sferik/multi_xml LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= erik_michaels-ober OPTIONS_DEFINE= NOKOGIRI NOKOGIRI_DESC= Use Nokogiri for parsing NOKOGIRI_RUN_DEPENDS= rubygem-nokogiri>=0:textproc/rubygem-nokogiri .include diff --git a/textproc/rubygem-nokogiri-diff/Makefile b/textproc/rubygem-nokogiri-diff/Makefile index e98ac19c27b4..cda74d72feb1 100644 --- a/textproc/rubygem-nokogiri-diff/Makefile +++ b/textproc/rubygem-nokogiri-diff/Makefile @@ -1,21 +1,20 @@ PORTNAME= nokogiri-diff PORTVERSION= 0.2.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Calculate the differences between two XML/HTML documents WWW= https://github.com/postmodern/nokogiri-diff LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-nokogiri>=1.5<2:textproc/rubygem-nokogiri \ rubygem-tdiff>=0.3.2<1:devel/rubygem-tdiff USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-nokogiri/Makefile b/textproc/rubygem-nokogiri/Makefile index 4a3e60d61567..14e5c2ce4b1a 100644 --- a/textproc/rubygem-nokogiri/Makefile +++ b/textproc/rubygem-nokogiri/Makefile @@ -1,35 +1,34 @@ PORTNAME= nokogiri PORTVERSION= 1.13.9 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= HTML, XML, SAX, and Reader parser WWW= https://nokogiri.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md BUILD_DEPENDS= ${RUN_DEPENDS} \ rubygem-mini_portile2>=2.8.0<2.9:devel/rubygem-mini_portile2 LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ libgpg-error.so:security/libgpg-error \ libxml2.so:textproc/libxml2 # Do not add mini_portile2 to RUN_DEPENDS. Read ext/nokogiri/extconf.rb # and https://lists.freebsd.org/pipermail/svn-ports-all/2019-March/209423.html RUN_DEPENDS= rubygem-pkg-config>=1.1.7:devel/rubygem-pkg-config \ rubygem-racc>=1.4<2:devel/rubygem-racc USES= cpe gem gnome pkgconfig gettext-runtime USE_GNOME= libxml2 libxslt -USE_RUBY= yes CONFIGURE_ARGS= --use-system-libraries PLIST_FILES= bin/nokogiri post-install: ${FIND} ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR} -name '*.o' -o -name '*.so' | ${XARGS} ${STRIP_CMD} ${RMDIR} ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/ports/ .include diff --git a/textproc/rubygem-nokogiri111/Makefile b/textproc/rubygem-nokogiri111/Makefile index d639863e7901..13a82e33bd11 100644 --- a/textproc/rubygem-nokogiri111/Makefile +++ b/textproc/rubygem-nokogiri111/Makefile @@ -1,36 +1,35 @@ PORTNAME= nokogiri PORTVERSION= 1.11.7 PORTREVISION= 2 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 111 MAINTAINER= ruby@FreeBSD.org COMMENT= HTML, XML, SAX, and Reader parser WWW= https://nokogiri.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md BUILD_DEPENDS= ${RUN_DEPENDS} LIB_DEPENDS= libgcrypt.so:security/libgcrypt \ libgpg-error.so:security/libgpg-error # Do not add mini_portile2 to RUN_DEPENDS. Read ext/nokogiri/extconf.rb # and https://lists.freebsd.org/pipermail/svn-ports-all/2019-March/209423.html RUN_DEPENDS= rubygem-pkg-config>=1.1.7:devel/rubygem-pkg-config \ rubygem-racc>=1.4<2:devel/rubygem-racc USES= cpe gem gnome pkgconfig gettext-runtime USE_GNOME= libxml2 libxslt -USE_RUBY= yes CONFIGURE_ARGS= --use-system-libraries post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/nokogiri ${FIND} ${STAGEDIR}${PREFIX}/${GEMS_BASE_DIR} -name '*.o' -o -name '*.so' | ${XARGS} ${STRIP_CMD} ${RMDIR} ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/ports/ PORTSCOUT= limit:^1\.11\. .include diff --git a/textproc/rubygem-nokogumbo/Makefile b/textproc/rubygem-nokogumbo/Makefile index 2ff3d329cb70..cfb7e08486de 100644 --- a/textproc/rubygem-nokogumbo/Makefile +++ b/textproc/rubygem-nokogumbo/Makefile @@ -1,20 +1,19 @@ PORTNAME= nokogumbo PORTVERSION= 2.0.5 PORTREVISION= 2 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Nokogiri interface to the Gumbo HTML5 parser WWW= https://github.com/rubys/nokogumbo LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-nokogiri>=1.8.4<2:textproc/rubygem-nokogiri USES= gem gnome pkgconfig USE_GNOME= libxml2 -USE_RUBY= yes .include diff --git a/textproc/rubygem-octopress-escape-code/Makefile b/textproc/rubygem-octopress-escape-code/Makefile index d5f27de659b4..11ed90addd11 100644 --- a/textproc/rubygem-octopress-escape-code/Makefile +++ b/textproc/rubygem-octopress-escape-code/Makefile @@ -1,21 +1,20 @@ PORTNAME= octopress-escape-code PORTVERSION= 2.1.1 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Adds escape sequences for code blocks in Jekyll WWW= https://github.com/octopress/escape-code LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-jekyll3>=3.0<4:www/rubygem-jekyll3 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-opml/Makefile b/textproc/rubygem-opml/Makefile index 45f8c1b7bf69..606d3a44dfaf 100644 --- a/textproc/rubygem-opml/Makefile +++ b/textproc/rubygem-opml/Makefile @@ -1,15 +1,14 @@ PORTNAME= opml PORTVERSION= 1.0.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= markun@onohara.to COMMENT= Simple wrapper for parsing OPML files WWW= https://rubygems.org/gems/opml NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-org-ruby/Makefile b/textproc/rubygem-org-ruby/Makefile index fe54c98b9d00..528a4fa14a36 100644 --- a/textproc/rubygem-org-ruby/Makefile +++ b/textproc/rubygem-org-ruby/Makefile @@ -1,21 +1,20 @@ PORTNAME= org-ruby PORTVERSION= 0.9.12 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Org mode parser written in Ruby WWW= https://github.com/wallyqs/org-ruby LICENSE= MIT RUN_DEPENDS= rubygem-rubypants>=0.2<1:textproc/rubygem-rubypants USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/org-ruby .include diff --git a/textproc/rubygem-ox/Makefile b/textproc/rubygem-ox/Makefile index 1b8294823697..3049843857e0 100644 --- a/textproc/rubygem-ox/Makefile +++ b/textproc/rubygem-ox/Makefile @@ -1,17 +1,16 @@ PORTNAME= ox PORTVERSION= 2.14.11 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Speed-optimized XML parser and object serializer for Ruby WWW= https://ohler.com/ox/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes .include diff --git a/textproc/rubygem-parse-cron/Makefile b/textproc/rubygem-parse-cron/Makefile index 7c3257f165cb..663a3e1fd46b 100644 --- a/textproc/rubygem-parse-cron/Makefile +++ b/textproc/rubygem-parse-cron/Makefile @@ -1,18 +1,17 @@ PORTNAME= parse-cron PORTVERSION= 0.1.4 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Parse cron expressions and calculates the next occurence WWW= https://github.com/siebertm/parse-cron LICENSE= MIT LICENSE_FILE= ${WRKSRC}/License USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-parslet/Makefile b/textproc/rubygem-parslet/Makefile index 595b7dac2024..28c8dcaff52c 100644 --- a/textproc/rubygem-parslet/Makefile +++ b/textproc/rubygem-parslet/Makefile @@ -1,18 +1,17 @@ PORTNAME= parslet PORTVERSION= 2.0.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Parser construction library with great error reporting in Ruby WWW= https://kschiess.github.io/parslet/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-parslet1/Makefile b/textproc/rubygem-parslet1/Makefile index 5ca4a49c3ef8..0c644ea68bb3 100644 --- a/textproc/rubygem-parslet1/Makefile +++ b/textproc/rubygem-parslet1/Makefile @@ -1,21 +1,20 @@ PORTNAME= parslet PORTVERSION= 1.8.2 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Parser construction library with great error reporting in Ruby WWW= https://kschiess.github.io/parslet/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\. .include diff --git a/textproc/rubygem-phone/Makefile b/textproc/rubygem-phone/Makefile index c50ff963780b..f9852c93c7f5 100644 --- a/textproc/rubygem-phone/Makefile +++ b/textproc/rubygem-phone/Makefile @@ -1,17 +1,16 @@ PORTNAME= phone PORTVERSION= 1.2.3 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= douglas@douglasthrift.net COMMENT= Phone number parsing, validation and formatting WWW= https://github.com/carr/phone LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-pretty-xml/Makefile b/textproc/rubygem-pretty-xml/Makefile index af4ccf898ed5..989a21ee0ff4 100644 --- a/textproc/rubygem-pretty-xml/Makefile +++ b/textproc/rubygem-pretty-xml/Makefile @@ -1,18 +1,17 @@ PORTNAME= pretty-xml PORTVERSION= 0.2.2 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Print well formatted XML WWW= https://github.com/jrobertson/pretty-xml LICENSE= MIT RUN_DEPENDS= rubygem-nokogiri>=1.6.7.2:textproc/rubygem-nokogiri NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-psych/Makefile b/textproc/rubygem-psych/Makefile index de7fd45b1902..7127c6fb8f3d 100644 --- a/textproc/rubygem-psych/Makefile +++ b/textproc/rubygem-psych/Makefile @@ -1,19 +1,18 @@ PORTNAME= psych PORTVERSION= 4.0.6 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= YAML parser and emitter WWW= https://github.com/ruby/psych LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libyaml.so:textproc/libyaml RUN_DEPENDS= rubygem-stringio>=0:devel/rubygem-stringio USES= gem -USE_RUBY= yes .include diff --git a/textproc/rubygem-puppet-strings/Makefile b/textproc/rubygem-puppet-strings/Makefile index 7d55de13b060..2d97dccc8d80 100644 --- a/textproc/rubygem-puppet-strings/Makefile +++ b/textproc/rubygem-puppet-strings/Makefile @@ -1,33 +1,32 @@ PORTNAME= puppet-strings PORTVERSION= 3.0.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= puppet@FreeBSD.org COMMENT= Puppet documentation extraction and presentation tool WWW= https://github.com/puppetlabs/puppet-strings LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rgen>=0:devel/rubygem-rgen \ rubygem-yard>=0.9.5<0.10:textproc/rubygem-yard USES= gem -USE_RUBY= yes NO_ARCH= yes OPTIONS_SINGLE= PUPPET OPTIONS_SINGLE_PUPPET=PUPPET5 PUPPET6 PUPPET7 OPTIONS_DEFAULT=PUPPET7 PUPPET5_DESC= Depend on sysutils/puppet5 PUPPET6_DESC= Depend on sysutils/puppet6 PUPPET7_DESC= Depend on sysutils/puppet7 PUPPET5_RUN_DEPENDS=puppet:sysutils/puppet5 PUPPET6_RUN_DEPENDS=puppet:sysutils/puppet6 PUPPET7_RUN_DEPENDS=puppet:sysutils/puppet7 .include diff --git a/textproc/rubygem-raabro/Makefile b/textproc/rubygem-raabro/Makefile index 386c9a741803..84d4c8358034 100644 --- a/textproc/rubygem-raabro/Makefile +++ b/textproc/rubygem-raabro/Makefile @@ -1,18 +1,17 @@ PORTNAME= raabro PORTVERSION= 1.4.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Dumb PEG parser library WWW= https://github.com/floraison/raabro LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-rails-dom-testing-rails5/Makefile b/textproc/rubygem-rails-dom-testing-rails5/Makefile index 726adc888040..507965f28701 100644 --- a/textproc/rubygem-rails-dom-testing-rails5/Makefile +++ b/textproc/rubygem-rails-dom-testing-rails5/Makefile @@ -1,23 +1,22 @@ PORTNAME= rails-dom-testing PORTVERSION= 2.0.3 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Analyse and compare DOMs using Nokogiri WWW= https://github.com/rails/rails-dom-testing LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport5>=4.2.0:devel/rubygem-activesupport5 \ rubygem-nokogiri>=1.6:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-rails-dom-testing-rails50/Makefile b/textproc/rubygem-rails-dom-testing-rails50/Makefile index 5dd52bf238c5..52a7ce5a6aa0 100644 --- a/textproc/rubygem-rails-dom-testing-rails50/Makefile +++ b/textproc/rubygem-rails-dom-testing-rails50/Makefile @@ -1,23 +1,22 @@ PORTNAME= rails-dom-testing PORTVERSION= 2.0.3 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Analyse and compare DOMs using Nokogiri WWW= https://github.com/rails/rails-dom-testing LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport50>=4.2.0:devel/rubygem-activesupport50 \ rubygem-nokogiri>=1.6:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-rails-dom-testing-rails52/Makefile b/textproc/rubygem-rails-dom-testing-rails52/Makefile index fee706f997e5..267c5c804e0d 100644 --- a/textproc/rubygem-rails-dom-testing-rails52/Makefile +++ b/textproc/rubygem-rails-dom-testing-rails52/Makefile @@ -1,22 +1,21 @@ PORTNAME= rails-dom-testing PORTVERSION= 2.0.3 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Analyse and compare DOMs using Nokogiri WWW= https://github.com/rails/rails-dom-testing LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport52>=4.2.0:devel/rubygem-activesupport52 \ rubygem-nokogiri>=1.6:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-rails-dom-testing-rails60/Makefile b/textproc/rubygem-rails-dom-testing-rails60/Makefile index 6379be9573a7..f93699cde5a3 100644 --- a/textproc/rubygem-rails-dom-testing-rails60/Makefile +++ b/textproc/rubygem-rails-dom-testing-rails60/Makefile @@ -1,22 +1,21 @@ PORTNAME= rails-dom-testing PORTVERSION= 2.0.3 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Analyse and compare DOMs using Nokogiri WWW= https://github.com/rails/rails-dom-testing LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport60>=4.2.0:devel/rubygem-activesupport60 \ rubygem-nokogiri>=1.6:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-rails-dom-testing-rails61/Makefile b/textproc/rubygem-rails-dom-testing-rails61/Makefile index b6495ea22f34..ef21e12077f0 100644 --- a/textproc/rubygem-rails-dom-testing-rails61/Makefile +++ b/textproc/rubygem-rails-dom-testing-rails61/Makefile @@ -1,22 +1,21 @@ PORTNAME= rails-dom-testing PORTVERSION= 2.0.3 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Analyse and compare DOMs using Nokogiri WWW= https://github.com/rails/rails-dom-testing LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport61>=4.2.0:devel/rubygem-activesupport61 \ rubygem-nokogiri>=1.6:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-rails-dom-testing-rails70/Makefile b/textproc/rubygem-rails-dom-testing-rails70/Makefile index dbe8fb9ba014..ee3f03e90deb 100644 --- a/textproc/rubygem-rails-dom-testing-rails70/Makefile +++ b/textproc/rubygem-rails-dom-testing-rails70/Makefile @@ -1,22 +1,21 @@ PORTNAME= rails-dom-testing PORTVERSION= 2.0.3 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails70 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Analyse and compare DOMs using Nokogiri WWW= https://github.com/rails/rails-dom-testing LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport70>=4.2.0:devel/rubygem-activesupport70 \ rubygem-nokogiri>=1.6:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-rails-dom-testing/Makefile b/textproc/rubygem-rails-dom-testing/Makefile index e102e63393fa..40f8e39d04ee 100644 --- a/textproc/rubygem-rails-dom-testing/Makefile +++ b/textproc/rubygem-rails-dom-testing/Makefile @@ -1,21 +1,20 @@ PORTNAME= rails-dom-testing PORTVERSION= 2.0.3 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Analyse and compare DOMs using Nokogiri WWW= https://github.com/rails/rails-dom-testing LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport4>=4.2.0:devel/rubygem-activesupport4 \ rubygem-nokogiri>=1.6:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-rails-dom-testing1/Makefile b/textproc/rubygem-rails-dom-testing1/Makefile index 2b63210c3fb2..41a4e0616354 100644 --- a/textproc/rubygem-rails-dom-testing1/Makefile +++ b/textproc/rubygem-rails-dom-testing1/Makefile @@ -1,25 +1,24 @@ PORTNAME= rails-dom-testing PORTVERSION= 1.0.9 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= ruby@FreeBSD.org COMMENT= Analyse and compare DOMs using Nokogiri WWW= https://github.com/rails/rails-dom-testing LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activesupport4>=4.2.0:devel/rubygem-activesupport4 \ rubygem-nokogiri>=1.6:textproc/rubygem-nokogiri \ rubygem-rails-deprecated_sanitizer>=1.0.1:devel/rubygem-rails-deprecated_sanitizer USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\. .include diff --git a/textproc/rubygem-rails-html-sanitizer/Makefile b/textproc/rubygem-rails-html-sanitizer/Makefile index fa6bb5978d02..fa5b9b8f24ea 100644 --- a/textproc/rubygem-rails-html-sanitizer/Makefile +++ b/textproc/rubygem-rails-html-sanitizer/Makefile @@ -1,23 +1,22 @@ PORTNAME= rails-html-sanitizer PORTVERSION= 1.4.3 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Sanitize HTML fragments in Rails applications WWW= https://github.com/rails/rails-html-sanitizer LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-loofah>=2.3<3:textproc/rubygem-loofah USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= html_sanitizer .include diff --git a/textproc/rubygem-rak/Makefile b/textproc/rubygem-rak/Makefile index 12155983da7d..c3c0245adc26 100644 --- a/textproc/rubygem-rak/Makefile +++ b/textproc/rubygem-rak/Makefile @@ -1,20 +1,19 @@ PORTNAME= rak PORTVERSION= 1.4 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Grep replacement in pure Ruby WWW= https://github.com/danlucraft/rak LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/rak .include diff --git a/textproc/rubygem-rchardet/Makefile b/textproc/rubygem-rchardet/Makefile index e58740e288ca..1951df24f40d 100644 --- a/textproc/rubygem-rchardet/Makefile +++ b/textproc/rubygem-rchardet/Makefile @@ -1,16 +1,15 @@ PORTNAME= rchardet PORTVERSION= 1.8.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Character encoding auto-detection in Ruby WWW= https://github.com/jmhodges/rchardet LICENSE= LGPL21 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-rdiscount/Makefile b/textproc/rubygem-rdiscount/Makefile index 05cc8ed70f1d..a85fee354d34 100644 --- a/textproc/rubygem-rdiscount/Makefile +++ b/textproc/rubygem-rdiscount/Makefile @@ -1,18 +1,17 @@ PORTNAME= rdiscount PORTVERSION= 2.2.0.2 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Fast Markdown converter for ruby based on discount WWW= https://dafoster.net/projects/rdiscount/ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/COPYING USES= gem -USE_RUBY= yes PLIST_FILES= bin/rdiscount .include diff --git a/textproc/rubygem-rdtool/Makefile b/textproc/rubygem-rdtool/Makefile index eeba3fdedd54..0f74585bc380 100644 --- a/textproc/rubygem-rdtool/Makefile +++ b/textproc/rubygem-rdtool/Makefile @@ -1,23 +1,22 @@ PORTNAME= rdtool PORTVERSION= 0.6.38 PORTREVISION= 3 CATEGORIES= textproc ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= RD to HTML/man/etc. converter (RD is to Ruby as POD is to Perl) WWW= https://github.com/uwabami/rdtool LICENSE= GPLv2 GPLv3 RUBY LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem shebangfix SHEBANG_FILES= bin/rd2 bin/rdswap.rb ruby_OLD_CMD= /usr/bin/ruby1.9.1 PLIST_FILES= bin/rd2 bin/rdswap.rb .include diff --git a/textproc/rubygem-redcarpet/Makefile b/textproc/rubygem-redcarpet/Makefile index 5d640807ee88..3c461fb0189c 100644 --- a/textproc/rubygem-redcarpet/Makefile +++ b/textproc/rubygem-redcarpet/Makefile @@ -1,19 +1,18 @@ PORTNAME= redcarpet PORTVERSION= 3.5.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Fast, safe and extensible Markdown to (X)HTML parser WWW= https://github.com/vmg/redcarpet LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes PLIST_FILES= bin/redcarpet .include diff --git a/textproc/rubygem-regexp_parser/Makefile b/textproc/rubygem-regexp_parser/Makefile index 54eddcf64ca6..7baae02362b3 100644 --- a/textproc/rubygem-regexp_parser/Makefile +++ b/textproc/rubygem-regexp_parser/Makefile @@ -1,18 +1,17 @@ PORTNAME= regexp_parser PORTVERSION= 2.6.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Tokenizing, lexinf and parsing Ruby regular expressions WWW= https://github.com/ammar/regexp_parser LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-regexp_property_values/Makefile b/textproc/rubygem-regexp_property_values/Makefile index 8b90ce135604..4edc2e85d03e 100644 --- a/textproc/rubygem-regexp_property_values/Makefile +++ b/textproc/rubygem-regexp_property_values/Makefile @@ -1,16 +1,15 @@ PORTNAME= regexp_property_values PORTVERSION= 1.0.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Display which property value regexp support WWW= https://github.com/jaynetics/regexp_property_values LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include diff --git a/textproc/rubygem-representable/Makefile b/textproc/rubygem-representable/Makefile index 1cdd24aeffc3..fcd0160a3331 100644 --- a/textproc/rubygem-representable/Makefile +++ b/textproc/rubygem-representable/Makefile @@ -1,22 +1,21 @@ PORTNAME= representable PORTVERSION= 3.2.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Maps Ruby objects to documents and back WWW= https://github.com/trailblazer/representable LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-declarative>=0<0.1.0:devel/rubygem-declarative \ rubygem-trailblazer-option>=0.1.1<0.2.0:devel/rubygem-trailblazer-option \ rubygem-uber>=0<0.2.0:devel/rubygem-uber USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-reverse_markdown/Makefile b/textproc/rubygem-reverse_markdown/Makefile index 07936b20cce7..025502bb5da0 100644 --- a/textproc/rubygem-reverse_markdown/Makefile +++ b/textproc/rubygem-reverse_markdown/Makefile @@ -1,21 +1,20 @@ PORTNAME= reverse_markdown PORTVERSION= 1.4.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= mose@mose.com COMMENT= Convert html code into markdown WWW= https://github.com/xijo/reverse_markdown LICENSE= MIT RUN_DEPENDS= rubygem-nokogiri>=0:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/reverse_markdown .include diff --git a/textproc/rubygem-rexml/Makefile b/textproc/rubygem-rexml/Makefile index 280dc61477e6..2ecfc96b368e 100644 --- a/textproc/rubygem-rexml/Makefile +++ b/textproc/rubygem-rexml/Makefile @@ -1,20 +1,19 @@ PORTNAME= rexml PORTVERSION= 3.2.5 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= XML toolkit for Ruby WWW= https://github.com/ruby/rexml LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= ruby-lang .include diff --git a/textproc/rubygem-ri_cal/Makefile b/textproc/rubygem-ri_cal/Makefile index 0fc1f9609832..5c019dc5ed40 100644 --- a/textproc/rubygem-ri_cal/Makefile +++ b/textproc/rubygem-ri_cal/Makefile @@ -1,19 +1,18 @@ PORTNAME= ri_cal PORTVERSION= 0.8.8 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library for parsing, and generating iCalendar data WWW= https://github.com/rubyredrick/ri_cal LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/ri_cal .include diff --git a/textproc/rubygem-rly/Makefile b/textproc/rubygem-rly/Makefile index 6b95e16f7ea8..0f5b6ab2e525 100644 --- a/textproc/rubygem-rly/Makefile +++ b/textproc/rubygem-rly/Makefile @@ -1,18 +1,17 @@ PORTNAME= rly PORTVERSION= 0.2.3 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby implementation of lex and yacc WWW= https://github.com/farcaller/rly LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-rmmseg-cpp/Makefile b/textproc/rubygem-rmmseg-cpp/Makefile index 85c50e8fba5c..1bd8627f150f 100644 --- a/textproc/rubygem-rmmseg-cpp/Makefile +++ b/textproc/rubygem-rmmseg-cpp/Makefile @@ -1,19 +1,18 @@ PORTNAME= rmmseg-cpp PORTVERSION= 0.2.9 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= High performance Chinese word segmentation utility WWW= http://rmmseg-cpp.rubyforge.org LICENSE= MIT -USE_RUBY= yes USES= gem shebangfix SHEBANG_FILES= misc/convert.rb PLIST_FILES= bin/rmmseg .include diff --git a/textproc/rubygem-ronn/Makefile b/textproc/rubygem-ronn/Makefile index 0eb544c5a782..c903830014d3 100644 --- a/textproc/rubygem-ronn/Makefile +++ b/textproc/rubygem-ronn/Makefile @@ -1,24 +1,23 @@ PORTNAME= ronn PORTVERSION= 0.7.3 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Builds manuals WWW= https://rtomayko.github.io/ronn/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-hpricot>=0.8.2:www/rubygem-hpricot \ rubygem-mustache>=0.7.0:devel/rubygem-mustache \ rubygem-rdiscount>=1.5.8:textproc/rubygem-rdiscount USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/ronn .include diff --git a/textproc/rubygem-rouge/Makefile b/textproc/rubygem-rouge/Makefile index ecb9f27f2a5c..634a94a43dda 100644 --- a/textproc/rubygem-rouge/Makefile +++ b/textproc/rubygem-rouge/Makefile @@ -1,21 +1,20 @@ PORTNAME= rouge PORTVERSION= 3.30.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple, easy-to-extend drop-in replacement for pygments WWW= https://github.com/jneen/rouge LICENSE= BSD2CLAUSE MIT LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rougify .include diff --git a/textproc/rubygem-rouge329/Makefile b/textproc/rubygem-rouge329/Makefile index e03b956071c6..38601a7014fd 100644 --- a/textproc/rubygem-rouge329/Makefile +++ b/textproc/rubygem-rouge329/Makefile @@ -1,25 +1,24 @@ PORTNAME= rouge PORTVERSION= 3.29.0 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 329 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple, easy-to-extend drop-in replacement for pygments WWW= https://github.com/jneen/rouge LICENSE= BSD2CLAUSE MIT LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^3\.29\. post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/rougify .include diff --git a/textproc/rubygem-rttool/Makefile b/textproc/rubygem-rttool/Makefile index a02f407556dd..e475ad3529f7 100644 --- a/textproc/rubygem-rttool/Makefile +++ b/textproc/rubygem-rttool/Makefile @@ -1,20 +1,19 @@ PORTNAME= rttool PORTVERSION= 1.0.3.0 CATEGORIES= textproc ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= RT into HTML and plain text converter WWW= https://rubygems.org/gems/rttool LICENSE= GPLv2 RUBY LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rdrt2 bin/rt2 .include diff --git a/textproc/rubygem-ruby-augeas/Makefile b/textproc/rubygem-ruby-augeas/Makefile index c30df39f277b..8b9d2a02c8b9 100644 --- a/textproc/rubygem-ruby-augeas/Makefile +++ b/textproc/rubygem-ruby-augeas/Makefile @@ -1,20 +1,19 @@ PORTNAME= ruby-augeas PORTVERSION= 0.5.0 PORTREVISION= 4 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby bindings for Augeas WWW= https://augeas.net/ LICENSE= LGPL21 LIB_DEPENDS= libaugeas.so:textproc/augeas CONFIGURE_ARGS= --with-opt-include="${LOCALBASE}/include/libxml2" USE_GNOME= libxml2 -USE_RUBY= yes USES= gem gnome pkgconfig .include diff --git a/textproc/rubygem-ruby-xslt/Makefile b/textproc/rubygem-ruby-xslt/Makefile index 3ca54cdf1f7e..8a91c01741be 100644 --- a/textproc/rubygem-ruby-xslt/Makefile +++ b/textproc/rubygem-ruby-xslt/Makefile @@ -1,18 +1,17 @@ PORTNAME= ruby-xslt PORTVERSION= 0.9.10 PORTREVISION= 2 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= XSLT processor in pure Ruby WWW= https://github.com/glejeune/ruby-xslt LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/COPYING USE_GNOME= libxslt -USE_RUBY= yes USES= gem gnome .include diff --git a/textproc/rubygem-ruby_expect/Makefile b/textproc/rubygem-ruby_expect/Makefile index 1c6005d4ff8a..5d9b9e5bca14 100644 --- a/textproc/rubygem-ruby_expect/Makefile +++ b/textproc/rubygem-ruby_expect/Makefile @@ -1,20 +1,19 @@ PORTNAME= ruby_expect PORTVERSION= 1.7.5 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple expect implementation WWW= https://github.com/abates/ruby_expect LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= bin/setup .include diff --git a/textproc/rubygem-rubypants/Makefile b/textproc/rubygem-rubypants/Makefile index 29be4f0e6943..754ab7514f11 100644 --- a/textproc/rubygem-rubypants/Makefile +++ b/textproc/rubygem-rubypants/Makefile @@ -1,17 +1,16 @@ PORTNAME= rubypants PORTVERSION= 0.7.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Translates ASCII into smart typographic punctuation HTML entities WWW= https://github.com/jmcnevin/rubypants LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-rugments/Makefile b/textproc/rubygem-rugments/Makefile index 1a393ce4e6e1..95c4c7d3d2bf 100644 --- a/textproc/rubygem-rugments/Makefile +++ b/textproc/rubygem-rugments/Makefile @@ -1,19 +1,18 @@ PORTNAME= rugments DISTVERSION= 1.0.0.beta8 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple, easy to extend drop in replacement for pygments WWW= https://github.com/rumpelsepp/rugments LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/rugmentize .include diff --git a/textproc/rubygem-sanitize/Makefile b/textproc/rubygem-sanitize/Makefile index 57a11528939f..8a30fc101fef 100644 --- a/textproc/rubygem-sanitize/Makefile +++ b/textproc/rubygem-sanitize/Makefile @@ -1,22 +1,21 @@ PORTNAME= sanitize PORTVERSION= 6.0.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Whitelist based HTML sanitizer WWW= https://github.com/rgrove/sanitize LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-crass>=1.0.2<1.1:www/rubygem-crass \ rubygem-nokogiri>=1.12.0:textproc/rubygem-nokogiri USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-sass-listen/Makefile b/textproc/rubygem-sass-listen/Makefile index 9472bfa6f5ca..6d668c27fc98 100644 --- a/textproc/rubygem-sass-listen/Makefile +++ b/textproc/rubygem-sass-listen/Makefile @@ -1,21 +1,20 @@ PORTNAME= sass-listen PORTVERSION= 4.0.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Listens to file modifications WWW= https://github.com/sass/listen LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-rb-fsevent>=0.9.4<1:devel/rubygem-rb-fsevent \ rubygem-rb-inotify>=0.9.7<1:devel/rubygem-rb-inotify USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-sass-rails-rails4/Makefile b/textproc/rubygem-sass-rails-rails4/Makefile index fb5b4d1f5f2c..138eedcc8c0a 100644 --- a/textproc/rubygem-sass-rails-rails4/Makefile +++ b/textproc/rubygem-sass-rails-rails4/Makefile @@ -1,21 +1,20 @@ PORTNAME= sass-rails PORTVERSION= 6.0.0 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails4 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Sass adapter for the Rails asset pipeline WWW= https://github.com/rails/sass-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-sassc-rails-rails4>=2.1.1<3:textproc/rubygem-sassc-rails-rails4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-sass-rails-rails5/Makefile b/textproc/rubygem-sass-rails-rails5/Makefile index 653ef3043787..183df60fe0a3 100644 --- a/textproc/rubygem-sass-rails-rails5/Makefile +++ b/textproc/rubygem-sass-rails-rails5/Makefile @@ -1,21 +1,20 @@ PORTNAME= sass-rails PORTVERSION= 6.0.0 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Sass adapter for the Rails asset pipeline WWW= https://github.com/rails/sass-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-sassc-rails-rails5>=2.1.1<3:textproc/rubygem-sassc-rails-rails5 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-sass-rails-rails50/Makefile b/textproc/rubygem-sass-rails-rails50/Makefile index 38c8774ec927..6425adcea7b8 100644 --- a/textproc/rubygem-sass-rails-rails50/Makefile +++ b/textproc/rubygem-sass-rails-rails50/Makefile @@ -1,21 +1,20 @@ PORTNAME= sass-rails PORTVERSION= 6.0.0 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Sass adapter for the Rails asset pipeline WWW= https://github.com/rails/sass-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-sassc-rails-rails50>=2.1.1<3:textproc/rubygem-sassc-rails-rails50 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-sass-rails-rails52/Makefile b/textproc/rubygem-sass-rails-rails52/Makefile index 7c295da1f7fd..3d0ace8f819d 100644 --- a/textproc/rubygem-sass-rails-rails52/Makefile +++ b/textproc/rubygem-sass-rails-rails52/Makefile @@ -1,21 +1,20 @@ PORTNAME= sass-rails PORTVERSION= 6.0.0 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Sass adapter for the Rails asset pipeline WWW= https://github.com/rails/sass-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-sassc-rails-rails52>=2.1.1<3:textproc/rubygem-sassc-rails-rails52 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-sass-rails-rails60/Makefile b/textproc/rubygem-sass-rails-rails60/Makefile index 109e1ad27c14..792a81785e21 100644 --- a/textproc/rubygem-sass-rails-rails60/Makefile +++ b/textproc/rubygem-sass-rails-rails60/Makefile @@ -1,21 +1,20 @@ PORTNAME= sass-rails PORTVERSION= 6.0.0 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Sass adapter for the Rails asset pipeline WWW= https://github.com/rails/sass-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-sassc-rails-rails60>=2.1.1<3:textproc/rubygem-sassc-rails-rails60 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-sass-rails-rails61/Makefile b/textproc/rubygem-sass-rails-rails61/Makefile index b8c73a7ecd1e..758671c8368c 100644 --- a/textproc/rubygem-sass-rails-rails61/Makefile +++ b/textproc/rubygem-sass-rails-rails61/Makefile @@ -1,21 +1,20 @@ PORTNAME= sass-rails PORTVERSION= 6.0.0 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Sass adapter for the Rails asset pipeline WWW= https://github.com/rails/sass-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-sassc-rails-rails61>=2.1.1<3:textproc/rubygem-sassc-rails-rails61 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-sass-rails-rails70/Makefile b/textproc/rubygem-sass-rails-rails70/Makefile index 5d5dfd7a792a..54d4856aa58f 100644 --- a/textproc/rubygem-sass-rails-rails70/Makefile +++ b/textproc/rubygem-sass-rails-rails70/Makefile @@ -1,21 +1,20 @@ PORTNAME= sass-rails PORTVERSION= 6.0.0 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails70 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Sass adapter for the Rails asset pipeline WWW= https://github.com/rails/sass-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-sassc-rails-rails70>=2.1.1<3:textproc/rubygem-sassc-rails-rails70 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-sass/Makefile b/textproc/rubygem-sass/Makefile index 1e7652116483..0af50e0324b6 100644 --- a/textproc/rubygem-sass/Makefile +++ b/textproc/rubygem-sass/Makefile @@ -1,24 +1,23 @@ PORTNAME= sass PORTVERSION= 3.7.4 CATEGORIES= textproc ruby MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Sass is an extension of CSS3 WWW= https://sass-lang.com/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-sass-listen>=4.0.0<4.1:textproc/rubygem-sass-listen USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/sass bin/sass-convert bin/scss SHEBANG_FILES= extra/sass-spec-ref.sh .include diff --git a/textproc/rubygem-sassc-rails-rails4/Makefile b/textproc/rubygem-sassc-rails-rails4/Makefile index 544318c3864a..ff60f998afd0 100644 --- a/textproc/rubygem-sassc-rails-rails4/Makefile +++ b/textproc/rubygem-sassc-rails-rails4/Makefile @@ -1,26 +1,25 @@ PORTNAME= sassc-rails PORTVERSION= 2.1.2 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails4 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Integrate SassC-Ruby into Rails WWW= https://github.com/sass/sassc-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-railties4>=4.0.0:www/rubygem-railties4 \ rubygem-sassc>=2.0:textproc/rubygem-sassc \ rubygem-sprockets-rails-rails4>=0:devel/rubygem-sprockets-rails-rails4 \ rubygem-sprockets3>=3.0:devel/rubygem-sprockets3 \ rubygem-tilt>=0:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-sassc-rails-rails5/Makefile b/textproc/rubygem-sassc-rails-rails5/Makefile index 9d87a715aab1..4b90677e6244 100644 --- a/textproc/rubygem-sassc-rails-rails5/Makefile +++ b/textproc/rubygem-sassc-rails-rails5/Makefile @@ -1,26 +1,25 @@ PORTNAME= sassc-rails PORTVERSION= 2.1.2 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Integrate SassC-Ruby into Rails WWW= https://github.com/sass/sassc-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-railties5>=4.0.0:www/rubygem-railties5 \ rubygem-sassc>=2.0:textproc/rubygem-sassc \ rubygem-sprockets-rails-rails5>=0:devel/rubygem-sprockets-rails-rails5 \ rubygem-sprockets3>=3.0:devel/rubygem-sprockets3 \ rubygem-tilt>=0:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-sassc-rails-rails50/Makefile b/textproc/rubygem-sassc-rails-rails50/Makefile index 04a85a571b9e..645156ba2c3a 100644 --- a/textproc/rubygem-sassc-rails-rails50/Makefile +++ b/textproc/rubygem-sassc-rails-rails50/Makefile @@ -1,26 +1,25 @@ PORTNAME= sassc-rails PORTVERSION= 2.1.2 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Integrate SassC-Ruby into Rails WWW= https://github.com/sass/sassc-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-railties50>=4.0.0:www/rubygem-railties50 \ rubygem-sassc>=2.0:textproc/rubygem-sassc \ rubygem-sprockets-rails-rails50>=0:devel/rubygem-sprockets-rails-rails50 \ rubygem-sprockets3>=3.0:devel/rubygem-sprockets3 \ rubygem-tilt>=0:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-sassc-rails-rails52/Makefile b/textproc/rubygem-sassc-rails-rails52/Makefile index 84032146a743..2df0c02aa976 100644 --- a/textproc/rubygem-sassc-rails-rails52/Makefile +++ b/textproc/rubygem-sassc-rails-rails52/Makefile @@ -1,26 +1,25 @@ PORTNAME= sassc-rails PORTVERSION= 2.1.2 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Integrate SassC-Ruby into Rails WWW= https://github.com/sass/sassc-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-railties52>=4.0.0:www/rubygem-railties52 \ rubygem-sassc>=2.0:textproc/rubygem-sassc \ rubygem-sprockets-rails-rails52>=0:devel/rubygem-sprockets-rails-rails52 \ rubygem-sprockets3>=3.0:devel/rubygem-sprockets3 \ rubygem-tilt>=0:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-sassc-rails-rails60/Makefile b/textproc/rubygem-sassc-rails-rails60/Makefile index e65347baa492..848a1e64f5d9 100644 --- a/textproc/rubygem-sassc-rails-rails60/Makefile +++ b/textproc/rubygem-sassc-rails-rails60/Makefile @@ -1,26 +1,25 @@ PORTNAME= sassc-rails PORTVERSION= 2.1.2 PORTREVISION= 2 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Integrate SassC-Ruby into Rails WWW= https://github.com/sass/sassc-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-railties60>=4.0.0:www/rubygem-railties60 \ rubygem-sassc22>=2.0:textproc/rubygem-sassc22 \ rubygem-sprockets-rails-rails60>=0:devel/rubygem-sprockets-rails-rails60 \ rubygem-sprockets3>=3.0:devel/rubygem-sprockets3 \ rubygem-tilt>=0:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-sassc-rails-rails61/Makefile b/textproc/rubygem-sassc-rails-rails61/Makefile index 44f41f8f3809..9eadf1173f1e 100644 --- a/textproc/rubygem-sassc-rails-rails61/Makefile +++ b/textproc/rubygem-sassc-rails-rails61/Makefile @@ -1,25 +1,24 @@ PORTNAME= sassc-rails PORTVERSION= 2.1.2 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Integrate SassC-Ruby into Rails WWW= https://github.com/sass/sassc-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-railties61>=4.0.0:www/rubygem-railties61 \ rubygem-sassc22>=2.0:textproc/rubygem-sassc22 \ rubygem-sprockets-rails-rails61>=0:devel/rubygem-sprockets-rails-rails61 \ rubygem-sprockets3>=3.0:devel/rubygem-sprockets3 \ rubygem-tilt>=0:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-sassc-rails-rails70/Makefile b/textproc/rubygem-sassc-rails-rails70/Makefile index dccd761f98d1..aee18bb7e2ec 100644 --- a/textproc/rubygem-sassc-rails-rails70/Makefile +++ b/textproc/rubygem-sassc-rails-rails70/Makefile @@ -1,25 +1,24 @@ PORTNAME= sassc-rails PORTVERSION= 2.1.2 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails70 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Integrate SassC-Ruby into Rails WWW= https://github.com/sass/sassc-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-railties70>=4.0.0:www/rubygem-railties70 \ rubygem-sassc22>=2.0:textproc/rubygem-sassc22 \ rubygem-sprockets-rails-rails70>=0:devel/rubygem-sprockets-rails-rails70 \ rubygem-sprockets3>=3.0:devel/rubygem-sprockets3 \ rubygem-tilt>=0:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-sassc/Makefile b/textproc/rubygem-sassc/Makefile index 817de44ca6fa..2aaf31da56d6 100644 --- a/textproc/rubygem-sassc/Makefile +++ b/textproc/rubygem-sassc/Makefile @@ -1,18 +1,17 @@ PORTNAME= sassc PORTVERSION= 2.4.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Use libsass with Ruby WWW= https://github.com/sass/sassc-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ffi>=1.9<2:devel/rubygem-ffi USES= gem gmake -USE_RUBY= yes .include diff --git a/textproc/rubygem-sassc22/Makefile b/textproc/rubygem-sassc22/Makefile index 80c9f91b8a7f..35d1e99fdb4f 100644 --- a/textproc/rubygem-sassc22/Makefile +++ b/textproc/rubygem-sassc22/Makefile @@ -1,22 +1,21 @@ PORTNAME= sassc PORTVERSION= 2.2.1 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 22 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Use libsass with Ruby WWW= https://github.com/sass/sassc-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt 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\. .include diff --git a/textproc/rubygem-sax-machine/Makefile b/textproc/rubygem-sax-machine/Makefile index b3a526257df2..fc2588ba9c54 100644 --- a/textproc/rubygem-sax-machine/Makefile +++ b/textproc/rubygem-sax-machine/Makefile @@ -1,17 +1,16 @@ PORTNAME= sax-machine PORTVERSION= 1.3.2 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Declarative sax parsing library backed by Nokogiri WWW= https://github.com/pauldix/sax-machine LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-scss_lint/Makefile b/textproc/rubygem-scss_lint/Makefile index 6d54862cf5a5..58d83ef63d32 100644 --- a/textproc/rubygem-scss_lint/Makefile +++ b/textproc/rubygem-scss_lint/Makefile @@ -1,22 +1,21 @@ PORTNAME= scss_lint PORTVERSION= 0.59.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= SCSS linter WWW= https://github.com/sds/scss-lint LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-sass>=3.5.5<4:textproc/rubygem-sass USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/scss-lint .include diff --git a/textproc/rubygem-shell2html/Makefile b/textproc/rubygem-shell2html/Makefile index c165f23f1791..7dc2d6cf77ff 100644 --- a/textproc/rubygem-shell2html/Makefile +++ b/textproc/rubygem-shell2html/Makefile @@ -1,17 +1,16 @@ PORTNAME= shell2html PORTVERSION= 0.0.6 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= mose@mose.com COMMENT= Ruby library for transforming bash colors into HTML WWW= https://github.com/mose/shell2html LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/shell2css bin/shell2html .include diff --git a/textproc/rubygem-simplecov-html/Makefile b/textproc/rubygem-simplecov-html/Makefile index 6df39ef59d6c..ce3f85d922b3 100644 --- a/textproc/rubygem-simplecov-html/Makefile +++ b/textproc/rubygem-simplecov-html/Makefile @@ -1,18 +1,17 @@ PORTNAME= simplecov-html PORTVERSION= 0.12.3 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Default HTML formatter for SimpleCov WWW= https://github.com/simplecov-ruby/simplecov-html LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-sixarm_ruby_unaccent/Makefile b/textproc/rubygem-sixarm_ruby_unaccent/Makefile index 30c84f76934c..057773bec960 100644 --- a/textproc/rubygem-sixarm_ruby_unaccent/Makefile +++ b/textproc/rubygem-sixarm_ruby_unaccent/Makefile @@ -1,18 +1,17 @@ PORTNAME= sixarm_ruby_unaccent PORTVERSION= 1.2.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Replaces accented characters with unaccented characters WWW= https://github.com/SixArm/sixarm_ruby_unaccent LICENSE= APACHE20 ART20 BSD3CLAUSE GPLv3 MIT MPL20 LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-spreadsheet/Makefile b/textproc/rubygem-spreadsheet/Makefile index 2f47edc7a39d..b461b3ba65fd 100644 --- a/textproc/rubygem-spreadsheet/Makefile +++ b/textproc/rubygem-spreadsheet/Makefile @@ -1,22 +1,21 @@ PORTNAME= spreadsheet PORTVERSION= 1.3.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby module to generate Microsoft Excel compatible files WWW= https://github.com/zdavatz/spreadsheet LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-ruby-ole>=0:devel/rubygem-ruby-ole USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/xlsopcodes .include diff --git a/textproc/rubygem-stamp/Makefile b/textproc/rubygem-stamp/Makefile index c7b01aee60fc..fbd1501efbbf 100644 --- a/textproc/rubygem-stamp/Makefile +++ b/textproc/rubygem-stamp/Makefile @@ -1,17 +1,16 @@ PORTNAME= stamp PORTVERSION= 0.6.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Format dates and times WWW= https://github.com/jeremyw/stamp LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-syntax/Makefile b/textproc/rubygem-syntax/Makefile index bcc893224439..cc12ebb47adb 100644 --- a/textproc/rubygem-syntax/Makefile +++ b/textproc/rubygem-syntax/Makefile @@ -1,17 +1,16 @@ PORTNAME= syntax PORTVERSION= 1.2.2 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Module for using Systax highlighting in Ruby WWW= https://github.com/dblock/syntax LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-termcolor/Makefile b/textproc/rubygem-termcolor/Makefile index f52d80851060..b0cc2a6656ab 100644 --- a/textproc/rubygem-termcolor/Makefile +++ b/textproc/rubygem-termcolor/Makefile @@ -1,19 +1,18 @@ PORTNAME= termcolor PORTVERSION= 1.2.2 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Library for ANSII color formatting like HTML for output in terminal WWW= https://github.com/jugyo/termcolor LICENSE= MIT RUN_DEPENDS= rubygem-highline>=1.5.0:devel/rubygem-highline USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-terminal-table/Makefile b/textproc/rubygem-terminal-table/Makefile index 0daf09076c06..29ae8ac65e56 100644 --- a/textproc/rubygem-terminal-table/Makefile +++ b/textproc/rubygem-terminal-table/Makefile @@ -1,23 +1,22 @@ PORTNAME= terminal-table PORTVERSION= 3.0.2 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple, feature rich ASCII table generation library WWW= https://github.com/tj/terminal-table LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-unicode-display_width>=1.1.1<3:devel/rubygem-unicode-display_width USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= examples/examples_unicode.rb ruby_OLD_CMD= "/bin/env ruby" .include diff --git a/textproc/rubygem-terser/Makefile b/textproc/rubygem-terser/Makefile index 78223f445638..973630b98029 100644 --- a/textproc/rubygem-terser/Makefile +++ b/textproc/rubygem-terser/Makefile @@ -1,19 +1,18 @@ PORTNAME= terser PORTVERSION= 1.0.2 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Terser minifies JavaScript files for Ruby WWW= https://github.com/ahorek/terser-ruby LICENSE= MIT RUN_DEPENDS= rubygem-execjs>=0.3.0<3:devel/rubygem-execjs USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-terser11/Makefile b/textproc/rubygem-terser11/Makefile index 9820314fe1b8..781d4436ea17 100644 --- a/textproc/rubygem-terser11/Makefile +++ b/textproc/rubygem-terser11/Makefile @@ -1,21 +1,20 @@ PORTNAME= terser PORTVERSION= 1.1.12 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 11 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Minify JavaScript files by wrapping TerserJS to be accessible in Ruby WWW= https://github.com/ahorek/terser-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-execjs>=0.3.0<3:devel/rubygem-execjs USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-text/Makefile b/textproc/rubygem-text/Makefile index 1fc0b18284ab..07d55f3476e8 100644 --- a/textproc/rubygem-text/Makefile +++ b/textproc/rubygem-text/Makefile @@ -1,18 +1,17 @@ PORTNAME= text PORTVERSION= 1.3.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Collection of text algorithms WWW= https://github.com/threedaymonk/text LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-tidy_ffi/Makefile b/textproc/rubygem-tidy_ffi/Makefile index 1eab8dbf4144..0cfffe00bdc1 100644 --- a/textproc/rubygem-tidy_ffi/Makefile +++ b/textproc/rubygem-tidy_ffi/Makefile @@ -1,20 +1,19 @@ PORTNAME= tidy_ffi PORTVERSION= 1.0.1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Tidy library interface via FFI WWW= https://github.com/libc/tidy_ffi LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-ffi>=1.2<2:devel/rubygem-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-toml/Makefile b/textproc/rubygem-toml/Makefile index 049e0069a9d1..414741bd0cf0 100644 --- a/textproc/rubygem-toml/Makefile +++ b/textproc/rubygem-toml/Makefile @@ -1,20 +1,19 @@ PORTNAME= toml PORTVERSION= 0.3.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= TOML parser WWW= https://github.com/jm/toml LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-parslet>=1.8.0<3.0.0:textproc/rubygem-parslet USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-tomlrb/Makefile b/textproc/rubygem-tomlrb/Makefile index 566a49437eef..c10d872776c8 100644 --- a/textproc/rubygem-tomlrb/Makefile +++ b/textproc/rubygem-tomlrb/Makefile @@ -1,18 +1,17 @@ PORTNAME= tomlrb PORTVERSION= 2.0.3 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Racc-based TOML parser WWW= https://github.com/fbernier/tomlrb LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-tomlrb1/Makefile b/textproc/rubygem-tomlrb1/Makefile index b08d53526115..d6ab72d28557 100644 --- a/textproc/rubygem-tomlrb1/Makefile +++ b/textproc/rubygem-tomlrb1/Makefile @@ -1,21 +1,20 @@ PORTNAME= tomlrb PORTVERSION= 1.3.0 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Racc-based TOML parser WWW= https://github.com/fbernier/tomlrb LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\. .include diff --git a/textproc/rubygem-truncato/Makefile b/textproc/rubygem-truncato/Makefile index 4329f868353a..9366aaf4e248 100644 --- a/textproc/rubygem-truncato/Makefile +++ b/textproc/rubygem-truncato/Makefile @@ -1,21 +1,20 @@ PORTNAME= truncato PORTVERSION= 0.7.12 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Truncating HTML strings keeping a valid HTML markup WWW= https://github.com/jorgemanrubia/truncato LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-htmlentities>=4.3.1:textproc/rubygem-htmlentities \ rubygem-nokogiri>=1.7.0:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-twitter-text/Makefile b/textproc/rubygem-twitter-text/Makefile index 1742ed3051f6..8fd7254c77de 100644 --- a/textproc/rubygem-twitter-text/Makefile +++ b/textproc/rubygem-twitter-text/Makefile @@ -1,21 +1,20 @@ PORTNAME= twitter-text PORTVERSION= 3.1.0 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby gem for handling of Twitter texts WWW= https://github.com/twitter/twitter-text LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-idn-ruby>=0:dns/rubygem-idn-ruby \ rubygem-unf>=0.1.0<0.2:textproc/rubygem-unf USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-twitter-text1/Makefile b/textproc/rubygem-twitter-text1/Makefile index 87498ff2224c..9b9c8691b611 100644 --- a/textproc/rubygem-twitter-text1/Makefile +++ b/textproc/rubygem-twitter-text1/Makefile @@ -1,23 +1,22 @@ PORTNAME= twitter-text DISTVERSION= 1.14.7 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby gem for handling of Twitter texts WWW= https://github.com/twitter/twitter-text LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-unf>=0.1.0:textproc/rubygem-unf USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\. .include diff --git a/textproc/rubygem-unf/Makefile b/textproc/rubygem-unf/Makefile index 4ca45b627888..27e88538fe65 100644 --- a/textproc/rubygem-unf/Makefile +++ b/textproc/rubygem-unf/Makefile @@ -1,19 +1,18 @@ PORTNAME= unf PORTVERSION= 0.1.4 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Wrapper library to bring Unicode Normalization Form support WWW= https://github.com/knu/ruby-unf LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-unf_ext>=0:textproc/rubygem-unf_ext NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-unf_ext/Makefile b/textproc/rubygem-unf_ext/Makefile index bfdf62bfdfbd..78a7c3fa2d21 100644 --- a/textproc/rubygem-unf_ext/Makefile +++ b/textproc/rubygem-unf_ext/Makefile @@ -1,16 +1,15 @@ PORTNAME= unf_ext PORTVERSION= 0.0.7.7 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Unicode Normalization Form support library for CRuby WWW= https://github.com/knu/ruby-unf_ext LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes .include diff --git a/textproc/rubygem-unicode_plot/Makefile b/textproc/rubygem-unicode_plot/Makefile index 300c037cebfc..a95ba96c9383 100644 --- a/textproc/rubygem-unicode_plot/Makefile +++ b/textproc/rubygem-unicode_plot/Makefile @@ -1,20 +1,19 @@ PORTNAME= unicode_plot PORTVERSION= 0.0.5 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Plot your data by Unicode characters WWW= https://github.com/red-data-tools/unicode_plot.rb LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-enumerable-statistics>=2.0.1:math/rubygem-enumerable-statistics USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-version_sorter/Makefile b/textproc/rubygem-version_sorter/Makefile index 8ef892b889e3..7e15c36e9deb 100644 --- a/textproc/rubygem-version_sorter/Makefile +++ b/textproc/rubygem-version_sorter/Makefile @@ -1,16 +1,15 @@ PORTNAME= version_sorter PORTVERSION= 2.2.4 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Fast sorting of version strings WWW= https://github.com/github/version_sorter LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-whatlanguage/Makefile b/textproc/rubygem-whatlanguage/Makefile index 99a280c623e2..24048d2ca6e2 100644 --- a/textproc/rubygem-whatlanguage/Makefile +++ b/textproc/rubygem-whatlanguage/Makefile @@ -1,18 +1,17 @@ PORTNAME= whatlanguage PORTVERSION= 1.0.6 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Natural language detection for text samples WWW= https://github.com/peterc/whatlanguage LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-wikicloth/Makefile b/textproc/rubygem-wikicloth/Makefile index 8129f0a49499..ab705db61fb8 100644 --- a/textproc/rubygem-wikicloth/Makefile +++ b/textproc/rubygem-wikicloth/Makefile @@ -1,23 +1,22 @@ PORTNAME= wikicloth PORTVERSION= 0.8.3 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby parser for the MediaWiki markup language WWW= https://github.com/nricciar/wikicloth LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-builder>=0:devel/rubygem-builder \ rubygem-expression_parser>=0:math/rubygem-expression_parser \ rubygem-htmlentities>=0:textproc/rubygem-htmlentities \ rubygem-nokogiri>=0:textproc/rubygem-nokogiri \ rubygem-twitter-text>=0:textproc/rubygem-twitter-text NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-wikicloth081/Makefile b/textproc/rubygem-wikicloth081/Makefile index 62df57dfa361..0c3398a88842 100644 --- a/textproc/rubygem-wikicloth081/Makefile +++ b/textproc/rubygem-wikicloth081/Makefile @@ -1,28 +1,27 @@ PORTNAME= wikicloth PORTVERSION= 0.8.1 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG PKGNAMESUFFIX= 081 MAINTAINER= mfechner@FreeBSD.org COMMENT= Ruby parser for the MediaWiki markup language WWW= https://github.com/nricciar/wikicloth LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-builder>=0:devel/rubygem-builder \ rubygem-expression_parser>=0:math/rubygem-expression_parser \ rubygem-htmlentities>=0:textproc/rubygem-htmlentities \ rubygem-nokogiri>=0:textproc/rubygem-nokogiri \ rubygem-rinku>=0:www/rubygem-rinku \ rubygem-twitter-text>=0:textproc/rubygem-twitter-text PORTSCOUT= limit:^0\.8\.1 NO_ARCH= yes USES= gem -USE_RUBY= yes .include diff --git a/textproc/rubygem-xml-simple/Makefile b/textproc/rubygem-xml-simple/Makefile index 3051a8a02200..e598e3803122 100644 --- a/textproc/rubygem-xml-simple/Makefile +++ b/textproc/rubygem-xml-simple/Makefile @@ -1,20 +1,19 @@ PORTNAME= xml-simple PORTVERSION= 1.1.9 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby take off of p5-XML-Simple WWW= https://github.com/maik/xml-simple LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual RUN_DEPENDS= rubygem-rexml>=0:textproc/rubygem-rexml USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/textproc/rubygem-ya2yaml/Makefile b/textproc/rubygem-ya2yaml/Makefile index 0aa310e326e0..5454f70549c9 100644 --- a/textproc/rubygem-ya2yaml/Makefile +++ b/textproc/rubygem-ya2yaml/Makefile @@ -1,17 +1,16 @@ PORTNAME= ya2yaml PORTVERSION= 0.31 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Yet another YAML converter, includes complete UTF8 support WWW= https://github.com/afunai/ya2yaml LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-yard-chef/Makefile b/textproc/rubygem-yard-chef/Makefile index 69b253df76d7..052db39566c3 100644 --- a/textproc/rubygem-yard-chef/Makefile +++ b/textproc/rubygem-yard-chef/Makefile @@ -1,20 +1,19 @@ PORTNAME= yard-chef PORTVERSION= 2.0.0 CATEGORIES= textproc devel rubygems MASTER_SITES= RG MAINTAINER= douglas@douglasthrift.net COMMENT= YARD plugin for Chef WWW= https://github.com/rightscale/yard-chef LICENSE= MIT RUN_DEPENDS= rubygem-yard>=0.9.9:textproc/rubygem-yard \ rubygem-redcarpet>=2.1.1:textproc/rubygem-redcarpet NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/textproc/rubygem-yard/Makefile b/textproc/rubygem-yard/Makefile index 84d4e977f66b..1e3378cd1bc6 100644 --- a/textproc/rubygem-yard/Makefile +++ b/textproc/rubygem-yard/Makefile @@ -1,26 +1,25 @@ PORTNAME= yard PORTVERSION= 0.9.28 CATEGORIES= textproc devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Documentation generation tool for Ruby WWW= https://yardoc.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-webrick>=1.7.0<1.8:www/rubygem-webrick USES= cpe gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/yard \ bin/yardoc \ bin/yri CPE_VENDOR= yardoc .include diff --git a/textproc/rubygem-zmq/Makefile b/textproc/rubygem-zmq/Makefile index 850e77dcdcbf..a3791179eef2 100644 --- a/textproc/rubygem-zmq/Makefile +++ b/textproc/rubygem-zmq/Makefile @@ -1,18 +1,17 @@ PORTNAME= zmq PORTVERSION= 2.1.4 PORTREVISION= 1 CATEGORIES= textproc rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby ZeroMQ gem WWW= https://zeromq.org/bindings:ruby LICENSE= LGPL3 LIB_DEPENDS= libzmq.so:net/libzmq2 -USE_RUBY= yes USES= gem .include diff --git a/textproc/splitpatch/Makefile b/textproc/splitpatch/Makefile index 65bf38daa502..d07485bac0fd 100644 --- a/textproc/splitpatch/Makefile +++ b/textproc/splitpatch/Makefile @@ -1,32 +1,31 @@ PORTNAME= splitpatch PORTVERSION= 1.1 DISTVERSIONPREFIX= release/ CATEGORIES= textproc MAINTAINER= ehaupt@FreeBSD.org COMMENT= Utility to split a diff patch into separate sections WWW= https://github.com/jaalto/splitpatch 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 NO_ARCH= yes PLIST_FILES= bin/splitpatch \ man/man1/splitpatch.1.gz do-install: @${MKDIR} ${STAGEDIR}${PREFIX}/bin ${STAGEDIR}${MANPREFIX}/man/man1 ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.rb \ ${STAGEDIR}${PREFIX}/bin/${PORTNAME} ${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1 \ ${STAGEDIR}${MANPREFIX}/man/man1 .include diff --git a/textproc/uim/Makefile b/textproc/uim/Makefile index d0a7afaa0b3c..e34c72cee54e 100644 --- a/textproc/uim/Makefile +++ b/textproc/uim/Makefile @@ -1,137 +1,135 @@ PORTNAME= uim PORTVERSION= 1.9.0.b.${SNAPDATE} CATEGORIES?= textproc .if !defined(UIM_SLAVE) && defined(WITHOUT_X11) PKGNAMESUFFIX= -nox11 .endif MAINTAINER= nobutaka@FreeBSD.org COMMENT?= Input method library WWW= https://github.com/uim/uim LICENSE= BSD3CLAUSE GPLv2+ GPLv3+ LGPL21+ PD LICENSE_COMB= multi LICENSE_FILE= ${WRKSRC}/COPYING BROKEN_riscv64= fails to configure: ./include/private/gcconfig.h:492:5: The collector has not been ported to this machine/OS combination USES+= autoreconf:build,2.69 gettext gmake gnome iconv libedit \ libtool pathfix pkgconfig sqlite USE_LDCONFIG= yes USE_GNOME+= glib20 intltool USE_GITHUB= yes GH_TAGNAME= 15f0788 GH_TUPLE= uim:sigscheme:beb8fbd:sigscheme \ uim:libgcroots:d362356:libgcroots SNAPDATE= 20220927 GNU_CONFIGURE= yes CONFIGURE_ARGS+= --enable-maintainer-mode OPTIONS_DEFINE= DOCS X11 OPTIONS_DEFAULT= X11 .include .if ${PORT_OPTIONS:MX11} USES+= xorg USE_XORG+= x11 xext LIB_DEPENDS+= libXft.so:x11-fonts/libXft CONFIGURE_ARGS+= --with-x --with-xft .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 \ libfontconfig.so:x11-fonts/fontconfig \ libharfbuzz.so:print/harfbuzz CONFIGURE_ARGS+= --with-gtk3 --enable-default-toolkit=gtk3 .endif CONFIGURE_ARGS+= --enable-emacs --with-sj3 --with-canna --with-prime .endif CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib CFLAGS+= -I${LOCALBASE}/include .if !defined(UIM_SLAVE) DOCSDIR_JA= ${PREFIX}/share/doc/ja/uim DOCSDIR_SIGSCHEME= ${PREFIX}/share/doc/uim/sigscheme PLIST_SUB+= DOCSDIR_JA="${DOCSDIR_JA:S,^${PREFIX}/,,}" \ DOCSDIR_SIGSCHEME="${DOCSDIR_SIGSCHEME:S,^${PREFIX}/,,}" .endif .if empty(PORT_OPTIONS:MX11) PLIST_SUB+= X11="@comment " .else PLIST_SUB+= X11="" .endif .include .if ${ARCH} == "amd64" || ${ARCH} == "sparc64" CONFIGURE_ARGS+= --enable-storage=fatty .endif .for _x in x xft gtk2 gtk3 qt5 anthy canna m17nlib prime scim dict .if ${CONFIGURE_ARGS:M--with-${_x}} == "" CONFIGURE_ARGS+=--without-${_x} .endif .endfor .for _x in gnome-applet kde-applet emacs pref .if ${CONFIGURE_ARGS:M--enable-${_x}} == "" CONFIGURE_ARGS+=--disable-${_x} .endif .endfor post-extract: ${CP} -R ${WRKSRC_sigscheme}/* ${WRKSRC}/sigscheme ${MKDIR} ${WRKSRC}/sigscheme/libgcroots ${CP} -R ${WRKSRC_libgcroots}/* ${WRKSRC}/sigscheme/libgcroots pre-configure: cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} ./autogen.sh do-build: .if !defined(UIM_SLAVE) .for d in replace sigscheme uim scm xim po fep emacs pixmaps tables cd ${WRKSRC}/${d} && ${MAKE_CMD} .endfor .if ${PORT_OPTIONS:MX11} cd ${WRKSRC}/gtk3/candwin && ${MAKE_CMD} .endif .endif do-install: .if !defined(UIM_SLAVE) cd ${WRKSRC} && ${MAKE_CMD} DESTDIR=${STAGEDIR} install-data-am .for d in sigscheme uim scm xim fep emacs pixmaps tables cd ${WRKSRC}/${d} && ${MAKE_CMD} DESTDIR=${STAGEDIR} install-strip .endfor cd ${WRKSRC}/po && ${MAKE_CMD} DESTDIR=${STAGEDIR} install .if ${PORT_OPTIONS:MX11} cd ${WRKSRC}/gtk3/candwin && ${MAKE_CMD} DESTDIR=${STAGEDIR} install-strip .endif .endif .if !defined(UIM_SLAVE) post-install: ${MKDIR} ${STAGEDIR}${DATADIR}/helperdata ${MKDIR} ${STAGEDIR}${DOCSDIR} ${MKDIR} ${STAGEDIR}${DOCSDIR_JA} ${INSTALL_DATA} ${WRKSRC}/doc/KEY ${STAGEDIR}${DOCSDIR}/KEY ${INSTALL_DATA} ${WRKSRC}/fep/README ${STAGEDIR}${DOCSDIR}/README.fep ${INSTALL_DATA} ${WRKSRC}/fep/README ${STAGEDIR}${DOCSDIR}/README.key ${INSTALL_DATA} ${WRKSRC}/fep/README.ja ${STAGEDIR}${DOCSDIR_JA}/README.fep ${INSTALL_DATA} ${WRKSRC}/xim/README ${STAGEDIR}${DOCSDIR}/README.xim .endif .include diff --git a/textproc/zorba/Makefile b/textproc/zorba/Makefile index f3e2841a7316..628c6d7b2d63 100644 --- a/textproc/zorba/Makefile +++ b/textproc/zorba/Makefile @@ -1,110 +1,110 @@ PORTNAME= zorba PORTVERSION= 2.7.0 PORTREVISION= 37 CATEGORIES= textproc java MASTER_SITES= https://launchpadlibrarian.net/119058962/ DISTNAME= ${PORTNAME}-src-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= General purpose C++ XQuery processor WWW= http://www.zorba.io/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt LIB_DEPENDS= libxerces-c.so:textproc/xerces-c3 \ libicudata.so:devel/icu \ libcurl.so:ftp/curl \ libtidy.so:www/tidy-lib \ libuuid.so:misc/e2fsprogs-libuuid RUN_DEPENDS= fop:textproc/fop WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} OPTIONS_DEFINE= PHP PYTHON RUBY JAVA DOCS DOXYGEN OPTIONS_SUB= yes DOXYGEN_BUILD_DEPENDS+= doxygen:devel/doxygen DOXYGEN_IMPLIES= DOCS PHP_CMAKE_BOOL= WITH_PHP5 PYTHON_CMAKE_BOOL= WITH_PYTHON RUBY_CMAKE_BOOL= WITH_RUBY JAVA_CMAKE_BOOL= WITH_JAVA # Both install include/xqc.h CONFLICTS= xqilla CONFLICTS_BUILD= bison USES= cmake compiler:c++11-lib gnome libedit USE_GNOME= libxml2 libxslt USE_LDCONFIG= yes USE_CXXSTD= c++11 CXXFLAGS+= -DU_USING_ICU_NAMESPACE=1 CXXFLAGS+= -I${LOCALBASE}/include -O1 # compiler hangs with -O2 on CURRENT LDFLAGS+= -L${LOCALBASE}/lib CMAKE_ARGS= -DCMAKE_REQUIRED_FLAGS:STRING="-I${LOCALBASE}/include -L${LOCALBASE}/lib" \ -DLOCALBASE:STRING=${LOCALBASE} MAKE_JOBS_UNSAFE= yes # due to consistent failures in bison-generated code compilation DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}-${PORTVERSION} PLIST_SUB+= FULLVERSION=${PORTVERSION} \ MIDVERSION=${PORTVERSION:R} \ MINVERSION=${PORTVERSION:R:R} .include .if ${PORT_OPTIONS:MPHP} USE_PHP= tokenizer USES+= php:build WITH_SWIG= yes CMAKE_ARGS+= -DPHP5_INSTALL_PATH:FILEPATH="lib/php/${PHP_EXT_DIR}" PLIST_SUB+= PHP_EXTLIBDIR="lib/php/${PHP_EXT_DIR}" .endif .if ${PORT_OPTIONS:MPYTHON} USES+= python WITH_SWIG= yes CMAKE_ARGS+= -DPYTHON_SWIG_INSTALL_DIR:FILEPATH=${PYTHONPREFIX_SITELIBDIR:S/${PREFIX}\///} PLIST_SUB+= PYTHON_SITELIBDIR=${PYTHONPREFIX_SITELIBDIR:S/${PREFIX}\///} BROKEN= Does not stage .endif .if ${PORT_OPTIONS:MRUBY} -USE_RUBY= yes +USES+= ruby WITH_SWIG= yes .endif .if ${PORT_OPTIONS:MJAVA} USE_JAVA= yes CONFIGURE_ENV+= JAVA_HOME=${JAVA_HOME} CATEGORIES+= java WITH_SWIG= yes CMAKE_ARGS+= -DJAVA_LIBDIR:PATH=${JAVALIBDIR} .endif .if defined(WITH_SWIG) BUILD_DEPENDS+= swig:devel/swig .endif post-patch: ${REINPLACE_CMD} \ -e 's|FreeBSD|${OPSYS}|g' ${WRKSRC}/CMakeLists.txt ${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/cmake_modules/FindPHP5.cmake .if !${PORT_OPTIONS:MDOCS} ${REINPLACE_CMD} -e '/ADD_SUBDIRECTORY(doc)/d' \ ${WRKSRC}/CMakeLists.txt .endif post-install: ${LN} -sf libzorba_simplestore.so.${PORTVERSION} ${STAGEDIR}${PREFIX}/lib/libzorba_simplestore.so.${PORTVERSION:R:R} .if ${PORT_OPTIONS:MDOCS} && !${PORT_OPTIONS:MDOXYGEN} cd ${STAGEDIR}${DOCSDIR} && ${RMDIR} c/html code/html code cxx/html zorba/html zorba/xqdoc zorba .endif test: build cd ${BUILD_WRKSRC} && ${MAKE} test .include diff --git a/www/gist/Makefile b/www/gist/Makefile index f22da501b13a..02c93f4ff6f3 100644 --- a/www/gist/Makefile +++ b/www/gist/Makefile @@ -1,35 +1,34 @@ PORTNAME= gist PORTVERSION= 5.1.0 DISTVERSIONPREFIX= v CATEGORIES= www net MAINTAINER= changlp@cs.nctu.edu.tw COMMENT= Gist pastebin posting command WWW= https://github.com/defunkt/gist/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.MIT RUN_DEPENDS= ${LOCALBASE}/share/certs/ca-root-nss.crt:security/ca_root_nss CONFLICTS= p5-App-gist py*-python-gist yorick # bin/gist +USES+ ruby:run USE_GITHUB= yes GH_ACCOUNT= defunkt -USE_RUBY= YES -RUBY_NO_BUILD_DEPENDS= YES NO_BUILD= YES NO_ARCH= yes PLIST_FILES= bin/gist \ man/man1/gist.1.gz post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/build/gist do-install: ${INSTALL_SCRIPT} ${WRKSRC}/build/gist ${STAGEDIR}${PREFIX}/bin/gist ${INSTALL_MAN} ${WRKSRC}/build/gist.1 ${STAGEDIR}${MAN1PREFIX}/man/man1 .include diff --git a/www/gitlab-ce/Makefile b/www/gitlab-ce/Makefile index 1f553f3fa233..149bc0f6da83 100644 --- a/www/gitlab-ce/Makefile +++ b/www/gitlab-ce/Makefile @@ -1,422 +1,421 @@ PORTNAME= gitlab-ce PORTVERSION= 15.6.4 PORTREVISION= 1 CATEGORIES= www devel MAINTAINER= mfechner@FreeBSD.org COMMENT= Web GUI for managing git repositories WWW= https://gitlab.com/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE # the rubygems of RUN_DEPENDS matches the order of the Gemfile # which makes maintaining this long list much easier! # devel/rubygem-parser is required for database upgrade process # see https://gitlab.com/gitlab-org/gitlab/-/issues/350866 MY_DEPENDS= git>=2.37.0:devel/git \ gitaly>=${PORTVERSION}:devel/gitaly \ gitlab-elasticsearch-indexer>=3.1.0:textproc/gitlab-elasticsearch-indexer \ gitlab-agent>=15.6.0:net/gitlab-agent \ gitlab-metrics-exporter>0:devel/gitlab-metrics-exporter \ gitlab-pages>=1.63.0:www/gitlab-pages \ gitlab-shell>=14.13.0:devel/gitlab-shell \ gitlab-workhorse>=${PORTVERSION}:www/gitlab-workhorse \ redis>=6.0.14:databases/redis \ yarn>=1.10.0:www/yarn \ gtar>0:archivers/gtar \ bash>0:shells/bash \ rubygem-rails61>=6.1.6.1<6.1.8:www/rubygem-rails61 \ rubygem-bootsnap>=1.13.0<1.15:devel/rubygem-bootsnap \ rubygem-openssl221>=2.2.1<2.2.2:security/rubygem-openssl221 \ rubygem-ipaddr122>=1.2.2<1.2.3:net/rubygem-ipaddr122 \ rubygem-responders-rails61>=3.0<4.0:www/rubygem-responders-rails61 \ rubygem-sprockets3>=3.7<3.8:devel/rubygem-sprockets3 \ rubygem-view_component-rails61>=2.74.1<2.75:devel/rubygem-view_component-rails61 \ rubygem-default_value_for>=3.4.0<3.5.0:devel/rubygem-default_value_for \ rubygem-pg>=1.4.3<1.5:databases/rubygem-pg \ rubygem-rugged>=1.2<2:devel/rubygem-rugged \ rubygem-grape-path-helpers>=1.7.1<1.8:devel/rubygem-grape-path-helpers \ rubygem-faraday1>=1.10.0<2:www/rubygem-faraday1 \ rubygem-marginalia>=1.11.1<1.12:databases/rubygem-marginalia \ rubygem-declarative_policy>=1.1.0<1.2:security/rubygem-declarative_policy \ rubygem-devise-rails61>=4.8.1<4.9:devel/rubygem-devise-rails61 \ rubygem-bcrypt>=3.1.14<3.2:security/rubygem-bcrypt \ rubygem-doorkeeper>=5.5.0.rc2<5.6:security/rubygem-doorkeeper \ rubygem-doorkeeper-openid_connect>=1.7.5<1.8:security/rubygem-doorkeeper-openid_connect \ rubygem-rexml>=3.2.5<3.3:textproc/rubygem-rexml \ rubygem-ruby-saml>=1.13.0<1.14:security/rubygem-ruby-saml \ rubygem-omniauth>=2.1.0<3:security/rubygem-omniauth \ rubygem-omniauth-auth0>=3.0.0<3.1.0:net/rubygem-omniauth-auth0 \ rubygem-omniauth-azure-activedirectory-v2>=2.0<3:net/rubygem-omniauth-azure-activedirectory-v2 \ rubygem-omniauth-cas3-oauth2>=1.1.4<1.2.0:security/rubygem-omniauth-cas3-oauth2 \ rubygem-omniauth-dingtalk-oauth2>=1.0.1<2:security/rubygem-omniauth-dingtalk-oauth2 \ rubygem-omniauth-alicloud>=2.0.0<2.1:security/rubygem-omniauth-alicloud \ rubygem-omniauth-facebook>=4.0.0:net/rubygem-omniauth-facebook \ rubygem-omniauth-github>=2.0.1<2.1:net/rubygem-omniauth-github \ rubygem-omniauth-google-oauth2>=1.1<2:net/rubygem-omniauth-google-oauth2 \ rubygem-omniauth-oauth2-generic>=0.2.2<0.3.0:security/rubygem-omniauth-oauth2-generic \ rubygem-omniauth-saml>=2.0.0<3:security/rubygem-omniauth-saml \ rubygem-omniauth-shibboleth>=1.3.0<1.4.0:security/rubygem-omniauth-shibboleth \ rubygem-omniauth-twitter>=1.4<2.0:net/rubygem-omniauth-twitter \ rubygem-omniauth-authentiq>=0.3.3<0.4.0:net/rubygem-omniauth-authentiq \ rubygem-gitlab-omniauth-openid-connect>=0.10.0<0.11.0:net/rubygem-gitlab-omniauth-openid-connect \ rubygem-omniauth-atlassian-oauth2>=0.2.0<0.3:security/rubygem-omniauth-atlassian-oauth2 \ rubygem-rack-oauth2>=1.21.3<1.22.0:security/rubygem-rack-oauth2 \ rubygem-jwt>=2.1.0<3:www/rubygem-jwt \ rubygem-gssapi>0:security/rubygem-gssapi \ rubygem-recaptcha>=4.11<5.0:devel/rubygem-recaptcha \ rubygem-akismet>=3.0<4.0:devel/rubygem-akismet \ rubygem-invisible_captcha>=2.0.0<2.1.0:graphics/rubygem-invisible_captcha \ rubygem-devise-two-factor-rails61>=4.0.2<4.1:security/rubygem-devise-two-factor-rails61 \ rubygem-rqrcode-rails3>=0.1.7<0.2.0:www/rubygem-rqrcode-rails3 \ rubygem-u2f0>=0.2.1<0.3.0:net/rubygem-u2f0 \ rubygem-validates_hostname>=1.0.11<1.1.0:dns/rubygem-validates_hostname \ rubygem-rubyzip>=2.3.2<2.4:archivers/rubygem-rubyzip \ rubygem-acme-client>=2.0.9<3:security/rubygem-acme-client \ rubygem-browser>=5.3.1<5.4:www/rubygem-browser \ rubygem-ohai>=16.10<17:sysutils/rubygem-ohai \ rubygem-gpgme>=2.0.20<2.1.0:security/rubygem-gpgme \ rubygem-gitlab_omniauth-ldap>=2.2.0<2.3.0:net/rubygem-gitlab_omniauth-ldap \ rubygem-net-ldap>0.16.3:net/rubygem-net-ldap \ rubygem-grape15>=1.5.2<1.6:devel/rubygem-grape15 \ rubygem-grape-entity>=0.10.0<0.11.0,1:devel/rubygem-grape-entity \ rubygem-rack-cors>=1.1.1<1.2.0:www/rubygem-rack-cors \ rubygem-grape-swagger>=1.5.0<1.6:devel/rubygem-grape-swagger \ rubygem-grape-swagger-entity>=0.5.1<0.6:devel/rubygem-grape-swagger-entity \ rubygem-graphql>=1.13.12<1.14:devel/rubygem-graphql \ rubygem-graphiql-rails>=1.8<2:devel/rubygem-graphiql-rails \ rubygem-apollo_upload_server>=2.1.0<2.2:net/rubygem-apollo_upload_server \ rubygem-graphql-docs>=2.1.0<2.2.0:devel/rubygem-graphql-docs \ rubygem-graphlient>=0.5.0<0.6:devel/rubygem-graphlient \ rubygem-hashie>=5.0.0<5.1:devel/rubygem-hashie \ rubygem-kaminari-rails61>=1.2.2<1.3:www/rubygem-kaminari-rails61 \ rubygem-hamlit>=2.15.0<2.16:www/rubygem-hamlit \ rubygem-carrierwave>=1.3.2<2.0:www/rubygem-carrierwave \ rubygem-mini_magick410>=4.10.1<4.11:graphics/rubygem-mini_magick410 \ rubygem-fog-aws>=3.15<4:net/rubygem-fog-aws \ rubygem-fog-core210>=2.1.0<2.1.1:devel/rubygem-fog-core210 \ rubygem-fog-google>=1.19<2:net/rubygem-fog-google \ rubygem-fog-local>=0.8<1.0:net/rubygem-fog-local \ rubygem-fog-openstack>=1.0<2.0:net/rubygem-fog-openstack \ rubygem-fog-rackspace>=0.1.1<1.2.0:net/rubygem-fog-rackspace \ rubygem-fog-aliyun>=0.3<1.0:net/rubygem-fog-aliyun \ rubygem-gitlab-fog-azure-rm>=1.4.0<1.5:net/rubygem-gitlab-fog-azure-rm \ rubygem-google-api-client>=0.33<1:devel/rubygem-google-api-client \ rubygem-unf>=0.1.4<0.2.0:textproc/rubygem-unf \ rubygem-seed-fu>=2.3.7<2.4.0:databases/rubygem-seed-fu \ rubygem-elasticsearch-model713>=7.2<8:textproc/rubygem-elasticsearch-model713 \ rubygem-elasticsearch-rails>=7.2<8:textproc/rubygem-elasticsearch-rails \ rubygem-elasticsearch-api713>=7.13.3<7.13.4:textproc/rubygem-elasticsearch-api713 \ rubygem-aws-sdk-core>=3.167.0<3.169:devel/rubygem-aws-sdk-core \ rubygem-aws-sdk-cloudformation>=1<2:devel/rubygem-aws-sdk-cloudformation \ rubygem-aws-sdk-s3>=1.117.1<1.118:devel/rubygem-aws-sdk-s3 \ rubygem-faraday_middleware-aws-sigv403>=0.3.0<0.4:devel/rubygem-faraday_middleware-aws-sigv403 \ rubygem-typhoeus>=1.4.0<1.5:www/rubygem-typhoeus \ rubygem-html-pipeline>=2.14.3<2.15:textproc/rubygem-html-pipeline \ rubygem-deckar01-task_list>=2.3.2<2.4:www/rubygem-deckar01-task_list \ rubygem-gitlab-markup>=1.8.0<1.9.0:textproc/rubygem-gitlab-markup \ rubygem-commonmarker>=0.23.6<0.24:textproc/rubygem-commonmarker \ rubygem-kramdown23>=2.3.1<2.4:textproc/rubygem-kramdown23 \ rubygem-redcloth>=4.3.2<4.4.0:www/rubygem-redcloth \ rubygem-rdoc63>=6.3.2<7:devel/rubygem-rdoc63 \ rubygem-org-ruby>=0.9.12<0.10.0:textproc/rubygem-org-ruby \ rubygem-creole>=0.5.0<0.6.0:textproc/rubygem-creole \ rubygem-wikicloth081>=0.8.1<0.8.2:textproc/rubygem-wikicloth081 \ rubygem-asciidoctor>=2.0.17<2.1.0:textproc/rubygem-asciidoctor \ rubygem-asciidoctor-include-ext>=0.4.0<0.5.0:textproc/rubygem-asciidoctor-include-ext \ rubygem-asciidoctor-plantuml00>=0.0.16<0.1:textproc/rubygem-asciidoctor-plantuml00 \ rubygem-asciidoctor-kroki>=0.7.0<0.8:textproc/rubygem-asciidoctor-kroki \ rubygem-rouge>=3.30.0<3.31:textproc/rubygem-rouge \ rubygem-truncato>=0.7.11<0.8.0:textproc/rubygem-truncato \ rubygem-bootstrap_form>=4.2.0<4.3.0:devel/rubygem-bootstrap_form \ rubygem-nokogiri>=1.13.9<1.14:textproc/rubygem-nokogiri \ rubygem-icalendar>=0:devel/rubygem-icalendar \ rubygem-diffy>=3.4<4:textproc/rubygem-diffy \ rubygem-diff_match_patch>=0.1.0<0.2.0:textproc/rubygem-diff_match_patch \ rubygem-rack22>=2.2.4<2.3,3:www/rubygem-rack22 \ rubygem-rack-timeout>=0.6.3<0.7:www/rubygem-rack-timeout \ rubygem-puma>=5.6.5<5.7:www/rubygem-puma \ rubygem-puma_worker_killer>=0.3.1:www/rubygem-puma_worker_killer \ rubygem-sd_notify>=0.1.0<0.2:devel/rubygem-sd_notify \ rubygem-state_machines-activerecord>=0.8.0<0.9.0:databases/rubygem-state_machines-activerecord \ rubygem-acts-as-taggable-on>=9.0<10:www/rubygem-acts-as-taggable-on \ rubygem-sidekiq>=6.5.7<6.6:devel/rubygem-sidekiq \ rubygem-sidekiq-cron>=1.8.0<1.9:devel/rubygem-sidekiq-cron \ rubygem-redis-namespace>=1.9.0<1.10.0:databases/rubygem-redis-namespace \ rubygem-gitlab-sidekiq-fetcher>=0.9.0<0.10:devel/rubygem-gitlab-sidekiq-fetcher \ rubygem-fugit>=1.2.1<2:devel/rubygem-fugit \ rubygem-httparty>=0.20.0<0.21:www/rubygem-httparty \ rubygem-rainbow>=3.1.1<4.0:devel/rubygem-rainbow \ rubygem-ruby-progressbar>=1.11<2:devel/rubygem-ruby-progressbar \ rubygem-settingslogic>=2.0.9<2.1.0:devel/rubygem-settingslogic \ rubygem-re2>=1.6.0<1.7.0:devel/rubygem-re2 \ rubygem-version_sorter>=2.2.4<2.3.0:textproc/rubygem-version_sorter \ rubygem-js_regex>=3.8<4.0:textproc/rubygem-js_regex \ rubygem-device_detector>=0:devel/rubygem-device_detector \ rubygem-redis4>=4.8.0<5:databases/rubygem-redis4 \ rubygem-connection_pool>=2.2.5<3.0:net/rubygem-connection_pool \ rubygem-redis-actionpack-rails61>=5.3.0<5.4:databases/rubygem-redis-actionpack-rails61 \ rubygem-discordrb-webhooks>=3.4<4.0:net-im/rubygem-discordrb-webhooks \ rubygem-jira-ruby21>=2.1.4<2.2:devel/rubygem-jira-ruby21 \ rubygem-atlassian-jwt>=0.2.0<0.3.0:www/rubygem-atlassian-jwt \ rubygem-flowdock>=0.7<1.0:www/rubygem-flowdock \ rubygem-slack-messenger>=2.3.4<2.4.0:devel/rubygem-slack-messenger \ rubygem-hangouts-chat>=0.0.5<0.1.0:net/rubygem-hangouts-chat \ rubygem-asana0>=0.10.13<0.11:www/rubygem-asana0 \ rubygem-ruby-fogbugz>=0.3.0<0.4.0:devel/rubygem-ruby-fogbugz \ rubygem-kubeclient>=4.9.3<4.10.0:www/rubygem-kubeclient \ rubygem-sanitize>=6.0<7:textproc/rubygem-sanitize \ rubygem-babosa>=1.0.4<1.1.0:textproc/rubygem-babosa \ rubygem-loofah>=2.19.0<2.20:textproc/rubygem-loofah \ rubygem-licensee>=9.15<10:devel/rubygem-licensee \ rubygem-charlock_holmes>=0.7.7<0.8.0:textproc/rubygem-charlock_holmes \ rubygem-ruby-magic>=0.5.4<1:devel/rubygem-ruby-magic \ rubygem-fast_blank>=0:devel/rubygem-fast_blank \ rubygem-gitlab-chronic>=0.10.5<0.11.0:devel/rubygem-gitlab-chronic \ rubygem-gitlab_chronic_duration>=0.10.6.2<0.10.7:devel/rubygem-gitlab_chronic_duration \ rubygem-rack-proxy>=0.7.4<0.8.0:www/rubygem-rack-proxy \ rubygem-sassc-rails-rails61>=2.1.0<2.2.0:textproc/rubygem-sassc-rails-rails61 \ rubygem-autoprefixer-rails1025>=10.2.5.1<10.2.6:textproc/rubygem-autoprefixer-rails1025 \ rubygem-terser>=1.0.2:textproc/rubygem-terser \ rubygem-addressable>=2.8<3:www/rubygem-addressable \ rubygem-tanuki_emoji>=0.6<1:graphics/rubygem-tanuki_emoji \ rubygem-gon-rails61>=6.4.0<6.5:www/rubygem-gon-rails61 \ rubygem-request_store>=1.5.1<2.0:devel/rubygem-request_store \ rubygem-base32>=0.3.0<0.4.0:converters/rubygem-base32 \ rubygem-gitlab-license>=2.2.1<2.3:devel/rubygem-gitlab-license \ rubygem-rack-attack>=6.6.1<6.7:www/rubygem-rack-attack \ rubygem-sentry-raven>=3.1<4.0:devel/rubygem-sentry-raven \ rubygem-sentry-ruby>=5.1.1<5.2:devel/rubygem-sentry-ruby \ rubygem-sentry-rails>=5.1.1<5.2:devel/rubygem-sentry-rails \ rubygem-sentry-sidekiq>=5.1.1<5.2:devel/rubygem-sentry-sidekiq \ rubygem-pg_query>=2.2<3:databases/rubygem-pg_query \ rubygem-premailer-rails-rails61>=1.10.3<1.11:mail/rubygem-premailer-rails-rails61 \ rubygem-gitlab-labkit>=0.29.0<0.30:devel/rubygem-gitlab-labkit \ rubygem-thrift>=0.16.0:devel/rubygem-thrift \ rubygem-ruby_parser>=3.15<4.0:devel/rubygem-ruby_parser \ rubygem-rails-i18n-rails61>=7.0<8:devel/rubygem-rails-i18n-rails61 \ rubygem-gettext_i18n_rails18>=1.8.0<1.9.0:devel/rubygem-gettext_i18n_rails18 \ rubygem-gettext_i18n_rails_js-rails61>=1.3<2.0:devel/rubygem-gettext_i18n_rails_js-rails61 \ rubygem-gettext>=3.3<4:devel/rubygem-gettext \ rubygem-batch-loader>=2.0.1<2.1:devel/rubygem-batch-loader \ rubygem-peek-rails61>=1.1.0<2.0:devel/rubygem-peek-rails61 \ rubygem-snowplow-tracker>=0.8.0<1:devel/rubygem-snowplow-tracker \ rubygem-webrick>=1.7.0:www/rubygem-webrick \ rubygem-prometheus-client-mmap>=0.16.0<0.17.0:devel/rubygem-prometheus-client-mmap \ rubygem-warning>=1.3.0<1.4:devel/rubygem-warning \ rubygem-license_finder>=7.0.0<8:devel/rubygem-license_finder \ rubygem-gitlab-dangerfiles>=3.6.2<3.7:devel/rubygem-gitlab-dangerfiles \ rubygem-octokit>=4.20<5.0:net/rubygem-octokit \ rubygem-gitlab-mail_room>=0.0.9<0.1.0:mail/rubygem-gitlab-mail_room \ rubygem-email_reply_trimmer>=0.1<1.0:mail/rubygem-email_reply_trimmer \ rubygem-html2text>=0:textproc/rubygem-html2text \ rubygem-stackprof>=0.2.21<0.3:devel/rubygem-stackprof \ rubygem-rbtrace>=0.4.14<1.0:devel/rubygem-rbtrace \ rubygem-memory_profiler>=1.0<2.0:devel/rubygem-memory_profiler \ rubygem-benchmark-memory>=0.1<1.0:benchmarks/rubygem-benchmark-memory \ rubygem-activerecord-explain-analyze>=0.1<1.0:databases/rubygem-activerecord-explain-analyze \ rubygem-oauth2>=2.0<3:net/rubygem-oauth2 \ rubygem-health_check>=3.0<4:devel/rubygem-health_check \ rubygem-vmstat>=2.3.0<2.4.0:sysutils/rubygem-vmstat \ rubygem-sys-filesystem>=1.4.3<1.5:sysutils/rubygem-sys-filesystem \ rubygem-net-ntp>0:net/rubygem-net-ntp \ rubygem-ssh_data>=1.3<2:security/rubygem-ssh_data \ rubygem-spamcheck>=1.0.0<1.1:net/rubygem-spamcheck \ rubygem-gitaly>=15.5.2<15.6.0:net/rubygem-gitaly \ rubygem-kas-grpc>=0.0.2,1<0.0.3,1:net/rubygem-kas-grpc \ rubygem-grpc142>=1.42.0<1.43:net/rubygem-grpc142 \ rubygem-google-protobuf>=3.21.9<4:devel/rubygem-google-protobuf \ rubygem-toml-rb>=2.2.0<3:www/rubygem-toml-rb \ rubygem-flipper>=0.25.0<0.26:devel/rubygem-flipper \ rubygem-flipper-active_record-rails61>=0.25.0<0.26:databases/rubygem-flipper-active_record-rails61 \ rubygem-flipper-active_support_cache_store-rails61>=0.25.0<0.26:devel/rubygem-flipper-active_support_cache_store-rails61 \ rubygem-unleash>=3.2.2<3.3:devel/rubygem-unleash \ rubygem-gitlab-experiment>=0.7.0<0.8:devel/rubygem-gitlab-experiment \ rubygem-lograge-rails61>=0.11.2<1.0:www/rubygem-lograge-rails61 \ rubygem-grape_logging>=1.8<2.0:devel/rubygem-grape_logging \ rubygem-gitlab-net-dns>=0.9.1<0.10:dns/rubygem-gitlab-net-dns \ rubygem-countries>=3.0.0<4.0.0:devel/rubygem-countries \ rubygem-retriable>=3.1.2<3.2.0:devel/rubygem-retriable \ rubygem-lru_redux>0:devel/rubygem-lru_redux \ rubygem-mail>=2.7.1<2.7.2,2:mail/rubygem-mail \ rubygem-lockbox>=0.6.2<0.7:security/rubygem-lockbox \ rubygem-valid_email>=0.1<1:mail/rubygem-valid_email \ rubygem-json>=2.5.1<3:devel/rubygem-json \ rubygem-json_schemer>=0.2.18<0.3:devel/rubygem-json_schemer \ rubygem-oj>=3.13.21<3.14:devel/rubygem-oj \ rubygem-oj-introspect>=0.7<1:devel/rubygem-oj-introspect \ rubygem-multi_json114>=1.14.1<1.15:devel/rubygem-multi_json114 \ rubygem-yajl-ruby>=1.4.3<1.5:devel/rubygem-yajl-ruby \ rubygem-webauthn>=2.3<3:security/rubygem-webauthn \ rubygem-ipaddress>=0.8.3<0.9:net/rubygem-ipaddress \ rubygem-parslet1>=1.8<2:textproc/rubygem-parslet1 \ rubygem-ed25519>=1.3.0<1.4:security/rubygem-ed25519 \ rubygem-parser>=0:devel/rubygem-parser \ rubygem-cvss-suite>=3.0.1<3.1:security/rubygem-cvss-suite \ rubygem-arr-pm>=0.0.12<0.1:devel/rubygem-arr-pm \ rubygem-CFPropertyList>=0:devel/rubygem-CFPropertyList \ rubygem-telesignenterprise>=2.2<3:devel/rubygem-telesignenterprise BUILD_DEPENDS= gem:devel/ruby-gems \ ${MY_DEPENDS} RUN_DEPENDS= ${MY_DEPENDS} CONFLICTS_INSTALL= gitolite \ gitolite2 \ gogs \ gitea \ gitosis -USES= go:modules shebangfix -USE_RUBY= yes +USES= go:modules ruby shebangfix USE_RC_SUBR= gitlab USE_GITLAB= yes GL_ACCOUNT= gitlab-org GL_PROJECT= gitlab-foss # Find the here: https://gitlab.com/gitlab-org/gitlab-foss/-/tags GL_COMMIT= 201805ee2af83fc75bb50ee8a10aa24f563bb2f4 USERS= git GROUPS= git NO_BUILD= yes NO_ARCH= yes OPTIONS_DEFINE= KERBEROS OPTIONS_DEFAULT= KERBEROS KERBEROS_BUILD_DEPENDS= rubygem-timfel-krb5-auth>=0.8<1:security/rubygem-timfel-krb5 KERBEROS_RUN_DEPENDS= rubygem-timfel-krb5-auth>=0.8<1:security/rubygem-timfel-krb5 KERBEROS_EXTRA_PATCHES_OFF= ${FILESDIR}/extra-patch-Gemfile-kerberos-off post-patch: ${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|" ${WRKSRC}/config/gitlab.yml.example \ ${WRKSRC}/config/puma.rb.example \ ${WRKSRC}/lib/support/nginx/gitlab \ ${WRKSRC}/lib/support/nginx/gitlab-ssl # Remove symlink a create a file with content ${RM} ${WRKSRC}/GITLAB_WORKHORSE_VERSION ${ECHO} ${PORTVERSION} > ${WRKSRC}/GITLAB_WORKHORSE_VERSION do-install: ${CP} ${WRKSRC}/config/database.yml.postgresql ${WRKSRC}/config/database.yml.sample (cd ${WRKSRC} && ${RM} Gemfile.lock && bundle install --local) ${RM} -R ${WRKSRC}/workhorse # Has only a Gemfile.lock, so remove it, is maybe fixed by a newer version ${RM} -R ${WRKSRC}/vendor/gems/omniauth-google-oauth2 ${FIND} ${WRKSRC} -name '*.orig' -delete ${FIND} ${WRKSRC} -name '*.bak' -delete ${FIND} ${WRKSRC} -name '*.gitkeep' -delete ${FIND} ${WRKSRC} -name '*.gitignore' -delete ${FIND} ${WRKSRC} -name "Gemfile.lock" -delete ${MV} ${WRKSRC}/config/initializers/relative_url.rb.sample ${WRKSRC}/config/initializers/relative_url.rb.example # get files for workdir with: find . -name "*.example" ${MV} ${WRKSRC}/config/puma.rb.example ${WRKSRC}/config/puma.rb.sample ${MV} ${WRKSRC}/config/secrets.yml.example ${WRKSRC}/config/secrets.yml.sample ${MV} ${WRKSRC}/config/sidekiq.yml.example ${WRKSRC}/config/sidekiq.yml.sample ${MV} ${WRKSRC}/config/cable.yml.example ${WRKSRC}/config/cable.yml.sample ${MV} ${WRKSRC}/config/gitlab.yml.example ${WRKSRC}/config/gitlab.yml.sample ${MV} ${WRKSRC}/config/initializers/devise_password_length.rb.example ${WRKSRC}/config/initializers/devise_password_length.rb.sample ${MV} ${WRKSRC}/config/resque.yml.example ${WRKSRC}/config/resque.yml.sample ${MV} ${WRKSRC}/lib/support/nginx/gitlab ${WRKSRC}/lib/support/nginx/gitlab.sample ${MV} ${WRKSRC}/lib/support/nginx/gitlab-ssl ${WRKSRC}/lib/support/nginx/gitlab-ssl.sample ${MKDIR} ${STAGEDIR}${PREFIX}/www/${PORTNAME}/public/assets ${MKDIR} ${STAGEDIR}${PREFIX}/www/${PORTNAME}/public/uploads ${MKDIR} ${STAGEDIR}${PREFIX}/www/${PORTNAME}/tmp/cache ${MKDIR} ${STAGEDIR}${PREFIX}/www/${PORTNAME}/tmp/sessions ${MKDIR} ${STAGEDIR}${PREFIX}/www/${PORTNAME}/tmp/backups ${MKDIR} ${STAGEDIR}${PREFIX}/www/${PORTNAME}/tmp/sockets/private/internal ${MKDIR} ${STAGEDIR}${PREFIX}/www/${PORTNAME}/shared/tmp ${MKDIR} ${STAGEDIR}${PREFIX}/www/${PORTNAME}/shared/artifacts/tmp/work ${MKDIR} ${STAGEDIR}${PREFIX}/www/${PORTNAME}/vendor/assets/stylesheets ${MKDIR} ${STAGEDIR}${PREFIX}/www/${PORTNAME}/workhorse/changelogs/unreleased (cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${PREFIX}/www/${PORTNAME}) post-install: ${FIND} -s ${STAGEDIR}${WWWDIR} -not -type d | ${SORT} | \ ${SED} -e 's#^${STAGEDIR}${PREFIX}/##' | \ ${SED} -E -e '/sample$$/ s#^#@sample #; \ /secrets.yml.sample$$/ s#^@sample #@sample(git,www,0600) #; \ s#${WWWDIR_REL}/bin#@(git,,544) ${WWWDIR_REL}/bin#; \ /db\/schema.rb$$|gitlab.po$$|gitlab.pot$$|gitlab.po.time_stamp$$|locale\/index.js$$/ s#^#@(git,,) #;' >> ${TMPPLIST} @${ECHO_CMD} "@owner git" >> ${TMPPLIST} @${ECHO_CMD} "@group www" >> ${TMPPLIST} @${ECHO_CMD} "@dir(git,git) ${WWWDIR_REL}/" >> ${TMPPLIST} @${ECHO_CMD} "@dir ${WWWDIR_REL}/app/assets/images/auth_buttons/" >> ${TMPPLIST} @${ECHO_CMD} "@dir ${WWWDIR_REL}/app/assets/javascripts/locale/" >> ${TMPPLIST} @${ECHO_CMD} "@dir ${WWWDIR_REL}/app/assets/javascripts/pipeline_wizard/templates/" >> ${TMPPLIST} @${ECHO_CMD} "@dir(git,git,554) ${WWWDIR_REL}/bin" >> ${TMPPLIST} @${ECHO_CMD} "@dir ${WWWDIR_REL}/config" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,700) ${WWWDIR_REL}/builds" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,744) ${WWWDIR_REL}/locale" >> ${TMPPLIST} @${ECHO_CMD} "@dir ${WWWDIR_REL}/lib/assets" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,744) ${WWWDIR_REL}/locale/bg" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,744) ${WWWDIR_REL}/locale/de" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,744) ${WWWDIR_REL}/locale/eo" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,744) ${WWWDIR_REL}/locale/es" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,744) ${WWWDIR_REL}/locale/fil_PH" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,744) ${WWWDIR_REL}/locale/fr" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,744) ${WWWDIR_REL}/locale/id_ID" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,744) ${WWWDIR_REL}/locale/it" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,744) ${WWWDIR_REL}/locale/ja" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,744) ${WWWDIR_REL}/locale/ko" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,744) ${WWWDIR_REL}/locale/nl_NL" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,744) ${WWWDIR_REL}/locale/pl_PL" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,744) ${WWWDIR_REL}/locale/pt_BR" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,744) ${WWWDIR_REL}/locale/ru" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,744) ${WWWDIR_REL}/locale/tr_TR" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,744) ${WWWDIR_REL}/locale/uk" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,744) ${WWWDIR_REL}/locale/zh_CN" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,744) ${WWWDIR_REL}/locale/zh_HK" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,744) ${WWWDIR_REL}/locale/zh_TW" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,744) ${WWWDIR_REL}/log" >> ${TMPPLIST} @${ECHO_CMD} "@dir ${WWWDIR_REL}/public" >> ${TMPPLIST} @${ECHO_CMD} "@dir ${WWWDIR_REL}/public/assets" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,700) ${WWWDIR_REL}/public/uploads" >> ${TMPPLIST} @${ECHO_CMD} "@dir ${WWWDIR_REL}/qa/qa/specs/features/api/2_plan" >> ${TMPPLIST} @${ECHO_CMD} "@dir ${WWWDIR_REL}/qa/qa/specs/features/api/4_verify" >> ${TMPPLIST} @${ECHO_CMD} "@dir ${WWWDIR_REL}/qa/qa/specs/features/api/5_package" >> ${TMPPLIST} @${ECHO_CMD} "@dir ${WWWDIR_REL}/qa/qa/specs/features/api/6_release" >> ${TMPPLIST} @${ECHO_CMD} "@dir ${WWWDIR_REL}/qa/qa/specs/features/api/7_configure" >> ${TMPPLIST} @${ECHO_CMD} "@dir ${WWWDIR_REL}/qa/qa/specs/features/api/8_monitor" >> ${TMPPLIST} @${ECHO_CMD} "@dir ${WWWDIR_REL}/qa/qa/specs/features/browser_ui/5_package" >> ${TMPPLIST} @${ECHO_CMD} "@dir ${WWWDIR_REL}/qa/qa/specs/features/browser_ui/8_monitor" >> ${TMPPLIST} @${ECHO_CMD} "@dir ${WWWDIR_REL}/qa/tmp" >> ${TMPPLIST} @${ECHO_CMD} "@dir ${WWWDIR_REL}/spec/support/gitlab-git-test.git/refs/heads" >> ${TMPPLIST} @${ECHO_CMD} "@dir ${WWWDIR_REL}/spec/support/gitlab-git-test.git/refs/tags" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,700) ${WWWDIR_REL}/shared" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,700) ${WWWDIR_REL}/shared/artifacts" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,700) ${WWWDIR_REL}/shared/artifacts/tmp" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,700) ${WWWDIR_REL}/shared/artifacts/tmp/cache" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,700) ${WWWDIR_REL}/shared/artifacts/tmp/uploads" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,700) ${WWWDIR_REL}/shared/artifacts/tmp/work" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,770) ${WWWDIR_REL}/shared/packages" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,770) ${WWWDIR_REL}/shared/pages" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,700) ${WWWDIR_REL}/shared/terraform_state" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,700) ${WWWDIR_REL}/shared/tmp" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,700) ${WWWDIR_REL}/shared/lfs-objects" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,700) ${WWWDIR_REL}/shared/registry" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,770) ${WWWDIR_REL}/tmp" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,770) ${WWWDIR_REL}/tmp/backups" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,770) ${WWWDIR_REL}/tmp/cache" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,770) ${WWWDIR_REL}/tmp/feature_flags" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,770) ${WWWDIR_REL}/tmp/pids" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,770) ${WWWDIR_REL}/tmp/prometheus_multiproc_dir" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,770) ${WWWDIR_REL}/tmp/prometheus_multiproc_dir/puma" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,770) ${WWWDIR_REL}/tmp/prometheus_multiproc_dir/sidekiq" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,770) ${WWWDIR_REL}/tmp/prometheus_multiproc_dir/unicorn" >> ${TMPPLIST} #@${ECHO_CMD} "@dir(,,770) ${WWWDIR_REL}/tmp/run" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,770) ${WWWDIR_REL}/tmp/sessions" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,770) ${WWWDIR_REL}/tmp/sockets" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,770) ${WWWDIR_REL}/tmp/sockets/private" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,770) ${WWWDIR_REL}/tmp/sockets/private/internal" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,770) ${WWWDIR_REL}/vendor" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,770) ${WWWDIR_REL}/vendor/assets" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,770) ${WWWDIR_REL}/vendor/assets/stylesheets" >> ${TMPPLIST} @${ECHO_CMD} "@dir(,,770) ${WWWDIR_REL}/workhorse/changelogs/unreleased" >> ${TMPPLIST} .include diff --git a/www/h2o-devel/Makefile b/www/h2o-devel/Makefile index cc702a646929..6439dca4eeb8 100644 --- a/www/h2o-devel/Makefile +++ b/www/h2o-devel/Makefile @@ -1,81 +1,79 @@ PORTNAME= h2o DISTVERSIONPREFIX= v DISTVERSION= 2.3.0-dev.20220519 CATEGORIES= www PKGNAMESUFFIX= -devel MAINTAINER= dch@FreeBSD.org COMMENT= Optimized HTTP/2 server including support for TLS 1.3 and HTTP/1.x WWW= https://github.com/h2o/h2o LICENSE= MIT BSD2CLAUSE LICENSE_COMB= multi BROKEN_armv6= fails to compile: asm_arm.inc:139:36: '.syntax divided' arm assembly not supported BROKEN_armv7= fails to compile: asm_arm.inc:139:36: '.syntax divided' arm assembly not supported BROKEN_FreeBSD_12_powerpc64= fails to link on powerpc64 elfv1: unrecognized option '-Wl,-rpath=/usr/local/lib/gcc6' LIB_DEPENDS= libuv.so:devel/libuv USES= cmake:noninja compiler:c11 cpe perl5 shebangfix ssl pkgconfig CPE_VENDOR= dena USE_GITHUB= yes USE_LDCONFIG= yes GH_TAGNAME= cf59e67 CONFLICTS= h2o SHEBANG_FILES= share/h2o/start_server PORTDOCS= README.md SUB_FILES= ${PORTNAME} ${PORTNAME}.conf.sample SUB_LIST+= H2O_USER=${H2O_USER} \ H2O_GROUP=${H2O_GROUP} \ H2O_LOGDIR=${H2O_LOGDIR} PLIST_SUB= H2O_USER=${H2O_USER} \ H2O_GROUP=${H2O_GROUP} \ H2O_LOGDIR=${H2O_LOGDIR} H2O_USER?= www H2O_GROUP?= www H2O_LOGDIR= /var/log/${PORTNAME}/ USE_RC_SUBR= ${PORTNAME} OPTIONS_DEFINE= MRUBY DOCS OPTIONS_DEFAULT= MRUBY OPTIONS_SUB= yes MRUBY_DESC= Build with embedded mruby handler support 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 post-patch: @${REINPLACE_CMD} -e 's|exec perl|exec ${LOCALBASE}/bin/perl|' \ ${WRKSRC}/share/h2o/annotate-backtrace-symbols \ ${WRKSRC}/share/h2o/fastcgi-cgi \ ${WRKSRC}/share/h2o/fetch-ocsp-response \ ${WRKSRC}/share/h2o/kill-on-close \ ${WRKSRC}/share/h2o/setuidgid \ ${WRKSRC}/share/h2o/start_server post-install: ${MKDIR} ${STAGEDIR}${ETCDIR} \ ${STAGEDIR}${H2O_LOGDIR} ${INSTALL_DATA} \ ${WRKDIR}/${PORTNAME}.conf.sample \ ${STAGEDIR}${ETCDIR}/${PORTNAME}.conf.sample post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} .include diff --git a/www/h2o/Makefile b/www/h2o/Makefile index 9c0aa96381bc..3dedc789309a 100644 --- a/www/h2o/Makefile +++ b/www/h2o/Makefile @@ -1,82 +1,80 @@ PORTNAME= h2o DISTVERSIONPREFIX= v DISTVERSION= 2.2.6 PORTREVISION= 1 CATEGORIES= www MAINTAINER= dch@FreeBSD.org COMMENT= Optimized HTTP/2 server including support for TLS 1.3 and HTTP/1.x WWW= https://github.com/h2o/h2o LICENSE= BSD2CLAUSE MIT LICENSE_COMB= multi BROKEN_armv6= fails to compile: asm_arm.inc:139:36: '.syntax divided' arm assembly not supported BROKEN_armv7= fails to compile: asm_arm.inc:139:36: '.syntax divided' arm assembly not supported BROKEN_FreeBSD_12_powerpc64= fails to link: unrecognized option '-Wl,-rpath=/usr/local/lib/gcc6' LIB_DEPENDS= libuv.so:devel/libuv USES= cmake:noninja compiler:c11 cpe perl5 pkgconfig shebangfix ssl USE_GITHUB= yes USE_PERL5= run USE_LDCONFIG= yes CPE_VENDOR= dena CONFLICTS= h2o-devel SHEBANG_FILES= share/h2o/start_server PORTDOCS= README.md SUB_FILES= ${PORTNAME} ${PORTNAME}.conf.sample SUB_LIST+= H2O_GROUP=${H2O_GROUP} \ H2O_LOGDIR=${H2O_LOGDIR} \ H2O_USER=${H2O_USER} PLIST_SUB= H2O_GROUP=${H2O_GROUP} \ H2O_LOGDIR=${H2O_LOGDIR} \ H2O_USER=${H2O_USER} H2O_USER?= www H2O_GROUP?= www H2O_LOGDIR= /var/log/${PORTNAME}/ USE_RC_SUBR= ${PORTNAME} OPTIONS_DEFINE= DOCS MRUBY OPTIONS_DEFAULT= MRUBY OPTIONS_SUB= yes MRUBY_DESC= Build with embedded mruby handler support 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|' \ ${WRKSRC}/share/h2o/annotate-backtrace-symbols \ ${WRKSRC}/share/h2o/fastcgi-cgi \ ${WRKSRC}/share/h2o/fetch-ocsp-response \ ${WRKSRC}/share/h2o/kill-on-close \ ${WRKSRC}/share/h2o/setuidgid \ ${WRKSRC}/share/h2o/start_server post-install: ${MKDIR} ${STAGEDIR}${ETCDIR} \ ${STAGEDIR}${H2O_LOGDIR} ${INSTALL_DATA} \ ${WRKDIR}/${PORTNAME}.conf.sample \ ${STAGEDIR}${ETCDIR}/${PORTNAME}.conf.sample post-install-DOCS-on: ${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR} .include diff --git a/www/netstiff/Makefile b/www/netstiff/Makefile index ed8f1ee5ea49..e4f1d2c2956e 100644 --- a/www/netstiff/Makefile +++ b/www/netstiff/Makefile @@ -1,36 +1,35 @@ PORTNAME= netstiff PORTVERSION= 20080331 CATEGORIES= www MASTER_SITES= http://pkqs.net/~sbeyer/tools/netstiff/ DISTNAME= ${PORTNAME}_${PORTVERSION}.orig MAINTAINER= ports@FreeBSD.org COMMENT= Powerful web page update checker WWW= http://pkqs.net/~sbeyer/ #netstiff LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE -USES= shebangfix +USES= ruby shebangfix SHEBANG_FILES= ${WRKSRC}/${PORTNAME} -USE_RUBY= yes NO_BUILD= yes NO_ARCH= yes WRKSRC= ${WRKDIR}/${PORTNAME}_${PORTVERSION} PORTDOCS= ChangeLog THANKSTO PLIST_FILES= bin/${PORTNAME} \ man/man1/${PORTNAME}.1.gz OPTIONS_DEFINE= DOCS do-install: ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1 do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} ${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR} .include diff --git a/www/qt5-webkit/Makefile b/www/qt5-webkit/Makefile index 31b4d794af78..f14b2b80f24c 100644 --- a/www/qt5-webkit/Makefile +++ b/www/qt5-webkit/Makefile @@ -1,64 +1,61 @@ PORTNAME= webkit DISTVERSION= 5.212.0-alpha4 PORTREVISION= 11 CATEGORIES= www MASTER_SITES= https://github.com/qt${PORTNAME}/qt${PORTNAME}/releases/download/${DISTNAME}/ PKGNAMEPREFIX= qt5- DISTNAME= qt${PORTNAME}-${DISTVERSION} PATCH_SITES= https://github.com/qt${PORTNAME}/qt${PORTNAME}/commit/ PATCHFILES+= 78360c01c796b6260bf828bc9c8a0ef73c5132fd.patch:-p1 MAINTAINER= kde@FreeBSD.org COMMENT= QtWebKit with a more modern WebKit code base WWW= https://github.com/annulen/webkit LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libhyphen.so:textproc/hyphen \ libicui18n.so:devel/icu \ libpng.so:graphics/png \ libwebp.so:graphics/webp \ 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}" CMAKE_ON= ENABLE_OPENGL CMAKE_OFF= USE_QT_MULTIMEDIA USE_LD_GOLD # Add -DNDEBUG to CXXFLAGS which in turn gets sucked into # CMAKE_CXX_FLAGS_RELEASE where we actually want to have it. # [for the ASSERT in Source/WebCore/platform/graphics/texmap/GraphicsLayerTextureMapper.cpp ] CXXFLAGS+= -DNDEBUG PLIST_SUB= FULLVER="${PORTVERSION:R}" SUB_FILES= pkg-install SUB_LIST= QT_INCDIR="${QT_INCDIR}" OPTIONS_DEFINE= GSTREAMER OPTIONS_DEFAULT= GSTREAMER GSTREAMER_USES= gstreamer GSTREAMER_USE= GSTREAMER=core GSTREAMER_CMAKE_OFF= -DUSE_GSTREAMER:BOOL=OFF BINARY_ALIAS= python3=${PYTHON_CMD} .include diff --git a/www/redmine42/Makefile b/www/redmine42/Makefile index 5435ce4ce5fa..818507fb995d 100644 --- a/www/redmine42/Makefile +++ b/www/redmine42/Makefile @@ -1,106 +1,105 @@ PORTNAME= redmine PORTVERSION= 4.2.9 CATEGORIES= www MASTER_SITES= https://www.redmine.org/releases/ PKGNAMESUFFIX= 42 MAINTAINER= mikael@FreeBSD.org COMMENT= Flexible project management web application WWW= https://www.redmine.org/ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/doc/COPYING RUN_DEPENDS= rubygem-bundler>=1.5.0:sysutils/rubygem-bundler \ rubygem-rails52>=5.2.8.1<5.3:www/rubygem-rails52 \ rubygem-rouge>=3.26.0:textproc/rubygem-rouge \ rubygem-request_store>=1.5.0:devel/rubygem-request_store \ rubygem-mini_mime>=1.0.1:mail/rubygem-mini_mime \ rubygem-actionpack-xml_parser-rails52>=0:textproc/rubygem-actionpack-xml_parser-rails52 \ rubygem-roadie-rails-rails52>=2.1.0:mail/rubygem-roadie-rails-rails52 \ rubygem-mail>=2.7.1:mail/rubygem-mail \ rubygem-csv>=3.1.1:devel/rubygem-csv \ rubygem-nokogiri111>=1.11.0:textproc/rubygem-nokogiri111 \ rubygem-i18n>=0.7:devel/rubygem-i18n \ rubygem-rbpdf>=1.19.6:print/rubygem-rbpdf \ rubygem-net-ldap>=0.16:net/rubygem-net-ldap \ rubygem-ruby-openid>=2.9.2:net/rubygem-ruby-openid \ rubygem-rack-openid>=0:www/rubygem-rack-openid \ rubygem-rake>=0:devel/rubygem-rake \ 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 CONFLICTS_INSTALL= redmine4 NO_ARCH= yes NO_BUILD= yes USERS= ${WWWOWN} GROUPS= ${WWWGRP} PLIST_SUB= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} SUB_LIST= RUBY_SUFFIX=${RUBY_SUFFIX} OPTIONS_DEFINE= MYSQL POSTGRESQL MARKDOWN RMAGIC THIN OPTIONS_DEFAULT=MYSQL MARKDOWN RMAGIC THIN OPTIONS_SUB= yes POSTGRESQL_DESC=Enable PostgreSQL support MARKDOWN_DESC= Enable Markdown support RMAGIC_DESC= Enable Gantt charts support THIN_DESC= Use Thin WEB server MYSQL_DESC= MySQL database support (via mysql2 rubygem) NO_OPTIONS_SORT= yes MYSQL_RUN_DEPENDS= rubygem-mysql2>=0.5.0:databases/rubygem-mysql2 POSTGRESQL_RUN_DEPENDS= rubygem-pg>=1.1.4:databases/rubygem-pg MARKDOWN_RUN_DEPENDS= rubygem-redcarpet>=3.4.0:textproc/rubygem-redcarpet RMAGIC_RUN_DEPENDS= rubygem-mini_magick>=4.9.5:graphics/rubygem-mini_magick THIN_RUN_DEPENDS= rubygem-thin>=1.6.2:www/rubygem-thin THIN_SUB_LIST= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} THIN_VARS= USE_RC_SUBR=redmine .include post-extract: @${RM} -r ${WRKSRC}/.hgignore ${WRKSRC}/.gitignore ${WRKSRC}/.github \ ${WRKSRC}/files/delete.me ${WRKSRC}/log/delete.me @${MV} ${WRKSRC}/config/settings.yml ${WRKSRC}/config/settings.yml.sample @${MV} ${WRKSRC}/config/database.yml.example ${WRKSRC}/config/database.yml.sample post-patch: @${RM} ${WRKSRC}/Gemfile.orig do-install: ${MKDIR} ${STAGEDIR}${WWWDIR} ${MKDIR} ${STAGEDIR}${WWWDIR}/bundler.d ${MKDIR} ${STAGEDIR}${WWWDIR}/log ${MKDIR} ${STAGEDIR}${WWWDIR}/public/plugin_assets ${MKDIR} ${STAGEDIR}${WWWDIR}/tmp cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} ${TOUCH} ${STAGEDIR}${WWWDIR}/Gemfile.lock do-install-MYSQL-on: ${CP} ${FILESDIR}/mysql.rb ${STAGEDIR}${WWWDIR}/bundler.d do-install-POSTGRESQL-on: ${CP} ${FILESDIR}/pg.rb ${STAGEDIR}${WWWDIR}/bundler.d do-install-MARKDOWN-on: ${CP} ${FILESDIR}/markdown.rb ${STAGEDIR}${WWWDIR}/bundler.d do-install-RMAGIC-on: ${CP} ${FILESDIR}/mini_magick.rb ${STAGEDIR}${WWWDIR}/bundler.d do-install-THIN-on: ${CP} ${FILESDIR}/thin.rb ${STAGEDIR}${WWWDIR}/bundler.d post-install: (cd ${STAGEDIR}${WWWDIR} && ${RM} Gemfile.lock && bundle install --local) ${RM} ${STAGEDIR}${WWWDIR}/package.json \ ${STAGEDIR}${WWWDIR}/yarn.lock .include diff --git a/www/redmine42/bsd.redmine.mk b/www/redmine42/bsd.redmine.mk index 8fbc12562f45..97356c9a5a7e 100644 --- a/www/redmine42/bsd.redmine.mk +++ b/www/redmine42/bsd.redmine.mk @@ -1,78 +1,78 @@ # Module that simplifies installation of Redmine plugins. # # Date created: 2010-09-12 # Whom: Eygene Ryabinkin # # We're assuming standard plugin installation sequence that is described # in the https://www.redmine.org/projects/redmine/wiki/Plugins # # Basically, we need the following variables to be defined: # - REDMINE_PLUGIN_NAME: the name of the plugin; # - WWWDIR: the location of the Redmine installation; # the default value is ${PREFIX}/www/redmine; # the directory must lie under ${PREFIX} or such configuration # will be IGNORE'd; # - WRKSRC must be set to the root directory of the plugin contents: # we will copy all objects in this directory to the plugin's # destination directory, excluding all files named *.orig. # # PLIST will be generated automatically, there is no need to worry # about it. But if you will need to use your own (even the standard # packaging list in ${PORTDIR}/pkg-plist), set the variable PLIST # pointing to that file. # # You can override the target 'do-build', but in this case, you should # remember that the target named 'redmine-plugin-plist' does the # automated generation of the PLIST: use it if you need. # # # Here is an example of a simple Makefile for Redmine plugin: # {{{ # PORTNAME= me-the-plugin # PORTVERSION= 1.0 # CATEGORIES= www # MASTER_SITES= http://cool.org.name/some/path/ # # MAINTAINER= you@your.org # COMMENT= Another cool plugin for Redmine # # REDMINE_PLUGIN_NAME= redmine_http_auth # # .include "${.CURDIR}/../../www/redmine/bsd.redmine.mk" # }}} PKGNAMEPREFIX?= redmine42- RUN_DEPENDS+= redmine42>=4.2:www/redmine42 -USE_RUBY= yes +USES= ruby .if !defined(PLIST) PLIST= ${WRKDIR}/PLIST _GEN_PLIST= YesPlease .endif WWWDIR?= ${PREFIX}/www/redmine WWWDIR_REL= ${WWWDIR:S|^${PREFIX}/||} .if ${WWWDIR_REL} == ${WWWDIR} IGNORE= WWWDIR is not a child of PREFIX (${PREFIX}) .endif .if !defined(do-build) do-build: redmine-plugin-plist @${DO_NADA} .endif redmine-plugin-plist: .if defined(_GEN_PLIST) cd ${WRKSRC} && ${FIND} . -type f | ${GREP} -v '\.orig$$' | ${SED} -e's|^\.|${WWWDIR_REL}/plugins/${REDMINE_PLUGIN_NAME}|' >> ${PLIST} cd ${WRKSRC} && ${FIND} -d . -empty -type d | ${SED} -e's|^\.|@dir ${WWWDIR_REL}/plugins/${REDMINE_PLUGIN_NAME}|' >> ${PLIST} .else @${DO_NADA} .endif do-install: ${MKDIR} "${STAGEDIR}${WWWDIR}/plugins/${REDMINE_PLUGIN_NAME}" ${TAR} -C "${WRKSRC}" -cf - --exclude '*.orig' . | ${TAR} -C "${STAGEDIR}${WWWDIR}/plugins/${REDMINE_PLUGIN_NAME}" -xf - .include diff --git a/www/redmine50/Makefile b/www/redmine50/Makefile index 985eff2832e4..0db54e84a9ee 100644 --- a/www/redmine50/Makefile +++ b/www/redmine50/Makefile @@ -1,121 +1,120 @@ PORTNAME= redmine PORTVERSION= 5.0.4 PORTREVISION= 1 CATEGORIES= www MASTER_SITES= https://www.redmine.org/releases/ PKGNAMESUFFIX= 50 MAINTAINER= mikael@FreeBSD.org COMMENT= Flexible project management web application WWW= https://www.redmine.org/ LICENSE= GPLv2 LICENSE_FILE= ${WRKSRC}/doc/COPYING RUN_DEPENDS= rubygem-bundler>=1.12.0:sysutils/rubygem-bundler \ rubygem-globalid-rails61>0:databases/rubygem-globalid-rails61 \ rubygem-rails61>=6.1:www/rubygem-rails61 \ rubygem-rouge>=3.28.0:textproc/rubygem-rouge \ rubygem-request_store>=1.5.0:devel/rubygem-request_store \ rubygem-mini_mime>=1.0.1:mail/rubygem-mini_mime \ rubygem-actionpack-xml_parser-rails61>=0:textproc/rubygem-actionpack-xml_parser-rails61 \ rubygem-roadie-rails-rails61>=3.0.0:mail/rubygem-roadie-rails-rails61 \ rubygem-marcel>0:devel/rubygem-marcel \ rubygem-mail>=2.7.1:mail/rubygem-mail \ rubygem-csv>=3.2.0:devel/rubygem-csv \ rubygem-nokogiri>=1.13.8:textproc/rubygem-nokogiri \ rubygem-i18n>=1.10.0:devel/rubygem-i18n \ rubygem-rbpdf>=1.20.0:print/rubygem-rbpdf \ rubygem-addressable>0:www/rubygem-addressable \ rubygem-rubyzip>0:archivers/rubygem-rubyzip \ rubygem-net-smtp>0:mail/rubygem-net-smtp \ rubygem-net-imap>0:mail/rubygem-net-imap \ rubygem-net-pop>0:mail/rubygem-net-pop \ rubygem-psych>0:textproc/rubygem-psych \ rubygem-net-ldap>=0.17.0:net/rubygem-net-ldap \ rubygem-rotp>=5.0.0:devel/rubygem-rotp \ rubygem-rqrcode>0:www/rubygem-rqrcode \ rubygem-erb>0:devel/rubygem-erb # Per https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=264638#c9 # to be removed if https://www.redmine.org/issues/37394 is fixed RUN_DEPENDS+= rubygem-redcarpet>=3.5.1:textproc/rubygem-redcarpet \ rubygem-html-pipeline>=2.13.2:textproc/rubygem-html-pipeline \ rubygem-commonmarker>=0.23.6:textproc/rubygem-commonmarker \ rubygem-sanitize>=6.0:textproc/rubygem-sanitize \ rubygem-deckar01-task_list>=2.3.1:www/rubygem-deckar01-task_list USES= cpe -USE_RUBY= yes CONFLICTS_INSTALL= redmine42 NO_ARCH= yes NO_BUILD= yes USERS= ${WWWOWN} GROUPS= ${WWWGRP} PLIST_SUB= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} SUB_LIST= RUBY_SUFFIX=${RUBY_SUFFIX} OPTIONS_DEFINE= MYSQL POSTGRESQL MARKDOWN RMAGIC THIN OPTIONS_DEFAULT=MYSQL MARKDOWN RMAGIC THIN OPTIONS_SUB= yes POSTGRESQL_DESC=Enable PostgreSQL support MARKDOWN_DESC= Enable Markdown support RMAGIC_DESC= Enable Gantt charts support THIN_DESC= Use Thin WEB server MYSQL_DESC= MySQL database support (via mysql2 rubygem) NO_OPTIONS_SORT= yes MYSQL_RUN_DEPENDS= rubygem-mysql2>=0.5.0:databases/rubygem-mysql2 POSTGRESQL_RUN_DEPENDS= rubygem-pg>=1.2.2:databases/rubygem-pg MARKDOWN_RUN_DEPENDS= rubygem-redcarpet>=3.5.1:textproc/rubygem-redcarpet RMAGIC_RUN_DEPENDS= rubygem-mini_magick>=4.11.0:graphics/rubygem-mini_magick THIN_RUN_DEPENDS= rubygem-thin>=1.6.2:www/rubygem-thin THIN_SUB_LIST= WWWOWN=${WWWOWN} WWWGRP=${WWWGRP} THIN_VARS= USE_RC_SUBR=redmine .include post-extract: @${RM} -r ${WRKSRC}/.hgignore ${WRKSRC}/.gitignore ${WRKSRC}/.github \ ${WRKSRC}/files/delete.me ${WRKSRC}/log/delete.me @${MV} ${WRKSRC}/config/settings.yml ${WRKSRC}/config/settings.yml.sample @${MV} ${WRKSRC}/config/database.yml.example ${WRKSRC}/config/database.yml.sample post-patch: @${RM} ${WRKSRC}/Gemfile.orig do-install: ${MKDIR} ${STAGEDIR}${WWWDIR} ${MKDIR} ${STAGEDIR}${WWWDIR}/bundler.d ${MKDIR} ${STAGEDIR}${WWWDIR}/log ${MKDIR} ${STAGEDIR}${WWWDIR}/public/plugin_assets ${MKDIR} ${STAGEDIR}${WWWDIR}/tmp # https://www.redmine.org/issues/37394 ${CP} ${FILESDIR}/commonmark.rb ${STAGEDIR}${WWWDIR}/bundler.d cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR} ${TOUCH} ${STAGEDIR}${WWWDIR}/Gemfile.lock do-install-MYSQL-on: ${CP} ${FILESDIR}/mysql.rb ${STAGEDIR}${WWWDIR}/bundler.d do-install-POSTGRESQL-on: ${CP} ${FILESDIR}/pg.rb ${STAGEDIR}${WWWDIR}/bundler.d do-install-MARKDOWN-on: ${CP} ${FILESDIR}/markdown.rb ${STAGEDIR}${WWWDIR}/bundler.d do-install-RMAGIC-on: ${CP} ${FILESDIR}/mini_magick.rb ${STAGEDIR}${WWWDIR}/bundler.d do-install-THIN-on: ${CP} ${FILESDIR}/thin.rb ${STAGEDIR}${WWWDIR}/bundler.d post-install: (cd ${STAGEDIR}${WWWDIR} && ${RM} Gemfile.lock && bundle install --local) ${RM} ${STAGEDIR}${WWWDIR}/package.json \ ${STAGEDIR}${WWWDIR}/yarn.lock .include diff --git a/www/rubygem-ace-rails-ap/Makefile b/www/rubygem-ace-rails-ap/Makefile index bf6472d8ba11..a66b18c72a23 100644 --- a/www/rubygem-ace-rails-ap/Makefile +++ b/www/rubygem-ace-rails-ap/Makefile @@ -1,20 +1,19 @@ PORTNAME= ace-rails-ap PORTVERSION= 4.1.5 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ajax.org Cloud9 Editor (Ace) for the Rails 3.1 asset pipeline WWW= https://github.com/codykrieger/ace-rails-ap LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= update.sh .include diff --git a/www/rubygem-actioncable5/Makefile b/www/rubygem-actioncable5/Makefile index 3e27440daebd..3aa512b4a241 100644 --- a/www/rubygem-actioncable5/Makefile +++ b/www/rubygem-actioncable5/Makefile @@ -1,25 +1,24 @@ PORTNAME= actioncable PORTVERSION= 5.1.7 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Integrated WebSockets for Rails WWW= https://github.com/rails/rails/tree/main/actioncable LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack5>=${PORTVERSION}:www/rubygem-actionpack5 \ rubygem-nio4r>=2.0<3:devel/rubygem-nio4r \ rubygem-websocket-driver>=0.6.1<1:www/rubygem-websocket-driver USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^5\.1\. .include diff --git a/www/rubygem-actioncable50/Makefile b/www/rubygem-actioncable50/Makefile index cde63f106ea5..7924c7cf01a4 100644 --- a/www/rubygem-actioncable50/Makefile +++ b/www/rubygem-actioncable50/Makefile @@ -1,25 +1,24 @@ PORTNAME= actioncable PORTVERSION= 5.0.7.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Integrated WebSockets for Rails WWW= https://github.com/rails/rails/tree/main/actioncable LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack50>=${PORTVERSION}:www/rubygem-actionpack50 \ rubygem-nio4r>=1.2<3.0:devel/rubygem-nio4r \ rubygem-websocket-driver>=0.6.1<1:www/rubygem-websocket-driver USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^5\.0\. .include diff --git a/www/rubygem-actioncable52/Makefile b/www/rubygem-actioncable52/Makefile index d5699d52c8ed..026daf398f76 100644 --- a/www/rubygem-actioncable52/Makefile +++ b/www/rubygem-actioncable52/Makefile @@ -1,25 +1,24 @@ PORTNAME= actioncable PORTVERSION= 5.2.8.1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 52 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Integrated WebSockets for Rails WWW= https://github.com/rails/rails/tree/main/actioncable LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack52>=${PORTVERSION}:www/rubygem-actionpack52 \ rubygem-nio4r>=2.0<3:devel/rubygem-nio4r \ rubygem-websocket-driver>=0.6.1:www/rubygem-websocket-driver USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^5\.2\. .include diff --git a/www/rubygem-actioncable60/Makefile b/www/rubygem-actioncable60/Makefile index 88652c32ef8c..fc74f8a15e81 100644 --- a/www/rubygem-actioncable60/Makefile +++ b/www/rubygem-actioncable60/Makefile @@ -1,26 +1,25 @@ PORTNAME= actioncable PORTVERSION= 6.0.6 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Integrated WebSockets for Rails WWW= https://github.com/rails/rails/tree/main/actioncable \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack60>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack60 \ rubygem-nio4r>=2.0<3:devel/rubygem-nio4r \ rubygem-websocket-driver>=0.6.1:www/rubygem-websocket-driver USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^6\.0\. .include diff --git a/www/rubygem-actioncable61/Makefile b/www/rubygem-actioncable61/Makefile index 42270976c5b0..2e49ce3e186a 100644 --- a/www/rubygem-actioncable61/Makefile +++ b/www/rubygem-actioncable61/Makefile @@ -1,27 +1,26 @@ PORTNAME= actioncable PORTVERSION= 6.1.7 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Integrated WebSockets for Rails WWW= https://github.com/rails/rails/tree/main/actioncable \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack61>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack61 \ rubygem-activesupport61>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport61 \ rubygem-nio4r>=2.0<3:devel/rubygem-nio4r \ rubygem-websocket-driver>=0.6.1:www/rubygem-websocket-driver USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^6\.1\. .include diff --git a/www/rubygem-actioncable70/Makefile b/www/rubygem-actioncable70/Makefile index 03c839cb8843..9e7b0fb26f72 100644 --- a/www/rubygem-actioncable70/Makefile +++ b/www/rubygem-actioncable70/Makefile @@ -1,27 +1,26 @@ PORTNAME= actioncable PORTVERSION= 7.0.3.1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 70 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Structure many real-time application concerns into channels over a single WebSocket connection WWW= https://github.com/rails/rails/tree/main/actioncable \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack70>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack70 \ rubygem-activesupport70>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport70 \ rubygem-nio4r>=2.0<3:devel/rubygem-nio4r \ rubygem-websocket-driver>=0.6.1:www/rubygem-websocket-driver USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^7\.0\. .include diff --git a/www/rubygem-actionpack4/Makefile b/www/rubygem-actionpack4/Makefile index be9b66c0c5bc..302e60a53d1a 100644 --- a/www/rubygem-actionpack4/Makefile +++ b/www/rubygem-actionpack4/Makefile @@ -1,28 +1,27 @@ PORTNAME= actionpack PORTVERSION= 4.2.11.3 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Action Controller and Action View of Rails MVC Framework WWW= https://github.com/rails/rails/tree/main/actionpack LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionview4>=${PORTVERSION}:devel/rubygem-actionview4 \ rubygem-activesupport4>=${PORTVERSION}:devel/rubygem-activesupport4 \ rubygem-rack16>=1.6<2:www/rubygem-rack16 \ rubygem-rack-test>=0.6.2:www/rubygem-rack-test \ rubygem-rails-dom-testing1>=1.0.5<2:textproc/rubygem-rails-dom-testing1 \ rubygem-rails-html-sanitizer>=1.0.2<2:textproc/rubygem-rails-html-sanitizer USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^4\.2\. .include diff --git a/www/rubygem-actionpack5/Makefile b/www/rubygem-actionpack5/Makefile index 2557f8f26b79..db6194894106 100644 --- a/www/rubygem-actionpack5/Makefile +++ b/www/rubygem-actionpack5/Makefile @@ -1,29 +1,28 @@ PORTNAME= actionpack PORTVERSION= 5.1.7 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Action Controller and Action View of Rails MVC Framework WWW= https://github.com/rails/rails/tree/main/actionpack LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionview5>=${PORTVERSION}:devel/rubygem-actionview5 \ rubygem-activesupport5>=${PORTVERSION}:devel/rubygem-activesupport5 \ rubygem-rack22>=2.0,3<3,3:www/rubygem-rack22 \ rubygem-rack-test>=0.6.3:www/rubygem-rack-test \ rubygem-rails-dom-testing-rails5>=2.0<3:textproc/rubygem-rails-dom-testing-rails5 \ rubygem-rails-html-sanitizer>=1.0.2<2:textproc/rubygem-rails-html-sanitizer USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^5\.1\. .include diff --git a/www/rubygem-actionpack50/Makefile b/www/rubygem-actionpack50/Makefile index 7d123b61f18e..c71d7788df6b 100644 --- a/www/rubygem-actionpack50/Makefile +++ b/www/rubygem-actionpack50/Makefile @@ -1,29 +1,28 @@ PORTNAME= actionpack PORTVERSION= 5.0.7.2 PORTREVISION= 2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Action Controller and Action View of Rails MVC Framework WWW= https://github.com/rails/rails/tree/main/actionpack LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionview50>=${PORTVERSION}:devel/rubygem-actionview50 \ rubygem-activesupport50>=${PORTVERSION}:devel/rubygem-activesupport50 \ rubygem-rack22>=2.0,3<3,3:www/rubygem-rack22 \ rubygem-rack-test>=0.6.3:www/rubygem-rack-test \ rubygem-rails-dom-testing-rails50>=2.0<3:textproc/rubygem-rails-dom-testing-rails50 \ rubygem-rails-html-sanitizer>=1.0.2<2:textproc/rubygem-rails-html-sanitizer USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^5\.0\. .include diff --git a/www/rubygem-actionpack52/Makefile b/www/rubygem-actionpack52/Makefile index 2a64bf2b850f..4d089b7daf71 100644 --- a/www/rubygem-actionpack52/Makefile +++ b/www/rubygem-actionpack52/Makefile @@ -1,29 +1,28 @@ PORTNAME= actionpack PORTVERSION= 5.2.8.1 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 52 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Action Controller and Action View of Rails MVC Framework WWW= https://github.com/rails/rails/tree/main/actionpack LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionview52>=${PORTVERSION}:devel/rubygem-actionview52 \ rubygem-activesupport52>=${PORTVERSION}:devel/rubygem-activesupport52 \ rubygem-rack22>=2.0.8,3<3,3:www/rubygem-rack22 \ rubygem-rack-test>=0.6.3:www/rubygem-rack-test \ rubygem-rails-dom-testing-rails52>=2.0<3:textproc/rubygem-rails-dom-testing-rails52 \ rubygem-rails-html-sanitizer>=1.0.2<2:textproc/rubygem-rails-html-sanitizer USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^5\.2\. .include diff --git a/www/rubygem-actionpack60/Makefile b/www/rubygem-actionpack60/Makefile index 4d203931ea1b..efdbaed78269 100644 --- a/www/rubygem-actionpack60/Makefile +++ b/www/rubygem-actionpack60/Makefile @@ -1,29 +1,28 @@ PORTNAME= actionpack PORTVERSION= 6.0.6 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Action Controller and Action View of Rails MVC Framework WWW= https://github.com/rails/rails/tree/main/actionpack \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionview60>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-actionview60 \ rubygem-activesupport60>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport60 \ rubygem-rack22>=2.0.8,3<3,3:www/rubygem-rack22 \ rubygem-rack-test>=0.6.3:www/rubygem-rack-test \ rubygem-rails-dom-testing-rails60>=2.0<3:textproc/rubygem-rails-dom-testing-rails60 \ rubygem-rails-html-sanitizer>=1.2.0<2:textproc/rubygem-rails-html-sanitizer USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^6\.0\. .include diff --git a/www/rubygem-actionpack61/Makefile b/www/rubygem-actionpack61/Makefile index abb1b46c1428..84b61c1c07a1 100644 --- a/www/rubygem-actionpack61/Makefile +++ b/www/rubygem-actionpack61/Makefile @@ -1,29 +1,28 @@ PORTNAME= actionpack PORTVERSION= 6.1.7 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Action Controller and Action View of Rails MVC Framework WWW= https://github.com/rails/rails/tree/main/actionpack \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionview61>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-actionview61 \ rubygem-activesupport61>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport61 \ rubygem-rack22>=2.0.9,3<3,3:www/rubygem-rack22 \ rubygem-rack-test>=0.6.3:www/rubygem-rack-test \ rubygem-rails-dom-testing-rails61>=2.0<3:textproc/rubygem-rails-dom-testing-rails61 \ rubygem-rails-html-sanitizer>=1.2.0<2:textproc/rubygem-rails-html-sanitizer USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^6\.1\. .include diff --git a/www/rubygem-actionpack70/Makefile b/www/rubygem-actionpack70/Makefile index 70a347e713cd..63f2beb122d6 100644 --- a/www/rubygem-actionpack70/Makefile +++ b/www/rubygem-actionpack70/Makefile @@ -1,30 +1,29 @@ PORTNAME= actionpack PORTVERSION= 7.0.3.1 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 70 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Action Controller and Action View of Rails MVC Framework WWW= https://github.com/rails/rails/tree/main/actionpack \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionview70>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-actionview70 \ rubygem-activesupport70>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport70 \ rubygem-rack22>=2.2.0,3<3,3:www/rubygem-rack22 \ rubygem-rack-test>=0.6.3:www/rubygem-rack-test \ rubygem-rails-dom-testing-rails70>=2.0<3:textproc/rubygem-rails-dom-testing-rails70 \ rubygem-rails-html-sanitizer>=1.2.0<2:textproc/rubygem-rails-html-sanitizer USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^7\.0\. .include diff --git a/www/rubygem-activeresource/Makefile b/www/rubygem-activeresource/Makefile index 66d530728e4a..0f22c6891e10 100644 --- a/www/rubygem-activeresource/Makefile +++ b/www/rubygem-activeresource/Makefile @@ -1,24 +1,23 @@ PORTNAME= activeresource PORTVERSION= 6.0.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Coherent wrapper object-relational mapping for REST web services WWW= https://github.com/rails/activeresource LICENSE= MIT RUN_DEPENDS= rubygem-activemodel60>=6.0:databases/rubygem-activemodel60 \ rubygem-activemodel-serializers-xml>=1.0<2:databases/rubygem-activemodel-serializers-xml \ rubygem-activesupport60>=6.0:devel/rubygem-activesupport60 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= active_resource .include diff --git a/www/rubygem-activeresource4/Makefile b/www/rubygem-activeresource4/Makefile index fd7824d149e6..0ce45e917967 100644 --- a/www/rubygem-activeresource4/Makefile +++ b/www/rubygem-activeresource4/Makefile @@ -1,27 +1,26 @@ PORTNAME= activeresource PORTVERSION= 4.1.0 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4 MAINTAINER= ruby@FreeBSD.org COMMENT= Coherent wrapper object-relational mapping for REST web services WWW= https://github.com/rails/activeresource LICENSE= MIT RUN_DEPENDS= rubygem-activemodel4>=4.0<5:databases/rubygem-activemodel4 \ rubygem-activesupport4>=4.0<5:devel/rubygem-activesupport4 \ rubygem-rails-observers>=0.1.2<0.2:devel/rubygem-rails-observers USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= active_resource PORTSCOUT= limit:^4\. .include diff --git a/www/rubygem-acts-as-taggable-on/Makefile b/www/rubygem-acts-as-taggable-on/Makefile index eb516cc9a268..6a9c381637dc 100644 --- a/www/rubygem-acts-as-taggable-on/Makefile +++ b/www/rubygem-acts-as-taggable-on/Makefile @@ -1,20 +1,19 @@ PORTNAME= acts-as-taggable-on PORTVERSION= 9.0.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Tag a single model on several contexts WWW= https://github.com/mbleigh/acts-as-taggable-on LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-activerecord61>=6.0<7.1:databases/rubygem-activerecord61 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-acts_as_taggable/Makefile b/www/rubygem-acts_as_taggable/Makefile index b6999a0b1ba5..c1d05840103a 100644 --- a/www/rubygem-acts_as_taggable/Makefile +++ b/www/rubygem-acts_as_taggable/Makefile @@ -1,15 +1,14 @@ PORTNAME= acts_as_taggable PORTVERSION= 2.0.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Add tagging capabilities to your ActiveRecord objects WWW= https://github.com/twoism/taggable NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-addressable/Makefile b/www/rubygem-addressable/Makefile index 91a88d845bda..540bf9347d92 100644 --- a/www/rubygem-addressable/Makefile +++ b/www/rubygem-addressable/Makefile @@ -1,22 +1,21 @@ PORTNAME= addressable PORTVERSION= 2.8.1 CATEGORIES= www devel rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Replacement for the URI implementation WWW= https://github.com/sporkmonger/addressable LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-public_suffix>=2.0.2<6.0:dns/rubygem-public_suffix USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= addressable_project .include diff --git a/www/rubygem-adsf/Makefile b/www/rubygem-adsf/Makefile index dc7e8bf03f30..cc186a002726 100644 --- a/www/rubygem-adsf/Makefile +++ b/www/rubygem-adsf/Makefile @@ -1,20 +1,19 @@ PORTNAME= adsf PORTVERSION= 1.4.6 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= douglas@douglasthrift.net COMMENT= Web server that can be spawned in any directory WWW= https://github.com/ddfreyne/adsf LICENSE= MIT RUN_DEPENDS= rubygem-rack16>=1.0.0:www/rubygem-rack16 NO_ARCH= yes USES= gem -USE_RUBY= yes PLIST_FILES= bin/adsf .include diff --git a/www/rubygem-akami/Makefile b/www/rubygem-akami/Makefile index 7a6d6bc1aaa1..ea7d7d2d6e41 100644 --- a/www/rubygem-akami/Makefile +++ b/www/rubygem-akami/Makefile @@ -1,20 +1,19 @@ PORTNAME= akami PORTVERSION= 1.3.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= joe@thrallingpenguin.com COMMENT= Library for building web service security WWW= https://github.com/savonrb/akami LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-gyoku>=0.4.0:devel/rubygem-gyoku \ rubygem-nokogiri>=0:textproc/rubygem-nokogiri NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-amazon-ecs/Makefile b/www/rubygem-amazon-ecs/Makefile index 81a6ac0ea974..6b256fddfef6 100644 --- a/www/rubygem-amazon-ecs/Makefile +++ b/www/rubygem-amazon-ecs/Makefile @@ -1,20 +1,19 @@ PORTNAME= amazon-ecs PORTVERSION= 2.6.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Generic Amazon E-commerce REST API written in Ruby WWW= https://github.com/jugend/amazon-ecs LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-nokogiri>=1.10<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-anemone/Makefile b/www/rubygem-anemone/Makefile index 357a323d753b..80711a3be04d 100644 --- a/www/rubygem-anemone/Makefile +++ b/www/rubygem-anemone/Makefile @@ -1,22 +1,21 @@ PORTNAME= anemone PORTVERSION= 0.7.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library that allows programs to spider websites WWW= https://github.com/chriskite/anemone LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-nokogiri>=1.3.0:textproc/rubygem-nokogiri \ rubygem-robotex>=1.0.0:www/rubygem-robotex NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/anemone .include diff --git a/www/rubygem-asana/Makefile b/www/rubygem-asana/Makefile index 51a5a5a626fe..f86655adef93 100644 --- a/www/rubygem-asana/Makefile +++ b/www/rubygem-asana/Makefile @@ -1,24 +1,23 @@ PORTNAME= asana PORTVERSION= 2.0.0 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby wrapper for the Asana REST API WWW= https://github.com/Asana/ruby-asana LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-faraday1>=1.0<2:www/rubygem-faraday1 \ rubygem-faraday_middleware>=1.0<2:www/rubygem-faraday_middleware \ rubygem-faraday_middleware-multi_json>=0.0<1:devel/rubygem-faraday_middleware-multi_json \ rubygem-oauth2>=1.4<3:net/rubygem-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-asana0/Makefile b/www/rubygem-asana0/Makefile index 4bd23c108862..b5348f66fab1 100644 --- a/www/rubygem-asana0/Makefile +++ b/www/rubygem-asana0/Makefile @@ -1,26 +1,25 @@ PORTNAME= asana PORTVERSION= 0.10.13 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 0 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby wrapper for the Asana REST API WWW= https://github.com/Asana/ruby-asana LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-faraday1>=1.0<2:www/rubygem-faraday1 \ rubygem-faraday_middleware>=1.0<2:www/rubygem-faraday_middleware \ rubygem-faraday_middleware-multi_json>=0.0<1:devel/rubygem-faraday_middleware-multi_json \ rubygem-oauth21>=1.4<3:net/rubygem-oauth21 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^0\. .include diff --git a/www/rubygem-asana1/Makefile b/www/rubygem-asana1/Makefile index 06685c2fd660..aa816604306a 100644 --- a/www/rubygem-asana1/Makefile +++ b/www/rubygem-asana1/Makefile @@ -1,27 +1,26 @@ PORTNAME= asana PORTVERSION= 1.0.0 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby wrapper for the Asana REST API WWW= https://github.com/Asana/ruby-asana LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-faraday1>=1.0<2:www/rubygem-faraday1 \ rubygem-faraday_middleware>=1.0<2:www/rubygem-faraday_middleware \ rubygem-faraday_middleware-multi_json>=0.0<1:devel/rubygem-faraday_middleware-multi_json \ rubygem-oauth2>=1.4<3:net/rubygem-oauth2 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\. .include diff --git a/www/rubygem-async-http/Makefile b/www/rubygem-async-http/Makefile index 292e6d4b96a2..0bb1d84ca0ce 100644 --- a/www/rubygem-async-http/Makefile +++ b/www/rubygem-async-http/Makefile @@ -1,25 +1,24 @@ PORTNAME= async-http PORTVERSION= 0.59.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= HTTP client and server library WWW= https://github.com/socketry/async-http LICENSE= MIT RUN_DEPENDS= rubygem-async>=1.25:devel/rubygem-async \ rubygem-async-io>=1.28:devel/rubygem-async-io \ rubygem-async-pool>=0.2:www/rubygem-async-pool \ rubygem-protocol-http>=0.23.1<0.24:www/rubygem-protocol-http \ rubygem-protocol-http1>=0.14.0<0.15:www/rubygem-protocol-http1 \ rubygem-protocol-http2>=0.14.0<0.15:www/rubygem-protocol-http2 \ rubygem-traces>=0.8.0:devel/rubygem-traces USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-async-pool/Makefile b/www/rubygem-async-pool/Makefile index 12ad65344bc0..0ccb250f26d7 100644 --- a/www/rubygem-async-pool/Makefile +++ b/www/rubygem-async-pool/Makefile @@ -1,19 +1,18 @@ PORTNAME= async-pool PORTVERSION= 0.3.12 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Redis client library WWW= https://github.com/socketry/async-pool LICENSE= MIT RUN_DEPENDS= rubygem-async>=1.25:devel/rubygem-async USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-async-rest/Makefile b/www/rubygem-async-rest/Makefile index 25b1f255ccf9..1a08dfa415e1 100644 --- a/www/rubygem-async-rest/Makefile +++ b/www/rubygem-async-rest/Makefile @@ -1,20 +1,19 @@ PORTNAME= async-rest PORTVERSION= 0.12.4 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= RESTful clients (and hopefully servers) WWW= https://github.com/socketry/async-rest LICENSE= MIT RUN_DEPENDS= rubygem-async-http>=0.42<1:www/rubygem-async-http \ rubygem-protocol-http>=0.7<1:www/rubygem-protocol-http USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-async-websocket/Makefile b/www/rubygem-async-websocket/Makefile index 7497c5d9f13f..0f3edbc31be6 100644 --- a/www/rubygem-async-websocket/Makefile +++ b/www/rubygem-async-websocket/Makefile @@ -1,22 +1,21 @@ PORTNAME= async-websocket PORTVERSION= 0.22.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Async websocket library on top of websocket-driver WWW= https://github.com/socketry/async-websocket LICENSE= MIT RUN_DEPENDS= rubygem-async-http>=0.54<1:www/rubygem-async-http \ rubygem-async-io>=1.23<2:devel/rubygem-async-io \ rubygem-protocol-rack>=0.1<1:www/rubygem-protocol-rack \ rubygem-protocol-websocket>=0.9.1<0.10:www/rubygem-protocol-websocket USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-async_sinatra/Makefile b/www/rubygem-async_sinatra/Makefile index 60634b28198a..699f21ed2164 100644 --- a/www/rubygem-async_sinatra/Makefile +++ b/www/rubygem-async_sinatra/Makefile @@ -1,19 +1,18 @@ PORTNAME= async_sinatra PORTVERSION= 1.3.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Sinatra plugin to provide async responses WWW= https://github.com/raggi/async_sinatra LICENSE= MIT RUN_DEPENDS= rubygem-rack>=2.0.0,3:www/rubygem-rack \ rubygem-sinatra>=1.4.8:www/rubygem-sinatra NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-atlassian-jwt/Makefile b/www/rubygem-atlassian-jwt/Makefile index 271a2dbc5442..f4a8c57edf48 100644 --- a/www/rubygem-atlassian-jwt/Makefile +++ b/www/rubygem-atlassian-jwt/Makefile @@ -1,19 +1,18 @@ PORTNAME= atlassian-jwt PORTVERSION= 0.2.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Authenticate with the Atlassian Connect REST APIs WWW= https://bitbucket.org/atlassian/atlassian-jwt-ruby LICENSE= APACHE20 RUN_DEPENDS= rubygem-jwt>=2.1<3:www/rubygem-jwt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-best_in_place-rails5/Makefile b/www/rubygem-best_in_place-rails5/Makefile index 498b7b300d51..e42c4a370166 100644 --- a/www/rubygem-best_in_place-rails5/Makefile +++ b/www/rubygem-best_in_place-rails5/Makefile @@ -1,21 +1,20 @@ PORTNAME= best_in_place PORTVERSION= 3.1.1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= ruby@FreeBSD.org COMMENT= jQuery script to edit fields by clicking on them WWW= https://github.com/bernat/best_in_place LICENSE= MIT RUN_DEPENDS= rubygem-actionpack5>0:www/rubygem-actionpack5 \ rubygem-railties5>0:www/rubygem-railties5 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-best_in_place/Makefile b/www/rubygem-best_in_place/Makefile index 4f4def355afa..72950a5ef375 100644 --- a/www/rubygem-best_in_place/Makefile +++ b/www/rubygem-best_in_place/Makefile @@ -1,20 +1,19 @@ PORTNAME= best_in_place PORTVERSION= 3.1.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= jQuery script to edit fields by clicking on them WWW= https://github.com/bernat/best_in_place LICENSE= MIT RUN_DEPENDS= rubygem-actionpack4>0:www/rubygem-actionpack4 \ rubygem-railties4>0:www/rubygem-railties4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-bluecloth/Makefile b/www/rubygem-bluecloth/Makefile index 855a45cad348..4860bd397864 100644 --- a/www/rubygem-bluecloth/Makefile +++ b/www/rubygem-bluecloth/Makefile @@ -1,19 +1,18 @@ PORTNAME= bluecloth PORTVERSION= 2.2.0 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby implementation of Markdown, a text-to-HTML conversion tool WWW= https://deveiate.org/projects/BlueCloth LICENSE= BSD3CLAUSE -USE_RUBY= yes USES= gem shebangfix SHEBANG_FILES= bin/bluecloth PLIST_FILES= bin/bluecloth .include diff --git a/www/rubygem-bootstrap-sass/Makefile b/www/rubygem-bootstrap-sass/Makefile index 69252d5811b5..e0c6176dcf8a 100644 --- a/www/rubygem-bootstrap-sass/Makefile +++ b/www/rubygem-bootstrap-sass/Makefile @@ -1,23 +1,22 @@ PORTNAME= bootstrap-sass PORTVERSION= 3.4.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Bootstrap by Twitter WWW= https://github.com/twbs/bootstrap-sass LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-autoprefixer-rails>=5.2.1:textproc/rubygem-autoprefixer-rails \ rubygem-sassc>=2.0.0:textproc/rubygem-sassc USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= test/node_sass_compile_test.sh .include diff --git a/www/rubygem-browser/Makefile b/www/rubygem-browser/Makefile index e46077bda1af..5b0a9fc4e705 100644 --- a/www/rubygem-browser/Makefile +++ b/www/rubygem-browser/Makefile @@ -1,17 +1,16 @@ PORTNAME= browser PORTVERSION= 5.3.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Web browser detection for Ruby WWW= https://github.com/fnando/browser LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-cal-heatmap-rails/Makefile b/www/rubygem-cal-heatmap-rails/Makefile index fe5c541013b0..24f1df843b12 100644 --- a/www/rubygem-cal-heatmap-rails/Makefile +++ b/www/rubygem-cal-heatmap-rails/Makefile @@ -1,19 +1,18 @@ PORTNAME= cal-heatmap-rails PORTVERSION= 3.6.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Calendar heatmap assets for Rails WWW= https://github.com/pavolzbell/cal-heatmap-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-d3_rails>=3.4.6:www/rubygem-d3_rails NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-carrierwave/Makefile b/www/rubygem-carrierwave/Makefile index 4b59b89aeae4..00b36ca411bc 100644 --- a/www/rubygem-carrierwave/Makefile +++ b/www/rubygem-carrierwave/Makefile @@ -1,24 +1,23 @@ PORTNAME= carrierwave PORTVERSION= 1.3.2 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Upload files, map them to a range of ORMs, store on different backends WWW= https://github.com/carrierwaveuploader/carrierwave LICENSE= MIT RUN_DEPENDS= rubygem-activemodel61>=4.0.0:databases/rubygem-activemodel61 \ rubygem-activesupport61>=4.0.0:devel/rubygem-activesupport61 \ rubygem-mime-types>=1.16:misc/rubygem-mime-types \ rubygem-ssrf_filter>=1.0<2:security/rubygem-ssrf_filter USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-cgi/Makefile b/www/rubygem-cgi/Makefile index 1d5ddf100a3b..6c431ebcdd81 100644 --- a/www/rubygem-cgi/Makefile +++ b/www/rubygem-cgi/Makefile @@ -1,19 +1,18 @@ PORTNAME= cgi PORTVERSION= 0.3.5 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Support for the Common Gateway Interface protocol WWW= https://github.com/ruby/cgi LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt USES= cpe gem -USE_RUBY= yes CPE_VENDOR= ruby-lang .include diff --git a/www/rubygem-cgi_multipart_eof_fix/Makefile b/www/rubygem-cgi_multipart_eof_fix/Makefile index ac3d40a8cafd..bfe5c2c24623 100644 --- a/www/rubygem-cgi_multipart_eof_fix/Makefile +++ b/www/rubygem-cgi_multipart_eof_fix/Makefile @@ -1,18 +1,17 @@ PORTNAME= cgi_multipart_eof_fix PORTVERSION= 2.5.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Fix an exploitable bug in CGI multipart parsing WWW= http://blog.evanweaver.com/pages/code #cgi_multipart_eof_fix LICENSE= GPLv2 RUBY LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-chosen-rails/Makefile b/www/rubygem-chosen-rails/Makefile index 1fc0f7cd049b..9a7570061321 100644 --- a/www/rubygem-chosen-rails/Makefile +++ b/www/rubygem-chosen-rails/Makefile @@ -1,22 +1,21 @@ PORTNAME= chosen-rails PORTVERSION= 1.10.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Box enhancer for jQuery and Protoype WWW= https://github.com/tsechingho/chosen-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-coffee-rails4>=3.2:devel/rubygem-coffee-rails4 \ rubygem-railties4>=3.0:www/rubygem-railties4 \ rubygem-sassc-rails-rails4>=2.1.2:textproc/rubygem-sassc-rails-rails4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-chromedriver-helper/Makefile b/www/rubygem-chromedriver-helper/Makefile index f8a583ec35e1..a01a2a182c90 100644 --- a/www/rubygem-chromedriver-helper/Makefile +++ b/www/rubygem-chromedriver-helper/Makefile @@ -1,24 +1,23 @@ PORTNAME= chromedriver-helper PORTVERSION= 2.1.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Easy installation and use of chromedriver WWW= https://github.com/flavorjones/chromedriver-helper LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-archive-zip>=0.10<1:archivers/rubygem-archive-zip \ rubygem-nokogiri>=1.8<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/chromedriver-helper \ bin/chromedriver-update .include diff --git a/www/rubygem-cookiejar/Makefile b/www/rubygem-cookiejar/Makefile index 78068762d21e..a9a665de1179 100644 --- a/www/rubygem-cookiejar/Makefile +++ b/www/rubygem-cookiejar/Makefile @@ -1,17 +1,16 @@ PORTNAME= cookiejar PORTVERSION= 0.3.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Allows for parsing and returning cookies in Ruby HTTP client code WWW= https://github.com/dwaite/cookiejar LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-crass/Makefile b/www/rubygem-crass/Makefile index a17f86269f07..f003da459c6e 100644 --- a/www/rubygem-crass/Makefile +++ b/www/rubygem-crass/Makefile @@ -1,18 +1,17 @@ PORTNAME= crass PORTVERSION= 1.0.6 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= CSS parser based on the CSS Syntax Level 3 draft WWW= https://github.com/rgrove/crass LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-cssbundling-rails/Makefile b/www/rubygem-cssbundling-rails/Makefile index 21de4e0d4430..d84b99a7ccf2 100644 --- a/www/rubygem-cssbundling-rails/Makefile +++ b/www/rubygem-cssbundling-rails/Makefile @@ -1,20 +1,19 @@ PORTNAME= cssbundling-rails PORTVERSION= 1.1.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Bundle and process CSS with Tailwind, Bootstrap, PostCSS, Sass in Rails via Node.js WWW= https://github.com/rails/cssbundling-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-railties70>=6.0.0:www/rubygem-railties70 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-cuba/Makefile b/www/rubygem-cuba/Makefile index baf4e4c62886..d8fc73630f57 100644 --- a/www/rubygem-cuba/Makefile +++ b/www/rubygem-cuba/Makefile @@ -1,20 +1,19 @@ PORTNAME= cuba PORTVERSION= 3.9.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Microframework for web applications WWW= https://github.com/soveran/cuba LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rack>=1.6.0,3:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-d3_rails/Makefile b/www/rubygem-d3_rails/Makefile index f9f86708e22c..a9268df27f95 100644 --- a/www/rubygem-d3_rails/Makefile +++ b/www/rubygem-d3_rails/Makefile @@ -1,19 +1,18 @@ PORTNAME= d3_rails PORTVERSION= 4.1.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= JavaScript framework for data visualization WWW= https://github.com/logical42/d3_rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT_LICENSE RUN_DEPENDS= rubygem-railties4>=3.1.0:www/rubygem-railties4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-davclient/Makefile b/www/rubygem-davclient/Makefile index 99de4384a861..a991bc47f213 100644 --- a/www/rubygem-davclient/Makefile +++ b/www/rubygem-davclient/Makefile @@ -1,19 +1,18 @@ PORTNAME= davclient PORTVERSION= 0.0.8 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Command line WebDAV client and Ruby library WWW= http://davclient.rubyforge.org/davclient LICENSE= GPLv2 NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/dav .include diff --git a/www/rubygem-deckar01-task_list/Makefile b/www/rubygem-deckar01-task_list/Makefile index 16dbc81a7a4e..cc35a991dc5a 100644 --- a/www/rubygem-deckar01-task_list/Makefile +++ b/www/rubygem-deckar01-task_list/Makefile @@ -1,20 +1,19 @@ PORTNAME= deckar01-task_list PORTVERSION= 2.3.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Markdown TaskList components WWW= https://github.com/deckar01/task_list LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-html-pipeline>=0:textproc/rubygem-html-pipeline USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-domainatrix/Makefile b/www/rubygem-domainatrix/Makefile index bc8694cef104..3737a9dc6eba 100644 --- a/www/rubygem-domainatrix/Makefile +++ b/www/rubygem-domainatrix/Makefile @@ -1,19 +1,18 @@ PORTNAME= domainatrix PORTVERSION= 0.0.11 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library for parsing domain names and canonicalizing URLs WWW= https://github.com/pauldix/domainatrix LICENSE= MIT RUN_DEPENDS= rubygem-addressable>=0:www/rubygem-addressable NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-dropzonejs-rails/Makefile b/www/rubygem-dropzonejs-rails/Makefile index 2da896c6787c..1b8b6e39a656 100644 --- a/www/rubygem-dropzonejs-rails/Makefile +++ b/www/rubygem-dropzonejs-rails/Makefile @@ -1,19 +1,18 @@ PORTNAME= dropzonejs-rails PORTVERSION= 0.8.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= JS File upload by Matias Meno WWW= https://github.com/ncuesta/dropzonejs-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rails4>=3.1:www/rubygem-rails4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-em-http-request/Makefile b/www/rubygem-em-http-request/Makefile index b1cbf4e20405..e4acb0ef8205 100644 --- a/www/rubygem-em-http-request/Makefile +++ b/www/rubygem-em-http-request/Makefile @@ -1,23 +1,22 @@ PORTNAME= em-http-request PORTVERSION= 1.1.7 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= EventMachine based, async HTTP Request client WWW= https://github.com/igrigorik/em-http-request LICENSE= MIT RUN_DEPENDS= rubygem-addressable>=2.3.4:www/rubygem-addressable \ rubygem-cookiejar>=0:www/rubygem-cookiejar \ rubygem-em-socksify>=0.3:www/rubygem-em-socksify \ rubygem-eventmachine>=1.0.3:devel/rubygem-eventmachine \ rubygem-http_parser.rb>=0.6.0:net/rubygem-http_parser.rb USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-em-socksify/Makefile b/www/rubygem-em-socksify/Makefile index 02ad0abb7966..488474012e40 100644 --- a/www/rubygem-em-socksify/Makefile +++ b/www/rubygem-em-socksify/Makefile @@ -1,19 +1,18 @@ PORTNAME= em-socksify PORTVERSION= 0.3.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= EventMachine SOCKSify shim: adds SOCKS support to any protocol WWW= https://github.com/igrigorik/em-socksify LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-eventmachine>=1.0.0:devel/rubygem-eventmachine NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-em-twitter/Makefile b/www/rubygem-em-twitter/Makefile index 8435453e726e..ec49110b9003 100644 --- a/www/rubygem-em-twitter/Makefile +++ b/www/rubygem-em-twitter/Makefile @@ -1,23 +1,22 @@ PORTNAME= em-twitter PORTVERSION= 0.3.5 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Twitter Streaming API client for EventMachine WWW= https://github.com/tweetstream/em-twitter LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-buftok>=0.2<1:devel/rubygem-buftok \ rubygem-eventmachine>=1.0<2:devel/rubygem-eventmachine \ rubygem-http_parser.rb>=0.6<1:net/rubygem-http_parser.rb \ rubygem-simple_oauth>=0.2<1:net/rubygem-simple_oauth USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-em-websocket/Makefile b/www/rubygem-em-websocket/Makefile index 27b3e31d390a..ee6f1229c1e2 100644 --- a/www/rubygem-em-websocket/Makefile +++ b/www/rubygem-em-websocket/Makefile @@ -1,21 +1,20 @@ PORTNAME= em-websocket PORTVERSION= 0.5.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= EventMachine based WebSocket server WWW= https://github.com/igrigorik/em-websocket LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENCE RUN_DEPENDS= rubygem-eventmachine>=0.12.9:devel/rubygem-eventmachine \ rubygem-http_parser.rb>=0<1:net/rubygem-http_parser.rb USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-emk-sinatra-url-for/Makefile b/www/rubygem-emk-sinatra-url-for/Makefile index 79faabe120ad..e4f523b72416 100644 --- a/www/rubygem-emk-sinatra-url-for/Makefile +++ b/www/rubygem-emk-sinatra-url-for/Makefile @@ -1,19 +1,18 @@ PORTNAME= emk-sinatra-url-for PORTVERSION= 0.2.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Construct absolute paths and full URLs for a Sinatra application WWW= https://github.com/emk/sinatra-url-for LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-sinatra>=0.9.1.1:www/rubygem-sinatra NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-erubi/Makefile b/www/rubygem-erubi/Makefile index 5ff2d35d7092..2b086e14c142 100644 --- a/www/rubygem-erubi/Makefile +++ b/www/rubygem-erubi/Makefile @@ -1,18 +1,17 @@ PORTNAME= erubi PORTVERSION= 1.11.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= ERB template engine for Ruby WWW= https://github.com/jeremyevans/erubi LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-erubi19/Makefile b/www/rubygem-erubi19/Makefile index 4d9c50b194cf..6bbf37bc754a 100644 --- a/www/rubygem-erubi19/Makefile +++ b/www/rubygem-erubi19/Makefile @@ -1,21 +1,20 @@ PORTNAME= erubi PORTVERSION= 1.9.0 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 19 MAINTAINER= sunpoet@FreeBSD.org COMMENT= ERB template engine for Ruby WWW= https://github.com/jeremyevans/erubi LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\.9\. .include diff --git a/www/rubygem-erubis/Makefile b/www/rubygem-erubis/Makefile index dbb5f0a803d1..df49fe128123 100644 --- a/www/rubygem-erubis/Makefile +++ b/www/rubygem-erubis/Makefile @@ -1,20 +1,19 @@ PORTNAME= erubis PORTVERSION= 2.7.0 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Fast, secure, and extensible implementation of eRuby WWW= http://www.kuwata-lab.com/erubis/ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/erubis .include diff --git a/www/rubygem-ethon/Makefile b/www/rubygem-ethon/Makefile index c57a80c82805..5f677e6da8d3 100644 --- a/www/rubygem-ethon/Makefile +++ b/www/rubygem-ethon/Makefile @@ -1,21 +1,20 @@ PORTNAME= ethon PORTVERSION= 0.16.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Very lightweight libcurl wrapper WWW= https://github.com/typhoeus/ethon LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libcurl.so:ftp/curl RUN_DEPENDS= rubygem-ffi>=1.15.0:devel/rubygem-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-eventmachine_httpserver/Makefile b/www/rubygem-eventmachine_httpserver/Makefile index ce4e25f2bc83..bf8fd4fc5f5a 100644 --- a/www/rubygem-eventmachine_httpserver/Makefile +++ b/www/rubygem-eventmachine_httpserver/Makefile @@ -1,15 +1,14 @@ PORTNAME= eventmachine_httpserver PORTVERSION= 0.2.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= EventMachine HTTP Server WWW= https://github.com/eventmachine/evma_httpserver LICENSE= GPLv2 USES= gem -USE_RUBY= yes .include diff --git a/www/rubygem-faraday-em_http/Makefile b/www/rubygem-faraday-em_http/Makefile index a56039153cc9..692159e1d06b 100644 --- a/www/rubygem-faraday-em_http/Makefile +++ b/www/rubygem-faraday-em_http/Makefile @@ -1,18 +1,17 @@ PORTNAME= faraday-em_http PORTVERSION= 1.0.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Faraday adapter for Em::Http WWW= https://github.com/lostisland/faraday-em_http LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-faraday-em_synchrony/Makefile b/www/rubygem-faraday-em_synchrony/Makefile index 76489d0153f3..552ad7228eb8 100644 --- a/www/rubygem-faraday-em_synchrony/Makefile +++ b/www/rubygem-faraday-em_synchrony/Makefile @@ -1,18 +1,17 @@ PORTNAME= faraday-em_synchrony PORTVERSION= 1.0.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Faraday adapter for Em::Synchrony WWW= https://github.com/lostisland/faraday-em_synchrony LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-faraday-follow_redirects/Makefile b/www/rubygem-faraday-follow_redirects/Makefile index 713c3318eae2..a82020bf26a4 100644 --- a/www/rubygem-faraday-follow_redirects/Makefile +++ b/www/rubygem-faraday-follow_redirects/Makefile @@ -1,20 +1,19 @@ PORTNAME= faraday-follow_redirects PORTVERSION= 0.3.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Faraday 2.x compatible extraction of FaradayMiddleware::FollowRedirects WWW= https://github.com/tisba/faraday-follow-redirects LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-faraday>=1<3:www/rubygem-faraday USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-faraday-http-cache/Makefile b/www/rubygem-faraday-http-cache/Makefile index 26384e10a1e6..49054afd58e0 100644 --- a/www/rubygem-faraday-http-cache/Makefile +++ b/www/rubygem-faraday-http-cache/Makefile @@ -1,21 +1,20 @@ PORTNAME= faraday-http-cache PORTVERSION= 2.2.0 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Middleware to handle HTTP caching WWW= https://github.com/sourcelevel/faraday-http-cache LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-faraday1>=0.8:www/rubygem-faraday1 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-faraday-httpclient/Makefile b/www/rubygem-faraday-httpclient/Makefile index f991a78ab3e6..efbd8eaa2698 100644 --- a/www/rubygem-faraday-httpclient/Makefile +++ b/www/rubygem-faraday-httpclient/Makefile @@ -1,20 +1,19 @@ PORTNAME= faraday-httpclient PORTVERSION= 2.0.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Faraday adapter for HTTPClient WWW= https://github.com/lostisland/faraday-httpclient LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-httpclient>=2.2:www/rubygem-httpclient USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-faraday-httpclient1/Makefile b/www/rubygem-faraday-httpclient1/Makefile index 008deb8c103c..593cad6fa642 100644 --- a/www/rubygem-faraday-httpclient1/Makefile +++ b/www/rubygem-faraday-httpclient1/Makefile @@ -1,21 +1,20 @@ PORTNAME= faraday-httpclient PORTVERSION= 1.0.1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Faraday adapter for HTTPClient WWW= https://github.com/lostisland/faraday-httpclient LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\. .include diff --git a/www/rubygem-faraday-multipart/Makefile b/www/rubygem-faraday-multipart/Makefile index dcc06a1d7b5f..182b0e25ef1d 100644 --- a/www/rubygem-faraday-multipart/Makefile +++ b/www/rubygem-faraday-multipart/Makefile @@ -1,20 +1,19 @@ PORTNAME= faraday-multipart PORTVERSION= 1.0.4 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Perform multipart-post requests using Faraday WWW= https://github.com/lostisland/faraday-multipart LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-multipart-post>=2<3:www/rubygem-multipart-post USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-faraday-net_http/Makefile b/www/rubygem-faraday-net_http/Makefile index 8781ce8c4fa4..30fd86dc30e9 100644 --- a/www/rubygem-faraday-net_http/Makefile +++ b/www/rubygem-faraday-net_http/Makefile @@ -1,18 +1,17 @@ PORTNAME= faraday-net_http PORTVERSION= 3.0.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Faraday adapter for Net::HTTP WWW= https://github.com/lostisland/faraday-net_http LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-faraday-net_http1/Makefile b/www/rubygem-faraday-net_http1/Makefile index c50ac208e3d5..3a032ba87713 100644 --- a/www/rubygem-faraday-net_http1/Makefile +++ b/www/rubygem-faraday-net_http1/Makefile @@ -1,21 +1,20 @@ PORTNAME= faraday-net_http PORTVERSION= 1.0.1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Faraday adapter for Net::HTTP WWW= https://github.com/lostisland/faraday-net_http LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\. .include diff --git a/www/rubygem-faraday-net_http_persistent/Makefile b/www/rubygem-faraday-net_http_persistent/Makefile index 51499112738b..55a2a3427f0d 100644 --- a/www/rubygem-faraday-net_http_persistent/Makefile +++ b/www/rubygem-faraday-net_http_persistent/Makefile @@ -1,21 +1,20 @@ PORTNAME= faraday-net_http_persistent PORTVERSION= 2.1.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Faraday adapter for NetHttpPersistent WWW= https://github.com/lostisland/faraday-net_http_persistent LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-faraday>=2.5<3:www/rubygem-faraday \ rubygem-net-http-persistent>=4.0<5:www/rubygem-net-http-persistent USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-faraday-net_http_persistent1/Makefile b/www/rubygem-faraday-net_http_persistent1/Makefile index bdc9b22e6852..420285717f19 100644 --- a/www/rubygem-faraday-net_http_persistent1/Makefile +++ b/www/rubygem-faraday-net_http_persistent1/Makefile @@ -1,21 +1,20 @@ PORTNAME= faraday-net_http_persistent PORTVERSION= 1.2.0 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Faraday adapter for NetHttpPersistent WWW= https://github.com/lostisland/faraday-net_http_persistent LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\. .include diff --git a/www/rubygem-faraday-patron/Makefile b/www/rubygem-faraday-patron/Makefile index df2b445855e4..3a40cdfc429f 100644 --- a/www/rubygem-faraday-patron/Makefile +++ b/www/rubygem-faraday-patron/Makefile @@ -1,20 +1,19 @@ PORTNAME= faraday-patron PORTVERSION= 2.0.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Faraday adapter for Patron WWW= https://github.com/lostisland/faraday-patron LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-patron>=0.4.2:www/rubygem-patron USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-faraday-patron1/Makefile b/www/rubygem-faraday-patron1/Makefile index de99e167ab54..895a86d38b0f 100644 --- a/www/rubygem-faraday-patron1/Makefile +++ b/www/rubygem-faraday-patron1/Makefile @@ -1,21 +1,20 @@ PORTNAME= faraday-patron PORTVERSION= 1.0.0 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Faraday adapter for Patron WWW= https://github.com/lostisland/faraday-patron LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\. .include diff --git a/www/rubygem-faraday-rack/Makefile b/www/rubygem-faraday-rack/Makefile index 5ed0e0d9498a..bbf875c163e9 100644 --- a/www/rubygem-faraday-rack/Makefile +++ b/www/rubygem-faraday-rack/Makefile @@ -1,20 +1,19 @@ PORTNAME= faraday-rack PORTVERSION= 2.0.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Faraday adapter for Rack WWW= https://github.com/lostisland/faraday-rack LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-faraday>=2.0<3:www/rubygem-faraday USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-faraday-rack1/Makefile b/www/rubygem-faraday-rack1/Makefile index 58ce24f1337c..af8923ed05a1 100644 --- a/www/rubygem-faraday-rack1/Makefile +++ b/www/rubygem-faraday-rack1/Makefile @@ -1,21 +1,20 @@ PORTNAME= faraday-rack PORTVERSION= 1.0.0 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Faraday adapter for Rack WWW= https://github.com/lostisland/faraday-rack LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\. .include diff --git a/www/rubygem-faraday-retry/Makefile b/www/rubygem-faraday-retry/Makefile index f8d094af5efd..4c116dd8f3c2 100644 --- a/www/rubygem-faraday-retry/Makefile +++ b/www/rubygem-faraday-retry/Makefile @@ -1,20 +1,19 @@ PORTNAME= faraday-retry PORTVERSION= 2.0.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Catch exceptions and retries each request a limited number of times WWW= https://github.com/lostisland/faraday-retry LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-faraday>=2.0<3:www/rubygem-faraday USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-faraday-retry1/Makefile b/www/rubygem-faraday-retry1/Makefile index 5e99804cac91..780c16df704e 100644 --- a/www/rubygem-faraday-retry1/Makefile +++ b/www/rubygem-faraday-retry1/Makefile @@ -1,21 +1,20 @@ PORTNAME= faraday-retry PORTVERSION= 1.0.3 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Catch exceptions and retries each request a limited number of times WWW= https://github.com/lostisland/faraday-retry LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\. .include diff --git a/www/rubygem-faraday/Makefile b/www/rubygem-faraday/Makefile index 03180295747c..70cd33acea4e 100644 --- a/www/rubygem-faraday/Makefile +++ b/www/rubygem-faraday/Makefile @@ -1,23 +1,22 @@ PORTNAME= faraday PORTVERSION= 2.7.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= HTTP/REST API client library in Ruby WWW= https://github.com/lostisland/faraday LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-faraday-net_http>=2.0<3.1:www/rubygem-faraday-net_http \ rubygem-ruby2_keywords>=0.0.4:devel/rubygem-ruby2_keywords USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= faraday_project .include diff --git a/www/rubygem-faraday0/Makefile b/www/rubygem-faraday0/Makefile index ddd1064d25f1..86fb40e50c6f 100644 --- a/www/rubygem-faraday0/Makefile +++ b/www/rubygem-faraday0/Makefile @@ -1,25 +1,24 @@ PORTNAME= faraday PORTVERSION= 0.17.6 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 0 MAINTAINER= sunpoet@FreeBSD.org COMMENT= HTTP/REST API client library in Ruby WWW= https://github.com/lostisland/faraday LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-multipart-post>=1.2<3:www/rubygem-multipart-post USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= faraday_project PORTSCOUT= limit:^0\. .include diff --git a/www/rubygem-faraday1/Makefile b/www/rubygem-faraday1/Makefile index 9cc16082f730..ed6ef430da21 100644 --- a/www/rubygem-faraday1/Makefile +++ b/www/rubygem-faraday1/Makefile @@ -1,35 +1,34 @@ PORTNAME= faraday PORTVERSION= 1.10.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= HTTP/REST API client library in Ruby WWW= https://github.com/lostisland/faraday LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-faraday-em_http>=1.0<2:www/rubygem-faraday-em_http \ rubygem-faraday-em_synchrony>=1.0<2:www/rubygem-faraday-em_synchrony \ rubygem-faraday-excon1>=1.1<2:devel/rubygem-faraday-excon1 \ rubygem-faraday-httpclient1>=1.0<2:www/rubygem-faraday-httpclient1 \ rubygem-faraday-multipart>=1.0<2:www/rubygem-faraday-multipart \ rubygem-faraday-net_http1>=1.0<2:www/rubygem-faraday-net_http1 \ rubygem-faraday-net_http_persistent1>=1.0<2:www/rubygem-faraday-net_http_persistent1 \ rubygem-faraday-patron1>=1.0<2:www/rubygem-faraday-patron1 \ rubygem-faraday-rack1>=1.0<2:www/rubygem-faraday-rack1 \ rubygem-faraday-retry1>=1.0<2:www/rubygem-faraday-retry1 \ rubygem-ruby2_keywords>=0.0.4:devel/rubygem-ruby2_keywords USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= faraday_project PORTSCOUT= limit:^1\. .include diff --git a/www/rubygem-faraday14/Makefile b/www/rubygem-faraday14/Makefile index 6bfbba07671f..525042bfbefa 100644 --- a/www/rubygem-faraday14/Makefile +++ b/www/rubygem-faraday14/Makefile @@ -1,31 +1,30 @@ PORTNAME= faraday PORTVERSION= 1.4.3 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 14 MAINTAINER= ruby@FreeBSD.org COMMENT= HTTP/REST API client library in Ruby WWW= https://github.com/lostisland/faraday LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-faraday-em_http>=1.0<2:www/rubygem-faraday-em_http \ rubygem-faraday-em_synchrony>=1.0<2:www/rubygem-faraday-em_synchrony \ rubygem-faraday-excon1>=1.1<2:devel/rubygem-faraday-excon1 \ rubygem-faraday-net_http1>=1.0<2:www/rubygem-faraday-net_http1 \ rubygem-faraday-net_http_persistent1>=1.1<2:www/rubygem-faraday-net_http_persistent1 \ rubygem-multipart-post>=1.2<3:www/rubygem-multipart-post \ rubygem-ruby2_keywords>=0.0.4:devel/rubygem-ruby2_keywords USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\.4\. .include diff --git a/www/rubygem-faraday_middleware/Makefile b/www/rubygem-faraday_middleware/Makefile index 65aad831725b..cefd44d157a6 100644 --- a/www/rubygem-faraday_middleware/Makefile +++ b/www/rubygem-faraday_middleware/Makefile @@ -1,21 +1,20 @@ PORTNAME= faraday_middleware PORTVERSION= 1.2.0 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Collection of Ruby Faraday middlewares WWW= https://github.com/lostisland/faraday_middleware LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-faraday1>=1.0<2:www/rubygem-faraday1 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-faraday_middleware0/Makefile b/www/rubygem-faraday_middleware0/Makefile index 779dc01f91d5..547c564c2788 100644 --- a/www/rubygem-faraday_middleware0/Makefile +++ b/www/rubygem-faraday_middleware0/Makefile @@ -1,23 +1,22 @@ PORTNAME= faraday_middleware PORTVERSION= 0.14.0 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 0 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Collection of Ruby Faraday middlewares WWW= https://github.com/lostisland/faraday_middleware LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-faraday0>=0.7.4<1.0:www/rubygem-faraday0 USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^0\. .include diff --git a/www/rubygem-faye-websocket/Makefile b/www/rubygem-faye-websocket/Makefile index aed4c7ae2252..21686af67a6b 100644 --- a/www/rubygem-faye-websocket/Makefile +++ b/www/rubygem-faye-websocket/Makefile @@ -1,20 +1,19 @@ PORTNAME= faye-websocket PORTVERSION= 0.11.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Standards-compliant WebSocket server and client WWW= https://github.com/faye/faye-websocket-ruby LICENSE= APACHE20 RUN_DEPENDS= rubygem-eventmachine>=0.12.0:devel/rubygem-eventmachine \ rubygem-websocket-driver>=0.5.1:www/rubygem-websocket-driver USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-faye/Makefile b/www/rubygem-faye/Makefile index c9793ec6b1c9..61878f787593 100644 --- a/www/rubygem-faye/Makefile +++ b/www/rubygem-faye/Makefile @@ -1,27 +1,26 @@ PORTNAME= faye PORTVERSION= 1.4.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple pub/sub messaging for the web WWW= https://faye.jcoglan.com/ LICENSE= MIT RUN_DEPENDS= rubygem-cookiejar>=0.3.0:www/rubygem-cookiejar \ rubygem-em-http-request>=1.1.6:www/rubygem-em-http-request \ rubygem-eventmachine>=0.12.0:devel/rubygem-eventmachine \ rubygem-faye-websocket>=0.11.0:www/rubygem-faye-websocket \ rubygem-multi_json>=1.0.0:devel/rubygem-multi_json \ rubygem-rack>=1.0.0,3:www/rubygem-rack \ rubygem-websocket-driver>=0.5.1:www/rubygem-websocket-driver USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= faye_project .include diff --git a/www/rubygem-fcgi/Makefile b/www/rubygem-fcgi/Makefile index 91693804e7b6..1588748e74a0 100644 --- a/www/rubygem-fcgi/Makefile +++ b/www/rubygem-fcgi/Makefile @@ -1,17 +1,16 @@ PORTNAME= fcgi PORTVERSION= 0.9.2.2 CATEGORIES= www ruby MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= FastCGI library for Ruby WWW= https://github.com/alphallc/ruby-fcgi-ng LICENSE= MIT LIB_DEPENDS= libfcgi.so:www/fcgi USES= gem -USE_RUBY= yes .include diff --git a/www/rubygem-feed-normalizer/Makefile b/www/rubygem-feed-normalizer/Makefile index b4dad32fd4f9..fde645637cfe 100644 --- a/www/rubygem-feed-normalizer/Makefile +++ b/www/rubygem-feed-normalizer/Makefile @@ -1,21 +1,20 @@ PORTNAME= feed-normalizer PORTVERSION= 1.5.2 PORTREVISION= 1 CATEGORIES= www textproc rubygems MASTER_SITES= RG MAINTAINER= markun@onohara.to COMMENT= Extensible wrapper for Atom and RSS parsers WWW= https://github.com/aasmith/feed-normalizer LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/License.txt RUN_DEPENDS= rubygem-hpricot>=0.6:www/rubygem-hpricot \ rubygem-simple-rss>=1.1:www/rubygem-simple-rss NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-feedjira/Makefile b/www/rubygem-feedjira/Makefile index 67767fc534ee..8103ff8e6005 100644 --- a/www/rubygem-feedjira/Makefile +++ b/www/rubygem-feedjira/Makefile @@ -1,21 +1,20 @@ PORTNAME= feedjira PORTVERSION= 3.2.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Feed fetching and parsing library WWW= https://github.com/feedjira/feedjira LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-loofah>=2.3.1:textproc/rubygem-loofah \ rubygem-sax-machine>=1.0:textproc/rubygem-sax-machine USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-flowdock/Makefile b/www/rubygem-flowdock/Makefile index dbb590ec479e..2769f34e64a2 100644 --- a/www/rubygem-flowdock/Makefile +++ b/www/rubygem-flowdock/Makefile @@ -1,21 +1,20 @@ PORTNAME= flowdock PORTVERSION= 0.7.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Gem for Flowdock API WWW= https://github.com/flowdock/flowdock-api LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-httparty>=0.7<1:www/rubygem-httparty \ rubygem-multi_json>=0:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-fuzzyurl/Makefile b/www/rubygem-fuzzyurl/Makefile index 8ed05f7f4aee..c1b1a10df038 100644 --- a/www/rubygem-fuzzyurl/Makefile +++ b/www/rubygem-fuzzyurl/Makefile @@ -1,17 +1,16 @@ PORTNAME= fuzzyurl PORTVERSION= 0.9.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Non-strict parsing, composition, and wildcard-matching of URLs in Ruby WWW= https://github.com/gamache/fuzzyurl.rb LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-geminabox/Makefile b/www/rubygem-geminabox/Makefile index 99c01d675657..6438868c2726 100644 --- a/www/rubygem-geminabox/Makefile +++ b/www/rubygem-geminabox/Makefile @@ -1,27 +1,26 @@ PORTNAME= geminabox PORTVERSION= 2.1.0 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Sinatra based gem hosting app WWW= https://tomlea.co.uk/posts/gem-in-a-box/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-builder>=0:devel/rubygem-builder \ rubygem-faraday>=1.0<3.0:www/rubygem-faraday \ rubygem-httpclient>=2.2.7:www/rubygem-httpclient \ rubygem-nesty>=0:devel/rubygem-nesty \ rubygem-reentrant_flock>=0:devel/rubygem-reentrant_flock \ rubygem-sinatra2>=2.0<3:www/rubygem-sinatra2 USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-gitlab-flowdock-git-hook/Makefile b/www/rubygem-gitlab-flowdock-git-hook/Makefile index 83e107aa4b96..447845d0c592 100644 --- a/www/rubygem-gitlab-flowdock-git-hook/Makefile +++ b/www/rubygem-gitlab-flowdock-git-hook/Makefile @@ -1,22 +1,21 @@ PORTNAME= gitlab-flowdock-git-hook PORTVERSION= 1.0.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= GitLab-patched Git Post-Receive hook for Flowdock WWW= https://github.com/flowdock/flowdock-git-hook LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-flowdock>=0.7<1:www/rubygem-flowdock \ rubygem-gitlab-grit>=2.4.1:textproc/rubygem-gitlab-grit \ rubygem-multi_json>=0:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-gitlab-gollum-lib/Makefile b/www/rubygem-gitlab-gollum-lib/Makefile index eff867592d1b..1c382ef5345f 100644 --- a/www/rubygem-gitlab-gollum-lib/Makefile +++ b/www/rubygem-gitlab-gollum-lib/Makefile @@ -1,27 +1,26 @@ PORTNAME= gitlab-gollum-lib PORTVERSION= 4.2.7.10.gitlab.2 PORTREVISION= 0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Simple, Git-powered wiki with a sweet API and local frontend WWW= https://github.com/gollum/gollum-lib LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-gemojione32>=3.2<4:graphics/rubygem-gemojione32 \ rubygem-gitlab-markup>=1.6<2:textproc/rubygem-gitlab-markup \ rubygem-gitlab-gollum-rugged_adapter>=0.4.4.4.gitlab.1<0.4.5:www/rubygem-gitlab-gollum-rugged_adapter \ rubygem-nokogiri>=1.6.1<2.0:textproc/rubygem-nokogiri \ rubygem-rouge>=3.1<4:textproc/rubygem-rouge \ rubygem-sanitize>=6.0<7:textproc/rubygem-sanitize \ rubygem-stringex>=2.6<3,1:devel/rubygem-stringex USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-gitlab-gollum-rugged_adapter/Makefile b/www/rubygem-gitlab-gollum-rugged_adapter/Makefile index 180dd01dea56..fd52071101b8 100644 --- a/www/rubygem-gitlab-gollum-rugged_adapter/Makefile +++ b/www/rubygem-gitlab-gollum-rugged_adapter/Makefile @@ -1,22 +1,21 @@ PORTNAME= gitlab-gollum-rugged_adapter PORTVERSION= 0.4.4.4.gitlab.1 PORTREVISION= 0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Adapter for Gollum to use Rugged (libgit2) at the backend WWW= https://gitlab.com/gitlab-org/gitlab-gollum-rugged_adapter LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-mime-types>=1.15:misc/rubygem-mime-types \ rubygem-rugged>=1.0<2:devel/rubygem-rugged USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-gitlab-turbolinks-classic/Makefile b/www/rubygem-gitlab-turbolinks-classic/Makefile index d963e80305aa..1633cbc106b0 100644 --- a/www/rubygem-gitlab-turbolinks-classic/Makefile +++ b/www/rubygem-gitlab-turbolinks-classic/Makefile @@ -1,20 +1,19 @@ PORTNAME= gitlab-turbolinks-classic PORTVERSION= 2.5.6 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Turbolinks makes following links in your web application faster WWW= https://gitlab.com/jamedjo/gitlab-turbolinks-classic/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-coffee-rails4>=4.0.1:devel/rubygem-coffee-rails4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-goldfinger/Makefile b/www/rubygem-goldfinger/Makefile index 88921a693883..2276483b6f47 100644 --- a/www/rubygem-goldfinger/Makefile +++ b/www/rubygem-goldfinger/Makefile @@ -1,24 +1,23 @@ PORTNAME= goldfinger PORTVERSION= 2.1.1 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Webfinger utility for Ruby WWW= https://github.com/tootsuite/goldfinger LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-addressable>=2.5<3:www/rubygem-addressable \ rubygem-http4>=4.0<5:www/rubygem-http4 \ rubygem-nokogiri>=1.8<2:textproc/rubygem-nokogiri \ rubygem-oj>=3.0<4:devel/rubygem-oj USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-gollum-grit_adapter/Makefile b/www/rubygem-gollum-grit_adapter/Makefile index 4262724453ff..8b89bf48b915 100644 --- a/www/rubygem-gollum-grit_adapter/Makefile +++ b/www/rubygem-gollum-grit_adapter/Makefile @@ -1,19 +1,18 @@ PORTNAME= gollum-grit_adapter PORTVERSION= 2.0.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Adapter for Gollum to use Grit at the backend WWW= https://github.com/gollum/grit_adapter LICENSE= MIT RUN_DEPENDS= rubygem-gitlab-grit>=2.7.1<3:textproc/rubygem-gitlab-grit USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-gollum-grit_adapter10/Makefile b/www/rubygem-gollum-grit_adapter10/Makefile index c12801c8935b..88938a6f2d30 100644 --- a/www/rubygem-gollum-grit_adapter10/Makefile +++ b/www/rubygem-gollum-grit_adapter10/Makefile @@ -1,22 +1,21 @@ PORTNAME= gollum-grit_adapter PORTVERSION= 1.0.1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 10 MAINTAINER= mfechner@FreeBSD.org COMMENT= Adapter for Gollum to use Grit at the backend WWW= https://github.com/gollum/grit_adapter LICENSE= MIT RUN_DEPENDS= rubygem-gitlab-grit>=2.7.1:textproc/rubygem-gitlab-grit USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\.0\. .include diff --git a/www/rubygem-gollum-lib/Makefile b/www/rubygem-gollum-lib/Makefile index 851becef63e9..e0ead4f9715b 100644 --- a/www/rubygem-gollum-lib/Makefile +++ b/www/rubygem-gollum-lib/Makefile @@ -1,28 +1,27 @@ PORTNAME= gollum-lib PORTVERSION= 5.2 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple, Git-powered wiki with a sweet API and local frontend WWW= https://github.com/gollum/gollum-lib LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-gemojione>=4.1<5:graphics/rubygem-gemojione \ rubygem-github-markup>=4.0<5:textproc/rubygem-github-markup \ rubygem-gollum-rugged_adapter>=1.0:www/rubygem-gollum-rugged_adapter \ rubygem-loofah>=2.3<3:textproc/rubygem-loofah \ rubygem-nokogiri>=1.8<2:textproc/rubygem-nokogiri \ rubygem-octicons>=12.0:misc/rubygem-octicons \ rubygem-rouge>=3.1<4:textproc/rubygem-rouge \ rubygem-twitter-text1>=1.14.7<1.14.8:textproc/rubygem-twitter-text1 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-gollum-rugged_adapter/Makefile b/www/rubygem-gollum-rugged_adapter/Makefile index aac9d2de005d..ff43cd9cba73 100644 --- a/www/rubygem-gollum-rugged_adapter/Makefile +++ b/www/rubygem-gollum-rugged_adapter/Makefile @@ -1,21 +1,20 @@ PORTNAME= gollum-rugged_adapter PORTVERSION= 2.0.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Adapter for Gollum to use Rugged (libgit2) at the backend WWW= https://github.com/gollum/rugged_adapter LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-mime-types>=1.15:misc/rubygem-mime-types \ rubygem-rugged>=1.1<2:devel/rubygem-rugged USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-gollum/Makefile b/www/rubygem-gollum/Makefile index 3ab2afa59234..be1cad815c59 100644 --- a/www/rubygem-gollum/Makefile +++ b/www/rubygem-gollum/Makefile @@ -1,48 +1,47 @@ PORTNAME= gollum PORTVERSION= 5.3.0 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sirl33tname@gmail.com COMMENT= Simple wiki system built on top of Git WWW= https://github.com/gollum/gollum LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= git:devel/git \ rubygem-gemojione>=4.1<5:graphics/rubygem-gemojione \ rubygem-gollum-lib>=5.1<6:www/rubygem-gollum-lib \ rubygem-i18n>=1.8:devel/rubygem-i18n \ rubygem-kramdown>=2.3<3:textproc/rubygem-kramdown \ rubygem-kramdown-parser-gfm>=1.1.0<1.2:textproc/rubygem-kramdown-parser-gfm \ rubygem-mustache-sinatra>=1.0<2:devel/rubygem-mustache-sinatra \ rubygem-octicons>=12.0:misc/rubygem-octicons \ rubygem-rdoc>=6:devel/rubygem-rdoc \ rubygem-rss>=0.2.9<0.3:www/rubygem-rss \ rubygem-sass>=3.5<4:textproc/rubygem-sass \ rubygem-sinatra2>=2.0<3:www/rubygem-sinatra2 \ rubygem-sinatra-contrib2>=2.0<3:www/rubygem-sinatra-contrib2 \ rubygem-sprockets3>=3.7<4:devel/rubygem-sprockets3 \ rubygem-sprockets-helpers>=1.2<2:devel/rubygem-sprockets-helpers \ rubygem-uglifier>=4.2<5:www/rubygem-uglifier \ rubygem-useragent>=0.16.2<0.17:devel/rubygem-useragent \ rubygem-webrick>=1.7<2:www/rubygem-webrick USES= cpe gem shebangfix CPE_VENDOR= ${PORTNAME}_project USE_RC_SUBR= ${PORTNAME} -USE_RUBY= yes SHEBANG_FILES= docker-run.sh NO_ARCH= yes PLIST_DIRS= ${WWWDIR} PLIST_FILES= bin/gollum \ bin/gollum-migrate-tags post-install: ${MKDIR} ${STAGEDIR}${PREFIX}/www/gollum .include diff --git a/www/rubygem-gon-rails5/Makefile b/www/rubygem-gon-rails5/Makefile index 52d0f1ed940d..157824bc7bba 100644 --- a/www/rubygem-gon-rails5/Makefile +++ b/www/rubygem-gon-rails5/Makefile @@ -1,24 +1,23 @@ PORTNAME= gon PORTVERSION= 6.2.1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= mfechner@FreeBSD.org COMMENT= Framework to pass data to JS easily WWW= https://github.com/gazay/gon LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-actionpack5>=3.0:www/rubygem-actionpack5 \ rubygem-multi_json>=0:devel/rubygem-multi_json \ rubygem-request_store>=1.0:devel/rubygem-request_store USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-gon-rails50/Makefile b/www/rubygem-gon-rails50/Makefile index cacad313e0fb..a5c04a6d5570 100644 --- a/www/rubygem-gon-rails50/Makefile +++ b/www/rubygem-gon-rails50/Makefile @@ -1,24 +1,23 @@ PORTNAME= gon PORTVERSION= 6.2.1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= mfechner@FreeBSD.org COMMENT= Framework to pass data to JS easily WWW= https://github.com/gazay/gon LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-actionpack50>=3.0:www/rubygem-actionpack50 \ rubygem-multi_json>=0:devel/rubygem-multi_json \ rubygem-request_store>=1.0:devel/rubygem-request_store USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-gon-rails60/Makefile b/www/rubygem-gon-rails60/Makefile index 193dcb0e95cb..b59f6a2fe046 100644 --- a/www/rubygem-gon-rails60/Makefile +++ b/www/rubygem-gon-rails60/Makefile @@ -1,25 +1,24 @@ PORTNAME= gon PORTVERSION= 6.4.0 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails60 MAINTAINER= mfechner@FreeBSD.org COMMENT= Framework to pass data to JS easily WWW= https://github.com/gazay/gon LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-actionpack60>=3.0.20:www/rubygem-actionpack60 \ rubygem-i18n>=0.7:devel/rubygem-i18n \ rubygem-multi_json>=0:devel/rubygem-multi_json \ rubygem-request_store>=1.0:devel/rubygem-request_store USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-gon-rails61/Makefile b/www/rubygem-gon-rails61/Makefile index 1e0fc5b632ee..a70d40a6699f 100644 --- a/www/rubygem-gon-rails61/Makefile +++ b/www/rubygem-gon-rails61/Makefile @@ -1,25 +1,24 @@ PORTNAME= gon PORTVERSION= 6.4.0 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= mfechner@FreeBSD.org COMMENT= Framework to pass data to JS easily WWW= https://github.com/gazay/gon LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-actionpack61>=3.0.20:www/rubygem-actionpack61 \ rubygem-i18n>=0.7:devel/rubygem-i18n \ rubygem-multi_json>=0:devel/rubygem-multi_json \ rubygem-request_store>=1.0:devel/rubygem-request_store USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-hackpad-cli/Makefile b/www/rubygem-hackpad-cli/Makefile index 64516f6b3ee3..9e0c06f97b52 100644 --- a/www/rubygem-hackpad-cli/Makefile +++ b/www/rubygem-hackpad-cli/Makefile @@ -1,25 +1,24 @@ PORTNAME= hackpad-cli PORTVERSION= 0.1.4 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= mose@mose.com COMMENT= CLI for some remote hackpad operations WWW= https://github.com/mose/hackpad-cli/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-cliprompt>=0.1.2:devel/rubygem-cliprompt \ rubygem-configstruct>=0.1.0:devel/rubygem-configstruct \ rubygem-oauth>=0.4.7:net/rubygem-oauth \ rubygem-paint>=1.0.0:devel/rubygem-paint \ rubygem-reverse_markdown>=1.0.0:textproc/rubygem-reverse_markdown \ rubygem-thor>=0:devel/rubygem-thor NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/hpcli .include diff --git a/www/rubygem-haml-coderay/Makefile b/www/rubygem-haml-coderay/Makefile index a56e11268367..d9a13b07c06a 100644 --- a/www/rubygem-haml-coderay/Makefile +++ b/www/rubygem-haml-coderay/Makefile @@ -1,21 +1,20 @@ PORTNAME= haml-coderay PORTVERSION= 0.2.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Adds a CodeRay syntax highlighting filter to Haml WWW= https://github.com/blom/haml-coderay LICENSE= ISCL LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-coderay>=0:textproc/rubygem-coderay \ rubygem-haml>=0:www/rubygem-haml USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-haml-contrib/Makefile b/www/rubygem-haml-contrib/Makefile index bda0982a2fec..642bccd745fb 100644 --- a/www/rubygem-haml-contrib/Makefile +++ b/www/rubygem-haml-contrib/Makefile @@ -1,19 +1,18 @@ PORTNAME= haml-contrib PORTVERSION= 1.0.0.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Addons for the Ruby implementation of the Haml template language WWW= https://github.com/haml/haml-contrib LICENSE= MIT RUN_DEPENDS= rubygem-haml>=4.0.0:www/rubygem-haml USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-haml-rails-rails4/Makefile b/www/rubygem-haml-rails-rails4/Makefile index b776fef4b2d5..441cc54434b9 100644 --- a/www/rubygem-haml-rails-rails4/Makefile +++ b/www/rubygem-haml-rails-rails4/Makefile @@ -1,26 +1,25 @@ PORTNAME= haml-rails PORTVERSION= 1.0.0 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails4 MAINTAINER= ruby@FreeBSD.org COMMENT= Haml generator for Rails WWW= https://github.com/indirect/haml-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-actionpack4>=4.0.1:www/rubygem-actionpack4 \ rubygem-activesupport4>=4.0.1:devel/rubygem-activesupport4 \ rubygem-haml5>=4.0.6<6.0:www/rubygem-haml5 \ rubygem-html2haml>=1.0.1:www/rubygem-html2haml \ rubygem-railties4>=4.0.1:www/rubygem-railties4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-haml/Makefile b/www/rubygem-haml/Makefile index d1dd83c7e5be..5db53549b6b0 100644 --- a/www/rubygem-haml/Makefile +++ b/www/rubygem-haml/Makefile @@ -1,24 +1,23 @@ PORTNAME= haml PORTVERSION= 6.0.8 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Elegant, structured (X)HTML/XML templating engine WWW= https://haml.info/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-temple>=0.8.0:devel/rubygem-temple \ rubygem-thor>=0:devel/rubygem-thor \ rubygem-tilt>=0:devel/rubygem-tilt USES= cpe gem shebangfix -USE_RUBY= yes PLIST_FILES= bin/haml SHEBANG_FILES= bin/* .include diff --git a/www/rubygem-haml5/Makefile b/www/rubygem-haml5/Makefile index 76f15b4d4527..7dcd70164fc6 100644 --- a/www/rubygem-haml5/Makefile +++ b/www/rubygem-haml5/Makefile @@ -1,27 +1,26 @@ PORTNAME= haml PORTVERSION= 5.2.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 MAINTAINER= ruby@FreeBSD.org COMMENT= Markup language to describe HTML WWW= https://haml.info/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-temple>=0.8.0:devel/rubygem-temple \ rubygem-tilt>=0:devel/rubygem-tilt USES= cpe gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^5\. post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/haml .include diff --git a/www/rubygem-hamlit-rails-rails5/Makefile b/www/rubygem-hamlit-rails-rails5/Makefile index c012210786e1..55740814554d 100644 --- a/www/rubygem-hamlit-rails-rails5/Makefile +++ b/www/rubygem-hamlit-rails-rails5/Makefile @@ -1,27 +1,26 @@ PORTNAME= hamlit-rails PORTVERSION= 0.2.3 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= ruby@FreeBSD.org COMMENT= Hamlit (haml) generators for Rails 5 WWW= https://github.com/mfung/hamlit-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activesupport5>=0:devel/rubygem-activesupport5 \ rubygem-actionpack5>=0:www/rubygem-actionpack5 \ rubygem-hamlit>=1.2.0:www/rubygem-hamlit \ rubygem-railties5>=0:www/rubygem-railties5 USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= bin/setup bash_CMD= ${SH} .include diff --git a/www/rubygem-hamlit-rails-rails50/Makefile b/www/rubygem-hamlit-rails-rails50/Makefile index b6f5bba4c8ff..2d40fd2d38af 100644 --- a/www/rubygem-hamlit-rails-rails50/Makefile +++ b/www/rubygem-hamlit-rails-rails50/Makefile @@ -1,27 +1,26 @@ PORTNAME= hamlit-rails PORTVERSION= 0.2.3 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= ruby@FreeBSD.org COMMENT= Hamlit (haml) generators for Rails 5 WWW= https://github.com/mfung/hamlit-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activesupport50>=0:devel/rubygem-activesupport50 \ rubygem-actionpack50>=0:www/rubygem-actionpack50 \ rubygem-hamlit>=1.2.0:www/rubygem-hamlit \ rubygem-railties50>=0:www/rubygem-railties50 USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= bin/setup bash_CMD= ${SH} .include diff --git a/www/rubygem-hamlit-rails-rails61/Makefile b/www/rubygem-hamlit-rails-rails61/Makefile index 31a1a262da55..19f2f139dcf2 100644 --- a/www/rubygem-hamlit-rails-rails61/Makefile +++ b/www/rubygem-hamlit-rails-rails61/Makefile @@ -1,27 +1,26 @@ PORTNAME= hamlit-rails PORTVERSION= 0.2.3 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= bofh@FreeBSD.org COMMENT= Hamlit (haml) generators for Rails 61 WWW= https://github.com/mfung/hamlit-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activesupport61>=0:devel/rubygem-activesupport61 \ rubygem-actionpack61>=0:www/rubygem-actionpack61 \ rubygem-hamlit>=1.2.0:www/rubygem-hamlit \ rubygem-railties61>=0:www/rubygem-railties61 USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= bin/setup bash_CMD= ${SH} .include diff --git a/www/rubygem-hamlit-rails/Makefile b/www/rubygem-hamlit-rails/Makefile index eeaa80fc979f..98f0bcb6242e 100644 --- a/www/rubygem-hamlit-rails/Makefile +++ b/www/rubygem-hamlit-rails/Makefile @@ -1,26 +1,25 @@ PORTNAME= hamlit-rails PORTVERSION= 0.2.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Hamlit (haml) generators for Rails 4 WWW= https://github.com/mfung/hamlit-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-activesupport4>=4.0.1:devel/rubygem-activesupport4 \ rubygem-actionpack4>=4.0.1:www/rubygem-actionpack4 \ rubygem-hamlit>=1.2.0:www/rubygem-hamlit \ rubygem-railties4>=4.0.1:www/rubygem-railties4 USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= bin/setup bash_CMD= ${SH} .include diff --git a/www/rubygem-hamlit/Makefile b/www/rubygem-hamlit/Makefile index a7ba966ba71c..30fda4903ee9 100644 --- a/www/rubygem-hamlit/Makefile +++ b/www/rubygem-hamlit/Makefile @@ -1,24 +1,23 @@ PORTNAME= hamlit PORTVERSION= 2.15.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= High Performance Haml Implementation WWW= https://github.com/k0kubun/hamlit LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-temple>=0.8.2:devel/rubygem-temple \ rubygem-thor>=0:devel/rubygem-thor \ rubygem-tilt>=0:devel/rubygem-tilt USES= gem shebangfix -USE_RUBY= yes PLIST_FILES= bin/hamlit SHEBANG_FILES= bin/ruby bin/setup bin/test .include diff --git a/www/rubygem-hashicorp-checkpoint/Makefile b/www/rubygem-hashicorp-checkpoint/Makefile index 589294701669..6564c7d0aa01 100644 --- a/www/rubygem-hashicorp-checkpoint/Makefile +++ b/www/rubygem-hashicorp-checkpoint/Makefile @@ -1,17 +1,16 @@ PORTNAME= hashicorp-checkpoint PORTVERSION= 0.1.5 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= joe@thrallingpenguin.com COMMENT= Internal HashiCorp service to check version information WWW= https://rubygems.org/gems/hashicorp-checkpoint LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-heroics/Makefile b/www/rubygem-heroics/Makefile index 68630eb9b462..1779a8114a26 100644 --- a/www/rubygem-heroics/Makefile +++ b/www/rubygem-heroics/Makefile @@ -1,26 +1,25 @@ PORTNAME= heroics PORTVERSION= 0.1.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby HTTP client generator for APIs represented with JSON schema WWW= https://github.com/interagent/heroics LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-erubis>=2.0<3:www/rubygem-erubis \ rubygem-excon>=0:devel/rubygem-excon \ rubygem-moneta>=0:devel/rubygem-moneta \ rubygem-multi_json>=1.9.2:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/heroics-generate \ bin/heroku-api .include diff --git a/www/rubygem-heroku-api/Makefile b/www/rubygem-heroku-api/Makefile index cab638f9f851..e075ab1e4c53 100644 --- a/www/rubygem-heroku-api/Makefile +++ b/www/rubygem-heroku-api/Makefile @@ -1,20 +1,19 @@ PORTNAME= heroku-api PORTVERSION= 0.4.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Heroku API WWW= https://www.heroku.com LICENSE= MIT RUN_DEPENDS= rubygem-excon>=0.45<1:devel/rubygem-excon \ rubygem-multi_json>=1.8<2:devel/rubygem-multi_json USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-heroku-nav/Makefile b/www/rubygem-heroku-nav/Makefile index 494811182440..2beabb3257d3 100644 --- a/www/rubygem-heroku-nav/Makefile +++ b/www/rubygem-heroku-nav/Makefile @@ -1,17 +1,16 @@ PORTNAME= heroku-nav PORTVERSION= 0.2.2 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Heroku Rack middleware WWW= https://github.com/heroku/heroku-nav LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-hpricot/Makefile b/www/rubygem-hpricot/Makefile index ac77772789e7..a917ae964846 100644 --- a/www/rubygem-hpricot/Makefile +++ b/www/rubygem-hpricot/Makefile @@ -1,15 +1,14 @@ PORTNAME= hpricot PORTVERSION= 0.8.6 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Fast, Enjoyable HTML Parser for Ruby WWW= https://github.com/hpricot/hpricot LICENSE= MIT -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-html2haml/Makefile b/www/rubygem-html2haml/Makefile index f7eed3e9a3f9..965492e47916 100644 --- a/www/rubygem-html2haml/Makefile +++ b/www/rubygem-html2haml/Makefile @@ -1,26 +1,25 @@ PORTNAME= html2haml PORTVERSION= 2.3.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Converts HTML into Haml WWW= https://haml.info/ \ https://github.com/haml/html2haml LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-erubis>=2.7.0<2.8:www/rubygem-erubis \ rubygem-haml5>=4.0:www/rubygem-haml5 \ rubygem-nokogiri>=1.6.0:textproc/rubygem-nokogiri \ rubygem-ruby_parser>=3.5<4:devel/rubygem-ruby_parser USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/html2haml .include diff --git a/www/rubygem-http-accept/Makefile b/www/rubygem-http-accept/Makefile index 1228b6a25839..351a2b43f1f1 100644 --- a/www/rubygem-http-accept/Makefile +++ b/www/rubygem-http-accept/Makefile @@ -1,17 +1,16 @@ PORTNAME= http-accept PORTVERSION= 2.2.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Parse Accept and Accept-Language HTTP headers WWW= https://github.com/socketry/http-accept LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-http-cookie/Makefile b/www/rubygem-http-cookie/Makefile index cb9c06083f73..3792fcf77bac 100644 --- a/www/rubygem-http-cookie/Makefile +++ b/www/rubygem-http-cookie/Makefile @@ -1,19 +1,18 @@ PORTNAME= http-cookie PORTVERSION= 1.0.5 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby library to handle HTTP Cookies WWW= https://github.com/sparklemotion/http-cookie LICENSE= MIT RUN_DEPENDS= rubygem-domain_name>=0.5<1:net/rubygem-domain_name USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-http-form_data/Makefile b/www/rubygem-http-form_data/Makefile index 72bf8fd6aacd..422389eae63a 100644 --- a/www/rubygem-http-form_data/Makefile +++ b/www/rubygem-http-form_data/Makefile @@ -1,18 +1,17 @@ PORTNAME= http-form_data PORTVERSION= 2.3.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Build form data request bodies WWW= https://github.com/httprb/form_data LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-http/Makefile b/www/rubygem-http/Makefile index 6bd17d19de71..5fa159361e44 100644 --- a/www/rubygem-http/Makefile +++ b/www/rubygem-http/Makefile @@ -1,23 +1,22 @@ PORTNAME= http PORTVERSION= 5.1.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple Ruby DSL for making HTTP requests WWW= https://github.com/httprb/http LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-addressable>=2.8<3:www/rubygem-addressable \ rubygem-http-cookie>=1.0<2:www/rubygem-http-cookie \ rubygem-http-form_data>=2.2<3:www/rubygem-http-form_data \ rubygem-llhttp-ffi>=0.4.0<0.5:www/rubygem-llhttp-ffi USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-http3/Makefile b/www/rubygem-http3/Makefile index 1257cba5a2e4..3e00a4004763 100644 --- a/www/rubygem-http3/Makefile +++ b/www/rubygem-http3/Makefile @@ -1,27 +1,26 @@ PORTNAME= http PORTVERSION= 3.3.0 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 3 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple Ruby DSL for making HTTP requests WWW= https://github.com/httprb/http LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-addressable>=2.3<3:www/rubygem-addressable \ rubygem-http-cookie>=1.0<2:www/rubygem-http-cookie \ rubygem-http-form_data>=2.0<3:www/rubygem-http-form_data \ rubygem-http_parser.rb>=0.6.0<1:net/rubygem-http_parser.rb USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^3\. .include diff --git a/www/rubygem-http4/Makefile b/www/rubygem-http4/Makefile index b7a59ffabd4c..d577737245b4 100644 --- a/www/rubygem-http4/Makefile +++ b/www/rubygem-http4/Makefile @@ -1,26 +1,25 @@ PORTNAME= http PORTVERSION= 4.4.1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple Ruby DSL for making HTTP requests WWW= https://github.com/httprb/http LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-addressable>=2.3<3:www/rubygem-addressable \ rubygem-http-cookie>=1.0<2:www/rubygem-http-cookie \ rubygem-http-form_data>=2.2<3:www/rubygem-http-form_data \ rubygem-http-parser>=1.2.0<1.3:net/rubygem-http-parser USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^4\. .include diff --git a/www/rubygem-http_router/Makefile b/www/rubygem-http_router/Makefile index 2882a0169d16..4989b3eb6af9 100644 --- a/www/rubygem-http_router/Makefile +++ b/www/rubygem-http_router/Makefile @@ -1,22 +1,21 @@ PORTNAME= http_router PORTVERSION= 0.11.2 PORTREVISION= 2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= HTTP router for use in Rack WWW= https://github.com/joshbuddy/http_router LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rack>=1.0.0,3:www/rubygem-rack \ rubygem-url_mount>=0.2.1<0.3:www/rubygem-url_mount USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-httparty/Makefile b/www/rubygem-httparty/Makefile index 8d264a1acb8a..edbd4f292929 100644 --- a/www/rubygem-httparty/Makefile +++ b/www/rubygem-httparty/Makefile @@ -1,24 +1,23 @@ PORTNAME= httparty PORTVERSION= 0.20.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby Library that Makes HTTP Fun Again WWW= https://johnnunemaker.com/httparty/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-mime-types>=3.0:misc/rubygem-mime-types \ rubygem-multi_xml>=0.5.2:textproc/rubygem-multi_xml USES= cpe gem CPE_VENDOR= john_nunemaker -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/httparty .include diff --git a/www/rubygem-httpclient/Makefile b/www/rubygem-httpclient/Makefile index 4f9e0aabff34..6d5b80567515 100644 --- a/www/rubygem-httpclient/Makefile +++ b/www/rubygem-httpclient/Makefile @@ -1,19 +1,18 @@ PORTNAME= httpclient PORTVERSION= 2.8.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Yet another HTTP client implementation by NaHi WWW= https://github.com/nahi/httpclient LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/httpclient .include diff --git a/www/rubygem-httpi/Makefile b/www/rubygem-httpi/Makefile index ce69d9b7e99a..5b5710f01435 100644 --- a/www/rubygem-httpi/Makefile +++ b/www/rubygem-httpi/Makefile @@ -1,20 +1,19 @@ PORTNAME= httpi PORTVERSION= 2.4.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= joe@thrallingpenguin.com COMMENT= Library for common HTTP client API WWW= https://github.com/savonrb/httpi LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rack>=0:www/rubygem-rack \ rubygem-socksify>=0:www/rubygem-socksify NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-hurley/Makefile b/www/rubygem-hurley/Makefile index 1359d33c9aaa..349f37feec14 100644 --- a/www/rubygem-hurley/Makefile +++ b/www/rubygem-hurley/Makefile @@ -1,17 +1,16 @@ PORTNAME= hurley PORTVERSION= 0.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Common interface for working with different HTTP adapters WWW= https://github.com/lostisland/hurley LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-importmap-rails/Makefile b/www/rubygem-importmap-rails/Makefile index e715485a28df..ce06dafcae35 100644 --- a/www/rubygem-importmap-rails/Makefile +++ b/www/rubygem-importmap-rails/Makefile @@ -1,21 +1,20 @@ PORTNAME= importmap-rails PORTVERSION= 1.1.5 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Use ESM with importmap to manage modern JavaScript in Rails without transpiling or bundling WWW= https://github.com/rails/importmap-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack70>=6.0.0:www/rubygem-actionpack70 \ rubygem-railties70>=6.0.0:www/rubygem-railties70 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-innate/Makefile b/www/rubygem-innate/Makefile index 95ecf4645e6d..1a27f41ce998 100644 --- a/www/rubygem-innate/Makefile +++ b/www/rubygem-innate/Makefile @@ -1,22 +1,21 @@ PORTNAME= innate PORTVERSION= 2015.10.28 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Powerful web-framework wrapper for Rack WWW= https://github.com/manveru/innate LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-rack16>=1.6.4<1.7:www/rubygem-rack16 USES= gem shebangfix -USE_RUBY= yes NO_ARCH= yes SHEBANG_FILES= .load_gemset .include diff --git a/www/rubygem-jekyll-sanity/Makefile b/www/rubygem-jekyll-sanity/Makefile index 6ed6f3f4696d..18f4a479479b 100644 --- a/www/rubygem-jekyll-sanity/Makefile +++ b/www/rubygem-jekyll-sanity/Makefile @@ -1,20 +1,19 @@ PORTNAME= jekyll-sanity PORTVERSION= 1.6.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Patches to make Jekyll less insane and easier WWW= https://github.com/envygeeks/jekyll-sanity LICENSE= MIT RUN_DEPENDS= rubygem-jekyll3>=3.1<5:www/rubygem-jekyll3 \ rubygem-pathutil>=0.16<1:devel/rubygem-pathutil USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-jekyll-seo-tag/Makefile b/www/rubygem-jekyll-seo-tag/Makefile index 962dcfa3354a..ae894ef20f58 100644 --- a/www/rubygem-jekyll-seo-tag/Makefile +++ b/www/rubygem-jekyll-seo-tag/Makefile @@ -1,20 +1,19 @@ PORTNAME= jekyll-seo-tag PORTVERSION= 2.8.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Add metadata tags for search engines and social networks WWW= https://github.com/jekyll/jekyll-seo-tag LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-jekyll>=3.8<5.0:www/rubygem-jekyll USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-jekyll-watch/Makefile b/www/rubygem-jekyll-watch/Makefile index 83b5ffcd9263..bc78f1b6c0b1 100644 --- a/www/rubygem-jekyll-watch/Makefile +++ b/www/rubygem-jekyll-watch/Makefile @@ -1,19 +1,18 @@ PORTNAME= jekyll-watch PORTVERSION= 2.2.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Handles rebuilding of Jekyll sites when a file changes WWW= https://github.com/jekyll/jekyll-watch LICENSE= MIT RUN_DEPENDS= rubygem-listen>=3.0<4:devel/rubygem-listen USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-jekyll/Makefile b/www/rubygem-jekyll/Makefile index 5d47ae85403a..c16adf609a34 100644 --- a/www/rubygem-jekyll/Makefile +++ b/www/rubygem-jekyll/Makefile @@ -1,40 +1,39 @@ PORTNAME= jekyll PORTVERSION= 4.3.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple, blog aware, static site generator WWW= https://jekyllrb.com/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-addressable>=2.4<3:www/rubygem-addressable \ rubygem-colorator>=1.0<2:textproc/rubygem-colorator \ rubygem-em-websocket>=0.5<1:www/rubygem-em-websocket \ rubygem-i18n>=1.0,2<2,2:devel/rubygem-i18n \ rubygem-jekyll-sass-converter>=2.0<4.0:textproc/rubygem-jekyll-sass-converter \ rubygem-jekyll-watch>=2.0<3:www/rubygem-jekyll-watch \ rubygem-kramdown>=2.3.1<3:textproc/rubygem-kramdown \ rubygem-kramdown-parser-gfm>=1.0<2:textproc/rubygem-kramdown-parser-gfm \ rubygem-liquid4>=4.0<5:textproc/rubygem-liquid4 \ rubygem-mercenary>=0.3.6<0.5:devel/rubygem-mercenary \ rubygem-pathutil>=0.9<1:devel/rubygem-pathutil \ rubygem-rouge>=3.0<5.0:textproc/rubygem-rouge \ rubygem-safe_yaml>=1.0<2:devel/rubygem-safe_yaml \ rubygem-terminal-table>=1.8<4.0:textproc/rubygem-terminal-table \ rubygem-webrick>=1.7<2:www/rubygem-webrick USES= cpe gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/jekyll CONFLICTS_INSTALL= rubygem-jekyll3 CPE_VENDOR= jekyllrb .include diff --git a/www/rubygem-jekyll3/Makefile b/www/rubygem-jekyll3/Makefile index 280b9a9c96be..641e96c6e104 100644 --- a/www/rubygem-jekyll3/Makefile +++ b/www/rubygem-jekyll3/Makefile @@ -1,40 +1,39 @@ PORTNAME= jekyll PORTVERSION= 3.9.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 3 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple, blog aware, static site generator WWW= https://jekyllrb.com/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-addressable>=2.4<3:www/rubygem-addressable \ rubygem-colorator>=1.0<2:textproc/rubygem-colorator \ rubygem-em-websocket>=0.5<1:www/rubygem-em-websocket \ rubygem-i18n>=0.7,2:devel/rubygem-i18n \ rubygem-jekyll-sass-converter1>=1.0<2:textproc/rubygem-jekyll-sass-converter1 \ rubygem-jekyll-watch>=2.0<3:www/rubygem-jekyll-watch \ rubygem-kramdown>=1.17<3:textproc/rubygem-kramdown \ rubygem-liquid4>=4.0<5:textproc/rubygem-liquid4 \ rubygem-mercenary>=0.3.3<1:devel/rubygem-mercenary \ rubygem-pathutil>=0.9<1:devel/rubygem-pathutil \ rubygem-rouge>=1.7<4:textproc/rubygem-rouge \ rubygem-safe_yaml>=1.0<2:devel/rubygem-safe_yaml USES= cpe gem -USE_RUBY= yes CONFLICTS_INSTALL= rubygem-jekyll NO_ARCH= yes PLIST_FILES= bin/jekyll CPE_VENDOR= jekyllrb PORTSCOUT= limit:^3\. .include diff --git a/www/rubygem-journey/Makefile b/www/rubygem-journey/Makefile index c199645a1b98..8bdffda8e86a 100644 --- a/www/rubygem-journey/Makefile +++ b/www/rubygem-journey/Makefile @@ -1,17 +1,16 @@ PORTNAME= journey PORTVERSION= 1.0.4 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= It routes requests WWW= https://github.com/tenderlove/journey LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-jquery-atwho-rails/Makefile b/www/rubygem-jquery-atwho-rails/Makefile index 327ac638ca33..02bb3a7b8427 100644 --- a/www/rubygem-jquery-atwho-rails/Makefile +++ b/www/rubygem-jquery-atwho-rails/Makefile @@ -1,17 +1,16 @@ PORTNAME= jquery-atwho-rails PORTVERSION= 1.5.4 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= jQuery plugin that implements GitHub-like mentions WWW= https://github.com/ichord/jquery-atwho-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE-MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-jquery-rails-rails5/Makefile b/www/rubygem-jquery-rails-rails5/Makefile index 9de376336915..6cccd1a02ce6 100644 --- a/www/rubygem-jquery-rails-rails5/Makefile +++ b/www/rubygem-jquery-rails-rails5/Makefile @@ -1,25 +1,24 @@ PORTNAME= jquery-rails PORTVERSION= 4.5.1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= ruby@FreeBSD.org COMMENT= Provides a Rails generator for jQuery WWW= https://github.com/rails/jquery-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-rails-dom-testing-rails5>=1<3:textproc/rubygem-rails-dom-testing-rails5 \ rubygem-railties5>=4.2.0:www/rubygem-railties5 \ rubygem-thor>=0.14<2.0:devel/rubygem-thor USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails .include diff --git a/www/rubygem-jquery-rails-rails50/Makefile b/www/rubygem-jquery-rails-rails50/Makefile index e4391ae6aa4c..8a45aaea68f8 100644 --- a/www/rubygem-jquery-rails-rails50/Makefile +++ b/www/rubygem-jquery-rails-rails50/Makefile @@ -1,25 +1,24 @@ PORTNAME= jquery-rails PORTVERSION= 4.5.1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= ruby@FreeBSD.org COMMENT= Provides a Rails generator for jQuery WWW= https://github.com/rails/jquery-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-rails-dom-testing-rails50>=1<3:textproc/rubygem-rails-dom-testing-rails50 \ rubygem-railties50>=4.2.0:www/rubygem-railties50 \ rubygem-thor>=0.14<2.0:devel/rubygem-thor USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails .include diff --git a/www/rubygem-jquery-rails/Makefile b/www/rubygem-jquery-rails/Makefile index 7ef3130a6d9f..ee1db32cf89a 100644 --- a/www/rubygem-jquery-rails/Makefile +++ b/www/rubygem-jquery-rails/Makefile @@ -1,24 +1,23 @@ PORTNAME= jquery-rails PORTVERSION= 4.5.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Provides a Rails generator for jQuery WWW= https://github.com/rails/jquery-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-rails-dom-testing>=1<3:textproc/rubygem-rails-dom-testing \ rubygem-railties4>=4.2.0:www/rubygem-railties4 \ rubygem-thor>=0.14<2.0:devel/rubygem-thor USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails .include diff --git a/www/rubygem-jquery-scrollto-rails/Makefile b/www/rubygem-jquery-scrollto-rails/Makefile index 0fec94d26537..4511b86763d5 100644 --- a/www/rubygem-jquery-scrollto-rails/Makefile +++ b/www/rubygem-jquery-scrollto-rails/Makefile @@ -1,18 +1,17 @@ PORTNAME= jquery-scrollto-rails PORTVERSION= 1.4.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provides jQUery scrollTo for Rails 3 applications WWW= https://github.com/JohnColvin/jquery-scrollto-rails LICENSE= MIT RUN_DEPENDS= rubygem-railties4>=4.1.4:www/rubygem-railties4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-jquery-turbolinks/Makefile b/www/rubygem-jquery-turbolinks/Makefile index e9c686e6c834..319cf5d1a4a2 100644 --- a/www/rubygem-jquery-turbolinks/Makefile +++ b/www/rubygem-jquery-turbolinks/Makefile @@ -1,22 +1,21 @@ PORTNAME= jquery-turbolinks PORTVERSION= 2.1.0 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= jQuery plugin for drop-in fix binded events problem caused by Turbolinks WWW= https://github.com/kossnocorp/jquery.turbolinks LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-railties4>=3.1.0:www/rubygem-railties4 \ rubygem-turbolinks>=0:www/rubygem-turbolinks USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-jquery-ui-rails-rails4/Makefile b/www/rubygem-jquery-ui-rails-rails4/Makefile index bd8f39dd5031..8ecd1be7a29f 100644 --- a/www/rubygem-jquery-ui-rails-rails4/Makefile +++ b/www/rubygem-jquery-ui-rails-rails4/Makefile @@ -1,19 +1,18 @@ PORTNAME= jquery-ui-rails PORTVERSION= 6.0.1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails4 MAINTAINER= ruby@FreeBSD.org COMMENT= Packaged JavaScript, CSS and image files of jQuery UI for Rails WWW= https://github.com/joliss/jquery-ui-rails LICENSE= MIT RUN_DEPENDS= rubygem-railties4>=4.1.4:www/rubygem-railties4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-jruby-rack/Makefile b/www/rubygem-jruby-rack/Makefile index f9cf6cf05848..0d1c82bbfbdf 100644 --- a/www/rubygem-jruby-rack/Makefile +++ b/www/rubygem-jruby-rack/Makefile @@ -1,20 +1,19 @@ PORTNAME= jruby-rack PORTVERSION= 1.1.22 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Java and Ruby library that adapts the Java Servlet API to Rack WWW= http://jruby.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= jruby:lang/jruby USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-jsbundling-rails/Makefile b/www/rubygem-jsbundling-rails/Makefile index 5133e91df3d5..b85648a24ae3 100644 --- a/www/rubygem-jsbundling-rails/Makefile +++ b/www/rubygem-jsbundling-rails/Makefile @@ -1,20 +1,19 @@ PORTNAME= jsbundling-rails PORTVERSION= 1.0.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Bundle and transpile JavaScript in Rails with esbuild, rollup.js, or Webpack WWW= https://github.com/rails/jsbundling-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-railties70>=6.0.0:www/rubygem-railties70 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-jsobfu/Makefile b/www/rubygem-jsobfu/Makefile index 76463dcfc983..d74c41057d60 100644 --- a/www/rubygem-jsobfu/Makefile +++ b/www/rubygem-jsobfu/Makefile @@ -1,20 +1,19 @@ PORTNAME= jsobfu PORTVERSION= 0.4.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Javascript code obfuscator WWW= https://github.com/rapid7/jsobfu LICENSE= BSD3CLAUSE RUN_DEPENDS= rubygem-rkelly-remix>=0:www/rubygem-rkelly-remix NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/jsobfu .include diff --git a/www/rubygem-json-jwt/Makefile b/www/rubygem-json-jwt/Makefile index 045ec2c31ed0..2ac9b8e3d2d0 100644 --- a/www/rubygem-json-jwt/Makefile +++ b/www/rubygem-json-jwt/Makefile @@ -1,24 +1,23 @@ PORTNAME= json-jwt PORTVERSION= 1.16.1 CATEGORIES= www devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= JSON Web Token implementation in Ruby WWW= https://github.com/nov/json-jwt LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport60>=4.2:devel/rubygem-activesupport60 \ rubygem-aes_key_wrap>=0:security/rubygem-aes_key_wrap \ rubygem-bindata>=0:devel/rubygem-bindata \ rubygem-faraday>=2.0<3:www/rubygem-faraday \ rubygem-faraday-follow_redirects>=0:www/rubygem-faraday-follow_redirects USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-json-jwt115/Makefile b/www/rubygem-json-jwt115/Makefile index db5c835389d8..1e3f3035fbfe 100644 --- a/www/rubygem-json-jwt115/Makefile +++ b/www/rubygem-json-jwt115/Makefile @@ -1,25 +1,24 @@ PORTNAME= json-jwt PORTVERSION= 1.15.3 CATEGORIES= www devel rubygems MASTER_SITES= RG PKGNAMESUFFIX= 115 MAINTAINER= ruby@FreeBSD.org COMMENT= JSON Web Token implementation in Ruby WWW= https://github.com/nov/json-jwt LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport60>=4.2:devel/rubygem-activesupport60 \ rubygem-aes_key_wrap>=0:security/rubygem-aes_key_wrap \ rubygem-bindata>=0:devel/rubygem-bindata \ rubygem-httpclient>=0:www/rubygem-httpclient USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\.15 .include diff --git a/www/rubygem-jwt/Makefile b/www/rubygem-jwt/Makefile index 0bd275b956d7..6456dd455c0e 100644 --- a/www/rubygem-jwt/Makefile +++ b/www/rubygem-jwt/Makefile @@ -1,18 +1,17 @@ PORTNAME= jwt PORTVERSION= 2.5.0 CATEGORIES= www devel rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= JSON Web Token implementation in Ruby WWW= https://github.com/jwt/ruby-jwt LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-kaminari-actionview-rails5/Makefile b/www/rubygem-kaminari-actionview-rails5/Makefile index 16fb36d89f21..986c58d43a35 100644 --- a/www/rubygem-kaminari-actionview-rails5/Makefile +++ b/www/rubygem-kaminari-actionview-rails5/Makefile @@ -1,22 +1,21 @@ PORTNAME= kaminari-actionview PORTVERSION= 1.2.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= ruby@FreeBSD.org COMMENT= Kaminari Action View adapter WWW= https://github.com/kaminari/kaminari/tree/master/kaminari-actionview LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionview5>=0:devel/rubygem-actionview5 \ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-kaminari-actionview-rails50/Makefile b/www/rubygem-kaminari-actionview-rails50/Makefile index dd0479c5905f..3122d2014529 100644 --- a/www/rubygem-kaminari-actionview-rails50/Makefile +++ b/www/rubygem-kaminari-actionview-rails50/Makefile @@ -1,22 +1,21 @@ PORTNAME= kaminari-actionview PORTVERSION= 1.2.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= ruby@FreeBSD.org COMMENT= Kaminari Action View adapter WWW= https://github.com/kaminari/kaminari/tree/master/kaminari-actionview LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionview50>=0:devel/rubygem-actionview50 \ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-kaminari-actionview-rails52/Makefile b/www/rubygem-kaminari-actionview-rails52/Makefile index 6038b73b875c..752341bb735c 100644 --- a/www/rubygem-kaminari-actionview-rails52/Makefile +++ b/www/rubygem-kaminari-actionview-rails52/Makefile @@ -1,22 +1,21 @@ PORTNAME= kaminari-actionview PORTVERSION= 1.2.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= ruby@FreeBSD.org COMMENT= Kaminari Action View adapter WWW= https://github.com/kaminari/kaminari/tree/master/kaminari-actionview LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionview52>=0:devel/rubygem-actionview52 \ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-kaminari-actionview-rails60/Makefile b/www/rubygem-kaminari-actionview-rails60/Makefile index 0aec04f9039c..4e0e0cb0bb5c 100644 --- a/www/rubygem-kaminari-actionview-rails60/Makefile +++ b/www/rubygem-kaminari-actionview-rails60/Makefile @@ -1,22 +1,21 @@ PORTNAME= kaminari-actionview PORTVERSION= 1.2.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails60 MAINTAINER= ruby@FreeBSD.org COMMENT= Kaminari Action View adapter WWW= https://github.com/kaminari/kaminari/tree/master/kaminari-actionview LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionview60>=0:devel/rubygem-actionview60 \ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-kaminari-actionview-rails61/Makefile b/www/rubygem-kaminari-actionview-rails61/Makefile index cbd8004788d9..e45effc0871a 100644 --- a/www/rubygem-kaminari-actionview-rails61/Makefile +++ b/www/rubygem-kaminari-actionview-rails61/Makefile @@ -1,22 +1,21 @@ PORTNAME= kaminari-actionview PORTVERSION= 1.2.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= ruby@FreeBSD.org COMMENT= Kaminari Action View adapter WWW= https://github.com/kaminari/kaminari/tree/master/kaminari-actionview LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionview61>=0:devel/rubygem-actionview61 \ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-kaminari-actionview/Makefile b/www/rubygem-kaminari-actionview/Makefile index 02a441680cd5..d28d08dacb86 100644 --- a/www/rubygem-kaminari-actionview/Makefile +++ b/www/rubygem-kaminari-actionview/Makefile @@ -1,21 +1,20 @@ PORTNAME= kaminari-actionview PORTVERSION= 1.2.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Kaminari Action View adapter WWW= https://github.com/kaminari/kaminari/tree/master/kaminari-actionview LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionview4>=0:devel/rubygem-actionview4 \ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-kaminari-activerecord-rails5/Makefile b/www/rubygem-kaminari-activerecord-rails5/Makefile index af42b1dfa7ee..6506f8b3e386 100644 --- a/www/rubygem-kaminari-activerecord-rails5/Makefile +++ b/www/rubygem-kaminari-activerecord-rails5/Makefile @@ -1,22 +1,21 @@ PORTNAME= kaminari-activerecord PORTVERSION= 1.2.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= ruby@FreeBSD.org COMMENT= Kaminari Active Record adapter WWW= https://github.com/kaminari/kaminari/tree/master/kaminari-activerecord LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activerecord5>=0:databases/rubygem-activerecord5 \ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-kaminari-activerecord-rails50/Makefile b/www/rubygem-kaminari-activerecord-rails50/Makefile index 8a1ccb8d2bf6..8cfae6f21467 100644 --- a/www/rubygem-kaminari-activerecord-rails50/Makefile +++ b/www/rubygem-kaminari-activerecord-rails50/Makefile @@ -1,22 +1,21 @@ PORTNAME= kaminari-activerecord PORTVERSION= 1.2.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= ruby@FreeBSD.org COMMENT= Kaminari Active Record adapter WWW= https://github.com/kaminari/kaminari/tree/master/kaminari-activerecord LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activerecord50>=0:databases/rubygem-activerecord50 \ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-kaminari-activerecord-rails52/Makefile b/www/rubygem-kaminari-activerecord-rails52/Makefile index dd4ad1e1ec91..dd1a2ea9ff19 100644 --- a/www/rubygem-kaminari-activerecord-rails52/Makefile +++ b/www/rubygem-kaminari-activerecord-rails52/Makefile @@ -1,22 +1,21 @@ PORTNAME= kaminari-activerecord PORTVERSION= 1.2.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= ruby@FreeBSD.org COMMENT= Kaminari Active Record adapter WWW= https://github.com/kaminari/kaminari/tree/master/kaminari-activerecord LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activerecord52>=0:databases/rubygem-activerecord52 \ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-kaminari-activerecord-rails60/Makefile b/www/rubygem-kaminari-activerecord-rails60/Makefile index fa2dea473f6c..46cbe14301f2 100644 --- a/www/rubygem-kaminari-activerecord-rails60/Makefile +++ b/www/rubygem-kaminari-activerecord-rails60/Makefile @@ -1,22 +1,21 @@ PORTNAME= kaminari-activerecord PORTVERSION= 1.2.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails60 MAINTAINER= ruby@FreeBSD.org COMMENT= Kaminari Active Record adapter WWW= https://github.com/kaminari/kaminari/tree/master/kaminari-activerecord LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activerecord60>=0:databases/rubygem-activerecord60 \ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-kaminari-activerecord-rails61/Makefile b/www/rubygem-kaminari-activerecord-rails61/Makefile index f982c12f59b5..2ed82cdeb35d 100644 --- a/www/rubygem-kaminari-activerecord-rails61/Makefile +++ b/www/rubygem-kaminari-activerecord-rails61/Makefile @@ -1,22 +1,21 @@ PORTNAME= kaminari-activerecord PORTVERSION= 1.2.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= ruby@FreeBSD.org COMMENT= Kaminari Active Record adapter WWW= https://github.com/kaminari/kaminari/tree/master/kaminari-activerecord LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activerecord61>=0:databases/rubygem-activerecord61 \ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-kaminari-activerecord/Makefile b/www/rubygem-kaminari-activerecord/Makefile index ae74dce36bde..5b7181f29755 100644 --- a/www/rubygem-kaminari-activerecord/Makefile +++ b/www/rubygem-kaminari-activerecord/Makefile @@ -1,21 +1,20 @@ PORTNAME= kaminari-activerecord PORTVERSION= 1.2.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Kaminari Active Record adapter WWW= https://github.com/kaminari/kaminari/tree/master/kaminari-activerecord LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activerecord4>=0:databases/rubygem-activerecord4 \ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-kaminari-core/Makefile b/www/rubygem-kaminari-core/Makefile index 45ea7b7376a1..236e604fae66 100644 --- a/www/rubygem-kaminari-core/Makefile +++ b/www/rubygem-kaminari-core/Makefile @@ -1,18 +1,17 @@ PORTNAME= kaminari-core PORTVERSION= 1.2.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Kaminari core libraries WWW= https://github.com/kaminari/kaminari/tree/master/kaminari-core LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-kaminari-rails4/Makefile b/www/rubygem-kaminari-rails4/Makefile index c6cabbd2a256..3967f6d5bf01 100644 --- a/www/rubygem-kaminari-rails4/Makefile +++ b/www/rubygem-kaminari-rails4/Makefile @@ -1,26 +1,25 @@ PORTNAME= kaminari PORTVERSION= 1.2.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails4 MAINTAINER= ruby@FreeBSD.org COMMENT= Sophisticated paginator for Rails 4 WWW= https://github.com/kaminari/kaminari LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport4>=4.1.0:devel/rubygem-activesupport4 \ rubygem-kaminari-actionview>=${PORTVERSION}:www/rubygem-kaminari-actionview \ rubygem-kaminari-activerecord>=${PORTVERSION}:www/rubygem-kaminari-activerecord \ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= kaminari_project .include diff --git a/www/rubygem-kaminari-rails5/Makefile b/www/rubygem-kaminari-rails5/Makefile index 036f0e30e043..4a933969b186 100644 --- a/www/rubygem-kaminari-rails5/Makefile +++ b/www/rubygem-kaminari-rails5/Makefile @@ -1,26 +1,25 @@ PORTNAME= kaminari PORTVERSION= 1.2.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= ruby@FreeBSD.org COMMENT= Sophisticated paginator for Rails 4+ WWW= https://github.com/kaminari/kaminari LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport5>=4.1.0:devel/rubygem-activesupport5 \ rubygem-kaminari-actionview-rails5>=${PORTVERSION}:www/rubygem-kaminari-actionview-rails5 \ rubygem-kaminari-activerecord-rails5>=${PORTVERSION}:www/rubygem-kaminari-activerecord-rails5 \ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= kaminari_project .include diff --git a/www/rubygem-kaminari-rails50/Makefile b/www/rubygem-kaminari-rails50/Makefile index 69abe074c9de..f8bda0045697 100644 --- a/www/rubygem-kaminari-rails50/Makefile +++ b/www/rubygem-kaminari-rails50/Makefile @@ -1,26 +1,25 @@ PORTNAME= kaminari PORTVERSION= 1.2.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= ruby@FreeBSD.org COMMENT= Sophisticated paginator for Rails 4+ WWW= https://github.com/kaminari/kaminari LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport50>=4.1.0:devel/rubygem-activesupport50 \ rubygem-kaminari-actionview-rails50>=${PORTVERSION}:www/rubygem-kaminari-actionview-rails50 \ 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 CPE_VENDOR= kaminari_project .include diff --git a/www/rubygem-kaminari-rails52/Makefile b/www/rubygem-kaminari-rails52/Makefile index c85649e710bd..598cd2f307a4 100644 --- a/www/rubygem-kaminari-rails52/Makefile +++ b/www/rubygem-kaminari-rails52/Makefile @@ -1,26 +1,25 @@ PORTNAME= kaminari PORTVERSION= 1.2.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= ruby@FreeBSD.org COMMENT= Sophisticated paginator for Rails 4+ WWW= https://github.com/kaminari/kaminari LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport52>=4.1.0:devel/rubygem-activesupport52 \ rubygem-kaminari-actionview-rails52>=${PORTVERSION}:www/rubygem-kaminari-actionview-rails52 \ rubygem-kaminari-activerecord-rails52>=${PORTVERSION}:www/rubygem-kaminari-activerecord-rails52 \ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= kaminari_project .include diff --git a/www/rubygem-kaminari-rails60/Makefile b/www/rubygem-kaminari-rails60/Makefile index e767222379c1..318301fc9804 100644 --- a/www/rubygem-kaminari-rails60/Makefile +++ b/www/rubygem-kaminari-rails60/Makefile @@ -1,26 +1,25 @@ PORTNAME= kaminari PORTVERSION= 1.2.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails60 MAINTAINER= ruby@FreeBSD.org COMMENT= Sophisticated paginator for Rails 4+ WWW= https://github.com/kaminari/kaminari LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport60>=4.1.0:devel/rubygem-activesupport60 \ rubygem-kaminari-actionview-rails60>=${PORTVERSION}:www/rubygem-kaminari-actionview-rails60 \ rubygem-kaminari-activerecord-rails60>=${PORTVERSION}:www/rubygem-kaminari-activerecord-rails60 \ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= kaminari_project .include diff --git a/www/rubygem-kaminari-rails61/Makefile b/www/rubygem-kaminari-rails61/Makefile index b734d3640c9a..906cd38b8007 100644 --- a/www/rubygem-kaminari-rails61/Makefile +++ b/www/rubygem-kaminari-rails61/Makefile @@ -1,26 +1,25 @@ PORTNAME= kaminari PORTVERSION= 1.2.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= ruby@FreeBSD.org COMMENT= Sophisticated paginator for Rails 4+ WWW= https://github.com/kaminari/kaminari LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport61>=4.1.0:devel/rubygem-activesupport61 \ rubygem-kaminari-actionview-rails61>=${PORTVERSION}:www/rubygem-kaminari-actionview-rails61 \ rubygem-kaminari-activerecord-rails61>=${PORTVERSION}:www/rubygem-kaminari-activerecord-rails61 \ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= kaminari_project .include diff --git a/www/rubygem-kaminari/Makefile b/www/rubygem-kaminari/Makefile index 4d2e633bc1e5..8a817da034b4 100644 --- a/www/rubygem-kaminari/Makefile +++ b/www/rubygem-kaminari/Makefile @@ -1,25 +1,24 @@ PORTNAME= kaminari PORTVERSION= 1.2.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Sophisticated paginator for Rails 4+ WWW= https://github.com/kaminari/kaminari LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-activesupport4>=4.1.0:devel/rubygem-activesupport4 \ rubygem-kaminari-actionview>=${PORTVERSION}:www/rubygem-kaminari-actionview \ rubygem-kaminari-activerecord>=${PORTVERSION}:www/rubygem-kaminari-activerecord \ rubygem-kaminari-core>=${PORTVERSION}:www/rubygem-kaminari-core USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= kaminari_project .include diff --git a/www/rubygem-kubeclient/Makefile b/www/rubygem-kubeclient/Makefile index ce767c2f5417..f4f2721d326e 100644 --- a/www/rubygem-kubeclient/Makefile +++ b/www/rubygem-kubeclient/Makefile @@ -1,25 +1,24 @@ PORTNAME= kubeclient PORTVERSION= 4.9.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Client for Kubernetes REST API WWW= https://github.com/abonas/kubeclient LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-http4>=3.0<5.0:www/rubygem-http4 \ rubygem-jsonpath>=1.0<2:devel/rubygem-jsonpath \ rubygem-recursive-open-struct>=1.1.1<2.0:devel/rubygem-recursive-open-struct \ rubygem-rest-client>=2.0<3:www/rubygem-rest-client USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= redhat .include diff --git a/www/rubygem-layout_yullio_generator/Makefile b/www/rubygem-layout_yullio_generator/Makefile index d5371d87715b..74f51ac5b179 100644 --- a/www/rubygem-layout_yullio_generator/Makefile +++ b/www/rubygem-layout_yullio_generator/Makefile @@ -1,17 +1,16 @@ PORTNAME= layout_yullio_generator PORTVERSION= 0.9.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Combination of Mollio CSS/HTML template and Yahoo UI grid WWW= https://rubygems.org/gems/layout_yullio_generator RUN_DEPENDS= rubygem-hoe>=1.1.6:devel/rubygem-hoe USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-less/Makefile b/www/rubygem-less/Makefile index 362f8edda47f..b72ea98d6087 100644 --- a/www/rubygem-less/Makefile +++ b/www/rubygem-less/Makefile @@ -1,21 +1,20 @@ PORTNAME= less PORTVERSION= 1.2.21 PORTREVISION= 0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= nivit@FreeBSD.org COMMENT= The LESS Ruby gem compiles LESS code to CSS WWW= https://lesscss.org RUN_DEPENDS= rubygem-treetop>=1.4.2:devel/rubygem-treetop \ rubygem-mutter>=0.4.2:devel/rubygem-mutter NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/lessc .include diff --git a/www/rubygem-lighthouse-api/Makefile b/www/rubygem-lighthouse-api/Makefile index 9ab8bac4978b..f65b62387d82 100644 --- a/www/rubygem-lighthouse-api/Makefile +++ b/www/rubygem-lighthouse-api/Makefile @@ -1,21 +1,20 @@ PORTNAME= lighthouse-api PORTVERSION= 2.0 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby interface for lighthouse ticketing system WWW= https://lighthouseapp.com/api LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activeresource4>=3.0.0:www/rubygem-activeresource4 \ rubygem-activesupport4>=3.0.0:devel/rubygem-activesupport4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-link_header/Makefile b/www/rubygem-link_header/Makefile index bc1578b83aa0..380fe384eebd 100644 --- a/www/rubygem-link_header/Makefile +++ b/www/rubygem-link_header/Makefile @@ -1,18 +1,17 @@ PORTNAME= link_header PORTVERSION= 0.0.8 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Parse and format HTTP link headers WWW= https://github.com/asplake/link_header LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-llhttp-ffi/Makefile b/www/rubygem-llhttp-ffi/Makefile index 24ebcea36896..6609d8340259 100644 --- a/www/rubygem-llhttp-ffi/Makefile +++ b/www/rubygem-llhttp-ffi/Makefile @@ -1,19 +1,18 @@ PORTNAME= llhttp-ffi PORTVERSION= 0.4.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby FFI bindings for llhttp WWW= https://github.com/metabahn/llhttp/tree/main/ffi LICENSE= MPL20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-ffi-compiler>=1.0<2:devel/rubygem-ffi-compiler \ rubygem-rake>=13.0<14:devel/rubygem-rake USES= gem -USE_RUBY= yes .include diff --git a/www/rubygem-lograge-rails5/Makefile b/www/rubygem-lograge-rails5/Makefile index ee987046fd6c..41b53a321703 100644 --- a/www/rubygem-lograge-rails5/Makefile +++ b/www/rubygem-lograge-rails5/Makefile @@ -1,23 +1,22 @@ PORTNAME= lograge PORTVERSION= 0.12.0 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= ruby@FreeBSD.org COMMENT= Tame Rails' multi-line logging into a single line per request #' WWW= https://github.com/roidrage/lograge LICENSE= MIT RUN_DEPENDS= rubygem-actionpack5>=4:www/rubygem-actionpack5 \ rubygem-activesupport5>=4:devel/rubygem-activesupport5 \ rubygem-railties5>=4:www/rubygem-railties5 \ rubygem-request_store>=1.0<2:devel/rubygem-request_store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-lograge-rails52/Makefile b/www/rubygem-lograge-rails52/Makefile index 5123b5e41645..2f9c263b6510 100644 --- a/www/rubygem-lograge-rails52/Makefile +++ b/www/rubygem-lograge-rails52/Makefile @@ -1,23 +1,22 @@ PORTNAME= lograge PORTVERSION= 0.12.0 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= ruby@FreeBSD.org COMMENT= Tame Rails' multi-line logging into a single line per request #' WWW= https://github.com/roidrage/lograge LICENSE= MIT RUN_DEPENDS= rubygem-actionpack52>=4:www/rubygem-actionpack52 \ rubygem-activesupport52>=4:devel/rubygem-activesupport52 \ rubygem-railties52>=4:www/rubygem-railties52 \ rubygem-request_store>=1.0<2:devel/rubygem-request_store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-lograge-rails60/Makefile b/www/rubygem-lograge-rails60/Makefile index b862b851c121..92142aeccdce 100644 --- a/www/rubygem-lograge-rails60/Makefile +++ b/www/rubygem-lograge-rails60/Makefile @@ -1,23 +1,22 @@ PORTNAME= lograge PORTVERSION= 0.12.0 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails60 MAINTAINER= ruby@FreeBSD.org COMMENT= Tame Rails' multi-line logging into a single line per request #' WWW= https://github.com/roidrage/lograge LICENSE= MIT RUN_DEPENDS= rubygem-actionpack60>=4:www/rubygem-actionpack60 \ rubygem-activesupport60>=4:devel/rubygem-activesupport60 \ rubygem-railties60>=4:www/rubygem-railties60 \ rubygem-request_store>=1.0<2:devel/rubygem-request_store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-lograge-rails61/Makefile b/www/rubygem-lograge-rails61/Makefile index 93a72296c162..618ea0bc16f5 100644 --- a/www/rubygem-lograge-rails61/Makefile +++ b/www/rubygem-lograge-rails61/Makefile @@ -1,23 +1,22 @@ PORTNAME= lograge PORTVERSION= 0.12.0 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= ruby@FreeBSD.org COMMENT= Tame Rails' multi-line logging into a single line per request #' WWW= https://github.com/roidrage/lograge LICENSE= MIT RUN_DEPENDS= rubygem-actionpack61>=4:www/rubygem-actionpack61 \ rubygem-activesupport61>=4:devel/rubygem-activesupport61 \ rubygem-railties61>=4:www/rubygem-railties61 \ rubygem-request_store>=1.0<2:devel/rubygem-request_store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-lograge/Makefile b/www/rubygem-lograge/Makefile index 366f4b801d50..0b0ffe5adc0c 100644 --- a/www/rubygem-lograge/Makefile +++ b/www/rubygem-lograge/Makefile @@ -1,22 +1,21 @@ PORTNAME= lograge PORTVERSION= 0.12.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Tame Rails' multi-line logging into a single line per request #' WWW= https://github.com/roidrage/lograge LICENSE= MIT RUN_DEPENDS= rubygem-actionpack4>=4:www/rubygem-actionpack4 \ rubygem-activesupport4>=4:devel/rubygem-activesupport4 \ rubygem-railties4>=4:www/rubygem-railties4 \ rubygem-request_store>=1.0<2:devel/rubygem-request_store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-maruku/Makefile b/www/rubygem-maruku/Makefile index 8deda89cfa74..b74cf96dfdab 100644 --- a/www/rubygem-maruku/Makefile +++ b/www/rubygem-maruku/Makefile @@ -1,19 +1,18 @@ PORTNAME= maruku PORTVERSION= 0.7.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Markdown and PHP Markdown extra interpreter for Ruby WWW= https://github.com/bhollis/maruku LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/maruku bin/marutex .include diff --git a/www/rubygem-mechanize/Makefile b/www/rubygem-mechanize/Makefile index c98ce8e17971..2378aae5b951 100644 --- a/www/rubygem-mechanize/Makefile +++ b/www/rubygem-mechanize/Makefile @@ -1,30 +1,29 @@ PORTNAME= mechanize PORTVERSION= 2.8.5 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= WWW::Mechanize, a handy web browsing ruby object WWW= https://github.com/sparklemotion/mechanize LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-addressable>=2.8<3:www/rubygem-addressable \ rubygem-domain_name>=0.5.20190701<1:net/rubygem-domain_name \ rubygem-http-cookie>=1.0.3<2:www/rubygem-http-cookie \ rubygem-mime-types>=3.0<4:misc/rubygem-mime-types \ rubygem-net-http-digest_auth>=1.4.1<2:www/rubygem-net-http-digest_auth \ rubygem-net-http-persistent>=2.5.2<5.0:www/rubygem-net-http-persistent \ rubygem-nokogiri>=1.11.2<2:textproc/rubygem-nokogiri \ rubygem-rubyntlm>=0.6.3<1:net/rubygem-rubyntlm \ rubygem-webrick>=1.7<2:www/rubygem-webrick \ rubygem-webrobots>=0.1.2<0.2:www/rubygem-webrobots USES= cpe gem CPE_VENDOR= ${PORTNAME}_project -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-merb-assets/Makefile b/www/rubygem-merb-assets/Makefile index 0e39fe7a5aba..d7ea66cef8ce 100644 --- a/www/rubygem-merb-assets/Makefile +++ b/www/rubygem-merb-assets/Makefile @@ -1,18 +1,17 @@ PORTNAME= merb-assets PORTVERSION= 1.1.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Merb plugin for supporting assets LICENSE= MIT RUN_DEPENDS= rubygem-merb-core>=1.1.3:www/rubygem-merb-core NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-merb-core/Makefile b/www/rubygem-merb-core/Makefile index e4b92b24879c..39c705906217 100644 --- a/www/rubygem-merb-core/Makefile +++ b/www/rubygem-merb-core/Makefile @@ -1,31 +1,30 @@ PORTNAME= merb-core PORTVERSION= 1.1.3 PORTREVISION= 3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Merb. Pocket rocket web framework WWW= https://github.com/merb/merb-core LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-bundler>=0:sysutils/rubygem-bundler \ rubygem-erubis>=2.6.2:www/rubygem-erubis \ rubygem-extlib>=0.9.13:devel/rubygem-extlib \ rubygem-mime-types>=1.16:misc/rubygem-mime-types \ rubygem-rack>=0,3:www/rubygem-rack \ rubygem-rake>=0:devel/rubygem-rake -USE_RUBY= yes USES= gem shebangfix PLIST_FILES= bin/merb SHEBANG_FILES= spec10/public/core_ext/fixtures/gems/bin/edit_json.rb \ spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/bin/erubis \ spec10/public/webrat/test_app/gems/gems/erubis-2.6.2/contrib/erubis ruby_OLD_CMD= /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/bin/ruby .include diff --git a/www/rubygem-merb-haml/Makefile b/www/rubygem-merb-haml/Makefile index 1046b352d1ad..c9c63975c788 100644 --- a/www/rubygem-merb-haml/Makefile +++ b/www/rubygem-merb-haml/Makefile @@ -1,20 +1,19 @@ PORTNAME= merb-haml PORTVERSION= 1.1.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Merb plugin for HAML support LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-haml>=2.0.3:www/rubygem-haml \ rubygem-merb-core>=1.1.3<1.2:www/rubygem-merb-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-merb-helpers/Makefile b/www/rubygem-merb-helpers/Makefile index 961032938f4e..47d613b8a0f0 100644 --- a/www/rubygem-merb-helpers/Makefile +++ b/www/rubygem-merb-helpers/Makefile @@ -1,18 +1,17 @@ PORTNAME= merb-helpers PORTVERSION= 1.1.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Merb plugin containing view helpers LICENSE= MIT RUN_DEPENDS= rubygem-merb-core>=1.1.3:www/rubygem-merb-core NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-merb-param-protection/Makefile b/www/rubygem-merb-param-protection/Makefile index 9695a18d31c2..ef4062869d91 100644 --- a/www/rubygem-merb-param-protection/Makefile +++ b/www/rubygem-merb-param-protection/Makefile @@ -1,18 +1,17 @@ PORTNAME= merb-param-protection PORTVERSION= 1.1.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Merb plugin that helps protecting sensible parameters LICENSE= MIT RUN_DEPENDS= rubygem-merb-core>=1.1.3:www/rubygem-merb-core NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-mousetrap-rails/Makefile b/www/rubygem-mousetrap-rails/Makefile index addaa7281bb3..cff26eeee871 100644 --- a/www/rubygem-mousetrap-rails/Makefile +++ b/www/rubygem-mousetrap-rails/Makefile @@ -1,19 +1,18 @@ PORTNAME= mousetrap-rails PORTVERSION= 1.4.6 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Javascript library for handling keyboard shortcuts WWW= https://kugaevsky.github.io/mousetrap-rails/ LICENSE= MIT APACHE20 LICENSE_COMB= multi LICENSE_FILE_MIT= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-multipart-post/Makefile b/www/rubygem-multipart-post/Makefile index b879c7ec6d75..72fa42937ec0 100644 --- a/www/rubygem-multipart-post/Makefile +++ b/www/rubygem-multipart-post/Makefile @@ -1,17 +1,16 @@ PORTNAME= multipart-post PORTVERSION= 2.2.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby Library that Use with Net::HTTP to do multipart form posts WWW= https://github.com/socketry/multipart-post LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-nanoc-checking/Makefile b/www/rubygem-nanoc-checking/Makefile index 40f1a45a3c07..311c6f4d8e38 100644 --- a/www/rubygem-nanoc-checking/Makefile +++ b/www/rubygem-nanoc-checking/Makefile @@ -1,20 +1,19 @@ PORTNAME= nanoc-checking DISTVERSION= 1.0.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sdalu@sdalu.com COMMENT= Checking functionality for Nanoc WWW= https://nanoc.ws/ LICENSE= MIT RUN_DEPENDS= rubygem-nanoc-cli>=4.12:www/rubygem-nanoc-cli \ rubygem-nanoc-core>=4.12:www/rubygem-nanoc-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-nanoc-cli/Makefile b/www/rubygem-nanoc-cli/Makefile index 40d9ad5acfcb..2403f9a7f11d 100644 --- a/www/rubygem-nanoc-cli/Makefile +++ b/www/rubygem-nanoc-cli/Makefile @@ -1,22 +1,21 @@ PORTNAME= nanoc-cli DISTVERSION= 4.12.5 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sdalu@sdalu.com COMMENT= CLI for Nanoc WWW= https://nanoc.ws/ LICENSE= MIT RUN_DEPENDS= rubygem-cri>=2.15:devel/rubygem-cri \ rubygem-diff-lcs>=1.3:textproc/rubygem-diff-lcs \ rubygem-nanoc-core=4.12.5:www/rubygem-nanoc-core \ rubygem-zeitwerk>=2.1:devel/rubygem-zeitwerk USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-nanoc-core/Makefile b/www/rubygem-nanoc-core/Makefile index f29872b7ae0f..98b307c6de30 100644 --- a/www/rubygem-nanoc-core/Makefile +++ b/www/rubygem-nanoc-core/Makefile @@ -1,27 +1,26 @@ PORTNAME= nanoc-core DISTVERSION= 4.12.5 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sdalu@sdalu.com COMMENT= Contains the core of Nanoc WWW= https://nanoc.ws/ LICENSE= MIT RUN_DEPENDS= rubygem-concurrent-ruby>=1.1:devel/rubygem-concurrent-ruby \ rubygem-ddmetrics>=1.0:devel/rubygem-ddmetrics \ rubygem-ddplugin>=1.0:devel/rubygem-ddplugin \ rubygem-hamster>=3.0:devel/rubygem-hamster \ rubygem-json_schema>=0.19:devel/rubygem-json_schema \ rubygem-memo_wise>=1.5:devel/rubygem-memo_wise \ rubygem-slow_enumerator_tools>=1.0:devel/rubygem-slow_enumerator_tools \ rubygem-tty-platform>=0.2:devel/rubygem-tty-platform \ rubygem-zeitwerk>=2.1:devel/rubygem-zeitwerk USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-nanoc-deploying/Makefile b/www/rubygem-nanoc-deploying/Makefile index e2b0f46a602e..3630fc1c45b8 100644 --- a/www/rubygem-nanoc-deploying/Makefile +++ b/www/rubygem-nanoc-deploying/Makefile @@ -1,21 +1,20 @@ PORTNAME= nanoc-deploying DISTVERSION= 1.0.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sdalu@sdalu.com COMMENT= Deploying functionality for Nanoc WWW= https://nanoc.ws/ LICENSE= MIT RUN_DEPENDS= rubygem-nanoc-checking>=1.0:www/rubygem-nanoc-checking \ rubygem-nanoc-cli>=4.11:www/rubygem-nanoc-cli \ rubygem-nanoc-core>=4.11:www/rubygem-nanoc-core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-nanoc/Makefile b/www/rubygem-nanoc/Makefile index 5a6c2ba9a25b..6017d5b313ad 100644 --- a/www/rubygem-nanoc/Makefile +++ b/www/rubygem-nanoc/Makefile @@ -1,30 +1,29 @@ PORTNAME= nanoc DISTVERSION= 4.12.5 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= zi@FreeBSD.org COMMENT= Simple but flexible static site generator WWW= https://nanoc.ws/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-addressable>=2.5:www/rubygem-addressable \ rubygem-colored>=1.2:textproc/rubygem-colored \ rubygem-nanoc-checking>=1.0:www/rubygem-nanoc-checking \ rubygem-nanoc-cli=4.12.5:www/rubygem-nanoc-cli \ rubygem-nanoc-core=4.12.5:www/rubygem-nanoc-core \ rubygem-nanoc-deploying>=1.0:www/rubygem-nanoc-deploying \ rubygem-parallel>=1.12:sysutils/rubygem-parallel \ rubygem-tty-command>=0.8:devel/rubygem-tty-command \ rubygem-tty-which>=0.4:devel/rubygem-tty-which USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/nanoc .include diff --git a/www/rubygem-nested_form/Makefile b/www/rubygem-nested_form/Makefile index 2419ec9a2c04..8bcd0d836411 100644 --- a/www/rubygem-nested_form/Makefile +++ b/www/rubygem-nested_form/Makefile @@ -1,18 +1,17 @@ PORTNAME= nested_form PORTVERSION= 0.3.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ports@FreeBSD.org COMMENT= Handle multiple models in one form through jQuery or Prototype WWW= https://github.com/ryanb/nested_form LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-net-http-digest_auth/Makefile b/www/rubygem-net-http-digest_auth/Makefile index a5fa6a9be928..a6883dad861e 100644 --- a/www/rubygem-net-http-digest_auth/Makefile +++ b/www/rubygem-net-http-digest_auth/Makefile @@ -1,17 +1,16 @@ PORTNAME= net-http-digest_auth PORTVERSION= 1.4.1 CATEGORIES= www net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Implementation of RFC 2617 - Digest Access Authentication WWW= https://github.com/drbrain/net-http-digest_auth LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-net-http-persistent/Makefile b/www/rubygem-net-http-persistent/Makefile index 92f7e84dede4..c35da5b5c676 100644 --- a/www/rubygem-net-http-persistent/Makefile +++ b/www/rubygem-net-http-persistent/Makefile @@ -1,19 +1,18 @@ PORTNAME= net-http-persistent PORTVERSION= 4.0.1 CATEGORIES= www net rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Manages persistent connections using Net::HTTP WWW= https://github.com/drbrain/net-http-persistent LICENSE= MIT RUN_DEPENDS= rubygem-connection_pool>=2.2<3:net/rubygem-connection_pool USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-net-http-persistent2/Makefile b/www/rubygem-net-http-persistent2/Makefile index e4c2828bab38..8f2a40a15d8e 100644 --- a/www/rubygem-net-http-persistent2/Makefile +++ b/www/rubygem-net-http-persistent2/Makefile @@ -1,20 +1,19 @@ PORTNAME= net-http-persistent PORTVERSION= 2.9.4 CATEGORIES= www net rubygems MASTER_SITES= RG PKGNAMESUFFIX= 2 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Manages persistent connections using Net::HTTP WWW= https://github.com/drbrain/net-http-persistent LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^2\. .include diff --git a/www/rubygem-net-http-pipeline/Makefile b/www/rubygem-net-http-pipeline/Makefile index 49be32a20b32..863812020349 100644 --- a/www/rubygem-net-http-pipeline/Makefile +++ b/www/rubygem-net-http-pipeline/Makefile @@ -1,17 +1,16 @@ PORTNAME= net-http-pipeline PORTVERSION= 1.0.1 CATEGORIES= www net rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= HTTP/1.1 pipelining implementation atop Net::HTTP WWW= https://docs.seattlerb.org/net-http-pipeline/ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-net-http/Makefile b/www/rubygem-net-http/Makefile index 967f55fa930b..2aca951375c7 100644 --- a/www/rubygem-net-http/Makefile +++ b/www/rubygem-net-http/Makefile @@ -1,21 +1,20 @@ PORTNAME= net-http PORTVERSION= 0.3.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= HTTP client api for Ruby WWW= https://github.com/ruby/net-http LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE_BSD2CLAUSE=${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-uri>=0:net/rubygem-uri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-nicovideo/Makefile b/www/rubygem-nicovideo/Makefile index 80de8c46770a..ff5328afa10e 100644 --- a/www/rubygem-nicovideo/Makefile +++ b/www/rubygem-nicovideo/Makefile @@ -1,21 +1,20 @@ PORTNAME= nicovideo PORTVERSION= 0.1.8 PORTREVISION= 2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Scraping NICONICO DOUGA utility for Ruby WWW= http://nicovideo.rubyforge.org/ LICENSE= BSD2CLAUSE RUN_DEPENDS= rubygem-json>=1.1.4:devel/rubygem-json \ rubygem-mechanize>=0.9.2:www/rubygem-mechanize USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-ntlm-http/Makefile b/www/rubygem-ntlm-http/Makefile index 569dd5c6b0a1..5c710901dfe9 100644 --- a/www/rubygem-ntlm-http/Makefile +++ b/www/rubygem-ntlm-http/Makefile @@ -1,18 +1,17 @@ PORTNAME= ntlm-http PORTVERSION= 0.1.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= NTLM HTTP provides NTLM authentication over http WWW= https://rubygems.org/gems/ntlm-http LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-octopress/Makefile b/www/rubygem-octopress/Makefile index 6be31352e101..79dfdc633f25 100644 --- a/www/rubygem-octopress/Makefile +++ b/www/rubygem-octopress/Makefile @@ -1,29 +1,28 @@ PORTNAME= octopress PORTVERSION= 3.0.11 PORTREVISION= 2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Static blogging framework leveraging Jekyll WWW= http://octopress.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-jekyll3>=2.0:www/rubygem-jekyll3 \ rubygem-mercenary>=0.3.2<1:devel/rubygem-mercenary \ rubygem-octopress-deploy>=0:net/rubygem-octopress-deploy \ rubygem-octopress-escape-code>=2.0<3:textproc/rubygem-octopress-escape-code \ rubygem-octopress-hooks>=2.0<3:devel/rubygem-octopress-hooks \ rubygem-redcarpet>=3.0<4:textproc/rubygem-redcarpet \ rubygem-titlecase>=0:devel/rubygem-titlecase USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/octopress .include diff --git a/www/rubygem-oembed/Makefile b/www/rubygem-oembed/Makefile index c3b0b81c28bf..b034410bd951 100644 --- a/www/rubygem-oembed/Makefile +++ b/www/rubygem-oembed/Makefile @@ -1,18 +1,17 @@ PORTNAME= oembed PORTVERSION= 0.2.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Slim library to work with oEmbed format WWW= http://soulim.github.com/oembed/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-ostatus2/Makefile b/www/rubygem-ostatus2/Makefile index 34f8625933e5..b07d15b62c44 100644 --- a/www/rubygem-ostatus2/Makefile +++ b/www/rubygem-ostatus2/Makefile @@ -1,22 +1,21 @@ PORTNAME= ostatus2 PORTVERSION= 2.0.3 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Toolset for interacting with the OStatus2 suite of protocols WWW= https://github.com/Gargron/ostatus2/ LICENSE= MIT RUN_DEPENDS= rubygem-addressable>=2.5<3:www/rubygem-addressable \ rubygem-http3>=3.0<4:www/rubygem-http3 \ rubygem-nokogiri>=1.8<2:textproc/rubygem-nokogiri USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-pagerduty/Makefile b/www/rubygem-pagerduty/Makefile index 27b4167d435c..7be788efbf5f 100644 --- a/www/rubygem-pagerduty/Makefile +++ b/www/rubygem-pagerduty/Makefile @@ -1,18 +1,17 @@ PORTNAME= pagerduty PORTVERSION= 4.0.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Lightweight interface for calling the PagerDuty Integration API WWW= https://github.com/envato/pagerduty LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-passenger/Makefile b/www/rubygem-passenger/Makefile index ffa2852dab4f..cf2714f80903 100644 --- a/www/rubygem-passenger/Makefile +++ b/www/rubygem-passenger/Makefile @@ -1,110 +1,109 @@ PORTNAME= passenger PORTVERSION= 6.0.15 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ports@FreeBSD.org COMMENT= Modules for running Ruby on Rails and Rack applications WWW= https://www.phusionpassenger.com/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= rake:devel/rubygem-rake CPE_VENDOR= phusion CPE_PRODUCT= passenger FLAVORS= apache nginx FLAVOR?= ${FLAVORS:[1]} apache_PKGNAMESUFFIX= -apache nginx_PKGNAMESUFFIX= -nginx apache_CONFLICTS_INSTALL= ${PKGNAMEPREFIX}${PORTNAME}-nginx nginx_CONFLICTS_INSTALL= ${PKGNAMEPREFIX}${PORTNAME}-apache OPTIONS_DEFINE= DEBUG SYMLINK OPTIONS_DEFAULT=SYMLINK OPTIONS_EXCLUDE=DOCS SYMLINK_DESC= Create passenger symlink .if ${FLAVOR} == apache 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 LIB_DEPENDS+= libuv.so:devel/libuv \ libcurl.so:ftp/curl \ libapr-1.so:devel/apr1 BUILD_DEPENDS+= rubygem-rack>=0:www/rubygem-rack RUN_DEPENDS:= ${BUILD_DEPENDS} \ rubygem-etc>=0:devel/rubygem-etc SUB_LIST+= GEM_LIB_DIR=${GEM_LIB_DIR} RUBY=${RUBY} SUB_FILES= pkg-message-${FLAVOR} PLIST_FILES= bin/passenger \ bin/passenger-config \ bin/passenger-memory-stats \ bin/passenger-status SYMLINK_PLIST_FILES= ${GEMS_DIR}/${PORTNAME} SYMLINK_SUB_LIST= PASSENGER_INSTALL_DIR="${PREFIX}/${GEMS_DIR}/${PORTNAME}" SYMLINK_SUB_LIST_OFF= PASSENGER_INSTALL_DIR="${PREFIX}/${GEM_LIB_DIR}" pre-patch: @${REINPLACE_CMD} \ 's!-Wall!!g; \ s!gcc!${CC}!g; \ s!g++!${CXX}!g; \ s!#{PlatformInfo.debugging_cflags}!${CFLAGS}!g; \ s!-O2!!g; \ s! -feliminate-unused-debug-symbols -feliminate-unused-debug-types!!g; \ 170s!true!false!' \ ${WRKSRC}/build/basics.rb @${REINPLACE_CMD} '1s:python:python2:' \ ${WRKSRC}/src/cxx_supportlib/vendor-copy/libuv/gyp_uv.py pre-patch-DEBUG-off: @${REINPLACE_CMD} \ 's!-DPASSENGER_DEBUG!-DNDEBUG!g' \ ${WRKSRC}/build/basics.rb post-build: .if ${FLAVOR} == apache (CC=${CC} CXX=${CXX} ${WRKSRC}/bin/passenger-install-apache2-module --auto) .endif .if ${FLAVOR} == nginx (cd ${WRKSRC} && CC=${CC} CXX=${CXX} ${RAKE_BIN} nginx) .endif ${FIND} ${WRKSRC} -name '*.o' -o -name '*.bak' -o -name '*.orig' | ${XARGS} ${RM} post-install: ( cd ${WRKSRC} && \ ${COPYTREE_SHARE} buildout ${STAGEDIR}${PREFIX}/${GEMS_DIR}/${PORTNAME}-${PORTVERSION} ) ${CHMOD} +x ${STAGEDIR}${PREFIX}/${GEMS_DIR}/${PORTNAME}-${PORTVERSION}/buildout/support-binaries/* ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/buildout/ruby/*/passenger_native_support.so ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/buildout/support-binaries/PassengerAgent ${FIND} ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR} -type d -empty -delete .if ${FLAVOR} == apache ${STRIP_CMD} ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/buildout/apache2/mod_passenger.so ${MKDIR} ${STAGEDIR}${PREFIX}/${APACHEMODDIR} ${LN} -sf ../../${GEM_LIB_DIR}/buildout/apache2/mod_passenger.so ${STAGEDIR}${PREFIX}/${APACHEMODDIR}/mod_passenger.so @${ECHO} "${APACHEMODDIR}/mod_passenger.so" >> ${TMPPLIST} .endif @${RM} ${STAGEDIR}${PREFIX}/bin/passenger-install-apache2-module \ ${STAGEDIR}${PREFIX}/bin/passenger-install-nginx-module @${RM} ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/bin/passenger-install-apache2-module \ ${STAGEDIR}${PREFIX}/${GEM_LIB_DIR}/bin/passenger-install-nginx-module post-install-SYMLINK-on: ${LN} -s ${GEM_NAME} ${STAGEDIR}${PREFIX}/${GEMS_DIR}/${PORTNAME} .include diff --git a/www/rubygem-patron/Makefile b/www/rubygem-patron/Makefile index 65a18bc4f3f4..e788ffe6ccb1 100644 --- a/www/rubygem-patron/Makefile +++ b/www/rubygem-patron/Makefile @@ -1,18 +1,17 @@ PORTNAME= patron PORTVERSION= 0.13.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby HTTP client library based on libcurl WWW= https://github.com/toland/patron LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE LIB_DEPENDS= libcurl.so:ftp/curl USES= gem -USE_RUBY= yes .include diff --git a/www/rubygem-platform-api/Makefile b/www/rubygem-platform-api/Makefile index 37f599a4070f..554fbe925a08 100644 --- a/www/rubygem-platform-api/Makefile +++ b/www/rubygem-platform-api/Makefile @@ -1,22 +1,21 @@ PORTNAME= platform-api PORTVERSION= 3.3.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby HTTP client for the Heroku API WWW= https://github.com/heroku/platform-api LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-heroics>=0.1.1<0.2:www/rubygem-heroics \ rubygem-moneta>=1.0.0<2:devel/rubygem-moneta \ rubygem-rate_throttle_client>=0.1.0<0.2:www/rubygem-rate_throttle_client USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-propshaft/Makefile b/www/rubygem-propshaft/Makefile index 03981ea7e6b8..93fc521adc44 100644 --- a/www/rubygem-propshaft/Makefile +++ b/www/rubygem-propshaft/Makefile @@ -1,23 +1,22 @@ PORTNAME= propshaft PORTVERSION= 0.6.4 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Deliver assets for Rails WWW= https://github.com/rails/propshaft LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack70>=7.0.0:www/rubygem-actionpack70 \ rubygem-activesupport70>=7.0.0:devel/rubygem-activesupport70 \ rubygem-rack>=0,3:www/rubygem-rack \ rubygem-railties70>=7.0.0:www/rubygem-railties70 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-protocol-hpack/Makefile b/www/rubygem-protocol-hpack/Makefile index c22801696625..488a4989f404 100644 --- a/www/rubygem-protocol-hpack/Makefile +++ b/www/rubygem-protocol-hpack/Makefile @@ -1,17 +1,16 @@ PORTNAME= protocol-hpack PORTVERSION= 1.4.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Compresssor and decompressor for HTTP 2.0 HPACK WWW= https://github.com/socketry/protocol-hpack LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-protocol-http/Makefile b/www/rubygem-protocol-http/Makefile index a857e83067e9..9828c8a2a6c8 100644 --- a/www/rubygem-protocol-http/Makefile +++ b/www/rubygem-protocol-http/Makefile @@ -1,17 +1,16 @@ PORTNAME= protocol-http PORTVERSION= 0.23.12 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Provides abstractions to handle HTTP protocols WWW= https://github.com/socketry/protocol-http LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-protocol-http1/Makefile b/www/rubygem-protocol-http1/Makefile index 81f8f6856b36..c609840cade2 100644 --- a/www/rubygem-protocol-http1/Makefile +++ b/www/rubygem-protocol-http1/Makefile @@ -1,19 +1,18 @@ PORTNAME= protocol-http1 PORTVERSION= 0.14.4 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Low level implementation of the HTTP/1 protocol WWW= https://github.com/socketry/protocol-http1 LICENSE= MIT RUN_DEPENDS= rubygem-protocol-http>=0.22<1:www/rubygem-protocol-http USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-protocol-http2/Makefile b/www/rubygem-protocol-http2/Makefile index dfb400e4c2c7..86403f7fc0d2 100644 --- a/www/rubygem-protocol-http2/Makefile +++ b/www/rubygem-protocol-http2/Makefile @@ -1,20 +1,19 @@ PORTNAME= protocol-http2 PORTVERSION= 0.14.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Low level implementation of the HTTP/2 protocol WWW= https://github.com/socketry/protocol-http2 LICENSE= MIT RUN_DEPENDS= rubygem-protocol-hpack>=1.4<2:www/rubygem-protocol-hpack \ rubygem-protocol-http>=0.18<1:www/rubygem-protocol-http USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-protocol-rack/Makefile b/www/rubygem-protocol-rack/Makefile index fcce6460461a..91cccb2e2910 100644 --- a/www/rubygem-protocol-rack/Makefile +++ b/www/rubygem-protocol-rack/Makefile @@ -1,20 +1,19 @@ PORTNAME= protocol-rack PORTVERSION= 0.2.4 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Implementation of the Rack protocol/specification WWW= https://github.com/socketry/protocol-rack LICENSE= MIT RUN_DEPENDS= rubygem-protocol-http>=0.23<1:www/rubygem-protocol-http \ rubygem-rack>=1.0,3:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-protocol-websocket/Makefile b/www/rubygem-protocol-websocket/Makefile index faba947d4f75..4272e32af969 100644 --- a/www/rubygem-protocol-websocket/Makefile +++ b/www/rubygem-protocol-websocket/Makefile @@ -1,20 +1,19 @@ PORTNAME= protocol-websocket PORTVERSION= 0.9.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Low-level implementation of the WebSocket protocol WWW= https://github.com/socketry/protocol-websocket LICENSE= MIT RUN_DEPENDS= rubygem-protocol-http>=0.2<1:www/rubygem-protocol-http \ rubygem-protocol-http1>=0.2<1:www/rubygem-protocol-http1 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-puma/Makefile b/www/rubygem-puma/Makefile index c40e43ad6afb..9fb81246f8c0 100644 --- a/www/rubygem-puma/Makefile +++ b/www/rubygem-puma/Makefile @@ -1,20 +1,19 @@ PORTNAME= puma PORTVERSION= 5.6.5 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Fast, multithreaded and highly concurrent ruby web server WWW= https://puma.io/ LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-nio4r>=2.0<3:devel/rubygem-nio4r USES= cpe gem ssl -USE_RUBY= yes PLIST_FILES= bin/puma bin/pumactl .include diff --git a/www/rubygem-puma_worker_killer/Makefile b/www/rubygem-puma_worker_killer/Makefile index 5f3064696abe..2ddf2e386691 100644 --- a/www/rubygem-puma_worker_killer/Makefile +++ b/www/rubygem-puma_worker_killer/Makefile @@ -1,20 +1,19 @@ PORTNAME= puma_worker_killer PORTVERSION= 0.3.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Automatically restart Puma cluster workers based on max RAM available WWW= https://github.com/schneems/puma_worker_killer LICENSE= MIT RUN_DEPENDS= rubygem-get_process_mem>=0.2:devel/rubygem-get_process_mem \ rubygem-puma>=2.7:www/rubygem-puma USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-pusher-client/Makefile b/www/rubygem-pusher-client/Makefile index 3660c78a3392..c8c3001b345d 100644 --- a/www/rubygem-pusher-client/Makefile +++ b/www/rubygem-pusher-client/Makefile @@ -1,21 +1,20 @@ PORTNAME= pusher-client PORTVERSION= 0.6.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Client for consuming WebSockets from http://pusher.com WWW= https://github.com/pusher/pusher-websocket-ruby LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-json>=0:devel/rubygem-json \ rubygem-websocket>=1.0<2:www/rubygem-websocket USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rabbirack/Makefile b/www/rubygem-rabbirack/Makefile index a5428ce555a7..bc5587814e5d 100644 --- a/www/rubygem-rabbirack/Makefile +++ b/www/rubygem-rabbirack/Makefile @@ -1,23 +1,22 @@ PORTNAME= rabbirack PORTVERSION= 2.0.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= tota@FreeBSD.org COMMENT= Tool to control Rabbit from web browser WWW= https://rabbit-shocker.org/en/rabbirack/ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/GPL RUN_DEPENDS= rubygem-haml>0:www/rubygem-haml \ rubygem-locale>=2.0.6:devel/rubygem-locale \ rubygem-rabbit>=2.0.0:misc/rubygem-rabbit \ rubygem-sinatra>0:www/rubygem-sinatra NO_ARCH= yes -USE_RUBY= yes USES= gem gettext PLIST_FILES= bin/rabbirack .include diff --git a/www/rubygem-rack-accept/Makefile b/www/rubygem-rack-accept/Makefile index 17e8541c480c..fe594c46e520 100644 --- a/www/rubygem-rack-accept/Makefile +++ b/www/rubygem-rack-accept/Makefile @@ -1,19 +1,18 @@ PORTNAME= rack-accept PORTVERSION= 0.4.5 PORTREVISION= 2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= HTTP Accept* for Ruby/Rack WWW= https://github.com/mjackson/rack-accept LICENSE= MIT RUN_DEPENDS= rubygem-rack>=0.4,3:www/rubygem-rack NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-rack-attack/Makefile b/www/rubygem-rack-attack/Makefile index 977ac4279129..de735f7f8868 100644 --- a/www/rubygem-rack-attack/Makefile +++ b/www/rubygem-rack-attack/Makefile @@ -1,20 +1,19 @@ PORTNAME= rack-attack PORTVERSION= 6.6.1 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Rack middleware for throttling and blocking abusive requests WWW= https://github.com/kickstarter/rack-attack LICENSE= MIT RUN_DEPENDS= rubygem-rack22>=1.0,3<3,3:www/rubygem-rack22 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rack-cache/Makefile b/www/rubygem-rack-cache/Makefile index 3b59edab9c83..f4de4e41337e 100644 --- a/www/rubygem-rack-cache/Makefile +++ b/www/rubygem-rack-cache/Makefile @@ -1,20 +1,19 @@ PORTNAME= rack-cache PORTVERSION= 1.13.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Rack middleware to enable HTTP caching WWW= https://github.com/rtomayko/rack-cache LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-rack>=0.4,3:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rack-contrib/Makefile b/www/rubygem-rack-contrib/Makefile index 460f8418ab36..60d782f068f4 100644 --- a/www/rubygem-rack-contrib/Makefile +++ b/www/rubygem-rack-contrib/Makefile @@ -1,21 +1,20 @@ PORTNAME= rack-contrib PORTVERSION= 2.3.0 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Contributed Rack Middleware and Utilities WWW= https://github.com/rack/rack-contrib LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-rack22>=2.0,3<3,3:www/rubygem-rack22 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rack-cors/Makefile b/www/rubygem-rack-cors/Makefile index 14f1525c2053..644dabf73973 100644 --- a/www/rubygem-rack-cors/Makefile +++ b/www/rubygem-rack-cors/Makefile @@ -1,20 +1,19 @@ PORTNAME= rack-cors PORTVERSION= 1.1.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Middleware that will make Rack-based apps CORS compatible WWW= https://github.com/cyu/rack-cors LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-rack>=2.0.0,3:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rack-mount/Makefile b/www/rubygem-rack-mount/Makefile index 14f1f4a7c075..b6fd006472c8 100644 --- a/www/rubygem-rack-mount/Makefile +++ b/www/rubygem-rack-mount/Makefile @@ -1,20 +1,19 @@ PORTNAME= rack-mount PORTVERSION= 0.8.3 PORTREVISION= 2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Stackable dynamic tree based Rack router WWW= https://github.com/josh/rack-mount LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rack>=1.0.0,3:www/rubygem-rack NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-rack-openid/Makefile b/www/rubygem-rack-openid/Makefile index 4eb310cd8ec4..b1447223a657 100644 --- a/www/rubygem-rack-openid/Makefile +++ b/www/rubygem-rack-openid/Makefile @@ -1,21 +1,20 @@ PORTNAME= rack-openid PORTVERSION= 1.4.2 PORTREVISION= 4 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Provides a more HTTPish API around the ruby-openid library WWW= https://github.com/josh/rack-openid LICENSE= MIT RUN_DEPENDS= rubygem-rack16>=1.1.0:www/rubygem-rack16 \ rubygem-ruby-openid>=2.1.8:net/rubygem-ruby-openid USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rack-protection/Makefile b/www/rubygem-rack-protection/Makefile index bf052445f19b..cc8eb41275f1 100644 --- a/www/rubygem-rack-protection/Makefile +++ b/www/rubygem-rack-protection/Makefile @@ -1,20 +1,19 @@ PORTNAME= rack-protection PORTVERSION= 3.0.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Collection of Rack middleware to protect against opportunistic attack WWW= https://github.com/sinatra/sinatra/tree/master/rack-protection LICENSE= MIT LICENSE_FILE= ${WRKSRC}/License RUN_DEPENDS= rubygem-rack>=0,3:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rack-protection1/Makefile b/www/rubygem-rack-protection1/Makefile index 4d6ace7ad54e..8b579b8df5da 100644 --- a/www/rubygem-rack-protection1/Makefile +++ b/www/rubygem-rack-protection1/Makefile @@ -1,23 +1,22 @@ PORTNAME= rack-protection PORTVERSION= 1.5.5 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Collection of Rack middleware to protect against opportunistic attack WWW= https://github.com/sinatra/rack-protection/tree/stable-1.5 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/License RUN_DEPENDS= rubygem-rack>=0,3:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^1\. .include diff --git a/www/rubygem-rack-protection2/Makefile b/www/rubygem-rack-protection2/Makefile index 6d69d78e514f..21116080525b 100644 --- a/www/rubygem-rack-protection2/Makefile +++ b/www/rubygem-rack-protection2/Makefile @@ -1,23 +1,22 @@ PORTNAME= rack-protection PORTVERSION= 2.2.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 2 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Collection of Rack middleware to protect against opportunistic attack WWW= https://github.com/sinatra/sinatra/tree/master/rack-protection LICENSE= MIT LICENSE_FILE= ${WRKSRC}/License RUN_DEPENDS= rubygem-rack>=0,3:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^2\. .include diff --git a/www/rubygem-rack-proxy/Makefile b/www/rubygem-rack-proxy/Makefile index db162ea94605..728d8742b0d6 100644 --- a/www/rubygem-rack-proxy/Makefile +++ b/www/rubygem-rack-proxy/Makefile @@ -1,20 +1,19 @@ PORTNAME= rack-proxy PORTVERSION= 0.7.4 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Request/response rewriting proxy capabilities with streaming WWW= https://github.com/ncr/rack-proxy LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rack>=0,3:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rack-ssl/Makefile b/www/rubygem-rack-ssl/Makefile index 128253c88a49..f9d9dc6b2930 100644 --- a/www/rubygem-rack-ssl/Makefile +++ b/www/rubygem-rack-ssl/Makefile @@ -1,21 +1,20 @@ PORTNAME= rack-ssl PORTVERSION= 1.4.1 PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Rack middleware to force SSL/TLS WWW= https://github.com/josh/rack-ssl LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rack>=0,3:www/rubygem-rack NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-rack-test/Makefile b/www/rubygem-rack-test/Makefile index 9517cafda0a1..ae0f8afed98f 100644 --- a/www/rubygem-rack-test/Makefile +++ b/www/rubygem-rack-test/Makefile @@ -1,20 +1,19 @@ PORTNAME= rack-test PORTVERSION= 2.0.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Small, simple testing API for Rack apps WWW= https://github.com/rack/rack-test LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE.txt RUN_DEPENDS= rubygem-rack16>=1.3:www/rubygem-rack16 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rack-timeout/Makefile b/www/rubygem-rack-timeout/Makefile index 3b607aae4549..252244993f5b 100644 --- a/www/rubygem-rack-timeout/Makefile +++ b/www/rubygem-rack-timeout/Makefile @@ -1,18 +1,17 @@ PORTNAME= rack-timeout PORTVERSION= 0.6.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Abort requests that are taking too long WWW= https://github.com/heroku/rack-timeout LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rack/Makefile b/www/rubygem-rack/Makefile index 8248f1a2e662..8b55cbd95b8d 100644 --- a/www/rubygem-rack/Makefile +++ b/www/rubygem-rack/Makefile @@ -1,21 +1,20 @@ PORTNAME= rack PORTVERSION= 3.0.3 PORTEPOCH= 3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rack, a Ruby Webserver Interface WWW= https://github.com/rack/rack LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rack_project .include diff --git a/www/rubygem-rack16/Makefile b/www/rubygem-rack16/Makefile index 3d1c8ec32a4c..2941edceba95 100644 --- a/www/rubygem-rack16/Makefile +++ b/www/rubygem-rack16/Makefile @@ -1,38 +1,37 @@ # XXX: If updating this port, please check compatibality with at least the following ports, # XXX: preferably, the full rubygem-* tree. rack version requirements are specified with ~> # XXX: which requires *EXACTLY* that version. # # www/rubygem-actionpack4 PORTNAME= rack PORTVERSION= 1.6.13 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 16 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rack, a Ruby Webserver Interface WWW= https://github.com/rack/rack LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING USES= cpe gem shebangfix -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rack_project PORTSCOUT= limit:^1\.6\. SHEBANG_FILES= test/cgi/test.ru SHEBANG_LANG= rackup rackup_OLD_CMD= ../../bin/rackup rackup_CMD= ${LOCALBASE}/bin/rackup # Avoid CONFLICTS_INSTALL with www/rubygem-rack post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/rackup .include diff --git a/www/rubygem-rack22/Makefile b/www/rubygem-rack22/Makefile index 9e9f623b0dbe..93c82651e171 100644 --- a/www/rubygem-rack22/Makefile +++ b/www/rubygem-rack22/Makefile @@ -1,26 +1,25 @@ PORTNAME= rack PORTVERSION= 2.2.5 PORTEPOCH= 3 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 22 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rack, a Ruby Webserver Interface WWW= https://github.com/rack/rack LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE USES= cpe gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rackup CPE_VENDOR= rack_project PORTSCOUT= limit:^2\.2\. .include diff --git a/www/rubygem-rack_csrf/Makefile b/www/rubygem-rack_csrf/Makefile index 1243ce951a19..63e7bc9eec91 100644 --- a/www/rubygem-rack_csrf/Makefile +++ b/www/rubygem-rack_csrf/Makefile @@ -1,21 +1,20 @@ PORTNAME= rack_csrf PORTVERSION= 2.7.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Anti-CSRF Rack middleware WWW= https://github.com/baldowl/rack_csrf LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.rdoc RUN_DEPENDS= rubygem-rack>=1.1.0,3:www/rubygem-rack TEST_DEPENDS= rubygem-rspec>0:devel/rubygem-rspec USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rackup/Makefile b/www/rubygem-rackup/Makefile index de628c46ca15..9d3e2830bc84 100644 --- a/www/rubygem-rackup/Makefile +++ b/www/rubygem-rackup/Makefile @@ -1,21 +1,20 @@ PORTNAME= rackup DISTVERSION= 0.2.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= yasu@FreeBSD.org COMMENT= General server command for Rack applications WWW= https://github.com/rack/rackup LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-rack>=3.0.0.beta1,3:www/rubygem-rack \ rubygem-webrick>0:www/rubygem-webrick USES= gem -USE_RUBY= yes PLIST_FILES= bin/rackup .include diff --git a/www/rubygem-rails-settings-cached-rails5/Makefile b/www/rubygem-rails-settings-cached-rails5/Makefile index 7419509e4660..084e5dbd10ed 100644 --- a/www/rubygem-rails-settings-cached-rails5/Makefile +++ b/www/rubygem-rails-settings-cached-rails5/Makefile @@ -1,20 +1,19 @@ PORTNAME= rails-settings-cached PORTVERSION= 0.7.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= ruby@FreeBSD.org COMMENT= Rails settings plugin for easily managing key-value pairs table WWW= https://github.com/huacnlee/rails-settings-cached LICENSE= MIT RUN_DEPENDS= rubygem-rails5>=0:www/rubygem-rails5 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rails-settings-cached-rails50/Makefile b/www/rubygem-rails-settings-cached-rails50/Makefile index ee19e32a43ef..f9a0026f008f 100644 --- a/www/rubygem-rails-settings-cached-rails50/Makefile +++ b/www/rubygem-rails-settings-cached-rails50/Makefile @@ -1,20 +1,19 @@ PORTNAME= rails-settings-cached PORTVERSION= 0.7.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= ruby@FreeBSD.org COMMENT= Rails settings plugin for easily managing key-value pairs table WWW= https://github.com/huacnlee/rails-settings-cached LICENSE= MIT RUN_DEPENDS= rubygem-rails50>=0:www/rubygem-rails50 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rails-settings-cached-rails61/Makefile b/www/rubygem-rails-settings-cached-rails61/Makefile index ab46411fa32a..38c56a086dee 100644 --- a/www/rubygem-rails-settings-cached-rails61/Makefile +++ b/www/rubygem-rails-settings-cached-rails61/Makefile @@ -1,20 +1,19 @@ PORTNAME= rails-settings-cached PORTVERSION= 0.7.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= bofh@FreeBSD.org COMMENT= Rails settings plugin for easily managing key-value pairs table WWW= https://github.com/huacnlee/rails-settings-cached LICENSE= MIT RUN_DEPENDS= rubygem-rails61>=0:www/rubygem-rails61 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rails-settings-cached/Makefile b/www/rubygem-rails-settings-cached/Makefile index 8b174bbb94b5..04e9fe8fcead 100644 --- a/www/rubygem-rails-settings-cached/Makefile +++ b/www/rubygem-rails-settings-cached/Makefile @@ -1,19 +1,18 @@ PORTNAME= rails-settings-cached PORTVERSION= 0.7.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Rails settings plugin for easily managing key-value pairs table WWW= https://github.com/huacnlee/rails-settings-cached LICENSE= MIT RUN_DEPENDS= rubygem-rails4>=4.2.0:www/rubygem-rails4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rails4/Makefile b/www/rubygem-rails4/Makefile index 93eaebee36d2..6101d46f75c2 100644 --- a/www/rubygem-rails4/Makefile +++ b/www/rubygem-rails4/Makefile @@ -1,58 +1,57 @@ PORTNAME= rails PORTVERSION= 4.2.11.3 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4 MAINTAINER= sunpoet@FreeBSD.org COMMENT= MVC web application framework WWW= https://github.com/rails/rails LICENSE= MIT RUN_DEPENDS= rubygem-actionmailer4>=${PORTVERSION}:mail/rubygem-actionmailer4 \ rubygem-actionpack4>=${PORTVERSION}:www/rubygem-actionpack4 \ rubygem-actionview4>=${PORTVERSION}:devel/rubygem-actionview4 \ rubygem-activejob4>=${PORTVERSION}:devel/rubygem-activejob4 \ rubygem-activemodel4>=${PORTVERSION}:databases/rubygem-activemodel4 \ rubygem-activerecord4>=${PORTVERSION}:databases/rubygem-activerecord4 \ rubygem-activeresource4>=4.0.0:www/rubygem-activeresource4 \ rubygem-activesupport4>=${PORTVERSION}:devel/rubygem-activesupport4 \ rubygem-builder>=3.2.2:devel/rubygem-builder \ rubygem-bundler>=1.3.0:sysutils/rubygem-bundler \ rubygem-byebug>=5.0.0:devel/rubygem-byebug \ rubygem-coffee-rails41>=4.1.1:devel/rubygem-coffee-rails41 \ rubygem-execjs>=2.2.1:devel/rubygem-execjs \ rubygem-jbuilder>=2.1.3:devel/rubygem-jbuilder \ rubygem-jquery-rails>=4.0:www/rubygem-jquery-rails \ rubygem-railties4>=${PORTVERSION}:www/rubygem-railties4 \ rubygem-rake>=10.3:devel/rubygem-rake \ rubygem-rdoc>=4.0.2:devel/rubygem-rdoc \ rubygem-sass>=3.4.1:textproc/rubygem-sass \ rubygem-sass-rails-rails4>=5.0.3:textproc/rubygem-sass-rails-rails4 \ rubygem-sdoc>=0.4.1:devel/rubygem-sdoc \ rubygem-spring>=1.1.3:devel/rubygem-spring \ rubygem-sqlite3>=1.3.9:databases/rubygem-sqlite3 \ rubygem-sprockets3>=3.0.3:devel/rubygem-sprockets3 \ rubygem-sprockets-rails-rails4>=2.0:devel/rubygem-sprockets-rails-rails4 \ rubygem-thread_safe>=0.3.4:devel/rubygem-thread_safe \ rubygem-turbolinks>=2.3.0:www/rubygem-turbolinks \ rubygem-uglifier>=2.5.0:www/rubygem-uglifier \ rubygem-web-console2>=2.1.2:devel/rubygem-web-console2 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= ruby_on_rails PORTSCOUT= limit:^4\.2\. OPTIONS_DEFINE= MEMCACHE_CLIENT MEMCACHE_CLIENT_DESC= MemCache-Client support MEMCACHE_CLIENT_RUN_DEPENDS= rubygem-memcache-client>=1.2.0:databases/rubygem-memcache-client .include diff --git a/www/rubygem-rails5/Makefile b/www/rubygem-rails5/Makefile index 93ad5f856048..2dc0d74843fc 100644 --- a/www/rubygem-rails5/Makefile +++ b/www/rubygem-rails5/Makefile @@ -1,61 +1,60 @@ PORTNAME= rails PORTVERSION= 5.1.7 PORTREVISION= 2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 MAINTAINER= ruby@FreeBSD.org COMMENT= Full-stack web application framework WWW= https://github.com/rails/rails LICENSE= MIT RUN_DEPENDS= rubygem-actioncable5>=${PORTVERSION}:www/rubygem-actioncable5 \ rubygem-actionmailer5>=${PORTVERSION}:mail/rubygem-actionmailer5 \ rubygem-actionpack5>=${PORTVERSION}:www/rubygem-actionpack5 \ rubygem-actionview5>=${PORTVERSION}:devel/rubygem-actionview5 \ rubygem-activejob5>=${PORTVERSION}:devel/rubygem-activejob5 \ rubygem-activemodel5>=${PORTVERSION}:databases/rubygem-activemodel5 \ rubygem-activerecord5>=${PORTVERSION}:databases/rubygem-activerecord5 \ rubygem-activesupport5>=${PORTVERSION}:devel/rubygem-activesupport5 \ rubygem-bundler>=1.3.0:sysutils/rubygem-bundler \ rubygem-railties5>=${PORTVERSION}:www/rubygem-railties5 \ rubygem-sprockets-rails-rails5>=2.0.0:devel/rubygem-sprockets-rails-rails5 \ rubygem-bindex>=0.5.0:devel/rubygem-bindex \ rubygem-byebug>=9.0.6:devel/rubygem-byebug \ rubygem-capybara>=2.14.0:devel/rubygem-capybara \ rubygem-coffee-rails-rails5>=4.2.1:devel/rubygem-coffee-rails-rails5 \ rubygem-coffee-script-source>=1.12.2:devel/rubygem-coffee-script-source \ rubygem-coffee-script>=2.4.1:devel/rubygem-coffee-script \ rubygem-execjs>=2.7.0:devel/rubygem-execjs \ rubygem-jbuilder-rails5>=2.6.3:devel/rubygem-jbuilder-rails5 \ rubygem-jquery-rails-rails5>=4.3.1:www/rubygem-jquery-rails-rails5 \ rubygem-mini_mime>=0:mail/rubygem-mini_mime \ rubygem-multi_json>=1.12.1:devel/rubygem-multi_json \ rubygem-puma>=3.8.2:www/rubygem-puma \ rubygem-rb-fsevent>=0.10.2:devel/rubygem-rb-fsevent \ rubygem-rb-inotify>=0.9.10:devel/rubygem-rb-inotify \ rubygem-sass-listen>=4.0.0:textproc/rubygem-sass-listen \ rubygem-sass-rails-rails5>=5.0.3:textproc/rubygem-sass-rails-rails5 \ rubygem-sass>=3.4.23:textproc/rubygem-sass \ rubygem-selenium-webdriver>=3.4.0:www/rubygem-selenium-webdriver \ rubygem-spring>=2.0.1:devel/rubygem-spring \ rubygem-sqlite3>=1.3.13:databases/rubygem-sqlite3 \ rubygem-tilt>=2.0.7:devel/rubygem-tilt \ rubygem-turbolinks>=5:www/rubygem-turbolinks \ rubygem-turbolinks-source>=5.0.0:www/rubygem-turbolinks-source \ rubygem-uglifier>=3.2.0:www/rubygem-uglifier \ rubygem-web-console3-rails5>=3.5.0:devel/rubygem-web-console3-rails5 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= ruby_on_rails PORTSCOUT= limit:^5\.1\. .include diff --git a/www/rubygem-rails50/Makefile b/www/rubygem-rails50/Makefile index afb2f2410258..6c830754eaeb 100644 --- a/www/rubygem-rails50/Makefile +++ b/www/rubygem-rails50/Makefile @@ -1,59 +1,58 @@ PORTNAME= rails PORTVERSION= 5.0.7.2 PORTREVISION= 2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 MAINTAINER= ruby@FreeBSD.org COMMENT= Full-stack web application framework WWW= https://github.com/rails/rails LICENSE= MIT RUN_DEPENDS= rubygem-actioncable50>=${PORTVERSION}:www/rubygem-actioncable50 \ rubygem-actionmailer50>=${PORTVERSION}:mail/rubygem-actionmailer50 \ rubygem-actionpack50>=${PORTVERSION}:www/rubygem-actionpack50 \ rubygem-actionview50>=${PORTVERSION}:devel/rubygem-actionview50 \ rubygem-activejob50>=${PORTVERSION}:devel/rubygem-activejob50 \ rubygem-activemodel50>=${PORTVERSION}:databases/rubygem-activemodel50 \ rubygem-activerecord50>=${PORTVERSION}:databases/rubygem-activerecord50 \ rubygem-activesupport50>=${PORTVERSION}:devel/rubygem-activesupport50 \ rubygem-bundler>=1.3.0:sysutils/rubygem-bundler \ rubygem-railties50>=${PORTVERSION}:www/rubygem-railties50 \ rubygem-sprockets-rails-rails50>=2.0.0:devel/rubygem-sprockets-rails-rails50 \ rubygem-bindex>=0.5.0:devel/rubygem-bindex \ rubygem-byebug>=9.0.6:devel/rubygem-byebug \ rubygem-coffee-rails-rails50>=4.2.1:devel/rubygem-coffee-rails-rails50 \ rubygem-coffee-script-source>=1.12.2:devel/rubygem-coffee-script-source \ rubygem-coffee-script>=2.4.1:devel/rubygem-coffee-script \ rubygem-execjs>=2.7.0:devel/rubygem-execjs \ rubygem-ffi>=1.9.18:devel/rubygem-ffi \ rubygem-jbuilder-rails50>=2.6.3:devel/rubygem-jbuilder-rails50 \ rubygem-jquery-rails-rails50>=4.3.1:www/rubygem-jquery-rails-rails50 \ rubygem-multi_json>=1.12.1:devel/rubygem-multi_json \ rubygem-puma>=3.8.2:www/rubygem-puma \ rubygem-rb-fsevent>=0.10.2:devel/rubygem-rb-fsevent \ rubygem-rb-inotify>=0.9.10:devel/rubygem-rb-inotify \ rubygem-sass-listen>=4.0.0:textproc/rubygem-sass-listen \ rubygem-sass-rails-rails50>=5.0.3:textproc/rubygem-sass-rails-rails50 \ rubygem-sass>=3.4.23:textproc/rubygem-sass \ rubygem-spring>=2.0.1:devel/rubygem-spring \ rubygem-sqlite3>=1.3.13:databases/rubygem-sqlite3 \ rubygem-tilt>=2.0.7:devel/rubygem-tilt \ rubygem-turbolinks>=5:www/rubygem-turbolinks \ rubygem-turbolinks-source>=5.0.0:www/rubygem-turbolinks-source \ rubygem-uglifier>=3.2.0:www/rubygem-uglifier \ rubygem-web-console3-rails50>=3.5.0:devel/rubygem-web-console3-rails50 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= ruby_on_rails PORTSCOUT= limit:^5\.0\. .include diff --git a/www/rubygem-rails52/Makefile b/www/rubygem-rails52/Makefile index 2bb487a17b2a..ec596b3eb392 100644 --- a/www/rubygem-rails52/Makefile +++ b/www/rubygem-rails52/Makefile @@ -1,53 +1,52 @@ PORTNAME= rails PORTVERSION= 5.2.8.1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 52 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Full-stack web application framework WWW= https://github.com/rails/rails LICENSE= MIT RUN_DEPENDS= rubygem-actioncable52>=${PORTVERSION}:www/rubygem-actioncable52 \ rubygem-actionmailer52>=${PORTVERSION}:mail/rubygem-actionmailer52 \ rubygem-actionpack52>=${PORTVERSION}:www/rubygem-actionpack52 \ rubygem-actionview52>=${PORTVERSION}:devel/rubygem-actionview52 \ rubygem-activejob52>=${PORTVERSION}:devel/rubygem-activejob52 \ rubygem-activemodel52>=${PORTVERSION}:databases/rubygem-activemodel52 \ rubygem-activerecord52>=${PORTVERSION}:databases/rubygem-activerecord52 \ rubygem-activestorage52>=${PORTVERSION}:net/rubygem-activestorage52 \ rubygem-activesupport52>=${PORTVERSION}:devel/rubygem-activesupport52 \ rubygem-bundler>=1.3.0:sysutils/rubygem-bundler \ rubygem-railties52>=${PORTVERSION}:www/rubygem-railties52 \ rubygem-sprockets-rails-rails52>=2.0.0:devel/rubygem-sprockets-rails-rails52 \ rubygem-bootsnap>=1.1.0:devel/rubygem-bootsnap \ rubygem-byebug>=0:devel/rubygem-byebug \ rubygem-capybara>=2.15:devel/rubygem-capybara \ rubygem-chromedriver-helper>=0:www/rubygem-chromedriver-helper \ rubygem-coffee-rails-rails52>=0:devel/rubygem-coffee-rails-rails52 \ rubygem-jbuilder-rails52>=0:devel/rubygem-jbuilder-rails52 \ rubygem-mini_magick>=0:graphics/rubygem-mini_magick \ rubygem-nokogiri>=1.8.1:textproc/rubygem-nokogiri \ rubygem-puma>=0:www/rubygem-puma \ rubygem-rake>=11.1:devel/rubygem-rake \ rubygem-sass-rails-rails52>=0:textproc/rubygem-sass-rails-rails52 \ rubygem-selenium-webdriver>=0:www/rubygem-selenium-webdriver \ rubygem-spring>=0:devel/rubygem-spring \ rubygem-sqlite3>=1.3.6:databases/rubygem-sqlite3 \ rubygem-turbolinks>=5:www/rubygem-turbolinks \ rubygem-uglifier>=1.3.0:www/rubygem-uglifier \ rubygem-web-console3-rails52>=3.3.0:devel/rubygem-web-console3-rails52 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= ruby_on_rails PORTSCOUT= limit:^5\.2\. .include diff --git a/www/rubygem-rails60/Makefile b/www/rubygem-rails60/Makefile index 899e93373854..9367f4fcecdd 100644 --- a/www/rubygem-rails60/Makefile +++ b/www/rubygem-rails60/Makefile @@ -1,58 +1,57 @@ PORTNAME= rails PORTVERSION= 6.0.6 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Full-stack web application framework WWW= https://github.com/rails/rails \ https://rubyonrails.org/ LICENSE= MIT RUN_DEPENDS= rubygem-actioncable60>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actioncable60 \ rubygem-actionmailbox60>=${PORTVERSION}<${PORTVERSION}_99:mail/rubygem-actionmailbox60 \ rubygem-actionmailer60>=${PORTVERSION}<${PORTVERSION}_99:mail/rubygem-actionmailer60 \ rubygem-actionpack60>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack60 \ rubygem-actiontext60>=${PORTVERSION}<${PORTVERSION}_99:textproc/rubygem-actiontext60 \ rubygem-actionview60>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-actionview60 \ rubygem-activejob60>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activejob60 \ rubygem-activemodel60>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-activemodel60 \ rubygem-activerecord60>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-activerecord60 \ rubygem-activestorage60>=${PORTVERSION}<${PORTVERSION}_99:net/rubygem-activestorage60 \ rubygem-activesupport60>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport60 \ rubygem-bundler>=1.3.0:sysutils/rubygem-bundler \ rubygem-railties60>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-railties60 \ rubygem-sprockets-rails-rails60>=2.0.0:devel/rubygem-sprockets-rails-rails60 \ rubygem-bootsnap>=1.4.2:devel/rubygem-bootsnap \ rubygem-byebug>=0:devel/rubygem-byebug \ rubygem-capybara>=2.15:devel/rubygem-capybara \ rubygem-dalli>=0:databases/rubygem-dalli \ rubygem-image_processing>=1.2<2:graphics/rubygem-image_processing \ rubygem-jbuilder-rails60>=0:devel/rubygem-jbuilder-rails60 \ rubygem-nokogiri>=1.8.1:textproc/rubygem-nokogiri \ rubygem-puma>=0:www/rubygem-puma \ rubygem-rake>=11.1:devel/rubygem-rake \ rubygem-sass-rails-rails60>=0:textproc/rubygem-sass-rails-rails60 \ rubygem-selenium-webdriver>=3.141.5.92:www/rubygem-selenium-webdriver \ rubygem-spring>=0:devel/rubygem-spring \ rubygem-sqlite3>=1.4<2:databases/rubygem-sqlite3 \ rubygem-turbolinks>=5<6:www/rubygem-turbolinks \ rubygem-uglifier>=1.3.0:www/rubygem-uglifier \ rubygem-web-console-rails60>=3.3.0:devel/rubygem-web-console-rails60 \ rubygem-webdrivers>=0:www/rubygem-webdrivers \ rubygem-webmock>=0:www/rubygem-webmock \ rubygem-webpacker4-rails60>=4.0<5:devel/rubygem-webpacker4-rails60 USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= ruby_on_rails PORTSCOUT= limit:^6\.0\. .include diff --git a/www/rubygem-rails61/Makefile b/www/rubygem-rails61/Makefile index 9b7fa52ca619..a200f65a5d55 100644 --- a/www/rubygem-rails61/Makefile +++ b/www/rubygem-rails61/Makefile @@ -1,59 +1,58 @@ PORTNAME= rails PORTVERSION= 6.1.7 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Full-stack web application framework WWW= https://github.com/rails/rails \ https://rubyonrails.org/ LICENSE= MIT RUN_DEPENDS= rubygem-actioncable61>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actioncable61 \ rubygem-actionmailbox61>=${PORTVERSION}<${PORTVERSION}_99:mail/rubygem-actionmailbox61 \ rubygem-actionmailer61>=${PORTVERSION}<${PORTVERSION}_99:mail/rubygem-actionmailer61 \ rubygem-actionpack61>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack61 \ rubygem-actiontext61>=${PORTVERSION}<${PORTVERSION}_99:textproc/rubygem-actiontext61 \ rubygem-actionview61>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-actionview61 \ rubygem-activejob61>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activejob61 \ rubygem-activemodel61>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-activemodel61 \ rubygem-activerecord61>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-activerecord61 \ rubygem-activestorage61>=${PORTVERSION}<${PORTVERSION}_99:net/rubygem-activestorage61 \ rubygem-activesupport61>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport61 \ rubygem-bundler>=1.15.0:sysutils/rubygem-bundler \ rubygem-railties61>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-railties61 \ rubygem-sprockets-rails-rails61>=2.0.0:devel/rubygem-sprockets-rails-rails61 \ rubygem-bootsnap>=1.4.4:devel/rubygem-bootsnap \ rubygem-byebug>=0:devel/rubygem-byebug \ rubygem-capybara>=3.26:devel/rubygem-capybara \ rubygem-dalli>=0:databases/rubygem-dalli \ rubygem-image_processing>=1.2<2:graphics/rubygem-image_processing \ rubygem-jbuilder-rails61>=0:devel/rubygem-jbuilder-rails61 \ rubygem-nokogiri>=1.8.1:textproc/rubygem-nokogiri \ rubygem-puma>=0:www/rubygem-puma \ rubygem-rake>=11.1:devel/rubygem-rake \ rubygem-sass-rails-rails61>=0:textproc/rubygem-sass-rails-rails61 \ rubygem-selenium-webdriver>=4.0.0:www/rubygem-selenium-webdriver \ rubygem-spring>=0:devel/rubygem-spring \ rubygem-sqlite3>=1.4<2:databases/rubygem-sqlite3 \ rubygem-turbolinks>=5<6:www/rubygem-turbolinks \ rubygem-uglifier>=1.3.0:www/rubygem-uglifier \ rubygem-web-console-rails61>=3.3.0:devel/rubygem-web-console-rails61 \ rubygem-webdrivers>=0:www/rubygem-webdrivers \ rubygem-webmock>=0:www/rubygem-webmock \ rubygem-webpacker-rails61>=5.0<6:devel/rubygem-webpacker-rails61 \ rubygem-webrick>=0:www/rubygem-webrick USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= ruby_on_rails PORTSCOUT= limit:^6\.1\. .include diff --git a/www/rubygem-rails70/Makefile b/www/rubygem-rails70/Makefile index f590915c9644..3ad7be415a00 100644 --- a/www/rubygem-rails70/Makefile +++ b/www/rubygem-rails70/Makefile @@ -1,68 +1,67 @@ PORTNAME= rails PORTVERSION= 7.0.3.1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 70 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Full-stack web application framework WWW= https://github.com/rails/rails \ https://rubyonrails.org/ LICENSE= MIT RUN_DEPENDS= rubygem-actioncable70>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actioncable70 \ rubygem-actionmailbox70>=${PORTVERSION}<${PORTVERSION}_99:mail/rubygem-actionmailbox70 \ rubygem-actionmailer70>=${PORTVERSION}<${PORTVERSION}_99:mail/rubygem-actionmailer70 \ rubygem-actionpack70>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack70 \ rubygem-actiontext70>=${PORTVERSION}<${PORTVERSION}_99:textproc/rubygem-actiontext70 \ rubygem-actionview70>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-actionview70 \ rubygem-activejob70>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activejob70 \ rubygem-activemodel70>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-activemodel70 \ rubygem-activerecord70>=${PORTVERSION}<${PORTVERSION}_99:databases/rubygem-activerecord70 \ rubygem-activestorage70>=${PORTVERSION}<${PORTVERSION}_99:net/rubygem-activestorage70 \ rubygem-activesupport70>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport70 \ rubygem-bundler>=1.15.0:sysutils/rubygem-bundler \ rubygem-railties70>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-railties70 \ rubygem-bootsnap>=1.4.4:devel/rubygem-bootsnap \ rubygem-capybara>=3.26:devel/rubygem-capybara \ rubygem-connection_pool>=0:net/rubygem-connection_pool \ rubygem-cssbundling-rails>=0:www/rubygem-cssbundling-rails \ rubygem-dalli>=3.0.1:databases/rubygem-dalli \ rubygem-image_processing>=1.2<2:graphics/rubygem-image_processing \ rubygem-importmap-rails>=0:www/rubygem-importmap-rails \ rubygem-jsbundling-rails>=0:www/rubygem-jsbundling-rails \ rubygem-json>=2.0.0:devel/rubygem-json \ rubygem-libxml-ruby>=0:textproc/rubygem-libxml-ruby \ rubygem-listen>=3.3<4:devel/rubygem-listen \ rubygem-minitest>=5.15.0:devel/rubygem-minitest \ rubygem-nokogiri>=1.8.1:textproc/rubygem-nokogiri \ rubygem-propshaft>=0.1.7:www/rubygem-propshaft \ rubygem-puma>=0:www/rubygem-puma \ rubygem-que>=0:devel/rubygem-que \ rubygem-rack-cache>=1.2<2:www/rubygem-rack-cache \ rubygem-rake>=11.1:devel/rubygem-rake \ rubygem-redis-namespace>=0:databases/rubygem-redis-namespace \ rubygem-rexml>=0:textproc/rubygem-rexml \ rubygem-selenium-webdriver>=4.0.0:www/rubygem-selenium-webdriver \ rubygem-sprockets-rails-rails70>=2.0.0:devel/rubygem-sprockets-rails-rails70 \ rubygem-sqlite3>=1.4<2:databases/rubygem-sqlite3 \ rubygem-stimulus-rails>=0:www/rubygem-stimulus-rails \ rubygem-sucker_punch>=0:devel/rubygem-sucker_punch \ rubygem-tailwindcss-rails>=0:www/rubygem-tailwindcss-rails \ rubygem-turbo-rails>=0:www/rubygem-turbo-rails \ rubygem-webdrivers>=0:www/rubygem-webdrivers \ rubygem-webmock>=0:www/rubygem-webmock \ rubygem-webrick>=0:www/rubygem-webrick USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= rubyonrails CPE_PRODUCT= ruby_on_rails PORTSCOUT= limit:^7\.0\. .include diff --git a/www/rubygem-rails_12factor/Makefile b/www/rubygem-rails_12factor/Makefile index 6609106d39eb..8e2d11291dad 100644 --- a/www/rubygem-rails_12factor/Makefile +++ b/www/rubygem-rails_12factor/Makefile @@ -1,21 +1,20 @@ PORTNAME= rails_12factor PORTVERSION= 0.0.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Run Rails the 12factor way WWW= https://github.com/heroku/rails_12factor LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rails_serve_static_assets>=0:www/rubygem-rails_serve_static_assets \ rubygem-rails_stdout_logging>=0:www/rubygem-rails_stdout_logging NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-rails_autolink/Makefile b/www/rubygem-rails_autolink/Makefile index e11a965e192e..5eaedfcdc21a 100644 --- a/www/rubygem-rails_autolink/Makefile +++ b/www/rubygem-rails_autolink/Makefile @@ -1,19 +1,18 @@ PORTNAME= rails_autolink PORTVERSION= 1.1.7 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Extraction of the auto_link method from rails, removed in 3.1 WWW= https://github.com/tenderlove/rails_autolink LICENSE= MIT RUN_DEPENDS= rubygem-rails4>=${PORTVERSION}:www/rubygem-rails4 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rails_serve_static_assets/Makefile b/www/rubygem-rails_serve_static_assets/Makefile index 5da69eecc2df..c2df8da04270 100644 --- a/www/rubygem-rails_serve_static_assets/Makefile +++ b/www/rubygem-rails_serve_static_assets/Makefile @@ -1,18 +1,17 @@ PORTNAME= rails_serve_static_assets PORTVERSION= 0.0.5 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Enables serving assets in production WWW= https://github.com/heroku/rails_serve_static_assets/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-rails_stdout_logging/Makefile b/www/rubygem-rails_stdout_logging/Makefile index 0520dd4b2b24..ca8ce953b5fc 100644 --- a/www/rubygem-rails_stdout_logging/Makefile +++ b/www/rubygem-rails_stdout_logging/Makefile @@ -1,17 +1,16 @@ PORTNAME= rails_stdout_logging PORTVERSION= 0.0.5 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Overrides Rails' built in logger to send all logs to stdout WWW= https://github.com/heroku/rails_stdout_logging/ LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-railties4/Makefile b/www/rubygem-railties4/Makefile index eba5b406fa21..98a8ba74b628 100644 --- a/www/rubygem-railties4/Makefile +++ b/www/rubygem-railties4/Makefile @@ -1,29 +1,28 @@ PORTNAME= railties PORTVERSION= 4.2.11.3 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 4 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rails internals bootup, plugins, generators, and rake tasks WWW= https://github.com/rails/rails/tree/main/railties LICENSE= MIT RUN_DEPENDS= rubygem-actionpack4>=${PORTVERSION}:www/rubygem-actionpack4 \ rubygem-activesupport4>=${PORTVERSION}:devel/rubygem-activesupport4 \ rubygem-rake>=0.8.7:devel/rubygem-rake \ rubygem-thor>=0.18.1<2.0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rails CONFLICTS_INSTALL= rubygem-railties5 rubygem-railties50 rubygem-railties52 rubygem-railties60 PORTSCOUT= limit:^4\.2\. .include diff --git a/www/rubygem-railties5/Makefile b/www/rubygem-railties5/Makefile index 9eef8209f655..bf6806b96284 100644 --- a/www/rubygem-railties5/Makefile +++ b/www/rubygem-railties5/Makefile @@ -1,31 +1,30 @@ PORTNAME= railties PORTVERSION= 5.1.7 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rails internals bootup, plugins, generators, and rake tasks WWW= https://github.com/rails/rails/tree/main/railties LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack5>=${PORTVERSION}:www/rubygem-actionpack5 \ rubygem-activesupport5>=${PORTVERSION}:devel/rubygem-activesupport5 \ rubygem-method_source>=0:devel/rubygem-method_source \ rubygem-rake>=0.8.7:devel/rubygem-rake \ rubygem-thor>=0.18.1<2.0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rails CONFLICTS_INSTALL= rubygem-railties4 rubygem-railties50 rubygem-railties52 PORTSCOUT= limit:^5\.1\. .include diff --git a/www/rubygem-railties50/Makefile b/www/rubygem-railties50/Makefile index 841a286ba4bb..8bcd15ef5983 100644 --- a/www/rubygem-railties50/Makefile +++ b/www/rubygem-railties50/Makefile @@ -1,31 +1,30 @@ PORTNAME= railties PORTVERSION= 5.0.7.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 50 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rails internals bootup, plugins, generators, and rake tasks WWW= https://github.com/rails/rails/tree/main/railties LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack50>=${PORTVERSION}:www/rubygem-actionpack50 \ rubygem-activesupport50>=${PORTVERSION}:devel/rubygem-activesupport50 \ rubygem-method_source>=0:devel/rubygem-method_source \ rubygem-rake>=0.8.7:devel/rubygem-rake \ rubygem-thor>=0.18.1<2.0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rails CONFLICTS_INSTALL= rubygem-railties4 rubygem-railties5 rubygem-railties52 PORTSCOUT= limit:^5\.0\. .include diff --git a/www/rubygem-railties52/Makefile b/www/rubygem-railties52/Makefile index 805e51ef37f0..17ca3291c3cc 100644 --- a/www/rubygem-railties52/Makefile +++ b/www/rubygem-railties52/Makefile @@ -1,31 +1,30 @@ PORTNAME= railties PORTVERSION= 5.2.8.1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 52 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rails internals bootup, plugins, generators, and rake tasks WWW= https://github.com/rails/rails/tree/main/railties LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack52>=${PORTVERSION}:www/rubygem-actionpack52 \ rubygem-activesupport52>=${PORTVERSION}:devel/rubygem-activesupport52 \ rubygem-method_source>=0:devel/rubygem-method_source \ rubygem-rake>=0.8.7:devel/rubygem-rake \ rubygem-thor>=0.19.0<2.0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rails CONFLICTS_INSTALL= rubygem-railties4 rubygem-railties5 rubygem-railties50 PORTSCOUT= limit:^5\.2\. .include diff --git a/www/rubygem-railties60/Makefile b/www/rubygem-railties60/Makefile index dd547e230b2c..f571b852dc9c 100644 --- a/www/rubygem-railties60/Makefile +++ b/www/rubygem-railties60/Makefile @@ -1,32 +1,31 @@ PORTNAME= railties PORTVERSION= 6.0.6 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rails internals bootup, plugins, generators, and rake tasks WWW= https://github.com/rails/rails/tree/master/railties \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack60>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack60 \ rubygem-activesupport60>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport60 \ rubygem-method_source>=0:devel/rubygem-method_source \ rubygem-rake>=0.8.7:devel/rubygem-rake \ rubygem-thor>=0.20.3<2.0:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rails CONFLICTS_INSTALL= rubygem-railties4 rubygem-railties5 rubygem-railties50 PORTSCOUT= limit:^6\.0\. .include diff --git a/www/rubygem-railties61/Makefile b/www/rubygem-railties61/Makefile index 655e819c7308..38102b8a69bc 100644 --- a/www/rubygem-railties61/Makefile +++ b/www/rubygem-railties61/Makefile @@ -1,32 +1,31 @@ PORTNAME= railties PORTVERSION= 6.1.7 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 61 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rails internals bootup, plugins, generators, and rake tasks WWW= https://github.com/rails/rails/tree/master/railties \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack61>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack61 \ rubygem-activesupport61>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport61 \ rubygem-method_source>=0:devel/rubygem-method_source \ rubygem-rake>=12.2:devel/rubygem-rake \ rubygem-thor>=1.0<2:devel/rubygem-thor USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rails CONFLICTS_INSTALL= rubygem-railties4 rubygem-railties5 rubygem-railties50 rubygem-railties52 rubygem-railties60 PORTSCOUT= limit:^6\.1\. .include diff --git a/www/rubygem-railties70/Makefile b/www/rubygem-railties70/Makefile index 6d4433342907..81c1210a11e5 100644 --- a/www/rubygem-railties70/Makefile +++ b/www/rubygem-railties70/Makefile @@ -1,33 +1,32 @@ PORTNAME= railties PORTVERSION= 7.0.3.1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 70 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Rails internals: application bootup, plugins, generators, and rake tasks WWW= https://github.com/rails/rails/tree/master/railties \ https://rubyonrails.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack70>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-actionpack70 \ rubygem-activesupport70>=${PORTVERSION}<${PORTVERSION}_99:devel/rubygem-activesupport70 \ rubygem-method_source>=0:devel/rubygem-method_source \ rubygem-rake>=12.2:devel/rubygem-rake \ rubygem-thor>=1.0<2:devel/rubygem-thor \ rubygem-zeitwerk>=2.5<3:devel/rubygem-zeitwerk USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rails CONFLICTS_INSTALL= rubygem-railties4 rubygem-railties5 rubygem-railties50 rubygem-railties52 rubygem-railties60 rubygem-railties61 PORTSCOUT= limit:^7\.0\. .include diff --git a/www/rubygem-raindrops/Makefile b/www/rubygem-raindrops/Makefile index 03a0b06aac2a..ced7ee746785 100644 --- a/www/rubygem-raindrops/Makefile +++ b/www/rubygem-raindrops/Makefile @@ -1,19 +1,18 @@ PORTNAME= raindrops PORTVERSION= 0.20.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Real-time stats toolkit to show statistics for Rack HTTP servers WWW= https://yhbt.net/raindrops/ LICENSE= LGPL21+ LGPL3 LICENSE_COMB= dual LICENSE_FILE_LGPL3= ${WRKSRC}/COPYING USES= gem shebangfix -USE_RUBY= yes SHEBANG_FILES= examples/linux-listener-stats.rb .include diff --git a/www/rubygem-ramaze/Makefile b/www/rubygem-ramaze/Makefile index 97211ceb0077..1b158688a6db 100644 --- a/www/rubygem-ramaze/Makefile +++ b/www/rubygem-ramaze/Makefile @@ -1,21 +1,20 @@ PORTNAME= ramaze PORTVERSION= 2012.12.08 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple and modular web framework WWW= http://ramaze.net LICENSE= MIT RUN_DEPENDS= rubygem-innate>=2012.12:www/rubygem-innate \ rubygem-rake>=0:devel/rubygem-rake NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/ramaze .include diff --git a/www/rubygem-raphael-rails/Makefile b/www/rubygem-raphael-rails/Makefile index 27260948270a..dbdff30ca7a6 100644 --- a/www/rubygem-raphael-rails/Makefile +++ b/www/rubygem-raphael-rails/Makefile @@ -1,17 +1,16 @@ PORTNAME= raphael-rails PORTVERSION= 2.1.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Raphael JS as a Rubygem for use in the Rails asset pipeline WWW= https://github.com/mockdeep/raphael-rails LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-rate_throttle_client/Makefile b/www/rubygem-rate_throttle_client/Makefile index deeb233992e5..411fe4c94640 100644 --- a/www/rubygem-rate_throttle_client/Makefile +++ b/www/rubygem-rate_throttle_client/Makefile @@ -1,18 +1,17 @@ PORTNAME= rate_throttle_client PORTVERSION= 0.1.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Handle rate throttling on the client and measure performance WWW= https://github.com/zombocom/rate_throttle_client LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rbovirt/Makefile b/www/rubygem-rbovirt/Makefile index 476b408aee3d..3d6d1d36869f 100644 --- a/www/rubygem-rbovirt/Makefile +++ b/www/rubygem-rbovirt/Makefile @@ -1,23 +1,22 @@ PORTNAME= rbovirt PORTVERSION= 0.1.7 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby client for oVirt REST API WWW= https://github.com/abenari/rbovirt LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-nokogiri>=0:textproc/rubygem-nokogiri \ rubygem-rest-client>=1.7.0:www/rubygem-rest-client USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= amos_benari .include diff --git a/www/rubygem-rdf-normalize/Makefile b/www/rubygem-rdf-normalize/Makefile index bef8d42e4df9..cfab6d1173db 100644 --- a/www/rubygem-rdf-normalize/Makefile +++ b/www/rubygem-rdf-normalize/Makefile @@ -1,19 +1,18 @@ PORTNAME= rdf-normalize PORTVERSION= 0.5.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= RDF Graph normalizer for Ruby WWW= https://github.com/ruby-rdf/rdf-normalize LICENSE= UNLICENSE RUN_DEPENDS= rubygem-rdf>=3.2<4:www/rubygem-rdf USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rdf/Makefile b/www/rubygem-rdf/Makefile index 4c794ec5504c..4728870a7a5c 100644 --- a/www/rubygem-rdf/Makefile +++ b/www/rubygem-rdf/Makefile @@ -1,22 +1,21 @@ PORTNAME= rdf PORTVERSION= 3.2.9 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Pure-Ruby library for working with RDF data WWW= https://ruby-rdf.github.io/rdf/ LICENSE= UNLICENSE LICENSE_FILE= ${WRKSRC}/UNLICENSE RUN_DEPENDS= rubygem-link_header>=0.0.8<1:www/rubygem-link_header USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/rdf .include diff --git a/www/rubygem-redcloth/Makefile b/www/rubygem-redcloth/Makefile index 8a16c01942aa..f1aabd9492b9 100644 --- a/www/rubygem-redcloth/Makefile +++ b/www/rubygem-redcloth/Makefile @@ -1,20 +1,19 @@ PORTNAME= redcloth PORTVERSION= 4.3.2 CATEGORIES= www rubygems MASTER_SITES= RG DISTNAME= RedCloth-${PORTVERSION} MAINTAINER= ruby@FreeBSD.org COMMENT= Module for using Textile in Ruby WWW= https://redcloth.org/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING -USE_RUBY= yes USES= cpe gem CPE_VENDOR= promptworks PLIST_FILES= bin/redcloth .include diff --git a/www/rubygem-redis-rack/Makefile b/www/rubygem-redis-rack/Makefile index 0daece5dcd6d..ec73dbe12e0a 100644 --- a/www/rubygem-redis-rack/Makefile +++ b/www/rubygem-redis-rack/Makefile @@ -1,25 +1,24 @@ PORTNAME= redis-rack PORTVERSION= 2.1.4 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Redis Store for Rack WWW= https://redis-store.org/redis-rack/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-rack22>=2.0.8,3<3,3:www/rubygem-rack22 \ rubygem-redis-store>=1.2<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/appraisal ${STAGEDIR}${PREFIX}/bin/rake .include diff --git a/www/rubygem-redis-rails-rails5/Makefile b/www/rubygem-redis-rails-rails5/Makefile index 02f8181e5db3..1737888a1d41 100644 --- a/www/rubygem-redis-rails-rails5/Makefile +++ b/www/rubygem-redis-rails-rails5/Makefile @@ -1,23 +1,22 @@ PORTNAME= redis-rails PORTVERSION= 5.0.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= ruby@FreeBSD.org COMMENT= Redis for Ruby on Rails WWW= https://redis-store.org/redis-rails/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-redis-actionpack-rails5>=5.0<6:databases/rubygem-redis-actionpack-rails5 \ rubygem-redis-activesupport-rails5>=5.0<6:devel/rubygem-redis-activesupport-rails5 \ rubygem-redis-store>=1.2<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-redis-rails-rails50/Makefile b/www/rubygem-redis-rails-rails50/Makefile index 2178b69beba8..cd5d8010c1b8 100644 --- a/www/rubygem-redis-rails-rails50/Makefile +++ b/www/rubygem-redis-rails-rails50/Makefile @@ -1,23 +1,22 @@ PORTNAME= redis-rails PORTVERSION= 5.0.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails50 MAINTAINER= ruby@FreeBSD.org COMMENT= Redis for Ruby on Rails WWW= https://redis-store.org/redis-rails/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-redis-actionpack-rails50>=5.0<6:databases/rubygem-redis-actionpack-rails50 \ rubygem-redis-activesupport-rails50>=5.0<6:devel/rubygem-redis-activesupport-rails50 \ rubygem-redis-store>=1.2<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-redis-rails-rails52/Makefile b/www/rubygem-redis-rails-rails52/Makefile index 151cfce4ede1..0bad69ef7d9c 100644 --- a/www/rubygem-redis-rails-rails52/Makefile +++ b/www/rubygem-redis-rails-rails52/Makefile @@ -1,23 +1,22 @@ PORTNAME= redis-rails PORTVERSION= 5.0.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= ruby@FreeBSD.org COMMENT= Redis for Ruby on Rails WWW= https://redis-store.org/redis-rails/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-redis-actionpack-rails52>=5.0<6:databases/rubygem-redis-actionpack-rails52 \ rubygem-redis-activesupport-rails52>=5.0<6:devel/rubygem-redis-activesupport-rails52 \ rubygem-redis-store>=1.2<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-redis-rails-rails60/Makefile b/www/rubygem-redis-rails-rails60/Makefile index f5c6635a69de..856c49c153a9 100644 --- a/www/rubygem-redis-rails-rails60/Makefile +++ b/www/rubygem-redis-rails-rails60/Makefile @@ -1,23 +1,22 @@ PORTNAME= redis-rails PORTVERSION= 5.0.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails60 MAINTAINER= ruby@FreeBSD.org COMMENT= Redis for Ruby on Rails WWW= https://redis-store.org/redis-rails/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-redis-actionpack-rails60>=5.0<6:databases/rubygem-redis-actionpack-rails60 \ rubygem-redis-activesupport-rails60>=5.0<6:devel/rubygem-redis-activesupport-rails60 \ rubygem-redis-store>=1.2<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-redis-rails-rails61/Makefile b/www/rubygem-redis-rails-rails61/Makefile index 5d518bd89f9e..955a990223e0 100644 --- a/www/rubygem-redis-rails-rails61/Makefile +++ b/www/rubygem-redis-rails-rails61/Makefile @@ -1,23 +1,22 @@ PORTNAME= redis-rails PORTVERSION= 5.0.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= ruby@FreeBSD.org COMMENT= Redis for Ruby on Rails WWW= https://redis-store.org/redis-rails/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-redis-actionpack-rails61>=5.0<6:databases/rubygem-redis-actionpack-rails61 \ rubygem-redis-activesupport-rails61>=5.0<6:devel/rubygem-redis-activesupport-rails61 \ rubygem-redis-store>=1.2<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-redis-rails/Makefile b/www/rubygem-redis-rails/Makefile index 16890a97e06d..eaa13d7747c4 100644 --- a/www/rubygem-redis-rails/Makefile +++ b/www/rubygem-redis-rails/Makefile @@ -1,22 +1,21 @@ PORTNAME= redis-rails PORTVERSION= 5.0.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Redis for Ruby on Rails WWW= https://redis-store.org/redis-rails/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-redis-actionpack>=5.0<6:databases/rubygem-redis-actionpack \ rubygem-redis-activesupport>=5.0<6:devel/rubygem-redis-activesupport \ rubygem-redis-store>=1.2<2:devel/rubygem-redis-store USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-responders-rails5/Makefile b/www/rubygem-responders-rails5/Makefile index 5df0404de3a5..be3f179e3c8b 100644 --- a/www/rubygem-responders-rails5/Makefile +++ b/www/rubygem-responders-rails5/Makefile @@ -1,22 +1,21 @@ PORTNAME= responders PORTVERSION= 3.0.1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails5 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple Ruby DSL for making HTTP requests WWW= https://github.com/heartcombo/responders LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack5>=5.0:www/rubygem-actionpack5 \ rubygem-railties5>=5.0:www/rubygem-railties5 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-responders-rails52/Makefile b/www/rubygem-responders-rails52/Makefile index c1386c2c9ff8..b0e941c2d38a 100644 --- a/www/rubygem-responders-rails52/Makefile +++ b/www/rubygem-responders-rails52/Makefile @@ -1,22 +1,21 @@ PORTNAME= responders PORTVERSION= 3.0.1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails52 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple Ruby DSL for making HTTP requests WWW= https://github.com/heartcombo/responders LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack52>=5.0:www/rubygem-actionpack52 \ rubygem-railties52>=5.0:www/rubygem-railties52 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-responders-rails60/Makefile b/www/rubygem-responders-rails60/Makefile index bef4a100decc..04fbc1af63a6 100644 --- a/www/rubygem-responders-rails60/Makefile +++ b/www/rubygem-responders-rails60/Makefile @@ -1,22 +1,21 @@ PORTNAME= responders PORTVERSION= 3.0.1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails60 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple Ruby DSL for making HTTP requests WWW= https://github.com/heartcombo/responders LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack60>=5.0:www/rubygem-actionpack60 \ rubygem-railties60>=5.0:www/rubygem-railties60 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-responders-rails61/Makefile b/www/rubygem-responders-rails61/Makefile index f3722bb284ac..a3f72d239e65 100644 --- a/www/rubygem-responders-rails61/Makefile +++ b/www/rubygem-responders-rails61/Makefile @@ -1,22 +1,21 @@ PORTNAME= responders PORTVERSION= 3.0.1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails61 MAINTAINER= ruby@FreeBSD.org COMMENT= Simple Ruby DSL for making HTTP requests WWW= https://github.com/heartcombo/responders LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack61>=5.0:www/rubygem-actionpack61 \ rubygem-railties61>=5.0:www/rubygem-railties61 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-responders-rails70/Makefile b/www/rubygem-responders-rails70/Makefile index 70752d126b6c..65f73fb4b7c8 100644 --- a/www/rubygem-responders-rails70/Makefile +++ b/www/rubygem-responders-rails70/Makefile @@ -1,22 +1,21 @@ PORTNAME= responders PORTVERSION= 3.0.1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= -rails70 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple Ruby DSL for making HTTP requests WWW= https://github.com/heartcombo/responders LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack70>=5.0:www/rubygem-actionpack70 \ rubygem-railties70>=5.0:www/rubygem-railties70 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-responders/Makefile b/www/rubygem-responders/Makefile index d60c536b370e..61125335b0bd 100644 --- a/www/rubygem-responders/Makefile +++ b/www/rubygem-responders/Makefile @@ -1,21 +1,20 @@ PORTNAME= responders PORTVERSION= 3.0.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple Ruby DSL for making HTTP requests WWW= https://github.com/heartcombo/responders LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack50>=5.0:www/rubygem-actionpack50 \ rubygem-railties50>=5.0:www/rubygem-railties50 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rest-client/Makefile b/www/rubygem-rest-client/Makefile index 0f616276edde..4e86a1c81395 100644 --- a/www/rubygem-rest-client/Makefile +++ b/www/rubygem-rest-client/Makefile @@ -1,25 +1,24 @@ PORTNAME= rest-client PORTVERSION= 2.1.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple Simple HTTP and REST client for Ruby WWW= https://github.com/rest-client/rest-client LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-http-accept>=1.7.0:www/rubygem-http-accept \ rubygem-http-cookie>=1.0.2<2.0:www/rubygem-http-cookie \ rubygem-mime-types>=1.16<4.0:misc/rubygem-mime-types \ rubygem-netrc>=0.8<1:net/rubygem-netrc USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/restclient .include diff --git a/www/rubygem-rfacebook/Makefile b/www/rubygem-rfacebook/Makefile index 0cfb224d2ab0..3d879b996b7a 100644 --- a/www/rubygem-rfacebook/Makefile +++ b/www/rubygem-rfacebook/Makefile @@ -1,21 +1,20 @@ PORTNAME= rfacebook PORTVERSION= 0.9.8 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby interface to the Facebook API WWW= http://www.livelearncode.com/ LICENSE= BSD4CLAUSE RUN_DEPENDS= rubygem-hpricot>=0.6.0:www/rubygem-hpricot \ rubygem-mocha>=0.5.3:devel/rubygem-mocha USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rfeedfinder/Makefile b/www/rubygem-rfeedfinder/Makefile index 2bd49321786a..42e29d89778b 100644 --- a/www/rubygem-rfeedfinder/Makefile +++ b/www/rubygem-rfeedfinder/Makefile @@ -1,19 +1,18 @@ PORTNAME= rfeedfinder PORTVERSION= 0.9.13 CATEGORIES= www textproc rubygems MASTER_SITES= RG MAINTAINER= markun@onohara.to COMMENT= Ruby library to find the feed WWW= https://rubygems.org/gems/rfeedfinder RUN_DEPENDS= rubygem-hpricot>=0.6:www/rubygem-hpricot \ rubygem-htmlentities>=4.0.0:textproc/rubygem-htmlentities \ rubygem-hoe>=1.7.0:devel/rubygem-hoe NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-rinku/Makefile b/www/rubygem-rinku/Makefile index 0484f9e13976..db7eef8de83b 100644 --- a/www/rubygem-rinku/Makefile +++ b/www/rubygem-rinku/Makefile @@ -1,15 +1,14 @@ PORTNAME= rinku PORTVERSION= 2.0.6 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Fast and smart autolinking drop-in replacement for Rails auto_link WWW= https://github.com/vmg/rinku LICENSE= ISCL USES= gem -USE_RUBY= yes .include diff --git a/www/rubygem-rkelly-remix/Makefile b/www/rubygem-rkelly-remix/Makefile index 8922b9579a87..7d6082a68715 100644 --- a/www/rubygem-rkelly-remix/Makefile +++ b/www/rubygem-rkelly-remix/Makefile @@ -1,17 +1,16 @@ PORTNAME= rkelly-remix PORTVERSION= 0.0.7 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Pure ruby javascript parser and interpreter WWW= https://github.com/nene/rkelly-remix LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-robotex/Makefile b/www/rubygem-robotex/Makefile index 4408590ae0fe..a8e3d0f86846 100644 --- a/www/rubygem-robotex/Makefile +++ b/www/rubygem-robotex/Makefile @@ -1,17 +1,16 @@ PORTNAME= robotex PORTVERSION= 1.0.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Simple library to obey robots.txt files WWW= https://github.com/chriskite/robotex LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-robots/Makefile b/www/rubygem-robots/Makefile index 0f285b5519c6..8d4cc8bfa6ea 100644 --- a/www/rubygem-robots/Makefile +++ b/www/rubygem-robots/Makefile @@ -1,18 +1,17 @@ PORTNAME= robots PORTVERSION= 0.10.1 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple library to parse robots.txt files WWW= https://github.com/fizx/robots LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-roda/Makefile b/www/rubygem-roda/Makefile index bac6834c5c14..b2176a45e2ec 100644 --- a/www/rubygem-roda/Makefile +++ b/www/rubygem-roda/Makefile @@ -1,20 +1,19 @@ PORTNAME= roda PORTVERSION= 3.62.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Routing tree web toolkit WWW= https://roda.jeremyevans.net/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-rack>=0,3:www/rubygem-rack USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rqrcode-rails3/Makefile b/www/rubygem-rqrcode-rails3/Makefile index b1de1a4ce7f8..74b4dbb1b200 100644 --- a/www/rubygem-rqrcode-rails3/Makefile +++ b/www/rubygem-rqrcode-rails3/Makefile @@ -1,19 +1,18 @@ PORTNAME= rqrcode-rails3 PORTVERSION= 0.1.7 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Render QR codes with Rails 3 WWW= https://github.com/samvincent/rqrcode-rails3 LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-rqrcode>=0.4.2:www/rubygem-rqrcode NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-rqrcode/Makefile b/www/rubygem-rqrcode/Makefile index 725dffdd3ea9..00f887e30199 100644 --- a/www/rubygem-rqrcode/Makefile +++ b/www/rubygem-rqrcode/Makefile @@ -1,19 +1,18 @@ PORTNAME= rqrcode PORTVERSION= 0.10.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Library for encoding QR Codes WWW= https://whomwah.github.io/rqrcode/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-chunky_png>=1.0:graphics/rubygem-chunky_png NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-rqrcode2/Makefile b/www/rubygem-rqrcode2/Makefile index 9f0e3a928fd8..20694d0e43c1 100644 --- a/www/rubygem-rqrcode2/Makefile +++ b/www/rubygem-rqrcode2/Makefile @@ -1,22 +1,21 @@ PORTNAME= rqrcode PORTVERSION= 2.1.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 2 MAINTAINER= bofh@FreeBSD.org COMMENT= Library for encoding QR Codes WWW= https://whomwah.github.io/rqrcode/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-chunky_png>=1.0:graphics/rubygem-chunky_png \ rubygem-rqrcode_core>=1.0:www/rubygem-rqrcode_core USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rqrcode_core/Makefile b/www/rubygem-rqrcode_core/Makefile index 6055c611b359..4ef21a1f1bed 100644 --- a/www/rubygem-rqrcode_core/Makefile +++ b/www/rubygem-rqrcode_core/Makefile @@ -1,18 +1,17 @@ PORTNAME= rqrcode_core PORTVERSION= 1.2.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= bofh@FreeBSD.org COMMENT= Ruby library for encoding QR Codes WWW= https://github.com/whomwah/rqrcode_core LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rss/Makefile b/www/rubygem-rss/Makefile index 1ac096d0e4d1..2b0d789b2ed0 100644 --- a/www/rubygem-rss/Makefile +++ b/www/rubygem-rss/Makefile @@ -1,20 +1,19 @@ PORTNAME= rss PORTVERSION= 0.2.9 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Family of libraries that support various formats of XML feeds WWW= https://github.com/ruby/rss LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-rexml>=0:textproc/rubygem-rexml USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-rtlit/Makefile b/www/rubygem-rtlit/Makefile index 8ca7b9e0fc97..c2af483488b0 100644 --- a/www/rubygem-rtlit/Makefile +++ b/www/rubygem-rtlit/Makefile @@ -1,19 +1,18 @@ PORTNAME= rtlit PORTVERSION= 0.0.5 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= CSS left-to-right to right-to-left converter WWW= https://github.com/zohararad/rtlit LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/rtlit .include diff --git a/www/rubygem-ruby-oembed/Makefile b/www/rubygem-ruby-oembed/Makefile index 6c463ff9aa92..51fd966b1b06 100644 --- a/www/rubygem-ruby-oembed/Makefile +++ b/www/rubygem-ruby-oembed/Makefile @@ -1,18 +1,17 @@ PORTNAME= ruby-oembed PORTVERSION= 0.16.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= oEmbed consumer library WWW= https://github.com/ruby-oembed/ruby-oembed LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-ruby-readability/Makefile b/www/rubygem-ruby-readability/Makefile index dbdbfe9d9255..72aabed272d5 100644 --- a/www/rubygem-ruby-readability/Makefile +++ b/www/rubygem-ruby-readability/Makefile @@ -1,22 +1,21 @@ PORTNAME= ruby-readability PORTVERSION= 0.7.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Readability for Ruby WWW= https://github.com/cantino/ruby-readability LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-guess_html_encoding>=0.0.4:devel/rubygem-guess_html_encoding \ rubygem-nokogiri>=1.6.0:textproc/rubygem-nokogiri NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/readability .include diff --git a/www/rubygem-savon/Makefile b/www/rubygem-savon/Makefile index 76b0c3d31de7..176bd6bc3294 100644 --- a/www/rubygem-savon/Makefile +++ b/www/rubygem-savon/Makefile @@ -1,25 +1,24 @@ PORTNAME= savon PORTVERSION= 2.11.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= joe@thrallingpenguin.com COMMENT= Library for SOAP communications WWW= https://github.com/savonrb/savon LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-akami>=1.2:www/rubygem-akami \ rubygem-builder>=2.1.2:devel/rubygem-builder \ rubygem-gyoku>=1.2:devel/rubygem-gyoku \ rubygem-httpi>=2.3:www/rubygem-httpi \ rubygem-nokogiri>=1.4.0:textproc/rubygem-nokogiri \ rubygem-nori>=2.4:devel/rubygem-nori \ rubygem-wasabi>=3.4:www/rubygem-wasabi NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-sawyer/Makefile b/www/rubygem-sawyer/Makefile index 58b397b80790..e7d860d7c7a2 100644 --- a/www/rubygem-sawyer/Makefile +++ b/www/rubygem-sawyer/Makefile @@ -1,21 +1,20 @@ PORTNAME= sawyer PORTVERSION= 0.9.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Secret User Agent of HTTP WWW= https://github.com/lostisland/sawyer LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-addressable>=2.3.5:www/rubygem-addressable \ rubygem-faraday>=0.17.3<3:www/rubygem-faraday USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-select2-rails/Makefile b/www/rubygem-select2-rails/Makefile index d724809e6a01..329ed74fc53d 100644 --- a/www/rubygem-select2-rails/Makefile +++ b/www/rubygem-select2-rails/Makefile @@ -1,17 +1,16 @@ PORTNAME= select2-rails PORTVERSION= 4.0.13 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Implement select2 jQuery library into Rails WWW= https://github.com/argerim/select2-rails LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-selenium-webdriver/Makefile b/www/rubygem-selenium-webdriver/Makefile index 6748fc3c8588..379fd9a70143 100644 --- a/www/rubygem-selenium-webdriver/Makefile +++ b/www/rubygem-selenium-webdriver/Makefile @@ -1,23 +1,22 @@ PORTNAME= selenium-webdriver PORTVERSION= 4.6.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Tool for writing automated tests of websites WWW= https://www.seleniumhq.org/ LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-childprocess>=0.5<5.0:devel/rubygem-childprocess \ rubygem-rexml>=3.2.5<4:textproc/rubygem-rexml \ rubygem-rubyzip>=1.2.2<3.0:archivers/rubygem-rubyzip \ rubygem-websocket>=1.0<2:www/rubygem-websocket USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-semantic-ui-sass/Makefile b/www/rubygem-semantic-ui-sass/Makefile index 7c1d2f596df2..38e3f3820c05 100644 --- a/www/rubygem-semantic-ui-sass/Makefile +++ b/www/rubygem-semantic-ui-sass/Makefile @@ -1,19 +1,18 @@ PORTNAME= semantic-ui-sass PORTVERSION= 2.2.12.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Semantic UI, converted to Sass and ready to drop into Rails & Compass WWW= https://github.com/doabit/semantic-ui-sass LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-sass>=3.2:textproc/rubygem-sass NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-simple-rss/Makefile b/www/rubygem-simple-rss/Makefile index 4e21dad24cf0..e2ac2c491ad9 100644 --- a/www/rubygem-simple-rss/Makefile +++ b/www/rubygem-simple-rss/Makefile @@ -1,15 +1,14 @@ PORTNAME= simple-rss PORTVERSION= 1.3.1 CATEGORIES= www textproc rubygems MASTER_SITES= RG MAINTAINER= markun@onohara.to COMMENT= Simple, flexible, extensible, and liberal RSS and Atom reader for Ruby WWW= https://github.com/cardmagic/simple-rss NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-sinatra-contrib/Makefile b/www/rubygem-sinatra-contrib/Makefile index 07503c981201..541254a35951 100644 --- a/www/rubygem-sinatra-contrib/Makefile +++ b/www/rubygem-sinatra-contrib/Makefile @@ -1,24 +1,23 @@ PORTNAME= sinatra-contrib PORTVERSION= 3.0.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Collection of useful Sinatra extensions WWW= https://github.com/sinatra/sinatra-contrib LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-multi_json>=0:devel/rubygem-multi_json \ rubygem-mustermann>=3.0<4:devel/rubygem-mustermann \ rubygem-rack-protection>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-rack-protection \ rubygem-sinatra>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-sinatra \ rubygem-tilt>=2.0<3:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-sinatra-contrib1/Makefile b/www/rubygem-sinatra-contrib1/Makefile index 6e372b69f107..01e2b098bddf 100644 --- a/www/rubygem-sinatra-contrib1/Makefile +++ b/www/rubygem-sinatra-contrib1/Makefile @@ -1,34 +1,33 @@ PORTNAME= sinatra-contrib PORTVERSION= 1.4.7 PORTREVISION= 2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= robak@FreeBSD.org COMMENT= Collection of useful Sinatra extensions WWW= https://github.com/sinatra/sinatra-contrib LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-multi_json>=0:devel/rubygem-multi_json \ rubygem-rack-protection>=0:www/rubygem-rack-protection \ rubygem-rack-test>=0:www/rubygem-rack-test \ rubygem-sinatra1>=1.4:www/rubygem-sinatra1 \ rubygem-tilt>=2.0:devel/rubygem-tilt PORTSCOUT= limit:^1\. NO_ARCH= yes REINPLACE_ARGS= -i '' -USE_RUBY= yes USES= gem post-patch: # Remove backports @${REINPLACE_CMD} -e '/backports/d' ${WRKSRC}/${GEMSPEC} @${REINPLACE_CMD} -e '/require "backports"/d' ${WRKSRC}/lib/sinatra/*.rb ${WRKSRC}/lib/sinatra/contrib/setup.rb ${WRKSRC}/spec/streaming_spec.rb .include diff --git a/www/rubygem-sinatra-contrib2/Makefile b/www/rubygem-sinatra-contrib2/Makefile index 43aec08e8a84..22a445b51293 100644 --- a/www/rubygem-sinatra-contrib2/Makefile +++ b/www/rubygem-sinatra-contrib2/Makefile @@ -1,27 +1,26 @@ PORTNAME= sinatra-contrib PORTVERSION= 2.2.2 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 2 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Collection of useful Sinatra extensions WWW= https://github.com/sinatra/sinatra-contrib LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-multi_json>=0:devel/rubygem-multi_json \ rubygem-mustermann>=2.0:devel/rubygem-mustermann \ rubygem-rack-protection2>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-rack-protection2 \ rubygem-sinatra2>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-sinatra2 \ rubygem-tilt>=2.0<3:devel/rubygem-tilt USES= gem -USE_RUBY= yes NO_ARCH= yes PORTSCOUT= limit:^2\. .include diff --git a/www/rubygem-sinatra-r18n/Makefile b/www/rubygem-sinatra-r18n/Makefile index 66dea0709ef2..e658e3cbe26d 100644 --- a/www/rubygem-sinatra-r18n/Makefile +++ b/www/rubygem-sinatra-r18n/Makefile @@ -1,22 +1,21 @@ PORTNAME= sinatra-r18n PORTVERSION= 5.0.2 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Sinatra extension that provides i18n support to your web application WWW= https://github.com/r18n/sinatra-r18n LICENSE= LGPL3 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-r18n-core>=5.0<6:devel/rubygem-r18n-core \ rubygem-sinatra2>=1.3<3:www/rubygem-sinatra2 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-sinatra-respond_to/Makefile b/www/rubygem-sinatra-respond_to/Makefile index bd128dc286fe..a9e296eaa8f1 100644 --- a/www/rubygem-sinatra-respond_to/Makefile +++ b/www/rubygem-sinatra-respond_to/Makefile @@ -1,19 +1,18 @@ PORTNAME= sinatra-respond_to PORTVERSION= 0.9.0 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Respond_to style Rails block for Sinatra WWW= https://github.com/cehoffman/sinatra-respond_to LICENSE= MIT RUN_DEPENDS= rubygem-sinatra1>=1.3:www/rubygem-sinatra1 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-sinatra/Makefile b/www/rubygem-sinatra/Makefile index 412837f564d1..3d178648e6a0 100644 --- a/www/rubygem-sinatra/Makefile +++ b/www/rubygem-sinatra/Makefile @@ -1,25 +1,24 @@ PORTNAME= sinatra PORTVERSION= 3.0.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Classy web development framework in ruby WWW= http://www.sinatrarb.com/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-mustermann>=3.0<4:devel/rubygem-mustermann \ rubygem-rack22>=2.2.4,3<3,3:www/rubygem-rack22 \ rubygem-rack-protection>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-rack-protection \ rubygem-tilt>=2.0<3:devel/rubygem-tilt USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= sinatrarb .include diff --git a/www/rubygem-sinatra1/Makefile b/www/rubygem-sinatra1/Makefile index 4ea92a366831..6f1d8f4852af 100644 --- a/www/rubygem-sinatra1/Makefile +++ b/www/rubygem-sinatra1/Makefile @@ -1,27 +1,26 @@ PORTNAME= sinatra PORTVERSION= 1.4.8 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 1 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Classy web development framework in ruby WWW= http://www.sinatrarb.com/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rack16>=1.5<2:www/rubygem-rack16 \ rubygem-rack-protection1>=1.4<2:www/rubygem-rack-protection1 \ rubygem-tilt>=1.3<3:devel/rubygem-tilt USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= sinatrarb PORTSCOUT= limit:^1\. .include diff --git a/www/rubygem-sinatra2/Makefile b/www/rubygem-sinatra2/Makefile index 61cb9d0a8028..2b94e710c4c4 100644 --- a/www/rubygem-sinatra2/Makefile +++ b/www/rubygem-sinatra2/Makefile @@ -1,29 +1,28 @@ PORTNAME= sinatra PORTVERSION= 2.2.2 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG PKGNAMESUFFIX= 2 MAINTAINER= sunpoet@FreeBSD.org COMMENT= Classy web development framework in ruby WWW= http://www.sinatrarb.com/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-mustermann>=2.0:devel/rubygem-mustermann \ rubygem-rack22>=2.2,3<3,3:www/rubygem-rack22 \ rubygem-rack-protection2>=${PORTVERSION}<${PORTVERSION}_99:www/rubygem-rack-protection2 \ rubygem-tilt>=2.0<3:devel/rubygem-tilt USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= sinatrarb PORTSCOUT= limit:^2\. .include diff --git a/www/rubygem-sitemap_generator/Makefile b/www/rubygem-sitemap_generator/Makefile index 153d4040136d..82ce393ba8a5 100644 --- a/www/rubygem-sitemap_generator/Makefile +++ b/www/rubygem-sitemap_generator/Makefile @@ -1,18 +1,17 @@ PORTNAME= sitemap_generator PORTVERSION= 6.3.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= zi@FreeBSD.org COMMENT= Generate sitemaps in Ruby WWW= https://github.com/kjvarga/sitemap_generator RUN_DEPENDS= rubygem-builder>=3.0:devel/rubygem-builder LICENSE= MIT NO_ARCH= yes USES= gem -USE_RUBY= yes .include diff --git a/www/rubygem-smashing/Makefile b/www/rubygem-smashing/Makefile index 8d01bc37f3d9..1f70d7d8057f 100644 --- a/www/rubygem-smashing/Makefile +++ b/www/rubygem-smashing/Makefile @@ -1,33 +1,32 @@ PORTNAME= smashing PORTVERSION= 1.3.5 PORTREVISION= 2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Sinatra-based framework for building dashboards WWW= https://smashing.github.io/ LICENSE= MIT RUN_DEPENDS= rubygem-coffee-script>=2.4<3:devel/rubygem-coffee-script \ rubygem-execjs>=2.7<3:devel/rubygem-execjs \ rubygem-rack22>=2.2,3<3,3:www/rubygem-rack22 \ rubygem-rufus-scheduler>=3.6<4:devel/rubygem-rufus-scheduler \ rubygem-sassc>=2.0<3:textproc/rubygem-sassc \ rubygem-sinatra2>=2.0<3:www/rubygem-sinatra2 \ rubygem-sinatra-contrib2>=2.0<3:www/rubygem-sinatra-contrib2 \ rubygem-sprockets>=4.0<5:devel/rubygem-sprockets \ rubygem-thin>=1.7<2:www/rubygem-thin \ rubygem-thor>=1.0<2:devel/rubygem-thor USES= cpe gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/smashing CPE_VENDOR= smashing_project .include diff --git a/www/rubygem-socksify/Makefile b/www/rubygem-socksify/Makefile index 8064f0c0a272..fba12b3a5272 100644 --- a/www/rubygem-socksify/Makefile +++ b/www/rubygem-socksify/Makefile @@ -1,20 +1,19 @@ PORTNAME= socksify PORTVERSION= 1.7.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Redirects any TCP connection through a SOCKS5 proxy WWW= http://socksify.rubyforge.org/ LICENSE= GPLv3 RUBY LICENSE_COMB= dual LICENSE_FILE_GPLv3= ${WRKSRC}/COPYING NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/socksify_ruby .include diff --git a/www/rubygem-stimulus-rails/Makefile b/www/rubygem-stimulus-rails/Makefile index 66b57004e414..0cdd944fc1f5 100644 --- a/www/rubygem-stimulus-rails/Makefile +++ b/www/rubygem-stimulus-rails/Makefile @@ -1,20 +1,19 @@ PORTNAME= stimulus-rails PORTVERSION= 1.1.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Modest JavaScript framework for the HTML you already have WWW= https://github.com/hotwired/stimulus-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-railties70>=6.0.0:www/rubygem-railties70 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-swd/Makefile b/www/rubygem-swd/Makefile index b41fad685269..0ac9584567ab 100644 --- a/www/rubygem-swd/Makefile +++ b/www/rubygem-swd/Makefile @@ -1,22 +1,21 @@ PORTNAME= swd PORTVERSION= 1.2.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= Simple Web Discovery Client Library WWW= https://github.com/nov/swd LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-activesupport61>=3:devel/rubygem-activesupport61 \ rubygem-attr_required>=0.0.5:devel/rubygem-attr_required \ rubygem-httpclient>=2.4:www/rubygem-httpclient USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-tailwindcss-rails/Makefile b/www/rubygem-tailwindcss-rails/Makefile index dd02fce08483..88136d23124a 100644 --- a/www/rubygem-tailwindcss-rails/Makefile +++ b/www/rubygem-tailwindcss-rails/Makefile @@ -1,23 +1,22 @@ PORTNAME= tailwindcss-rails PORTVERSION= 1.0.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Integrate Tailwind CSS with the asset pipeline in Rails WWW= https://github.com/rails/tailwindcss-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-railties70>=6.0.0:www/rubygem-railties70 USES= gem -USE_RUBY= yes NO_ARCH= yes # tailwindcss-rails 2.x uses pre-built Tailwind CSS CLI PORTSCOUT= limit:^1\. .include diff --git a/www/rubygem-task_list/Makefile b/www/rubygem-task_list/Makefile index f7a699babd4f..66eb6ead60da 100644 --- a/www/rubygem-task_list/Makefile +++ b/www/rubygem-task_list/Makefile @@ -1,21 +1,20 @@ PORTNAME= task_list PORTVERSION= 1.0.2 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= GitHub-flavored-Markdown TaskList components WWW= https://github.com/github/task_list LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-html-pipeline>=0:textproc/rubygem-html-pipeline USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-thin/Makefile b/www/rubygem-thin/Makefile index 4f114efc9c57..b13a009f2dd9 100644 --- a/www/rubygem-thin/Makefile +++ b/www/rubygem-thin/Makefile @@ -1,22 +1,21 @@ PORTNAME= thin PORTVERSION= 1.8.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Fast and simple Ruby web server WWW= https://github.com/macournoyer/thin LICENSE= GPLv2+ RUBY LICENSE_COMB= dual RUN_DEPENDS= rubygem-daemons>=1.0.9<2:devel/rubygem-daemons \ rubygem-eventmachine>=1.0.4<2:devel/rubygem-eventmachine \ rubygem-rack16>=1<3:www/rubygem-rack16 USES= gem -USE_RUBY= yes PLIST_FILES= bin/thin .include diff --git a/www/rubygem-tinyatom/Makefile b/www/rubygem-tinyatom/Makefile index 9b4256261c25..dfc066ff25e2 100644 --- a/www/rubygem-tinyatom/Makefile +++ b/www/rubygem-tinyatom/Makefile @@ -1,22 +1,21 @@ PORTNAME= tinyatom PORTVERSION= 0.3.6 PORTREVISION= 2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Small and easy to use ruby Atom feed generator WWW= https://github.com/mmb/tinyatom LICENSE= MIT LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= rubygem-builder>=0:devel/rubygem-builder \ rubygem-public_suffix>=0:dns/rubygem-public_suffix USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-tinymce-rails/Makefile b/www/rubygem-tinymce-rails/Makefile index c3295372e894..010f72df82b7 100644 --- a/www/rubygem-tinymce-rails/Makefile +++ b/www/rubygem-tinymce-rails/Makefile @@ -1,19 +1,18 @@ PORTNAME= tinymce-rails PORTVERSION= 4.7.13 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= zi@FreeBSD.org COMMENT= Seamlessly integrates TinyMCE into the Rails asset pipeline WWW= https://github.com/spohlenz/tinymce-rails LICENSE= MIT RUN_DEPENDS= rubygem-railties4>=4.0:www/rubygem-railties4 NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-toml-rb/Makefile b/www/rubygem-toml-rb/Makefile index f4b64e4bddb8..f5e5fe98d221 100644 --- a/www/rubygem-toml-rb/Makefile +++ b/www/rubygem-toml-rb/Makefile @@ -1,19 +1,18 @@ PORTNAME= toml-rb PORTVERSION= 2.2.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= mfechner@FreeBSD.org COMMENT= TOML parser using Citrus parsing library WWW= https://github.com/emancu/toml-rb LICENSE= MIT RUN_DEPENDS= rubygem-citrus>=3.0<4:textproc/rubygem-citrus USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-totoridipjp/Makefile b/www/rubygem-totoridipjp/Makefile index b81360af7b04..65beacb15e8d 100644 --- a/www/rubygem-totoridipjp/Makefile +++ b/www/rubygem-totoridipjp/Makefile @@ -1,19 +1,18 @@ PORTNAME= totoridipjp PORTVERSION= 0.1.0 PORTREVISION= 1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= tota@FreeBSD.org COMMENT= Ruby interface to totori.dip.jp Web API WWW= https://rubygems.org/gems/totoridipjp LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USE_RUBY= yes USES= gem shebangfix SHEBANG_FILES= bin/setup .include diff --git a/www/rubygem-tumblr_client/Makefile b/www/rubygem-tumblr_client/Makefile index e27bb7be8ecd..b842aab8a956 100644 --- a/www/rubygem-tumblr_client/Makefile +++ b/www/rubygem-tumblr_client/Makefile @@ -1,28 +1,27 @@ PORTNAME= tumblr_client PORTVERSION= 0.8.5 PORTREVISION= 4 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby Wrapper for the Tumblr v2 API WWW= https://github.com/tumblr/tumblr_client LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-faraday0>=0.9.0<1:www/rubygem-faraday0 \ rubygem-faraday_middleware0>=0.9.0<1:www/rubygem-faraday_middleware0 \ rubygem-json>=0:devel/rubygem-json \ rubygem-mime-types>=0:misc/rubygem-mime-types \ rubygem-oauth>=0:net/rubygem-oauth \ rubygem-simple_oauth>=0:net/rubygem-simple_oauth USES= gem -USE_RUBY= yes NO_ARCH= yes PLIST_FILES= bin/tumblr .include diff --git a/www/rubygem-turbo-rails/Makefile b/www/rubygem-turbo-rails/Makefile index 33e5bb71790e..4fe17a266fad 100644 --- a/www/rubygem-turbo-rails/Makefile +++ b/www/rubygem-turbo-rails/Makefile @@ -1,22 +1,21 @@ PORTNAME= turbo-rails PORTVERSION= 1.1.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Speed of a single-page web application without having to write any JavaScript WWW= https://github.com/hotwired/turbo-rails LICENSE= MIT LICENSE_FILE= ${WRKSRC}/MIT-LICENSE RUN_DEPENDS= rubygem-actionpack70>=6.0.0:www/rubygem-actionpack70 \ rubygem-activejob70>=6.0.0:devel/rubygem-activejob70 \ rubygem-railties70>=6.0.0:www/rubygem-railties70 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-turbolinks-source/Makefile b/www/rubygem-turbolinks-source/Makefile index ea42a22aa90d..cc46d734fba4 100644 --- a/www/rubygem-turbolinks-source/Makefile +++ b/www/rubygem-turbolinks-source/Makefile @@ -1,18 +1,17 @@ PORTNAME= turbolinks-source PORTVERSION= 5.2.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Turbolinks JavaScript assets WWW= https://github.com/turbolinks/turbolinks-source-gem LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-turbolinks/Makefile b/www/rubygem-turbolinks/Makefile index d7949b84d77e..2c31095c8a04 100644 --- a/www/rubygem-turbolinks/Makefile +++ b/www/rubygem-turbolinks/Makefile @@ -1,20 +1,19 @@ PORTNAME= turbolinks PORTVERSION= 5.2.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Turbolinks makes following links in your web application faster WWW= https://github.com/turbolinks/turbolinks LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-turbolinks-source>=5.2<6:www/rubygem-turbolinks-source USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-typhoeus/Makefile b/www/rubygem-typhoeus/Makefile index 7054e750a1ee..e73d7741392b 100644 --- a/www/rubygem-typhoeus/Makefile +++ b/www/rubygem-typhoeus/Makefile @@ -1,20 +1,19 @@ PORTNAME= typhoeus PORTVERSION= 1.4.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Parallel HTTP request library WWW= https://github.com/typhoeus/typhoeus LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-ethon>=0.9.0:www/rubygem-ethon USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-uglifier/Makefile b/www/rubygem-uglifier/Makefile index 5f9154c6fe0f..fd092ecc9d5b 100644 --- a/www/rubygem-uglifier/Makefile +++ b/www/rubygem-uglifier/Makefile @@ -1,20 +1,19 @@ PORTNAME= uglifier PORTVERSION= 4.2.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Ruby wrapper for UglifyJS JavaScript compressor WWW= https://github.com/lautis/uglifier LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-execjs>=0.3.0:devel/rubygem-execjs USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-underscore-rails/Makefile b/www/rubygem-underscore-rails/Makefile index 598abe299e03..36df9ce044f0 100644 --- a/www/rubygem-underscore-rails/Makefile +++ b/www/rubygem-underscore-rails/Makefile @@ -1,16 +1,15 @@ PORTNAME= underscore-rails PORTVERSION= 1.8.3 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Underscore.js asset pipeline provider/wrapper WWW= https://github.com/rweng/underscore-rails LICENSE= MIT NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-unicorn-worker-killer/Makefile b/www/rubygem-unicorn-worker-killer/Makefile index 393b8964416c..ad1f9e0931dd 100644 --- a/www/rubygem-unicorn-worker-killer/Makefile +++ b/www/rubygem-unicorn-worker-killer/Makefile @@ -1,22 +1,21 @@ PORTNAME= unicorn-worker-killer PORTVERSION= 0.4.5 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Kill unicorn workers by memory and request counts WWW= https://github.com/kzk/unicorn-worker-killer LICENSE= GPLv2+ RUBY LICENSE_COMB= dual LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-get_process_mem>=0<1:devel/rubygem-get_process_mem \ rubygem-unicorn>=4<7:www/rubygem-unicorn USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-unicorn/Makefile b/www/rubygem-unicorn/Makefile index a86bc49a86e2..a682158cd962 100644 --- a/www/rubygem-unicorn/Makefile +++ b/www/rubygem-unicorn/Makefile @@ -1,26 +1,25 @@ PORTNAME= unicorn PORTVERSION= 6.1.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= HTTP server for Rack applications WWW= https://yhbt.net/unicorn/ LICENSE= GPLv2 GPLv3 RUBY LICENSE_COMB= dual LICENSE_FILE_GPLv3= ${WRKSRC}/COPYING LICENSE_FILE_RUBY= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-kgio>=2.6<3:devel/rubygem-kgio \ rubygem-raindrops>=0.7<1:www/rubygem-raindrops USES= gem shebangfix -USE_RUBY= yes PLIST_FILES= bin/unicorn bin/unicorn_rails SHEBANG_FILES= bin/unicorn* test/aggregate.rb test/benchmark/uconnect.perl ruby_OLD_CMD= .*ruby .include diff --git a/www/rubygem-url_escape/Makefile b/www/rubygem-url_escape/Makefile index d96345e12fc1..8ff0fb929f3a 100644 --- a/www/rubygem-url_escape/Makefile +++ b/www/rubygem-url_escape/Makefile @@ -1,15 +1,14 @@ PORTNAME= url_escape PORTVERSION= 2009.06.24 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Fast replacement for CGI.escape and Rack::Utils.escape WWW= https://github.com/bougyman/seedling LICENSE= MIT -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-url_mount/Makefile b/www/rubygem-url_mount/Makefile index 529276244139..c210e1b4828c 100644 --- a/www/rubygem-url_mount/Makefile +++ b/www/rubygem-url_mount/Makefile @@ -1,19 +1,18 @@ PORTNAME= url_mount PORTVERSION= 0.2.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= rodnic@gmail.com COMMENT= Glue to allow mounted rack applications to know where they're mounted WWW= https://github.com/hassox/url_mount LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-rack>=0:www/rubygem-rack NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-vcr/Makefile b/www/rubygem-vcr/Makefile index e05ee85b3ed7..466a5205ee54 100644 --- a/www/rubygem-vcr/Makefile +++ b/www/rubygem-vcr/Makefile @@ -1,22 +1,21 @@ PORTNAME= vcr PORTVERSION= 6.1.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Record test suite HTTP interactions and replay WWW= https://github.com/vcr/vcr LICENSE= HIPPOCRATIC-2.1 MIT LICENSE_COMB= multi LICENSE_NAME_HIPPOCRATIC-2.1= Hippocratic License 2.1 LICENSE_FILE= ${FILESDIR}/LICENSE LICENSE_PERMS_HIPPOCRATIC-2.1= auto-accept dist-mirror pkg-mirror # https://github.com/vcr/vcr/blob/master/LICENSE USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-vegas/Makefile b/www/rubygem-vegas/Makefile index 9ae3ac6c2bc0..24da3b280f34 100644 --- a/www/rubygem-vegas/Makefile +++ b/www/rubygem-vegas/Makefile @@ -1,20 +1,19 @@ PORTNAME= vegas PORTVERSION= 0.1.11 PORTREVISION= 1 CATEGORIES= www ruby MASTER_SITES= RG MAINTAINER= dvl@FreeBSD.org COMMENT= Wraps Rack/Sinatra applications WWW= https://code.quirkey.com/vegas/ LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS+= rubygem-rack>1.0.0:www/rubygem-rack NO_ARCH= yes USES= gem -USE_RUBY= yes .include diff --git a/www/rubygem-wasabi/Makefile b/www/rubygem-wasabi/Makefile index d0081b80c760..4319112555c3 100644 --- a/www/rubygem-wasabi/Makefile +++ b/www/rubygem-wasabi/Makefile @@ -1,20 +1,19 @@ PORTNAME= wasabi PORTVERSION= 3.5.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= joe@thrallingpenguin.com COMMENT= Library for simple WSDL parsing WWW= https://github.com/savonrb/wasabi LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-httpi>=2.0:www/rubygem-httpi \ rubygem-nokogiri>=1.4.2:textproc/rubygem-nokogiri NO_ARCH= yes -USE_RUBY= yes USES= gem .include diff --git a/www/rubygem-webdrivers/Makefile b/www/rubygem-webdrivers/Makefile index a499073630a1..e4c65b490703 100644 --- a/www/rubygem-webdrivers/Makefile +++ b/www/rubygem-webdrivers/Makefile @@ -1,25 +1,24 @@ PORTNAME= webdrivers PORTVERSION= 5.2.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Run Selenium tests more easily with install and updates for all supported webdrivers WWW= https://github.com/titusfortner/webdrivers LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-nokogiri>=1.6<2:textproc/rubygem-nokogiri \ rubygem-rubyzip>=1.3.0:archivers/rubygem-rubyzip \ rubygem-selenium-webdriver>=4.0<5:www/rubygem-selenium-webdriver USES= gem -USE_RUBY= yes NO_ARCH= yes post-install: ${RM} ${STAGEDIR}${PREFIX}/bin/console ${STAGEDIR}${PREFIX}/bin/setup .include diff --git a/www/rubygem-webmock/Makefile b/www/rubygem-webmock/Makefile index 997f0d5ba88e..35d2233bda3d 100644 --- a/www/rubygem-webmock/Makefile +++ b/www/rubygem-webmock/Makefile @@ -1,22 +1,21 @@ PORTNAME= webmock PORTVERSION= 3.18.1 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Allows stubbing HTTP requests and setting expectations on the requests WWW= https://github.com/bblimke/webmock LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-addressable>=2.8.0:www/rubygem-addressable \ rubygem-crack>=0.3.2:devel/rubygem-crack \ rubygem-hashdiff>=0.4.0<2.0.0:devel/rubygem-hashdiff USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-webrick/Makefile b/www/rubygem-webrick/Makefile index 5f7d1baceed7..52124ac95c1b 100644 --- a/www/rubygem-webrick/Makefile +++ b/www/rubygem-webrick/Makefile @@ -1,21 +1,20 @@ PORTNAME= webrick PORTVERSION= 1.7.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= HTTP server toolkit WWW= https://github.com/ruby/webrick LICENSE= BSD2CLAUSE RUBY LICENSE_COMB= dual LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= cpe gem -USE_RUBY= yes NO_ARCH= yes CPE_VENDOR= ruby-lang .include diff --git a/www/rubygem-webrobots/Makefile b/www/rubygem-webrobots/Makefile index 057141cd110f..12599ede2419 100644 --- a/www/rubygem-webrobots/Makefile +++ b/www/rubygem-webrobots/Makefile @@ -1,18 +1,17 @@ PORTNAME= webrobots PORTVERSION= 0.1.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Write robots.txt compliant web robots in Ruby WWW= https://github.com/knu/webrobots LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE.txt USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-websocket-client-simple/Makefile b/www/rubygem-websocket-client-simple/Makefile index ff782f5c38c1..63ef42151f5d 100644 --- a/www/rubygem-websocket-client-simple/Makefile +++ b/www/rubygem-websocket-client-simple/Makefile @@ -1,21 +1,20 @@ PORTNAME= websocket-client-simple PORTVERSION= 0.6.0 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Simple WebSocket client for Ruby WWW= https://github.com/ruby-jp/websocket-client-simple LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= rubygem-event_emitter>=0:devel/rubygem-event_emitter \ rubygem-websocket>=0:www/rubygem-websocket USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-websocket-driver/Makefile b/www/rubygem-websocket-driver/Makefile index 3a834624d50d..bf08de0c3acc 100644 --- a/www/rubygem-websocket-driver/Makefile +++ b/www/rubygem-websocket-driver/Makefile @@ -1,18 +1,17 @@ PORTNAME= websocket-driver PORTVERSION= 0.7.5 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= WebSocket protocol handler with pluggable I/O WWW= https://github.com/faye/websocket-driver-ruby LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md RUN_DEPENDS= rubygem-websocket-extensions>=0.1.0:www/rubygem-websocket-extensions USES= gem -USE_RUBY= yes .include diff --git a/www/rubygem-websocket-extensions/Makefile b/www/rubygem-websocket-extensions/Makefile index 1c8b4aac2137..5cb8c1a80cd2 100644 --- a/www/rubygem-websocket-extensions/Makefile +++ b/www/rubygem-websocket-extensions/Makefile @@ -1,18 +1,17 @@ PORTNAME= websocket-extensions PORTVERSION= 0.1.5 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Generic extension manager for WebSocket connections WWW= https://github.com/faye/websocket-extensions-ruby LICENSE= APACHE20 LICENSE_FILE= ${WRKSRC}/LICENSE.md USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-websocket/Makefile b/www/rubygem-websocket/Makefile index 172390416d09..4a16e5dc60c6 100644 --- a/www/rubygem-websocket/Makefile +++ b/www/rubygem-websocket/Makefile @@ -1,17 +1,16 @@ PORTNAME= websocket PORTVERSION= 1.2.9 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Universal Ruby library to handle WebSocket protocol WWW= https://github.com/imanel/websocket-ruby LICENSE= MIT USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/www/rubygem-yapra/Makefile b/www/rubygem-yapra/Makefile index 0d1e84d70055..56a5298361f4 100644 --- a/www/rubygem-yapra/Makefile +++ b/www/rubygem-yapra/Makefile @@ -1,20 +1,19 @@ PORTNAME= yapra PORTVERSION= 0.2.2 CATEGORIES= www rubygems MASTER_SITES= RG MAINTAINER= ruby@FreeBSD.org COMMENT= Yet Another Pragger implementation WWW= https://github.com/yuanying/yapra LICENSE= MIT RUN_DEPENDS= rubygem-mechanize>=0:www/rubygem-mechanize NO_ARCH= yes -USE_RUBY= yes USES= gem PLIST_FILES= bin/yapra .include diff --git a/www/tdiary/Makefile b/www/tdiary/Makefile index 824e7ccc668e..0fb1d4808a92 100644 --- a/www/tdiary/Makefile +++ b/www/tdiary/Makefile @@ -1,104 +1,103 @@ PORTNAME= tdiary DISTVERSION= 5.2.4 CATEGORIES?= www ruby MASTER_SITES= https://github.com/tdiary/tdiary-core/releases/download/v${PORTVERSION}/ DISTNAME= ${PORTNAME}-full-v${PORTVERSION} MAINTAINER= yasu@FreeBSD.org COMMENT= Web-based diary system (like weblog) written in Ruby WWW= https://www.tdiary.org/ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/LICENSE RUN_DEPENDS= rubygem-bundler>=2.0.2:sysutils/rubygem-bundler \ rubygem-emot>=0.0.4:textproc/rubygem-emot \ rubygem-fastimage>=2.2.6:graphics/rubygem-fastimage \ rubygem-hikidoc>=0.1.0:textproc/rubygem-hikidoc \ rubygem-mail>=2.7.1:mail/rubygem-mail \ rubygem-net-smtp>=0.3.1:mail/rubygem-net-smtp \ rubygem-rack>=3.0.1,3:www/rubygem-rack \ rubygem-rackup>=0.2.3:www/rubygem-rackup \ 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 DOCSDIR= ${PREFIX}/share/doc/${PKGBASE} WWWDIR= ${PREFIX}/www/${PKGBASE} REINPLACE_ARGS= -i '' NO_ARCH= yes NO_BUILD= yes SUB_FILES= pkg-message tdiaryinst.rb SUB_LIST+= TDIARY_LANG=${TDIARY_LANG} \ TDIARY_SCRIPT=${TDIARY_SCRIPT} WRKSRC= ${WRKDIR}/${PORTNAME}-v${PORTVERSION} PLIST_SUB= TDIARY_SCRIPT=${TDIARY_SCRIPT} \ WWWGRP=${WWWGRP} \ WWWOWN=${WWWOWN} PORTDOCS= ${HTML} ${MD} ChangeLog doc.css OPTIONS_DEFINE= DOCS DOCFILES= HOWTO-authenticate-in-rack HOWTO-make-io HOWTO-make-plugin \ HOWTO-make-theme HOWTO-testing-tDiary HOWTO-use-plugin \ HOWTO-write-tDiary.en HOWTO-write-tDiary INSTALL-paas INSTALL \ README.en README UPGRADE HTML= ${DOCFILES:S/$/.html/} MD= ${DOCFILES:S/$/.md/} #TDIARY_LANG ja:Japanese en:English .if !defined(TDIARY_LANG) || (defined(TDIARY_LANG) && ${TDIARY_LANG} != ja) TDIARY_LANG= en .endif TDIARY_SCRIPT= ${PKGBASE}-inst.rb pre-patch: @${RM} ${WRKSRC}/.coveralls.yml @${RM} ${WRKSRC}/.dockerignore @${RM} ${WRKSRC}/.editorconfig @${RM} ${WRKSRC}/.gitignore @${RM} ${WRKSRC}/.travis.yml @${RM} ${WRKSRC}/Dockerfile @${RM} ${WRKSRC}/Gemfile.lock @${RM} ${WRKSRC}/Procfile @${RM} ${WRKSRC}/Rakefile @${RM} ${WRKSRC}/config.ru @${RM} ${WRKSRC}/tdiary.gemspec @${RM} ${WRKSRC}/tmp/.gitkeep @${RM} -r ${WRKSRC}/.bundle @${RM} -r ${WRKSRC}/.devcontainer @${RM} -r ${WRKSRC}/.github @${RM} -r ${WRKSRC}/.vscode @${RM} -r ${WRKSRC}/misc/lib/bundler-2.2.18 @${RM} -r ${WRKSRC}/public @${RM} -r ${WRKSRC}/spec @${RM} -r ${WRKSRC}/test @${RM} -r ${WRKSRC}/vendor @${MV} ${WRKSRC}/ChangeLog ${WRKSRC}/doc @${MV} ${WRKSRC}/README.md ${WRKSRC}/doc pre-install: @${SED} -e 's,#!/usr/bin/env ruby,#!${RUBY},' \ ${WRKDIR}/tdiaryinst.rb > ${WRKDIR}/${TDIARY_SCRIPT} @${REINPLACE_CMD} 's!%%LOCALBASE%%!${LOCALBASE}!g' \ ${WRKSRC}/misc/convert2.rb \ ${WRKSRC}/misc/migrate.rb @${FIND} ${WRKSRC} -name "*.orig" -delete do-install: ${INSTALL_SCRIPT} ${WRKDIR}/${TDIARY_SCRIPT} ${STAGEDIR}${PREFIX}/bin @${MKDIR} ${STAGEDIR}${WWWDIR} ${TAR} --exclude doc --exclude LICENSE -C ${WRKSRC} -cf - . | ${TAR} --unlink -C ${STAGEDIR}${WWWDIR} -xf - do-install-DOCS-on: @${MKDIR} ${STAGEDIR}${DOCSDIR} cd ${WRKSRC}/doc && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} .include diff --git a/www/unit-ruby/Makefile b/www/unit-ruby/Makefile index 4bea16faad8d..d8a236ddec77 100644 --- a/www/unit-ruby/Makefile +++ b/www/unit-ruby/Makefile @@ -1,41 +1,41 @@ PORTREVISION= 1 PKGNAMESUFFIX= -${UNIT_MODNAME} UNIT_MODNAME= ruby${RUBY_VER} COMMENT= Ruby module for NGINX Unit RUN_DEPENDS= rackup:www/rubygem-rack22 \ unitd:www/unit PLIST_FILES= libexec/unit/modules/${UNIT_MODNAME}.unit.so -USE_RUBY= yes +USES= ruby CFLAGS+= -fdeclspec USE_RC_SUBR?= # reset to empty MASTERDIR= ${.CURDIR}/../unit post-configure: cd ${CONFIGURE_WRKSRC} && \ ${SETENV} ${CONFIGURE_ENV} ${CONFIGURE_CMD} ruby \ --ruby=ruby${RUBY_VER:S|.||} \ --module=${UNIT_MODNAME} do-build: cd ${CONFIGURE_WRKSRC} && \ ${SETENV} ${MAKE_ENV} ${MAKE_CMD} ${MAKE_FLAGS} \ ${MAKEFILE} ${MAKE_ARGS} ${UNIT_MODNAME} do-install: ${MKDIR} ${STAGEDIR}${PREFIX}/libexec/unit/modules/ ${INSTALL_LIB} ${WRKSRC}/build/${UNIT_MODNAME}.unit.so \ ${STAGEDIR}${PREFIX}/libexec/unit/modules/ # Overwrite the target in the ${MASTERDIR}/Makefile post-install: @${DO_NADA} .include "${MASTERDIR}/Makefile" diff --git a/www/webkit2-gtk3/Makefile b/www/webkit2-gtk3/Makefile index 919572cccc95..00369804111f 100644 --- a/www/webkit2-gtk3/Makefile +++ b/www/webkit2-gtk3/Makefile @@ -1,119 +1,117 @@ PORTNAME= webkit DISTVERSION= 2.34.6 PORTREVISION= 4 CATEGORIES= www MASTER_SITES= https://webkitgtk.org/releases/ PKGNAMESUFFIX= 2-gtk3 DISTNAME= ${PORTNAME}gtk-${PORTVERSION} DIST_SUBDIR= gnome MAINTAINER= gnome@FreeBSD.org COMMENT= Opensource browser engine using the GTK+ 3 toolkit WWW= https://webkitgtk.org/ LICENSE= GPLv2 BSD2CLAUSE LICENSE_COMB= dual BUILD_DEPENDS= ${LOCALBASE}/bin/ar:devel/binutils LIB_DEPENDS= libenchant-2.so:textproc/enchant2 \ libfribidi.so:converters/fribidi \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libwebp.so:graphics/webp \ libpng.so:graphics/png \ libsecret-1.so:security/libsecret \ libnotify.so:devel/libnotify \ libhyphen.so:textproc/hyphen \ libicutu.so:devel/icu \ libopenjp2.so:graphics/openjpeg \ libharfbuzz.so:print/harfbuzz \ libharfbuzz-icu.so:print/harfbuzz-icu \ libsoup-2.4.so:devel/libsoup \ libgcrypt.so:security/libgcrypt \ libtasn1.so:security/libtasn1 \ libwoff2dec.so:devel/woff2 PORTSCOUT= limitw:1,even 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 CPE_PRODUCT= webkitgtk BINARY_ALIAS= python=${PYTHON_CMD} CXXFLAGS+= -DFIXED_EXECUTABLE_MEMORY_POOL_SIZE_IN_MB=32 CXXFLAGS_powerpc= -DENABLE_YARR_JIT=0 CXXFLAGS_powerpc64= -DENABLE_YARR_JIT=0 CMAKE_ARGS= -DPORT=GTK CMAKE_OFF= USE_LD_GOLD ${CMAKE_OFF_${ARCH}:U} \ ENABLE_GLES2 \ USE_SYSTEMD \ ENABLE_GAMEPAD CMAKE_ON= ENABLE_MINIBROWSER \ USE_SYSTEM_MALLOC \ USE_SOUP2 CMAKE_OFF_armv6= ENABLE_JIT CMAKE_OFF_armv7= ENABLE_JIT CMAKE_OFF_powerpc= ENABLE_JIT CMAKE_OFF_powerpc64= ENABLE_JIT INSTALL_TARGET= install OPTIONS_DEFINE= DEBUG GEOIP GSTREAMER WAYLAND OPTIONS_DEFAULT= GEOIP GSTREAMER WAYLAND OPTIONS_SUB= yes # Building WebKit with debugging symbols requires ar and ld with # support for thin archives. Also see # https://bugs.webkit.org/show_bug.cgi?id=140384 DEBUG_CMAKE_ON= -DCMAKE_AR=${LOCALBASE}/bin/ar \ -DCMAKE_RANLIB=${LOCALBASE}/bin/ranlib \ -DCMAKE_LINKER=${LOCALBASE}/bin/ld DEBUG_CXXFLAGS= -B${LOCALBASE}/bin DEBUG_CMAKE_OFF= -DCMAKE_AR=/usr/bin/ar \ -DCMAKE_RANLIB=/usr/bin/ranlib \ -DCMAKE_LINKER=/usr/bin/ld DEBUG_CXXFLAGS_OFF= -B/usr/bin DEBUG_CFLAGS_OFF= -DNDEBUG GEOIP_CMAKE_BOOL= ENABLE_GEOLOCATION GEOIP_BUILD_DEPENDS= geoclue>=2.4.3:net/geoclue GEOIP_RUN_DEPENDS= geoclue>=2.4.3:net/geoclue GSTREAMER_USES= gstreamer GSTREAMER_USE= GSTREAMER=bad,gl GSTREAMER_CMAKE_BOOL= ENABLE_VIDEO ENABLE_WEB_AUDIO WAYLAND_CMAKE_BOOL= ENABLE_WAYLAND_TARGET WAYLAND_BUILD_DEPENDS= wayland-protocols>=1.12:graphics/wayland-protocols WAYLAND_LIB_DEPENDS= libwayland-egl.so:graphics/wayland \ libwpe-1.0.so:www/libwpe \ libWPEBackend-fdo-1.0.so:www/wpebackend-fdo pre-configure: # .if !exists() evaluates too early before cairo has a chance to be installed @if ! pkg-config --exists cairo-egl; then \ ${ECHO_MSG} "${PKGNAME}: Needs cairo with OPENGL support enabled."; \ ${FALSE}; \ fi post-install: @${RLN} ${STAGEDIR}${PREFIX}/libexec/webkit2gtk-4.0/jsc \ ${STAGEDIR}${PREFIX}/bin/jsc-4 @${RLN} ${STAGEDIR}${PREFIX}/libexec/webkit2gtk-4.0/MiniBrowser \ ${STAGEDIR}${PREFIX}/bin/MiniBrowser-4 @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so.*.* @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/webkit2gtk-4.0/injected-bundle/*.so @${STRIP_CMD} ${STAGEDIR}${PREFIX}/libexec/webkit2gtk-4.0/* @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/WebKitWebDriver .include diff --git a/www/webkit2-gtk4/Makefile b/www/webkit2-gtk4/Makefile index 452eb5aa859f..ef0fb68c6b59 100644 --- a/www/webkit2-gtk4/Makefile +++ b/www/webkit2-gtk4/Makefile @@ -1,115 +1,113 @@ PORTNAME= webkit DISTVERSION= 2.34.6 PORTREVISION= 1 CATEGORIES= www MASTER_SITES= https://webkitgtk.org/releases/ PKGNAMESUFFIX= 2-gtk4 DISTNAME= ${PORTNAME}gtk-${PORTVERSION} DIST_SUBDIR= gnome MAINTAINER= gnome@FreeBSD.org COMMENT= Opensource browser engine using the GTK+ 4 toolkit WWW= https://webkitgtk.org/ LICENSE= BSD2CLAUSE GPLv2 LICENSE_COMB= dual BUILD_DEPENDS= ${LOCALBASE}/bin/ar:devel/binutils LIB_DEPENDS= libenchant-2.so:textproc/enchant2 \ libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libfribidi.so:converters/fribidi \ libgcrypt.so:security/libgcrypt \ libharfbuzz-icu.so:print/harfbuzz-icu \ libharfbuzz.so:print/harfbuzz \ libhyphen.so:textproc/hyphen \ libicutu.so:devel/icu \ libnotify.so:devel/libnotify \ libopenjp2.so:graphics/openjpeg \ libpng.so:graphics/png \ libsecret-1.so:security/libsecret \ libsoup-3.0.so:devel/libsoup3 \ libtasn1.so:security/libtasn1 \ libwebp.so:graphics/webp \ libwoff2dec.so:devel/woff2 PORTSCOUT= limitw:1,even USES= bison cmake compiler:c++14-lang cpe gettext gl gnome gperf jpeg \ - localbase:ldflags perl5 pkgconfig python:build sqlite tar:xz \ + localbase:ldflags perl5 pkgconfig python:build ruby:build sqlite tar:xz \ xorg USE_GNOME= cairo gdkpixbuf2 gtk40 libxml2 libxslt introspection:build 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 CPE_VENDOR= webkitgtk CPE_PRODUCT= webkitgtk BINARY_ALIAS= python=${PYTHON_CMD} CXXFLAGS+= -DFIXED_EXECUTABLE_MEMORY_POOL_SIZE_IN_MB=32 CXXFLAGS_powerpc= -DENABLE_YARR_JIT=0 CXXFLAGS_powerpc64= -DENABLE_YARR_JIT=0 CMAKE_ARGS= -DPORT=GTK CMAKE_OFF= ${CMAKE_OFF_${ARCH}:U} ENABLE_GAMEPAD ENABLE_GLES2 \ USE_LD_GOLD USE_SYSTEMD CMAKE_ON= ENABLE_MINIBROWSER USE_GTK4 USE_SYSTEM_MALLOC CMAKE_OFF_armv6= ENABLE_JIT CMAKE_OFF_armv7= ENABLE_JIT CMAKE_OFF_powerpc= ENABLE_JIT CMAKE_OFF_powerpc64= ENABLE_JIT INSTALL_TARGET= install OPTIONS_DEFINE= DEBUG GEOIP GSTREAMER WAYLAND OPTIONS_DEFAULT= GEOIP GSTREAMER WAYLAND OPTIONS_SUB= yes # Building WebKit with debugging symbols requires ar and ld with # support for thin archives. Also see # https://bugs.webkit.org/show_bug.cgi?id=140384 DEBUG_CMAKE_ON= -DCMAKE_AR=${LOCALBASE}/bin/ar \ -DCMAKE_LINKER=${LOCALBASE}/bin/ld \ -DCMAKE_RANLIB=${LOCALBASE}/bin/ranlib DEBUG_CXXFLAGS= -B${LOCALBASE}/bin DEBUG_CMAKE_OFF= -DCMAKE_AR=/usr/bin/ar \ -DCMAKE_LINKER=/usr/bin/ld \ -DCMAKE_RANLIB=/usr/bin/ranlib DEBUG_CXXFLAGS_OFF= -B/usr/bin DEBUG_CFLAGS_OFF= -DNDEBUG GEOIP_CMAKE_BOOL= ENABLE_GEOLOCATION GEOIP_BUILD_DEPENDS= geoclue>=2.4.3:net/geoclue GEOIP_RUN_DEPENDS= geoclue>=2.4.3:net/geoclue GSTREAMER_USES= gstreamer GSTREAMER_USE= GSTREAMER=bad,gl GSTREAMER_CMAKE_BOOL= ENABLE_VIDEO ENABLE_WEB_AUDIO WAYLAND_CMAKE_BOOL= ENABLE_WAYLAND_TARGET WAYLAND_BUILD_DEPENDS= wayland-protocols>=1.12:graphics/wayland-protocols WAYLAND_LIB_DEPENDS= libwayland-egl.so:graphics/wayland \ libwpe-1.0.so:www/libwpe \ libWPEBackend-fdo-1.0.so:www/wpebackend-fdo pre-configure: # .if !exists() evaluates too early before cairo has a chance to be installed @if ! pkg-config --exists cairo-egl; then \ ${ECHO_MSG} "${PKGNAME}: Needs cairo with OPENGL support enabled."; \ ${FALSE}; \ fi post-install: @${RLN} ${STAGEDIR}${PREFIX}/libexec/webkit2gtk-5.0/jsc \ ${STAGEDIR}${PREFIX}/bin/jsc-5 @${RLN} ${STAGEDIR}${PREFIX}/libexec/webkit2gtk-5.0/MiniBrowser \ ${STAGEDIR}${PREFIX}/bin/MiniBrowser-5 @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/*.so.*.* @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/webkit2gtk-5.0/injected-bundle/*.so @${STRIP_CMD} ${STAGEDIR}${PREFIX}/libexec/webkit2gtk-5.0/* @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/WebKitWebDriver-5 .include diff --git a/x11-toolkits/rubygem-gdk3/Makefile b/x11-toolkits/rubygem-gdk3/Makefile index 8c4797ecea31..00710a667a95 100644 --- a/x11-toolkits/rubygem-gdk3/Makefile +++ b/x11-toolkits/rubygem-gdk3/Makefile @@ -1,24 +1,23 @@ PORTNAME= gdk3 PORTVERSION= 4.0.3 CATEGORIES= x11-toolkits rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding of GDK 3.x WWW= https://ruby-gnome.github.io/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB BUILD_DEPENDS= rubygem-rake>=0:devel/rubygem-rake RUN_DEPENDS= rubygem-cairo-gobject>=${PORTVERSION}:devel/rubygem-cairo-gobject \ rubygem-gdk_pixbuf2>=${PORTVERSION}:graphics/rubygem-gdk_pixbuf2 \ rubygem-pango>=${PORTVERSION}:x11-toolkits/rubygem-pango USES= gem gnome USE_GNOME= gtk30 -USE_RUBY= yes NO_ARCH= yes .include diff --git a/x11-toolkits/rubygem-gdk4/Makefile b/x11-toolkits/rubygem-gdk4/Makefile index f046b0a5dcf1..1d4682c165ab 100644 --- a/x11-toolkits/rubygem-gdk4/Makefile +++ b/x11-toolkits/rubygem-gdk4/Makefile @@ -1,24 +1,23 @@ PORTNAME= gdk4 PORTVERSION= 4.0.3 CATEGORIES= x11-toolkits rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding of GDK 4.x WWW= https://ruby-gnome.github.io/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB BUILD_DEPENDS= rubygem-rake>=0:devel/rubygem-rake RUN_DEPENDS= rubygem-cairo-gobject>=${PORTVERSION}:devel/rubygem-cairo-gobject \ rubygem-gdk_pixbuf2>=${PORTVERSION}:graphics/rubygem-gdk_pixbuf2 \ rubygem-pango>=${PORTVERSION}:x11-toolkits/rubygem-pango USES= gem gnome pkgconfig USE_GNOME= gtk40 -USE_RUBY= yes NO_ARCH= yes .include diff --git a/x11-toolkits/rubygem-gtk2/Makefile b/x11-toolkits/rubygem-gtk2/Makefile index 3e789fad3ceb..194c31e0f47e 100644 --- a/x11-toolkits/rubygem-gtk2/Makefile +++ b/x11-toolkits/rubygem-gtk2/Makefile @@ -1,22 +1,21 @@ PORTNAME= gtk2 PORTVERSION= 3.4.3 PORTREVISION= 1 CATEGORIES= x11-toolkits rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding of GTK+ 2.x WWW= https://ruby-gnome2.osdn.jp/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB RUN_DEPENDS= rubygem-atk>=${PORTVERSION}:accessibility/rubygem-atk \ rubygem-gdk_pixbuf2>=${PORTVERSION}:graphics/rubygem-gdk_pixbuf2 \ rubygem-pango>=${PORTVERSION}:x11-toolkits/rubygem-pango USES= gem gnome USE_GNOME= gtk20 -USE_RUBY= yes .include diff --git a/x11-toolkits/rubygem-gtk3/Makefile b/x11-toolkits/rubygem-gtk3/Makefile index 4b8faca0fed7..e4d150200b69 100644 --- a/x11-toolkits/rubygem-gtk3/Makefile +++ b/x11-toolkits/rubygem-gtk3/Makefile @@ -1,20 +1,19 @@ PORTNAME= gtk3 PORTVERSION= 4.0.3 CATEGORIES= x11-toolkits rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding of GTK+ 3.x WWW= https://ruby-gnome.github.io/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB RUN_DEPENDS= rubygem-atk>=${PORTVERSION}:accessibility/rubygem-atk \ rubygem-gdk3>=${PORTVERSION}:x11-toolkits/rubygem-gdk3 USES= gem gnome USE_GNOME= gtk30 -USE_RUBY= yes .include diff --git a/x11-toolkits/rubygem-gtk4/Makefile b/x11-toolkits/rubygem-gtk4/Makefile index 910dd12b655b..3cc464f8ccfa 100644 --- a/x11-toolkits/rubygem-gtk4/Makefile +++ b/x11-toolkits/rubygem-gtk4/Makefile @@ -1,20 +1,19 @@ PORTNAME= gtk4 PORTVERSION= 4.0.3 CATEGORIES= x11-toolkits rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding of GTK+ 4.x WWW= https://ruby-gnome.github.io/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB RUN_DEPENDS= rubygem-atk>=${PORTVERSION}:accessibility/rubygem-atk \ rubygem-gdk4>=${PORTVERSION}:x11-toolkits/rubygem-gdk4 USES= gem gnome USE_GNOME= gtk40 -USE_RUBY= yes .include diff --git a/x11-toolkits/rubygem-gtksourceview3/Makefile b/x11-toolkits/rubygem-gtksourceview3/Makefile index f51c2fdb9baa..3baf7b3d1807 100644 --- a/x11-toolkits/rubygem-gtksourceview3/Makefile +++ b/x11-toolkits/rubygem-gtksourceview3/Makefile @@ -1,22 +1,21 @@ PORTNAME= gtksourceview3 PORTVERSION= 4.0.3 CATEGORIES= x11-toolkits rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding of gtksourceview 3.x WWW= https://ruby-gnome.github.io/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB BUILD_DEPENDS= rubygem-rake>=0:devel/rubygem-rake RUN_DEPENDS= rubygem-gtk3>=${PORTVERSION}:x11-toolkits/rubygem-gtk3 USES= gem gnome USE_GNOME= gtksourceview3 -USE_RUBY= yes NO_ARCH= yes .include diff --git a/x11-toolkits/rubygem-gtksourceview4/Makefile b/x11-toolkits/rubygem-gtksourceview4/Makefile index 21753a7c6f38..7849f16f101f 100644 --- a/x11-toolkits/rubygem-gtksourceview4/Makefile +++ b/x11-toolkits/rubygem-gtksourceview4/Makefile @@ -1,22 +1,21 @@ PORTNAME= gtksourceview4 PORTVERSION= 4.0.3 CATEGORIES= x11-toolkits rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding of gtksourceview 4.x WWW= https://ruby-gnome.github.io/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB BUILD_DEPENDS= rubygem-rake>=0:devel/rubygem-rake RUN_DEPENDS= rubygem-gtk3>=${PORTVERSION}:x11-toolkits/rubygem-gtk3 USES= gem gnome USE_GNOME= gtksourceview4 -USE_RUBY= yes NO_ARCH= yes .include diff --git a/x11-toolkits/rubygem-pango/Makefile b/x11-toolkits/rubygem-pango/Makefile index 0dc2aeff2bf7..3bbe031e2a68 100644 --- a/x11-toolkits/rubygem-pango/Makefile +++ b/x11-toolkits/rubygem-pango/Makefile @@ -1,20 +1,19 @@ PORTNAME= pango PORTVERSION= 4.0.3 CATEGORIES= x11-toolkits rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding of Pango 1.x WWW= https://ruby-gnome.github.io/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB RUN_DEPENDS= rubygem-cairo-gobject>=${PORTVERSION}:devel/rubygem-cairo-gobject \ rubygem-gobject-introspection>=${PORTVERSION}:devel/rubygem-gobject-introspection USES= gem gnome USE_GNOME= pango -USE_RUBY= yes .include diff --git a/x11-toolkits/rubygem-poppler/Makefile b/x11-toolkits/rubygem-poppler/Makefile index a64c905dd6d5..369aeb99a3a4 100644 --- a/x11-toolkits/rubygem-poppler/Makefile +++ b/x11-toolkits/rubygem-poppler/Makefile @@ -1,23 +1,22 @@ PORTNAME= poppler PORTVERSION= 4.0.3 CATEGORIES= x11-toolkits rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding of poppler-glib WWW= https://ruby-gnome.github.io/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB BUILD_DEPENDS= rubygem-rake>=0:devel/rubygem-rake LIB_DEPENDS= libpoppler-glib.so:graphics/poppler-glib RUN_DEPENDS= rubygem-cairo-gobject>=${PORTVERSION}:devel/rubygem-cairo-gobject \ rubygem-gio2>=${PORTVERSION}:devel/rubygem-gio2 USES= gem -USE_RUBY= yes NO_ARCH= yes .include diff --git a/x11-toolkits/rubygem-tk/Makefile b/x11-toolkits/rubygem-tk/Makefile index ef6bc9dfd070..3b37d02c2216 100644 --- a/x11-toolkits/rubygem-tk/Makefile +++ b/x11-toolkits/rubygem-tk/Makefile @@ -1,20 +1,19 @@ PORTNAME= tk PORTVERSION= 0.4.0 CATEGORIES= x11-toolkits rubygems MASTER_SITES= RG MAINTAINER= nmingotti@gmail.com COMMENT= Ruby interface to TclTk-8.6 WWW= https://github.com/ruby/tk LICENSE= BSD2CLAUSE CONFIGURE_ARGS=--with-tcltkversion=8.6,8.6 \ --with-tk-include=${LOCALBASE}/include/tk8.6 \ --with-tcl-include=${LOCALBASE}/include/tcl8.6 USES= gem tk:86 xorg -USE_RUBY= yes USE_XORG= x11 .include diff --git a/x11-toolkits/rubygem-uh/Makefile b/x11-toolkits/rubygem-uh/Makefile index cb1a4750451b..a44dd56c553f 100644 --- a/x11-toolkits/rubygem-uh/Makefile +++ b/x11-toolkits/rubygem-uh/Makefile @@ -1,16 +1,15 @@ PORTNAME= uh PORTVERSION= 2.1.1 CATEGORIES= x11-toolkits rubygems MASTER_SITES= RG MAINTAINER= tj+freebsd_ports@a13.fr COMMENT= Xlib ruby toolkit WWW= https://rubygems.org/gems/uh LICENSE= BSD3CLAUSE USES= gem xorg -USE_RUBY= yes USE_XORG= x11 xinerama .include diff --git a/x11-toolkits/rubygem-vte3/Makefile b/x11-toolkits/rubygem-vte3/Makefile index d2a2747b989e..15d4dca1d2f6 100644 --- a/x11-toolkits/rubygem-vte3/Makefile +++ b/x11-toolkits/rubygem-vte3/Makefile @@ -1,22 +1,21 @@ PORTNAME= vte3 PORTVERSION= 4.0.3 CATEGORIES= x11-toolkits rubygems MASTER_SITES= RG MAINTAINER= sunpoet@FreeBSD.org COMMENT= Ruby binding of VTE for GTK+ 3 WWW= https://ruby-gnome.github.io/ LICENSE= LGPL21+ LICENSE_FILE= ${WRKSRC}/COPYING.LIB BUILD_DEPENDS= rubygem-rake>=0:devel/rubygem-rake RUN_DEPENDS= rubygem-gtk3>=${PORTVERSION}:x11-toolkits/rubygem-gtk3 USES= gem gnome USE_GNOME= vte3 -USE_RUBY= yes NO_ARCH= yes .include diff --git a/x11-wm/rubygem-uh-layout/Makefile b/x11-wm/rubygem-uh-layout/Makefile index dd184bb36784..e2be3e591b64 100644 --- a/x11-wm/rubygem-uh-layout/Makefile +++ b/x11-wm/rubygem-uh-layout/Makefile @@ -1,16 +1,15 @@ PORTNAME= uh-layout PORTVERSION= 0.5.2 CATEGORIES= x11-wm rubygems MASTER_SITES= RG MAINTAINER= tj+freebsd_ports@a13.fr COMMENT= Tiling and stacking layout for uh-wm ruby gem WWW= https://rubygems.org/gems/uh-layout LICENSE= BSD3CLAUSE -USE_RUBY= yes USES= gem NO_ARCH= yes .include diff --git a/x11-wm/rubygem-uh-wm/Makefile b/x11-wm/rubygem-uh-wm/Makefile index 98af0bb0d84d..fd9df32013bc 100644 --- a/x11-wm/rubygem-uh-wm/Makefile +++ b/x11-wm/rubygem-uh-wm/Makefile @@ -1,23 +1,22 @@ PORTNAME= uh-wm PORTVERSION= 0.2.1 CATEGORIES= x11-wm rubygems MASTER_SITES= RG MAINTAINER= tj+freebsd_ports@a13.fr COMMENT= Minimalistic tiling and stacking window manager WWW= https://rubygems.org/gems/uh-wm LICENSE= BSD3CLAUSE RUN_DEPENDS= rubygem-baf>=0.14.0:devel/rubygem-baf \ rubygem-uh>=2.1.0:x11-toolkits/rubygem-uh \ 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 PLIST_FILES= bin/uhwm .include diff --git a/x11-wm/subtle/Makefile b/x11-wm/subtle/Makefile index 0dede06f9b24..726512f04195 100644 --- a/x11-wm/subtle/Makefile +++ b/x11-wm/subtle/Makefile @@ -1,31 +1,30 @@ PORTNAME= subtle PORTVERSION= 0.11.3224 CATEGORIES= x11-wm ruby MASTER_SITES= https://subtle.subforge.org/attachments/download/81/ DISTNAME= ${PORTNAME}-${PORTVERSION}-xi MAINTAINER= danfe@FreeBSD.org COMMENT= Grid-based manual tiling window manager WWW= https://subtle.subforge.org/ LICENSE= GPLv2 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 MAKEFILE= Rakefile ALL_TARGET= build post-patch: @${REINPLACE_CMD} -e 1d ${WRKSRC}/data/subtler/runner.rb @${REINPLACE_CMD} -e 's,/etc/xdg,${LOCALBASE}&,' \ ${WRKSRC}/src/subtle/ruby.c do-configure: @cd ${WRKSRC} && ${MAKE_ENV} ${MAKE_CMD} ${MAKE_ARGS} config .include