From owner-svn-ports-all@freebsd.org Sat Sep 19 01:20:54 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 264AA3F6DB6; Sat, 19 Sep 2020 01:20:54 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4BtXvp0G8Sz4Q0h; Sat, 19 Sep 2020 01:20:54 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E0C7E23FB3; Sat, 19 Sep 2020 01:20:53 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 08J1Krho048751; Sat, 19 Sep 2020 01:20:53 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 08J1KrXJ048748; Sat, 19 Sep 2020 01:20:53 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <202009190120.08J1KrXJ048748@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Sat, 19 Sep 2020 01:20:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r548932 - in head/security: . stegify X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/security: . stegify X-SVN-Commit-Revision: 548932 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Sep 2020 01:20:54 -0000 Author: yuri Date: Sat Sep 19 01:20:52 2020 New Revision: 548932 URL: https://svnweb.freebsd.org/changeset/ports/548932 Log: New port: security/stegify: Steganography software Added: head/security/stegify/ head/security/stegify/Makefile (contents, props changed) head/security/stegify/distinfo (contents, props changed) head/security/stegify/pkg-descr (contents, props changed) Modified: head/security/Makefile Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Sat Sep 19 00:52:56 2020 (r548931) +++ head/security/Makefile Sat Sep 19 01:20:52 2020 (r548932) @@ -1212,6 +1212,7 @@ SUBDIR += sst SUBDIR += starttls SUBDIR += steghide + SUBDIR += stegify SUBDIR += step-certificates SUBDIR += step-cli SUBDIR += stoken Added: head/security/stegify/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/stegify/Makefile Sat Sep 19 01:20:52 2020 (r548932) @@ -0,0 +1,24 @@ +# $FreeBSD$ + +PORTNAME= stegify +DISTVERSIONPREFIX= v +DISTVERSION= 1.2-2 +DISTVERSIONSUFFIX= -g62518ca +CATEGORIES= security graphics + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Steganography software + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= go + +USE_GITHUB= yes +GH_ACCOUNT= DimitarPetrov + +GO_PKGNAME= github.com/${GH_ACCOUNT}/${PORTNAME} + +PLIST_FILES= bin/${PORTNAME} + +.include Added: head/security/stegify/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/stegify/distinfo Sat Sep 19 01:20:52 2020 (r548932) @@ -0,0 +1,3 @@ +TIMESTAMP = 1600477414 +SHA256 (DimitarPetrov-stegify-v1.2-2-g62518ca_GH0.tar.gz) = 0bf00d0f3531cdb43677545b095068465e5279ab374d82d652c079ee1e78690a +SIZE (DimitarPetrov-stegify-v1.2-2-g62518ca_GH0.tar.gz) = 19236264 Added: head/security/stegify/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/stegify/pkg-descr Sat Sep 19 01:20:52 2020 (r548932) @@ -0,0 +1,5 @@ +stegify is a simple command line tool capable of fully transparent hiding any +file within an image or set of images. This technique is known as LSB (Least +Significant Bit) steganography + +WWW: https://github.com/DimitarPetrov/stegify