Skip to content

Commit

Permalink
Update to 3.003
Browse files Browse the repository at this point in the history
Upstream changes:
3.003     2015-09-28T00:29:45Z

  - Bump Pod::Simple prereq to fix bugs that were causing test failures.
  - Use Pod::Simple's nbsp_for_S(1) by default instead of handling S<> sequences internally.
    This means the feature can now also be disabled if desired.
  - Portability improvements for non-ascii platforms.

3.002     2015-08-21T03:24:24Z

  - Add attribution to changelog.

3.001     2015-08-21T03:17:57Z

  - Increase Pod::Simple requirement to 3.26 for detected_encoding().
    Thanks to Lee J for reporting! (gh-15).

3.000     2015-08-16T21:55:14Z

  [Bug Fixes]
  - Literal ampersands and left angle brackets are encoded as html entities
    when necessary to avoid interpretation as html.
    http://stackoverflow.com/questions/28496298/escape-angle-brackets-using-podmarkdown

  [API Changes]
  - Make accessors read/write (instead of read-only)
    for consistency with Pod::Simple classes.
  - Passing unknown arguments to the constructor now produces a warning
    and in the future may throw an error.
  - For consistency with the other html-entity changes, NBSP characters (U+00A0)
    are now used literally for S<> sequences.
    This also fixes a bug with code spans nested inside of S<> sequences.

  [New Attributes]
  - Add `html_encode_chars` attribute to allow customizing what characters
    should be html entity encoded.
  - Add `match_encoding` attribute to use the same encoding as the input pod
    when writing to the output handle.
  - Add `output_encoding` attribute to specify the desired encoding
    to apply to the output handle.

  [pod2markdown script]
  - Add command line options corresponding to new module attributes.
  - The script now defaults to UTF-8 encoding if no encoding options are specified.
    Previous versions did not produce consistent output and would sometimes emit warnings.
    Closes gh-14 and rt-101536.

  [Documentation]
  - Remove documentation for deprecated API
    (parse_from_file(), parse_from_filehandle(), and as_markdown())
    to further discourage use.

  [New Packages]
  - Added Pod::Perldoc::ToMarkdown to enable `perldoc -o Markdown ...`
    Pod::Markdown maintains a backward compatible interface that is incompatible
    with perldoc's `-o` so this module has been added to enable the functionality.
    Thanks to Alberto Sim繭es for investigating (gh-12) and providing some code to fix it (gh-13).
  • Loading branch information
wen committed Oct 17, 2015
1 parent c42c2e5 commit 0dc3fa8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
5 changes: 2 additions & 3 deletions textproc/p5-Pod-Markdown/Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
# $NetBSD: Makefile,v 1.6 2015/09/05 13:35:57 mef Exp $
# $NetBSD: Makefile,v 1.7 2015/10/17 12:39:25 wen Exp $
#

DISTNAME= Pod-Markdown-2.002
DISTNAME= Pod-Markdown-3.003
PKGNAME= p5-${DISTNAME}
PKGREVISION= 1
CATEGORIES= textproc perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Pod/}

Expand Down
9 changes: 5 additions & 4 deletions textproc/p5-Pod-Markdown/distinfo
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
$NetBSD: distinfo,v 1.3 2014/09/12 09:02:33 wen Exp $
$NetBSD: distinfo,v 1.4 2015/10/17 12:39:25 wen Exp $

SHA1 (Pod-Markdown-2.002.tar.gz) = 684c0f5eece34d7e0300a6d92bc698633d000803
RMD160 (Pod-Markdown-2.002.tar.gz) = c2318b1e555bee540b43d86c25bc727b0b67b443
Size (Pod-Markdown-2.002.tar.gz) = 43053 bytes
SHA1 (Pod-Markdown-3.003.tar.gz) = 4fce9d81f6b5d084eb003fddd994b6babfffd48d
RMD160 (Pod-Markdown-3.003.tar.gz) = 6cf29eb50af20a81d999594c8f6566eb873fb84d
SHA512 (Pod-Markdown-3.003.tar.gz) = a3d9057b046a8bb7ac3c4cd61cd77dee2fcd62381a67283547a32d4a6ccf5d939f8e4dbc14b57fa7848222ee798abc3c4d07188e7154b8244625ae5e3f06e2a6
Size (Pod-Markdown-3.003.tar.gz) = 54953 bytes

0 comments on commit 0dc3fa8

Please sign in to comment.