Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (22m)  pkgsrc-2024Q1 (9d)  pkgsrc-2023Q4 (56d)  pkgsrc-2023Q2 (88d)  pkgsrc-2023Q3 (168d) 

2024-05-26 18:44:27 UTC Now

2017-11-02 06:18:11 UTC MAIN commitmail json YAML

git: updated to 2.15.0

Git 2.15 Release Notes

Backward compatibility notes and other notable changes.

* Use of an empty string as a pathspec element that is used for
  'everything matches' is still warned and Git asks users to use a
  more explicit '.' for that instead.  The hope is that existing
  users will not mind this change, and eventually the warning can be
  turned into a hard error, upgrading the deprecation into removal of
  this (mis)feature.  That is now scheduled to happen in Git v2.16,
  the next major release after this one.

* Git now avoids blindly falling back to ".git" when the setup
  sequence said we are _not_ in Git repository.  A corner case that
  happens to work right now may be broken by a call to BUG().
  We've tried hard to locate such cases and fixed them, but there
  might still be cases that need to be addressed--bug reports are
  greatly appreciated.

* "branch --set-upstream" that has been deprecated in Git 1.8 has
  finally been retired.

Updates since v2.14
-------------------

UI, Workflows & Features

* An example that is now obsolete has been removed from a sample hook,
  and an old example in it that added a sign-off manually has been
  improved to use the interpret-trailers command.

* The advice message given when "git rebase" stops for conflicting
  changes has been improved.

* The "rerere-train" script (in contrib/) learned the "--overwrite"
  option to allow overwriting existing recorded resolutions.

* "git contacts" (in contrib/) now lists the address on the
  "Reported-by:" trailer to its output, in addition to those on
  S-o-b: and other trailers, to make it easier to notify (and thank)
  the original bug reporter.

* "git rebase", especially when it is run by mistake and ends up
  trying to replay many changes, spent long time in silence.  The
  command has been taught to show progress report when it spends
  long time preparing these many changes to replay (which would give
  the user a chance to abort with ^C).

* "git merge" learned a "--signoff" option to add the Signed-off-by:
  trailer with the committer's name.

* "git diff" learned to optionally paint new lines that are the same
  as deleted lines elsewhere differently from genuinely new lines.

* "git interpret-trailers" learned to take the trailer specifications
  from the command line that overrides the configured values.

* "git interpret-trailers" has been taught a "--parse" and a few
  other options to make it easier for scripts to grab existing
  trailer lines from a commit log message.

* The "--format=%(trailers)" option "git log" and its friends take
  learned to take the 'unfold' and 'only' modifiers to normalize its
  output, e.g. "git log --format=%(trailers:only,unfold)".

* "gitweb" shows a link to visit the 'raw' contents of blbos in the
  history overview page.

* "[gc] rerereResolved = 5.days" used to be invalid, as the variable
  is defined to take an integer counting the number of days.  It now
  is allowed.

* The code to acquire a lock on a reference (e.g. while accepting a
  push from a client) used to immediately fail when the reference is
  already locked---now it waits for a very short while and retries,
  which can make it succeed if the lock holder was holding it during
  a read-only operation.

* "branch --set-upstream" that has been deprecated in Git 1.8 has
  finally been retired.

* The codepath to call external process filter for smudge/clean
  operation learned to show the progress meter.

* "git rev-parse" learned "--is-shallow-repository", that is to be
  used in a way similar to existing "--is-bare-repository" and
  friends.

* "git describe --match <pattern>" has been taught to play well with
  the "--all" option.

* "git branch" learned "-c/-C" to create a new branch by copying an
  existing one.

* Some commands (most notably "git status") makes an opportunistic
  update when performing a read-only operation to help optimize later
  operations in the same repository.  The new "--no-optional-locks"
  option can be passed to Git to disable them.

* "git for-each-ref --format=..." learned a new format element,
  %(trailers), to show only the commit log trailer part of the log
  message.

Performance, Internal Implementation, Development Support etc.

...more...

(adam)

2017-11-02 06:17:41 UTC MAIN commitmail json YAML

git: updated to 2.15.0

Git 2.15 Release Notes

Backward compatibility notes and other notable changes.

* Use of an empty string as a pathspec element that is used for
  'everything matches' is still warned and Git asks users to use a
  more explicit '.' for that instead.  The hope is that existing
  users will not mind this change, and eventually the warning can be
  turned into a hard error, upgrading the deprecation into removal of
  this (mis)feature.  That is now scheduled to happen in Git v2.16,
  the next major release after this one.

* Git now avoids blindly falling back to ".git" when the setup
  sequence said we are _not_ in Git repository.  A corner case that
  happens to work right now may be broken by a call to BUG().
  We've tried hard to locate such cases and fixed them, but there
  might still be cases that need to be addressed--bug reports are
  greatly appreciated.

* "branch --set-upstream" that has been deprecated in Git 1.8 has
  finally been retired.

Updates since v2.14
-------------------

UI, Workflows & Features

* An example that is now obsolete has been removed from a sample hook,
  and an old example in it that added a sign-off manually has been
  improved to use the interpret-trailers command.

* The advice message given when "git rebase" stops for conflicting
  changes has been improved.

* The "rerere-train" script (in contrib/) learned the "--overwrite"
  option to allow overwriting existing recorded resolutions.

* "git contacts" (in contrib/) now lists the address on the
  "Reported-by:" trailer to its output, in addition to those on
  S-o-b: and other trailers, to make it easier to notify (and thank)
  the original bug reporter.

* "git rebase", especially when it is run by mistake and ends up
  trying to replay many changes, spent long time in silence.  The
  command has been taught to show progress report when it spends
  long time preparing these many changes to replay (which would give
  the user a chance to abort with ^C).

* "git merge" learned a "--signoff" option to add the Signed-off-by:
  trailer with the committer's name.

* "git diff" learned to optionally paint new lines that are the same
  as deleted lines elsewhere differently from genuinely new lines.

* "git interpret-trailers" learned to take the trailer specifications
  from the command line that overrides the configured values.

* "git interpret-trailers" has been taught a "--parse" and a few
  other options to make it easier for scripts to grab existing
  trailer lines from a commit log message.

* The "--format=%(trailers)" option "git log" and its friends take
  learned to take the 'unfold' and 'only' modifiers to normalize its
  output, e.g. "git log --format=%(trailers:only,unfold)".

* "gitweb" shows a link to visit the 'raw' contents of blbos in the
  history overview page.

* "[gc] rerereResolved = 5.days" used to be invalid, as the variable
  is defined to take an integer counting the number of days.  It now
  is allowed.

* The code to acquire a lock on a reference (e.g. while accepting a
  push from a client) used to immediately fail when the reference is
  already locked---now it waits for a very short while and retries,
  which can make it succeed if the lock holder was holding it during
  a read-only operation.

* "branch --set-upstream" that has been deprecated in Git 1.8 has
  finally been retired.

* The codepath to call external process filter for smudge/clean
  operation learned to show the progress meter.

* "git rev-parse" learned "--is-shallow-repository", that is to be
  used in a way similar to existing "--is-bare-repository" and
  friends.

* "git describe --match <pattern>" has been taught to play well with
  the "--all" option.

* "git branch" learned "-c/-C" to create a new branch by copying an
  existing one.

* Some commands (most notably "git status") makes an opportunistic
  update when performing a read-only operation to help optimize later
  operations in the same repository.  The new "--no-optional-locks"
  option can be passed to Git to disable them.

* "git for-each-ref --format=..." learned a new format element,
  %(trailers), to show only the commit log trailer part of the log
  message.

Performance, Internal Implementation, Development Support etc.

...more...

(adam)

2017-11-02 04:54:27 UTC MAIN commitmail json YAML

idutils: regen patch sums after previous commit

(maya)

2017-11-02 04:26:21 UTC MAIN commitmail json YAML

patch fflush.c and fseeko.c so that this package builds on FreeBSD HEAD

(agc)

2017-11-01 21:51:22 UTC MAIN commitmail json YAML

2017-11-01 19:41:08 UTC pkgsrc-2017Q3 commitmail json YAML

tickets 5590 5593 5599 5601 5604 5610 5611 5612 5613 5614

(spz)

2017-11-01 19:35:16 UTC pkgsrc-2017Q3 commitmail json YAML

Pullup ticket #5590 - requested by sevan
lang/nodejs6: security update

Revisions pulled up:
- lang/nodejs6/Makefile                                        1.16-1.17
- lang/nodejs6/distinfo                                        1.15-1.16
- lang/nodejs6/patches/patch-deps_cares_cares.gyp              1.2-1.3
- lang/nodejs6/patches/patch-deps_uv_uv.gyp                    1.1-1.2

-------------------------------------------------------------------
  Module Name:    pkgsrc
  Committed By:  fhajny
  Date:          Wed Oct  4 16:20:58 UTC 2017

  Modified Files:
          pkgsrc/lang/nodejs6: Makefile distinfo
          pkgsrc/lang/nodejs6/patches: patch-deps_cares_cares.gyp
  Added Files:
          pkgsrc/lang/nodejs6/patches: patch-deps_uv_uv.gyp

  Log Message:
  Update lang/nodejs6 to 6.11.4.

  - net: support passing undefined to listen() to match behavior
    in v4.x and v8.x

  To generate a diff of this commit:
  cvs rdiff -u -r1.15 -r1.16 pkgsrc/lang/nodejs6/Makefile
  cvs rdiff -u -r1.14 -r1.15 pkgsrc/lang/nodejs6/distinfo
  cvs rdiff -u -r1.1 -r1.2 \
      pkgsrc/lang/nodejs6/patches/patch-deps_cares_cares.gyp
  cvs rdiff -u -r0 -r1.1 pkgsrc/lang/nodejs6/patches/patch-deps_uv_uv.gyp

-------------------------------------------------------------------
  Module Name:    pkgsrc
  Committed By:  fhajny
  Date:          Wed Oct 25 13:45:18 UTC 2017

  Modified Files:
          pkgsrc/lang/nodejs6: Makefile distinfo
          pkgsrc/lang/nodejs6/patches: patch-deps_cares_cares.gyp
              patch-deps_uv_uv.gyp

  Log Message:
  Update lang/nodejs6 to 6.11.5.

  zlib:
  - CVE-2017-14919 - In zlib v1.2.9, a change was made that causes an
    error to be raised when a raw deflate stream is initialized with
    windowBits set to 8. On some versions this crashes Node and you cannot
    recover from it, while on some versions it throws an exception.
    Node.js will now gracefully set windowBits to 9 replicating the legacy
    behavior to avoid a DOS vector.

  To generate a diff of this commit:
  cvs rdiff -u -r1.16 -r1.17 pkgsrc/lang/nodejs6/Makefile
  cvs rdiff -u -r1.15 -r1.16 pkgsrc/lang/nodejs6/distinfo
  cvs rdiff -u -r1.2 -r1.3 \
      pkgsrc/lang/nodejs6/patches/patch-deps_cares_cares.gyp
  cvs rdiff -u -r1.1 -r1.2 pkgsrc/lang/nodejs6/patches/patch-deps_uv_uv.gyp

(spz)

2017-11-01 19:29:30 UTC MAIN commitmail json YAML

security/yara: Needs OpenSSL to build

(minskim)

2017-11-01 19:19:24 UTC pkgsrc-2017Q3 commitmail json YAML

Pullup ticket #5614 - requested by taca
databases/php-ldap: revision cleanup
databases/php-mssql: revision cleanup
databases/php-pdo_dblib: revision cleanup
databases/php-pdo_sqlite: revision cleanup
graphics/php-gd: revision cleanup
meta-pkgs/php56-extensions: revision cleanup
meta-pkgs/php70-extensions: revision cleanup
meta-pkgs/php71-extensions: revision cleanup
textproc/php-intl: revision cleanup
textproc/php-xsl: revision cleanup
www/php-curl: revision cleanup
www/php-fpm: revision cleanup
www/php-tidy: revision cleanup

Revisions pulled up:
- databases/php-ldap/Makefile                                  1.29
- databases/php-mssql/Makefile                                  1.29
- databases/php-pdo_dblib/Makefile                              1.26
- databases/php-pdo_sqlite/Makefile                            1.27
- graphics/php-gd/Makefile                                      1.41
- meta-pkgs/php56-extensions/Makefile                          1.8
- meta-pkgs/php70-extensions/Makefile                          1.3
- meta-pkgs/php71-extensions/Makefile                          1.3
- textproc/php-intl/Makefile                                    1.32
- textproc/php-xsl/Makefile                                    1.11
- www/php-curl/Makefile                                        1.33
- www/php-fpm/Makefile                                          1.22
- www/php-tidy/Makefile                                        1.4

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: taca
  Date: Fri Oct 27 08:49:01 UTC 2017

  Modified Files:
  pkgsrc/databases/php-ldap: Makefile
  pkgsrc/databases/php-mssql: Makefile
  pkgsrc/databases/php-pdo_dblib: Makefile
  pkgsrc/databases/php-pdo_sqlite: Makefile
  pkgsrc/graphics/php-gd: Makefile
  pkgsrc/meta-pkgs/php56-extensions: Makefile
  pkgsrc/meta-pkgs/php70-extensions: Makefile
  pkgsrc/meta-pkgs/php71-extensions: Makefile
  pkgsrc/textproc/php-intl: Makefile
  pkgsrc/textproc/php-xsl: Makefile
  pkgsrc/www/php-curl: Makefile
  pkgsrc/www/php-fpm: Makefile
  pkgsrc/www/php-tidy: Makefile

  Log Message:
  pkgsrc: reset PKGREVISION

  reset PKGREVISION along with update of all lang/php*.

  To generate a diff of this commit:
  cvs rdiff -u -r1.28 -r1.29 pkgsrc/databases/php-ldap/Makefile
  cvs rdiff -u -r1.28 -r1.29 pkgsrc/databases/php-mssql/Makefile
  cvs rdiff -u -r1.25 -r1.26 pkgsrc/databases/php-pdo_dblib/Makefile
  cvs rdiff -u -r1.26 -r1.27 pkgsrc/databases/php-pdo_sqlite/Makefile
  cvs rdiff -u -r1.40 -r1.41 pkgsrc/graphics/php-gd/Makefile
  cvs rdiff -u -r1.7 -r1.8 pkgsrc/meta-pkgs/php56-extensions/Makefile
  cvs rdiff -u -r1.2 -r1.3 pkgsrc/meta-pkgs/php70-extensions/Makefile
  cvs rdiff -u -r1.2 -r1.3 pkgsrc/meta-pkgs/php71-extensions/Makefile
  cvs rdiff -u -r1.31 -r1.32 pkgsrc/textproc/php-intl/Makefile
  cvs rdiff -u -r1.10 -r1.11 pkgsrc/textproc/php-xsl/Makefile
  cvs rdiff -u -r1.32 -r1.33 pkgsrc/www/php-curl/Makefile
  cvs rdiff -u -r1.21 -r1.22 pkgsrc/www/php-fpm/Makefile
  cvs rdiff -u -r1.3 -r1.4 pkgsrc/www/php-tidy/Makefile

