pkgsrc/security
nia dacf71ed96 mbedtls: Update to 2.16.3
= mbed TLS 2.16.3 branch released 2019-09-06

Security
   * Fix a missing error detection in ECJPAKE. This could have caused a
     predictable shared secret if a hardware accelerator failed and the other
     side of the key exchange had a similar bug.
   * The deterministic ECDSA calculation reused the scheme's HMAC-DRBG to
     implement blinding. Because of this for the same key and message the same
     blinding value was generated. This reduced the effectiveness of the
     countermeasure and leaked information about the private key through side
     channels. Reported by Jack Lloyd.
   * When writing a private EC key, use a constant size for the private
     value, as specified in RFC 5915. Previously, the value was written
     as an ASN.1 INTEGER, which caused the size of the key to leak
     about 1 bit of information on average and could cause the value to be
     1 byte too large for the output buffer.

API Changes
   * The new function mbedtls_ecdsa_sign_det_ext() is similar to
     mbedtls_ecdsa_sign_det() but allows passing an external RNG for the
     purpose of blinding.

Bugfix
   * Fix to allow building test suites with any warning that detects unused
     functions. Fixes #1628.
   * Fix typo in net_would_block(). Fixes #528 reported by github-monoculture.
   * Remove redundant include file in timing.c. Fixes #2640 reported by irwir.
   * Fix Visual Studio Release x64 build configuration by inheriting
     PlatformToolset from the project configuration. Fixes #1430 reported by
     irwir.
   * Enable Suite B with subset of ECP curves. Make sure the code compiles even
     if some curves are not defined. Fixes #1591 reported by dbedev.
   * Fix misuse of signed arithmetic in the HAVEGE module. #2598
   * Update test certificates that were about to expire. Reported by
     Bernhard M. Wiedemann in #2357.
   * Fix the build on ARMv5TE in ARM mode to not use assembly instructions
     that are only available in Thumb mode. Fix contributed by Aurelien Jarno
     in #2169.
   * Fix undefined memset(NULL) call in test_suite_nist_kw.
   * Make NV seed test support MBEDTLS_ENTROPY_FORCE_SHA256.
   * Fix propagation of restart contexts in restartable EC operations.
     This could previously lead to segmentation faults in builds using an
     address-sanitizer and enabling but not using MBEDTLS_ECP_RESTARTABLE.
   * Fix memory leak in in mpi_miller_rabin(). Contributed by
     Jens Wiklander <jens.wiklander@linaro.org> in #2363
   * Improve code clarity in x509_crt module, removing false-positive
     uninitialized variable warnings on some recent toolchains (GCC8, etc).
     Discovered and fixed by Andy Gross (Linaro), #2392.
   * Zero length buffer check for undefined behavior in
     mbedtls_platform_zeroize(). Fixes ARMmbed/mbed-crypto#49.
   * Fix bug in endianness conversion in bignum module. This lead to
     functionally incorrect code on bigendian systems which don't have
     __BYTE_ORDER__ defined. Reported by Brendan Shanks. Fixes #2622.

Changes
   * Make it easier to define MBEDTLS_PARAM_FAILED as assert (which config.h
     suggests). #2671
   * Make `make clean` clean all programs always. Fixes #1862.

= mbed TLS 2.16.2 branch released 2019-06-11

Security
   * Make mbedtls_ecdh_get_params return an error if the second key
     belongs to a different group from the first. Before, if an application
     passed keys that belonged to different group, the first key's data was
     interpreted according to the second group, which could lead to either
     an error or a meaningless output from mbedtls_ecdh_get_params. In the
     latter case, this could expose at most 5 bits of the private key.

Bugfix
   * Server's RSA certificate in certs.c was SHA-1 signed. In the default
     mbedTLS configuration only SHA-2 signed certificates are accepted.
     This certificate is used in the demo server programs, which lead the
     client programs to fail at the peer's certificate verification
     due to an unacceptable hash signature. The certificate has been
     updated to one that is SHA-256 signed. Fix contributed by
     Illya Gerasymchuk.
   * Fix private key DER output in the key_app_writer example. File contents
     were shifted by one byte, creating an invalid ASN.1 tag. Fixed by
     Christian Walther in #2239.
   * Fix potential memory leak in X.509 self test. Found and fixed by
     Junhwan Park, #2106.
   * Reduce stack usage of hkdf tests. Fixes #2195.
   * Fix 1-byte buffer overflow in mbedtls_mpi_write_string() when
     used with negative inputs. Found by Guido Vranken in #2404. Credit to
     OSS-Fuzz.
   * Fix bugs in the AEAD test suite which would be exposed by ciphers which
     either used both encrypt and decrypt key schedules, or which perform padding.
     GCM and CCM were not affected. Fixed by Jack Lloyd.
   * Fix incorrect default port number in ssl_mail_client example's usage.
     Found and fixed by irwir. #2337
   * Add missing parentheses around parameters in the definition of the
     public macro MBEDTLS_X509_ID_FLAG. This could lead to invalid evaluation
     in case operators binding less strongly than subtraction were used
     for the parameter.
   * Add a check for MBEDTLS_X509_CRL_PARSE_C in ssl_server2, guarding the crl
     sni entry parameter. Reported by inestlerode in #560.
   * Add DER-encoded test CRTs to library/certs.c, allowing
     the example programs ssl_server2 and ssl_client2 to be run
     if MBEDTLS_FS_IO and MBEDTLS_PEM_PARSE_C are unset. Fixes #2254.
   * Fix missing bounds checks in X.509 parsing functions that could
     lead to successful parsing of ill-formed X.509 CRTs. Fixes #2437.
   * Fix multiple X.509 functions previously returning ASN.1 low-level error
     codes to always wrap these codes into X.509 high level error codes before
     returning. Fixes #2431.

Changes
   * Return from various debugging routines immediately if the
     provided SSL context is unset.
   * Remove dead code from bignum.c in the default configuration.
     Found by Coverity, reported and fixed by Peter Kolbus (Garmin). Fixes #2309.
   * Add test for minimal value of MBEDTLS_MPI_WINDOW_SIZE to all.sh.
     Contributed by Peter Kolbus (Garmin).
   * Change wording in the `mbedtls_ssl_conf_max_frag_len()`'s documentation to
     improve clarity. Fixes #2258.
   * Replace multiple uses of MD2 by SHA-256 in X.509 test suite. Fixes #821.

= mbed TLS 2.16.1 branch released 2019-03-19

Features
   * Add MBEDTLS_REMOVE_3DES_CIPHERSUITES to allow removing 3DES ciphersuites
     from the default list (enabled by default). See
     https://sweet32.info/SWEET32_CCS16.pdf.

