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