aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Adjust USES to fix building on gcc-based archs (in particular, powerpc64).Mark Linimon2018-06-0229-43/+34
| | | | | | | | | | | | | | | On the clang architectures, these changes have no effect: the baser compiler already includes the needed features. While here, remove now-redundant CXXFLAGS statements and pet portlint (no other content change). Tested on both powerpc64 and amd64. Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=471400
* Subunit is a streaming protocol for test results.Martin Wilke2018-06-024-0/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | There are two major revisions of the protocol. Version 1 was trivially human readable but had significant defects as far as highly parallel testing was concerned - it had no room for doing discovery and execution in parallel, required substantial buffering when multiplexing and was fragile - a corrupt byte could cause an entire stream to be misparsed. Version 1.1 added encapsulation of binary streams which mitigated some of the issues but the core remained. Version 2 shares many of the good characteristics of Version 1 - it can be embedded into a regular text stream (e.g. from a build system) and it still models xUnit style test execution. It also fixes many of the issues with Version 1 - Version 2 can be multiplexed without excessive buffering (in time or space), it has a well defined recovery mechanism for dealing with corrupted streams (e.g. where two processes write to the same stream concurrently, or where the stream generator suffers a bug). WWW: http://launchpad.net/subunit PR: 228685 Submitted by: freebsd_ports@k-worx.org Sponsored by: iXsystems Inc. Notes: svn path=/head/; revision=471399
* Python library for consuming OpenStack sevice-types-authority dataMartin Wilke2018-06-024-0/+38
| | | | | | | | | | | | | | | | | | | The OpenStack Service Types Authority contains information about official OpenStack services and their historical service-type aliases. The data is in JSON and the latest data should always be used. This simple library exists to allow for easy consumption of the data, along with a built-in version of the data to use in case network access is for some reason not possible and local caching of the fetched data. WWW: https://pypi.org/project/os-service-types/ PR: 228682 Submitted by: freebsd_ports@k-worx.org Sponsored by: iXsystems Inc. Notes: svn path=/head/; revision=471398
* Welcome the new syslog-ng315, tracking the syslog-ng 3.15 branch.Cy Schubert2018-06-0211-1/+863
| | | | | | | | Submitted by: Peter Czanik (CzP) <peter.czanik@balabit.com> Balabit / syslog-ng upstream Notes: svn path=/head/; revision=471397
* - Mark Deprecated both projects are dead since 2016Martin Wilke2018-06-022-0/+6
| | | | | | | | | | https://github.com/omab/django-social-auth/blob/master/README.rst https://pypi.org/project/python-social-auth/ Sponsored by: iXsystems Inc. Notes: svn path=/head/; revision=471396
* Update devel/etcd33 to version 3.3.6.Jimmy Olgeni2018-06-022-4/+4
| | | | Notes: svn path=/head/; revision=471395
* Update devel/etcd32 to version 3.2.21.Jimmy Olgeni2018-06-022-4/+4
| | | | Notes: svn path=/head/; revision=471394
* Update devel/etcd31 to version 3.1.16.Jimmy Olgeni2018-06-022-4/+4
| | | | Notes: svn path=/head/; revision=471393
* Reno is a release notes manager designed with high throughput in mind,Martin Wilke2018-06-024-0/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | supporting fast distributed development teams without introducing additional development processes. The goal is to encourage detailed and accurate release notes for every release. Reno uses git to store its data, along side the code being described. This means release notes can be written when the code changes are fresh, so no details are forgotten. It also means that release notes can go through the same review process used for managing code and other documentation changes. Reno stores each release note in a separate file to enable a large number of developers to work on multiple patches simultaneously, all targeting the same branch, without worrying about merge conflicts. This cuts down on the need to rebase or otherwise manually resolve conflicts, and keeps a development team moving quickly. Reno also supports multiple branches, allowing release notes to be back-ported from master to maintenance branches together with the code for bug fixes. WWW: https://docs.openstack.org/reno/ PR: 228686 Submitted by: freebsd_ports@k-worx.org Sponsored by: iXsystems Inc. Notes: svn path=/head/; revision=471392
* mox3 is an unofficial port of the Google mox framework to Python 3. It was meantMartin Wilke2018-06-024-0/+32
| | | | | | | | | | | | | to be as compatible with mox as possible, but small enhancements have been made. WWW: https://docs.openstack.org/mox3/ PR: 228680 Submitted by: freebsd_ports@k-worx.org Sponsored by: iXsystems Inc. Notes: svn path=/head/; revision=471391
* - Update to 6.13.2Martin Wilke2018-06-022-12/+12
| | | | | | | | | PR: 228541 Submitted by: maintainer Sponsored by: iXsystems Inc. Notes: svn path=/head/; revision=471389
* - Update to 3.2.1Martin Wilke2018-06-023-23/+10
| | | | | | | | | | | | | | | - Changed RUN_DEPENDS and BUILD_DEPENDS to match the dependencies - Added LICENSE + LICENSE_FILE - Added NO_ARCH - Removed patch in files/patch-setup.py because it is no longer needed PR: 228271 Submitted by: freebsd_ports@k-worx.org Approved by: maintainer timeout Sponsored by: iXsystems Inc. Notes: svn path=/head/; revision=471388
* - Update to 1.6.7Martin Wilke2018-06-022-21/+18
| | | | | | | | | | | | | | | - DJANGO option uses Django 1.11 instead of Django 1.8 - Added LICENSE_FILE - Added NO_ARCH - Sorted variables a bit PR: 228270 Submitted by: freebsd_ports@k-worx.org Approved by: maintainer timeout Sponsored by: iXsystems Inc. Notes: svn path=/head/; revision=471387
* - Update to 4.6.0Martin Wilke2018-06-022-5/+18
| | | | | | | | | | | | | | - Added LICENSE_FILE - Added NO_ARCH - Added DOCS option with appropriate dependencies PR: 228269 Submitted by: freebsd_ports@k-worx.org Approved by: maintainer implicit Sponsored by: iXsystems Inc. Notes: svn path=/head/; revision=471386
* OWSLib is a Python package for client programming with Open GeospatialMartin Wilke2018-06-024-0/+35
| | | | | | | | | | | | | | Consortium (OGC) web service (hence OWS) interface standards, and their related content models. WWW: https://pypi.python.org/pypi/OWSLib PR: 225294 Submitted by: lbartoletti@tuxfamily.org Sponsored by: iXsystems Inc. Notes: svn path=/head/; revision=471385
* PluginBase is a module for Python that enables the development of flexibleMartin Wilke2018-06-024-0/+28
| | | | | | | | | | | | | plugin systems in Python. WWW: https://github.com/mitsuhiko/pluginbase PR: 228025 Submitted by: lantw44@gmail.com Sponsored by: iXsystems Inc. Notes: svn path=/head/; revision=471384
* PSAutoHint is a standalone version of Adobe AFDKO's autohinter.Martin Wilke2018-06-024-0/+30
| | | | | | | | | | | WWW: https://github.com/adobe-type-tools/psautohint PR: 228026 Submitted by: lantw44@gmail.com Sponsored by: iXsystems Inc. Notes: svn path=/head/; revision=471383
* - Update to 2.0Martin Wilke2018-06-022-11/+22
| | | | | | | | | | | | | | | - Switch to django111 - Update MASTER_SITES CHEESESHOP - Added LICENSE - Added DOCS option with the appropriate dependencies PR: 228153 Submitted by: freebsd_ports@k-worx.org Approved by: maintainer timeout Sponsored by: iXsystems Inc. Notes: svn path=/head/; revision=471382
* - Update to 1.4.0Martin Wilke2018-06-022-5/+8
| | | | | | | | | | | | | - Switch to django111 - Added LICENSE and LICENSE_FILE PR: 228256 Submitted by: freebsd_ports@k-worx.org Approved by: maintainer timeout Sponsored by: iXsystems Inc. Notes: svn path=/head/; revision=471381
* emulators/citra: connect and run tests by defaultJan Beich2018-06-021-0/+3
| | | | Notes: svn path=/head/; revision=471380
* emulators/citra: fix minor issuesJan Beich2018-06-021-4/+2
| | | | | | | | | - Actually disable SNDIO=off if sndio is installed - Drop cruft from OPTIONS_GROUP = CUBEB - Consistently sort _CMAKE_BOOL after _DEPENDS Notes: svn path=/head/; revision=471379
* Update to 7.2.2Jochen Neumeister2018-06-022-4/+4
| | | | | | | Changelog: https://github.com/sebastianbergmann/phpunit/blob/master/ChangeLog-7.2.md Notes: svn path=/head/; revision=471378
* sysutils/py-plumbum: fix comment and pkg-descrDavid Naylor2018-06-022-11/+12
| | | | | | | | PR: 226697 Submitted by: 0mp Notes: svn path=/head/; revision=471377
* devel/renpy: update to 7.0.0Jan Beich2018-06-026-28/+17
| | | | | | | | | Changes: https://www.renpy.org/release/7.0 (see Announcment) Changes: https://www.renpy.org/doc/html/changelog.html#renpy-7-0 MFH: 2018Q2 (stabilization, no in-tree consumers) Notes: svn path=/head/; revision=471376
* Give this a better failure message on powerpc64.Mark Linimon2018-06-021-3/+3
| | | | | | | | | While here, pet portlint. Approved by: portmgr (tier-2 blanket) Notes: svn path=/head/; revision=471375
* - Update to 2.0.6Martin Wilke2018-06-022-4/+4
| | | | | | | | | Changelog: https://www.djangoproject.com/weblog/2018/jun/01/bugfix-release/ Sponsored by: iXsystems Inc. Notes: svn path=/head/; revision=471373
* Update to 3.3.15Emanuel Haupt2018-06-028-85/+106
| | | | Notes: svn path=/head/; revision=471372
* Disable automatic detection of devel/boost-libs if installed. This preventsJason E. Hale2018-06-021-6/+7
| | | | | | | | | | | | | | | | unnecessary linking to libboost_atomic.so if installed on FreeBSD 10.x and use of the boost headers elsewhere. Bump PORTREVISION to rectify stray linking if taglib was built outside of a clean environment. While here, switch to CMAKE_ARGS to CMAKE_ON and switch RCC_[CFLAGS|LDFLAGS] to RCC_USES=localbase:ldflags Reported by: Tatsuki Makino <tatsuki_makino@hotmail.com> (via private mail) Notes: svn path=/head/; revision=471371
* New port: sysutils/coreos-ct, a Container Linux Config TranspilerThomas Zander2018-06-025-0/+56
| | | | | | | | | | PR: 227584 Submitted by: fabian.freyer@physik.tu-berlin.de Reviewed by: 0mp, mat, riggs Differential Revision: https://reviews.freebsd.org/D15114 Notes: svn path=/head/; revision=471370
* Update to the 20180601 snapshot of GCC 8.1.1.Gerald Pfeifer2018-06-022-4/+4
| | | | Notes: svn path=/head/; revision=471369
* graphics/drm-stable-kmod, graphics/drm-next-kmod: Update to latest snapshotNiclas Zeising2018-06-024-12/+11
| | | | | | | | | | | | This fixes a regression on CURRENT after some changes to lkpi in base r334482 Approved by: jmd (maintainer, implicit, regression fix) MFH: 2018Q2 X-MFH-note: include r471110, better support for old GPUs in stable-kmod Tested by: Johannes Lundberg Notes: svn path=/head/; revision=471368
* Update to the 20180531 snapshot of GCC 7.3.1.Gerald Pfeifer2018-06-022-4/+4
| | | | Notes: svn path=/head/; revision=471367
* devel/svn2git: update to 1.0.12David Naylor2018-06-025-38/+27
| | | | | | | | | | | | | | | | - add LICENSE_FILE as it is now included in the tarball - LICENSE does not indicate "or later" for version - add libapr as dependency, it is linked in - switch to Qt5 [1] - override LOCALBASE for SVN and APR includes using qmake arguments - update patches (and patch name) [1] Although the code base still compiles with Qt4, the src.pro file implicitly uses Qt5. On Qt4 the overriding of the SVN_INCLUDE and APR_INCLUDE variables do not work (due to the src.pro implicitly using Qt5). Notes: svn path=/head/; revision=471366
* - update to 3.4-20180520Olli Hauer2018-06-022-5/+5
| | | | Notes: svn path=/head/; revision=471365
* - update to 3.3.1Olli Hauer2018-06-023-14/+13
| | | | | | | - rework MySQL patch Notes: svn path=/head/; revision=471364
* - Update 1.0.1Li-Wen Hsu2018-06-022-4/+4
| | | | Notes: svn path=/head/; revision=471363
* audio/supercollider: Remove unused CMAKE_ENVTobias Kortkamp2018-06-021-1/+0
| | | | | | | | | | CMAKE_ENV has not been supported since 2015. The build has never used it so replacing it with CONFIGURE_ENV should not be needed. It was added in r436552 by me. Notes: svn path=/head/; revision=471362
* Update to 1.0.16Romain Tartière2018-06-022-4/+4
| | | | Notes: svn path=/head/; revision=471361
* net/p5-Net-ACME2: update 0.10 -> 0.11Kurt Jaeger2018-06-022-6/+13
| | | | | | | - added several dependencies Notes: svn path=/head/; revision=471360
* finance/R-cran-tseries: updated to version 0.10-44David Naylor2018-06-022-5/+4
| | | | | | | | | | | | - removed PORTREVISION due to version bump - changelog: - R/test.R (jarque.bera.test): Fix problem spotted by Alejandro Gamez <agomezh@gmail.com>. Generated by: portcran (0.1.8) Notes: svn path=/head/; revision=471359
* math/R-cran-gss: updated to version 2.1-9David Naylor2018-06-023-6/+5
| | | | | | | | | | | | | | | - removed PORTREVISION due to version bump - update website URL to align with CRAN package - changelog: - R: Reworked ssllrm suite to add qd.wt. - man: Minor edit to reflect changes in R. - src: i) Changes and bug fixes in llrmnewton. ii) Minor edit in cdennewton. Generated by: portcran (0.1.8) Notes: svn path=/head/; revision=471358
* math/R-cran-carData: Companion to Applied Regression Data SetsDavid Naylor2018-06-024-0/+23
| | | | | | | Generated by: portcran (0.1.8) Notes: svn path=/head/; revision=471357
* Fixup lld linking.Alexander Nedotsukov2018-06-021-0/+1
| | | | | | | Submitted by: jkim Notes: svn path=/head/; revision=471356
* devel/py-IBMQuantumExperience: Update 1.9.1 -> 1.9.2Yuri Victorovich2018-06-022-4/+4
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=471355
* - Update WWWDmitry Marakasov2018-06-021-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=471354
* math/py-PySCIPOpt: Update 1.4.7 -> 1.4.9Yuri Victorovich2018-06-022-4/+4
| | | | | | | Reported by: portscout Notes: svn path=/head/; revision=471353
* graphics/gmic: Add options PLUGINS X11Yuri Victorovich2018-06-022-7/+21
| | | | | | | | | Also simplify EXTRACT_ONLY and move plist to pkg-plist. Reported by: mat (EXTRACT_ONLY simplification) Notes: svn path=/head/; revision=471352
* - Update to 1.3.1Wen Heping2018-06-022-4/+4
| | | | Notes: svn path=/head/; revision=471351
* - Switch to new test frameworkDmitry Marakasov2018-06-021-1/+1
| | | | | | | Approved by: portmgr blanket Notes: svn path=/head/; revision=471350
* Remove expired port:Rene Ladan2018-06-0226-2971/+1
| | | | | | | 2018-06-01 lang/perl5.22: Support ends three years after .0 release, please upgrade to a more recent version of Perl Notes: svn path=/head/; revision=471349