Bugfix
   * Fix a compilation issue with mbedtls_ecp_restart_ctx not being defined
     when MBEDTLS_ECP_ALT is defined. Reported by jwhui. Fixes #2242.
   * Run the AD too long test only if MBEDTLS_CCM_ALT is not defined.
     Raised as a comment in #1996.
   * Reduce the stack consumption of mbedtls_mpi_fill_random() which could
     previously lead to a stack overflow on constrained targets.
   * Add `MBEDTLS_SELF_TEST` for the mbedtls_self_test functions
     in the header files, which missed the precompilation check. #971
   * Fix clobber list in MIPS assembly for large integer multiplication.
     Previously, this could lead to functionally incorrect assembly being
     produced by some optimizing compilers, showing up as failures in
     e.g. RSA or ECC signature operations. Reported in #1722, fix suggested
     by Aurelien Jarno and submitted by Jeffrey Martin.
   * Fix signed-to-unsigned integer conversion warning
     in X.509 module. Fixes #2212.
   * Reduce stack usage of `mpi_write_hlp()` by eliminating recursion.
     Fixes #2190.
   * Remove a duplicate #include in a sample program. Fixed by Masashi Honma #2326.
   * Remove the mbedtls namespacing from the header file, to fix a "file not found"
     build error. Fixed by Haijun Gu #2319.
   * Fix returning the value 1 when mbedtls_ecdsa_genkey failed.
   * Fix false failure in all.sh when backup files exist in include/mbedtls
     (e.g. config.h.bak). Fixed by Peter Kolbus (Garmin) #2407.
   * Ensure that unused bits are zero when writing ASN.1 bitstrings when using
     mbedtls_asn1_write_bitstring().
   * Fix issue when writing the named bitstrings in KeyUsage and NsCertType
     extensions in CSRs and CRTs that caused these bitstrings to not be encoded
     correctly as trailing zeroes were not accounted for as unused bits in the
     leading content octet. Fixes #1610.

Changes
   * Include configuration file in all header files that use configuration,
     instead of relying on other header files that they include.
     Inserted as an enhancement for #1371
   * Add support for alternative CSR headers, as used by Microsoft and defined
     in RFC 7468. Found by Michael Ernst. Fixes #767.
   * Fix configuration queries in ssl-opt.h. #2030
   * Ensure that ssl-opt.h can be run in OS X. #2029
   * Reduce the complexity of the timing tests. They were assuming more than the
     underlying OS actually guarantees.
   * Re-enable certain interoperability tests in ssl-opt.sh which had previously
     been disabled for lack of a sufficiently recent version of GnuTLS on the CI.
   * Ciphersuites based on 3DES now have the lowest priority by default when
     they are enabled.

= mbed TLS 2.16.0 branch released 2018-12-21

Features
   * Add a new config.h option of MBEDTLS_CHECK_PARAMS that enables validation
     of parameters in the API. This allows detection of obvious misuses of the
     API, such as passing NULL pointers. The API of existing functions hasn't
     changed, but requirements on parameters have been made more explicit in
     the documentation. See the corresponding API documentation for each
     function to see for which parameter values it is defined. This feature is
     disabled by default. See its API documentation in config.h for additional
     steps you have to take when enabling it.

API Changes
   * The following functions in the random generator modules have been
     deprecated and replaced as shown below. The new functions change
     the return type from void to int to allow returning error codes when
     using MBEDTLS_<MODULE>_ALT for the underlying AES or message digest
     primitive. Fixes #1798.
     mbedtls_ctr_drbg_update() -> mbedtls_ctr_drbg_update_ret()
     mbedtls_hmac_drbg_update() -> mbedtls_hmac_drbg_update_ret()
   * Extend ECDH interface to enable alternative implementations.
   * Deprecate error codes of the form MBEDTLS_ERR_xxx_INVALID_KEY_LENGTH for
     ARIA, CAMELLIA and Blowfish. These error codes will be replaced by
     the more generic per-module error codes MBEDTLS_ERR_xxx_BAD_INPUT_DATA.
   * Additional parameter validation checks have been added for the following
     modules - AES, ARIA, Blowfish, CAMELLIA, CCM, GCM, DHM, ECP, ECDSA, ECDH,
     ECJPAKE, SHA, Chacha20 and Poly1305, cipher, pk, RSA, and MPI.
     Where modules have had parameter validation added, existing parameter
     checks may have changed. Some modules, such as Chacha20 had existing
     parameter validation whereas other modules had little. This has now been
     changed so that the same level of validation is present in all modules, and
     that it is now optional with the MBEDTLS_CHECK_PARAMS flag which by default
     is off. That means that checks which were previously present by default
     will no longer be.

New deprecations
   * Deprecate mbedtls_ctr_drbg_update and mbedtls_hmac_drbg_update
     in favor of functions that can return an error code.

Bugfix
   * Fix for Clang, which was reporting a warning for the bignum.c inline
     assembly for AMD64 targets creating string literals greater than those
     permitted by the ISO C99 standard. Found by Aaron Jones. Fixes #482.
   * Fix runtime error in `mbedtls_platform_entropy_poll()` when run
     through qemu user emulation. Reported and fix suggested by randombit
     in #1212. Fixes #1212.
   * Fix an unsafe bounds check when restoring an SSL session from a ticket.
     This could lead to a buffer overflow, but only in case ticket authentication
     was broken. Reported and fix suggested by Guido Vranken in #659.
   * Add explicit integer to enumeration type casts to example program
     programs/pkey/gen_key which previously led to compilation failure
     on some toolchains. Reported by phoenixmcallister. Fixes #2170.
   * Fix double initialization of ECC hardware that made some accelerators
     hang.
   * Clarify documentation of mbedtls_ssl_set_own_cert() regarding the absence
     of check for certificate/key matching. Reported by Attila Molnar, #507.
