diff options
author | Mateusz Piotrowski <0mp@FreeBSD.org> | 2018-10-25 09:48:16 +0000 |
---|---|---|
committer | Mateusz Piotrowski <0mp@FreeBSD.org> | 2018-10-25 09:48:16 +0000 |
commit | 11960fcc60c78204fe6201f3c7a25b0b25ed32a5 (patch) | |
tree | 89b82f118055738d4fa58cdfd39bb6e3655baf0b | |
parent | db4834be64aaf556efef222a5fc6f2469e06d311 (diff) | |
download | ports-11960fcc60c78204fe6201f3c7a25b0b25ed32a5.tar.gz ports-11960fcc60c78204fe6201f3c7a25b0b25ed32a5.zip |
misc/exercism: Unbreak the port
- Fix LICENSE_FILE to unbreak the port.
- Use DISTVERSION instead of PORTVERSION as suggested by the handbook.
- Move GH_TUPLE out of the USE* section.
Reviewed by: krion
Approved by: krion (mentor), maintainer timeout
Differential Revision: https://reviews.freebsd.org/D17489
Notes
Notes:
svn path=/head/; revision=482963
-rw-r--r-- | misc/exercism/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/misc/exercism/Makefile b/misc/exercism/Makefile index 5226ec16040e..4656d362b285 100644 --- a/misc/exercism/Makefile +++ b/misc/exercism/Makefile @@ -2,21 +2,20 @@ # $FreeBSD$ PORTNAME= exercism -PORTVERSION= 3.0.9 DISTVERSIONPREFIX= v +DISTVERSION= 3.0.9 CATEGORIES= misc MAINTAINER= swills@FreeBSD.org COMMENT= CLI client for exercism.io LICENSE= MIT -LICENSE_FILE= LICENSE - -BROKEN= wrong LICENSE_FILE +LICENSE_FILE= ${WRKSRC}/LICENSE BUILD_DEPENDS= ${LOCALBASE}/bin/go:lang/go USE_GITHUB= yes + GH_TUPLE= \ exercism:cli:v${PORTVERSION}:DEFAULT/src/github.com/exercism/cli \ armon:consul-api:eb2c6b5:consulapi/src/github.com/armon/consul-api \ |