From 668dd8e9e4230864e0ada6297968e4c94965a2ea Mon Sep 17 00:00:00 2001 From: sunpoet Date: Fri, 6 Mar 2015 22:41:24 +0000 Subject: - Move net/rubygem-openid to net/rubygem-ruby-openid - Update to 2.7.0 - Remove unnecessary DISTNAME and GEM_NAME - Fix WWW Changes: https://github.com/openid/ruby-openid/blob/master/CHANGELOG.md --- net/Makefile | 2 +- net/rubygem-openid/Makefile | 22 ---------------------- net/rubygem-openid/distinfo | 2 -- net/rubygem-openid/pkg-descr | 21 --------------------- net/rubygem-ruby-openid/Makefile | 19 +++++++++++++++++++ net/rubygem-ruby-openid/distinfo | 2 ++ net/rubygem-ruby-openid/pkg-descr | 21 +++++++++++++++++++++ 7 files changed, 43 insertions(+), 46 deletions(-) delete mode 100644 net/rubygem-openid/Makefile delete mode 100644 net/rubygem-openid/distinfo delete mode 100644 net/rubygem-openid/pkg-descr create mode 100644 net/rubygem-ruby-openid/Makefile create mode 100644 net/rubygem-ruby-openid/distinfo create mode 100644 net/rubygem-ruby-openid/pkg-descr (limited to 'net') diff --git a/net/Makefile b/net/Makefile index 805847ac9a64..834fc8645dee 100644 --- a/net/Makefile +++ b/net/Makefile @@ -1068,7 +1068,6 @@ SUBDIR += rubygem-omniauth-openid SUBDIR += rubygem-omniauth-twitter SUBDIR += rubygem-open-uri-cached - SUBDIR += rubygem-openid SUBDIR += rubygem-opennebula SUBDIR += rubygem-packetfu SUBDIR += rubygem-pcaprub @@ -1080,6 +1079,7 @@ SUBDIR += rubygem-righthttpconnection SUBDIR += rubygem-rightslicehost SUBDIR += rubygem-ruby-growl + SUBDIR += rubygem-ruby-openid SUBDIR += rubygem-rubyntlm SUBDIR += rubygem-rubyntlm01 SUBDIR += rubygem-rubytter diff --git a/net/rubygem-openid/Makefile b/net/rubygem-openid/Makefile deleted file mode 100644 index 0994c14ecb4c..000000000000 --- a/net/rubygem-openid/Makefile +++ /dev/null @@ -1,22 +0,0 @@ -# Created by: Cheng-Lung Sung -# $FreeBSD$ - -PORTNAME= openid -PORTVERSION= 2.5.0 -CATEGORIES= net rubygems -MASTER_SITES= RG -DISTNAME= ruby-${PORTNAME}-${PORTVERSION} - -MAINTAINER= ruby@FreeBSD.org -COMMENT= OpenID library written in pure Ruby - -LICENSE= APACHE20 RUBY -LICENSE_COMB= dual - -GEM_NAME= ${DISTNAME} - -USE_RUBY= yes -USE_RUBYGEMS= yes -RUBYGEM_AUTOPLIST= yes - -.include diff --git a/net/rubygem-openid/distinfo b/net/rubygem-openid/distinfo deleted file mode 100644 index 20d810c91e99..000000000000 --- a/net/rubygem-openid/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (rubygem/ruby-openid-2.5.0.gem) = d152aa626f367c1af1d35d7633eea772f40458304655cc2c016d4bc2f4337396 -SIZE (rubygem/ruby-openid-2.5.0.gem) = 328192 diff --git a/net/rubygem-openid/pkg-descr b/net/rubygem-openid/pkg-descr deleted file mode 100644 index d587647df116..000000000000 --- a/net/rubygem-openid/pkg-descr +++ /dev/null @@ -1,21 +0,0 @@ -A Ruby library for verifying and serving OpenID identities. -Ruby OpenID makes it easy to add OpenID authentication to your web -applications. - -This library is a port of the Python OpenID library, and features: - -* API for verifying OpenID identities (OpenID::Consumer) -* API for serving OpenID identities (OpenID::Server) -* Consumer and server support for extensions, including simple registration -* Yadis 1.0 and OpenID 1.0 service discovery, including server fallback -* Does not depend on underlying web framework -* Multiple storage implementations (Filesystem, SQL) -* Comprehensive test suite -* Example code to help you get started, including: - o WEBrick based consumer - o Ruby on rails based server - o OpenIDLoginGenerator for quickly creating a rails app that uses OpenID - for authentication - o ActiveRecord adapter for using an SQL store in rails - -WWW: http://rubygems.org/gems/openid/ diff --git a/net/rubygem-ruby-openid/Makefile b/net/rubygem-ruby-openid/Makefile new file mode 100644 index 000000000000..6499f870829b --- /dev/null +++ b/net/rubygem-ruby-openid/Makefile @@ -0,0 +1,19 @@ +# Created by: Cheng-Lung Sung +# $FreeBSD$ + +PORTNAME= ruby-openid +PORTVERSION= 2.7.0 +CATEGORIES= net rubygems +MASTER_SITES= RG + +MAINTAINER= ruby@FreeBSD.org +COMMENT= OpenID library written in pure Ruby + +LICENSE= APACHE20 RUBY +LICENSE_COMB= dual + +USE_RUBY= yes +USE_RUBYGEMS= yes +RUBYGEM_AUTOPLIST= yes + +.include diff --git a/net/rubygem-ruby-openid/distinfo b/net/rubygem-ruby-openid/distinfo new file mode 100644 index 000000000000..e3995601c7c2 --- /dev/null +++ b/net/rubygem-ruby-openid/distinfo @@ -0,0 +1,2 @@ +SHA256 (rubygem/ruby-openid-2.7.0.gem) = fa06086c6b6cefeabf2396594a871cbcf47f99adbd6add62dfa09dade506af5a +SIZE (rubygem/ruby-openid-2.7.0.gem) = 330240 diff --git a/net/rubygem-ruby-openid/pkg-descr b/net/rubygem-ruby-openid/pkg-descr new file mode 100644 index 000000000000..ffd6f238ad07 --- /dev/null +++ b/net/rubygem-ruby-openid/pkg-descr @@ -0,0 +1,21 @@ +A Ruby library for verifying and serving OpenID identities. +Ruby OpenID makes it easy to add OpenID authentication to your web +applications. + +This library is a port of the Python OpenID library, and features: + +* API for verifying OpenID identities (OpenID::Consumer) +* API for serving OpenID identities (OpenID::Server) +* Consumer and server support for extensions, including simple registration +* Yadis 1.0 and OpenID 1.0 service discovery, including server fallback +* Does not depend on underlying web framework +* Multiple storage implementations (Filesystem, SQL) +* Comprehensive test suite +* Example code to help you get started, including: + o WEBrick based consumer + o Ruby on rails based server + o OpenIDLoginGenerator for quickly creating a rails app that uses OpenID + for authentication + o ActiveRecord adapter for using an SQL store in rails + +WWW: https://github.com/openid/ruby-openid -- cgit