2019-10-01 17:44:11 +00:00
..
2fa Revbump all Go packages after 1.12.10 update. 2019-09-26 20:10:39 +00:00
acmesh acmesh: Update to 2.8.2 2019-08-31 11:57:34 +00:00
aide
aide06
amap all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
antonym Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
ap-modsecurity2 Recursive revbump from boost-1.71.0 2019-08-22 12:22:48 +00:00
apg Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
argon2 argon2: Update to 20190702 2019-08-07 12:58:49 +00:00
arirang Follow some http -> https redirects. 2017-08-01 14:58:51 +00:00
asignify Switch github HOMEPAGEs to https. 2017-07-30 22:32:10 +00:00
avcheck
Bastille Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
bcrypt
bearssl Update security/bearssl from 0.5 to 0.6 2019-01-21 06:59:58 +00:00
beecrypt Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
bitstir
boringssl Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
botan Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
botan-devel Recursive revbump from boost-1.71.0 2019-08-22 12:22:48 +00:00
caff Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
ccid Update ccid to version 1.4.27, including link requirement in pcsc-lite. 2019-09-17 23:09:42 +00:00
cfs security/cfs: Fix HOMEPAGE 2019-04-29 22:24:31 +00:00
chkrootkit *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
clamav clamav: Disable mapfile on SunOS. 2019-09-06 09:22:49 +00:00
clamav-doc Update clam-doc to 0.101.2 2019-08-05 14:47:33 +00:00
clusterssh Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
codecrypt
CoolKey Comment out dead sites. 2017-08-16 20:45:30 +00:00
courier-authlib Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
crack Comment out some dead HOMEPAGEs. 2017-08-01 17:40:08 +00:00
credns
crudesaml crudesaml: add SHA512 checksum to distinfo 2019-05-02 08:55:26 +00:00
crypto++ crypto++: updated to 8.2.0 2019-06-05 19:06:07 +00:00
CSP Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
cvm all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
cy2-anonymous Removed commented-out PKGREVISIONs 2018-12-09 21:05:32 +00:00
cy2-crammd5 Removed commented-out PKGREVISIONs 2018-12-09 21:05:32 +00:00
cy2-digestmd5 Removed commented-out PKGREVISIONs 2018-12-09 21:05:32 +00:00
cy2-gssapi Removed commented-out PKGREVISIONs 2018-12-09 21:05:32 +00:00
cy2-ldapdb Removed commented-out PKGREVISIONs 2018-12-09 21:05:32 +00:00
cy2-login Removed commented-out PKGREVISIONs 2018-12-09 21:05:32 +00:00
cy2-ntlm Removed commented-out PKGREVISIONs 2018-12-09 21:05:32 +00:00
cy2-otp Removed commented-out PKGREVISIONs 2018-12-09 21:05:32 +00:00
cy2-plain Removed commented-out PKGREVISIONs 2018-12-09 21:05:32 +00:00
cy2-saml Removed commented-out PKGREVISIONs 2018-12-09 21:05:32 +00:00
cy2-scram Removed commented-out PKGREVISIONs 2018-12-09 21:05:32 +00:00
cy2-sql Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
cyrus-sasl cyrus-sasl: Remove patch that is now actively harmful. 2019-07-09 11:55:56 +00:00
cyrus-saslauthd Removed commented-out PKGREVISIONs 2018-12-09 21:05:32 +00:00
dcfldd
ddos-scan
dehydrated Updated security/dehydrated to version 0.6.5. 2019-08-20 21:50:56 +00:00
destroy Comment out dead sites. 2017-08-16 20:45:30 +00:00
dhbitty dhbitty: follow redirects 2017-09-22 07:02:57 +00:00
dirb Recursive revbump from boost-1.71.0 2019-08-22 12:22:48 +00:00
dnssec-tools Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
doas security/doas: Remove system mentions in DESCR and fix a typo. 2019-09-14 18:58:19 +00:00
dropbear dropbear: Update to 2019.78 2019-06-10 13:44:35 +00:00
dsniff Follow some http redirects. 2017-08-16 20:21:03 +00:00
dsniff-nox11
duo-unix security/duo-unix: Update to 1.10.4. 2018-09-04 14:43:09 +00:00
easy-rsa easy-rsa: updated to 3.0.6 2019-02-06 08:07:59 +00:00
EasyPG emacs22*, emacs23*, emacs24*: remove unmaintained emacs versions 2017-09-29 12:40:26 +00:00
ecap_clamav_adapter Convert CXXFLAGS setting C++ standard to USE_LANGUAGES. 2017-05-03 08:38:38 +00:00
egd Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
engine-pkcs11
ent
erlang-epam erlang-epam: fix SunOS, needs socket libs 2019-07-14 15:31:46 +00:00
erlang-fast_tls security/erlang-fast_tls: Update to 1.0.23. 2018-07-20 09:02:12 +00:00
erlang-jose security/erlang-jose: Provide workaround to build on erlang>=21. 2018-07-20 09:55:47 +00:00
erlang-p1_oauth2 security/erlang-p1_oauth2: Update to 0.6.3. 2018-05-17 13:30:57 +00:00
fail2ban PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
flawfinder PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
fprint-demo *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
fragroute Follow some http -> https redirects. 2017-08-01 14:58:51 +00:00
fsh PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
fwbuilder Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
gcr Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
gnome-keyring *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
gnome-keyring-manager *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
gnome-keyring-sharp Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
gnu-crypto
gnu-pw-mgr
gnupg Recursive revbump from boost-1.71.0 2019-08-22 12:22:48 +00:00
gnupg-pkcs11-scd *: recursive bump for nettle 3.5.1 2019-07-20 22:45:58 +00:00
gnupg2 *: recursive bump for nettle 3.5.1 2019-07-20 22:45:58 +00:00
gnutls gnutls: No longer a GNU project 2019-10-01 14:34:08 +00:00
go-asn1-ber Revbump all Go packages after 1.12.10 update. 2019-09-26 20:10:39 +00:00
go-crypt Revbump all Go packages after 1.12.10 update. 2019-09-26 20:10:39 +00:00
go-crypto Revbump all Go packages after 1.12.10 update. 2019-09-26 20:10:39 +00:00
go-mkcert Revbump all Go packages after 1.12.10 update. 2019-09-26 20:10:39 +00:00
go-oauth2 Revbump all Go packages after 1.12.10 update. 2019-09-26 20:10:39 +00:00
go-sftp Revbump all Go packages after 1.12.10 update. 2019-09-26 20:10:39 +00:00
google-authenticator google-authenticator: update to 1.05 2018-08-29 11:12:36 +00:00
gpa *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
gpass *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
gpg2dot Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
gpgme gpgme: fix for older GCC. 2019-09-09 11:19:33 +00:00
gpgmepp Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
gpshell
gsasl *: recursive bump for nettle 3.5.1 2019-07-20 22:45:58 +00:00
gss Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
guardtime Recursive revbump from boost-1.71.0 2019-08-22 12:22:48 +00:00
hackbot Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
hashcash
heimdal security/heimdal: replace deprecated _PKG_SILENT and _PKG_DEBUG 2019-09-12 21:07:01 +00:00
heirloom-su
HElib Switch github HOMEPAGEs to https. 2017-07-30 22:32:10 +00:00
hitch PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
honeyd Revbump after cairo 1.16.0 update. 2018-11-14 22:20:58 +00:00
honeyd-arpd
hs-digest Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
hydan
hydra *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
ike-scan *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
ipsec-tools
ipv6-toolkit
isakmpd Remove unnecessary RCD_SCRIPT_WRK.<script> definitions. 2017-05-21 06:49:09 +00:00
jessie Comment out dead sites. 2017-08-16 20:45:30 +00:00
john all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
kauth Recursive revbump from audio/pulseaudio 2019-09-18 14:17:03 +00:00
kdesu kdesu: update to 5.61.0 2019-08-27 20:33:27 +00:00
KeePass KeePass: Update to 2.43 2019-09-11 11:36:31 +00:00
keepassx Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
keepassx0 Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
keepassxc Recursive revbump from audio/pulseaudio 2019-09-18 14:17:03 +00:00
keychain keychain: Improve distinfo 2018-04-18 19:25:27 +00:00
kgpg Recursive revbump from boost-1.71.0 2019-08-22 12:22:48 +00:00
knc
kpcli Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
kstart Sort PLIST files. 2018-01-01 22:29:15 +00:00
kwallet Recursive revbump from audio/pulseaudio 2019-09-18 14:17:03 +00:00
kwalletmanager Recursive revbump from boost-1.71.0 2019-08-22 12:22:48 +00:00
lasso Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
lastpass-cli Recursive revbump from boost-1.71.0 2019-08-22 12:22:48 +00:00
libassuan2 libassuan2: updated to 2.5.3 2019-02-13 16:05:48 +00:00
libb2 Add a package for libb2-0.98.1. 2019-06-22 18:54:04 +00:00
libbf Remove traces of crypto restrictions from packages. 2018-01-02 05:37:22 +00:00
libcrack Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
libcurvecpr
libdecaf Import of libdecaf 1.0.0 as security/libdecaf 2019-08-11 16:47:52 +00:00
libdes security/libdes: fix pkglint warnings 2019-09-12 20:35:55 +00:00
libfprint *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
libfwbuilder Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
libgcrypt libgcrypt: Update to 1.8.5 2019-09-02 12:10:54 +00:00
libgfshare
libglobalplatform Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
libgnome-keyring Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
libgpg-error Need to define __DARWIN_UNIX03 to use unsetenv(3) which return integer. 2019-07-03 17:17:58 +00:00
libguardtime Recursive revbump from boost-1.71.0 2019-08-22 12:22:48 +00:00
libidea Remove traces of crypto restrictions from packages. 2018-01-02 05:37:22 +00:00
libident Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
libksba Add patch to resolve gpgsm S/MIME failures 2017-05-30 22:40:17 +00:00
libmcrypt Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
libmerkletree Remove unused/empty distinfo files. 2017-03-23 13:07:24 +00:00
libmultigest Remove unused/empty distinfo files. 2017-03-23 13:07:24 +00:00
libnetpgpverify Remove unused/empty distinfo files. 2017-03-23 13:07:24 +00:00
liboauth Recursive revbump from boost-1.71.0 2019-08-22 12:22:48 +00:00
libp11
libpbc
libprelude Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
libprelude-lua *: recursive bump for nettle 3.5.1 2019-07-20 22:45:58 +00:00
libprelude-perl Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
libprelude-python Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
libpreludedb Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
libpreludedb-mysql Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
libpreludedb-perl Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
libpreludedb-pgsql Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
libpreludedb-python Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
libpreludedb-sqlite3 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
libressl Update to 2.7.4 2018-06-21 23:10:50 +00:00
libsecret libsecret: update to 0.18.8. 2019-08-16 10:16:00 +00:00
libsodium Add include/sodium to BUILDLINK_INCDIRS.libsodium. 2019-07-10 12:56:50 +00:00
libssh libssh: update patch 2019-09-18 19:35:08 +00:00
libssh2 libssh2: Don't build examples, they're not installed anyway. 2019-07-21 08:18:53 +00:00
libtasn1 libtasn1: Update security/libtasn1 to 4.13 2018-10-13 23:23:20 +00:00
libtcpa Needs pre-1.1 OpenSSL. 2018-12-15 16:53:02 +00:00
libtomcrypt libtomcrypt: Update to 1.18.2 2019-07-09 11:20:58 +00:00
libykneomgr *: recursive bump for nettle 3.5.1 2019-07-20 22:45:58 +00:00
libyubikey libyubikey: update to 1.13 2019-09-12 22:45:24 +00:00
log2timeline Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
logcheck all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
lsh Requires termcap. 2017-05-10 10:45:26 +00:00
lua-sec
lynis all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
mate-polkit *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
mbedtls mbedtls: Update to 2.16.3 2019-10-01 17:44:11 +00:00
mbedtls1 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
mcrypt Add various patches from (Brew, Debian, Red Hat, SUSE) 2018-05-30 14:58:03 +00:00
md4-collision Comment out dead MASTER_SITES/HOMEPAGEs. 2017-09-03 08:36:49 +00:00
md5-collision Comment out dead MASTER_SITES/HOMEPAGEs. 2017-09-03 08:36:49 +00:00
merkletree make sure __UNCONST is defined before using it 2017-05-31 23:21:06 +00:00
mhash Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
minisign security/minisign: import minisign-0.8. 2019-08-14 15:50:28 +00:00
mirrordir
mit-krb5 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
mit-krb5-appl
mixminion Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
monocypher Add monocypher version 2.0.5 2019-03-16 09:17:09 +00:00
mozilla-rootcerts mozilla-rootcerts*: update to the latest certdata.txt commit. 2019-05-12 19:19:27 +00:00
mozilla-rootcerts-openssl mozilla-rootcerts-openssl: PLIST fix 2019-05-20 09:51:24 +00:00
msu Update some HOMEPAGEs. 2017-09-03 09:22:57 +00:00
msudir Update some HOMEPAGEs. 2017-09-03 09:22:57 +00:00
multigest Unconditionally use standard headers, nothing defines the guards. 2017-05-04 18:29:48 +00:00
munge Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
nacl Avoid detecting anything other than the native ABI. Bump PKGREVISION. 2019-01-05 06:16:14 +00:00
netpgp Output signatures to the standard output for "-" 2018-03-15 20:21:52 +00:00
netpgpverify Update netpgpverify and libnetpgpverify to 20190117 2019-01-17 17:26:23 +00:00
netramet
nettle nettle: bump ABI depends because of shlib major bump 2019-07-20 22:03:16 +00:00
nfsbug
nikto Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
oath-toolkit
ocaml-cryptokit Updated package security/ocaml-cryptokit to version 1.13. 2018-11-28 12:07:50 +00:00
ocaml-safepass Updated security/ocaml-safepass for dune compatibility. 2019-03-05 19:38:49 +00:00
ocaml-ssl Updated security/ocaml-ssl to version 0.5.9. 2019-08-24 11:09:39 +00:00
opencdk
openct openct: fix path to libusb buildlink3 file 2018-02-15 07:30:11 +00:00
opendnssec Update opendnssec to version 1.4.14. 2019-08-30 08:08:21 +00:00
openpam Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
opensaml Recursive revbump from boost-1.71.0 2019-08-22 12:22:48 +00:00
opensc update from 0.16.0 to 0.19.0 2018-10-13 10:54:04 +00:00
openssh Add legacymodsz option to allow short (insecure) RSA keys 2019-09-06 09:03:00 +00:00
openssl Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
openvas-client *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
openvas-libnasl *: recursive bump for nettle 3.5.1 2019-07-20 22:45:58 +00:00
openvas-libraries *: recursive bump for nettle 3.5.1 2019-07-20 22:45:58 +00:00
openvas-plugins *: recursive bump for nettle 3.5.1 2019-07-20 22:45:58 +00:00
openvas-server *: recursive bump for nettle 3.5.1 2019-07-20 22:45:58 +00:00
otpCalc
p0f
p5-AuthCAS Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Authen-CAS-Client Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Authen-Htpasswd Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Authen-PAM Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Authen-PluggableCaptcha Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Authen-SASL Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Authen-SASL-Authd Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Authen-SASL-Cyrus Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Authen-Simple Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Authen-TacacsPlus Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-BSD-arc4random Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Bytes-Random-Secure Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-Blowfish Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-Blowfish_PP Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-CAST5_PP Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-CBC Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-CipherSaber Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-Curve25519 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-DES Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-DES_EDE3 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-DH Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-DH-GMP p5-Crypt-DH-GMP: remove empty PLIST 2019-09-02 12:27:18 +00:00
p5-Crypt-DSA Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-ECB Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-Eksblowfish Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-GeneratePassword Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-GPG Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-IDEA Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-OpenPGP Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-OpenSSL-AES Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-OpenSSL-Bignum Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-OpenSSL-DSA Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-OpenSSL-Guess Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-OpenSSL-Random Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-OpenSSL-RSA Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-PasswdMD5 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-Primes Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-PWSafe3 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-Random Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-Random-Seed Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-Random-TESHA2 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-RandPasswd Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-RC4 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-Rijndael Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-RIPEMD160 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-RSA Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-SmbHash Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-SMIME Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-SSLeay Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-Twofish Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-URandom Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Crypt-X509 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-CryptX p5-CryptX: updated to 0.0.64 2019-08-21 10:11:22 +00:00
p5-Dancer-Plugin-Auth-RBAC Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Data-Password-passwdqc Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Data-SimplePassword Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Digest Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Digest-BubbleBabble Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Digest-CRC Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Digest-Hashcash Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Digest-HMAC Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Digest-JHash Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Digest-MD2 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Digest-MD4 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Digest-MD5 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Digest-MD5-File Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Digest-Nilsimsa Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Digest-Perl-MD5 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Digest-SHA Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Digest-SHA1 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Digest-SHA3 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-File-KeePass Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-GnuPG-Interface Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-GSSAPI Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-IO-Socket-SSL Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Module-Signature Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Mozilla-CA Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Net-DNS-SEC Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Net-DNS-SEC-Maint-Key Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Net-OpenSSH Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Net-SFTP Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Net-SSH Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Net-SSLeay Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Netpgp-Verify Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-OpenSSL Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-pcsc Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-SHA Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-String-Random Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Text-Password-Pronounceable Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p5-Tie-EncryptedHash Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
p11-kit Update to 0.23.15 2019-03-24 18:03:54 +00:00
PACK PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
pakchois Fix indentation in buildlink3.mk files. 2018-01-07 13:03:53 +00:00
pakemon
pam-af Bump PKGREVISION for gdbm shlib major bump 2018-01-28 20:10:34 +00:00
pam-dbm Sort PLIST files. 2018-01-01 22:29:15 +00:00
pam-fprint
pam-krb5 Follow some redirects. 2017-09-03 08:53:04 +00:00
pam-ldap Comment out dead MASTER_SITES/HOMEPAGEs. 2017-09-03 08:36:49 +00:00
pam-mkhomedir Add this file now that we have a patch. 2018-05-04 21:51:18 +00:00
pam-mysql
pam-p11 Sort PLIST files. 2018-01-01 22:29:15 +00:00
pam-passwdqc
pam-pgsql Follow some redirects. 2017-09-03 08:53:04 +00:00
pam-pwauth_suid pam-pwauth_suid: add an additional detail to the MESSAGE file 2019-05-01 02:37:56 +00:00
pam-radius
pam-saml Removed commented-out PKGREVISIONs 2018-12-09 21:05:32 +00:00
pam-tacplus all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
pam-yubico Recursive revbump from boost-1.71.0 2019-08-22 12:22:48 +00:00
pam_ssh_agent_auth Follow some redirects. 2017-09-03 08:53:04 +00:00
paperkey
password-store password-store: Adjust BASE64 definition as part of fixsh SUBST class 2018-09-23 12:39:19 +00:00
pcsc-lite Update ccid to version 1.4.27, including link requirement in pcsc-lite. 2019-09-17 23:09:42 +00:00
pcsc-tools Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
pear-Crypt_GPG security/pear-Crypt_GPG: update to 1.6.3 2018-06-18 15:06:10 +00:00
pev
pgp2 Remove traces of crypto restrictions from packages. 2018-01-02 05:37:22 +00:00
pgp5 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
pgpdump
pgpenvelope Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
php-mcrypt Drop support for php70 2019-01-14 13:06:10 +00:00
php-oauth Recursive revbump from boost-1.71.0 2019-08-22 12:22:48 +00:00
php-oauth1 Recursive revbump from boost-1.71.0 2019-08-22 12:22:48 +00:00
php-pecl-mcrypt security/php-pecl-mcrypt: update to 1.0.2 2019-04-30 04:05:45 +00:00
php-sodium security/php-sodium: allow php73 2018-12-15 17:14:43 +00:00
php-ssdeep
php-ssh2 Drop support for php70 2019-01-14 13:06:10 +00:00
php-ssh2-0 *: update email for fhajny 2018-12-15 21:12:18 +00:00
php-suhosin
pinentry pinentry/Makefile.common: mention pinentry-fltk 2019-02-13 17:42:07 +00:00
pinentry-fltk pinentry-fltk: on second thought, use local distinfo 2019-02-13 17:40:53 +00:00
pinentry-gtk2 *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
pinentry-mac Fix exec command by adding the missing "$@" to pass down arguments. 2017-05-31 21:30:15 +00:00
pinentry-qt4 pinentry*: improve DESCR 2019-02-13 17:41:41 +00:00
pinepgp Sort PLIST files. 2018-01-01 22:29:15 +00:00
pkcs11-helper *: recursive bump for nettle 3.5.1 2019-07-20 22:45:58 +00:00
pks *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
policykit Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
policykit-gnome Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
polkit Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
polkit-qt Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
polkit-qt5 Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
PortableSigner
portsentry Follow some http redirects. 2017-08-16 20:21:03 +00:00
prelude-correlator Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
prelude-lml *: recursive bump for nettle 3.5.1 2019-07-20 22:45:58 +00:00
prelude-manager *: recursive bump for nettle 3.5.1 2019-07-20 22:45:58 +00:00
prelude-pflogger *: recursive bump for nettle 3.5.1 2019-07-20 22:45:58 +00:00
priv
prngd Reset maintainer 2017-09-16 19:26:41 +00:00
pscan Sort PLIST files. 2018-01-01 22:29:15 +00:00
putty Update to 0.73 2019-10-01 15:22:41 +00:00
pwsafe Convert all occurrences (353 by my count) of 2017-01-19 18:52:01 +00:00
py-acme py-acme py-certbot*: updated to 0.38.0 2019-09-12 15:08:53 +00:00
py-acme-tiny Update to 4.1.0. From the git log: 2019-07-22 01:36:14 +00:00
py-aes
py-argon2_cffi py-argon2_cffi: updated to 19.1.0 2019-01-21 13:01:16 +00:00
py-asn1 py-asn1: updated to 0.4.7 2019-09-02 07:00:38 +00:00
py-asn1-modules py-asn1-modules: updated to 0.2.6 2019-08-03 04:38:31 +00:00
py-asn1crypto py-asn1crypto: updated to 0.24.0 2017-12-17 16:54:02 +00:00
py-asyncssh py-asyncssh: updated to 1.18.0 2019-08-25 12:24:06 +00:00
py-backports.ssl_match_hostname Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
py-bcrypt py-bcrypt: updated to 3.17 2019-06-20 11:15:18 +00:00
py-certbot py-certbot: bump PKGREVISION for added dependency 2019-10-01 13:53:45 +00:00
py-certbot-apache py-acme py-certbot*: updated to 0.38.0 2019-09-12 15:08:53 +00:00
py-certbot-dns-dnsimple py-acme py-certbot*: updated to 0.38.0 2019-09-12 15:08:53 +00:00
py-certbot-dns-dnsmadeeasy py-acme py-certbot*: updated to 0.38.0 2019-09-12 15:08:53 +00:00
py-certbot-dns-gehirn py-acme py-certbot*: updated to 0.38.0 2019-09-12 15:08:53 +00:00
py-certbot-dns-google py-acme py-certbot*: updated to 0.38.0 2019-09-12 15:08:53 +00:00
py-certbot-dns-linode py-acme py-certbot*: updated to 0.38.0 2019-09-12 15:08:53 +00:00
py-certbot-dns-luadns py-acme py-certbot*: updated to 0.38.0 2019-09-12 15:08:53 +00:00
py-certbot-dns-nsone py-acme py-certbot*: updated to 0.38.0 2019-09-12 15:08:53 +00:00
py-certbot-dns-ovh py-acme py-certbot*: updated to 0.38.0 2019-09-12 15:08:53 +00:00
py-certbot-dns-rfc2136 py-acme py-certbot*: updated to 0.38.0 2019-09-12 15:08:53 +00:00
py-certbot-dns-route53 py-acme py-certbot*: updated to 0.38.0 2019-09-12 15:08:53 +00:00
py-certbot-dns-sakuracloud py-acme py-certbot*: updated to 0.38.0 2019-09-12 15:08:53 +00:00
py-certbot-nginx py-acme py-certbot*: updated to 0.38.0 2019-09-12 15:08:53 +00:00
py-certifi py-certifi: updated to 2019.9.11 2019-09-12 15:14:42 +00:00
py-crack
py-crcmod py-crcmod: cleanups 2018-02-23 06:34:08 +00:00
py-cryptkit Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
py-crypto Follow some redirects. 2017-09-03 08:53:04 +00:00
py-cryptodome py-cryptodome: updated to 3.9.0 2019-09-02 09:46:19 +00:00
py-cryptography py-cryptography[_vectors]: updated to 2.7 2019-05-31 17:28:48 +00:00
py-cryptography_vectors py-cryptography[_vectors]: updated to 2.7 2019-05-31 17:28:48 +00:00
py-cryptopp py-cryptopp: updated to 0.7.1 2019-02-14 12:56:38 +00:00
py-cybox py-cybox: updated to 2.1.0.17 2018-03-23 12:51:21 +00:00
py-denyhosts Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
py-Des
py-ecdsa
py-ezPyCrypto
py-gnupg Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
py-google-auth py-google-auth: added version 1.6.3 2019-07-02 11:59:28 +00:00
py-google-auth-httplib2 py-google-auth-httplib2: added version 0.0.3 2019-07-02 12:00:13 +00:00
py-google-auth-oauthlib py-google-auth-oauthlib: added version 0.4.0 2019-07-02 12:01:30 +00:00
py-google-reauth New package, py-google-reauth-0.1.0. 2018-05-30 16:26:31 +00:00
py-gssapi py-gssapi: updated to 1.6.1 2019-08-11 12:06:15 +00:00
py-hsm py-hsm: updated to 1.2.1 2019-09-20 17:13:26 +00:00
py-itsdangerous Use https for pythonhosted.org. 2019-07-09 11:29:30 +00:00
py-josepy py-josepy: updated to 1.2.0 2019-08-22 11:45:03 +00:00
py-kerberos py-kerberos: updated to 1.3.0 2019-01-04 23:04:25 +00:00
py-keyring py-keyring: mark as incompatible with Python 2.7 2019-09-25 13:06:12 +00:00
py-keyrings.alt py-keyrings.alt: updated to 3.1.1 2019-09-20 16:51:25 +00:00
py-lasso Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
py-libnacl py-libnacl: added version 1.6.1 2018-03-08 08:13:03 +00:00
py-libtaxii py-libtaxii: updated to 1.1.111 2018-10-15 11:17:08 +00:00
py-m2crypto Forget about Python 3.4 2019-05-02 09:16:47 +00:00
py-mcrypt Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
py-mohawk py-mohawk: updated to 1.0.0 2019-01-17 13:22:00 +00:00
py-nacl py-nacl: Fix correct name of the package (remove py-prefix) 2019-02-19 17:49:24 +00:00
py-ndg_httpsclient *: update email for fhajny 2018-12-15 21:12:18 +00:00
py-ntlm-auth py-ntlm-auth: updated to 1.4.0 2019-08-27 10:11:26 +00:00
py-oath py-oath: updated to 1.4.3 2019-05-31 20:54:11 +00:00
py-oauth2client py-oauth2client: updated to 4.1.3 2018-09-24 09:52:24 +00:00
py-oauthlib py-oauthlib: updated to 3.1.0 2019-08-12 07:45:23 +00:00
py-openid Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
py-OpenSSL py-OpenSSL: updated to 19.0.0 2019-01-22 09:12:09 +00:00
py-OTXv2 security/py-OTXv2: Import version 1.2 2018-04-03 14:33:50 +00:00
py-paramiko py-paramiko: updated to 2.6.0 2019-07-02 04:31:13 +00:00
py-passlib 1.7.1: 2017-06-21 10:24:19 +00:00
py-pbkdf2
py-prewikka Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
py-pydeep Reset maintainer 2017-09-16 19:26:41 +00:00
py-requests-kerberos *: Move SUBST_STAGE from post-patch to pre-configure 2018-07-04 13:40:07 +00:00
py-requests-ntlm py-requests-ntlm: updated to 1.1.0 2017-10-31 08:27:55 +00:00
py-requests-oauthlib py-requests-oauthlib: updated to 1.2.0 2019-01-16 09:39:40 +00:00
py-rsa py-rsa: Ensure previous fix works with python2. 2018-10-23 09:55:09 +00:00
py-service_identity py-service_identity: updated to 18.1.0 2018-12-22 09:41:05 +00:00
py-simplesha3 Follow some redirects. 2017-09-03 08:53:04 +00:00
py-slowaes Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
py-smbpasswd Follow some redirects. 2017-09-04 18:08:18 +00:00
py-SSLCrypto Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
py-stix py-stix: updated to 1.2.0.6 2018-06-24 11:17:04 +00:00
py-tlslite all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
py-trustme py-trustme: updated to 0.5.2 2019-06-06 21:24:22 +00:00
py-trytond-authentication-sms Reset maintainer 2017-09-16 19:26:41 +00:00
py-u2f New package, py-u2f-0.1.4. Part of PR pkg/52941. 2018-05-30 16:09:52 +00:00
py-urllib2-kerberos Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
py-xmlsec Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
py-yara Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
py-yubiauth Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
pyca PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
qca2 qca2*: update to 2.2.1 2019-04-25 23:35:28 +00:00
qca2-gnupg qca2*: update to 2.2.1 2019-04-25 23:35:28 +00:00
qca2-ossl qca2*: update to 2.2.1 2019-04-25 23:35:28 +00:00
qca2-qt5 qca2*: update to 2.2.1 2019-04-25 23:35:28 +00:00
qca2-qt5-gnupg qca2*: update to 2.2.1 2019-04-25 23:35:28 +00:00
qca2-qt5-ossl qca2*: update to 2.2.1 2019-04-25 23:35:28 +00:00
qgpgme Recursive revbump from textproc/icu 2019-04-03 00:32:25 +00:00
qident Comment out dead sites. 2017-09-04 18:00:49 +00:00
qoauth Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
qore-asn1-module Revbump after lang/qore module api update 2018-06-08 20:49:41 +00:00
qore-ssh2-module Updated security/qore-ssh2-module to version 1.2 . 2018-06-08 20:02:30 +00:00
qore-xmlsec-module Revbump after lang/qore module api update 2018-06-08 20:49:41 +00:00
qt4-qtkeychain Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
R-askpass R-askpass: skip interpreter check for two mac-only files 2019-09-26 00:49:07 +00:00
R-digest Update all R packages to canonical form. 2019-08-08 19:53:36 +00:00
R-openssl R-openssl: initial commit 2019-08-09 19:04:57 +00:00
racoon2 Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
rainbowcrack
rats Update some URLs. 2017-09-04 18:55:07 +00:00
rc5des Remove traces of crypto restrictions from packages. 2018-01-02 05:37:22 +00:00
rid Comment out dead sites. 2017-09-04 18:00:49 +00:00
rsaref Remove traces of crypto restrictions from packages. 2018-01-02 05:37:22 +00:00
ruby-airbrussh security/ruby-airbrussh: update to 1.3.1 2018-12-17 15:04:53 +00:00
ruby-bcrypt security/ruby-bcrypt: update to 3.1.12 2018-09-23 16:05:28 +00:00
ruby-bcrypt_pbkdf security/ruby-bcrypt_pbkdf: Add u_int*_t compat. 2018-10-19 17:03:10 +00:00
ruby-ezcrypto Comment out dead sites. 2017-09-04 18:00:49 +00:00
ruby-hmac Comment out dead sites. 2017-09-04 18:00:49 +00:00
ruby-jsobfu Import ruby-jsobfu-0.4.2 as security/ruby-jsobfu 2017-09-14 17:00:25 +00:00
ruby-metasploit-concern Import ruby-metasploit-concern-2.0.5 as security/ruby-metasploit-concern 2017-09-14 17:46:23 +00:00
ruby-metasploit-model security/ruby-metasploit-model: Import version 2.0.4 2017-09-14 19:43:45 +00:00
ruby-metasploit-payloads ruby-metasploit-payloads: SSP skip bundled Android libs. 2018-10-19 15:27:24 +00:00
ruby-metasploit_payloads-mettle security/ruby-metasploit_payloads-mettle: update to 0.4.2 2018-09-23 17:57:29 +00:00
ruby-nessus_rest security/ruby-nessus_rest: Import version 0.1.6 2017-10-17 18:33:09 +00:00
ruby-net-scp
ruby-net-sftp
ruby-net-ssh security/ruby-net-ssh: update to 5.0.2 2018-09-23 16:08:58 +00:00
ruby-net-ssh-gateway Update ruby-net-ssh-gateway to 2.0.0. 2017-06-12 16:06:48 +00:00
ruby-net-ssh-multi
ruby-nexpose security/ruby-nexpose: update to7.2.1 2018-09-23 16:11:24 +00:00
ruby-oauth ruby-oauth: update to 0.5.4. 2017-12-09 19:18:47 +00:00
ruby-openid cleanup: remove unnecessary RUBY_VERSIONS_ACCEPTED 2017-09-19 16:36:07 +00:00
ruby-openssl-ccm security/ruby-openssl-ccm: Import version 1.2.1 2018-05-03 22:13:47 +00:00
ruby-openvas-omp securitiy/ruby-openvas-omp: Import version 0.0.4 2017-10-17 19:38:12 +00:00
ruby-password
ruby-rack-openid cleanup: remove unnecessary RUBY_VERSIONS_ACCEPTED 2017-09-19 16:36:07 +00:00
ruby-rbnacl security/ruby-rbnacl: update to 6.0.0 2018-12-17 15:07:11 +00:00
ruby-rc4 Comment out dead sites. 2017-09-04 18:00:49 +00:00
ruby-rex-arch security/ruby-rex-arch: update to 0.1.13 2018-03-21 13:19:52 +00:00
ruby-rex-bin_tools security/ruby-rex-bin_tools: Import version 0.1.4 2017-10-13 18:11:49 +00:00
ruby-rex-core security/ruby-rex-core: update to 0.1.13 2018-03-21 13:26:45 +00:00
ruby-rex-encoder security/ruby-rex-encoder: Import version 0.1.4 2017-10-13 18:51:42 +00:00
ruby-rex-exploitation security/ruby-rex-exploitation: update to 0.1.19 2018-09-23 18:00:56 +00:00
ruby-rex-java security/ruby-rex-java: Import version 0.1.5 2017-10-13 16:14:05 +00:00
ruby-rex-mime security/ruby-rex-mime: Import version 0.1.5 2017-10-13 17:07:32 +00:00
ruby-rex-nop security/ruby-rex-nop: Import version 0.1.1 2017-10-13 17:59:11 +00:00
ruby-rex-ole security/ruby-rex-ole: Import version 0.1.6 2017-10-13 16:29:07 +00:00
ruby-rex-powershell security/ruby-rex-powershell: update to 0.1.79 2018-09-23 18:02:07 +00:00
ruby-rex-random_identifier security/ruby-rex-random_identifier: Import version 0.1.4 2017-09-29 16:51:00 +00:00
ruby-rex-registry security/ruby-rex-registry: Import version 0.1.3 2017-10-13 17:48:55 +00:00
ruby-rex-rop_builder security/ruby-rex-rop_builder: Import version 0.1.3 2017-10-13 18:39:13 +00:00
ruby-rex-socket security/ruby-rex-socket: update to 0.1.15 2018-09-23 17:58:47 +00:00
ruby-rex-sslscan securitiy/ruby-rex-sslscan: Import version 0.1.5 2017-10-13 18:31:47 +00:00
ruby-rex-struct2 Import ruby-rex-struct2-0.1.0 as security/ruby-rex-struct2 2017-03-08 22:38:12 +00:00
ruby-rex-text security/ruby-rex-text: update to 0.2.21 2018-09-23 18:00:00 +00:00
ruby-rex-zip security/ruby-rex-zip: Import version 0.1.3 2017-10-13 17:42:09 +00:00
ruby-ruby-openid Reset maintainer 2017-09-16 19:26:41 +00:00
ruby-rubyntlm security/ruby-rubyntlm: Import version 0.6.2 2017-10-03 15:56:29 +00:00
ruby-shadow Relax patten in GEM_CLEANBUILD. 2017-06-02 04:16:35 +00:00
ruby-simple_oauth
ruby-sshkey Import ruby-sshkey-1.9.0 as security/ruby-sshkey 2017-06-22 00:56:42 +00:00
ruby-sshkit security/ruby-sshkit: update to 1.18.0 2018-12-17 15:08:35 +00:00
ruby-tcpwrap
ruby-twitter_oauth Switch github HOMEPAGEs to https. 2017-07-30 22:32:10 +00:00
sbd sbd: Specify c++03 to avoid conflicts with std::bind. 2018-01-26 13:36:43 +00:00
scanssh Follow some redirects. 2017-09-04 18:08:18 +00:00
scm-blackbox security/scm-blackbox: Import version 1.20181219 2019-01-18 04:44:28 +00:00
scrypt scrypt: update to 1.3.0. 2019-09-16 05:13:28 +00:00
seahorse *: recursive bump for gdk-pixbuf2-2.38.1 2019-07-21 22:23:57 +00:00
seahorse-plugins seahorse-plugins: Remove dependency on GNOME 2's gedit. 2019-09-15 13:33:10 +00:00
seccure Cleaned up PLIST files. 2018-01-01 18:33:32 +00:00
secpanel Sort PLIST files. 2018-01-01 22:29:15 +00:00
sfs Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
sign sign: Improve distinfo 2018-04-18 19:56:42 +00:00
skey Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
sks Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
sleuthkit Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
smaSHeM Comment out dead sites. 2017-09-04 18:00:49 +00:00
smtpd Comment out dead sites. 2017-09-04 18:00:49 +00:00
sniff Sort PLIST files. 2018-01-01 22:29:15 +00:00
snoopy snoopy: Strip -Werror 2019-09-09 09:28:40 +00:00
snortsnarf Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
snow
softhsm all: replace SUBST_SED with the simpler SUBST_VARS 2019-05-23 19:22:54 +00:00
spiped *: Remove per-package MESSAGE.{rcd,smf} handling. 2019-05-28 13:35:54 +00:00
sqlmap Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
srm
srp_client Remove traces of crypto restrictions from packages. 2018-01-02 05:37:22 +00:00
ssdeep
ssh-askpass Comment out dead sites. 2017-09-04 18:00:49 +00:00
ssh-ip-tunnel
sshfp PKGREVISION bump for anything using python without a PYPKGPREFIX. 2019-04-25 07:32:34 +00:00
sshguard Follow some redirects. 2017-09-04 18:08:18 +00:00
sshpass sshpass: update to 1.06 and patch to fix tty issue 2018-05-06 17:45:30 +00:00
ssldump Comment out dead sites. 2017-09-04 18:00:49 +00:00
sslproxy Follow some redirects. 2017-09-04 18:08:18 +00:00
sslsplit
sslwrap
ssss Sort PLIST files. 2018-01-01 22:29:15 +00:00
starttls
steghide Mark packages that require C++03 (or the GNU variants) if they fail with 2018-07-18 00:06:10 +00:00
stegtunnel Comment out dead sites. 2017-09-04 18:00:49 +00:00
stud Switch github HOMEPAGEs to https. 2017-07-30 22:32:10 +00:00
stunnel Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
sudo Update MAINTAINER 2019-05-11 22:47:05 +00:00
tacshell HOMEPAGE is alive 2018-06-21 13:05:14 +00:00
tcl-tls Update tcl-tls to 1.7.16. 2018-09-02 18:37:26 +00:00
tcp_wrappers
tct Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
tkpasman Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
tor-browser Recursive revbump from audio/pulseaudio 2019-09-18 14:17:03 +00:00
tripwire
TweetNaCl
validns Extend SHA512 checksums to various files I have on my local distfile 2017-03-23 17:06:45 +00:00
vault Revbump all Go packages after 1.12.10 update. 2019-09-26 20:10:39 +00:00
volatility Changed PYTHON_VERSIONS_INCOMPATIBLE to PYTHON_VERSIONS_ACCEPTED; needed for future Python 3.8 2019-09-02 13:19:35 +00:00
xca xca: initial commit 2019-08-13 02:39:45 +00:00
xml-security-c xml-security: remove patches that are not in distinfo 2018-12-29 19:03:39 +00:00
xmlsec1 security/xmlsec1 updated 1.2.19 to 1.2.25 2018-01-30 13:25:19 +00:00
yafic Follow some redirects. 2017-09-06 09:02:59 +00:00
yara More strnlen(3) users - from Joyent 2019-07-11 11:20:06 +00:00
ykclient ykclient: update to 2.15 2019-09-12 23:00:42 +00:00
ykpers ykpers: needs asciidoc 2019-09-14 13:17:59 +00:00
zebedee Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
zkt zkt: switch to an existing bind version 2018-09-27 04:23:12 +00:00
zoneminder Bump PKGREVISIONs for perl 5.30.0 2019-08-11 13:17:48 +00:00
Makefile base: remove 2019-09-26 09:39:24 +00:00