Commit b060e770 authored by Muhammad Moinur Rahman's avatar Muhammad Moinur Rahman
Browse files

net/rsocket-cpp: Remove expired port:

2023-03-21 net/rsocket-cpp: Broken since 2021
parent 1f05ea9e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -17812,3 +17812,4 @@ sysutils/jobd||2023-03-20|Has expired: Broken since 2021
sysutils/geomWatch||2023-03-20|Has expired: Broken since 2021
lang/visualworks||2023-03-20|Has expired: Broken since 2021
lang/J||2023-03-20|Has expired: Broken since 2021
net/rsocket-cpp||2023-03-20|Has expired: Broken since 2021
+0 −1
Original line number Diff line number Diff line
@@ -1214,7 +1214,6 @@
    SUBDIR += rp-pppoe
    SUBDIR += rpki-client
    SUBDIR += rscsi
    SUBDIR += rsocket-cpp
    SUBDIR += rsplib
    SUBDIR += rssguard
    SUBDIR += rsync

net/rsocket-cpp/Makefile

deleted100644 → 0
+0 −44
Original line number Diff line number Diff line
PORTNAME=	rsocket-cpp
DISTVERSIONPREFIX=	v
DISTVERSION=	2021.08.30.00
PORTREVISION=	3
CATEGORIES=	net

MAINTAINER=	yuri@FreeBSD.org
COMMENT=	C++ implementation of RSocket
WWW=		https://rsocket.io/

LICENSE=	APACHE20
LICENSE_FILE=	${WRKSRC}/LICENSE

BROKEN=		build fails with latest devel/folly, no upstream support provided: https://github.com/rsocket/rsocket-cpp/issues/906
DEPRECATED=	Broken since 2021
EXPIRATION_DATE=	2023-03-21

BUILD_DEPENDS=	libfmt>0:devel/libfmt
LIB_DEPENDS=	libboost_atomic.so:devel/boost-libs \
		libdouble-conversion.so:devel/double-conversion \
		libevent.so:devel/libevent \
		libfolly.so:devel/folly \
		libgflags.so:devel/gflags \
		libglog.so:devel/glog \
		liblz4.so:archivers/liblz4 \
		libsnappy.so:archivers/snappy \
		libsodium.so:security/libsodium \
		libunwind.so:devel/libunwind \
		libzstd.so:archivers/zstd

USES=		cmake compiler:c++14-lang ssl
USE_GITHUB=	yes
GH_ACCOUNT=	rsocket
USE_LDCONFIG=	yes

CMAKE_ON=	BUILD_SHARED_LIBS
CMAKE_OFF=	BUILD_BENCHMARKS BUILD_EXAMPLES BUILD_TESTS BUILD_EXAMPLES

PORTSCOUT=	limit:^[0-9\.]*$$

post-install: # https://github.com/rsocket/rsocket-cpp/issues/890
	@cd ${STAGEDIR}${LOCALBASE} && ${RM} -r include/rsocket/examples include/rsocket/test include/yarpl/cmake include/yarpl/perf include/yarpl/test

.include <bsd.port.mk>

net/rsocket-cpp/distinfo

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
TIMESTAMP = 1630398197
SHA256 (rsocket-rsocket-cpp-v2021.08.30.00_GH0.tar.gz) = ee9f8ea5bb3a23a296f218d5ad440646c8c1037eb9a03e9f7cca7f16b1e4b304
SIZE (rsocket-rsocket-cpp-v2021.08.30.00_GH0.tar.gz) = 1872507

net/rsocket-cpp/pkg-descr

deleted100644 → 0
+0 −9
Original line number Diff line number Diff line
RSocket is a binary protocol for use on byte stream transports such as TCP,
WebSockets, and Aeron.

It enables the following symmetric interaction models via async message passing
over a single connection:
* request/response (stream of 1)
* request/stream (finite stream of many)
* fire-and-forget (no response)
* channel (bi-directional streams)
Loading