Compare commits

...
Sign in to create a new pull request.

25 commits

Author SHA1 Message Date
Python Maint
605b3ec697 Rebuilt for Python 3.14.0rc3 bytecode 2025-09-19 12:13:39 +02:00
Python Maint
fff70b818c Rebuilt for Python 3.14.0rc2 bytecode 2025-08-15 12:44:14 +02:00
Fedora Release Engineering
d8e16581eb Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-23 19:16:30 +00:00
Python Maint
9ac5782295 Rebuilt for Python 3.14 2025-06-04 19:32:54 +02:00
Petr Šplíchal
696578538e Release did-0.22 2025-06-04 00:19:39 +02:00
Python Maint
1ddd95cdb3 Rebuilt for Python 3.14 2025-06-03 16:23:47 +02:00
Fedora Release Engineering
7aab162fe8 Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-16 15:44:37 +00:00
Miroslav Suchý
3fdcbd4b76 convert GPLv2+ license to SPDX
This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_4
2024-07-25 23:29:55 +02:00
Fedora Release Engineering
85d0e93631 Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild 2024-07-17 20:57:54 +00:00
Python Maint
b181fafb2c Rebuilt for Python 3.13 2024-06-08 01:12:07 +02:00
Fedora Release Engineering
2b34f33387 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-24 09:25:57 +00:00
Fedora Release Engineering
d6ab5bea55 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-19 17:09:13 +00:00
Petr Šplíchal
def7ac2bd4 Release did-0.21 2023-11-10 23:20:00 +01:00
Fedora Release Engineering
f9b11099e6 Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2023-07-19 17:27:01 +00:00
Python Maint
9cc4fa5994 Rebuilt for Python 3.12 2023-07-03 15:54:56 +02:00
Petr Šplíchal
376c3b3473 Release did-0.20 2023-03-10 18:29:58 +01:00
Fedora Release Engineering
e7d204c448 Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2023-01-19 01:23:30 +00:00
Fedora Release Engineering
aeaa2f3d0e Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2022-07-21 00:27:15 +00:00
Python Maint
3eefcc3d8f Rebuilt for Python 3.11 2022-06-16 11:13:10 +02:00
Petr Šplíchal
43822add2a Release did-0.19 2022-02-11 11:24:50 +01:00
Petr Šplíchal
20ddc45cf2 Add a basic test for the Bugzilla plugin 2022-01-28 17:25:28 +01:00
Petr Šplíchal
e6de19e8ff Enable separate plan reporting 2022-01-28 15:16:41 +01:00
Fedora Release Engineering
00b767b05f - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2022-01-20 00:39:34 +00:00
Fedora Release Engineering
52fe93e4db - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
Signed-off-by: Fedora Release Engineering <releng@fedoraproject.org>
2021-07-21 20:46:53 +00:00
Python Maint
b98a7f34c1 Rebuilt for Python 3.10 2021-06-04 20:02:56 +02:00
8 changed files with 183 additions and 11 deletions

4
.gitignore vendored
View file

@ -7,3 +7,7 @@
/did-0.16.tar.bz2
/did-0.17.tar.bz2
/did-0.18.tar.bz2
/did-0.19.tar.bz2
/did-0.20.tar.bz2
/did-0.21.tar.bz2
/did-0.22.tar.bz2

1
ci.fmf Normal file
View file

@ -0,0 +1 @@
resultsdb-testcase: separate

155
did.spec
View file