(spz)

2017-11-01 18:23:19 UTC MAIN commitmail json YAML

doc: Updated sysutils/libpciaccess to 0.14

(wiz)

2017-11-01 18:22:28 UTC MAIN commitmail json YAML

doc: Updated devel/gradle to 4.3

(fhajny)

2017-11-01 18:22:20 UTC MAIN commitmail json YAML

libpciaccess: update to 0.14.

This release adds support for 32-bit PCI domain IDs, which are
apparently common in virtualized environments. This support has been
tested on Linux, and probably also "just works" on FreeBSD and Solaris,
to the extent that the underlying OS supports it.

If you were allocating a struct pci_device yourself, or embedding it in
another structure, this release would be an ABI break. That said,
anyone doing this would already be violating the implicit API contract
(not to mention good taste) and we were unable to find any consumers of
this library misbehaving in this way. As a result the library's soname
does not change in this release.

(wiz)

2017-11-01 18:22:19 UTC MAIN commitmail json YAML

Update devel/gradle to 4.3.

- Experimental build cache support for C and C++ compilation.
- Gradle Kotlin DSL v0.12
- You can now use the build scan plugin without configuring it in your
  build.
- Gradle now defines connection and socket timeouts for all HTTP(S)
  requests.
- The plugins {} DSL can now be used in more cases.
- The runtime task inputs API is now more consistent with the
  statically-compiled API.
- New console verbose mode will print outcomes of all tasks like Gradle
  3.5 and earlier did.
- New task output DirectoryProperty and RegularFileProperty types.

(fhajny)

2017-11-01 18:17:18 UTC MAIN commitmail json YAML

doc: Updated x11/libdrm to 2.4.87

(wiz)

2017-11-01 18:17:07 UTC MAIN commitmail json YAML

libdrm: update to 2.4.87.

2.4.87:

Marek Ol邸叩k (2):
      amdgpu: fix 32-bit build
      configure.ac: bump version for release

2.4.86:

Andrey Grodzovsky (2):
      amdgpu: Add wrappers for AMDGPU_VM IOCTL.
      amdgpu: Add VMID reservation per GPU context test.

Dave Airlie (2):
      drm: sync drm headers from drm-next.
      drm/syncobj: fix some whitespace issues

Marek Ol邸叩k (1):
      configure.ac: bump version for release

2.4.85:

No changelog found.

(wiz)

2017-11-01 15:29:09 UTC MAIN commitmail json YAML

2017-11-01 13:31:48 UTC MAIN commitmail json YAML

doc: Updated devel/kafka to 1.0.0

(fhajny)

2017-11-01 13:31:39 UTC MAIN commitmail json YAML

Update devel/kafka to 1.0.0

See upgrade notes:

  http://kafka.apache.org/100/documentation.html#upgrade

New Features

- KIP-72 Allow putting a bound on memory consumed by Incoming requests
- Expose states of active tasks to public API
- Add UnderMinIsrPartitionCount and per-partition UnderMinIsr metrics
- KIP-182: Reduce Streams DSL overloads and allow easier use of custom
  storage engines
- Add ChangeReplicaDirRequest and DescribeReplicaDirRequest (KIP-113)
- Add cumulative count attribute for all Kafka rate metrics
- Add new metrics to support health checks
- Handle SASL authentication failures as non-retriable exceptions in
  clients

Improvement

- Remove deprecated and slower scala JSON parser
- Add Kafka Connect metrics
- Allow setting of default topic configs via StreamsConfig
- Improve DumpLogSegments offsets-decoder output format
- Improve documentation of configuration
  listeners=PLAINTEXT://0.0.0.0:9092
- StateRestoreCallback begin and end indication
- Update the usage description of clean shutdown file.
- Add a '--group' option to the console consumer
- Support Java 9
- Details of retention.bytes property at Topic level are not clear on
  how they impact partition size
- Handle disk failure for JBOD (KIP-112)
- Improve diagnostics for SASL authentication failures
- Remove usage of java.xml.bind.* classes hidden by default in JDK9
- Make server start script work against Java 9
- Only log invalid user configs and overwrite with correct one
- Changes to punctuate semantics (KIP-138)
- Use per-task converters in Connect
- Consumer perf tool should count rebalance time separately
- Add ability to batch restore and receive restoration stats.
- KIP-162: Enable topic deletion by default
- Fix taskClass() method name in Connector and flush() signature in
  SinkTask
- Add checks in integration tests to verify that threads have been
  shutdown
- Add a new Kafka Streams example IoT oriented
- KIP-168: Add GlobalTopicCount metric per cluster
- Change Source offset commit message to info to match Sink behaviour
- Replace -XX:+DisableExplicitGC with -XX:+ExplicitGCInvokesConcurrent
  in kafka-run-class
- Streams should not suspend tasks twice
- Replace the deprecated 'ConsumerOffsetChecker' in documentation
- Consider removing date formatting from Segments class
- Formatting verifiable producer/consumer output in a similar fashion
- Streams reset tool should have same console output with or without
  dry-run
- Improve Java doc for LeaderEpochFileCache.endOffsetFor()
- Return topic authorization failed if no topic describe access
- Explain that `client.id` is just used as a prefix within Streams
- Using a logPrefix inside the StreamPartitionAssignor
- Add --custom-ducktape flag to ducker-ak
- Console Consumer overrides auto.offset.reset property when provided on
  the command line without warning about it.
- Connect REST API should include the connector type when describing a
  connector
- Test DeleteRecordsRequest in AuthorizerIntegrationTest
- KafkaConsumer.subscribe() overload that takes just Pattern without
  ConsumerRebalanceListener
- All ducktape services should store their files in subdirectories of
  /mnt
- ShellTest: add tests for attempting to run nonexistent program, error
  return
- Elevate log messages for denials to INFO in SimpleAclAuthorizer class
- Refactor Streams to use LogContext
- Refactor Producer to use LogContext
- Refactor AdminClient to use LogContext
- Refactor NetworkClient to use LogContext
- Upgrade ducktape version to 0.7.1, and use new kill_java_processes
- Implement KafkaPrincipalBuilder interface with support for SASL
  (KIP-189)
- Remove unneeded synchronized keyword in StreamThread
- Consistent logging of topic partitions
- Add AdminClient.createPartitions()
- Support unmapping of mapped/direct buffers in Java 9
- Handle SSL authentication failures as non-retriable exceptions in
  clients
- Avoid call fetchPrevious in FlushListeners
- Handle authentication failures from transactional producer and
  KafkaAdminClient
- User StoreListener not available for global stores
- Mention the need to close store iterators
- Enable custom authentication plugins to return error messages to
  clients
- There is something wrong in Kafka Streams document

Bugs

- NullPointerException in client on MetadataRequest
- The kafka-consumer-perf-test.sh script help information print useless
  parameters.
- Remove ConsumerOffsetChecker, deprecated in 0.9, in 0.11
- Make KStreamTestDriver extending from ExternalResource
- Cleanup Kafka Streams builder API
- completedReceives can contain closed channels
- KIP-163: Offset fetch and commit requests use the same permissions
- KafkaProducer.flush hangs when NetworkClient.handleCompletedReceives
  throws exception
- Records from internal repartitioning topics should always use
  RecordMetadataTimestampExtractor
- Augment KStream.print() to allow users pass in extra parameters in the
  printed string
- Calling KafkaProducer.close() from multiple threads may cause spurious
  error
- Kafka batch files does not support path with spaces
- creating a window store with one segment throws division by zero error
- Replace pattern matching with foreach where the case None is unused
- Flaky ResetIntegrationTest
- Kafka Streams keeps restoring state after shutdown is initiated during
  startup
- streams task gets stuck after re-balance due to LockException
- StreamsResetter doesn't allow custom Consumer properties
- Producer buffer pool allocates memory inside a lock.
- ProcessorContext.appConfigs() should return parsed/validated values
- JmxReporter Fetch metrics for kafka.server should not be created when
  client quotas are not enabled
- Using connect-console-sink/source.properties raises an exception
  related to "file" property not found
- Clients get inconsistent connection states when SASL/SSL connection is
  marked CONECTED and DISCONNECTED at the same time
- LogCleaner stopped due to
  org.apache.kafka.common.errors.CorruptRecordException
- StreamsKafkaClient should not use StreamsConfig.POLL_MS_CONFIG
- Created state changelog topics not logged correctly
- ListOffsetResponse isn't logged in the right way with trace level
  enabled
- Refactor kafkatest docker support
- Rolling upgrade test for streams
- bin/kafka-consumer-groups.sh failing to query offsets
- kafka-run-class.sh doesn't check for empty $CLASSPATH
- Documentation for altering topics
- KafkaConsumer: High memory allocation rate when idle
- KafkaConsumer offsetsForTimes should include partitions in result even
  if no offset could be found
- Transformations - tranformations for value broken on tombstone events
- The LastStableOffsetLag metric should be removed when partition is
  deleted
- SchemaBuilder does not validate input.
- KafkaConsumer.commitSync throws IllegalStateException: Attempt to
  retrieve exception from future which hasn't failed
- Instable test
  QueryableStateIntegrationTest.shouldAllowToQueryAfterThreadDied
- With transformations that mutate the topic-partition committing
  offsets should to refer to the original topic-partition
- Support Power platform by updating rocksdb version
- SchemaBuilder.type(Schema.Type) should not allow null.
- Processor got uncaught exception: NullPointerException
- Illegal state in SocketServer; attempt to send with another send in
  progress
- ConsoleConsumer : --new-consumer option as deprecated
- Group loading regression causing stale metadata/offsets cache
- Streams should not abort transaction when closing zombie task
- Improve error handling in SocketServer to reduce illegal states later
- System test failure due to timeout starting Jmx tool
- KafkaApis.handleWriteTxnMarkerRequest can return
  UNSUPPORTED_FOR_MESSAGE_FORMAT error on partition emigration
- Make --new-consumer option as deprecated in all tools
- SerializationException in doSend() masks class cast exception
- ducktape kafka service: do not assume Service contains num_nodes
- Consumer poll loop over the same record after a CorruptRecordException
- Using _DUCKTAPE_OPTIONS has no effect on executing tests
- Transient test failure:
  ResetConsumerGroupOffsetTest.testResetOffsetsToZonedDateTime
- Support bulk attributes request on KafkaMbean where some attributes do
  not exist
- LogDirFailureTest system test fails
- queryable state window store range scan only returns results from one
  store
- Add logging to distinguish between internally and externally initiated
  shutdown of Kafka
- Sort processor node based on name suffix in
  TopologyDescription.toString()
- Unit test shouldTogglePrepareForBulkLoadDuringRestoreCalls fails
- Auto topic creation causes failure with older clusters
- Bulk Restore Should Handle Deletes
- [streams] 'null' values in state stores
- In Jenkins, kafka.api.SaslSslAdminClientIntegrationTest failed with
  org.apache.kafka.common.errors.TimeoutException
- Consumer should ensure consistent ordering between sync and async
  offset commits
- System tests get exception RocksDBException: db has more levels than
  options.num_levels
- Client-ids are not handled consistently by clients and broker
- KafkaAdminClient thread should be daemon
- Partition.makeLeader() should convert HW to OffsetMetadata before
  becoming the leader
- Delete topic and re-create topic immediate will delete the new topic's
  timeindex
- ShellTest.testRunProgramWithErrorReturn fails on macOS
- Synchronization issue on flush
- Reassigning a topic's partitions can adversely impact other topics
- Move merge() from StreamsBuilder to KStream
- Kafka server should halt if IBP < 1.0.0 and there is log directory
  failure
- org.apache.kafka.streams.state.internals.Segments#segments method
  returns incorrect results when segments were added out of order
- WorkerSinkTask failure exception should include cause
- StoreChangeLogReader needs to restore partitions that were added post
  initialization
- SocketServer.processNewResponses should not skip a response if
  exception is thrown
- StoreChangelogReader should be resilient to broker-side metadata not
  available
- ChangeLoggingWindowBytesStore needs to retain duplicates when writing
  to the log
- KafkaStreams state transitions not correct
- Speedup broker startup after unclean shutdown by reducing unnecessary
  snapshot files deletion
- Reset thread interrupt state in case of InterruptedException
- ReassignPartitionsCommand fails if default throttle/timeout used
- Mx4jLoader.maybeLoad should only be executed if kafka_mx4jenable is
  set to true
- Remove ZK dependency from Streams reset tool
- ReplicaFetcherThread should not die due to replica in offline log
  directory
- Expiring batches with idempotence enabled could cause data loss.
- Kafka Connect applications should log info message when starting up
- Transient failure in SslSelectorTest.testMuteOnOOM
- Controller should read the latest IsrChangeNotification znodes when
  handling IsrChangeNotification event
- CompositeReadOnlyWindowStore range fetch doesn't return all values
  when fetching with different start and end times
- Fix minor typos and errors in the Kafka Streams turotial
- Connect classloader isolation may be broken for JDBC drivers
- Failure in Connect system test: ConnectRestApiTest
- StreamBuilder#table and StreamsBuilder#globalTable should use serdes
  from Materialized
- Producer IllegalStateException due to second deallocate after aborting
  a batch
- NPE in NetworkClient
- Producer uses unsupported ProduceRequest version against older brokers
- Ineffective check of negative value in
  CompositeReadOnlyKeyValueStore#approximateNumEntries()
- Remove all broker metrics during shutdown
- Deadlock due to locking of DelayedProduce and group
- RequestChannel.sendReponse records incorrect size for NetworkSend with
  TRACE logging
- kip-120 changed internal streams topic naming
- FailOnInvalidTimestamp does not log error
- Streams State Restoration never completes when logging is disabled
- disableLogging() causes partitions to not be consumed
- Rename AlterReplicaDir to AlterReplicaDirs
- Replication Fetcher thread for a partition with no data fails to start
- Reject JoinGroup request from first member with empty protocol
  type/protocol list
- Kafka Connect: Unsanitized workerID causes exception during startup
- Transient failure:
  MemoryRecordsBuilderTest.convertToV1WithMixedV0AndV2Data
- NoSuchElementException in markErrorMeter during TransactionsBounceTest
- NPE in RecordAccumulator
- Use the idempotent producer in the reassign_partitions_test
- KafkaFuture timeout fails to fire if a narrow race condition is hit
- System test failure: LogDirFailureTest
- Integer overflow in log cleaner cleanable ratio computation
- Kafka Request Handler deadlocks and brings down the cluster.
- NoSuchMethodError when creating ProducerRecord in upgrade system tests
- Running tools on Windows fail due to typo in JVM config
- ducker-ak: add ipaddress and enum34 dependencies to docker image
- Scanning plugin.path needs to support relative symlinks
- replica dir not deleted after topic deletion
- Streams quick start crashes Java on Windows
- Reconnecting to broker does not exponentially backoff
- Major performance issue due to excessive logging during leader
  election
