aboutsummaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorPietro Cerutti <gahr@FreeBSD.org>2012-08-20 10:04:13 +0000
committerPietro Cerutti <gahr@FreeBSD.org>2012-08-20 10:04:13 +0000
commit2a7de8b29fbf6ab4526a2fee2cf0eba293baf306 (patch)
treecac6f48477470396266c563c1f8b70c7a329f87a /CHANGES
parent12aedcaf95eae6d8b910a2df88a67d65139ac13c (diff)
downloadports-2a7de8b29fbf6ab4526a2fee2cf0eba293baf306.tar.gz
ports-2a7de8b29fbf6ab4526a2fee2cf0eba293baf306.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
Notes
Notes: svn path=/head/; revision=302794
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