pkgsrc/devel/git-lfs/Makefile
tnn 1ca5ce6a63 git-lfs: update to 2.10.0
## 2.10.0 (21 January 2020)
This release introduces several new features, such as support for local paths in
remotes, Kerberos support, and official binaries for S390x and little-endian
64-bit PowerPC systems.  In addition, numerous bugs have been fixed and
miscellaneous issues have been addressed.

## 2.9.2 (12 December 2019)
This release fixes a few regressions, such as a possible nil pointer
dereference, a failure to retry batch requests, and a bug where repositories
could fail to be detected on Windows.

## 2.9.1 (25 November 2019)
This release fixes a few regressions, such as the ability to use HTTP/1.1 when
required, addresses a race condition, and switches the cookie jar parser to
something that's easier for distributions to package.

## 2.9.0 (17 October 2019)
This release adds support for DragonFly BSD, adds a new `git lfs dedup` command
to save space if the file system supports it, adds support for file URLs,
improves the performance when walking the repository, contains improvements
to use HTTP/2 when available and cookies when required, and numerous other bug
fixes, features, and modifications.

## 2.8.0 (23 July 2019)
This release adds support for SOCKS proxies and Windows junctions, adds native
packages for Debian 10 and similar distributions, reduces the number of
situations in which running `git lfs fetch --all` is required, improves
compatibility with Cygwin, and numerous other bug fixes and modifications.
2020-02-04 13:14:48 +00:00

30 lines
876 B
Makefile

# $NetBSD: Makefile,v 1.18 2020/02/04 13:14:48 tnn Exp $
DISTNAME= git-lfs-2.10.0
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_GITHUB:=git-lfs/}
GITHUB_TAG= v${PKGVERSION_NOREV}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= https://git-lfs.github.com/
COMMENT= Git extension for versioning large files
LICENSE= mit
NO_CONFIGURE= yes
USE_LANGUAGES= c
GO_SRCPATH= github.com/git-lfs/git-lfs
GO_DIST_BASE= ${PKGNAME_NOREV}
INSTALLATION_DIRS= bin
pre-build:
cp ${WRKSRC}/lfshttp/certs_openbsd.go ${WRKSRC}/lfshttp/certs_netbsd.go
# generate content for "git-lfs --help"
ln -sf ${GO} ${BUILDLINK_DIR}/bin/go
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} GOPATH=${WRKDIR} ${GO} generate github.com/git-lfs/git-lfs/commands
do-install:
${INSTALL_PROGRAM} ${WRKDIR}/bin/git-lfs ${DESTDIR}${PREFIX}/bin/git-lfs
.include "../../lang/go/go-package.mk"
.include "../../mk/bsd.pkg.mk"