- Silent Data Loss in Kafka011 Transactional Producer
- Transaction markers are sometimes discarded if txns complete
  concurrently
- High memory usage on controller during partition reassignment

Task

- Update Jackson dependencies (from 2.8.5 to 2.9.x)
- Enable PowerMock tests when running on Java 9
- Upgrade RocksDB dependency to legally acceptable version

Test

- Support passing ZK chroot in system tests
- Add unit tests for ClusterConnectionStates

Sub-task

- Replace ControlledShutdown{Request,Response} with
  org.apache.kafka.common.requests equivalent
- Remove temporary mapping to deserialize functions in RequestChannel
- Task migration during rebalance callback process could lead the
  obsoleted task's IllegalStateException
- Improve test coverage of StreamsKafkaClient
- Improve test coverage of RocksDBStore
- Improve test coverage of CompositeReadOnlySessionStore
- Improve test coverage of CompositeReadOnlyKeyValueStore
- Improve test coverage InMemoryKeyValueLoggedStore
- Improve test coverage of CachingKeyValueStore
- Improve test coverage UsePreviousTimeOnInvalidTimestamp
- Optimize RocksDb config for fast recovery/bulk load
- KeyValueStore.put may throw exception unrelated to the current put
  attempt
- Replace zkClient.getChildren method with zkUtils.getChildren
- Options for handling corrupt data during deserialization
- Improve exception handling for state stores
- Distinguish abortable failures in transactional producer
- Unexpected state transition Dead to PendingShutdown
- Replace zkClient.subscribe*Changes method with an equivalent zkUtils
  method
- Replace zkClient.exists method with zkUtils.pathExists
- Replace zkClient.delete* method with an equivalent zkUtils method
- Idempotent producer should not require
  max.in.flight.requests.per.connection=1
- introduce async ZookeeperClient
- Check exception handling in all streams tests
- Autogenerate Producer sender metrics
- Provide a simple way for custom storage engines to use streams wrapped
  stores (KIP-182)
- Add new API methods to KTable
- Add new API methods to KGroupedStream
- Add new API methods to KGroupedTable
- Add Topology and deprecate TopologyBuilder
- Add StreamsBuilder and deprecate KStreamBuilder
- Refactor KeyValueStore hierarchy so that MeteredKeyValueStore is the
  outermost store
- Refactor WindowStore hierarchy so that Metered Store is the outermost
  store
- Add the archetype project along with "write applications" web docs.
- Refactor SessionStore hierarchy
- Add the Trogdor fault injection daemon
- Add ducktape integration for the Trogdor Fault injection daemon
- Tighten up situations where OutOfOrderSequence may be returned
- Fix transient unit test failure in trogdor coordinator shutdown
- Add Printed class and KStream#print(Printed)
- Add Produced class and new to and through overloads to KStream
- Add Serialized class and KStream groupBy and groupByKey overloads
- Add Joined class and relevant KStream join overloads
- Update Docs
- Add Consumed class and overloads to StreamBuilder
- Upgrade Guide doc changes for KIP-130
- Add groupBy(KeyValueMapper, Serialized) to KTable
- Add filter, filterNot, mapValues and Materialized to KTable
- Add WindowedKStream interface and implemenation
- Add Materialized overloads to StreamBuilder
- Transactions system test should check for message order
- Create Connect metrics for connectors
- Create Connect metrics common to source and sink tasks
- Create Connect metrics for source tasks
- Create Connect metrics for sink tasks
- Create Connect metrics for workers
- Create Connect metrics for worker rebalances
- Add `hasOffset` and `hasTimestamp` methods to RecordMetadata to
  indicate whether metadata is available
- Add Materialized overloads to WindowedKStream
- Add SessionWindowedKStream
- Deprecate KTable#to and KTable#through
- Improve ProcessorStateManager exception handling
- User Callback Exceptions need to be handled properly
- Add generated documentation for Connect metrics

(fhajny)

2017-11-01 12:09:01 UTC MAIN commitmail json YAML

doc: Added lang/nodejs8 version 8.9.0

(fhajny)

2017-11-01 12:08:48 UTC MAIN commitmail json YAML

doc: Updated lang/nodejs to 9.0.0

(fhajny)

2017-11-01 12:08:24 UTC MAIN commitmail json YAML

Update lang/nodejs to 9.0.0.

### Notable Changes

- Async hooks: Older experimental APIs have been removed.
- Improvements have been made to `buffer` module error messages.
- Child Processes: Errors are emitted on process nextTick.
- Domains: The long-deprecated `.dispose()` method has been removed.
- fs
  - The `fs.ReadStream` and `fs.WriteStream` classes now use `destroy()`.
  - `fs` module callbacks are now invoked with an undefined context.
- HTTP/1
  - A 400 Bad Request response will now be sent when parsing fails.
  - Socket timeout will be set when the socket connects.
  - A bug causing the request `'error'` event to fire twice was fixed
  - HTTP clients may now use generic `Duplex` streams in addition
    to `net.Socket`.
- Intl
  - The deprecated `Intl.v8BreakIterator` has been removed.
- OS
  - The `os.EOL` property is now read-only
- Timers
  - `setTimeout()` will emit a warning if the timeout is larger that
    the maximum 32-bit unsigned integer.

(fhajny)

2017-11-01 12:07:31 UTC MAIN commitmail json YAML

Import nodejs-8.9.0 (LTS) as lang/nodejs8.

Changes since nodejs 8.8.1:

- doc: add Gibson Fahnestock to Release team
- deps: update npm to 5.5.1
- http2: The exposed http2 socket is no longer manipulatable
- module: support custom paths to require.resolve()
- util: util.TextEncoder and util.TextDecoder are no longer experimental.
  There will no longer be a warning when they are used

(fhajny)

2017-11-01 09:26:17 UTC MAIN commitmail json YAML

doc: Updated x11/ocaml-lablgtk to 2.18.6

(jaapb)

2017-11-01 09:25:36 UTC MAIN commitmail json YAML

Updated package x11/ocaml-lablgtk to version 2.18.6.

This release adds support for OCaml 4.06.

(jaapb)

2017-11-01 08:23:42 UTC MAIN commitmail json YAML

py-augeas: use pypi instead of deprecated fedorahosted

(wiz)

2017-11-01 06:44:49 UTC MAIN commitmail json YAML

cmake-fedora: switch to pagure

MASTER_SITES left commented out, as it doesn't hold older versions.
Once this package is updated it can be uncommented.

(maya)

2017-11-01 06:41:23 UTC MAIN commitmail json YAML

xmlto: master sites / homepage from fedorahosted to pagure

(maya)

2017-11-01 05:27:44 UTC MAIN commitmail json YAML

imapsync: switch homepage/master sites fedorahosted -> pagure

(maya)

2017-11-01 05:19:33 UTC MAIN commitmail json YAML

lohit-fonts: replace fedorahosted with pagure

(maya)

2017-11-01 05:17:06 UTC MAIN commitmail json YAML

liberation-ttf: add non-fedorahosted MASTER_SITES

(maya)

2017-10-31 18:52:44 UTC pkgsrc-2017Q3 commitmail json YAML

Pullup ticket #5593 - requested by sevan
lang/nodejs4: security update

Revisions pulled up:
- lang/nodejs4/Makefile                                        1.35
- lang/nodejs4/distinfo                                        1.30

-------------------------------------------------------------------
  Module Name:    pkgsrc
  Committed By:  fhajny
  Date:          Wed Oct 25 13:56:01 UTC 2017

  Modified Files:
          pkgsrc/lang/nodejs4: Makefile distinfo

  Log Message:
  Update lang/nodejs4 to 4.8.5.

  zlib:
  - CVE-2017-14919 - In zlib v1.2.9, a change was made that causes an
    error to be raised when a raw deflate stream is initialized with
    windowBits set to 8. On some versions this crashes Node and you cannot
    recover from it, while on some versions it throws an exception.
    Node.js will now gracefully set windowBits to 9 replicating the legacy
    behavior to avoid a DOS vector.

  To generate a diff of this commit:
  cvs rdiff -u -r1.34 -r1.35 pkgsrc/lang/nodejs4/Makefile
  cvs rdiff -u -r1.29 -r1.30 pkgsrc/lang/nodejs4/distinfo

(spz)

2017-10-31 18:13:26 UTC pkgsrc-2017Q3 commitmail json YAML

Pullup ticket #5613 - requested by taca
lang/php56: security update

Revisions pulled up:
- lang/php56/Makefile                                          1.15
- lang/php56/distinfo                                          1.43
- lang/php/phpversion.mk                                        patch

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: taca
  Date: Fri Oct 27 08:45:06 UTC 2017

  Modified Files:
  pkgsrc/lang/php: phpversion.mk
  pkgsrc/lang/php56: Makefile distinfo

  Log Message:
  lang/php56: Update to 5.6.32

  * pkgsrc change: remove post-extract which is not required any more.
  * including securiy fixes.

  26 Sep 2017, PHP 5.6.32

  - Date:
    . Fixed bug #75055 (Out-Of-Bounds Read in timelib_meridian()). (Derick)

  - mcrypt:
    . Fixed bug #72535 (arcfour encryption stream filter crashes php). (Leigh)

  - PCRE:
    . Fixed bug #75207 (applied upstream patch for CVE-2016-1283). (Anatol)

  To generate a diff of this commit:
  cvs rdiff -u -r1.14 -r1.15 pkgsrc/lang/php56/Makefile
  cvs rdiff -u -r1.42 -r1.43 pkgsrc/lang/php56/distinfo

(spz)

2017-10-31 18:12:24 UTC pkgsrc-2017Q3 commitmail json YAML

Pullup ticket #5612 - requested by taca
lang/php71: security update

Revisions pulled up:
- lang/php71/Makefile                                          1.13
- lang/php71/Makefile.common                                    1.2
- lang/php71/distinfo                                          1.28-1.29
- lang/php/phpversion.mk                                        patch

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: taca
  Date: Sun Oct  1 15:50:06 UTC 2017

  Modified Files:
  pkgsrc/lang/php: phpversion.mk
  pkgsrc/lang/php71: distinfo

  Log Message:
  lang/php71: update to 7.1.10

  28 Sep 2017, PHP 7.1.10

  - Core:
    . Fixed bug #75042 (run-tests.php issues with EXTENSION block). (John Boehr)

  - BCMath:
    . Fixed bug #44995 (bcpowmod() fails if scale != 0). (cmb)
    . Fixed bug #46781 (BC math handles minus zero incorrectly). (cmb)
    . Fixed bug #54598 (bcpowmod() may return 1 if modulus is 1). (okano1220, cmb)
    . Fixed bug #75178 (bcpowmod() misbehaves for non-integer base or modulus). (cmb)

  - CLI server:
    . Fixed bug #70470 (Built-in server truncates headers spanning over TCP
      packets). (bouk)

  - CURL:
    . Fixed bug #75093 (OpenSSL support not detected). (Remi)

  - GD:
    . Fixed bug #75124 (gdImageGrayScale() may produce colors). (cmb)
    . Fixed bug #75139 (libgd/gd_interpolation.c:1786: suspicious if ?). (cmb)

  - Gettext:
    . Fixed bug #73730 (textdomain(null) throws in strict mode). (cmb)

  - Intl:
    . Fixed bug #75090 (IntlGregorianCalendar doesn't have constants from parent
      class). (tpunt)
    . Fixed bug #75193 (segfault in collator_convert_object_to_string). (Remi)

  - PDO_OCI:
    . Fixed bug #74631 (PDO_PCO with PHP-FPM: OCI environment initialized
      before PHP-FPM sets it up). (Ingmar Runge)

  - SPL:
    . Fixed bug #75155 (AppendIterator::append() is broken when appending another
      AppendIterator). (Nikita)
    . Fixed bug #75173 (incorrect behavior of AppendIterator::append in foreach loop).
      (jhdxr)

  - Standard:
    . Fixed bug #75152 (signed integer overflow in parse_iv). (Laruence)
    . Fixed bug #75097 (gethostname fails if your host name is 64 chars long). (Andrea)

  To generate a diff of this commit:
  cvs rdiff -u -r1.27 -r1.28 pkgsrc/lang/php71/distinfo

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: jdolecek
  Date: Mon Oct  9 21:43:30 UTC 2017

  Modified Files:
  pkgsrc/lang/php71: Makefile.common

  Log Message:
  seems we actually don't need the EXTRACT_USING=gtar, apparently
  it's been carried over from php 5.x times

  To generate a diff of this commit:
  cvs rdiff -u -r1.1 -r1.2 pkgsrc/lang/php71/Makefile.common

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: taca
  Date: Fri Oct 27 08:47:49 UTC 2017

  Modified Files:
  pkgsrc/lang/php: phpversion.mk
  pkgsrc/lang/php71: Makefile distinfo

  Log Message:
  lang/php71: Update to 7.1.11

  * pkgsrc change: remove post-extract which is not required any more.
  * including securiy fixes.

  26 Oct 2017, PHP 7.1.11

  - Core:
    . Fixed bug #75241 (Null pointer dereference in zend_mm_alloc_small()).
      (Laruence)
    . Fixed bug #75236 (infinite loop when printing an error-message). (Andrea)
    . Fixed bug #75252 (Incorrect token formatting on two parse errors in one
      request). (Nikita)
    . Fixed bug #75220 (Segfault when calling is_callable on parent).
      (andrewnester)
    . Fixed bug #75290 (debug info of Closures of internal functions contain
      garbage argument names). (Andrea)

  - Date:
    . Fixed bug #75055 (Out-Of-Bounds Read in timelib_meridian()). (Derick)

  - Apache2Handler:
    . Fixed bug #75311 (error: 'zend_hash_key' has no member named 'arKey' in
      apache2handler). (mcarbonneaux)

  - Hash:
    . Fixed bug #75303 (sha3 hangs on bigendian). (Remi)

  - Intl:
    . Fixed bug #75318 (The parameter of UConverter::getAliases() is not
      optional). (cmb)

  - litespeed:
    . Fixed bug #75248 (Binary directory doesn't get created when building
      only litespeed SAPI). (petk)
    . Fixed bug #75251 (Missing program prefix and suffix). (petk)

  - mcrypt:
    . Fixed bug #72535 (arcfour encryption stream filter crashes php). (Leigh)

  - MySQLi:
    . Fixed bug #75018 (Data corruption when reading fields of bit type). (Anatol)

  - OCI8:
    . Fixed incorrect reference counting. (Dmitry, Tianfang Yang)

  - Opcache
    . Fixed bug #75255 (Request hangs and not finish). (Dmitry)

  - PCRE:
    . Fixed bug #75207 (applied upstream patch for CVE-2016-1283). (Anatol)

  - PDO_mysql:
    . Fixed bug #75177 (Type 'bit' is fetched as unexpected string). (Anatol)

  - SPL:
    . Fixed bug #73629 (SplDoublyLinkedList::setIteratorMode masks intern flags).
      (J. Jeising, cmb)

  To generate a diff of this commit:
  cvs rdiff -u -r1.12 -r1.13 pkgsrc/lang/php71/Makefile
  cvs rdiff -u -r1.28 -r1.29 pkgsrc/lang/php71/distinfo

