17
0

29 Commits

Author SHA256 Message Date
58ae08a142 Accepting request 1299071 from devel:languages:python
- Convert to libalternatives on SLE-16-based and newer systems

OBS-URL: https://build.opensuse.org/request/show/1299071
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-coloredlogs?expand=0&rev=14
2025-08-12 15:05:47 +00:00
574fa7f8ae - Convert to libalternatives on SLE-16-based and newer systems
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-coloredlogs?expand=0&rev=26
2025-08-12 12:55:43 +00:00
c00c6217ff Accepting request 1219237 from devel:languages:python
- Add patch support-python-313.patch:
  * No longer use now-removed pipes module.

OBS-URL: https://build.opensuse.org/request/show/1219237
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-coloredlogs?expand=0&rev=13
2024-10-30 16:37:11 +00:00
f202b03bdb - Add patch support-python-313.patch:
* No longer use now-removed pipes module.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-coloredlogs?expand=0&rev=24
2024-10-30 02:59:51 +00:00
47dc99f5f4 Accepting request 1081966 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1081966
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-coloredlogs?expand=0&rev=12
2023-04-21 16:48:16 +00:00
46bb4ce041 Accepting request 1081368 from home:dirkmueller:acdc:as_python3_module
SR for python stack proposal

OBS-URL: https://build.opensuse.org/request/show/1081368
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-coloredlogs?expand=0&rev=22
2023-04-21 14:49:21 +00:00
074091c004 Accepting request 960709 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/960709
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-coloredlogs?expand=0&rev=11
2022-03-10 21:45:22 +00:00
4cbce01932 Accepting request 960431 from home:pgajdos:python
- python-mock is actually not needed for build

OBS-URL: https://build.opensuse.org/request/show/960431
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-coloredlogs?expand=0&rev=20
2022-03-10 10:30:49 +00:00
a915dd0156 Accepting request 942996 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/942996
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-coloredlogs?expand=0&rev=10
2021-12-29 20:10:57 +00:00
114ef6b3d7 Accepting request 942758 from home:ecsos
- Fix build error for Leap.
  - Set right versions to BuildRequires and Requires.
- Disable python2 and python36 because End of support.

OBS-URL: https://build.opensuse.org/request/show/942758
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-coloredlogs?expand=0&rev=19
2021-12-29 00:04:40 +00:00
42eac8899b Accepting request 931858 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/931858
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-coloredlogs?expand=0&rev=9
2021-11-17 00:14:34 +00:00
83372c00d6 Accepting request 931852 from home:ecsos
- Update to 15.0.1
  - Bug fix: Restore :class:`.StandardErrorHandler` functionality
  - The :class:`.StandardErrorHandler` class is responsible for dynamically
    resolving (looking up the value of) sys.stderr for each logged message instead
    of once when :func:`coloredlogs.install()` is called.
  - This was unintentionally broken by changes in `release 14.1`_.
  - _Release 15.0.1: https://github.com/xolox/python-coloredlogs/compare/15.0...15.0.1
- Update to 15.0
  - Don't enable system logging on MacOS and Windows anymore.
  - This is backwards incompatible (which is why I'm bumping the major version
    number) however the old behavior has been reported to be rather problematic
    (see :func:`~coloredlogs.syslog.is_syslog_supported()` for details) so this
    seems like the best choice.
  - _Release 15.0: https://github.com/xolox/python-coloredlogs/compare/14.2...15.0
- Update to 14.3
  * Merged pull request `#89`_ which enhances :func:`coloredlogs.install()` to
    preserve the filters on handlers that are replaced by :pypi:`coloredlogs`.
  * _Release 14.3: https://github.com/xolox/python-coloredlogs/compare/14.2...14.3
  * _#89: https://github.com/xolox/python-coloredlogs/pull/89
- Update to 14.2
  * Honor the ``$NO_COLOR`` environment variable as suggested in issue `#88`_.
  * _Release 14.2: https://github.com/xolox/python-coloredlogs/compare/14.1...14.2
  * _#88: https://github.com/xolox/python-coloredlogs/issues/88
