From 78ee7b79d1e26e531ff798eb5c217410fd19d171 Mon Sep 17 00:00:00 2001 From: ryoon Date: Tue, 14 Apr 2020 15:58:29 +0000 Subject: [PATCH] www/ruby-typhoeus: import ruby26-typhoeus-1.3.1 Like a modern code version of the mythical beast with 100 serpent heads, Typhoeus runs HTTP requests in parallel while cleanly encapsulating handling logic. Based on pkgsrc-wip/ruby-typhoeus by leot@. --- www/ruby-typhoeus/DESCR | 3 ++ www/ruby-typhoeus/Makefile | 14 ++++++ www/ruby-typhoeus/PLIST | 99 ++++++++++++++++++++++++++++++++++++++ www/ruby-typhoeus/distinfo | 6 +++ 4 files changed, 122 insertions(+) create mode 100644 www/ruby-typhoeus/DESCR create mode 100644 www/ruby-typhoeus/Makefile create mode 100644 www/ruby-typhoeus/PLIST create mode 100644 www/ruby-typhoeus/distinfo diff --git a/www/ruby-typhoeus/DESCR b/www/ruby-typhoeus/DESCR new file mode 100644 index 000000000000..e139fdc69137 --- /dev/null +++ b/www/ruby-typhoeus/DESCR @@ -0,0 +1,3 @@ +Like a modern code version of the mythical beast with 100 serpent heads, +Typhoeus runs HTTP requests in parallel while cleanly encapsulating +handling logic. diff --git a/www/ruby-typhoeus/Makefile b/www/ruby-typhoeus/Makefile new file mode 100644 index 000000000000..4d5a29960f88 --- /dev/null +++ b/www/ruby-typhoeus/Makefile @@ -0,0 +1,14 @@ +# $NetBSD: Makefile,v 1.1 2020/04/14 15:58:29 ryoon Exp $ + +DISTNAME= typhoeus-1.3.1 +CATEGORIES= www + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= https://github.com/typhoeus/typhoeus +COMMENT= Wraps libcurl in order to make fast and reliable requests +LICENSE= mit + +DEPENDS+= ${RUBY_PKGPREFIX}-ethon>=0.9.0:../../www/ruby-ethon + +.include "../../lang/ruby/gem.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/www/ruby-typhoeus/PLIST b/www/ruby-typhoeus/PLIST new file mode 100644 index 000000000000..1b4d98cc9d8e --- /dev/null +++ b/www/ruby-typhoeus/PLIST @@ -0,0 +1,99 @@ +@comment $NetBSD: PLIST,v 1.1 2020/04/14 15:58:29 ryoon Exp $ +${GEM_HOME}/cache/${GEM_NAME}.gem +${GEM_LIBDIR}/.gitignore +${GEM_LIBDIR}/.rspec +${GEM_LIBDIR}/.travis.yml +${GEM_LIBDIR}/CHANGELOG.md +${GEM_LIBDIR}/CONTRIBUTING.md +${GEM_LIBDIR}/Gemfile +${GEM_LIBDIR}/Guardfile +${GEM_LIBDIR}/LICENSE +${GEM_LIBDIR}/README.md +${GEM_LIBDIR}/Rakefile +${GEM_LIBDIR}/UPGRADE.md +${GEM_LIBDIR}/lib/rack/typhoeus.rb +${GEM_LIBDIR}/lib/rack/typhoeus/middleware/params_decoder.rb +${GEM_LIBDIR}/lib/rack/typhoeus/middleware/params_decoder/helper.rb +${GEM_LIBDIR}/lib/typhoeus.rb +${GEM_LIBDIR}/lib/typhoeus/adapters/faraday.rb +${GEM_LIBDIR}/lib/typhoeus/cache/dalli.rb +${GEM_LIBDIR}/lib/typhoeus/cache/rails.rb +${GEM_LIBDIR}/lib/typhoeus/cache/redis.rb +${GEM_LIBDIR}/lib/typhoeus/config.rb +${GEM_LIBDIR}/lib/typhoeus/easy_factory.rb +${GEM_LIBDIR}/lib/typhoeus/errors.rb +${GEM_LIBDIR}/lib/typhoeus/errors/no_stub.rb +${GEM_LIBDIR}/lib/typhoeus/errors/typhoeus_error.rb +${GEM_LIBDIR}/lib/typhoeus/expectation.rb +${GEM_LIBDIR}/lib/typhoeus/hydra.rb +${GEM_LIBDIR}/lib/typhoeus/hydra/addable.rb +${GEM_LIBDIR}/lib/typhoeus/hydra/before.rb +${GEM_LIBDIR}/lib/typhoeus/hydra/block_connection.rb +${GEM_LIBDIR}/lib/typhoeus/hydra/cacheable.rb +${GEM_LIBDIR}/lib/typhoeus/hydra/memoizable.rb +${GEM_LIBDIR}/lib/typhoeus/hydra/queueable.rb +${GEM_LIBDIR}/lib/typhoeus/hydra/runnable.rb +${GEM_LIBDIR}/lib/typhoeus/hydra/stubbable.rb +${GEM_LIBDIR}/lib/typhoeus/pool.rb +${GEM_LIBDIR}/lib/typhoeus/railtie.rb +${GEM_LIBDIR}/lib/typhoeus/request.rb +${GEM_LIBDIR}/lib/typhoeus/request/actions.rb +${GEM_LIBDIR}/lib/typhoeus/request/before.rb +${GEM_LIBDIR}/lib/typhoeus/request/block_connection.rb +${GEM_LIBDIR}/lib/typhoeus/request/cacheable.rb +${GEM_LIBDIR}/lib/typhoeus/request/callbacks.rb +${GEM_LIBDIR}/lib/typhoeus/request/marshal.rb +${GEM_LIBDIR}/lib/typhoeus/request/memoizable.rb +${GEM_LIBDIR}/lib/typhoeus/request/operations.rb +${GEM_LIBDIR}/lib/typhoeus/request/responseable.rb +${GEM_LIBDIR}/lib/typhoeus/request/streamable.rb +${GEM_LIBDIR}/lib/typhoeus/request/stubbable.rb +${GEM_LIBDIR}/lib/typhoeus/response.rb +${GEM_LIBDIR}/lib/typhoeus/response/cacheable.rb +${GEM_LIBDIR}/lib/typhoeus/response/header.rb +${GEM_LIBDIR}/lib/typhoeus/response/informations.rb +${GEM_LIBDIR}/lib/typhoeus/response/status.rb +${GEM_LIBDIR}/lib/typhoeus/version.rb +${GEM_LIBDIR}/perf/profile.rb +${GEM_LIBDIR}/perf/vs_nethttp.rb +${GEM_LIBDIR}/spec/rack/typhoeus/middleware/params_decoder/helper_spec.rb +${GEM_LIBDIR}/spec/rack/typhoeus/middleware/params_decoder_spec.rb +${GEM_LIBDIR}/spec/spec_helper.rb +${GEM_LIBDIR}/spec/support/localhost_server.rb +${GEM_LIBDIR}/spec/support/memory_cache.rb +${GEM_LIBDIR}/spec/support/server.rb +${GEM_LIBDIR}/spec/typhoeus/adapters/faraday_spec.rb +${GEM_LIBDIR}/spec/typhoeus/cache/dalli_spec.rb +${GEM_LIBDIR}/spec/typhoeus/cache/redis_spec.rb +${GEM_LIBDIR}/spec/typhoeus/config_spec.rb +${GEM_LIBDIR}/spec/typhoeus/easy_factory_spec.rb +${GEM_LIBDIR}/spec/typhoeus/errors/no_stub_spec.rb +${GEM_LIBDIR}/spec/typhoeus/expectation_spec.rb +${GEM_LIBDIR}/spec/typhoeus/hydra/addable_spec.rb +${GEM_LIBDIR}/spec/typhoeus/hydra/before_spec.rb +${GEM_LIBDIR}/spec/typhoeus/hydra/block_connection_spec.rb +${GEM_LIBDIR}/spec/typhoeus/hydra/cacheable_spec.rb +${GEM_LIBDIR}/spec/typhoeus/hydra/memoizable_spec.rb +${GEM_LIBDIR}/spec/typhoeus/hydra/queueable_spec.rb +${GEM_LIBDIR}/spec/typhoeus/hydra/runnable_spec.rb +${GEM_LIBDIR}/spec/typhoeus/hydra/stubbable_spec.rb +${GEM_LIBDIR}/spec/typhoeus/hydra_spec.rb +${GEM_LIBDIR}/spec/typhoeus/pool_spec.rb +${GEM_LIBDIR}/spec/typhoeus/request/actions_spec.rb +${GEM_LIBDIR}/spec/typhoeus/request/before_spec.rb +${GEM_LIBDIR}/spec/typhoeus/request/block_connection_spec.rb +${GEM_LIBDIR}/spec/typhoeus/request/cacheable_spec.rb +${GEM_LIBDIR}/spec/typhoeus/request/callbacks_spec.rb +${GEM_LIBDIR}/spec/typhoeus/request/marshal_spec.rb +${GEM_LIBDIR}/spec/typhoeus/request/memoizable_spec.rb +${GEM_LIBDIR}/spec/typhoeus/request/operations_spec.rb +${GEM_LIBDIR}/spec/typhoeus/request/responseable_spec.rb +${GEM_LIBDIR}/spec/typhoeus/request/stubbable_spec.rb +${GEM_LIBDIR}/spec/typhoeus/request_spec.rb +${GEM_LIBDIR}/spec/typhoeus/response/header_spec.rb +${GEM_LIBDIR}/spec/typhoeus/response/informations_spec.rb +${GEM_LIBDIR}/spec/typhoeus/response/status_spec.rb +${GEM_LIBDIR}/spec/typhoeus/response_spec.rb +${GEM_LIBDIR}/spec/typhoeus_spec.rb +${GEM_LIBDIR}/typhoeus.gemspec +${GEM_HOME}/specifications/${GEM_NAME}.gemspec diff --git a/www/ruby-typhoeus/distinfo b/www/ruby-typhoeus/distinfo new file mode 100644 index 000000000000..521afeb30876 --- /dev/null +++ b/www/ruby-typhoeus/distinfo @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2020/04/14 15:58:29 ryoon Exp $ + +SHA1 (typhoeus-1.3.1.gem) = 57fe283b58130581a6edfaa2bfde3a9ecaa5e5ac +RMD160 (typhoeus-1.3.1.gem) = b0f3eccc93865761c3f20d89555ceee43d5a4fc8 +SHA512 (typhoeus-1.3.1.gem) = f826cdb7e48577226b12fc2715123e13519148f67d036470e385f80f8f3112d1ad24bf580c2ed0d213242c9afc1bdf868084266d430858b2cf6de73e50a11422 +Size (typhoeus-1.3.1.gem) = 55808 bytes