Commit History - (may be incomplete: see SVNWeb link above for full details) |
Date | By | Description |
30 Dec 2020 15:50:57
1.0.02

|
adridg  |
Update www/otter-browser to latest upstream release
Otter-Browser is one of the family of Qt WebEngine-based browsers.
The release notes are at
https://thedndsanctuary.eu/index.php?topic=3896.0
but can be summarized as "improved performance with large background
images" and some fixes.
The patches we carried in ports have been upstreamed independently.
Some extra churn here to explain the intermediate-release stuff that
I added in october 2019 and have now removed since there is an
official release.
PR: 252274
Reported by: alster@vinterdalen.se |
19 Jul 2020 13:38:26
1.0.01.1

|
adridg  |
Remove mention of a command-line-flag that doesn't work.
There is a discussion of these flags in qutebrowser's bugtracker
(not otter!),
https://github.com/qutebrowser/qutebrowser/issues/2671
but the mechanism of "--qt-flag" is specific to qutebrowser:
it isn't a general Qt thing. I can't find anywhere in otter-browser's
source history where it has a --disable-gpu flag: that **is** a Qt
thing, as documented at
https://doc.qt.io/qt-5/qtwebengine-debugging.html
However the application has to be able to pass that on to Qt
(which otter apparently doesn't anymore, and neither does falkon).
Overall the recommendation is to use environment variables to
manage Chromium-inside-WebEngine, as documented by Qt,
e.g.
QTWEBENGINE_CHROMIUM_FLAGS="--disable-gpu" otter-browser
PR: 237277 240097 |
18 May 2020 16:42:00
1.0.01.1

|
tcberner  |
www/otter-browser: prepare for Qt5-5.15 |
13 Apr 2020 20:22:55
1.0.01.1

|
tcberner  |
Remove Webengine from default options on ppc64
- This is another followup to r531601, which updated WebEngine,
but does not yet support ppc64.
Submitted by: pkubaj |
04 Dec 2019 17:39:07
1.0.01.1

|
pkubaj  |
KDE5 ports: enable WEBENGINE on powerpc64 elfv2 by default
FreeBSD 13 soon switches to elfv2 abi on powerpc64, where qt5-webengine works.
PR: 242430
Approved by: tcberner (maintainer, mentor) |
12 Oct 2019 12:56:42
1.0.01.1

|
adridg  |
Update otter-browser to a snapshot.
The last official release was 1.0.01 in january 2019, way too long
ago for a web browser. Many Linux distro's also offer weekly
snapshots of this browser (often calling it 1.0.81). Instead,
bump to a different fake release number; I'm concerned that
1.0.81 might be too high.
Fixes in the tree relate to both QtWebKit and QtWebEngine compatibility,
as well as Qt 5.13 compatibility.
Initial patch by George; I bumped to a different (newer) revision in week 300.
PR: 239203
Reported by: George |
25 Aug 2019 16:27:57
1.0.01_3

|
tcberner  |
www/otter-browser: add hint and resolution to color problems in video playback
- when hardware accelartion is not available users can experience switched
colors
- to work around the issue it is possible to pass --disable-gpu to the command
line
PR: 240097
PR: 237277
Submitted by: Lorenzo Salvadore
Reported by: Nuno Teixeira |
14 Aug 2019 12:25:09
1.0.01_3

|
mat  |
Convert to UCL & cleanup pkg-message (categories w) |
26 Jul 2019 20:46:57
1.0.01_3

|
gerald  |
Bump PORTREVISION for ports depending on the canonical version of GCC
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3
to GCC 9.1 under most circumstances now after revision 507371.
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, everything INDEX-11 shows with a dependency on lang/gcc9 now.
PR: 238330 |
23 May 2019 12:37:44
1.0.01_2

|
pkubaj  |
www/otter-browser: use qt5-webengine only on amd64 and i386
This makes this port build by default on other architectures.
PR: 238054
Approved by: tcberner (mentor) |
18 Jan 2019 21:14:42
1.0.01_2

|
jbeich  |
textproc/hunspell: update to 1.7.0
- Drop const optimization as v2 API moved to nuspell
Changes: https://github.com/hunspell/hunspell/releases/tag/v1.7.0 |
16 Jan 2019 11:13:45
1.0.01_1

|
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 ) |
03 Jan 2019 21:01:05
1.0.01