- Update to 14.1
  **Bug fixes:**
  - Don't allow interactive terminal detection to disable colored text when
    colored text is being forced by the caller (reported in issue `#84`_).
  - Automatically disable colored text when logging output is being redirected to
    a file in such a way that it actually works 😬 (reported in issue `#100`_).
  **Other changes:**
  - Start testing on PyPy 3 (because why not?)
  - _Release 14.1: https://github.com/xolox/python-coloredlogs/compare/14.0...14.1
  - _#84: https://github.com/xolox/python-coloredlogs/issues/84
  - _#100: https://github.com/xolox/python-coloredlogs/issues/100
- Fix minimum dependency version of python-humanfriendly
- Update to 14.0
  * Merged pull request `#80`_ that drops support for Python 3.4 which
    has gone end-of-life and now represents less than 1% of PyPI downloads.
  * Improved compatibility with the Python standard library by changing
    the order of positional arguments received by the initializer of the
    :class:`~coloredlogs.ColoredFormatter` class (as suggested in `#64`_
    and `#75`_).
  * Add support for the ``%(username)s`` field (requested in `#76`_) and properly
    document supported custom fields.
  * Consistently use ``console`` highlighting in documentation.
  * Fix a broken link in the readme.
  * Merge pull request `#79`_ which adds support for Python 3.8.
  * Fix support for custom log record factories and add a test to avoid
    regressions (`#47`_, `#59`_).
  * Change ``make screenshots`` to be Python 3 compatible and document
    additional requirements (`#65`_).
- Update to 11.0:
  - This is a maintenance release that drops Python 2.6 support,
    adds Python 3.7 support and merges quite a few minor pull
    requests. The major version number was bumped because of the
    compatibility changes.
    Complete list of (really small) changes is on
    https://github.com/xolox/python-coloredlogs/blob/master/CHANGELOG.rst#release-11-0-2020-02-14
  - Update test_cli_conversion_test.patch
- Add test_cli_conversion_test.patch, because we don't have versionless
  coloredlogs in time of %check.
- Disable one flaky test
- Remove superfluous devel dependency for noarch package
- Version update to 10.0:
  * Many upstream changes to enumerate, see CHANGELOG.rst
- Enable testsuite
- Use %license tag
- Update to version 7.3
  * No changelog
- Implement single-spec version
- initial package, version 5.1.1

OBS-URL: https://build.opensuse.org/request/show/931852
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-coloredlogs?expand=0&rev=18
2021-11-16 20:42:23 +00:00
058139e7d4 Accepting request 824186 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/824186
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-coloredlogs?expand=0&rev=8
2020-08-04 18:22:02 +00:00
43ca4d311a Accepting request 823868 from home:jayvdb:branches:devel:languages:python
- Fix minimum dependency version of python-humanfriendly

OBS-URL: https://build.opensuse.org/request/show/823868
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-coloredlogs?expand=0&rev=16
2020-08-03 15:58:49 +00:00
90b5fcee26 Accepting request 790586 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/790586
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-coloredlogs?expand=0&rev=7
2020-04-01 17:20:06 +00:00
Tomáš Chvátal
440db62992 Accepting request 790555 from home:mcalabkova:branches:devel:languages:python
- Update to 14.0
  * Merged pull request `#80`_ that drops support for Python 3.4 which
    has gone end-of-life and now represents less than 1% of PyPI downloads.
  * Improved compatibility with the Python standard library by changing
    the order of positional arguments received by the initializer of the
    :class:`~coloredlogs.ColoredFormatter` class (as suggested in `#64`_
    and `#75`_).
  * Add support for the ``%(username)s`` field (requested in `#76`_) and properly
    document supported custom fields.
  * Consistently use ``console`` highlighting in documentation.
  * Fix a broken link in the readme.
  * Merge pull request `#79`_ which adds support for Python 3.8.
  * Fix support for custom log record factories and add a test to avoid
    regressions (`#47`_, `#59`_).
  * Change ``make screenshots`` to be Python 3 compatible and document
    additional requirements (`#65`_).

