From owner-svn-ports-all@freebsd.org Mon Aug 28 21:28:19 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9B7E8E143BD; Mon, 28 Aug 2017 21:28:19 +0000 (UTC) (envelope-from romain@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 mx1.freebsd.org (Postfix) with ESMTPS id 7017264E6A; Mon, 28 Aug 2017 21:28:19 +0000 (UTC) (envelope-from romain@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v7SLSIpE051890; Mon, 28 Aug 2017 21:28:18 GMT (envelope-from romain@FreeBSD.org) Received: (from romain@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v7SLSIKi051886; Mon, 28 Aug 2017 21:28:18 GMT (envelope-from romain@FreeBSD.org) Message-Id: <201708282128.v7SLSIKi051886@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: romain set sender to romain@FreeBSD.org using -f From: =?UTF-8?Q?Romain_Tarti=c3=a8re?= Date: Mon, 28 Aug 2017 21:28:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r448888 - in head/sysutils: . aptly X-SVN-Group: ports-head X-SVN-Commit-Author: romain X-SVN-Commit-Paths: in head/sysutils: . aptly X-SVN-Commit-Revision: 448888 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.23 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: Mon, 28 Aug 2017 21:28:19 -0000 Author: romain Date: Mon Aug 28 21:28:17 2017 New Revision: 448888 URL: https://svnweb.freebsd.org/changeset/ports/448888 Log: aptly is a swiss army knife for Debian repository management: it allows you to mirror remote repositories, manage local package repositories, take snapshots, pull new versions of packages along with dependencies, publish as Debian repository. WWW: https://www.aptly.info/ Added: head/sysutils/aptly/ head/sysutils/aptly/Makefile (contents, props changed) head/sysutils/aptly/distinfo (contents, props changed) head/sysutils/aptly/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Mon Aug 28 19:27:28 2017 (r448887) +++ head/sysutils/Makefile Mon Aug 28 21:28:17 2017 (r448888) @@ -43,6 +43,7 @@ SUBDIR += apachetop SUBDIR += apcpwr SUBDIR += apcupsd + SUBDIR += aptly SUBDIR += arcconf SUBDIR += archivemount SUBDIR += areca-cli Added: head/sysutils/aptly/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/aptly/Makefile Mon Aug 28 21:28:17 2017 (r448888) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= aptly +PORTVERSION= 1.1.1 +DISTVERSIONPREFIX=v +CATEGORIES= sysutils + +MAINTAINER= romain@FreeBSD.org +COMMENT= Debian repository management tool + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= go + +USE_GITHUB= yes +GH_ACCOUNT= smira +GO_PKGNAME= github.com/smira/aptly + +PLIST_FILES= bin/aptly + +.include Added: head/sysutils/aptly/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/aptly/distinfo Mon Aug 28 21:28:17 2017 (r448888) @@ -0,0 +1,3 @@ +TIMESTAMP = 1503643522 +SHA256 (smira-aptly-v1.1.1_GH0.tar.gz) = 92aa5caa12d756cb7469fa5772a03d7631b73d655b7329408a4d597ee8fb0ba4 +SIZE (smira-aptly-v1.1.1_GH0.tar.gz) = 18403464 Added: head/sysutils/aptly/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/aptly/pkg-descr Mon Aug 28 21:28:17 2017 (r448888) @@ -0,0 +1,6 @@ +aptly is a swiss army knife for Debian repository management: it allows you to +mirror remote repositories, manage local package repositories, take snapshots, +pull new versions of packages along with dependencies, publish as Debian +repository. + +WWW: https://www.aptly.info/