diff options
author | Tijl Coosemans <tijl@FreeBSD.org> | 2019-01-16 11:13:44 +0000 |
---|---|---|
committer | Tijl Coosemans <tijl@FreeBSD.org> | 2019-01-16 11:13:44 +0000 |
commit | 1bf487d3e73d83700f5a4aeb3a9ffbfc6e87856b (patch) | |
tree | 127ae6686665fd0ff97a7bd5f27449299929734e | |
parent | d20d8aa75e51f61da14ac206199a1ebc244f940a (diff) | |
download | ports-1bf487d3e73d83700f5a4aeb3a9ffbfc6e87856b.tar.gz ports-1bf487d3e73d83700f5a4aeb3a9ffbfc6e87856b.zip |
Fix Qt5 symbol version scripts to put the catch-all clause first. When
a symbol matches multiple clauses the last one takes precedence. If the
catch-all is last it captures everything. In the case of Qt5 libraries
this caused all symbols to have a Qt_5 label while some should have
Qt_5_PRIVATE_API. This only affects lld because GNU ld always gives the
catch-all lowest priority.
Older versions of Qt5Webengine exported some memory allocation symbols from
the bundled Chromium. Version 5.9 stopped exporting these [1] but the
symbols were kept as weak wrappers for the standard allocation functions to
maintain binary compatibility. [2][3] The problem is that the call to the
standard function in these weak wrappers is only resolved to the standard
function if there's a call to this standard function in other parts of
Qt5Webengine, because only then is there a non-weak symbol that takes
precedence over the weak one. If there's no such non-weak symbol the call
in the weak wrapper resolves to the weak wrapper itself creating an infinite
call loop that overflows the stack and causes a crash. Some of the
allocation functions are variants of C++ new and delete and it probably
depends on the compiler whether these variants are used in other parts of
Qt5Webengine.
Remove the weak wrappers (make them Linux specific). This isn't binary
compatible but we are already breaking that with the changes to the symbol
versions.
[1] https://github.com/qt/qtwebengine/commit/5c2cbfccf9aafb547b0b30914c4056abd25942a4
[2] https://github.com/qt/qtwebengine/commit/2ed5054e3a800fa97c2c9e920ba1e6ea4b6ef2a5
[3] https://github.com/qt/qtwebengine/commit/009f5ebb4bd6e50188671e0815a5dae6afe39db5
Bump all ports that depend on Qt5.
PR: 234070
Exp-run by: antoine
Approved by: kde (adridg)
Notes
Notes:
svn path=/head/; revision=490472
1089 files changed, 1135 insertions, 534 deletions
diff --git a/accessibility/kdeaccessibility/Makefile b/accessibility/kdeaccessibility/Makefile index c09a684cf78d..283d7842a4a4 100644 --- a/accessibility/kdeaccessibility/Makefile +++ b/accessibility/kdeaccessibility/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdeaccessibility DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= accessibility kde MAINTAINER= kde@FreeBSD.org diff --git a/accessibility/kmag/Makefile b/accessibility/kmag/Makefile index 07bd85e06650..ca7aafd0c848 100644 --- a/accessibility/kmag/Makefile +++ b/accessibility/kmag/Makefile @@ -2,6 +2,7 @@ PORTNAME= kmag DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= accessibility kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/accessibility/kmousetool/Makefile b/accessibility/kmousetool/Makefile index 205a4e5b4731..b343fcc3492d 100644 --- a/accessibility/kmousetool/Makefile +++ b/accessibility/kmousetool/Makefile @@ -2,6 +2,7 @@ PORTNAME= kmousetool DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= accessibility kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/accessibility/kmouth/Makefile b/accessibility/kmouth/Makefile index 411fb2596ab1..3a9fc84d0fa2 100644 --- a/accessibility/kmouth/Makefile +++ b/accessibility/kmouth/Makefile @@ -2,6 +2,7 @@ PORTNAME= kmouth DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= accessibility kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/accessibility/qt5-speech/Makefile b/accessibility/qt5-speech/Makefile index a481ec94c86e..de2a7ae72187 100644 --- a/accessibility/qt5-speech/Makefile +++ b/accessibility/qt5-speech/Makefile @@ -2,7 +2,7 @@ PORTNAME= speech DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= accessibility PKGNAMEPREFIX= qt5- diff --git a/archivers/ark/Makefile b/archivers/ark/Makefile index 40dfb035f3b8..9a563f82232e 100644 --- a/archivers/ark/Makefile +++ b/archivers/ark/Makefile @@ -2,6 +2,7 @@ PORTNAME= ark DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= archivers kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/archivers/kf5-karchive/Makefile b/archivers/kf5-karchive/Makefile index 1b3c102f4f22..9e318a420873 100644 --- a/archivers/kf5-karchive/Makefile +++ b/archivers/kf5-karchive/Makefile @@ -2,6 +2,7 @@ PORTNAME= karchive DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= archivers kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/archivers/peazip/Makefile b/archivers/peazip/Makefile index b403f5065d52..63d384f33e6a 100644 --- a/archivers/peazip/Makefile +++ b/archivers/peazip/Makefile @@ -2,6 +2,7 @@ PORTNAME= peazip PORTVERSION= 6.6.1 +PORTREVISION= 1 CATEGORIES= archivers PKGNAMESUFFIX= ${LAZARUS_PKGNAMESUFFIX} MASTER_SITES= https://github.com/giorgiotani/PeaZip/releases/download/${PORTVERSION}/ diff --git a/archivers/quazip/Makefile b/archivers/quazip/Makefile index cf955c620f3d..9c3798320c18 100644 --- a/archivers/quazip/Makefile +++ b/archivers/quazip/Makefile @@ -3,6 +3,7 @@ PORTNAME= quazip DISTVERSION= 0.7.6 +PORTREVISION= 1 CATEGORIES= archivers PKGNAMESUFFIX= -${FLAVOR} diff --git a/astro/gpsbabel/Makefile b/astro/gpsbabel/Makefile index 814533cc85f7..74dd361bb2ea 100644 --- a/astro/gpsbabel/Makefile +++ b/astro/gpsbabel/Makefile @@ -4,7 +4,7 @@ PORTNAME= gpsbabel DISTVERSIONPREFIX= ${PORTNAME}_ DISTVERSION= 1_5_4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= astro geography MAINTAINER= dev2@heesakkers.info diff --git a/astro/kstars/Makefile b/astro/kstars/Makefile index 549d63915cd0..329617b6a923 100644 --- a/astro/kstars/Makefile +++ b/astro/kstars/Makefile @@ -2,6 +2,7 @@ PORTNAME= kstars DISTVERSION= 3.0.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= astro kde MASTER_SITES= KDE/stable/${PORTNAME} diff --git a/astro/libkgeomap/Makefile b/astro/libkgeomap/Makefile index 772d02ca8a09..909be59284b4 100644 --- a/astro/libkgeomap/Makefile +++ b/astro/libkgeomap/Makefile @@ -2,6 +2,7 @@ PORTNAME= libkgeomap DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= astro kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/astro/marble/Makefile b/astro/marble/Makefile index 01a5a76f1d06..4d9925bcd553 100644 --- a/astro/marble/Makefile +++ b/astro/marble/Makefile @@ -2,6 +2,7 @@ PORTNAME= marble DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= astro kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/astro/merkaartor/Makefile b/astro/merkaartor/Makefile index f0a7e20d6a5a..036ebd723c69 100644 --- a/astro/merkaartor/Makefile +++ b/astro/merkaartor/Makefile @@ -3,7 +3,7 @@ PORTNAME= merkaartor PORTVERSION= 0.18.2 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= astro MAINTAINER= dev2@heesakkers.info diff --git a/astro/oskar/Makefile b/astro/oskar/Makefile index 7293e8da5b47..7f1f19d41444 100644 --- a/astro/oskar/Makefile +++ b/astro/oskar/Makefile @@ -2,6 +2,7 @@ PORTNAME= OSKAR DISTVERSION= 2.7.0 +PORTREVISION= 1 CATEGORIES= astro MAINTAINER= yuri@FreeBSD.org diff --git a/astro/qmapshack/Makefile b/astro/qmapshack/Makefile index d2d68f9b89e5..d390c478d6e6 100644 --- a/astro/qmapshack/Makefile +++ b/astro/qmapshack/Makefile @@ -3,6 +3,7 @@ PORTNAME= qmapshack PORTVERSION= 1.12.1 +PORTREVISION= 1 CATEGORIES= astro MASTER_SITES= https://bitbucket.org/maproom/qmapshack/downloads/ diff --git a/astro/stellarium/Makefile b/astro/stellarium/Makefile index 939758421a50..049709756947 100644 --- a/astro/stellarium/Makefile +++ b/astro/stellarium/Makefile @@ -4,6 +4,7 @@ PORTNAME= stellarium PORTVERSION= 0.18.3 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= astro EXTRACT_ONLY= ${_DISTFILES:Nstars_*.cat:N*.pdf} diff --git a/astro/viking/Makefile b/astro/viking/Makefile index de2870a0c5d3..9254f1889b44 100644 --- a/astro/viking/Makefile +++ b/astro/viking/Makefile @@ -3,7 +3,7 @@ PORTNAME= viking PORTVERSION= 1.6.2 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= astro MASTER_SITES= SF/${PORTNAME}/ diff --git a/audio/abgate-lv2/Makefile b/audio/abgate-lv2/Makefile index 3b0a8585691e..3e336603f5d1 100644 --- a/audio/abgate-lv2/Makefile +++ b/audio/abgate-lv2/Makefile @@ -3,7 +3,7 @@ PORTNAME= abGate DISTVERSIONPREFIX= v DISTVERSION= 1.1.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio PKGNAMESUFFIX= -lv2 diff --git a/audio/amarok/Makefile b/audio/amarok/Makefile index e69e3a943b81..af60ac75cb58 100644 --- a/audio/amarok/Makefile +++ b/audio/amarok/Makefile @@ -4,6 +4,7 @@ PORTNAME= amarok DISTVERSIONPREFIX= v DISTVERSION= 2.9.0-277 DISTVERSIONSUFFIX= -gd50ecc430c +PORTREVISION= 1 CATEGORIES= audio kde MAINTAINER= kde@FreeBSD.org diff --git a/audio/ardour5/Makefile b/audio/ardour5/Makefile index ff76565f8916..69b3e89ea89b 100644 --- a/audio/ardour5/Makefile +++ b/audio/ardour5/Makefile @@ -3,7 +3,7 @@ PORTNAME= ardour5 PORTVERSION= 5.12.0 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= audio MASTER_SITES= https://github.com/beerml/ardour_releases/raw/master/ # The original master side points to the latest release only: diff --git a/audio/audiocd-kio/Makefile b/audio/audiocd-kio/Makefile index 5a94a6794916..5aa838f6c001 100644 --- a/audio/audiocd-kio/Makefile +++ b/audio/audiocd-kio/Makefile @@ -2,6 +2,7 @@ PORTNAME= audiocd-kio DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= audio kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/audio/bambootracker/Makefile b/audio/bambootracker/Makefile index 5dbd5c50548a..775fdf7800d5 100644 --- a/audio/bambootracker/Makefile +++ b/audio/bambootracker/Makefile @@ -4,7 +4,7 @@ PORTNAME= bambootracker DISTVERSIONPREFIX= v DISTVERSION= 0.1.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= LOCAL/ehaupt:extras DISTFILES= ${PORTNAME}-extras-${EXTRASVERSION}${EXTRACT_SUFX}:extras diff --git a/audio/cadence/Makefile b/audio/cadence/Makefile index fa83579d4a17..f62988947c06 100644 --- a/audio/cadence/Makefile +++ b/audio/cadence/Makefile @@ -4,7 +4,7 @@ PORTNAME= cadence DISTVERSIONPREFIX= v DISTVERSION= 0.9.0-7 DISTVERSIONSUFFIX= -g4a5f5b4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MAINTAINER= yuri@FreeBSD.org diff --git a/audio/cantata/Makefile b/audio/cantata/Makefile index 087c7db61aae..c24b066d356c 100644 --- a/audio/cantata/Makefile +++ b/audio/cantata/Makefile @@ -3,7 +3,7 @@ PORTNAME= cantata DISTVERSIONPREFIX= v DISTVERSION= 2.3.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio kde MAINTAINER= kde@FreeBSD.org diff --git a/audio/carla/Makefile b/audio/carla/Makefile index 20046233d9d7..7aea450a1dea 100644 --- a/audio/carla/Makefile +++ b/audio/carla/Makefile @@ -3,6 +3,7 @@ PORTNAME= Carla DISTVERSIONPREFIX= v DISTVERSION= 1.9.13 +PORTREVISION= 1 CATEGORIES= audio MAINTAINER= yuri@FreeBSD.org diff --git a/audio/clementine-player/Makefile b/audio/clementine-player/Makefile index 16e2fd4c02e9..70ef2b460aa9 100644 --- a/audio/clementine-player/Makefile +++ b/audio/clementine-player/Makefile @@ -4,6 +4,7 @@ PORTNAME= clementine DISTVERSION= 1.3.1-661 DISTVERSIONSUFFIX= -g4ff370ce1 +PORTREVISION= 1 CATEGORIES= audio PKGNAMESUFFIX= -player diff --git a/audio/csoundqt/Makefile b/audio/csoundqt/Makefile index ffade55e30dc..5aa92a4df4ff 100644 --- a/audio/csoundqt/Makefile +++ b/audio/csoundqt/Makefile @@ -2,7 +2,7 @@ PORTNAME= CsoundQt DISTVERSION= 0.9.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MAINTAINER= yuri@FreeBSD.org diff --git a/audio/dpf-plugins-lv2/Makefile b/audio/dpf-plugins-lv2/Makefile index 03d8dab0268e..afd4a6e55bb6 100644 --- a/audio/dpf-plugins-lv2/Makefile +++ b/audio/dpf-plugins-lv2/Makefile @@ -3,7 +3,7 @@ PORTNAME= dpf-plugins DISTVERSIONPREFIX= v DISTVERSION= 1.1-1 -PORTREVISION= 3 +PORTREVISION= 4 DISTVERSIONSUFFIX= -g0c433e4 CATEGORIES= audio PKGNAMESUFFIX= -lv2 diff --git a/audio/drumkv1-lv2/Makefile b/audio/drumkv1-lv2/Makefile index d111dd33efd8..c5c3d965b72d 100644 --- a/audio/drumkv1-lv2/Makefile +++ b/audio/drumkv1-lv2/Makefile @@ -2,6 +2,7 @@ PORTNAME= drumkv1 DISTVERSION= 0.9.4 +PORTREVISION= 1 CATEGORIES= audio multimedia MASTER_SITES= SF PKGNAMESUFFIX= -lv2 diff --git a/audio/drumstick/Makefile b/audio/drumstick/Makefile index 6f1bdc94b333..1e724f5bf554 100644 --- a/audio/drumstick/Makefile +++ b/audio/drumstick/Makefile @@ -2,7 +2,7 @@ PORTNAME= drumstick DISTVERSION= 1.1.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio multimedia MASTER_SITES= SF/${PORTNAME}/${PORTVERSION}/ diff --git a/audio/dsbmixer/Makefile b/audio/dsbmixer/Makefile index 73e2c307d23e..854c8d1819e4 100644 --- a/audio/dsbmixer/Makefile +++ b/audio/dsbmixer/Makefile @@ -2,6 +2,7 @@ PORTNAME= dsbmixer PORTVERSION= 1.3.2 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://freeshell.de/~mk/download/ diff --git a/audio/elisa/Makefile b/audio/elisa/Makefile index c160b526d98f..00a69102e26e 100644 --- a/audio/elisa/Makefile +++ b/audio/elisa/Makefile @@ -2,7 +2,7 @@ PORTNAME= elisa PORTVERSION= 0.3.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION} diff --git a/audio/faustlive/Makefile b/audio/faustlive/Makefile index a5a6ac6ee08d..ad65e1c01d10 100644 --- a/audio/faustlive/Makefile +++ b/audio/faustlive/Makefile @@ -2,7 +2,7 @@ PORTNAME= faustlive PORTVERSION= g20171205 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MAINTAINER= yuri@FreeBSD.org diff --git a/audio/flacon/Makefile b/audio/flacon/Makefile index e70b5284b2b4..59f7af9f62c0 100644 --- a/audio/flacon/Makefile +++ b/audio/flacon/Makefile @@ -3,7 +3,7 @@ PORTNAME= flacon PORTVERSION= 5.0.0 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONPREFIX= v CATEGORIES= audio diff --git a/audio/fmit/Makefile b/audio/fmit/Makefile index e1e06c503205..3e334cc4cd48 100644 --- a/audio/fmit/Makefile +++ b/audio/fmit/Makefile @@ -4,6 +4,7 @@ PORTNAME= fmit PORTVERSION= 1.2.6 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= audio MAINTAINER= danilo@FreeBSD.org diff --git a/audio/guidolib/Makefile b/audio/guidolib/Makefile index 49a5b5ec1128..21dc15f34bbf 100644 --- a/audio/guidolib/Makefile +++ b/audio/guidolib/Makefile @@ -4,6 +4,7 @@ PORTNAME= guidolib DISTVERSIONPREFIX= v DISTVERSION= 164-61 DISTVERSIONSUFFIX= -gbcd5705d +PORTREVISION= 1 CATEGORIES= audio graphics print PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ diff --git a/audio/hydrogen/Makefile b/audio/hydrogen/Makefile index 4ac4ff8fabef..5545475c20f8 100644 --- a/audio/hydrogen/Makefile +++ b/audio/hydrogen/Makefile @@ -4,6 +4,7 @@ PORTNAME= hydrogen DISTVERSION= 1.0.0-beta1-325 DISTVERSIONSUFFIX= -g538eaeb9 +PORTREVISION= 1 CATEGORIES= audio MAINTAINER= FreeBSD@ShaneWare.Biz diff --git a/audio/jalv-select/Makefile b/audio/jalv-select/Makefile index e281b5d2c6f6..0746791847c5 100644 --- a/audio/jalv-select/Makefile +++ b/audio/jalv-select/Makefile @@ -3,6 +3,7 @@ PORTNAME= jalv-select DISTVERSIONPREFIX= v DISTVERSION= 1.2 +PORTREVISION= 1 CATEGORIES= audio MAINTAINER= yuri@FreeBSD.org diff --git a/audio/jalv/Makefile b/audio/jalv/Makefile index 20107dd79b7b..58c85e6f9bf3 100644 --- a/audio/jalv/Makefile +++ b/audio/jalv/Makefile @@ -3,7 +3,7 @@ PORTNAME= jalv PORTVERSION= 1.6.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio MASTER_SITES= http://download.drobilla.net/ diff --git a/audio/juk/Makefile b/audio/juk/Makefile index d549d507a494..1c60e94dd043 100644 --- a/audio/juk/Makefile +++ b/audio/juk/Makefile @@ -2,6 +2,7 @@ PORTNAME= juk DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= audio kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/audio/kid3-qt5/Makefile b/audio/kid3-qt5/Makefile index bf253cbeb1f6..b9db97fa999a 100644 --- a/audio/kid3-qt5/Makefile +++ b/audio/kid3-qt5/Makefile @@ -2,7 +2,7 @@ PORTNAME= kid3 PORTVERSION= 3.6.2 -PORTREVISION?= 2 +PORTREVISION?= 3 CATEGORIES= audio kde MASTER_SITES= SF PKGNAMESUFFIX= -${SLAVE} diff --git a/audio/kmix/Makefile b/audio/kmix/Makefile index 292b34cb34fb..ee421d9dd2ba 100644 --- a/audio/kmix/Makefile +++ b/audio/kmix/Makefile @@ -2,6 +2,7 @@ PORTNAME= kmix DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= audio kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/audio/kwave/Makefile b/audio/kwave/Makefile index d1f3650cbad4..171f5dc9e8a7 100644 --- a/audio/kwave/Makefile +++ b/audio/kwave/Makefile @@ -2,6 +2,7 @@ PORTNAME= kwave DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= audio kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/audio/lastfm-desktop/Makefile b/audio/lastfm-desktop/Makefile index f43f1f35d94b..f909e607f744 100644 --- a/audio/lastfm-desktop/Makefile +++ b/audio/lastfm-desktop/Makefile @@ -3,7 +3,7 @@ PORTNAME= lastfm-desktop PORTVERSION= 2.1.36 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= audio MAINTAINER= ports@FreeBSD.org diff --git a/audio/libechonest/Makefile b/audio/libechonest/Makefile index 46e48eba3d70..b70dbe658f9d 100644 --- a/audio/libechonest/Makefile +++ b/audio/libechonest/Makefile @@ -3,7 +3,7 @@ PORTNAME= libechonest PORTVERSION= 2.3.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio MAINTAINER= nivit@FreeBSD.org diff --git a/audio/libkcddb/Makefile b/audio/libkcddb/Makefile index 649bcedc67e2..44af2075bd87 100644 --- a/audio/libkcddb/Makefile +++ b/audio/libkcddb/Makefile @@ -2,6 +2,7 @@ PORTNAME= libkcddb DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= audio kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/audio/libkcompactdisc/Makefile b/audio/libkcompactdisc/Makefile index 6abf91d1d082..375df59a78af 100644 --- a/audio/libkcompactdisc/Makefile +++ b/audio/libkcompactdisc/Makefile @@ -2,6 +2,7 @@ PORTNAME= libkcompactdisc DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= audio kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/audio/lmms/Makefile b/audio/lmms/Makefile index 449a74e30900..6dc7b0c95b70 100644 --- a/audio/lmms/Makefile +++ b/audio/lmms/Makefile @@ -4,7 +4,7 @@ PORTNAME= lmms DISTVERSIONPREFIX= v DISTVERSION= 1.2.0-rc7 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 2 CATEGORIES= audio diff --git a/audio/midipp/Makefile b/audio/midipp/Makefile index 9cb6bc810308..79fceea7f174 100644 --- a/audio/midipp/Makefile +++ b/audio/midipp/Makefile @@ -3,6 +3,7 @@ PORTNAME= midipp PORTVERSION= 2.0.0 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://www.selasky.org/hans_petter/distfiles/ \ http://home.selasky.org:8192/distfiles/ diff --git a/audio/minitunes/Makefile b/audio/minitunes/Makefile index 5614e462a943..629acdb40129 100644 --- a/audio/minitunes/Makefile +++ b/audio/minitunes/Makefile @@ -3,7 +3,7 @@ PORTNAME= minitunes PORTVERSION= 0.1.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= audio MASTER_SITES= http://flavio.tordini.org/files/${PORTNAME}/ diff --git a/audio/mixxx/Makefile b/audio/mixxx/Makefile index 14a93c8a9296..1a20abf8c410 100644 --- a/audio/mixxx/Makefile +++ b/audio/mixxx/Makefile @@ -4,6 +4,7 @@ PORTNAME= mixxx DISTVERSIONPREFIX= release- DISTVERSION= 2.2.0 +PORTREVISION= 1 CATEGORIES= audio MAINTAINER= acm@FreeBSD.org diff --git a/audio/mixxx21/Makefile b/audio/mixxx21/Makefile index 82c8a0d79641..6340edd72b98 100644 --- a/audio/mixxx21/Makefile +++ b/audio/mixxx21/Makefile @@ -4,6 +4,7 @@ PORTNAME= mixxx DISTVERSIONPREFIX= release- DISTVERSION= 2.1.6 +PORTREVISION= 1 CATEGORIES= audio PKGNAMESUFFIX= 21 diff --git a/audio/musescore/Makefile b/audio/musescore/Makefile index db23b9784141..4c79f6ffbdbe 100644 --- a/audio/musescore/Makefile +++ b/audio/musescore/Makefile @@ -3,7 +3,7 @@ PORTNAME= musescore DISTVERSION= 3.0.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= http://ftp.osuosl.org/pub/musescore/releases/MuseScore-${DISTVERSION}/ DISTNAME= MuseScore-${DISTVERSION} diff --git a/audio/mythplugin-mythmusic/Makefile b/audio/mythplugin-mythmusic/Makefile index ed428ce8667d..76bd87582f97 100644 --- a/audio/mythplugin-mythmusic/Makefile +++ b/audio/mythplugin-mythmusic/Makefile @@ -4,7 +4,7 @@ PORTNAME= mythmusic DISTVERSIONPREFIX= v DISTVERSION= 29.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio PKGNAMEPREFIX= mythplugin- diff --git a/audio/padthv1-lv2/Makefile b/audio/padthv1-lv2/Makefile index 31a857d732bd..aa5026faf7b4 100644 --- a/audio/padthv1-lv2/Makefile +++ b/audio/padthv1-lv2/Makefile @@ -3,6 +3,7 @@ PORTNAME= padthv1 DISTVERSIONPREFIX= ${PORTNAME}_ DISTVERSION= 0_9_4 +PORTREVISION= 1 CATEGORIES= audio PKGNAMESUFFIX= -lv2 diff --git a/audio/pavucontrol-qt/Makefile b/audio/pavucontrol-qt/Makefile index 563d24aabca9..9dd86e1e3243 100644 --- a/audio/pavucontrol-qt/Makefile +++ b/audio/pavucontrol-qt/Makefile @@ -3,7 +3,7 @@ PORTNAME= pavucontrol-qt PORTVERSION= 0.4.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= LXQT/${PORTNAME} diff --git a/audio/pc-mixer/Makefile b/audio/pc-mixer/Makefile index 73d99f9dc899..66d2c88a8b3d 100644 --- a/audio/pc-mixer/Makefile +++ b/audio/pc-mixer/Makefile @@ -2,7 +2,7 @@ PORTNAME= pc-mixer PORTVERSION= 20171212 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MAINTAINER= jmaloney@ixsystems.com diff --git a/audio/picard/Makefile b/audio/picard/Makefile index d4aabe1dbf5f..52703be9d5db 100644 --- a/audio/picard/Makefile +++ b/audio/picard/Makefile @@ -3,6 +3,7 @@ PORTNAME= picard PORTVERSION= 2.1 +PORTREVISION= 1 CATEGORIES= audio python MASTER_SITES= http://ftp.musicbrainz.org/pub/musicbrainz/picard/ \ ftp://ftp.musicbrainz.org/pub/musicbrainz/picard/ \ diff --git a/audio/plasma5-plasma-pa/Makefile b/audio/plasma5-plasma-pa/Makefile index 024d4510793f..f28338c3a4a5 100644 --- a/audio/plasma5-plasma-pa/Makefile +++ b/audio/plasma5-plasma-pa/Makefile @@ -2,6 +2,7 @@ PORTNAME= plasma-pa DISTVERSION= ${KDE_PLASMA_VERSION} +PORTREVISION= 1 CATEGORIES= audio kde kde-plasma MAINTAINER= kde@FreeBSD.org diff --git a/audio/polyphone/Makefile b/audio/polyphone/Makefile index 724493817f25..781512839043 100644 --- a/audio/polyphone/Makefile +++ b/audio/polyphone/Makefile @@ -3,7 +3,7 @@ PORTNAME= polyphone DISTVERSION= 1.9 DISTVERSIONSUFFIX= -src -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= http://polyphone-soundfonts.com/en/download/file/76-polyphone-1-8-src-zip/latest/download?ae95d968569b61bc77f7b8559a14db4d=1/ diff --git a/audio/qjackctl/Makefile b/audio/qjackctl/Makefile index b10f8707a181..281e30b0e782 100644 --- a/audio/qjackctl/Makefile +++ b/audio/qjackctl/Makefile @@ -4,7 +4,7 @@ PORTNAME= qjackctl DISTVERSIONPREFIX= qjackctl_ DISTVERSION= 0_5_5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MAINTAINER= yuri@FreeBSD.org diff --git a/audio/qmidiarp/Makefile b/audio/qmidiarp/Makefile index 951292a36ccd..bc5c0f982e71 100644 --- a/audio/qmidiarp/Makefile +++ b/audio/qmidiarp/Makefile @@ -4,7 +4,7 @@ PORTNAME= qmidiarp DISTVERSIONPREFIX= qmidiarp- DISTVERSION= 0.6.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MAINTAINER= yuri@FreeBSD.org diff --git a/audio/qsampler/Makefile b/audio/qsampler/Makefile index 4ffa72444a27..9cc174370d8b 100644 --- a/audio/qsampler/Makefile +++ b/audio/qsampler/Makefile @@ -4,6 +4,7 @@ PORTNAME= qsampler DISTVERSIONPREFIX= qsampler_ DISTVERSION= 0_5_0 +PORTREVISION= 1 CATEGORIES= audio MAINTAINER= ports@FreeBSD.org diff --git a/audio/qsynth/Makefile b/audio/qsynth/Makefile index d049e00a3d05..61b716976d7c 100644 --- a/audio/qsynth/Makefile +++ b/audio/qsynth/Makefile @@ -3,7 +3,7 @@ PORTNAME= qsynth PORTVERSION= 0.5.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio MASTER_SITES= SF diff --git a/audio/quimup/Makefile b/audio/quimup/Makefile index 54656f5cbd5d..448c45d0325e 100644 --- a/audio/quimup/Makefile +++ b/audio/quimup/Makefile @@ -3,7 +3,7 @@ PORTNAME= quimup PORTVERSION= 1.4.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= SF/${PORTNAME} DISTNAME= ${PORTNAME}_${PORTVERSION}_source diff --git a/audio/rosegarden/Makefile b/audio/rosegarden/Makefile index c64ea7db29d6..e9fa7015e911 100644 --- a/audio/rosegarden/Makefile +++ b/audio/rosegarden/Makefile @@ -3,6 +3,7 @@ PORTNAME= rosegarden PORTVERSION= 18.12 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= SF diff --git a/audio/samplv1-lv2/Makefile b/audio/samplv1-lv2/Makefile index be5bbbbfdbc1..f08dc6194bc3 100644 --- a/audio/samplv1-lv2/Makefile +++ b/audio/samplv1-lv2/Makefile @@ -3,6 +3,7 @@ PORTNAME= samplv1 DISTVERSIONPREFIX= ${PORTNAME}_ DISTVERSION= 0_9_4 +PORTREVISION= 1 CATEGORIES= audio PKGNAMESUFFIX= -lv2 diff --git a/audio/sayonara/Makefile b/audio/sayonara/Makefile index 7049a6b85300..a5bb6ae3948c 100644 --- a/audio/sayonara/Makefile +++ b/audio/sayonara/Makefile @@ -4,7 +4,7 @@ PORTNAME= sayonara DISTVERSIONPREFIX= player- DISTVERSION= 1.1.1 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONSUFFIX= -git1-20180828 CATEGORIES= audio MASTER_SITES= http://www.sayonara-player.com/sw/ diff --git a/audio/sc3-plugins/Makefile b/audio/sc3-plugins/Makefile index d92c6516e016..59a1fd8999ec 100644 --- a/audio/sc3-plugins/Makefile +++ b/audio/sc3-plugins/Makefile @@ -3,7 +3,7 @@ PORTNAME= sc3-plugins DISTVERSIONPREFIX= Version- DISTVERSION= 3.9.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= audio MAINTAINER= yuri@FreeBSD.org diff --git a/audio/sonic-visualiser/Makefile b/audio/sonic-visualiser/Makefile index d8f5ad93edc1..756a329ef6f8 100644 --- a/audio/sonic-visualiser/Makefile +++ b/audio/sonic-visualiser/Makefile @@ -2,7 +2,7 @@ PORTNAME= sonic-visualiser PORTVERSION= 2.5 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio MASTER_SITES= https://code.soundsoftware.ac.uk/attachments/download/1675/ diff --git a/audio/soundkonverter/Makefile b/audio/soundkonverter/Makefile index 370b451c2420..5152db97fbac 100644 --- a/audio/soundkonverter/Makefile +++ b/audio/soundkonverter/Makefile @@ -4,7 +4,7 @@ PORTNAME= soundkonverter PORTVERSION= 3.0.1 DISTVERSIONPREFIX= v -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio kde MAINTAINER= dbn@FreeBSD.org diff --git a/audio/suil/Makefile b/audio/suil/Makefile index 982e09cf96b7..7b8a6543a8e0 100644 --- a/audio/suil/Makefile +++ b/audio/suil/Makefile @@ -3,6 +3,7 @@ PORTNAME= suil PORTVERSION= 0.10.2 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= http://download.drobilla.net/ diff --git a/audio/supercollider/Makefile b/audio/supercollider/Makefile index d55e32ae7686..b203ae7d6d0b 100644 --- a/audio/supercollider/Makefile +++ b/audio/supercollider/Makefile @@ -2,7 +2,7 @@ PORTNAME= supercollider DISTVERSION= 3.9.3 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= audio MASTER_SITES= https://github.com/supercollider/supercollider/releases/download/Version-${PORTVERSION}/ DISTNAME= SuperCollider-${PORTVERSION}-Source-linux diff --git a/audio/synthv1-lv2/Makefile b/audio/synthv1-lv2/Makefile index 44cb52562aba..cf877a9348cb 100644 --- a/audio/synthv1-lv2/Makefile +++ b/audio/synthv1-lv2/Makefile @@ -3,6 +3,7 @@ PORTNAME= synthv1 DISTVERSIONPREFIX= ${PORTNAME}_ DISTVERSION= 0_9_4 +PORTREVISION= 1 CATEGORIES= audio PKGNAMESUFFIX= -lv2 diff --git a/audio/vmpk/Makefile b/audio/vmpk/Makefile index bf0659063aba..93193a99e454 100644 --- a/audio/vmpk/Makefile +++ b/audio/vmpk/Makefile @@ -2,6 +2,7 @@ PORTNAME= vmpk DISTVERSION= 0.7.1 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= https://phoenixnap.dl.sourceforge.net/project/vmpk/vmpk/${PORTVERSION}/ diff --git a/benchmarks/octave-forge-benchmark/Makefile b/benchmarks/octave-forge-benchmark/Makefile index ad3229510800..340230c4b953 100644 --- a/benchmarks/octave-forge-benchmark/Makefile +++ b/benchmarks/octave-forge-benchmark/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-benchmark PORTVERSION= 1.1.1 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= benchmarks math MAINTAINER= stephen@FreeBSD.org diff --git a/biology/py-orange3-bioinformatics/Makefile b/biology/py-orange3-bioinformatics/Makefile index 3674aa25e8ec..5148dc2bc963 100644 --- a/biology/py-orange3-bioinformatics/Makefile +++ b/biology/py-orange3-bioinformatics/Makefile @@ -2,7 +2,7 @@ PORTNAME= orange3-bioinformatics DISTVERSION= 3.2.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= biology python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/biology/py-orange3-single-cell/Makefile b/biology/py-orange3-single-cell/Makefile index 35249d39deb6..41d46c95b25a 100644 --- a/biology/py-orange3-single-cell/Makefile +++ b/biology/py-orange3-single-cell/Makefile @@ -2,7 +2,7 @@ PORTNAME= orange3-single-cell DISTVERSION= 0.8.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= biology python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/biology/ugene/Makefile b/biology/ugene/Makefile index 244b3a8c8754..fa4c63e0ecdf 100644 --- a/biology/ugene/Makefile +++ b/biology/ugene/Makefile @@ -3,6 +3,7 @@ PORTNAME= ugene DISTVERSION= 1.31.0 +PORTREVISION= 1 CATEGORIES= biology science MASTER_SITES= http://ugene.unipro.ru/downloads/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} QueryDesigner_UserManual.pdf \ diff --git a/cad/freecad/Makefile b/cad/freecad/Makefile index df1fc0dd0ec5..23d078cfff83 100644 --- a/cad/freecad/Makefile +++ b/cad/freecad/Makefile @@ -3,7 +3,7 @@ PORTNAME= FreeCAD DISTVERSION= 0.17-13541 # git rev-list --count DISTVERSIONSUFFIX= -g9948ee4f1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= cad MAINTAINER= ports@FreeBSD.org diff --git a/cad/fritzing/Makefile b/cad/fritzing/Makefile index 99b336fa2af4..c6bec30647df 100644 --- a/cad/fritzing/Makefile +++ b/cad/fritzing/Makefile @@ -4,7 +4,7 @@ PORTNAME= fritzing PORTVERSION= 0.9.2 DISTVERSIONSUFFIX= b -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= cad MAINTAINER= lenzi.sergio@gmail.com diff --git a/cad/librecad/Makefile b/cad/librecad/Makefile index b75100b67c77..c566ec1334a7 100644 --- a/cad/librecad/Makefile +++ b/cad/librecad/Makefile @@ -2,7 +2,7 @@ PORTNAME= librecad DISTVERSION= 2.2.0-rc1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= cad MAINTAINER= jhale@FreeBSD.org diff --git a/cad/openscad-devel/Makefile b/cad/openscad-devel/Makefile index 415cc41f1d09..f0c02cef4303 100644 --- a/cad/openscad-devel/Makefile +++ b/cad/openscad-devel/Makefile @@ -3,7 +3,7 @@ PORTNAME= openscad PORTVERSION= 2018.10.22 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= cad PKGNAMESUFFIX= -devel diff --git a/cad/py-pyfda/Makefile b/cad/py-pyfda/Makefile index a81672de7c64..3dfbff824f04 100644 --- a/cad/py-pyfda/Makefile +++ b/cad/py-pyfda/Makefile @@ -2,7 +2,7 @@ PORTNAME= pyfda PORTVERSION= 0.1 -PORTREVISION= 3 +PORTREVISION= 4 DISTVERSIONSUFFIX= rc6 CATEGORIES= cad python devel MASTER_SITES= CHEESESHOP diff --git a/cad/qcad/Makefile b/cad/qcad/Makefile index acd1cea75cb2..69ae8b9c9b3a 100644 --- a/cad/qcad/Makefile +++ b/cad/qcad/Makefile @@ -4,6 +4,7 @@ PORTNAME= qcad PORTVERSION= 3.21.3.11 DISTVERSIONPREFIX= v +PORTREVISION= 1 #PORTREVISION= 1 CATEGORIES= cad DIST_SUBDIR= ${PORTNAME} diff --git a/cad/qelectrotech/Makefile b/cad/qelectrotech/Makefile index a8b6c69080fd..47bddff53fa9 100644 --- a/cad/qelectrotech/Makefile +++ b/cad/qelectrotech/Makefile @@ -3,7 +3,7 @@ PORTNAME= qelectrotech PORTVERSION= 0.5 -PORTREVISION= 5 +PORTREVISION= 6 PORTEPOCH= 1 CATEGORIES= cad MASTER_SITES= http://download.tuxfamily.org/qet/tags/20151127/ diff --git a/chinese/fcitx-libpinyin/Makefile b/chinese/fcitx-libpinyin/Makefile index 2b22c2303990..a70b906522d5 100644 --- a/chinese/fcitx-libpinyin/Makefile +++ b/chinese/fcitx-libpinyin/Makefile @@ -3,7 +3,7 @@ PORTNAME= fcitx-libpinyin PORTVERSION= 0.5.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= chinese MASTER_SITES= http://download.fcitx-im.org/${PORTNAME}/:body \ http://download.fcitx-im.org/data/:data diff --git a/chinese/gcin-qt5/Makefile b/chinese/gcin-qt5/Makefile index b6d0075ebeae..48222dda3ba3 100644 --- a/chinese/gcin-qt5/Makefile +++ b/chinese/gcin-qt5/Makefile @@ -3,6 +3,7 @@ PORTNAME= gcin PORTVERSION= 2.8.8 +PORTREVISION= 1 CATEGORIES= chinese textproc gnome MASTER_SITES= http://hyperrate.com/gcin-source/ PKGNAMESUFFIX= -qt5 diff --git a/chinese/qterm/Makefile b/chinese/qterm/Makefile index 770f6f901c9b..c4f237a01147 100644 --- a/chinese/qterm/Makefile +++ b/chinese/qterm/Makefile @@ -3,7 +3,7 @@ PORTNAME= qterm PORTVERSION= 0.5.12 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= chinese MASTER_SITES= SF/qterm/qterm/${PORTVERSION} diff --git a/comms/cutecom/Makefile b/comms/cutecom/Makefile index 0355408ee8eb..43248f2c1a06 100644 --- a/comms/cutecom/Makefile +++ b/comms/cutecom/Makefile @@ -4,6 +4,7 @@ PORTNAME= cutecom DISTVERSIONPREFIX= v DISTVERSION= 0.45.0 +PORTREVISION= 1 CATEGORIES= comms MAINTAINER= jwb@FreeBSD.org diff --git a/comms/gqrx/Makefile b/comms/gqrx/Makefile index 8c9776604ce2..66be611b92ec 100644 --- a/comms/gqrx/Makefile +++ b/comms/gqrx/Makefile @@ -4,7 +4,7 @@ PORTNAME= gqrx PORTVERSION= 2.11.5 DISTVERSIONPREFIX= v -PORTREVISION= 5 +PORTREVISION= 6 PORTEPOCH= 1 CATEGORIES= comms hamradio diff --git a/comms/inspectrum/Makefile b/comms/inspectrum/Makefile index 2e5800b63485..f99186af003d 100644 --- a/comms/inspectrum/Makefile +++ b/comms/inspectrum/Makefile @@ -3,6 +3,7 @@ PORTNAME= inspectrum PORTVERSION= g20180708 +PORTREVISION= 1 #PORTREVISION= 1 #DISTVERSIONPREFIX= v CATEGORIES= comms hamradio diff --git a/comms/klog/Makefile b/comms/klog/Makefile index a03c1acff53d..a33d2a26fb06 100644 --- a/comms/klog/Makefile +++ b/comms/klog/Makefile @@ -2,6 +2,7 @@ PORTNAME= klog PORTVERSION= 0.9.3 +PORTREVISION= 1 CATEGORIES= comms hamradio MASTER_SITES= SAVANNAH diff --git a/comms/libsdr-gui/Makefile b/comms/libsdr-gui/Makefile index c3b4d9593074..a329028c29bd 100644 --- a/comms/libsdr-gui/Makefile +++ b/comms/libsdr-gui/Makefile @@ -3,7 +3,7 @@ PORTNAME= libsdr-gui PORTVERSION= 0.1.0 -PORTREVISION= 2 +PORTREVISION= 3 DISTVERSIONPREFIX= v CATEGORIES= comms hamradio diff --git a/comms/py-qt5-serialport/Makefile b/comms/py-qt5-serialport/Makefile index 823c80b955a4..46927499ed8c 100644 --- a/comms/py-qt5-serialport/Makefile +++ b/comms/py-qt5-serialport/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= serialport +PORTREVISION= 1 CATEGORIES= comms devel python MAINTAINER= kde@FreeBSD.org diff --git a/comms/qsstv/Makefile b/comms/qsstv/Makefile index 79a8fa05fdb6..7a47112e3f08 100644 --- a/comms/qsstv/Makefile +++ b/comms/qsstv/Makefile @@ -2,7 +2,7 @@ PORTNAME= qsstv PORTVERSION= 9.2.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= comms hamradio MASTER_SITES= http://users.telenet.be/on4qz/qsstv/downloads/ \ LOCAL/db diff --git a/comms/qt5-connectivity/Makefile b/comms/qt5-connectivity/Makefile index 95dad0a7d9aa..407f58d5f6c1 100644 --- a/comms/qt5-connectivity/Makefile +++ b/comms/qt5-connectivity/Makefile @@ -2,6 +2,7 @@ PORTNAME= connectivity DISTVERSION= ${QT5_VERSION} +PORTREVISION= 1 CATEGORIES= comms PKGNAMEPREFIX= qt5- diff --git a/comms/qt5-sensors/Makefile b/comms/qt5-sensors/Makefile index 556e740ec743..315e633a5b5f 100644 --- a/comms/qt5-sensors/Makefile +++ b/comms/qt5-sensors/Makefile @@ -2,6 +2,7 @@ PORTNAME= sensors DISTVERSION= ${QT5_VERSION} +PORTREVISION= 1 CATEGORIES= comms PKGNAMEPREFIX= qt5- diff --git a/comms/qt5-serialbus/Makefile b/comms/qt5-serialbus/Makefile index 83306da338bd..e94232ce9f19 100644 --- a/comms/qt5-serialbus/Makefile +++ b/comms/qt5-serialbus/Makefile @@ -2,7 +2,7 @@ PORTNAME= serialbus DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= comms PKGNAMEPREFIX= qt5- diff --git a/comms/qt5-serialport/Makefile b/comms/qt5-serialport/Makefile index cfdf7d911559..d321a57dadfb 100644 --- a/comms/qt5-serialport/Makefile +++ b/comms/qt5-serialport/Makefile @@ -2,7 +2,7 @@ PORTNAME= serialport DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= comms PKGNAMEPREFIX= qt5- diff --git a/comms/sdr-wspr/Makefile b/comms/sdr-wspr/Makefile index 243b4e3758f6..206847b1cd82 100644 --- a/comms/sdr-wspr/Makefile +++ b/comms/sdr-wspr/Makefile @@ -4,7 +4,7 @@ PORTNAME= sdr-wspr PORTVERSION= 0.1.0 DISTVERSIONPREFIX= v -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= comms hamradio MAINTAINER= jeff@baitis.net diff --git a/comms/ubertooth/Makefile b/comms/ubertooth/Makefile index c466dd63df29..ee9fe287ca74 100644 --- a/comms/ubertooth/Makefile +++ b/comms/ubertooth/Makefile @@ -3,7 +3,7 @@ PORTNAME= ubertooth PORTVERSION= 201812R1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= comms MAINTAINER= gnn@FreeBSD.org diff --git a/comms/unixcw/Makefile b/comms/unixcw/Makefile index cc6de61f3663..2810465a4820 100644 --- a/comms/unixcw/Makefile +++ b/comms/unixcw/Makefile @@ -5,6 +5,7 @@ PORTNAME?= unixcw PORTVERSION= 3.5.1 +PORTREVISION?= 0 CATEGORIES= comms hamradio MASTER_SITES= SF/unixcw/unixcw-${PORTVERSION} DISTNAME= unixcw_${PORTVERSION}.orig diff --git a/comms/wsjtx/Makefile b/comms/wsjtx/Makefile index 2a094a96e747..6161ab61aba4 100644 --- a/comms/wsjtx/Makefile +++ b/comms/wsjtx/Makefile @@ -2,6 +2,7 @@ PORTNAME= wsjtx PORTVERSION= 2.0.0 +PORTREVISION= 1 CATEGORIES= comms hamradio MASTER_SITES= SF/wsjt/${PORTNAME}-${PORTVERSION}${DISTVERSIONSUFFIX} diff --git a/comms/xcwcp/Makefile b/comms/xcwcp/Makefile index 023b7737780c..72c0f9077f6b 100644 --- a/comms/xcwcp/Makefile +++ b/comms/xcwcp/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= xcwcp +PORTREVISION= 1 COMMENT= X11 CW Tutor using unixcw diff --git a/databases/akonadi/Makefile b/databases/akonadi/Makefile index 6c46752317e6..3cd5b1a615ef 100644 --- a/databases/akonadi/Makefile +++ b/databases/akonadi/Makefile @@ -2,6 +2,7 @@ PORTNAME= akonadi DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= databases kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/databases/kbibtex/Makefile b/databases/kbibtex/Makefile index 61dcceb20991..d2b145eb40bb 100644 --- a/databases/kbibtex/Makefile +++ b/databases/kbibtex/Makefile @@ -3,6 +3,7 @@ PORTNAME= kbibtex DISTVERSION= 0.8.2 +PORTREVISION= 1 CATEGORIES= databases kde MASTER_SITES= KDE/stable/KBibTeX/${DISTVERSION}/ diff --git a/databases/kdb/Makefile b/databases/kdb/Makefile index 1ad6f545ba5f..6dfa0c1c5c62 100644 --- a/databases/kdb/Makefile +++ b/databases/kdb/Makefile @@ -2,7 +2,7 @@ PORTNAME= kdb DISTVERSION= 3.1.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= databases kde MASTER_SITES= KDE/stable/${PORTNAME}/src DIST_SUBDIR= KDE/${PORTNAME} diff --git a/databases/kexi/Makefile b/databases/kexi/Makefile index 51412ce3e593..8ec396fce5a4 100644 --- a/databases/kexi/Makefile +++ b/databases/kexi/Makefile @@ -2,7 +2,7 @@ PORTNAME= kexi DISTVERSION= 3.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases kde MASTER_SITES= KDE/stable/${PORTNAME}/src DIST_SUBDIR= KDE/${PORTNAME} diff --git a/databases/opendbviewer/Makefile b/databases/opendbviewer/Makefile index 4930d610e0b0..95104fe60dfd 100644 --- a/databases/opendbviewer/Makefile +++ b/databases/opendbviewer/Makefile @@ -2,7 +2,7 @@ PORTNAME= opendbviewer PORTVERSION= 1.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases MAINTAINER= lbartoletti@tuxfamily.org diff --git a/databases/pgmodeler/Makefile b/databases/pgmodeler/Makefile index b8d34ec64343..f2db66ffb572 100644 --- a/databases/pgmodeler/Makefile +++ b/databases/pgmodeler/Makefile @@ -3,7 +3,7 @@ PORTNAME= pgmodeler PORTVERSION= 0.9.1 -PORTREVISION= 2 +PORTREVISION= 3 DISTVERSIONPREFIX= v CATEGORIES= databases diff --git a/databases/py-qt5-sql/Makefile b/databases/py-qt5-sql/Makefile index c59af1d7a528..aa04af88ed30 100644 --- a/databases/py-qt5-sql/Makefile +++ b/databases/py-qt5-sql/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= sql +PORTREVISION= 1 CATEGORIES= databases devel python MAINTAINER= kde@FreeBSD.org diff --git a/databases/qt5-sql/Makefile b/databases/qt5-sql/Makefile index 20fbabb5da23..9a2586e67ec1 100644 --- a/databases/qt5-sql/Makefile +++ b/databases/qt5-sql/Makefile @@ -2,7 +2,7 @@ PORTNAME= sql DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases PKGNAMEPREFIX= qt5- diff --git a/databases/qt5-sqldrivers-ibase/Makefile b/databases/qt5-sqldrivers-ibase/Makefile index 4e833adb9193..2d18bc877641 100644 --- a/databases/qt5-sqldrivers-ibase/Makefile +++ b/databases/qt5-sqldrivers-ibase/Makefile @@ -1,5 +1,6 @@ # $FreeBSD$ +PORTREVISION= 1 DB= IBase DB_DESC= InterBase/Firebird diff --git a/databases/qt5-sqldrivers-mysql/Makefile b/databases/qt5-sqldrivers-mysql/Makefile index 2a646204e68e..b364a2bdf27b 100644 --- a/databases/qt5-sqldrivers-mysql/Makefile +++ b/databases/qt5-sqldrivers-mysql/Makefile @@ -1,5 +1,7 @@ # $FreeBSD$ +PORTREVISION= 1 + DB= MYSQL DB_DESC= MySQL diff --git a/databases/qt5-sqldrivers-odbc/Makefile b/databases/qt5-sqldrivers-odbc/Makefile index 86e5798e1c14..8ac684b15e6d 100644 --- a/databases/qt5-sqldrivers-odbc/Makefile +++ b/databases/qt5-sqldrivers-odbc/Makefile @@ -1,5 +1,7 @@ # $FreeBSD$ +PORTREVISION= 1 + COMMENT= Qt ${DB_DESC} plugin DB= ODBC diff --git a/databases/qt5-sqldrivers-pgsql/Makefile b/databases/qt5-sqldrivers-pgsql/Makefile index bf7cb5bdaa22..0ebab3535a77 100644 --- a/databases/qt5-sqldrivers-pgsql/Makefile +++ b/databases/qt5-sqldrivers-pgsql/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= pgsql +PORTREVISION= 1 DB= PSQL DB_DESC= PostgreSQL diff --git a/databases/qt5-sqldrivers-sqlite2/Makefile b/databases/qt5-sqldrivers-sqlite2/Makefile index 5a4de2e81df6..aead3727c8bf 100644 --- a/databases/qt5-sqldrivers-sqlite2/Makefile +++ b/databases/qt5-sqldrivers-sqlite2/Makefile @@ -1,5 +1,7 @@ # $FreeBSD$ +PORTREVISION= 1 + DB= SQLite2 DB_DESC= SQLite 2 diff --git a/databases/qt5-sqldrivers-sqlite3/Makefile b/databases/qt5-sqldrivers-sqlite3/Makefile index 6a8554bce8f4..2a805747e5e2 100644 --- a/databases/qt5-sqldrivers-sqlite3/Makefile +++ b/databases/qt5-sqldrivers-sqlite3/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= sqlite3 +PORTREVISION= 1 DB= SQLite DB_DESC= SQLite 3 diff --git a/databases/qt5-sqldrivers-tds/Makefile b/databases/qt5-sqldrivers-tds/Makefile index 9a5b223c21c2..f2953412a270 100644 --- a/databases/qt5-sqldrivers-tds/Makefile +++ b/databases/qt5-sqldrivers-tds/Makefile @@ -1,5 +1,7 @@ # $FreeBSD$ +PORTREVISION= 1 + DB= TDS DB_DESC= TDS Database Connectivity diff --git a/databases/redisdesktopmanager/Makefile b/databases/redisdesktopmanager/Makefile index 06e8752a4397..04648805cab3 100644 --- a/databases/redisdesktopmanager/Makefile +++ b/databases/redisdesktopmanager/Makefile @@ -2,6 +2,7 @@ PORTNAME= redisdesktopmanager PORTVERSION= 0.9.9 +PORTREVISION= 1 CATEGORIES= databases MAINTAINER= swills@FreeBSD.org diff --git a/databases/sqlitebrowser/Makefile b/databases/sqlitebrowser/Makefile index c07e2ff682de..5e1f448540bf 100644 --- a/databases/sqlitebrowser/Makefile +++ b/databases/sqlitebrowser/Makefile @@ -3,7 +3,7 @@ PORTNAME= sqlitebrowser PORTVERSION= 3.10.1 -PORTREVISION= 2 +PORTREVISION= 3 DISTVERSIONPREFIX= v CATEGORIES= databases diff --git a/databases/sqlitestudio/Makefile b/databases/sqlitestudio/Makefile index 9fcfb21ef141..c70321a509ae 100644 --- a/databases/sqlitestudio/Makefile +++ b/databases/sqlitestudio/Makefile @@ -3,7 +3,7 @@ PORTNAME= sqlitestudio DISTVERSION= 3.2.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= databases MASTER_SITES= http://sqlitestudio.pl/files/sqlitestudio3/complete/tar/ diff --git a/deskutils/akonadi-calendar-tools/Makefile b/deskutils/akonadi-calendar-tools/Makefile index bc7a3df7004e..42dbb03a4ec3 100644 --- a/deskutils/akonadi-calendar-tools/Makefile +++ b/deskutils/akonadi-calendar-tools/Makefile @@ -2,6 +2,7 @@ PORTNAME= akonadi-calendar-tools DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/akonadi-import-wizard/Makefile b/deskutils/akonadi-import-wizard/Makefile index ec57e3585aeb..1064ab80f8a0 100644 --- a/deskutils/akonadi-import-wizard/Makefile +++ b/deskutils/akonadi-import-wizard/Makefile @@ -2,6 +2,7 @@ PORTNAME= akonadi-import-wizard DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/akonadiconsole/Makefile b/deskutils/akonadiconsole/Makefile index 40b3013e284a..0775bf8eaa5e 100644 --- a/deskutils/akonadiconsole/Makefile +++ b/deskutils/akonadiconsole/Makefile @@ -2,6 +2,7 @@ PORTNAME= akonadiconsole DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/akregator/Makefile b/deskutils/akregator/Makefile index 9a9bb106c989..feda01a7ad18 100644 --- a/deskutils/akregator/Makefile +++ b/deskutils/akregator/Makefile @@ -2,6 +2,7 @@ PORTNAME= akregator DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/basket/Makefile b/deskutils/basket/Makefile index 1654276c98dc..21dd71e1ea4b 100644 --- a/deskutils/basket/Makefile +++ b/deskutils/basket/Makefile @@ -5,6 +5,7 @@ PORTNAME= basket DISTVERSIONPREFIX= v DISTVERSION= 2.49a-46 DISTVERSIONSUFFIX= -g60e38c6 +PORTREVISION= 1 CATEGORIES= deskutils kde MAINTAINER= ports@FreeBSD.org diff --git a/deskutils/calibre/Makefile b/deskutils/calibre/Makefile index c2675dc7cf2d..3014a1c6f99f 100644 --- a/deskutils/calibre/Makefile +++ b/deskutils/calibre/Makefile @@ -3,6 +3,7 @@ PORTNAME= calibre PORTVERSION= 3.37.0 +PORTREVISION= 1 CATEGORIES= deskutils python MASTER_SITES= http://download.calibre-ebook.com/${PORTVERSION}/ diff --git a/deskutils/charmtimetracker/Makefile b/deskutils/charmtimetracker/Makefile index 334299314f85..a0dcb7fd32a3 100644 --- a/deskutils/charmtimetracker/Makefile +++ b/deskutils/charmtimetracker/Makefile @@ -3,7 +3,7 @@ PORTNAME= charmtimetracker DISTVERSION= 1.12.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils # PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ diff --git a/deskutils/copyq/Makefile b/deskutils/copyq/Makefile index e5c5a3915518..0adb3c766cee 100644 --- a/deskutils/copyq/Makefile +++ b/deskutils/copyq/Makefile @@ -3,6 +3,7 @@ PORTNAME= copyq PORTVERSION= 3.7.2 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= deskutils MAINTAINER= ports@FreeBSD.org diff --git a/deskutils/fet/Makefile b/deskutils/fet/Makefile index a6195cf352db..5647ba5756ce 100644 --- a/deskutils/fet/Makefile +++ b/deskutils/fet/Makefile @@ -3,7 +3,7 @@ PORTNAME= fet DISTVERSION= 5.37.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils kde MASTER_SITES= http://lalescu.ro/liviu/fet/download/ \ http://lalescu.ro/liviu/fet/download/old/ \ diff --git a/deskutils/flameshot/Makefile b/deskutils/flameshot/Makefile index 411baf45e7ab..40bfbd3fabfe 100644 --- a/deskutils/flameshot/Makefile +++ b/deskutils/flameshot/Makefile @@ -3,7 +3,7 @@ PORTNAME= flameshot PORTVERSION= 0.6.0 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONPREFIX= v CATEGORIES= deskutils diff --git a/deskutils/grantlee-editor/Makefile b/deskutils/grantlee-editor/Makefile index 7f3d5339bf8f..38a3803d49b9 100644 --- a/deskutils/grantlee-editor/Makefile +++ b/deskutils/grantlee-editor/Makefile @@ -2,6 +2,7 @@ PORTNAME= grantlee-editor DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/grantleetheme/Makefile b/deskutils/grantleetheme/Makefile index 36c4d89d65ad..cd4d8137b988 100644 --- a/deskutils/grantleetheme/Makefile +++ b/deskutils/grantleetheme/Makefile @@ -2,6 +2,7 @@ PORTNAME= grantleetheme DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/kaddressbook/Makefile b/deskutils/kaddressbook/Makefile index ee10a10b65b9..57962472c095 100644 --- a/deskutils/kaddressbook/Makefile +++ b/deskutils/kaddressbook/Makefile @@ -2,6 +2,7 @@ PORTNAME= kaddressbook DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/kalarm/Makefile b/deskutils/kalarm/Makefile index d1a2290fbc68..ffcd58e503c7 100644 --- a/deskutils/kalarm/Makefile +++ b/deskutils/kalarm/Makefile @@ -2,6 +2,7 @@ PORTNAME= kalarm DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/kcharselect/Makefile b/deskutils/kcharselect/Makefile index 57d6bb3b94a4..904b3829f8ed 100644 --- a/deskutils/kcharselect/Makefile +++ b/deskutils/kcharselect/Makefile @@ -2,6 +2,7 @@ PORTNAME= kcharselect DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/kchmviewer/Makefile b/deskutils/kchmviewer/Makefile index 447e661ea2e9..bc0b687d7f50 100644 --- a/deskutils/kchmviewer/Makefile +++ b/deskutils/kchmviewer/Makefile @@ -3,7 +3,7 @@ PORTNAME= kchmviewer PORTVERSION= 7.7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= deskutils kde MASTER_SITES= SF diff --git a/deskutils/kdeconnect-kde/Makefile b/deskutils/kdeconnect-kde/Makefile index 9d37ded12987..8fa481339909 100644 --- a/deskutils/kdeconnect-kde/Makefile +++ b/deskutils/kdeconnect-kde/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdeconnect-kde DISTVERSION= 1.3.3 +PORTREVISION= 1 CATEGORIES= deskutils kde MASTER_SITES= KDE/stable/kdeconnect/${DISTVERSION}/src/ DIST_SUBDIR= KDE diff --git a/deskutils/kdepim-addons/Makefile b/deskutils/kdepim-addons/Makefile index ea5b85c44955..ffc919213937 100644 --- a/deskutils/kdepim-addons/Makefile +++ b/deskutils/kdepim-addons/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdepim-addons DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/kdepim-apps-libs/Makefile b/deskutils/kdepim-apps-libs/Makefile index 1321561840a2..3d9a268c8a58 100644 --- a/deskutils/kdepim-apps-libs/Makefile +++ b/deskutils/kdepim-apps-libs/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdepim-apps-libs DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/kdepim-runtime/Makefile b/deskutils/kdepim-runtime/Makefile index 1ef13ea5dd67..c765ae738d86 100644 --- a/deskutils/kdepim-runtime/Makefile +++ b/deskutils/kdepim-runtime/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdepim-runtime DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/kdepim/Makefile b/deskutils/kdepim/Makefile index 0e9de338e5ef..aa73e8f9f6ba 100644 --- a/deskutils/kdepim/Makefile +++ b/deskutils/kdepim/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdepim DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/keditbookmarks/Makefile b/deskutils/keditbookmarks/Makefile index 23f7b5b55f32..5ce9dec190c5 100644 --- a/deskutils/keditbookmarks/Makefile +++ b/deskutils/keditbookmarks/Makefile @@ -2,6 +2,7 @@ PORTNAME= keditbookmarks DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/kfind/Makefile b/deskutils/kfind/Makefile index a0d64d709129..6dd873a82e3f 100644 --- a/deskutils/kfind/Makefile +++ b/deskutils/kfind/Makefile @@ -2,6 +2,7 @@ PORTNAME= kfind DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/kmail-account-wizard/Makefile b/deskutils/kmail-account-wizard/Makefile index f7b4a5144c68..a78bfc2ea393 100644 --- a/deskutils/kmail-account-wizard/Makefile +++ b/deskutils/kmail-account-wizard/Makefile @@ -2,6 +2,7 @@ PORTNAME= kmail-account-wizard DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/kmail/Makefile b/deskutils/kmail/Makefile index 57f0795b2dcc..0b79ddfd82f7 100644 --- a/deskutils/kmail/Makefile +++ b/deskutils/kmail/Makefile @@ -2,6 +2,7 @@ PORTNAME= kmail DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/knotes/Makefile b/deskutils/knotes/Makefile index 44a1bfdf72e5..b6ef141652f0 100644 --- a/deskutils/knotes/Makefile +++ b/deskutils/knotes/Makefile @@ -2,6 +2,7 @@ PORTNAME= knotes DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/kontact/Makefile b/deskutils/kontact/Makefile index 93f67cba9007..9cd71783eab8 100644 --- a/deskutils/kontact/Makefile +++ b/deskutils/kontact/Makefile @@ -2,6 +2,7 @@ PORTNAME= kontact DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/korganizer/Makefile b/deskutils/korganizer/Makefile index f54eeaeab717..79e496724225 100644 --- a/deskutils/korganizer/Makefile +++ b/deskutils/korganizer/Makefile @@ -2,6 +2,7 @@ PORTNAME= korganizer DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/kruler/Makefile b/deskutils/kruler/Makefile index 56abd987ac39..fc5491cb7e20 100644 --- a/deskutils/kruler/Makefile +++ b/deskutils/kruler/Makefile @@ -2,6 +2,7 @@ PORTNAME= kruler DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/latte-dock/Makefile b/deskutils/latte-dock/Makefile index 53b1a924cb47..466a111760b1 100644 --- a/deskutils/latte-dock/Makefile +++ b/deskutils/latte-dock/Makefile @@ -2,6 +2,7 @@ PORTNAME= latte-dock DISTVERSION= 0.8.4 +PORTREVISION= 1 CATEGORIES= deskutils kde MASTER_SITES= KDE/stable/latte-dock diff --git a/deskutils/libkdepim/Makefile b/deskutils/libkdepim/Makefile index 83e04c99609d..32ab2431d48a 100644 --- a/deskutils/libkdepim/Makefile +++ b/deskutils/libkdepim/Makefile @@ -2,6 +2,7 @@ PORTNAME= libkdepim DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/lumina-archiver/Makefile b/deskutils/lumina-archiver/Makefile index 214f9667e0d1..0f712348ed62 100644 --- a/deskutils/lumina-archiver/Makefile +++ b/deskutils/lumina-archiver/Makefile @@ -3,7 +3,7 @@ PORTNAME= lumina-archiver PORTVERSION= 1.4.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils MAINTAINER= jt@ixsystems.com diff --git a/deskutils/lumina-calculator/Makefile b/deskutils/lumina-calculator/Makefile index f68484abc8b9..a5768c2f2248 100644 --- a/deskutils/lumina-calculator/Makefile +++ b/deskutils/lumina-calculator/Makefile @@ -3,7 +3,7 @@ PORTNAME= lumina-calculator PORTVERSION= 1.4.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils MAINTAINER= jt@ixsystems.com diff --git a/deskutils/lumina-fileinfo/Makefile b/deskutils/lumina-fileinfo/Makefile index fc38957f06fe..6c690edbd8f8 100644 --- a/deskutils/lumina-fileinfo/Makefile +++ b/deskutils/lumina-fileinfo/Makefile @@ -3,7 +3,7 @@ PORTNAME= lumina-fileinfo PORTVERSION= 1.4.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= deskutils MAINTAINER= jt@ixsystems.com diff --git a/deskutils/lumina-fm/Makefile b/deskutils/lumina-fm/Makefile index 7c328675dabb..8e4f1bea3947 100644 --- a/deskutils/lumina-fm/Makefile +++ b/deskutils/lumina-fm/Makefile @@ -3,7 +3,7 @@ PORTNAME= lumina-fm PORTVERSION= 1.4.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils MAINTAINER= jt@ixsystems.com diff --git a/deskutils/lumina-mediaplayer/Makefile b/deskutils/lumina-mediaplayer/Makefile index 0862b58c5296..a7fcdb165ec9 100644 --- a/deskutils/lumina-mediaplayer/Makefile +++ b/deskutils/lumina-mediaplayer/Makefile @@ -3,7 +3,7 @@ PORTNAME= lumina-mediaplayer PORTVERSION= 1.4.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils MAINTAINER= jt@ixsystems.com diff --git a/deskutils/lumina-notify/Makefile b/deskutils/lumina-notify/Makefile index 47c152c6c7f6..0f7b50797202 100644 --- a/deskutils/lumina-notify/Makefile +++ b/deskutils/lumina-notify/Makefile @@ -3,6 +3,7 @@ PORTNAME= lumina-notify PORTVERSION= 1.4.1 +PORTREVISION= 1 CATEGORIES= deskutils MAINTAINER= jt@ixsystems.com diff --git a/deskutils/lumina-pdf/Makefile b/deskutils/lumina-pdf/Makefile index 658f7a37b56c..53ea5832f1af 100644 --- a/deskutils/lumina-pdf/Makefile +++ b/deskutils/lumina-pdf/Makefile @@ -2,7 +2,7 @@ PORTNAME= lumina-pdf PORTVERSION= 1.4.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils MAINTAINER= jt@ixsystems.com diff --git a/deskutils/lumina-screenshot/Makefile b/deskutils/lumina-screenshot/Makefile index e35418943af2..c263fcfdbc3c 100644 --- a/deskutils/lumina-screenshot/Makefile +++ b/deskutils/lumina-screenshot/Makefile @@ -3,7 +3,7 @@ PORTNAME= lumina-screenshot PORTVERSION= 1.4.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils MAINTAINER= jt@ixsystems.com diff --git a/deskutils/lumina-textedit/Makefile b/deskutils/lumina-textedit/Makefile index 618e3006c871..da5185aaf6ff 100644 --- a/deskutils/lumina-textedit/Makefile +++ b/deskutils/lumina-textedit/Makefile @@ -3,7 +3,7 @@ PORTNAME= lumina-textedit PORTVERSION= 1.4.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= deskutils MAINTAINER= jt@ixsystems.com diff --git a/deskutils/lumina-xdg-entry/Makefile b/deskutils/lumina-xdg-entry/Makefile index 653063c91f55..e0e9d1c0b662 100644 --- a/deskutils/lumina-xdg-entry/Makefile +++ b/deskutils/lumina-xdg-entry/Makefile @@ -5,6 +5,7 @@ PORTNAME= lumina-xdg-entry DISTVERSIONPREFIX= v DISTVERSION= 1.3.0 DISTVERSIONSUFFIX= -p1 +PORTREVISION= 1 CATEGORIES= deskutils MAINTAINER= kmoore@FreeBSD.org diff --git a/deskutils/lxqt-notificationd/Makefile b/deskutils/lxqt-notificationd/Makefile index 2b4d7461888e..5361a9902b94 100644 --- a/deskutils/lxqt-notificationd/Makefile +++ b/deskutils/lxqt-notificationd/Makefile @@ -3,7 +3,7 @@ PORTNAME= lxqt-notificationd PORTVERSION= 0.13.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils MASTER_SITES= LXQT diff --git a/deskutils/mbox-importer/Makefile b/deskutils/mbox-importer/Makefile index 18852fdbb204..c03ac3fe5cde 100644 --- a/deskutils/mbox-importer/Makefile +++ b/deskutils/mbox-importer/Makefile @@ -2,6 +2,7 @@ PORTNAME= mbox-importer DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/nextcloudclient/Makefile b/deskutils/nextcloudclient/Makefile index 96fdd7e1f600..070e171d75b1 100644 --- a/deskutils/nextcloudclient/Makefile +++ b/deskutils/nextcloudclient/Makefile @@ -3,6 +3,7 @@ PORTNAME= nextcloudclient PORTVERSION= 0.0.0.20181226 +PORTREVISION= 1 #PORTREVISION= 2 CATEGORIES= deskutils diff --git a/deskutils/owncloudclient/Makefile b/deskutils/owncloudclient/Makefile index 8a66795b04d4..325c0224124e 100644 --- a/deskutils/owncloudclient/Makefile +++ b/deskutils/owncloudclient/Makefile @@ -4,7 +4,7 @@ PORTNAME= owncloudclient DISTVERSIONPREFIX= v DISTVERSION= 2.4.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= deskutils MAINTAINER= yonas@fizk.net diff --git a/deskutils/pim-data-exporter/Makefile b/deskutils/pim-data-exporter/Makefile index b2759be96652..35dd68cb92ae 100644 --- a/deskutils/pim-data-exporter/Makefile +++ b/deskutils/pim-data-exporter/Makefile @@ -2,6 +2,7 @@ PORTNAME= pim-data-exporter DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/pim-sieve-editor/Makefile b/deskutils/pim-sieve-editor/Makefile index a23f76d5c8c6..93e00a6441ac 100644 --- a/deskutils/pim-sieve-editor/Makefile +++ b/deskutils/pim-sieve-editor/Makefile @@ -2,6 +2,7 @@ PORTNAME= pim-sieve-editor DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/pinot/Makefile b/deskutils/pinot/Makefile index 3ded7079d6d0..01d5e97bc140 100644 --- a/deskutils/pinot/Makefile +++ b/deskutils/pinot/Makefile @@ -3,7 +3,7 @@ PORTNAME= pinot PORTVERSION= 1.09 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= deskutils MAINTAINER= thierry@FreeBSD.org diff --git a/deskutils/plasma5-milou/Makefile b/deskutils/plasma5-milou/Makefile index 1d80ba3fff26..a2d4393a9edf 100644 --- a/deskutils/plasma5-milou/Makefile +++ b/deskutils/plasma5-milou/Makefile @@ -2,6 +2,7 @@ PORTNAME= milou DISTVERSION= ${KDE_PLASMA_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-plasma MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/plasma5-sddm-kcm/Makefile b/deskutils/plasma5-sddm-kcm/Makefile index b30dfbfb5135..b1f1c210a7bc 100644 --- a/deskutils/plasma5-sddm-kcm/Makefile +++ b/deskutils/plasma5-sddm-kcm/Makefile @@ -2,6 +2,7 @@ PORTNAME= sddm-kcm DISTVERSION= ${KDE_PLASMA_VERSION} +PORTREVISION= 1 CATEGORIES= deskutils kde kde-plasma MAINTAINER= kde@FreeBSD.org diff --git a/deskutils/qlipper/Makefile b/deskutils/qlipper/Makefile index bcb841dd0a67..db00107c300c 100644 --- a/deskutils/qlipper/Makefile +++ b/deskutils/qlipper/Makefile @@ -3,7 +3,7 @@ PORTNAME= qlipper PORTVERSION= 5.1.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils MAINTAINER= jsm@FreeBSD.org diff --git a/deskutils/qownnotes/Makefile b/deskutils/qownnotes/Makefile index 122695392875..8799335be904 100644 --- a/deskutils/qownnotes/Makefile +++ b/deskutils/qownnotes/Makefile @@ -2,6 +2,7 @@ PORTNAME= qownnotes DISTVERSION= 18.07.2 +PORTREVISION= 1 CATEGORIES= deskutils MASTER_SITES= https://download.tuxfamily.org/qownnotes/src/ diff --git a/deskutils/semantik/Makefile b/deskutils/semantik/Makefile index 62b30c886a5c..540090d0b05e 100644 --- a/deskutils/semantik/Makefile +++ b/deskutils/semantik/Makefile @@ -2,6 +2,7 @@ PORTNAME= semantik DISTVERSION= 1.2.1 +PORTREVISION= 1 CATEGORIES= deskutils kde MASTER_SITES= https://waf.io/ diff --git a/deskutils/treeline/Makefile b/deskutils/treeline/Makefile index b0eb9ef3d0ef..1c2aeb37835e 100644 --- a/deskutils/treeline/Makefile +++ b/deskutils/treeline/Makefile @@ -3,7 +3,7 @@ PORTNAME= treeline PORTVERSION= 3.0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils python MASTER_SITES= https://github.com/doug-101/TreeLine/releases/download/v${PORTVERSION}/ \ SF/${PORTNAME}/${PORTVERSION} diff --git a/deskutils/zanshin/Makefile b/deskutils/zanshin/Makefile index 63baf18d22aa..80b6176614ec 100644 --- a/deskutils/zanshin/Makefile +++ b/deskutils/zanshin/Makefile @@ -2,7 +2,7 @@ PORTNAME= zanshin DISTVERSION= 0.5.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= deskutils kde MASTER_SITES= KDE/stable/${PORTNAME}/ diff --git a/deskutils/znotes/Makefile b/deskutils/znotes/Makefile index 0517a55e55d2..acf92d031603 100644 --- a/deskutils/znotes/Makefile +++ b/deskutils/znotes/Makefile @@ -3,7 +3,7 @@ PORTNAME= znotes PORTVERSION= 0.4.5.20150825 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= deskutils PKGNAMESUFFIX= -${FLAVOR} diff --git a/devel/RStudio/Makefile b/devel/RStudio/Makefile index ea0144da6fe7..846d7ec51867 100644 --- a/devel/RStudio/Makefile +++ b/devel/RStudio/Makefile @@ -6,7 +6,7 @@ PORTNAME= RStudio DISTVERSIONPREFIX= v DISTVERSION= 1.2.679 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= devel math java MASTER_SITES= https://s3.amazonaws.com/rstudio-dictionaries/:dictionaries \ https://s3.amazonaws.com/rstudio-buildtools/:buildtools diff --git a/devel/apitrace/Makefile b/devel/apitrace/Makefile index b3a43e168fef..038085b5ac66 100644 --- a/devel/apitrace/Makefile +++ b/devel/apitrace/Makefile @@ -2,7 +2,7 @@ PORTNAME= apitrace DISTVERSION= 7.1-455 -PORTREVISION= 2 +PORTREVISION= 3 DISTVERSIONSUFFIX= -g7c76b90 CATEGORIES= devel diff --git a/devel/cervisia/Makefile b/devel/cervisia/Makefile index 8a0a19331456..dacfc3e1dfb5 100644 --- a/devel/cervisia/Makefile +++ b/devel/cervisia/Makefile @@ -2,6 +2,7 @@ PORTNAME= cervisia DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/devel/cmake-doc/Makefile b/devel/cmake-doc/Makefile index d51566fc2abf..2dfd5fdde9fa 100644 --- a/devel/cmake-doc/Makefile +++ b/devel/cmake-doc/Makefile @@ -2,6 +2,7 @@ PORTNAME= cmake DISTVERSION= 3.13.2 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= https://www.cmake.org/files/v${PORTVERSION:R}/ PKGNAMESUFFIX= -doc diff --git a/devel/cmake-gui/Makefile b/devel/cmake-gui/Makefile index 726b31bf343a..23ab9a2398e2 100644 --- a/devel/cmake-gui/Makefile +++ b/devel/cmake-gui/Makefile @@ -2,6 +2,7 @@ PORTNAME= cmake DISTVERSION= 3.13.2 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= https://www.cmake.org/files/v${PORTVERSION:R}/ PKGNAMESUFFIX= -gui diff --git a/devel/cppcheck-gui/Makefile b/devel/cppcheck-gui/Makefile index be5b348cb37f..08981e9fcff6 100644 --- a/devel/cppcheck-gui/Makefile +++ b/devel/cppcheck-gui/Makefile @@ -1,6 +1,8 @@ # Created by: Dmitry Marakasov <amdmi3@FreeBSD.org> # $FreeBSD$ +PORTREVISION= 1 + MASTERDIR= ${.CURDIR}/../cppcheck GUI_ONLY= yes diff --git a/devel/cppcheck/Makefile b/devel/cppcheck/Makefile index ef95954af75a..e35327163e90 100644 --- a/devel/cppcheck/Makefile +++ b/devel/cppcheck/Makefile @@ -3,6 +3,7 @@ PORTNAME= cppcheck PORTVERSION= 1.86 +PORTREVISION?= 0 # devel/cppcheck-gui CATEGORIES= devel MAINTAINER= amdmi3@FreeBSD.org diff --git a/devel/dolphin-plugins/Makefile b/devel/dolphin-plugins/Makefile index 32e3fb408188..1ef6beb9a4fb 100644 --- a/devel/dolphin-plugins/Makefile +++ b/devel/dolphin-plugins/Makefile @@ -2,6 +2,7 @@ PORTNAME= dolphin-plugins DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/devel/eric6/Makefile b/devel/eric6/Makefile index 9714217c5f81..19dc6562eac1 100644 --- a/devel/eric6/Makefile +++ b/devel/eric6/Makefile @@ -1,6 +1,7 @@ # Created by: Boris Samorodov <bsam@FreeBSD.org> # $FreeBSD$ +PORTREVISION= 1 PKGNAMESUFFIX= -${FLAVOR:U:S/_/-/} DISTNAME= ${PORTNAME}-nolang-${DISTVERSION} CATEGORIES= devel python diff --git a/devel/fuel/Makefile b/devel/fuel/Makefile index 9a70b3f0ef41..dd30f8afe7fe 100644 --- a/devel/fuel/Makefile +++ b/devel/fuel/Makefile @@ -3,6 +3,7 @@ PORTNAME= fuel DISTVERSION= 1.0.1 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= https://fuel-scm.org/files/releases/ diff --git a/devel/grantlee5/Makefile b/devel/grantlee5/Makefile index cf276d89bcbc..f2883a19dd0b 100644 --- a/devel/grantlee5/Makefile +++ b/devel/grantlee5/Makefile @@ -3,7 +3,7 @@ PORTNAME= grantlee PORTVERSION= ${GRANTLEE_VERSION} -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel MASTER_SITES= http://downloads.${PORTNAME}.org/ PKGNAMESUFFIX= 5 diff --git a/devel/gwenhywfar-qt5/Makefile b/devel/gwenhywfar-qt5/Makefile index 7ef8aed41a2c..50a4247c2947 100644 --- a/devel/gwenhywfar-qt5/Makefile +++ b/devel/gwenhywfar-qt5/Makefile @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 PKGNAMESUFFIX= -${SLAVEPORT} MAINTAINER= jhale@FreeBSD.org diff --git a/devel/heimdall/Makefile b/devel/heimdall/Makefile index 8b093092b05e..2a623102a233 100644 --- a/devel/heimdall/Makefile +++ b/devel/heimdall/Makefile @@ -4,7 +4,7 @@ PORTNAME= heimdall PORTVERSION= 1.4.2 DISTVERSIONPREFIX= v -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= ehaupt@FreeBSD.org diff --git a/devel/injeqt/Makefile b/devel/injeqt/Makefile index d9fcb25e7f8c..534a1adfdf01 100644 --- a/devel/injeqt/Makefile +++ b/devel/injeqt/Makefile @@ -3,7 +3,7 @@ PORTNAME= injeqt PORTVERSION= 1.2.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MAINTAINER= kde@FreeBSD.org diff --git a/devel/kapptemplate/Makefile b/devel/kapptemplate/Makefile index 599e866c27f0..a0b13beaad27 100644 --- a/devel/kapptemplate/Makefile +++ b/devel/kapptemplate/Makefile @@ -2,6 +2,7 @@ PORTNAME= kapptemplate DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/devel/kcachegrind/Makefile b/devel/kcachegrind/Makefile index 9a28b7a7bef4..265f7581eb11 100644 --- a/devel/kcachegrind/Makefile +++ b/devel/kcachegrind/Makefile @@ -2,6 +2,7 @@ PORTNAME= kcachegrind DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/devel/kdbg/Makefile b/devel/kdbg/Makefile index 24b6ca9c9af9..97e8b7e5b9db 100644 --- a/devel/kdbg/Makefile +++ b/devel/kdbg/Makefile @@ -4,6 +4,7 @@ PORTNAME= kdbg DISTVERSIONPREFIX= ${PORTNAME}- DISTVERSION= 3.0.0 +PORTREVISION= 1 CATEGORIES= devel kde MAINTAINER= thomas.sander@gmx.de diff --git a/devel/kde-dev-scripts/Makefile b/devel/kde-dev-scripts/Makefile index 988619b08422..746f6aa4c039 100644 --- a/devel/kde-dev-scripts/Makefile +++ b/devel/kde-dev-scripts/Makefile @@ -2,6 +2,7 @@ PORTNAME= kde-dev-scripts DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/devel/kde-dev-utils/Makefile b/devel/kde-dev-utils/Makefile index d466658ba0b6..9879783b8f90 100644 --- a/devel/kde-dev-utils/Makefile +++ b/devel/kde-dev-utils/Makefile @@ -2,6 +2,7 @@ PORTNAME= kde-dev-utils DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/devel/kdesdk-thumbnailers/Makefile b/devel/kdesdk-thumbnailers/Makefile index 2932cea6b72c..17fd4300cdfc 100644 --- a/devel/kdesdk-thumbnailers/Makefile +++ b/devel/kdesdk-thumbnailers/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdesdk-thumbnailers DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/devel/kdesdk/Makefile b/devel/kdesdk/Makefile index dea801ab2eea..6043023ef5aa 100644 --- a/devel/kdesdk/Makefile +++ b/devel/kdesdk/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdesdk DISTVERSION= ${KDE_APPLICATIONS_VERSION}$ +PORTREVISION= 1 CATEGORIES= devel kde MAINTAINER= kde@FreeBSD.org diff --git a/devel/kdesvn/Makefile b/devel/kdesvn/Makefile index 488be4a6efb2..3b620507b3ce 100644 --- a/devel/kdesvn/Makefile +++ b/devel/kdesvn/Makefile @@ -2,7 +2,7 @@ PORTNAME= kdesvn DISTVERSION= 2.0.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel kde MASTER_SITES= KDE/stable/${PORTNAME}/${DISTVERSION}/ diff --git a/devel/kdev-php/Makefile b/devel/kdev-php/Makefile index e6ab8d97ea73..f1b2bce6a892 100644 --- a/devel/kdev-php/Makefile +++ b/devel/kdev-php/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdev-php DISTVERSION= 5.3.1 +PORTREVISION= 1 CATEGORIES= devel kde MASTER_SITES= KDE/stable/kdevelop/${DISTVERSION}/src DIST_SUBDIR= KDE/kdevelop diff --git a/devel/kdev-python/Makefile b/devel/kdev-python/Makefile index a629c785fb5d..c1c1b3914596 100644 --- a/devel/kdev-python/Makefile +++ b/devel/kdev-python/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdev-python DISTVERSION= 5.3.1 +PORTREVISION= 1 CATEGORIES= devel kde MASTER_SITES= KDE/stable/kdevelop/${DISTVERSION}/src DIST_SUBDIR= KDE/kdevelop diff --git a/devel/kdevelop-pg-qt/Makefile b/devel/kdevelop-pg-qt/Makefile index e11bd3202165..60b47263bd0f 100644 --- a/devel/kdevelop-pg-qt/Makefile +++ b/devel/kdevelop-pg-qt/Makefile @@ -3,7 +3,7 @@ PORTNAME= kdevelop-pg-qt DISTVERSION= 2.1.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel kde MASTER_SITES= KDE/stable/${PORTNAME}/${DISTVERSION}/src DIST_SUBDIR= KDE/kdevelop diff --git a/devel/kdevelop/Makefile b/devel/kdevelop/Makefile index a30db4ee69ea..c379d93b31c6 100644 --- a/devel/kdevelop/Makefile +++ b/devel/kdevelop/Makefile @@ -2,7 +2,7 @@ PORTNAME= kdevelop DISTVERSION= 5.3.1 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel kde MASTER_SITES= KDE/stable/kdevelop/${DISTVERSION}/src DIST_SUBDIR= KDE/kdevelop diff --git a/devel/kf5-extra-cmake-modules/Makefile b/devel/kf5-extra-cmake-modules/Makefile index ed5ecadd2da8..57abff891d09 100644 --- a/devel/kf5-extra-cmake-modules/Makefile +++ b/devel/kf5-extra-cmake-modules/Makefile @@ -3,6 +3,7 @@ PORTNAME= extra-cmake-modules DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-kapidox/Makefile b/devel/kf5-kapidox/Makefile index 0ee6459a4333..c36c3b62cfca 100644 --- a/devel/kf5-kapidox/Makefile +++ b/devel/kf5-kapidox/Makefile @@ -2,6 +2,7 @@ PORTNAME= kapidox DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-kauth/Makefile b/devel/kf5-kauth/Makefile index 03c02cc1aca5..4c931b43ab50 100644 --- a/devel/kf5-kauth/Makefile +++ b/devel/kf5-kauth/Makefile @@ -2,6 +2,7 @@ PORTNAME= kauth DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-kbookmarks/Makefile b/devel/kf5-kbookmarks/Makefile index 1c5d37ffdda6..e1418caebb3f 100644 --- a/devel/kf5-kbookmarks/Makefile +++ b/devel/kf5-kbookmarks/Makefile @@ -2,6 +2,7 @@ PORTNAME= kbookmarks DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-kcmutils/Makefile b/devel/kf5-kcmutils/Makefile index 03d728ef4895..609a75202d14 100644 --- a/devel/kf5-kcmutils/Makefile +++ b/devel/kf5-kcmutils/Makefile @@ -2,6 +2,7 @@ PORTNAME= kcmutils DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-kconfig/Makefile b/devel/kf5-kconfig/Makefile index 1a0dece833f9..2703e8d2b9b7 100644 --- a/devel/kf5-kconfig/Makefile +++ b/devel/kf5-kconfig/Makefile @@ -2,6 +2,7 @@ PORTNAME= kconfig DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-kcoreaddons/Makefile b/devel/kf5-kcoreaddons/Makefile index c445186685cb..7fd86e02c7e4 100644 --- a/devel/kf5-kcoreaddons/Makefile +++ b/devel/kf5-kcoreaddons/Makefile @@ -2,6 +2,7 @@ PORTNAME= kcoreaddons DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-kcrash/Makefile b/devel/kf5-kcrash/Makefile index 072d45084b5c..6325cbf1959d 100644 --- a/devel/kf5-kcrash/Makefile +++ b/devel/kf5-kcrash/Makefile @@ -2,6 +2,7 @@ PORTNAME= kcrash DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-kdbusaddons/Makefile b/devel/kf5-kdbusaddons/Makefile index 420c77afda43..c271476177e0 100644 --- a/devel/kf5-kdbusaddons/Makefile +++ b/devel/kf5-kdbusaddons/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdbusaddons DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-kdeclarative/Makefile b/devel/kf5-kdeclarative/Makefile index 6cd32c5b9ee8..3512d9608e47 100644 --- a/devel/kf5-kdeclarative/Makefile +++ b/devel/kf5-kdeclarative/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdeclarative DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-kdoctools/Makefile b/devel/kf5-kdoctools/Makefile index 8d9c4178efcc..d29b5e415864 100644 --- a/devel/kf5-kdoctools/Makefile +++ b/devel/kf5-kdoctools/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdoctools DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-kfilemetadata/Makefile b/devel/kf5-kfilemetadata/Makefile index 2bdf3af466cc..17eac3c033f4 100644 --- a/devel/kf5-kfilemetadata/Makefile +++ b/devel/kf5-kfilemetadata/Makefile @@ -2,6 +2,7 @@ PORTNAME= kfilemetadata DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-ki18n/Makefile b/devel/kf5-ki18n/Makefile index 920ed7a68ece..af6a9fd04ea4 100644 --- a/devel/kf5-ki18n/Makefile +++ b/devel/kf5-ki18n/Makefile @@ -2,6 +2,7 @@ PORTNAME= ki18n DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-kidletime/Makefile b/devel/kf5-kidletime/Makefile index 2496788fa3a0..a50246c1c1a0 100644 --- a/devel/kf5-kidletime/Makefile +++ b/devel/kf5-kidletime/Makefile @@ -2,6 +2,7 @@ PORTNAME= kidletime DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-kio/Makefile b/devel/kf5-kio/Makefile index f6051d6e241b..9cc5a0bb0c4a 100644 --- a/devel/kf5-kio/Makefile +++ b/devel/kf5-kio/Makefile @@ -2,6 +2,7 @@ PORTNAME= kio DISTVERSION= 5.54.1 # Respin for bug 402665 +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-kitemmodels/Makefile b/devel/kf5-kitemmodels/Makefile index 0dc5ae67ee19..b0e42c655fd8 100644 --- a/devel/kf5-kitemmodels/Makefile +++ b/devel/kf5-kitemmodels/Makefile @@ -2,6 +2,7 @@ PORTNAME= kitemmodels DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-knewstuff/Makefile b/devel/kf5-knewstuff/Makefile index 1418437908f4..e1da31fcdb07 100644 --- a/devel/kf5-knewstuff/Makefile +++ b/devel/kf5-knewstuff/Makefile @@ -2,6 +2,7 @@ PORTNAME= knewstuff DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-knotifications/Makefile b/devel/kf5-knotifications/Makefile index a0e1908367c4..e9ff319e4fa4 100644 --- a/devel/kf5-knotifications/Makefile +++ b/devel/kf5-knotifications/Makefile @@ -2,6 +2,7 @@ PORTNAME= knotifications DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-knotifyconfig/Makefile b/devel/kf5-knotifyconfig/Makefile index dda55dba3862..888a76de7753 100644 --- a/devel/kf5-knotifyconfig/Makefile +++ b/devel/kf5-knotifyconfig/Makefile @@ -2,6 +2,7 @@ PORTNAME= knotifyconfig DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-kpackage/Makefile b/devel/kf5-kpackage/Makefile index 283141b77c4e..f425fd3ebb7a 100644 --- a/devel/kf5-kpackage/Makefile +++ b/devel/kf5-kpackage/Makefile @@ -2,6 +2,7 @@ PORTNAME= kpackage DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-kparts/Makefile b/devel/kf5-kparts/Makefile index 2158fba7acf9..060c6e805a49 100644 --- a/devel/kf5-kparts/Makefile +++ b/devel/kf5-kparts/Makefile @@ -2,6 +2,7 @@ PORTNAME= kparts DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-kpeople/Makefile b/devel/kf5-kpeople/Makefile index 966716675f6f..f10adf38505c 100644 --- a/devel/kf5-kpeople/Makefile +++ b/devel/kf5-kpeople/Makefile @@ -2,6 +2,7 @@ PORTNAME= kpeople DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-kpty/Makefile b/devel/kf5-kpty/Makefile index 5ca91b6cee40..2959e7b1c2a1 100644 --- a/devel/kf5-kpty/Makefile +++ b/devel/kf5-kpty/Makefile @@ -2,6 +2,7 @@ PORTNAME= kpty DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-kservice/Makefile b/devel/kf5-kservice/Makefile index 8f61d4f72295..cfed1cb04cb1 100644 --- a/devel/kf5-kservice/Makefile +++ b/devel/kf5-kservice/Makefile @@ -2,6 +2,7 @@ PORTNAME= kservice DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-ktexteditor/Makefile b/devel/kf5-ktexteditor/Makefile index c11d40c2b6e6..f0fc7776b638 100644 --- a/devel/kf5-ktexteditor/Makefile +++ b/devel/kf5-ktexteditor/Makefile @@ -2,6 +2,7 @@ PORTNAME= ktexteditor DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-kunitconversion/Makefile b/devel/kf5-kunitconversion/Makefile index 6de2a714b7d8..4595b10f800a 100644 --- a/devel/kf5-kunitconversion/Makefile +++ b/devel/kf5-kunitconversion/Makefile @@ -2,6 +2,7 @@ PORTNAME= kunitconversion DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-solid/Makefile b/devel/kf5-solid/Makefile index 8c655008770a..d18cfbd3a419 100644 --- a/devel/kf5-solid/Makefile +++ b/devel/kf5-solid/Makefile @@ -2,6 +2,7 @@ PORTNAME= solid DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kf5-threadweaver/Makefile b/devel/kf5-threadweaver/Makefile index 77776ce45c76..e5a11102b348 100644 --- a/devel/kf5-threadweaver/Makefile +++ b/devel/kf5-threadweaver/Makefile @@ -2,6 +2,7 @@ PORTNAME= threadweaver DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/devel/kio-extras/Makefile b/devel/kio-extras/Makefile index b059d39a1761..bac3a03ffed3 100644 --- a/devel/kio-extras/Makefile +++ b/devel/kio-extras/Makefile @@ -2,6 +2,7 @@ PORTNAME= kio-extras DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-applications # kde kde-applications-plasma MAINTAINER= kde@FreeBSD.org diff --git a/devel/libdbusmenu-qt/Makefile b/devel/libdbusmenu-qt/Makefile index c120ce96c722..5333b46af19a 100644 --- a/devel/libdbusmenu-qt/Makefile +++ b/devel/libdbusmenu-qt/Makefile @@ -3,7 +3,7 @@ PORTNAME= libdbusmenu-qt PORTVERSION= ${MAJOR_VER}.${SNAPSHOT_VER:S/.//g} -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= devel MASTER_SITES= http://archive.ubuntu.com/ubuntu/pool/main/libd/${PORTNAME}/ \ LOCAL/tcberner/${PORTNAME}/${PORTVERSION} diff --git a/devel/liblxqt-l10n/Makefile b/devel/liblxqt-l10n/Makefile index d0d0d31d36c3..7f3960a50823 100644 --- a/devel/liblxqt-l10n/Makefile +++ b/devel/liblxqt-l10n/Makefile @@ -3,6 +3,7 @@ PORTNAME= liblxqt PORTVERSION= 0.13.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= LXQT/lxqt-l10n PKGNAMESUFFIX= -l10n diff --git a/devel/liblxqt/Makefile b/devel/liblxqt/Makefile index 403e4000bb52..710f580ff24d 100644 --- a/devel/liblxqt/Makefile +++ b/devel/liblxqt/Makefile @@ -3,7 +3,7 @@ PORTNAME= liblxqt PORTVERSION= 0.13.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= LXQT diff --git a/devel/libqtxdg/Makefile b/devel/libqtxdg/Makefile index 7752744eb136..a3c1503d66ac 100644 --- a/devel/libqtxdg/Makefile +++ b/devel/libqtxdg/Makefile @@ -3,7 +3,7 @@ PORTNAME= libqtxdg PORTVERSION= 3.2.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel MASTER_SITES= LXQT/${PORTNAME} diff --git a/devel/liteide/Makefile b/devel/liteide/Makefile index 59db07664aa9..f6a4798de34a 100644 --- a/devel/liteide/Makefile +++ b/devel/liteide/Makefile @@ -3,6 +3,7 @@ PORTNAME= liteide DISTVERSIONPREFIX= x DISTVERSION= 34.2 +PORTREVISION= 1 CATEGORIES= devel editors MAINTAINER= dg@syrec.org diff --git a/devel/lokalize/Makefile b/devel/lokalize/Makefile index 9cedaef47339..c7ff89a47b65 100644 --- a/devel/lokalize/Makefile +++ b/devel/lokalize/Makefile @@ -2,6 +2,7 @@ PORTNAME= lokalize DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/devel/lxqt-build-tools/Makefile b/devel/lxqt-build-tools/Makefile index cc73397cbae2..3385d0409e5c 100644 --- a/devel/lxqt-build-tools/Makefile +++ b/devel/lxqt-build-tools/Makefile @@ -3,6 +3,7 @@ PORTNAME= lxqt-build-tools PORTVERSION= 0.5.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= LXQT/${PORTNAME} diff --git a/devel/okteta/Makefile b/devel/okteta/Makefile index d23981992657..3bafcde20f98 100644 --- a/devel/okteta/Makefile +++ b/devel/okteta/Makefile @@ -2,6 +2,7 @@ PORTNAME= okteta DISTVERSION= 0.25.5 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= devel kde MASTER_SITES= KDE/stable/${PORTNAME}/${DISTVERSION}/src diff --git a/devel/plasma5-khotkeys/Makefile b/devel/plasma5-khotkeys/Makefile index dbe554ca7d9b..cb42987ebeaa 100644 --- a/devel/plasma5-khotkeys/Makefile +++ b/devel/plasma5-khotkeys/Makefile @@ -2,6 +2,7 @@ PORTNAME= khotkeys DISTVERSION= ${KDE_PLASMA_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-plasma MAINTAINER= kde@FreeBSD.org diff --git a/devel/plasma5-kwrited/Makefile b/devel/plasma5-kwrited/Makefile index 1e3c5ddf7c76..448028049e33 100644 --- a/devel/plasma5-kwrited/Makefile +++ b/devel/plasma5-kwrited/Makefile @@ -2,6 +2,7 @@ PORTNAME= kwrited DISTVERSION= ${KDE_PLASMA_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-plasma MAINTAINER= kde@FreeBSD.org diff --git a/devel/plasma5-plasma-sdk/Makefile b/devel/plasma5-plasma-sdk/Makefile index 2b84de963df2..962f5fdb563e 100644 --- a/devel/plasma5-plasma-sdk/Makefile +++ b/devel/plasma5-plasma-sdk/Makefile @@ -2,6 +2,7 @@ PORTNAME= plasma-sdk DISTVERSION= ${KDE_PLASMA_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-plasma MAINTAINER= kde@FreeBSD.org diff --git a/devel/poxml/Makefile b/devel/poxml/Makefile index 11c269a4a018..fd64fec005f3 100644 --- a/devel/poxml/Makefile +++ b/devel/poxml/Makefile @@ -2,6 +2,7 @@ PORTNAME= poxml DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/devel/py-qt5-core/Makefile b/devel/py-qt5-core/Makefile index 6690c248fb1e..9d4ddf1e0660 100644 --- a/devel/py-qt5-core/Makefile +++ b/devel/py-qt5-core/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= core -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org diff --git a/devel/py-qt5-dbus/Makefile b/devel/py-qt5-dbus/Makefile index 7ef2aaaea67d..630fd9a8d4d3 100644 --- a/devel/py-qt5-dbus/Makefile +++ b/devel/py-qt5-dbus/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= dbus +PORTREVISION= 1 CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org diff --git a/devel/py-qt5-dbussupport/Makefile b/devel/py-qt5-dbussupport/Makefile index 5753f09adf9f..b695930bdf03 100644 --- a/devel/py-qt5-dbussupport/Makefile +++ b/devel/py-qt5-dbussupport/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= dbussupport +PORTREVISION= 1 CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org diff --git a/devel/py-qt5-designer/Makefile b/devel/py-qt5-designer/Makefile index 7d0a3a470af1..3a83b20f628c 100644 --- a/devel/py-qt5-designer/Makefile +++ b/devel/py-qt5-designer/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= designer +PORTREVISION= 1 CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org diff --git a/devel/py-qt5-designerplugin/Makefile b/devel/py-qt5-designerplugin/Makefile index 60605e2ccc4d..6bdd1c7666a3 100644 --- a/devel/py-qt5-designerplugin/Makefile +++ b/devel/py-qt5-designerplugin/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= designerplugin +PORTREVISION= 1 CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org diff --git a/devel/py-qt5-help/Makefile b/devel/py-qt5-help/Makefile index 3cebfffa45aa..c806a8a4eead 100644 --- a/devel/py-qt5-help/Makefile +++ b/devel/py-qt5-help/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= help +PORTREVISION= 1 CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org diff --git a/devel/py-qt5-qscintilla2/Makefile b/devel/py-qt5-qscintilla2/Makefile index 29acc66e718c..eef657b6b9ed 100644 --- a/devel/py-qt5-qscintilla2/Makefile +++ b/devel/py-qt5-qscintilla2/Makefile @@ -2,6 +2,7 @@ PORTNAME= qscintilla2 PORTVERSION= ${QSCI2_VERSION} +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= ${MASTER_SITES_QSCI2} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}qt5- diff --git a/devel/py-qt5-test/Makefile b/devel/py-qt5-test/Makefile index a70208148942..5b5a4b77cc9b 100644 --- a/devel/py-qt5-test/Makefile +++ b/devel/py-qt5-test/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= test +PORTREVISION= 1 CATEGORIES= devel python MAINTAINER= kde@FreeBSD.org diff --git a/devel/py-qt5/Makefile b/devel/py-qt5/Makefile index c1827fd7f39f..ed8d011f7fd7 100644 --- a/devel/py-qt5/Makefile +++ b/devel/py-qt5/Makefile @@ -2,6 +2,7 @@ PORTNAME= qt5 PORTVERSION= ${PYQT5_VERSION} +PORTREVISION= 1 CATEGORIES= devel python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-qtconsole/Makefile b/devel/py-qtconsole/Makefile index 6bcaa93eb1f5..ce8bf7c6ecd1 100644 --- a/devel/py-qtconsole/Makefile +++ b/devel/py-qtconsole/Makefile @@ -2,6 +2,7 @@ PORTNAME= qtconsole PORTVERSION= 4.4.3 +PORTREVISION= 1 CATEGORIES= devel python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/py-spyder/Makefile b/devel/py-spyder/Makefile index ff1a7fbd782d..53277837b09c 100644 --- a/devel/py-spyder/Makefile +++ b/devel/py-spyder/Makefile @@ -4,7 +4,7 @@ PORTNAME= spyder DISTVERSIONPREFIX= v DISTVERSION= 3.2.7 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= devel science python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/devel/pyotherside-qt5/Makefile b/devel/pyotherside-qt5/Makefile index 4a2a50204463..63bd483ca10e 100644 --- a/devel/pyotherside-qt5/Makefile +++ b/devel/pyotherside-qt5/Makefile @@ -2,6 +2,7 @@ PORTNAME= pyotherside DISTVERSION= 1.5.3 +PORTREVISION= 1 CATEGORIES= devel PKGNAMESUFFIX= -qt5 diff --git a/devel/pyside-tools/Makefile b/devel/pyside-tools/Makefile index 45357fb28a62..bc4f333f53b0 100644 --- a/devel/pyside-tools/Makefile +++ b/devel/pyside-tools/Makefile @@ -3,7 +3,7 @@ PORTNAME= pyside-tools PORTVERSION= 0.2.15 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel PKGNAMESUFFIX= ${PYTHON_PKGNAMESUFFIX} diff --git a/devel/pyside/Makefile b/devel/pyside/Makefile index c27ce975cb18..1f7841583b5a 100644 --- a/devel/pyside/Makefile +++ b/devel/pyside/Makefile @@ -4,7 +4,7 @@ PORTNAME= pyside PORTVERSION= 1.2.2 DISTVERSIONPREFIX= qt4.8+ -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel MASTER_SITES= https://download.qt-project.org/official_releases/pyside/ PKGNAMESUFFIX= ${PYTHON_PKGNAMESUFFIX} diff --git a/devel/qbs/Makefile b/devel/qbs/Makefile index 065484a1479e..df43e0d811d7 100644 --- a/devel/qbs/Makefile +++ b/devel/qbs/Makefile @@ -3,6 +3,7 @@ PORTNAME= qbs DISTVERSIONPREFIX= src- DISTVERSION= 1.12.2 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= QT/official_releases/${PORTNAME}/${PORTVERSION} DIST_SUBDIR= KDE/Qt/qbs diff --git a/devel/qca/Makefile b/devel/qca/Makefile index caea5ce6d33d..800b9f3dc83a 100644 --- a/devel/qca/Makefile +++ b/devel/qca/Makefile @@ -3,7 +3,7 @@ PORTNAME= qca PORTVERSION= 2.1.3 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel MASTER_SITES= KDE/stable/qca/${PORTVERSION}/src PKGNAMESUFFIX= -${FLAVOR} diff --git a/devel/qgit/Makefile b/devel/qgit/Makefile index 54abf28140b9..4fe3c2bcad6e 100644 --- a/devel/qgit/Makefile +++ b/devel/qgit/Makefile @@ -4,6 +4,7 @@ PORTNAME= qgit DISTVERSIONPREFIX= ${PORTNAME}- DISTVERSION= 2.8 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= adridg@FreeBSD.org diff --git a/devel/qjson/Makefile b/devel/qjson/Makefile index 9db97cf1eff0..6e1a2f55a56d 100644 --- a/devel/qjson/Makefile +++ b/devel/qjson/Makefile @@ -2,7 +2,7 @@ PORTNAME= qjson DISTVERSION= 0.9.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= devel PKGNAMESUFFIX= -${FLAVOR} diff --git a/devel/qscintilla2-designerplugin-qt5/Makefile b/devel/qscintilla2-designerplugin-qt5/Makefile index 92aa48024f2f..00b1fce3cfb8 100644 --- a/devel/qscintilla2-designerplugin-qt5/Makefile +++ b/devel/qscintilla2-designerplugin-qt5/Makefile @@ -2,6 +2,7 @@ PORTNAME= designerplugin-qt5 PORTVERSION= ${QSCI2_VERSION} +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITES_QSCI2} PKGNAMEPREFIX= qscintilla2- diff --git a/devel/qscintilla2-qt5/Makefile b/devel/qscintilla2-qt5/Makefile index a367e05009ff..e3ea7119b87c 100644 --- a/devel/qscintilla2-qt5/Makefile +++ b/devel/qscintilla2-qt5/Makefile @@ -2,6 +2,7 @@ PORTNAME= qscintilla2-qt5 PORTVERSION= ${QSCI2_VERSION} +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= ${MASTER_SITES_QSCI2} DISTNAME= ${QSCI2_DISTNAME} diff --git a/devel/qt-maybe/Makefile b/devel/qt-maybe/Makefile index 04f441cb6650..0ff7a51d07a5 100644 --- a/devel/qt-maybe/Makefile +++ b/devel/qt-maybe/Makefile @@ -3,6 +3,7 @@ PORTNAME= qt-maybe PORTVERSION= 0.0.20151227 +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= kde@FreeBSD.org diff --git a/devel/qt5-assistant/Makefile b/devel/qt5-assistant/Makefile index 8f8aa04b978d..e05a62ef75d0 100644 --- a/devel/qt5-assistant/Makefile +++ b/devel/qt5-assistant/Makefile @@ -2,7 +2,7 @@ PORTNAME= assistant DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt5- diff --git a/devel/qt5-buildtools/Makefile b/devel/qt5-buildtools/Makefile index a262f182a14e..460aedac66c5 100644 --- a/devel/qt5-buildtools/Makefile +++ b/devel/qt5-buildtools/Makefile @@ -2,7 +2,7 @@ PORTNAME= buildtools DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt5- diff --git a/devel/qt5-concurrent/Makefile b/devel/qt5-concurrent/Makefile index 61442887fb97..ff11a30401a2 100644 --- a/devel/qt5-concurrent/Makefile +++ b/devel/qt5-concurrent/Makefile @@ -2,7 +2,7 @@ PORTNAME= concurrent DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt5- diff --git a/devel/qt5-core/Makefile b/devel/qt5-core/Makefile index c1a554d5b985..575dfc122126 100644 --- a/devel/qt5-core/Makefile +++ b/devel/qt5-core/Makefile @@ -2,6 +2,7 @@ PORTNAME= core DISTVERSION= ${QT5_VERSION} +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- diff --git a/devel/qt5-dbus/Makefile b/devel/qt5-dbus/Makefile index 31e054bb1892..eb787a6435f2 100644 --- a/devel/qt5-dbus/Makefile +++ b/devel/qt5-dbus/Makefile @@ -2,7 +2,7 @@ PORTNAME= dbus DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt5- diff --git a/devel/qt5-designer/Makefile b/devel/qt5-designer/Makefile index 098bf1efac76..1fe82c4ddbc9 100644 --- a/devel/qt5-designer/Makefile +++ b/devel/qt5-designer/Makefile @@ -2,6 +2,7 @@ PORTNAME= designer DISTVERSION= ${QT5_VERSION} +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- diff --git a/devel/qt5-help/Makefile b/devel/qt5-help/Makefile index afca6145bcdb..964128bfdfb1 100644 --- a/devel/qt5-help/Makefile +++ b/devel/qt5-help/Makefile @@ -2,7 +2,7 @@ PORTNAME= help DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt5- diff --git a/devel/qt5-linguist/Makefile b/devel/qt5-linguist/Makefile index 31c62b25b725..409a9c047f6b 100644 --- a/devel/qt5-linguist/Makefile +++ b/devel/qt5-linguist/Makefile @@ -2,7 +2,7 @@ PORTNAME= linguist DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt5- diff --git a/devel/qt5-linguisttools/Makefile b/devel/qt5-linguisttools/Makefile index 47a9c27f36ad..7fa12d2681ba 100644 --- a/devel/qt5-linguisttools/Makefile +++ b/devel/qt5-linguisttools/Makefile @@ -2,7 +2,7 @@ PORTNAME= linguisttools DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt5- diff --git a/devel/qt5-location/Makefile b/devel/qt5-location/Makefile index cdae97da0d79..b33ac1d15260 100644 --- a/devel/qt5-location/Makefile +++ b/devel/qt5-location/Makefile @@ -2,6 +2,7 @@ PORTNAME= location DISTVERSION= ${QT5_VERSION} +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- diff --git a/devel/qt5-qdbus/Makefile b/devel/qt5-qdbus/Makefile index 57ccc6fdf576..58075db73110 100644 --- a/devel/qt5-qdbus/Makefile +++ b/devel/qt5-qdbus/Makefile @@ -2,7 +2,7 @@ PORTNAME= qdbus DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt5- diff --git a/devel/qt5-qdbusviewer/Makefile b/devel/qt5-qdbusviewer/Makefile index e31bbf027ccc..2d3366e0e5d1 100644 --- a/devel/qt5-qdbusviewer/Makefile +++ b/devel/qt5-qdbusviewer/Makefile @@ -2,7 +2,7 @@ PORTNAME= qdbusviewer DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt5- diff --git a/devel/qt5-qdoc/Makefile b/devel/qt5-qdoc/Makefile index 32702cfd8806..4daf0f152692 100644 --- a/devel/qt5-qdoc/Makefile +++ b/devel/qt5-qdoc/Makefile @@ -2,7 +2,7 @@ PORTNAME= qdoc DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel textproc PKGNAMEPREFIX= qt5- diff --git a/devel/qt5-qmake/Makefile b/devel/qt5-qmake/Makefile index f8e87e1a0142..4f60ae78c7c1 100644 --- a/devel/qt5-qmake/Makefile +++ b/devel/qt5-qmake/Makefile @@ -2,7 +2,7 @@ PORTNAME= qmake DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt5- diff --git a/devel/qt5-remoteobjects/Makefile b/devel/qt5-remoteobjects/Makefile index 474cf7d97554..e1b0dd477020 100644 --- a/devel/qt5-remoteobjects/Makefile +++ b/devel/qt5-remoteobjects/Makefile @@ -2,6 +2,7 @@ PORTNAME= remoteobjects DISTVERSION= ${QT5_VERSION} +PORTREVISION= 1 CATEGORIES= devel PKGNAMEPREFIX= qt5- diff --git a/devel/qt5-script/Makefile b/devel/qt5-script/Makefile index bf840672f0a8..01044dc136c4 100644 --- a/devel/qt5-script/Makefile +++ b/devel/qt5-script/Makefile @@ -2,7 +2,7 @@ PORTNAME= script DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt5- diff --git a/devel/qt5-scripttools/Makefile b/devel/qt5-scripttools/Makefile index 1349f5f29fb2..b5e43ad31a74 100644 --- a/devel/qt5-scripttools/Makefile +++ b/devel/qt5-scripttools/Makefile @@ -2,7 +2,7 @@ PORTNAME= scripttools DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt5- diff --git a/devel/qt5-scxml/Makefile b/devel/qt5-scxml/Makefile index 359d751a60c1..770e30e033b3 100644 --- a/devel/qt5-scxml/Makefile +++ b/devel/qt5-scxml/Makefile @@ -2,7 +2,7 @@ PORTNAME= scxml DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt5- diff --git a/devel/qt5-testlib/Makefile b/devel/qt5-testlib/Makefile index 21bc762a05cd..668ecd53fefc 100644 --- a/devel/qt5-testlib/Makefile +++ b/devel/qt5-testlib/Makefile @@ -2,7 +2,7 @@ PORTNAME= testlib DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt5- diff --git a/devel/qt5-uitools/Makefile b/devel/qt5-uitools/Makefile index 7519a61dfa36..a3a3ca36a4cf 100644 --- a/devel/qt5-uitools/Makefile +++ b/devel/qt5-uitools/Makefile @@ -2,7 +2,7 @@ PORTNAME= uitools DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel PKGNAMEPREFIX= qt5- diff --git a/devel/qt5/Makefile b/devel/qt5/Makefile index 997be9942b10..b512a838f373 100644 --- a/devel/qt5/Makefile +++ b/devel/qt5/Makefile @@ -2,6 +2,7 @@ PORTNAME= qt5 DISTVERSION= ${QT5_VERSION} +PORTREVISION= 1 CATEGORIES= devel MAINTAINER= kde@FreeBSD.org diff --git a/devel/qt5/files/extrapatch-mkspecs_features_qt__module.prf b/devel/qt5/files/extrapatch-mkspecs_features_qt__module.prf index ebca55108e98..06c6b32f36ba 100644 --- a/devel/qt5/files/extrapatch-mkspecs_features_qt__module.prf +++ b/devel/qt5/files/extrapatch-mkspecs_features_qt__module.prf @@ -1,22 +1,48 @@ -The first hunk fixes the install location of the pkconfig files: +The first hunk puts the catch-all { *; } first in version scripts +so it has lowest priority when a symbol matches multiple patterns. + +The second hunk fixes the install location of the pkconfig files: FreeBSD installs pkgconfig files to $LOCALBASE/libdata/pkgconfig qmake uses QMAKE_PKGCONFIG_DESTDIR as relative path to $$QT_LIBDIR. As this is now '${PREFIX}/lib/qt5' we need to go up two levels. -The second hunk stops qmake from generating la files. +The third hunk stops qmake from generating la files. ---- mkspecs/features/qt_module.prf.orig 2016-09-16 05:49:42 UTC +--- mkspecs/features/qt_module.prf.orig 2018-12-03 11:15:26 UTC +++ mkspecs/features/qt_module.prf -@@ -247,7 +247,7 @@ load(qt_targets) +@@ -217,17 +217,18 @@ android: CONFIG += qt_android_deps no_linker_version_s + internal_module { + verscript_content = "Qt_$${QT_MAJOR_VERSION}_PRIVATE_API { *; };" + } else { +- verscript_content = "Qt_$${QT_MAJOR_VERSION}_PRIVATE_API {" \ +- " qt_private_api_tag*;" ++ current = Qt_$$QT_MAJOR_VERSION ++ verscript_content = "$$current { *; };" + ++ verscript_content += "Qt_$${QT_MAJOR_VERSION}_PRIVATE_API {" \ ++ " qt_private_api_tag*;" ++ + private_api_headers = $$SYNCQT.PRIVATE_HEADER_FILES $$SYNCQT.QPA_HEADER_FILES + + for(header, private_api_headers): \ + verscript_content += " @FILE:$$header@" + verscript_content += "};" + +- current = Qt_$$QT_MAJOR_VERSION +- verscript_content += "$$current { *; };" + isEmpty(QT_NAMESPACE): tag_symbol = qt_version_tag + else: tag_symbol = qt_version_tag_$$QT_NAMESPACE + +@@ -266,7 +267,7 @@ load(qt_targets) # this builds on top of qt_common - !internal_module:!lib_bundle:if(unix|mingw) { + !internal_module:if(unix|mingw) { CONFIG += create_pc - QMAKE_PKGCONFIG_DESTDIR = pkgconfig + QMAKE_PKGCONFIG_DESTDIR = ../../libdata/pkgconfig host_build: \ QMAKE_PKGCONFIG_LIBDIR = $$[QT_HOST_LIBS] else: \ -@@ -267,7 +267,6 @@ load(qt_targets) +@@ -291,7 +292,6 @@ load(qt_targets) QMAKE_PKGCONFIG_INSTALL_REPLACE += pclib_replace } !lib_bundle:unix { diff --git a/devel/qtcreator/Makefile b/devel/qtcreator/Makefile index c10fe00c009e..8fc29756603a 100644 --- a/devel/qtcreator/Makefile +++ b/devel/qtcreator/Makefile @@ -3,6 +3,7 @@ PORTNAME= qtcreator DISTVERSION= 4.8.0 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= QT/official_releases/qtcreator/${DISTVERSION:R}/${DISTVERSION} DISTNAME= qt-creator-opensource-src-${DISTVERSION} diff --git a/devel/qtscriptgenerator/Makefile b/devel/qtscriptgenerator/Makefile index b0702e260785..1927a943ea9a 100644 --- a/devel/qtscriptgenerator/Makefile +++ b/devel/qtscriptgenerator/Makefile @@ -3,7 +3,7 @@ PORTNAME= qtscriptgenerator PORTVERSION= 0.2.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= devel MAINTAINER= syncer@gmail.com diff --git a/devel/sasm/Makefile b/devel/sasm/Makefile index e42618161ecd..ce2ff81d475c 100644 --- a/devel/sasm/Makefile +++ b/devel/sasm/Makefile @@ -3,7 +3,7 @@ PORTNAME= SASM DISTVERSIONPREFIX= v DISTVERSION= 3.10.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= devel MAINTAINER= freebsd@sysctl.cz diff --git a/devel/svn2git/Makefile b/devel/svn2git/Makefile index 453e75749b6d..dafb57cf4287 100644 --- a/devel/svn2git/Makefile +++ b/devel/svn2git/Makefile @@ -3,6 +3,7 @@ PORTNAME= svn2git PORTVERSION= 1.0.12 +PORTREVISION= 1 CATEGORIES= devel kde MAINTAINER= dbn@FreeBSD.org diff --git a/devel/tortoisehg/Makefile b/devel/tortoisehg/Makefile index 5be21f9bf494..4d3f68c61aac 100644 --- a/devel/tortoisehg/Makefile +++ b/devel/tortoisehg/Makefile @@ -2,6 +2,7 @@ PORTNAME= tortoisehg DISTVERSION= 4.8 +PORTREVISION= 1 CATEGORIES= devel MASTER_SITES= https://bitbucket.org/tortoisehg/targz/downloads/ diff --git a/devel/umbrello/Makefile b/devel/umbrello/Makefile index e32b03281792..11ca2197d4a2 100644 --- a/devel/umbrello/Makefile +++ b/devel/umbrello/Makefile @@ -2,6 +2,7 @@ PORTNAME= umbrello DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= devel kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/devel/vitables/Makefile b/devel/vitables/Makefile index 0cca49c9140f..e8240e4373b2 100644 --- a/devel/vitables/Makefile +++ b/devel/vitables/Makefile @@ -4,7 +4,7 @@ PORTNAME= vitables DISTVERSIONPREFIX= v DISTVERSION= 3.0.0-55 DISTVERSIONSUFFIX= -gb064ad7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel science python MAINTAINER= yuri@FreeBSD.org diff --git a/devel/zeal/Makefile b/devel/zeal/Makefile index 4fe5c2b9105b..e3f05eff13a1 100644 --- a/devel/zeal/Makefile +++ b/devel/zeal/Makefile @@ -2,7 +2,7 @@ PORTNAME= zeal PORTVERSION= 0.6.1 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONPREFIX=v CATEGORIES= devel diff --git a/dns/kf5-kdnssd/Makefile b/dns/kf5-kdnssd/Makefile index 21a99fcea7bc..e3e30fbd3f93 100644 --- a/dns/kf5-kdnssd/Makefile +++ b/dns/kf5-kdnssd/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdnssd DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= dns kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/dns/qmdnsengine/Makefile b/dns/qmdnsengine/Makefile index bc067f03947f..b3870ae5736f 100644 --- a/dns/qmdnsengine/Makefile +++ b/dns/qmdnsengine/Makefile @@ -3,7 +3,7 @@ PORTNAME= qmdnsengine DISTVERSION= 0.1.0-13 DISTVERSIONSUFFIX= -gbac0431 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= dns MAINTAINER= yuri@FreeBSD.org diff --git a/editors/calligra/Makefile b/editors/calligra/Makefile index 1d10db766a27..e625b16dff43 100644 --- a/editors/calligra/Makefile +++ b/editors/calligra/Makefile @@ -2,7 +2,7 @@ PORTNAME= calligra DISTVERSION= 3.1.0 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= editors kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION} DIST_SUBDIR= KDE/${PORTNAME} diff --git a/editors/calligraplan/Makefile b/editors/calligraplan/Makefile index 1f701e23c455..2084d50ffcff 100644 --- a/editors/calligraplan/Makefile +++ b/editors/calligraplan/Makefile @@ -2,7 +2,7 @@ PORTNAME= calligraplan DISTVERSION= 3.1.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= editors kde MASTER_SITES= KDE/stable/calligra/${PORTVERSION} DIST_SUBDIR= KDE/${PORTNAME} diff --git a/editors/dexed/Makefile b/editors/dexed/Makefile index 6585ff97ae66..8725a4e4c900 100644 --- a/editors/dexed/Makefile +++ b/editors/dexed/Makefile @@ -3,6 +3,7 @@ PORTNAME= dexed PORTVERSION= 3.6.21 DISTVERSIONPREFIX=v +PORTREVISION= 1 CATEGORIES= editors PKGNAMESUFFIX= ${LAZARUS_PKGNAMESUFFIX} diff --git a/editors/encryptpad/Makefile b/editors/encryptpad/Makefile index 67f8a08dfb17..ff2df90aefb8 100644 --- a/editors/encryptpad/Makefile +++ b/editors/encryptpad/Makefile @@ -4,7 +4,7 @@ PORTNAME= encryptpad DISTVERSIONPREFIX= v DISTVERSION= 0.4.0.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= editors security MAINTAINER= dg@syrec.org diff --git a/editors/featherpad/Makefile b/editors/featherpad/Makefile index 525d489da121..9c0aac585944 100644 --- a/editors/featherpad/Makefile +++ b/editors/featherpad/Makefile @@ -3,7 +3,7 @@ PORTNAME= featherpad PORTVERSION= 0.9.1 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONPREFIX= V CATEGORIES= editors diff --git a/editors/focuswriter/Makefile b/editors/focuswriter/Makefile index 792e59ae74f9..3370da538213 100644 --- a/editors/focuswriter/Makefile +++ b/editors/focuswriter/Makefile @@ -4,6 +4,7 @@ PORTNAME= focuswriter DISTVERSIONPREFIX= v DISTVERSION= 1.7.1 +PORTREVISION= 1 CATEGORIES= editors MAINTAINER= lightside@gmx.com diff --git a/editors/ghostwriter/Makefile b/editors/ghostwriter/Makefile index 934e1804cc62..13e93ef97918 100644 --- a/editors/ghostwriter/Makefile +++ b/editors/ghostwriter/Makefile @@ -3,7 +3,7 @@ PORTNAME= ghostwriter DISTVERSIONPREFIX= v DISTVERSION= 1.7.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= editors MAINTAINER= tobik@FreeBSD.org diff --git a/editors/kate/Makefile b/editors/kate/Makefile index 2ba5b8203353..9777f208ac69 100644 --- a/editors/kate/Makefile +++ b/editors/kate/Makefile @@ -2,6 +2,7 @@ PORTNAME= kate DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= editors kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/editors/kile/Makefile b/editors/kile/Makefile index 399d170997b1..2ed76e80c5da 100644 --- a/editors/kile/Makefile +++ b/editors/kile/Makefile @@ -3,6 +3,7 @@ PORTNAME= kile DISTVERSIONPREFIX= v DISTVERSION= 3.0b2 +PORTREVISION= 1 CATEGORIES= editors kde MAINTAINER= kde@FreeBSD.org diff --git a/editors/lazarus-qt5/Makefile b/editors/lazarus-qt5/Makefile index db9720fa6cb3..3a509b6064bf 100644 --- a/editors/lazarus-qt5/Makefile +++ b/editors/lazarus-qt5/Makefile @@ -1,5 +1,6 @@ # $FreeBSD$ +PORTREVISION= 2 PKGNAMESUFFIX?= -qt5 COMMENT= Portable Delphi-like IDE for the FreePascal compiler (QT5) diff --git a/editors/neovim-qt/Makefile b/editors/neovim-qt/Makefile index 598b063b4aae..b3f664c60546 100644 --- a/editors/neovim-qt/Makefile +++ b/editors/neovim-qt/Makefile @@ -3,6 +3,7 @@ PORTNAME= neovim-qt DISTVERSIONPREFIX= v DISTVERSION= 0.2.10 +PORTREVISION= 1 CATEGORIES= editors MAINTAINER= chuck@tuffli.net diff --git a/editors/picpas/Makefile b/editors/picpas/Makefile index 0e401d971453..04d29799a961 100644 --- a/editors/picpas/Makefile +++ b/editors/picpas/Makefile @@ -3,6 +3,7 @@ PORTNAME= picpas PORTVERSION= 0.8.8 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= editors PKGNAMESUFFIX= ${LAZARUS_PKGNAMESUFFIX} diff --git a/editors/tea/Makefile b/editors/tea/Makefile index ab1bf0b9aed2..8ab337012a70 100644 --- a/editors/tea/Makefile +++ b/editors/tea/Makefile @@ -3,6 +3,7 @@ PORTNAME= tea PORTVERSION= 47.0.1 +PORTREVISION= 1 CATEGORIES= editors MAINTAINER= danilo@FreeBSD.org diff --git a/editors/texmaker/Makefile b/editors/texmaker/Makefile index 7e0324146f87..59faed539263 100644 --- a/editors/texmaker/Makefile +++ b/editors/texmaker/Makefile @@ -3,7 +3,7 @@ PORTNAME= texmaker PORTVERSION= 4.5 -PORTREVISION= 11 +PORTREVISION= 12 PORTEPOCH= 3 CATEGORIES= editors MASTER_SITES= http://www.xm1math.net/texmaker/ diff --git a/editors/texstudio/Makefile b/editors/texstudio/Makefile index 98f773add93f..c41b84819551 100644 --- a/editors/texstudio/Makefile +++ b/editors/texstudio/Makefile @@ -2,6 +2,7 @@ PORTNAME= texstudio DISTVERSION= 2.12.14 +PORTREVISION= 1 CATEGORIES= editors MAINTAINER= abiliojr@gmail.com diff --git a/editors/texworks/Makefile b/editors/texworks/Makefile index d119930b93f6..67e461f78184 100644 --- a/editors/texworks/Makefile +++ b/editors/texworks/Makefile @@ -4,6 +4,7 @@ PORTNAME= texworks DISTVERSIONPREFIX= release- DISTVERSION= 0.6.2 +PORTREVISION= 1 CATEGORIES= editors MAINTAINER= hrs@FreeBSD.org diff --git a/emulators/aqemu/Makefile b/emulators/aqemu/Makefile index 66d1826dd0b7..619804a5342a 100644 --- a/emulators/aqemu/Makefile +++ b/emulators/aqemu/Makefile @@ -3,6 +3,7 @@ PORTNAME= aqemu DISTVERSIONPREFIX= v DISTVERSION= 0.9.2 +PORTREVISION= 1 CATEGORIES= emulators MAINTAINER= ports@FreeBSD.org diff --git a/emulators/citra-qt5/Makefile b/emulators/citra-qt5/Makefile index 690002e635c2..ac7516fe5ba0 100644 --- a/emulators/citra-qt5/Makefile +++ b/emulators/citra-qt5/Makefile @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -qt5 MASTERDIR= ${.CURDIR}/../citra diff --git a/emulators/dolphin-emu/Makefile b/emulators/dolphin-emu/Makefile index 50af7248ac92..221e13394ba5 100644 --- a/emulators/dolphin-emu/Makefile +++ b/emulators/dolphin-emu/Makefile @@ -3,6 +3,7 @@ PORTNAME= dolphin-emu PORTVERSION= 5.0.9209 +PORTREVISION= 1 CATEGORIES= emulators MAINTAINER= martymac@FreeBSD.org diff --git a/emulators/fs-uae-launcher/Makefile b/emulators/fs-uae-launcher/Makefile index 50cef5cff15c..b86026262953 100644 --- a/emulators/fs-uae-launcher/Makefile +++ b/emulators/fs-uae-launcher/Makefile @@ -3,7 +3,7 @@ PORTNAME= fs-uae-launcher PORTVERSION= 2.8.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= emulators MASTER_SITES= http://fs-uae.net/fs-uae/stable/${PORTVERSION}/ diff --git a/emulators/loemu/Makefile b/emulators/loemu/Makefile index d45483b7f6a3..4d0b45bbd3db 100644 --- a/emulators/loemu/Makefile +++ b/emulators/loemu/Makefile @@ -3,7 +3,7 @@ PORTNAME= loemu PORTVERSION= 0.3.1 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= emulators python MASTER_SITES= http://loemu.pegueroles.com/dists/ diff --git a/emulators/mame/Makefile b/emulators/mame/Makefile index 91bfe5775441..377f51564c5a 100644 --- a/emulators/mame/Makefile +++ b/emulators/mame/Makefile @@ -3,7 +3,7 @@ PORTNAME?= mame PORTVERSION= 0.200 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= emulators MAINTAINER= ports@FreeBSD.org diff --git a/emulators/mgba/Makefile b/emulators/mgba/Makefile index f1de15860310..268de54dc078 100644 --- a/emulators/mgba/Makefile +++ b/emulators/mgba/Makefile @@ -2,7 +2,7 @@ PORTNAME= mgba DISTVERSION= 0.6.1 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= emulators PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ diff --git a/emulators/mupen64plus-qt/Makefile b/emulators/mupen64plus-qt/Makefile index 12c65286fca7..914bb713e746 100644 --- a/emulators/mupen64plus-qt/Makefile +++ b/emulators/mupen64plus-qt/Makefile @@ -2,6 +2,7 @@ PORTNAME= mupen64plus-qt DISTVERSION= 1.12 +PORTREVISION= 1 CATEGORIES= emulators MAINTAINER= maintainer@hasting.email diff --git a/emulators/ppsspp-qt5/Makefile b/emulators/ppsspp-qt5/Makefile index d20236b2cd7a..0317cf0c3451 100644 --- a/emulators/ppsspp-qt5/Makefile +++ b/emulators/ppsspp-qt5/Makefile @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -qt5 MASTERDIR= ${.CURDIR}/../ppsspp diff --git a/emulators/qmc2/Makefile b/emulators/qmc2/Makefile index a298fbe6289e..df43f1e83623 100644 --- a/emulators/qmc2/Makefile +++ b/emulators/qmc2/Makefile @@ -3,7 +3,7 @@ PORTNAME= qmc2 PORTVERSION= 0.195 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= emulators MASTER_SITES= SF diff --git a/emulators/rpcs3/Makefile b/emulators/rpcs3/Makefile index e805ed9ed9e0..4619b27b7970 100644 --- a/emulators/rpcs3/Makefile +++ b/emulators/rpcs3/Makefile @@ -4,6 +4,7 @@ PORTNAME= rpcs3 DISTVERSIONPREFIX= v DISTVERSION= 0.0.5-7729 # git rev-list --count HEAD DISTVERSIONSUFFIX= -gf19fd2322 +PORTREVISION= 1 CATEGORIES= emulators PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ diff --git a/emulators/vboxtool/Makefile b/emulators/vboxtool/Makefile index 2f562bc8bf91..19c7594044a2 100644 --- a/emulators/vboxtool/Makefile +++ b/emulators/vboxtool/Makefile @@ -3,7 +3,7 @@ PORTNAME= vboxtool PORTVERSION= 0.5 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= emulators MASTER_SITES= SF diff --git a/emulators/virtualbox-ose/Makefile b/emulators/virtualbox-ose/Makefile index 9384da64824b..7bb5323ed798 100644 --- a/emulators/virtualbox-ose/Makefile +++ b/emulators/virtualbox-ose/Makefile @@ -3,7 +3,7 @@ PORTNAME= virtualbox-ose PORTVERSION= 5.2.22 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= emulators MASTER_SITES= http://download.virtualbox.org/virtualbox/${PORTVERSION}/ DISTFILES= VirtualBox-${PORTVERSION}${EXTRACT_SUFX} ${GUESTADDITIONS} diff --git a/emulators/yabause/Makefile b/emulators/yabause/Makefile index cb5846605394..22a8c1172f16 100644 --- a/emulators/yabause/Makefile +++ b/emulators/yabause/Makefile @@ -3,7 +3,7 @@ PORTNAME= yabause PORTVERSION= 0.9.14 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= emulators MASTER_SITES= SF diff --git a/finance/alkimia/Makefile b/finance/alkimia/Makefile index ba07798b6530..5b1a36b6fbf5 100644 --- a/finance/alkimia/Makefile +++ b/finance/alkimia/Makefile @@ -2,7 +2,7 @@ PORTNAME= alkimia PORTVERSION= 7.0.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= finance kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION} PKGNAMESUFFIX= -${SLAVE} diff --git a/finance/electrum/Makefile b/finance/electrum/Makefile index b267fe4ca298..b3e3a60957f6 100644 --- a/finance/electrum/Makefile +++ b/finance/electrum/Makefile @@ -3,6 +3,7 @@ PORTNAME= electrum PORTVERSION= 3.3.2 +PORTREVISION= 1 CATEGORIES= finance python MASTER_SITES= https://download.electrum.org/${PORTVERSION}/ \ http://download.electrum.org/${PORTVERSION}/ diff --git a/finance/kmymoney/Makefile b/finance/kmymoney/Makefile index e0f8788f87bc..cb5418d9c3de 100644 --- a/finance/kmymoney/Makefile +++ b/finance/kmymoney/Makefile @@ -2,7 +2,7 @@ PORTNAME= kmymoney PORTVERSION= 5.0.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= finance kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION}/src diff --git a/finance/qtbitcointrader/Makefile b/finance/qtbitcointrader/Makefile index 817b1da9f9f3..e8b7b7639584 100644 --- a/finance/qtbitcointrader/Makefile +++ b/finance/qtbitcointrader/Makefile @@ -2,7 +2,7 @@ PORTNAME= QtBitcoinTrader DISTVERSION= 1.40.30 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= finance MASTER_SITES= SF/bitcointrader/SRC/ diff --git a/finance/skrooge/Makefile b/finance/skrooge/Makefile index 9115aef3c3cf..130c50986ed9 100644 --- a/finance/skrooge/Makefile +++ b/finance/skrooge/Makefile @@ -2,6 +2,7 @@ PORTNAME= skrooge DISTVERSION= 2.17.0 +PORTREVISION= 1 CATEGORIES= finance kde MASTER_SITES= KDE/stable/${PORTNAME} DIST_SUBDIR= KDE/${PORTNAME} diff --git a/games/2048-qt/Makefile b/games/2048-qt/Makefile index 11d50dfb97c4..5b463b916342 100644 --- a/games/2048-qt/Makefile +++ b/games/2048-qt/Makefile @@ -3,7 +3,7 @@ PORTNAME= 2048-qt PORTVERSION= 0.1.6 DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MAINTAINER= swills@FreeBSD.org diff --git a/games/auralquiz/Makefile b/games/auralquiz/Makefile index 93bf9d2d424d..4702ce7f84cc 100644 --- a/games/auralquiz/Makefile +++ b/games/auralquiz/Makefile @@ -4,7 +4,7 @@ PORTNAME= auralquiz PORTVERSION= 1.0.0 DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= SAVANNAH diff --git a/games/blinken/Makefile b/games/blinken/Makefile index d49decaf77ec..a7e6de77b2a9 100644 --- a/games/blinken/Makefile +++ b/games/blinken/Makefile @@ -2,6 +2,7 @@ PORTNAME= blinken DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/bomber/Makefile b/games/bomber/Makefile index 5e57509bc211..711f6c900223 100644 --- a/games/bomber/Makefile +++ b/games/bomber/Makefile @@ -2,6 +2,7 @@ PORTNAME= bomber DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/bovo/Makefile b/games/bovo/Makefile index de5f5f8acf4b..9ca1ec0687eb 100644 --- a/games/bovo/Makefile +++ b/games/bovo/Makefile @@ -2,6 +2,7 @@ PORTNAME= bovo DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/chessx/Makefile b/games/chessx/Makefile index 28f4f53b7db1..657d8b957409 100644 --- a/games/chessx/Makefile +++ b/games/chessx/Makefile @@ -2,6 +2,7 @@ PORTNAME= chessx PORTVERSION= 1.4.6 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF diff --git a/games/cockatrice/Makefile b/games/cockatrice/Makefile index 38a5e6cbaa49..6d3dc5294a68 100644 --- a/games/cockatrice/Makefile +++ b/games/cockatrice/Makefile @@ -3,7 +3,7 @@ PORTNAME= Cockatrice PORTVERSION= 2.6.2.g2018.12.21 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MAINTAINER= sbruno@FreeBSD.org diff --git a/games/colorcode/Makefile b/games/colorcode/Makefile index a12dc18739b9..fda0e94ea999 100644 --- a/games/colorcode/Makefile +++ b/games/colorcode/Makefile @@ -2,6 +2,7 @@ PORTNAME= colorcode PORTVERSION= 0.8.5 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://colorcode.laebisch.com/download/ DISTNAME= ColorCode-${PORTVERSION} diff --git a/games/connectagram/Makefile b/games/connectagram/Makefile index 8ddabb5dfc04..af2c5caa6a49 100644 --- a/games/connectagram/Makefile +++ b/games/connectagram/Makefile @@ -3,7 +3,7 @@ PORTNAME= connectagram PORTVERSION= 1.2.9 -PORTREVISION= 2 +PORTREVISION= 3 DISTVERSIONSUFFIX= -src CATEGORIES= games MASTER_SITES= http://gottcode.org/connectagram/ diff --git a/games/cutemaze/Makefile b/games/cutemaze/Makefile index 10c942560de2..eab69add64b6 100644 --- a/games/cutemaze/Makefile +++ b/games/cutemaze/Makefile @@ -3,6 +3,7 @@ PORTNAME= cutemaze PORTVERSION= 1.2.4 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://gottcode.org/${PORTNAME}/ DISTNAME= ${PORTNAME}-${DISTVERSION}-src diff --git a/games/doomsday/Makefile b/games/doomsday/Makefile index c931ceb1bcd0..b06f38636990 100644 --- a/games/doomsday/Makefile +++ b/games/doomsday/Makefile @@ -3,6 +3,7 @@ PORTNAME= doomsday PORTVERSION= 2.1.0 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/deng/Doomsday%20Engine/${PORTVERSION} diff --git a/games/dustrac/Makefile b/games/dustrac/Makefile index 753d7d009ab6..1fac720c7e35 100644 --- a/games/dustrac/Makefile +++ b/games/dustrac/Makefile @@ -2,7 +2,7 @@ PORTNAME= dustrac PORTVERSION= 1.11.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= games MAINTAINER= ports@FreeBSD.org diff --git a/games/flightgear/Makefile b/games/flightgear/Makefile index 8cc1f4dceab1..3d09227904f9 100644 --- a/games/flightgear/Makefile +++ b/games/flightgear/Makefile @@ -3,7 +3,7 @@ PORTNAME= flightgear PORTVERSION= 2018.3.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= SF/flightgear/release-${PORTVERSION:R} diff --git a/games/gcompris-qt/Makefile b/games/gcompris-qt/Makefile index 52a541c157cc..5430f567b1bc 100644 --- a/games/gcompris-qt/Makefile +++ b/games/gcompris-qt/Makefile @@ -2,6 +2,7 @@ PORTNAME= gcompris-qt DISTVERSION= 0.95 +PORTREVISION= 1 CATEGORIES= games kde MASTER_SITES= http://gcompris.net/download/qt/src/ diff --git a/games/gottet/Makefile b/games/gottet/Makefile index b2a3cbf0123a..a205dbfe75b9 100644 --- a/games/gottet/Makefile +++ b/games/gottet/Makefile @@ -3,7 +3,7 @@ PORTNAME= gottet PORTVERSION= 1.1.7 -PORTREVISION= 2 +PORTREVISION= 3 DISTVERSIONSUFFIX= -src CATEGORIES= games MASTER_SITES= https://gottcode.org/gottet/ diff --git a/games/granatier/Makefile b/games/granatier/Makefile index eb0cdea8f9c9..fa6b9300bfa4 100644 --- a/games/granatier/Makefile +++ b/games/granatier/Makefile @@ -2,6 +2,7 @@ PORTNAME= granatier DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/hedgewars/Makefile b/games/hedgewars/Makefile index 9b3c961b97ab..9f88cc78433c 100644 --- a/games/hedgewars/Makefile +++ b/games/hedgewars/Makefile @@ -3,6 +3,7 @@ PORTNAME= hedgewars PORTVERSION= 0.9.25 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://www.hedgewars.org/download/releases/ \ http://mirror.amdmi3.ru/distfiles/ diff --git a/games/hexalate/Makefile b/games/hexalate/Makefile index 64fd7e0415f7..aac957f97136 100644 --- a/games/hexalate/Makefile +++ b/games/hexalate/Makefile @@ -3,7 +3,7 @@ PORTNAME= hexalate PORTVERSION= 1.1.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MASTER_SITES= https://gottcode.org/${PORTNAME}/ \ https://mirror.amdmi3.ru/distfiles/ diff --git a/games/kanagram/Makefile b/games/kanagram/Makefile index 0c599df0a083..3bd70d2d6554 100644 --- a/games/kanagram/Makefile +++ b/games/kanagram/Makefile @@ -2,6 +2,7 @@ PORTNAME= kanagram DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/kapman/Makefile b/games/kapman/Makefile index d5560151aa30..eda0862d5fc3 100644 --- a/games/kapman/Makefile +++ b/games/kapman/Makefile @@ -2,6 +2,7 @@ PORTNAME= kapman DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/katomic/Makefile b/games/katomic/Makefile index b13f737df26c..b01b3c58bf1c 100644 --- a/games/katomic/Makefile +++ b/games/katomic/Makefile @@ -2,6 +2,7 @@ PORTNAME= katomic DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org COMMENT= ${${PORTNAME}_DESC} diff --git a/games/kblackbox/Makefile b/games/kblackbox/Makefile index 8d911636414f..bf6d9dff045b 100644 --- a/games/kblackbox/Makefile +++ b/games/kblackbox/Makefile @@ -2,6 +2,7 @@ PORTNAME= kblackbox DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/kblocks/Makefile b/games/kblocks/Makefile index 144f2fd091df..cfd7fe899acb 100644 --- a/games/kblocks/Makefile +++ b/games/kblocks/Makefile @@ -2,6 +2,7 @@ PORTNAME= kblocks DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/kbounce/Makefile b/games/kbounce/Makefile index f16a1dd58a0e..32efde0c3aa6 100644 --- a/games/kbounce/Makefile +++ b/games/kbounce/Makefile @@ -2,6 +2,7 @@ PORTNAME= kbounce DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/kbreakout/Makefile b/games/kbreakout/Makefile index b452121a806e..01208c5a0fa2 100644 --- a/games/kbreakout/Makefile +++ b/games/kbreakout/Makefile @@ -2,6 +2,7 @@ PORTNAME= kbreakout DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/kdegames/Makefile b/games/kdegames/Makefile index f7782e2bf64f..a64d82c00d9e 100644 --- a/games/kdegames/Makefile +++ b/games/kdegames/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdegames DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde MAINTAINER= kde@FreeBSD.org diff --git a/games/kdiamond/Makefile b/games/kdiamond/Makefile index 65e6c16ba32c..8fad3b151a9d 100644 --- a/games/kdiamond/Makefile +++ b/games/kdiamond/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdiamond DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/kfourinline/Makefile b/games/kfourinline/Makefile index 78bc4c64f4c5..ac61b806662e 100644 --- a/games/kfourinline/Makefile +++ b/games/kfourinline/Makefile @@ -2,6 +2,7 @@ PORTNAME= kfourinline DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/kgoldrunner/Makefile b/games/kgoldrunner/Makefile index f919ca0c45e3..3e095580127b 100644 --- a/games/kgoldrunner/Makefile +++ b/games/kgoldrunner/Makefile @@ -2,6 +2,7 @@ PORTNAME= kgoldrunner DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/khangman/Makefile b/games/khangman/Makefile index df7e90a08496..9b2ab1dedbbc 100644 --- a/games/khangman/Makefile +++ b/games/khangman/Makefile @@ -2,6 +2,7 @@ PORTNAME= khangman DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/kigo/Makefile b/games/kigo/Makefile index ba953b6b9884..d8309b572bc6 100644 --- a/games/kigo/Makefile +++ b/games/kigo/Makefile @@ -2,6 +2,7 @@ PORTNAME= kigo DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/killbots/Makefile b/games/killbots/Makefile index 1e12820c2ff7..5e563f2bd7f0 100644 --- a/games/killbots/Makefile +++ b/games/killbots/Makefile @@ -2,6 +2,7 @@ PORTNAME= killbots DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/kiriki/Makefile b/games/kiriki/Makefile index 76a5bc292df4..f843286a822e 100644 --- a/games/kiriki/Makefile +++ b/games/kiriki/Makefile @@ -2,6 +2,7 @@ PORTNAME= kiriki DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/kjumpingcube/Makefile b/games/kjumpingcube/Makefile index 1ed388bad3dc..443e1c4d4bae 100644 --- a/games/kjumpingcube/Makefile +++ b/games/kjumpingcube/Makefile @@ -2,6 +2,7 @@ PORTNAME= kjumpingcube DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/klickety/Makefile b/games/klickety/Makefile index 90e785dc5e27..bd5a4d95b2ea 100644 --- a/games/klickety/Makefile +++ b/games/klickety/Makefile @@ -2,6 +2,7 @@ PORTNAME= klickety DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/klines/Makefile b/games/klines/Makefile index 4e6d92bbe33c..ed2fb6c6028a 100644 --- a/games/klines/Makefile +++ b/games/klines/Makefile @@ -2,6 +2,7 @@ PORTNAME= klines DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/kmahjongg/Makefile b/games/kmahjongg/Makefile index ccf75b6d1aec..228533a3f651 100644 --- a/games/kmahjongg/Makefile +++ b/games/kmahjongg/Makefile @@ -2,6 +2,7 @@ PORTNAME= kmahjongg DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/kmines/Makefile b/games/kmines/Makefile index 8126de1fdc26..1e92984e8681 100644 --- a/games/kmines/Makefile +++ b/games/kmines/Makefile @@ -2,6 +2,7 @@ PORTNAME= kmines DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/knavalbattle/Makefile b/games/knavalbattle/Makefile index 71e7f490fd55..46ddc7475ead 100644 --- a/games/knavalbattle/Makefile +++ b/games/knavalbattle/Makefile @@ -2,6 +2,7 @@ PORTNAME= knavalbattle DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/knetwalk/Makefile b/games/knetwalk/Makefile index 2131b2e97bf2..948a660b72f3 100644 --- a/games/knetwalk/Makefile +++ b/games/knetwalk/Makefile @@ -2,6 +2,7 @@ PORTNAME= knetwalk DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/knights/Makefile b/games/knights/Makefile index 0f56dc221468..417950b2036b 100644 --- a/games/knights/Makefile +++ b/games/knights/Makefile @@ -3,6 +3,7 @@ PORTNAME= knights DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/kolf/Makefile b/games/kolf/Makefile index 706b3ac6b93f..e57dae7b4442 100644 --- a/games/kolf/Makefile +++ b/games/kolf/Makefile @@ -2,6 +2,7 @@ PORTNAME= kolf DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/kollision/Makefile b/games/kollision/Makefile index a6c295ee9501..3a18b908ca1d 100644 --- a/games/kollision/Makefile +++ b/games/kollision/Makefile @@ -2,6 +2,7 @@ PORTNAME= kollision DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/konquest/Makefile b/games/konquest/Makefile index ee1f77a05068..d4a58e4a5862 100644 --- a/games/konquest/Makefile +++ b/games/konquest/Makefile @@ -2,6 +2,7 @@ PORTNAME= konquest DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/kpat/Makefile b/games/kpat/Makefile index 15c72fd84769..5fc9d2c1edab 100644 --- a/games/kpat/Makefile +++ b/games/kpat/Makefile @@ -2,6 +2,7 @@ PORTNAME= kpat DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/kreversi/Makefile b/games/kreversi/Makefile index d46a9e55c5a5..0066caa05d5f 100644 --- a/games/kreversi/Makefile +++ b/games/kreversi/Makefile @@ -2,6 +2,7 @@ PORTNAME= kreversi DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/kshisen/Makefile b/games/kshisen/Makefile index 10ce4f7423c9..3e2a041689ab 100644 --- a/games/kshisen/Makefile +++ b/games/kshisen/Makefile @@ -2,6 +2,7 @@ PORTNAME= kshisen DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/ksirk/Makefile b/games/ksirk/Makefile index 206319be61c2..7579b42cba38 100644 --- a/games/ksirk/Makefile +++ b/games/ksirk/Makefile @@ -2,6 +2,7 @@ PORTNAME= ksirk DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/ksnakeduel/Makefile b/games/ksnakeduel/Makefile index 6f91c445fb92..fae6410dc5f9 100644 --- a/games/ksnakeduel/Makefile +++ b/games/ksnakeduel/Makefile @@ -2,6 +2,7 @@ PORTNAME= ksnakeduel DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/kspaceduel/Makefile b/games/kspaceduel/Makefile index 92f44a3d2f89..39cb4910a659 100644 --- a/games/kspaceduel/Makefile +++ b/games/kspaceduel/Makefile @@ -2,6 +2,7 @@ PORTNAME= kspaceduel DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/ksquares/Makefile b/games/ksquares/Makefile index ad58bb6b50aa..8296d4fc4a93 100644 --- a/games/ksquares/Makefile +++ b/games/ksquares/Makefile @@ -2,6 +2,7 @@ PORTNAME= ksquares DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/ksudoku/Makefile b/games/ksudoku/Makefile index c8cba26cdeb3..a870b9ac32bc 100644 --- a/games/ksudoku/Makefile +++ b/games/ksudoku/Makefile @@ -2,6 +2,7 @@ PORTNAME= ksudoku DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/ktuberling/Makefile b/games/ktuberling/Makefile index 2a02bbc43c91..abb6188a5613 100644 --- a/games/ktuberling/Makefile +++ b/games/ktuberling/Makefile @@ -2,6 +2,7 @@ PORTNAME= ktuberling DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/kubrick/Makefile b/games/kubrick/Makefile index 8605076298e1..179b9ce1bf9d 100644 --- a/games/kubrick/Makefile +++ b/games/kubrick/Makefile @@ -2,6 +2,7 @@ PORTNAME= kubrick DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/libkdegames/Makefile b/games/libkdegames/Makefile index c8c14e4b4804..7c1672e6615b 100644 --- a/games/libkdegames/Makefile +++ b/games/libkdegames/Makefile @@ -2,6 +2,7 @@ PORTNAME= libkdegames DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/libkmahjongg/Makefile b/games/libkmahjongg/Makefile index f417350183f7..0e2ccd460156 100644 --- a/games/libkmahjongg/Makefile +++ b/games/libkmahjongg/Makefile @@ -2,6 +2,7 @@ PORTNAME= libkmahjongg DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/lskat/Makefile b/games/lskat/Makefile index 52f8dab08d2e..3a4cf51da74b 100644 --- a/games/lskat/Makefile +++ b/games/lskat/Makefile @@ -2,6 +2,7 @@ PORTNAME= lskat DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/multimc/Makefile b/games/multimc/Makefile index d15eb4b18f58..910bd1f32961 100644 --- a/games/multimc/Makefile +++ b/games/multimc/Makefile @@ -2,7 +2,7 @@ PORTNAME= multimc DISTVERSION= 0.6.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games java MAINTAINER= me@tsundoku.ne.jp diff --git a/games/openage/Makefile b/games/openage/Makefile index f2ac6c9b3455..9714793e1268 100644 --- a/games/openage/Makefile +++ b/games/openage/Makefile @@ -4,7 +4,7 @@ PORTNAME= openage DISTVERSIONPREFIX= v DISTVERSION= 0.3.0-1262 DISTVERSIONSUFFIX= -ga554ab49 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MAINTAINER= freebsd@sysctl.cz diff --git a/games/openmw/Makefile b/games/openmw/Makefile index 6896ba777d6e..9fbccd3da3cc 100644 --- a/games/openmw/Makefile +++ b/games/openmw/Makefile @@ -4,7 +4,7 @@ PORTNAME= openmw DISTVERSIONPREFIX= openmw- DISTVERSION= 0.44.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= games MAINTAINER= tobik@FreeBSD.org diff --git a/games/palapeli/Makefile b/games/palapeli/Makefile index 85983703af60..12732fdf99f6 100644 --- a/games/palapeli/Makefile +++ b/games/palapeli/Makefile @@ -2,6 +2,7 @@ PORTNAME= palapeli DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/peg-e/Makefile b/games/peg-e/Makefile index f29a583dccbc..f85f927329c1 100644 --- a/games/peg-e/Makefile +++ b/games/peg-e/Makefile @@ -3,7 +3,7 @@ PORTNAME= peg-e PORTVERSION= 1.2.6 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MASTER_SITES= https://gottcode.org/peg-e/ \ https://mirror.amdmi3.ru/distfiles/ diff --git a/games/pentobi/Makefile b/games/pentobi/Makefile index 5ad212999cbf..d7935985d0fe 100644 --- a/games/pentobi/Makefile +++ b/games/pentobi/Makefile @@ -3,6 +3,7 @@ PORTNAME= pentobi PORTVERSION= 15.0 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} diff --git a/games/picmi/Makefile b/games/picmi/Makefile index bf016cb35115..ff0768bbc7f8 100644 --- a/games/picmi/Makefile +++ b/games/picmi/Makefile @@ -2,6 +2,7 @@ PORTNAME= picmi DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= games kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/games/py-mnemosyne/Makefile b/games/py-mnemosyne/Makefile index e866fc1085a5..af9c058b3a83 100644 --- a/games/py-mnemosyne/Makefile +++ b/games/py-mnemosyne/Makefile @@ -3,7 +3,7 @@ PORTNAME= mnemosyne PORTVERSION= 2.6.1 -PORTREVISION= 2 +PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= games python MASTER_SITES= SF/mnemosyne-proj/${PORTNAME}/${PORTNAME}-${DISTVERSION} diff --git a/games/qnetwalk/Makefile b/games/qnetwalk/Makefile index 3bc8ff8a5467..6fa8c2856165 100644 --- a/games/qnetwalk/Makefile +++ b/games/qnetwalk/Makefile @@ -3,6 +3,7 @@ PORTNAME= qnetwalk PORTVERSION= 1.5 +PORTREVISION= 1 CATEGORIES= games MAINTAINER= amdmi3@FreeBSD.org diff --git a/games/simsu/Makefile b/games/simsu/Makefile index 3f4d8ec56fe7..81e48c08db24 100644 --- a/games/simsu/Makefile +++ b/games/simsu/Makefile @@ -3,7 +3,7 @@ PORTNAME= simsu PORTVERSION= 1.3.7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MASTER_SITES= https://gottcode.org/${PORTNAME}/ \ https://mirror.amdmi3.ru/distfiles/ diff --git a/games/solarus-quest-editor/Makefile b/games/solarus-quest-editor/Makefile index f4c84839ed3b..098c133f4b02 100644 --- a/games/solarus-quest-editor/Makefile +++ b/games/solarus-quest-editor/Makefile @@ -4,6 +4,7 @@ PORTNAME= solarus-quest-editor PORTVERSION= 1.6.0 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= games MAINTAINER= danilo@FreeBSD.org diff --git a/games/solarus/Makefile b/games/solarus/Makefile index 680bedd2d01a..8c5dcaeef211 100644 --- a/games/solarus/Makefile +++ b/games/solarus/Makefile @@ -2,6 +2,7 @@ PORTNAME= solarus PORTVERSION= 1.6.0 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://www.solarus-games.org/downloads/solarus/ DISTNAME= solarus-${PORTVERSION}-src diff --git a/games/tanglet/Makefile b/games/tanglet/Makefile index ae53d482bc6e..64b6185a555c 100644 --- a/games/tanglet/Makefile +++ b/games/tanglet/Makefile @@ -3,7 +3,7 @@ PORTNAME= tanglet PORTVERSION= 1.5.3 -PORTREVISION= 3 +PORTREVISION= 4 DISTVERSIONSUFFIX= -src CATEGORIES= games MASTER_SITES= http://gottcode.org/tanglet/ diff --git a/games/tetzle/Makefile b/games/tetzle/Makefile index 209167be915d..c82f04a3aa89 100644 --- a/games/tetzle/Makefile +++ b/games/tetzle/Makefile @@ -3,7 +3,7 @@ PORTNAME= tetzle PORTVERSION= 2.1.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= games MASTER_SITES= https://gottcode.org/tetzle/ \ https://mirror.amdmi3.ru/distfiles/ diff --git a/games/warzone2100/Makefile b/games/warzone2100/Makefile index 3c26c609bee1..323f9b5004ef 100644 --- a/games/warzone2100/Makefile +++ b/games/warzone2100/Makefile @@ -2,7 +2,7 @@ PORTNAME= warzone2100 PORTVERSION= 3.2.3 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/releases/${PORTVERSION}/ diff --git a/graphics/cloudcompare/Makefile b/graphics/cloudcompare/Makefile index ba17870796e7..ff0c24c6ed2b 100644 --- a/graphics/cloudcompare/Makefile +++ b/graphics/cloudcompare/Makefile @@ -3,7 +3,7 @@ PORTNAME= cloudcompare DISTVERSIONPREFIX= v DISTVERSION= 2.10 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MAINTAINER= neel@neelc.org diff --git a/graphics/colmap/Makefile b/graphics/colmap/Makefile index 7b94ab706a25..c6fc50949667 100644 --- a/graphics/colmap/Makefile +++ b/graphics/colmap/Makefile @@ -2,7 +2,7 @@ PORTNAME= colmap DISTVERSION= 3.5 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics MAINTAINER= jbeich@FreeBSD.org diff --git a/graphics/converseen/Makefile b/graphics/converseen/Makefile index fc360361326b..d36a9f15263d 100644 --- a/graphics/converseen/Makefile +++ b/graphics/converseen/Makefile @@ -3,7 +3,7 @@ PORTNAME= converseen DISTVERSIONPREFIX= v DISTVERSION= 0.9.7 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MAINTAINER= fernape@FreeBSD.org diff --git a/graphics/diffpdf/Makefile b/graphics/diffpdf/Makefile index 70fdc735c02d..ff4b3528d4d4 100644 --- a/graphics/diffpdf/Makefile +++ b/graphics/diffpdf/Makefile @@ -2,7 +2,7 @@ PORTNAME= diffpdf PORTVERSION= 2.1.3 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics MASTER_SITES= http://www.qtrac.eu/ diff --git a/graphics/digikam/Makefile b/graphics/digikam/Makefile index 58c01d837f9b..8bfefc32aeba 100644 --- a/graphics/digikam/Makefile +++ b/graphics/digikam/Makefile @@ -2,7 +2,7 @@ PORTNAME= digikam DISTVERSION= 5.9.0 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= graphics kde MASTER_SITES= KDE/stable/${PORTNAME} DIST_SUBDIR= KDE/digikam/${PORTVERSION} diff --git a/graphics/dilay/Makefile b/graphics/dilay/Makefile index 39b4ed9939aa..9e8807e8f251 100644 --- a/graphics/dilay/Makefile +++ b/graphics/dilay/Makefile @@ -3,7 +3,7 @@ PORTNAME= dilay DISTVERSION= 1.9.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MAINTAINER= yuri@FreeBSD.org diff --git a/graphics/djview4/Makefile b/graphics/djview4/Makefile index c8e656fa9d05..511a7d392970 100644 --- a/graphics/djview4/Makefile +++ b/graphics/djview4/Makefile @@ -3,7 +3,7 @@ PORTNAME= djview PORTVERSION= 4.10.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MASTER_SITES= SF/djvu/DjView/${PORTVERSION:R} diff --git a/graphics/drawpile/Makefile b/graphics/drawpile/Makefile index 77f843941a01..7aefa857beb5 100644 --- a/graphics/drawpile/Makefile +++ b/graphics/drawpile/Makefile @@ -2,6 +2,7 @@ PORTNAME= Drawpile DISTVERSION= 2.0.11 +PORTREVISION= 1 CATEGORIES= graphics python MAINTAINER= yuri@FreeBSD.org diff --git a/graphics/dspdfviewer/Makefile b/graphics/dspdfviewer/Makefile index e7e550602542..f95c8119f2e3 100644 --- a/graphics/dspdfviewer/Makefile +++ b/graphics/dspdfviewer/Makefile @@ -3,7 +3,7 @@ PORTNAME= dspdfviewer PORTVERSION= 1.15.1 DISTVERSIONPREFIX=v -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= graphics MAINTAINER= santhosh.raju@gmail.com diff --git a/graphics/engauge-digitizer/Makefile b/graphics/engauge-digitizer/Makefile index 696d765d0fe8..d4b0098c9052 100644 --- a/graphics/engauge-digitizer/Makefile +++ b/graphics/engauge-digitizer/Makefile @@ -3,6 +3,7 @@ PORTNAME= engauge-digitizer DISTVERSIONPREFIX= v DISTVERSION= 10.11 +PORTREVISION= 1 CATEGORIES= graphics math science MAINTAINER= yuri@FreeBSD.org diff --git a/graphics/evolvotron/Makefile b/graphics/evolvotron/Makefile index 52667eb74cf3..29183a5b47ba 100644 --- a/graphics/evolvotron/Makefile +++ b/graphics/evolvotron/Makefile @@ -3,7 +3,7 @@ PORTNAME= evolvotron DISTVERSION= 0.7.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= graphics MASTER_SITES= SF \ SF/nemysisfreebsdp/${CATEGORIES}/:icons diff --git a/graphics/fracplanet/Makefile b/graphics/fracplanet/Makefile index 88b41b8b5bd7..a4bccae64e32 100644 --- a/graphics/fracplanet/Makefile +++ b/graphics/fracplanet/Makefile @@ -3,7 +3,7 @@ PORTNAME= fracplanet PORTVERSION= 0.5.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= graphics MASTER_SITES= SF \ SF/nemysisfreebsdp/:icons diff --git a/graphics/fraqtive/Makefile b/graphics/fraqtive/Makefile index 5dfa7947af80..b59efbed2120 100644 --- a/graphics/fraqtive/Makefile +++ b/graphics/fraqtive/Makefile @@ -3,7 +3,7 @@ PORTNAME= fraqtive PORTVERSION= 0.4.8 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= SF/fraqtive/Fraqtive/Fraqtive%20${PORTVERSION}/ diff --git a/graphics/gmic-qt/Makefile b/graphics/gmic-qt/Makefile index c5f69c4c6dea..5d5270968705 100644 --- a/graphics/gmic-qt/Makefile +++ b/graphics/gmic-qt/Makefile @@ -3,7 +3,7 @@ PORTNAME= gmic-qt DISTVERSIONPREFIX= v. DISTVERSION= 2.3.6 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= graphics kde MASTER_SITES= http://gmic.eu/:stdlib \ diff --git a/graphics/gpxsee/Makefile b/graphics/gpxsee/Makefile index 9d508bf5aafe..6b4e50a2af6c 100644 --- a/graphics/gpxsee/Makefile +++ b/graphics/gpxsee/Makefile @@ -3,6 +3,7 @@ PORTNAME= gpxsee DISTVERSION= 7.1 +PORTREVISION= 1 CATEGORIES= graphics geography MAINTAINER= sikmir@gmail.com diff --git a/graphics/gwenview/Makefile b/graphics/gwenview/Makefile index 4a957e2e66ed..7802f08e55ab 100644 --- a/graphics/gwenview/Makefile +++ b/graphics/gwenview/Makefile @@ -2,6 +2,7 @@ PORTNAME= gwenview DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/graphics/impressive/Makefile b/graphics/impressive/Makefile index 6458482efc7c..a9e42f79a1ce 100644 --- a/graphics/impressive/Makefile +++ b/graphics/impressive/Makefile @@ -3,7 +3,7 @@ PORTNAME= impressive PORTVERSION= 0.11.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/Impressive/${PORTVERSION}/ DISTNAME= Impressive-${PORTVERSION} diff --git a/graphics/ipe/Makefile b/graphics/ipe/Makefile index d26500a2868f..9542564b99e3 100644 --- a/graphics/ipe/Makefile +++ b/graphics/ipe/Makefile @@ -4,6 +4,7 @@ PORTNAME= ipe PORTVERSION= 7.2.8 DISTVERSIONSUFFIX= -src +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= https://dl.bintray.com/otfried/generic/ipe/${PORTVERSION:R}/ diff --git a/graphics/kamera/Makefile b/graphics/kamera/Makefile index e1591209628b..49e80f0dfdd7 100644 --- a/graphics/kamera/Makefile +++ b/graphics/kamera/Makefile @@ -2,6 +2,7 @@ PORTNAME= kamera DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/graphics/kcolorchooser/Makefile b/graphics/kcolorchooser/Makefile index cffdd25e3d20..680787560b40 100644 --- a/graphics/kcolorchooser/Makefile +++ b/graphics/kcolorchooser/Makefile @@ -2,6 +2,7 @@ PORTNAME= kcolorchooser DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/graphics/kdegraphics-mobipocket/Makefile b/graphics/kdegraphics-mobipocket/Makefile index 15529273f754..e76ebf43206a 100644 --- a/graphics/kdegraphics-mobipocket/Makefile +++ b/graphics/kdegraphics-mobipocket/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdegraphics-mobipocket DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/graphics/kdegraphics-svgpart/Makefile b/graphics/kdegraphics-svgpart/Makefile index 9d83f9b8713b..06264b4af69e 100644 --- a/graphics/kdegraphics-svgpart/Makefile +++ b/graphics/kdegraphics-svgpart/Makefile @@ -2,6 +2,7 @@ PORTNAME= svgpart DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= graphics kde kde-applications PKGNAMEPREFIX= kdegraphics- diff --git a/graphics/kdegraphics-thumbnailers/Makefile b/graphics/kdegraphics-thumbnailers/Makefile index db1faba6595a..9ef48660458a 100644 --- a/graphics/kdegraphics-thumbnailers/Makefile +++ b/graphics/kdegraphics-thumbnailers/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdegraphics-thumbnailers DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/graphics/kdegraphics/Makefile b/graphics/kdegraphics/Makefile index d252afa7d189..ef46eb74fdb6 100644 --- a/graphics/kdegraphics/Makefile +++ b/graphics/kdegraphics/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdegraphics DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= graphics kde MAINTAINER= kde@FreeBSD.org diff --git a/graphics/kdiagram/Makefile b/graphics/kdiagram/Makefile index 23c73288ce45..627620089e8a 100644 --- a/graphics/kdiagram/Makefile +++ b/graphics/kdiagram/Makefile @@ -2,7 +2,7 @@ PORTNAME= kdiagram PORTVERSION= 2.6.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION}/src DIST_SUBDIR= KDE/${PORTNAME} diff --git a/graphics/kf5-kimageformats/Makefile b/graphics/kf5-kimageformats/Makefile index a5e07995b632..8904e1408f79 100644 --- a/graphics/kf5-kimageformats/Makefile +++ b/graphics/kf5-kimageformats/Makefile @@ -2,6 +2,7 @@ PORTNAME= kimageformats DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= graphics kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/graphics/kf5-kplotting/Makefile b/graphics/kf5-kplotting/Makefile index 2dbba57fb3cb..b717a9b8d93a 100644 --- a/graphics/kf5-kplotting/Makefile +++ b/graphics/kf5-kplotting/Makefile @@ -2,6 +2,7 @@ PORTNAME= kplotting DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= graphics kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/graphics/kf5-prison/Makefile b/graphics/kf5-prison/Makefile index a7526b1f59bd..7a844e91fdc7 100644 --- a/graphics/kf5-prison/Makefile +++ b/graphics/kf5-prison/Makefile @@ -2,6 +2,7 @@ PORTNAME= prison DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= graphics kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/graphics/kgraphviewer/Makefile b/graphics/kgraphviewer/Makefile index 8ee05a6a0aeb..8a91fbd6b49c 100644 --- a/graphics/kgraphviewer/Makefile +++ b/graphics/kgraphviewer/Makefile @@ -2,6 +2,7 @@ PORTNAME= kgraphviewer DISTVERSION= 2.4.3 +PORTREVISION= 1 CATEGORIES= graphics kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION}/ DIST_SUBDIR= KDE/${PORTNAME} diff --git a/graphics/kimagemapeditor/Makefile b/graphics/kimagemapeditor/Makefile index 8577d40f7388..638d26b0a9f1 100644 --- a/graphics/kimagemapeditor/Makefile +++ b/graphics/kimagemapeditor/Makefile @@ -2,6 +2,7 @@ PORTNAME= kimagemapeditor DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/graphics/kipiplugins/Makefile b/graphics/kipiplugins/Makefile index e86ccb012197..919c7b09a77b 100644 --- a/graphics/kipiplugins/Makefile +++ b/graphics/kipiplugins/Makefile @@ -2,7 +2,7 @@ PORTNAME= kipiplugins DISTVERSION= 5.9.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics kde MASTER_SITES= KDE/stable/digikam DIST_SUBDIR= KDE/digikam/${PORTVERSION} diff --git a/graphics/klatexformula/Makefile b/graphics/klatexformula/Makefile index 79d67a8aef49..18cf4e59e4be 100644 --- a/graphics/klatexformula/Makefile +++ b/graphics/klatexformula/Makefile @@ -2,6 +2,7 @@ PORTNAME= klatexformula PORTVERSION= 4.0.0 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} diff --git a/graphics/kolourpaint/Makefile b/graphics/kolourpaint/Makefile index ffacd494bbbb..4f961ba2ea28 100644 --- a/graphics/kolourpaint/Makefile +++ b/graphics/kolourpaint/Makefile @@ -2,6 +2,7 @@ PORTNAME= kolourpaint DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/graphics/kphotoalbum/Makefile b/graphics/kphotoalbum/Makefile index 07b497ba4c0e..2012d7ddf307 100644 --- a/graphics/kphotoalbum/Makefile +++ b/graphics/kphotoalbum/Makefile @@ -2,6 +2,7 @@ PORTNAME= kphotoalbum DISTVERSION= 5.4 +PORTREVISION= 1 CATEGORIES= graphics kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION}/ DIST_SUBDIR= KDE diff --git a/graphics/krita/Makefile b/graphics/krita/Makefile index 0ef7bc01f3c5..af71af6af543 100644 --- a/graphics/krita/Makefile +++ b/graphics/krita/Makefile @@ -2,6 +2,7 @@ PORTNAME= krita DISTVERSION= 4.1.7.101 +PORTREVISION= 1 CATEGORIES= graphics kde MASTER_SITES= KDE/stable/${PORTNAME}/${DISTVERSION:R} DIST_SUBDIR= KDE/${PORTNAME} diff --git a/graphics/lazpaint/Makefile b/graphics/lazpaint/Makefile index c695640f6fc5..8e5c7891a7a6 100644 --- a/graphics/lazpaint/Makefile +++ b/graphics/lazpaint/Makefile @@ -3,6 +3,7 @@ PORTNAME= lazpaint PORTVERSION= 6.4.1 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= graphics PKGNAMESUFFIX= ${LAZARUS_PKGNAMESUFFIX} diff --git a/graphics/libQGLViewer/Makefile b/graphics/libQGLViewer/Makefile index 553983f21502..2dd7f5fe3bab 100644 --- a/graphics/libQGLViewer/Makefile +++ b/graphics/libQGLViewer/Makefile @@ -3,7 +3,7 @@ PORTNAME= libQGLViewer DISTVERSION= 2.7.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics devel MASTER_SITES= http://www.libqglviewer.com/src/ diff --git a/graphics/libkdcraw/Makefile b/graphics/libkdcraw/Makefile index b5c617d89dc2..6026de845764 100644 --- a/graphics/libkdcraw/Makefile +++ b/graphics/libkdcraw/Makefile @@ -2,6 +2,7 @@ PORTNAME= libkdcraw DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/graphics/libkexiv2/Makefile b/graphics/libkexiv2/Makefile index 81d0b5d9deb8..b8e715448ac3 100644 --- a/graphics/libkexiv2/Makefile +++ b/graphics/libkexiv2/Makefile @@ -2,6 +2,7 @@ PORTNAME= libkexiv2 DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/graphics/libkipi/Makefile b/graphics/libkipi/Makefile index 4a4e161bae60..e3350e871c3c 100644 --- a/graphics/libkipi/Makefile +++ b/graphics/libkipi/Makefile @@ -2,6 +2,7 @@ PORTNAME= libkipi DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/graphics/libksane/Makefile b/graphics/libksane/Makefile index 468fa09365e8..ee2ab89691fd 100644 --- a/graphics/libksane/Makefile +++ b/graphics/libksane/Makefile @@ -2,6 +2,7 @@ PORTNAME= libksane DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/graphics/libprojectm/Makefile b/graphics/libprojectm/Makefile index 9e7af117dc74..9c5e5aff0ccc 100644 --- a/graphics/libprojectm/Makefile +++ b/graphics/libprojectm/Makefile @@ -3,7 +3,7 @@ PORTNAME= libprojectM DISTVERSIONPREFIX= v DISTVERSION= 3.1.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics audio MAINTAINER= yuri@FreeBSD.org diff --git a/graphics/luminance-qt5/Makefile b/graphics/luminance-qt5/Makefile index d8f1114f893f..85b7df674c4c 100644 --- a/graphics/luminance-qt5/Makefile +++ b/graphics/luminance-qt5/Makefile @@ -3,7 +3,7 @@ PORTNAME= luminance-hdr DISTVERSION= 2.4.0 -PORTREVISION= 26 +PORTREVISION= 27 CATEGORIES= graphics MASTER_SITES= SF/qtpfsgui/luminance/${DISTVERSION} PKGNAMESUFFIX= -qt5 diff --git a/graphics/lximage-qt/Makefile b/graphics/lximage-qt/Makefile index 3f48503710b1..dabf7e180aa3 100644 --- a/graphics/lximage-qt/Makefile +++ b/graphics/lximage-qt/Makefile @@ -3,7 +3,7 @@ PORTNAME= lximage-qt PORTVERSION= 0.7.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics MASTER_SITES= LXQT diff --git a/graphics/lximageqt-l10n/Makefile b/graphics/lximageqt-l10n/Makefile index e4d57dd48698..020977442f50 100644 --- a/graphics/lximageqt-l10n/Makefile +++ b/graphics/lximageqt-l10n/Makefile @@ -3,6 +3,7 @@ PORTNAME= lximageqt PORTVERSION= 0.13.0 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= LXQT/lxqt-l10n PKGNAMESUFFIX= -l10n diff --git a/graphics/mandelbulber/Makefile b/graphics/mandelbulber/Makefile index 5794470e1556..4a6ed9b5303f 100644 --- a/graphics/mandelbulber/Makefile +++ b/graphics/mandelbulber/Makefile @@ -3,6 +3,7 @@ PORTNAME= mandelbulber PORTVERSION= 2.16 +PORTREVISION= 1 CATEGORIES= graphics MAINTAINER= amdmi3@FreeBSD.org diff --git a/graphics/natron/Makefile b/graphics/natron/Makefile index 18272fabe5f5..d148c80c041c 100644 --- a/graphics/natron/Makefile +++ b/graphics/natron/Makefile @@ -2,7 +2,7 @@ PORTNAME= natron PORTVERSION= 2.3.14 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics MAINTAINER= olivier@FreeBSD.org diff --git a/graphics/nomacs/Makefile b/graphics/nomacs/Makefile index 61e226742ac3..9151810bdb9b 100644 --- a/graphics/nomacs/Makefile +++ b/graphics/nomacs/Makefile @@ -2,7 +2,7 @@ PORTNAME= nomacs PORTVERSION= 3.6.1 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= graphics MAINTAINER= bsd@tuxproject.de diff --git a/graphics/okular/Makefile b/graphics/okular/Makefile index 0955f32d99c1..63c376a53c46 100644 --- a/graphics/okular/Makefile +++ b/graphics/okular/Makefile @@ -2,6 +2,7 @@ PORTNAME= okular DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/graphics/opencsg/Makefile b/graphics/opencsg/Makefile index e39d24cb16d0..2a3f1d6dfe3c 100644 --- a/graphics/opencsg/Makefile +++ b/graphics/opencsg/Makefile @@ -3,7 +3,7 @@ PORTNAME= opencsg PORTVERSION= 1.4.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics MASTER_SITES= http://www.opencsg.org/ DISTNAME= OpenCSG-${PORTVERSION} diff --git a/graphics/openorienteering-mapper/Makefile b/graphics/openorienteering-mapper/Makefile index 57e984599a44..efb42134a5ed 100644 --- a/graphics/openorienteering-mapper/Makefile +++ b/graphics/openorienteering-mapper/Makefile @@ -4,6 +4,7 @@ PORTNAME= openorienteering-mapper PORTVERSION= 0.8.4 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= graphics geography MAINTAINER= sikmir@gmail.com diff --git a/graphics/pencil2d/Makefile b/graphics/pencil2d/Makefile index 8f6c0ce3be2f..396feb7eb44f 100644 --- a/graphics/pencil2d/Makefile +++ b/graphics/pencil2d/Makefile @@ -4,7 +4,7 @@ PORTNAME= pencil2d DISTVERSIONPREFIX= v DISTVERSION= 0.6.2-63 DISTVERSIONSUFFIX= -gd05fbae0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics math MAINTAINER= yuri@FreeBSD.org diff --git a/graphics/photivo/Makefile b/graphics/photivo/Makefile index 44f4e50c6077..b33362be675b 100644 --- a/graphics/photivo/Makefile +++ b/graphics/photivo/Makefile @@ -3,7 +3,7 @@ PORTNAME= photivo PORTVERSION= 0.0.2015.03.21 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= graphics MASTER_SITES= https://storage.googleapis.com/google-code-archive-source/v2/code.google.com/${PORTNAME}/ DISTNAME= source-archive diff --git a/graphics/photoqt/Makefile b/graphics/photoqt/Makefile index 391c5512ed65..56efe3a4c9bc 100644 --- a/graphics/photoqt/Makefile +++ b/graphics/photoqt/Makefile @@ -3,7 +3,7 @@ PORTNAME= photoqt DISTVERSIONPREFIX= v DISTVERSION= 1.6 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics MAINTAINER= melanhit@gmail.com diff --git a/graphics/phototonic/Makefile b/graphics/phototonic/Makefile index 390ba6192477..71519674071f 100644 --- a/graphics/phototonic/Makefile +++ b/graphics/phototonic/Makefile @@ -4,7 +4,7 @@ PORTNAME= phototonic DISTVERSIONPREFIX= v DISTVERSION= 2.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MAINTAINER= ports@FreeBSD.org diff --git a/graphics/poppler-qt5/Makefile b/graphics/poppler-qt5/Makefile index 686ee8cf48b0..32f0fe55ef5b 100644 --- a/graphics/poppler-qt5/Makefile +++ b/graphics/poppler-qt5/Makefile @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 PKGNAMESUFFIX= -qt5 COMMENT= Qt 5 bindings to poppler diff --git a/graphics/py-python-poppler-qt5/Makefile b/graphics/py-python-poppler-qt5/Makefile index d906fb1b0c3b..ebcf98303900 100644 --- a/graphics/py-python-poppler-qt5/Makefile +++ b/graphics/py-python-poppler-qt5/Makefile @@ -3,6 +3,7 @@ PORTNAME= python-poppler-qt5 DISTVERSIONPREFIX= v DISTVERSION= 0.24.2 +PORTREVISION= 1 CATEGORIES= graphics python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/graphics/py-qt5-svg/Makefile b/graphics/py-qt5-svg/Makefile index 2f0c00c6e011..4f00e3630692 100644 --- a/graphics/py-qt5-svg/Makefile +++ b/graphics/py-qt5-svg/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= svg +PORTREVISION= 1 CATEGORIES= graphics devel python MAINTAINER= kde@FreeBSD.org diff --git a/graphics/qcomicbook/Makefile b/graphics/qcomicbook/Makefile index a77702b66d96..2ddd887b8e8d 100644 --- a/graphics/qcomicbook/Makefile +++ b/graphics/qcomicbook/Makefile @@ -3,7 +3,7 @@ PORTNAME= QComicBook PORTVERSION= 0.9.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics MAINTAINER= ports@FreeBSD.org diff --git a/graphics/qgis/Makefile b/graphics/qgis/Makefile index 02cde07f3e1a..020d6f1ab386 100644 --- a/graphics/qgis/Makefile +++ b/graphics/qgis/Makefile @@ -4,6 +4,7 @@ PORTNAME= qgis DISTVERSIONPREFIX= final- DISTVERSION= 3_4_3 +PORTREVISION= 1 CATEGORIES= graphics geography MAINTAINER= rhurlin@gwdg.de diff --git a/graphics/qt5-3d/Makefile b/graphics/qt5-3d/Makefile index 641f22665d44..68c3c5df150e 100644 --- a/graphics/qt5-3d/Makefile +++ b/graphics/qt5-3d/Makefile @@ -2,6 +2,7 @@ PORTNAME= 3d DISTVERSION= ${QT5_VERSION} +PORTREVISION= 1 CATEGORIES= graphics PKGNAMEPREFIX= qt5- diff --git a/graphics/qt5-graphicaleffects/Makefile b/graphics/qt5-graphicaleffects/Makefile index f16a34db1609..20fb2f83aa13 100644 --- a/graphics/qt5-graphicaleffects/Makefile +++ b/graphics/qt5-graphicaleffects/Makefile @@ -2,6 +2,7 @@ PORTNAME= graphicaleffects DISTVERSION= ${QT5_VERSION} +PORTREVISION= 1 CATEGORIES= graphics PKGNAMEPREFIX= qt5- diff --git a/graphics/qt5-imageformats/Makefile b/graphics/qt5-imageformats/Makefile index a65581620396..104bbd06b640 100644 --- a/graphics/qt5-imageformats/Makefile +++ b/graphics/qt5-imageformats/Makefile @@ -2,7 +2,7 @@ PORTNAME= imageformats DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics PKGNAMEPREFIX= qt5- diff --git a/graphics/qt5-opengl/Makefile b/graphics/qt5-opengl/Makefile index d39dc5f76edd..b910007a6014 100644 --- a/graphics/qt5-opengl/Makefile +++ b/graphics/qt5-opengl/Makefile @@ -2,7 +2,7 @@ PORTNAME= opengl DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics PKGNAMEPREFIX= qt5- diff --git a/graphics/qt5-pixeltool/Makefile b/graphics/qt5-pixeltool/Makefile index da08514217c9..29c952425293 100644 --- a/graphics/qt5-pixeltool/Makefile +++ b/graphics/qt5-pixeltool/Makefile @@ -2,7 +2,7 @@ PORTNAME= pixeltool DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics PKGNAMEPREFIX= qt5- diff --git a/graphics/qt5-svg/Makefile b/graphics/qt5-svg/Makefile index 1450847740dd..61e761eadf63 100644 --- a/graphics/qt5-svg/Makefile +++ b/graphics/qt5-svg/Makefile @@ -2,7 +2,7 @@ PORTNAME= svg DISTVERSION= ${QT5_VERSION} -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics PKGNAMEPREFIX= qt5- diff --git a/graphics/qt5-wayland/Makefile b/graphics/qt5-wayland/Makefile index bfb8c14b14f3..e44ec5b9b1d5 100644 --- a/graphics/qt5-wayland/Makefile +++ b/graphics/qt5-wayland/Makefile @@ -2,6 +2,7 @@ PORTNAME= wayland DISTVERSION= ${QT5_VERSION} +PORTREVISION= 1 CATEGORIES= graphics PKGNAMEPREFIX= qt5- diff --git a/graphics/qtawesome/Makefile b/graphics/qtawesome/Makefile index 1e79103f950d..51bb313e98e8 100644 --- a/graphics/qtawesome/Makefile +++ b/graphics/qtawesome/Makefile @@ -3,7 +3,7 @@ PORTNAME= qtawesome PORTVERSION= 20150319 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics devel MAINTAINER= mi@aldan.algebra.com diff --git a/graphics/qtpbfimageplugin/Makefile b/graphics/qtpbfimageplugin/Makefile index e9e34f78de29..53772534441d 100644 --- a/graphics/qtpbfimageplugin/Makefile +++ b/graphics/qtpbfimageplugin/Makefile @@ -2,6 +2,7 @@ PORTNAME= qtpbfimageplugin PORTVERSION= 1.2 +PORTREVISION= 1 CATEGORIES= graphics MAINTAINER= sikmir@gmail.com diff --git a/graphics/radiance/Makefile b/graphics/radiance/Makefile index 05284136eaaa..c3ebf84b035f 100644 --- a/graphics/radiance/Makefile +++ b/graphics/radiance/Makefile @@ -2,7 +2,7 @@ PORTNAME= radiance DISTVERSION= 0.6.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= graphics PKGNAMESUFFIX= -video diff --git a/graphics/showimage/Makefile b/graphics/showimage/Makefile index c3237161082c..95e24db84b51 100644 --- a/graphics/showimage/Makefile +++ b/graphics/showimage/Makefile @@ -3,6 +3,7 @@ PORTNAME= showimage PORTVERSION= 1.10 +PORTREVISION= 1 CATEGORIES= graphics kde MASTER_SITES= https://dl.opendesktop.org/api/files/download/id/1482097460/ \ LOCAL/tcberner/showimage-0.10/ diff --git a/graphics/skanlite/Makefile b/graphics/skanlite/Makefile index 8ca903aa9d50..742ef804bc00 100644 --- a/graphics/skanlite/Makefile +++ b/graphics/skanlite/Makefile @@ -2,7 +2,7 @@ PORTNAME= skanlite DISTVERSION= 2.1.0.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= graphics kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION:R:R}/ diff --git a/graphics/spectacle/Makefile b/graphics/spectacle/Makefile index e8bc5f221811..36f95d81b98d 100644 --- a/graphics/spectacle/Makefile +++ b/graphics/spectacle/Makefile @@ -2,6 +2,7 @@ PORTNAME= spectacle DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= graphics kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/graphics/tiled/Makefile b/graphics/tiled/Makefile index 9f39f8ecbfe1..0337435b5316 100644 --- a/graphics/tiled/Makefile +++ b/graphics/tiled/Makefile @@ -3,7 +3,7 @@ PORTNAME= tiled PORTVERSION= 1.2.1 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONPREFIX= v CATEGORIES= graphics editors games diff --git a/graphics/vv/Makefile b/graphics/vv/Makefile index 3b53dafafc69..d70f63f439db 100644 --- a/graphics/vv/Makefile +++ b/graphics/vv/Makefile @@ -4,7 +4,7 @@ PORTNAME= vv DISTVERSIONPREFIX= v DISTVERSION= 1.4.0-271 DISTVERSIONSUFFIX= -g24b75af3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics MAINTAINER= yuri@FreeBSD.org diff --git a/graphics/xpdf4/Makefile b/graphics/xpdf4/Makefile index 4543cad35acc..b3fd39adee88 100644 --- a/graphics/xpdf4/Makefile +++ b/graphics/xpdf4/Makefile @@ -2,7 +2,7 @@ PORTNAME= xpdf PORTVERSION= 4.00 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= graphics print MASTER_SITES= https://xpdfreader-dl.s3.amazonaws.com/ diff --git a/graphics/zint/Makefile b/graphics/zint/Makefile index 682004d33782..c8ca87e9e41e 100644 --- a/graphics/zint/Makefile +++ b/graphics/zint/Makefile @@ -3,6 +3,7 @@ PORTNAME= zint DISTVERSION= 2.6.3_rc2 # NOT a "release candidate", fixup for 2.6.3 +PORTREVISION= 1 CATEGORIES= graphics MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/2.6.3 DISTNAME= ${PORTNAME}-${DISTVERSION}.src diff --git a/irc/dxirc/Makefile b/irc/dxirc/Makefile index 841b2be58e24..3c1e4e4ebd41 100644 --- a/irc/dxirc/Makefile +++ b/irc/dxirc/Makefile @@ -2,6 +2,7 @@ PORTNAME= dxirc PORTVERSION= 1.30.0 +PORTREVISION= 1 CATEGORIES= irc ipv6 MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} diff --git a/irc/konversation/Makefile b/irc/konversation/Makefile index d86bca259bd1..f45cb57a8975 100644 --- a/irc/konversation/Makefile +++ b/irc/konversation/Makefile @@ -3,6 +3,7 @@ PORTNAME= konversation PORTVERSION= 1.7.5 +PORTREVISION= 1 CATEGORIES= irc kde MASTER_SITES= KDE/stable/${PORTNAME}/${DISTVERSION}/src diff --git a/irc/kvirc/Makefile b/irc/kvirc/Makefile index 676a6d4e6e5c..ca4bbf354e4d 100644 --- a/irc/kvirc/Makefile +++ b/irc/kvirc/Makefile @@ -3,6 +3,7 @@ PORTNAME= KVIrc DISTVERSION= 5.0.0 +PORTREVISION= 1 CATEGORIES= irc kde MAINTAINER= kde@FreeBSD.org diff --git a/irc/quassel/Makefile b/irc/quassel/Makefile index efd98efaa01e..0c3a68408bbf 100644 --- a/irc/quassel/Makefile +++ b/irc/quassel/Makefile @@ -3,7 +3,7 @@ PORTNAME= quassel PORTVERSION= 0.13.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= irc MASTER_SITES= http://www.quassel-irc.org/pub/ diff --git a/japanese/fcitx-mozc/Makefile b/japanese/fcitx-mozc/Makefile index a6b6e0eb1531..12cdca513d01 100644 --- a/japanese/fcitx-mozc/Makefile +++ b/japanese/fcitx-mozc/Makefile @@ -1,6 +1,7 @@ # Created by: Daichi GOTO <daichi@FreeBSD.org> # $FreeBSD$ +PORTREVISION= 15 PKGNAMEPREFIX= ja-fcitx- COMMENT= Mozc engine for Fcitx diff --git a/japanese/fcitx-skk/Makefile b/japanese/fcitx-skk/Makefile index 7426b345f7bf..be12f27c073a 100644 --- a/japanese/fcitx-skk/Makefile +++ b/japanese/fcitx-skk/Makefile @@ -2,7 +2,7 @@ PORTNAME= fcitx-skk PORTVERSION= 0.1.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= japanese MASTER_SITES= http://download.fcitx-im.org/${PORTNAME}/ DIST_SUBDIR= fcitx diff --git a/japanese/ibus-mozc/Makefile b/japanese/ibus-mozc/Makefile index c932f4949b9e..253c5ec81e76 100644 --- a/japanese/ibus-mozc/Makefile +++ b/japanese/ibus-mozc/Makefile @@ -1,6 +1,7 @@ # Created by: Daichi GOTO <daichi@FreeBSD.org> # $FreeBSD$ +PORTREVISION= 15 PKGNAMEPREFIX= ja-ibus- COMMENT= Mozc engine for IBus diff --git a/japanese/kiten/Makefile b/japanese/kiten/Makefile index fdbcf802b737..942fd45af5fd 100644 --- a/japanese/kiten/Makefile +++ b/japanese/kiten/Makefile @@ -2,6 +2,7 @@ PORTNAME= kiten DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= japanese kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/japanese/mozc-server/Makefile b/japanese/mozc-server/Makefile index 6ae48132f110..d652d0ee4d97 100644 --- a/japanese/mozc-server/Makefile +++ b/japanese/mozc-server/Makefile @@ -4,7 +4,7 @@ PORTNAME= mozc PORTVERSION= 2.20.2677.102.02 DISTVERSIONPREFIX= v -PORTREVISION= 14 +PORTREVISION?= 14 CATEGORIES= japanese MAINTAINER= hrs@FreeBSD.org diff --git a/japanese/mozc-tool/Makefile b/japanese/mozc-tool/Makefile index 4d571eca8019..4b7b82a75647 100644 --- a/japanese/mozc-tool/Makefile +++ b/japanese/mozc-tool/Makefile @@ -1,6 +1,7 @@ # Created by: Daichi GOTO <daichi@FreeBSD.org> # $FreeBSD$ +PORTREVISION= 15 PKGNAMESUFFIX= -tool COMMENT= Mozc tool for IBus, SCIM, and others diff --git a/japanese/uim-mozc/Makefile b/japanese/uim-mozc/Makefile index ae7710325997..83f40e7d3e03 100644 --- a/japanese/uim-mozc/Makefile +++ b/japanese/uim-mozc/Makefile @@ -1,6 +1,7 @@ # Created by: Koichiro IWAO <meta+ports@vmeta.jp> # $FreeBSD$ +PORTREVISION= 15 PKGNAMEPREFIX= ja-uim- COMMENT= Mozc engine for uim diff --git a/japanese/xpdf/Makefile b/japanese/xpdf/Makefile index 3d531a0a4460..bb351c49e4f3 100644 --- a/japanese/xpdf/Makefile +++ b/japanese/xpdf/Makefile @@ -3,7 +3,7 @@ PORTNAME= xpdf PORTVERSION= 3.03 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= japanese MASTER_SITES= ftp://ftp.foolabs.com/pub/xpdf/ PKGNAMESUFFIX= -jafont diff --git a/korean/xpdf/Makefile b/korean/xpdf/Makefile index 83fcc4388d3c..42dbbf8364fc 100644 --- a/korean/xpdf/Makefile +++ b/korean/xpdf/Makefile @@ -3,7 +3,7 @@ PORTNAME= xpdf PORTVERSION= 3.03 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= korean MASTER_SITES= ftp://ftp.foolabs.com/pub/xpdf/ PKGNAMESUFFIX= -kofont diff --git a/lang/basic256/Makefile b/lang/basic256/Makefile index 7e83dfba63e8..81d671699f92 100644 --- a/lang/basic256/Makefile +++ b/lang/basic256/Makefile @@ -2,7 +2,7 @@ PORTNAME= basic256 PORTVERSION= 1.1.4.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= lang MASTER_SITES= SF/kidbasic/${PORTNAME} DISTNAME= ${PORTNAME}_${PORTVERSION}.orig diff --git a/lang/kf5-kross/Makefile b/lang/kf5-kross/Makefile index fe33cf197801..d01db500c3b9 100644 --- a/lang/kf5-kross/Makefile +++ b/lang/kf5-kross/Makefile @@ -2,6 +2,7 @@ PORTNAME= kross DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= lang kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/lang/kross-interpreters/Makefile b/lang/kross-interpreters/Makefile index a15dab53a757..7754cd3cb032 100644 --- a/lang/kross-interpreters/Makefile +++ b/lang/kross-interpreters/Makefile @@ -2,6 +2,7 @@ PORTNAME= kross-interpreters DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= lang kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/lang/kturtle/Makefile b/lang/kturtle/Makefile index a7d4fdebf134..72b303bf548f 100644 --- a/lang/kturtle/Makefile +++ b/lang/kturtle/Makefile @@ -2,6 +2,7 @@ PORTNAME= kturtle DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= lang kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/lang/py-qt5-qml/Makefile b/lang/py-qt5-qml/Makefile index e7436a7a4b40..7cbd4177c520 100644 --- a/lang/py-qt5-qml/Makefile +++ b/lang/py-qt5-qml/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= qml +PORTREVISION= 1 CATEGORIES= lang devel python MAINTAINER= kde@FreeBSD.org diff --git a/mail/trojita/Makefile b/mail/trojita/Makefile index 22762f2f38f0..c78304fff9c0 100644 --- a/mail/trojita/Makefile +++ b/mail/trojita/Makefile @@ -3,7 +3,7 @@ PORTNAME= trojita PORTVERSION= 0.7 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= mail MASTER_SITES= SF/${PORTNAME}/src/ diff --git a/math/analitza/Makefile b/math/analitza/Makefile index 09bdefd0e439..50604f211ec6 100644 --- a/math/analitza/Makefile +++ b/math/analitza/Makefile @@ -2,6 +2,7 @@ PORTNAME= analitza DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= math kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/math/cantor/Makefile b/math/cantor/Makefile index f6040cc3cdb7..54ce054da52a 100644 --- a/math/cantor/Makefile +++ b/math/cantor/Makefile @@ -2,6 +2,7 @@ PORTNAME= cantor DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= math kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/math/convertall/Makefile b/math/convertall/Makefile index 67ea9d3f4f37..5220a5db6d13 100644 --- a/math/convertall/Makefile +++ b/math/convertall/Makefile @@ -3,7 +3,7 @@ PORTNAME= convertall PORTVERSION= 0.7.5 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} diff --git a/math/dynare/Makefile b/math/dynare/Makefile index 0ec2e7c5b103..e47d6af72297 100644 --- a/math/dynare/Makefile +++ b/math/dynare/Makefile @@ -2,7 +2,7 @@ PORTNAME= dynare DISTVERSION= 4.5.6 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= math MASTER_SITES= http://www.dynare.org/release/source/ diff --git a/math/g2o/Makefile b/math/g2o/Makefile index 4b1741fb6fee..fd5c6925f04c 100644 --- a/math/g2o/Makefile +++ b/math/g2o/Makefile @@ -3,7 +3,7 @@ PORTNAME= g2o DISTVERSION= 20170730_git-87 DISTVERSIONSUFFIX= -gbbe3c2b -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math MAINTAINER= yuri@FreeBSD.org diff --git a/math/kalgebra/Makefile b/math/kalgebra/Makefile index bc0fd0dbbf54..3da645f5fd39 100644 --- a/math/kalgebra/Makefile +++ b/math/kalgebra/Makefile @@ -2,6 +2,7 @@ PORTNAME= kalgebra DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= math kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/math/kbruch/Makefile b/math/kbruch/Makefile index 762abd124277..8fada632f7f1 100644 --- a/math/kbruch/Makefile +++ b/math/kbruch/Makefile @@ -2,6 +2,7 @@ PORTNAME= kbruch DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= math kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/math/kcalc/Makefile b/math/kcalc/Makefile index e434be11dddd..3e70a2bd5413 100644 --- a/math/kcalc/Makefile +++ b/math/kcalc/Makefile @@ -2,6 +2,7 @@ PORTNAME= kcalc DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= math kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/math/kig/Makefile b/math/kig/Makefile index 0dcf4c035015..8ec704970131 100644 --- a/math/kig/Makefile +++ b/math/kig/Makefile @@ -2,6 +2,7 @@ PORTNAME= kig DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= math kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/math/kmplot/Makefile b/math/kmplot/Makefile index 6bba23b121b1..71607336b5c5 100644 --- a/math/kmplot/Makefile +++ b/math/kmplot/Makefile @@ -2,6 +2,7 @@ PORTNAME= kmplot DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= math kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/math/labplot/Makefile b/math/labplot/Makefile index fa61da4c77a6..aaed13b349e7 100644 --- a/math/labplot/Makefile +++ b/math/labplot/Makefile @@ -3,7 +3,7 @@ PORTNAME= labplot PORTVERSION= 2.5.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTVERSION} diff --git a/math/mathgl/Makefile b/math/mathgl/Makefile index db187d83be0a..2b08015291fe 100644 --- a/math/mathgl/Makefile +++ b/math/mathgl/Makefile @@ -2,7 +2,7 @@ PORTNAME= mathgl DISTVERSION= 2.4.2.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math graphics MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}%20${PORTVERSION:R} diff --git a/math/mathmod/Makefile b/math/mathmod/Makefile index e78656855c77..bdaa5a1e05f7 100644 --- a/math/mathmod/Makefile +++ b/math/mathmod/Makefile @@ -3,6 +3,7 @@ PORTNAME= MathMod PORTVERSION= 9.0 +PORTREVISION= 1 CATEGORIES= math graphics MAINTAINER= thierry@FreeBSD.org diff --git a/math/octave-forge-actuarial/Makefile b/math/octave-forge-actuarial/Makefile index f929c6b00f80..7f00e80e47ae 100644 --- a/math/octave-forge-actuarial/Makefile +++ b/math/octave-forge-actuarial/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-actuarial PORTVERSION= 1.1.0 -PORTREVISION= 18 +PORTREVISION= 19 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-base/Makefile b/math/octave-forge-base/Makefile index 95f0e3982256..7a1e99770e6a 100644 --- a/math/octave-forge-base/Makefile +++ b/math/octave-forge-base/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-base PORTVERSION= 1.4 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= math MASTER_SITES= #none DISTFILES= #none diff --git a/math/octave-forge-bim/Makefile b/math/octave-forge-bim/Makefile index a02c292724d5..7e39303d8b25 100644 --- a/math/octave-forge-bim/Makefile +++ b/math/octave-forge-bim/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-bim PORTVERSION= 1.1.5 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-bioinfo/Makefile b/math/octave-forge-bioinfo/Makefile index 93573f92f412..0af15610b7a9 100644 --- a/math/octave-forge-bioinfo/Makefile +++ b/math/octave-forge-bioinfo/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-bioinfo PORTVERSION= 0.1.2 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-bsltl/Makefile b/math/octave-forge-bsltl/Makefile index 29eec1294659..fdd746fbbc3e 100644 --- a/math/octave-forge-bsltl/Makefile +++ b/math/octave-forge-bsltl/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-bsltl PORTVERSION= 1.1.1 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-cgi/Makefile b/math/octave-forge-cgi/Makefile index f41326fdef15..b571a8f61910 100644 --- a/math/octave-forge-cgi/Makefile +++ b/math/octave-forge-cgi/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-cgi PORTVERSION= 0.1.2 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-civil-engineering/Makefile b/math/octave-forge-civil-engineering/Makefile index 73ea7f053241..23580d39f8c3 100644 --- a/math/octave-forge-civil-engineering/Makefile +++ b/math/octave-forge-civil-engineering/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-civil-engineering PORTVERSION= 1.0.7 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-control/Makefile b/math/octave-forge-control/Makefile index 3c5bebdef64a..c6501b8583db 100644 --- a/math/octave-forge-control/Makefile +++ b/math/octave-forge-control/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-control PORTVERSION= 3.1.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-data-smoothing/Makefile b/math/octave-forge-data-smoothing/Makefile index 8554ce63258d..873600235910 100644 --- a/math/octave-forge-data-smoothing/Makefile +++ b/math/octave-forge-data-smoothing/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-data-smoothing PORTVERSION= 1.3.0 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-database/Makefile b/math/octave-forge-database/Makefile index aefa4fbd2a0d..26f80089f554 100644 --- a/math/octave-forge-database/Makefile +++ b/math/octave-forge-database/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-database PORTVERSION= 2.4.3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-dataframe/Makefile b/math/octave-forge-dataframe/Makefile index 88ce06fc28d2..f22ac3ee1e30 100644 --- a/math/octave-forge-dataframe/Makefile +++ b/math/octave-forge-dataframe/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-dataframe PORTVERSION= 1.2.0 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-dicom/Makefile b/math/octave-forge-dicom/Makefile index dfd82265a4d5..777480235827 100644 --- a/math/octave-forge-dicom/Makefile +++ b/math/octave-forge-dicom/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-dicom PORTVERSION= 0.2.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-divand/Makefile b/math/octave-forge-divand/Makefile index bceab8ee0fa7..83062f1d4412 100644 --- a/math/octave-forge-divand/Makefile +++ b/math/octave-forge-divand/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-divand PORTVERSION= 1.1.2 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-doctest/Makefile b/math/octave-forge-doctest/Makefile index e8fa42ee15a6..d3145782b559 100644 --- a/math/octave-forge-doctest/Makefile +++ b/math/octave-forge-doctest/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-doctest PORTVERSION= 0.6.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-econometrics/Makefile b/math/octave-forge-econometrics/Makefile index abef08984220..4c21c2a83bee 100644 --- a/math/octave-forge-econometrics/Makefile +++ b/math/octave-forge-econometrics/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-econometrics PORTVERSION= 1.1.1 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-fenv/Makefile b/math/octave-forge-fenv/Makefile index 40fe0f15b6c6..c54ac97b5794 100644 --- a/math/octave-forge-fenv/Makefile +++ b/math/octave-forge-fenv/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-fenv PORTVERSION= 0.1.0 -PORTREVISION= 18 +PORTREVISION= 19 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-financial/Makefile b/math/octave-forge-financial/Makefile index 4f3c7afea3db..1aa3c2607484 100644 --- a/math/octave-forge-financial/Makefile +++ b/math/octave-forge-financial/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-financial PORTVERSION= 0.5.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-fits/Makefile b/math/octave-forge-fits/Makefile index 40352dea2d41..37f8b2359098 100644 --- a/math/octave-forge-fits/Makefile +++ b/math/octave-forge-fits/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-fits PORTVERSION= 1.0.7 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-fpl/Makefile b/math/octave-forge-fpl/Makefile index 01a3ea187292..1aa565b17a50 100644 --- a/math/octave-forge-fpl/Makefile +++ b/math/octave-forge-fpl/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-fpl PORTVERSION= 1.3.5 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-fuzzy-logic-toolkit/Makefile b/math/octave-forge-fuzzy-logic-toolkit/Makefile index cef0a912dc01..76c595105666 100644 --- a/math/octave-forge-fuzzy-logic-toolkit/Makefile +++ b/math/octave-forge-fuzzy-logic-toolkit/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-fuzzy-logic-toolkit PORTVERSION= 0.4.5 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-ga/Makefile b/math/octave-forge-ga/Makefile index 6feaaa155f4c..7f8a5081319c 100644 --- a/math/octave-forge-ga/Makefile +++ b/math/octave-forge-ga/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-ga PORTVERSION= 0.10.0 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-general/Makefile b/math/octave-forge-general/Makefile index 1e6e6b1a2343..e9e404d9acbd 100644 --- a/math/octave-forge-general/Makefile +++ b/math/octave-forge-general/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-general PORTVERSION= 2.1.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-generate_html/Makefile b/math/octave-forge-generate_html/Makefile index 22818d66cb42..1796f7de0b6f 100644 --- a/math/octave-forge-generate_html/Makefile +++ b/math/octave-forge-generate_html/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-generate_html PORTVERSION= 0.3.1 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-geometry/Makefile b/math/octave-forge-geometry/Makefile index aa87827a2396..f0b915d2815b 100644 --- a/math/octave-forge-geometry/Makefile +++ b/math/octave-forge-geometry/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-geometry PORTVERSION= 3.0.0 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-gnuplot/Makefile b/math/octave-forge-gnuplot/Makefile index cc3276d7bad9..2ce68be2b9e3 100644 --- a/math/octave-forge-gnuplot/Makefile +++ b/math/octave-forge-gnuplot/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-gnuplot PORTVERSION= 1.0.1 -PORTREVISION= 18 +PORTREVISION= 19 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-gsl/Makefile b/math/octave-forge-gsl/Makefile index 2fd63572e0c9..99f5fea6de7a 100644 --- a/math/octave-forge-gsl/Makefile +++ b/math/octave-forge-gsl/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-gsl PORTVERSION= 2.1.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-ident/Makefile b/math/octave-forge-ident/Makefile index 9186a1742cca..057b126ecccd 100644 --- a/math/octave-forge-ident/Makefile +++ b/math/octave-forge-ident/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-ident PORTVERSION= 1.0.7 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-image/Makefile b/math/octave-forge-image/Makefile index fc503acea4c0..0308c85c83ba 100644 --- a/math/octave-forge-image/Makefile +++ b/math/octave-forge-image/Makefile @@ -3,6 +3,7 @@ PORTNAME= octave-forge-image PORTVERSION= 2.10.0 +PORTREVISION= 1 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-informationtheory/Makefile b/math/octave-forge-informationtheory/Makefile index afbd206930e7..bc0360331d84 100644 --- a/math/octave-forge-informationtheory/Makefile +++ b/math/octave-forge-informationtheory/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-informationtheory PORTVERSION= 0.1.8 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-integration/Makefile b/math/octave-forge-integration/Makefile index f486c1a10a74..f20a5bf9b73b 100644 --- a/math/octave-forge-integration/Makefile +++ b/math/octave-forge-integration/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-integration PORTVERSION= 1.0.7 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-interval/Makefile b/math/octave-forge-interval/Makefile index c8d1d672ec2b..156b4c1c239d 100644 --- a/math/octave-forge-interval/Makefile +++ b/math/octave-forge-interval/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-interval PORTVERSION= 3.2.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-io/Makefile b/math/octave-forge-io/Makefile index 930209dd84e0..7a4ec238588f 100644 --- a/math/octave-forge-io/Makefile +++ b/math/octave-forge-io/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-io PORTVERSION= 2.4.12 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= math diff --git a/math/octave-forge-irsa/Makefile b/math/octave-forge-irsa/Makefile index eb04d389c7c6..bd10e2fe28b9 100644 --- a/math/octave-forge-irsa/Makefile +++ b/math/octave-forge-irsa/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-irsa PORTVERSION= 1.0.7 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-level-set/Makefile b/math/octave-forge-level-set/Makefile index b2660ca981c1..6805214eab3f 100644 --- a/math/octave-forge-level-set/Makefile +++ b/math/octave-forge-level-set/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-level-set PORTVERSION= 0.3.0 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-linear-algebra/Makefile b/math/octave-forge-linear-algebra/Makefile index b07f722d2a3b..783bc0d02f95 100644 --- a/math/octave-forge-linear-algebra/Makefile +++ b/math/octave-forge-linear-algebra/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-linear-algebra PORTVERSION= 2.2.2 -PORTREVISION= 9 +PORTREVISION= 10 PORTEPOCH= 1 CATEGORIES= math diff --git a/math/octave-forge-lssa/Makefile b/math/octave-forge-lssa/Makefile index 0de95dfbb7fa..26c009629cd2 100644 --- a/math/octave-forge-lssa/Makefile +++ b/math/octave-forge-lssa/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-lssa PORTVERSION= 0.1.3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-ltfat/Makefile b/math/octave-forge-ltfat/Makefile index 6dba7076a450..6021c6a1e726 100644 --- a/math/octave-forge-ltfat/Makefile +++ b/math/octave-forge-ltfat/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-ltfat PORTVERSION= 2.3.1 -PORTREVISION= 3 +PORTREVISION= 4 PORTEPOCH= 1 CATEGORIES= math diff --git a/math/octave-forge-mapping/Makefile b/math/octave-forge-mapping/Makefile index a69d47b795c5..90255de7b142 100644 --- a/math/octave-forge-mapping/Makefile +++ b/math/octave-forge-mapping/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-mapping PORTVERSION= 1.2.1 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-mechanics/Makefile b/math/octave-forge-mechanics/Makefile index e80e5069b1bc..6677ff38adcd 100644 --- a/math/octave-forge-mechanics/Makefile +++ b/math/octave-forge-mechanics/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-mechanics PORTVERSION= 1.3.1 -PORTREVISION= 14 +PORTREVISION= 15 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-miscellaneous/Makefile b/math/octave-forge-miscellaneous/Makefile index d61caada6f2f..bc70cd98c8c9 100644 --- a/math/octave-forge-miscellaneous/Makefile +++ b/math/octave-forge-miscellaneous/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-miscellaneous PORTVERSION= 1.2.1 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-missing-functions/Makefile b/math/octave-forge-missing-functions/Makefile index eac0dec63d7a..53ff4541668c 100644 --- a/math/octave-forge-missing-functions/Makefile +++ b/math/octave-forge-missing-functions/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-missing-functions PORTVERSION= 1.0.2 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-msh/Makefile b/math/octave-forge-msh/Makefile index 115b143b4342..8907482be4bb 100644 --- a/math/octave-forge-msh/Makefile +++ b/math/octave-forge-msh/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-msh PORTVERSION= 1.0.10 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-multicore/Makefile b/math/octave-forge-multicore/Makefile index 53a13201ac9d..b354f1a70602 100644 --- a/math/octave-forge-multicore/Makefile +++ b/math/octave-forge-multicore/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-multicore PORTVERSION= 0.2.15 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-mvn/Makefile b/math/octave-forge-mvn/Makefile index 3bbd29d6b10d..6fa3b9466948 100644 --- a/math/octave-forge-mvn/Makefile +++ b/math/octave-forge-mvn/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-mvn PORTVERSION= 1.1.0 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-nan/Makefile b/math/octave-forge-nan/Makefile index 725fd8302fa6..2a7848369e2e 100644 --- a/math/octave-forge-nan/Makefile +++ b/math/octave-forge-nan/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-nan PORTVERSION= 3.1.4 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-ncarray/Makefile b/math/octave-forge-ncarray/Makefile index 1c88a7f0272a..998b9e7fb439 100644 --- a/math/octave-forge-ncarray/Makefile +++ b/math/octave-forge-ncarray/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-ncarray PORTVERSION= 1.0.4 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-netcdf/Makefile b/math/octave-forge-netcdf/Makefile index 3515d02477b6..2f88fbc9b91f 100644 --- a/math/octave-forge-netcdf/Makefile +++ b/math/octave-forge-netcdf/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-netcdf PORTVERSION= 1.0.12 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-nlwing2/Makefile b/math/octave-forge-nlwing2/Makefile index d503eb96e5cc..9640f32d5d0e 100644 --- a/math/octave-forge-nlwing2/Makefile +++ b/math/octave-forge-nlwing2/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-nlwing2 PORTVERSION= 1.2.0 -PORTREVISION= 18 +PORTREVISION= 19 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-nnet/Makefile b/math/octave-forge-nnet/Makefile index b21c6fb34a31..214b6e356e15 100644 --- a/math/octave-forge-nnet/Makefile +++ b/math/octave-forge-nnet/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-nnet PORTVERSION= 0.1.13 -PORTREVISION= 18 +PORTREVISION= 19 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-nurbs/Makefile b/math/octave-forge-nurbs/Makefile index af0f14e52e05..9373ae4a16bd 100644 --- a/math/octave-forge-nurbs/Makefile +++ b/math/octave-forge-nurbs/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-nurbs PORTVERSION= 1.3.13 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-oct2mat/Makefile b/math/octave-forge-oct2mat/Makefile index 97ea0370a841..51e6ee647f8e 100644 --- a/math/octave-forge-oct2mat/Makefile +++ b/math/octave-forge-oct2mat/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-oct2mat PORTVERSION= 1.0.7 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-octclip/Makefile b/math/octave-forge-octclip/Makefile index a8a6ba398e98..ea93ff1f4321 100644 --- a/math/octave-forge-octclip/Makefile +++ b/math/octave-forge-octclip/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-octclip PORTVERSION= 1.0.8 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-octproj/Makefile b/math/octave-forge-octproj/Makefile index ba1e9a0c6cc8..a4c1ea24a67b 100644 --- a/math/octave-forge-octproj/Makefile +++ b/math/octave-forge-octproj/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-octproj PORTVERSION= 1.1.5 -PORTREVISION= 11 +PORTREVISION= 12 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-odebvp/Makefile b/math/octave-forge-odebvp/Makefile index 4ee0442256bb..ce2621ac8d7a 100644 --- a/math/octave-forge-odebvp/Makefile +++ b/math/octave-forge-odebvp/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-odebvp PORTVERSION= 1.0.6 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-optics/Makefile b/math/octave-forge-optics/Makefile index bbbaa36badb5..f1fbcba4b27c 100644 --- a/math/octave-forge-optics/Makefile +++ b/math/octave-forge-optics/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-optics PORTVERSION= 0.1.3 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-optim/Makefile b/math/octave-forge-optim/Makefile index a9745225a882..86d92cfdba4b 100644 --- a/math/octave-forge-optim/Makefile +++ b/math/octave-forge-optim/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-optim PORTVERSION= 1.5.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-optiminterp/Makefile b/math/octave-forge-optiminterp/Makefile index a21318cb2b0a..0cfffc078883 100644 --- a/math/octave-forge-optiminterp/Makefile +++ b/math/octave-forge-optiminterp/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-optiminterp PORTVERSION= 0.3.5 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-outliers/Makefile b/math/octave-forge-outliers/Makefile index 29c7009618b8..f9994eae1533 100644 --- a/math/octave-forge-outliers/Makefile +++ b/math/octave-forge-outliers/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-outliers PORTVERSION= 0.13.9 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-parallel/Makefile b/math/octave-forge-parallel/Makefile index 635fc9feedd3..691fc0d949d6 100644 --- a/math/octave-forge-parallel/Makefile +++ b/math/octave-forge-parallel/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-parallel PORTVERSION= 3.1.3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-plot/Makefile b/math/octave-forge-plot/Makefile index 73144268e1bb..6f8beee2bcb3 100644 --- a/math/octave-forge-plot/Makefile +++ b/math/octave-forge-plot/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-plot PORTVERSION= 1.1.0 -PORTREVISION= 16 +PORTREVISION= 17 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-quaternion/Makefile b/math/octave-forge-quaternion/Makefile index 5825a53393a9..a91a5ceb4f28 100644 --- a/math/octave-forge-quaternion/Makefile +++ b/math/octave-forge-quaternion/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-quaternion PORTVERSION= 2.4.0 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-queueing/Makefile b/math/octave-forge-queueing/Makefile index f4a2d55e3ed3..49ecddf97b9c 100644 --- a/math/octave-forge-queueing/Makefile +++ b/math/octave-forge-queueing/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-queueing PORTVERSION= 1.2.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-secs1d/Makefile b/math/octave-forge-secs1d/Makefile index b2e85d9ce082..ba0734734222 100644 --- a/math/octave-forge-secs1d/Makefile +++ b/math/octave-forge-secs1d/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-secs1d PORTVERSION= 0.0.9 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-secs2d/Makefile b/math/octave-forge-secs2d/Makefile index 5c7c08741b4d..f7c3e1255c38 100644 --- a/math/octave-forge-secs2d/Makefile +++ b/math/octave-forge-secs2d/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-secs2d PORTVERSION= 0.0.8 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-secs3d/Makefile b/math/octave-forge-secs3d/Makefile index 5327e9c76017..6d3ca58a9db3 100644 --- a/math/octave-forge-secs3d/Makefile +++ b/math/octave-forge-secs3d/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-secs3d PORTVERSION= 0.0.1 -PORTREVISION= 17 +PORTREVISION= 18 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-signal/Makefile b/math/octave-forge-signal/Makefile index 284585107d0f..2549b517d450 100644 --- a/math/octave-forge-signal/Makefile +++ b/math/octave-forge-signal/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-signal PORTVERSION= 1.4.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-simp/Makefile b/math/octave-forge-simp/Makefile index 782fa6061382..81005c9362db 100644 --- a/math/octave-forge-simp/Makefile +++ b/math/octave-forge-simp/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-simp PORTVERSION= 1.1.0 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-sockets/Makefile b/math/octave-forge-sockets/Makefile index a833d48d68af..b2f097814cdf 100644 --- a/math/octave-forge-sockets/Makefile +++ b/math/octave-forge-sockets/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-sockets PORTVERSION= 1.2.0 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-sparsersb/Makefile b/math/octave-forge-sparsersb/Makefile index 5b2140057b8c..c37f0cd08545 100644 --- a/math/octave-forge-sparsersb/Makefile +++ b/math/octave-forge-sparsersb/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-sparsersb PORTVERSION= 1.0.6 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-specfun/Makefile b/math/octave-forge-specfun/Makefile index 7d6e2231353a..8a3780a6f246 100644 --- a/math/octave-forge-specfun/Makefile +++ b/math/octave-forge-specfun/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-specfun PORTVERSION= 1.1.0 -PORTREVISION= 16 +PORTREVISION= 17 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-special-matrix/Makefile b/math/octave-forge-special-matrix/Makefile index 22bb0d6ccb44..6914cf96aa56 100644 --- a/math/octave-forge-special-matrix/Makefile +++ b/math/octave-forge-special-matrix/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-special-matrix PORTVERSION= 1.0.7 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-splines/Makefile b/math/octave-forge-splines/Makefile index 873d948de4d9..54e4abaaed40 100644 --- a/math/octave-forge-splines/Makefile +++ b/math/octave-forge-splines/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-splines PORTVERSION= 1.3.2 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-statistics/Makefile b/math/octave-forge-statistics/Makefile index 66e8b495753d..deb24353aef5 100644 --- a/math/octave-forge-statistics/Makefile +++ b/math/octave-forge-statistics/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-statistics PORTVERSION= 1.4.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-stk/Makefile b/math/octave-forge-stk/Makefile index b6382c9c77ae..d40ca87763d6 100644 --- a/math/octave-forge-stk/Makefile +++ b/math/octave-forge-stk/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-stk PORTVERSION= 2.5.1 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-strings/Makefile b/math/octave-forge-strings/Makefile index 5584f9e19237..cf3cdd709eaf 100644 --- a/math/octave-forge-strings/Makefile +++ b/math/octave-forge-strings/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-strings PORTVERSION= 1.2.0 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-struct/Makefile b/math/octave-forge-struct/Makefile index 40b0136194e5..5f63710dcdd7 100644 --- a/math/octave-forge-struct/Makefile +++ b/math/octave-forge-struct/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-struct PORTVERSION= 1.0.15 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-symband/Makefile b/math/octave-forge-symband/Makefile index 20278c7ce757..b598f821796b 100644 --- a/math/octave-forge-symband/Makefile +++ b/math/octave-forge-symband/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-symband PORTVERSION= 1.0.10 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-symbolic/Makefile b/math/octave-forge-symbolic/Makefile index 78d26e02d802..6b356044cd81 100644 --- a/math/octave-forge-symbolic/Makefile +++ b/math/octave-forge-symbolic/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-symbolic PORTVERSION= 2.7.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-tcl-octave/Makefile b/math/octave-forge-tcl-octave/Makefile index 06cce292a7c6..ab17c5d8f80a 100644 --- a/math/octave-forge-tcl-octave/Makefile +++ b/math/octave-forge-tcl-octave/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-tcl-octave PORTVERSION= 0.1.8 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-tisean/Makefile b/math/octave-forge-tisean/Makefile index 80249f625990..6e01b7d3f305 100644 --- a/math/octave-forge-tisean/Makefile +++ b/math/octave-forge-tisean/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-tisean PORTVERSION= 0.2.3 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-tsa/Makefile b/math/octave-forge-tsa/Makefile index 4d972fc99462..4eaf7062be78 100644 --- a/math/octave-forge-tsa/Makefile +++ b/math/octave-forge-tsa/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-tsa PORTVERSION= 4.4.5 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-video/Makefile b/math/octave-forge-video/Makefile index c88b65f53eb6..8f0482ae516c 100644 --- a/math/octave-forge-video/Makefile +++ b/math/octave-forge-video/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-video PORTVERSION= 1.2.4 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-zenity/Makefile b/math/octave-forge-zenity/Makefile index 5c9a45a15eec..f964850c3bd4 100644 --- a/math/octave-forge-zenity/Makefile +++ b/math/octave-forge-zenity/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-zenity PORTVERSION= 0.5.7 -PORTREVISION= 21 +PORTREVISION= 22 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge-zeromq/Makefile b/math/octave-forge-zeromq/Makefile index b07f7b999fd4..9a2db064da8c 100644 --- a/math/octave-forge-zeromq/Makefile +++ b/math/octave-forge-zeromq/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge-zeromq PORTVERSION= 1.3.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave-forge/Makefile b/math/octave-forge/Makefile index e059f7f9e5cf..fbac066922f3 100644 --- a/math/octave-forge/Makefile +++ b/math/octave-forge/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave-forge PORTVERSION= 20180409 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= math MAINTAINER= stephen@FreeBSD.org diff --git a/math/octave/Makefile b/math/octave/Makefile index 2dbb614afe5b..41f0638a8de4 100644 --- a/math/octave/Makefile +++ b/math/octave/Makefile @@ -3,7 +3,7 @@ PORTNAME= octave PORTVERSION= ${OCTAVE_VERSION} -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= math java MASTER_SITES= GNU diff --git a/math/octomap/Makefile b/math/octomap/Makefile index 5433032becfc..ba8aaf44ca59 100644 --- a/math/octomap/Makefile +++ b/math/octomap/Makefile @@ -3,6 +3,7 @@ PORTNAME= octomap DISTVERSIONPREFIX= v DISTVERSION= 1.9.0 +PORTREVISION= 1 CATEGORIES= math MAINTAINER= yuri@FreeBSD.org diff --git a/math/openmesh/Makefile b/math/openmesh/Makefile index fe8ec1d4f8ea..56c2b3f2d78a 100644 --- a/math/openmesh/Makefile +++ b/math/openmesh/Makefile @@ -2,6 +2,7 @@ PORTNAME= openmesh DISTVERSION= 7.1 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= http://www.openmesh.org/media/Releases/${DISTVERSION}/ DISTNAME= OpenMesh-${DISTVERSION} diff --git a/math/qtoctave/Makefile b/math/qtoctave/Makefile index ab7a8552a2f5..d9cc69ee5361 100644 --- a/math/qtoctave/Makefile +++ b/math/qtoctave/Makefile @@ -2,7 +2,7 @@ PORTNAME= qtoctave PORTVERSION= 0.10.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= math MASTER_SITES= http://forja.rediris.es/frs/download.php/2054/ diff --git a/math/qwtplot3d/Makefile b/math/qwtplot3d/Makefile index 837f11b050d1..65d6c9a43a55 100644 --- a/math/qwtplot3d/Makefile +++ b/math/qwtplot3d/Makefile @@ -2,6 +2,7 @@ PORTNAME= qwtplot3d PORTVERSION= 0.2.7 +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= SF PKGNAMESUFFIX= -qt5 diff --git a/math/rkward-kde/Makefile b/math/rkward-kde/Makefile index 7705538a7cf9..63c705a2ce1e 100644 --- a/math/rkward-kde/Makefile +++ b/math/rkward-kde/Makefile @@ -3,7 +3,7 @@ PORTNAME= rkward DISTVERSION= 0.7.0b -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= math MASTER_SITES= KDE/stable/${PORTNAME}/${DISTVERSION:C/b//}/src PKGNAMESUFFIX= -kde diff --git a/math/rocs/Makefile b/math/rocs/Makefile index 69693028ab73..1f1a62a56244 100644 --- a/math/rocs/Makefile +++ b/math/rocs/Makefile @@ -2,6 +2,7 @@ PORTNAME= rocs DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= math kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/math/rpcalc/Makefile b/math/rpcalc/Makefile index 897d78af2ceb..2709266a7849 100644 --- a/math/rpcalc/Makefile +++ b/math/rpcalc/Makefile @@ -3,7 +3,7 @@ PORTNAME= rpcalc PORTVERSION= 0.8.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= math MASTER_SITES= SF/${PORTNAME}/${PORTVERSION} diff --git a/math/speedcrunch/Makefile b/math/speedcrunch/Makefile index b47e39eb9c80..4c1a04c66da8 100644 --- a/math/speedcrunch/Makefile +++ b/math/speedcrunch/Makefile @@ -5,6 +5,7 @@ PORTNAME= speedcrunch PORTVERSION= 0.12.0 PORTRVISION= 1 DISTVERSIONSUFFIX= -${BB_COMMIT} +PORTREVISION= 1 CATEGORIES= math MASTER_SITES= https://bitbucket.org/${BB_ACCOUNT}/${BB_PROJECT}/get/${BB_COMMIT}.tar.gz?dummy=/ diff --git a/math/vtk8/Makefile b/math/vtk8/Makefile index 60d502974b0a..375cc4e8407d 100644 --- a/math/vtk8/Makefile +++ b/math/vtk8/Makefile @@ -2,7 +2,7 @@ PORTNAME= vtk DISTVERSION= 8.1.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math graphics MASTER_SITES= http://www.vtk.org/files/release/${VTK_SHORT_VER}/ PKGNAMESUFFIX= 8 diff --git a/math/zegrapher/Makefile b/math/zegrapher/Makefile index b903e937b931..2fbe2cff2e8d 100644 --- a/math/zegrapher/Makefile +++ b/math/zegrapher/Makefile @@ -3,7 +3,7 @@ PORTNAME= ZeGrapher DISTVERSIONPREFIX= v DISTVERSION= 3.0.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= math graphics MAINTAINER= yuri@FreeBSD.org diff --git a/misc/actiona/Makefile b/misc/actiona/Makefile index 965ad8595f0b..eac9568606e9 100644 --- a/misc/actiona/Makefile +++ b/misc/actiona/Makefile @@ -4,7 +4,7 @@ PORTNAME= actiona DISTVERSIONPREFIX= v DISTVERSION= 3.10.0-4 DISTVERSIONSUFFIX= -gd8874a32 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc MAINTAINER= yuri@FreeBSD.org diff --git a/misc/artikulate/Makefile b/misc/artikulate/Makefile index 0a94779650ab..75de60e101f7 100644 --- a/misc/artikulate/Makefile +++ b/misc/artikulate/Makefile @@ -2,6 +2,7 @@ PORTNAME= artikulate DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= misc kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/misc/bibletime/Makefile b/misc/bibletime/Makefile index b9dda2a12138..d6aec35d99ab 100644 --- a/misc/bibletime/Makefile +++ b/misc/bibletime/Makefile @@ -2,6 +2,7 @@ PORTNAME= bibletime PORTVERSION= 2.11.2 +PORTREVISION= 1 CATEGORIES= misc kde MASTER_SITES= SF/${PORTNAME}/BibleTime%202/BibleTime%202%20source%20code diff --git a/misc/crosti/Makefile b/misc/crosti/Makefile index d345d728fc58..b8a5fbb1d5f3 100644 --- a/misc/crosti/Makefile +++ b/misc/crosti/Makefile @@ -3,7 +3,7 @@ PORTNAME= crosti DISTVERSION= 1.13.3 DISTVERSIONSUFFIX= -source -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc MASTER_SITES= SF/crosti/crosti%20${DISTVERSION}/ diff --git a/misc/kde-thumbnailer-chm/Makefile b/misc/kde-thumbnailer-chm/Makefile index b825f3f8e8df..ed89a2bbcf96 100644 --- a/misc/kde-thumbnailer-chm/Makefile +++ b/misc/kde-thumbnailer-chm/Makefile @@ -3,6 +3,7 @@ PORTNAME= kde-thumbnailer-chm PORTVERSION= 0.2.1 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= misc kde MAINTAINER= makc@FreeBSD.org diff --git a/misc/kde-thumbnailer-epub/Makefile b/misc/kde-thumbnailer-epub/Makefile index 39b3e1d45a19..dbddfe46e5d5 100644 --- a/misc/kde-thumbnailer-epub/Makefile +++ b/misc/kde-thumbnailer-epub/Makefile @@ -3,6 +3,7 @@ PORTNAME= kde-thumbnailer-epub DISTVERSIONPREFIX= v DISTVERSION= 1.1.9b +PORTREVISION= 1 CATEGORIES= misc kde MAINTAINER= makc@FreeBSD.org diff --git a/misc/kde-thumbnailer-fb2/Makefile b/misc/kde-thumbnailer-fb2/Makefile index 5ee84c4c3368..74749f6e7c4f 100644 --- a/misc/kde-thumbnailer-fb2/Makefile +++ b/misc/kde-thumbnailer-fb2/Makefile @@ -3,6 +3,7 @@ PORTNAME= kde-thumbnailer-fb2 PORTVERSION= 0.3.1 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= misc kde MAINTAINER= makc@FreeBSD.org diff --git a/misc/kdeedu-data/Makefile b/misc/kdeedu-data/Makefile index ac1e4967fdcc..aa2ca46bd546 100644 --- a/misc/kdeedu-data/Makefile +++ b/misc/kdeedu-data/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdeedu-data DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= misc kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/misc/kdeedu/Makefile b/misc/kdeedu/Makefile index 01d1b5de94df..2c2e40c4a830 100644 --- a/misc/kdeedu/Makefile +++ b/misc/kdeedu/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdeedu DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= misc kde MAINTAINER= kde@FreeBSD.org diff --git a/misc/kdeutils/Makefile b/misc/kdeutils/Makefile index ea9fe1442cf8..eb87323e342f 100644 --- a/misc/kdeutils/Makefile +++ b/misc/kdeutils/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdeutils DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= misc kde MAINTAINER= kde@FreeBSD.org diff --git a/misc/kf5-purpose/Makefile b/misc/kf5-purpose/Makefile index 930917619301..21d9833b2552 100644 --- a/misc/kf5-purpose/Makefile +++ b/misc/kf5-purpose/Makefile @@ -2,6 +2,7 @@ PORTNAME= purpose DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= misc kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/misc/kgeography/Makefile b/misc/kgeography/Makefile index d8e4874aa838..6bb39d445767 100644 --- a/misc/kgeography/Makefile +++ b/misc/kgeography/Makefile @@ -2,6 +2,7 @@ PORTNAME= kgeography DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= misc kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/misc/klettres/Makefile b/misc/klettres/Makefile index 1c06af043dc0..be699c9fa031 100644 --- a/misc/klettres/Makefile +++ b/misc/klettres/Makefile @@ -2,6 +2,7 @@ PORTNAME= klettres DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= misc kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/misc/ktouch/Makefile b/misc/ktouch/Makefile index e8f55a2d27a5..411ac0f1556b 100644 --- a/misc/ktouch/Makefile +++ b/misc/ktouch/Makefile @@ -2,6 +2,7 @@ PORTNAME= ktouch DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= misc kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/misc/kwordquiz/Makefile b/misc/kwordquiz/Makefile index e20cc3492797..c6cdf4824152 100644 --- a/misc/kwordquiz/Makefile +++ b/misc/kwordquiz/Makefile @@ -2,6 +2,7 @@ PORTNAME= kwordquiz DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= misc kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/misc/libkeduvocdocument/Makefile b/misc/libkeduvocdocument/Makefile index 422a8e9156be..afe0fc85f6c3 100644 --- a/misc/libkeduvocdocument/Makefile +++ b/misc/libkeduvocdocument/Makefile @@ -2,6 +2,7 @@ PORTNAME= libkeduvocdocument DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= misc kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/misc/molequeue/Makefile b/misc/molequeue/Makefile index 6d1fde0643ea..21e1403a3c8c 100644 --- a/misc/molequeue/Makefile +++ b/misc/molequeue/Makefile @@ -2,7 +2,7 @@ PORTNAME= molequeue DISTVERSION= 0.9.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc MASTER_SITES= https://github.com/openchemistry/molequeue/releases/download/${DISTVERSION}/ diff --git a/misc/openmvg/Makefile b/misc/openmvg/Makefile index 5867687600b1..f41ee8a0ea86 100644 --- a/misc/openmvg/Makefile +++ b/misc/openmvg/Makefile @@ -3,7 +3,7 @@ PORTNAME= openmvg DISTVERSIONPREFIX= v DISTVERSION= 1.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc science MAINTAINER= yuri@FreeBSD.org diff --git a/misc/orange3/Makefile b/misc/orange3/Makefile index dc05982ab5a5..0dffaf4fb332 100644 --- a/misc/orange3/Makefile +++ b/misc/orange3/Makefile @@ -2,6 +2,7 @@ PORTNAME= orange3 DISTVERSION= 3.19.0 +PORTREVISION= 1 CATEGORIES= misc python MAINTAINER= yuri@FreeBSD.org diff --git a/misc/parley/Makefile b/misc/parley/Makefile index 20e212f91c3c..8c96fe1e5260 100644 --- a/misc/parley/Makefile +++ b/misc/parley/Makefile @@ -2,6 +2,7 @@ PORTNAME= parley DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= misc kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/misc/py-QSpectrumAnalyzer/Makefile b/misc/py-QSpectrumAnalyzer/Makefile index db5bf92d620a..3daad22ce06f 100644 --- a/misc/py-QSpectrumAnalyzer/Makefile +++ b/misc/py-QSpectrumAnalyzer/Makefile @@ -2,7 +2,7 @@ PORTNAME= QSpectrumAnalyzer DISTVERSION= 2.1.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= misc hamradio python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/misc/py-orange3-associate/Makefile b/misc/py-orange3-associate/Makefile index a8a73530f0be..fb75e35e0419 100644 --- a/misc/py-orange3-associate/Makefile +++ b/misc/py-orange3-associate/Makefile @@ -2,7 +2,7 @@ PORTNAME= orange3-associate DISTVERSION= 1.1.5-5 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONSUFFIX= -ge82d0db CATEGORIES= misc python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/misc/py-orange3-datafusion/Makefile b/misc/py-orange3-datafusion/Makefile index 8d0e72a8dd44..3a1873adc5c7 100644 --- a/misc/py-orange3-datafusion/Makefile +++ b/misc/py-orange3-datafusion/Makefile @@ -3,7 +3,7 @@ PORTNAME= orange3-datafusion DISTVERSIONPREFIX= v DISTVERSION= 0.1.11-7 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONSUFFIX= -g69aa51c CATEGORIES= misc python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/misc/py-orange3-educational/Makefile b/misc/py-orange3-educational/Makefile index 3429fef1ed51..e03461bc1dd7 100644 --- a/misc/py-orange3-educational/Makefile +++ b/misc/py-orange3-educational/Makefile @@ -2,7 +2,7 @@ PORTNAME= orange3-educational DISTVERSION= 0.1.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/misc/py-orange3-network/Makefile b/misc/py-orange3-network/Makefile index 9a1938c7732a..8e7fb19ab8ad 100644 --- a/misc/py-orange3-network/Makefile +++ b/misc/py-orange3-network/Makefile @@ -2,7 +2,7 @@ PORTNAME= orange3-network DISTVERSION= 1.3.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/misc/py-orange3-timeseries/Makefile b/misc/py-orange3-timeseries/Makefile index 5da4ac937861..c6e9c5fe907c 100644 --- a/misc/py-orange3-timeseries/Makefile +++ b/misc/py-orange3-timeseries/Makefile @@ -2,7 +2,7 @@ PORTNAME= orange3-timeseries DISTVERSION= 0.3.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/misc/py-qt5-demo/Makefile b/misc/py-qt5-demo/Makefile index 73acb30c2753..3f4d15d1db9d 100644 --- a/misc/py-qt5-demo/Makefile +++ b/misc/py-qt5-demo/Makefile @@ -2,6 +2,7 @@ PORTNAME= demo PORTVERSION= ${PYQT5_VERSION} +PORTREVISION= 1 CATEGORIES= misc devel python MASTER_SITES= ${MASTER_SITES_PYQT5} PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}qt5- diff --git a/misc/qbrew/Makefile b/misc/qbrew/Makefile index 372d1435a901..93c2bd9481e8 100644 --- a/misc/qbrew/Makefile +++ b/misc/qbrew/Makefile @@ -3,7 +3,7 @@ PORTNAME= qbrew PORTVERSION= 0.4.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= misc MASTER_SITES= http://www.usermode.org/code/ diff --git a/misc/qt5-l10n/Makefile b/misc/qt5-l10n/Makefile index 161347669831..9a14fe32bb43 100644 --- a/misc/qt5-l10n/Makefile +++ b/misc/qt5-l10n/Makefile @@ -2,6 +2,7 @@ PORTNAME= l10n DISTVERSION= ${QT5_VERSION} +PORTREVISION= 1 CATEGORIES= misc PKGNAMEPREFIX= qt5- diff --git a/misc/qt5ct/Makefile b/misc/qt5ct/Makefile index a2406b5cbba3..d3762f04aac0 100644 --- a/misc/qt5ct/Makefile +++ b/misc/qt5ct/Makefile @@ -2,6 +2,7 @@ PORTNAME= qt5ct DISTVERSION= 0.37 +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= SF/${PORTNAME} diff --git a/misc/saaghar/Makefile b/misc/saaghar/Makefile index be915627b276..6db5b016c962 100644 --- a/misc/saaghar/Makefile +++ b/misc/saaghar/Makefile @@ -2,7 +2,7 @@ PORTNAME= saaghar PORTVERSION= 2.5.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc MASTER_SITES= SF/saaghar/Source%20Code/:saaghar \ SF/ganjoor/s3db:ganjoor diff --git a/misc/tellico/Makefile b/misc/tellico/Makefile index ef1ff3b8443c..5061062e8349 100644 --- a/misc/tellico/Makefile +++ b/misc/tellico/Makefile @@ -3,7 +3,7 @@ PORTNAME= tellico DISTVERSION= 3.1.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc kde MASTER_SITES= http://tellico-project.org/files/ diff --git a/misc/urh/Makefile b/misc/urh/Makefile index 61836fd3e6d9..27543f47c7ce 100644 --- a/misc/urh/Makefile +++ b/misc/urh/Makefile @@ -2,6 +2,7 @@ PORTNAME= urh DISTVERSION= 2.5.3 +PORTREVISION= 1 CATEGORIES= misc hamradio python MASTER_SITES= CHEESESHOP diff --git a/misc/valentina/Makefile b/misc/valentina/Makefile index 6bf3b202fc2b..f75ace3f0c6f 100644 --- a/misc/valentina/Makefile +++ b/misc/valentina/Makefile @@ -2,7 +2,7 @@ PORTNAME= valentina DISTVERSION= 0.6.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= misc MASTER_SITES= https://bitbucket.org/${BB_ACCOUNT}/${BB_PROJECT}/get/${BB_COMMIT}.tar.gz?dummy=/ diff --git a/misc/zygrib-maps/Makefile b/misc/zygrib-maps/Makefile index 1948d58464ee..aa99fcb450a4 100644 --- a/misc/zygrib-maps/Makefile +++ b/misc/zygrib-maps/Makefile @@ -2,6 +2,7 @@ PORTNAME= zygrib-maps DISTVERSION= 2.4 +PORTREVISION= 1 MASTER_SITES= http://www.zygrib.org/getfile.php?file= CATEGORIES= misc DISTNAME= zyGrib_maps${DISTVERSION} diff --git a/misc/zygrib/Makefile b/misc/zygrib/Makefile index 17e732376f97..32569732ddcb 100644 --- a/misc/zygrib/Makefile +++ b/misc/zygrib/Makefile @@ -2,6 +2,7 @@ PORTNAME= zygrib DISTVERSION= 8.0.1 +PORTREVISION= 1 CATEGORIES= misc MASTER_SITES= http://www.zygrib.org/getfile.php?file= DISTNAME= zyGrib-${DISTVERSION} diff --git a/multimedia/QtAV/Makefile b/multimedia/QtAV/Makefile index d92107709334..211b83a4de6d 100644 --- a/multimedia/QtAV/Makefile +++ b/multimedia/QtAV/Makefile @@ -3,7 +3,7 @@ PORTNAME= QtAV PORTVERSION= 1.12.0 DISTVERSIONPREFIX= v -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= multimedia DIST_SUBDIR= KDE diff --git a/multimedia/baka-mplayer/Makefile b/multimedia/baka-mplayer/Makefile index b87669417b52..2d9d96c5ce8b 100644 --- a/multimedia/baka-mplayer/Makefile +++ b/multimedia/baka-mplayer/Makefile @@ -3,7 +3,7 @@ PORTNAME= baka-mplayer DISTVERSIONPREFIX= v DISTVERSION= 2.0.4 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= multimedia audio MAINTAINER= jbeich@FreeBSD.org diff --git a/multimedia/bino/Makefile b/multimedia/bino/Makefile index 551c861cc39c..7e949fe70047 100644 --- a/multimedia/bino/Makefile +++ b/multimedia/bino/Makefile @@ -3,7 +3,7 @@ PORTNAME= bino PORTVERSION= 1.6.5 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= multimedia MASTER_SITES= https://download.savannah.nongnu.org/releases/bino/ diff --git a/multimedia/cinelerra-gg/Makefile b/multimedia/cinelerra-gg/Makefile index 05678f3e4744..afd70f2aeff6 100644 --- a/multimedia/cinelerra-gg/Makefile +++ b/multimedia/cinelerra-gg/Makefile @@ -3,7 +3,7 @@ PORTNAME= cinelerra-gg DISTVERSION= 5.1-20180714 DISTVERSIONSUFFIX= -${REV:C/(.......).*/\1/} -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= multimedia MASTER_SITES= https://git.cinelerra-cv.org/gitweb?p=goodguy/cinelerra.git;a=snapshot;h=${REV};sf=tgz;dummy=/ # tarballs are @ https://cinelerra-cv.org/five/pkgs/src/ diff --git a/multimedia/clipgrab/Makefile b/multimedia/clipgrab/Makefile index 18745ff8175f..bada32591d3b 100644 --- a/multimedia/clipgrab/Makefile +++ b/multimedia/clipgrab/Makefile @@ -3,6 +3,7 @@ PORTNAME= clipgrab PORTVERSION= 3.7.2 +PORTREVISION= 1 CATEGORIES= multimedia MASTER_SITES= https://download.clipgrab.org/ diff --git a/multimedia/dragon/Makefile b/multimedia/dragon/Makefile index 2e6bc585f233..79892ee1290d 100644 --- a/multimedia/dragon/Makefile +++ b/multimedia/dragon/Makefile @@ -2,6 +2,7 @@ PORTNAME= dragon DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= multimedia kde kde-applications PKGNAMESUFFIX= -player diff --git a/multimedia/dvbcut/Makefile b/multimedia/dvbcut/Makefile index a5bc19aacf58..401dd6063335 100644 --- a/multimedia/dvbcut/Makefile +++ b/multimedia/dvbcut/Makefile @@ -4,7 +4,7 @@ PORTNAME= dvbcut PORTVERSION= 0.7.3 DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia MAINTAINER= se@FreeBSD.org diff --git a/multimedia/fpc-libvlc/Makefile b/multimedia/fpc-libvlc/Makefile index f4f37e878fe6..b36644a2928d 100644 --- a/multimedia/fpc-libvlc/Makefile +++ b/multimedia/fpc-libvlc/Makefile @@ -1,7 +1,7 @@ # Created by: Alonso Cardenas Marquez <acm@FreeBSD.org> # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia lang PKGNAMESUFFIX= -libvlc diff --git a/multimedia/gstreamer1-qt/Makefile b/multimedia/gstreamer1-qt/Makefile index db551442db1c..b6651ed92f81 100644 --- a/multimedia/gstreamer1-qt/Makefile +++ b/multimedia/gstreamer1-qt/Makefile @@ -2,7 +2,7 @@ PORTNAME= gstreamer1 PORTVERSION= 1.2.0 -PORTREVISION= 17 +PORTREVISION= 18 CATEGORIES= multimedia MASTER_SITES= http://gstreamer.freedesktop.org/src/qt-gstreamer/ PKGNAMESUFFIX= -${FLAVOR} diff --git a/multimedia/iso2mkv/Makefile b/multimedia/iso2mkv/Makefile index de60ef8eb3fd..2916413364f7 100644 --- a/multimedia/iso2mkv/Makefile +++ b/multimedia/iso2mkv/Makefile @@ -3,7 +3,7 @@ PORTNAME= iso2mkv DISTVERSION= 2011-05-02 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= multimedia MASTER_SITES= http://5ko.free.fr/dl/ DISTNAME= ${PORTNAME} diff --git a/multimedia/kaffeine/Makefile b/multimedia/kaffeine/Makefile index 68671ccf03fc..4be3892d773c 100644 --- a/multimedia/kaffeine/Makefile +++ b/multimedia/kaffeine/Makefile @@ -3,7 +3,7 @@ PORTNAME= kaffeine PORTVERSION= 2.0.15 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia kde MASTER_SITES= KDE/stable/${PORTNAME} diff --git a/multimedia/kamoso/Makefile b/multimedia/kamoso/Makefile index 5a4083a44594..a7acb0832306 100644 --- a/multimedia/kamoso/Makefile +++ b/multimedia/kamoso/Makefile @@ -2,6 +2,7 @@ PORTNAME= kamoso DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= multimedia kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/multimedia/kdemultimedia-ffmpegthumbs/Makefile b/multimedia/kdemultimedia-ffmpegthumbs/Makefile index 09b6ef733399..af12557c642f 100644 --- a/multimedia/kdemultimedia-ffmpegthumbs/Makefile +++ b/multimedia/kdemultimedia-ffmpegthumbs/Makefile @@ -2,6 +2,7 @@ PORTNAME= ffmpegthumbs DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= multimedia kde kde-applications PKGNAMEPREFIX= kdemultimedia- diff --git a/multimedia/kdemultimedia/Makefile b/multimedia/kdemultimedia/Makefile index 6537cfc47aa4..75c0d3eae97e 100644 --- a/multimedia/kdemultimedia/Makefile +++ b/multimedia/kdemultimedia/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdemultimedia DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= multimedia kde MAINTAINER= kde@FreeBSD.org diff --git a/multimedia/kdenlive/Makefile b/multimedia/kdenlive/Makefile index 0f0a38e3026e..55a97437f14e 100644 --- a/multimedia/kdenlive/Makefile +++ b/multimedia/kdenlive/Makefile @@ -2,6 +2,7 @@ PORTNAME= kdenlive DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= multimedia kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/multimedia/kf5-kmediaplayer/Makefile b/multimedia/kf5-kmediaplayer/Makefile index f9250feffe2c..a4589156f11a 100644 --- a/multimedia/kf5-kmediaplayer/Makefile +++ b/multimedia/kf5-kmediaplayer/Makefile @@ -2,6 +2,7 @@ PORTNAME= kmediaplayer DISTVERSION= ${KDE_FRAMEWORKS_VERSION} +PORTREVISION= 1 CATEGORIES= multimedia kde kde-frameworks MAINTAINER= kde@FreeBSD.org diff --git a/multimedia/kmplayer/Makefile b/multimedia/kmplayer/Makefile index 83c571da48d3..1b4dfd4b6d1c 100644 --- a/multimedia/kmplayer/Makefile +++ b/multimedia/kmplayer/Makefile @@ -3,6 +3,7 @@ PORTNAME= kmplayer PORTVERSION= 0.12.0b +PORTREVISION= 1 PORTEPOCH= 3 CATEGORIES= multimedia audio kde diff --git a/multimedia/lives/Makefile b/multimedia/lives/Makefile index f8dbcfe84c77..5b5a25d72d55 100644 --- a/multimedia/lives/Makefile +++ b/multimedia/lives/Makefile @@ -3,6 +3,7 @@ PORTNAME= lives PORTVERSION= 2.10.2 +PORTREVISION= 1 CATEGORIES= multimedia MASTER_SITES= http://lives-video.com/releases/ DISTNAME= LiVES-${PORTVERSION} diff --git a/multimedia/mediadownloader/Makefile b/multimedia/mediadownloader/Makefile index a7609befe013..12437980364f 100644 --- a/multimedia/mediadownloader/Makefile +++ b/multimedia/mediadownloader/Makefile @@ -3,7 +3,7 @@ PORTNAME= mediadownloader PORTVERSION= 1.5.2 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= multimedia www MASTER_SITES= SF/googleimagedown/project/${PORTVERSION}/ DISTNAME= ${PORTNAME}_${PORTVERSION}-src diff --git a/multimedia/minitube/Makefile b/multimedia/minitube/Makefile index abd8aeac4cbb..99510622a9a6 100644 --- a/multimedia/minitube/Makefile +++ b/multimedia/minitube/Makefile @@ -2,7 +2,7 @@ PORTNAME= minitube DISTVERSION= 2.9 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia www MAINTAINER= ports@FreeBSD.org diff --git a/multimedia/mkvtoolnix/Makefile b/multimedia/mkvtoolnix/Makefile index 7d64319d844c..d33488730eda 100644 --- a/multimedia/mkvtoolnix/Makefile +++ b/multimedia/mkvtoolnix/Makefile @@ -3,6 +3,7 @@ PORTNAME= mkvtoolnix PORTVERSION= 30.1.0 +PORTREVISION= 1 CATEGORIES= multimedia audio MASTER_SITES= http://www.bunkus.org/videotools/mkvtoolnix/sources/ \ https://mkvtoolnix.download/sources/ diff --git a/multimedia/mlt-qt5/Makefile b/multimedia/mlt-qt5/Makefile index 7b6465f36c9a..785e8c75c8e1 100644 --- a/multimedia/mlt-qt5/Makefile +++ b/multimedia/mlt-qt5/Makefile @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CONFLICTS_INSTALL= ${PORTNAME}-qt4-* diff --git a/multimedia/mpc-qt/Makefile b/multimedia/mpc-qt/Makefile index 9caa144b17d8..43fff1a933d4 100644 --- a/multimedia/mpc-qt/Makefile +++ b/multimedia/mpc-qt/Makefile @@ -3,7 +3,7 @@ PORTNAME= mpc-qt DISTVERSIONPREFIX= v DISTVERSION= 18.08 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= multimedia audio MAINTAINER= jbeich@FreeBSD.org diff --git a/multimedia/mythtv-frontend/Makefile b/multimedia/mythtv-frontend/Makefile index 2338736a19fe..df6e3e4d1978 100644 --- a/multimedia/mythtv-frontend/Makefile +++ b/multimedia/mythtv-frontend/Makefile @@ -1,7 +1,7 @@ # Created by: Bernhard Froehlich <decke@bluelife.at> # $FreeBSD$ -PORTREVISION= 1 +PORTREVISION= 2 PKGNAMESUFFIX= -${SLAVEPORT} MAINTAINER= ports@FreeBSD.org diff --git a/multimedia/mythtv/Makefile b/multimedia/mythtv/Makefile index 6509e1a82afb..2095c20f124c 100644 --- a/multimedia/mythtv/Makefile +++ b/multimedia/mythtv/Makefile @@ -4,7 +4,7 @@ PORTNAME= mythtv DISTVERSIONPREFIX= v DISTVERSION= 29.1 -PORTREVISION?= 2 +PORTREVISION?= 3 PORTEPOCH= 1 CATEGORIES= multimedia diff --git a/multimedia/obs-qtwebkit/Makefile b/multimedia/obs-qtwebkit/Makefile index 809b66be5376..a52cba6be70b 100644 --- a/multimedia/obs-qtwebkit/Makefile +++ b/multimedia/obs-qtwebkit/Makefile @@ -2,6 +2,7 @@ PORTNAME= obs-qtwebkit PORTVERSION= g2018090201 +PORTREVISION= 1 CATEGORIES= multimedia MAINTAINER= swills@FreeBSD.org diff --git a/multimedia/obs-studio/Makefile b/multimedia/obs-studio/Makefile index 19eebde35cce..d8d90a3a8a2a 100644 --- a/multimedia/obs-studio/Makefile +++ b/multimedia/obs-studio/Makefile @@ -2,7 +2,7 @@ PORTNAME= obs-studio DISTVERSION= 22.0.3 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= multimedia PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ diff --git a/multimedia/phonon-designerplugin/Makefile b/multimedia/phonon-designerplugin/Makefile index a913f59c248c..846f27b09f42 100644 --- a/multimedia/phonon-designerplugin/Makefile +++ b/multimedia/phonon-designerplugin/Makefile @@ -2,6 +2,7 @@ PORTNAME= phonon DISTVERSION= 4.10.2 +PORTREVISION= 1 CATEGORIES= multimedia kde MASTER_SITES= KDE/stable/${PORTNAME}/${DISTVERSION} DIST_SUBDIR= KDE/phonon diff --git a/multimedia/phonon-gstreamer/Makefile b/multimedia/phonon-gstreamer/Makefile index 0de3092374bf..a5378d8ff71c 100644 --- a/multimedia/phonon-gstreamer/Makefile +++ b/multimedia/phonon-gstreamer/Makefile @@ -3,7 +3,7 @@ PORTNAME= phonon PORTVERSION= 4.9.0 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= multimedia kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTNAME}-backend-${PHONON_PLUGIN}/${DISTVERSION} DISTNAME= ${PORTNAME}-backend-${PHONON_PLUGIN}-${DISTVERSION} diff --git a/multimedia/phonon-vlc/Makefile b/multimedia/phonon-vlc/Makefile index 620c47bffd8b..6b54ebc25ef7 100644 --- a/multimedia/phonon-vlc/Makefile +++ b/multimedia/phonon-vlc/Makefile @@ -2,6 +2,7 @@ PORTNAME= phonon DISTVERSION= 0.10.2 +PORTREVISION= 1 CATEGORIES= multimedia kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTNAME}-backend-${PHONON_PLUGIN}/${DISTVERSION} PKGNAMESUFFIX= -${PHONON_PLUGIN} diff --git a/multimedia/phonon-xine/Makefile b/multimedia/phonon-xine/Makefile index f184637318d0..1ff3a357b9b2 100644 --- a/multimedia/phonon-xine/Makefile +++ b/multimedia/phonon-xine/Makefile @@ -3,7 +3,7 @@ PORTNAME= phonon PORTVERSION= 4.4.4 -PORTREVISION= 12 +PORTREVISION= 13 CATEGORIES= multimedia kde MASTER_SITES= KDE/stable/${PORTNAME}/${PORTNAME}-backend${PKGNAMESUFFIX}/${PORTVERSION}/src PKGNAMESUFFIX= -xine diff --git a/multimedia/phonon/Makefile b/multimedia/phonon/Makefile index 322f4a5ec3fa..09fc9ef8d502 100644 --- a/multimedia/phonon/Makefile +++ b/multimedia/phonon/Makefile @@ -3,6 +3,7 @@ PORTNAME= phonon DISTVERSION= 4.10.2 +PORTREVISION= 1 CATEGORIES= multimedia kde MASTER_SITES= KDE/stable/${PORTNAME}/${DISTVERSION} DIST_SUBDIR= KDE/phonon diff --git a/multimedia/py-PySceneDetect/Makefile b/multimedia/py-PySceneDetect/Makefile index af4f91a9389f..7e07777972fb 100644 --- a/multimedia/py-PySceneDetect/Makefile +++ b/multimedia/py-PySceneDetect/Makefile @@ -2,7 +2,7 @@ PORTNAME= PySceneDetect PORTVERSION= 0.5 -PORTREVISION= 1 +PORTREVISION= 2 DISTVERSIONPREFIX= v CATEGORIES= multimedia python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/multimedia/py-openlp/Makefile b/multimedia/py-openlp/Makefile index 57aca4180cd9..ce76fcbef9af 100644 --- a/multimedia/py-openlp/Makefile +++ b/multimedia/py-openlp/Makefile @@ -2,7 +2,7 @@ PORTNAME= OpenLP PORTVERSION= 2.4.6 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia python MASTER_SITES= https://get.openlp.org/${PORTVERSION}/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/multimedia/py-qt5-multimedia/Makefile b/multimedia/py-qt5-multimedia/Makefile index 19b9b986ca80..ce0756935c4c 100644 --- a/multimedia/py-qt5-multimedia/Makefile +++ b/multimedia/py-qt5-multimedia/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= multimedia +PORTREVISION= 1 CATEGORIES= multimedia devel python MAINTAINER= kde@FreeBSD.org diff --git a/multimedia/py-qt5-multimediawidgets/Makefile b/multimedia/py-qt5-multimediawidgets/Makefile index c838458e3868..4d590e92318d 100644 --- a/multimedia/py-qt5-multimediawidgets/Makefile +++ b/multimedia/py-qt5-multimediawidgets/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PORTNAME= multimediawidgets +PORTREVISION= 1 CATEGORIES= multimedia devel python MAINTAINER= kde@FreeBSD.org diff --git a/multimedia/qmmp-plugin-pack-qt5/Makefile b/multimedia/qmmp-plugin-pack-qt5/Makefile index 5b05831c7c69..099c14c46190 100644 --- a/multimedia/qmmp-plugin-pack-qt5/Makefile +++ b/multimedia/qmmp-plugin-pack-qt5/Makefile @@ -2,7 +2,7 @@ PORTNAME= qmmp-plugin-pack PORTVERSION= 1.2.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= multimedia MASTER_SITES= http://qmmp.ylsoftware.com/files/plugins/ \ SF/qmmp-dev/${PORTNAME}/ diff --git a/multimedia/qmmp-plugin-pack/Makefile b/multimedia/qmmp-plugin-pack/Makefile index 4013dc51eaec..6ddc87cfb595 100644 --- a/multimedia/qmmp-plugin-pack/Makefile +++ b/multimedia/qmmp-plugin-pack/Makefile @@ -2,7 +2,7 @@ PORTNAME= qmmp-plugin-pack PORTVERSION= 0.11.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= multimedia MASTER_SITES= http://qmmp.ylsoftware.com/files/plugins/ \ SF/qmmp-dev/${PORTNAME}/ diff --git a/multimedia/qmmp-qt5/Makefile b/multimedia/qmmp-qt5/Makefile index acfe188c73d5..54b2619f3239 100644 --- a/multimedia/qmmp-qt5/Makefile +++ b/multimedia/qmmp-qt5/Makefile @@ -2,7 +2,7 @@ PORTNAME= qmmp PORTVERSION= 1.2.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= multimedia MASTER_SITES= http://qmmp.ylsoftware.com/files/ \ SF/qmmp-dev/${PORTNAME}/ diff --git a/multimedia/qmmp/Makefile b/multimedia/qmmp/Makefile index 5af4f088b70a..cd84c037feab 100644 --- a/multimedia/qmmp/Makefile +++ b/multimedia/qmmp/Makefile @@ -2,7 +2,7 @@ PORTNAME= qmmp PORTVERSION= 0.11.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= multimedia MASTER_SITES= http://qmmp.ylsoftware.com/files/ \ SF/qmmp-dev/${PORTNAME}/ diff --git a/multimedia/qt5-multimedia/Makefile b/multimedia/qt5-multimedia/Makefile index d583d4761293..1510953f8f92 100644 --- a/multimedia/qt5-multimedia/Makefile +++ b/multimedia/qt5-multimedia/Makefile @@ -2,6 +2,7 @@ PORTNAME= multimedia DISTVERSION= ${QT5_VERSION} +PORTREVISION= 1 CATEGORIES= multimedia PKGNAMEPREFIX= qt5- diff --git a/multimedia/shotcut/Makefile b/multimedia/shotcut/Makefile index 18de6273fd9e..c0880e2226db 100644 --- a/multimedia/shotcut/Makefile +++ b/multimedia/shotcut/Makefile @@ -3,6 +3,7 @@ PORTNAME= shotcut DISTVERSIONPREFIX= v DISTVERSION= ${FULLVERSION} +PORTREVISION= 1 CATEGORIES= multimedia MAINTAINER= multimedia@FreeBSD.org diff --git a/multimedia/simplescreenrecorder/Makefile b/multimedia/simplescreenrecorder/Makefile index f6b920078fb9..d2384440a54b 100644 --- a/multimedia/simplescreenrecorder/Makefile +++ b/multimedia/simplescreenrecorder/Makefile @@ -2,7 +2,7 @@ PORTNAME= simplescreenrecorder DISTVERSION= 0.3.11 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia MAINTAINER= yuri@FreeBSD.org diff --git a/multimedia/smplayer/Makefile b/multimedia/smplayer/Makefile index 758e573193f2..bc059a8c0afb 100644 --- a/multimedia/smplayer/Makefile +++ b/multimedia/smplayer/Makefile @@ -3,7 +3,7 @@ PORTNAME= smplayer DISTVERSION= 18.9.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia audio kde MASTER_SITES= SF/${PORTNAME}/SMPlayer/${PORTVERSION} diff --git a/multimedia/smtube/Makefile b/multimedia/smtube/Makefile index 1458859c2a1b..16d610e90f93 100644 --- a/multimedia/smtube/Makefile +++ b/multimedia/smtube/Makefile @@ -3,7 +3,7 @@ PORTNAME= smtube PORTVERSION= 18.9.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= multimedia MASTER_SITES= SF/smtube/SMTube/${PORTVERSION}/ diff --git a/multimedia/subtitlecomposer/Makefile b/multimedia/subtitlecomposer/Makefile index ff951b02d65e..a6772414ca29 100644 --- a/multimedia/subtitlecomposer/Makefile +++ b/multimedia/subtitlecomposer/Makefile @@ -3,7 +3,7 @@ PORTNAME= subtitlecomposer PORTVERSION= 0.6.6 DISTVERSIONPREFIX= v -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= multimedia kde MAINTAINER= makc@FreeBSD.org diff --git a/multimedia/syncplay/Makefile b/multimedia/syncplay/Makefile index 60f7218ea63b..e303a105387d 100644 --- a/multimedia/syncplay/Makefile +++ b/multimedia/syncplay/Makefile @@ -3,6 +3,7 @@ PORTNAME= syncplay DISTVERSIONPREFIX= v DISTVERSION= 1.5.5 +PORTREVISION= 1 CATEGORIES= multimedia MAINTAINER= heckendorfc@gmail.com diff --git a/multimedia/vlc/Makefile b/multimedia/vlc/Makefile index 5b891d1cb851..ac538af8b37d 100644 --- a/multimedia/vlc/Makefile +++ b/multimedia/vlc/Makefile @@ -3,6 +3,7 @@ PORTNAME= vlc DISTVERSION= 3.0.6 +PORTREVISION= 1 PORTEPOCH= 4 CATEGORIES= multimedia audio ipv6 net www MASTER_SITES= http://download.videolan.org/pub/videolan/${PORTNAME}/${DISTVERSION:S/a$//}/ \ diff --git a/multimedia/webcamoid/Makefile b/multimedia/webcamoid/Makefile index fb85905a0d79..0e5dbdd6c22e 100644 --- a/multimedia/webcamoid/Makefile +++ b/multimedia/webcamoid/Makefile @@ -2,7 +2,7 @@ PORTNAME= webcamoid DISTVERSION= 8.1.0 -PORTREVISION= 8 +PORTREVISION= 9 CATEGORIES= multimedia MAINTAINER= yuri@FreeBSD.org diff --git a/multimedia/webvfx-qt5/Makefile b/multimedia/webvfx-qt5/Makefile index 31dc39d355aa..48ad24088822 100644 --- a/multimedia/webvfx-qt5/Makefile +++ b/multimedia/webvfx-qt5/Makefile @@ -2,7 +2,7 @@ PORTNAME= webvfx DISTVERSION= 0.4.4-20160823 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= multimedia PKGNAMESUFFIX= -qt5 diff --git a/net-im/cutegram/Makefile b/net-im/cutegram/Makefile index e2a4f170bf3f..a1eded237e67 100644 --- a/net-im/cutegram/Makefile +++ b/net-im/cutegram/Makefile @@ -5,7 +5,7 @@ PORTNAME= cutegram PORTVERSION= 2.7.1 DISTVERSIONPREFIX= v DISTVERSIONSUFFIX= -stable -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im MAINTAINER= henry.hu.sh@gmail.com diff --git a/net-im/diligent/Makefile b/net-im/diligent/Makefile index 63752e76f62b..38558244a861 100644 --- a/net-im/diligent/Makefile +++ b/net-im/diligent/Makefile @@ -3,7 +3,7 @@ PORTNAME= diligent PORTVERSION= 0.2.7 -PORTREVISION= 6 +PORTREVISION= 7 DISTVERSIONPREFIX= v CATEGORIES= net-im diff --git a/net-im/gitterdone/Makefile b/net-im/gitterdone/Makefile index db285a6dbe13..9d8ec4d5d060 100644 --- a/net-im/gitterdone/Makefile +++ b/net-im/gitterdone/Makefile @@ -2,6 +2,7 @@ PORTNAME= gitterdone PORTVERSION= 201710031257 +PORTREVISION= 1 CATEGORIES= net-im MAINTAINER= jt@ixsystems.com diff --git a/net-im/kaccounts-integration/Makefile b/net-im/kaccounts-integration/Makefile index c33f9d0b67bf..8c03a2212477 100644 --- a/net-im/kaccounts-integration/Makefile +++ b/net-im/kaccounts-integration/Makefile @@ -2,6 +2,7 @@ PORTNAME= kaccounts-integration DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net-im/kaccounts-providers/Makefile b/net-im/kaccounts-providers/Makefile index a328507ae07e..39b112abc24c 100644 --- a/net-im/kaccounts-providers/Makefile +++ b/net-im/kaccounts-providers/Makefile @@ -2,6 +2,7 @@ PORTNAME= kaccounts-providers DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net-im/kde-telepathy/Makefile b/net-im/kde-telepathy/Makefile index 89393d99e5b6..d86fae39adfa 100644 --- a/net-im/kde-telepathy/Makefile +++ b/net-im/kde-telepathy/Makefile @@ -2,6 +2,7 @@ PORTNAME= kde-telepathy DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net-im kde MAINTAINER= kde@FreeBSD.org diff --git a/net-im/kopete/Makefile b/net-im/kopete/Makefile index 15e0d8402f3c..1c3fc928cb17 100644 --- a/net-im/kopete/Makefile +++ b/net-im/kopete/Makefile @@ -2,6 +2,7 @@ PORTNAME= kopete PORTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net-im/ktp-accounts-kcm/Makefile b/net-im/ktp-accounts-kcm/Makefile index c93469e92a0b..7369bffacaca 100644 --- a/net-im/ktp-accounts-kcm/Makefile +++ b/net-im/ktp-accounts-kcm/Makefile @@ -2,6 +2,7 @@ PORTNAME= ktp-accounts-kcm DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net-im/ktp-approver/Makefile b/net-im/ktp-approver/Makefile index 7a8135e9cf77..4f8b2b7ecdde 100644 --- a/net-im/ktp-approver/Makefile +++ b/net-im/ktp-approver/Makefile @@ -2,6 +2,7 @@ PORTNAME= ktp-approver DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net-im/ktp-auth-handler/Makefile b/net-im/ktp-auth-handler/Makefile index e6c69441dd2c..af55eeeaffc7 100644 --- a/net-im/ktp-auth-handler/Makefile +++ b/net-im/ktp-auth-handler/Makefile @@ -2,6 +2,7 @@ PORTNAME= ktp-auth-handler DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net-im/ktp-call-ui/Makefile b/net-im/ktp-call-ui/Makefile index 63ad066e0f44..06fd4f2099a3 100644 --- a/net-im/ktp-call-ui/Makefile +++ b/net-im/ktp-call-ui/Makefile @@ -2,6 +2,7 @@ PORTNAME= ktp-call-ui DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net-im/ktp-common-internals/Makefile b/net-im/ktp-common-internals/Makefile index fb9e23a2847a..3f9f4a5ea95e 100644 --- a/net-im/ktp-common-internals/Makefile +++ b/net-im/ktp-common-internals/Makefile @@ -2,6 +2,7 @@ PORTNAME= ktp-common-internals DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net-im/ktp-contact-list/Makefile b/net-im/ktp-contact-list/Makefile index e446a46c4d21..17fd860d9c7d 100644 --- a/net-im/ktp-contact-list/Makefile +++ b/net-im/ktp-contact-list/Makefile @@ -2,6 +2,7 @@ PORTNAME= ktp-contact-list DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net-im/ktp-contact-runner/Makefile b/net-im/ktp-contact-runner/Makefile index a48b860b7cdd..726d13ccb89c 100644 --- a/net-im/ktp-contact-runner/Makefile +++ b/net-im/ktp-contact-runner/Makefile @@ -2,6 +2,7 @@ PORTNAME= ktp-contact-runner DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net-im/ktp-desktop-applets/Makefile b/net-im/ktp-desktop-applets/Makefile index 7ba4ee186a6c..ee0ab4e5fece 100644 --- a/net-im/ktp-desktop-applets/Makefile +++ b/net-im/ktp-desktop-applets/Makefile @@ -2,6 +2,7 @@ PORTNAME= ktp-desktop-applets DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net-im/ktp-filetransfer-handler/Makefile b/net-im/ktp-filetransfer-handler/Makefile index 883bc0a294a4..7491e02a4606 100644 --- a/net-im/ktp-filetransfer-handler/Makefile +++ b/net-im/ktp-filetransfer-handler/Makefile @@ -2,6 +2,7 @@ PORTNAME= ktp-filetransfer-handler DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net-im/ktp-kded-module/Makefile b/net-im/ktp-kded-module/Makefile index fdd0db4c3071..792da9ac0652 100644 --- a/net-im/ktp-kded-module/Makefile +++ b/net-im/ktp-kded-module/Makefile @@ -2,6 +2,7 @@ PORTNAME= ktp-kded-module DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net-im/ktp-send-file/Makefile b/net-im/ktp-send-file/Makefile index 7cccdca12b72..547a943a02cf 100644 --- a/net-im/ktp-send-file/Makefile +++ b/net-im/ktp-send-file/Makefile @@ -2,6 +2,7 @@ PORTNAME= ktp-send-file DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net-im/ktp-text-ui/Makefile b/net-im/ktp-text-ui/Makefile index 4c70aee9d6b7..665d902144d9 100644 --- a/net-im/ktp-text-ui/Makefile +++ b/net-im/ktp-text-ui/Makefile @@ -2,6 +2,7 @@ PORTNAME= ktp-text-ui DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net-im kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net-im/libaccounts-qt5/Makefile b/net-im/libaccounts-qt5/Makefile index 74ed526061fa..0d24802e5161 100644 --- a/net-im/libaccounts-qt5/Makefile +++ b/net-im/libaccounts-qt5/Makefile @@ -3,7 +3,7 @@ PORTNAME= libaccounts-qt5 PORTVERSION= 1.13 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= net-im MASTER_SITES= https://drive.google.com/uc?export=download&id=0B8fX9XOwH_g4cTRCaktXNDRmMXM&dummy= \ LOCAL/rakuco diff --git a/net-im/libjreen/Makefile b/net-im/libjreen/Makefile index 121ebf6e2971..5698415bc4d2 100644 --- a/net-im/libjreen/Makefile +++ b/net-im/libjreen/Makefile @@ -3,7 +3,7 @@ PORTNAME= libjreen PORTVERSION= 1.1.1 DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im MAINTAINER= akuz84@gmail.com diff --git a/net-im/libqtelegram-ae/Makefile b/net-im/libqtelegram-ae/Makefile index 86fa01ae033f..35fc8db21607 100644 --- a/net-im/libqtelegram-ae/Makefile +++ b/net-im/libqtelegram-ae/Makefile @@ -3,7 +3,7 @@ PORTNAME= libqtelegram-ae PORTVERSION= 6.1 -PORTREVISION= 3 +PORTREVISION= 4 DISTVERSIONPREFIX= v DISTVERSIONSUFFIX= -stable CATEGORIES= net-im diff --git a/net-im/libsignon-glib/Makefile b/net-im/libsignon-glib/Makefile index da03dd148d69..40e7cd3c78d1 100644 --- a/net-im/libsignon-glib/Makefile +++ b/net-im/libsignon-glib/Makefile @@ -2,7 +2,7 @@ PORTNAME= libsignon-glib PORTVERSION= 1.14 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im DIST_SUBDIR= KDE/${GL_ACCOUNT} diff --git a/net-im/licq-osd/Makefile b/net-im/licq-osd/Makefile index ef14211bb6af..268f257c506a 100644 --- a/net-im/licq-osd/Makefile +++ b/net-im/licq-osd/Makefile @@ -3,7 +3,7 @@ PORTNAME= osd PORTVERSION= 1.9.0 -PORTREVISION= 0 +PORTREVISION= 1 PORTEPOCH= 2 CATEGORIES= net-im PKGNAMEPREFIX= licq- diff --git a/net-im/licq-qt-gui/Makefile b/net-im/licq-qt-gui/Makefile index 271b6a8def89..ad0aa1072b4e 100644 --- a/net-im/licq-qt-gui/Makefile +++ b/net-im/licq-qt-gui/Makefile @@ -3,7 +3,7 @@ PORTNAME= qt-gui PORTVERSION= 1.9.0 -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= net-im PKGNAMEPREFIX= licq- PKGNAMESUFFIX?= ${KDE_SUFFIX}${PKGNAMESUFFIX2} diff --git a/net-im/psi/Makefile b/net-im/psi/Makefile index 5d6191e14774..b3e02a3f6db3 100644 --- a/net-im/psi/Makefile +++ b/net-im/psi/Makefile @@ -3,6 +3,7 @@ PORTNAME= psi DISTVERSION= 1.3 +PORTREVISION= 1 CATEGORIES= net-im MASTER_SITES= SF/${PORTNAME}/Psi/${PORTVERSION} diff --git a/net-im/qTox/Makefile b/net-im/qTox/Makefile index f320a9dac9a0..a0d34b21c0e3 100644 --- a/net-im/qTox/Makefile +++ b/net-im/qTox/Makefile @@ -4,7 +4,7 @@ PORTNAME= qTox DISTVERSIONPREFIX= v DISTVERSION= 1.16.3 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net-im net-p2p MAINTAINER= yuri@FreeBSD.org diff --git a/net-im/qxmpp-qt5/Makefile b/net-im/qxmpp-qt5/Makefile index fcb688709920..f42fe406fc1e 100644 --- a/net-im/qxmpp-qt5/Makefile +++ b/net-im/qxmpp-qt5/Makefile @@ -1,5 +1,6 @@ # $FreeBSD$ +PORTREVISION= 2 PKGNAMESUFFIX= -qt5 CONFLICTS= qxmpp-[0-9]* diff --git a/net-im/qxmpp/Makefile b/net-im/qxmpp/Makefile index a8194faafffc..0f1b73f28808 100644 --- a/net-im/qxmpp/Makefile +++ b/net-im/qxmpp/Makefile @@ -3,7 +3,7 @@ PORTNAME= qxmpp PORTVERSION= 0.9.3 -PORTREVISION= 1 +PORTREVISION?= 1 # net-im/qxmpp-qt5 DISTVERSIONPREFIX= v CATEGORIES= net-im diff --git a/net-im/ricochet/Makefile b/net-im/ricochet/Makefile index 2eb81808b244..8fd498196114 100644 --- a/net-im/ricochet/Makefile +++ b/net-im/ricochet/Makefile @@ -4,7 +4,7 @@ PORTNAME= ricochet PORTVERSION= 1.1.4 DISTVERSIONPREFIX= v -PORTREVISION= 16 +PORTREVISION= 17 CATEGORIES= net-im net-p2p MAINTAINER= yuri@FreeBSD.org diff --git a/net-im/scudcloud/Makefile b/net-im/scudcloud/Makefile index 36229adb4084..2c11fa0ca929 100644 --- a/net-im/scudcloud/Makefile +++ b/net-im/scudcloud/Makefile @@ -4,6 +4,7 @@ PORTNAME= scudcloud PORTVERSION= 1.65 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= net-im MAINTAINER= nivit@FreeBSD.org diff --git a/net-im/teamwords/Makefile b/net-im/teamwords/Makefile index a7bb1cbe784c..3bc0e728907f 100644 --- a/net-im/teamwords/Makefile +++ b/net-im/teamwords/Makefile @@ -4,7 +4,7 @@ PORTNAME= teamwords PORTVERSION= 0.2.1 DISTVERSIONPREFIX= v -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= net-im MAINTAINER= kmoore@FreeBSD.org diff --git a/net-im/telegram-desktop/Makefile b/net-im/telegram-desktop/Makefile index 8d46e098c18c..c55266bac611 100644 --- a/net-im/telegram-desktop/Makefile +++ b/net-im/telegram-desktop/Makefile @@ -3,6 +3,7 @@ PORTNAME= telegram-desktop DISTVERSIONPREFIX= v DISTVERSION= 1.5.4 +PORTREVISION= 1 CATEGORIES= net-im MAINTAINER= henry.hu.sh@gmail.com diff --git a/net-im/telegramqml/Makefile b/net-im/telegramqml/Makefile index 3ba0e403382f..64d2267b19b0 100644 --- a/net-im/telegramqml/Makefile +++ b/net-im/telegramqml/Makefile @@ -4,7 +4,7 @@ PORTNAME= telegramqml PORTVERSION= 0.9.2 DISTVERSIONPREFIX= v -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-im MAINTAINER= henry.hu.sh@gmail.com diff --git a/net-im/telepathy-accounts-signon/Makefile b/net-im/telepathy-accounts-signon/Makefile index 01a00da0bed9..bcf41a538885 100644 --- a/net-im/telepathy-accounts-signon/Makefile +++ b/net-im/telepathy-accounts-signon/Makefile @@ -2,6 +2,7 @@ PORTNAME= telepathy-accounts-signon PORTVERSION= 1.0 +PORTREVISION= 1 CATEGORIES= net-im DIST_SUBDIR= KDE/${GL_ACCOUNT} diff --git a/net-im/telepathy-logger-qt5/Makefile b/net-im/telepathy-logger-qt5/Makefile index 6483fb5d2918..6c0e5faa6444 100644 --- a/net-im/telepathy-logger-qt5/Makefile +++ b/net-im/telepathy-logger-qt5/Makefile @@ -2,7 +2,7 @@ PORTNAME= telepathy-logger-qt DISTVERSION= 17.08.0 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-im MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= stable/${PORTNAME}/${PORTVERSION:R}/src diff --git a/net-im/telepathy-qt/Makefile b/net-im/telepathy-qt/Makefile index ecfb5db41a11..479fc37da457 100644 --- a/net-im/telepathy-qt/Makefile +++ b/net-im/telepathy-qt/Makefile @@ -3,7 +3,7 @@ PORTNAME= telepathy-qt PORTVERSION= 0.9.7 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net-im MASTER_SITES= https://telepathy.freedesktop.org/releases/${PORTNAME}/ diff --git a/net-im/turpial/Makefile b/net-im/turpial/Makefile index 87671699cf13..64eaae7b32ce 100644 --- a/net-im/turpial/Makefile +++ b/net-im/turpial/Makefile @@ -3,7 +3,7 @@ PORTNAME= turpial PORTVERSION= 3.0 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= net-im python MASTER_SITES= http://files.turpial.org.ve/sources/stable/ diff --git a/net-mgmt/nagstamon/Makefile b/net-mgmt/nagstamon/Makefile index 8c2592bfc943..487a5935ffe1 100644 --- a/net-mgmt/nagstamon/Makefile +++ b/net-mgmt/nagstamon/Makefile @@ -3,6 +3,7 @@ PORTNAME= nagstamon PORTVERSION= 3.2.1 +PORTREVISION= 1 CATEGORIES= net-mgmt python MASTER_SITES= https://nagstamon.ifw-dresden.de/files/stable/ \ LOCAL/ehaupt diff --git a/net-mgmt/onionlauncher/Makefile b/net-mgmt/onionlauncher/Makefile index 3a363e106175..f675cef1157a 100644 --- a/net-mgmt/onionlauncher/Makefile +++ b/net-mgmt/onionlauncher/Makefile @@ -3,7 +3,7 @@ PORTNAME= onionlauncher PORTVERSION= 0.0.2 DISTVERSIONPREFIX= v -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-mgmt MAINTAINER= neel@neelc.org diff --git a/net-mgmt/seafile-gui/Makefile b/net-mgmt/seafile-gui/Makefile index 8e188f927c29..86839aae70d4 100644 --- a/net-mgmt/seafile-gui/Makefile +++ b/net-mgmt/seafile-gui/Makefile @@ -3,7 +3,7 @@ PORTNAME= seafile-gui DISTVERSIONPREFIX= v DISTVERSION= 6.1.7 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net-mgmt devel PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ diff --git a/net-p2p/awgg/Makefile b/net-p2p/awgg/Makefile index b1decc7890ad..33f6c5af8129 100644 --- a/net-p2p/awgg/Makefile +++ b/net-p2p/awgg/Makefile @@ -2,6 +2,7 @@ PORTNAME= awgg PORTVERSION= 0.5.1 +PORTREVISION= 1 CATEGORIES= net-p2p PKGNAMESUFFIX= ${LAZARUS_PKGNAMESUFFIX} diff --git a/net-p2p/bitcoin/Makefile b/net-p2p/bitcoin/Makefile index 280f740ed851..df611c153797 100644 --- a/net-p2p/bitcoin/Makefile +++ b/net-p2p/bitcoin/Makefile @@ -3,7 +3,7 @@ PORTNAME= bitcoin PORTVERSION= 0.17.1 -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= net-p2p finance MASTER_SITES= https://bitcoincore.org/bin/bitcoin-core-${PORTVERSION}/:DEFAULT \ LOCAL/swills:icon diff --git a/net-p2p/ktorrent/Makefile b/net-p2p/ktorrent/Makefile index df2c7b27e9f9..40d995c37f57 100644 --- a/net-p2p/ktorrent/Makefile +++ b/net-p2p/ktorrent/Makefile @@ -4,6 +4,7 @@ PORTNAME= ktorrent DISTVERSION= 5.1.1 +PORTREVISION= 1 CATEGORIES= net-p2p kde MASTER_SITES= KDE/stable/${PORTNAME}/${DISTVERSION}/ diff --git a/net-p2p/libktorrent/Makefile b/net-p2p/libktorrent/Makefile index 982767674cbc..aa9cc6dc6be8 100644 --- a/net-p2p/libktorrent/Makefile +++ b/net-p2p/libktorrent/Makefile @@ -2,7 +2,7 @@ PORTNAME= libktorrent DISTVERSION= 2.1.0 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= net-p2p kde DIST_SUBDIR= KDE/${PORTNAME} diff --git a/net-p2p/litecoin/Makefile b/net-p2p/litecoin/Makefile index fdaf030bfb98..ff649d9ae577 100644 --- a/net-p2p/litecoin/Makefile +++ b/net-p2p/litecoin/Makefile @@ -4,7 +4,7 @@ PORTNAME= litecoin PORTVERSION= 0.16.3 DISTVERSIONPREFIX= v -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= net-p2p finance MAINTAINER= swills@FreeBSD.org diff --git a/net-p2p/namecoin/Makefile b/net-p2p/namecoin/Makefile index 266484f4e90a..57a2efb97acc 100644 --- a/net-p2p/namecoin/Makefile +++ b/net-p2p/namecoin/Makefile @@ -4,7 +4,7 @@ PORTNAME= namecoin PORTVERSION= 0.17.0 DISTVERSIONPREFIX= nc -PORTREVISION= 3 +PORTREVISION= 4 PORTEPOCH= 1 CATEGORIES= net-p2p dns diff --git a/net-p2p/qbittorrent/Makefile b/net-p2p/qbittorrent/Makefile index 08ceec58cdb9..ab4899e3358d 100644 --- a/net-p2p/qbittorrent/Makefile +++ b/net-p2p/qbittorrent/Makefile @@ -3,6 +3,7 @@ PORTNAME= qbittorrent DISTVERSION= 4.1.5 +PORTREVISION= 1 CATEGORIES= net-p2p ipv6 MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} diff --git a/net-p2p/qtum/Makefile b/net-p2p/qtum/Makefile index d396cbbedd27..c1ad15994801 100644 --- a/net-p2p/qtum/Makefile +++ b/net-p2p/qtum/Makefile @@ -4,7 +4,7 @@ PORTNAME= qtum PORTVERSION= 0.16.2 DISTVERSIONPREFIX= mainnet-ignition-v -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net-p2p finance MAINTAINER= vd@FreeBSD.org diff --git a/net-p2p/retroshare/Makefile b/net-p2p/retroshare/Makefile index a1f9553c3232..91e474ca19f1 100644 --- a/net-p2p/retroshare/Makefile +++ b/net-p2p/retroshare/Makefile @@ -4,7 +4,7 @@ PORTNAME= retroshare DISTVERSIONPREFIX= v DISTVERSION= 0.6.4 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-p2p PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ diff --git a/net-p2p/torrent-file-editor/Makefile b/net-p2p/torrent-file-editor/Makefile index 596f51a98ca1..59948eb41bca 100644 --- a/net-p2p/torrent-file-editor/Makefile +++ b/net-p2p/torrent-file-editor/Makefile @@ -3,7 +3,7 @@ PORTNAME= torrent-file-editor PORTVERSION= 0.3.13 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-p2p MASTER_SITES= SF/${PORTNAME}/v${PORTVERSION} diff --git a/net-p2p/transmission-qt/Makefile b/net-p2p/transmission-qt/Makefile index 747a0efb25a5..3aa8ca84e0a2 100644 --- a/net-p2p/transmission-qt/Makefile +++ b/net-p2p/transmission-qt/Makefile @@ -1,6 +1,6 @@ # $FreeBSD$ -PORTREVISION= 4 +PORTREVISION= 5 PKGNAMESUFFIX= -${FLAVOR} LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ diff --git a/net-p2p/transmission-remote-gui/Makefile b/net-p2p/transmission-remote-gui/Makefile index 89acaa7f698d..cb65e99faa0d 100644 --- a/net-p2p/transmission-remote-gui/Makefile +++ b/net-p2p/transmission-remote-gui/Makefile @@ -3,6 +3,7 @@ PORTNAME= transmission-remote-gui PORTVERSION= 5.15.4 DISTVERSIONPREFIX= v +PORTREVISION= 1 CATEGORIES= net-p2p PKGNAMESUFFIX= ${LAZARUS_PKGNAMESUFFIX} diff --git a/net-p2p/transmission/Makefile b/net-p2p/transmission/Makefile index 56b331eeccab..5b8a668ad771 100644 --- a/net-p2p/transmission/Makefile +++ b/net-p2p/transmission/Makefile @@ -2,7 +2,7 @@ PORTNAME= transmission DISTVERSION= 2.94 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net-p2p MAINTAINER= rigoletto@FreeBSD.org diff --git a/net-p2p/tribler/Makefile b/net-p2p/tribler/Makefile index 3baade02f477..ed0a4e326599 100644 --- a/net-p2p/tribler/Makefile +++ b/net-p2p/tribler/Makefile @@ -3,7 +3,7 @@ PORTNAME= tribler PORTVERSION= 6.5.2 -PORTREVISION= 13 +PORTREVISION= 14 CATEGORIES= net-p2p MASTER_SITES= https://github.com/Tribler/tribler/releases/download/v${PORTVERSION}/ DISTNAME= Tribler-v${PORTVERSION} diff --git a/net/akonadi-calendar/Makefile b/net/akonadi-calendar/Makefile index 3199449d9598..aab35c23bdeb 100644 --- a/net/akonadi-calendar/Makefile +++ b/net/akonadi-calendar/Makefile @@ -2,6 +2,7 @@ PORTNAME= akonadi-calendar DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net/akonadi-contacts/Makefile b/net/akonadi-contacts/Makefile index e8e631923959..d7ba7fc0890a 100644 --- a/net/akonadi-contacts/Makefile +++ b/net/akonadi-contacts/Makefile @@ -2,6 +2,7 @@ PORTNAME= akonadi-contacts DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net/akonadi-mime/Makefile b/net/akonadi-mime/Makefile index 7725ea7c53a3..a955272dd976 100644 --- a/net/akonadi-mime/Makefile +++ b/net/akonadi-mime/Makefile @@ -2,6 +2,7 @@ PORTNAME= akonadi-mime DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net/akonadi-notes/Makefile b/net/akonadi-notes/Makefile index fa9e4cf23c70..5e8efae79b38 100644 --- a/net/akonadi-notes/Makefile +++ b/net/akonadi-notes/Makefile @@ -2,6 +2,7 @@ PORTNAME= akonadi-notes DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net/akonadi-search/Makefile b/net/akonadi-search/Makefile index 7aa7a05b7709..6ed65e766992 100644 --- a/net/akonadi-search/Makefile +++ b/net/akonadi-search/Makefile @@ -2,6 +2,7 @@ PORTNAME= akonadi-search DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net/avahi-qt5/Makefile b/net/avahi-qt5/Makefile index 314cfed2263f..98d134708939 100644 --- a/net/avahi-qt5/Makefile +++ b/net/avahi-qt5/Makefile @@ -1,7 +1,7 @@ # Created by: Michael Johnson <ahze@FreeBSD.org # $FreeBSD$ -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= net PKGNAMESUFFIX= -qt5 diff --git a/net/calendarsupport/Makefile b/net/calendarsupport/Makefile index f8f22c1252af..8be4dc237deb 100644 --- a/net/calendarsupport/Makefile +++ b/net/calendarsupport/Makefile @@ -2,6 +2,7 @@ PORTNAME= calendarsupport DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net/eventviews/Makefile b/net/eventviews/Makefile index 61a66c7c609b..690ba0dded92 100644 --- a/net/eventviews/Makefile +++ b/net/eventviews/Makefile @@ -2,6 +2,7 @@ PORTNAME= eventviews DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net/incidenceeditor/Makefile b/net/incidenceeditor/Makefile index 22799fc2d2c2..6e3b49e6e4d1 100644 --- a/net/incidenceeditor/Makefile +++ b/net/incidenceeditor/Makefile @@ -2,6 +2,7 @@ PORTNAME= incidenceeditor DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net/kalarmcal/Makefile b/net/kalarmcal/Makefile index dfa80b3e5f6d..0114f473faa5 100644 --- a/net/kalarmcal/Makefile +++ b/net/kalarmcal/Makefile @@ -2,6 +2,7 @@ PORTNAME= kalarmcal DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net/kblog/Makefile b/net/kblog/Makefile index cfaab1b1b977..9e1dfd9ef367 100644 --- a/net/kblog/Makefile +++ b/net/kblog/Makefile @@ -2,6 +2,7 @@ PORTNAME= kblog DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net/kcalcore/Makefile b/net/kcalcore/Makefile index 349833c13a8b..199ced099be3 100644 --- a/net/kcalcore/Makefile +++ b/net/kcalcore/Makefile @@ -2,6 +2,7 @@ PORTNAME= kcalcore DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net/kcalutils/Makefile b/net/kcalutils/Makefile index 6bd30d904feb..32d08a34a08e 100644 --- a/net/kcalutils/Makefile +++ b/net/kcalutils/Makefile @@ -2,6 +2,7 @@ PORTNAME= kcalutils DISTVERSION= ${KDE_APPLICATIONS_VERSION} +PORTREVISION= 1 CATEGORIES= net kde kde-applications MAINTAINER= kde@FreeBSD.org diff --git a/net/kcontacts/Makefile b/net/kcontacts/Makefile index 5687691de8ff..f38fe4522562 100644 --- a/net/kcontacts/Makefile +++ b/net/kcontacts/Makefile @@ -2,6 +2,7 @@ |