Commit graph

6530 commits

Author SHA1 Message Date
minskim
34867736e9 misc/Makefile: Add R-pillar 2018-03-16 16:19:08 +00:00
minskim
1eb317fe1a misc/R-pillar: Import version 1.1.0
Provides a 'pillar' generic designed for formatting columns of data
using the full range of colours provided by modern terminals.
2018-03-16 16:19:05 +00:00
leot
3094e38f8e moreutils: Install parallel' and its man page to moreutils-parallel'
This avoid a possible conflict with `parallel' provided by
parallel/parallel package.

PKGREVISION++

Pointed out by Dr. Thomas Orgis via tech-pkg@.
2018-03-14 20:35:23 +00:00
taca
f9e3a9dfbc misc/ruby-slop: update to 4.6.2
v4.6.2 (2018-03-12)

Bug fixes/Enhancements
  * Fix equals character (=) being parsed incorrectly in some cases. #226

v4.6.1 (2017-11-20)
-------------------

Bug fixes/Enhancements
  * Fix separator so it doesn't mutate user data. #223 (Marc-André Lafortune)
  * Add additional tests for `Options#separator` and fix issue where
    the last separator was ignored. #222

v4.6.0 (2017-10-06)
-------------------

Features
  * Add support for required options. #218 (William Woodruff)

v4.5.0 (2017-05-22)
-------------------

Features:
  * Added config option to avoid translating flags-with-dashes into
  underscores. #206 (@lbriais)

v4.4.3 (2017-05-02)
-------------------

Bug fixes:
  * Ruby 2.0.0 support broken in v4.4.2

v4.4.2 (2017-04-29)
-------------------

Bug fixes:
  * Fix support for parsing -x5 or -nfoo. #199
  * Fix removing arguments after `--`. #194

v4.4.1 (2016-08-21)
-------------------

Bug fixes:
  * Handle bad constant names in `Slop.option_defined?`. #198
    (Ellen Marie Dash)

v4.4.0 (2016-08-15)
-------------------

Features
  * Support parsing arguments prefixed with dashes. #192 (Andrew Clemons)

Bug fixes:
  * Retain sort order inside tail sort. #193 (Caio Chassot)

v4.3.0 (2016-03-19)
-------------------

Features
  * Allow disabling array delimiter. #189 (Mike Pastore)
  * Allow passing custom banner as config. #191 (Philip Rees)

v4.2.1 (2015-11-25)
-------------------

Features:
  * Better handling of option names with multiple words. #169 (Tim Rogers)

Minor enhancements:
  * add ARGF notes to Arguments (README). #173 (Rick Hull)

Bug fixes:
  * Fix arguments removed with option arguments. #182 (Naoki Mizuno)
  * Fix bug where true is passed to BoolOption block regardless
    of --no- prefix. #184 (Ben Brady)
  * only raise MissingArgument if not `default_value`. #163 (Ben Brady)

v4.2.0 (2015-04-18)
-------------------

Features:
  * Support for Regexp option type #167 (Laurent Arnoud)
  * Support prefixed `--no-` for explicitly setting boolean options
    to `false` #168
  * Better handling of flags with multiple words #169 (Tim Rogers)

v4.1.0 (2015-04-18)
-------------------

