View | Details | Raw Unified | Return to bug 238332
Collapse All | Expand All

(-)Makefile (-2 / +2 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	bcrypt
4
PORTNAME=	bcrypt
5
PORTVERSION=	3.1.12
5
PORTVERSION=	3.1.13
6
CATEGORIES=	security rubygems
6
CATEGORIES=	security rubygems
7
MASTER_SITES=	RG
7
MASTER_SITES=	RG
8
8
Lines 12-18 Link Here
12
LICENSE=	MIT
12
LICENSE=	MIT
13
LICENSE_FILE=	${WRKSRC}/COPYING
13
LICENSE_FILE=	${WRKSRC}/COPYING
14
14
15
USES=		gem
15
USE_RUBY=	yes
16
USE_RUBY=	yes
16
USES=		gem
17
17
18
.include <bsd.port.mk>
18
.include <bsd.port.mk>
(-)distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1526575523
1
TIMESTAMP = 1559714943
2
SHA256 (rubygem/bcrypt-3.1.12.gem) = defdc7d58313b6b34858babd314c56aba27151ae65d5095a86b652363ba64b7b
2
SHA256 (rubygem/bcrypt-3.1.13.gem) = 976a1afc2b10e78cb8017ffb76583361a867ef4d60d6588558c08e274ba8202a
3
SIZE (rubygem/bcrypt-3.1.12.gem) = 44544
3
SIZE (rubygem/bcrypt-3.1.13.gem) = 54272
(-)files/patch-ext_mri_ow-crypt.h (-10 lines)
Lines 1-10 Link Here
1
--- ext/mri/ow-crypt.h.orig	2016-09-01 08:48:28 UTC
2
+++ ext/mri/ow-crypt.h
3
@@ -16,7 +16,6 @@
4
 
5
 #ifndef __SKIP_GNU
6
 extern char *crypt(__CONST char *key, __CONST char *setting);
7
-extern char *crypt_r(__CONST char *key, __CONST char *setting, void *data);
8
 #endif
9
 
10
 #ifndef __SKIP_OW
(-)files/patch-ext_mri_wrapper.c (-16 lines)
Lines 1-16 Link Here
1
--- ext/mri/wrapper.c.orig	2016-09-01 08:48:10 UTC
2
+++ ext/mri/wrapper.c
3
@@ -185,13 +185,6 @@ char *crypt_ra(__CONST char *key, __CONS
4
 	return _crypt_blowfish_rn(key, setting, (char *)*data, *size);
5
 }
6
 
7
-char *crypt_r(__CONST char *key, __CONST char *setting, void *data)
8
-{
9
-	return _crypt_retval_magic(
10
-		crypt_rn(key, setting, data, CRYPT_OUTPUT_SIZE),
11
-		setting, (char *)data);
12
-}
13
-
14
 #define __crypt_gensalt_rn crypt_gensalt_rn
15
 #define __crypt_gensalt_ra crypt_gensalt_ra
16
 #define __crypt_gensalt crypt_gensalt

Return to bug 238332