Up to [cvs.NetBSD.org] / pkgsrc / converters / py-chardet
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.35 / (download) - annotate - [select for diffs], Sat Oct 28 19:56:55 2023 UTC (5 weeks, 1 day ago) by wiz
Branch: MAIN
CVS Tags: HEAD
Changes since 1.34: +3 -1
lines
Diff to previous 1.34 (colored)
python/wheel.mk: simplify a lot, and switch to 'installer' for installation This follows the recommended bootstrap method (flit_core, build, installer). However, installer installs different files than pip, so update PLISTs for all packages using wheel.mk and bump their PKGREVISIONs.
Revision 1.34 / (download) - annotate - [select for diffs], Mon Sep 4 09:42:18 2023 UTC (2 months, 4 weeks ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2023Q3-base,
pkgsrc-2023Q3
Changes since 1.33: +1 -4
lines
Diff to previous 1.33 (colored)
py-chardet: remove unneeded test dependency pkglint cleanup while here
Revision 1.33 / (download) - annotate - [select for diffs], Wed Aug 2 06:45:12 2023 UTC (4 months ago) by adam
Branch: MAIN
Changes since 1.32: +3 -5
lines
Diff to previous 1.32 (colored)
py-chardet: updated to 5.2.0 5.2.0 Adds support for running chardet CLI via python -m chardet
Revision 1.32 / (download) - annotate - [select for diffs], Mon Dec 5 08:35:47 2022 UTC (11 months, 4 weeks ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2023Q2-base,
pkgsrc-2023Q2,
pkgsrc-2023Q1-base,
pkgsrc-2023Q1,
pkgsrc-2022Q4-base,
pkgsrc-2022Q4
Changes since 1.31: +6 -6
lines
Diff to previous 1.31 (colored)
py-chardet: updated to 5.1.0 chardet 5.1.0 Features Add should_rename_legacy argument to most functions, which will rename older encodings to their more modern equivalents (e.g., GB2312 becomes GB18030) Add capital letter sharp S and ISO-8859-15 support Add a prober for MacRoman encoding Add --minimal flag to chardetect command Add type annotations to the project and run mypy on CI Add support for Python 3.11 Fixes Clarify LGPL version in License trove classifier Remove support for EOL Python 3.6 Remove unnecessary guards for non-falsey values Misc changes Switch to Python 3.10 release in GitHub actions Remove setup.py in favor of build package Run tests on macos, Windows, and 3.11-dev
Revision 1.31 / (download) - annotate - [select for diffs], Wed Jul 6 11:20:16 2022 UTC (16 months, 4 weeks ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2022Q3-base,
pkgsrc-2022Q3
Changes since 1.30: +3 -1
lines
Diff to previous 1.30 (colored)
py-chardet: mark as not for python 2.7 Use py-chardet4 for that
Revision 1.30 / (download) - annotate - [select for diffs], Sun Jul 3 12:45:17 2022 UTC (17 months ago) by wiz
Branch: MAIN
Changes since 1.29: +10 -6
lines
Diff to previous 1.29 (colored)
py-chardet: update to 5.0.0. This release is the first release of chardet that no longer supports Python < 3.6. In addition to that change, it features the following user-facing changes: Added a prober for Johab Korean (#207, @grizlupo) Added a prober for UTF-16/32 BE/LE (#109, #206, @jpz) Added test data for Croatian, Czech, Hungarian, Polish, Slovak, Slovene, Greek, and Turkish, which should help prevent future errors with those languages Improved XML tag filtering, which should improve accuracy for XML files (#208) Tweaked SingleByteCharSetProber confidence to match latest uchardet (#209) Made detect_all return child prober confidences (#210) Updated examples in docs (#223, @domdfcoding) Documentation fixes (#212, #224, #225, #226, #220, #221, #244 from too many to mention) Minor performance improvements (#252, @deedy5) Add support for Python 3.10 when testing (#232, @jdufresne) Lots of little development cycle improvements, mostly thanks to @jdufresne
Revision 1.29 / (download) - annotate - [select for diffs], Wed Jan 5 15:40:59 2022 UTC (22 months, 4 weeks ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2022Q2-base,
pkgsrc-2022Q2,
pkgsrc-2022Q1-base,
pkgsrc-2022Q1
Changes since 1.28: +4 -2
lines
Diff to previous 1.28 (colored)
python: egg.mk: add USE_PKG_RESOURCES flag This flag should be set for packages that import pkg_resources and thus need setuptools after the build step. Set this flag for packages that need it and bump PKGREVISION.
Revision 1.28 / (download) - annotate - [select for diffs], Tue Jan 4 20:52:39 2022 UTC (22 months, 4 weeks ago) by wiz
Branch: MAIN
Changes since 1.27: +2 -1
lines
Diff to previous 1.27 (colored)
*: bump PKGREVISION for egg.mk users They now have a tool dependency on py-setuptools instead of a DEPENDS
Revision 1.27 / (download) - annotate - [select for diffs], Mon Jan 4 11:53:14 2021 UTC (2 years, 10 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2021Q4-base,
pkgsrc-2021Q4,
pkgsrc-2021Q3-base,
pkgsrc-2021Q3,
pkgsrc-2021Q2-base,
pkgsrc-2021Q2,
pkgsrc-2021Q1-base,
pkgsrc-2021Q1
Changes since 1.26: +2 -2
lines
Diff to previous 1.26 (colored)
py-chardet: update to 4.0.0. This will be the last release of chardet to support Python 2.7. chardet 5.0 will only support 3.6+ Major Changes This release is multiple years in the making, and provides some quality of life improvements to chardet. The primary user-facing changes are: Single-byte charset probers now use nested dictionaries under the hood, so they are usually a little faster than before. (See #121 for details) The CharsetGroupProber class now properly short-circuits when one of the probers in the group is considered a definite match. This lead to a substantial speedup. There is now a chardet.detect_all function that returns a list of possible encodings for the input with associated confidences. We have dropped support for Python 2.6, 3.4, and 3.5 as they are all past end-of-life. The changes in this release have also laid the groundwork for retraining the models to make them more accurate, and to support some more encodings/languages (see #99 for progress). This is our main focus for chardet 5.0 (beyond dropping Python 2 support).
Revision 1.26 / (download) - annotate - [select for diffs], Tue Oct 6 10:51:21 2020 UTC (3 years, 1 month ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2020Q4-base,
pkgsrc-2020Q4
Changes since 1.25: +4 -2
lines
Diff to previous 1.25 (colored)
*: use py-hypothesis via versioned_dependencies.mk
Revision 1.25 / (download) - annotate - [select for diffs], Sat May 16 08:43:55 2020 UTC (3 years, 6 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2020Q3-base,
pkgsrc-2020Q3,
pkgsrc-2020Q2-base,
pkgsrc-2020Q2
Changes since 1.24: +1 -2
lines
Diff to previous 1.24 (colored)
py-chardet: not need to include application.mk
Revision 1.24 / (download) - annotate - [select for diffs], Sat May 16 08:43:24 2020 UTC (3 years, 6 months ago) by adam
Branch: MAIN
Changes since 1.23: +3 -3
lines
Diff to previous 1.23 (colored)
py-chardet: pytest from versioned depens
Revision 1.23 / (download) - annotate - [select for diffs], Mon Aug 20 22:36:20 2018 UTC (5 years, 3 months ago) by szptvlfn
Branch: MAIN
CVS Tags: pkgsrc-2020Q1-base,
pkgsrc-2020Q1,
pkgsrc-2019Q4-base,
pkgsrc-2019Q4,
pkgsrc-2019Q3-base,
pkgsrc-2019Q3,
pkgsrc-2019Q2-base,
pkgsrc-2019Q2,
pkgsrc-2019Q1-base,
pkgsrc-2019Q1,
pkgsrc-2018Q4-base,
pkgsrc-2018Q4,
pkgsrc-2018Q3-base,
pkgsrc-2018Q3
Changes since 1.22: +5 -6
lines
Diff to previous 1.22 (colored)
BUILD_DEPENDS+= -> TEST_DEPENDS+=
Revision 1.22 / (download) - annotate - [select for diffs], Sun Sep 3 08:53:05 2017 UTC (6 years, 3 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2018Q2-base,
pkgsrc-2018Q2,
pkgsrc-2018Q1-base,
pkgsrc-2018Q1,
pkgsrc-2017Q4-base,
pkgsrc-2017Q4,
pkgsrc-2017Q3-base,
pkgsrc-2017Q3
Changes since 1.21: +2 -2
lines
Diff to previous 1.21 (colored)
Follow some redirects.
Revision 1.21 / (download) - annotate - [select for diffs], Thu Jun 8 22:19:14 2017 UTC (6 years, 5 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2017Q2-base,
pkgsrc-2017Q2
Changes since 1.20: +2 -3
lines
Diff to previous 1.20 (colored)
Remove outdated comment, tests work.
Revision 1.20 / (download) - annotate - [select for diffs], Thu Jun 8 19:06:51 2017 UTC (6 years, 5 months ago) by adam
Branch: MAIN
Changes since 1.19: +2 -2
lines
Diff to previous 1.19 (colored)
chardet 3.0.4 This minor bugfix release just fixes some packaging and documentation issues: * Fix issue with setup.py where pytest_runner was always being installed. * Make sure test.py is included in the manifest * Fix a bunch of old URLs in the README and other docs. * Update documentation to no longer imply we test/support Python 3 versions before 3.3
Revision 1.19 / (download) - annotate - [select for diffs], Wed May 17 07:09:53 2017 UTC (6 years, 6 months ago) by adam
Branch: MAIN
Changes since 1.18: +2 -2
lines
Diff to previous 1.18 (colored)
Changes 3.0.3: This release fixes a crash when debugging logging was enabled.
Revision 1.18 / (download) - annotate - [select for diffs], Sun Apr 23 16:08:02 2017 UTC (6 years, 7 months ago) by wiz
Branch: MAIN
Changes since 1.17: +3 -1
lines
Diff to previous 1.17 (colored)
Add missing unused test dependency. See also https://github.com/chardet/chardet/issues/120
Revision 1.17 / (download) - annotate - [select for diffs], Wed Apr 19 17:24:16 2017 UTC (6 years, 7 months ago) by wiz
Branch: MAIN
Changes since 1.16: +6 -4
lines
Diff to previous 1.16 (colored)
Updated py-chardet to 3.0.2. chardet 3.0.2 Fixes an issue where detect would sometimes return None instead of a dict with the keys encoding, language, and confidence (Issue #113, PR #114). chardet 3.0.1 This bugfix release fixes a crash in the EUC-TW prober when it encountered certain strings (Issue #67). chardet 3.0.0 This release is long overdue, but still mostly serves as a placeholder for the impending 4.0.0 release, which will have retrained models for better accuracy. For now, this release will get the following improvements up on PyPI: Added support for Turkish ISO-8859-9 detection (PR #41, thanks @queeup) Commented out large unused sections of Big5 and EUC-KR tables to save memory (8bc4b89) Removed Python 3.2 from testing, but add 3.4 - 3.6 Ensure that stdin is open with mode 'rb' for chardetect CLI. (PR #38, thanks @lpsinger) Fixed chardetect crash with non-ascii file names (PR #39, thanks @nkanaev) Made naming conventions more Pythonic throughout (no more mTypicalPositiveRatio, and instead typical_positive_ratio) Modernized test scripts and infrastructure so we've got Travis testing and all that stuff Rename filter_without_english_words to filter_international_words and make it match current Mozilla implementation (PR #44, thanks @rsnair2) Updated filter_english_letters to match C implementation (c665459) Temporarily disabled Hungarian ISO-8859-2 and Windows-1250 detection because it is very inaccurate (da6c0a0) Allow CLI sub-package to be importable (PR #55) Add a hypotheis-based test (PR #66, thanks @DRMacIver) Strip endianness from UTF with BOM predictions so that the encoding can be passed directly to bytes.decode() (PR #73, thanks @snoack) Fixed broken links in docs (PR #90, thanks @roskakori) Added early exit to chardetect when encoding is detected instead of looping through entire file (PR #103, thanks @jpz) Use bytearray objects internally instead of wrap_ord calls, which provides a nice performance boost across the board (PR #106) Add language property to probers and UniversalDetector results (PR #180) Mark the 5 known test failures as such so we can have more useful Travis build results in the meantime (d588407)
Revision 1.16 / (download) - annotate - [select for diffs], Tue Jan 3 13:23:01 2017 UTC (6 years, 11 months ago) by jperkin
Branch: MAIN
CVS Tags: pkgsrc-2017Q1-base,
pkgsrc-2017Q1
Changes since 1.15: +2 -2
lines
Diff to previous 1.15 (colored)
Use "${MV} || ${TRUE}" and "${RM} -f" consistently in post-install targets.
Revision 1.15 / (download) - annotate - [select for diffs], Sun Aug 28 15:48:29 2016 UTC (7 years, 3 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2016Q4-base,
pkgsrc-2016Q4,
pkgsrc-2016Q3-base,
pkgsrc-2016Q3
Changes since 1.14: +1 -3
lines
Diff to previous 1.14 (colored)
Remove unnecessary PLIST_SUBST and FILES_SUBST that are now provided by the infrastructure. Mark a couple more packages as not ready for python-3.x.
Revision 1.14 / (download) - annotate - [select for diffs], Wed Jun 8 17:43:21 2016 UTC (7 years, 5 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2016Q2-base,
pkgsrc-2016Q2
Changes since 1.13: +2 -2
lines
Diff to previous 1.13 (colored)
Switch to MASTER_SITES_PYPI.
Revision 1.13 / (download) - annotate - [select for diffs], Fri Feb 5 12:40:56 2016 UTC (7 years, 9 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2016Q1-base,
pkgsrc-2016Q1
Changes since 1.12: +8 -2
lines
Diff to previous 1.12 (colored)
Fix self-conflict between different python versions of this package. Bump PKGREVISION.
Revision 1.12 / (download) - annotate - [select for diffs], Sun Oct 12 14:52:36 2014 UTC (9 years, 1 month ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2015Q4-base,
pkgsrc-2015Q4,
pkgsrc-2015Q3-base,
pkgsrc-2015Q3,
pkgsrc-2015Q2-base,
pkgsrc-2015Q2,
pkgsrc-2015Q1-base,
pkgsrc-2015Q1,
pkgsrc-2014Q4-base,
pkgsrc-2014Q4
Changes since 1.11: +2 -2
lines
Diff to previous 1.11 (colored)
Update to 2.3.0: Changes not found.
Revision 1.11 / (download) - annotate - [select for diffs], Sat Jan 25 10:29:58 2014 UTC (9 years, 10 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2014Q3-base,
pkgsrc-2014Q3,
pkgsrc-2014Q2-base,
pkgsrc-2014Q2,
pkgsrc-2014Q1-base,
pkgsrc-2014Q1
Changes since 1.10: +1 -2
lines
Diff to previous 1.10 (colored)
Mark packages as not ready for python-3.x where applicable; either because they themselves are not ready or because a dependency isn't. This is annotated by PYTHON_VERSIONS_INCOMPATIBLE= 33 # not yet ported as of x.y.z or PYTHON_VERSIONS_INCOMPATIBLE= 33 # py-foo, py-bar respectively, please use the same style for other packages, and check during updates. Use versioned_dependencies.mk where applicable. Use REPLACE_PYTHON instead of handcoded alternatives, where applicable. Reorder Makefile sections into standard order, where applicable. Remove PYTHON_VERSIONS_INCLUDE_3X lines since that will be default with the next commit. Whitespace cleanups and other nits corrected, where necessary.
Revision 1.10 / (download) - annotate - [select for diffs], Thu Jan 2 17:55:40 2014 UTC (9 years, 11 months ago) by wiz
Branch: MAIN
Changes since 1.9: +6 -2
lines
Diff to previous 1.9 (colored)
Update to 2.2.1, changelog not found.
Revision 1.9 / (download) - annotate - [select for diffs], Sat Oct 20 13:14:48 2012 UTC (11 years, 1 month ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2013Q4-base,
pkgsrc-2013Q4,
pkgsrc-2013Q3-base,
pkgsrc-2013Q3,
pkgsrc-2013Q2-base,
pkgsrc-2013Q2,
pkgsrc-2013Q1-base,
pkgsrc-2013Q1,
pkgsrc-2012Q4-base,
pkgsrc-2012Q4
Changes since 1.8: +6 -10
lines
Diff to previous 1.8 (colored)
Update to 2.1.1. Old HOMEPAGE gone, switch to pypi. Changes undocumented.
Revision 1.8 / (download) - annotate - [select for diffs], Wed Oct 3 00:20:16 2012 UTC (11 years, 2 months ago) by asau
Branch: MAIN
Changes since 1.7: +1 -3
lines
Diff to previous 1.7 (colored)
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
Revision 1.7 / (download) - annotate - [select for diffs], Mon Jan 23 07:54:23 2012 UTC (11 years, 10 months ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2012Q3-base,
pkgsrc-2012Q3,
pkgsrc-2012Q2-base,
pkgsrc-2012Q2,
pkgsrc-2012Q1-base,
pkgsrc-2012Q1
Changes since 1.6: +4 -3
lines
Diff to previous 1.6 (colored)
distutils pkg, register egg-info. Bump PKGREVISION.
Revision 1.6 / (download) - annotate - [select for diffs], Tue Nov 17 14:29:32 2009 UTC (14 years ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2011Q4-base,
pkgsrc-2011Q4,
pkgsrc-2011Q3-base,
pkgsrc-2011Q3,
pkgsrc-2011Q2-base,
pkgsrc-2011Q2,
pkgsrc-2011Q1-base,
pkgsrc-2011Q1,
pkgsrc-2010Q4-base,
pkgsrc-2010Q4,
pkgsrc-2010Q3-base,
pkgsrc-2010Q3,
pkgsrc-2010Q2-base,
pkgsrc-2010Q2,
pkgsrc-2010Q1-base,
pkgsrc-2010Q1,
pkgsrc-2009Q4-base,
pkgsrc-2009Q4
Changes since 1.5: +3 -3
lines
Diff to previous 1.5 (colored)
Update to 2.0.1 (python3 version of this library also available!) 2.0.1 (2009-11-10) * Migrated to http://code.google.com/p/chardet * Fixed minor typo in documentation * Synchronized version numbers of Python 2 and Python 3 versions
Revision 1.5 / (download) - annotate - [select for diffs], Sat Jul 11 05:52:17 2009 UTC (14 years, 4 months ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2009Q3-base,
pkgsrc-2009Q3
Changes since 1.4: +2 -1
lines
Diff to previous 1.4 (colored)
Added license information as requested by maintainer via PR 41697.
Revision 1.4 / (download) - annotate - [select for diffs], Sat Mar 21 21:38:09 2009 UTC (14 years, 8 months ago) by snj
Branch: MAIN
CVS Tags: pkgsrc-2009Q2-base,
pkgsrc-2009Q2,
pkgsrc-2009Q1-base,
pkgsrc-2009Q1
Changes since 1.3: +2 -3
lines
Diff to previous 1.3 (colored)
Change maintainer address, per PR pkg/41054.
Revision 1.3 / (download) - annotate - [select for diffs], Thu Mar 5 18:51:27 2009 UTC (14 years, 9 months ago) by joerg
Branch: MAIN
Changes since 1.2: +1 -2
lines
Diff to previous 1.2 (colored)
Remove PYBINMODULE. All it did was mark some packages as not available on some platforms that lacked shared library support in the past. The list hasn't been maintained at all and the gain is very limited, so just get rid of it.
Revision 1.2 / (download) - annotate - [select for diffs], Mon Feb 16 19:26:00 2009 UTC (14 years, 9 months ago) by joerg
Branch: MAIN
Changes since 1.1: +3 -1
lines
Diff to previous 1.1 (colored)
Supports DESTDIR
Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Wed Oct 8 09:38:46 2008 UTC (15 years, 1 month ago) by wiz
Branch: TNF
CVS Tags: pkgsrc-2008Q4-base,
pkgsrc-2008Q4,
pkgsrc-20081008
Changes since 1.1: +0 -0
lines
Diff to previous 1.1 (colored)
Import wip/py-chardet-1.0.1: Character encoding auto-detection in Python. Packaged for wip by bartoszkuzma.
Revision 1.1 / (download) - annotate - [select for diffs], Wed Oct 8 09:38:46 2008 UTC (15 years, 1 month ago) by wiz
Branch: MAIN
Initial revision