aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGES
diff options
context:
space:
mode:
authorgahr <gahr@FreeBSD.org>2012-08-20 18:04:13 +0800
committergahr <gahr@FreeBSD.org>2012-08-20 18:04:13 +0800
commitf6ab43415bc2d6ab0ba26e8d28b357352a487571 (patch)
treecac6f48477470396266c563c1f8b70c7a329f87a /CHANGES
parent5d8dc91e457d2518fc902ecede2100a98a7d1262 (diff)
downloadfreebsd-ports-gnome-f6ab43415bc2d6ab0ba26e8d28b357352a487571.tar.gz
freebsd-ports-gnome-f6ab43415bc2d6ab0ba26e8d28b357352a487571.tar.zst
freebsd-ports-gnome-f6ab43415bc2d6ab0ba26e8d28b357352a487571.zip
- Add support for fetching from GitHub in bsd.sites.mk
- Document the mechanism in CHANGES - Add www/tivoka (a JSON-RPC client/server library in PHP) which uses the GitHub mechanism Approved by: beat (portmgr) after exp-run
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES22
1 files changed, 22 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index db2415b0826c..045bd50a3b08 100644
--- a/CHANGES
+++ b/CHANGES
@@ -10,6 +10,28 @@ in the release notes and/or placed into UPDATING.
All ports committers are allowed to commit to this file.
+20120820:
+AUTHOR: gahr@FreeBSD.org
+
+ * GitHub support has been integrated into bsd.sites.mk. In order to
+ fetch distfiles from GitHub, a port must define USE_GITHUB along
+ with the following variables:
+
+ GH_ACCOUNT - account name of the GitHub user hosting the project
+ default: not set, mandatory
+
+ GH_PROJECT - name of the project on GitHub
+ default: ${PORTNAME}
+
+ GH_TAGNAME - name of the tag to download (master, 2.0.1, ...)
+ default: ${DISTVERSION}
+
+ GH_COMMIT - first 7 digits of the commit that generated GH_TAGNAME
+ (man git-describe(1))
+ default: not set, mandatory
+
+ The port www/tivoka is an example how to use this mechanism.
+
20120726:
AUTHOR: bapt@FreeBSD.org