@ -1,28 +1,32 @@
Name: did
Version: 0.18
Release: 1%{?dist}
Version: 0.22
Release: 5%{?dist}
Summary: What did you do last week, month, year?
License: GPLv2+
License: GPL-2.0-or-later
URL: https://github.com/psss/did
Source0: %{url}/releases/download/%{version}/did-%{version}.tar.bz2
BuildArch: noarch
BuildRequires: git-core
BuildRequires: python3-bodhi-client
BuildRequires: python3-bugzilla
BuildRequires: python3-dateutil
BuildRequires: python3-devel
BuildRequires: python3-httplib2
BuildRequires: python3-pytest
BuildRequires: python3-pytest-xdist
BuildRequires: python3-requests-gssapi
BuildRequires: python3-setuptools
BuildRequires: python3-nitrate
Requires: python3-bugzilla
Requires: python3-httplib2
Requires: python3-nitrate
Requires: python3-requests-gssapi
Requires: python3-feedparser
Requires: python3-tenacity
%?python_enable_dependency_generator
%description
Comfortably gather status report data (e.g. list of committed
@ -32,27 +36,158 @@ range. By default all available stats for this week are reported.
%prep
%autosetup -S git
%generate_buildrequires
%pyproject_buildrequires
%build
%py3_build
%pyproject_wheel
%install
%py3_install
%pyproject_install
%pyproject_save_files did
mkdir -p %{buildroot}%{_mandir}/man1
install -pm 644 did.1.gz %{buildroot}%{_mandir}/man1
%check
export LANG=en_US.utf-8
%{__python3} -m pytest -vv tests/test*.py -k 'not smoke'
%pytest -vv tests/test*.py -k 'not smoke'
%files
%files -f %{pyproject_files}
%{_mandir}/man1/*
%{_bindir}/did
%{python3_sitelib}/%{name}/
%{python3_sitelib}/%{name}-*.egg-info/
%doc README.rst examples
%license LICENSE
%changelog
* Fri Sep 19 2025 Python Maint <python-maint@redhat.com> - 0.22-5
- Rebuilt for Python 3.14.0rc3 bytecode
* Fri Aug 15 2025 Python Maint <python-maint@redhat.com> - 0.22-4
- Rebuilt for Python 3.14.0rc2 bytecode
* Wed Jul 23 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.22-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
* Wed Jun 04 2025 Python Maint <python-maint@redhat.com> - 0.22-2
- Rebuilt for Python 3.14
* Tue Jun 03 2025 Petr Šplíchal <psplicha@redhat.com> - 0.22-1
- Implement `transition` stats for the `jira` plugin (#352)
- Fix issue with wrong `until` in GitHub search (#376)
- List resolved jira by tester and contributor field
- Fix `zammad` token bug, some minor adjustments
- Better handling auth max retry in jira plugin
- Handle JSON decode errors in pagure plugin
- Reuse bodhi connection instead of opening new ones
- Properly handle timeout in pagure plugin
- Complete report even on plugin error
- Better handling on server errors for pagure plugin
- Better handling of wrong url in confluence plugin
- Handle timeout fetching batches in jira plugin
- Fixed Jira updated issues and support timeout
- Collect stats in parallel
- Add stats for updated jira tickets
- Handle rate limiting in Jira plugin
- Allow to filter out orgs in GitHub plugin
- Properly collect comments in GitHub
- Improve items plugin
- Enable pagure closed PRs stats collection
- Add hyperkitty support
- Handle better the GitLab expired token case
- Increased test coverage
- Use pytest-xdist for parallelizing test execution
- Add collection of comments for Pagure
- Cover markdown format while testing Koji
- Use tenacity handling retry connection to GitHub
- Added stats for modified pages in Confluence
- Allow to skip SSL verification in bugzilla plugin
- Added markdown support to google plugin
- Add token authentication to confluence plugin
- Add markdown support to koji plugin
- Fetch all created issues correctly in `pagure` (#379)
- Use custom `user-agent` in the `public_inbox` plugin (#392)
- Fix dockerfile executable path, add git to container (#354)
- Support `user`, `org`, `repo` in the `github` plugin (#373)
- Handle the GitHub rate limit in a better way (#374)
- Create a Public Inbox Plugin
- Implement `did last [monday..sunday]`
- Correctly handle merge commits in verbose mode
- Prevent duplicates in github issue stats
- Retry connecting to GitLab API on error
- Add a `Toolbelt Catalog` entry for `did`
- Allow skipping events that are not reportable
- Add a team report example using login aliases
- Migrate to the `SPDX` identifier
* Fri Nov 10 2023 Petr Šplíchal <psplicha@redhat.com> - 0.21-1
- Pass plugin configuration to koji `ClientSession`
- Add `markdown` format output to `bodhi` plugin
- Add `markdown` format output to `pagure` plugin
- Handle connection error fetching gitlab user
- Update instructions for the `google` plugin
- Add `sphinx_rtd_theme` to the list of extensions
- Replace deprecated calls to `warn`
- Fix docs building warnings, pin sphinx version
- Add support for `markdown` format output (#315)
- Move line length recommendation to proper section
- Update pre-commit GH action with latest version
- Add dependency on `python3-feedparser`
- Replace `readfp()` with `read_file()`
- Support defining subitems for header and footer
- Give a reasonable error for unreachable wiki url
- Report Gitlab tasks-commented properly
- Fix typo in section name
- Skip own pull requests in `pull-requests-reviewed`
* Thu Mar 09 2023 Petr Šplíchal <psplicha@redhat.com> - 0.20-1
- Produce fixed `phabricator` statistics
- Address packit warning on the `metadata` key
- Remove the Travis CI configuration
- Fix pytest invocation
- Move common constants to the top of `did.utils`
- Add new configuration options for custom separator
- Fix broken phabricator tests
- Fix potentially uninitialized local variable
- Add CodeQL workflow for GitHub code scanning
- Add comment stats on GitHub issues & pull requests
- Add the `name-tests-test` pre-commit hook
- Add the new `phabricator` plugin
- Update test data for `sentry`, `gitlab` and `gerrit`
- Update `pre-commit` configuration, enable `flake8`
- Allow all plugins to fetch secrets from files
- Update packit config to address recent changes
- Fix typo in the Google plugin docstring
- Speed up local testing, add missing require
- Update google plugin installation instructions
- Koji plugin
- Handle GitHub API rate limit
- Add Github Action for PyPI releases
* Tue Jan 18 2022 Lukáš Zachar <lzachar@redhat.com> - 0.19-1
- Install all required packages during docs building
- Adjust code style to be pep8 compatible
- Update docs for contributors, enable pre-commit
- Add basic support for Zammad
- Check if the GitHub credential token is valid
- Fix jira issues search when user `login` provided
- Add minor clarification note about token name
- Split jira token expiration into two options
- Adjust the support for Jira Personal Access Tokens
- Support Personal Access Token in the Jira plugin
- Return all the bugzilla results from a search
- Install fresh sphinx when building readthedocs
- Adjust the paging support for the GitHub plugin
- Add pagination support for GitHub, fixes #247
- Adjust the new plugin for reporting bodhi updates
- Add a new plugin with support for Bodhi updates
- Use user email for searching updated jira issues
- Adjust the switch from fiscal to calendar year
- Switch from fiscal year to natural year
- Update docs for gitlab, github and confluence
- Give a better message upon jira search failure
- Raise the number of github issues fetched per page
* Mon Apr 19 2021 Petr Šplíchal <psplicha@redhat.com> - 0.18-1
- Support custom xmlrpc endpoint for MoinMoin wiki
- Adjust the approved merge requests for gitlab

5
plans/plugins.fmf Normal file
View file

@ -0,0 +1,5 @@
summary: Test did plugins
discover:
how: fmf
execute:
how: tmt

View file

@ -1 +1 @@
SHA512 (did-0.18.tar.bz2) = e13976d3bcaac431adfe9fcf8aa5f36bb934cb4f56e06d99181c7106fdcd55dc7f23cda1242ba8f3b5739cbc326f2309aa14588695c44e095ef2d13327bc7e0d
SHA512 (did-0.22.tar.bz2) = c2146e9b1e4d3e10c26429a69a81865aab9011157981780c9a62da292c161c554c40d0145cc131fa572355526a6c2e54013816d653a72b51af6e1bdccacc66bd

8
tests/bugzilla/config Normal file
View file

@ -0,0 +1,8 @@
[general]
email = Petr Šplíchal <psplicha@redhat.com>
[bz]
type = bugzilla
prefix = BZ
url = https://bugzilla.redhat.com/xmlrpc.cgi
resolutions = all

3
tests/bugzilla/main.fmf Normal file
View file

@ -0,0 +1,3 @@
summary: Check that bugzilla repork works fine
test: ./test.sh
framework: beakerlib

16
tests/bugzilla/test.sh Executable file
View file

@ -0,0 +1,16 @@
#!/bin/bash
. /usr/share/beakerlib/beakerlib.sh || exit 1
interval="--since 2021-08-01 --until 2022-01-31"
rlJournalStart
rlPhaseStartTest "Filed bugs"
rlRun -s "did --bz-filed $interval --config $(pwd)/config"
rlAssertGrep "BZ#2042920 - Checkout of a custom ref fails" $rlRun_LOG
rlPhaseEnd
rlPhaseStartTest "Closed bugs"
rlRun -s "did --bz-closed $interval --config $(pwd)/config"
rlAssertGrep "BZ#1985089 - tmt provision virtual" $rlRun_LOG
rlPhaseEnd
rlJournalEnd