aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYasuhiro Kimura <yasu@FreeBSD.org>2022-12-06 12:54:48 +0000
committerYasuhiro Kimura <yasu@FreeBSD.org>2022-12-23 07:31:45 +0000
commitf72c9e77e273bea874634fd60bbafbfd4844c893 (patch)
tree194d79a4d03591259fb0fd472fc0fe9afbcd3d51
parente0953f411b91bf2de501feb28ca5db1815d4549f (diff)
www/rubygem-rack22: Copy from www/rubygem-rack
Copy www/rubygem-rack to www/rubygem-rack22 as preparation for updating www/rubygem-rack to 3.0.2. PR: 268057
-rw-r--r--www/Makefile1
-rw-r--r--www/rubygem-rack22/Makefile24
-rw-r--r--www/rubygem-rack22/distinfo3
-rw-r--r--www/rubygem-rack22/pkg-descr4
4 files changed, 32 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile
index 880f967bd4b4..d92d7e032e04 100644
--- a/www/Makefile
+++ b/www/Makefile
@@ -2079,6 +2079,7 @@
SUBDIR += rubygem-rack-test
SUBDIR += rubygem-rack-timeout
SUBDIR += rubygem-rack16
+ SUBDIR += rubygem-rack22
SUBDIR += rubygem-rack_csrf
SUBDIR += rubygem-rails-settings-cached
SUBDIR += rubygem-rails-settings-cached-rails5
diff --git a/www/rubygem-rack22/Makefile b/www/rubygem-rack22/Makefile
new file mode 100644
index 000000000000..47dc5dd5916e
--- /dev/null
+++ b/www/rubygem-rack22/Makefile
@@ -0,0 +1,24 @@
+PORTNAME= rack
+PORTVERSION= 2.2.4
+PORTEPOCH= 3
+CATEGORIES= www rubygems
+MASTER_SITES= RG
+PKGNAMESUFFIX= 22
+
+MAINTAINER= sunpoet@FreeBSD.org
+COMMENT= Rack, a Ruby Webserver Interface
+WWW= https://github.com/rack/rack
+
+LICENSE= MIT
+LICENSE_FILE= ${WRKSRC}/MIT-LICENSE
+
+USES= cpe gem
+USE_RUBY= yes
+
+NO_ARCH= yes
+
+PLIST_FILES= bin/rackup
+
+CPE_VENDOR= rack_project
+
+.include <bsd.port.mk>
diff --git a/www/rubygem-rack22/distinfo b/www/rubygem-rack22/distinfo
new file mode 100644
index 000000000000..cff443608b88
--- /dev/null
+++ b/www/rubygem-rack22/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1657292558
+SHA256 (rubygem/rack-2.2.4.gem) = ea2232b638cbd919129c8c8ad8012ecaccc09f848152a7e705d2139d0137ac2b
+SIZE (rubygem/rack-2.2.4.gem) = 151552
diff --git a/www/rubygem-rack22/pkg-descr b/www/rubygem-rack22/pkg-descr
new file mode 100644
index 000000000000..bfba0bd60188
--- /dev/null
+++ b/www/rubygem-rack22/pkg-descr
@@ -0,0 +1,4 @@
+Rack provides a minimal, modular and adaptable interface for developing web
+applications in Ruby. By wrapping HTTP requests and responses in the simplest
+way possible, it unifies and distills the API for web servers, web frameworks,
+and software in between (the so-called middleware) into a single method call.