Features:
  * Support for FloatOption #156 (Rick Hull)
  * Support for `limit` config to ArrayOption.
  * Support for `tail` config to add options to the bottom of
    the help text.
  * Add explicit setter (#[]=) to Result class. #162
  * Implement flag gettings for UnknownOption and MissingArgument
    error classes. #165 (sigurdsvela)

Minor enhancements:
  * Reset parser every time `parse` is called.

Bug fixes:
  * Remove "--" from unprocessed arguments #157 (David Rodríguez).

v4.0.0 (2014-12-27)
-------------------

Features:
  * Rebuilt from the ground up. See the v3 changelog for all existing
    changes: https://github.com/leejarvis/slop/blob/v3/CHANGES.md
2018-03-14 15:06:22 +00:00
taca
101ad09856 misc/ruby-pry: update to 0.11.3
pkgsrc change: add support for pkg_alternatives

### HEAD

#### Features

* Add Pry::Testable, an improved modular replacement for PryTestHelpers.
  **breaking change**.

See pull request [#1679](https://github.com/pry/pry/pull/1679).

* Add a new category module: "Pry::Platform". Loosely related to #1668 below.

See pull request [#1670](https://github.com/pry/pry/pull/1670)

* Add `mac_osx?` and `linux?` utility functions to Pry::Helpers::BaseHelpers.

See pull request [#1668](https://github.com/pry/pry/pull/1668).

* Add utility functions for drawing colorised text on a colorised background.

See pull request [#1673](https://github.com/pry/pry/pull/1673).

#### Bug fixes

* Fix a case of infinite recursion in `Pry::Method::WeirdMethodLocator#find_method_in_superclass`
  that users of the [Hanami](http://hanamirb.org/) web framework experienced and
  reported since 2015.

See pull request [#1639](https://github.com/pry/pry/pull/1689).

* Fix a bug where Method objects were not returned for setters inherited
  from a default (Pry::Config::Default). Eg, this is no longer an error:

      pry(main)> d = Pry::Config.from_hash({}, Pry::Config::Default.new)
      pry(main)> d.method(:exception_whitelist=) # Error

See pull request [#1688](https://github.com/pry/pry/pull/1688).

* Do not capture unused Proc objects in Text helper methods `no_color` and `no_paging`,
  for performance reasons. Improve the documentation of both methods.

See pull request [#1691](https://github.com/pry/pry/pull/1691).

* Fix `String#pp` output color.

See pull request [#1674](https://github.com/pry/pry/pull/1674).

### 0.11.0

* Add alias 'whereami[?!]+' for 'whereami' command. ([#1597](https://github.com/pry/pry/pull/1597))
* Improve Ruby 2.4 support ([#1611](https://github.com/pry/pry/pull/1611)):
  * Deprecated constants are hidden from `ls` output by default, use the `-d` switch to see them.
  * Fix warnings that originate in Pry while using the repl.
* Improve completion speed in large applications. ([#1588](https://github.com/pry/pry/pull/1588))
* Pry::ColorPrinter.pp: add `newline` argument and pass it on to PP. ([#1603](https://github.com/pry/pry/pull/1603))
* Use `less` or system pager pager on MS Windows if it is available. ([#1512](https://github.com/pry/pry/pull/1512))
* Add `Pry.configure` as an alternative to the current way of changing configuration options in `.pryrc` files. ([#1502](https://github.com/pry/pry/pull/1502))
* Add `Pry::Config::Behavior#eager_load!` to add a possible workaround for issues like ([#1501](https://github.com/pry/pry/issues/1501))
* Remove Slop as a runtime dependency by vendoring v3.4 as Pry::Slop.
  People can depend on Slop v4 and Pry at the same time without running into version conflicts. ([#1497](https://github.com/pry/pry/issues/1497))
* Fix auto-indentation of code that uses a single-line rescue ([#1450](https://github.com/pry/pry/issues/1450))
* Remove "Pry::Config#refresh", please use "Pry::Config#clear" instead.
* Defining a method called "ls" no longer breaks the "ls" command ([#1407](https://github.com/pry/pry/issues/1407))
* Don't raise when directory permissions don't allow file expansion ([#1432](https://github.com/pry/pry/issues/1432))
* Syntax highlight <tt> tags in documentation output.
* Add support for BasicObject subclasses who implement their own #inspect (#1341)
* Fix 'include RSpec::Matchers' at the top-level (#1277)
* Add 'gem-readme' command, prints the README file bundled with a rubygem
* Add 'gem-search' command, searches for a gem with the rubygems.org HTTP API
* Fixed bug in the `cat` command where it was impossible to use line numbers with files ([#1349](https://github.com/pry/pry/issues/1349))
* Fixed uncaught Errno::EOPNOTSUPP exception when $stdout is a socket ([#1352](https://github.com/pry/pry/issues/1352))
* Display a warning when you cd'ed inside a C object and executed 'show-source' without arguments ([#691](https://github.com/pry/pry/issues/691))
* Make the stagger_output method more reliable by reusing possibly available Pry instance ([#1364](https://github.com/pry/pry/pull/1364))
* Make the 'gem-install' message less confusing by removing backticks ([#1350](https://github.com/pry/pry/pull/1350))
* Fixed error when Pry was trying to load incompatible versions of plugins ([#1312](https://github.com/pry/pry/issues/1312))
* Fixed bug when `hist --clear` led to ArgumentError ([#1340](https://github.com/pry/pry/pull/1340))
* Fixed the "uninitialized constant Pry::ObjectPath::StringScanner" exception during autocomplete ([#1330](https://github.com/pry/pry/issues/1330))
* Secured usage of colours with special characters (RL_PROMPT_START_IGNORE and RL_PROMPT_END_IGNORE) in Pry::Helpers::Text ([#493](https://github.com/pry/pry/issues/493#issuecomment-39232771))
* Fixed regression with `pry -e` when it messes the terminal ([#1387](https://github.com/pry/pry/issues/1387))
* Fixed regression with space prefixes of expressions ([#1369](https://github.com/pry/pry/issues/1369))
* Introduced the new way to define hooks for commands (with `Pry.hooks.add_hook("{before,after}_commandName")`). The old way is deprecated, but still supported (with `Pry.commands.{before,after}_command`) ([#651](https://github.com/pry/pry/issues/651))
* Removed old API's using `Pry::Hooks.from_hash` altogether
* Removed hints on Foreman support (see [this](https://github.com/ddollar/foreman/pull/536))
* Fixed support for the tee command ([#1334](https://github.com/pry/pry/issues/1334))
* Implemented support for CDPATH for ShellCommand ([#1433](https://github.com/pry/pry/issues/1433), [#1434](https://github.com/pry/pry/issues/1434))
* `Pry::CLI.parse_options` does not start Pry anymore ([#1393](https://github.com/pry/pry/pull/1393))
* The gem uses CPU-less platforms for Windows now ([#1410](https://github.com/pry/pry/pull/1410))
* Add `Pry::Config::Memoization` to make it easier to implement your own `Pry::Config::Default` class.([#1503](https://github.com/pry/pry/pull/1503/))
* Lazy load the config defaults for `Pry.config.history` and `Pry.config.gist`.
2018-03-14 15:04:44 +00:00
taca
3485fd8c59 misc/ruby-method_source: update to 0.9.0
Improve support for Ruby 2.3 and 2.4.
2018-03-14 15:02:25 +00:00
taca
f2758e12ed misc/ruby-hashie: update to 3.5.7
## [3.5.7] - 2017-12-19

[3.5.7]: https://github.com/intridea/hashie/compare/v3.5.6...v3.5.7

### Fixed

[#430](https://github.com/intridea/hashie/pull/430): Fix Hashie::Rash randomly losing items - [@Antti](https://github.com/Antti)

### Miscellaneous

* [#425](https://github.com/intridea/hashie/pull/425): Update rubies in CI - [@kachick](https://github.com/kachick).
2018-03-14 14:57:04 +00:00
taca
c65983a46a misc/ruby-daemons: update to 1.2.6
== Release 1.2.6: December 24, 2017

* Add links to rubydoc.info documentation.

== Release 1.2.5: October 22, 2017

* In Application#stop, call zap, not cleanup on the pidfile (thanks to wevanscfi)
* Use File.expand_path on and output and log files (thanks to Dave Harris)
2018-03-14 14:55:36 +00:00
taca
e8aec7f4b5 misc/ruby-commander: update to 4.4.4
=== 4.4.4 / 2018-01-18

* Fix deprecated constant warnings on Ruby 2.5. (@mattbrictson)
2018-03-14 14:54:32 +00:00
taca
718119303d misc/ruby-bundler: update to 1.16.1
## 1.16.1 (2017-12-12)

Bugfixes:

  - avoid hanging on complex resolver errors ([#6114](https://github.com/bundler/bundler/issues/6114), @halfbyte)
  - avoid an error when running `bundle update --group` ([#6156](https://github.com/bundler/bundler/issues/6156), @mattbrictson)
  - ensure the resolver prefers non-pre-release gems when possible ([#6181](https://github.com/bundler/bundler/issues/6181), @greysteil)
  - include bundler's gemspec in the built gem ([#6165](https://github.com/bundler/bundler/issues/6165), @dr-itz)
  - ensure locally installed specs are not overriden by those in remote sources during dependency resolution ([#6072](https://github.com/bundler/bundler/issues/6072), @indirect)
  - ensure custom gemfiles are respected in generated binstubs (@pftg)
  - fail gracefully when loading a bundler-generated binstub when `bin/bundle` was not generated by bundler ([#6149](https://github.com/bundler/bundler/issues/6149), @hsbt)
  - allow `bundle init` to be run even when a parent directory contains a gemfile ([#6205](https://github.com/bundler/bundler/issues/6205), @colby-swandale)

## 1.16.0 (2017-10-31)

Bugfixes:

  - avoid new RubyGems warning about unsafe YAML loading (to keep output consistent) (@segiddins)
  - load digest subclasses in a thread-safe manner (@segiddins, @colby-swandale)
  - avoid unusued variable warnings under ruby 2.5 (@amatsuda)
  - fix printing the same message twice in verbose mode ([#6028](https://github.com/bundler/bundler/issues/6028), @akhramov)
  - allow `SignalException`s to bubble up to the interpreter during `bundle exec` ([#6090](https://github.com/bundler/bundler/issues/6090), @dekellum)
  - avoid activating stdlib digest under Ruby 2.5 (@segiddins)
  - prioritise explicitly requested gems in dependency resolution sort order (@segiddins)
  - reduce memory usage during dependency resolution ([#6114](https://github.com/bundler/bundler/issues/6114), @greysteil)
  - ensure that the default bundler gem is not accidentally activated on ruby 2.5 when using local git overrides (@segiddins)

## 1.16.0.pre.3 (2017-10-04)

Features:

  - the output from `bundle env` includes more information, particularly both the compiled & loaded versions of OpenSSL (@indirect)

Bugfixes:

  - fix a bug where installing on FreeBSD would accidentally raise an error (#6013, @olleolleolle)
  - fix a regression in 1.16 where pre-release gems could accidentally be resolved even when the gemfile contained no pre-release requirements (@greysteil)
  - bundler will avoid making unnecessary network requests to fetch dependency data, fixing a regression introduced in 1.16 (@segiddins)
  - the outdated bundler version message is disabled by default until the message has been fine-tuned (#6004, @segiddins)

## 1.16.0.pre.2 (2017-09-06)

Bugfixes:

  - handle when a connection is missing a socket when warning about OpenSSL version (@greysteil)
  - the description for the `rake release` task now reflects `$RUBYGEMS_HOST` (@wadetandy)
  - fix a bug where `bundle update` would regress transitive dependencies (@greysteil)

## 1.16.0.pre.1 (2017-09-04)

Features:

  - allow using non-branch symbolic refs in a git source (#4845, @segiddins)
  - allow absolute paths in the `cache path` setting (#5627, @mal)
  - gems created via `bundle gem` with rspec have `--require spec_helper` in their `.rspec` file (@koic)
  - `bundle env` includes `Gem.ruby` and the `bundle` binstub shebang when they don't match (#5616, @segiddins)
  - allow passing gem names to `bundle pristine` (@segiddins)
  - `bundle version` and `bundle env` include the commit and build date for the bundler gem (#5049, @segiddins)
  - add the `--shebang` option to `bundle binstubs` (#4070, @segiddins, @Zorbash)
  - gemfiles are `eval`ed one fewer time when running `bundle install` (#4952, #3096, #4417, @segiddins)
  - the `fileutils` gem is now vendored so different versions of the gem can be activated (@segiddins)
  - speed up no-op installations (#5842, @segiddins)
  - default to keeping the lockfile in the default gem template (@deivid-rodriguez)
  - add a special bundler binstub that ensures the correct version of bundler is activated (#5876, @segiddins)
  - speed up dependency resolution and ensure that all resolvable gemfiles can be installed (@segiddins, @greysteil)
  - add a `bundle list` command that prints the gems in use (#4754, @colby-swandale)
  - allow adding credentials to a gem source during deployment when `allow_deployment_source_credential_changes` is set (@adrian-gomez)
  - making an outdated (and insecure) TLS connection to rubygems.org will print a warning (@segiddins)

Bugfixes:

  - allow configuring a mirror fallback timeout without a trailing slash (#4830, @segiddins)
  - fix handling of mirrors for file: urls that contain upper-case characters (@segiddins)
  - list the correct gem host for `rake release` when `allowed_push_host` has been set (@mdeering)
  - ensure `Bundler.original_env` preserves all env keys that bundler sets (#5700, @segiddins)
  - ensure `bundle pristine` removes files added to a git gem (@segiddins)
  - load plugin files from path gems before gem installation (#5429, @segiddins)
  - ensure gems containing manpages are properly set up (#5730, @segiddins)
  - avoid fetching remote specs when all effected gems are in groups that are not being installed (@segiddins)
  - allow `BUNDLE_GEMFILE` to be a relative path (#5712, @gxespino)
  - show a more helpful error message when a gem fails to install due to a corrupted lockfile (#5846, @segiddins)
  - add a process lock to allow multiple concurrent `bundle install`s (#5851, @stefansedich)
  - ensure that specifications always return an array for `#extensions` (@greysteil)
  - print a helpful error message when using a gem in the Gemfile with an empty name (@colby-swandale)
  - ensure that all gemfiles are included in `bundle env` (@segiddins)
  - use ssl client cert and ca cert settings from gem configuration as fallbacks (@stan3)
  - avoid global namespace pollution when loading gems (#5958, @shyouhei)
  - avoid running a complete re-resolve on `bundle update --bundler` (@segiddins)
  - allow `bundle binstubs --standalone` to work without `path` being set (@colby-swandale)
  - fix support for bundle paths that include jars or wars on jruby (#5975, @torcido)
2018-03-14 14:49:22 +00:00
taca
3deb29fcd1 misc/ruby-progressbar: update to 1.9.0
Version v1.9.0 - September 27, 2017

Performance

* don't shell out when it's avoidable.

Change

* Don't allow user to override total or starting_at in Enumerator
* print_and_flush to be explicitly a private method

Uncategorized

* Enumerator#to_progressbar as a refinement

Remove

* Explicit clear on start

Fix

* Components::Time to allow #estimated_seconds_remaining to be called

Add

* Base#to_h to expose all of the data about the current bar state
* Outputs::Null for users who don't want the bar sent anywhere
* Ability to specify a completely custom output stream
* %u format flag to show ?? if total is unknown
2018-03-14 14:32:05 +00:00
wiz
c57215a7b2 Recursive bumps for fontconfig and libzip dependency changes. 2018-03-12 11:15:24 +00:00
wiz
10e27fff08 m17n-db: update to 1.8.0.
* Changes in the m17n database 1.8.0

** New input methods are added.

mr-remigton.mim: Marathi input method for remington layout
mr-typewriter.mim: Marathi input method for typewriter layout
ne-rom-translit.mim: Nepali input method with roman transliteration
ne-trad.mim: Nepali input method for traditional layout
kn-optitransv2.mim: Kannada input method by the OPTITRANS transliteration system
hi-optitransv2.mim: Hindi input method  by the OPTITRANS transliteration system
ml-enhanced-inscript.mim: Malayalam input method for enhanced inscript layout

** This input method is largely augmented.

lsymbol.mim: Add many symbols.

** Names of these input methods are changed.

uk-kbd.mim: renamed from ua-kbd to uk-kbd
zh-zhuyin.mim: renamed from zh-bopomofo to zh-zhuyin
2018-03-11 19:44:36 +00:00
wiz
79836af778 py-anki2: update to 2.0.50.
Changes in 2.0.50

Released 2018-03-08.

Fixed a bug on macOS High Sierra that could cause media files to
be detected as changed when they hadn’t been.

Burying now defaults to off.

The default review limit is now 200 cards/day.

Changes in 2.0.49

Released 2018-02-05.

The standard Mac build is now 64 bit, which should prevent warnings
in future macOS updates. If you’re on an older machine that is 32
bit only, you’ll need to switch to the alternate build.
Changes in 2.0.48

Changes in 2.0.48

Released 2017-10-11.

Built with an updated Python version, which fixes some issues
add-ons were having accessing secure sites. Due to regressions with
the Linux build, this version is only available for Windows and
Mac.

Update 2017-11-28: The alternate Mac version also had problems with
the new Python, and has been rolled back.
2018-03-11 18:08:28 +00:00
wiz
70c3904653 calibre: update to 3.19.0.
- version: 3.19.0
  date: 2018-03-09

  new features:
    - title: "Driver for the new PocketBook 740"

    - title: "Allow using relative URLs in comments type metadata. The relative URLs are interpreted relative to the book folder in the calibre library"

    - title: "Edit book: Reports: Do not show characters from the HTML markup in the characters report."
      tickets: [1753788]

    - title: "Allow adding the Virtual library button to any toolbar/menu via Preferences->Toolbars & menus"

  bug fixes:
    - title: "Server: Fix server becoming unresponsive if a client sends invalid SSL data at exactly the right moment"

    - title: "Conversion heuristics: Make unwrapping recognize Georgian letters as well."
      tickets: [1753533]

    - title: "Make de-serialization of stored conversion options safe against maliciously crafted input"
      tickets: [1753870]

    - title: "E-book viewer: Change the file format used to import/export bookmarks to use JSON. This prevents malicious bookmarks files from causing code execution."
      tickets: [1753870]

    - title: "Make the history completion for the search and replace edit box case-sensitive."
      tickets: [1752447]

    - title: "PDF Output: When the input document contains multiple anchors with the same value, use the first anchor rather than the last. This follows browser behavior."
      tickets: [1752825]

    - title: "FB2 Input: Add <div> to <blockquote> content to silence the useless epubcheck"
      tickets: [1752141]

  improved recipes:
    - WirtschaftsWoche Online
    - Spektrum der Wissenschaft

  new recipes:
    - title: Granta
      author: Gary Arnold

- version: 3.18.0
  date: 2018-02-23

  new features:
    - title: "Browser viewer: Allow long tapping a word to look it up in a dictionary or search the internet for it."
      tickets: [1738995]

  bug fixes:
    - title: "Conversion: Handle the deprecated type attribute on <ol> tags."
      tickets: [1751148]

    - title: "Fix metadata download from amazon stopped working because of a website change"

    - title: "Fix re-ordering of columns causing split book splitter state not being restored on restart"

    - title: "Fix errors when using strftime with unicode strings on non-utf-8 windows systems."
      tickets: [1749219]

    - title: "Split book view: Fix vertical scroll position of the two views getting out of sync after doing some searches."
      tickets: [1748739]

    - title: "Fix some edit widget appearing in the wrong place when editing in the right hand panel of the new split book list."
      tickets: [1748713]

    - title: "Portable build: Fix cache directory not always being auto-created"
      tickets: [1747887]

    - title: "Workaround for Qt 5.10 on Linux resetting the global font, preventing custom interface font settings from working"

  improved recipes:
    - New York Times
    - The Economist
    - Gosc
    - Various Uruguayan recipes


- version: 3.17.0
  date: 2018-02-09

  new features:
    - title: "Allow splitting the book list, by right clicking on the column headers and choosing 'Split the book list'"
      type: major
      description: "This is useful to 'lock' one or more columns in place so that they are always visible even when scrolling through other columns. Also, the split list has a separate right click menu which you can configure via Preferences->Toolbars and menus"

    - title: "Store temporary files used by the editor and viewer in the cache directory to try to prevent errors caused by 'file cleaner' programs deleting temporary files still in use"

  bug fixes:
    - title: "EPUB3 Input: Fix HTML covers and titlepages that are marked using the deprecated <guide> element not being recognized."
      tickets: [1746794]

    - title: "Bulk metadata edit: Fix regression in 3.13 that made it impossible to use the Force numbering checkbox for custom series"

    - title: "Conversion: Fix the valign attribute on <td> tags not being honored"

    - title: "E-book viewer: Fix the 'Copy' keyboard shortcut/context menu action not working on some Windows systems"
      tickets: [1477696]

    - title: "E-book viewer: Make the semi-transparent background for viewing metadata a little more opaque."
      tickets: [1745812]

  improved recipes:
    - New York Times
    - Le Devoir
    - New Statesman
    - London Review of Books
    - New York Post
    - LWN Weekly
    - Associated Press

  new recipes:
    - title: Computing
      author: Darko Miletic
2018-03-11 17:40:23 +00:00
gson
c9f648f1a8 misc/py-anita: update to 1.44
Changes since 1.42:

Disable optimization avoiding copies when installing from a file: URL
or local path, as it broke installation of source sets.

Deal with pexpect 4.3.1 requiring delayafterclose and
delayafterterminate to be set in two different places
(https://github.com/pexpect/pexpect/issues/462).

Support installing on disks with a corrupt or out-of-date MBR.

Log the command line arguments on startup.

- 1.43 released -

Log interactive mode input and output to the structured log file.

Add support for NetBSD/hpcmips targets, from Utkarsh Anand.
2018-03-08 16:43:40 +00:00
wiz
b0a56ec2b8 vimpager: follow redirect 2018-03-04 16:26:51 +00:00
bsiegert
9ab6e4ca7b Revbump all Go packages after Go 1.10 update. 2018-03-04 15:52:12 +00:00
wiz
edbcd50016 p5-Locale-Codes: update to 3.56.
Changes not documented.
2018-03-04 15:28:05 +00:00
ryoon
408be6394f Update to 6.0.2.1
Changelog:
Bugs fixed compared to 6.0.1 RC1:

    ofz#6112 wrong start off sets for korean KSC5601 table [Caolán McNamara]
    ofz#6173 check index before use [Caolán McNamara]
    ofz#6311 still problems with SdrEdgeObj listening to same obj at start as end [Caolán McNamara]
    ofz#6450 use the rule name, not the rule itself [Caolán McNamara]
    rhbz#1546997 [fix available][ALL_LANG except zh,ko] Text overlap observed in libreoffice applications on search bar [Caolán McNamara]
    tdf#51340 FILEOPEN: PPTX - Master-slide style-level line spacing not applied to line that has a different paragraph-level above paragraph spacing [Tamás Zolnai]
    tdf#72440 Function Wizard Range Selection Resulted in #REF Error [Laurent BP]
    tdf#80196 standardize color palette using mathematically generated colors [Gabor Kelemen]
    tdf#81475 (Writer-Toolbars-Revamp) [META] Revamp of Writer toolbars in 4.4+ [Yousuf Philips]
    tdf#83260 CRASH: autocorrect with change tracking halts LibreOffice [Fyodor Yemelyanenko, Michael Stahl]
    tdf#84678 FILEOPEN: .DOCX textbox margins incorrectly set in 4.4.x [Miklos Vajna]
    tdf#86661 Incorrect usage of ATK_ROLE_TEXT [Samuel Thibault]
    tdf#88802 Editing Labels - label wizard allows incomplete or erroneous field names to be inserted into layout window [ekuiitr]
    tdf#95192 SORTING Natural sorting not working with non-letter,non-number content [Eike Rathke]
    tdf#102374 Find & Replace - the \t wildcard is not parsed as a replacement string for some Find instances [Justin Luth]
    tdf#103919 Mailmerge e-mail does not send all merged documents [Alex McMurchy1917]
    tdf#105000 Palettes and color names are not localizable [Gabor Kelemen]
    tdf#105837 Wrong quotation marks for [*-CH] Swiss languages [Eike Rathke]
    tdf#107134 Filter navigator can not read operators. [Julien Nabet]
    tdf#107403 Icons wrongly scaled in hidpi screen for the borders toolbar control [Maxim Monastirsky]
    tdf#108005 Writer hangs several seconds after saving [Stephan Bergmann]
    tdf#108227 Table style is not highlighted in Stylist (F11 Right SideBar) [Jim Raykowski]
    tdf#112694 FILEOPEN: DOCX - Top margin imported incorrectly and header incorrectly activated [Miklos Vajna]
    tdf#112990 LO60master on macOS: crashing at start with OpenGL enabled [Xisco Fauli]
    tdf#113258 FILEOPEN: Text in shape in a docx document is misplaced (partially cut) when opening in LO [Miklos Vajna]
    tdf#113538 Bundle and use open source Hebrew fonts by default [Yousuf Philips]
    tdf#114299 Notebookbar Groupedbar not drawn (80%) after opening and closing Print Preview [Yousuf Philips]
    tdf#114676 Base Freezes on DB Connect() macro [Jan-Marek Glogowski]
    tdf#114756 Connector dialog includes 4 times the entry "standard connector" in dropdown [Caolán McNamara, Julien Nabet]
    tdf#114821 FILEOPEN PPTX: In some files bar chart data labels are incorectly positioned [Szymon Kłos]
    tdf#114833 Dutch locale: date input without year (pattern D-M) displays as dd-mm-yy, while with year (pattern D-M-Y) displays as ISO yyyy-mm-dd [Eike Rathke]
    tdf#114972 Notebookbar: Textbox item in Groupedbar Compact and Full not working [Yousuf Philips]
    tdf#115032 AutoCaption preference in options dialog should show Above as default position of table captions [Julien Nabet]
    tdf#115046 Autofilter is disabled prematurely [Eike Rathke]
    tdf#115242 FILEOPEN: RTF: Incorrect left indent [Miklos Vajna]
    tdf#115315 Editing: Cursor not in focus with new Calc/Writer document [Telesto]
    tdf#115382 Hungarian users need better access to apostrophe [László Németh]
    tdf#115383 writer can't open File from CD-ROM [Aron Budea]
    tdf#115430 Crash in: BindDispatch_Impl::statusChanged(com::sun::frame::FeatureStateEvent const&) [Maxim Monastirsky]
    tdf#115447 Missing Table Control and other icons in More Controls bar [Yousuf Philips]
    tdf#115483 implementation of 19.697 table:protection-key / 19.850 text:protection-key doesn't conform to ODF 1.2 [Michael Stahl]
    tdf#115493 matrix formula wrong calculation from names, also wrong saving of names [Eike Rathke]
    tdf#115506 FORMATTING: Crash in: XPropertyList::Count() when selecting "Pattern" button in "Background" tab in "Table Properties" window [Tamás Zolnai]
    tdf#115529 Image rotation is wrong for angles in range 181° to 359° [Armin Le Grand]
    tdf#115530 Conditional formatting isn't updated when formula is updated (XLSX) [Aron Budea]
    tdf#115569 CRASH: Trying to convert a table row to a text in a docx-document ( steps in comment 3) [Ashod Nakashian]
    tdf#115601 ImageMap UI: File type list item <Alle> is not translatable [Julien Nabet]
    tdf#115620 Performing of a Find Text operation Switches the Object Type of the “Navigate By” Drop-down Menu to “Repeat Search” [Jim Raykowski]
    tdf#115659 Apparmor profile for senddoc is broken [Olivier Tilloy]
    tdf#115661 same Elementary icons for different figures on Flowchart toolbar [andreas kainz]
    tdf#115710 Use of WEBSERVICE within a macro in CALC raises an "Illegal argument" exception [Eike Rathke]
    tdf#115719 DOCX import: lack of Word 2013-style increased spacing for paragraph with anchored objects [Miklos Vajna]
    tdf#115750 Hang when opening the Fontwork dialog LibO6.1.0.0+ [Caolán McNamara]
    tdf#115782 Writer uses the different rotation orientation for Draw format images and Writer images [Armin Le Grand]
    tdf#115783 Copy and paste in table: lost character formatting of original text [Miklos Vajna]
2018-03-03 22:30:51 +00:00
gdt
81a24cf528 proj: revbump of multiple depdendencies 2018-03-02 01:19:24 +00:00
ryoon
23b5ddfe02 Do not share NSS database files with Mozilla products. Bump PKGREVISION
In some case, cert8.db/key3.db/secmod.db in MDB format
from Mozilla Products causes crash on opening XML-based document.
Use LibreOffice own NSS database.
XML and PDF signing with X.509 certificate is not tested.
2018-03-01 03:25:06 +00:00
khorben
506fbe992e Revbump for packages depending on devel/libusb{,compat} 2018-02-27 23:56:07 +00:00
ryoon
9709593663 Fix typo in comment 2018-02-26 18:04:31 +00:00
wiz
0b8d64dd1c libkkc-data: update HOMEPAGE 2018-02-25 16:10:41 +00:00
adam
3eb1a18a46 stellarium: updated to 0.17.0
v0.17.0:
The major changes of this version:
* Added support for nomenclature of planetary surface (SOCIS 2017 project)
* Added improvements for AstroCalc tool
* Added improvements for Oculars plugin
* Added improvements for Exoplanets plugin
* Added INDI support for Telescope Control plugin
* Updated code and data
2018-02-23 11:29:38 +00:00
triaxx
7c1a26dae4 Update to 1.9
- Minor changes and fixes
- Add license
2018-02-21 15:12:00 +00:00
tsutsui
6617dcfe6d ruby-parallel: update to 1.12.1.
No upstream changelog.
2018-02-18 05:43:58 +00:00
ryoon
dffc857690 Update to 6.0.1.1
* Fix build with GCC 6.4 (PostgreSQL part)

Changelog:
Bugs fixed compared to 6.0.0 RC3:
    deb#887593 add #include <abstractions/X> to oosplash apparmor profile [Vincas Dargis, Rene Engelhard]
    ofz#4728 bad-cast [Caolán McNamara]
    ofz#4753 bad-cast [Caolán McNamara]
    ofz#4767 bad-cast [Caolán McNamara]
    ofz#4817 bad-cast [Caolán McNamara]
    ofz#4848 bad-cast [Caolán McNamara]
    ofz#4872 bad-cast [Caolán McNamara]
    ofz#4971 bad-cast [Caolán McNamara]
    ofz#5007 bad-cast [Caolán McNamara]
    ofz#5235 bad-cast [Caolán McNamara]
    ofz#5254 bad-cast [Caolán McNamara]
    ofz#5435 sw: fix SwCache::Insert() stale pointers [Michael Stahl]
    ofz#5447 on plcf save force current Fkp to stick in cache [Caolán McNamara]
    ofz#5477 if the para is already oversize, nums would go negative [Caolán McNamara]
    ofz#5535 max decimal places for rtl_math_round is 20 [Caolán McNamara]
    ofz#5747 short->sal_Int32 like in StgDataStrm [Caolán McNamara]
    ofz#5909 bad-cast [Caolán McNamara]
    ofz#6064 bad-cast [Caolán McNamara]
    rhbz#1367846 Scrolling is way too fast in writer [Caolán McNamara]
    rhbz#1535541 mimetypes are .macroEnabled not .macroenabled [Caolán McNamara]
    rhbz#1541486 Base table creation dialog window title is shown in different languages [Stephan Bergmann]
    tdf#32935 CSV import dialog doesn't get focus if libreoffice is already running [Mike Kaganski]
    tdf#38915 Multiple soffice.bin soffice.exe [Mike Kaganski]
    tdf#49134 On opening a password-protected file, the LibreOffice dialog is not raised/given focus [Mike Kaganski]
    tdf#70425 EDITING: Embedded Firebird - Copying integer values from Calc to Base impossible [Tamas Bunth]
    tdf#75256 (Icon-Theme-Sifr) [META] Incomplete Sifr icon theme [Matthias Freund]
    tdf#88004 mimetypes are .macroEnabled not .macroenabled [Caolán McNamara]
    tdf#94225 Writer crashes on undo times N (steps in Comment 11 or Comment 38) [Fyodor Yemelyanenko]
    tdf#95024 Support for new Hungarian orthography [László Németh]
    tdf#103174 Very laggy scrolling with trackpad on hidpi screens [Caolán McNamara]
    tdf#103550 JIS function [Winfried Donkers]
    tdf#104016 FILEOPEN: RTF incorrect bullets indentation and spacing [Miklos Vajna]
    tdf#105226 AM/PM locale for it_IT incorrect [Winfried Donkers]
    tdf#106780 FILESAVE, ODF: attribute text:style-name is invalid in table:table-template [Abhishek Shrivastava]
    tdf#108473 Inserting into a Form Table Control Date/Time (Time) field gets stuck [Julien Nabet]
    tdf#109062 Scrolling with touchpad or scrollwheel is not working on Mac [Caolán McNamara]
    tdf#112292 Memory usage is steadily increasing every time when copying something to the clipboard even with 0 undo steps [Noel Grandin]
    tdf#113751 Borders for Merged Cells are Partially Shown [Armin Le Grand]
    tdf#114045 Undo after Clone Formatting changes formatting of entire table [Mark Hung]
    tdf#114173 FILESAVE XLSX Custom size of chart legend is not preserved when the file is saved as XLSX [Caolán McNamara]
    tdf#114182 FILESAVE XLSX Pie chart slice moved back by LibreOffice Calc [Markus Mohrhard]
    tdf#114217 DOCX with floating table having 100% width incorrectly imported [Mike Kaganski]
    tdf#114221 Calc corrupts password-protected XLS on save (Save as works) - newer MSO 2013 encryption saved as unencrypted file with encryption mode [Caolán McNamara]
    tdf#114306 fix unexpected page break in row-spanned table [Manfred Blume]
    tdf#114428 XHTML import: xml declaration results in plain text import into Writer [Miklos Vajna]
    tdf#114460 Some embedded PDFs not exported to pdf [Miklos Vajna]
    tdf#114466 Certain Document in Use dialog does not get focus [Mike Kaganski]
    tdf#114519 Sidebar Number Format drop down does not update cell contents on number format selection change [Jim Raykowski]
    tdf#114596 External forms for a database doesn't save data - closing form with dataloss [Michael Stahl]
    tdf#114625 Calc can not print right border of merged cells from LO 6.0 [Armin Le Grand]
    tdf#114677 Base Form titles incorrect [Szymon Kłos]
    tdf#114731 Firefox themes cannot be installed, it finds nothing [Julien Nabet]
    tdf#114815 Crash in: take_gil on paste from clipboard in Windows [Michael Stahl]
    tdf#114820 FILEOPEN XLSX VLOOKUP/HLOOKUP gives Error:504, with a reference to an external xlsx file cells [Bartosz Kosiorek]
    tdf#114824 Export to PDF and Printing: Borders of Merged Cells Flow to Page Footer [Armin Le Grand]
    tdf#114901 UI: TSCP Classification dialog: too much vertical white space and Part list too wide [Tomaž Vajngerl]
    tdf#114934 (borderline-regressions) [META] borderline regressions [Armin Le Grand]
    tdf#115013 Merge fields aren't substituted after saving/reopening DOC(X) with added mail merge fields, and running mail merge [Mike Kaganski]
    tdf#115044 Calc asks to update links, but already updated them [Vasily Melenchuk]
    tdf#115057 Color picker widget border missing when opened in dialog [Maxim Monastirsky]
    tdf#115065 Crash when dragging table with many rows to a table with less rows [Mike Kaganski]
    tdf#115080 Replace with Pattern Field misbehaves when editing a form's table control [Caolán McNamara]
    tdf#115088 Pasting multi-line text from external source behaves strangely [Tamás Zolnai]
    tdf#115090 Crashes when closing the document running the macro (itself) [Thorsten Behrens]
    tdf#115100 Assertion failed, if I set vertical align for gluepoint [Julien Nabet]
    tdf#115106 Screen corruption in Writer in FullScreen mode. (gtk2) [Caolán McNamara]
    tdf#115153 FILEOPEN: RTF: Incorrect vertical position of lines (follow-up) [Michael Stahl]
    tdf#115155 FILEOPEN: RTF: left indent is lost in second list [Miklos Vajna]
    tdf#115162 FILEOPEN XLSX SUMIFS, AVERAGEIFS, COUNTIFS, MAXIFS, MINIFS functions give Error:504, with reference to external xlsx files cells [Bartosz Kosiorek]
    tdf#115169 Calc: Rotated Cells not shown rotated when using Print/PDF/PrintPreview [Armin Le Grand]
    tdf#115208 Apparmor profile doesn't allow java execution [Olivier Tilloy]
    tdf#115221 PRINTING: CRASH immediately after choosing comment (+doc) printing in the print dialog [Noel Grandin]
    tdf#115269 LO Base Report Builder crashes on modifying Page Header Horizontal or Vertical alignment [Julien Nabet]
    tdf#115369 Icons for the cell's shadows positions are inverted [Caolán McNamara]
    tdf#115416 LibreOffice fails to build with IJG's libjpeg - error: ‘JCS_EXT_BGRA’ was not declared in this scope [Caolán McNamara]
2018-02-13 13:03:06 +00:00
wiz
8dc69f3e25 labelnation: follow redirect 2018-02-11 15:45:50 +00:00
khorben
b69741eca1 Import global switch for libusb's implementation [2/2]
This switch is meant to be used by packages requiring an implementation of the
former libusb (as in devel/libusb). The original implementation can be
chosen by setting LIBUSB_TYPE to "native".

The alternative implementation libusb-compat (as in devel/libusb-compat) wraps
libusb1 (in devel/libusb1). This implementation can be chosen by setting
LIBUSB_TYPE to "compat". On NetBSD, it has the advantage of not requiring root
privileges to locate and use USB devices without a kernel driver.

This second part switches packages using libusb to this framework. It does not
change compilation options or dependencies at this point.

Compile-tested on most packages affected and available on NetBSD/amd64.
2018-02-10 13:53:46 +00:00
jperkin
e54cefee7e kde: SUBST_STAGE should be pre-configure, not post-patch.
Performing substitutions during *-patch phases makes it impossible to
generate patches via mkpatches without introducing substitution noise.
2018-02-07 15:35:09 +00:00
jperkin
ca12c28cbb gnome-utils: Set _XOPEN_SOURCE correctly. 2018-02-06 10:39:46 +00:00
jperkin
d6d4bdcf77 mdp: Requires wide curses. 2018-02-06 10:14:29 +00:00
jperkin
77a9abf523 mate-utils: Set _XOPEN_SOURCE correctly. 2018-02-06 10:07:23 +00:00
ryoon
692c24adbb Re-add accidentally removed conditional PLIST entries for gtk3 option.
And kde4/qt4 option also recovered, however it is not tested.
Noticed by pgoyette@. Thank you.
2018-02-03 05:28:49 +00:00
ryoon
d066df58d5 Update to 6.0.0.3
Changelog:
Many improvements including:
In Writer:
* Improved input fields
* Support images rotation
* As mail merge source
* New table styles
* "Grammar by" spell checking

In Calc:
* Improvement of pivot table
* Export cell range to PNG or JPEG
* Pasting unformatted text
* Protection of cells and sheets
* Some new spreadsheet functions

In Impress and Draw
* Add new Impress templates
* New layers in draw operations
2018-02-03 00:39:50 +00:00
wiz
f38c9f1288 calibre: update to 3.16.0.
Lots of changes since 2.x, too many to list here.
(2.x does not build against current qt5...)
2018-02-01 16:05:56 +00:00
jperkin
fafb2677b3 screen: Support newer GCC and clang on SunOS. 2018-02-01 13:34:33 +00:00
mef
56d6f99da5 Add/Modify patches for building with emacs-27 2018-02-01 11:21:58 +00:00
markd
400dc18372 attica-qt5: SUBST rather than patch 2018-01-30 07:52:36 +00:00
adam
57c989858e Pass correct TAR variable to configure 2018-01-29 11:17:46 +00:00
wiz
bff4597ffc Bump PKGREVISION for gdbm shlib major bump 2018-01-28 20:10:34 +00:00
wiz
15e349efdd goffice0.10: update to 0.10.38.
goffice 0.10.38:

Morten:
	* Avoid a few dubious uses of deprecated gtk+ functions.
	* Reduce number of compiler warnings.

--------------------------------------------------------------------------
goffice 0.10.37:

--------------------------------------------------------------------------
goffice 0.10.36:

Jean:
	* Fix engineering format. [#785669]
	* Fix crash in 3D plots when X or Y values are missing. [#788437]
	* Don't use invalid styles in legend from contour or surface plots imported
	from Excel. [#788861]
	* Fix documentation build with recent gtk-doc. [#788710]
2018-01-28 17:09:31 +00:00
wiz
e44e72cd40 todoman: update to 3.3.0.
v3.3.0
------

* New runtime dependency: ``click-log``.
* Drop support for Python 3.3, which has reached its end of life cycle.
* Add `--raw` flag to `edit`. This allows editing the raw icalendar file, but
  **only use this if you really know what you're doing**. There's a big risk of
  data loss, and this is considered a developer / expert feature!
2018-01-28 16:43:53 +00:00
wiz
58a2a977a7 recursive bump after mpfr shlib major bump 2018-01-28 16:24:10 +00:00
wiz
ac1257076f khard: update to 0.12.2.
v0.12.0: 2018.01.12
- Vcard: Support for anniversary attribute (#138)
- Config: New config parameter: localize_dates (#118)
- Action list: -p / --parsable prints a tab separated contact list (#141)
- Action remove: --force: Remove contact without confirmation (#140)
- Mutt: You have to update the query command in mutt's config file: set query_command= "khard email --parsable '%s'"
- Minor changes in khard example config, zsh completion function and twinkle scripts
- Fix: Results of phone number search improved
- Fix: Yaml parser switched from pyyaml to ruamel.yaml to allow special unicode characters in the contact template (#133)
- Fix: Accentuated characters sorted wrong in contact list (#127)

v0.12.1: 2018.01.14
- Fix for issue #148: Config variable "sort" not longer mandatory in config file

v0.12.2: 2018.01.21
- Fixed: Found contact twice when the whole uid was used with -u (#161)
- Fixed: A minor bug in the contact search function (#160)
2018-01-28 15:57:33 +00:00
markd
21bfd1cd25 attica-qt5: install attica.categories properly 2018-01-27 03:32:16 +00:00
jperkin
c3f1415a0e attica: Fix namespace issue for clang. 2018-01-26 15:16:29 +00:00
markd
e9c46ca027 kf5: strip -fvisibility=hidden in all kf5 packages
as it breaks the plugin mechanism due to not being able to
resolve various symbols
2018-01-24 19:06:06 +00:00