From owner-svn-ports-head@freebsd.org Tue Mar 2 05:59:45 2021 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 931ED55BD92; Tue, 2 Mar 2021 05:59:45 +0000 (UTC) (envelope-from swills@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 4DqRKs3lqQz4swX; Tue, 2 Mar 2021 05:59:45 +0000 (UTC) (envelope-from swills@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 73BFD11843; Tue, 2 Mar 2021 05:59:45 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 1225xjeY001862; Tue, 2 Mar 2021 05:59:45 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 1225xiKR001858; Tue, 2 Mar 2021 05:59:44 GMT (envelope-from swills@FreeBSD.org) Message-Id: <202103020559.1225xiKR001858@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Tue, 2 Mar 2021 05:59:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r566934 - in head/sysutils: . ipfs-go-fs-repo-migrations X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/sysutils: . ipfs-go-fs-repo-migrations X-SVN-Commit-Revision: 566934 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.34 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: Tue, 02 Mar 2021 05:59:45 -0000 Author: swills Date: Tue Mar 2 05:59:44 2021 New Revision: 566934 URL: https://svnweb.freebsd.org/changeset/ports/566934 Log: sysutils/ipfs-go-fs-repo-migrations: create port Migrations for the filesystem repository of ipfs clients WWW: https://github.com/ipfs/fs-repo-migrations This will be useful for use with updates to sysutils/ipfs-go Added: head/sysutils/ipfs-go-fs-repo-migrations/ head/sysutils/ipfs-go-fs-repo-migrations/Makefile (contents, props changed) head/sysutils/ipfs-go-fs-repo-migrations/distinfo (contents, props changed) head/sysutils/ipfs-go-fs-repo-migrations/pkg-descr (contents, props changed) Modified: head/sysutils/Makefile (contents, props changed) Modified: head/sysutils/Makefile ============================================================================== --- head/sysutils/Makefile Tue Mar 2 05:59:29 2021 (r566933) +++ head/sysutils/Makefile Tue Mar 2 05:59:44 2021 (r566934) @@ -526,6 +526,7 @@ SUBDIR += ipad_charge SUBDIR += ipdbtools SUBDIR += ipfs-go + SUBDIR += ipfs-go-fs-repo-migrations SUBDIR += ipget SUBDIR += ipmitool SUBDIR += ipsc Added: head/sysutils/ipfs-go-fs-repo-migrations/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/ipfs-go-fs-repo-migrations/Makefile Tue Mar 2 05:59:44 2021 (r566934) @@ -0,0 +1,23 @@ +# $FreeBSD$ + +PORTNAME= ipfs-go-fs-repo-migrations +DISTVERSIONPREFIX= v +DISTVERSION= 1.7.1 +CATEGORIES= sysutils +MASTER_SITES= https://github.com/ipfs/fs-repo-migrations/archive/${DISTVERSIONFULL}${EXTRACT_SUFX}?dummy=/ + +MAINTAINER= swills@FreeBSD.org +COMMENT= Migrations for the filesystem repository of ipfs clients + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +ONLY_FOR_ARCHS= aarch64 amd64 i386 + +USES= go:modules + +WRKSRC= ${WRKDIR}/fs-repo-migrations-${DISTVERSION} +PLIST_FILES= bin/fs-repo-migrations +GO_TARGET= :fs-repo-migrations + +.include Added: head/sysutils/ipfs-go-fs-repo-migrations/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/ipfs-go-fs-repo-migrations/distinfo Tue Mar 2 05:59:44 2021 (r566934) @@ -0,0 +1,3 @@ +TIMESTAMP = 1614658121 +SHA256 (ipfs-go-fs-repo-migrations-v1.7.1.tar.gz) = 6fbd68a6ae5eabcebdd0dc81e909a069facb112c4fe0421f159ab58112a041c2 +SIZE (ipfs-go-fs-repo-migrations-v1.7.1.tar.gz) = 15268579 Added: head/sysutils/ipfs-go-fs-repo-migrations/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/ipfs-go-fs-repo-migrations/pkg-descr Tue Mar 2 05:59:44 2021 (r566934) @@ -0,0 +1,3 @@ +Migrations for the filesystem repository of ipfs clients + +WWW: https://github.com/ipfs/fs-repo-migrations