From nobody Mon Oct 25 14:09:30 2021 X-Original-To: dev-commits-ports-main@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id EB072180BBA6; Mon, 25 Oct 2021 14:09:32 +0000 (UTC) (envelope-from git@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HdGzZ40T9z3thp; Mon, 25 Oct 2021 14:09:30 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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 did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3033E1FAA; Mon, 25 Oct 2021 14:09:30 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 19PE9UsZ015570; Mon, 25 Oct 2021 14:09:30 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 19PE9U7p015569; Mon, 25 Oct 2021 14:09:30 GMT (envelope-from git) Date: Mon, 25 Oct 2021 14:09:30 GMT Message-Id: <202110251409.19PE9U7p015569@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Danilo Egea Gondolfo Subject: git: 15c86847a0af - main - devel/aws-c-compression: Add new port List-Id: Commits to the main branch of the FreeBSD ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-main List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-main@freebsd.org X-BeenThere: dev-commits-ports-main@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: danilo X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 15c86847a0af526ce2f95acbb1c6d2e9c4ec3872 Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by danilo: URL: https://cgit.FreeBSD.org/ports/commit/?id=15c86847a0af526ce2f95acbb1c6d2e9c4ec3872 commit 15c86847a0af526ce2f95acbb1c6d2e9c4ec3872 Author: Danilo Egea Gondolfo AuthorDate: 2021-10-23 12:38:43 +0000 Commit: Danilo Egea Gondolfo CommitDate: 2021-10-25 14:04:50 +0000 devel/aws-c-compression: Add new port This is a cross-platform C99 implementation of compression algorithms such as gzip, and huffman encoding/decoding. --- devel/aws-c-compression/Makefile | 25 +++++++++++++++++++++++++ devel/aws-c-compression/distinfo | 3 +++ devel/aws-c-compression/pkg-descr | 4 ++++ devel/aws-c-compression/pkg-plist | 8 ++++++++ 4 files changed, 40 insertions(+) diff --git a/devel/aws-c-compression/Makefile b/devel/aws-c-compression/Makefile new file mode 100644 index 000000000000..f5d93e3cbc9d --- /dev/null +++ b/devel/aws-c-compression/Makefile @@ -0,0 +1,25 @@ +# Created by: Danilo Egea Gondolfo + +PORTNAME= aws-c-compression +PORTVERSION= 0.2.14 +DISTVERSIONPREFIX= v +CATEGORIES= devel + +MAINTAINER= danilo@FreeBSD.org +COMMENT= C99 implementation of compression algorithms + +LICENSE= APACHE20 + +LIB_DEPENDS= libaws-c-common.so:devel/aws-c-common + +USES= cmake compiler:c11 + +USE_GITHUB= yes +GH_ACCOUNT= awslabs + +CMAKE_ARGS+= -DBUILD_TESTING=OFF -DBUILD_SHARED_LIBS=ON \ + -DCMAKE_PREFIX_PATH=${LOCALBASE} + +USE_LDCONFIG= yes + +.include diff --git a/devel/aws-c-compression/distinfo b/devel/aws-c-compression/distinfo new file mode 100644 index 000000000000..77fd7dcdf0ad --- /dev/null +++ b/devel/aws-c-compression/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1634977434 +SHA256 (awslabs-aws-c-compression-v0.2.14_GH0.tar.gz) = 8737863ced57d92f5a0bdde554bf0fe70eaa76aae118fec09a6c361dfc55d0d5 +SIZE (awslabs-aws-c-compression-v0.2.14_GH0.tar.gz) = 32960 diff --git a/devel/aws-c-compression/pkg-descr b/devel/aws-c-compression/pkg-descr new file mode 100644 index 000000000000..31fb873a4a44 --- /dev/null +++ b/devel/aws-c-compression/pkg-descr @@ -0,0 +1,4 @@ +This is a cross-platform C99 implementation of compression +algorithms such as gzip, and huffman encoding/decoding. + +WWW: https://github.com/awslabs/aws-c-compression diff --git a/devel/aws-c-compression/pkg-plist b/devel/aws-c-compression/pkg-plist new file mode 100644 index 000000000000..e1dca80147f2 --- /dev/null +++ b/devel/aws-c-compression/pkg-plist @@ -0,0 +1,8 @@ +include/aws/compression/compression.h +include/aws/compression/exports.h +include/aws/compression/huffman.h +lib/aws-c-compression/cmake/aws-c-compression-config.cmake +lib/aws-c-compression/cmake/shared/aws-c-compression-targets-%%CMAKE_BUILD_TYPE%%.cmake +lib/aws-c-compression/cmake/shared/aws-c-compression-targets.cmake +lib/libaws-c-compression.so +lib/libaws-c-compression.so.1.0.0