diff options
author | Rene Ladan <rene@FreeBSD.org> | 2019-01-01 13:52:46 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2019-01-01 13:52:46 +0000 |
commit | ba09f7ee95cee49a75d1ecb50f4be68f99de394a (patch) | |
tree | f7075798a9a1abe4f41bfb7a9ae6bd8387a1e92a /security/bitwarden-ruby | |
parent | sysutils/policykit-qt, sysutils/qzeitgeist: remove dead variable USE_KDE (diff) |
Remove expired ports:
2018-12-30 textproc/pecl-xdiff: Works only with EOL php 5.6
2019-01-01 www/mod_http2-devel: Use the module that is shipped with Apache 2.4
2019-01-01 www/varnish5: Varnish 5 is Retired
2018-12-30 security/pecl-ssh2-0: Works only with EOL php 5.6
2019-01-01 security/bitwarden-ruby: Expects very specific rubygem versions for new updates. Please follow instructions in git repo.
2018-12-30 devel/pecl-intl: Works only with EOL php 5.6
2018-12-30 devel/pecl-APCu4: Works only with EOL php 5.6
2018-12-30 databases/pecl-memcache: Works only with EOL php 5.6
2018-12-30 databases/pecl-memcached2: Works only with EOL php 5.6
2018-12-30 math/pecl-bitset2: Works only with EOL php 5.6
2019-01-01 multimedia/zoneminder-h264: h264 feature was commited to main branch, please upgrade to www/zoneminder
2019-01-01 lang/php56: Security Support ends on 31 Dec 2018
Notes
Notes:
svn path=/head/; revision=488894
Diffstat (limited to 'security/bitwarden-ruby')
-rw-r--r-- | security/bitwarden-ruby/Makefile | 43 | ||||
-rw-r--r-- | security/bitwarden-ruby/distinfo | 3 | ||||
-rw-r--r-- | security/bitwarden-ruby/files/bitwarden-api.in | 48 | ||||
-rw-r--r-- | security/bitwarden-ruby/pkg-descr | 4 | ||||
-rw-r--r-- | security/bitwarden-ruby/pkg-plist | 38 |
5 files changed, 0 insertions, 136 deletions
diff --git a/security/bitwarden-ruby/Makefile b/security/bitwarden-ruby/Makefile deleted file mode 100644 index 14074edc4b28..000000000000 --- a/security/bitwarden-ruby/Makefile +++ /dev/null @@ -1,43 +0,0 @@ -# Created by: Mark Felder <feld@FreeBSD.org> -# $FreeBSD$ - -PORTNAME= bitwarden-ruby -DISTVERSION= 0.0.0.20180321 -CATEGORIES= security www - -MAINTAINER= feld@FreeBSD.org -COMMENT= Ruby implementation of the BitWarden API - -LICENSE= ISCL - -EXPIRATION_DATE= 2019-01-01 -DEPRECATED= Expects very specific rubygem versions for new updates. Please follow instructions in git repo. - -RUN_DEPENDS= rubygem-sinatra>=2.0:www/rubygem-sinatra \ - rubygem-sinatra-contrib>=2.0:www/rubygem-sinatra-contrib \ - rubygem-unicorn>0:www/rubygem-unicorn \ - rubygem-json>0:devel/rubygem-json \ - rubygem-pbkdf2-ruby>0:security/rubygem-pbkdf2-ruby \ - rubygem-rotp>0:devel/rubygem-rotp \ - rubygem-jwt>0:www/rubygem-jwt \ - rubygem-sqlite3>0:databases/rubygem-sqlite3 \ - rubygem-rqrcode>0:www/rubygem-rqrcode - -USE_RUBY= yes -RUBY_NO_BUILD_DEPENDS= yes - -USE_GITHUB= yes -GH_ACCOUNT= jcs -GH_TAGNAME= c3e0eb1 - -NO_ARCH= yes -NO_BUILD= yes - -USE_RC_SUBR= bitwarden-api -SUB_LIST+= RUBY_WITH_SUFFIX="${RUBY_WITH_SUFFIX}" - -do-install: - ${MKDIR} ${STAGEDIR}/${WWWDIR} - (cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}/${WWWDIR}) - -.include <bsd.port.mk> diff --git a/security/bitwarden-ruby/distinfo b/security/bitwarden-ruby/distinfo deleted file mode 100644 index 4579f2a3fd4b..000000000000 --- a/security/bitwarden-ruby/distinfo +++ /dev/null @@ -1,3 +0,0 @@ -TIMESTAMP = 1521640545 -SHA256 (jcs-bitwarden-ruby-0.0.0.20180321-c3e0eb1_GH0.tar.gz) = ac041fcc37dabb6de5684e7c9be6984b9b443800558b8c645b7cf7b93b14cf05 -SIZE (jcs-bitwarden-ruby-0.0.0.20180321-c3e0eb1_GH0.tar.gz) = 30279 diff --git a/security/bitwarden-ruby/files/bitwarden-api.in b/security/bitwarden-ruby/files/bitwarden-api.in deleted file mode 100644 index 00fe822b1e75..000000000000 --- a/security/bitwarden-ruby/files/bitwarden-api.in +++ /dev/null @@ -1,48 +0,0 @@ -#!/bin/sh -# -# Created by: Mark Felder <feld@FreeBSD.org> -# $FreeBSD$ -# - -# PROVIDE: bitwarden-api -# REQUIRE: LOGIN -# KEYWORD: shutdown - -# -# Add the following line to /etc/rc.conf to enable `bitwarden-api': -# -# bitwarden_api_enable="YES" - -. /etc/rc.subr -name=bitwarden_api - -rcvar=bitwarden_api_enable -load_rc_config ${name} - -: ${bitwarden_api_enable:=NO} -: ${bitwarden_api_port:=4567} -: ${bitwarden_api_signups:=NO} -: ${bitwarden_api_user:=www} -: ${bitwarden_api_group:=www} -: ${bitwarden_api_chdir=/usr/local/www/bitwarden-ruby} - -pidfile="/var/run/bitwarden/${name}.pid" -procname=%%RUBY_WITH_SUFFIX%% -command="%%PREFIX%%/bin/rackup" -command_args="-P ${pidfile} -p ${bitwarden_api_port} -E production config.ru 2>&1 | logger -t bitwarden &" -start_precmd="start_precmd" - -start_precmd() -{ - if [ ! -e /var/run/bitwarden ] ; then - install -d -o ${bitwarden_api_user} -g ${bitwarden_api_group} /var/run/bitwarden; - fi - - checkyesno bitwarden_api_signups - if [ "$?" -eq 0 ]; then - export ALLOW_SIGNUPS=1 - echo "Bitwarden Signups Enabled" - fi -} - -run_rc_command "$1" diff --git a/security/bitwarden-ruby/pkg-descr b/security/bitwarden-ruby/pkg-descr deleted file mode 100644 index 388281dfbfa6..000000000000 --- a/security/bitwarden-ruby/pkg-descr +++ /dev/null @@ -1,4 +0,0 @@ -A small, self-contained API server written in Ruby and Sinatra to -provide a private backend for the open-source Bitwarden apps. - -WWW: https://github.com/jcs/bitwarden-ruby diff --git a/security/bitwarden-ruby/pkg-plist b/security/bitwarden-ruby/pkg-plist deleted file mode 100644 index 065230d8a7dd..000000000000 --- a/security/bitwarden-ruby/pkg-plist +++ /dev/null @@ -1,38 +0,0 @@ -%%WWWDIR%%/API.md -%%WWWDIR%%/Gemfile -%%WWWDIR%%/Gemfile.lock -%%WWWDIR%%/LICENSE -%%WWWDIR%%/README.md -%%WWWDIR%%/Rakefile -%%WWWDIR%%/config.ru -@owner www -%%WWWDIR%%/db/.gitkeep -@owner -%%WWWDIR%%/lib/app.rb -%%WWWDIR%%/lib/bitwarden.rb -%%WWWDIR%%/lib/bitwarden_ruby.rb -%%WWWDIR%%/lib/cipher.rb -%%WWWDIR%%/lib/db.rb -%%WWWDIR%%/lib/dbmodel.rb -%%WWWDIR%%/lib/device.rb -%%WWWDIR%%/lib/folder.rb -%%WWWDIR%%/lib/helper.rb -%%WWWDIR%%/lib/user.rb -%%WWWDIR%%/lib/helpers/request_helpers.rb -%%WWWDIR%%/lib/routes/api.rb -%%WWWDIR%%/lib/routes/icons.rb -%%WWWDIR%%/lib/routes/identity.rb -%%WWWDIR%%/spec/cipher_spec.rb -%%WWWDIR%%/spec/cipherstring_spec.rb -%%WWWDIR%%/spec/db_spec.rb -%%WWWDIR%%/spec/folder_spec.rb -%%WWWDIR%%/spec/icon_spec.rb -%%WWWDIR%%/spec/identity_spec.rb -%%WWWDIR%%/spec/spec_helper.rb -%%WWWDIR%%/tools/1password_import.rb -%%WWWDIR%%/tools/activate_totp.rb -%%WWWDIR%%/tools/bitwarden_import.rb -%%WWWDIR%%/tools/keepass_import.rb -%%WWWDIR%%/tools/lastpass_import.rb -%%WWWDIR%%/tools/mitm.rb -@dir(www,www,0750) %%WWWDIR%%/db |