17 Commits

Author SHA256 Message Date
ff4be778ab Accepting request 1149776 from devel:tools:scm
Fix missing setuptools dependency

OBS-URL: https://build.opensuse.org/request/show/1149776
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gitlint?expand=0&rev=6
2024-02-23 15:46:24 +00:00
c8628c9ce7 Fix missing setuptools dependency
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/gitlint?expand=0&rev=16
2024-02-23 09:20:19 +00:00
652bd0771e Add missing build dependency "setuptools"
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/gitlint?expand=0&rev=15
2024-02-21 13:45:35 +00:00
7d74a0f71c Accepting request 1069322 from devel:tools:scm
- update to 0.18.0:
  * Python 3.11 support
  * Last release to support Python 3.6 (EOL since 2021-12-23)
  * **Behavior Change**: In a future release, gitlint will be
    switching to use `re.search` instead of `re.match` semantics
    for all rules. Your rule regexes might need updating as a
    result, gitlint will print a warning if so. More details are
    in the docs. (#254)
  * gitlint no longer uses the sh library by default in an
    attempt to reduce external dependencies. In case of issues,
    the use of `sh` can be re-enabled by setting the env var
    `GITLINT_USE_SH_LIB=1`. This fallback will be removed
    entirely in a future gitlint release. (#351)
  * `--commits` now also accepts a comma-separated list of commit
    hashes, making it possible to lint a list of non-contiguous
    commits without invoking gitlint multiple times (#283)
  * Improved handling of branches that have no commits (#188)
  * Support for `GITLINT_CONFIG` env variable (#189)
  * Added a new `gitlint-ci` pre-commit hook, making it easier to
    run gitlint through pre-commit in CI (#191)
  * Gitlint now recognizes `fixup=amend` commits (see related
    git documentation), available as
    `commit.is_fixup_amend_commit=True`
  * Gitlint now parses diff **stat** information, available
    in `commit.changed_files_stats` (#314)
  * Bugfixes:
  *   - Use correct encoding when using `--msg-filename`
    parameter (#310)
  *   - Various documentation fixes (#244) (#263) (#266) (#294)
    (#295) (#347) (#364) - thanks scop, OrBin, jtaylor100,

OBS-URL: https://build.opensuse.org/request/show/1069322
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gitlint?expand=0&rev=5
2023-03-07 15:49:11 +00:00
d0af3f0a5f - update to 0.18.0:
* Python 3.11 support
  * Last release to support Python 3.6 (EOL since 2021-12-23)
  * **Behavior Change**: In a future release, gitlint will be
    switching to use `re.search` instead of `re.match` semantics
    for all rules. Your rule regexes might need updating as a
    result, gitlint will print a warning if so. More details are
    in the docs. (#254)
  * gitlint no longer uses the sh library by default in an
    attempt to reduce external dependencies. In case of issues,
    the use of `sh` can be re-enabled by setting the env var
    `GITLINT_USE_SH_LIB=1`. This fallback will be removed
    entirely in a future gitlint release. (#351)
  * `--commits` now also accepts a comma-separated list of commit
    hashes, making it possible to lint a list of non-contiguous
    commits without invoking gitlint multiple times (#283)
  * Improved handling of branches that have no commits (#188)
  * Support for `GITLINT_CONFIG` env variable (#189)
  * Added a new `gitlint-ci` pre-commit hook, making it easier to
    run gitlint through pre-commit in CI (#191)
  * Gitlint now recognizes `fixup=amend` commits (see related
    git documentation), available as
    `commit.is_fixup_amend_commit=True`
  * Gitlint now parses diff **stat** information, available
    in `commit.changed_files_stats` (#314)
  * Bugfixes:
  *   - Use correct encoding when using `--msg-filename`
    parameter (#310)
  *   - Various documentation fixes (#244) (#263) (#266) (#294)
    (#295) (#347) (#364) - thanks scop, OrBin, jtaylor100,

OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/gitlint?expand=0&rev=13
2023-03-03 22:32:51 +00:00
e8491b6f4e Accepting request 867225 from devel:tools:scm
OBS-URL: https://build.opensuse.org/request/show/867225
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gitlint?expand=0&rev=4
2021-01-27 17:58:31 +00:00
9c279bc60b Accepting request 867224 from home:dimstar:Factory
- Fix filelist: do not use %{name}, as python single-spec rewrites
  the value 'as needed', interfering in this case.

OBS-URL: https://build.opensuse.org/request/show/867224
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/gitlint?expand=0&rev=11
2021-01-27 15:52:33 +00:00
0515a22b37 Accepting request 827516 from devel:tools:scm
- update to 0.13.1:
  * Patch to enable --staged flag for pre-commit.
  * Minor doc updates (#109)
  Revert Commits are now recognized and ignored by default (#99)
  --staged flag: gitlint can now detect meta-data (such as author details, changed files, etc) of staged/pre-commits. Useful when you use gitlint's commit-msg hook or precommit (#105)
  * New branch properties on GitCommit and GitContext, useful when writing your own user-defined rules: commit.branches and commit.context.current_branch (#108)
  * Python 3.8 support
  * Python 3.4 no longer supported. Python 3.4 has reached EOL and an increasing
  * Gitlint no longer crashes when acting on empty repositories (this only occurred in specific circumstances).
  * Under-the-hood: dependencies updated, unit and integration test improvements, migrated from TravisCI to Github Actions.

OBS-URL: https://build.opensuse.org/request/show/827516
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gitlint?expand=0&rev=3
2020-08-18 10:25:30 +00:00
2ecbf03d57 OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/gitlint?expand=0&rev=9 2020-08-18 07:58:53 +00:00
fe137c76c1 - update to 0.13.1:
* Patch to enable --staged flag for pre-commit.
  * Minor doc updates (#109)
  Revert Commits are now recognized and ignored by default (#99)
  --staged flag: gitlint can now detect meta-data (such as author details, changed files, etc) of staged/pre-commits. Useful when you use gitlint's commit-msg hook or precommit (#105)
  * New branch properties on GitCommit and GitContext, useful when writing your own user-defined rules: commit.branches and commit.context.current_branch (#108)
  * Python 3.8 support
  * Python 3.4 no longer supported. Python 3.4 has reached EOL and an increasing
  * Gitlint no longer crashes when acting on empty repositories (this only occurred in specific circumstances).
  * Under-the-hood: dependencies updated, unit and integration test improvements, migrated from TravisCI to Github Actions.

OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/gitlint?expand=0&rev=8
2020-08-16 23:35:52 +00:00
6a55350614 Accepting request 713565 from devel:tools:scm
OBS-URL: https://build.opensuse.org/request/show/713565
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gitlint?expand=0&rev=2
2019-07-05 11:49:11 +00:00
30692d66cc Accepting request 713435 from home:rsalevsky:branches:devel:tools:scm
- Correct download target URL and fix relax-requirements.patch

OBS-URL: https://build.opensuse.org/request/show/713435
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/gitlint?expand=0&rev=6
2019-07-05 08:13:22 +00:00
21d4777cfe Accepting request 713058 from home:rsalevsky:branches:devel:tools:scm
- Update to v0.11.0
  * add relax-requirements.patch to make it work with openSUSE

OBS-URL: https://build.opensuse.org/request/show/713058
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/gitlint?expand=0&rev=5
2019-07-02 20:52:11 +00:00
3bf55c654e Accepting request 505652 from devel:tools:scm
new package

OBS-URL: https://build.opensuse.org/request/show/505652
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gitlint?expand=0&rev=1
2017-06-26 13:52:25 +00:00
50e565e4c5 - Drop parts of description which are not relevant to package
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/gitlint?expand=0&rev=3
2017-06-22 10:21:51 +00:00
b358670d2d - Install LICENSE as well
- Use update alternatives

OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/gitlint?expand=0&rev=2
2017-06-22 10:18:36 +00:00
f19d38063c Accepting request 504007 from home:okurz:branches:devel:languages:python
Initial submission of gitlint; Incorporated suggestions from sr 503712

OBS-URL: https://build.opensuse.org/request/show/504007
OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/gitlint?expand=0&rev=1
2017-06-16 07:29:31 +00:00