|
adridg  |
Update www/otter-browser to latest 1.0.01 release.
Release notes at http://otter-browser.org/, but that mostly says
"some enhancements in experimental backend for QtWebEngine" and "many
other fixes". |
25 Dec 2018 20:25:40
0.9.99.3_2

|
tcberner  |
Change cmake default behaviour to outsource.
Ports that build out of source now simply can use "USES=cmake"
instead of "USES=cmake:outsource". Ports that fail to build
out of source now need to specify "USES=cmake:insource".
I tried to only set insource where explictely needed.
PR: 232038
Exp-run by: antoine |
12 Dec 2018 01:35:36
0.9.99.3_2

|
gerald  |
Bump PORTREVISION for ports depending on the canonical version of GCC
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t
GCC 8.2 under most circumstances.
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, as a double check, everything INDEX-11 showed depending on lang/gcc7.
PR: 231590 |
04 Nov 2018 19:00:54
0.9.99.3_1

|
tcberner  |
Merge lang/qt5-qml and x11-toolkits/qt5-quick into x11-toolkits/qt5-declarative
- There was no obvious reason to split these ports, and it makes
porting simpler; the set of ports using either mostly coincided.
Exp-run by: antoine
PR: 223687
PR: 232751 |
12 Sep 2018 01:57:12
0.9.99.3

|
jhale  |
www/otter-browser: Update to 0.9.99.3 |
15 Aug 2018 05:05:40
0.9.99.2

|
tcberner  |
www/otter-browser: update to 0.9.99.2 |
29 Jul 2018 22:18:46
0.9.99.1_1

|
gerald  |
Bump PORTREVISION for ports depending on the canonical version of GCC
in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which
has now moved from GCC 6 to GCC 7 by default.
This includes ports
- featuring USE_GCC=yes or USE_GCC=any,
- featuring USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and those
- with USES=compiler specifying one of openmp, nestedfct, c11, c++0x,
c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib.
PR: 222542 |
07 Jul 2018 17:14:46
0.9.99.1

|
tcberner  |
Update www/otter-browser to 0.9.99.1 |
28 Jun 2018 17:39:55
0.9.99

|
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 |
10 Jun 2018 14:19:41
0.9.99

|
tcberner  |
Update www/otter to 0.9.99 |
05 May 2018 16:24:33
0.9.98

|
tcberner  |
Update www/otter to 0.9.98. |
28 Apr 2018 08:45:14
0.9.97

|
tcberner  |
Update www/otter-browser to 0.9.97 |
09 Mar 2018 18:09:23
0.9.96

|
tcberner  |
Update www/otter to 0.9.96 |
09 Feb 2018 22:25:59
0.9.95

|
tcberner  |
Update www/otter-browser to 0.9.95. |
08 Jan 2018 21:41:03
0.9.94

|
adridg  |
Update www/otter-browser to latest upstream release 0.9.94
https://github.com/OtterBrowser/otter-browser/releases/tag/v0.9.94
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D13773 |
30 Dec 2017 22:00:03
0.9.93

|
adridg  |
Update www/otter-browser to latest released version.
See https://github.com/OtterBrowser/otter-browser/releases/tag/v0.9.93 ,
only minor changes since last month's upstream release, but FreeBSD
is 10 months behind on otter releases.
Default options build both WebKit and WebEngine, which is possibly
a bit heavy.
PR: 224607
Submitted by: Dmitri Goutnik
Reported by: Dmitri Goutnik
Approved by: tcberner (mentor) |
10 Sep 2017 20:55:39
0.9.12_4

