Commit Graph

508791 Commits

Author SHA1 Message Date
Ed Maste
f795cc8ddf lang/hla: add BUILD_DEPENDS as:devel/binutils
/usr/bin/as will soon be removed from the FreeBSD base system, for
FreeBSD 13.0.

Depend on as (not ${LOCALBASE}/bin/as) so that this will introduce no
change for existing 11.x and 12.x, which will continue to use the base
system GNU as 2.17.50.

PR:		205250
Approved by:	portmgr (blanket)
2020-05-22 13:50:21 +00:00
Jochen Neumeister
36ede2545a Update to 7.70
Changelog: https://www.drupal.org/project/drupal/releases/7.70

MFH:		2020Q2
Security:	c5ec57a9-9c2b-11ea-82b8-4c72b94353b5
Sponsored by:	Netzkommune GmbH
2020-05-22 13:10:02 +00:00
Jochen Neumeister
dce7bae92d Add entry for drual7
Sponsored by:	Netzkommune GmbH
2020-05-22 13:07:46 +00:00
Adam Weinberger
3f28347b2c mojolicious: Update to 8.43 2020-05-22 11:17:00 +00:00
Danilo G. Baio
a9f23cf5d0 net-im/py-matrix-synapse: Update to 1.12.4
Changelog:	https://github.com/matrix-org/synapse/blob/v1.12.4/CHANGES.md

PR:		246150
Submitted by:	shibayashi@cypherpunk.observer
Approved by:	Sascha Biberhofer <ports@skyforge.at> (maintainer)
MFH:		2020Q2 (blanket: bugfix release)
X-MFH-with:	533398
2020-05-22 10:35:58 +00:00
Koichiro Iwao
11aa7d037f security/softether5: Fix log, pid, db directory
Fix SE_{LOG,PID,DB}DIR weren't reintroduced properly after r532611.
While here, omit nolonger needed post-patch.
2020-05-22 10:35:49 +00:00
Dmitry Marakasov
c6620f86e6 - Add LICENSE_FILE
- Switch to options helpers

Approved by:	portmgr blanket
2020-05-22 09:32:48 +00:00
Yuri Victorovich
62a531a599 science/qbox: Update 1.71.0 -> 1.71.1
Reported by:	portscout
2020-05-22 08:42:19 +00:00
Yuri Victorovich
376e1d4746 misc/snakemake: Update 5.17.0 -> 5.18.0
Reported by:	portscout
2020-05-22 08:21:49 +00:00
Yuri Victorovich
61a66c1b2b audio/jamulus: Update 3.4.4 -> 3.5.3
Reported by:	portscout
2020-05-22 08:15:30 +00:00
Gerald Pfeifer
0e834f6191 Update to the 20200521 snapshot of GCC 8.4.1.
This brings two backports for aarch64 and x86 each, and one for Fortran;
nothing that appears really important.
2020-05-22 08:13:57 +00:00
Dirk Meyer
6d13b2dba5 - use binutils from ports
Reported by:	Ed Maste
2020-05-22 06:38:19 +00:00
Hiroki Tagato
ff01b2be3d - Update to 4.0
- Update port description
- Update WWW

PR:		245913
Submitted by:	Andy Mender <andymenderunix@gmail.com>
Approved by:	mentors (implicit)
Changelog:	https://github.com/xaos-project/XaoS/releases/tag/release-4.0
2020-05-22 05:37:40 +00:00
Dima Panov
f8c87108f4 mail/opensmtpd: update to 6.7.1p1 portable release
- fixes a packaging issue causing asr.h to be installed in target system
- fixes a possible crash in the MTA when establishing IPv6 connections
2020-05-22 03:55:47 +00:00
Jan Beich
5861211b40 multimedia/openh264: restore PORTEPOCH after r536180
Reported by:	jrm
2020-05-22 02:28:22 +00:00
Greg Lewis
911e148f98 Update to 3.4.3 2020-05-22 01:58:05 +00:00
Jan Beich
767d3c61be multimedia/openh264: update to 2.1.1
Changes:	https://github.com/cisco/openh264/releases/tag/v2.1.1
ABI:		https://abi-laboratory.pro/tracker/timeline/openh264/
Reported by:	GitHub (watch releases)
2020-05-22 01:19:33 +00:00
Yuri Victorovich
807379df78 math/elemental: Broken on i386
Reported by:	fallout
2020-05-22 00:35:49 +00:00
Yuri Victorovich
025ecb1926 New port: lang/halide: Halide, a language for fast and portable data-parallel computation 2020-05-22 00:34:33 +00:00
Mark Linimon
0a83bd1d20 Add USE_CSTD=c99 to fix build on GCC-based systems:
./test.c:44: error: 'for' loop initial declaration used outside C99 mode
2020-05-22 00:07:06 +00:00
Danilo G. Baio
bd08cb558d mail/py-email-validator: Update to 1.1.1
PR:		246644
Submitted by:	Goran Mekić <meka@tilda.center> (maintainer)
2020-05-21 21:53:11 +00:00
Danilo G. Baio
5acacc0b39 textproc/py-sphinx: Update to 3.0.3
Changelog:	https://github.com/sphinx-doc/sphinx/blob/v3.0.3/CHANGES

