diff options
author | gahr <gahr@FreeBSD.org> | 2012-08-20 18:04:13 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2012-08-20 18:04:13 +0800 |
commit | f6ab43415bc2d6ab0ba26e8d28b357352a487571 (patch) | |
tree | cac6f48477470396266c563c1f8b70c7a329f87a /CHANGES | |
parent | 5d8dc91e457d2518fc902ecede2100a98a7d1262 (diff) | |
download | freebsd-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-- | CHANGES | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -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 |