(spz)

2017-10-31 18:12:03 UTC pkgsrc-2017Q3 commitmail json YAML

Pullup ticket #5611 - requested by taca
lang/php70: security update

Revisions pulled up:
- lang/php70/Makefile                                          1.10
- lang/php70/distinfo                                          1.38-1.39
- lang/php/phpversion.mk                                        patch

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: taca
  Date: Sun Oct  1 15:48:17 UTC 2017

  Modified Files:
  pkgsrc/lang/php: phpversion.mk
  pkgsrc/lang/php70: distinfo

  Log Message:
  lang/php70: update to 7.0.24.

  28 Sep 2017 PHP 7.0.24

  - Core:
    . Fixed bug #75042 (run-tests.php issues with EXTENSION block). (John Boehr)

  - BCMath:
    . Fixed bug #44995 (bcpowmod() fails if scale != 0). (cmb)
    . Fixed bug #46781 (BC math handles minus zero incorrectly). (cmb)
    . Fixed bug #54598 (bcpowmod() may return 1 if modulus is 1). (okano1220, cmb)
    . Fixed bug #75178 (bcpowmod() misbehaves for non-integer base or modulus). (cmb)

  - CLI server:
    . Fixed bug #70470 (Built-in server truncates headers spanning over TCP
      packets). (bouk)

  - CURL:
    . Fixed bug #75093 (OpenSSL support not detected). (Remi)

  - GD:
    . Fixed bug #75124 (gdImageGrayScale() may produce colors). (cmb)
    . Fixed bug #75139 (libgd/gd_interpolation.c:1786: suspicious if ?). (cmb)

  - Gettext:
    . Fixed bug #73730 (textdomain(null) throws in strict mode). (cmb)

  - Intl:
    . Fixed bug #75090 (IntlGregorianCalendar doesn't have constants from parent
      class). (tpunt)
    .�Fixed�bug�#75193�(segfault�in�collator_convert_object_to_string).�(Remi)

  - PDO_OCI:
    . Fixed bug #74631 (PDO_PCO with PHP-FPM: OCI environment initialized
      before PHP-FPM sets it up). (Ingmar Runge)

  - SPL:
    . Fixed bug #75173 (incorrect behavior of AppendIterator::append in foreach loop).
      (jhdxr)

  - Standard:
    . Fixed bug #75097 (gethostname fails if your host name is 64 chars long). (Andrea)

  To generate a diff of this commit:
  cvs rdiff -u -r1.37 -r1.38 pkgsrc/lang/php70/distinfo

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: taca
  Date: Fri Oct 27 08:46:49 UTC 2017

  Modified Files:
  pkgsrc/lang/php: phpversion.mk
  pkgsrc/lang/php70: Makefile distinfo

  Log Message:
  lang/php70: Update to 7.0.25

  * pkgsrc change: remove post-extract which is not required any more.
  * including securiy fixes.

  26 Oct 2017 PHP 7.0.25

  - Core:
    . Fixed bug #75241 (Null pointer dereference in zend_mm_alloc_small()).
      (Laruence)
    . Fixed bug #75236 (infinite loop when printing an error-message). (Andrea)
    . Fixed bug #75252 (Incorrect token formatting on two parse errors in one
      request). (Nikita)
    . Fixed bug #75220 (Segfault when calling is_callable on parent).
      (andrewnester)
    . Fixed bug #75290 (debug info of Closures of internal functions contain
      garbage argument names). (Andrea)

  - Apache2Handler:
    . Fixed bug #75311 (error: 'zend_hash_key' has no member named 'arKey' in
      apache2handler). (mcarbonneaux)

  - Date:
    . Fixed bug #75055 (Out-Of-Bounds Read in timelib_meridian()). (Derick)

  - Intl:
    . Fixed bug #75318 (The parameter of UConverter::getAliases() is not
      optional). (cmb)

  - mcrypt:
    . Fixed bug #72535 (arcfour encryption stream filter crashes php). (Leigh)

  - OCI8:
    . Fixed incorrect reference counting. (Dmitry, Tianfang Yang)

  - PCRE:
    . Fixed bug #75207 (applied upstream patch for CVE-2016-1283). (Anatol)

  - litespeed:
    . Fixed bug #75248 (Binary directory doesn't get created when building
      only litespeed SAPI). (petk)
    . Fixed bug #75251 (Missing program prefix and suffix). (petk)

  - SPL:
    . Fixed bug #73629 (SplDoublyLinkedList::setIteratorMode masks intern flags).
      (J. Jeising, cmb)

  To generate a diff of this commit:
  cvs rdiff -u -r1.9 -r1.10 pkgsrc/lang/php70/Makefile
  cvs rdiff -u -r1.38 -r1.39 pkgsrc/lang/php70/distinfo

(spz)

2017-10-31 17:01:38 UTC pkgsrc-2017Q3 commitmail json YAML

Pullup ticket #5610 - requested by taca
devel/ruby-redmine: build fix
meta-pkgs/ruby-redmine-plugins: build fix
meta-pkgs/ruby-redmine-themes: build fix

Revisions pulled up:
- devel/ruby-redmine/Makefile                                  1.24
- meta-pkgs/ruby-redmine-plugins/Makefile                      1.5
- meta-pkgs/ruby-redmine-plugins/Makefile.common                1.3
- meta-pkgs/ruby-redmine-themes/Makefile                        1.6
- meta-pkgs/ruby-redmine-themes/Makefile.common                1.4

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: taca
  Date: Fri Sep 29 13:13:26 UTC 2017

  Modified Files:
  pkgsrc/devel/ruby-redmine: Makefile

  Log Message:
  devel/ruby-redmine: Fix usage ofRUBY_VERSIONS_ACCEPTED

  Define RUBY_VERSIONS_ACCEPTED before including rubyversion.mk.
  Should be fix pbulk problem.

  To generate a diff of this commit:
  cvs rdiff -u -r1.23 -r1.24 pkgsrc/devel/ruby-redmine/Makefile

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: taca
  Date: Sat Sep 30 15:48:42 UTC 2017

  Modified Files:
  pkgsrc/meta-pkgs/ruby-redmine-plugins: Makefile Makefile.common
  pkgsrc/meta-pkgs/ruby-redmine-themes: Makefile Makefile.common

  Log Message:
  meta-pkgs/ruby-redmine-*: Restrict ruby's version

  Restrict ruby-redmine depending pacakges to ruby22 only.

  To generate a diff of this commit:
  cvs rdiff -u -r1.4 -r1.5 pkgsrc/meta-pkgs/ruby-redmine-plugins/Makefile
  cvs rdiff -u -r1.2 -r1.3 \
      pkgsrc/meta-pkgs/ruby-redmine-plugins/Makefile.common
  cvs rdiff -u -r1.5 -r1.6 pkgsrc/meta-pkgs/ruby-redmine-themes/Makefile
  cvs rdiff -u -r1.3 -r1.4 pkgsrc/meta-pkgs/ruby-redmine-themes/Makefile.common

(spz)

2017-10-31 16:24:42 UTC MAIN commitmail json YAML

Improved index generation for "make help".

The index is sorted alphabetically and mentioned in a plain "make help"
call.

(rillig)

2017-10-31 16:22:47 UTC pkgsrc-2017Q3 commitmail json YAML

Pullup ticket #5604 - requested by sevan
net/nmap: build fix for nmap with Lua option

Revisions pulled up:
- net/nmap/Makefile                                            1.137
- net/nmap/options.mk                                          1.19

