pkgsrc/security
fhajny 2d0676490e Update security/vault to 0.6.1.
0.6.1 (August 22, 2016)

DEPRECATIONS/BREAKING CHANGES:

- Once the active node is 0.6.1, standby nodes must also be 0.6.1
  in order to connect to the HA cluster.
- Status codes for sealed/uninitialized Vaults have changed to
  503/501 respectively.
- Root tokens (tokens with the root policy) can no longer be
  created except by another root token or the generate-root
  endpoint.
- Issued certificates from the pki backend against new roles
  created or modified after upgrading will contain a set of
  default key usages.
- The dynamodb physical data store no longer supports HA by
  default.
- The ldap backend no longer searches for memberOf groups as part
  of its normal flow. Instead, the desired group filter must be
  specified.
- app-id is now deprecated with the addition of the new AppRole
  backend.

FEATURES:

- AppRole Authentication Backend: The approle backend is a
  machine-oriented authentication backend that provides a similar
  concept to App-ID while adding many missing features, including a
  pull model that allows for the backend to generate authentication
  credentials rather than requiring operators or other systems to
  push credentials in.
- Request Forwarding: Vault servers can now forward requests to
  each other rather than redirecting clients. This feature is off
  by default in 0.6.1 but will be on by default in the next release.
- Convergent Encryption in Transit: The transit backend now
  supports a convergent encryption mode where the same plaintext
  will produce the same ciphertext.
- Improved LDAP Group Filters: The ldap auth backend now uses
  templates to define group filters, providing the capability to
  support some directories that could not easily be supported before
  (especially specific Active Directory setups with nested groups).
- Key Usage Control in PKI: Issued certificates from roles created
  or modified after upgrading contain a set of default key usages
  for increased compatibility with OpenVPN and some other software.
- Request Retrying in the CLI and Go API: Requests that fail with
  a 5xx error code will now retry after a backoff. The maximum
  total number of retries (including disabling this functionality)
  can be set with an environment variable.
- Service Discovery in vault init: The new -auto option on vault
  init will perform service discovery using Consul.
- MongoDB Secret Backend: Generate dynamic unique MongoDB database
  credentials based on configured roles.
- Circonus Metrics Integration: Vault can now send metrics to
  Circonus.

IMPROVEMENTS:

- audit: Added a unique identifier to each request which will also
  be found in the request portion of the response.
- auth/aws-ec2: Added a new constraint bound_account_id to the
  role
- auth/aws-ec2: Added a new constraint bound_iam_role_arn to the
  role
- auth/aws-ec2: Added ttl field for the role
- auth/ldap, secret/cassandra, physical/consul: Clients with
  tls.Config have the minimum TLS version set to 1.2 by default.
- auth/token: Added endpoint to list accessors
- auth/token: Added disallowed_policies option to token store
  roles
- auth/token: root or sudo tokens can now create periodic tokens
  via auth/token/create; additionally, the same token can now be
  periodic and have an explicit max TTL
- build: Add support for building on Solaris/Illumos
- cli: Output formatting in the presence of warnings in the
  response object
- cli: vault auth command supports a -path option to take in the
  path at which the auth backend is enabled, thereby allowing
  authenticating against different paths using the command options
- cli: vault auth -methods will now display the config settings of
  the mount
- cli: vault read/write/unwrap -field now allows selecting token
  response fields
- cli: vault write -field now allows selecting wrapped response
  fields
- command/status: Version information and cluster details added to
  the output of vault status command
- core: Response wrapping is now enabled for login endpoints
- core: The duration of leadership is now exported via events
  through telemetry
- core: sys/capabilities-self is now accessible as part of the
  default policy
- core: sys/renew is now accessible as part of the default policy
- core: Unseal keys will now be returned in both hex and base64
  forms, and either can be used
- core: Responses from most /sys endpoints now return normal
  api.Secret structs in addition to the values they carried
  before.
- physical/etcd: Support ETCD_ADDR env var for specifying
  addresses
- physical/consul: Allowing additional tags to be added to Consul
  service registration via service_tags option
- secret/aws: Listing of roles is supported now
- secret/cassandra: Add connect_timeout value for Cassandra
  connection configuration
- secret/mssql,mysql,postgresql: Reading of connection settings is
  supported in all the sql backends
- secret/mysql: Added optional maximum idle connections value to
  MySQL connection configuration
- secret/mysql: Use a combination of the role name and token
  display name in generated user names and allow the length to be
  controlled
- secret/{cassandra,mssql,mysql,postgresql}: SQL statements can
  now be passed in via one of four ways: a semicolon-delimited
  string, a base64-delimited string, a serialized JSON string array,
  or a base64-encoded serialized JSON string array
