aboutsummaryrefslogtreecommitdiff
path: root/deskutils/owncloudclient
Commit message (Collapse)AuthorAgeFilesLines
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
|
* desktuils/owncloudclient: prepare for Qt5-5.15Tobias C. Berner2020-05-301-0/+10
| | | | Notes: svn path=/head/; revision=537060
* deskutils/owncloudclient: return to pool, after repeated timeouts from ↵Matthias Andree2020-04-051-1/+1
| | | | | | | | | yonas@fizk.net/maintainer. See also: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=242479#c2 Notes: svn path=/head/; revision=530843
* Update deskutils/owncloudclient to latest upstream releaseAdriaan de Groot2019-12-306-206/+16
| | | | | | | | | | | | | | | | | | | | | | Maintainer email is bouncing (although it was ok in august or so). OwnCloud staff approached me at Linux App Summit asking for the port to be updated, which is why I'm chasing it now after maintainer timeout. The changelog is at https://owncloud.org/changelog/desktop-client/ There are over 18 months of updates, so I'm not going to summarize them. One thing that **did** change is the documentation: the manpage is supposed to be built with sphinx, but the rst files needed for that are missing from the tarball. I've reported that upstream. PR: 242479 Approved by: maintainer-timeout (24 days) Notes: svn path=/head/; revision=521570
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2019-07-261-1/+1
| | | | | | | | | | | | | | | | | | 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
* security/qtkeychain: remove flavors (Qt4 deprecation)Tobias C. Berner2019-03-161-2/+2
| | | | | | | Approved by: portmgr (implicit) Notes: svn path=/head/; revision=495941
* Fix Qt5 symbol version scripts to put the catch-all clause first. WhenTijl Coosemans2019-01-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* Change cmake default behaviour to outsource.Tobias C. Berner2018-12-251-1/+1
| | | | | | | | | | | | | | 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
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-12-121-1/+1
| | | | | | | | | | | | | | | | | | 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
* Remove compatibility code for FreeBSD < 11.2 from all ports.Rene Ladan2018-11-021-7/+1
| | | | | | | | | | Simplify some ports where DragonFlyBSD no longer needs to be special-cased. Submitted by: rene Reviewed by: bapt, jbeich Differential Revision: https://reviews.freebsd.org/D17724 Notes: svn path=/head/; revision=483807
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2018-07-291-0/+1
| | | | | | | | | | | | | | | | | 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
* Replace bsd.qt.mk by Uses/qt.mk and Uses/qt-dist.mkTobias C. Berner2018-06-281-2/+2
| | | | | | | | | | | | | | | | | | 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
* deskutils/owncloudclient: Update 2.4.0 -> 2.4.1Yuri Victorovich2018-04-083-11/+14
| | | | | | | | | | | | | | | | Port changes: * Change to DISTVERSION * Remove USES=ssl (not needed) * Add USES=kde:5 and corresponding USE_KDE values * Remove INSTALLS_ICONS (not needed) * Silence the pre-configure command PR: 226490 Submitted by: Greg Fitzgerald <gregf@hugops.pw> (only a simple version change) Approved by: Yonas Yanfa <yonas@fizk.net> (maintainer) Notes: svn path=/head/; revision=466830
* Move security/qtkeychain-qt[45] to security/qtkeychain and create flavorsTobias C. Berner2018-03-121-1/+2
| | | | | | | | Reviewed by: Gleb Popov <6yearold_gmail.com> Approved by: portmgr (mat) Notes: svn path=/head/; revision=464268
* - Update deskutils/owncloudclient to 2.4.0Guido Falsi2018-02-0411-61/+69
| | | | | | | | | | | - Regenerate patches PR: 225583 Submitted by: me Approved by: yonas@fizk.net (maintainer) Notes: svn path=/head/; revision=460921
* - Update textproc/py-sphinx to 1.6.5. [0]Marcelo Araujo2018-01-292-24/+27
| | | | | | | | | | | | | | | - Update all ports that depends of py-sphinx. [0] - Add conditional RUN_DEPENDS. [1] - Add TEST_DEPENDS. [1] PR: ports/221891 [0] and ports/225136 [1] Submitted by: sunpoet [1] Approved by: antoine (portmgr) Exprun by: antoine (several rounds) Sponsored by: iXsystems, Inc. Notes: svn path=/head/; revision=460241
* Update owncloudclient to 2.3.4Guido Falsi2017-12-102-4/+4
| | | | | | | | | PR: 224212 Submitted by: me Approved by: Yonas Yanfa <yonas@fizk.net> (maintainer) Notes: svn path=/head/; revision=455882
* Update owncloudclient to 2.3.3Guido Falsi2017-10-152-5/+4
| | | | | | | | | PR: 223007 Submitted by: me Approved by: Yonas Yanfa <yonas@fizk.net> (maintainer) Notes: svn path=/head/; revision=452128
* Bump PORTREVISION for ports depending on the canonical version of GCCGerald Pfeifer2017-09-101-0/+1
| | | | | | | | | | | | | | | | | (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
* Make ninja opt-out in cmake.mkTobias C. Berner2017-06-251-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Using ninja instead of make (1) can lead to significant speed ups while building. Therefore switch from having the ninja generator opt-in to having it opt-out. Previously cmake-ports that wanted to use ninja could set CMAKE_NINJA=yes now, ports that do not work with ninja can set cmake:<existing args>,noninja Note, that needing this should be an exception and most often points to a broken cmake of the port. The ports using cmake were modified * removed USES=gmake, if ninja is used * removed MAKE_ARGS, if ninja is used * added the cmake-argument noninja if necessary PR: 219629 PR: 213331 Exp-run by: antoine Reviewed by: rakuco Differential Revision: https://reviews.freebsd.org/D10748 Notes: svn path=/head/; revision=444324
* Update owncloudclient to 2.3.2Guido Falsi2017-06-142-5/+4
| | | | | | | | | PR: 219954 Submitted by: me Approved by: Yonas Yanfa <yonas@fizk.net> (maintainer) Notes: svn path=/head/; revision=443555
* Bump PORTREVISIONs for ports depending on the canonical version of GCC andGerald Pfeifer2017-04-011-0/+1
| | | | | | | | | | | | | | | | | 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
* Upgrade owncloudclient to 2.3.1Guido Falsi2017-03-252-4/+4
| | | | | | | | PR: 218065 Submitted by: Yonas Yanfa <yonas@fizk.net> (maintainer) Notes: svn path=/head/; revision=436896
* update owncloudclient to 2.3.0.Guido Falsi2017-03-195-28/+11
| | | | | | | | | PR: 217805 Submitted by: Piotr Kubaj <pkubaj@anongoth.pl> Approved by: Yonas Yanfa <yonas@fizk.net> (maintainer) Notes: svn path=/head/; revision=436484
* - Remove inclusion of bsd.default-versions.mk from ftp/curl/Makefile soTijl Coosemans2017-02-051-11/+0
| | | | | | | | | | | | | | | | | | | | bsd.default-versions.mk can rely on ARCH being defined. - In bsd.port.mk move inclusion of bsd.default-versions.mk from the pre-makefile section to the options section so the variables can be used earlier. Also put the bit of code sitting between the options section and the pre-makefile section into the options section. - Remove last few cases where ports set WITH_OPENSSL_PORT. This variable is handled in bsd.default-versions.mk and some ports were setting it after including bsd.port.options.mk. After FreeBSD 9 EoL all but a few ports, and then only when setting non-default options, work without setting that variable. PR: 215996 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=433456
* - Remove always-true/false conditions after FreeBSD 9, 10.1, 10.2 EOLDmitry Marakasov2017-01-091-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=430947
* Update to 2.2.4Jason E. Hale2016-11-302-4/+4
| | | | | | | | | PR: 214253 Submitted by: Piotr Kubaj <pkubaj@anongoth.pl> Approved by: Yonas Yanfa <yonas@fizk.net> (maintainer) Notes: svn path=/head/; revision=427455
* Let USES=localbase add -L${LOCALBASE}/lib to LIBS instead of LDFLAGS.Tijl Coosemans2016-09-301-2/+2
| | | | | | | | | | | | | | | | | | | | | | USES=localbase:ldflags can be used to set LDFLAGS. Normally LDFLAGS appears too early on the command line causing some ports to link with their own libraries in LOCALBASE (if installed) instead of WRKSRC. Also make use of _USES_POST so -L${LOCALBASE}/lib is added as late as possible after anything a port Makefile might set. Use _USES_POST instead of .include in libedit.mk and libarchive.mk so things like 'USES=libedit localbase:ldflags' work correctly. Fix some issues with LIBS in some ports. Switch ports that don't support LIBS to localbase:ldflags. PR: 212987 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=423014
* Update to 2.2.3.Guido Falsi2016-08-212-5/+4
| | | | | | | | PR: 211888 Submitted by: Yonas Yanfa <yonas at fizk.net> (maintainer) Notes: svn path=/head/; revision=420584
* - Update to version 0.7.0 [1]Pawel Pekala2016-07-281-0/+1
| | | | | | | | | | - Bump all affected ports, ABI change PR: 211417 [1] Submitted by: maintainer Notes: svn path=/head/; revision=419227
* - Update to 2.2.2Guido Falsi2016-06-283-7/+8
| | | | | | | | | | | | - Add two missing requirements to USE_QT5 - While here, convert to USES=ssl PR: 210506 Submitted by: me Approved by: yonas@fizk.net (maintainer) Notes: svn path=/head/; revision=417700
* Update to 2.2.0Guido Falsi2016-05-257-18/+25
| | | | | | | | | PR: 209679 Submitted by: me Approved by: Yonas Yanfa <yonas at fizk.net> (maintainer) Notes: svn path=/head/; revision=415822
* Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g.Mathieu Arnold2016-04-011-3/+3
| | | | | | | | With hat: portmgr Sponsored by: Absolight Notes: svn path=/head/; revision=412346
* - Update to 2.1.1Guido Falsi2016-02-183-7/+20
| | | | | | | | | | | | | - Convert to USE_GUTHUB - Take advantage od USES=localbase - Convert to USES=sqlite PR: 207139 Submitted by: me Approved by: Yonas Yanfa <yonas at fizk.net> Notes: svn path=/head/; revision=409095
* Update to 2.0.2Guido Falsi2015-11-123-29/+13
| | | | | | | | | PR: 204407 Submitted by: Sevan Janiyan <venture37 at geeklan.co.uk> Patch by: Yonas Yanfa <yonas at fizk.net> (maintainer) Notes: svn path=/head/; revision=401393
* deskutils/owncloudclient: Add DEBUG optionKubilay Kocak2015-10-251-1/+3
| | | | | | | | | | | | | Add a debug option allowing users to easily enable debug builds. This can help isolation of particular bugs (like crashes) [1] [1] https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=203885 PR: 203919 Submitted by: Yonas Yanfa <yonas fizk net> (maintainer) Notes: svn path=/head/; revision=400148
* Remove iconv(), iconv_open() and iconv_close() symbols from libiconv.Tijl Coosemans2015-10-102-1/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | These were FreeBSD specific aliases for libiconv(), libiconv_open() and libiconv_close() that are now also provided by libc which complicates writing configure tests that work correctly when both libc iconv and libiconv are available. Also, because the libiconv iconv.h header redefines iconv* to libiconv* correct use of the header implies that the aliases aren't used. The following ports needed fixes because there was something wrong with the way they tried to detect or use iconv: audio/deadbeef: Remove LIBICONV_PLUG from a source file. It's a compile-time option and should not be set in source code. comms/hidapi: Use standard AM_ICONV configure macro to look for iconv. deskutils/fbreader: Let ports framework deal with LIBICONV_PLUG. deskutils/ljclive: Override configure test for iconv. deskutils/owncloudclient: Add USES=iconv and patch test for iconv. devel/aegis: Bump PORTREVISION because it no longer uses libiconv. devel/libexplain: Add USES=iconv and override test for iconv. devel/sdl20: Override configure test for iconv. emulators/vmw: Replace OSVERSION checks with ICONV_LIB checks and include <iconv.h> instead of <sys/iconv.h>. irc/scrollz: Override configure test for iconv. japanese/chasen-base: Override configure test for iconv and patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. japanses/eb: Patch configure test for iconv. japanses/eblook: Override configure test for iconv. java/jikes: Override configure test for iconv. multimedia/transcode: Bump PORTREVISION because only one plugin links with libiconv now. net/c3270: Override configure test for iconv. net/samba4*: Bump PORTREVISION because it no longer uses libiconv. The configure script will always add -liconv to the linker flags when it happens to be installed which would be wrong but later on binaries are linked with -Wl,--as-needed and the linker discards -liconv because it finds iconv*() functions in libc now and no longer in libiconv. net-mgmt/icinga-*: Remove dependency on iconv. net-mgmt/netxms: Patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. net/asterisk11: Patch configure so it no longer adds -liconv to linker flags just because it happens to be installed. net-p2p/transmission-*: Override configure test for iconv. www/htmlcxx: Override configure test for iconv. www/httrack: Override configure test for iconv. www/xapian-omega: Override configure test for iconv. x11/mrxvt(-devel): Add USES=iconv and override configure test for iconv. x11/x3270: Override configure test for iconv. x11-wm/jwm: Override configure test for iconv. PR: 202838 Exp-run by: antoine Approved by: portmgr (antoine) Notes: svn path=/head/; revision=398996
* deskutils/owncloudclient: update 1.8.4 -> 2.0.1Jason Unovitch2015-09-213-9/+9
| | | | | | | | | | | - Pass maintainer from ports@ to PR submitter - Regenerate a patch for 2.0.1 PR: 203167 Submitted by: Yonas Yanfa <yonas@fizk.net> Notes: svn path=/head/; revision=397491
* Update CMake to 3.1.1.Raphael Kubo da Costa2015-09-071-0/+5
| | | | | | | | | | | | | | | | | | | | | | | Release notes for the 3.3 series: http://www.cmake.org/cmake/help/v3.3/release/3.3.html This update took longer than expected because of a behavior change in CMake: now calls to find_library(), find_path() etc will take the $PATH environment variable into consideration, which in practice means that it will prefer libraries in base instead of those in ports when both versions are available. r395972 is an example of the groundwork that had to be done before landing this patch. - deskutils/owncloudclient: When OpenSSL from ports is to be used, make sure to pass ${LOCALBASE} as $CMAKE_PREFIX_PATH, otherwise it will use the version in base (see above) and fail on 9.x. - math/cgal: Import upstream patch to fix the configuration process with CMake 3.3.x. PR: 202516 Notes: svn path=/head/; revision=396266
* Update to 1.8.4Guido Falsi2015-08-073-7/+9
| | | | Notes: svn path=/head/; revision=393704
* Fix packaging after sphinx updateAntoine Brodin2015-07-242-2/+4
| | | | | | | Reported by: pkg-fallout Notes: svn path=/head/; revision=392852
* - Rename security/qtkeychain to qtkeychain-qt5, update to 0.5.0 and make it ↵Guido Falsi2015-05-243-13/+10
| | | | | | | | | | | | | | use Qt5 - Add slave port qtkeychain-qt4 - Make deskutils/owncloudclient link against qtkeychain-qt5 - Update owncloudclient comment and pkg-descr PR: 198785 Submitted by: 6yearold at gmail.com (security/qtkeychain maintainer) Notes: svn path=/head/; revision=387341
* - Move deskutils/mirall to deskutils/owncloudclient due to upstream renameGuido Falsi2015-04-0411-0/+409
- Update to 1.8.0 Notes: svn path=/head/; revision=383185