Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python-polib-doc-1.1.0-bp153.1.19 RPM for noarch

From OpenSuSE Leap 15.3 for noarch

Name: python-polib-doc Distribution: SUSE Linux Enterprise 15 SP3
Version: 1.1.0 Vendor: openSUSE
Release: bp153.1.19 Build date: Sat Mar 6 01:21:20 2021
Group: Documentation/Other Build host: old-atreju4
Size: 862183 Source RPM: python-polib-1.1.0-bp153.1.19.src.rpm
Packager: https://bugs.opensuse.org
Url: http://bitbucket.org/izi/polib/
Summary: A library to manipulate gettext files - documentation
polib allows you to manipulate, create, modify gettext catalogs (.pot, .po and
binary .mo files). You can load existing files, iterate through it's entries,
add, modify entries, comments or metadata, etc... or create new po/pot files
from scratch.

polib provides a simple and pythonic API, exporting only two convenience
functions 'pofile' and 'mofile', and the 4 core classes: POFile, MOFile,
POEntry and MOEntry for creating new files/entries.

This package contains documentation in HTML format.

Provides

Requires

License

MIT

Changelog

* Mon Sep 10 2018 Matěj Cepl <mcepl@suse.com>
  - Add polib-1.1.0-fix-tests-big-endian.patch to overcome failing tests
    on big-endian machines (https://bitbucket.org/izi/polib/issues/96)
* Thu Jan 25 2018 tchvatal@suse.com
  - Version update to 1.1.0:
    - Fixed entries sorting when generating mo file (Fixes #78)
    - Fixed find method (Fixes #84)
    - Refactored POEntry.__cmp__ method (this should fix issues #60, #65 and #79)
    - Fixed duplicated entries when merging po file with pot file (fixes #68)
    - Fixed "None" string being outputted when polib deals with syntax error in string (Fixes issue #66)
    - Added a fuzzy property to entries (Fixes #76)
    - Take into account the message context when comparing entries
    - Leave occurence untouched if line number is not a number (fixes #80 and #90)
    - Fixed test for mo files that was failing because since gettext version 0.19.8.1, msgfmt skips the "POT-Creation-Date" metadata entry (Fixes #86)
    - Fixed major revision number comparison
    - Dropped python 2.4 support
  - Drop merged patch 2a4caf09e210554018bf0e928690d9617ff89e00.diff
* Mon Dec 04 2017 mlin@suse.com
  - Add upstream patch 2a4caf09e210554018bf0e928690d9617ff89e00.diff
    * Fixed test for mo files that was failing because since gettext
      version 0.19.8.1, msgfmt skips the "POT-Creation-Date" metadata
      entry.
* Sun Apr 23 2017 toddrme2178@gmail.com
  - Update to version 1.0.8
    * Fixed issue #70 (occurrences parsing for windows pathes)
    * Fixed issue #71 (tcomment and flags not saved for obsolete entries)
    * Fixed issue #72 (wrong metadata ordering)
    * Fixed issue #73 (can't always unpickle POFile)
    * Use natural sorting for additional headers (metadata)
    * Fixed typos in various documents
  - Update to version 1.0.7
    * Fixed bad parsing of indented msgstr_plural
    * Fixed ordering of "Language" metadata entry
    * Removed space after "#" in header if comment line is empty (like gettext tools)
    * Fixed typos / grammar errors (thanks Jakub Wilk)
    * Take into account msgid_plural if needed when comparing entries (thanks Leonardo Constantino Oliveira)
    * Fixed issue #63 (str() on a bytes instance when using python3) (thanks Jakub Wilk)
  - Implement single-spec version
  - Fix source url.
* Mon May 11 2015 benoit.monin@gmx.fr
  - update to version 1.0.6:
    * Wheel support
    * Add missing 'Language' and 'Plural-Forms' to metadata ordering
    * More accurate float operation for POFile.percent_translated()
  - additional changes from version 1.0.5:
    * Fixed issue #59: tokens variable referenced before assignment
    * Implemented feature request #56: line number information in PO
      entries
    * Fixed issue #61: polib does not handle previous msgid on
      multines properly
  - additional changes from version 1.0.4:
    * Fixed issue #43: improved check that determine if polib is
      dealing with a filepath or unicode content
    * Fixed issue #44: polib now checks MO files revision number and
      throws an error if the number is unexpected
    * Fixed issue #45: parse properly mo files with no header entry
    * Fixed issue #47: added flags attribute for MOEntry to be
      consistant with POEntry
    * Fixed issue #49: use integers rather than strings for
      msgstr_plural keys
    * Fixed issue #51: if a PO file ends with a comment, polib adds a
      spurious empty entry at the end
    * Fixed issue #52: bad magic number written on big endian
      platforms
    * Fixed issue #53: added a __hash__() method to POEntry and
      MOEntry classes
    * Fixed issue #54: use lowercase for state identifiers. This
      fixes issues with certain locales and string.lower()
    * Fixed issue #58: use io.open() instead of codecs.open() because
      the latter doesn't handle very well universal line endings
    * Make sure the mo file is closed at garbage collection, this
      prevents warnings on unclosed file when running tests with
      python >= 3.2
    * Better way to test indianness
    * polib download URL is now on Pypi
  - drop endian_magic.patch: fixed upstream
  - point the source URL to pypi
* Thu Sep 12 2013 dvaleev@suse.com
  - Fixed issue #53 (bad magic number written on big endian platforms)
    endian_magic.patch
* Mon Feb 11 2013 lazy.kent@opensuse.org
  - Correct RPM group.
  - Use full URL as a source.
  - Doesn't require fdupes.
* Sat Feb 09 2013 p.drouand@gmail.com
  - Update to 1.0.3
    * Fixed issue #38: POFile.append() raised a duplicate exception when
      you tried to add a new entry with the same msgid and a different msgctxt
      (only when check_for_duplicates option is set to True)
    * Fixed issue #39: Added __init__.py file for convenience
    * Fixed issue #41: UnicodeDecodeError when running setup.py build on
      python3 with C locale
    * polib is now fully PEP8 compliant
    * Small improvements: remove unused "typ" var, mproved Makefile, Make sure
      BaseFile.__contains__ returns a boolean value
* Wed Sep 12 2012 os-dev@jacraig.com
  - Update to 1.0.1:
    * speed up POFile.merge method
    * allow comments starting with two '#' characters
* Wed Jun 13 2012 os-dev@jacraig.com
  - Update to 1.0.0:
    * polib.pofile and polib.mofile functions can now return a custom class
      (thanks Craig Blaszczyk)
    * polib now can find the metadata entry no matter where it is located (thanks
      François Poirotte)
    * fixed issue #28 (IOError on reading obsolete "previous msgid" entries)
      (thanks James Ni)
    * Dropped python 2.4 support
  - Add %check section to run unit tests

Files

/usr/share/doc/packages/python-polib-doc
/usr/share/doc/packages/python-polib-doc/html
/usr/share/doc/packages/python-polib-doc/html/_modules
/usr/share/doc/packages/python-polib-doc/html/_modules/index.html
/usr/share/doc/packages/python-polib-doc/html/_modules/polib.html
/usr/share/doc/packages/python-polib-doc/html/_sources
/usr/share/doc/packages/python-polib-doc/html/_sources/api.rst.txt
/usr/share/doc/packages/python-polib-doc/html/_sources/contributing.rst.txt
/usr/share/doc/packages/python-polib-doc/html/_sources/index.rst.txt
/usr/share/doc/packages/python-polib-doc/html/_sources/installation.rst.txt
/usr/share/doc/packages/python-polib-doc/html/_sources/projects.rst.txt
/usr/share/doc/packages/python-polib-doc/html/_sources/quickstart.rst.txt
/usr/share/doc/packages/python-polib-doc/html/_static
/usr/share/doc/packages/python-polib-doc/html/_static/ajax-loader.gif
/usr/share/doc/packages/python-polib-doc/html/_static/basic.css
/usr/share/doc/packages/python-polib-doc/html/_static/classic.css
/usr/share/doc/packages/python-polib-doc/html/_static/comment-bright.png
/usr/share/doc/packages/python-polib-doc/html/_static/comment-close.png
/usr/share/doc/packages/python-polib-doc/html/_static/comment.png
/usr/share/doc/packages/python-polib-doc/html/_static/default.css
/usr/share/doc/packages/python-polib-doc/html/_static/doctools.js
/usr/share/doc/packages/python-polib-doc/html/_static/documentation_options.js
/usr/share/doc/packages/python-polib-doc/html/_static/down-pressed.png
/usr/share/doc/packages/python-polib-doc/html/_static/down.png
/usr/share/doc/packages/python-polib-doc/html/_static/file.png
/usr/share/doc/packages/python-polib-doc/html/_static/jquery-3.2.1.js
/usr/share/doc/packages/python-polib-doc/html/_static/jquery.js
/usr/share/doc/packages/python-polib-doc/html/_static/language_data.js
/usr/share/doc/packages/python-polib-doc/html/_static/minus.png
/usr/share/doc/packages/python-polib-doc/html/_static/plus.png
/usr/share/doc/packages/python-polib-doc/html/_static/pygments.css
/usr/share/doc/packages/python-polib-doc/html/_static/searchtools.js
/usr/share/doc/packages/python-polib-doc/html/_static/sidebar.js
/usr/share/doc/packages/python-polib-doc/html/_static/underscore-1.3.1.js
/usr/share/doc/packages/python-polib-doc/html/_static/underscore.js
/usr/share/doc/packages/python-polib-doc/html/_static/up-pressed.png
/usr/share/doc/packages/python-polib-doc/html/_static/up.png
/usr/share/doc/packages/python-polib-doc/html/_static/websupport.js
/usr/share/doc/packages/python-polib-doc/html/api.html
/usr/share/doc/packages/python-polib-doc/html/contributing.html
/usr/share/doc/packages/python-polib-doc/html/genindex.html
/usr/share/doc/packages/python-polib-doc/html/index.html
/usr/share/doc/packages/python-polib-doc/html/installation.html
/usr/share/doc/packages/python-polib-doc/html/objects.inv
/usr/share/doc/packages/python-polib-doc/html/projects.html
/usr/share/doc/packages/python-polib-doc/html/quickstart.html
/usr/share/doc/packages/python-polib-doc/html/search.html
/usr/share/doc/packages/python-polib-doc/html/searchindex.js


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 14:50:04 2024