-------------------------------------------------------------------
  Module Name:    pkgsrc
  Committed By:  leot
  Date:          Thu Oct 19 21:43:25 UTC 2017

  Modified Files:
          pkgsrc/net/nmap: Makefile options.mk

  Log Message:
  nmap: set LUA_VERSIONS_ACCEPTED to avoid using internal Lua provided by nmap

  Without that change the nmap configure script checks for `lua_isyield'
  symbol (appeared on Lua 5.3), and for LUA_VERSION_DEFAULT != 53
  (pkgsrc by default set LUA_VERSION_DEFAULT to 52) it will just
  silently use its internal version.

  Set LUA_VERSIONS_ACCEPTED to 53 to avoid that.

  Fix PR pkg/52624 reported by Patrick Mackey.

  Bump PKGREVISION.

  To generate a diff of this commit:
  cvs rdiff -u -r1.136 -r1.137 pkgsrc/net/nmap/Makefile
  cvs rdiff -u -r1.18 -r1.19 pkgsrc/net/nmap/options.mk

(spz)

2017-10-31 15:54:57 UTC MAIN commitmail json YAML

doc: Updated databases/ruby-tiny_tds to 2.1.0

(taca)

2017-10-31 15:54:39 UTC MAIN commitmail json YAML

databases/ruby-tiny_tds: update to 2.1.0

## 2.1.0

* Support RubyInstaller2 for Windows. Fixes #365.
* Support the FREETDS_DIR environment variable. Fixes #371.
* Rename binstubs to tsql-ttds and defncopy-ttds
* Support separate timeout values per connection Fixes #348.
* Allow client proc to capture INFO messages. Fixes #352.
* Use official HTTP mirrors instead of FTP. Fixes #384.

(taca)

2017-10-31 15:53:48 UTC pkgsrc-2017Q3 commitmail json YAML

Pullup ticket #5599 - requested by sevan
bootstrap/bootstrap: build fix

Revisions pulled up:
- bootstrap/bootstrap                                          1.244

-------------------------------------------------------------------
  Module Name:    pkgsrc
  Committed By:  bsiegert
  Date:          Sun Oct 22 19:29:20 UTC 2017

  Modified Files:
          pkgsrc/bootstrap: bootstrap

  Log Message:
  Set cwrappers in bootstrap mk.conf too.

  When bootstrap is run with --cwrappers=no (or yes, for that matter),
  the value is written into mk.conf at the end of the bootstrap but not
  used _during_ the bootstrap itself. Thus, when bootstrapping on Linux
  with no builtin diffutils, cwrappers ends up indirectly depending on
  itself, and there is no way around that. This commit fixes this.

  To generate a diff of this commit:
  cvs rdiff -u -r1.243 -r1.244 pkgsrc/bootstrap/bootstrap

(spz)

2017-10-31 15:53:47 UTC MAIN commitmail json YAML

doc: Updated databases/ruby-sequel to 5.2.0

(taca)

2017-10-31 15:53:05 UTC MAIN commitmail json YAML

databases/ruby-sequel: update to 5.2.0

=== 5.2.0 (2017-10-27)

* Fix type conversion for smallint unsigned and integer unsigned types on
  jdbc/mysql (jeremyevans) (#1443)

* Add pg_extended_date_support extension, for handling infinite and BC
  dates/timestamps (jeremyevans)

* Do not ignore existing @dataset instance variable when subclassing
  Sequel::Model (bjmllr) (#1435)

=== 5.1.0 (2017-10-01)

* Make jdbc/h2 and jdbc/hsqldb adapters respect :foreign_key_constraint_name
  option when adding new foreign key column (jeremyevans)

* Do not issue unnecessary query for macaddr type oid when loading the pg_inet
  extension (jeltz) (#1423)

* Make alter_table add_foreign_key with a column symbol reversible when using
  the :foreign_key_constraint_name option (jeremyevans) (#1422)

* Do not raise an error if calling Model.freeze on a frozen model
  (jeremyevans) (#1421)

* Make Database#copy_into in the jdbc/postgresql adapter handle multi-byte
  strings (ckoenig) (#1416)

* Remove deprecated Model use_after_commit_rollback class and instance methods
  (jeremyevans)

* Remove deprecated Model.allowed_columns method in the base model support
  (jeremyevans)

* Remove deprecated Model.plugin_module_defined? private method (jeremyevans)

* Remove deprecated support for Model#_before_validation private method
  (jeremyevans)

(taca)

2017-10-31 15:51:48 UTC MAIN commitmail json YAML

doc: Updated databases/ruby-hiera to 3.4.2

(taca)

2017-10-31 15:51:29 UTC MAIN commitmail json YAML

databases/ruby-hiera: update to 3.4.2

* Reference actual config version in error message.

(taca)

2017-10-31 15:48:14 UTC MAIN commitmail json YAML

doc: Updated time/ruby-tzinfo-data to 1.2017.3

(taca)

2017-10-31 15:47:50 UTC MAIN commitmail json YAML

2017-10-31 15:46:56 UTC MAIN commitmail json YAML

doc: Updated time/ruby-tzinfo to 1.2.4

(taca)

2017-10-31 15:46:33 UTC MAIN commitmail json YAML

time/ruby-tzinfo: Update to 1.2.4

* Ignore the leapseconds file that is included in zoneinfo directories
  installed with version 2017c and later of the Time Zone Database.

(taca)

2017-10-31 14:34:23 UTC pkgsrc-2017Q3 commitmail json YAML

Pullup ticket #5601 - requested by sevan
audio/lame: security update

Revisions pulled up:
- audio/lame/Makefile                                          1.80
- audio/lame/distinfo                                          1.29
- audio/lame/patches/patch-ab                                  1.11
- audio/lame/patches/patch-configure                            deleted
- audio/lame/patches/patch-configure.in                        deleted
- audio/lame/patches/patch-frontend_get__audio.c                deleted
- audio/lame/patches/patch-libmp3lame_lame.c                    deleted
- audio/lame/patches/patch-libmp3lame_util.c                    deleted

-------------------------------------------------------------------
  Module Name:    pkgsrc
  Committed By:  wiz
  Date:          Sat Oct 21 22:51:00 UTC 2017

  Modified Files:
          pkgsrc/audio/lame: Makefile distinfo
          pkgsrc/audio/lame/patches: patch-ab
  Removed Files:
          pkgsrc/audio/lame/patches: patch-configure patch-configure.in
              patch-frontend_get__audio.c patch-libmp3lame_lame.c
              patch-libmp3lame_util.c

  Log Message:
  lame: update to 3.100.

  Many bug fixes and security fixes.

  To generate a diff of this commit:
  cvs rdiff -u -r1.79 -r1.80 pkgsrc/audio/lame/Makefile
  cvs rdiff -u -r1.28 -r1.29 pkgsrc/audio/lame/distinfo
  cvs rdiff -u -r1.10 -r1.11 pkgsrc/audio/lame/patches/patch-ab
  cvs rdiff -u -r1.3 -r0 pkgsrc/audio/lame/patches/patch-configure
  cvs rdiff -u -r1.1 -r0 pkgsrc/audio/lame/patches/patch-configure.in \
      pkgsrc/audio/lame/patches/patch-frontend_get__audio.c \
      pkgsrc/audio/lame/patches/patch-libmp3lame_lame.c \
      pkgsrc/audio/lame/patches/patch-libmp3lame_util.c

(spz)

2017-10-31 14:33:33 UTC MAIN commitmail json YAML

doc: Updated www/apache-tomcat8 to 8.0.47

(fhajny)

2017-10-31 14:33:23 UTC MAIN commitmail json YAML

Update www/apache-tomcat8 to 8.0.47.

Notable changes:

- A fix for CVE-2017-12617.
- Add ExtractingRoot, a new WebResourceRoot implementation that extracts
  JARs to the work directory for improved performance when deploying
  packed WAR files.
- Update the packaged version of the Tomcat Native Library to 1.2.14

Full changelog:

  https://tomcat.apache.org/tomcat-8.0-doc/changelog.html

(fhajny)

2017-10-31 14:31:21 UTC MAIN commitmail json YAML

doc: Updated www/apache-tomcat7 to 7.0.82

(fhajny)

2017-10-31 14:31:10 UTC MAIN commitmail json YAML

Update www/apache-tomcat7 to 7.0.82.

Notable changes:

- A fix for CVE-2017-12617.
- Update the packaged version of the Tomcat Native Library to 1.2.14

Full changelog:

  https://tomcat.apache.org/tomcat-7.0-doc/changelog.html

(fhajny)

2017-10-31 13:15:44 UTC MAIN commitmail json YAML

2017-10-31 13:01:36 UTC MAIN commitmail json YAML

Updated devel/py-astor, devel/py-Pyro, devel/py-flake8-import-order

(adam)

2017-10-31 13:00:55 UTC MAIN commitmail json YAML

py-flake8-import-order: updated to 0.14.2

0.14.2:
Bug fix, ensure the plugin is invoked by flake8.

(adam)

2017-10-31 12:53:58 UTC MAIN commitmail json YAML

py-Pyro: updated to 4.63

Pyro 4.63
- fixed bug in autoproxy logic where it registered the wrong type if daemon.register() was called with
  a class instead of an object (internal register_type_replacement method)
- added check in @expose method to validate the order of decorators on a method (@expose should come last,
  after @classmethod or @staticmethod).
- added resource tracking feature (see 'Automatically freeing resources when client connection gets closed' in the Tips & Tricks chapter)
- the warning about a class not exposing anything now actually tells you the correct class

(adam)

2017-10-31 12:51:23 UTC MAIN commitmail json YAML

py-astor: updated to 0.6

0.6:

New features
* New astor.rtrip command-line tool to test round-tripping of Python source to AST and back to source. (Contributed by Patrick Maupin.)
* New pretty printer outputs much better looking code:
  . Remove parentheses where not necessary
  . Use triple-quoted strings where it makes sense
  . Add placeholder for function to do nice line wrapping on output
* Additional Python 3.5 support: - Additional unpacking generalizations (PEP 448)
  .  Async and await (PEP 492)
* Added Python 3.6 feature support:
  . f-strings (PEP 498)
  . async comprehensions (PEP 530)
  . variable annotations (PEP 526)
* Code cleanup, including renaming for PEP8 and deprecation of old names. See :ref:`deprecations` for more information.

Bug fixes
* Don't put trailing comma-spaces in dictionaries. astor will now create {'three': 3} instead of {'three': 3, }.
* Fixed several bugs in code generation.

(adam)

2017-10-31 10:18:43 UTC MAIN commitmail json YAML

nginx: Fix patch-auto_lib_pcre_conf checksum.

(jperkin)

2017-10-31 09:22:22 UTC MAIN commitmail json YAML

2017-10-31 09:08:27 UTC MAIN commitmail json YAML

py-libxml2: Update checksum.

(jperkin)

2017-10-31 08:29:15 UTC MAIN commitmail json YAML

Updated security/py-ntlm-auth, security/py-requests-ntlm

(adam)

2017-10-31 08:27:55 UTC MAIN commitmail json YAML

py-requests-ntlm: updated to 1.1.0

1.1.0:
Correct behaviour when parsing a UPN passed in as the username
Enhanced the CBT hashes when using a certificate that has a hash algorithm that is greater than sha256

(adam)

2017-10-31 08:27:03 UTC MAIN commitmail json YAML

py-ntlm-auth: updated to 1.0.6

Changes 1.0.6:
* More changes to packaging to better handle copyright and licensing

(adam)

2017-10-31 08:12:11 UTC MAIN commitmail json YAML

2017-10-31 07:44:17 UTC MAIN commitmail json YAML

Updated www/p5-HTML-Mason to 1.58

(wen)

2017-10-31 07:43:13 UTC MAIN commitmail json YAML

Update to 1.58

Upstream changes:
1.58    2017-10-29

    - Redid the release because of some dzil issues. 1.57 might be a little
      wonky.

1.57    2017-10-29

    [ BUG FIXES ]

    - Fix test failures under 5.26.0+ due to "." no longer being in @INC. PR
      By Kent Fredric. GH #6. Fixed RT #121443.

(wen)

2017-10-31 07:40:25 UTC MAIN commitmail json YAML

Updated textproc/p5-XML-LibXML to 2.0132

(wen)

2017-10-31 07:37:30 UTC MAIN commitmail json YAML

Update to 2.0132

Upstream changes:
2.0132  2017-10-28
    - Revert setNamespace() enhancements that broke some dependent tests:
        - commit df9fdc6659cb2e4e9bc896e58c02dfd79b430fbb
        - add t/48_rt123379_setNamespace.t .
        - Thanks to Alexander Bluhm and Slaven Rezic for the reports and
        the test.

2.0131  2017-10-24
    - Re-include the missing *.pod documents.
        - https://rt.cpan.org/Ticket/Display.html?id=123362
        - Thanks to Stephen for the report.
        - Add t/pod-files-presence.t to test for it in the future.
    - Merge https://github.com/shlomif/perl-XML-LibXML/pull/8
        - Fix bug in Node::replaceChild()
        - Thanks to @Mipu94 .

(wen)

2017-10-30 18:38:30 UTC MAIN commitmail json YAML

Updated time/py-pytz, databases/sqlite3, devel/py-dulwich

(adam)

2017-10-30 18:37:38 UTC MAIN commitmail json YAML

py-dulwich: updated to 0.18.5

0.18.5:
BUG FIXES
* Fix cwd for hooks.
* Fix setting of origin in config when non-standard origin is passed into
  ``Repo.clone``.
* Prevent setting SSH arguments from SSH URLs when using SSH through a
  subprocess. Note that Dulwich doesn't support cloning submodules.
  (CVE 2017-1000117)

IMPROVEMENTS
* Silently ignored directories in ``Repo.stage``.

API CHANGES
* GitFile now raises ``FileLocked`` when encountering a lock
  rather than OSError(EEXIST).

(adam)

2017-10-30 18:36:13 UTC MAIN commitmail json YAML

sqlite3: updated to 3.21.0

Release 3.21.0:

Take advantage of the atomic-write capabilities in the F2FS filesystem when available, for greatly reduced transaction overhead. This currently requires the SQLITE_ENABLE_BATCH_ATOMIC_WRITE compile-time option.
Allow ATTACH and DETACH commands to work inside of a transaction.
Allow WITHOUT ROWID virtual tables to be writable if the PRIMARY KEY contains exactly one column.
The "fsync()" that occurs after the header is written in a WAL reset now uses the sync settings for checkpoints. This means it will use a "fullfsync" on macs if PRAGMA checkpoint_fullfsync set on.
The sqlite3_sourceid() function tries to detect if the source code has been modified from what is checked into version control and if there are modifications, the last four characters of the version hash are shown as "alt1" or "alt2". The objective is to detect accidental and/or careless edits. A forger can subvert this feature.
Improved de-quoting of column names for CREATE TABLE AS statements with an aggregate query on the right-hand side.
Fewer "stat()" system calls issued by the unix VFS.
Enhanced the LIKE optimization so that it works with an ESCAPE clause.
Enhanced PRAGMA integrity_check and PRAGMA quick_check to detect obscure row corruption that they were formerly missing. Also update both pragmas so that they return error text rather than SQLITE_CORRUPT when encountering corruption in records.
The query planner now prefers to implement FROM-clause subqueries using co-routines rather using the query flattener optimization. Support for the use of co-routines for subqueries may no longer be disabled.
Pass information about !=, IS, IS NOT, NOT NULL, and IS NULL constraints into the xBestIndex method of virtual tables.
Enhanced the CSV virtual table so that it accepts the last row of input if the final new-line character is missing.
Remove the rarely-used "scratch" memory allocator. Replace it with the SQLITE_CONFIG_SMALL_MALLOC configuration setting that gives SQLite a hint that large memory allocations should be avoided when possible.
Added the swarm virtual table to the existing union virtual table extension.
Added the sqlite_dbpage virtual table for providing direct access to pages of the database file. The source code is built into the amalgamation and is activated using the -DSQLITE_ENABLE_DBPAGE_VTAB compile-time option.
Add a new type of fts5vocab virtual table - "instance" - that provides direct access to an FTS5 full-text index at the lowest possible level.
Remove a call to rand_s() in the Windows VFS since it was causing problems in Firefox on some older laptops.
The src/shell.c source code to the command-line shell is no longer under version control. That file is now generated as part of the build process.
Miscellaneous microoptimizations reduce CPU usage by about 2.1%.
Bug fixes

(adam)

2017-10-30 18:31:28 UTC MAIN commitmail json YAML

py-pytz: updated to 2017.3

2017.3:
This release contains rare code changes, allowing use of an environment variable to override the database location, and ability to load pickles stored with Python2 to be loaded under Python3.

(adam)

2017-10-30 18:25:20 UTC MAIN commitmail json YAML

Added security/py-asyncssh; Updated fonts/py-fonttools

(adam)

2017-10-30 18:24:50 UTC MAIN commitmail json YAML

py-fonttools: updated to 3.18.0

3.18.0 (released 2017-10-30)
[feaLib] Fixed writing back nested glyph classes.
[TupleVariation] Reactivated shared points logic, bugfixes.
[AAT] Implemented morx ligature subtables.
[reverseContourPen] Keep duplicate lineTo following a moveTo.
[varLib.mutator] Suport instantiation of GPOS, GDEF and MVAR.
[sstruct] Fixed issue with unicode_literals and struct module in old versions of python 2.7

(adam)

2017-10-30 18:21:20 UTC MAIN commitmail json YAML

py-asyncssh: added version 1.11.0

AsyncSSH is a Python package which provides an asynchronous client and server
implementation of the SSHv2 protocol on top of the Python 3.4+ asyncio
framework.

(adam)

2017-10-30 18:17:13 UTC MAIN commitmail json YAML

py-gssapi: enable all Python versions; fixed PLIST for different KRB5_TYPE

(adam)

2017-10-30 16:09:00 UTC MAIN commitmail json YAML

doc/TODO: - objfw-0.90.2, done

(wiz)

2017-10-30 16:05:40 UTC MAIN commitmail json YAML

doc/TODO: add some

+ calibre-3.10.0, gdbus-codegen-2.54.2, glib-networking-2.54.1,
  glib2-2.54.2, harfbuzz-1.6.3, libsoup-2.60.2, objfw-0.90.2
  [pkg/52645], pango-1.40.13, physfs-3.0.1, py-gobject3-3.26.1,
  py-gobject3-common-3.26.1, py-test-httpbin-0.3.0, vim-8.0.1236,
  vim-share-8.0.1236, waf-2.0.2, webkit-gtk-2.18.2, x264-devel-20171028.

(wiz)

2017-10-30 15:33:54 UTC MAIN commitmail json YAML

doc: Updated net/gst-rtsp-server to 1.12.3

(prlw1)

2017-10-30 15:33:36 UTC MAIN commitmail json YAML

Update gst-rtsp-server to 1.12.3

## GStreamer RTSP server

- The RTSP server now also supports Digest authentication in addition to Basic
  authentication.
- The `GstRTSPClient` class has gained a `pre-*-request` signal and virtual
  method for each client request type, emitted in the beginning of each rtsp
  request. These signals or virtual methods let the application validate the
  requests, configure the media/stream in a certain way and also generate error
  status codes in case of an error or a bad request.

(prlw1)

2017-10-30 15:08:24 UTC MAIN commitmail json YAML

doc: Updated graphics/ImageMagick6 to 6.9.9.20

(fhajny)

2017-10-30 15:08:13 UTC MAIN commitmail json YAML

Update graphics/ImageMagick6 to 6.9.9.20.

6.9.9.20
- Return expected results for a percent 0 -chop option argument
- Tweaks to OpenMP support within ImageMagick.

6.9.9.19
- Correct handling of GIF transparency

6.9.9.18
- Resetting the magick_list_initialized boolean when needed

6.9.9.17
- Fix broken build

6.9.9.16
- Fixed numerous memory leaks
- Support URW-base35 fonts.

6.9.9.15
- Fixed numerous memory leaks

6.9.9.14
- Fixed numerous memory leaks
- Stop poential leaks in the JNG decoder
- Maximum valid hour is 23, not 24, in the PNG tIME chunk, and maximum
  valid minute is 59, not 60.

6.9.9.13
- Use signed integer arithmetic to calculate timezone corrections

(fhajny)

2017-10-30 14:54:48 UTC MAIN commitmail json YAML

doc: Updated graphics/ImageMagick to 7.0.7.8

(fhajny)

2017-10-30 14:54:37 UTC MAIN commitmail json YAML

Update graphics/ImageMagick to 7.0.7.8

- Return expected results for a percent 0 -chop option argument
- Tweaks to OpenMP support within ImageMagick.

(fhajny)

2017-10-30 14:44:05 UTC MAIN commitmail json YAML

graphics/ImageMagick*: Replace (optional) dependency on jasper, removed
by upstream in as early as 6.8, and replace with openjpeg - for the
purposes of JPEG 2000 (JP2) support. Bump PKGREVISION.

(fhajny)

2017-10-30 14:02:13 UTC MAIN commitmail json YAML

doc: Updated textproc/libxml2 to 2.9.6

(fhajny)

2017-10-30 14:02:03 UTC MAIN commitmail json YAML

Update textproc/libxml2 to 2.9.6.

Update Portability:
- Change preprocessor OS tests to __linux__

Bug Fixes:
- Fix XPath stack frame logic
- Report undefined XPath variable error message
- Fix regression with librsvg
- Handle more invalid entity values in recovery mode
- Fix structured validation errors
- Fix memory leak in LZMA decompressor
- Set memory limit for LZMA decompression
- Handle illegal entity values in recovery mode
- Fix debug dump of streaming XPath expressions
- Fix memory leak in nanoftp
- Fix memory leaks in SAX1 parser

(fhajny)

2017-10-30 12:04:00 UTC MAIN commitmail json YAML

doc: Updated pkgtools/pkg_install to 20171030

(jperkin)

2017-10-30 12:03:50 UTC MAIN commitmail json YAML

pkg_install: Bump version to 20171030 for netpgpverify fixes.

(jperkin)

2017-10-30 11:49:38 UTC MAIN commitmail json YAML

R: Add missing zoneinfo file from previous update.

(jperkin)

2017-10-30 11:45:14 UTC MAIN commitmail json YAML

2017-10-30 11:27:32 UTC MAIN commitmail json YAML

databases/elasticsearch: PKG_JAVA_HOME needs quoting on at least Darwin

(fhajny)

2017-10-30 10:48:22 UTC MAIN commitmail json YAML

fish: Requires libtool.

(jperkin)

2017-10-30 10:11:19 UTC MAIN commitmail json YAML

Updated graphics/libimagequant, textproc/py-openpyxl

(adam)

2017-10-30 10:10:20 UTC MAIN commitmail json YAML

py-openpyxl: updated to 2.4.9

2.4.9 (2017-10-19)
Bugfixes
* 809 Incomplete documentation of copy_worksheet method
* 811 Scoped definedNames not removed when worksheet is deleted
* 824 Raise an exception if a chart is used in multiple sheets
* 842 Non-ASCII table column headings cause an exception in Python 2
* 846 Conditional formats not supported in write-only mode
* 849 Conditional formats with no sqref cause an exception
* 859 Headers that start with a number conflict with font size
* 902 TableStyleElements don窶冲 always have a condtional format
* 908 Read-only mode sometimes returns too many cells
Pull requests
* 179 Cells kept in a set
* 180 Support for Workbook protection
* 182 Read support for page breaks
* 183 Improve documentation of copy_worksheet method
* 198 Fix

(adam)

2017-10-30 08:29:07 UTC MAIN commitmail json YAML

libimagequant: updated to 2.11.0

version 2.11
- new liq_image_set_background() for high-quality remapping of GIF frames
- new liq_image_set_importance_map() for controlling which parts of the image get more palette colors

(adam)

2017-10-29 22:27:11 UTC MAIN commitmail json YAML

doc: Updated lang/duktape to 2.2.0

(leot)

2017-10-29 22:26:56 UTC MAIN commitmail json YAML

duktape: Update lang/duktape to 2.2.0

Sync duktape to libduktape-2.2.0 update.

Reviewed and thanks to <agc>!

(leot)

2017-10-29 22:25:01 UTC MAIN commitmail json YAML

doc: Updated lang/libduktape to 2.2.0

(leot)

2017-10-29 22:24:45 UTC MAIN commitmail json YAML

libduktape: Update lang/libduktape to 2.1

Reviewed and thanks to <agc>!

Changes:
=========================
Duktape 2.1 release notes
=========================
Release overview
================
Main changes in this release (see RELEASES.rst for full details):

* Performance, footprint, and portability improvements.
* API additions for more convenient handling of optional arguments:
  duk_opt_xxx() and duk_get_xxx_default().
* Allow duk_push_heapptr() for objects which have become unreachable and
  are pending finalization.  In such a case a duk_push_heapptr() cancels
  the pending finalizer call and automatically rescues the object.
* ES2015 additions like String.prototype.{startsWith,endsWith,includes}()
  and HTML comment syntax.  Non-standard shebang ("#!...") comment support.
* Finalizer handling rework for reference counting and mark-and-sweep to fix
  a few "side effect" bugs.  Also improved torture test coverage for ensuring
  side effects are handled correctly in Duktape internals.
* DUK_VERSION is now visible to duk_config.h so it's possible for duk_config.h
  to support multiple Duktape versions.  For example, some config options may be
  disabled prior to a certain patch level.

Upgrading from Duktape 2.0
==========================
No action (other than recompiling) should be needed for most users to upgrade
from Duktape v2.0.x.  Note the following:

* The Duktape thread used for finalizer calls is now always the initial thread
  (heap_thread), for both reference counting and mark-and-sweep triggered
  finalization.  This should be taken into account in finalizer functions;
  in particular, if there are multiple global environments, finalizers will
  execute in the first global environment created for the heap.
  Prior to 2.1 the finalizer thread could also be heap_thread but usually the
  current thread would be used.

=========================
Duktape 2.0 release notes
=========================
Release overview
================
Main changes in this release (see RELEASES.rst for full details):
* New tools/configure.py frontend tool replaces genconfig.py for configuring
  and preparing Duktape sources for build.
* Buffer handling has been simplified: Duktape.Buffer has been removed and is
  replaced by Uint8Array, plain buffers now behave like Uint8Array objects.
  Node.js Buffer behavior aligned with more recent Node.js Buffer API.
* Implement more ES2015 and ES2016 functionality, and align some ES5.1
  semantics with ES2015/ES2016.  Implement WHATWG Encoding API with
  TextEncoder() and TextDecoder() bindings.
* Some incompatible API changes, and several API additions.  API and config
  changes to avoid I/O dependencies (such as printf() and fopen()) in core
  Duktape code to simplify porting.
* More configuration flexibility in dropping Duktape specific functionality
  from build, e.g. coroutines and finalization.
* Disabled Ecmascript bindings are no longer present (instead of being present
  but throwing a TypeError).
* Built-in functionality moved to optional extras: print/alert bindings,
  logging, and module loader.  New optional extras include a Node.js-like
  module loader and a 'console' binding.
* Bug fixes, performance and footprint improvements.

The release has API incompatible changes, see upgrading notes below.

Upgrading from Duktape 1.x
==========================
There are API incompatible changes in this release.  Whenever possible the
incompatible changes cause a compilation error (or warning) so that fixing
call sites should be straightforward.  Below are instructions on how to
migrate from 1.x to 2.0.0.  There are also bug fixes and other minor
behavioral changes which may affect some applications, see ``RELEASES.rst``
for details.

There are backwards compatible providers for some removed/modified API calls
in ``extras/duk-v1-compat``.

Known issues
============
* Some non-compliant behavior for array indices near 2G or 4G elements.
* RegExp parser is strict and won't accept some real world RegExps which
  are technically not compliant with Ecmascript E5/E5.1 specification
  but allowed in ES2015 Annex B.
* Final mantissa bit rounding issues in the internal number-to-string
  conversion.

=========================
Duktape 1.6 release notes
=========================
Release overview
================
Main changes in this release (see RELEASES.rst for full details):

* Add duk_suspend() and duk_resume() API calls, backported from Duktape 2.0.

Upgrading from Duktape 1.5.x
============================
No action (other than recompiling) should be needed for most users to upgrade
from Duktape v1.5.x.

Known issues
============
This release has the following known issues worth noting:
* Non-compliant behavior for array indices near 2G or 4G elements.
* RegExp parser is strict and won't accept some real world RegExps which
  are technically not compliant with Ecmascript E5/E5.1 specification.
* Final mantissa bit rounding issues in the internal number-to-string
  conversion.
* On FreeBSD 10.x (at least 10.1 and 10.2): Clang with ``-m32`` generates
  incorrect code for union assignments needed by Duktape's 8-byte packed
  value encoding (see
  https://github.com/svaarala/duktape/blob/master/misc/clang_aliasing.c).
  The issue can be detected by defining ``DUK_OPT_SELF_TESTS``.  A workaround
  is to avoid packed types in this case by defining ``DUK_OPT_NO_PACKED_TVAL``.

(leot)

2017-10-29 22:16:03 UTC MAIN commitmail json YAML

Use ${WRKDIR}/tmp for temporary files instead of $(mktemp -d)

This is more portable.

As suggested by joerg@.

(khorben)

2017-10-29 20:53:51 UTC MAIN commitmail json YAML

Updated fonts/ttf-tlwg to 0.6.4

(scole)

2017-10-29 20:52:04 UTC MAIN commitmail json YAML

Update Fonts-TLWG to 0.6.4

0.6.4 (2017-10-03) : The "TeXnical Boost" release
=====
- Use package versioning based on Git snapshot.
- Fix LaTeX familydefault upon switching between scripts.
  (Thanks Abhabongse Janthong for the pull request.)
- Add LaTeX option for font scaling.
  (Thanks Abhabongse Janthong for another pull request.)

(scole)

2017-10-29 16:47:02 UTC MAIN commitmail json YAML

libidn2: Fix installation if gtk-doc package is already installed

By default libidn2 is configured with `--disable-gtk-doc'. However,
despite that, it will checks several `gtkdoc-*' tools anyway, ending
in a failure during the installation phase because only a couple
of them are available.

Add a kludge via CONFIGURE_ENV to avoid picking up gtkdoc-* tools.

Pointed out by <scole> via PR pkg/52667.

(leot)

2017-10-29 12:13:54 UTC MAIN commitmail json YAML

2017-10-29 12:13:13 UTC MAIN commitmail json YAML

Update ObjFW to 0.90.2, from Jonathan Schleifer in PR pkg/52645.

ObjFW 0.90.1 -> ObjFW 0.90.2, 23.10.2017
* Fix shadowed variables which caused many bugs (e.g. using the wrong object)
* Many, many nullability fixes
* OFTCPSocket: Fix exception not being retained for async connect
* OFThread: Fix setting the name on the wrong thread
* OFMutableSet: Fix missing override for -[copy]
* configure: Fix posix_spawnp check
* Xcode project: Set the correct version for the bridge
* Better check for iOS
* tests: Fix testing the wrong OFKernelEventObserver

ObjFW 0.90 -> ObjFW 0.90.1, 20.08.2017
* OFData: Fix -[description]
* OFFileManager: Set errno to 0 before readdir()
* OFDate: Add -[localMinute]
* OFTarArchiveEntry: Fix prefix handling for ustar
* OFZIPArchive: Fix uncompressed + data descriptor
* OFArray: Fix MessagePack encoding
* of_asprintf: Don't require set up OFLocalization
* OFGZIPStream: Add missing documentation
* Fix a linker warning on OpenBSD/SPARC64
* Remove the OFFile b modes from MorphOS
  (they were already removed for all other OSes)

(bsiegert)

2017-10-29 10:53:01 UTC MAIN commitmail json YAML

doc: Updated net/youtube-dl to 20171029

(leot)

2017-10-29 10:52:44 UTC MAIN commitmail json YAML

youtube-dl: Update net/youtube-dl to 20171029

Changes:
version 2017.10.29

Core
* [extractor/common] Prefix format id for audio only HLS formats
+ [utils] Add support for zero years and months in parse_duration

Extractors
* [egghead] Fix extraction (#14388)
+ [fxnetworks] Extract series metadata (#14603)
+ [younow] Add support for younow.com (#9255, #9432, #12436)
* [dctptv] Fix extraction (#14599)
* [youtube] Restrict embed regex (#14600)
* [vimeo] Restrict iframe embed regex (#14600)
* [soundgasm] Improve extraction (#14588)
- [myvideo] Remove extractor (#8557)
+ [nbc] Add support for classic-tv videos (#14575)
+ [vrtnu] Add support for cookies authentication and simplify (#11873)
+ [canvas] Add support for vrt.be/vrtnu (#11873)
* [twitch:clips] Fix title extraction (#14566)
+ [ndtv] Add support for sub-sites (#14534)
* [dramafever] Fix login error message extraction
+ [nick] Add support for more nickelodeon sites (no, dk, se, ch, fr, es, pt,
  ro, hu) (#14553)

(leot)

2017-10-29 09:48:31 UTC MAIN commitmail json YAML

Updated www/firefox to 56.0.2nb1

(ryoon)

2017-10-29 09:47:58 UTC MAIN commitmail json YAML

Make clang and rust as build dependencies. Fix PR pkg/52668
Bump PKGREVISION

(ryoon)

2017-10-29 00:46:14 UTC MAIN commitmail json YAML

Remove compatibility mappings for options retired in 2017Q2.

(schmonz)

2017-10-29 00:34:30 UTC MAIN commitmail json YAML

2017-10-28 19:09:09 UTC pkgsrc-2017Q3 commitmail json YAML

pullups 5586 5587 5588 5589

(spz)

2017-10-28 19:03:46 UTC pkgsrc-2017Q3 commitmail json YAML

Pullup ticket #5589 - requested by tez
net/wget: security patch

Revisions pulled up:
- net/wget/Makefile                                            1.136
- net/wget/distinfo                                            1.55
- net/wget/patches/patch-CVE-2017-13089                        1.1
- net/wget/patches/patch-CVE-2017-13090                        1.1

-------------------------------------------------------------------
  Module Name:    pkgsrc
  Committed By:  tez
  Date:          Thu Oct 26 15:01:39 UTC 2017

  Modified Files:
          pkgsrc/net/wget: Makefile distinfo
  Added Files:
          pkgsrc/net/wget/patches: patch-CVE-2017-13089 patch-CVE-2017-13090

  Log Message:
  wget: patches for CVE-2017-13089 and CVE-2017-13090

  To generate a diff of this commit:
  cvs rdiff -u -r1.135 -r1.136 pkgsrc/net/wget/Makefile
  cvs rdiff -u -r1.54 -r1.55 pkgsrc/net/wget/distinfo
  cvs rdiff -u -r0 -r1.1 pkgsrc/net/wget/patches/patch-CVE-2017-13089 \
      pkgsrc/net/wget/patches/patch-CVE-2017-13090

(spz)

2017-10-28 18:56:04 UTC pkgsrc-2017Q3 commitmail json YAML

Pullup ticket #5588 - requested by maya
shells/fish: build fix

Revisions pulled up:
- shells/fish/Makefile                                          1.12
- shells/fish/distinfo                                          1.9
- shells/fish/patches/patch-configure.ac                        1.1
- shells/fish/patches/patch-src_fallback.cpp                    1.1
- shells/fish/patches/patch-src_fallback.h                      1.1
- shells/fish/patches/patch-src_output.cpp                      1.1
- shells/fish/patches/patch-src_output.h                        1.1
- shells/fish/patches/patch-src_screen.cpp                      1.1

-------------------------------------------------------------------
  Module Name:    pkgsrc
  Committed By:  maya
  Date:          Tue Oct 24 03:51:41 UTC 2017

  Modified Files:
          pkgsrc/shells/fish: Makefile distinfo
  Added Files:
          pkgsrc/shells/fish/patches: patch-configure.ac patch-src_fallback.cpp
              patch-src_fallback.h patch-src_output.cpp patch-src_output.h
              patch-src_screen.cpp

  Log Message:
  fish: add patches from pkgsrc-wip reported to fix build with clang
  force ncurses because auto-completion is broken with netbsd curses.

  bump pkgrevision

  To generate a diff of this commit:
  cvs rdiff -u -r1.11 -r1.12 pkgsrc/shells/fish/Makefile
  cvs rdiff -u -r1.8 -r1.9 pkgsrc/shells/fish/distinfo
  cvs rdiff -u -r0 -r1.1 pkgsrc/shells/fish/patches/patch-configure.ac \
      pkgsrc/shells/fish/patches/patch-src_fallback.cpp \
      pkgsrc/shells/fish/patches/patch-src_fallback.h \
      pkgsrc/shells/fish/patches/patch-src_output.cpp \
      pkgsrc/shells/fish/patches/patch-src_output.h \
      pkgsrc/shells/fish/patches/patch-src_screen.cpp

(spz)

2017-10-28 18:50:44 UTC pkgsrc-2017Q3 commitmail json YAML

Pullup ticket #5587 - requested by maya
chat/irssi: security update
chat/irssi-icb: security update
chat/irssi-xmpp: security update

Revisions pulled up:
- chat/irssi-icb/distinfo                                      1.31
- chat/irssi-xmpp/distinfo                                      1.13
- chat/irssi/Makefile.common                                    1.25
- chat/irssi/distinfo                                          1.44

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: maya
  Date: Mon Oct 23 15:08:24 UTC 2017

  Modified Files:
  pkgsrc/chat/irssi: Makefile.common distinfo
  pkgsrc/chat/irssi-icb: distinfo
  pkgsrc/chat/irssi-xmpp: distinfo

  Log Message:
  irssi: update to 1.0.5

  - Fix missing -sasl_method '' in /NETWORK (#718, #719).
  - Fix incorrect restoration of term state when hitting SUSP
            inside screen (#737, #733).
  - Fix out of bounds read when compressing colour
            sequences. Found by Hanno B?ck (GL#12, GL!18).
  - Fix use after free condition during a race condition when
            waiting on channel sync during a rejoin (GL#13, GL!19).
  - Fix null pointer dereference when parsing certain malformed
            CTCP DCC messages (GL#14, GL!20).
  - Fix crash due to null pointer dereference when failing to
            split messages due to overlong nick or target (GL#15, GL!21).
  - Fix out of bounds read when trying to skip a safe channel ID
            without verifying that the ID is long enough (GL#16, GL!22).
  - Fix return of random memory when inet_ntop failed (#769).
  - Minor statusbar help update. By Robert Bisewski (#758,
            #763).

  Security advisory: https://irssi.org/security/irssi_sa_2017_10.txt

  To generate a diff of this commit:
  cvs rdiff -u -r1.24 -r1.25 pkgsrc/chat/irssi/Makefile.common
  cvs rdiff -u -r1.43 -r1.44 pkgsrc/chat/irssi/distinfo
  cvs rdiff -u -r1.30 -r1.31 pkgsrc/chat/irssi-icb/distinfo
  cvs rdiff -u -r1.12 -r1.13 pkgsrc/chat/irssi-xmpp/distinfo

(spz)

2017-10-28 18:33:16 UTC pkgsrc-2017Q3 commitmail json YAML

Pullup ticket #5586 - requested by he
graphics/ImageMagick: security update

Revisions pulled up:
- graphics/ImageMagick/Makefile.common                          1.157
- graphics/ImageMagick/PLIST                                    1.98
- graphics/ImageMagick/distinfo                                1.173

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: tez
  Date: Tue Oct 10 19:47:50 UTC 2017

  Modified Files:
  pkgsrc/graphics/ImageMagick: Makefile.common PLIST distinfo

  Log Message:
  ImageMagick: update to 7.0.7.7

  2017-10-07  7.0.7-7 Cristy  <quetzlzacatenango@image...>
    * Release ImageMagick version 7.0.7-7, GIT revision 21432:29003eeed:20171007.

  2017-10-06  7.0.7-7 Cristy  <quetzlzacatenango@image...>
    * Correct handling of GIF transparency (reference
      https://github.com/ImageMagick/ImageMagick/issues/831).

  2017-10-04  7.0.7-6 Cristy  <quetzlzacatenango@image...>
    * Release ImageMagick version 7.0.7-6, GIT revision 21426:0a1cb507b:20171004.

  2017-10-03  7.0.7-6 Cristy  <quetzlzacatenango@image...>
    * Reset the magick_list_initialized boolean when needed (reference
      https://github.com/ImageMagick/ImageMagick/pull/826).
  2017-10-02  7.0.7-6 Cristy  <quetzlzacatenango@image...>
    * Reset the magick_list_initialized boolean when needed (reference
      https://github.com/ImageMagick/ImageMagick/pull/826).

  2017-10-01  7.0.7-5 Cristy  <quetzlzacatenango@image...>
    * Release ImageMagick version 7.0.7-5, GIT revision 21382:3846f9d97:20171001.

  2017-09-28  7.0.7-5 Cristy  <quetzlzacatenango@image...>
    * Fixed numerous memory leaks (reference
      https://github.com/ImageMagick/ImageMagick/issues).
    * Support URW-base35 fonts.

  2017-09-26  7.0.7-5 Glenn Randers-Pehrson <glennrp@image...>
    * Removed "ping_preserve_iCCP=MagickTrue;" statement that was inadvertently
      added to coders/png.c (reference
      http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t2771).

  2017-09-23  7.0.7-4 Cristy  <quetzlzacatenango@image...>
    * Release ImageMagick version 7.0.7-4, GIT revision 21265:bdbc14590:20170923.

  2017-09-23  7.0.7-4 Cristy  <quetzlzacatenango@image...>
    * Fixed numerous memory leaks (reference
      https://github.com/ImageMagick/ImageMagick/pull/763).

  2017-09-17  7.0.7-3 Cristy  <quetzlzacatenango@image...>
    * Release ImageMagick version 7.0.7-3, GIT revision 21202:6e6907ac7:20170917.

  2017-09-17  7.0.7-3 ADLab of Venustech
    * Fixed numerous memory leaks (reference
      https://github.com/ImageMagick/ImageMagick/pull/763).

  2017-09-15  7.0.7-3 Glenn Randers-Pehrson <glennrp@image...>
    * Stop potential leaks in the JNG decoder (reference:
      https://github.com/ImageMagick/ImageMagick/issues/760).
    * Maximum valid hour is 23, not 24, in the PNG tIME chunk, and maximum
      valid minute is 59, not 60.

  To generate a diff of this commit:
  cvs rdiff -u -r1.156 -r1.157 pkgsrc/graphics/ImageMagick/Makefile.common
  cvs rdiff -u -r1.97 -r1.98 pkgsrc/graphics/ImageMagick/PLIST
  cvs rdiff -u -r1.172 -r1.173 pkgsrc/graphics/ImageMagick/distinfo

(spz)

2017-10-28 18:20:55 UTC MAIN commitmail json YAML

2017-10-28 18:20:14 UTC MAIN commitmail json YAML

Update Go to 1.9.2.

This release includes fixes to the compiler, linker, runtime, documentation,
go command, and the crypto/x509, database/sql, log, and net/smtp packages. It
includes a fix to a bug introduced in Go 1.9.1 that broke "go get"
of non-Git repositories under certain conditions.

(bsiegert)

2017-10-28 16:46:56 UTC MAIN commitmail json YAML

doc: Updated net/gallery-dl to 1.0.0

(leot)

2017-10-28 16:46:41 UTC MAIN commitmail json YAML

gallery-dl: Update net/gallery-dl to 1.0.0

Changes:
1.0.0
-----
- Add `--cookies' option to load further cookies from a file
- Remove `kisscomic' module, image links on the site are dead
- Remove `yonkouprod' module, every manga chapter on the site were removed
- Add thread extractor to `warosu' module
- Add extractor for ranking lists to `pixiv' module
- Add extractors for "Popular" images to `booru' module
- Add `--filter' option to allow image filtering via Python expressions
- Rename `--images' and `--chapters' options to `--range' and `--chapter-range'
- Misc bug fixes and improvements

(leot)

2017-10-28 16:11:32 UTC MAIN commitmail json YAML

doc: Updated print/tex-beamer-doc to 3.43nb1

(leot)

2017-10-28 16:11:18 UTC MAIN commitmail json YAML

tex-beamer-doc: Fix PLIST (`beamerugthemedefault.pdf' was missing)

