Date: Sat, 25 Mar 2017 11:44:37 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r436897 - in head/security: . kickpass kickpass/files Message-ID: <201703251144.v2PBibTi059455@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Sat Mar 25 11:44:37 2017 New Revision: 436897 URL: https://svnweb.freebsd.org/changeset/ports/436897 Log: Kickpass is a stupid simple password safe. It keep each password in a specific safe, protected with modern cryptography. Its main user interface is command line. WWW: https://github.com/paulfariello/kickpass Added: head/security/kickpass/ head/security/kickpass/Makefile (contents, props changed) head/security/kickpass/distinfo (contents, props changed) head/security/kickpass/files/ head/security/kickpass/files/patch-CMakeLists.txt (contents, props changed) head/security/kickpass/files/patch-lib_storage.c (contents, props changed) head/security/kickpass/files/patch-src_main.c (contents, props changed) head/security/kickpass/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Mar 25 11:18:34 2017 (r436896) +++ head/security/Makefile Sat Mar 25 11:44:37 2017 (r436897) @@ -286,6 +286,7 @@ SUBDIR += keyprint SUBDIR += kf5-kdesu SUBDIR += kgpg-kde4 + SUBDIR += kickpass SUBDIR += knock SUBDIR += knocker SUBDIR += kpcli Added: head/security/kickpass/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/kickpass/Makefile Sat Mar 25 11:44:37 2017 (r436897) @@ -0,0 +1,31 @@ +# $FreeBSD$ + +PORTNAME= kickpass +PORTVERSION= 0.1.1 +DISTVERSIONPREFIX= v +CATEGORIES= security + +MAINTAINER= bapt@FreeBSD.irg +COMMENT= Stupid simple password safe + +LICENSE= MIT + +LIB_DEPENDS= libsodium.so:security/libsodium + +USES= cmake +USE_XORG= x11 + +BROKEN_FreeBSD_10= requires reallocarray(3) + +PLIST_FILES= bin/kickpass \ + lib/libkickpass.so \ + lib/libkickpass.so.0 \ + lib/libkickpass.so.0.1.1 \ + share/man/man1/kickpass.1 \ + share/zsh/site-functions/_kickpass + +USE_GITHUB= yes +GH_ACCOUNT= paulfariello +USE_LDCONFIG= yes + +.include <bsd.port.mk> Added: head/security/kickpass/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/kickpass/distinfo Sat Mar 25 11:44:37 2017 (r436897) @@ -0,0 +1,3 @@ +TIMESTAMP = 1488359644 +SHA256 (paulfariello-kickpass-v0.1.1_GH0.tar.gz) = 2e58b2d857a7d0fd8864918c920b7897d2b4712485fd43fcb5536df415606b4a +SIZE (paulfariello-kickpass-v0.1.1_GH0.tar.gz) = 25748 Added: head/security/kickpass/files/patch-CMakeLists.txt ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/kickpass/files/patch-CMakeLists.txt Sat Mar 25 11:44:37 2017 (r436897) @@ -0,0 +1,11 @@ +--- CMakeLists.txt.orig 2017-03-25 11:34:22 UTC ++++ CMakeLists.txt +@@ -121,7 +121,7 @@ set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -Wall + + install(TARGETS kickpass libkickpass RUNTIME DESTINATION bin LIBRARY DESTINATION lib) + install(FILES manual/kickpass.1 DESTINATION share/man/man1/) +-install(FILES extra/completion/zsh/_kickpass DESTINATION share/zsh/functions/Completion/Unix/) ++install(FILES extra/completion/zsh/_kickpass DESTINATION share/zsh/site-functions/) + + # Tests + enable_testing() Added: head/security/kickpass/files/patch-lib_storage.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/kickpass/files/patch-lib_storage.c Sat Mar 25 11:44:37 2017 (r436897) @@ -0,0 +1,10 @@ +--- lib/storage.c.orig 2017-03-25 11:32:36 UTC ++++ lib/storage.c +@@ -15,6 +15,7 @@ + */ + + #include <sys/types.h> ++#include <sys/endian.h> + + #include <stdlib.h> + #include <stdint.h> Added: head/security/kickpass/files/patch-src_main.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/kickpass/files/patch-src_main.c Sat Mar 25 11:44:37 2017 (r436897) @@ -0,0 +1,10 @@ +--- src/main.c.orig 2017-03-25 11:32:36 UTC ++++ src/main.c +@@ -15,7 +15,6 @@ + */ + + #include <getopt.h> +-#include <gpgme.h> + #include <stdio.h> + #include <stdlib.h> + #include <string.h> Added: head/security/kickpass/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/kickpass/pkg-descr Sat Mar 25 11:44:37 2017 (r436897) @@ -0,0 +1,5 @@ +Kickpass is a stupid simple password safe. It keep each password in a specific +safe, protected with modern cryptography. Its main user interface is command +line. + +WWW: https://github.com/paulfariello/kickpass
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703251144.v2PBibTi059455>