From owner-svn-ports-head@freebsd.org Mon Feb 24 12:44:11 2020 Return-Path: Delivered-To: svn-ports-head@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 3780825BE69; Mon, 24 Feb 2020 12:44:11 +0000 (UTC) (envelope-from db@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) server-signature RSA-PSS (4096 bits) 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 48R1wB4q66z42d3; Mon, 24 Feb 2020 12:44:10 +0000 (UTC) (envelope-from db@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 5844E256E3; Mon, 24 Feb 2020 12:44:09 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 01OCi8mN090394; Mon, 24 Feb 2020 12:44:08 GMT (envelope-from db@FreeBSD.org) Received: (from db@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 01OCi7gK090387; Mon, 24 Feb 2020 12:44:07 GMT (envelope-from db@FreeBSD.org) Message-Id: <202002241244.01OCi7gK090387@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: db set sender to db@FreeBSD.org using -f From: Diane Bruce Date: Mon, 24 Feb 2020 12:44:07 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r526965 - in head/comms: . digiham X-SVN-Group: ports-head X-SVN-Commit-Author: db X-SVN-Commit-Paths: in head/comms: . digiham X-SVN-Commit-Revision: 526965 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 24 Feb 2020 12:44:11 -0000 Author: db Date: Mon Feb 24 12:44:07 2020 New Revision: 526965 URL: https://svnweb.freebsd.org/changeset/ports/526965 Log: This a simple set of command-line tools that is intended to be used to decode digital modulations used by ham radio operators. The main focus is on digital voice modes. Right now this project enables you to decode DMR and YSF. PR: ports/244357 Submitted by: vvelox@vvelox.net Added: head/comms/digiham/ head/comms/digiham/Makefile (contents, props changed) head/comms/digiham/distinfo (contents, props changed) head/comms/digiham/pkg-descr (contents, props changed) head/comms/digiham/pkg-plist (contents, props changed) Modified: head/comms/Makefile Modified: head/comms/Makefile ============================================================================== --- head/comms/Makefile Mon Feb 24 12:32:32 2020 (r526964) +++ head/comms/Makefile Mon Feb 24 12:44:07 2020 (r526965) @@ -34,6 +34,7 @@ SUBDIR += deforaos-phone SUBDIR += dfu-programmer SUBDIR += dfu-util + SUBDIR += digiham SUBDIR += direwolf SUBDIR += dsd SUBDIR += dump1090 Added: head/comms/digiham/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/digiham/Makefile Mon Feb 24 12:44:07 2020 (r526965) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= digiham +DISTVERSION= 0.3.0 +CATEGORIES= comms hamradio + +MAINTAINER= vvelox@vvelox.net +COMMENT= Tools for decoding digital ham communication + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libmbe.so:comms/mbelib + +USES= cmake +USE_GITHUB= yes +GH_ACCOUNT= jketterl +GH_PROJECT= digiham + +post-install: + cd ${WRKSRC}/examples && ${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR} + +.include Added: head/comms/digiham/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/digiham/distinfo Mon Feb 24 12:44:07 2020 (r526965) @@ -0,0 +1,3 @@ +TIMESTAMP = 1582527683 +SHA256 (jketterl-digiham-0.3.0_GH0.tar.gz) = 81242bca840a78c7aca0ba3a96fd3cb442ad41373085b4ddd0cfaac04fea7375 +SIZE (jketterl-digiham-0.3.0_GH0.tar.gz) = 68345 Added: head/comms/digiham/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/digiham/pkg-descr Mon Feb 24 12:44:07 2020 (r526965) @@ -0,0 +1,7 @@ +This a simple set of command-line tools that is intended to +be used to decode digital modulations used by ham radio +operators. The main focus is on digital voice modes. + +Right now this project enables you to decode DMR and YSF. + +WWW: https://github.com/jketterl/digiham Added: head/comms/digiham/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/digiham/pkg-plist Mon Feb 24 12:44:07 2020 (r526965) @@ -0,0 +1,10 @@ +bin/rrc_filter +bin/dc_block +bin/gfsk_demodulator +bin/dmr_decoder +bin/ysf_decoder +bin/mbe_synthesizer +bin/digitalvoice_filter +bin/fsk_demodulator +bin/pocsag_decoder +%%EXAMPLESDIR%%/dmr-decoder.sh