- secret/ssh: Added allowed_roles to vault-ssh-helper's config and
  returning role name as part of response of verify API
- secret/ssh: Added passthrough of command line arguments to ssh
- sys/health: Added version information to the response of health
  status endpoint
- sys/health: Cluster information isbe returned as part of health
  status when Vault is unsealed
- sys/mounts: MountTable data is compressed before serializing to
  accommodate thousands of mounts
- website: The token concepts page has been completely rewritten

BUG FIXES:

- auth/aws-ec2: Added a nil check for stored whitelist identity
  object during renewal
- auth/cert: Fix panic if no client certificate is supplied
- auth/token: Don't report that a non-expiring root token is
  renewable, as attempting to renew it results in an error
- cli: Don't retry a command when a redirection is received
- core: Fix regression causing status codes to be 400 in most
  non-5xx error cases
- core: Fix panic that could occur during a leadership transition
- physical/postgres: Remove use of prepared statements as this
  causes connection multiplexing software to break
- physical/consul: Multiple Vault nodes on the same machine
  leading to check ID collisions were resulting in incorrect
  health check responses
- physical/consul: Fix deregistration of health checks on exit
- secret/postgresql: Check for existence of role before attempting
  deletion
- secret/postgresql: Handle revoking roles that have privileges on
  sequences
- secret/postgresql(,mysql,mssql): Fix incorrect use of database
  over transaction object which could lead to connection
  exhaustion
- secret/pki: Fix parsing CA bundle containing trailing whitespace
- secret/pki: Fix adding email addresses as SANs
- secret/pki: Ensure that CRL values are always UTC, per RFC
- sys/seal-status: Fixed nil Cluster object while checking seal
  status


0.6.0 (June 14th, 2016)

SECURITY:

Although sys/revoke-prefix was intended to revoke prefixes of
secrets (via lease IDs, which incorporate path information) and
auth/token/revoke-prefix was intended to revoke prefixes of tokens
(using the tokens' paths and, since 0.5.2, role information), in
implementation they both behaved exactly the same way since a
single component in Vault is responsible for managing lifetimes of
both, and the type of the tracked lifetime was not being checked.
The end result was that either endpoint could revoke both secret
leases and tokens. We consider this a very minor security issue as
there are a number of mitigating factors: both endpoints require
sudo capability in addition to write capability, preventing
blanket ACL path globs from providing access; both work by using
the prefix to revoke as a part of the endpoint path, allowing them
to be properly ACL'd; and both are intended for emergency
scenarios and users should already not generally have access to
either one. In order to prevent confusion, we have simply removed
auth/token/revoke-prefix in 0.6, and sys/revoke-prefix will be
meant for both leases and tokens instead.

DEPRECATIONS/BREAKING CHANGES:

- auth/token/revoke-prefix has been removed. See the security
  notice for details.
- Vault will now automatically register itself as the vault
  service when using the consul backend and will perform its own
  health checks.
- List operations that do not find any keys now return a 404
  status code rather than an empty response object
- CA certificates issued from the pki backend no longer have
  associated leases, and any CA certs already issued will ignore
  revocation requests from the lease manager.

FEATURES:

- AWS EC2 Auth Backend: Provides a secure introduction mechanism
  for AWS EC2 instances allowing automated retrieval of Vault
  tokens.
- Response Wrapping: Nearly any response within Vault can now be
  wrapped inside a single-use, time-limited token's cubbyhole,
  taking the Cubbyhole Authentication Principles mechanism to its
  logical conclusion.
- Azure Physical Backend: You can now use Azure blob object
  storage as your Vault physical data store
- Swift Physical Backend: You can now use Swift blob object
  storage as your Vault physical data store
- Consul Backend Health Checks: The Consul backend will
  automatically register a vault service and perform its own
  health checking.
- Explicit Maximum Token TTLs: You can now set explicit maximum
  TTLs on tokens that do not honor changes in the system- or
  mount-set values.
- Non-Renewable Tokens: When creating tokens directly through the
  token authentication backend, you can now specify in both token
  store roles and the API whether or not a token should be
  renewable, defaulting to true.
- RabbitMQ Secret Backend: Vault can now generate credentials for
  RabbitMQ. Vhosts and tags can be defined within roles.

IMPROVEMENTS:

- audit: Add the DisplayName value to the copy of the Request
  object embedded in the associated Response, to match the
  original Request object
- audit: Enable auditing of the seal and step-down commands
- backends: Remove most root/sudo paths in favor of normal ACL
  mechanisms.
- command/auth: Restore the previous authenticated token if the
  auth command fails to authenticate the provided token
- command/write: -format and -field can now be used with the write
  command
- core: Add mlock support for FreeBSD, OpenBSD, and Darwin
- core: Don't keep lease timers around when tokens are revoked
- core: If using the disable_cache option, caches for the policy
  store and the transit backend are now disabled as well
- credential/cert: Renewal requests are rejected if the set of
  policies has changed since the token was issued
- credential/cert: Check CRLs for specific non-CA certs configured
  in the backend
- credential/ldap: If groupdn is not configured, skip searching
  LDAP and only return policies for local groups, plus a warning
- credential/ldap: vault list support for users and groups
- credential/ldap: Support for the memberOf attribute for group
  membership searching
- credential/userpass: Add list support for users
- credential/userpass: Remove user configuration paths from
  requiring sudo, in favor of normal ACL mechanisms
- credential/token: Sanitize policies and add default policies in
  appropriate places
- credential/token: Setting the renewable status of a token is now
  possible via vault token-create and the API.
- secret/aws: Use chain credentials to allow environment/EC2
  instance/shared providers
- secret/aws: Support for STS AssumeRole functionality
- secret/consul: Reading consul access configuration supported.
- secret/pki: Added exclude_cn_from_sans field to prevent adding
  the CN to DNS or Email Subject Alternate Names
- secret/pki: Added list support for certificates
- sys/capabilities: Enforce ACL checks for requests that query the
  capabilities of a token on a given path
- sys/health: Status information can now be retrieved with HEAD

BUG FIXES:

- command/read: Fix panic when using -field with a non-string
  value
- command/token-lookup: Fix TTL showing as 0 depending on how a
  token was created.
- command/various: Tell the JSON decoder to not convert all
  numbers to floats; fixes some various places where numbers were
  showing up in scientific notation
- command/server: Prioritized devRootTokenID and devListenAddress
  flags over their respective env vars
- command/ssh: Provided option to disable host key checking.
- core: Properly persist mount-tuned TTLs for auth backends
- core: Don't accidentally crosswire SIGINT to the reload handler
- credential/github: Make organization comparison case-insensitive
  during login
- credential/github: Fix panic when renewing a token created with
  some earlier versions of Vault
- credential/github: The token used to log in via vault auth can
  now be specified in the VAULT_AUTH_GITHUB_TOKEN environment
  variable
- credential/ldap: Fix problem where certain error conditions when
  configuring or opening LDAP connections would cause a panic
  instead of return a useful error message
- credential/token: Fall back to normal parent-token semantics if
  allowed_policies is empty for a role.
- credential/token: Fix issues renewing tokens when using the
  "suffix" capability of token roles
- credential/token: Fix lookup via POST showing the request token
  instead of the desired token
- credential/various: Fix renewal conditions when default policy
  is not contained in the backend config
- physical/s3: Don't panic in certain error cases from bad S3
  responses
- secret/consul: Use non-pooled Consul API client to avoid leaving
  files open
- secret/pki: Don't check whether a certificate is destined to be
  a CA certificate if sign-verbatim endpoint is used


0.5.3 (May 27th, 2016)

SECURITY:

Consul ACL Token Revocation: An issue was reported to us
indicating that generated Consul ACL tokens were not being
properly revoked. Upon investigation, we found that this behavior
was reproducible in a specific scenario: when a generated lease
for a Consul ACL token had been renewed prior to revocation. In
this case, the generated token was not being properly persisted
internally through the renewal function, leading to an error
during revocation due to the missing token. Unfortunately, this
was coded as a user error rather than an internal error, and the
revocation logic was expecting internal errors if revocation
failed. As a result, the revocation logic believed the revocation
to have succeeded when it in fact failed, causing the lease to be
dropped while the token was still valid within Consul. In this
release, the Consul backend properly persists the token through
renewals, and the revocation logic has been changed to consider
any error type to have been a failure to revoke, causing the lease
to persist and attempt to be revoked later.
2016-09-09 13:26:04 +00:00
..
aide Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
aide06 Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
amap Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
antonym Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
ap-modsecurity Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
ap-modsecurity2 Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
apg Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
argon2 Import argon2-20151102 as security/argon2. 2015-11-05 08:50:33 +00:00
arirang Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
asignify Honour --mandir. Fixes PKGMANDIR. 2016-04-01 13:54:41 +00:00
avcheck Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
base Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
Bastille Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
bcrypt Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
beecrypt Explicitly disable python bindings. 2015-11-08 23:33:46 +00:00
bitstir Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
boringssl Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
botan Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
botan-devel Fix PLIST for i386. 2016-07-02 14:42:30 +00:00
bunny Imported bunny from pkgsrc-wip. 2016-07-09 21:43:24 +00:00
caff Updated caff to 2.4. 2016-08-24 10:45:38 +00:00
ccid Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
cfs Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
chkrootkit Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
clamav Pull in GNU sed, required for correct LLVM detection. Fixes SunOS. 2016-07-07 14:36:34 +00:00
clamav-doc ClamAV 0.99 contains major new features and changes. YARA rules, 2015-12-11 16:31:06 +00:00
clusterssh Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
codecrypt Add codecrypt, version 1.7.5 to the Packages Collection. 2016-04-30 19:27:43 +00:00
CoolKey Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
courier-authlib Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
crack Use OPSYSVARS. 2016-02-26 09:41:05 +00:00
credns Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
crudesaml Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
crypto++ Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
CSP Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
cvm Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
cy2-anonymous
cy2-crammd5
cy2-digestmd5 Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
cy2-gssapi Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
cy2-ldapdb Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
cy2-login
cy2-ntlm Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
cy2-otp Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
cy2-plain
cy2-saml Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
cy2-scram Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
cy2-sql Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
cyrus-sasl Use OPSYSVARS. 2016-02-26 09:41:05 +00:00
cyrus-saslauthd Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
dcfldd Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
ddos-scan Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
destroy Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
dhbitty Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
dirb Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
dirmngr Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
dnssec-tools Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
dropbear Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
dsniff Fix security/dsniff* build on NetBSD-current due recent route(4) change 2016-04-18 08:34:35 +00:00
dsniff-nox11 Fix security/dsniff* build on NetBSD-current due recent route(4) change 2016-04-18 08:34:35 +00:00
EasyPG Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
ecap_clamav_adapter Update ecap_clamav_adapter to use C++11 in line with libecap (and squid3). 2016-06-23 15:17:28 +00:00
egd Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
engine-pkcs11 Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
ent Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
erlang-fast_tls Update security/erlang-fast_tls to 1.0.7. 2016-08-12 09:25:49 +00:00
erlang-p1_oauth2 Import p1_oauth2-0.6.1 as security/erlang-p1_oauth2. 2016-04-25 14:30:45 +00:00
erlang-p1_pam Update security/erlang-p1_pam to 1.0.0. 2016-01-16 17:30:31 +00:00
f-prot-antivirus6
f-prot-antivirus6-fs-bin
f-prot-antivirus6-ms-bin Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
f-prot-antivirus6-ws-bin
fail2ban Updated to 0.9.3. 2015-11-27 15:41:47 +00:00
flawfinder Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
fprint-demo Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
fragroute Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
fsh Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
fwbuilder Fix MANDIR handling. 2016-04-21 10:44:40 +00:00
gnome-keyring Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gnome-keyring-manager Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gnome-keyring-sharp Recursive revbump from textproc/icu 57.1 2016-04-11 19:01:33 +00:00
gnu-crypto Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
gnu-pw-mgr Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
gnupg Update gnupg to 1.4.21 2016-08-17 23:05:19 +00:00
gnupg-pkcs11-scd Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
gnupg2 Update gnupg2 to 2.0.30. 2016-04-13 18:01:55 +00:00
gnupg21 Add upstream bug report URL, thanks bsiegert! 2016-08-20 16:18:03 +00:00
gnutls Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
go-crypto Revbump packages using Go for Go 1.7 release. 2016-08-20 09:21:44 +00:00
go-oauth2 Revbump packages using Go for Go 1.7 release. 2016-08-20 09:21:44 +00:00
google-authenticator Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
gpa Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gpass Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
gpg2dot Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
gpgme Use OPSYSVARS. 2016-02-26 09:41:05 +00:00
gpgmepp Add gpgmepp 15.12.2 2016-05-26 06:39:11 +00:00
gpshell Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
gsasl Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
gss Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
guardtime Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
hackbot Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
hashcash Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
heimdal Explicitly disable extended glob(3C) support on SunOS, despite it 2016-06-02 16:01:12 +00:00
heirloom-su
HElib Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
hitch Update security/hitch to 1.3.1. 2016-08-22 09:34:40 +00:00
honeyd Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
honeyd-arpd Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
hs-digest Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
hydan Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
hydra Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
ike-scan Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
ipsec-tools Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
ipv6-toolkit Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
isakmpd Use ${MASTER_SITE_LOCAL} when you mean ${MASTER_SITE_LOCAL}. 2016-04-12 08:08:46 +00:00
jessie Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
john Add a missing endif in Solaris case. 2016-01-28 10:04:38 +00:00
kauth Update KDE Frameworks to 5.25.0 2016-08-21 21:23:15 +00:00
kdesu Update KDE Frameworks to 5.25.0 2016-08-21 21:23:15 +00:00
KeePass Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
keepassx Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
keepassx0 Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
keychain Update security/keychain to 2.8.2. 2016-08-18 06:09:01 +00:00
kgpg Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
knc Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
kpcli Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
kssh Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
kstart Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
kwallet Update KDE Frameworks to 5.25.0 2016-08-21 21:23:15 +00:00
kwalletmanager Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
lasso Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
libassuan2 Remove patch that is not needed any longer. 2016-07-17 07:21:27 +00:00
libbf Attempt to bring sanity to how ABI and MACHINE_ARCH are set. 2016-01-24 16:14:44 +00:00
libcrack Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
libcurvecpr Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
libdes Use PKGMANDIR. Add patch comment. 2016-03-30 09:48:42 +00:00
libfprint Switch to ImageMagick6 to fix build. Bump PKGREVISION. 2016-05-26 11:44:00 +00:00
libfwbuilder Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
libgcrypt Use COMPILER_RPATH_FLAG properly. Reconciles libgcrypt-config with 2016-09-01 10:19:30 +00:00
libgfshare Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
libglobalplatform Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
libgnome-keyring Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
libgpg-error Updated libgpg-error to 1.24. 2016-07-16 08:19:22 +00:00
libguardtime Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
libidea Remove stale HP-UX bulk build quirks 2015-02-27 14:35:01 +00:00
libident
libksba Updated libksba to 1.3.5. 2016-08-22 12:32:11 +00:00
libmcrypt Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
libmerkletree
libmultigest
libnetpgpverify Bump API requirement to 20150901 for the renamed symbols in libnetpgpverify 2015-09-01 19:41:17 +00:00
liboauth Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
libp11 Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
libpbc Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
libprelude Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
libprelude-lua Bump PKGREVISION for nettle shlib major bump. 2015-08-23 14:30:35 +00:00
libprelude-perl Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
libprelude-python Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
libprelude-ruby Rename RUBY_VERSION_SUPPORTED into _RUBY_VERSIONS_ACCEPTED to follow the 2016-09-08 15:19:16 +00:00
libpreludedb Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
libpreludedb-mysql Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
libpreludedb-perl Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
libpreludedb-pgsql Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
libpreludedb-python Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
libpreludedb-sqlite3 Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
libressl Fix BUILDLINK_PASSTHRU_DIRS arguments. 2016-07-26 11:53:24 +00:00
libsecret Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
libsodium Version 1.0.8 2016-02-07 10:59:18 +00:00
libssh Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
libssh2 Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
libtasn1 Updated libtasn1 to 4.8. Security update. 2016-06-22 10:36:00 +00:00
libtcpa Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
libtomcrypt Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
libykneomgr Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
libyubikey Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
log2timeline Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
logcheck Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
lsh Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
lua-sec Update to luasec-0.6. Switch to MASTER_SITE_GITHUB. 2016-06-04 21:48:11 +00:00
mate-polkit Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
mbedtls Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
mbedtls1 Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
mcrypt Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
md4-collision Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
md5-collision Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
merkletree
mhash Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
mirrordir Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
mit-krb5 Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
mit-krb5-appl Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
mixminion Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
mozilla-rootcerts Update to certificates of 20160610. 2016-07-21 12:37:43 +00:00
mozilla-rootcerts-openssl Update to match mozilla-rootcerts. Bump version. 2016-07-21 12:38:05 +00:00
msu Support PKGMANDIR. 2016-04-01 11:06:44 +00:00
msudir Support PKGMANDIR. 2016-04-01 11:15:24 +00:00
multigest Update multigest and libmultigest to version 20150211 2015-02-12 01:57:57 +00:00
munge Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
MyPasswordSafe Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
nacl Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
netpgp Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
netpgpverify Update netpgpverify and libnetpgpverify to 20160828 2016-08-28 23:23:40 +00:00
netramet Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
nettle Update nettle to 3.2. 2016-02-01 13:27:36 +00:00
nfsbug make the makefile MAKE_JOBS_SAFE. 2015-12-16 10:44:44 +00:00
nikto Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
oath-toolkit Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
ocaml-cryptokit Updated package to use ocaml.mk framework. No upstream changes. 2016-06-25 14:31:13 +00:00
ocaml-ssl Revbump to make sure package gets recompiled with new mk/ocaml.mk 2016-06-20 10:15:52 +00:00
opencdk Use OPSYSVARS. 2016-02-26 09:41:05 +00:00
openct Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
opendnssec Add a couple of patches I have been using with opendnssec in our 2016-07-16 19:49:07 +00:00
openpam Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
opensaml Release Notes - OpenSAML 2 - C++ - Version 2.5.5 2016-03-20 10:04:14 +00:00
opensc Updated security/opensc to 0.16.0 2016-08-04 13:08:25 +00:00
openssh Fixed pkglint warnings about indentation. 2016-07-10 10:41:38 +00:00
openssl Fix build on SunOS when the default compilation environment is C99+. 2016-09-08 15:43:13 +00:00
openvas-client Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
openvas-libnasl Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
openvas-libraries Use OPSYSVARS. 2016-02-26 09:41:05 +00:00
openvas-plugins Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
openvas-server Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
otpCalc Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
otptool Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
p0f Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
p5-AuthCAS Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Authen-CAS-Client Updated security/p5-Authen-CAS-Client to 0.07 2016-06-20 15:01:39 +00:00
p5-Authen-Htpasswd Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Authen-PAM Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Authen-PluggableCaptcha Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Authen-SASL Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Authen-SASL-Authd Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Authen-SASL-Cyrus Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Authen-Simple Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Authen-TacacsPlus Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-BSD-arc4random Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Bytes-Random-Secure Updated security/p5-Bytes-Random-Secure to 0.29 2016-06-21 14:00:25 +00:00
p5-Crypt-Blowfish Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-Blowfish_PP Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-CAST5_PP Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-CBC Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-CipherSaber Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-DES Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-DES_EDE3 Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-DH Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-DH-GMP Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-DSA Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-ECB Updated p5-Crypt-ECB to 2.20. 2016-08-31 06:05:00 +00:00
p5-Crypt-Eksblowfish Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-GeneratePassword Update to 0.05 2016-08-09 00:25:57 +00:00
p5-Crypt-GPG Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-IDEA Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-OpenPGP Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-OpenSSL-AES Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-OpenSSL-Bignum Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-OpenSSL-DSA Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-OpenSSL-Random Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-OpenSSL-RSA Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-PasswdMD5 Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-Primes Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-PWSafe3 Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-Random Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-Random-Seed Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-Random-TESHA2 Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-RandPasswd Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-RC4 Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-Rijndael Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-RIPEMD160 Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-RSA Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-SmbHash Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-SSLeay Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-Twofish Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-URandom Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Crypt-X509 Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Dancer-Plugin-Auth-RBAC Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Data-SimplePassword - More BUILD_DEPENDS for make test 2016-07-20 13:50:57 +00:00
p5-Digest Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Digest-BubbleBabble Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Digest-CRC Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Digest-Hashcash Update to 1.1 2016-07-30 23:56:01 +00:00
p5-Digest-HMAC Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Digest-JHash Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Digest-MD2 Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Digest-MD4 Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Digest-MD5 Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Digest-MD5-File Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Digest-Nilsimsa Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Digest-Perl-MD5 Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Digest-SHA Updated security/p5-Digest-SHA to 5.96 2016-08-05 23:10:37 +00:00
p5-Digest-SHA1 Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Digest-SHA3 Update to 0.25 2016-07-29 11:43:59 +00:00
p5-File-KeePass Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-GnuPG-Interface Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-GSSAPI Explicitly pass path to krb5 implementation to be used. 2016-08-04 22:38:10 +00:00
p5-IO-Socket-SSL Updated p5-IO-Socket-SSL to 2.037. 2016-08-24 05:58:33 +00:00
p5-Module-Signature Updated security/p5-Module-Signature to 0.80 2016-08-06 14:45:16 +00:00
p5-Mozilla-CA Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Net-DNS-SEC (pkgsrc) 2016-08-05 23:34:17 +00:00
p5-Net-DNS-SEC-Maint-Key Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Net-OpenSSH Updated security/p5-Net-OpenSSH to 0.73 2016-08-06 01:40:34 +00:00
p5-Net-SSH Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Net-SSLeay Updated p5-Net-SSLeay to 1.78. 2016-08-19 15:29:45 +00:00
p5-Netpgp-Verify Add p5-Netpgp-Verify version 20160814 to the Packages Collection. 2016-08-15 06:18:34 +00:00
p5-OpenSSL Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-pcsc Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
p5-SHA Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-String-Random Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Text-Password-Pronounceable Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p5-Tie-EncryptedHash Bump PKGREVISION for perl-5.24. 2016-06-08 19:22:13 +00:00
p11-kit Explicitly depend on the mozilla CA list for providing a trust anchor. 2016-04-04 17:34:56 +00:00
PACK Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
pakchois Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
pakemon Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
pam-af Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
pam-dbm Use OPSYSVARS. 2016-02-26 09:41:05 +00:00
pam-fprint Use OPSYSVARS. 2016-02-26 09:41:05 +00:00
pam-krb5 Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
pam-ldap Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
pam-mkhomedir Use OPSYSVARS. 2016-02-26 09:41:05 +00:00
pam-mysql Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
pam-p11 Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
pam-passwdqc Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
pam-pgsql Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
pam-pwauth_suid
pam-radius Fix build on SunOS. Fix pkglint warnings while at it. 2016-04-12 13:15:14 +00:00
pam-saml Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
pam-tacplus Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
pam-yubico Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
pam_ssh_agent_auth Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
paperkey Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
password-store Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
pcsc-lite update to pcsc-lite-1.8.18 2016-08-11 05:01:05 +00:00
pcsc-tools Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
pear-Crypt_GPG Add pear-Crypt_GPG 1.4.2. 2016-08-21 08:26:39 +00:00
pev Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
pgp2 Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
pgp5 Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
pgpdump Update pgpdump to 0.31. 2016-06-03 20:20:08 +00:00
pgpenvelope Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
php-mcrypt
php-oauth Requires PCRE to build. 2016-05-07 10:09:07 +00:00
php-oauth1 Re-import security/php-oauth as security/php-oauth1 (for PHP<7). 2016-03-12 09:39:57 +00:00
php-ssdeep Restrict PHP_VERSIONS_ACCEPTED to 55 and 56. 2015-12-19 14:27:12 +00:00
php-ssh2 Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
php-suhosin Restrict PHP_VERSIONS_ACCEPTED to 55 and 56. 2015-12-19 14:27:12 +00:00
pinentry Update pinentry* to 0.9.7: 2015-12-13 21:27:13 +00:00
pinentry-gtk2 Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
pinentry-qt4 Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
pinepgp Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
pkcs11-helper Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
pks Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
policykit Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
policykit-gnome Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
polkit Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
polkit-qt Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
polkit-qt5 Add polkit-qt5 0.112.0 2016-05-26 06:22:54 +00:00
PortableSigner Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
portsentry Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
prelude-correlator Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
prelude-lml Use REAL_ROOT_USER/REAL_ROOT_GROUP instead of ROOT_USER/ROOT_GROUP 2016-05-17 10:32:06 +00:00
prelude-manager Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
prelude-pflogger Fix missing/broken rcsids. 2015-12-29 04:04:26 +00:00
priv Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
prngd Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
pscan Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
putty Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
pwsafe Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
py-acme Import certbot 0.6.0 as security/py-certbot. 2016-05-25 18:18:16 +00:00
py-aes Import pyaes-1.6.0 as security/py-aes 2016-06-14 07:58:40 +00:00
py-asn1 Update security/py-asn1 to 0.1.9. 2015-12-30 15:00:27 +00:00
py-asn1-modules Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
py-backports.ssl_match_hostname Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-bcrypt Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-certbot Fix forgotten change, ride previous revision 2016-06-15 20:03:05 +00:00
py-certifi Fix MASTER_SITES. 2016-06-01 12:30:45 +00:00
py-crack Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
py-cryptkit Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-crypto Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
py-cryptography Updated py-cryptography to 1.5. 2016-08-31 06:47:09 +00:00
py-cryptopp Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-cybox Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-denyhosts Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-Des Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
py-ecdsa Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
py-ezPyCrypto Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
py-gnupg Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-gssapi Use pypi distfile. 2016-07-24 19:08:23 +00:00
py-hsm Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
py-itsdangerous Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-kerberos Add py-kerberos 1.2.4 2016-06-09 02:06:18 +00:00
py-keyring Remove unnecessary PLIST_SUBST and FILES_SUBST that are now provided 2016-08-28 15:48:28 +00:00
py-lasso Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-libtaxii Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-m2crypto Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-mcrypt Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-ndg_httpsclient Import ndg_httpsclient-0.4.0 as www/py-ndg_httpsclient. 2015-12-01 08:43:05 +00:00
py-oauth Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-oauth2 Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-oauth2client Update py-oauth2client to 2.0.0. 2016-03-03 12:59:55 +00:00
py-oauthlib Updated py-oauthlib to 2.0.0. 2016-09-04 09:33:28 +00:00
py-openid Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-OpenSSL Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-paramiko Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-passlib Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-pbkdf2 Import py-pbkdf2-1.3 as security/py-pbkdf2. 2016-09-02 16:30:20 +00:00
py-prewikka Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-py-bcrypt Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-pydeep Switch to MASTER_SITES_PYPI. 2016-06-08 17:43:20 +00:00
py-requests-oauthlib Updated py-requests-oauthlib to 0.5.0: 2015-11-06 11:01:38 +00:00
py-rsa Update py-rsa to 3.4.1: 2016-04-13 17:54:10 +00:00
py-service_identity Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-simplesha3 Import py-simplesha3-2015.09.22.post1 as security/py-simplesha3. 2015-12-27 22:26:23 +00:00
py-slowaes Import py-slowaes-0.1a1 as security/py-slowaes. 2016-09-02 16:29:10 +00:00
py-smbpasswd Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
py-SSLCrypto Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-stix Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-tlslite Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-urllib2-kerberos Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-xmlsec Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-yara Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
py-yubiauth Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
pyca Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
qca Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
qca-tls Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
qca2 Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
qca2-gnupg Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
qca2-ossl Remove support for SSLv2 2016-03-29 23:04:01 +00:00
qident Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
qoauth Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
qore-asn1-module email style fix 2016-08-07 10:12:58 +00:00
qore-ssh2-module email style fix 2016-08-07 11:44:42 +00:00
qore-xmlsec-module Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
qt4-qtkeychain Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
R-digest Update to 0.6.9 2016-04-16 14:57:03 +00:00
racoon2 Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
rainbowcrack Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
rats Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
rc5des Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
rid Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
rsaref Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
ruby-bcrypt Update ruby-bcrypt to 3.1.11. 2016-03-15 15:07:02 +00:00
ruby-ezcrypto Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
ruby-hmac Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
ruby-net-scp Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
ruby-net-sftp Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
ruby-net-ssh Update ruby-net-ssh to 2.10.1.rc2. 2015-12-13 15:03:15 +00:00
ruby-net-ssh-gateway Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
ruby-net-ssh-multi Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
ruby-oauth Update HOMEPAGE. 2016-03-15 15:15:49 +00:00
ruby-openid Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
ruby-password Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
ruby-rack-openid Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
ruby-rc4 Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
ruby-ruby-openid Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
ruby-shadow Update ruby-shadow to 2.5.0. 2015-11-23 07:26:14 +00:00
ruby-simple_oauth Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
ruby-sshkit Update ruby-sshkit to 1.8.1. 2015-12-13 17:18:07 +00:00
ruby-tcpwrap Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
ruby-twitter_oauth Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
sbd Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
scanssh Fix PKGSRC_MKPIE=yes build. Add LICENSE. 2016-07-26 20:33:35 +00:00
scrypt Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
seahorse Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
seahorse-plugins Revbump after graphics/gd update 2016-08-03 10:22:08 +00:00
seccure Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
secpanel Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
sfs Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
sign Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
skey Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
sks Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
sleuthkit Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
smaSHeM Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
smtpd Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
sniff Use PKGMANDIR. Add patch comment. 2016-03-30 09:52:58 +00:00
snoopy Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
snortsnarf Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
snow Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
softhsm Tell configure where to look for Botan. 2016-06-01 13:41:14 +00:00
spiped Remove the stability entity, it has no meaning outside of an official context. 2016-06-08 10:16:50 +00:00
srm Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
srp_client Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
ssdeep Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
ssh-askpass Pass CFLAGS and LDFLAGS to imake. Fixes MKPIE build. 2016-05-18 21:16:25 +00:00
ssh-ip-tunnel Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
sshfp Switch to direct py-dns dependency. 2016-06-30 18:03:46 +00:00
sshguard Use OPSYSVARS. 2016-02-26 09:41:05 +00:00
sshpass Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
ssldump Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
sslproxy Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
sslsplit Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
sslwrap Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
ssss Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
starttls Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
steghide Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
stegtunnel Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
stud Remove the stability entity, it has no meaning outside of an official context. 2016-06-08 10:16:50 +00:00
stunnel PR pkg/51449 2016-08-29 19:21:24 +00:00
sudo Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
tacshell Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
tcl-tls Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
tcp_wrappers Add LICENSE (2-clause-bsd, not exactly but close enough). 2016-01-29 10:43:14 +00:00
tct Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
tkpasman Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
tor-browser Recursive revbump from multimedia/libvpx uppdate 2016-08-17 00:06:39 +00:00
tripwire Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
TweetNaCl Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
uvscan mark as broken, no distfile 2015-03-06 23:22:25 +00:00
validns Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
vault Update security/vault to 0.6.1. 2016-09-09 13:26:04 +00:00
volatility Remove python33: adapt all packages that refer to it. 2016-07-09 13:03:30 +00:00
xml-security-c Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
xmlsec1 Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
yafic Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
yara Update security/yara to version 3.4.0 2016-05-26 14:41:48 +00:00
ykclient Bump PKGREVISION for security/openssl ABI bump. 2016-03-05 11:27:40 +00:00
ykpers Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
zebedee Bump PKGREVISION for perl-5.24.0 for everything mentioning perl. 2016-07-09 06:38:30 +00:00
zkt Add SHA512 digests for distfiles for security category 2015-11-04 01:17:40 +00:00
zoneminder Recursive revbump from multimedia/libvpx uppdate 2016-08-17 00:06:39 +00:00
Makefile + py-pbkdf2, py-slowaes 2016-09-02 16:43:20 +00:00