PR:		246513
Exp-run by:	antoine
2020-05-21 21:50:39 +00:00
Lorenzo Salvadore
5d065c843b Most C implementations of linked list are untyped. That is, their data carriers
are typically void *. This is error prone since your compiler will not be able
to help you correct your mistakes (oh, was it a pointer-to-a-pointer... I
thought it was just a pointer...).

tllist addresses this by using pre-processor macros to implement dynamic types,
where the data carrier is typed to whatever you want; both primitive data types
are supported as well as aggregated ones such as structs, enums and unions.

Being a double-linked list, most operations are constant in time (including
pushing and popping both to/from front and back).

The memory overhead is fairly small; each item carries, besides its data, a
prev and next pointer (i.e. a constant 16 byte overhead per item on 64-bit
architectures).

The list itself has a head and a tail pointer, plus a length variable
(typically 8 bytes on 64-bit architectures) to make list length lookup constant
in time.

Thus, assuming 64-bit pointers (and a 64-bit size_t type), the total overhead
is 3*8 + n*2*8 bytes.

WWW: https://codeberg.org/dnkl/tllist

PR:		245410
Submitted by:	ports@xanderio.de
2020-05-21 21:46:56 +00:00
Lorenzo Salvadore
66233c920b games/lugaru: Take maintainership
Approved by:	gerald (mentor)
2020-05-21 21:31:01 +00:00
Sunpoet Po-Chuan Hsieh
57a5166d94 Update to 0.48
- Pass maintainership to submitter

