pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/security Remove guardtime, libguardtime.
details: https://anonhg.NetBSD.org/pkgsrc/rev/d27ee41030e0
branches: trunk
changeset: 448459:d27ee41030e0
user: nia <nia%pkgsrc.org@localhost>
date: Mon Mar 08 11:48:12 2021 +0000
description:
Remove guardtime, libguardtime.
Fails to build and the upstream service seems to have transformed into
some "enterprise blockchain" thingy.
diffstat:
security/guardtime/DESCR | 2 -
security/guardtime/Makefile | 18 ----------
security/guardtime/PLIST | 12 ------
security/guardtime/distinfo | 7 ---
security/guardtime/patches/patch-gtime-test.c | 48 ---------------------------
security/libguardtime/DESCR | 3 -
security/libguardtime/Makefile | 27 ---------------
security/libguardtime/PLIST | 10 -----
security/libguardtime/buildlink3.mk | 16 ---------
security/libguardtime/distinfo | 6 ---
10 files changed, 0 insertions(+), 149 deletions(-)
diffs (189 lines):
diff -r e17eeea4444d -r d27ee41030e0 security/guardtime/DESCR
--- a/security/guardtime/DESCR Mon Mar 08 11:23:47 2021 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,2 +0,0 @@
-This is the command line client interface for the GuardTime keyless
-signature / time-stamping and verification tool.
diff -r e17eeea4444d -r d27ee41030e0 security/guardtime/Makefile
--- a/security/guardtime/Makefile Mon Mar 08 11:23:47 2021 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-# $NetBSD: Makefile,v 1.19 2020/05/22 10:56:36 adam Exp $
-
-DISTNAME= gtime-1.0-12
-PKGNAME= guardtime-1.0.12
-PKGREVISION= 18
-CATEGORIES= security
-MASTER_SITES= http://download.guardtime.com/
-
-MAINTAINER= pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE= http://www.guardtime.com/
-COMMENT= Command line client for GuardTime keyless signature service
-LICENSE= apache-2.0
-
-GNU_CONFIGURE= yes
-USE_LANGUAGES= c
-
-.include "../../security/libguardtime/buildlink3.mk"
-.include "../../mk/bsd.pkg.mk"
diff -r e17eeea4444d -r d27ee41030e0 security/guardtime/PLIST
--- a/security/guardtime/PLIST Mon Mar 08 11:23:47 2021 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,12 +0,0 @@
-@comment $NetBSD: PLIST,v 1.2 2018/01/01 22:29:53 rillig Exp $
-bin/gtime
-bin/gtime-sign
-bin/gtime-test
-bin/gtime-verify
-man/man1/gtime-test.1
-man/man1/gtime.1
-share/doc/gtime/TestData.txt
-share/doc/gtime/TestData.txt.gtts
-share/doc/gtime/run-tests.sh
-share/doc/gtime/tap-functions
-share/doc/gtime/trust.pem
diff -r e17eeea4444d -r d27ee41030e0 security/guardtime/distinfo
--- a/security/guardtime/distinfo Mon Mar 08 11:23:47 2021 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,7 +0,0 @@
-$NetBSD: distinfo,v 1.3 2015/11/04 01:17:46 agc Exp $
-
-SHA1 (gtime-1.0-12.tar.gz) = ed4649f807fc6cf9d125d9ad999ebb368939dbcc
-RMD160 (gtime-1.0-12.tar.gz) = b3d7f9bd8ae10292c64ca60fbeb2c7d23da8c71e
-SHA512 (gtime-1.0-12.tar.gz) = fba58be0ad9b60c2b5bcab47d3baed4af41def2f6438f624cc2205b72ba8f45ea5152f3aad75c5bbcf628f54c463426436d75f18b6ed33ca5217e98a37d93e96
-Size (gtime-1.0-12.tar.gz) = 115134 bytes
-SHA1 (patch-gtime-test.c) = ebffb36a79bf9d943a47420e2b9cbd1860f800cf
diff -r e17eeea4444d -r d27ee41030e0 security/guardtime/patches/patch-gtime-test.c
--- a/security/guardtime/patches/patch-gtime-test.c Mon Mar 08 11:23:47 2021 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,48 +0,0 @@
-$NetBSD: patch-gtime-test.c,v 1.1 2014/05/27 09:59:53 joerg Exp $
-
---- gtime-test.c.orig 2014-05-26 19:10:53.000000000 +0000
-+++ gtime-test.c
-@@ -1173,7 +1173,6 @@ int parse_digest(char *arg, GTDataHash *
- int alg_id;
- const EVP_MD *evp_md;
- int len;
-- GTDataHash *tmp_data_hash = NULL;
- unsigned char* tmp_hash = NULL;
- size_t tmp_length;
-
-@@ -1203,13 +1202,6 @@ int parse_digest(char *arg, GTDataHash *
- }
- }
-
-- tmp_data_hash = (GTDataHash *) GT_malloc(sizeof(GTDataHash));
-- if (tmp_data_hash == NULL) {
-- res = GT_OUT_OF_MEMORY;
-- goto e;
-- }
-- tmp_data_hash->digest = NULL;
-- tmp_data_hash->context = NULL;
- tmp_length = EVP_MD_size(evp_md);
- tmp_hash = (unsigned char *) GT_malloc(tmp_length);
- if (tmp_hash == NULL) {
-@@ -1233,20 +1225,12 @@ int parse_digest(char *arg, GTDataHash *
- tmp_hash[j] = ch;
- }
- }
-- tmp_data_hash->digest = tmp_hash;
-- tmp_hash = NULL;
-- tmp_data_hash->digest_length = tmp_length;
-- tmp_data_hash->algorithm = alg_id;
-- *data_hash = tmp_data_hash;
-- tmp_data_hash = NULL;
--
-- res = GT_OK;
-+ res = GTDataHash_fromAlgorithmAndValue(alg_id, tmp_hash, tmp_length, data_hash);
-
- e:
- if (res == GT_OUT_OF_MEMORY)
- fprintf(stderr, "%s\n", GT_getErrorString(res));
- GT_free(tmp_hash);
-- GTDataHash_free(tmp_data_hash);
- return res;
- }
-
diff -r e17eeea4444d -r d27ee41030e0 security/libguardtime/DESCR
--- a/security/libguardtime/DESCR Mon Mar 08 11:23:47 2021 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,3 +0,0 @@
-The GuardTime Client SDK for C is intended for software developers who
-want to integrate GuardTime Keyless Signature Service (KSS) into their
-C and C++ based applications.
diff -r e17eeea4444d -r d27ee41030e0 security/libguardtime/Makefile
--- a/security/libguardtime/Makefile Mon Mar 08 11:23:47 2021 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,27 +0,0 @@
-# $NetBSD: Makefile,v 1.22 2020/05/22 10:55:50 adam Exp $
-
-DISTNAME= libgt-0.3.13
-PKGNAME= ${DISTNAME:S/gt/guardtime/}
-PKGREVISION= 17
-CATEGORIES= security
-MASTER_SITES= http://download.guardtime.com/
-
-MAINTAINER= pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE= http://www.guardtime.com/
-COMMENT= GuardTime Client C SDK
-LICENSE= apache-2.0
-
-BROKEN= "Fails to build with OpenSSL 1.1"
-
-WRKSRC= ${WRKDIR}/${DISTNAME:S/-src//}
-
-GNU_CONFIGURE= yes
-MAKE_FILE= GNUmakefile
-USE_LIBTOOL= yes
-USE_TOOLS+= gmake
-
-CONFIGURE_ARGS+= --with-cadir=${SSLCERTS}
-
-.include "../../security/openssl/buildlink3.mk"
-.include "../../www/curl/buildlink3.mk"
-.include "../../mk/bsd.pkg.mk"
diff -r e17eeea4444d -r d27ee41030e0 security/libguardtime/PLIST
--- a/security/libguardtime/PLIST Mon Mar 08 11:23:47 2021 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,10 +0,0 @@
-@comment $NetBSD: PLIST,v 1.2 2014/03/31 10:20:26 fhajny Exp $
-include/gt_base.h
-include/gt_http.h
-include/gt_png.h
-lib/libgtbase.la
-lib/libgthttp.la
-lib/libgtpng.la
-lib/pkgconfig/libgt.pc
-share/doc/libgt/changelog
-share/doc/libgt/license.txt
diff -r e17eeea4444d -r d27ee41030e0 security/libguardtime/buildlink3.mk
--- a/security/libguardtime/buildlink3.mk Mon Mar 08 11:23:47 2021 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,16 +0,0 @@
-# $NetBSD: buildlink3.mk,v 1.19 2020/05/22 10:55:50 adam Exp $
-
-BUILDLINK_TREE+= libguardtime
-
-.if !defined(LIBGUARDTIME_BUILDLINK3_MK)
-LIBGUARDTIME_BUILDLINK3_MK:=
-
-BUILDLINK_API_DEPENDS.libguardtime+= libguardtime>=0.3.11
-BUILDLINK_ABI_DEPENDS.libguardtime+= libguardtime>=0.3.13nb17
-BUILDLINK_PKGSRCDIR.libguardtime?= ../../security/libguardtime
-
-.include "../../security/openssl/buildlink3.mk"
-.include "../../www/curl/buildlink3.mk"
-.endif
-
-BUILDLINK_TREE+= -libguardtime
diff -r e17eeea4444d -r d27ee41030e0 security/libguardtime/distinfo
--- a/security/libguardtime/distinfo Mon Mar 08 11:23:47 2021 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-$NetBSD: distinfo,v 1.3 2015/11/04 01:17:48 agc Exp $
-
-SHA1 (libgt-0.3.13.tar.gz) = 0183b6bd245c5a450b91de180d6db869be1623ec
-RMD160 (libgt-0.3.13.tar.gz) = 5a19f41abe9dfd14ecc030fcdb46e4e17d5d2658
-SHA512 (libgt-0.3.13.tar.gz) = b12a147c873da7f1da6a0fedc92583718ff808606c25d65390ea7e93437809b59014c33b1bb8c52e53007a5bb78fed85cc0caa0e463c4a2c8a0107589effee11
-Size (libgt-0.3.13.tar.gz) = 529552 bytes
Home |
Main Index |
Thread Index |
Old Index