Commit History - (may be incomplete: see SVNWeb link above for full details) |
Date | By | Description |
30 Jan 2021 18:08:57
0.6.4_5

|
tcberner  |
graphics/opencv: update to 4.5.1 -- and make port more easily maintainable
This is a major upgrade from 3.x to 4.x.
Changelog from versions 3.4.1--4.5.1 can be found here:
https://github.com/opencv/opencv/wiki/ChangeLog
Note: this has explicitely not been added as a new graphics/opencv4 port, but
replaces the
previous graphics/opencv[3] port. Again, to improve maintainability by not
giving ports
the option to pick the "wrong one" - this leads however to some abandoned
ports being
broken.
The port has been greatly simplified:
* graphics/opencv-core which existed to enable ffmpeg to depend on opencv,
and vice versa
has been removed. ffmpeg no longer can depend on opencv. (Only the first 15 lines of the commit message are shown above ) |
31 Oct 2020 08:31:10
0.6.4_4

|
tcberner  |
www/libmicrohttpd: Update to 0.9.71
- mark dependent ports broken, where there was no action from the
maintainers in due time.
PR: 249453
PR: 250101
PR: 250083
PR: 250100
Submitted by: daniel.engberg.lists@pyret.net
Approved by: gaod@hychen.org (maintainer) |
30 May 2020 09:48:05
0.6.4_4

|
tcberner  |
net-p2p/retroshare: prepare for Qt5-5.15 |
06 Nov 2019 18:58:04
0.6.4_4

|
zeising  |
Add USES=xorg USES=gl, ports categories n
Add USES=xorg and USES=gl to ports in categories starting with 'n'.
While here, try to sprinkle other USES (mostly gnome and sdl) as needed. |
05 Aug 2019 23:06:50
0.6.4_4

|
jbeich  |
multimedia/ffmpeg: update to 4.2
Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n4.2:/Changelog
ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/ |
22 Apr 2019 08:26:59
0.6.4_3

|
tobik  |
net-p2p/retroshare: Switch from devel/upnp to net/miniupnpc
RetroShare does not build with upnp >= 1.8. Upstream does not have
a solution for this yet other than suggesting to switch to using
miniupnpc as a workaround.
PR: 237406
Submitted by: tobik
Approved by: peter@netkey.at (maintainer) |
16 Jan 2019 11:13:45
0.6.4_2

|
tijl  |
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 (Only the first 15 lines of the commit message are shown above ) |
16 Dec 2018 14:49:16
0.6.4_1

|
tcberner  |
Update Qt5 to 5.12.0
http://blog.qt.io/blog/2018/12/06/qt-5-12-lts-released/
- This breaks support for libressl again. Patches are welcome.
PR: 233705
Exp-run by: antoine |
06 Nov 2018 01:50:27
0.6.4_1

|
jbeich  |
multimedia/ffmpeg: update to 4.1
Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n4.1:/Changelog
ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/ |
31 Aug 2018 12:51:34
0.6.4

|
jhale  |
Fix build with Qt 5.11
USE_GNOME requires USES=gnome
PR: 230884
Obtained from: upstream |
28 Jun 2018 20:48:33
0.6.4

|
swills  |
net-p2p/retroshare: Update to 0.6.4
PR: 229367
Submitted by: peter@netkey.at (maintainer) |
28 Jun 2018 17:39:55
0.6.3_2

|
tcberner  |
Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mk
From now on, ports that depend on Qt4 will have to set
USES= qt:4
USE_QT= foo bar
ports depending on Qt5 will use
USES= qt:5
USE_QT= foo bar
PR: 229225
Exp-run by: antoine
Reviewed by: mat
Approved by: portmgr (antoine)
Differential Revision: -https://reviews.freebsd.org/D15540 |
09 May 2018 20:27:52
0.6.3_2

|
swills  |
Bump PORTREVISION on more opencv consumers due to opencv update |
02 May 2018 17:41:01
0.6.3_1

