diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2015-03-19 16:44:57 +0000 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2015-03-19 16:44:57 +0000 |
commit | 8c3ba7dd69645111a5be67a88a5db832e1f66b0e (patch) | |
tree | 333dad5fd09a8658c4b53e58bbde008b7586e472 | |
parent | e1da598652d7c2fecb1501f34ab3b63c66bb6361 (diff) | |
download | FreeBSD-ports-8c3ba7dd69645111a5be67a88a5db832e1f66b0e.zip FreeBSD-ports-8c3ba7dd69645111a5be67a88a5db832e1f66b0e.tar.gz |
Update USE_GITHUB so it does not require GH_COMMIT.
Using this new scheme allows only setting the _tag_ or _commit hash_ in
GH_TAGNAME and not having to know the hash for a tag. This scheme will
download a tarball that has a different checksum than before due to a changed
directory name for extraction.
The following MASTER_SITES are provided to retain the old checksum and
directory structure (that require GH_COMMIT):
GH -> GHL
GITHUB -> GITHUB_LEGACY
Differential Revision: https://reviews.freebsd.org/D748
Submitted by: amdmi3
Reviewed by: mat, swills, antoine, bdrewery
With hat: portmgr
133 files changed, 166 insertions, 139 deletions
@@ -10,6 +10,20 @@ in the release notes and/or placed into UPDATING. All ports committers are allowed to commit to this file. +20150319: + AUTHOR: bdrewery@FreeBSD.org + + USE_GITHUB has been updated to make GH_COMMIT optional. Using this new + scheme allows only setting the _tag_ or _commit hash_ in GH_TAGNAME and + not having to know the hash for a tag. This scheme will download a tarball + that has a different checksum than before due to a changed directory name + for extraction. + + The following MASTER_SITES are provided to retain the old checksum and + directory structure (that require GH_COMMIT): + GH -> GHL + GITHUB -> GITHUB_LEGACY + 20150305: AUTHOR: olivierd@FreeBSD.org diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index 8cd9431..0d66ef9 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -1550,7 +1550,11 @@ _POSTMKINCLUDED= yes WRKDIR?= ${WRKDIRPREFIX}${.CURDIR}/work .if !defined(IGNORE_MASTER_SITE_GITHUB) && defined(USE_GITHUB) +. if defined(GH_COMMIT) WRKSRC?= ${WRKDIR}/${GH_ACCOUNT}-${GH_PROJECT}-${GH_COMMIT} +. else +WRKSRC?= ${WRKDIR}/${GH_PROJECT}-${GH_TAGNAME} +. endif .endif .if defined(NO_WRKSUBDIR) WRKSRC?= ${WRKDIR} diff --git a/Mk/bsd.sites.mk b/Mk/bsd.sites.mk index b74c1d1..22044a9 100644 --- a/Mk/bsd.sites.mk +++ b/Mk/bsd.sites.mk @@ -524,22 +524,29 @@ MASTER_SITE_GENTOO+= \ # # GH_COMMIT - first 7 digits of the commit that generated GH_TAGNAME # (man git-describe(1)) -# default: not set, mandatory +# if this is not set, archive corresponding to tag is fetched +# default: not set # .if defined(USE_GITHUB) -.if defined(GH_TAGNAME) && ${GH_TAGNAME} == master +. if defined(GH_TAGNAME) && ${GH_TAGNAME} == master IGNORE?= Using master as GH_TAGNAME is invalid. \ Must use a tag or commit hash so the upstream does \ not "reroll" as soon as the branch is updated -.endif -MASTER_SITE_GITHUB+= https://codeload.github.com/%SUBDIR% \ - http://codeload.github.com/%SUBDIR% +. endif +MASTER_SITE_GITHUB+= https://codeload.github.com/%SUBDIR% MASTER_SITE_GITHUB_CLOUD+= http://cloud.github.com/downloads/%SUBDIR% +MASTER_SITE_GITHUB_LEGACY+= https://codeload.github.com/%SUBDIR% MASTER_SITE_GITHUB_RELEASE+= https://github.com/%SUBDIR% -.if !defined(MASTER_SITES) || !${MASTER_SITES:MGH} && !${MASTER_SITES:MGHC} && !${MASTER_SITES:MGHR} -MASTER_SITES+= GH GHC GHR -.endif +. if defined(GH_COMMIT) +. if !defined(MASTER_SITES) || !${MASTER_SITES:MGHL} +MASTER_SITES+= GHL +. endif +. else +. if !defined(MASTER_SITES) || !${MASTER_SITES:MGH} && !${MASTER_SITES:MGHC} && !${MASTER_SITES:MGHR} +MASTER_SITES+= GH +. endif +. endif GH_ACCOUNT?= ${PORTNAME} GH_PROJECT?= ${PORTNAME} GH_TAGNAME?= ${DISTVERSION} @@ -1486,6 +1493,7 @@ MASTER_SITE_KERNEL_ORG+= \ MASTER_SITES_ABBREVS= CPAN:PERL_CPAN \ GH:GITHUB \ GHC:GITHUB_CLOUD \ + GHL:GITHUB_LEGACY \ GHR:GITHUB_RELEASE \ LODEV:LIBREOFFICE_DEV \ NL:NETLIB \ @@ -1499,8 +1507,9 @@ MASTER_SITES_SUBDIRS= APACHE_JAKARTA:${PORTNAME:S,-,/,}/source \ CSME:myports \ DEBIAN:pool/main/${PORTNAME:C/^((lib)?.).*$/\1/}/${PORTNAME} \ GCC:releases/${DISTNAME} \ - GITHUB:${GH_ACCOUNT}/${GH_PROJECT}/legacy.tar.gz/${GH_TAGNAME}?dummy=/ \ + GITHUB:${GH_ACCOUNT}/${GH_PROJECT}/tar.gz/${GH_TAGNAME}?dummy=/ \ GITHUB_CLOUD:${GH_ACCOUNT}/${GH_PROJECT}/ \ + GITHUB_LEGACY:${GH_ACCOUNT}/${GH_PROJECT}/legacy.tar.gz/${GH_TAGNAME}?dummy=/ \ GITHUB_RELEASE:${GH_ACCOUNT}/${GH_PROJECT}/archive/${DISTVERSIONPREFIX}${DISTVERSION:C/:(.)/\1/g}${DISTVERSIONSUFFIX}${EXTRACT_SUFX}?dummy=/ \ GNOME:sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} \ GIMP:${PORTNAME}/${PORTVERSION:R}/ \ diff --git a/archivers/snappy-java/Makefile b/archivers/snappy-java/Makefile index 6b5e885..0a48b5a 100644 --- a/archivers/snappy-java/Makefile +++ b/archivers/snappy-java/Makefile @@ -9,7 +9,7 @@ PORTNAME= snappy PORTVERSION= 1.0.4.1 PORTREVISION= 1 CATEGORIES= archivers java -MASTER_SITES= GITHUB:source1 \ +MASTER_SITES= GITHUB_LEGACY:source1 \ http://snappy.googlecode.com/files/:source2 \ LOCAL/jgh/archivers/${PORTNAME}/:source3 PKGNAMESUFFIX= java diff --git a/astro/gpscorrelate/Makefile b/astro/gpscorrelate/Makefile index 7c94f11..38cb736 100644 --- a/astro/gpscorrelate/Makefile +++ b/astro/gpscorrelate/Makefile @@ -5,7 +5,7 @@ PORTNAME= gpscorrelate PORTVERSION= 1.6.1 PORTREVISION= 3 CATEGORIES= astro geography -MASTER_SITES= GH +MASTER_SITES= GHL DIST_SUBDIR= repacked MAINTAINER= ports@FreeBSD.org diff --git a/audio/hydrogen-devel/Makefile b/audio/hydrogen-devel/Makefile index 1c500c6..bf75247 100644 --- a/audio/hydrogen-devel/Makefile +++ b/audio/hydrogen-devel/Makefile @@ -5,7 +5,7 @@ PORTNAME= hydrogen-devel PORTVERSION= 0.9.6r2 PORTREVISION= 1 CATEGORIES= audio -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= FreeBSD@ShaneWare.Biz COMMENT= Advanced drum machine diff --git a/audio/hydrogen/Makefile b/audio/hydrogen/Makefile index 7547f58..23b3e0e 100644 --- a/audio/hydrogen/Makefile +++ b/audio/hydrogen/Makefile @@ -4,7 +4,7 @@ PORTNAME= hydrogen PORTVERSION= 0.9.6.1 CATEGORIES= audio -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= FreeBSD@ShaneWare.Biz COMMENT= Advanced drum machine diff --git a/audio/id3ren/Makefile b/audio/id3ren/Makefile index 811b1de..e25bfd0 100644 --- a/audio/id3ren/Makefile +++ b/audio/id3ren/Makefile @@ -4,7 +4,7 @@ PORTNAME= id3ren PORTVERSION= 1.1b0 CATEGORIES= audio -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= crees@FreeBSD.org COMMENT= Rename MP3 files, edit tags, search, etc diff --git a/audio/nekobee/Makefile b/audio/nekobee/Makefile index 1038566..1672b91 100644 --- a/audio/nekobee/Makefile +++ b/audio/nekobee/Makefile @@ -5,7 +5,7 @@ PORTNAME= nekobee PORTVERSION= 0.1.8 PORTREVISION= 3 CATEGORIES= audio -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= ports@FreeBSD.org COMMENT= DSSI plugin that emulates the sound of the TB-303 Bassline diff --git a/audio/soundkonverter/Makefile b/audio/soundkonverter/Makefile index bea3b91..61647f7 100644 --- a/audio/soundkonverter/Makefile +++ b/audio/soundkonverter/Makefile @@ -4,7 +4,7 @@ PORTNAME= soundkonverter DISTVERSION= 2.1.2 CATEGORIES= audio kde -MASTER_SITES= GH LOCAL/dbn/${PORTNAME} +MASTER_SITES= GHL LOCAL/dbn/${PORTNAME} MAINTAINER= dbn@FreeBSD.org COMMENT= Frontend to various audio converters (transcoder) diff --git a/cad/openvsp/Makefile b/cad/openvsp/Makefile index 219195f..a1719b0 100644 --- a/cad/openvsp/Makefile +++ b/cad/openvsp/Makefile @@ -5,7 +5,7 @@ PORTNAME= openvsp PORTVERSION= 2.3.0 PORTREVISION= 3 CATEGORIES= cad -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= fernando.apesteguia@gmail.com COMMENT= Create a 3D model of an aircraft defined by engineering parameters diff --git a/comms/lysdr/Makefile b/comms/lysdr/Makefile index 608b8fb..58a54e8 100644 --- a/comms/lysdr/Makefile +++ b/comms/lysdr/Makefile @@ -4,7 +4,7 @@ PORTNAME= lysdr PORTVERSION= 0.0.6 PORTREVISION= 1 CATEGORIES= comms hamradio -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= shurd@FreeBSD.org COMMENT= Lysdr SDR program for Unix diff --git a/databases/pg_activity/Makefile b/databases/pg_activity/Makefile index 0f0ff74..e6c680f 100644 --- a/databases/pg_activity/Makefile +++ b/databases/pg_activity/Makefile @@ -4,7 +4,7 @@ PORTNAME= pg_activity PORTVERSION= 1.2.0 CATEGORIES= databases python -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= jgh@FreeBSD.org COMMENT= Htop like application for PostgreSQL server activity monitoring diff --git a/databases/php5-tarantool/Makefile b/databases/php5-tarantool/Makefile index 0fd447e..4469727 100644 --- a/databases/php5-tarantool/Makefile +++ b/databases/php5-tarantool/Makefile @@ -4,7 +4,7 @@ PORTNAME= tarantool PORTVERSION= ${TR_VER} CATEGORIES= databases -MASTER_SITES= GH GHC +MASTER_SITES= GHL PKGNAMEPREFIX= php5- DISTFILES= ${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION}${EXTRACT_SUFX} diff --git a/devel/caf/Makefile b/devel/caf/Makefile index db7a60b..4215db4 100644 --- a/devel/caf/Makefile +++ b/devel/caf/Makefile @@ -4,7 +4,7 @@ PORTNAME= actor-framework PORTVERSION= 0.13 CATEGORIES= devel -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= vallentin@icir.org COMMENT= C++ actor framework diff --git a/devel/chruby/Makefile b/devel/chruby/Makefile index 54062c3..b603d91 100644 --- a/devel/chruby/Makefile +++ b/devel/chruby/Makefile @@ -4,7 +4,7 @@ PORTNAME= chruby PORTVERSION= 0.3.8 CATEGORIES= devel ruby -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= ross@rosstimson.com COMMENT= Changes the current Ruby diff --git a/devel/gitolite/Makefile b/devel/gitolite/Makefile index 83492ab..95e8cc2 100644 --- a/devel/gitolite/Makefile +++ b/devel/gitolite/Makefile @@ -5,7 +5,7 @@ PORTVERSION= 3.6.1 PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel -MASTER_SITES= GH \ +MASTER_SITES= GHL \ LOCAL/milki \ LOCAL/tdb DISTNAME= g-${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-${GH_COMMIT} diff --git a/devel/gitolite2/Makefile b/devel/gitolite2/Makefile index 7d438b0..031b59e 100644 --- a/devel/gitolite2/Makefile +++ b/devel/gitolite2/Makefile @@ -4,7 +4,7 @@ PORTNAME= gitolite PORTVERSION= 2.3.1 PORTREVISION= 1 CATEGORIES= devel -MASTER_SITES= GH \ +MASTER_SITES= GHL \ LOCAL/milki \ LOCAL/tdb PKGNAMESUFFIX= 2 diff --git a/devel/go-flags/Makefile b/devel/go-flags/Makefile index 2836bfa..a693489 100644 --- a/devel/go-flags/Makefile +++ b/devel/go-flags/Makefile @@ -4,7 +4,7 @@ PORTNAME= flags PORTVERSION= 1.0.0.20140623 CATEGORIES= devel -MASTER_SITES= GH GHC +MASTER_SITES= GHL PKGNAMEPREFIX= go- MAINTAINER= knu@FreeBSD.org diff --git a/devel/go-json-rest/Makefile b/devel/go-json-rest/Makefile index cb43827..4afd04d 100644 --- a/devel/go-json-rest/Makefile +++ b/devel/go-json-rest/Makefile @@ -5,7 +5,7 @@ PORTNAME= go-json-rest PORTVERSION= 1.0.0 PORTEPOCH= 1 CATEGORIES= devel -MASTER_SITES= GH GHC \ +MASTER_SITES= GHL \ http://mirrors.rit.edu/zi/ MAINTAINER= lattera@gmail.com diff --git a/devel/go-raw/Makefile b/devel/go-raw/Makefile index 2266a11..90dcd6f 100644 --- a/devel/go-raw/Makefile +++ b/devel/go-raw/Makefile @@ -3,7 +3,7 @@ PORTNAME= raw PORTVERSION= 0.0.0.20130328 CATEGORIES= devel -MASTER_SITES= GH GHC +MASTER_SITES= GHL PKGNAMEPREFIX= go- MAINTAINER= kuriyama@FreeBSD.org diff --git a/devel/go-runewidth/Makefile b/devel/go-runewidth/Makefile index 43b31fa..6fc2a34 100644 --- a/devel/go-runewidth/Makefile +++ b/devel/go-runewidth/Makefile @@ -4,7 +4,7 @@ PORTNAME= runewidth PORTVERSION= 0.0.0.20140715 CATEGORIES= devel -MASTER_SITES= GH GHC +MASTER_SITES= GHL PKGNAMEPREFIX= go- MAINTAINER= knu@FreeBSD.org diff --git a/devel/go-slices/Makefile b/devel/go-slices/Makefile index d5dde70..6361b5f 100644 --- a/devel/go-slices/Makefile +++ b/devel/go-slices/Makefile @@ -3,7 +3,7 @@ PORTNAME= slices PORTVERSION= 0.0.0.20130325 CATEGORIES= devel -MASTER_SITES= GH GHC +MASTER_SITES= GHL PKGNAMEPREFIX= go- MAINTAINER= kuriyama@FreeBSD.org diff --git a/devel/go-sql-driver/Makefile b/devel/go-sql-driver/Makefile index 5e3ac01..7a3ad86 100644 --- a/devel/go-sql-driver/Makefile +++ b/devel/go-sql-driver/Makefile @@ -4,7 +4,7 @@ PORTNAME= go-sql-driver PORTVERSION= 1.1 CATEGORIES= devel -MASTER_SITES= GH GHC \ +MASTER_SITES= GHL \ http://mirrors.rit.edu/zi/ MAINTAINER= lattera@gmail.com diff --git a/devel/go-termbox/Makefile b/devel/go-termbox/Makefile index 96a258c..eee2c78 100644 --- a/devel/go-termbox/Makefile +++ b/devel/go-termbox/Makefile @@ -4,7 +4,7 @@ PORTNAME= termbox PORTVERSION= 0.0.0.20140715 CATEGORIES= devel -MASTER_SITES= GH GHC +MASTER_SITES= GHL PKGNAMEPREFIX= go- MAINTAINER= knu@FreeBSD.org diff --git a/devel/jna/Makefile b/devel/jna/Makefile index 2254fc0..f7c7c67 100644 --- a/devel/jna/Makefile +++ b/devel/jna/Makefile @@ -3,7 +3,7 @@ PORTNAME= jna PORTVERSION= 4.1.0 CATEGORIES= devel java -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= olgeni@FreeBSD.org COMMENT= Java access to native shared libraries diff --git a/devel/leiningen/Makefile b/devel/leiningen/Makefile index 8346d04..0eccd1f 100644 --- a/devel/leiningen/Makefile +++ b/devel/leiningen/Makefile @@ -3,7 +3,7 @@ PORTNAME= leiningen PORTVERSION= 2.5.1 CATEGORIES= devel lisp java -MASTER_SITES= GITHUB:source1 \ +MASTER_SITES= GITHUB_LEGACY:source1 \ https://github.com/technomancy/leiningen/releases/download/${PORTVERSION}/:source2 DISTFILES= leiningen-${PORTVERSION}.tar.gz:source1 \ leiningen-${PORTVERSION}-standalone.zip:source2 diff --git a/devel/libcfu/Makefile b/devel/libcfu/Makefile index 6495a13..0151c2d 100644 --- a/devel/libcfu/Makefile +++ b/devel/libcfu/Makefile @@ -4,7 +4,7 @@ PORTNAME= libcfu DISTVERSION= 0.04a PORTREVISION= 1 CATEGORIES= devel -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= crees@FreeBSD.org COMMENT= Simple library of tools for developing multithreaded software diff --git a/devel/libdouble-conversion/Makefile b/devel/libdouble-conversion/Makefile index 32d7fd5..0b5fe3b 100644 --- a/devel/libdouble-conversion/Makefile +++ b/devel/libdouble-conversion/Makefile @@ -5,7 +5,7 @@ PORTNAME= libdouble-conversion PORTVERSION= 1.1.1 PORTREVISION= 2 CATEGORIES= devel -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= waitman@waitman.net COMMENT= Binary-decimal and decimal-binary routines for IEEE doubles diff --git a/devel/libfortuna/Makefile b/devel/libfortuna/Makefile index 412c71a..54e2aa0 100644 --- a/devel/libfortuna/Makefile +++ b/devel/libfortuna/Makefile @@ -4,7 +4,7 @@ PORTNAME= libfortuna PORTVERSION= 0.1.0 CATEGORIES= devel -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= waitman@waitman.net COMMENT= Fortuna PRNG Library diff --git a/devel/libtpl/Makefile b/devel/libtpl/Makefile index 2ddfcf9..d175f07 100644 --- a/devel/libtpl/Makefile +++ b/devel/libtpl/Makefile @@ -5,7 +5,7 @@ PORTNAME= libtpl PORTVERSION= 1.6 PORTREVISION= 1 CATEGORIES= devel -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= culot@FreeBSD.org COMMENT= Tpl is a library for serializing C data diff --git a/devel/meck/Makefile b/devel/meck/Makefile index 26ddc3d..22c5810 100644 --- a/devel/meck/Makefile +++ b/devel/meck/Makefile @@ -3,7 +3,7 @@ PORTNAME= meck PORTVERSION= 0.8.2 CATEGORIES= devel -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= olgeni@FreeBSD.org COMMENT= Erlang library for building mock modules diff --git a/devel/mongo-c-driver/Makefile b/devel/mongo-c-driver/Makefile index b33a066..cb314ec 100644 --- a/devel/mongo-c-driver/Makefile +++ b/devel/mongo-c-driver/Makefile @@ -4,7 +4,7 @@ PORTNAME= mongo-c-driver PORTVERSION= 0.7.1 CATEGORIES= devel -MASTER_SITES= GH +MASTER_SITES= GHL PKGNAMESUFFIX= -devel DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} diff --git a/devel/ocaml-lacaml/Makefile b/devel/ocaml-lacaml/Makefile index 727886b..ba19a0af 100644 --- a/devel/ocaml-lacaml/Makefile +++ b/devel/ocaml-lacaml/Makefile @@ -5,7 +5,7 @@ PORTNAME= lacaml PORTVERSION= 7.1.3 PORTREVISION= 1 CATEGORIES= devel -MASTER_SITES= GH +MASTER_SITES= GHL PKGNAMEPREFIX= ocaml- MAINTAINER= ports@FreeBSD.org diff --git a/devel/ocaml-opam/Makefile b/devel/ocaml-opam/Makefile index 73e2834..d6fd113 100644 --- a/devel/ocaml-opam/Makefile +++ b/devel/ocaml-opam/Makefile @@ -12,7 +12,7 @@ MASTER_SITES= http://ocaml-extlib.googlecode.com/files/:extlib \ https://gforge.inria.fr/frs/download.php/file/33677/:dose \ http://erratique.ch/software/uutf/releases/:uutf \ http://erratique.ch/software/jsonm/releases/:jsonm \ - GH:gh + GHL:gh PKGNAMEPREFIX= ocaml- DISTFILES= ${OPAM_EXT_DIST} \ ${GH_ACCOUNT}-${GH_PROJECT}-${GH_COMMIT}.tar.gz:gh diff --git a/devel/py-cclib/Makefile b/devel/py-cclib/Makefile index 5f1b4d0..a4fd8c1 100644 --- a/devel/py-cclib/Makefile +++ b/devel/py-cclib/Makefile @@ -4,7 +4,7 @@ PORTNAME= cclib PORTVERSION= 1.2 CATEGORIES= devel python -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= robak@FreeBSD.org COMMENT= Parsers And Algorithms For Computational Chemistry diff --git a/devel/pymacs/Makefile b/devel/pymacs/Makefile index f76962d..41bb48a 100644 --- a/devel/pymacs/Makefile +++ b/devel/pymacs/Makefile @@ -5,7 +5,7 @@ PORTNAME= Pymacs PORTVERSION= 0.25 PORTREVISION= 1 CATEGORIES= devel editors python elisp -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= ports@FreeBSD.org COMMENT= Python package for scripting emacs diff --git a/devel/qross/Makefile b/devel/qross/Makefile index 2fdc3d7..02356e3 100644 --- a/devel/qross/Makefile +++ b/devel/qross/Makefile @@ -5,7 +5,7 @@ PORTNAME= qross PORTVERSION= 0.3.1 PORTREVISION= 2 CATEGORIES= devel -MASTER_SITES= GH GHC +MASTER_SITES= GHL MAINTAINER= vg@FreeBSD.org COMMENT= Qt-only fork of Kross, the KDE scripting framework diff --git a/devel/rbenv/Makefile b/devel/rbenv/Makefile index 1762e93..e3ba790 100644 --- a/devel/rbenv/Makefile +++ b/devel/rbenv/Makefile @@ -4,7 +4,7 @@ PORTNAME= rbenv PORTVERSION= 0.4.0 PORTREVISION= 2 CATEGORIES= devel ruby -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= meta+ports@vmeta.jp COMMENT= Manage multiple versions of ruby diff --git a/devel/sigar/Makefile b/devel/sigar/Makefile index 53d5d38..7e88c6d 100644 --- a/devel/sigar/Makefile +++ b/devel/sigar/Makefile @@ -5,7 +5,7 @@ PORTNAME= sigar PORTVERSION= 1.7.3 PORTREVISION= 1 CATEGORIES= devel -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= tj@FreeBSD.org COMMENT= Sigar system information API diff --git a/devel/uthash/Makefile b/devel/uthash/Makefile index 832ec19..0c44dbf 100644 --- a/devel/uthash/Makefile +++ b/devel/uthash/Makefile @@ -4,7 +4,7 @@ PORTNAME= uthash PORTVERSION= 1.9.8p2 CATEGORIES= devel -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= zi@FreeBSD.org COMMENT= hash table for C structures diff --git a/dns/bundy/Makefile b/dns/bundy/Makefile index d4c8de7..3bc6f2d 100644 --- a/dns/bundy/Makefile +++ b/dns/bundy/Makefile @@ -4,7 +4,7 @@ PORTNAME= bundy PORTVERSION= 0.20150304 CATEGORIES= dns -MASTER_SITES= GH GHC LOCAL/mat/bundy +MASTER_SITES= GHL LOCAL/mat/bundy MAINTAINER= mat@FreeBSD.org COMMENT= Bundy DNS server suite diff --git a/dns/fpdns/Makefile b/dns/fpdns/Makefile index cb9b4f02..9c373f0 100644 --- a/dns/fpdns/Makefile +++ b/dns/fpdns/Makefile @@ -5,7 +5,7 @@ PORTNAME= fpdns PORTVERSION= 0.10.0.${GH_TAGNAME} PORTREVISION= 1 CATEGORIES= dns net perl5 -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= ports@FreeBSD.org COMMENT= Fingerprinting DNS servers diff --git a/emulators/qemu-sbruno/Makefile b/emulators/qemu-sbruno/Makefile index d450f40..67e30d4 100644 --- a/emulators/qemu-sbruno/Makefile +++ b/emulators/qemu-sbruno/Makefile @@ -5,7 +5,7 @@ PORTNAME= qemu PORTVERSION= 2.2.50.g20150310 PORTREVISION= 1 CATEGORIES= emulators -MASTER_SITES= GH GHC \ +MASTER_SITES= GHL \ LOCAL/nox \ LOCAL/nox:dtc \ http://people.freebsd.org/~nox/tmp/distfiles/ \ diff --git a/finance/vanitygen/Makefile b/finance/vanitygen/Makefile index ed22c0e..9566693 100644 --- a/finance/vanitygen/Makefile +++ b/finance/vanitygen/Makefile @@ -4,7 +4,7 @@ PORTNAME= vanitygen PORTVERSION= 0.22 CATEGORIES= finance -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= ports@FreeBSD.org COMMENT= Standalone vanity address generator for bitcoin diff --git a/games/craft/Makefile b/games/craft/Makefile index 7c8e8f7..ebd70f6 100644 --- a/games/craft/Makefile +++ b/games/craft/Makefile @@ -5,7 +5,7 @@ PORTNAME= craft PORTVERSION= 1.0 PORTREVISION= 1 CATEGORIES= games -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= danilo@FreeBSD.org COMMENT= Simple Minecraft clone written in C using modern OpenGL diff --git a/games/unknown-horizons/Makefile b/games/unknown-horizons/Makefile index bee8a8a..39a6825 100644 --- a/games/unknown-horizons/Makefile +++ b/games/unknown-horizons/Makefile @@ -6,7 +6,7 @@ PORTVERSION= 2013.3 PORTREVISION= 1 CATEGORIES= games #MASTER_SITES= SF/unknownhorizons/Unknown%20Horizons/${PORTVERSION}/ -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= fiziologus@gmail.com COMMENT= Real time simulation game diff --git a/graphics/code-eli/Makefile b/graphics/code-eli/Makefile index da50b05..aa04a05 100644 --- a/graphics/code-eli/Makefile +++ b/graphics/code-eli/Makefile @@ -4,7 +4,7 @@ PORTNAME= code-eli PORTVERSION= 0.3.6 CATEGORIES= graphics -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= fernando.apesteguia@gmail.com COMMENT= Library with functionalities for geometries diff --git a/graphics/dcraw-m/Makefile b/graphics/dcraw-m/Makefile index 462bd2c..2bb7738 100644 --- a/graphics/dcraw-m/Makefile +++ b/graphics/dcraw-m/Makefile @@ -5,7 +5,7 @@ PORTNAME= dcraw-m PORTVERSION= 9.22 PORTREVISION= 1 CATEGORIES= graphics -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= waitman@waitman.net COMMENT= Modified Decoder for RAW files from digital cameras diff --git a/graphics/pqiv/Makefile b/graphics/pqiv/Makefile index 87292bc..d29c41b 100644 --- a/graphics/pqiv/Makefile +++ b/graphics/pqiv/Makefile @@ -4,7 +4,7 @@ PORTNAME= pqiv PORTVERSION= 2.1.1 CATEGORIES= graphics -MASTER_SITES= GH +MASTER_SITES= GHL DISTNAME= ${PORTVERSION} MAINTAINER= danilo@FreeBSD.org diff --git a/graphics/xcftools/Makefile b/graphics/xcftools/Makefile index 94c67cf..be9af7c 100644 --- a/graphics/xcftools/Makefile +++ b/graphics/xcftools/Makefile @@ -4,7 +4,7 @@ PORTNAME= xcftools PORTVERSION= 1.0.8.20130212 PORTREVISION= 1 CATEGORIES= graphics -MASTER_SITES= GH \ +MASTER_SITES= GHL \ http://freeheimdall.spdns.org/files/ MAINTAINER= kalten@gmx.at diff --git a/irc/eggdrop-devel/Makefile b/irc/eggdrop-devel/Makefile index 6ce28a2..800717e 100644 --- a/irc/eggdrop-devel/Makefile +++ b/irc/eggdrop-devel/Makefile @@ -5,7 +5,7 @@ PORTNAME= eggdrop PORTVERSION= 1.8.0.20141008 PORTREVISION= 2 CATEGORIES= irc -MASTER_SITES= GH \ +MASTER_SITES= GHL \ http://mirror.shatow.net/freebsd/${PORTNAME}/ PKGNAMESUFFIX= -devel diff --git a/irc/hybserv/Makefile b/irc/hybserv/Makefile index 0756419..d3d1e5a 100644 --- a/irc/hybserv/Makefile +++ b/irc/hybserv/Makefile @@ -4,7 +4,7 @@ PORTNAME= hybserv PORTVERSION= 1.9.5 CATEGORIES= irc -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= ports@FreeBSD.org COMMENT= Hybrid2 IRC Services diff --git a/irc/irssi-otr/Makefile b/irc/irssi-otr/Makefile index 50c049d..abc52de 100644 --- a/irc/irssi-otr/Makefile +++ b/irc/irssi-otr/Makefile @@ -5,7 +5,7 @@ PORTNAME= irssi-otr PORTVERSION= 1.0.0 PORTREVISION= 3 CATEGORIES= irc -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= ashish@FreeBSD.org COMMENT= Plugin for irssi for Off-the-Record (OTR) messaging diff --git a/japanese/cmigemo-dict/Makefile b/japanese/cmigemo-dict/Makefile index 4e3c172..f4c9c53 100644 --- a/japanese/cmigemo-dict/Makefile +++ b/japanese/cmigemo-dict/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ CATEGORIES= japanese -MASTER_SITES= GH \ +MASTER_SITES= GHL \ n ${MASTER_SITE_LOCAL:S/%SUBDIR%\/$/nobutaka\/:skkdic/} PKGNAMESUFFIX= -dict DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \ diff --git a/japanese/cmigemo/Makefile b/japanese/cmigemo/Makefile index aa3f388..63da8c6 100644 --- a/japanese/cmigemo/Makefile +++ b/japanese/cmigemo/Makefile @@ -4,7 +4,7 @@ PORTNAME= cmigemo PORTVERSION= 20141220 CATEGORIES= japanese -MASTER_SITES?= GH +MASTER_SITES?= GHL DIST_SUBDIR= cmigemo USE_GITHUB= yes diff --git a/java/junit/Makefile b/java/junit/Makefile index e8b2736..53cd264 100644 --- a/java/junit/Makefile +++ b/java/junit/Makefile @@ -5,7 +5,7 @@ PORTNAME= junit PORTVERSION= 4.11 PORTREVISION= 1 CATEGORIES= java devel -MASTER_SITES= GH +MASTER_SITES= GHL DISTNAME= ${PORTNAME}${PORTVERSION} MAINTAINER= danilo@FreeBSD.org diff --git a/java/sigar/Makefile b/java/sigar/Makefile index 66b5117..105f115 100644 --- a/java/sigar/Makefile +++ b/java/sigar/Makefile @@ -5,7 +5,7 @@ PORTNAME= sigar PORTVERSION= 1.7.3 PORTREVISION= 1 CATEGORIES= java devel -MASTER_SITES= GH +MASTER_SITES= GHL PKGNAMEPREFIX= java- MAINTAINER= tj@FreeBSD.org diff --git a/lang/tuareg-mode.el/Makefile b/lang/tuareg-mode.el/Makefile index 0806744..3331af5 100644 --- a/lang/tuareg-mode.el/Makefile +++ b/lang/tuareg-mode.el/Makefile @@ -6,7 +6,7 @@ PORTVERSION= 2.0.8 PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= lang elisp -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= michipili@gmail.com COMMENT= Emacs major mode for editing Caml code diff --git a/mail/imapfilter/Makefile b/mail/imapfilter/Makefile index 89463f2..009fcf3 100644 --- a/mail/imapfilter/Makefile +++ b/mail/imapfilter/Makefile @@ -6,7 +6,7 @@ PORTVERSION= 2.5.6 PORTREVISION= 1 CATEGORIES= mail MASTER_SITES= http://www.gegenunendlich.de/distfiles/ \ - GH + GHL MAINTAINER= stefan@FreeBSD.org COMMENT= IMAP mail filtering utility diff --git a/mail/mu/Makefile b/mail/mu/Makefile index fc6a3e5..eb401ae 100644 --- a/mail/mu/Makefile +++ b/mail/mu/Makefile @@ -4,7 +4,7 @@ PORTNAME= mu PORTVERSION= 0.9.10 CATEGORIES= mail -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= ports@FreeBSD.org COMMENT= Mail searching frontend for Xapian diff --git a/mail/roundcube-contextmenu/Makefile b/mail/roundcube-contextmenu/Makefile index 1e3ce45..ebac7b1 100644 --- a/mail/roundcube-contextmenu/Makefile +++ b/mail/roundcube-contextmenu/Makefile @@ -4,7 +4,7 @@ PORTNAME= contextmenu PORTVERSION= 2.1 CATEGORIES= mail -MASTER_SITES= GH +MASTER_SITES= GHL PKGNAMEPREFIX= roundcube- MAINTAINER= moiseev@mezonplus.ru diff --git a/math/bsdnt/Makefile b/math/bsdnt/Makefile index 8866704..0a4591a 100644 --- a/math/bsdnt/Makefile +++ b/math/bsdnt/Makefile @@ -3,7 +3,7 @@ PORTNAME= bsdnt PORTVERSION= 1.0 CATEGORIES= math -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= swills@FreeBSD.org COMMENT= Bignum Library diff --git a/math/speedcrunch/Makefile b/math/speedcrunch/Makefile index e68723c..1d08fa7 100644 --- a/math/speedcrunch/Makefile +++ b/math/speedcrunch/Makefile @@ -4,7 +4,7 @@ PORTNAME= speedcrunch DISTVERSION= 0.11 CATEGORIES= math -MASTER_SITES= GITHUB +MASTER_SITES= GITHUB_LEGACY MAINTAINER= makc@FreeBSD.org COMMENT= Keyboard-oriented desktop scientific calculator diff --git a/misc/fortune-mod-epictetus/Makefile b/misc/fortune-mod-epictetus/Makefile index 6fa3ac2..1dbd603 100644 --- a/misc/fortune-mod-epictetus/Makefile +++ b/misc/fortune-mod-epictetus/Makefile @@ -4,7 +4,7 @@ PORTNAME= fortune-mod-epictetus PORTVERSION= 0.2 CATEGORIES= misc -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= akosela@andykosela.com COMMENT= Quotes from Epictetus diff --git a/multimedia/aegisub/Makefile b/multimedia/aegisub/Makefile index 7140c5a..454bd36 100644 --- a/multimedia/aegisub/Makefile +++ b/multimedia/aegisub/Makefile @@ -7,7 +7,7 @@ CATEGORIES= multimedia MASTER_SITES= http://ftp.aegisub.org/pub/archives/releases/source/:aegisub \ ftp://ftp.aegisub.org/pub/archives/releases/source/:aegisub \ ftp://ftp2.aegisub.org/pub/archives/releases/source/:aegisub \ - GH + GHL DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:aegisub ${FFMS_DISTFILE} MAINTAINER= ports@FreeBSD.org diff --git a/multimedia/kodi/Makefile b/multimedia/kodi/Makefile index 40a4539..336cd37 100644 --- a/multimedia/kodi/Makefile +++ b/multimedia/kodi/Makefile @@ -5,7 +5,7 @@ DISTVERSION= 14.0 PORTREVISION= 0 CATEGORIES= multimedia MASTER_SITES= http://mirrors.kodi.tv/releases/source/ \ - GH:ffmpeg + GHL:ffmpeg DISTFILES= ${DISTVERSION}-Helix${EXTRACT_SUFX} \ ${GH_PROJECT}-${GH_TAGNAME}.tar.gz:ffmpeg EXTRACT_ONLY= ${DISTVERSION}-Helix${EXTRACT_SUFX} diff --git a/multimedia/libcec/Makefile b/multimedia/libcec/Makefile index 775023d..2e94983 100644 --- a/multimedia/libcec/Makefile +++ b/multimedia/libcec/Makefile @@ -4,7 +4,7 @@ PORTNAME= libcec PORTVERSION= 2.2.0 CATEGORIES= multimedia -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= manuel.creach@icloud.com COMMENT= Library to control Pulse-Eight's HDMI-CEC adapter diff --git a/multimedia/mpv/Makefile b/multimedia/mpv/Makefile index 90d1c17..b4d810c 100644 --- a/multimedia/mpv/Makefile +++ b/multimedia/mpv/Makefile @@ -5,7 +5,7 @@ PORTNAME= mpv PORTVERSION= 0.8.3 PORTEPOCH= 1 CATEGORIES= multimedia audio -MASTER_SITES= GH:0 GHC:0 http://ftp.waf.io/pub/release/:1 \ +MASTER_SITES= GHL:0 http://ftp.waf.io/pub/release/:1 \ http://www.freehackers.org/~tnagy/release/:1 DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:0 waf-${WAF_VERSION}:1 EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX} diff --git a/multimedia/py-ffmpeg/Makefile b/multimedia/py-ffmpeg/Makefile index 73cdbb9..4086ed8 100644 --- a/multimedia/py-ffmpeg/Makefile +++ b/multimedia/py-ffmpeg/Makefile @@ -5,7 +5,7 @@ PORTNAME= ffmpeg PORTVERSION= 1.2.4 PORTREVISION= 2 CATEGORIES= multimedia python -MASTER_SITES= GH LOCAL/dbn/${PORTNAME} +MASTER_SITES= GHL LOCAL/dbn/${PORTNAME} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= ${PORTNAME}-android-${PORTVERSION} diff --git a/multimedia/subtitlecomposer-kde4/Makefile b/multimedia/subtitlecomposer-kde4/Makefile index a244f43..cd82135 100644 --- a/multimedia/subtitlecomposer-kde4/Makefile +++ b/multimedia/subtitlecomposer-kde4/Makefile @@ -4,7 +4,7 @@ PORTNAME= subtitlecomposer PORTVERSION= 0.5.6 PORTREVISION= 5 CATEGORIES= multimedia kde -MASTER_SITES= GITHUB +MASTER_SITES= GITHUB_LEGACY MAINTAINER= makc@FreeBSD.org COMMENT= Subtitle editor for KDE diff --git a/net-im/corebird/Makefile b/net-im/corebird/Makefile index 3e54c98..9cea723 100644 --- a/net-im/corebird/Makefile +++ b/net-im/corebird/Makefile @@ -4,7 +4,7 @@ PORTNAME= corebird PORTVERSION= 0.9 CATEGORIES= net-im -MASTER_SITES= GH GHC +MASTER_SITES= GHL GHC MAINTAINER= cpm@fbsd.es COMMENT= GTK3 Twitter client written in Vala diff --git a/net-im/qxmpp/Makefile b/net-im/qxmpp/Makefile index 9406805..4f9f980 100644 --- a/net-im/qxmpp/Makefile +++ b/net-im/qxmpp/Makefile @@ -4,7 +4,7 @@ PORTNAME= qxmpp PORTVERSION= 0.8.0 CATEGORIES= net-im -MASTER_SITES= GH GHC +MASTER_SITES= GHL MAINTAINER= vg@FreeBSD.org COMMENT= QXmpp is an xmpp client library based on Qt & C++ diff --git a/net-mgmt/arpscan/Makefile b/net-mgmt/arpscan/Makefile index 85874e0..8d6780f 100644 --- a/net-mgmt/arpscan/Makefile +++ b/net-mgmt/arpscan/Makefile @@ -5,7 +5,7 @@ PORTNAME= arpscan PORTVERSION= 0.5 PORTREVISION= 1 CATEGORIES= net-mgmt -MASTER_SITES= GH +MASTER_SITES= GHL DIST_SUBDIR= repacked MAINTAINER= ports@FreeBSD.org diff --git a/net-mgmt/lg/Makefile b/net-mgmt/lg/Makefile index c900d1b..fb078f6 100644 --- a/net-mgmt/lg/Makefile +++ b/net-mgmt/lg/Makefile @@ -3,7 +3,7 @@ PORTNAME= lg PORTVERSION= 1.9.s20140622 -MASTER_SITES= LOCAL/mat/lg GH GHC +MASTER_SITES= LOCAL/mat/lg GHL CATEGORIES= net-mgmt perl5 MAINTAINER= mat@FreeBSD.org diff --git a/net-p2p/bitmessage/Makefile b/net-p2p/bitmessage/Makefile index 86bda94..06c58d5 100644 --- a/net-p2p/bitmessage/Makefile +++ b/net-p2p/bitmessage/Makefile @@ -5,7 +5,7 @@ PORTNAME= bitmessage PORTVERSION= 0.4.4 PORTREVISION= 1 CATEGORIES= net-p2p -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= yuri@rawbw.com COMMENT= Secure P2P communications client diff --git a/net-p2p/litecoin/Makefile b/net-p2p/litecoin/Makefile index 98ae27d..e95cd5c 100644 --- a/net-p2p/litecoin/Makefile +++ b/net-p2p/litecoin/Makefile @@ -6,7 +6,7 @@ PORTVERSION= 0.8.6.2 PORTREVISION= 1 CATEGORIES= net-p2p finance MASTER_SITES= LOCAL/swills \ - GH + GHL MAINTAINER= swills@FreeBSD.org COMMENT= Virtual Peer-to-Peer Currency Software diff --git a/net-p2p/namecoin/Makefile b/net-p2p/namecoin/Makefile index 2b5d44d..1e97c52 100644 --- a/net-p2p/namecoin/Makefile +++ b/net-p2p/namecoin/Makefile @@ -5,7 +5,7 @@ PORTNAME= namecoin PORTVERSION= Q.3.72 PORTREVISION= 3 CATEGORIES= net-p2p dns -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= milios@ccsys.com COMMENT= Decentralized, open DNS system and general purpose key/value store diff --git a/net-p2p/zetacoin/Makefile b/net-p2p/zetacoin/Makefile index 06f6afe..92e156c 100644 --- a/net-p2p/zetacoin/Makefile +++ b/net-p2p/zetacoin/Makefile @@ -4,7 +4,7 @@ PORTNAME= zetacoin PORTVERSION= 0.9.2.4 CATEGORIES= net-p2p finance -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= daniel@morante.net COMMENT= Peer-to-Peer crypto currency with quick transactions diff --git a/net/6tunnel/Makefile b/net/6tunnel/Makefile index ca1c53f..c3fc3e1 100644 --- a/net/6tunnel/Makefile +++ b/net/6tunnel/Makefile @@ -4,7 +4,7 @@ PORTNAME= 6tunnel DISTVERSION= 0.11rc2.20130525 CATEGORIES= net ipv6 -MASTER_SITES= GH \ +MASTER_SITES= GHL \ LOCAL/bdrewery/${PORTNAME}/ MAINTAINER= bdrewery@FreeBSD.org diff --git a/net/exabgp/Makefile b/net/exabgp/Makefile index 2b832ca..a48365a 100644 --- a/net/exabgp/Makefile +++ b/net/exabgp/Makefile @@ -4,7 +4,7 @@ PORTNAME= exabgp PORTVERSION= 3.4.8 CATEGORIES= net -MASTER_SITES= GH GHC \ +MASTER_SITES= GHL \ http://mirrors.rit.edu/zi/ MAINTAINER= zi@FreeBSD.org diff --git a/net/exaddos/Makefile b/net/exaddos/Makefile index 4fedb99..19b3a52 100644 --- a/net/exaddos/Makefile +++ b/net/exaddos/Makefile @@ -4,7 +4,7 @@ PORTNAME= exaddos PORTVERSION= 0.4.0 CATEGORIES= net -MASTER_SITES= GH GHC \ +MASTER_SITES= GHL \ http://mirrors.rit.edu/zi/ EXTRACT_SUFX= .tgz diff --git a/net/foreman-proxy/Makefile b/net/foreman-proxy/Makefile index 70bd6ef..ceef452 100644 --- a/net/foreman-proxy/Makefile +++ b/net/foreman-proxy/Makefile @@ -4,7 +4,7 @@ PORTNAME= foreman-proxy PORTVERSION= 1.7.1 CATEGORIES= net -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= mm@FreeBSD.org COMMENT= Foreman Proxy Agent diff --git a/net/go-amqp/Makefile b/net/go-amqp/Makefile index 88fa4ee..740d285 100644 --- a/net/go-amqp/Makefile +++ b/net/go-amqp/Makefile @@ -3,7 +3,7 @@ PORTNAME= amqp PORTVERSION= 0.0.0.20140916 CATEGORIES= net -MASTER_SITES= GH GHC +MASTER_SITES= GHL PKGNAMEPREFIX= go- MAINTAINER= kuriyama@FreeBSD.org diff --git a/net/relayd/Makefile b/net/relayd/Makefile index 0d161fa..b0202a1 100644 --- a/net/relayd/Makefile +++ b/net/relayd/Makefile @@ -4,7 +4,7 @@ PORTNAME= relayd PORTVERSION= 5.5.20140810 PORTREVISION= 1 CATEGORIES= net -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= mm@FreeBSD.org COMMENT= OpenBSD relay daemon diff --git a/net/xrdp-devel/Makefile b/net/xrdp-devel/Makefile index 9459596..d7918e5 100644 --- a/net/xrdp-devel/Makefile +++ b/net/xrdp-devel/Makefile @@ -6,7 +6,7 @@ PORTVERSION= 0.7.0.b20130912 PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= net -MASTER_SITES= GH +MASTER_SITES= GHL PKGNAMESUFFIX= -devel DIST_SUBDIR?= ${PORTNAME} diff --git a/net/xrdp/Makefile b/net/xrdp/Makefile index 7e47269..d9480b9 100644 --- a/net/xrdp/Makefile +++ b/net/xrdp/Makefile @@ -6,7 +6,7 @@ PORTVERSION= 0.6.1 PORTREVISION= 6 PORTEPOCH= 1 CATEGORIES= net -MASTER_SITES= GH +MASTER_SITES= GHL DIST_SUBDIR?= ${PORTNAME} MAINTAINER= meta+ports@vmeta.jp diff --git a/ports-mgmt/chucky/Makefile b/ports-mgmt/chucky/Makefile index 81a2e33..f3c93b3 100644 --- a/ports-mgmt/chucky/Makefile +++ b/ports-mgmt/chucky/Makefile @@ -5,7 +5,7 @@ PORTNAME= chucky PORTVERSION= 1.0 PORTREVISION= 1 CATEGORIES= ports-mgmt -MASTER_SITES= GH +MASTER_SITES= GHL DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= waitman@waitman.net diff --git a/ports-mgmt/pkgcompare/Makefile b/ports-mgmt/pkgcompare/Makefile index e973c51..1db06b6 100644 --- a/ports-mgmt/pkgcompare/Makefile +++ b/ports-mgmt/pkgcompare/Makefile @@ -4,7 +4,7 @@ PORTNAME= pkgcompare PORTVERSION= 1.1 CATEGORIES= ports-mgmt -MASTER_SITES= GH +MASTER_SITES= GHL DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= waitman@waitman.net diff --git a/ports-mgmt/portmaster/Makefile b/ports-mgmt/portmaster/Makefile index c0c1f28..e3d75b0 100644 --- a/ports-mgmt/portmaster/Makefile +++ b/ports-mgmt/portmaster/Makefile @@ -5,7 +5,7 @@ PORTVERSION= 3.17.7 CATEGORIES= ports-mgmt MASTER_SITES= LOCAL/bdrewery/${PORTNAME}/ \ http://mirror.shatow.net/freebsd/${PORTNAME}/ \ - GH + GHL MAINTAINER= bdrewery@FreeBSD.org COMMENT= Manage your ports without external databases or languages diff --git a/ports-mgmt/portupgrade-devel/Makefile b/ports-mgmt/portupgrade-devel/Makefile index 5c6d1cc..a056ccf 100644 --- a/ports-mgmt/portupgrade-devel/Makefile +++ b/ports-mgmt/portupgrade-devel/Makefile @@ -6,7 +6,7 @@ PORTVERSION= 20141006 PORTREVISION= 2 PORTEPOCH= 3 CATEGORIES= ports-mgmt -MASTER_SITES= GH \ +MASTER_SITES= GHL \ http://mirror.shatow.net/freebsd/pkgtools/ PKGNAMESUFFIX= -devel DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} diff --git a/ports-mgmt/poudriere/Makefile b/ports-mgmt/poudriere/Makefile index 470d477..5bf9530 100644 --- a/ports-mgmt/poudriere/Makefile +++ b/ports-mgmt/poudriere/Makefile @@ -6,7 +6,7 @@ PORTREVISION= 0 CATEGORIES= ports-mgmt MASTER_SITES= LOCAL/bdrewery/${PORTNAME}/ \ http://mirror.shatow.net/freebsd/${PORTNAME}/ \ - GH + GHL DISTNAME= ${GH_ACCOUNT}-${GH_PROJECT}-${PORTVERSION}-0-g${GH_COMMIT} MAINTAINER= bdrewery@FreeBSD.org diff --git a/science/minc2/Makefile b/science/minc2/Makefile index d1047f3..77371f5 100644 --- a/science/minc2/Makefile +++ b/science/minc2/Makefile @@ -6,7 +6,7 @@ PORTVERSION= 2.2.00 PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= science biology -MASTER_SITES= GH +MASTER_SITES= GHL PKGNAMESUFFIX= 2 MAINTAINER= ports@FreeBSD.org diff --git a/security/kqoauth/Makefile b/security/kqoauth/Makefile index 47df13a..c43c17b 100644 --- a/security/kqoauth/Makefile +++ b/security/kqoauth/Makefile @@ -4,7 +4,7 @@ PORTNAME= kqoauth PORTVERSION= 0.98 CATEGORIES= security -MASTER_SITES= GH GHC +MASTER_SITES= GHL MAINTAINER= vg@FreeBSD.org COMMENT= Implimentation of OAuth 1.0 in C++ for Qt diff --git a/security/lastpass-cli/Makefile b/security/lastpass-cli/Makefile index 47c2719..e997507 100644 --- a/security/lastpass-cli/Makefile +++ b/security/lastpass-cli/Makefile @@ -4,7 +4,7 @@ PORTNAME= lastpass-cli PORTVERSION= 0.4.0 CATEGORIES= security -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= tom@hur.st COMMENT= LastPass command line interface tool diff --git a/security/metasploit/Makefile b/security/metasploit/Makefile index df5e115..14bab2d 100644 --- a/security/metasploit/Makefile +++ b/security/metasploit/Makefile @@ -4,7 +4,7 @@ PORTNAME= metasploit PORTVERSION= 4.11.1 CATEGORIES= security -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= tanawts@gmail.com COMMENT= Exploit-Framework for Penetration-Testing diff --git a/security/py-python-registry/Makefile b/security/py-python-registry/Makefile index e76dd97..65084c1 100644 --- a/security/py-python-registry/Makefile +++ b/security/py-python-registry/Makefile @@ -4,7 +4,7 @@ PORTNAME= python-registry PORTVERSION= 1.1.0 CATEGORIES= security devel python -MASTER_SITES= GH \ +MASTER_SITES= GHL \ LOCAL/antoine PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/sysutils/beadm-devel/Makefile b/sysutils/beadm-devel/Makefile index 58b71c5..0770591 100644 --- a/sysutils/beadm-devel/Makefile +++ b/sysutils/beadm-devel/Makefile @@ -4,7 +4,7 @@ PORTNAME= beadm PORTVERSION= 1.1.99.20140315 CATEGORIES= sysutils PKGNAMESUFFIX= -devel -MASTER_SITES= GH \ +MASTER_SITES= GHL \ LOCAL/bdrewery/${PORTNAME}/ \ http://mirror.shatow.net/freebsd/${PORTNAME}/ diff --git a/sysutils/beadm/Makefile b/sysutils/beadm/Makefile index a0248b6..0199606 100644 --- a/sysutils/beadm/Makefile +++ b/sysutils/beadm/Makefile @@ -4,7 +4,7 @@ PORTNAME= beadm PORTVERSION= 1.1 PORTREVISION= 1 CATEGORIES= sysutils -MASTER_SITES= GH \ +MASTER_SITES= GHL \ http://mirror.shatow.net/freebsd/${PORTNAME}/ \ LOCAL/bdrewery/${PORTNAME} diff --git a/sysutils/iocage/Makefile b/sysutils/iocage/Makefile index 1453e50..b877024 100644 --- a/sysutils/iocage/Makefile +++ b/sysutils/iocage/Makefile @@ -4,7 +4,7 @@ PORTNAME= iocage PORTVERSION= 1.4.6 CATEGORIES= sysutils -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= robak@FreeBSD.org COMMENT= Full featured, no dependency Jail container manager diff --git a/sysutils/n98-magerun/Makefile b/sysutils/n98-magerun/Makefile index c87b6a0..463fac0 100644 --- a/sysutils/n98-magerun/Makefile +++ b/sysutils/n98-magerun/Makefile @@ -4,7 +4,7 @@ PORTNAME= n98-magerun PORTVERSION= 1.90.0 CATEGORIES= sysutils www -MASTER_SITES= GITHUB +MASTER_SITES= GITHUB_LEGACY MAINTAINER= melvyn@magemana.nl COMMENT= CLI tool for inspection and control of Magento installations diff --git a/sysutils/nfsping/Makefile b/sysutils/nfsping/Makefile index ade9592..584afec 100644 --- a/sysutils/nfsping/Makefile +++ b/sysutils/nfsping/Makefile @@ -3,7 +3,7 @@ PORTNAME= nfsping PORTVERSION= 0.1.20131017 CATEGORIES= sysutils net-mgmt -MASTER_SITES= GH \ +MASTER_SITES= GHL \ LOCAL/bdrewery/${PORTNAME}/ MAINTAINER= bdrewery@FreeBSD.org diff --git a/sysutils/screenfetch/Makefile b/sysutils/screenfetch/Makefile index ad1cf6c..e377657 100644 --- a/sysutils/screenfetch/Makefile +++ b/sysutils/screenfetch/Makefile @@ -6,7 +6,7 @@ PORTVERSION= 3.6.5 PORTREVISION= 1 CATEGORIES= sysutils MASTER_SITES= LOCAL/jgh/sysutils/${PORTNAME:tl}/ \ - GH + GHL MAINTAINER= jgh@FreeBSD.org COMMENT= Bash Screenshot Information Tool diff --git a/sysutils/tty-clock/Makefile b/sysutils/tty-clock/Makefile index e727ea2..252eaa9 100644 --- a/sysutils/tty-clock/Makefile +++ b/sysutils/tty-clock/Makefile @@ -5,7 +5,7 @@ PORTNAME= tty-clock PORTVERSION= 2.0.0 PORTREVISION= 1 CATEGORIES= sysutils -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= ports@FreeBSD.org COMMENT= Terminal based clock diff --git a/sysutils/u-boot-rpi/Makefile b/sysutils/u-boot-rpi/Makefile index 1f24719..e0a5c9e 100644 --- a/sysutils/u-boot-rpi/Makefile +++ b/sysutils/u-boot-rpi/Makefile @@ -4,7 +4,7 @@ PORTNAME= u-boot PORTVERSION= 2013.01 PORTREVISION= 2 CATEGORIES= sysutils -MASTER_SITES= GH:uboot \ +MASTER_SITES= GHL:uboot \ http://distcache.FreeBSD.org/local-distfiles/ian/:bootfiles \ http://distcache.us-east.FreeBSD.org/local-distfiles/ian/:bootfiles \ http://distcache.eu.FreeBSD.org/local-distfiles/ian/:bootfiles \ diff --git a/sysutils/ua/Makefile b/sysutils/ua/Makefile index d1c7a71..4e1840c 100644 --- a/sysutils/ua/Makefile +++ b/sysutils/ua/Makefile @@ -3,7 +3,7 @@ PORTNAME= ua PORTVERSION= 1.0.1 CATEGORIES= sysutils -MASTER_SITES= GITHUB +MASTER_SITES= GITHUB_LEGACY MAINTAINER= ports@FreeBSD.org COMMENT= Finds sets of identical files diff --git a/sysutils/xfce4-bsdcpufreq-plugin/Makefile b/sysutils/xfce4-bsdcpufreq-plugin/Makefile index 04bb7a0..a2e983f 100644 --- a/sysutils/xfce4-bsdcpufreq-plugin/Makefile +++ b/sysutils/xfce4-bsdcpufreq-plugin/Makefile @@ -6,7 +6,7 @@ PORTNAME= xfce4-bsdcpufreq-plugin PORTVERSION= 0.2 PORTREVISION= 1 CATEGORIES= sysutils xfce -MASTER_SITES= GH GHC +MASTER_SITES= GHL GHC MAINTAINER= riggs@FreeBSD.org COMMENT= Displays the current CPU clock frequency in the panel diff --git a/sysutils/zfstools/Makefile b/sysutils/zfstools/Makefile index 0301fae..a3f1da2 100644 --- a/sysutils/zfstools/Makefile +++ b/sysutils/zfstools/Makefile @@ -4,7 +4,7 @@ PORTNAME= zfstools PORTVERSION= 0.3.2 PORTREVISION= 1 CATEGORIES= sysutils ruby -MASTER_SITES= GH \ +MASTER_SITES= GHL \ http://mirror.shatow.net/freebsd/${PORTNAME}/ MAINTAINER= bdrewery@FreeBSD.org diff --git a/textproc/cdiff/Makefile b/textproc/cdiff/Makefile index 4f56ed9..73b606d 100644 --- a/textproc/cdiff/Makefile +++ b/textproc/cdiff/Makefile @@ -4,7 +4,7 @@ PORTNAME= cdiff PORTVERSION= 0.9.6.20140711 PORTEPOCH= 1 -MASTER_SITES= LOCAL/mat/cdiff GH GHC +MASTER_SITES= LOCAL/mat/cdiff GHL CATEGORIES= textproc MAINTAINER= mat@FreeBSD.org diff --git a/textproc/odt2txt/Makefile b/textproc/odt2txt/Makefile index 0796d0f..84dbef2 100644 --- a/textproc/odt2txt/Makefile +++ b/textproc/odt2txt/Makefile @@ -5,7 +5,7 @@ PORTNAME= odt2txt PORTVERSION= 0.4 PORTREVISION= 2 CATEGORIES= textproc -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= ports@FreeBSD.org COMMENT= Simple converter from OpenDocument Text to plain text diff --git a/www/blastbeat/Makefile b/www/blastbeat/Makefile index 74ae455..d9df017 100644 --- a/www/blastbeat/Makefile +++ b/www/blastbeat/Makefile @@ -5,7 +5,7 @@ PORTNAME= blastbeat PORTVERSION= 20121205 PORTREVISION= 3 CATEGORIES= www -MASTER_SITES= GH GHC +MASTER_SITES= GHL MAINTAINER= vg@FreeBSD.org COMMENT= High-performance HTTP/HTTPS/SPDY proxy diff --git a/www/cakephp21/Makefile b/www/cakephp21/Makefile index d6fe4e7..5cae022 100644 --- a/www/cakephp21/Makefile +++ b/www/cakephp21/Makefile @@ -4,7 +4,7 @@ PORTNAME= cakephp PORTVERSION= 2.1.5 CATEGORIES= www -MASTER_SITES= GH +MASTER_SITES= GHL PKGNAMESUFFIX= 21 MAINTAINER= theis@gmx.at diff --git a/www/cherokee/Makefile b/www/cherokee/Makefile index 125d95f..4c5d0a4 100644 --- a/www/cherokee/Makefile +++ b/www/cherokee/Makefile @@ -4,7 +4,7 @@ PORTNAME= cherokee PORTVERSION= 1.2.104 CATEGORIES= www -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= ports@FreeBSD.org COMMENT= Fast and flexible web server diff --git a/www/faup/Makefile b/www/faup/Makefile index a9a647a..b6433fd 100644 --- a/www/faup/Makefile +++ b/www/faup/Makefile @@ -4,7 +4,7 @@ PORTNAME= faup PORTVERSION= 1.4.20150118 CATEGORIES= www devel -MASTER_SITES= GH LOCAL/antoine +MASTER_SITES= GHL LOCAL/antoine MAINTAINER= antoine@FreeBSD.org COMMENT= Fast URL decoder library diff --git a/www/fcgiwrap/Makefile b/www/fcgiwrap/Makefile index 1c22be0..9c1d4e0 100644 --- a/www/fcgiwrap/Makefile +++ b/www/fcgiwrap/Makefile @@ -4,7 +4,7 @@ PORTNAME= fcgiwrap PORTVERSION= 1.1.0 PORTREVISION= 3 CATEGORIES= www -MASTER_SITES= GH \ +MASTER_SITES= GHL \ http://www.skysmurf.nl/comp/FreeBSD/distfiles/ MAINTAINER= freebsd@skysmurf.nl diff --git a/www/httpie/Makefile b/www/httpie/Makefile index a2cb14c..97ee042 100644 --- a/www/httpie/Makefile +++ b/www/httpie/Makefile @@ -4,7 +4,7 @@ PORTNAME= httpie PORTVERSION= 0.8.0 CATEGORIES= www -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= ale@FreeBSD.org COMMENT= Command line HTTP client diff --git a/www/mochiweb-basho/Makefile b/www/mochiweb-basho/Makefile index 034b7e5..2eadcc9 100644 --- a/www/mochiweb-basho/Makefile +++ b/www/mochiweb-basho/Makefile @@ -3,7 +3,7 @@ PORTNAME= mochiweb PORTVERSION= 1.5.1p7 CATEGORIES= www devel -MASTER_SITES= GH +MASTER_SITES= GHL PKGNAMESUFFIX= -basho MAINTAINER= olgeni@FreeBSD.org diff --git a/www/mochiweb/Makefile b/www/mochiweb/Makefile index f798d36..aebc8c2 100644 --- a/www/mochiweb/Makefile +++ b/www/mochiweb/Makefile @@ -3,7 +3,7 @@ PORTNAME= mochiweb PORTVERSION= 2.10.0 CATEGORIES= www devel -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= olgeni@FreeBSD.org COMMENT= Erlang library for building lightweight HTTP servers diff --git a/www/mod_cloudflare/Makefile b/www/mod_cloudflare/Makefile index 5dcfcc4..1235b62 100644 --- a/www/mod_cloudflare/Makefile +++ b/www/mod_cloudflare/Makefile @@ -4,7 +4,7 @@ PORTNAME= mod_cloudflare PORTVERSION= 0.0.20140409 CATEGORIES= www -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= feld@FreeBSD.org COMMENT= Cloudflare fork of mod_remoteip diff --git a/www/mod_realdoc/Makefile b/www/mod_realdoc/Makefile index 3e536c3..2c2913e 100644 --- a/www/mod_realdoc/Makefile +++ b/www/mod_realdoc/Makefile @@ -4,7 +4,7 @@ PORTNAME= mod_realdoc PORTVERSION= 20130701 CATEGORIES= www -MASTER_SITES= GH \ +MASTER_SITES= GHL \ http://freebsd.cs.nctu.edu.tw/~gslin/files/ MAINTAINER= ports@FreeBSD.org diff --git a/www/phpmustache/Makefile b/www/phpmustache/Makefile index 8293f6a..5ca0d1f 100644 --- a/www/phpmustache/Makefile +++ b/www/phpmustache/Makefile @@ -4,7 +4,7 @@ PORTNAME= phpmustache PORTVERSION= 2.6.0 CATEGORIES= www -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= steve.polyack@intermedix.com COMMENT= PHP5 code for Mustache diff --git a/www/phpsysinfo/Makefile b/www/phpsysinfo/Makefile index 9073379..726199b 100644 --- a/www/phpsysinfo/Makefile +++ b/www/phpsysinfo/Makefile @@ -4,7 +4,7 @@ PORTNAME= phpsysinfo PORTVERSION= 3.2.0 CATEGORIES= www -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= walt@relnor.com COMMENT= PHP script for displaying system information diff --git a/www/py-bottle-cork/Makefile b/www/py-bottle-cork/Makefile index d736176..bfb3251 100644 --- a/www/py-bottle-cork/Makefile +++ b/www/py-bottle-cork/Makefile @@ -3,7 +3,7 @@ PORTNAME= bottle-cork PORTVERSION= 0.10 CATEGORIES= www python -MASTER_SITES= GH +MASTER_SITES= GHL PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= olivier@cochard.me diff --git a/www/redmine-sidebar_hide/Makefile b/www/redmine-sidebar_hide/Makefile index f60f8e7..2851335 100644 --- a/www/redmine-sidebar_hide/Makefile +++ b/www/redmine-sidebar_hide/Makefile @@ -4,7 +4,7 @@ PORTNAME= sidebar_hide PORTVERSION= 0.0.5 CATEGORIES= www -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= kozlov.sergey.404@gmail.com COMMENT= Adds simple hide button for sidebar of Redmine diff --git a/www/rssroll/Makefile b/www/rssroll/Makefile index ac5510f..85f6005 100644 --- a/www/rssroll/Makefile +++ b/www/rssroll/Makefile @@ -3,7 +3,7 @@ PORTNAME= rssroll PORTVERSION= 0.4.1 CATEGORIES= www -MASTER_SITES= GH +MASTER_SITES= GHL MAINTAINER= koue@chaosophia.net COMMENT= RSS collector in C diff --git a/www/seahub/Makefile b/www/seahub/Makefile index 23425b9..4d86161 100644 --- a/www/seahub/Makefile +++ b/www/seahub/Makefile @@ -3,7 +3,7 @@ PORTNAME= seahub PORTVERSION= 4.0.5 CATEGORIES= www -MASTER_SITES= GH:seahub \ +MASTER_SITES= GHL:seahub \ https://pypi.python.org/packages/source/p/pip/:pip \ https://pypi.python.org/packages/source/p/pbr/:pbr \ https://pypi.python.org/packages/source/l/lockfile/:lockfile \ diff --git a/www/tengine/Makefile b/www/tengine/Makefile index fa2d331..e374328 100644 --- a/www/tengine/Makefile +++ b/www/tengine/Makefile @@ -5,7 +5,7 @@ PORTNAME= tengine PORTVERSION= 2.0.3 PORTREVISION= 6 CATEGORIES= www -MASTER_SITES= GH +MASTER_SITES= GHL DISTFILES= ${DISTNAME}${EXTRACT_SUFX} MAINTAINER= robak@FreeBSD.org diff --git a/www/xsp/Makefile b/www/xsp/Makefile index bb4b01e..49689c4 100644 --- a/www/xsp/Makefile +++ b/www/xsp/Makefile @@ -4,7 +4,7 @@ PORTNAME= xsp PORTVERSION= 3.0.11 CATEGORIES= www -MASTER_SITES= GITHUB +MASTER_SITES= GITHUB_LEGACY MAINTAINER= mono@FreeBSD.org COMMENT= Mono based web server diff --git a/x11-themes/clearlooks-phenix-theme/Makefile b/x11-themes/clearlooks-phenix-theme/Makefile index 4a4a028..01eaf22 100644 --- a/x11-themes/clearlooks-phenix-theme/Makefile +++ b/x11-themes/clearlooks-phenix-theme/Makefile @@ -4,7 +4,7 @@ PORTNAME= clearlooks-phenix PORTVERSION= 6.0.3 CATEGORIES= x11-themes xfce -MASTER_SITES= GH GHC +MASTER_SITES= GHL PKGNAMESUFFIX= -theme MAINTAINER= olivierd@FreeBSD.org diff --git a/x11-themes/greybird-theme/Makefile b/x11-themes/greybird-theme/Makefile index 35aceb3..ce8231f 100644 --- a/x11-themes/greybird-theme/Makefile +++ b/x11-themes/greybird-theme/Makefile @@ -4,7 +4,7 @@ PORTNAME= greybird PORTVERSION= 1.5.3 CATEGORIES= x11-themes xfce -MASTER_SITES= GH GHC +MASTER_SITES= GHL PKGNAMESUFFIX= -theme MAINTAINER= olivierd@FreeBSD.org diff --git a/x11-themes/numix-theme/Makefile b/x11-themes/numix-theme/Makefile index 79dd9cc..3e05f95 100644 --- a/x11-themes/numix-theme/Makefile +++ b/x11-themes/numix-theme/Makefile @@ -4,7 +4,7 @@ PORTNAME= numix PORTVERSION= 2.5.1 CATEGORIES= x11-themes xfce -MASTER_SITES= GH GHC +MASTER_SITES= GHL PKGNAMESUFFIX= -theme MAINTAINER= olivierd@FreeBSD.org diff --git a/x11-toolkits/py-kivy/Makefile b/x11-toolkits/py-kivy/Makefile index cfc70ac..3df1a42 100644 --- a/x11-toolkits/py-kivy/Makefile +++ b/x11-toolkits/py-kivy/Makefile @@ -5,7 +5,7 @@ PORTNAME= kivy PORTVERSION= 1.8.0 PORTREVISION= 1 CATEGORIES= x11-toolkits python -MASTER_SITES= GH LOCAL/dbn/${PORTNAME} +MASTER_SITES= GHL LOCAL/dbn/${PORTNAME} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= dbn@FreeBSD.org diff --git a/x11/rofi/Makefile b/x11/rofi/Makefile index 43c6e45..b6618c9 100644 --- a/x11/rofi/Makefile +++ b/x11/rofi/Makefile @@ -3,7 +3,7 @@ PORTNAME= rofi PORTVERSION= 0.14.12 CATEGORIES= x11 -MASTER_SITES= GH GHC +MASTER_SITES= GHL MAINTAINER= nomoo@nomoo.ru COMMENT= Window switcher, run dialog and dmenu replacement |