Bump PKGREVISION

(leot)

2017-10-28 16:00:21 UTC MAIN commitmail json YAML

doc: Updated graphics/sxiv to 24

(leot)

2017-10-28 16:00:05 UTC MAIN commitmail json YAML

sxiv: Update graphics/sxiv to 24.

pkgsrc changes:
- Add AUTORELOAD=nop to MAKE_FLAGS in order to avoid optional inotify
  support to automatically reload the current image whenever it changes
- Needs `c99' (`-std=c99' is passed to CFLAGS)

Changes:
24
--
- Automatically reload the current image whenever it changes
- Support embedding into other X windows with -e (e.g. tabbed)
- New option -p prevents sxiv from creating cache and temporary files
- Simpler mouse mappings, the most basic features are accessible with
  the mouse only (navigate, zoom, pan)

(leot)

2017-10-28 15:56:48 UTC MAIN commitmail json YAML

Remove QMAIL_QFILTER_TMPDIR knob, no longer needed.

(schmonz)

2017-10-28 15:56:12 UTC MAIN commitmail json YAML

doc: Updated mail/qmail-qfilter to 2.1nb5

(schmonz)

2017-10-28 15:56:06 UTC MAIN commitmail json YAML

Remove unnecessary special-case TMPDIR handling. Upstream says typical
"/tmp" is just fine. Bump PKGREVISION.