|
gerald  |
Bump PORTREVISION for ports depending on the canonical version of GCC
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from
GCC 5.4 to GCC 6.4 under most circumstances.
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang,
c++14-lang, c++0x, c11, or gcc-c++11-lib.
PR: 219275 |
23 Apr 2017 20:13:37
0.9.12_3

|
tcberner  |
www/otter-browser: Add upstream patch for hunspell detection.
Approved by: rakuco (mentor)
Differential Revision: https://reviews.freebsd.org/D10467 |
01 Apr 2017 15:23:32
0.9.12_2

|
gerald  |
Bump PORTREVISIONs for ports depending on the canonical version of GCC and
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some
circumstances such as versions of FreeBSD or platforms).
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using using Mk/bsd.octave.mk which in turn has USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang,
c++11-lang, c++0x, c11, or gcc-c++11-lib.
PR: 216707 |
07 Jan 2017 14:43:11
0.9.12_1

|
jbeich  |
textproc/hunspell: update to 1.6.0
- Restore DIST_SUBDIR from r305651
- Adjust license for "or later" clause
- Restore GPLv2+/LGPL21+ license files removed upstream as
GPLv3+/LGPL3+ only affects Hunspell 2.0 (not currently built)
- Unbreak |make makepatch|
Changes: https://github.com/hunspell/hunspell/releases/tag/v1.6.0
PR: 215714
Submitted by: sunpoet (based on)
Exp-run by: antoine
MFH: 2017Q1
Differential Revision: https://reviews.freebsd.org/D8887 |
02 Jan 2017 15:41:15
0.9.12

|
tcberner  |
Update www/otter-browser to 0.9.12
* Update to 0.9.12
* Remove FreeBSD9 patch
* Add textproc/hunspell as dependency to enable spellchecking
* Define license
Reviewed by: rakuco
Approved by: rakuco (mentor)
Differential Revision: https://reviews.freebsd.org/D9024 |
25 Dec 2016 14:23:38
0.9.11

|
amdmi3  |
CMAKE_INSTALL_MANDIR is not set correctly by default, no need to override it
Approved by: portmgr blanket |
09 Oct 2016 08:27:32
0.9.11

|
tcberner  |
Update www/otter-browser to 0.9.11
* update to 0.9.11
* add qml as proxy dep
* simplify the port by naming it otter-browser
Reviewed by: mat, rakuco
Approved by: rakuco (mentor)
Differential Revision: https://reviews.freebsd.org/D8122 |
24 May 2016 16:15:41
0.9.10

|
pi  |
www/otter-browser: 0.9.09 -> 0.9.10
- added initial support for User Scripts;
- added Addons Manager;
- added alternative display mode and support for optional headers
for URL completion in address field;
- many enhancements in experimental backend for QtWebEngine (Blink):
o added support for entering full screen mode;
o added support for content blocking;
o added support for several missing actions;
- several fixes and improvements in content blocking;
- improved CMake build system (also now it is the only officially supported);
- added new backend for storing browsing history;
- many other fixes and improvements.
PR: 209279
Submitted by: groot@kde.org (kde) |
11 Jan 2016 11:56:27
0.9.09

|
rakuco  |
Fix build on 9.x after r405485.
Add a patch to work around base GCC's stupidity. See the patch itself
for more information. |
07 Jan 2016 21:04:04
0.9.09

|
alonso  |
Update www/otter-browser to it's new beta
Update Otter to it's Beta 9.
Approved by: rakuco@ (mentor)
Differential Revision: https://reviews.freebsd.org/D4789 |
01 Nov 2015 08:57:18
0.9.07

|
alonso  |
Update www/otter-browser to its' septembre release
Otter released a new beta earlier this month. Update PORTS to provide it.
Approved by: rakuco (mentor)
Differential Revision: https://reviews.freebsd.org/D3732 |
08 May 2015 16:52:56
0.9.05

