aboutsummaryrefslogtreecommitdiffstats
path: root/net-p2p/twister
Commit message (Collapse)AuthorAgeFilesLines
* devel/boost-*: update to 1.64.0jbeich2017-05-021-1/+1
| | | | | | | | Changes: http://www.boost.org/users/history/version_1_64_0.html PR: 218835 Approved by: office (bapt) Exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D10472
* Provide more descriptive error messages for ports failing on powerpc64.linimon2017-04-301-2/+2
| | | | Approved by: portmgr (tier-2 blanket)
* - Remove always-true/false conditions after FreeBSD 9, 10.1, 10.2 EOLamdmi32017-01-091-8/+2
| | | | Approved by: portmgr blanket
* devel/boost-*: update to 1.63.0jbeich2017-01-061-1/+1
| | | | | | | | Changes: http://www.boost.org/users/history/version_1_63_0.html PR: 215598 Exp-run by: antoine Approved by: office (bapt) MFH: 2017Q1
* devel/boost-*: update to 1.62.0jbeich2016-11-231-1/+1
| | | | | | | | | | | | - Enable `long double` C99 math usage - Switch 9.x back to building with GCC Changes: http://www.boost.org/users/history/ PR: 199601 Submitted by: Chen Xu, bapt, amdmi3, truckman (based on) Reviewed by: rakuco (kde) (earlier version) Exp-run by: antoine (3 tries), truckman (consumers only, earlier versions) Approved by: bapt (office)
* Track used or drop unused devel/icu dependencyjbeich2016-11-111-3/+2
| | | | | | | | | | This tries to fix discrepancy between $ pkg rquery '%o %B' | awk '/libicu/ { print $1 }' | sort -u $ git grep -lF :devel/icu | sed 's,/Makefile$,,' PR: 214384 Reported by: tijl, stage-qa, readelf(1)
* - Update devel/icu to 57.1.tijl2016-09-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | - Clean up the Makefile. - Follow some upstream recommendations (--with-data-packaging=archive, --disable-renaming, -DICU_NO_USER_DATA_OVERRIDE). - Patch makefiles to install static libraries with INSTALL_DATA so they aren't stripped. - Patch config/mh-bsd-gcc to sync with config/mh-linux-gcc. - Fix endianness detection in ICU. The code wanted to use BYTE_ORDER defined in machine/endian.h, but this isn't visible because ICU is compiled with _XOPEN_SOURCE. Patch the code to use _BYTE_ORDER instead. - Compile ICU with C++11 compiler to enable move constructors. - Patch ICU to fix a problem with atomics in the case of a C++11 compiler without C++11 header <atomic> (like Clang on FreeBSD 9). - Bump all ports that depend on it due to library version change. - Add USES=compiler:c++0x to some ports that pick up -std=c++0x from ICU pkgconfig files. - Add USES=compiler:c++11-lib to graphics/libcdr01 because it also needs a C++11 runtime library now. Add this to all ports that depend on it so their executables load the right libstdc++.so on FreeBSD 9. PR: 205120 Exp-run by: antoine Approved by: portmgr (antoine)
* USE_BDB cleanup.mat2016-08-081-3/+1
| | | | | | | | | | | - USE_BDB=4x+ -> USES=bdb. - USE_BDB=yes -> USES=bdb. - USE_BDB=xx -> USES=bdb:xx. Other modernisations when I see them. PR: 209183 Sponsored by: Absolight
* Bump PORTREVISION for the icu revert.mat2016-07-071-1/+1
| | | | | | | | | This time not bumping lang/php70, but devel/php70-intl which is the one really depending on icu. PR: 205120 With hat: portmgr Sponsored by: Absolight
* devel/icu: bump PORTREVISION on dependent portsgahr2016-07-061-0/+1
|
* Move USE_BDB support from bsd.databases.mk to its own file.mat2016-04-261-2/+1
| | | | | | | | | | | | | Also: - Deorbit WANT_BDB_VER, one can use USES=bdb:<ver> instead. - USE_BDB can't happen after bsd.port.pre.mk because it is a USES. PR: 208971 Submitted by: mat Exp-run by: antoine With hat: portmgr Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D5951
* many ports: mark broken on powerpc64swills2016-04-221-0/+2
|
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.mat2016-04-011-3/+3
| | | | | With hat: portmgr Sponsored by: Absolight
* Upgrade to v0.9.34.thierry2015-12-263-30/+4
|
* Upgrade to 0.9.31: back-ported utp vulnerability fix fromthierry2015-10-273-3/+29
| | | | | | | | libtorrent-rasterbar. Changelog at http://twister.net.co/?p=575 Security: uTP vulnerability (also known as DRDoS in torrent world) and lazy_bdecode overrun
* - Switch to options helpersamdmi32015-09-021-2/+2
| | | | | | - While here, add some NO_ARCHes Approved by: portmgr blanket
* Upgrade to 0.9.30 (random listening port).thierry2015-08-042-4/+3
| | | | Version notes at <http://twister.net.co/?p=531>.
* Cleanup USE_GITHUB usage.mat2015-05-312-4/+3
| | | | | With hat: portmgr Sponsored by: Absolight
* Update icu to 55.1bapt2015-04-241-0/+1
|
* Fix configureantoine2015-04-201-1/+1
|
* Use included script to generate configure because it does more thantijl2015-04-191-1/+4
| | | | | | USES=autoreconf Reported by: antoine
* Convert to USES=autoreconftijl2015-04-181-5/+3
|
* converters/libiconv:tijl2015-04-151-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Remove const qualifier from iconv(3) to match POSIX: http://pubs.opengroup.org/onlinepubs/9699919799/functions/iconv.html - Patch iconv.h to expose more GNU extensions when LIBICONV_PLUG is defined because the base system iconv supports these extensions too. Add/remove patches to/from ports to call iconv with non-const arguments. This breaks some ports on FreeBSD 10 because base system iconv.h still has the const qualifier. Fix this by letting USES=iconv add a build dependency on converters/libiconv so ports can use its iconv.h (with LIBICONV_PLUG defined) instead of the base system iconv.h. This exposed some ports that link with libiconv when it is available instead of using libc iconv. In these cases one of the following changes has been made: - patch configure scripts to test for libc iconv first - add ac_cv_lib_iconv_libiconv=no or similar to CONFIGURE_ARGS to disable some configure tests - converters/wkhtmltopdf: this includes Qt4 so add a patch from devel/qt4 - lang/gcc5-aux: respect CFLAGS and friends during configure such that LIBICONV_PLUG is defined in the iconv test, also switch to external gettext - mail/gnarwl: replace patches with CPPFLAGS/LIBS - multimedia/ffmpeg2theora: remove iconv test from SConstruct and use ICONV_LIB in port Makefile instead, also fix a bug in subtitles.c - net-im/licq: finish conversion to cmake - net-mgmt/bandwidthd, net-mgmt/icinga, net-mgmt/nagios, net-mgmt/nagios4: don't need iconv - textproc/p5-XML-TinyXML: finish conversion to USES=perl5 Other changes: - databases/qdbm and slaves: respect CFLAGS and friends, also enable bzip2 and lzo support - games/ldmud: respect CFLAGS and friends - graphics/inventor: replace some patches with MAKE_ARGS/MAKE_ENV to respect CFLAGS and friends, also remove FreeBSD/alpha patch and add missing xorg dependencies PR: 199099 Exp-run by: antoine Approved by: portmgr (antoine)
* Upgrade to 0.9.29 and switch to the official release version.thierry2015-04-112-4/+5
| | | | Changelog at <http://twister.net.co/?p=503>.
* Refresh to a recent snapshot, so that it includes a patch to fix buildthierry2015-03-312-5/+4
| | | | | | | with LibreSSL. PR: ports/199006 Submitted by: Bernard Spil <spil.oss (at) gmail.com>
* 2 ports categories: Remove $PTHREAD_LIBSmarino2015-03-252-22/+0
| | | | | | | | | | Categories: net-p2p, comms Note that qrq was not properly staged, it failed stage-QA. aprsd failed check-plist; it had a plist orphan. Now it fails stage-QA with a fs violation, but it may be acceptable. Fixes added to both. approved by: PTHREAD blanket
* Refresh. This is 0.9.27.thierry2014-11-303-4/+29
|
* Refresh.thierry2014-10-092-6/+5
|
* Berkeley DB cleanup, remove versions 4.0 ... 4.7.mandree2014-08-221-0/+1
| | | | | | | | | | | | | | | | | | | | | | - Mk/bsd.database.mk rewrite, new default to db5. - db6 is eligible by default only if installed on the system. - Bump PORTREVISION of all ports that directly depend on BerkeleyDB or where USE_BDB is found in the port's directory - Patch a few ports such that they will pick up or work with newer versions. - Add UPDATING entry - Drive-by format fix for pks - Drop BerkeleyDB option from mail/popular for now, requires more work. - Exp-run logs linked from the PR below. - Ports that do not build (IGNORE, BROKEN, etc.) have pro-forma changes for new Berkeley DB, but are untested. NOTE: please read UPDATING and the Wiki page before proceeding! Announcement: http://lists.freebsd.org/pipermail/freebsd-ports-announce/2014-August/000090.html Wiki reference: https://wiki.freebsd.org/Ports/BerkeleyDBCleanup PR: 192690 Approved by: portmgr (implicit, PORTREVISION bump on unstaged ports)
* Refresh.thierry2014-08-152-4/+4
|
* Refresh to a current snapshot.thierry2014-07-192-11/+5
| | | | This is ~0.9.23.
* Add DOCS to OPTIONS_DEFINE to ports that check for PORT_OPTIONS:MDOCS.adamw2014-07-161-1/+1
|
* Fix build on FreeBSD-9.thierry2014-07-063-1/+29
|
* Refresh: this removes some patches integrated by upstream.thierry2014-06-305-79/+5
| | | | This is the internal version 92100.
* Adding twister, a fully decentralized P2P microblogging platformthierry2014-06-227-0/+188
leveraging from the free software implementations of Bitcoin and BitTorrent protocols.