(schmonz)

2017-10-28 14:42:20 UTC MAIN commitmail json YAML

doc: Updated net/mikutter to 3.5.13

(tsutsui)

2017-10-28 14:41:38 UTC MAIN commitmail json YAML

mikutter: update to 3.5.13.

Upstream changes:

- use ruby-gtk2 3.1.9 (thanks @Phenomer)
- activity plugin crash problem
- MIKUTTER_CONFROOT environment for Gemfile was dealt differently
  from mikutter itself

(tsutsui)

2017-10-28 11:23:50 UTC MAIN commitmail json YAML

Fix local privilege escalation when building math/lp_solve

This still requires $TMPDIR (or /tmp) to be mounted with "exec", but now
respects $TMPDIR.

(khorben)

2017-10-28 10:58:23 UTC MAIN commitmail json YAML

Updated www/nginx-devel, www/nginx

(adam)

2017-10-28 10:57:50 UTC MAIN commitmail json YAML

nginx-devel: updated to 1.13.6

Changes with nginx 1.13.6                                        10 Oct 2017

    *) Bugfix: switching to the next upstream server in the stream module
      did not work when using the "ssl_preread" directive.

    *) Bugfix: in the ngx_http_v2_module.
      Thanks to Piotr Sikora.

    *) Bugfix: nginx did not support dates after the year 2038 on 32-bit
      platforms with 64-bit time_t.

    *) Bugfix: in handling of dates prior to the year 1970 and after the
      year 10000.

    *) Bugfix: in the stream module timeouts waiting for UDP datagrams from
      upstream servers were not logged or logged at the "info" level
      instead of "error".

    *) Bugfix: when using HTTP/2 nginx might return the 400 response without
      logging the reason.

    *) Bugfix: in processing of corrupted cache files.

    *) Bugfix: cache control headers were ignored when caching errors
      intercepted by error_page.

    *) Bugfix: when using HTTP/2 client request body might be corrupted.

    *) Bugfix: in handling of client addresses when using unix domain
      sockets.

    *) Bugfix: nginx hogged CPU when using the "hash ... consistent"
      directive in the upstream block if large weights were used and all or
      most of the servers were unavailable.

(adam)

2017-10-28 10:57:29 UTC MAIN commitmail json YAML

nginx: updated to 1.12.2

Changes with nginx 1.12.2:

*) Bugfix: client SSL connections were immediately closed if deferred
  accept and the "proxy_protocol" parameter of the "listen" directive
  were used.

*) Bugfix: client connections might be dropped during configuration
  testing when using the "reuseport" parameter of the "listen"
  directive on Linux.

*) Bugfix: incorrect response length was returned on 32-bit platforms
  when requesting more than 4 gigabytes with multiple ranges.

*) Bugfix: switching to the next upstream server in the stream module
  did not work when using the "ssl_preread" directive.

*) Bugfix: when using HTTP/2 client request body might be corrupted.

*) Bugfix: in handling of client addresses when using unix domain
  sockets.

(adam)

2017-10-28 09:16:11 UTC MAIN commitmail json YAML

Updated time/py-tzdata

(adam)

2017-10-28 09:13:28 UTC MAIN commitmail json YAML

2017-10-28 09:06:46 UTC MAIN commitmail json YAML

Updated devel/py-sure, time/py-pendulum

(adam)

2017-10-28 09:06:26 UTC MAIN commitmail json YAML

py-pendulum: updated to 1.3.1

1.3.1:
Fixed inaccuracy of in_days() method on DST transitions.
Fixed seconds inaccuracy for past datetimes.

1.3.0:
Added support for the alternative formatter's tokens in from_format().
Added a timezones module attribute to expose available timezones.
Added the exact keyword to parse() which behaves exactly like strict.
Dropped support for Python 3.2 and 3.3.
The classic formatter in from_format() is now deprecated.
Fixed th locale.

(adam)

2017-10-28 09:01:19 UTC MAIN commitmail json YAML

py-sure: updated to 1.4.7

v1.4.7
Fixed
Remove wrong parens for format call.

(adam)

2017-10-28 08:54:34 UTC MAIN commitmail json YAML

Updated devel/py-ruamel-ordereddict, devel/py-ruamel-yaml, time/py-maya

(adam)

2017-10-28 08:54:11 UTC MAIN commitmail json YAML

py-maya: updated to 0.3.3

0.3.3:
Fix typos and correct spelling.

(adam)

2017-10-28 08:51:25 UTC MAIN commitmail json YAML

py-ruamel-yaml: updated to 0.15.34

0.15.34:
- fix for issue 157: CDumper not dumping floats

(adam)

2017-10-28 08:49:30 UTC MAIN commitmail json YAML

2017-10-28 08:26:43 UTC MAIN commitmail json YAML

Added lang/py-asttokens; Updated devel/py-flake8-import-order, sysutils/py-crontab, textproc/py-regex

(adam)

2017-10-28 08:25:14 UTC MAIN commitmail json YAML

py-regex: updated to 2017.09.23

2017.09.23:
Bug fixes.

(adam)

2017-10-28 08:10:52 UTC MAIN commitmail json YAML

py-crontab: updated to 2.2.6

2.2.6:
Bug fixes.

(adam)

2017-10-28 07:42:10 UTC MAIN commitmail json YAML

py-flake8-import-order: updated to 0.14.1

0.14.1:
* Bug fix, cope with multi-line imports when considering I202.

(adam)

2017-10-28 07:38:07 UTC MAIN commitmail json YAML

py-asttokens: added version 1.1.6

The asttokens module annotates Python abstract syntax trees (ASTs) with the
positions of tokens and text in the source code that generated them.

It makes it possible for tools that work with logical AST nodes to find the
particular text that resulted in those nodes, for example for automated
refactoring or highlighting.

(adam)