Changes:	https://metacpan.org/changes/distribution/Capture-Tiny
PR:		246573
Submitted by:	Sergei Vyshenski <svysh.fbsd@gmail.com>
Approved by:	Bill Brinzer <bill.brinzer@gmail.com> (maintainer)
2020-05-21 20:46:13 +00:00
Sunpoet Po-Chuan Hsieh
61d973c9a9 Update to 0.14
Changes:	https://github.com/json-c/json-c/blob/master/ChangeLog
PR:		246389
Exp-run by:	antoine
2020-05-21 20:46:06 +00:00
Sunpoet Po-Chuan Hsieh
2f973d10fd Update to 3.12.1
Changes:	https://github.com/protocolbuffers/protobuf/releases
2020-05-21 20:45:59 +00:00
Sunpoet Po-Chuan Hsieh
a8c0e86525 Update to 2.11.503
Changes:	https://github.com/aws/aws-sdk-ruby/releases
2020-05-21 20:45:53 +00:00
Sunpoet Po-Chuan Hsieh
6c7c39de3c Update to 1.14.0
Changes:	https://github.com/aws/aws-sdk-ruby/blob/master/gems/aws-sdk-transcribestreamingservice/CHANGELOG.md
2020-05-21 20:45:48 +00:00
Sunpoet Po-Chuan Hsieh
b384576812 Update to 1.25.0
Changes:	https://github.com/aws/aws-sdk-ruby/blob/master/gems/aws-sdk-securityhub/CHANGELOG.md
2020-05-21 20:45:43 +00:00
Sunpoet Po-Chuan Hsieh
b495630168 Update to 2.11.503
Changes:	https://github.com/aws/aws-sdk-ruby/releases
2020-05-21 20:45:38 +00:00
Sunpoet Po-Chuan Hsieh
b8e23f7c97 Update to 1.45.0
Changes:	https://github.com/aws/aws-sdk-ruby/blob/master/gems/aws-sdk-medialive/CHANGELOG.md
2020-05-21 20:45:33 +00:00
Sunpoet Po-Chuan Hsieh
964f22a247 Update to 2.11.503
Changes:	https://github.com/aws/aws-sdk-ruby/releases
2020-05-21 20:45:27 +00:00
Sunpoet Po-Chuan Hsieh
5174446795 Update to 1.30.0
Changes:	https://github.com/aws/aws-sdk-ruby/blob/master/gems/aws-sdk-codedeploy/CHANGELOG.md
2020-05-21 20:45:22 +00:00
Sunpoet Po-Chuan Hsieh
2d83964cba Update to 1.27.0
Changes:	https://github.com/aws/aws-sdk-ruby/blob/master/gems/aws-sdk-chime/CHANGELOG.md
2020-05-21 20:45:17 +00:00
Sunpoet Po-Chuan Hsieh
37c4bbb602 Update to 1.14.0
Changes:	https://github.com/aws/aws-sdk-ruby/blob/master/gems/aws-sdk-backup/CHANGELOG.md
2020-05-21 20:45:12 +00:00
Sunpoet Po-Chuan Hsieh
dc6f964373 Update to 1.23.0
Changes:	https://github.com/aws/aws-sdk-ruby/blob/master/gems/aws-sdk-appmesh/CHANGELOG.md
2020-05-21 20:45:06 +00:00
Sunpoet Po-Chuan Hsieh
bcd41501b2 Update to 1.39.0
Changes:	https://github.com/aws/aws-sdk-ruby/blob/master/gems/aws-sdk-applicationautoscaling/CHANGELOG.md
2020-05-21 20:45:01 +00:00
Sunpoet Po-Chuan Hsieh
e2a605a400 Fix RUN_DEPENDS: pytest is not a runtime dependency
- Bump PORTREVISION for dependency change
2020-05-21 20:44:56 +00:00
Sunpoet Po-Chuan Hsieh
39200f254c Add DF, GRAPHICS, TDA, UNIMOD and XML options 2020-05-21 20:44:52 +00:00
Sunpoet Po-Chuan Hsieh
87ec270a19 Update to 4.10.2
Changes:	https://github.com/fonttools/fonttools/releases
2020-05-21 20:44:47 +00:00
Sunpoet Po-Chuan Hsieh
761b625095 Update to 1.18.0
Changes:	https://github.com/frictionlessdata/tableschema-py/blob/master/README.md#changelog
		https://github.com/frictionlessdata/tableschema-py/commits/master
2020-05-21 20:44:42 +00:00
Sunpoet Po-Chuan Hsieh
2bde6b291f Update to 3.12.1
Changes:	https://github.com/protocolbuffers/protobuf/releases
2020-05-21 20:44:37 +00:00
Sunpoet Po-Chuan Hsieh
041886dacf Update to 0.0400
Changes:	https://metacpan.org/changes/distribution/Test-TrailingSpace
2020-05-21 20:44:32 +00:00
Sunpoet Po-Chuan Hsieh
8ca9126c95 Update to 1.28
Changes:	https://metacpan.org/changes/distribution/FFI-Platypus
2020-05-21 20:44:26 +00:00
Sunpoet Po-Chuan Hsieh
8a3f5e25c5 Update to 2.07
Changes:	https://metacpan.org/changes/distribution/Data-Object-Space
2020-05-21 20:44:21 +00:00
Sunpoet Po-Chuan Hsieh
bd85af7cc9 Fix build with json-c 0.14 2020-05-21 20:44:10 +00:00
Vinícius Zavam
cdf4f0f718 [NEW] net/gscloud: Official CLI to use gridscale's API, written in Go
* Currently supports controlling Kubernetes (k8s) services

  WWW: https://github.com/gridscale/gscloud
2020-05-21 20:26:36 +00:00
Vinícius Zavam
f9444ecef8 [NEW] devel/py-gs_api_client: Official Python wrapper for gridscale's API.
It allows you to manage your own infrastructure from your own
  applications, or from the command line.

  WWW: https://pypi.org/project/gs-api-client
2020-05-21 20:15:05 +00:00
Vinícius Zavam
7fb4d0e273 textproc/multimarkdown: fix fetch when either CHEAT_SHEET or EXTRAS are ON
PR:		246057
Submitted by:	Yasuhiro KIMURA <yasu % utahime.org>
2020-05-21 20:02:52 +00:00