From owner-svn-ports-all@freebsd.org Sun Nov 18 20:02:52 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BE50B110DDB3; Sun, 18 Nov 2018 20:02:52 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5E54C6DB0A; Sun, 18 Nov 2018 20:02:52 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EFD4D17FBA; Sun, 18 Nov 2018 20:02:49 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wAIK2np1097486; Sun, 18 Nov 2018 20:02:49 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wAIK2nBx097485; Sun, 18 Nov 2018 20:02:49 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201811182002.wAIK2nBx097485@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 18 Nov 2018 20:02:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r485256 - head/net/rabbiteer X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: head/net/rabbiteer X-SVN-Commit-Revision: 485256 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5E54C6DB0A X-Spamd-Result: default: False [0.19 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_SPAM_MEDIUM(0.14)[0.139,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US]; NEURAL_SPAM_SHORT(0.05)[0.047,0] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Nov 2018 20:02:53 -0000 Author: jbeich Date: Sun Nov 18 20:02:49 2018 New Revision: 485256 URL: https://svnweb.freebsd.org/changeset/ports/485256 Log: net/rabbiteer: mark BROKEN for OpenSSL 1.1 src/openssl_shim.c:132:7: error: incomplete definition of type 'struct dh_st' dh->p = p; ~~^ /usr/include/openssl/ossl_typ.h:104:16: note: forward declaration of 'struct dh_st' typedef struct dh_st DH; ^ src/openssl_shim.c:133:7: error: incomplete definition of type 'struct dh_st' dh->g = g; ~~^ /usr/include/openssl/ossl_typ.h:104:16: note: forward declaration of 'struct dh_st' typedef struct dh_st DH; ^ src/openssl_shim.c:134:7: error: incomplete definition of type 'struct dh_st' dh->q = q; ~~^ /usr/include/openssl/ossl_typ.h:104:16: note: forward declaration of 'struct dh_st' typedef struct dh_st DH; ^ src/openssl_shim.c:143:13: error: incomplete definition of type 'struct x509_st' return x->cert_info ? x->cert_info->extensions : NULL; ~^ /usr/include/openssl/ossl_typ.h:120:16: note: forward declaration of 'struct x509_st' typedef struct x509_st X509; ^ src/openssl_shim.c:143:28: error: incomplete definition of type 'struct x509_st' return x->cert_info ? x->cert_info->extensions : NULL; ~^ /usr/include/openssl/ossl_typ.h:120:16: note: forward declaration of 'struct x509_st' typedef struct x509_st X509; ^ Reported by: pkg-fallout Modified: head/net/rabbiteer/Makefile (contents, props changed) Modified: head/net/rabbiteer/Makefile ============================================================================== --- head/net/rabbiteer/Makefile Sun Nov 18 20:02:40 2018 (r485255) +++ head/net/rabbiteer/Makefile Sun Nov 18 20:02:49 2018 (r485256) @@ -11,6 +11,11 @@ COMMENT= AMQP & RabbitMQ command-line tool LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENCE-MIT +BROKEN_SSL= openssl111 +BROKEN_SSL_REASON_openssl111= https://github.com/Antti/rust-amqp/issues/43 +BROKEN_FreeBSD_12= ${BROKEN_SSL_REASON_openssl111} +BROKEN_FreeBSD_13= ${BROKEN_SSL_REASON_openssl111} + USES= cargo ssl USE_GITHUB= yes