Compare commits
4 commits
rawhide
...
private-de
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b255b52110 | ||
|
|
b1ee3511d0 | ||
|
|
36f85d814b | ||
|
|
86ac6f3d31 |
7 changed files with 7 additions and 50 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
|
@ -145,9 +145,3 @@
|
|||
/packitos-1.14.0.tar.gz
|
||||
/packitos-1.15.0.tar.gz
|
||||
/packitos-1.15.1.tar.gz
|
||||
/packitos-1.15.2.tar.gz
|
||||
/packitos-1.15.3.tar.gz
|
||||
/packitos-1.16.0.tar.gz
|
||||
/packitos-1.16.1.tar.gz
|
||||
/packitos-1.16.2.tar.gz
|
||||
/packitos-1.16.3.tar.gz
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
---
|
||||
|
||||
# We want to use both instances for all upstream jobs including the `propose-downstream` one.
|
||||
# For downstream, we need to pick just one instance (`stg` in our case)
|
||||
# and redefine it for the `koji_build` and `bodhi_update` jobs.
|
||||
|
|
|
|||
|
|
@ -1,3 +1,3 @@
|
|||
This repository is maintained by packit.
|
||||
https://packit.dev/
|
||||
The file was generated using packit 1.16.2.post1.dev18+g099fa292c.
|
||||
The file was generated using packit 1.15.0.post1.dev8+gd88d89df5.
|
||||
|
|
|
|||
37
packit.spec
37
packit.spec
|
|
@ -1,4 +1,5 @@
|
|||
# Testing dependencies: deepdiff, flexmock are missing on EPEL 9. Cannot use testing environment
|
||||
|
||||
%if 0%{?el9}
|
||||
%bcond_with tests
|
||||
%else
|
||||
|
|
@ -6,7 +7,7 @@
|
|||
%endif
|
||||
|
||||
Name: packit
|
||||
Version: 1.16.3
|
||||
Version: 1.15.1
|
||||
Release: 1%{?dist}
|
||||
Summary: A tool for integrating upstream projects with Fedora operating system
|
||||
|
||||
|
|
@ -36,7 +37,7 @@ Requires: rpmdevtools
|
|||
# Copying files between repositories
|
||||
Requires: rsync
|
||||
|
||||
Recommends: osh-cli
|
||||
Recommends: osh-cli
|
||||
|
||||
%description -n python3-packit
|
||||
Python library for Packit,
|
||||
|
|
@ -78,38 +79,6 @@ cp files/bash-completion/packit %{buildroot}%{bash_completions_dir}/packit
|
|||
%doc README.md
|
||||
|
||||
%changelog
|
||||
* Fri Sep 04 2026 Packit <hello@packit.dev> - 1.16.3-1
|
||||
- Packit now retries when it encounters connection errors during authentication when attempting to create a Bodhi update. (#2749)
|
||||
- Fixed an issue where a relative `--dist-git-path` (e.g. `.`) could cause packit to incorrectly identify a dist-git directory as an upstream repository. (#2736)
|
||||
- Resolves: rhbz#2528471
|
||||
|
||||
* Mon Jul 20 2026 Packit <hello@packit.dev> - 1.16.2-1
|
||||
- Add HTTP timeouts and make `get_monitoring_metadata()` unauthenticated which should improve the UX of `packit validate`. (#2730)
|
||||
- Resolves: rhbz#2502899
|
||||
|
||||
* Thu Jul 16 2026 Fedora Release Engineering <releng@fedoraproject.org> - 1.16.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
|
||||
|
||||
* Sun Jun 14 2026 Packit <hello@packit.dev> - 1.16.1-1
|
||||
- Fixed a couple of Copr-related issues. (#2721, #2727)
|
||||
- Resolves: rhbz#2488767
|
||||
|
||||
* Fri Jun 05 2026 Python Maint <python-maint@redhat.com> - 1.16.0-2
|
||||
- Rebuilt for Python 3.15
|
||||
|
||||
* Fri Apr 24 2026 Packit <hello@packit.dev> - 1.16.0-1
|
||||
- Packit CLI has a new option `--[no-]update-release` that, by default, follows the value of the option set in the config, and also allows you to override manually, if necessary. (#2713)
|
||||
- In addition to `version_update_mask`, users can now use a new `version_update_specifiers` configuration option to control the upstream versions allowed to be release-synced. The option accepts [PEP440 version specifier sets](https://packaging.pypa.io/en/stable/specifiers.html), for example `version_update_specifiers: >=1.0,~=1.0`. (#2710)
|
||||
- Resolves: rhbz#2461103
|
||||
|
||||
* Wed Apr 01 2026 Packit <hello@packit.dev> - 1.15.3-1
|
||||
- We've fixed the formatting of the strings Packit appends to the changelog. Now there will be at most one blank line before or after the Packit comment. (#2707)
|
||||
- Resolves: rhbz#2453842
|
||||
|
||||
* Tue Mar 24 2026 Packit <hello@packit.dev> - 1.15.2-1
|
||||
- Packit now uses the specfile library's sanitization when parsing spec files.
|
||||
- Resolves: rhbz#2450841
|
||||
|
||||
* Fri Mar 06 2026 Packit <hello@packit.dev> - 1.15.1-1
|
||||
- We have fixed a bug that prevented running `sync_release()` on a `PackitAPI` instance initialized with `non_git_upstream=True` repeatedly due to an improper clean-up. (#2691)
|
||||
- Resolves: rhbz#2445195
|
||||
|
|
|
|||
|
|
@ -3,13 +3,6 @@ summary: Unit, integration & functional tests.
|
|||
discover+:
|
||||
filter: tag:full
|
||||
|
||||
# marshmallow-jsonschema has no Fedora/EPEL package, install it from PyPI
|
||||
prepare:
|
||||
- how: install
|
||||
package: python3-pip
|
||||
- how: shell
|
||||
script: pip3 install marshmallow-jsonschema
|
||||
|
||||
adjust:
|
||||
- when: "initiator == packit"
|
||||
because: "have the latest builds of ogr and specfile available for upstream test jobs"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
discover:
|
||||
how: fmf
|
||||
url: https://github.com/packit/packit.git
|
||||
ref: 868f8f6b5f04b0dfc5f4e42aa466721ffc0e4b15
|
||||
ref: 460154b02830ae01f957e84142b9abb707d1ca7f
|
||||
execute:
|
||||
how: tmt
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (packitos-1.16.3.tar.gz) = 0bf3d8a574f09d78261044e6b66447363e6c1d14f77c610b73773565aeac696aac952a2fc777aafc769023c211436ac18a84dce935f0da006fec02f981313758
|
||||
SHA512 (packitos-1.15.1.tar.gz) = 180a91f2612df66f170eac9d01ca4f3debfff01b37a44a4aab0bb53512e27dbdaed8ab301552c87649996de9b7fa5a544908568d78a262dce1bbc784f0a1b973
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue