| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
| |
Too many changes in ChangeLog:
https://sigil-ebook.com/2020/07/24/sigil-1-3-0-release/
PR: 248376
Submitted by: jonc@chen.org.nz (maintainer)
Notes:
svn path=/head/; revision=543985
|
|
|
|
|
|
|
|
|
|
| |
Fix the preview panel on the right due to a behavioral change in Qt5.15
PR: 247864
Submitted by: jonc@chen.org.nz (maintainer)
Notes:
svn path=/head/; revision=541840
|
|
|
|
|
|
|
|
|
|
| |
ChangeLog: https://sigil-ebook.com/2020/03/29/sigil-1-2-0-release/
PR: 245196
Submitted by: jonc@chen.org.nz (maintainer)
Notes:
svn path=/head/; revision=530270
|
|
|
|
|
|
|
|
|
| |
PR: 243965
Submitted by: Jonathan Chen <jonc@chen.org.nz> (maintainer)
Relnotes: https://sigil-ebook.com/2020/02/06/sigil-1-1-0-release/
Notes:
svn path=/head/; revision=526541
|
|
|
|
|
|
|
|
|
|
| |
ChangeLog: https://sigil-ebook.com/2019/12/17/sigil-1-0-0-release/
PR: 242781
Submitted by: jonc@chen.org.nz (maintainer)
Notes:
svn path=/head/; revision=520891
|
|
|
|
|
|
|
|
| |
PR: 240515
Submitted by: Jonathan Chen <jonc@chen.org.nz> (maintainer)
Notes:
svn path=/head/; revision=511960
|
|
|
|
|
|
|
|
| |
PR: 239771
Submitted by: Jonathan Chen <jonc@chen.org.nz> (maintainer)
Notes:
svn path=/head/; revision=508886
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Add location to the license file while I'm here.
Changelog since 0.9.13:
https://github.com/Sigil-Ebook/Sigil/blob/0.9.16/ChangeLog.txt
PR: 239583
Submitted by: Jonathan Chen <jonc@chen.org.nz> (maintainer)
Notes:
svn path=/head/; revision=508244
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=507372
|
|
|
|
|
|
|
|
|
|
|
|
| |
- removed superflous patch
- install bundled dictionaries
PR: 236766
Submitted by: Jonathan Chen <jonc@chen.org.nz> (maintainer)
Relnotes: https://sigil-ebook.com/2019/03/20/sigil-0-9-13-released/
Notes:
svn path=/head/; revision=498642
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
jonc@chen.org.nz steps up to maintain the port
ChangeLog: https://github.com/Sigil-Ebook/Sigil/releases/tag/0.9.12
* fix typo in cssreformatter that caused errors with @ fontface (issue #394)
* workaround for qt bug affecting tab close buttons on Mac (commit f3b9399)
* fix Mac Qt5 plugin dylibs that macdeployqt broke in Sigil-0.9.11
PR: 235873
Submitted by: jonc@chen.org.nz (maintainer)
Notes:
svn path=/head/; revision=493538
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
For new features, see complete ChangeLog at
https://github.com/Sigil-Ebook/Sigil/releases/tag/0.9.11
- Bug Fixes
* after mend and prettify - put cursor at enclosing tag if possible
* allow both links in Preview and clicking in Preview to reposition CV
* fix new cursor repositioning under new tab ala Spellcheck
* fix prettyprinting of the mark tag in gumbo and sigil_bs4
* fix crash when tagname illegally (for xhtml) includes single or double quotes
* fix crash in Reports for non-wellformed xhtml that was okay under html5
* fix deletion of multiple css files when Book View is open (Windows)
* fix bug in reformat CSS with media queries
* fix bug in closing some tabs needlessly when linking stylesheets
* fix crash bug in gumbo parser under very strange circumstances
* remove empty guide elements in epub2 opf as epubcheck now flags these
* fix issue with index generation reordering spine entries under certain
conditions
Reported by: portscout
Notes:
svn path=/head/; revision=493288
|
|
|
|
|
|
|
|
|
| |
- Drop const optimization as v2 API moved to nuspell
Changes: https://github.com/hunspell/hunspell/releases/tag/v1.7.0
Notes:
svn path=/head/; revision=490671
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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:
svn path=/head/; revision=490472
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=488341
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=487272
|
|
|
|
|
|
|
|
| |
PR: 230284
Submitted by: jonc@chen.org.nz
Notes:
svn path=/head/; revision=476554
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=475857
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=473503
|
|
|
|
| |
Notes:
svn path=/head/; revision=457778
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Ports using USE_PYTHON=distutils are now flavored. They will
automatically get flavors (py27, py34, py35, py36) depending on what
versions they support.
There is also a USE_PYTHON=flavors for ports that do not use distutils
but need FLAVORS to be set. A USE_PYTHON=noflavors can be set if
using distutils but flavors are not wanted.
A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been
added to cope with Python ports that did not have the Python
PKGNAMEPREFIX but are flavored.
USES=python now also exports a PY_FLAVOR variable that contains the
current python flavor. It can be used in dependency lines when the
port itself is not python flavored. For example, deskutils/calibre.
By default, all the flavors are generated. To only generate flavors
for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define
BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf.
In all the ports with Python dependencies, the *_DEPENDS entries MUST
end with the flavor so that the framework knows which to build/use.
This is done by appending '@${PY_FLAVOR}' after the origin (or
@${FLAVOR} if in a Python module with Python flavors, as the content
will be the same). For example:
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}
PR: 223071
Reviewed by: portmgr, python
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D12464
Notes:
svn path=/head/; revision=455210
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
(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
Notes:
svn path=/head/; revision=449591
|
|
|
|
|
|
|
| |
Approved by: rakuco (mentor, implicit)
Notes:
svn path=/head/; revision=441318
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=437439
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- 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
Notes:
svn path=/head/; revision=430796
|
|
|
|
|
|
|
|
|
|
| |
Changes: https://github.com/hunspell/hunspell/blob/v1.5.4/ChangeLog
PR: 214837
Exp-run by: antoine (for 1.5.3)
Approved by: office (bapt)
Notes:
svn path=/head/; revision=427743
|
|
|
|
| |
Notes:
svn path=/head/; revision=427280
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
$ sigil
[Embedded Python Error]
Traceback (most recent call last):
File "/usr/local/share/sigil/python3lib/xmlprocessor.py", line 6, in <module>
from sigil_bs4.builder._lxml import LXMLTreeBuilderForXML
File "/usr/local/share/sigil/plugin_launchers/python/sigil_bs4/builder/_lxml.py", line 26, in <module>
from lxml import etree
ImportError: No module named 'lxml'
Notes:
svn path=/head/; revision=427279
|
|
|
|
| |
Notes:
svn path=/head/; revision=425199
|
|
|
|
|
|
|
|
|
| |
PR: 208213
Submitted by: tkato432 yahoo com
Sponsored by: Absolight
Notes:
svn path=/head/; revision=412359
|
|
|
|
|
|
|
|
| |
With hat: portmgr
Sponsored by: Absolight
Notes:
svn path=/head/; revision=412349
|
|
|
|
|
|
|
|
| |
PR: 206257
Submitted by: tkato432@yahoo.com
Notes:
svn path=/head/; revision=409495
|
|
|
|
|
|
|
| |
Approved by: portmgr blanket
Notes:
svn path=/head/; revision=405891
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* multimedia/obs-studio:
Import some upstream commits that pass all required include directories to
the compiler and reference libsysinfo.so with a full path instead of passing
-lsysinfo and relying on ${LOCALBASE}/lib being in the linker search path.
* textproc/sigil:
Pass LDFLAGS+=${LOCALBASE}/lib for now to work around the fact that
upstream's build system references libhunspell-1.3.so and libpcre16.so
without full paths (instead of finding them with the proper CMake commands it
relies on pkg-config's output).
* x11/antimicro:
Also pass LDFLAGS+=${LOCALBASE}/lib for now to work around the fact that
several X11 and SDL2 libraries are referenced without full paths. I sent a
pull request upstream to fix the X11 references, but SDL2 is still detected
through pkg-config.
MFH: 2015Q4
Notes:
svn path=/head/; revision=404875
|
|
|
|
|
|
|
|
|
|
| |
PR: 205225
Submitted by: Ports Fury
Approved by: mat (mentor)
Differential Revision: D4615
Notes:
svn path=/head/; revision=404237
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Support multiple values in *_OLD_CMD, i.e. we can now fix both "/usr/bin/python" and "/usr/bin/env python" at the same time
- Default *_OLD_CMD values are now always appended, so you don't need to specify them in individual ports
- Add lua support (depends on USES=lua)
- Add more default values, such as "/usr/bin/env foo" for python, perl, bash, ruby and lua
- Shebangfix now matches whole words, e.g. we will no longer (erroneously) replace "/usr/bin/perl5.005" with "${perl_CMD}5.005" (but "/usr/bin/perl -tt" is still (correctly) replaced with "${perl_CMD} -tt")
Note that *_OLD_CMD items containing spaces must now be quoted (e.g. perl_OLD_CMD=/bin/perl /usr/bin/perl "/usr/bin/env perl")
Update shebangfix usage according to new rules in many ports:
- Remove *_OLD_CMD for patterns now replaced by default
- Quote custom *_OLD_CMD which contain spaces
Fix shebangfix usage in many ports (irrelevant to infrastructure change):
- Remove redundant SHEBANG_LANG (no need to duplicate default langs)
- Remove redundant *_CMD (such as python_CMD=${LOCALBASE}/bin/python${PYTHON_VER} when USES=python is present)
- Never use *_OLD_CMD in REINPLACE_CMD matchers, these should always look for exact string
Approved by: portmgr (bapt)
Differential Revision: D3756
Notes:
svn path=/head/; revision=399684
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Convert to system minizip & utf8-cpp, which are newer
- Prevent accidentally mixing bundled/system headers
- Prefer ninja over make(1) to max out CPU during build
- Turn off asserts in bundled tidyLib
- Check actual compiler when disabling PCH and fix cmake warning
- Drop some unused RUN_DEPENDS (qmake, moc, linguist*)
- Sort LIB_DEPENDS according to port origin
- Require devel/pcre with pcre16 support
- Pet portlint (DATADIR, makepatch)
Changes: https://github.com/user-none/Sigil/blob/0.8.6/ChangeLog.txt
Notes:
svn path=/head/; revision=385970
|
|
|
|
|
|
|
| |
PR: 199905
Notes:
svn path=/head/; revision=385615
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Current WWW page at GOOGLE_CODE says:
New Home Page
The new home page for Sigil is http://sigil-ebook.com
Project code moved to Github
The source code for Sigil is no longer being managed on Google
Code. It is now available on GitHub and can be accessed at
https://github.com/user-none/Sigil.
Notes:
svn path=/head/; revision=385614
|
|
|
|
|
|
|
|
| |
PR: 199789
Submitted by: maintainer
Notes:
svn path=/head/; revision=385020
|
|
|
|
| |
Notes:
svn path=/head/; revision=377486
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
the 32 ports that still use it. Bump PORTREVISION on their dependent
ports except the ones that depend on these:
audio/libogg
audio/libvorbis
devel/pcre
ftp/curl
graphics/jpeg
graphics/libart_lgpl
graphics/tiff
textproc/expat2
textproc/libxslt
In these cases the same trick as in the recent gettext update is used.
The ports install a symlink with the old library version. When enough
of their dependent ports have had regular updates the remaining ones can
get a PORTREVISION bump and the links can be removed.
Also remove the devel/pcre dependency from USE_GNOME=glib20. It causes
over 2200 packages to depend on devel/pcre while less than 200 actually
link with it. The glib20 package still depends on devel/pcre so this
should not make a difference for ports with USE_GNOME=glib20. Also,
libdata/pkgconfig/glib-2.0.pc lists pcre as a private library so
USE_GNOME=glib20 should not propagate it.
PR: 195724
Exp-run by: antoine
Approved by: portmgr (antoine)
Notes:
svn path=/head/; revision=374303
|
|
|
|
| |
Notes:
svn path=/head/; revision=372605
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
to GCC 4.8.3.
Part II, Bump PORTREVISIONs.
PR: 192025
Tested by: antoine (-exp runs)
Approved by: portmgr (implicit)
Notes:
svn path=/head/; revision=367888
|
|
|
|
| |
Notes:
svn path=/head/; revision=347786
|
|
|
|
|
|
|
| |
While here convert some LIB_DEPENDS
Notes:
svn path=/head/; revision=343214
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
libzip installs /usr/local/include/zip.h, and -I/usr/local/include ended
up being passed to the compiler before -I<path-to-internal-minizip-copy>,
which caused problems. [1]
While here, modernize the Makefile:
- Move LICENSE to the appropriate place.
- Remove USE_DOS2UNIX: the files it was supposed to fix are not DOS-encoded
anymore.
- Support staging.
- Convert from manually calling update-desktop-database and
USE_GNOME=desktopfileutils to USES=desktop-file-utils.
PR: ports/180350 [1]
Approved by: maintainer timeout (no activity since the original report 7 months ago)
MFH: 2014Q1
Notes:
svn path=/head/; revision=340198
|
|
|
|
| |
Notes:
svn path=/head/; revision=337723
|
|
|
|
| |
Notes:
svn path=/head/; revision=336262
|
|
|
|
|
|
|
| |
textproc)
Notes:
svn path=/head/; revision=327773
|