pkgsrc-WIP-changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

remove git-crypt, imported as security/git-crypt



Module Name:	pkgsrc-wip
Committed By:	nikita <nikita%NetBSD.org@localhost>
Pushed By:	nikita
Date:		Mon Dec 5 23:14:55 2022 +0100
Changeset:	171bdd3a9034f2a05c876c2862c9c1fcc2b56671

Modified Files:
	Makefile
Removed Files:
	git-crypt/DESCR
	git-crypt/Makefile
	git-crypt/PLIST
	git-crypt/distinfo
	git-crypt/patches/patch-util.cpp

Log Message:
remove git-crypt, imported as security/git-crypt

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=171bdd3a9034f2a05c876c2862c9c1fcc2b56671

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 Makefile                         |  1 -
 git-crypt/DESCR                  |  9 ---------
 git-crypt/Makefile               | 20 --------------------
 git-crypt/PLIST                  |  2 --
 git-crypt/distinfo               |  6 ------
 git-crypt/patches/patch-util.cpp | 19 -------------------
 6 files changed, 57 deletions(-)

diffs:
diff --git a/Makefile b/Makefile
index daf622ff7d..ec87c6eae3 100644
--- a/Makefile
+++ b/Makefile
@@ -1149,7 +1149,6 @@ SUBDIR+=	ghostscript-cidfonts-ryumin
 SUBDIR+=	giggle
 SUBDIR+=	gimp-jxl
 SUBDIR+=	gin
-SUBDIR+=	git-crypt
 SUBDIR+=	git-docs-html
 SUBDIR+=	git-extras
 SUBDIR+=	git-modes-git
diff --git a/git-crypt/DESCR b/git-crypt/DESCR
deleted file mode 100644
index 88f3551f6f..0000000000
--- a/git-crypt/DESCR
+++ /dev/null
@@ -1,9 +0,0 @@
-git-crypt enables transparent encryption and decryption of files in a
-git repository.  Files which you choose to protect are encrypted when
-committed, and decrypted when checked out.  git-crypt lets you freely
-share a repository containing a mix of public and private content.
-git-crypt gracefully degrades, so developers without the secret key can
-still clone and commit to a repository with encrypted files.  This lets
-you store your secret material (such as keys or passwords) in the same
-repository as your code, without requiring you to lock down your entire
-repository.
diff --git a/git-crypt/Makefile b/git-crypt/Makefile
deleted file mode 100644
index d648c78e3e..0000000000
--- a/git-crypt/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-# $NetBSD$
-
-DISTNAME=	git-crypt-0.6.0
-CATEGORIES=	devel
-MASTER_SITES=	https://www.agwa.name/projects/git-crypt/downloads/
-
-MAINTAINER=	pkgsrc-users%NetBSD.org@localhost
-HOMEPAGE=	https://www.agwa.name/projects/git-crypt/
-COMMENT=	Transparent file encryption in git
-LICENSE=	gnu-gpl-v3
-
-USE_LANGUAGES=	c++11
-
-SUBST_CLASSES+=			explicit_memset
-SUBST_STAGE.explicit_memset=	pre-configure
-SUBST_MESSAGE.explicit_memset=	Avoid conflicts with explicit_memset(3)
-SUBST_FILES.explicit_memset=	*.cpp *.hpp
-SUBST_SED.explicit_memset+=	-e 's,explicit_memset,gitcrypt_explicit_memset,g'
-
-.include "../../mk/bsd.pkg.mk"
diff --git a/git-crypt/PLIST b/git-crypt/PLIST
deleted file mode 100644
index 5a88f6f1c4..0000000000
--- a/git-crypt/PLIST
+++ /dev/null
@@ -1,2 +0,0 @@
-@comment $NetBSD$
-bin/git-crypt
diff --git a/git-crypt/distinfo b/git-crypt/distinfo
deleted file mode 100644
index 47ef65e941..0000000000
--- a/git-crypt/distinfo
+++ /dev/null
@@ -1,6 +0,0 @@
-$NetBSD$
-
-RMD160 (git-crypt-0.6.0.tar.gz) = 131bdfca984dc5c3f0445f58d683b8df88d2c83b
-SHA512 (git-crypt-0.6.0.tar.gz) = e72c57a8e3168fcdb68cde352a6ab0e397675916dfa1e4266a852e21bcbda313f9c9a58a7d6a827f33fe549f09afbb8008509a6bf1859d6804cf36ffab5c758d
-Size (git-crypt-0.6.0.tar.gz) = 57275 bytes
-SHA1 (patch-util.cpp) = ed9dee74f7e8d50f72670542323013d0a2d44464
diff --git a/git-crypt/patches/patch-util.cpp b/git-crypt/patches/patch-util.cpp
deleted file mode 100644
index 7aed657b35..0000000000
--- a/git-crypt/patches/patch-util.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-$NetBSD$
-
-Keep the C++ streams synchronized to the standard C streams on NetBSD otherwise
-it is not possible to read via std::cin.
-
-XXX: Why?
-
---- util.cpp.orig	2017-11-26 18:24:03.000000000 +0000
-+++ util.cpp
-@@ -141,7 +141,9 @@ static void	init_std_streams_platform ()
- void		init_std_streams ()
- {
- 	// The following two lines are essential for achieving good performance:
-+#ifndef __NetBSD__
- 	std::ios_base::sync_with_stdio(false);
-+#endif
- 	std::cin.tie(0);
- 
- 	std::cin.exceptions(std::ios_base::badbit);


Home | Main Index | Thread Index | Old Index