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 (1h)  pkgsrc-2024Q1 (9d)  pkgsrc-2023Q4 (56d)  pkgsrc-2023Q2 (88d)  pkgsrc-2023Q3 (168d) 

2024-05-26 21:45:25 UTC Now

2019-12-15 12:20:43 UTC MAIN commitmail json YAML

Add new license file, s/isc/AHUTOR/g equivalent of isc

(mef)

2019-12-15 11:51:55 UTC MAIN commitmail json YAML

Updated misc/gnuls to 8.31
Updated sysutils/coreutils to 8.31

(mef)

2019-12-15 11:49:28 UTC MAIN commitmail json YAML

(sysutils/coreutils, misc/gnuls) Updated from 8.29 to 8.31

----------------------------------------------------------------
* Noteworthy changes in release 8.31 (2019-03-10) [stable]

** Bug fixes

  'base64 a b' now correctly diagnoses 'b' as the extra operand, not 'a'.
  [bug introduced in coreutils-5.3.0]

  When B already exists, 'cp -il A B' no longer immediately fails
  after asking the user whether to proceed.
  [This bug was present in "the beginning".]

  df no longer corrupts displayed multibyte characters on macOS.
  [bug introduced with coreutils-8.18]

  seq no longer outputs inconsistent decimal point characters
  for the last number, when locales are misconfigured.
  [bug introduced in coreutils-7.0]

  shred, sort, and split no longer falsely report ftruncate errors
  when outputting to less-common file types.  For example, the shell
  command 'sort /dev/null -o /dev/stdout | cat' no longer fails with
  an "error truncating" diagnostic.
  [bug was introduced with coreutils-8.18 for sort and split, and
  (for shared memory objects only) with fileutils-4.1 for shred]

  sync no longer fails for write-only file arguments.
  [bug introduced with argument support to sync in coreutils-8.24]

  'tail -f file | filter' no longer exits immediately on AIX.
  [bug introduced in coreutils-8.28]

  'tail -f file | filter' no longer goes into an infinite loop
  if filter exits and SIGPIPE is ignored.
  [bug introduced in coreutils-8.28]

** Changes in behavior

  cksum, dd, hostid, hostname, link, logname, sleep, tsort, unlink,
  uptime, users, whoami, yes: now always process --help and --version options,
  regardless of any other arguments present before any optional '--'
  end-of-options marker.

  nohup now processes --help and --version as first options even if other
  parameters follow.

  'yes a -- b' now outputs 'a b' instead of including the end-of-options
  marker as before: 'a -- b'.

  echo now always processes backslash escapes when the POSIXLY_CORRECT
  environment variable is set.

  When possible 'ln A B' now merely links A to B and reports an error
  if this fails, instead of statting A and B before linking.  This
  uses fewer system calls and avoids some races.  The old statting
  approach is still used in situations where hard links to directories
  are allowed (e.g., NetBSD when superuser).

  ls --group-directories-first will also group symlinks to directories.

  'test -a FILE' is not supported anymore.  Long ago, there were concerns about
  the high probability of humans confusing the -a primary with the -a binary
  operator, so POSIX changed this to 'test -e FILE'.  Scripts using it were
  already broken and non-portable; the -a unary operator was never documented.

  wc now treats non breaking space characters as word delimiters
  unless the POSIXLY_CORRECT environment variable is set.

** New features

  id now supports specifying multiple users.

  'date' now supports the '+' conversion specification flag,
  introduced in POSIX.1-2017.

  printf, seq, sleep, tail, and timeout now accept floating point
  numbers in either the current or the C locale.  For example, if the
  current locale's decimal point is ',', 'sleep 0,1' and 'sleep 0.1'
  now mean the same thing.  Previously, these commands accepted only
  C-locale syntax with '.' as the decimal point.  The new behavior is
  more compatible with other implementations in non-C locales.

  test now supports the '-N FILE' unary operator (like e.g. bash) to check
  whether FILE exists and has been modified since it was last read.

  env now supports '--default-signal[=SIG]', '--ignore-signal[=SIG]', and
  '--block-signal[=SIG], to setup signal handling before executing a program.

  env now supports '--list-signal-handling' to indicate non-default
  signal handling before executing a program.

** New commands

  basenc is added to complement existing base64,base32 commands,
  and encodes and decodes printable text using various common encodings:
  base64,base64url,base32,base32hex,base16,base2,z85.

** Improvements

  ls -l now better aligns abbreviated months containing digits,
  which is common in Asian locales.

  stat and tail now know about the "sdcardfs" file system on Android.
  stat -f -c%T now reports the file system type, and tail -f uses inotify.

  stat now prints file creation time when supported by the file system,
  on GNU Linux systems with glibc >= 2.28 and kernel >= 4.11.
----------------------------------------------------------------
* Noteworthy changes in release 8.30 (2018-07-01) [stable]

** Bug fixes

  'cp --symlink SRC DST' will again correctly validate DST.
  If DST is a regular file and SRC is a symlink to DST,
  then cp will no longer allow that operation to clobber DST.
  Also with -d, if DST is a symlink, then it can always be replaced,
  even if it points to SRC on a separate device.
  [bugs introduced with coreutils-8.27]

  'cp -n -u' and 'mv -n -u' now consistently ignore the -u option.
  Previously, this option combination suffered from race conditions
  that caused -u to sometimes override -n.
  [bug introduced with coreutils-7.1]

  'cp -a --no-preserve=mode' now sets appropriate default permissions
  for non regular files like fifos and character device nodes etc.,
  and leaves mode bits of existing files unchanged.
  Previously it would have set executable bits on created special files,
  and set mode bits for existing files as if they had been created.
  [bug introduced with coreutils-8.20]

  'cp --remove-destination file symlink' now removes the symlink
  even if it can't be traversed.
  [bug introduced with --remove-destination in fileutils-4.1.1]

  ls no longer truncates the abbreviated month names that have a
  display width between 6 and 12 inclusive.  Previously this would have
  output ambiguous months for Arabic or Catalan locales.

  'ls -aA' is now equivalent to 'ls -A', since -A now overrides -a.
  [bug introduced in coreutils-5.3.0]

  'mv -n A B' no longer suffers from a race condition that can
  overwrite a simultaneously-created B.  This bug fix requires
  platform support for the renameat2 or renameatx_np syscalls, found
  in recent Linux and macOS kernels.  As a side effect, ���mv -n A A���
  now silently does nothing if A exists.
  [bug introduced with coreutils-7.1]

** Changes in behavior

  'cp --force file symlink' now removes the symlink even if
  it is self referential.

  ls --color now matches file extensions case insensitively.

** New features

  cp --reflink now supports --reflink=never to enforce a standard copy.

  env supports a new -v/--debug option to show verbose information about
  each processing step.

  env supports a new -S/--split-string=S option to split a single argument
  string into multiple arguments. Used to pass multiple arguments in scripts
  (shebang lines).

  md5sum accepts a new option: --zero (-z) to delimit the output lines with a
  NUL instead of a newline character.  This also disables file name escaping.
  This also applies to sha*sum and b2sum.

  rm --preserve-root now supports the --preserve-root=all option to
  reject any command line argument that is mounted to a separate file system.

** Improvements

  cut supports line lengths up to the max file size on 32 bit systems.
  Previously only offsets up to SIZE_MAX-1 were supported.

  stat and tail now know about the "exfs" file system, which is a
  version of XFS.  stat -f --format=%T now reports the file system type,
  and tail -f uses inotify.

  wc avoids redundant processing of ASCII text in multibyte locales,
  which is especially significant on macOS.

(mef)

2019-12-14 14:36:37 UTC MAIN commitmail json YAML

doc: Updated math/p5-Algorithm-Cluster to 1.59

(mef)

2019-12-14 14:36:06 UTC MAIN commitmail json YAML

(math/p5-Algorithm-Cluste) Updated from 1.57 to 1.59, ChangeLog unknown

(mef)

2019-12-14 01:26:35 UTC MAIN commitmail json YAML

doc: Updated audio/pianobar to 2019.02.14

(mef)

2019-12-14 01:26:11 UTC MAIN commitmail json YAML

(audio/pianobar) Updated  from 2017.08.30 to 2019.02.14