2017-10-28 06:55:17 UTC MAIN commitmail json YAML

Added net/py-responses; Updated net/py-tldextract

(adam)

2017-10-28 06:54:23 UTC MAIN commitmail json YAML

py-tldextract: updated to version 2.2.0

2.2.0
Unknown changes

(adam)

2017-10-28 06:52:56 UTC MAIN commitmail json YAML

py-responses: added version 0.8.1

A utility library for mocking out the requests Python library.

(adam)

2017-10-28 05:22:47 UTC MAIN commitmail json YAML

doc: Updated meta-pkgs/bulk-medium to 20171028

(wiz)

2017-10-28 05:22:37 UTC MAIN commitmail json YAML

bulk-medium: Remove ancient (and removed) firefox10.

Bump version.

(wiz)

2017-10-28 04:51:12 UTC MAIN commitmail json YAML

doc: Updated mail/nullmailer to 2.1

(schmonz)

2017-10-28 04:51:06 UTC MAIN commitmail json YAML

Update to 2.1. From the changelog:

- Added support for TLS anonymous authentication.
  Thanks Uffe Jakobsen.
- Fixed sendmail wrapper handling of empty sender on command line.
  Thanks Sebastian Wiedenroth.
- Fixed handling of quoted strings in the "remotes" file.
  Thanks Mihai Moldovan.
- Fixed nullmailer-inject handling of leading "From " lines.
- Some build fixes.
- Fixed bogus temporary gethostbyname error message when the protocol
  source address was incorrect.
- Fixed potential race condition in tests.
  Thanks Felix Lechner.
- Fixed handling of time values on 32-bit big-endian systems.
  Thanks Felix Lechner.
- Added support to nullmailer-send to move permanently failing messages
  out of the queue, and to generate bounce messages.
- Added support for IPv6.
- Added program to generate bounce/delay messages.
- Added an "allmailfrom" control file to nullmailer-queue, causing all
  messages to share a hard-coded envelope sender.
- Added logging the message sender/recipient in nullmailer-send.
- Improved handling of system errors when reading config files.
- Secured handling of password options for protocol modules.
- Support standard shell quoting for options in the "remotes" file.
- Added protocol option to set a separate TLS client private key file.
- Added protocol option to bind the source address on connections.
- Fixed nullmailer-inject to report errors to stderr.
- Fixed gnutls cast to pointer from integer of different size warning.
- Fixed nullmailer-inject and -queue to handle the null (empty) sender
  address. Needed for RFC 3798 (Message Disposition Notification).
- Moved spool directory to /var/spool/nullmailer like other MTAs.

(schmonz)

2017-10-28 04:46:35 UTC MAIN commitmail json YAML

Move mail/nullmailer defaults to mk/defaults/mk.conf.

(schmonz)

2017-10-28 04:08:46 UTC MAIN commitmail json YAML

2017-10-28 03:14:17 UTC MAIN commitmail json YAML

2017-10-28 01:46:11 UTC MAIN commitmail json YAML

Add support for LDFLAGS when building xentools{42,45,46,48}

This helps pass the RELRO check for these packages.

(khorben)

2017-10-27 23:50:38 UTC MAIN commitmail json YAML

2017-10-27 23:30:07 UTC MAIN commitmail json YAML

Really honour LDFLAGS when building ocamlyacc

This fixes building lang/ocaml with RELRO.

(khorben)

2017-10-27 21:01:06 UTC MAIN commitmail json YAML

doc: Updated pkgtools/cwrappers to 20171027

(khorben)

2017-10-27 20:59:59 UTC MAIN commitmail json YAML

2017-10-27 20:57:16 UTC MAIN commitmail json YAML

Apply CFLAGS to the whole build process for lang/g95

This fixes building g95 with PKGSRC_MKPIE=yes without cwrappers.
A separate fix for the same issue with cwrappers is on its way.

(khorben)

2017-10-27 18:01:44 UTC MAIN commitmail json YAML

Remove removed inclusion. Pointed by oster@. Thank you

(ryoon)

2017-10-27 17:50:43 UTC MAIN commitmail json YAML

Remove thunderbird{24,31,38}

(ryoon)

2017-10-27 17:48:31 UTC MAIN commitmail json YAML

2017-10-27 16:46:33 UTC MAIN commitmail json YAML

doc: Updated net/grpc to 1.7.0

(minskim)

2017-10-27 16:45:34 UTC MAIN commitmail json YAML

net/grpc: Update to 1.7.0

Notable changes:
- Channel are now by default persistent
- Some bug fixes from 1.4 branch
- Fixed hang bug when fork() was used

(minskim)

2017-10-27 16:17:50 UTC MAIN commitmail json YAML

2017-10-27 15:50:53 UTC MAIN commitmail json YAML

Updated www/py-FormEncode

(adam)

2017-10-27 15:47:32 UTC MAIN commitmail json YAML

py-FormEncode: updated to 1.3.1

1.3.1 release to turn off universal wheels

(adam)

2017-10-27 14:00:28 UTC MAIN commitmail json YAML

Remove firefox38

(ryoon)

2017-10-27 13:59:53 UTC MAIN commitmail json YAML

2017-10-27 13:53:10 UTC MAIN commitmail json YAML

Remove firefox31

(ryoon)

2017-10-27 13:52:06 UTC MAIN commitmail json YAML

2017-10-27 13:46:23 UTC MAIN commitmail json YAML

Remove firefox24

(ryoon)

2017-10-27 13:45:43 UTC MAIN commitmail json YAML

2017-10-27 13:41:36 UTC MAIN commitmail json YAML

Remove firefox17

(ryoon)

2017-10-27 13:40:22 UTC MAIN commitmail json YAML

2017-10-27 13:33:37 UTC MAIN commitmail json YAML

Remove firefox10

(ryoon)

2017-10-27 13:31:33 UTC MAIN commitmail json YAML

2017-10-27 13:23:50 UTC MAIN commitmail json YAML

2017-10-27 13:23:02 UTC MAIN commitmail json YAML

Updated www/firefox-l10n to 56.0.2

(ryoon)

2017-10-27 13:22:31 UTC MAIN commitmail json YAML

Updated www/firefox to 56.0.2

(ryoon)

2017-10-27 13:21:28 UTC MAIN commitmail json YAML

Update to 56.0.2

Changelog:
56.0.2:
fixed:
    Disable Form Autofill completely on user request (Bug 1404531)

    Fix for video-related crashes on Windows 7 (Bug 1409141)

    Correct detection for 64-bit GSSAPI authentication (Bug 1409275)

    Fix for shutdown crash (Bug 1404105)

56.0.1:
fixed:
    Block D3D11 when using Intel drivers on Windows 7 systems
      with partial AVX support (bug 1403353)

changed:
    Users of 32-bit Firefox on 64-bit Windows are migrated to
      64-bit Firefox for increased stability and security.

(ryoon)

2017-10-27 13:08:44 UTC MAIN commitmail json YAML

Updated net/tor to 0.3.1.8, textproc/py-mistune

(adam)

2017-10-27 13:07:46 UTC MAIN commitmail json YAML

Remove dos2unix

(ryoon)

2017-10-27 13:06:57 UTC MAIN commitmail json YAML

Updated converters/dos2unix to 7.4.0

(ryoon)

2017-10-27 13:06:28 UTC MAIN commitmail json YAML

py-mistune: updated to 0.8

Version 0.8
* Remove non breaking spaces preprocessing
* Remove rev and rel attribute for footnotes
* Fix bypassing XSS vulnerability by junorouse
This version is strongly recommended, since it fixed
a security issue.

(adam)

2017-10-27 13:06:17 UTC MAIN commitmail json YAML

Update to 7.4.0

Changelog:
2017-10-10: Version 7.4.0
  * New option --allow-chown to allow file ownership change
    in old file mode. Option --no-allow-chown does the opposite.
  * Code cleanup.

2017-07-04: Version 7.3.5
  * New flag 0 for option -i, --info. End information lines with a null
    character instead of a newline character, enabling correct file name
    interpretation when flag c is used.
  * Don't print leading spaces when option -i with flag c is used.
  * Code cleanup.
  * Manual update.
  * Translation updates.

(ryoon)

2017-10-27 12:56:59 UTC MAIN commitmail json YAML

tor: updated to 0.3.1.8

Changes in version 0.3.1.8:
  Tor 0.3.1.7 is the second stable release in the 0.3.1 series.
  It includes several bugfixes, including a bugfix for a crash issue
  that had affected relays under memory pressure. It also adds
  a new directory authority, Bastet.

  o Directory authority changes:
    - Add "Bastet" as a ninth directory authority to the default list.
    - The directory authority "Longclaw" has changed its IP address.

  o Major bugfixes (relay, crash, assertion failure, backport from 0.3.2.2-alpha):
    - Fix a timing-based assertion failure that could occur when the
      circuit out-of-memory handler freed a connection's output buffer.

  o Minor features (directory authorities, backport from 0.3.2.2-alpha):
    - Remove longclaw's IPv6 address, as it will soon change. Authority
      IPv6 addresses were originally added in 0.2.8.1-alpha. This leaves
      3/8 directory authorities with IPv6 addresses, but there are also
      52 fallback directory mirrors with IPv6 addresses.

  o Minor features (geoip):
    - Update geoip and geoip6 to the October 4 2017 Maxmind GeoLite2
      Country database.

  o Minor bugfixes (compilation, backport from 0.3.2.2-alpha):
    - Fix a compilation warning when building with zstd support on
      32-bit platforms.

  o Minor bugfixes (compression, backport from 0.3.2.2-alpha):
    - Handle a pathological case when decompressing Zstandard data when
      the output buffer size is zero.

  o Minor bugfixes (directory authority, backport from 0.3.2.1-alpha):
    - Remove the length limit on HTTP status lines that authorities can
      send in their replies.

  o Minor bugfixes (hidden service, relay, backport from 0.3.2.2-alpha):
    - Avoid a possible double close of a circuit by the intro point on
      error of sending the INTRO_ESTABLISHED cell.

  o Minor bugfixes (memory safety, backport from 0.3.2.3-alpha):
    - Clear the address when node_get_prim_orport() returns early.

  o Minor bugfixes (unit tests, backport from 0.3.2.2-alpha):
    - Fix additional channelpadding unit test failures by using mocked
      time instead of actual time for all tests.

(adam)

2017-10-27 09:52:32 UTC MAIN commitmail json YAML

Enable postgresql-pljava

(fhajny)

2017-10-27 09:51:20 UTC MAIN commitmail json YAML

doc: Added databases/postgresql-pljava version 1.5.0

(fhajny)

2017-10-27 09:51:03 UTC MAIN commitmail json YAML

2017-10-27 08:49:48 UTC MAIN commitmail json YAML

doc: note update of php* packages.

lang/php56 5.6.32
lang/php70 7.0.25
lang/php71 7.1.11

(taca)

2017-10-27 08:49:01 UTC MAIN commitmail json YAML

2017-10-27 08:47:49 UTC MAIN commitmail json YAML

lang/php71: Update to 7.1.11

* pkgsrc change: remove post-extract which is not required any more.
* including securiy fixes.

26 Oct 2017, PHP 7.1.11

- Core:
  . Fixed bug #75241 (Null pointer dereference in zend_mm_alloc_small()).
    (Laruence)
  . Fixed bug #75236 (infinite loop when printing an error-message). (Andrea)
  . Fixed bug #75252 (Incorrect token formatting on two parse errors in one
    request). (Nikita)
  . Fixed bug #75220 (Segfault when calling is_callable on parent).
    (andrewnester)
  . Fixed bug #75290 (debug info of Closures of internal functions contain
    garbage argument names). (Andrea)

- Date:
  . Fixed bug #75055 (Out-Of-Bounds Read in timelib_meridian()). (Derick)

- Apache2Handler:
  . Fixed bug #75311 (error: 'zend_hash_key' has no member named 'arKey' in
    apache2handler). (mcarbonneaux)

- Hash:
  . Fixed bug #75303 (sha3 hangs on bigendian). (Remi)

- Intl:
  . Fixed bug #75318 (The parameter of UConverter::getAliases() is not
    optional). (cmb)

- litespeed:
  . Fixed bug #75248 (Binary directory doesn't get created when building
    only litespeed SAPI). (petk)
  . Fixed bug #75251 (Missing program prefix and suffix). (petk)

- mcrypt:
  . Fixed bug #72535 (arcfour encryption stream filter crashes php). (Leigh)

- MySQLi:
  . Fixed bug #75018 (Data corruption when reading fields of bit type). (Anatol)

- OCI8:
  . Fixed incorrect reference counting. (Dmitry, Tianfang Yang)

- Opcache
  . Fixed bug #75255 (Request hangs and not finish). (Dmitry)

- PCRE:
  . Fixed bug #75207 (applied upstream patch for CVE-2016-1283). (Anatol)

- PDO_mysql:
  . Fixed bug #75177 (Type 'bit' is fetched as unexpected string). (Anatol)

- SPL:
  . Fixed bug #73629 (SplDoublyLinkedList::setIteratorMode masks intern flags).
    (J. Jeising, cmb)

(taca)

2017-10-27 08:46:49 UTC MAIN commitmail json YAML

lang/php70: Update to 7.0.25

* pkgsrc change: remove post-extract which is not required any more.
* including securiy fixes.

26 Oct 2017 PHP 7.0.25

- Core:
  . Fixed bug #75241 (Null pointer dereference in zend_mm_alloc_small()).
    (Laruence)
  . Fixed bug #75236 (infinite loop when printing an error-message). (Andrea)
  . Fixed bug #75252 (Incorrect token formatting on two parse errors in one
    request). (Nikita)
  . Fixed bug #75220 (Segfault when calling is_callable on parent).
    (andrewnester)
  . Fixed bug #75290 (debug info of Closures of internal functions contain
    garbage argument names). (Andrea)

- Apache2Handler:
  . Fixed bug #75311 (error: 'zend_hash_key' has no member named 'arKey' in
    apache2handler). (mcarbonneaux)

- Date:
  . Fixed bug #75055 (Out-Of-Bounds Read in timelib_meridian()). (Derick)

- Intl:
  . Fixed bug #75318 (The parameter of UConverter::getAliases() is not
    optional). (cmb)

- mcrypt:
  . Fixed bug #72535 (arcfour encryption stream filter crashes php). (Leigh)

- OCI8:
  . Fixed incorrect reference counting. (Dmitry, Tianfang Yang)

- PCRE:
  . Fixed bug #75207 (applied upstream patch for CVE-2016-1283). (Anatol)

- litespeed:
  . Fixed bug #75248 (Binary directory doesn't get created when building
    only litespeed SAPI). (petk)
  . Fixed bug #75251 (Missing program prefix and suffix). (petk)

- SPL:
  . Fixed bug #73629 (SplDoublyLinkedList::setIteratorMode masks intern flags).
    (J. Jeising, cmb)

(taca)