|
jbeich  |
net-p2p/retroshare: unbreak with ffmpeg 4.0
gui/VideoProcessor.cpp:456:40: error: use of undeclared identifier
'CODEC_CAP_TRUNCATED'
if (encoding_codec->capabilities & CODEC_CAP_TRUNCATED)
^
gui/VideoProcessor.cpp:457:36: error: use of undeclared identifier
'CODEC_FLAG_TRUNCATED'
encoding_context->flags |= CODEC_FLAG_TRUNCATED;
^
gui/VideoProcessor.cpp:458:32: error: use of undeclared identifier
'CODEC_FLAG_PSNR'
encoding_context->flags |= CODEC_FLAG_PSNR;//Peak signal-to-noise ratio
^
gui/VideoProcessor.cpp:459:32: error: use of undeclared identifier
'CODEC_CAP_PARAM_CHANGE'
encoding_context->flags |= CODEC_CAP_PARAM_CHANGE;
^
gui/VideoProcessor.cpp:552:39: error: use of undeclared identifier
'CODEC_CAP_TRUNCATED' (Only the first 15 lines of the commit message are shown above ) |
02 May 2018 15:07:27
0.6.3_1

|
jbeich  |
multimedia/ffmpeg: update to 4.0
- FFSERVER support was removed upstream
- libressl now uses libtls backend instead of patching openssl one
- Clang i386 no longer uses 16-byte aligned stack
Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n4.0:/Changelog
ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/
PR: 227726
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D15175 |
22 Feb 2018 07:55:38
0.6.3

|
yuri  |
net-p2p/retroshare: Update to 0.6.3
Additional port changes:
* Changed to DISTVERSION
* Added LICENSE_FILE
* Updated USE_GNOME, USE_QT5
* Removed INSTALLS_ICONS
PR: 224661
Submitted by: peter@netkey.at (maintainer)
Approved by: tcberner (mentor, implicit) |
21 Dec 2017 21:01:37
0.6.1_9

|
dim  |
Fix build of net-p2p/retroshare with recent versions of clang.
Approved by: portmgr blanket
Submitted by: Walter Schwarzenfeld <w.schwarzenfeld@utanet.at>
PR: 216637
MFH: 2017Q4 |
19 Dec 2017 03:53:02
0.6.1_8

|
linimon  |
Mark broken on arm due to regression in clang 4.0.
PR: 216637
Submitted by: jbeich
Approved by: portmgr (tier-2 blanket), maintainer timeout (peter@netkey.at,
several months) |
21 Oct 2017 06:50:50
0.6.1_8

|
jbeich  |
multimedia/ffmpeg: update to 3.4
Notable changes:
- i386/amd64 now depend on NASM per
https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/4f9297ac3b39
- NETCDF is now MYSOFA but the dependency doesn't exist in ports yet
- SCHROEDINGER is gone per
https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/220b24c7c9
- DRM, LIBRSVG2, LIBXML2 are new options
- ABI isn't completely compatible: some structs have changed
Minor cleanup:
- Don't pass --disable-{in,out}dev when it's already blocked by disabled
dependency
- Drop redundant "Enable" from option descriptions
- Switch CDIO_DESC to use Mk/bsd.options.desc.mk
Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n3.4:/Changelog
ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/
PR: 223057
Exp-run by: antoine |
22 Sep 2017 10:48:29
0.6.1_7

|
mat  |
Remove USES=execinfo.
PR: 220271
Submitted by: mat (review), Yasuhiro KIMURA (PR)
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D11488 |
23 May 2017 05:03:16
0.6.1_7

|
rezny  |
Revision bump of all ports with USE_GL after consolidation of mesa-libs
Approved by: swills (mentor)
Differential Revision: https://reviews.freebsd.org/D10845 |
25 Apr 2017 08:20:31
0.6.1_6

|
riggs  |
Chase ffmpeg 3.3 update (ABI changes)
PR: 218658
Submitted by: riggs |
14 Apr 2017 05:30:25
0.6.1_5

