summaryrefslogtreecommitdiff
path: root/net/chimera
diff options
context:
space:
mode:
authornia <nia@pkgsrc.org>2020-03-11 19:55:38 +0000
committernia <nia@pkgsrc.org>2020-03-11 19:55:38 +0000
commitf6ae8479b010f97dc6199ad3a4cfd0a17378739d (patch)
tree18a251f51731060fdab2e823fb9f6b6b9772a4be /net/chimera
parent0e955764a9b0a0b0877410538b2050c6d7db90fe (diff)
downloadpkgsrc-f6ae8479b010f97dc6199ad3a4cfd0a17378739d.tar.gz
chimera: Remove, broken with OpenSSL 1.1, no release since 2008
(this release is from 2007)
Diffstat (limited to 'net/chimera')
-rw-r--r--net/chimera/DESCR22
-rw-r--r--net/chimera/Makefile23
-rw-r--r--net/chimera/PLIST12
-rw-r--r--net/chimera/distinfo8
-rw-r--r--net/chimera/patches/patch-aa21
-rw-r--r--net/chimera/patches/patch-src_route.c13
6 files changed, 0 insertions, 99 deletions
diff --git a/net/chimera/DESCR b/net/chimera/DESCR
deleted file mode 100644
index 353f59df648..00000000000
--- a/net/chimera/DESCR
+++ /dev/null
@@ -1,22 +0,0 @@
-Structured peer-to-peer overlays, sometimes also referred to as
-Distributed Hash Tables (DHTs), are scalable network infrastructures
-that support Internet-scale network applications utilizing a
-decentralized resource model. At their core, these overlays provide
-Key-Based Routing (KBR), where messages addressed to any Key will
-incrementally route towards an overlay node responsible for that key.
-On top of the KBR layer, these overlays can support distributed
-storage using a DHT layer or data location using a DOLR layer.
-
-On top of these overlays, researchers have proposed numerous
-distributed applications, including distributed storage and backup
-systems, multicast systems, resilient routing networks, distributed
-spam filters, mobility support and anonymous routing networks.
-
-Chimera is a light-weight C implementation of a "next-generation"
-structured overlay that provides similar functionality as
-prefix-routing protocols Tapestry and Pastry. Chimera gains
-simplicity and robustness from its use of Pastry's leafsets, and
-efficient routing from Tapestry's locality algorithms. In addition to
-these properties, Chimera also provides efficient detection of node
-and network failures, and reroutes messages around them to maintain
-connectivity and throughput.
diff --git a/net/chimera/Makefile b/net/chimera/Makefile
deleted file mode 100644
index dc85a7b70dc..00000000000
--- a/net/chimera/Makefile
+++ /dev/null
@@ -1,23 +0,0 @@
-# $NetBSD: Makefile,v 1.6 2020/01/18 21:50:10 jperkin Exp $
-
-DISTNAME= chimera-1.20
-PKGREVISION= 2
-CATEGORIES= net
-MASTER_SITES= http://www.cs.ucsb.edu/~ravenben/chimera/download/
-
-MAINTAINER= agc@NetBSD.org
-HOMEPAGE= http://pdos.csail.mit.edu/chord/
-COMMENT= Distributed Hash Table implementation
-LICENSE= gnu-gpl-v2
-
-WRKSRC= ${WRKDIR}/chimera
-GNU_CONFIGURE= yes
-USE_LIBTOOL= yes
-USE_TOOLS+= gmake
-
-AUTO_MKDIRS= yes
-
-LDFLAGS.SunOS+= -lsocket -lnsl
-
-.include "../../security/openssl/buildlink3.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/net/chimera/PLIST b/net/chimera/PLIST
deleted file mode 100644
index 29764e5f446..00000000000
--- a/net/chimera/PLIST
+++ /dev/null
@@ -1,12 +0,0 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2012/05/02 04:48:04 agc Exp $
-bin/bighost
-bin/bignode
-bin/bigtest
-bin/dht
-bin/dhttest
-bin/monitor
-bin/receiver
-bin/sender
-bin/sha1_keygen
-bin/test
-lib/libchimera.a
diff --git a/net/chimera/distinfo b/net/chimera/distinfo
deleted file mode 100644
index 37f113a1d05..00000000000
--- a/net/chimera/distinfo
+++ /dev/null
@@ -1,8 +0,0 @@
-$NetBSD: distinfo,v 1.3 2015/11/04 00:34:55 agc Exp $
-
-SHA1 (chimera-1.20.tar.gz) = 5a603fdb234c3d6ef9ae48071ad41e8c9db835cf
-RMD160 (chimera-1.20.tar.gz) = 723162f2490622e97c10cade97fa489f67707f8e
-SHA512 (chimera-1.20.tar.gz) = dcc89ccb9eb22e53cfa90d546215991625199454fffc913a4eb88f08c402cac84ba386cbd8ba3938ed351d502a0bd967b84596ad19d9454ef8f4fc96e33ec244
-Size (chimera-1.20.tar.gz) = 978799 bytes
-SHA1 (patch-aa) = a02ea7183b641a3c540a6c0aa4013d4016f14060
-SHA1 (patch-src_route.c) = c21b457e9b0efa56888b6715278c272bf229238a
diff --git a/net/chimera/patches/patch-aa b/net/chimera/patches/patch-aa
deleted file mode 100644
index bef6fc3e461..00000000000
--- a/net/chimera/patches/patch-aa
+++ /dev/null
@@ -1,21 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2012/05/02 04:48:04 agc Exp $
-
-correct header to get prototype
-
---- src/log.c 2012/03/28 19:10:29 1.1
-+++ src/log.c 2012/03/28 19:10:44
-@@ -9,12 +9,10 @@
- #include <unistd.h>
- #include <stdarg.h>
- #include <stdlib.h>
-+#include <string.h>
- #include "log.h"
-
--extern FILE *stdin;
--
--
--void *log_init ()
-+void *log_init (void)
- {
- static FILE **log_fp;
- log_fp = (FILE **) malloc (sizeof (FILE *) * LOG_COUNT);
diff --git a/net/chimera/patches/patch-src_route.c b/net/chimera/patches/patch-src_route.c
deleted file mode 100644
index 916bc5a43e7..00000000000
--- a/net/chimera/patches/patch-src_route.c
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-src_route.c,v 1.1 2012/11/19 02:58:41 joerg Exp $
-
---- src/route.c.orig 2012-11-18 16:29:00.000000000 +0000
-+++ src/route.c
-@@ -435,7 +435,7 @@ ChimeraHost *find_closest_key (void *sta
- if (size == 0)
- {
- min = NULL;
-- return;
-+ return NULL;
- }
-
- else