Commit 0ac8fd98 authored by Dave Cottlehuber's avatar Dave Cottlehuber
Browse files

net/rabbitmq-c-devel: remove obsolete -devel variant

Reported by:	portscout
Sponsored by:   SkunkWerks, GmbH
parent 8bc8cdfc
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -17612,3 +17612,4 @@ devel/py-types-xxhash||2022-11-15|No longer needed, type annotations are now ava
devel/awscli|devel/py-awscli|2022-11-15|Renamed comply with Python Ports Policy and flavored
graphics/sciplot|science/sciplot|2022-11-15|Move to avoid conflict with graphics/SciPlot
x11-wm/hyprland-devel|x11-wm/hyprland|2022-11-16|Updated to the latest stable version
net/rabbitmq-c-devel|net/rabbitmq-c|2022-11-16|Remove obsolete devel port, use net/rabbitmq-c instead
+0 −1
Original line number Diff line number Diff line
@@ -1181,7 +1181,6 @@
    SUBDIR += rabbiteer
    SUBDIR += rabbitmq
    SUBDIR += rabbitmq-c
    SUBDIR += rabbitmq-c-devel
    SUBDIR += radcli
    SUBDIR += raddump
    SUBDIR += radiator

net/rabbitmq-c-devel/Makefile

deleted100644 → 0
+0 −28
Original line number Diff line number Diff line
PORTNAME=	rabbitmq-c
PORTVERSION=	0.10.0
DISTVERSIONPREFIX=	v
CATEGORIES=	net
PKGNAMESUFFIX=	-devel

MAINTAINER=	dch@FreeBSD.org
COMMENT=	RabbitMQ C AMQP client library
WWW=		https://www.rabbitmq.com/

LICENSE=	MIT
LICENSE_FILE=	${WRKSRC}/LICENSE-MIT

BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}simplejson>=2.0:devel/py-simplejson@${PY_FLAVOR}

CONFLICTS=	rabbitmq-c

USES=		cmake pathfix python ssl
USE_GITHUB=	yes
USE_LDCONFIG=	yes
GH_ACCOUNT=	alanxz

OPTIONS_DEFINE=	POPT
OPTIONS_SUB=	yes
POPT_DESC=	Popt support in tools
POPT_LIB_DEPENDS=	libpopt.so:devel/popt

.include <bsd.port.mk>

net/rabbitmq-c-devel/distinfo

deleted100644 → 0
+0 −3
Original line number Diff line number Diff line
TIMESTAMP = 1607644490
SHA256 (alanxz-rabbitmq-c-v0.10.0_GH0.tar.gz) = 6455efbaebad8891c59f274a852b75b5cc51f4d669dfc78d2ae7e6cc97fcd8c0
SIZE (alanxz-rabbitmq-c-v0.10.0_GH0.tar.gz) = 145361
+0 −12
Original line number Diff line number Diff line
--- librabbitmq/amqp_tcp_socket.c.orig	2015-06-17 07:41:33 UTC
+++ librabbitmq/amqp_tcp_socket.c
@@ -32,6 +32,9 @@
 #ifndef _WIN32
 # include <netinet/tcp.h>
 #endif
+#include <sys/types.h>
+#include <sys/socket.h>
+#include <netinet/in.h>
 #include <stdio.h>
 #include <stdlib.h>
 
Loading