Release 2019.02.14
- Fix MP3 playback (affects premium subscribers with audio quality Release 2019.01.25
- Implement audio buffering

Release 2018.06.22
- Happy 10th birthday pianobar!
- Add network timeouts and retries
- Fix cross-thread memory access
- Misc UI and documentation improvements

(mef)

2019-12-14 01:19:08 UTC MAIN commitmail json YAML

doc: Updated audio/p5-MusicBrainz-DiscID to 0.06

(mef)

2019-12-14 01:18:45 UTC MAIN commitmail json YAML

(audio/p5-MusicBrainz-DiscID) Updated from 0.04 to 0.06

0.06  Mon  7 Oct 2019 23:32:36 BST
  - Changed license to MIT

(mef)

2019-12-14 01:01:38 UTC MAIN commitmail json YAML

doc: Updated fonts/ttf-tlwg to 0.7.1

(mef)

2019-12-14 01:01:16 UTC MAIN commitmail json YAML

(fonts/ttf-tlwg) Updated from 0.6.4 to  0.7.1

Fonts-TLWG 0.7.1 Released
Submitted by thep on 4 November, 2018 - 16:18

  - Address another reproducibility issue caused by "date stamp" in
    auto-generated UniqueID.
  - Automate font binary tarballs building, with additional ZIP provision.

Fonts-TLWG 0.7.0 Released
Submitted by thep on 26 October, 2018 - 14:32

  - Build fonts reproducibly, thus new major version due to source
    restructuring.
  -  Generate OTF by default instead of TTF.
  -  LaTeX: Provide OpenType fonts for XeTeX.
    (Issue #6. Thanks Abhabongse Janthong for the suggestion.)
  -  Fix bug in GSUB rule.
    (Issue #7. Thanks @Richard57 for the report and investigation.)
  -  Norasi: Fix Fontforge warnings and substitution rules.

Fonts-TLWG 0.6.5 Released
Submitted by thep on 24 April, 2018 - 12:57

  -  Convert source files to recent Fontforge format.
  -  Move fontconfig templates to /usr/share/fontconfig, according to recent
    fontconfig change.
  -  Normalize TTFWeight for non-bold, non-light fonts, so some apps like
    EditPad can classify the weight correctly.
    (Thanks @alysdexia for the report in Issue #5.)
  - Add missing Latin ligatures to Laksaman, to fullfill LaTeX typesetting.
    (Thanks Kittipitch Meesawat for the report in a KKLUG meeting.)

(mef)

2019-12-14 00:47:26 UTC MAIN commitmail json YAML

doc: Updated fonts/public-sans to 1.007

(mef)

2019-12-14 00:47:01 UTC MAIN commitmail json YAML

(fonts/public-sans) Updated 1.0.0 to 1.007

Public Sans v1.007
@thisisdano thisisdano released this Nov 14, 2019 · 1 commit to master since
this release

General
  - Rewrite type test to better test unusual combinations
  - Remove AFM files for simplicity
  - Rename fonts to binaries
  - Keep UFOs and designspace files in src
  - Move Glyphs files to src/glyphs
  - Update test strings
  - Add Google Analytics code to site
  - Update dependencies
  - Remediate package vulnerabilities in gulp-notify
  - Update and clarify Public Sans license

Metadata
  - Update description
  - Remove trademark metadata
  - Update copyright and designer information

Metrics changes
  - Changed ascender height to 1900

  Parameter  v1.006 v1.007
Ascender      2000  1900
typoAscender  2000  1900
hheaAscender  2000  1900

Kerning and spacing
  - Normalized sidebearings to multiples of 5
  - Used sidebearing groups more consistently
  - Improve Æ spacing
  - Improve kerning of the following: s|s, t|t, g|g, r|g, E|t, V|[a,e], R|e,
    'P'|'e'
  - Fix spacing around U
  - Set width of the colonsign.tf to 1400
  - Use 600 width for tf punctuation
  - Rebalance roman tabular figures
  - Use components for .tf numbers and rebalance

Glyphs
  - Widen H
  - Redraw Þ
  - Add and synchronize italic tabular figs
  - Add currency to tabular figures
  - Align diacritics
  - Fix faulty dot accents
  - Fix italic i
  - Square terminals and regularize shapes in s,e,c
  - Update italic æ and Æ
  - Update italic œ and Œ

Public Sans v1.006
@thisisdano thisisdano released this Jul 18, 2019 · 94 commits to master since
this release

  - Adds a new python-based build script for generating webfonts and variable
    fonts. Use /.build.sh from the project directory. Based on https://
    github.com/thundernixon/googlefonts-qa-template/blob/master/sources/
    build.sh
  - Moves to 2000 UPM
  - Adjusts kerning overall
  - Improves vertical metrics
  - Rounds counters in b, d, p, and q glyphs
  - Widens o and e glyphs
  - Narrows s glyph
  - Slightly squares curves in rounded lowercase thin glyphs
  - Squares counters on S and C glyphs
  - Aligns C and G glyph upper terminals
  - Improves output of variable fonts
  - Outputs better binaries for Font Bakery (https://github.com/googlefonts/
    fontbakery)

Public Sans v1.005
@thisisdano thisisdano released this Jun 6, 2019 · 108 commits to master since
this release

  - Redraws eth character
  - Improves Vietnamese diacritics with better positioning and shape
  - Fixes bad masters that resulted in faulty interpolation in fractions and
    some math characters
  - Improves spacing of caron.alt–related glyphs

Public Sans v1.004
@thisisdano thisisdano released this Jun 3, 2019 · 115 commits to master since
this release

  - Improved kerning
  - Improved hinting and rendering on Windows
  - Improved fractions and subscript/superscript numerals
  - Improved spacing for hyphens and em/en dashes
  - Fixes the colón character

Public Sans v1.003
@thisisdano thisisdano released this May 7, 2019 · 129 commits to master since
this release

  - Address some spacing regressions in v1.002
  - Thicken regular weight to 365 from 350
  - Adds explicit underline metadata to address a rendering quirk in Firefox

Public Sans v1.002
@thisisdano thisisdano released this May 6, 2019 · 136 commits to master since
this release

This release tries to simplify the kerning and spacing and make both easier to
maintain. There may be some small spacing regressions as we evaluate this
version in production and continue to update.

  - Added 'okina character
  - Improved appearance and spacing of diacritic glyphs — especially Czech,
    Slovak, and Vietnamese
  - Improved consistency between roman and italic
  - Upscaled to 2000 UPM
  - Use 100-900 as range for variable font output
  - Rebalanced numbers
  - Improved kerning in fractions
  - Corrected some spacing issues in tabular figures, especially in italic
    tabular figures
  - Adjusted position of hcircumflex
  - Removed spur from eszett
  - Simplified spacing and kerning
  - Updated and made better use of sidebearing groups
  - Updated and made better use of kerning groups

(mef)

2019-12-13 15:05:56 UTC MAIN commitmail json YAML

Updated fonts/p5-Font-FreeType to 0.13

(mef)

2019-12-13 14:57:51 UTC MAIN commitmail json YAML

(fonts/p5-Font-FreeType) Updated to 0.13

0.13 2018-10-19 dmol@cpan.org
- update tests, as freetype changed font metrices under hood

(mef)

2019-12-13 14:53:10 UTC MAIN commitmail json YAML

doc: Updated fonts/cantarell-fonts to 0.111

(mef)

2019-12-13 14:52:48 UTC MAIN commitmail json YAML

(fonts/cantarell-fonts) Updated 0.025 to 0.111

0.111
- Fix the wrongly assigned OS/2 weight class values that e.g. led to Extra Bold
  being selected when Bold was requested.

0.110
- Space everything a little bit tighter.
- Scale down whiteCircle and blackCircle by 50%, makes password dots smaller.
- Tweak feet of one.lf slightly for a more even appearance.
- Revise lcaron, dcaron and tcaron for collision-free rendering even at bold
  weight. Will need kerning later.
- Add draft of Cyrillic (GF Cyrillic Plus set), to be improved.
- Equalize advance width of period, comma, colon, semicolon.
- Build packages with prebuilt fonts baked in.
- New contributed AppStream metadata translations for Slovak (Dušan Kazik),
  Slovenian (Matej Urbančič), Russian (Stas Solovey) and Chinese China
  (Dingzhong Chen).

0.101
- Countless detail updates to various glyphs
- Added contributed AppStream metdata translations for Polish (Piotr Drąg),
  French (Claude Paroz), Indonesian (Kukuh Syafaat), Galician (Fran Dieguez),
  Occitan (Cédric Valmary), Chinese Taiwan (Cheng-Chia Tseng), Spanish (Daniel
  Mustieles), Catalan (Adolfo Jayme), Croatian (gogo), German (Tim Sabsch),
  Dutch (Nathan Follens), Turkish (Emin Tufan Çetin), Serbian (Марко Костић),
  Serbian Latin (Marko Kostić), Hungarian (Gabor Kelemen), Korean (DaeHyun
  Sung), Czech (Marek Černocký), Lithuanian (Aurimas Černius), Danish (Ask
  Hjorth Larsen), Italian (Gianvito Cavasoli), Romanian (Daniel Șerbănescu),
  Punjabi (A S Alam), Latvian (Rūdolfs Mazurs), Swedish (Anders Jonsson),
  Icelandic (Sveinn í Felli), Greek (Efstathios Iosifidis)

0.100
- Redesigned from scratch to interpolate cleanly from thin to extra bold.
  Currently targets the Google Fonts Latin Core and Pro glyph sets.
- Added contributed AppStream metdata translations for Brazilian Portugese
  (Rafael Fontenelle), Friulian (Fabio Tomat) and Finnish (Jiri Grönroos).

(mef)

2019-12-13 14:41:53 UTC MAIN commitmail json YAML

doc: Updated fonts/Inter-UI to 3.11

(mef)

2019-12-13 14:41:31 UTC MAIN commitmail json YAML

(fonts/Inter-UI) Updated from 2.5 to 3.11. ChangeLog collected from github.com page

v3.11
@rsms rsms released this Oct 23, 2019 · 15 commits to master since this release

  - Fixes issue (regression) with variable font where certain glyphs would
    slant in the wrong direction. #198
  - Fixes issue (regression) with variable font where version metadata would be
    wrong. #202
  - Fixes codepoint mapping for /copyleft glyph. #203
  - Improves metadata of variable fonts. “fullName” name table entry is now
    “Inter” instead of “Inter Regular”.
  - New alternate-named variable font “Inter V”. With a different family name,
    this is useful for when you want to install the variable version alongside
    traditional static font files.
  - Improvements to /backslash glyph

v3.10
@rsms rsms released this Sep 7, 2019 · 35 commits to master since this release
Release 3.10 is a mix of new glyphs & glyph changes, and adjustments & fixes.

New glyphs:

  - blackSquare (U+25A0)
  - whiteSquare (U+25A1)
  - whiteRoundedCornersSquare (U+25A2)
  - lowerHalfWhiteSquare (U+2B12)
  - topHalfWhiteSquare (U+2B13)
  - downWhiteTriangle (U+25BD)
  - upWhiteTriangle (U+25B3)
  - leftWhiteTriangle (U+25C1, U+25C5)
  - rightWhiteTriangle (U+25B7, U+25BB)

Other notable changes:

  - Fixes alignment issue with otilde U+00F5. #191
  - Improvements to contextual alternates (calt), primarily reducing the cases
    where case substitution is unwanted. #193
  - Adjustments to the following whitespace glyphs: zerowidthspace, hairspace,
    thinspace, punctuationspace, enspace, emspace, sixthemspace,
    quarteremspace, thirdemspace and figurespace. #185
  - Improvements to ogonek-based diacritics.
  - Refinements and improvements to fractions (both dedicated glyphs and
    arbitrary frac parts)
  - Kerning improvements to all weights
  - Progress on mark and mkmk “dynamic diacritics”

v3.9
@rsms rsms released this Aug 7, 2019 · 58 commits to master since this release

Fixes an issue with metadata where Medium, Semi Bold, and Extra Bold would
incorrectly be marked as “italic” which would confuse certain software.

v3.8
@rsms rsms released this Aug 5, 2019 · 62 commits to master since this release

  - Possibly breaking change: Variable italic axis (really, slnt axis) has been
    inverted (negated) — a negative value causes the text to lean rightwards.
    This is only a breaking change if you are using the multi-axis variable
    font (Inter.var) and define slant angle using high-level CSS properties
    like font-style. This change was done to comply with the convention defined
    in the OpenType spec. #175 #172
  - Variable font files are now significantly smaller thanks to #171 and #169
      □ Inter.var.woff2 v3.7: 393kB, v3.8: 306kB
      □ Inter-upright.var.woff2 v3.7: 267kB, v3.8: 224kB
      □ All this while v3.8 introduces a whole new set of glyphs, kerning and
        feature code.
  - Adds several new glyphs, like double-stemmed arrows and enclosed
    alphanumerics & symbols
      □ Warning sign #168
      □ Copyleft symbol #165
      □ Really long arrows, useful in ligatures like --->
      □ Arrows with double-lined stems, useful for “assign to”, with ligatures
        defined for some combinations with equals, e.g. =>
      □ Enclosed glyphs in circles and squares
  - Fixes a bug where U+0430 Cyrillic lower-case a would not be substituted for
    a single-storey “a” with cv11 enabled. #179
  - Fixes a bug with slant of Ͽ (U+03FF) #170 #169
  - Some calt code has moved to liga (standard ligatures), specifically arrow
    ligatures. Automatic case alignment is still kept in calt. So, you can now
    disable calt to disable only case alignment, and disable liga to only
    disable arrow ligatures.
  - Improvements to kerning, spacing and letterform details
  - Improved Microsoft Windows installation instructions #173

v3.7
@rsms rsms released this May 31, 2019 · 103 commits to master since this
release

  - Fixes an issue with spacing to the right of capital "M"
  - Improves positioning of various bullet glyphs
  - Improved kerning
  - new copyright glyph U+00A9
  - new published (aka sound recording copyright) glyph U+2117
  - new registered sign glyph U+00AE
  - release now contains installation instructions for Linux

v3.6
@rsms rsms released this May 27, 2019 · 123 commits to master since this
release

  - Fixes an issue related to ttfautohint where lower case "r" would be grid
    fitted incorrectly by ClearType on Microsoft Windows #119
  - Fixes an issue with using case and calt features in combination where arrow
    combinations like -> would not be substituted by arrow glyphs #161
  - Fixes an issue with rightArrow of bolder weights in italic #154
  - Adjusts the glyph width of "bullet" to be exactly two "space" glyphs wide,
    allowing easy ad-hoc list creation with wrapping lines
  - Improved kerning for a.1 (alternate single-storey "a")

v3.5
@rsms rsms released this Apr 2, 2019 · 139 commits to master since this release

This is a very small incremental change from v3.4 that mainly contains improved
metrics metadata for some macOS applications, improving vertical alignment.

v3.4
@rsms rsms released this Apr 1, 2019 · 144 commits to master since this release

Lots of changes in this release.

Highlights include:

  - Workaround for bug with some Apple software (including Sketch) where the
    computed line height of the Regular weight would be too tall
  - Several new symbol glyphs, especially in the technical area (e.g. computer
    keyboard symbols)
  - Single-storey a
  - Lots of improvements to diacritics

Some interesting commits since v3.3:

  - 9084323 slight increase of slant of /numbersign
  - e903526 remove slant from /degree
  - c130c69 misc documentation on variable font usage
  - 794662c fixes issues with calt substitution ignore rule
  - 1abaae4 fixes issue with shapes of a.1
  - aa2a3fe adds single-storey a
  - e605458 fix issue with x paths and adds blackstar U+2605, whitestar U+2606
  - ccc994e swap one <-> one.ss01
  - 3b9675e improvements to calt and arithmetic glyphs (e.g. plus, multiply,
    etc.)
  - 56e2c75 Swaps r.1 <-> r + rips out calt r.1 code + adds ss03 for "r curves
    into corund neighbors"
  - dddf6d2 Fixes kerning of pair /v/idotless -- closes #143
  - 1dbc8fd Change vertical metrics to make Apple ATS work properly. New
    ascender value: 2728, new descender value: -680
  - e1d8712 reworked commaaccent
  - fb79b9e Use vert metrics script to fix line heights issue #124 (#141)
  - 3488601 Adds 'Version ' prefix to nameID 5 version string, per MS OT spec (
    #140)
  - 70f3df7 Fixup STAT tables of single-axis variable fonts to aid desktop apps
    (style linking). Related to #142
  - 35a2362 Adds --name option to "fontbuild compile-var" for customizing
    family name, useful for producing variable font files with a different name
    than the constant files so they can be installed alongside each other.
    Closes #144
  - 20aaab6 Change version encoding in font files to match common zero-padded
    version to allow FontBakery to be happy. Closes #138
  - 1208ea9 adds returnsymbol U+23CE
  - 610b997 Adds several "technical" glyphs
  - a503c5a Adds glyphs leftHookArrow, upWhiteArrow, upBlackArrow, control,
    option, deleteleft, deleteright
  - 9f176ab improved placeofinterestsign U+2318
  - 0b8f63c Fix and improve paths (mostly order) of several glyphs
  - 6cf0980 redraws and adds paragraphreversed, blackleftbullet,
    blackrightbullet and .case versions
  - a1a1288 redrawn seagullsubnosp U+033C (also fixes bad paths)
  - 181ba19 fixes paths of uni0346 (COMBINING BRIDGE ABOVE)
  - 528f843 improvements to grave, acute, dblgrave and tonos diacritics
  - 6ef7b3e disable exporting of debug glyph uniE001
  - 162519e update panose metadata
  - 034a240 fixes missing "-BETA" filename suffix in the demo CSS file included
    with dists
  - a99328b Upgrade toolchain. glyphsLib 3.2.0b2 -> 3.2.0; fontmake 1.8.0 ->
    1.9.1
  - a0af904 workaround for bug in Safari where contextual sub in liga causes
    kerning to fail. Moves "r" ligature to calt to work around this bug.

v3.3
@rsms rsms released this Feb 4, 2019 · 203 commits to master since this release

Inter UI is now called simply Inter, without the "UI" part.

  - New name
  - Lots of diacritic improvements
  - Beta-grade light styles are now suffixed " BETA" to make it extra clear
    that these are in development
  - Many many changes; several new glyphs, lots of redrawn glyphs, lots of
    kerning improvements, etc.

v3.2
@rsms rsms released this Jan 4, 2019 · 276 commits to master since this release

  - Now includes lighter weights ([100–400); which are of beta quality and
    needs testing)
  - Lots of improvements to other weights (diacritics, glyph shapes, kerning,
    etc.)

This release is a big one in terms of source changes, adding up to 14,117
changed files with 714,886 additions and 259,287 deletions, since v3.1.

PDF glyph charts:

  - Inter-UI-Thin-BETA-glyphs.pdf
  - Inter-UI-ThinItalic-BETA-glyphs.pdf
  - Inter-UI-Regular-glyphs.pdf
  - Inter-UI-Italic-glyphs.pdf
  - Inter-UI-Black-glyphs.pdf
  - Inter-UI-BlackItalic-glyphs.pdf

(mef)

2019-12-11 15:10:48 UTC MAIN commitmail json YAML

doc: Updated audio/pavucontrol to 4.0

(mef)

2019-12-11 15:10:23 UTC MAIN commitmail json YAML

(audio/pavucontrol) Updated 3.0 to 4.0

  Tue Mar 5 2019:
  [11]Version 4.0 released. Changes:
    * There can now be only one pavucontrol window open at a time. Trying
      to start pavucontrol for a second time brings the first window to
      foreground.
    * Added a "Show volume meters" checkbox to the Configuration tab.
      Disabling the volume meters reduces CPU use.
    * Improve the use of space (remove useless margins and paddings).
    * Use a more appropriate icon for the channel lock button.
    * Better channel label layout, prevents volume sliders from getting
      unaligned.
    * Maximum latency offset increased from 2 to 5 seconds to accommodate
      AirPlay devices that often have higher latency than 2 seconds (this
      is not that useful on newer PulseAudio versions, though, because
      the latency is reported much more accurately than before).
    * New --version command line option.
    * New translations: Chinese (Taiwan), Croatian, Korean, Norwegian
      Nynorsk, Lithuanian, Valencian.
    * Updated translations: Finnish, French, German, Italian, Japanese,
      Polish, Swedish.
    * Dropped support for Gtk+ 2.
    * Bumped the minimum supported libpulse version to 5.0.
    * Improved compatibility with newer Glade versions.

(mef)

2019-12-11 14:58:10 UTC MAIN commitmail json YAML

doc: Updated fonts/fntsample to 5.3

(mef)

2019-12-11 14:57:44 UTC MAIN commitmail json YAML

(fonts/fntsample) Updated to 5.3

Changes in version 5.3
        * Support reproducible builds with PDF output (Khaled Hosny)

(mef)

2019-12-11 13:52:34 UTC MAIN commitmail json YAML

doc: Updated fonts/FiraCode to 2

(mef)

2019-12-11 13:52:07 UTC MAIN commitmail json YAML

(fonts/FireCode) Updated from 1.204 to 2  (thanks leot@ for advice)

### Changelog

All notable changes to this project will be documented in this file.

#### 2.0 (September 9, 2019)

- Characters U+25DE `◟` and U+25DF `◞` were swapped [#761]
- Added Box Drawing Light Arcs U+256D `╭` U+256E `╮` U+256F `╯` U+2570 `╰` [#702] [#714] [#725]
- Added Mathematical Angle Brackets U+27E8 `⟨` U+27E9 `⟩` [#763]
- Added Light and heavy dashed lines U+2504..U+250B `┄┅┆┇┈┉┊┋` [#702]
- Adjusted Box drawings double dashes U+254C..U+254F `╌╍╎╏`
- Fixed outlines of U+04FA `Ӻ` and U+04FB `ӻ` [#806]
- Added Not identical to U+2262 `≢` [#396]
- Added Latin Capital Letter Sharp S U+1E9E `ẞ` [#587]
- Tuned position and width of U+2044 Fraction Slash ` ⁄ ` [#588] and U+2215 Division Slash `∕` [#805]
- Added U+1405 Canadian Syllabics O `ᐅ` and U+140A Canadian Syllabics A `ᐊ` [#666]
- Added U+2234 Therefore `∴` and U+2235 Because `∵` [#669]
- Added U+239B..U+23AD multi-line brackets [#675]

```
⎛ 1 ⎞ ⎡ a ⎤ ⎧ x ⎫
⎜ 2 ⎟ ⎢ b ⎥ ⎪ y ⎪
⎜ 3 ⎟ ⎢ c ⎥ ⎨ z ⎬
⎜ 4 ⎟ ⎢ d ⎥ ⎪ y ⎪
⎝ 5 ⎠ ⎣ e ⎦ ⎩ x ⎭
```

- Added U+27F0..U+27FF Supplemental Arrows-A `⟲⟳⟰⟱⟴⟵⟶⟷⟸⟹⟺⟻⟼⟽⟾⟿` [#677]
- Added U+2400..U+2426 Control Pictures `␆␈␇␣␢␘␍␐␡␥␔␑␓␒␙␃␄␗␅␛␜␌␝␉␊␕␤␀␞␏␎␠␁␂␚␦␖␟␋` [#764]
- Added U+2388 Helm Symbol `⎈` [#766]
- Added U+2016 Double Vertical Line `‖` [#780]
- Tuned metrics (1870,-530 -> 1800,-600, upm 2000 -> 1950, hopefully fix [#552] [#798])
- Box characters to not overflow line height, taller `|` [#449]
- Added few technical symbols [#799]:
  - U+21A9 Leftwards arrow with hook (Return) `↩`
  - U+21DE Upwards arrow with double stroke (Page Up) `⇞`
  - U+21DF Downwards arrow with double stroke (Page down) `⇟`
  - U+21E4 Left Tab Arrow `⇤`
  - U+21E5 Right Tab Arrow `⇥`
  - U+2300 Diameter sign `⌀`
  - U+2303 Up Arrowhead (Control) `⌃`
  - U+2304 Down Arrowhead `⌄`
  - U+2305 Projective `⌅`
  - U+2306 Perspective `⌆`
  - U+2318 Place of interest sign (Command) `⌘`
  - U+2324 Up Arrowhead between two horizontal bars `⌤`
  - U+2325 Option Key `⌥`
  - U+2387 Alternative Key Symbol `⎇`
  - U+238B Broken Circle with Northwest Arrow (Escape) `⎋`
  - U+23CF Eject symbol `⏏`
- Added Coq logical and ` /\ ` and logical or ` \/ ` ligatures, U+2227 `∧` and U+2228 `∨` [#191] [#488] [#738] [#810]
- Added SystemVerilog `|->` `|=>` and `<-|` `<=|` for symmetry [#695]
- Added Forces `||-` ligature and U+22A2..U+22AF `⊢ ⊣ ⊤ ⊥ ⊦ ⊧ ⊨ ⊩ ⊪ ⊫ ⊬ ⊭ ⊮ ⊯` [#709]
- Added `fl` `Fl` `Tl` ligatures, adjusted `fi` `fj` pairs [#795]
- Disabled ligatures after regexp lookahead/lookbehinds `(?<=<` `(?<=>` `(?<==>` `(?<=|` `(?<==` `(?=:=` `(?=!=` `(?==` `(?===` `(?==>` `(?=>` `(?=>>` `(?=<<` `(?=/=` `(?!!` `(?!!.` `(?!=` `(?!==` `(?<!!` `(?<!!.` `(?<!=` `(?<!==` `(?<!--` [#578]
- Removed `..=` [#757]
- Alternatives (stylistic sets):
  - Lowercase `r` (ss01) [#601]
  - Less than/greater than `<=` `>=` (ss02) [#263] [#617]
  - Ampersand `&` (ss03) [#617]
  - Dollar sign `$` (ss04) [#617]
  - At sign `@` (ss05) [#617] [#748] [#817]
  - Thin backslash (ss06) [#577 #720 #825]
  - Dotted zero `0` (zero, ss19)
  - Old-style figures (onum, ss20) [#561] [#715]
- Old-style figures no longer prevent ligatures [#561] [#715]

#### 1.207 (April 6, 2019)

- Variable TTF, cleaned up [many small Light weight errors](https://github.com/thundernixon/FiraCode/blob/qa/googlefonts-qa/notes/outline-checks.md) (done by @thundernixon, PR #735)
- Dropped EOF which were only useful for IE 6-11
- Fixed different vertical position of `<=` `>=` in Light and Bold caused during [#483]

#### 1.206 (September 30, 2018)

- Added `<==>` ([#392]), `#:` ([#642]), `!!.` ([#618]), `>:` `:<` ([#605]), U+0305 Combining overline ([#608]), U+2610 Ballot box, U+2611 Ballot box with check, U+2612 Ballot box with x ([#384])
- Fixed incorrect width of `[` `**` ([#607])
- Redrew `{|` `|}` `[|` `|]` ([#643])
- Removed `{.` `.}` ([#635]), thin backslash ([#577])
- Disabled ligatures in `(?=` `(?<=` `(?:` ([#624]), `>=<` ([#548]), `{|}` `[|]` ([#593])
- Fixed ligatures precedence in `<||>` ([#621]), `:>=` ([#574]), `<<*>>` `<<<*>>>` `<<+>>` <<<+>>>` `<<$>>` `<<<$>>>` ([#410]), `!=<` ([#276])
- Fixed incorrectly swapped box drawing characters `╵` and `╷` ([#595])
- Adjusted vertical position of `<=` `>=` to align with `<` `>` ([#483])

#### 1.205 (February 27, 2018)

- Slashed zero by default ([#481] [#342])
- Adjusted vertical position of colon `:` near `{[()]}` ([#486])
- Thin backslash except when in `\\`, removed `\\\` ([#536])
- Added `:>` ([#547]) and `<:` ([#525])
- Removed `=<` ([#479] [#468] [#424] [#406] [#355] [#305])
- Added `::=` ([#539])
- Added `[|` `|]` ([#516]) `{|` `|}` ([#330])
- Added `✓` (U+2713)
- Added `..=` ([#433])
- Added `=!=` ([#338])
- Added `|-` `-|` `_|_` and adjusted `|=` `||=` ([#494])
- Added `#=` ([#208])

(mef)

2019-12-11 13:18:47 UTC MAIN commitmail json YAML

doc: Updated fonts/Hack-ttf to 3.003

(mef)

2019-12-11 13:18:19 UTC MAIN commitmail json YAML

(fonts/Hack-ttf) Updated 2.020 to 3.003, overs 160 lines ChangeLog ommitted (CHANGELOG.md)

(mef)

2019-11-28 13:10:11 UTC MAIN commitmail json YAML

Updated www/p5-Apache2-AuthCookie to 3.28
Updated www/p5-HTTP-Cookies to 6.07
Updated www/p5-HTTP-Date to 6.05
Updated www/p5-HTTP-Entity-Parser to 0.22
Updated www/p5-LWP-Protocol-Net-Curl to 0.026
Updated www/p5-LWP-Protocol-PSGI to 0.11
Updated www/p5-Starman to 0.4015
Updated www/p5-Task-CatInABox to 0.04
Updated www/p5-Test-WWW-Mechanize-Catalyst to 0.62
Updated www/p5-Test-WWW-Mechanize-PSGI to 0.39
Updated www/p5-WWW-Mechanize-Cached to 1.52
Updated www/p5-WWW-Mechanize-Shell to 0.58
Updated www/p5-libwww to 6.43

(mef)

2019-11-28 13:08:10 UTC MAIN commitmail json YAML

(www/p5-libwww) Updated 6.39 to 6.43

6.43      2019-11-26 13:54:43Z
    - Continue trying different Authentication challenge schemes if
      credentials are wrong (Roman Galeev, Julien Fiegehenn)

6.42      2019-11-20 17:40:52Z
    - Add retry handling for a stale nonce with digest authentication (marmotil
      and Frank Maas) (GH#40, GH#313, GH#321)
    - Add the patch method to LWP::UserAgent. (GH#334) (Chase Whitener)
    - Fix docs to match keep_alive => undef behavior, add some trivial tests
      (GH#333) (Ville Skyttä)
    - Documentation grammar fixes (GH#331) (Ville Skyttä)

6.41      2019-10-28 14:42:06Z
    - Allow mirroring to files called '0' (GH#329) (Mark Fowler)

6.40      2019-10-24 12:55:45Z
    - Let Digest authentication act on nonce expiry (GH#313) (Frank Maas)
    - Make file arg for mirror mandatory #304 (GH#326) (Julien Fiegehenn)
    - Doc fix: fields starting with ":" have to be quoted (GH#324) (Slaven
      Rezić)
    - Fix documentation for removing all handlers (GH#319) (leedo)
    - Ensure proper version of Dist::Zilla::Plugin::MakeMaker::Awesome
    - Add TravisCI testing for Perl v5.30
    - Clean up .perltidyrc

(mef)

2019-11-28 13:05:07 UTC MAIN commitmail json YAML

(www/p5-WWW-Mechanize-Shell) Updated 0.58

0.58 2019-09-30
    * Made the tests pass on IPv6 enabled systems
      Uncovered by making Test::HTTP::LocalServer work on IPv6 enabled systems.
    * Test-only improvements, no need to upgrade

(mef)

2019-11-28 12:52:33 UTC MAIN commitmail json YAML

(www/p5-WWW-Mechanize-Cached) Updated 1.52

1.52      2019-11-18 14:15:37Z
    - Implement invalidate_last_request to remove the last request from the
      cache (GH#18) (E. Choroba)

(mef)

2019-11-28 12:47:53 UTC MAIN commitmail json YAML

(www/p5-Test-WWW-Mechanize-PSGI) Updated to 0.39

0.39      2019-03-22 13:18:19Z
    - Allow to pass additional environmental variables to to_psgi() (GH#6)
      (Kenichi Ishigaki)

(mef)

2019-11-28 12:39:43 UTC MAIN commitmail json YAML

(www/p5-Test-WWW-Mechanize-Catalyst) Updated to 0.62

0.62 Mon Feb 18 17:30 GMT 2019
    - The latest 'mst screwed up the last release' release

0.61 Mon Feb 18 14:38 GMT 2019
    - Add '.' to inc in Makefile.PL

(mef)

2019-11-28 12:20:47 UTC MAIN commitmail json YAML

(www/p5-Task-CatInABox) Updated to 0.04

0.04      2019-11-16 22:50:58Z
        - Correct name for DBIx::Class::Timestamp

(mef)

2019-11-28 12:09:58 UTC MAIN commitmail json YAML

(www/p5-Starman) Updated to 0.4015

0.4015  2019-05-20 18:43:46 PDT
        - Fixed a bug incorrectly handling content body of '0' (olsonanl) #133

(mef)

2019-11-28 11:40:42 UTC MAIN commitmail json YAML

(www/p5-LWP-Protocol-PSGI)

0.11  2019-10-25 09:55:42 JST
        - Make it possible to unregister() and register() again #11

(mef)

2019-11-28 11:39:10 UTC MAIN commitmail json YAML

(www/p5-LWP-Protocol-Net-Curl) Updated 0.023 to 0.026

0.026 2019-10-08T12:00:22
- Workaround for another timeout exception (Stanislaw Pusep)
- Dist::Zilla maintenance (Stanislaw Pusep)
- CURLOPT_HTTP_VERSION: eval and CURL_HTTP_VERSION_3 (Nick Kostyria)
- CURLOPT_HTTP_VERSION: re updated (Nick Kostyria)
- CURLOPT_HTTP_VERSION (Nick Kostyria)

0.025 2019-07-15T11:27:30
- Failing test fixes (Stanislaw Pusep)

0.024 2019-07-12T12:22:28
- PUT test should no longer fail (Stanislaw Pusep)
- die() is still OK (Stanislaw Pusep)
- Regenerated README (Stanislaw Pusep)
- Updated libcurl symbols (Stanislaw Pusep)
- A less exotic URL for redirect test (Stanislaw Pusep)
- Not every installation of Net::Curl does support select() polling
  (Stanislaw Pusep)
- Add and populate META files with MetaJSON and MetaProvides::Package
  (Jos辿 Joaqu鱈n Atria)

(mef)

2019-11-28 11:36:23 UTC MAIN commitmail json YAML

(www/p5-HTTP-Entity-Parser) Updated to 0.22

0.22 2019-11-16T14:21:39Z
    - Do not stringify nested hash references in JSON #11

(mef)

2019-11-28 11:31:05 UTC MAIN commitmail json YAML

(www/p5-HTTP-Date) Updated from 6.02 to 6.05

6.05      2019-11-19 03:02:32Z
    - Bump minimum version of Time::Local to 1.28 (GH#17) (Olaf Alders)

6.04      2019-11-14 22:22:50Z
    - Replace vars with our (GH#15) (James Raspass)
    - Tidy lib and t files (GH#16) (Olaf Alders)

6.03      2019-11-13 14:11:51Z
    - RT123557 Fix for DST test issues (GH#14) (@pludlamCVL)
    - Add Travis tests and convert to Dist::Zilla (GH#13) (Olaf Alders)

(mef)

2019-11-28 11:27:00 UTC MAIN commitmail json YAML

(www/p5-HTTP-Cookies) Updated to 6.07

6.07      2019-11-15 18:11:42Z
    - Fix t/issue32.t on old perl versions (GH#59) (Bernhard M. Wiedemann)

6.06      2019-11-12 14:28:31Z
    - Make test pass in 2025 (GH#56) (Bernhard M. Wiedemann)

(mef)

2019-11-28 11:22:14 UTC MAIN commitmail json YAML

(www/p5-Apache2-AuthCookie) Updated to 3.28

3.28  2019-11-19
  - Add support for SameSite cookie property (can be strict/lax).
  - Minor POD updates.

(mef)

2019-11-27 12:36:10 UTC MAIN commitmail json YAML

Updated devel/p5-Alien-Base-ModuleBuild to 1.08
Updated devel/p5-Alien-Build to 1.92
Updated devel/p5-CPAN-Perl-Releases to 4.22
Updated devel/p5-Data-Compare to 1.27
Updated devel/p5-Compress-Raw-Zlib to 2.091
Updated devel/p5-Compress-Raw-Bzip2 to 2.091
Updated devel/p5-Devel-PPPort to 3.56
Updated devel/p5-Devel-PatchPerl to 1.80
Updated devel/p5-EV to 4.30
Updated devel/p5-GitLab-API-v4 to 0.23

(mef)

2019-11-27 12:32:24 UTC MAIN commitmail json YAML

(devel/p5-GitLab-API-v4) Updated to 0.23

0.23 2019-10-18T19:55:06Z

- Fix delete_runner so that it doesn't try to decode the response.
- Any 204 response now just blanket returns undef.
- More contextual JSON decoding error messages.

(mef)

2019-11-27 12:28:39 UTC MAIN commitmail json YAML

(devel/p5-EV) Updated from 4.28 to 4.30

4.30 Fri Nov 22 21:00:00 CET 2019
        - (libev) use a different and hopefully even more portable
          test to disable io_uring when header files are too old,
          by directly testing LINUX_VERSION_CODE.
        - (libev) fix a bug in the io_uring backend that polled the wrong
          backend fd, causing it to not work in many cases.

4.29 Fri Nov 22 15:34:29 CET 2019
        - (libev) add io uring autoconf and non-autoconf detection,
          the latter of which should disable io_uring compilation
          on old systems.

(mef)

2019-11-27 12:26:24 UTC MAIN commitmail json YAML

(devel/p5-Devel-PatchPerl) Updated to 1.80

-----------------------------------------
version 1.80 at 2019-11-19 16:27:40 +0000
-----------------------------------------

  Change: acdcf1d67ae426367f42ca763b9ba6b92dd90925
  Author: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
  Date : 2019-11-19 16:27:40 +0000

    Release engineering for 1.80

    - Fixes https://github.com/bingos/devel-patchperl/issues/38

    "Failed to apply devel-patchperl to perl 5.8.8 in macOS"

  Change: 94520b369885689366535b80a05b16e8129789d7
  Author: Shoichi Kaji <skaji@cpan.org>
  Date : 2019-11-19 16:26:17 +0000

    fix #38; _patch -> _patch_b64

(mef)

2019-11-27 12:23:36 UTC MAIN commitmail json YAML

(devel/p5-Devel-PPPort) Udated 3.54 to 3.56

3.56 - 2019-11-25

* mktests.PL: use FindBin for INC setup
* devel/regenerate: Adjust POD line length
* Fix compilation with Visual C++ bugs introduced in 3.55 (Tomasz Konojacki)
* Fix mess.t failures when on VC++ when $0 contains backslashes (Tomasz Konojacki)
* Fix failing builds on 5.20.[1-3] introduced in 3.55 (Karl Williamson)
* Change tests to accept and use Test::More-like functions (Karl Williamson)

3.55 - 2019-11-07

  * Fix p5-Text-Xslate on Perl 5.8.5 (Nicolas R)
  * Fix EBCDIC build problem (Karl Williamson)
  * Fix isGRAPH_L1() bug (Karl Williamson)
  * utf8_to_uvchr_buf: Fix error checking on early EBCDICs and proper length (Karl Williamson)
  * HACKERS: fix typos and clarification (Karl Williamson)
  * Update bugtracker and repository URLs (Nicolas R)  (upstream/urls)
  * Add warning about UTF-8 unreliable in early perls (Karl Williamson)
  * Add withinCOUNT and inRANGE (Karl Williamson)
  * Implement G_RETHROW for eval_sv (Pali)
  * Backport some isFOO_LC macros (Karl Williamson)
  * Backport isFOO_LC_utf8_safe() (Karl Williamson)
  * Backport toFOO_uvchr() (Karl Williamson)
  * Backport isFOO_uvchr() (Karl Williamson)
  * Backport isFOO_utf8_safe() macros (Karl Williamson)
  * Backport toLOWER_utf8_safe and kin (Karl Williamson)
  * Backport UTF8_MAXBYTES_CASE (Karl Williamson)
  * Backport UTF8_CHK_SKIP (Karl Williamson)
  * Backport UTF8_SKIP (Karl Williamson)
  * Backport UNI to/from NATIVE (Karl Williamson)

(mef)

2019-11-27 12:20:53 UTC MAIN commitmail json YAML

(devel/p5-Compress-Raw-Bzip2) Updated from 2.087 to 2.091

  2.091 23 November 2019

      * Silence compiler warnings
        https://github.com/pmqs/Compress-Raw-Bzip2/issues/1
        74756934f3502a0f7ca6b28099fd36057bd958da

  2.089 3 November 2019

      * No Changes

  2.088 31 October 2019

      * Add Support Details
        37e04fb3dc50287a3512b004282425c6eedb8af6

      * upgrade to Bzip2 1.0.8
        027a30848ee57731b435d2ea7af09e532bf6fbfd

(mef)

2019-11-27 12:18:23 UTC MAIN commitmail json YAML

(devel/p5-Compress-Raw-Zlib) Updated 2.087 to 2.091

  2.091 23 November 2019

      * Silence "macro expands to multiple statements" warning
        Change sourced upstream from https://github.com/Perl/perl5/issues/17013
        https://github.com/pmqs/Compress-Raw-Zlib/issues/2
        da2bd1fc765b80d01ed10a79b6c4a035e5095ed8

  2.090 9 November 2019

      * No Changes

  2.089 3 November 2019

      * No Changes

  2.088 31 October 2019

      * Add SUPPORT section
        d348ad76c2073a2973d094891fbd0c2e24bf397d

      * 000prereq.t: dump Perl version
        e1afe502818cb1ccf5bad917b14b029b408f47f1

(mef)

2019-11-27 12:15:58 UTC MAIN commitmail json YAML

(devel/p5-Data-Compare) Updated to 1.27

1.27    2019-11-05  DCANTRELL  Fix bug when options are passed as a persistent
                                hash from calling code and not an anonyhash
                                (Sam Kington)

(mef)

2019-11-27 12:14:07 UTC MAIN commitmail json YAML

(CPAN-Perl-Releases) Updated from 4.18 to 4.22

-----------------------------------------
version 4.22 at 2019-11-20 20:27:10 +0000
-----------------------------------------
    Updated for v5.31.6

-----------------------------------------
version 4.20 at 2019-11-10 14:18:19 +0000
-----------------------------------------
    Updated for v5.30.1

(mef)

2019-11-27 12:12:12 UTC MAIN commitmail json YAML

(Alien-Build) Updated to 1.92

1.92      2019-11-04 04:33:57 -0700
  - Require Test2::API 1.302096 for features used in test suite.

(mef)

2019-11-27 12:03:39 UTC MAIN commitmail json YAML

(devel/p5-Alien-Base-ModuleBuild) Updated 1.06 to 1.08

1.08 2019-11-25 08:36:38 -0700
  - Added alien_install_type property (gh#14)

1.07 2019-11-22 16:01:56 -0700
  - Fix bug in blib detection (gh#13)
  - Update documentation to reflect defaults for %s (gh#12, gh#13)

(mef)

2019-11-23 23:20:49 UTC MAIN commitmail json YAML

+apache-mavern-3.6.2

(mef)

2019-11-23 13:17:24 UTC MAIN commitmail json YAML

(x11/kirigami2) Fix build, x11/qt5-qttools/buildlink3.mk added

(mef)

2019-11-23 08:47:44 UTC MAIN commitmail json YAML

Updated devel/cmocka to 1.1.5
Updated devel/acr to 1.7.2

(mef)

2019-11-23 08:45:45 UTC MAIN commitmail json YAML

2019-11-23 08:37:35 UTC MAIN commitmail json YAML

(devel/acr) Updated 1.7.0 to 1.7.2, ChangeLog not maintained, unknown

(mef)

2019-11-23 08:08:36 UTC MAIN commitmail json YAML

(lang/erlang-doc) regen distinfo for 22.1

(mef)

2019-11-23 07:23:57 UTC MAIN commitmail json YAML

(devel/cmocka) Updated 1.1.3 to 1.1.5

Thu Mar 28 2019 Andreas Schneider <asn@cryptomilk.org>
    * cmocka version 1.1.5
    * Added cmocka_set_skip_filter()

Thu Mar 28 2019 Andreas Schneider <asn@cryptomilk.org>
    * cmocka version 1.1.4
    * Added assert_float(_not)_equal()
    * Added expect_any_always()
    * Small bug fixes

(mef)

2019-11-23 07:17:59 UTC MAIN commitmail json YAML

(devel/cloc) Updated  1.76 to 1.84

(from Unix/NEWS)
============================================================================
                Release Notes for cloc version 1.84
                  https://github.com/AlDanial/cloc
                        September 22, 2019

New Languages and File Types:
    o APL
    o Apache Thrift
    o Imba
    o IPL
    o SaltStack

Updates:
    o Improved handling of --git --diff
    o Add .podspec as a Ruby file extension.
    o New switch, --stat, to force a stat check of
      directories. This enables traversal of directory
      types whose nlink count does not match the count
      of subdirectories (examples: CD-ROM, FAT, AFS).
    o Force stat on top level directories.  This is
      companion logic to the new --stat switch.
    o Add file extensions defined by the Linguist project.
    o New switch, --exclude-content, to exclude files if
      any of their lines match a regex.
    o New switch, --timeout, to give control over timeouts
      on direct counts (as opposed to diff timeouts).
    o On Windows, lower batch size on git archive
      commands to 100 files (the value is 1,000 on *nix).
    o Better identification of Smarty .tpl template files.

Bug Fixes:
    o On Windows, use double quotes for git archive entries.
    o On Windows, double slash path separators with --by-file
      and JSON output.
    o On Windows, replace / with \\ in results only when
      running with --by-file.
    o Fix header line metrics for files/sec and lines/sec
      when doing --diff.
    o Python:  handle cases of /* or */ embedded in strings
      (this conflicted with internal logic which replaced
      docstring triple quotes with C comments).
    o Fix mishandling of --exclude-dir with --follow-link.
    o Fix doubly-counted #! line
    o Support --hide-rate with csv output.

============================================================================
                Release Notes for cloc version 1.82
                  https://github.com/AlDanial/cloc
                          May  3, 2019

New Languages and File Types:
    o Apex Class
    o DIET
    o Fennel
    o FXML
    o Jupyter notebook files (.ipynb)
    o Python wheel files (.whl)
    o SVG
    o reStructuredText

Updates:
    o Handle backslashed quotes in strings to improve --strip-str-comments
      logic.
    o Improve Perl v. Prolog identification.
    o New switch --docstring-as-code to count Python docstrings as code.
    o Partial support fot Lua nested comments.
    o Renamed Skylark to Starlark.
    o Modified Java filter to try to handle embedded comments better.
    o Recognize groovy as one of the #! languages.
    o Add .pyw as a file extension for Python.
    o Update comment definitions for Velocity Template Language.
    o Override file alignment logic with --diff when only two files are
      given.
    o Identify TeX v. Visual Basic for .cls file extension.
    o Include result summation line with --csv output.
    o Support --csv, --json, --md, --xml, --yaml output types for the
      --ignored debug file.
    o Force IO encoding to allow wider Unicode characters for creating
      Windows exe's with PAR::Packer

============================================================================
                Release Notes for cloc version 1.80
                  https://github.com/AlDanial/cloc
                          Oct. 5, 2018

This is a bug-fix release to solve mis-handling of git inputs for
straight counts in 1.78 (--git --diff works ok in 1.78),
https://github.com/AlDanial/cloc/issues/328.

New Languages:
    o ReasonML

Updates:
    o New SQL output style option with "--sql-style Named_Columns".  This
      includes the table "t" column names in each insert statement.
    o New option --file-encoding to create all output files using the
      given file encoding (for example "--file-encoding
    o Add escript as script language for Erlang.
    o Improved handling of custom Smarty definitions through
      --read-lang-def.
    o Better diff logic when comparing two files.
    o Faster program start on the Unix-tuned version of cloc when
      multiple processors are not used.

============================================================================

                Release Notes for cloc version 1.78
                  https://github.com/AlDanial/cloc
                          Sept. 7, 2018

New Languages:
    o EJS
    o Gradle
    o Igor Pro
    o JSON5
    o Nix
    o R Markdown
    o SparForte
    o Xtend

Updates:
    o Interpret "--diff-timeout 0" as allowing unlimited time to compute
      diffs.
    o Add .inl extension for C++
    o Improve language rules for Assembly and JCL.
    o Better handling of OCaml comments (don't just use Pascal rules).
    o Handle unusual file names with --use-sloccount.
    o Remove GNU grep specific -P option with --use-sloccount (fall back
      to simpler BSD grep options).
    o Handle OCaml nested comments.
    o Remove debug print statement for counts of Rmd (R markdown) files.
    o New switch --include-ext to only count files with the given extension.
    o New switch --config to load command line switches from a file.
    o New switch --hide-rate to suppress header line (makes the output
      deterministic).
    o Skip header line when combining diff reports.
    o Allow any number (including just one) of diff reports to be summed.
    o Exit early if --diff arguments are the same.
    o New switch --strip-str-comments to (try to) avoid 'Complex regular
      subexpression recursion limit' warning.
    o Run cleanly under Perl 5.28 and 5.32 by backslashing braces in regex.
    o Suppord Idris block comments.
    o Set UTF-8 encoding on XML and XSL files generated by cloc.
    o New switch --write-lang-def-incl-dup to include files with extension
      collisions (but should be used with care because the resulting language
      definition file will be rejected by cloc until all collisions have been
      resolved).

Bug Fixes:
    o Correctly handle --not-match-d and --follow-links together.
    o Fix --git --diff handling of large file sets.
    o Remove \$ from git pathspec filename-cleansing regex as git already
      handles such filename mangling
    o Remove debug die() invocation in make_file_list().
    o Fix improperly formatted JSON emitted with --by-file-by-lang.
    o Improve accuracy of C#/Smalltalk disambuguator (was biased toward
      counting .cs files as Smalltalk).
    o Improve accuracy of TypeScript/Qt Linguist disambuguator.
    o More robust YAML output by quoting file and language names.
    o Handle more unusual file names with --git --diff

(mef)

2019-11-23 07:08:29 UTC MAIN commitmail json YAML

(devel/check) Updated 0.12.0 to 0.13.0

Sat Oct 20, 2019: Released Check 0.13.0
  based on hash 2b18886a9a9d3bab44917a550d12128ad7e2c197

* configure: optional build documentation
  Issue #206 (GitHub)

* missing <unistd.h> in some files
  Issue #196 and Issue #186 (GitHub)

* Varous documentation improvements

* END_TEST is now optional, as how START_TEST works has been redone
  Issue #158

* Various CMake related changes:
  - Support exporting Check to other projects with CMake 3
    Issue #185
  - Shared library support for Visual Studio
    Issue #220
  - Fix wrong library filename
    Issue #226
  - Add support for CMake package registry
    Issue #227
  - CMake build type can now be debug or release
    Issue #228
  - Add checkmk to CMake build.

(mef)

2019-11-23 07:04:03 UTC MAIN commitmail json YAML

Updated devel/cflow to 1.6
Updated devel/cflow-mode to 1.6
Updated devel/cfitsio to 3.450

(mef)

2019-11-23 06:58:14 UTC MAIN commitmail json YAML

(devel/cfitsio) Updated 3.390 to 3.450

(from docs/changes.txt), sorry for long lines.
Version 3.45 - May 2018

  - New support for reading and writing unsigned long long datatypes.
    This includes 'implicit datatype conversion' between the unsigned long
    long datatype and all the other datatypes.

  - Increased the hardcoded NMAXFILES setting for maximum number of
    open files from 1000 to 10000.

  - Bug fix to fits_calc_binning wrapper function, which wasn't filling
    in the returned float variables.

  - Fixed a parsing bug for image subsection and column binning range
    specifiers that was introduced in v3.44.

Version 3.44 - April 2018

  - This release primarily patches security vulnerabilities.  We
    strongly encourage this upgrade, particularly for those running
    CFITSIO in web accessible applications.

    In addition, the following enhancements and fixes were made:

  - Enhancement to 'template' and 'colfilter' functionality.  It is now
    possible to delete multiple keywords using wildcard syntax. See
    "Column and Keyword Filtering Specification" section of manual for
    details.

  - histo.c uses double precision internally for all floating point
    binning; new double-precision subroutines fits_calc_binningd(),
    fits_rebin_wcsd(), and fits_make_histd(); existing
    single-precision histogram functions still work but convert values
    to double-precision internally.

  - new subroutine fits_copy_cols() / ffccls() to copy multiple columns

  - Fix in imcompress.c for HCOMPRESS and PLIO compression of unsigned
    short integers.

  - Fix to fits_insert_card(ffikey).  It had wrongly been capitalizing
    letters that appeared before an '=' sign on a CONTINUE line.

Version 3.43 - March 2018

The NASA security team requires the following warning to all users of
CFITSIO:

  =====
  The CFITSIO open source software project contains vulnerabilities
  that could allow a remote, unauthenticated attacker to take control
  of a server running the CFITSIO software.  These vulnerabilities
  affect all servers and products running the CFITSIO software.

  The CFITSIO team has released software updates to address these
  vulnerabilities.  There are no workarounds to address these
  vulnerabilities.  In all cases, the CFITSIO team is recommending an
  immediate update to resolve the issues.
  =====

  - Fixed security vulnerabilities.

  - Calls to https driver functions in cfileio.c need to be macro-
    protected by the HAVE_NET_SERVICES variable (as are the http and
    ftp driver function calls).  Otherwise CMake builds on native
    Windows will fail since drvrnet.o is left empty.

  - Bug fix to ffmvec function.  Should be resetting a local colptr
    variable after making a call to ffiblk (which can reallocate Ftpr->
    tableptr).  Originally reported by Willem van Straten.

  - Ignore any attempted request to not quantize an image before
    compressing it if the image has integer datatype pixels.

  - Improved error message construction throughout CFITSIO.

Version 3.42 - August 2017 (Stand-alone release)

  - added https support to the collection of drivers handled in cfileio.c
    and drvrnet.c.  This also handles the case where http transfers are
    rerouted to https.  Note that this enhancement introduces a dependency
    on the libcurl development package.  If this package is absent, CFITSIO
    will still build but will not have https capability.

  - made fix to imcomp_init_table function in imcompress.c.  It now writes
    ZSIMPLE keyword only to a compressed image that will be placed in the
    primary header.

  - fix made to fits_get_col_display_width for case of a vector column
    of strings.

Version 3.42 - March 2017 (Ftools release only)

  - in ftp_open_network and in ftp_file_exist, added code to repeatedly
    attempt to make a ftp connection if the ftp server does not respond
    to the first request. (some ftp servers don't appear to be 100% reliable).

  - in drvrnet.c added many calls to 'fclose' to close unneeded files,
    to avoid exceeding the maximum allowed number of files that can be
    open at once.

  - made substantial changes to the ftp_checkfile and http_checkfile routines
    to streamline the process of checking for the existence of a .gz or .Z
    compressed version of the file before opening the uncompressed file
    (when using http or ftp to open the file).

  - modified the code in ftp_open_network to send "\r\n" as end-of-line
    characters instead of just "\n".  Some ftp servers (in particular,
    at heasarc.gsfc.nasa.gov) now require both characters, otherwise the
    network connection simply hangs.

  - modified the http_open_network routine to handle HTTP 301 or 302 redirects
    to a FTP url.  This is needed to support the new configuration on
    the heasarc HTTP server which sometimes redirects http URLS to a ftp URL.

Version 3.41 - November 2016

  - The change made in version 3.40 to include strings.h caused problems on
    Windows (and other) platforms, so this change was backed out. The reason
    for including it was to define the strcasecmp and strcasencmp functions, so
    as an alternative, new equivalent functions called fits_strcasecmp and
    fits_strncasecmp have been added to CFITSIO.as a substitute. All the
    previous calls to the str[n]casecmp functions have been changed to
    now call fits_str[n]casecmp. In addition, the previously defined
    ngp_strcasecmp function (in grparser.c) has been removed and the calls to
    it have been changed to fits_strcasecmp.

  - The speed.c utility program was changed to correctly call
    the gettimeofday function with a NULL second arguement.

Version 3.40 - October 2016

  - fixed a bug when writing long string keywords with the CONTINUE convention
    which caused the CONTINUE'd strings to only be 16 characters long, instead
    of using up all the available space in the 80-character header record.

  - fixed a missing 'defined' keyword in fitsio.h.

  - replaced all calls to strtok (which is not threadsafe) with a new ffstrtok
    function which internally calls the threadsafe strtok_r function.  One
    byproduct of this change is that <strings.h> must also be included
    in several of the C source code files.

  - modified the ffphbn function in putkey.c to support TFORM specifiers that
    use lowercase 'p' (instead of uppercase) when referring to a variable-length
    array column.

  - modified the lexical parser in eval.y and eval_y.c to support bit array
    columns (with TFORMn = 'X') with greater than 256 elements. Fix to bitcmp
    function:  The internal 'stream' array is now
    allocated dynamically rather than statically fixed at size 256.
    This was failing when users attempted a row filtering of a bitcol
    that was wider than 256X. In bitlgte, bitand, and bitor functions, replaced
    static stream[256] array allocation with dynamic allocation.

  - modified the ffiter function in putcol.c to fix a problem which could
    cause the iterator function to incorrectly deal with null values.  This
    only affected TLONG type columns in cases where sizeof(long) = 8, as well
    as for TLONGLONG type columns.

  - Fix made to uncompress2mem function in zcomprss.c for case where output
    uncompressed file expands to over the 2^32 (4Gb) limit.  It now
    checks for this case at the start, and implements a 4Gb paging
    system through the output buffer.  The problem was specifically
    caused by the d_stream.avail_out member being of 4-byte type uInt,
    and thus unable to handle any memory position values above 4Gb.

  - fixed a bug in fpackutil.c when using the -i2f (integer to float) option
    in fpack to compress an integer image that is scaled with non-default values
    for BSCALE and BZERO. This required an additional call to ffrhdu to reset
    the internal structures that describe the input FITS file.

  - modified fits_uncompress_table in imcompress.c to silently ignore the
    ZTILELEN keyword value if it larger than the number of rows in the table

  - Tweak strcasecmp/strncasecmp ifdefs to exclude 64-bit MINGW
    environment, as it does not lack those functions. (eval_l.c,
    fitsio2.h)

  - CMakeLists.txt: Set M_LIB to "" for MINGW build environment (in
    addition to MSVC).

  - Makefile.in: Add *.dSYM (non-XCode gcc leftovers on Macs) to
    clean list.  Install libs by name rather than using a wildcard.

  - configure: Fix rpath token usage for XCode vs. non-XCode gcc on Macs.

(mef)

2019-11-23 06:35:51 UTC MAIN commitmail json YAML

(devel/cflow-mode) Updated 1.1 to 1.6, ChangeLog unknown

(mef)

2019-11-23 06:28:14 UTC MAIN commitmail json YAML

(devel/cflow) Updated to 1.6

Version 1.6, 2019-02-23

* New option --all (-A)

Produce graphs for all global functions in the program.  Use this
option if your program contains functions which are not directly
reachable from main().

The output consist of separate flow graphs for each global function
defined in the program.  These graphs will be placed after the graph
for main() (if it exists), and will be ordered lexicographically by
the function name.

* New option --no-main

This option has the same effect as '--all', except that the graph for
main() function (if it exists) is treated same way as all the other
graphs, i.e. it will not be placed at the top of output, but in its
place as per the lexicographic ordering of function names.

(mef)

2019-11-22 15:33:52 UTC MAIN commitmail json YAML

(lang/erlang-man) regen distinfo

(mef)

2019-11-22 14:05:23 UTC MAIN commitmail json YAML

(editors/emacs-snapshot) Correction of path, but still fails to package

(mef)

2019-11-22 13:01:38 UTC MAIN commitmail json YAML

(devel/rt4) Fix build by adding DEPENDS+= p5-Text-Reform

(mef)

2019-11-20 14:52:44 UTC MAIN commitmail json YAML

(graphics/digikam)  Correction on DIST_SUBDIR to be matched with distinfo

(mef)

2019-11-20 14:35:44 UTC MAIN commitmail json YAML

(graphics/digikam) Trying to fix checksum error. Regen distinfo, set DIST_SUBDIR

Checked at
  https://download.kde.org/stable/digikam/6.4.0/
and put it at ftp.netbsd.org

(mef)

2019-11-20 13:26:15 UTC MAIN commitmail json YAML

(devel/p5-Test-Memory-Cycle) Correction of compare operators for TEST_DEPENDS

(mef)

2019-11-20 13:23:21 UTC MAIN commitmail json YAML

Updated www/p5-WWW-Form-UrlEncoded to 0.26
Updated www/p5-WWW-Mechanize to 1.95

(mef)

2019-11-20 13:21:39 UTC MAIN commitmail json YAML

(www/p5-WWW-Mechanize) Updated  from 1.91 to 1.95

1.95      2019-10-28 13:07:45Z
    [FIXED]
  - die if submit_form() called with invalid form_id (GH#287) (Olaf Alders)

1.94      2019-10-10 13:12:28Z
    [FIXED]
    - Issue #182: Don't autocheck for mech-dump so basic auth works (GH#285)
      (Julien Fiegehenn)

    [DOCUMENTATION]
    - Fix pod error reported by CPANTS. (GH#284) (Mohammad S Anwar)

1.93      2019-10-04 21:06:49Z
    [FIXED]
    - Allow images to not have a src attribute (GH#282) (Julien Fiegehenn)

    [DOCUMENTATION]
    - Pod fixes. (GH#283) (Mohammad S Anwar)

1.92      2019-08-24 01:00:35Z
    [FIXED]
    - Test requires HTTP::Daemon 6.05+ and uses 127.0.0.1 or [::1] according to
      server's sockdomain (GH#280) (Shoichi Kaji)
    - Install LWP::Protocol::https and fix xt/author/live/encoding.t (GH#277)
      (Shoichi Kaji)
    - Set dist trusty for old Perls on Travis (GH#279) (Shoichi Kaji)
    - Fixed pod errors as reported by CPANTS. (GH#273) (Mohammad S Anwar)

    [DOCUMENTATION]
    - Document that follow_link will die on failure with autocheck enabled (GH#271) (Olaf Alders)

    [TESTS]
    - Add a test for finding a link in a meta refresh tag (GH#275) (Olaf Alders)

(mef)

2019-11-20 13:04:31 UTC MAIN commitmail json YAML

(devel/p5-Test-Memory-Cycle) Add three two TEST_DEPENDS, Add LICENSE

(mef)

2019-11-20 13:03:00 UTC MAIN commitmail json YAML

(devel/p5-Test-Pod-Coverage) Add TEST_DEPENDS+=  p5-Test-Pod>1.14

(mef)

2019-11-20 12:42:49 UTC MAIN commitmail json YAML

2019-11-20 12:20:14 UTC MAIN commitmail json YAML

Updated www/p5-Net-HTTP to 6.19
Updated www/p5-Plack-Middleware-ReverseProxy to 0.16
Updated www/p5-Plack-Middleware-Session to 0.33

(mef)

2019-11-20 12:16:56 UTC MAIN commitmail json YAML

(www/p5-Plack-Middleware-Session) Updated from 0.30 to 0.33

0.33  2019-03-09 15:18:15 PST
        - Removed dependency to Digest::SHA1 #45
        - Added explicit dep to HTTP::Request::Common #44
        - Add t/lib to INC for Perl 5.26+
        - Fix POD link

0.32  2019-02-26 14:36:19 MST
        - Fix dependency for Cookie::Baker

0.31  2019-02-26 12:01:00 MST
        - Documentation fix
        - Support samesite cookie attributes #42

(mef)

2019-11-20 12:07:18 UTC MAIN commitmail json YAML

(www/p5-Plack-Middleware-ReverseProxy) Updated to 0.16

0.16  2019-02-19 08:42:44 PST
        - Update packaging to use Milla

(mef)

2019-11-20 11:33:12 UTC MAIN commitmail json YAML

(www/p5-Net-HTTP) Updated to 6.19

6.19      2019-05-16 19:16:59Z
    - partially skip live-https.t if there's no keep-alive connection (GH#58) (Slaven Rezić)
    - set "x_static_install" : 1 in META files

(mef)

2019-11-19 13:17:30 UTC MAIN commitmail json YAML

Updated www/p5-App-Nopaste to 1.013
Updated www/p5-HTML-Form to 6.05
Updated www/p5-HTMLObject to 2.30
Updated www/p5-HTTP-Cookies to 6.05
Updated www/p5-HTTP-OAI to 4.10
Updated www/p5-LWP-ConsoleLogger to 0.000042
Updated www/p5-LWP-MediaTypes to 6.04

(mef)

2019-11-19 13:08:36 UTC MAIN commitmail json YAML

(www/p5-LWP-MediaTypes) Updated to 6.0.4

6.04      2019-03-20 13:01:15Z
    - Full release of changes in 6.03

6.03      2019-03-19 16:44:17Z (TRIAL RELEASE)
    - Convert release process to Dist::Zilla
    - Allow File::Temp handles to be guessed correctly (GH#1) (Wesley
      Schwengle)

(mef)

2019-11-19 13:06:16 UTC MAIN commitmail json YAML

(www/p5-LWP-ConsoleLogger) Updated from 0.000039 to 0.000042

0.000042  2019-06-12 15:15:52Z
    -  Don't rely on Mojo to be installed in tests (GH#18) (Olaf Alders)

0.000041  2019-06-12 12:31:03Z
    - Bump minimum Mojo version required for tests (GH#17) (Olaf Alders)
    - Add support for Mojo::UserAgent to LWP::ConsoleLogger::Everywhere ((GH#16) simbabque)

0.000040  2019-06-11 01:22:03Z
    - Add support for Mojo::UserAgent (GH#14) (Gregory Oschwald)

(mef)

2019-11-19 12:10:06 UTC MAIN commitmail json YAML

(www/p5-HTTP-OAI) Udated to 4.10

4.10  2019-10-16 16:18:38 CEST
  - Support 429 Too Many Requests (RFC6585)

(mef)

2019-11-19 12:06:36 UTC MAIN commitmail json YAML

(www/p5-HTTP-Cookies) Updated to 6.05

6.05      2019-10-24 02:21:51Z
    - Fix GH#32 by checking for " as well as ; when splitting. (GH#49) (colinnewell)
    - Fix GH#48 update documentation about $version (GH#55) (Dave Menninger)
    - Fix broken README badge (GH#54) (Alex Peters)
    - Whenever possible, use an absolute four digit year for Time::Local (GH#52) (Olaf Alders)
    - Add test case for Issue #26 (GH#45) (George-NG)
    - Long numbers (GH#47) (pludlamCVL)
    - Cookies.pm: die if close on $fh in ->save fails (GH#46) (MCRayRay)
    - Replace "use vars" with "our" (GH#43) (James Raspass)
    - Fixed minor typo in the pod for HTTP::Cookies. (GH#39) (Mohammad S Anwar)

(mef)

2019-11-19 12:03:08 UTC MAIN commitmail json YAML

(www/p5-HTMLObject) Updated to 2.30

(from README, not from Changes)
NOTE: 2.30 fixed a dependency in Makefile.PL and is addressing the OSX ACL
files that got included in the tarball and break modern make instances.

(mef)

2019-11-19 11:51:43 UTC MAIN commitmail json YAML

(www/p5-HTML-Form) Updated 6.0.5

6.05      2019-10-04 20:28:20Z
    - Update pod as requested in [RT#87689] (GH#16) (Lance Wicks and Julien
      Fiegehenn)

(mef)

2019-11-18 12:28:04 UTC MAIN commitmail json YAML

(www/p5-App-Nopaste) Updated to 1.013

1.013  2019-07-23 02:00:06Z
        - amended instructions in App::Nopaste::Service::Gist regarding
          creating a gist authorization token
        - --copy now works with Control-V on X windows (PR#17, Shlomi Fish)

(mef)

2019-11-18 12:24:38 UTC MAIN commitmail json YAML

Added www/p5-Browser-Open version 0.04

(mef)

2019-11-18 12:21:57 UTC MAIN commitmail json YAML

www/p5-Browser-Open: import p5-Browser-Open-0.04

The functions optionaly exported by this module allows you to open URLs in
the user browser.

A set of known commands per OS-name is tested for presence, and the first
one found is executed. With an optional parameter, all known commands are
checked.

The "open_browser" uses the system() function to execute the command. If
you want more control, you can get the command with the "open_browser_cmd"
or "open_browser_cmd_all" functions and then use whatever method you want
to execute it.

(mef)

2019-11-17 21:44:34 UTC MAIN commitmail json YAML

2019-11-17 13:28:22 UTC MAIN commitmail json YAML

(www/p5-Apache2-AuthCookieDBI) remove patch, sorry

(mef)

2019-11-17 13:25:06 UTC MAIN commitmail json YAML

Updated www/p5-Apache2-AuthCookieDBI to 2.18

(mef)

2019-11-17 13:19:52 UTC MAIN commitmail json YAML

(www/p5-Apache2-AuthCookieDBI) Updated to 2.18

(pkgsrc)
- patch is incorporated, dropped. See below.

(upstream)
2.18 - Sat Aug 17 12:35:38 PDT 2019
    - Fix https://github.com/matisse/Apache-AuthCookieDBI/issues/3
      "DBI_CryptType crypt does not appear to work"
      Changes by Ed Sabol https://github.com/esabol

(mef)

2019-11-17 12:40:43 UTC MAIN commitmail json YAML

Updated sysutils/p5-Server-Starter to 0.35
Updated sysutils/psftools to 1.0.13
Updated sysutils/rdfind to 1.4.1

(mef)

2019-11-17 12:38:52 UTC MAIN commitmail json YAML

(sysutils/rdfind) Updated 1.3.4 to 1.4.1

2018-11-12 Paul Dreik <rdfind@pauldreik.se>
        * release of 1.4.1
        * fixes build failure on 32 bit platforms
        * tests: fix bad test logic in hardlink fail test
2018-11-09 Paul Dreik <rdfind@pauldreik.se>
        * release of 1.4.0
        * improve error message when failing to make symlink.
          See Github bug #5.
2018-10-28 Paul Dreik <rdfind@pauldreik.se>
        * release of 1.4.0-alpha0
        * cleanup of source to remove compiler warnings
          and switch to c++11
        * failure of making hard links will not delete the deduplicated
          file, if pssible. See Github bug #5.
        * failure of making symlinks will not delete the deduplicated
          file, if possible. See Github bug #5.
        * added option -minsize to optionally ignore files under a
          certain size. See Github bug #1
        * add sha256 support - see Debian Bug 815120 and Github #7
          the default checksum is now sha1 instead of md5
        * better error messages when -dryrun is misused. See Github #8
          and Debian Bug 754663
        * performance: pruning empty files earlier and other improvements.
          "rdfind -checksum sha1 /usr /usr" goes from 5.9 to 4.86 seconds on the
          author's machine, with hot filesystem cache.
        * increase size of integer types to be able to handle more than INTMAX
          files.
        * add deterministic mode, enabled by default. See Github issue #13 and
          Debian Bug 795790. When enabled, makes the program insensitive to the
          order of files when listing directories.
2017-01-04 Paul Dreik <rdfind@pauldreik.se>
        * release 1.3.5
        * source cleanup like removing obsolete comments, formatting.
        * fix man page typo on dryrun
        * console output showing how much space that can be saved
          is now properly capitalized. as you may have noted, I do not
          really like uppercase...
        * make check now works again (for some reason, it broke. maybe
          due to autotools updates)
2014-08-23 Paul Dreik <rdfind@pauldreik.se>
        * fix bug in using sha1 even if md5 is selected

(mef)

2019-11-17 12:35:41 UTC MAIN commitmail json YAML

(sysutils/psftools) Updated 1.0.7 to 1.0.13

(pkgsrc change)
- Add LICENSE = gnu-gpl-v2

(upstream changes)
2019-07-05 John Elliott

        * psftools-1.0.13 released.

2019-05-17 John Elliott

        * zx2psf: Added 'move1' mode to zx2psf - like 'bare' but remaps the
                pound and copyright to their ISO-8859-1 positions. [Damien
                Guard]

2019-03-19 John Elliott

        * psftools-1.0.12 released.

        * fnt2psf: Changed the Windows 1.x font extract to seek to the
        character bitmap rather than assuming it directly follows the
        widths table.

2017-03-17 John Elliott

        * cpi2psf: Was unable to parse LCD.CPI from Toshiba MS-DOS 3.30,
                which is slightly out of spec.
        * Updated GEM codepage now that there's a Unicode dingbat for 'bell'.
        (U+1F514).

2012-01-81 John Elliott

        * loadpsf: Support for Wang PC colour and mono video cards. Does
                  not support 'CGDC' or 'IBM emulation' card types.

2010-11-14 John Elliott

        * Updated build scripts to a more recent autoconf / automake.

2009-05-03 John Elliott

        * loadpsf: Added support for Compaq Portable plasma displays.

2008-06-21 John Elliott

        * psftools-1.0.8 released.
        * psfs2mda: Created new utility to build an MDA character ROM image.
        * mda2psf: Added a --compaq option to match the --compaq option in
          psfs2mda(1).

(mef)

2019-11-17 12:29:45 UTC MAIN commitmail json YAML

(sysutils/p5-Server-Starter) Updated to 0.35

0.35 2019-09-21T13:50:02Z
  - add support for UDP #52

(mef)

2019-11-17 12:11:01 UTC MAIN commitmail json YAML

doc: Updated sysutils/fzf to 0.18.0

(mef)

2019-11-17 12:10:38 UTC MAIN commitmail json YAML

(sysutils/fzf) Updated from 0.17.3 to 0.18.0 (one items fails at make test)

0.18.0
------

- Added placeholder expression for zero-based item index: `{n}` and `{+n}`
    - `fzf --preview 'echo {n}: {}'`
- Added color option for the gutter: `--color gutter:-1`
- Added `--no-unicode` option for drawing borders in non-Unicode, ASCII
  characters
- `FZF_PREVIEW_LINES` and `FZF_PREVIEW_COLUMNS` are exported to preview process
    - fzf still overrides `LINES` and `COLUMNS` as before, but they may be
      reset by the default shell.
- Bug fixes and improvements
    - See https://github.com/junegunn/fzf/milestone/14?closed=1
- Built with Go 1.12.1

0.17.5
------

- Bug fixes and improvements
    - See https://github.com/junegunn/fzf/milestone/13?closed=1
- Search query longer than the screen width is allowed (up to 300 chars)
- Built with Go 1.11.1

0.17.4
------

- Added `--layout` option with a new layout called `reverse-list`.
    - `--layout=reverse` is a synonym for `--reverse`
    - `--layout=default` is a synonym for `--no-reverse`
- Preview window will be updated even when there is no match for the query
  if any of the placeholder expressions (e.g. `{q}`, `{+}`) evaluates to
  a non-empty string.
- More keys for binding: `shift-{up,down}`, `alt-{up,down,left,right}`
- fzf can now start even when `/dev/tty` is not available by making an
  educated guess.
- Updated the default command for Windows.
- Fixes and improvements on bash/zsh completion
- install and uninstall scripts now supports generating files under
  `XDG_CONFIG_HOME` on `--xdg` flag.

See https://github.com/junegunn/fzf/milestone/12?closed=1 for the full list of
changes.

(mef)

2019-11-17 11:58:27 UTC MAIN commitmail json YAML

doc: Updated sysutils/etckeeper to 1.18.10

(mef)

2019-11-17 11:57:16 UTC MAIN commitmail json YAML

(sysutils/etckeeper) Updated from 1.18.8 to 1.18.10

(from debian/changelog)
etckeeper (1.18.10) unstable; urgency=medium

  * Avoid post-install failing when ps is from busybox or another
    version not supporting procps-specific options.
  * Use ps --no-headers rather than problimatic -h option.

-- Joey Hess <id@joeyh.name>  Sun, 23 Dec 2018 13:05:44 -0400

etckeeper (1.18.9) unstable; urgency=medium

  * When run during a package installation, include in the commit
    message the command line that caused etckeeper to run.
    Thanks, Laszlo Gombos

-- Joey Hess <id@joeyh.name>  Wed, 12 Dec 2018 01:01:05 -0400

(mef)

2019-11-16 12:48:48 UTC MAIN commitmail json YAML

doc: Updated cad/gtkwave to 3.3.103

(mef)

2019-11-16 12:48:19 UTC MAIN commitmail json YAML

(cad/gtkwave) Updated to 3.3.103

3.3.103 03nov19 Fix MAP_FAILED missing for MinGW.
                Fix to make the coloration red on 'u' traces.  (Bug from
                Dinotrace-like rendering in 3.3.96.)
                Typo fix on missing group start on vectors.

(mef)

2019-11-16 10:36:32 UTC MAIN commitmail json YAML

doc: Updated sysutils/p5-File-Copy-Recursive to 0.45

(mef)

2019-11-16 10:36:07 UTC MAIN commitmail json YAML

(sysutils/p5-File-Copy-Recursive) Updated 0.44 to 0.45

0.45 2019-07-23
    - PR #21: fix version 0.43 in Changes file (thanks karenetheridge)
    - PR #19: Added missing license meta name. (thanks manwar and karenetheridge)
    - PR #24: allow for dev = 0 on NetBSD (thanks plicease)
    - PR #25: Remove warning when copying a dir without write perm on the original. (thanks ehickeycp)
    - Issue #26: change issues from rt to github

(mef)

2019-11-16 10:14:37 UTC MAIN commitmail json YAML

doc: Updated sysutils/wipe to 2.3.1

(mef)

2019-11-16 10:14:15 UTC MAIN commitmail json YAML

(sysutils/wip) Updated 2.2.0 to 2.3.1

2.3.1:
fixed Makefile bug! Running make uninstall removed target bin directory.

2.3:

DEFAULTS!
the default is now one single random pass  <-- MAJOR CHANGE
special files are no longer deleted by default

support for wiping char devices, such as tape drives

percentage reporting improved (thanks to Jason Tackaberry for patch)

cleanup and exit upon SIGINT

each wiped file prints on a seperate line

skip unnecessary fdatasync()s, unless you want the extra accuracy on the % shown (-e option)

call fsync() on the file after name wipe, in addition to fsync on the directory

if fdatasync() fails, try for O_SYNC and only complain once per file

fixed some off-by-ones
fixed percentages for non-static wipes

2.2.1:
added largefile support for linux and solaris (tested on linux)

fixed drill_down(). it was using the wrong length to null term the string

(mef)

2019-11-16 00:49:06 UTC MAIN commitmail json YAML

Updated devel/p5-Log-Report to 1.29
Updated devel/p5-Future to 0.42
Updated devel/p5-Devel-CheckLib to 1.14
Updated devel/p5-Devel-PatchPerl to 1.78

(mef)

2019-11-16 00:47:39 UTC MAIN commitmail json YAML

(devel/p5-Devel-PatchPerl) Updated 1.64 to 1.78
-----------------------------------------
version 1.78 at 2019-11-14 14:18:25 +0000
-----------------------------------------
  -  Release engineering for 1.78
  -  No functional changes, removed stray file from the dist. GH #37

-----------------------------------------
version 1.76 at 2019-11-10 21:56:25 +0000
-----------------------------------------
  -  Release engineering for 1.76
  -  Fix issues with patching utils/h2ph.PL on v5.8.x
  -  Whilst I was at it got it working for the v5.9.x series and converted
    patch storage to base64

-----------------------------------------
version 1.74 at 2019-11-10 19:12:13 +0000
-----------------------------------------
  - Release engineering for 1.74
  - fix #35; restore file permission
  - Revert "Fix issue where Configure was left not executable"
  - This reverts commit 8c5111233d3120fc9e5c11045755a4d96d247848.
  - Will apply skaji's solution as it is much more elegant.

-----------------------------------------
version 1.72 at 2019-11-10 17:14:02 +0000
-----------------------------------------
  -  Release engineering for 1.72
  -  Fix issue where Configure was left not executable
  -  Added test prereq Test::More as suggested by CPANTS.
  -  Signed-off-by: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>

-----------------------------------------
version 1.70 at 2019-11-08 02:01:40 +0000
-----------------------------------------
  -  Release engineering for 1.70
  -  Added Base64 encoding of patches

-----------------------------------------
version 1.68 at 2019-11-07 10:11:25 +0000
-----------------------------------------
  -  Release engineering for 1.68
  -  Don't index package Errno

-----------------------------------------
version 1.66 at 2019-11-07 00:59:46 +0000
-----------------------------------------
  -  Release engineering for 1.66
  -  Fix issues with v5.7.x (h2ph.PL and Errno.pm.PL)
  -  Fix utils/h2ph.PL patching on v5.8.0
  -  Set files to be patched to 0644 if they are 0444, set back after.

  -  Issue 31: In an environment that uses the Lustre file system, it's
    been seen that any files that are set to 0444 (read only) will cause
    fatal filesystem errors when the patch is attempted. This makes using
    perlbrew to install perl on these systems impossible This change
    detects read-only files about to be patched, sets them to 0644 for
    the duration of the patching, then sets them back to 0444 so that
    they exist as expected during the actual build process.

(mef)

2019-11-16 00:41:20 UTC MAIN commitmail json YAML

(devel/p5-Devel-CheckLib) Updated to 1.14

1.14    2019-11-12      Use Capture::Tiny instead of Capture::Output

(mef)

2019-11-16 00:39:01 UTC MAIN commitmail json YAML

(devel/p5-Future) Updated to 0.42

0.42    2019-11-12
        [CHANGES]
        * Added Future::Queue

        [BUGFIXES]
        * Remove already-completed futures from the on_cancel chain of others
          to avoid the list growing arbitrarily large in some situations; e.g
          easily provoked by long loops in Future::AsyncAwait

(mef)

2019-11-16 00:32:30 UTC MAIN commitmail json YAML

(devel/p5-Log-Report) Updated to 1.29

version 1.29: Fri  8 Nov 09:18:01 CET 2019
        Fixes:
        - error code changed from libxml2 2.9.9 to 2.9.10
          rt.cpan.org#130934 [Petr Pisar]

        Improvements:
        - skip tests with error messages for Haiku, because they are quite
          different. [cpantesters]

(mef)

2019-11-13 15:53:37 UTC MAIN commitmail json YAML

doc: Updated x11/viewres to 1.0.6

(mef)

2019-11-13 15:53:26 UTC MAIN commitmail json YAML

(x11/viewer) Updated to 1.0.6

(pkgsrc)
- set license to x11 (compared by cwdiff)

(upstream)
commit 5661dfdc04572cdbb6ed4e641049657c4ba39252
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:  Sun Aug 25 16:11:01 2019 -0700

    viewres 1.0.6

    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 85f2a20e7535a5f8dcdeb805f3e30f387d45baf3
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:  Sat Jun 8 19:20:26 2019 -0700

    Fix -Wshadow warnings

    viewres.c: In function ���select_callback���:
    viewres.c:620:18: warning: declaration of ���node��� shadows a previous local [-Wshadow]
      XmuWidgetNode *node = selected_list.elements[i];
                      ^~~~
    viewres.c:593:20: note: shadowed declaration is here
        XmuWidgetNode *node;
                        ^~~~
    viewres.c:658:18: warning: declaration of ���node��� shadows a previous local [-Wshadow]
      XmuWidgetNode *node = selected_list.elements[i];
                      ^~~~
    viewres.c:593:20: note: shadowed declaration is here
        XmuWidgetNode *node;
                        ^~~~

    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 917269949545cf1ab1e0068cc2ba7c1f9a775012
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:  Sat Jun 8 19:16:53 2019 -0700

    Fix -Wsign-compare warnings

    viewres.c: In function ���set_resource_labels���:
    viewres.c:313:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
        for (i = 0; i < node->nresources; i++, res++, wn++) {
                      ^
    viewres.c:329:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
        for (i = 0; i < node->nconstraints; i++, res++, wn++) {
                      ^

    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit f846695df6b5d9543e12d1c8f04d9d7575df1ac6
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:  Sat Jun 8 19:15:34 2019 -0700

    Pass -D_CONST_X_STRING to make libXt declare String as const char *

    Clears up 32 of 38 gcc -Wdiscarded-qualifiers warnings

    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 74bd63d6e6768f96c3e6fc2b692a5b012edbcea3
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:  Wed Nov 21 16:58:21 2018 -0800

    Update configure.ac bug URL for gitlab migration

    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

commit 8ee2177d894c91a4a864b5b182705d72055e0090
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:  Fri Nov 16 20:55:55 2018 -0800

    Update README for gitlab migration

    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

(mef)

2019-11-12 14:58:13 UTC MAIN commitmail json YAML

2019-11-12 14:04:43 UTC MAIN commitmail json YAML

doc: Updated textproc/aha to 0.5

(mef)

2019-11-12 14:04:33 UTC MAIN commitmail json YAML

(textproc/aha) Updated from 0.4.10.6 to 0.5

Version 0.5 (recent):
- Added support for ansi vt220 character set using utf8 characters, useful for tables
- Added support for italic text (thanks to suve)
- Added support for crossed out text (thanks to suve)
- Added support for 8 bit colours (thanks to  John Poole and suve)
- Added support for 24 bit colours
- Added rudimentary support for highlighting
- Fixed behaviour of ESC[7m "negative image"
- Fixed charset information in head based on used encoding (thanks to suve)
- Fixed ESC[27m "revert off" (thanks to suve)
- Escaping html special characters in title (thanks to suve)
- Not returning zero at unknown option error (thanks to suve)
- Refactored used colour scheme from int to enum (thanks to suve)
- Refactored error report using errstr (thanks to suve)
- Refactored code to avoid warnings (thanks to suve)
- Refactored options to an own struct (thanks to suve)
- Refactored color printing switch to an array (thanks to suve)
- Refactored application state to an own struct (thanks to suve)

(mef)

2019-11-12 14:00:17 UTC MAIN commitmail json YAML

Updated textproc/p5-Lingua-EN-Inflect to 1.904
Updated textproc/p5-Lingua-EN-Tagger to 0.31
Updated textproc/p5-String-CRC32 to 1.8
Updated textproc/p5-String-Compare-ConstantTime to 0.321
Updated textproc/p5-Text-Autoformat to 1.75
Updated textproc/p5-Text-CSV_XS to 1.40
Updated textproc/p5-Text-Template to 1.58

(mef)

2019-11-12 13:58:53 UTC MAIN commitmail json YAML

(textproc/p5-Text-Template) Updated 1.55 to 1.58

1.58  2019-09-27
  - Remove hard coded (old) version number from README

1.57  2019-09-09
    - Fix several doc typos (Thanks Antoine C��ur)

1.56  2019-07-09
    - Fix typos in Changes

(mef)

2019-11-12 13:52:19 UTC MAIN commitmail json YAML

(textproc/p5-Text-CSV_XS) Updated to 1.40

1.40    - 2019-09-15, H.Merijn Brand
    * Update to Devel::PPPort-3.52
    * Development perl is now 5.28.2
    * [csv2xlsx] sheetnames are restricted to 31 characters
    * Generate cpanfile
    * Add munge type "db"
    * [csv2xls/csv2xlsx] do not generate xls/xlsx on empty CSV (issue#18)
    * New: support $csv->formula (sub { ... })
    * Support stacked encodings

(mef)

2019-11-12 13:45:57 UTC MAIN commitmail json YAML

(textproc/p5-Text-Autoformat) Updated to 1.75

1.75 2019-08-13 NEILB
    - Correctly handle lists with "0" on the end of them to preserve
      the "0" rather than dropping it

(mef)

2019-11-12 13:41:12 UTC MAIN commitmail json YAML

(textproc/p5-String-Compare-ConstantTime) Updated to 0.321

0.321  2019-06-17
  * Remove unnecessary sv_len_utf8 calls (thanks David Golden)
  * Test and document mixed UTF-8 flag comparison (thanks David Golden)

(mef)

2019-11-12 13:39:02 UTC MAIN commitmail json YAML

(textproc/p5-String-CRC32) Updated to 1.8

1.800    2019-11-01
        - Perldoc tweaks, GH #3, thanks to mattias-p

(mef)

2019-11-12 13:22:42 UTC MAIN commitmail json YAML

(textproc/p5-Lingua-EN-Tagger) Updated to 0.31

0.31            Aaron Coburn            7/12/19
        Fix memoize function

(mef)

2019-11-12 13:18:26 UTC MAIN commitmail json YAML

(textproc/p5-Lingua-EN-Inflect) Updated to 1.904

1.904  Sat Apr 27 22:01:03 2019
    - Corrected 'cyclops', 'triceratops', etc.
      (Thanks, Lady Aleena)

(mef)

2019-11-10 14:24:10 UTC MAIN commitmail json YAML

doc: Updated cad/xcircuit to 3.10.13

(mef)

2019-11-10 14:24:00 UTC MAIN commitmail json YAML

(cad/xcircuit) Updated 3.9.72 to 3.10.13, ChangeLog for recent unknown

(mef)

2019-11-10 13:28:15 UTC MAIN commitmail json YAML

cad/adms-2.3.6 cad/py-gds-1.4.2

(mef)

2019-11-10 13:17:18 UTC MAIN commitmail json YAML

doc: Updated cad/gtkwave to 3.3.102

(mef)

2019-11-10 13:17:04 UTC MAIN commitmail json YAML

(cad/gtkwave) Updated to 3.3.102

3.3.102 21sep19 Remove redundant TREE_VHDL_ST_PACKAGE from SST exclude.
                Added addCommentTracesFromList tcl command from user patch.
                Harden savefile loader for missing group start on vectors.
                Preliminary VHDL support for wlf2vcd.
                Add missing return value checks on mmap() in FST writer.

(mef)

2019-11-08 16:05:38 UTC MAIN commitmail json YAML

doc: Updated www/R-curl to 4.2

(mef)

2019-11-08 16:05:26 UTC MAIN commitmail json YAML

(www/R-curl) Updated from 4.0 to 4.2 (also fix build on NetBSD/amd64 9.0_BETA)

4.2
- Fix for old versions of libcurl (build was broken in 4.1 on RHEL / CentOS).
- Add hostname to timeout errors (#190)

4.1
- Fixed typechecking code for new internal macro names in libcurl 7.66
- Rewrite typechecking to work better with clang and old libcurl (#192)
- has_internet() now checks for connectivity via a proxy server if one is detected
- Windows: respect the CURL_SSL_BACKEND variable for people that want to use OpenSSL.
- Windows: respect CURL_CA_BUNDLE if (and only if) CURL_SSL_BACKEND == openssl
- curl_download now writes to a temporary file, which is renamed to the destfile
  upon success. This prevents corrupt files when a download fails or is interrupted.
- Automatically set forbid_reuse = TRUE in curl_echo() handles
- Update symbol table to 7.66.0

(mef)

2019-11-08 15:11:13 UTC MAIN commitmail json YAML

Updated net/p5-Net-Stomp to 0.60
Updated net/p5-Test-TCP to 2.22

(mef)

2019-11-08 15:10:20 UTC MAIN commitmail json YAML

(net/p5-Test-TCP) Updated from 2.20 to 2.22

2.22 2019-10-08T08:15:34Z
    - Portability fixes for Win32 and non-linux #83, #87

2.21 2019-10-03T03:15:22Z
    - Fix race condition in check_port(UDP) #78

(mef)

2019-11-08 15:04:31 UTC MAIN commitmail json YAML

(net/p5-Net-Stomp) Updated from 0.57 to 0.60

0.60 2019-07-17
- switch to Log::Any
- add trace / debug logging
- work sponsored by Broadbean Technology

(mef)

2019-11-08 14:53:11 UTC MAIN commitmail json YAML

Added devel/p5-Test-NiceDump version 1.0.1

(mef)

2019-11-08 14:50:23 UTC MAIN commitmail json YAML

devel/p5-Test-NiceDump: import p5-Test-NiceDump-1.0.1

This module uses Data::Dump::Filtered and a set of sensible filters to dump
test data in a more readable way.

For example, DateTime objects get printed in the full ISO 8601 format, and
DBIx::Class::Row objects get printed as hashes of their inflated columns.

(mef)

2019-11-08 14:42:27 UTC MAIN commitmail json YAML

doc: Updated net/p5-Net-Frame to 1.21

(mef)

2019-11-08 14:42:05 UTC MAIN commitmail json YAML

(net/p5-Net-Frame) Updated from 1.19 to 1.21

1.21 Thu 23 May 07:54:16 CEST 2019
  - update: copyright notice

1.20 Wed 22 May 11:15:40 CEST 2019
  - bugfix: tests for IPv4 & IPv6 DNS resolutions
  => https://rt.cpan.org/Ticket/Display.html?id=129409

(mef)

2019-11-08 14:26:46 UTC MAIN commitmail json YAML

doc: Updated net/p5-Net-DNS to 1.21

(mef)

2019-11-08 14:26:34 UTC MAIN commitmail json YAML

(net/p5-Net-DNS) Updated to 1.21

**** 1.21 Aug 30, 2019
- Fix error report for non-existent or recursive zone file $INCLUDE.
- Emit one deprecation warning on invocation of obsolete method.
- Rework OPT.pm EDNS0 option construction.
- Remove obsolete Net::DNS::RR::DLV package.
- Add Net::DNS::RR::ZONEMD package.

Fix rt.cpan.org #128901
        background TCP query logic expects to read entire response at once

(mef)

2019-11-04 03:45:27 UTC MAIN commitmail json YAML

Updated archivers/p5-Archive-Tar-Wrapper to 0.37

(mef)

2019-11-04 03:37:55 UTC MAIN commitmail json YAML

(archivers/p5-Archive-Tar-Wrapper) Updated from 0.33 to 0.37

(from: HomePage)
0.37 (2019/08/24):
    Fixed issue 14 - https://github.com/glasswalk3r/archive-tar-wrapper-perl/issues/14

0.36 (2019/04/11):
    Bug fixes since tests on Windows were failing after latests changes.
    Refactored code due unexpected way bsdtar on Windows and tar on OpenBSD behave.
    Refactored the tests due the bugs found.
    Small fixes on Pod, specially the section for MS Windows users.
    Added the missing tests to the MANIFEST.

0.35 (2019/04/05):
    Added _rem_dots method, a improved way to remove '.' and '..' from readdir(), supposed to be faster than previous implementation with sort() and shift().
    Added two more tests to increase testing coverage.
    Fixed a small bug regarding Pod, that now covers 100% of the code.
    Small fixes to documentation.

0.34 (2019/03/22):
    Increased test coverage.
    Refactored code to make it easier for testing.
    Disabled performance-small.t for now.
    Refactored bzip2 tests.
    Adding META.yml "provides" from Makefile.PL
    Covered methods that didn't have Pod.
    Refactored all Pod following best practices.
    Refactored a single method to be "private".
    Slightly changed new() to enable unit testing for OS specific configurations.

(mef)

2019-11-02 14:53:02 UTC MAIN commitmail json YAML

Updated time/p5-DateTime-Format-Flexible to 0.32
Updated time/p5-Data-ICal to 0.23

(mef)

2019-11-02 14:51:35 UTC MAIN commitmail json YAML

(time/p5-Data-ICal) Updated to 0.23

0.23 2019-08-14
- Rewrite property folding to be faster (and clearer)(thanks to Calvin Morrison)
- Linewrap tests: add a stronger assertion about expectation(thanks to Ricardo Signes)
Note that as the folding code is rewritten, there is a tiny behavior change:
Long folded strings will always contain CRLF at the end no matter if
original strings have that or not(they should have according to RFC).
Please report if this is an issue to you.

(mef)

2019-11-02 14:39:05 UTC MAIN commitmail json YAML

(time/p5-DateTime-Format-Flexible) Updated to 0.32

0.32 Sat Sep 14 2019
  - add support for offset timezones without a space separator and
    formatted HH:MM '2019-09-03T10:42:00.000-04:00'
    - thanks Stijn Heymans
  - allow negative timezone offsets in 2 and 4 digit lengths with and without spaces
    - now works: 2007-05-06T04:44:44-0800
    - now works: 2007-05-06T04:44:44-08
    - now works: 2007-05-06T04:44:44 -08
  - validate all timezone offsets

(mef)

2019-11-02 14:07:02 UTC MAIN commitmail json YAML

doc: Updated time/p5-DateTime-Locale to 1.25

(mef)

2019-11-02 14:06:50 UTC MAIN commitmail json YAML

(time/p5-DateTime-Locale) Updated to 1.25

1.25    2019-10-09
- Rebuilt all locale data with CLDR 36, released on 2019-10-04.

(mef)

2019-11-02 13:37:11 UTC MAIN commitmail json YAML

doc: Updated mail/p5-MIME-Lite to 3.031

(mef)

2019-11-02 13:36:52 UTC MAIN commitmail json YAML

(mail/p5-MIME-Lite) Updated to 3.031

=item Version 3.031

Add an SSL option to connect to the SMTP relay via SSL on port 465. (thanks,
Max Maischein)
Document some tips on using non-ASCII content with MIME::Lite (thanks,
traveljury.com and Tom Hukins)

(mef)

2019-11-02 13:32:08 UTC MAIN commitmail json YAML

doc: Updated databases/p5-BerkeleyDB to 0.63

(mef)

2019-11-02 13:31:51 UTC MAIN commitmail json YAML

(databases/p5-BerkeleyDB) Updated from 0.55 to 0.63

0.63  21 July 2019

        * added 000preret.t
          Dump version info in "make test"

0.62  20 July 2019

        * default to /usr/local/BerkeleyDB
          fcc0ad8adf310f7c8cc65788806439f2f8c39f90

        * __heap_exist prototype needed for db 5.2 or better
          7fe4ad8d74190d7f41a816c79e5ccf044c02c7c9

        * t/joint.: Silence Valgrinf
          https://rt.cpan.org/Ticket/Display.html?id=125605
          40d03924570f8516efe4a05982f402e8ce569637

        * db_remove missing txn code
          https://rt.cpan.org/Ticket/Display.html?id=124979
          b91875a9f3f55bb779ad7a448c9fff0645d8a527

        * Fix test failure when TRACE is enabled
          bb80b7d0fb83643ccddd8243d4c6b6ab637428df

        * Added BERKELEYDB_DEFINE_TRACE variable to allow TRACE to be enabled
          from .travis file.
          bd9ebf5aa149172afab55d6ba6f27d77cf08d91a

        * Add test with BERKELEYDB_DEFINE_TRACE set to .travis
          000b1d8dffe542d6476fe78f218cc95534f1c1c3

        * my_db_strerror: Add missing dTHX declaration
          Merge pull request https://github.com/pmqs/BerkeleyDB/pull/2
          4273345d8eff5f521788b3c5e71fb291bf46a646
          80ca9b77968ab84aaf8b546f2933d135202e16e0

        * create .appveyor.yml
          4e7b034ddbe76a7c2dcd189e1e0c935c1559aa2c

        * sync dbinfo from DB_File
          27b499fa9dbfca78adcc7a12ada43f0b05b6ece6

0.61  30 March 2019

        * Fix a couple of typos
          One's a copyright date out by 20 years.
          The other one breaks builds with 5.2 竕、 BDB < 6.2.
          Merge pull request https://github.com/pmqs/BerkeleyDB/pull/1

0.60  30 March 2019
        * Moved source to github https://github.com/pmqs/BerkeleyDB

        * Add META_MERGE to Makefile.PL

        * Added meta-json.t & meta-yaml.t

0.58  23 January 2018

        * please expose set_lg_filemode
          [RT #124979]

0.57  23 January 2018

        * Updates for BDB 6.3

0.56  5 January 2016

        * Updates for BDB 6.2

(mef)

2019-11-02 13:23:05 UTC MAIN commitmail json YAML

Added devel/p5-Test-CPAN-Meta-JSON version 0.16

(mef)

2019-11-02 13:20:16 UTC MAIN commitmail json YAML

devel/p5-Test-CPAN-Meta-JSON: import p5-Test-CPAN-Meta-JSON-0.16

This module was written to ensure that a META.json file, provided with a
standard distribution uploaded to CPAN, meets the specifications that are
slowly being introduced to module uploads, via the use of package makers
and installers such as ExtUtils::MakeMaker, Module::Build and
Module::Install.
See CPAN::Meta for further details of the CPAN Meta Specification.

(mef)

2019-11-02 11:51:38 UTC MAIN commitmail json YAML

Updated devel/p5-Alien-Build to 1.91
Updated devel/p5-CPAN-Perl-Releases to 4.18

(mef)

2019-11-02 11:46:30 UTC MAIN commitmail json YAML

(devel/p5-CPAN-Perl-Release)  Updated to 4.18

version 4.18 at 2019-10-27 18:15:47 +0000
-----------------------------------------
    Updated for v5.30.1-RC1

(mef)

2019-11-02 11:43:50 UTC MAIN commitmail json YAML

(devel/p5-Alien-Build) Update to 1.91

1.91      2019-11-01 20:19:19 -0600
  - Fix bug where Test::Alien::Diag could crash for Aliens without
    dynamic libraries.

(mef)

2019-11-02 11:36:25 UTC MAIN commitmail json YAML

Updated devel/p5-Test2-Suite to 0.000127
Updated devel/p5-Type-Tiny-XS to 0.016
Updated devel/p5-namespace-autoclean to 0.29

(mef)

2019-11-02 11:33:51 UTC MAIN commitmail json YAML

(devel/p5-namespace-autoclean) Updated to 0.29

0.29      2019-08-24 17:07:22Z
  - switch from Test::Requires to Test::Needs
  - report on the installed versions of more optional modules

(mef)

2019-11-02 11:21:50 UTC MAIN commitmail json YAML

(devel/p5-Type-Tiny-XS) Updated from 0.014 to 0.016

0.016  2019-09-05
[ Bug Fixes ]
  - Fix Int check on large unsigned integers.
    Graham Knop++
  <https://github.com/tobyink/p5-type-tiny-xs/pull/9>

0.015  2019-09-03
[ Bug Fixes ]
  - Casting a non-integer number to an integer elsewhere mistakenly caused
    the Int check to think the non-integer was an integer.
    Curtis "Ovid" Poe++
    <https://github.com/tobyink/p5-type-tiny-xs/issues/8>

(mef)

2019-11-02 11:17:19 UTC MAIN commitmail json YAML

(devel/p5-Test2-Suite) Updated to 0.000127

0.000127  2019-10-30 21:25:29-07:00 America/Los_Angeles
    - Fix srand toggling

(mef)

2019-11-02 11:09:54 UTC MAIN commitmail json YAML

Add devel/php-xdebug-2.8.0

(mef)

2019-11-02 06:51:26 UTC MAIN commitmail json YAML

doc: Updated devel/p5-Alien-Build to 1.90

(mef)

2019-11-02 06:51:14 UTC MAIN commitmail json YAML

(devel/p5-Align-Build) Updated to 1.90

1.90      2019-11-01 16:15:32 -0700
  - Added Test::Alien::Diag (gh#142)
  - Test::Alien ffi_ok add api option. (gh#143)

(mef)

2019-10-31 22:57:50 UTC MAIN commitmail json YAML

doc: Updated parallel/parallel to 20190922

(mef)

2019-10-31 22:57:38 UTC MAIN commitmail json YAML

(parallel/parallel) Updated 20160822 to 20190922. See NEWS (in source tree)

(mef)

2019-10-31 22:41:44 UTC MAIN commitmail json YAML

(www/emacs-w3m-snapshot)  Fix build, add buildlink3 of semi, and new patch for load-path

(mef)

2019-10-31 14:19:18 UTC MAIN commitmail json YAML

Updated devel/p5-Test-Simple to 1.302168
Updated devel/p5-Test-Spelling to 0.25
Updated devel/p5-Test-Taint to 1.08
Updated devel/p5-Test2-Plugin-NoWarnings
Updated devel/p5-Test2-Suite to 0.000126

(mef)

2019-10-31 14:17:46 UTC MAIN commitmail json YAML

(devel/p5-Test2-Suite) Updated from 0.000121 to 0.000126

0.000126  2019-08-28 12:44:59-07:00 America/Los_Angeles

    - Mention HUGE caveat in Test2::Plugin::Times
    - Make Test2::Util::Times::render_duration support 1 arg form

0.000125  2019-08-19 10:40:20-07:00 America/Los_Angeles

    - Add harness_job_fields to Times plugin

0.000124  2019-08-16 14:54:25-07:00 America/Los_Angeles

    - Make Times plugin use INFO facets for display

0.000123  2019-08-16 13:21:29-07:00 America/Los_Angeles

    - Fix double-load bug on Plugin::Times

0.000122  2019-05-18 08:21:20-07:00 America/Los_Angeles

    - Fix diag issues with ClassicCompare

(mef)

2019-10-31 14:07:53 UTC MAIN commitmail json YAML

(devel/p5-Test2-Plugin-NoWarnings) Updated from 0.06 to 0.08

0.08    2019-10-11
- Use IPC::Run3 instead of Capture::Tiny for all tests. This fixes an issue
  with the `tap-bug-in-test2.t` on Windows. Reported by Alexandr Ciornii and
  further diagnosed by Phil M. Perry. RT #129294.

0.07    2019-04-21
- Reverted back to using the Warning event type, since the bug in the Test2
  core that caused this to be a problem has since been fixed.

- Replaced use of Test2::Bundle::Extended with Test2::V0.

(mef)

2019-10-31 14:05:17 UTC MAIN commitmail json YAML

(devel/p5-Test-Taint) Updated from 1.06 to 1.08

1.08    Wed Jun 12 15:01:48 CDT 2019
        [FIXES]
        Fixed intermittent failures in the test suite.  Thanks, Petr
        Pisar. (RT #119897)

(mef)

2019-10-31 14:02:58 UTC MAIN commitmail json YAML

(devel/p5-Test-Spelling) Updated from 0.20 to 0.25

0.25      2019-05-28
  - Re-worded the documentation.
  - Ordered documented function in alphabetical order.
  - Fixed up the synopsis.
  - Put function usage examples directly below the function name; this
    makes it easier to get clickable links for functions in metacpan
  - Documented get_pod_parser
  - Moved hunspell up to the preferred checker

0.24      2019-05-24
  - Fixup the prereqs some
  - Revert the unicode support added in the last release as it caused
    some test breakage

0.23      2019-05-21
  - Fixed some documentation errors (Mohammad S Anwar)
  - Added unicode support (Kivanc Yazan, GH PR#10)
  - Bump Perl prereq to 5.8 now that we support unicode
  - Don't inherit from Exporter (Olivier Mengu辿, GH PR#9)
  - Bump Exporter prereq to 5.57

0.22      2019-04-24
  - Zero-code-change release encompassing everything from 0.21
  - Resolves RT#120425 . in @INC should no longer be an issue

0.21      2019-04-19 (TRIAL)
  - Removed the POD spelling test from /t as it's now in /xt
  - Forego usage of inc::Module::Install for EU::MM
  - List out all prereqs individually; provide cpanfile
  - Use dzil to build the dist
  - Convert the README to markdown
  - Add a LICENSE file
  - Clean up the Changes log

(mef)

2019-10-31 13:58:07 UTC MAIN commitmail json YAML

(devel/p5-Test-Simple) Updated  from 1.302164 to 1.302168

1.302168  2019-09-06 07:40:18-07:00 America/Los_Angeles

    - Fix Typo in a Test2::API::Breakage warning (Thanks E. Choroba)
    - Delay loading of Term::Table until needed (Thanks Graham Knop)

1.302167  2019-08-23 14:07:58-07:00 America/Los_Angeles

    - add test2_is_testing_done api method
    - Fix string compare warning

1.302166  2019-08-15 10:37:01-07:00 America/Los_Angeles

    - Fix context test on older perls

1.302165  2019-08-15 10:21:09-07:00 America/Los_Angeles

    - Better diagnostics when a context is destroyed unexpectedly
    - Add an event to notify when END phase starts

(mef)

2019-10-28 13:30:17 UTC MAIN commitmail json YAML

Updated devel/p5-List-SomeUtils to 0.58
Updated devel/p5-Term-Table to 0.014
Updated devel/p5-Test-Compile to 2.3.1
Updated devel/p5-Test-HTTP-LocalServer to 0.69
Updated devel/p5-Test-MockModule to 0.171.0
Updated devel/p5-Test-MockObject to 1.20191002
Updated devel/p5-Test-Script to 1.26
Updated devel/p5-IO-CaptureOutput to 1.1105

(mef)

2019-10-28 13:28:26 UTC MAIN commitmail json YAML

(devel/p5-IO-CaptureOutput) Correction, remove PKGREVISION

(mef)

2019-10-28 13:25:48 UTC MAIN commitmail json YAML

(devel/p5-Test-Script) Updated 1.25 to 1.26

1.26      2019-10-25 21:22:03 -0700
  - Add program_runs and related functions for testing programs
    that do not run under Perl (gh#26, gh#27)

(mef)

2019-10-28 13:06:24 UTC MAIN commitmail json YAML

(devel/p5-Test-MockObject) Updated 1.20180705 to 1.20191002

1.20191002 2019-10-02 09:32:54-07:00 America/Los_Angeles
    - replace non-core CGI dependency with core CPAN dependency
      (Yanick Champoux, GH PR #16)

(mef)

2019-10-28 13:01:46 UTC MAIN commitmail json YAML

(devel/p5-Test-MockModule) Updated 0.170.0 to 0.171.0

v0.171.0
- 89dc5c0 Fixes #25 - mocking core::global no longer fails trying to load the module - Geoff Franks
- 9bb081a update ci for fewer infinite loops - Geoff Franks
- 289d014 Update release notes for all the newly merged PRs - Geoff Franks
- fef9e74 Allow chaining of new with mock, redefine, define - Nicolas Rochelemagne
- e136131 Prevent redefine() from triggering DESTROY. - Felipe Gasper
- 311f6b4 Adjust Travis CI configuration to use travis-perl.github.io - Nicolas Rochelemagne
- 2bed3e2 Add strict mode to ban the use of noop and mock. - Todd Rinaldo
- 0298d8d Provide define method so the mock method is unneeded in tests. - Todd Rinaldo

(mef)

2019-10-28 12:58:10 UTC MAIN commitmail json YAML

(devel/p5-Test-HTTP-LocalServer) Updated 0.64 to 0.69

0.69 2019-10-01
    * Protect test suite against HTTP_PROXY (etc) being set, again
      This is mostly because the module itself doesn't care anymore, but now
      the test suite needs to protect itself.

0.68 2019-09-30
    * Add ->basic_auth endpoint

0.67 2019-09-29
    * More aggressively watch for startup of the web server to reduce idle
      times. Also speed up the test suite by polling instead of sleep()ing.
    * Added ->server_url() as a half-documented way of changing the URL
      the server is accessed at. This is self-service and if things break, you
      get to keep all the parts.
    * LWP::UserAgent is no more a (test) prerequisite. We do the tests from
      HTTP::Tiny (core since 5.14, runs on 5.6+).

0.66 2019-09-10
    * Make detection of IPv4 localhost vs. IPv6 localhost
      much more resilient. Backported from WWW::Mechanize, implemented by
      Shoichi Kaji.
    * We now need HTTP::Daemon 6.05.

0.65 2019-09-05
    * Fix order of module usage in test scripts, spotted by Jorol
      This only was a problem when you had $ENV{HTTP_PROXY} set.
    * Document that we clean out $ENV{HTTPS_PROXY} as well.

(mef)

2019-10-28 12:53:38 UTC MAIN commitmail json YAML

(devel/p5-Test-Compile) Updated 2.2.1 to 2.3.1

v2.3.1    2019-10-23
    - RT-130694: all_pm_files_ok and all_pl_files_ok should return true/false

v2.3.0    2019-10-09
    - Search for perl files in blib first (Alexandr Ciornii <alexchorny@gmail.com>)
    - Improve tests, remove redundant code,
    - Refactor POD, make the deprecation of the functional interface clearer

(mef)

2019-10-28 12:31:58 UTC MAIN commitmail json YAML

(devel/p5-Term-Table) Updated 0.013 to 0.014

0.014    2019-10-15 16:54:41-07:00 America/Los_Angeles
    - Clone STDOUT on load in case it gets changed later

(mef)

2019-10-28 12:29:00 UTC MAIN commitmail json YAML

(devel/p5-List-SomeUtils) Updated 0.56 to 0.58

0.58    2019-10-26
[BACKWARDS INCOMPATIBILITY]
* Fixed a number of bugs in the handling of empty lists. The any_u(), all_u(),
  none_u(), notall_u(), and one_u() functions returned an empty list in list
  context instead of undef. This is in direct opposition to the documentation
  which has always said that it returned undef. Note that the
  List::SomeUtils::XS code had the _correct_ behavior, so most users probably
  have never experienced this bug.

[IMPROVEMENTS]
* Fixed some doc issues. Closes #7.

0.57    2017-12-12 (TRIAL RELEASE)
[BACKWARDS INCOMPATIBILITY]
* Fixed a number of bugs in the handling of empty lists. The any_u(), all_u(),
  none_u(), notall_u(), and one_u() functions returned an empty list in list
  context instead of undef. This is in direct opposition to the documentation
  which has always said that it returned undef. Note that the
  List::SomeUtils::XS code had the _correct_ behavior, so most users probably
  have never experienced this bug.

(mef)

2019-10-28 12:25:05 UTC MAIN commitmail json YAML

(devel/p5-IO-CaptureOutput) Updated 1.1104 to 1.1105

1.1105    2019-10-25 17:40:04-04:00 America/New_York
    [META]
    - Add deprecation data to META file.

(mef)

2019-10-27 15:15:31 UTC MAIN commitmail json YAML

Updated devel/p5-Scalar-List-Utils to 1.53
Updated devel/p5-Scope-Upper to 0.32
Updated devel/p5-Sub-Quote to 2.006006

(mef)

2019-10-27 15:14:38 UTC MAIN commitmail json YAML

(devel/p5-Sub-Quote) Updated from 2.006003 to 2.006006

2.006006 - 2019-10-01
  - change quotify to use longest form of floating point numbers if unable to
    find a perfectly accurate representation
  - updated documentation for quotify to reflect handling of floating point
    numbers
  - don't try to copy hints hash entries that look like references (RT#122698)

2.006_005 - 2019-09-06
  - additional fixes for quotify for floating point numbers to be faster and
    should always be able to maintain accuracy

2.006_004 - 2019-04-24
  - change quotify of NaNs to simpler calculation
  - avoid ever triggering exceptions when testing for quotify on false values
  - skip quotify Inf and NaN tests if perl is compiled without support for
    them
  - fix quotify of very large or very small numbers
  - fix accuracy of quotify on high precision numbers when perl is compiled
    with quadmath
  - quotify will use hex floats when needed for full accuracy if they are
    available
  - change tests of quotify for floating point numbers to allow a small amount
    of inaccuracy, since decimal floats can't always be accurate

(mef)

2019-10-27 15:09:21 UTC MAIN commitmail json YAML

(devel/p5-Sub-Name) Updated from 0.21 to 0.26

0.26      2019-10-05 22:23:12Z
    - no changes since 0.25

0.25      2018-04-21 14:38:45Z (TRIAL RELEASE)
    - fix "Undefined symbol "DPPP_my_croak_xs_usage"" error on some perls
      (RT#125158)

0.24      2018-04-21 08:15:30Z (TRIAL RELEASE)
    - small internal changes to bring implementation in line with changes to
      Sub::Util (Graham Knop)

0.23      2016-10-23 04:33:37Z (TRIAL RELEASE)
    - test for renaming lexical subs, which should work on perl 5.22+. (PR#10,
      Graham Knop)

0.22      2016-10-17 01:41:42Z (TRIAL RELEASE)
    - %DB::sub is now populated correctly for sub names with wide characters
      or nulls. (PR#9: Graham Knop, Leon Timmermans, Reini Urban)
    - better perl 5.6 compatibility by lowering prereqs of core modules

(mef)

2019-10-27 15:06:41 UTC MAIN commitmail json YAML

(devel/p5-Specio) Updated to 0.44

0.44    2019-08-14
- Replaced the use of B with XString if it is installed. The latter is much
  smaller and provides the one subroutine from B we cared about. Based on GH
  #15. Implemented by Nicolas R.

(mef)

2019-10-27 15:04:07 UTC MAIN commitmail json YAML

(devel/p5-Scope-Upper)  Updated to 0.32

0.32    2019-07-08 12:50 UTC
        + Fix : [RT #129539] : fails with v5.27.3 and later with DEBUGGING
                The module has been amended to accomodate with a change of
                behaviour of a core macro.
        + Upd : Contact info.

(mef)

2019-10-27 14:22:59 UTC MAIN commitmail json YAML

(devel/p5-Scalar-List-Utils) Updated 1.52 to 1.53

1.53 -- 2019-10-24 10:41:12
        [BUGFIXES]
        * Handle Unicode package names in Scalar::Util::blessed (GH #81)

(mef)

2019-10-27 14:17:26 UTC MAIN commitmail json YAML

Updated devel/p5-Mouse to 2.5.9
Updated devel/p5-OOTools to 2.41
Updated devel/p5-PAR to 1.016
Updated devel/p5-PPIx-Regexp to 0.067
Updated devel/p5-Perl-Tidy to 20190915
Updated devel/p5-Role-Tiny to 2.001004

(mef)

2019-10-27 14:16:20 UTC MAIN commitmail json YAML

(devel/p5-Role-Tiny) Updated 2.000008 to 2.001004

2.001004 - 2019-10-25
  - fix methods being excluded from composition if they previously existed in
    the composing role (RT#130811)
  - fix role application overwriting subs that are not considered methods
  - fix helper subs created by a Role::Tiny extension (like Moo::Role)
    sometimes being teated as methods

2.001003 - 2019-10-09
  - releasing as stable

2.001_002 - 2019-10-06
  - fix methods from roles composed via create_class_with_roles being treated
    differently from roles composed directly (RT#128470)
  - fix constants being included in the methods provided by a role if they
    were created before importing Role::Tiny but used after importing
  - fix prototype handling test on cperl

2.001001 - 2019-10-01
  - added tests for make_role

2.001_000 - 2019-09-19
  - refactored method tracking to allow easier extending (such as by Moo)
  - added make_role method to make a package into a role, but without
    exporting any subs into it
  - refactored sub exporting to allow extensions to do different things with
    the subs

2.000_009 - 2019-09-06
  - fix composing roles into packages that have stub subs in them
  - treat constants consistently with all other subs, no matter where they are
    defined

(mef)

2019-10-27 14:04:38 UTC MAIN commitmail json YAML

(devel/p5-Perl-Tidy) Updated  from 20181120 to 20190915

## 2019 09 15
    - fixed issue RT#130344: false warning "operator in print statement"
      for "use lib".

    - fixed issue RT#130304: standard error output should include filename.
      When perltidy error messages are directed to the standard error output
      with -se or --standard-error-output, the message lines now have a prefix
      'filename:' for clarification in case multiple files
      are processed, where 'filename' is the name of the input file.  If
      input is from the standard input the displayed filename is '<stdin>',
      and if it is from a data structure then displayed filename
      is '<source_stream>'.

    - implement issue RT#130425: check mode.  A new flag '--assert-tidy'
      will cause an error message if the output script is not identical to
      the input script. For completeness, the opposite flag '--assert-untidy'
      has also been added.  The next item, RT#130297, insures that the script
      will exit with a non-zero exit flag if the assertion fails.

    - fixed issue RT#130297; the perltidy script now exits with a nonzero exit
      status if it wrote to the standard error output. Prevously only fatal
      run errors produced a non-zero exit flag. Now, even non-fatal messages
      requested with the -w flag will cause a non-zero exit flag.  The exit
      flag now has these values:

        0 = no errors
        1 = perltidy could not run to completion due to errors
        2 = perltidy ran to completion with error messages

    - added warning message for RT#130008, which warns of conflicting input
      parameters -iob and -bom or -boc.

    - fixed RT#129850; concerning a space between a closing block brace and
      opening bracket or brace, as occurs before the '[' in this line:

      my @addunix = map { File::Spec::Unix->catfile( @ROOT, @$_ ) } ['b'];

      Formerly, any space was removed. Now it is optional, and the output will
      follow the input.

    - fixed issue git#13, needless trailing whitespace in error message

    - fixed issue git#9: if the -ce (--cuddled-else) flag is used,
      do not try to form new one line blocks for a block type
      specified with -cbl, particularly map, sort, grep

    - iteration speedup for unchanged code.  Previously, when iterations were
      requested, at least two formatting passes were made. Now just a single pass
      is made if the formatted code is identical to the input code.

    - some improved vertical alignments

## 2019 06 01
    - rt #128477: Prevent inconsistent owner/group and setuid/setgid bits.
      In the -b (--backup-and-modify-in-place) mode, an attempt is made to set ownership
      of the output file equal to the input file, if they differ.
      In all cases, if the final output file ownership differs from input file, any setuid/setgid bits are cleared.

    - Added option -bom  (--break-at-old-method-breakpoints) by
      merrillymeredith which preserves breakpoints of method chains. Modified to also handle a cuddled call style.

    - Merged patch to fix Windows EOL translation error with UTF-8 written by
      Ron Ivy. This update prevents automatic conversion to 'DOS' CRLF line
      endings.  Also, Windows system testing at the appveyor site is working again.

    - RT #128280, added flag --one-line-block-semicolons=n (-olbs=n)
      to control semicolons in one-line blocks.  The values of n are:
        n=0 means no semicolons termininating simple one-line blocks
        n=1 means stable; do not change from input file [DEFAULT and current]
        n=2 means always add semicolons in one-line blocks
      The current behavior corresponds to the default n=1.

    - RT #128216, Minor update to prevent inserting unwanted blank line at
      indentation level change.  This should not change existing scripts.

    - RT #81852: Improved indentation when quoted word (qw) lists are
      nested within other containers using the --weld-nested (-wn) flag.
      The example given previously (below) is now closer to what it would
      be with a simple list instead of qw:

      # perltidy -wn
      use_all_ok( qw{
          PPI
          PPI::Tokenizer
          PPI::Lexer
          PPI::Dumper
          PPI::Find
          PPI::Normal
          PPI::Util
          PPI::Cache
      } );

    - RT#12764, introduced new feature allowing placement of blanks around
      sequences of selected keywords. This can be activated with the -kgb*
      series of parameters described in the manual.

    - Rewrote vertical algnment module.  It is better at finding
      patterns in complex code. For example,

OLD:
          /^-std$/ && do { $std      = 1;    next; };
          /^--$/  && do { @link_args = @argv; last; };
          /^-I(.*)/ && do { $path = $1 || shift @argv; next; };

NEW:
          /^-std$/  && do { $std      = 1;                next; };
          /^--$/    && do { @link_args = @argv;            last; };
          /^-I(.*)/ && do { $path      = $1 || shift @argv; next; };

    - Add repository URLs to META files

    - RT #118553, "leave only one newline at end of file". This option was not
      added because of undesirable side effects, but a new filter script
      was added which can do this, "examples/delete_ending_blank_lines.pl".

(mef)

2019-10-27 14:00:04 UTC MAIN commitmail json YAML

(devel/p5-PPI-Regexp) Updated 0.065 to 0.067

0.067          2019-08-30      T. R. Wyant
    \K was retracted in Perl 5.31.3, but only inside look-around
        assertions.

0.066          2019-08-16      T. R. Wyant
    Fix broken POD, and add tests to ensure it remains fixed.

(mef)

2019-10-27 13:57:39 UTC MAIN commitmail json YAML

(devel/p5-PAR) Updated 1.015 to 1.016

1.016  2019-05-20

  - Fix #129312: Code signing for OSX

    Avoid Archive::Zip::Archive error "can't find EOCD signature" for pp'ed
    executables with lots of stuff appended (e.g. by OSX codesign):
    temporarily increase Archive::Zip::ChunkSize around the call to
    Archive::Zip::readFromFileHandle().

    Note this is prerequisite for the corresponding fix in PAR::Packer.

  - Fix: Archive::Unzip::Burst::unzip result is ignored and _extract_inc
    does always the slow way, too

    PR from Vit Spinka <vit.spinka@gmail.com>, thanks!

  - Show debug messages if $ENV{PERL_DL_DEBUG} is true

(mef)

2019-10-27 13:55:28 UTC MAIN commitmail json YAML

(devel/p5-OOTools) Updated 2.40 to 2.41 (Please note # of digit changes, be careful, without digit 0)

Version 2.41 - 2019-04-02
- add Test::Pod to build requirements

(mef)

2019-10-27 13:49:47 UTC MAIN commitmail json YAML

(devel/p5-Mouse) Updated 2.5.7 to 2.5.9

v2.5.9 2019-08-26T14:46:49Z
    - Fix circular dependencies between Mouse and MouseX::Foreign (pghmcfc #102)

v2.5.8 2019-08-25T18:52:19Z
    - Fix segmentation fault which occurs when using MouseX::Foreign and role->apply at the same time (ken39arg #100, #101)

(mef)

2019-10-26 11:55:12 UTC MAIN commitmail json YAML

Updated devel/p5-Moo to 2.003006
Updated devel/p5-MooseX-Role-Parameterized to 1.11

(mef)

2019-10-26 11:53:56 UTC MAIN commitmail json YAML

(devel/p5-MooseX-Role-Parameterized) Updated 1.10 to 1.11

1.11      2019-07-16 01:33:16Z
  - remove MooseX::Role::WithOverloading from test dependencies (RT#130075)

(mef)

2019-10-26 11:32:27 UTC MAIN commitmail json YAML

(devel/p5-Moo)  Updated from 2.003004 to 2.003006

(I presume following line should read 2.003_006)
2.003_005 - 2019-10-18
  - always exclude helper subs (has, with, etc) from the list of methods, even
    if they are installed later or wrapped with a modifier
  - drop Devel::GlobalDestruction prerequisite unless using perl < 5.14
  - fix preserving full accuracy of numbers in non-ref defaults
  - fix tracking of stubs and constants as methods to be consistent and work
    properly with unusual ways of storing subs (RT#130050)
  - fix test for modules broken by newer Moo versions when new enough
    CPAN::Meta version is not available
  - fix undeferring subs before wrapping with a method modifier when subs to
    wrap are given as a list or array ref
  - fix error reporting locations from Carp calls in DEMOLISH (RT#124845)
  - fix extending attributes (has +) to allow overriding a default with a
    builder (RT#130361)
  - fix re-throwing Moose inflation exceptions when examining exception
    objects on older Moose or Devel::StackTrace versions
  - reorganized documentation related to Moose to improve clarity
  - improved documentation of usage with namespace::clean
  - various documentation tweaks

(mef)