# $FreeBSD$ # @(#)COPYRIGHT 8.2 (Berkeley) 3/21/94 The compilation of software known as the FreeBSD Ports Collection is distributed under the following terms: Copyright (C) 1994-2012 The FreeBSD Project. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. b. PR: 219275 Bump PORTREVISIONs for ports depending on the canonical version of GCC and 2017-04-01T15:23:30+00:00 gerald gerald@FreeBSD.org 2017-04-01T15:23:30+00:00 8047a240e1cbbe6481930d3ec780c9c92fccd00c 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
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
Don't quote {} in find -exec calls. 2016-12-01T11:18:03+00:00 mat mat@FreeBSD.org 2016-12-01T11:18:03+00:00 359f486d9eb2765e2538b660686a47ca7f489039 Braces are not shell metacharacters, and they do not need to be quoted. By the time find parses its arguments and dicovers them, the quoting will have been removed by the shell anyway. Sponsored by: Absolight
Braces are not shell metacharacters, and they do not need to be quoted.
By the time find parses its arguments and dicovers them, the quoting
will have been removed by the shell anyway.

Sponsored by:	Absolight
- Fix build on 9.x by propagating c++11 compiler requirement from libcommoncpp 2016-10-25T13:20:28+00:00 amdmi3 amdmi3@FreeBSD.org 2016-10-25T13:20:28+00:00 f5e5181a1f442bd3c3dff1c3f2d7683f9f09c609 - Switch to USES=localbase Approved by: portmgr blanket
- Switch to USES=localbase

Approved by:	portmgr blanket
Remove ${PORTSDIR}/ from dependencies, categories d, e, f, and g. 2016-04-01T14:00:51+00:00 mat mat@FreeBSD.org 2016-04-01T14:00:51+00:00 148314483d3098c0d6a33944f1190842e671502f With hat: portmgr Sponsored by: Absolight
With hat:	portmgr
Sponsored by:	Absolight
- Update devel/ucommon to 7.0.0 2016-01-14T03:23:07+00:00 jhale jhale@FreeBSD.org 2016-01-14T03:23:07+00:00 ef773c81621074ac27730566c7eb24c83c536b11 - Bump PORTREVISION on dependent ports due to shlib bump - Update audio/ccaudio2 to 2.2.0 - Add LICENSE - Fix detection of gsm and speex
- Bump PORTREVISION on dependent ports due to shlib bump

- Update audio/ccaudio2 to 2.2.0
- Add LICENSE
- Fix detection of gsm and speex
security/libgcrypt: 1.6.1 -> 1.6.2, bump depends 2015-01-02T18:46:33+00:00 pi pi@FreeBSD.org 2015-01-02T18:46:33+00:00 3cccc94bd687250a1327b268f60a739e26d142ac Changes: - src/sexp.c (do_vsexp_sscan): Return error for invalid args. - cipher/md.c (_gcry_md_info): Fix a segv in case of calling with wrong parameters. - cipher/primegen.c (_gcry_generate_elg_prime): Change to return an error code, possible NULL deref in call to prime generator. - cipher/dsa.c (generate): Take care of new return code. - cipher/elgamal.c (generate): Change to return an error code. Take care of _gcry_generate_elg_prime return code. - ecc: Support the non-standard 0x40 compression flag for EdDSA. - mpi: Extend the internal mpi_get_buffer. - mpi: Fix regression for powerpc-apple-darwin detection. - Fix bug inhibiting the use of the sentinel attribute in src/gcrypt.h.in - Fix building for the x32 target without asm modules in mpi/generic/mpi-asm-defs.h: Use a fixed value for the x32 ABI. - Fix ARM assembly when building __PIC__ - mpi: Fix a subtle bug setting spurious bits with in mpi_set_bit. * mpi/mpi-bit.c (_gcry_mpi_set_bit, _gcry_mpi_set_highbit): Clear allocated but not used bits before resizing. * tests/t-mpi-bits.c (set_bit_with_resize): New. - Use internal malloc function in fips.c. * src/fips.c (check_binary_integrity): s/gcry_malloc/xtrymalloc/. - pubkey: Re-map all deprecated RSA algo numbers. - cipher: Fix possible NULL dereference in cipher/md.c for being NULL. - Fix ARMv6 detection when CFLAGS modify target CPU architecture. PR: 193264 Approved by: cpm@fbsd.es (maintainer)
Changes:
- src/sexp.c (do_vsexp_sscan): Return error for invalid args.
- cipher/md.c (_gcry_md_info): Fix a segv in case of calling
  with wrong parameters.
- cipher/primegen.c (_gcry_generate_elg_prime): Change to return an
  error code, possible NULL deref in call to prime generator.
- cipher/dsa.c (generate): Take care of new return code.
- cipher/elgamal.c (generate): Change to return an error code.  Take
	care of _gcry_generate_elg_prime return code.
- ecc: Support the non-standard 0x40 compression flag for EdDSA.
- mpi: Extend the internal mpi_get_buffer.
- mpi: Fix regression for powerpc-apple-darwin detection.
- Fix bug inhibiting the use of the sentinel attribute in src/gcrypt.h.in
- Fix building for the x32 target without asm modules in
  mpi/generic/mpi-asm-defs.h: Use a fixed value for the x32 ABI.
- Fix ARM assembly when building __PIC__
- mpi: Fix a subtle bug setting spurious bits with in mpi_set_bit.
  * mpi/mpi-bit.c (_gcry_mpi_set_bit, _gcry_mpi_set_highbit): Clear
    allocated but not used bits before resizing.
  * tests/t-mpi-bits.c (set_bit_with_resize): New.
- Use internal malloc function in fips.c.
  * src/fips.c (check_binary_integrity): s/gcry_malloc/xtrymalloc/.
- pubkey: Re-map all deprecated RSA algo numbers.
- cipher: Fix possible NULL dereference in cipher/md.c for being NULL.
- Fix ARMv6 detection when CFLAGS modify target CPU architecture.

PR:		193264
Approved by:	cpm@fbsd.es (maintainer)