OBS-URL: https://build.opensuse.org/request/show/790555
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-coloredlogs?expand=0&rev=14
2020-04-01 12:44:03 +00:00
dd8ff74221 Accepting request 774498 from devel:languages:python
- Should go into Factory only with sr#774497.
- Update to 11.0:
  - This is a maintenance release that drops Python 2.6 support,
    adds Python 3.7 support and merges quite a few minor pull
    requests. The major version number was bumped because of the
    compatibility changes.
    Complete list of (really small) changes is on
    https://github.com/xolox/python-coloredlogs/blob/master/CHANGELOG.rst#release-11-0-2020-02-14
  - Update test_cli_conversion_test.patch

OBS-URL: https://build.opensuse.org/request/show/774498
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-coloredlogs?expand=0&rev=6
2020-02-15 21:25:25 +00:00
be3bd73f5a - Update to 11.0:
- This is a maintenance release that drops Python 2.6 support,
    adds Python 3.7 support and merges quite a few minor pull
    requests. The major version number was bumped because of the
    compatibility changes.
    Complete list of (really small) changes is on
    https://github.com/xolox/python-coloredlogs/blob/master/CHANGELOG.rst#release-11-0-2020-02-14
  - Update test_cli_conversion_test.patch

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-coloredlogs?expand=0&rev=12
2020-02-15 08:22:16 +00:00
106a1e3810 Accepting request 700395 from devel:languages:python
- Add test_cli_conversion_test.patch, because we don't have versionless
  coloredlogs in time of %check. (forwarded request 700393 from mcepl)

OBS-URL: https://build.opensuse.org/request/show/700395
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-coloredlogs?expand=0&rev=5
2019-05-03 20:47:54 +00:00
57ee7a9eb9 Accepting request 700393 from home:mcepl:branches:devel:languages:python
- Add test_cli_conversion_test.patch, because we don't have versionless
  coloredlogs in time of %check.

OBS-URL: https://build.opensuse.org/request/show/700393
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-coloredlogs?expand=0&rev=10
2019-05-03 14:13:00 +00:00
Stephan Kulow
125e6d21e7 Accepting request 676164 from devel:languages:python
- Disable one flaky test

OBS-URL: https://build.opensuse.org/request/show/676164
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-coloredlogs?expand=0&rev=4
2019-02-24 16:14:43 +00:00
Tomáš Chvátal
6415e61222 - Disable one flaky test
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-coloredlogs?expand=0&rev=8
2019-02-14 15:16:36 +00:00
6ca525ebee Accepting request 653980 from devel:languages:python
Remove superfluous devel dependency for noarch package

OBS-URL: https://build.opensuse.org/request/show/653980
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-coloredlogs?expand=0&rev=3
2018-12-13 18:41:31 +00:00
3f2f96df89 Remove superfluous devel dependency for noarch package
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-coloredlogs?expand=0&rev=6
2018-12-04 13:20:26 +00:00
58dafab5b4 Accepting request 630723 from devel:languages:python
- Version update to 10.0:
  * Many upstream changes to enumerate, see CHANGELOG.rst
- Enable testsuite

OBS-URL: https://build.opensuse.org/request/show/630723
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-coloredlogs?expand=0&rev=2
2018-08-22 12:20:06 +00:00
Tomáš Chvátal
9273ed56f2 - Version update to 10.0:
* Many upstream changes to enumerate, see CHANGELOG.rst
- Enable testsuite

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-coloredlogs?expand=0&rev=4
2018-08-21 08:51:36 +00:00
128225c4ce Accepting request 603733 from devel:languages:python
Needed by python-spyder-terminal

OBS-URL: https://build.opensuse.org/request/show/603733
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-coloredlogs?expand=0&rev=1
2018-05-15 08:07:17 +00:00
Todd R
581f1cc2b3 Accepting request 603716 from home:TheBlackCat:branches:devel:languages:python
- Use %license tag

OBS-URL: https://build.opensuse.org/request/show/603716
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-coloredlogs?expand=0&rev=2
2018-05-03 15:08:56 +00:00
Todd R
dc10f56743 Accepting request 603495 from devel:languages:python:misc
Needed by python-spyder-terminal

OBS-URL: https://build.opensuse.org/request/show/603495
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-coloredlogs?expand=0&rev=1
2018-05-03 06:17:22 +00:00