|
mat  |
Convert back to NOT have GH_COMMIT.
With hat: portmgr
Sponsored by: Absolight |
08 May 2015 16:30:29
0.9.05

|
alonso  |
Update otter-browser to beta 5
Additional to the changes made by otter's upstream development, this
commit also addresses otter being incompletely installed by the
current port/package.
Approved by: rakuco (mentor)
Differential: https://reviews.freebsd.org/D2361 |
07 May 2015 20:24:16
0.9.03

|
mat  |
Update ports in the remaining categories to not use GH_COMMIT.
With minor cleanups to make things simpler.
With hat: portmgr
Sponsored by: Absolight |
19 Dec 2014 22:23:39
0.9.03

|
alonso  |
Fix build of www/otter-browser
The qmake port is required to be installed when compiling otter. While this
requirement is usually met due to its dependencies on qt5 elements which
depend on qmake, in case someone uninstalled qmake which is not a runtime
dependency for any qt5* port, otter would not build any more.
Resolve this introducing a dependency on qmake.
Reported by a build cluster, log:
http://beefy2.isc.freebsd.org/data/10amd64-default/2014-12-17_04h21m21s/logs/otter-browser-0.9.03.log
Approved by: rakuco (mentor) |
19 Dec 2014 19:01:24
0.9.03

|
antoine  |
Mark BROKEN: fails to configure
CMake Error at /usr/local/lib/cmake/Qt5Core/Qt5CoreConfig.cmake:15 (message):
The imported target "Qt5::Core" references the file
"/usr/local/lib/qt5/bin/qmake"
but this file does not exist
Reported by: pkg-fallout |
16 Dec 2014 06:27:56
0.9.03

|
alonso  |
Update otter-browser to its november beta
Merge area51's revision 10747 which updates www/otter-browser to beta 3.
Approved by: rakuco (mentor)
Differential Revision: https://reviews.freebsd.org/D1259 |
10 Sep 2014 20:50:37
0.9.02_1

|
gerald  |
Update the default version of GCC in the Ports Collection from GCC 4.7.4
to GCC 4.8.3.
Part II, Bump PORTREVISIONs.
PR: 192025
Tested by: antoine (-exp runs)
Approved by: portmgr (implicit) |
01 Sep 2014 09:13:20
0.9.02

|
alonso  |
Update otter to beta 2. Patch qmake project file to pull in the QtConcurrent
module config, referenced by at least src/core/ContentBlockingList.cpp, and
track the dependency to it in ports, too.
Approved by: rakuco (mentor) |
05 Jul 2014 12:19:33
0.9.01_1

|
tijl  |
Bump more ports that depend on libsqlite3.so:
- ports that set USE_SQLITE with the *_USE option helper
- ports that depend on libsqlite3 indirectly as reported by pkg rquery
Approved by: portmgr (implicit) |
14 Jun 2014 18:01:21
0.9.01

|
rakuco  |
Update to 0.9.01.
Add a dependency on desktop-file-utils, since the port ships a .desktop file
with a MimeType line. This part comes from ports/190934.
The update itself comes from Schaich Alonso from kde@'s area51 repository.
PR: 190934 [1]
Submitted by: Ronald Klop <ronald-lists@klop.ws> [1], Schaich Alonso
<alonsoschaich@fastmail.fm> |
24 Mar 2014 08:16:26
0.3.01

|
makc  |
www/otter-browser:
- update to 0.3.01
Submitted by: Alonso Schaich |
03 Mar 2014 16:53:06
0.2.01

|
makc  |
Add new port www/otter-browser:
Otter Browser, project aiming to recreate classic Opera (12.x) UI using Qt 5.
WWW: http://otter-browser.org/
Submitted by: Tobias Berner <tcberner@gmail.com> via kde-freebsd maillist |