|
jbeich  |
graphics/opencv: back out r423216 and r423063 (replaying r423316)
Renaming didn't help to unblock 3.x progress as co-existence with 2.x
was no less complex than simply fixing consumers. This commit also
restores directory-level history accidentally lost via git-svn.
PR: 210505
Pointy hat to: jbeich (should've discussed first) |
23 Jan 2017 18:52:57
0.6.1_4

|
sunpoet  |
Update to 0.9.52
- While I'm here:
- Remove USE_OPENSSL: it is not required after libmicrospdy removal
- Bump PORTREVISION for dependent ports
Changes: https://gnunet.org/git/libmicrohttpd.git/tree/ChangeLog
PR: 216382
Submitted by: Hung-Yi Chen <gaod@hychen.org> (maintainer) |
11 Dec 2016 15:22:47
0.6.1_3

|
jbeich  |
multimedia/ffmpeg: update to 3.2.2
Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n3.2.2:/Changelog
PR: 207547
Submitted by: riggs, ebirth@b0ss.net (libressl fix)
Exp-run by: antoine (3 tries) |
26 Nov 2016 23:41:17
0.6.1_2

|
jhale  |
Update security/gpgme-* to 1.8.0
In this version, libgpgme-pthread.so has been removed in favor of just
using libgpgme.so as the thread-safe library. PORTREVISION has been
bumped on all ports depending on security/gpgme so that any that may have
linked to -lgpgme-pthread will link to -lgpgme instead.
The Python module provided by security/py-gpgme has been renamed upstream
from pyme3 to gpg. This removes the conflict with security/py-pyme,
although security/py-gpgme is still the direct replacement of that
module. |
28 Oct 2016 13:10:00
0.6.1_1

|
tcberner  |
Remove wrongly used QT-related plist-subs from plist
%%QT_BINDIR%% and %%QT_LIBDIR%% represent the relative location of the
Qt binaries and libraries respectively -- they are only 'bin' and 'lib'
by chance, and should not be used that way.
Approved by: portmgr (blanket), rakuco (mentor) |
13 Oct 2016 20:46:23
0.6.1_1

|
pawel  |
Use version tagname
Submitted by: mat |
12 Oct 2016 23:27:18
0.6.1

|
pawel  |
Update to version 0.6.1
PR: 213339
Submitted by: Christian Sturm
Approved by: maintainer |
03 Oct 2016 17:47:08
0.6.0e_2

|
jbeich  |
graphics/opencv: add suffix to make room for 3.x series
To avoid confusion, the main port is to track the latest release.
Whether to rename includes/libraries as well making it possible to
install 2.x and 3.x side-by-side remains to be investigated.
PR: 210505 (for tracking)
Inspired by: PkgSrc |
04 Sep 2016 13:27:04
0.6.0e_1

|
pi  |
net-p2p/retroshare: Update fixing connectivity problems in 0.6.0
- Updates to the current revision to 9f7ef8b
- Deletes no longer relevant patches
- Makes RS show the code revision when GH_TAGNAME is explicitly defined
- Changes PORTVERSION to 0.6.0e to reflect the fact that extra commits are added
- Bumps PORTREVISION
- also fixes the build in C++11 mode (See PR#212365)
PR: 210682
Submitted by: Yuri Victorovich <yuri@rawbw.com> (maintainer)
Approved by: peter@netkey.at (maintainer) |
27 May 2016 18:43:52
0.6.0

|
pi  |
net-p2p/retroshare: update WWW
PR: 207550 |
21 May 2016 02:10:59
0.6.0

|
pi  |
net-p2p/retroshare: 0.5.5c -> 0.6.0
Changes:
https://retroshareteam.wordpress.com/2016/02/07/release-notes-for-final-0-6-0/
- distsite moved to github
PR: 207550
Submitted by: w.schwarzenfeld@aon.at, Yuri Victorovich <yuri@rawbw.com>,
peter@netkey.at (maintainer)
Reviewed by: feld |
19 May 2016 10:44:12
0.5.5c_3

|
amdmi3  |
- Fix trailing whitespace in pkg-descrs, categories [g-n]*
Approved by: portmgr blanket |
25 Apr 2016 14:41:38
0.5.5c_3

|
mat  |
Don't lie about having a configure script.
Reported by: antoine
Sponsored by: Absolight |
01 Apr 2016 14:16:20
0.5.5c_3

|
mat  |
Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.
With hat: portmgr
Sponsored by: Absolight |
14 May 2015 10:15:09
0.5.5c_3

|
mat  |
MASTER_SITES cleanup.
- Replace ${MASTER_SITE_FOO} with FOO.
- Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9%
of the time.)
- Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and
no hint of what it should be was present.
- Fix some logic.
- And generally, make things more simple and easy to understand.
While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and
SAMBA macros.
Also, replace some EXTRACT_SUFX occurences with USES=tar:*.
Checked by: make fetch-urlall-list
With hat: portmgr
Sponsored by: Absolight |
19 Nov 2014 11:49:06
0.5.5c_3

|
kwm  |
The FreeBSD GNOME team proudly presents GNOME 3.14 and Cinnamon 2.2.
Gnome 3.14.1 and Cinnamon 2.2.16 are supported on FreeBSD 9.3-RELEASE and up.
This commit removes the old GNOME 2 desktop, bindings and some ports that
can't be compiled. A few ports where updated to more recent versions to
allow them to compile with this update.
Apart from updating ports to newer versions
GDM is more integrated with gnome-shell now, and handles several things for
the GNOME desktop such as screen locking. If you want to use GNOME 3 via
startx, you will have to add your own lock screen/screensaver. For example
xscreensaver
can be used for sessions started without GDM.
Shell Extensions can be installed via https://extensions.gnome.org/ , we have (Only the first 15 lines of the commit message are shown above ) |
12 Nov 2014 21:31:28
0.5.5c_3

|
antoine  |
Cleanup plist |
26 Aug 2014 14:06:09
0.5.5c_3

|
tijl  |
- Fix missing library problems when the linker enforces explicit linking
PR: 192062
Exp-run by: antoine
Approved by: portmgr (antoine) |
30 Jul 2014 03:57:24
0.5.5c_2

|
pi  |
security/libgcrypt: 1.5.3_3 -> 1.6.1
- Update to 1.6.1
- Remove some unneeded patches
- Fix pkg-plist
- report configure bug upstream
https://bugs.g10code.com/gnupg/issue1668
- report API breakage downstream and find that MacPorts had the same issue
https://rt.cpan.org/Ticket/Display.html?id=97201
- bump PORTREVISION for dependent ports (approx. 100 ports)
- Thanks to exp-run by antoine@ to find ports that break
- patch ports that would otherwise break
security/shishi with PR 192164 is already committed
[1] devel/ccrtp
[2] editors/abiword
[3] security/p5-Crypt-GCrypt
PR: 191256, 192162 [1], 192163 [2], 192166 [3]
Submitted by: Carlos Jacobo Puga Medina <cjpugmed@gmail.com>
Approved by: maintainer timeout, antoine (exp-run), portmgr (implicit) |
11 Jul 2014 10:26:02
0.5.5c_1

|
tijl  |
- Add USES=libtool to devel/upnp and bump dependent ports
- Add USES=pathfix and INSTALL_TARGET=install-strip
- Add a patch to fix definitions of ITHREAD_MUTEX_*
Approved by: portmgr (implicit, bump unstaged port) |
20 Jun 2014 18:32:15
0.5.5c

|
wg  |
net-p2p/retroshare: update to 0.5.5c
- Fix build with clang
PR: 189806
Submitted by: maintainer |
26 May 2014 08:44:35
0.5.5a_1

|
bapt  |
Convert to USES=dos2unix
With hat: portmgr |
16 Apr 2014 18:28:50
0.5.5a_1

|
zeising  |
The FreeBSD x11@ and graphics team proudly presents
a zeising, kwm production, with help from dumbbell, bdrewery:
NEW XORG ON FREEBSD 9-STABLE AND 10-STABLE
This update switches over to use the new xorg stack by default on FreeBSD 9
and 10 stable, on osversions where vt(9) is available.
It is still possible to use the old stack by specifying WITHOUT_NEW_XORG in
/etc/make.conf .
FreeBSD 8-STABLE and released versions of FreeBSD still use
the old version.
A package repository with binary packages for new xorg will
be available soon.
This patch also contains updates of libxcb and related ports, pixman, as well (Only the first 15 lines of the commit message are shown above ) |
10 Mar 2014 16:38:00
0.5.5a

|
bapt  |
Convert n* to USES=zip |
22 Nov 2013 12:55:00
0.5.5a

|
makc  |
- Convert to USES=qmake (and other USES while I'm here)
- Add state support
- Convert LIB_DEPENDS to new style, adjust USE_QT4 components, etc.
Approved by: portmgr (blanket approval) |
06 Nov 2013 15:39:09
0.5.5a

|
wg  |
net-p2p/retroshare: update to 0.5.5a
- Update to 0.5.5a
- Convert lib depends to new format
- Allow staging
PR: ports/183520
Submitted by: Peter Klett <peter netkey.at> (maintainer) |
20 Oct 2013 19:20:16
0.5.4d_2

|
jhale  |
- Update security/gpgme to 1.4.3
- Use USE_GNOME= ltverhack to correct the library version number
to what the author intended. This effectively rolls the version
number backwards, but should prevent future unneccesary version
bumps.
- Support staging
- Use options helpers
- Use new LIB_DEPENDS syntax
- Bump PORTREVISION on dependent ports |
20 Sep 2013 22:28:26
0.5.4d_1

|
bapt  |
Add NO_STAGE all over the place in preparation for the staging support (cat:
net-p2p) |
25 May 2013 14:37:03
0.5.4d_1

|
zeising  |
The FreeBSD x11 team proudly presents
an zeising, kwm, miwi, bapt, eadler production:
Xorg 7.7
Starring:
xserver 1.12.4 (new xorg only)
Mesa 8.0.4, including libGL, libGLU and dri (new xorg only)
libX11 1.5.0
libxcb 1.9
libdrm 2.4.42 (new xorg only)
freeglut 2.8.1
Also starring:
Updates to drivers and other libraries and utilities
(Only the first 15 lines of the commit message are shown above ) |
03 May 2013 16:36:41
0.5.4d_1

|
ehaupt  |
Chase security/libgcrypt update |
27 Apr 2013 11:59:29
0.5.4d

|
mva  |
- Convert USE_ICONV=yes to USES=iconv
- Change USE_GNOME=pkgconfig|gnomehack to USES=pathfix|pkgconfig while here
Reviewed by: zeising |
24 Apr 2013 18:10:32
0.5.4d

|
ak  |
- Convert USE_GETTEXT to USES (part 3)
Approved by: portmgr (bapt) |
28 Feb 2013 21:52:27
0.5.4d

|
pawel  |
- Update to version 0.5.4d [1]
- Add option to install plugins [1]
- Fix build with clang
PR: ports/175310 [1]
Submitted by: Peter Klett <peter@netkey.at> (maintainer) |
23 Jan 2013 15:00:19
0.5.4b_2

|
makc  |
Bump PORTREVISION after DESKTOP_ENTRIES update |
10 Dec 2012 19:11:12
0.5.4b_1

|
mm  |
Update PCRE to 8.32
Introduces the UTF-32 library pcre32
Bump PORTREVISION in dependent ports |
20 Oct 2012 10:54:11
0.5.4b

|
pawel  |
- Update to version 0.5.4b
- Change maintainer's email
- Convert to OptionsNG
While here:
- Add missing lib deps
- Don't install GPLv2 license file
- Correct COMMENT
PR: ports/172731
Submitted by: Peter Klett <peter@netkey.at> (maintainer)
Feature safe: yes |
06 Jun 2012 06:44:38
0.5.3a_2
|
miwi  |
- Convert USE_QT_VER=4 and QT_COMPONETS to USE_QT4
Review by: bapt, David Naylor (kde team) |
01 Jun 2012 05:26:28
0.5.3a_2
|
dinoex  |
- update png to 1.5.10 |
27 Apr 2012 14:28:11
0.5.3a_1
|
pawel  |
- Update devel/upnp to 1.6.17
- Bump all affected ports
Maintainer of net/ushare was asked for review, no response in 2 weeks |
27 Feb 2012 15:06:26
0.5.3a
|
arved  |
Update to 0.5.3a
PR: 164979
Submitted by: maintainer |
27 Jan 2012 14:41:16
0.5.2a
|
pawel  |
RetroShare is a Open Source cross-platform, private and secure decentralised
communication platform. It lets you to securely chat and share files with your
friends and family, using a web-of-trust to authenticate peers and OpenSSL to
encrypt all communication. RetroShare provides filesharing, chat, messages,
forums and channels.
WWW: http://retroshare.sourceforge.net/
PR: ports/164283
Submitted by: Peter Klett <glocke@bsdstammtisch.at> |