#12 Update f38 to upstream release 2.1.11
Closed 4 days ago by lsm5. Opened 21 days ago by packit.

file modified
+1
@@ -118,3 +118,4 @@ 

  /v2.1.7.tar.gz

  /v2.1.8.tar.gz

  /v2.1.10.tar.gz

+ /v2.1.11.tar.gz

file added
+50
@@ -0,0 +1,50 @@ 

+ ---

+ # See the documentation for more information:

+ # https://packit.dev/docs/configuration/

+ 

+ specfile_path: rpm/conmon.spec

+ upstream_tag_template: v{version}

+ 

+ jobs:

+   - job: copr_build

+     trigger: pull_request

+     notifications:

+       failure_comment:

+         message: "Ephemeral COPR build failed. @containers/packit-build please check."

+     enable_net: true

+     targets:

+       - fedora-all-aarch64

+       - fedora-all-x86_64

+       - fedora-eln-aarch64

+       - fedora-eln-x86_64

+       - epel-9-aarch64

+       - epel-9-x86_64

+       - epel-8-aarch64

+       - epel-8-x86_64

+ 

+   # Run on commit to main branch

+   - job: copr_build

+     trigger: commit

+     notifications:

+       failure_comment:

+         message: "podman-next COPR build failed. @containers/packit-build please check."

+     branch: main

+     owner: rhcontainerbot

+     project: podman-next

+     enable_net: true

+ 

+   - job: propose_downstream

+     trigger: release

+     update_release: false

+     dist_git_branches:

+       - fedora-all

+ 

+   - job: koji_build

+     trigger: commit

+     dist_git_branches:

+       - fedora-all

+ 

+   - job: bodhi_update

+     trigger: commit

+     dist_git_branches:

+       - fedora-branched # rawhide updates are created automatically

file added
+3
@@ -0,0 +1,3 @@ 

+ This repository is maintained by packit.

+ https://packit.dev/

+ The file was generated using packit 0.95.0.post1.dev8+gce6bd577.

file modified
+6 -2
@@ -7,15 +7,19 @@ 

  %global debug_package %{nil}

  %endif

  

- %if 0%{?rhel}

+ %if %{defined rhel}

  %bcond_with docs

  %else

  %bcond_without docs

  %endif

  

  Name: conmon

+ %if %{defined rhel}

+ Epoch: 3

+ %else

  Epoch: 2

- Version: 2.1.10

+ %endif

+ Version: 2.1.11

  License: Apache-2.0

  Release: %autorelease

  Summary: OCI container runtime monitor

file modified
+1 -1
@@ -1,1 +1,1 @@ 

- SHA512 (v2.1.10.tar.gz) = ecf1a961f431b005b54faa68b5c1bcf31d448f994ca66a56f13002216074dba79b53b52a377d4f8dab08141d6c6cf44467352fbff37175135d3da84081b27a18

+ SHA512 (v2.1.11.tar.gz) = 47952f6cbbb810591d78c67856100be0edbf96d30328a10f22c3ec927bc6d1187540824c388d1fc7f3bb16fb7414339f3f20311d1baffb1fae1e38c4d5e7249c

Upstream tag: v2.1.11
Upstream commit: e21e7c85


If you need to do any change in this pull request, you can clone Packit's fork and push directly to the source branch of this PR (provided you have commit access to this repository):

git clone ssh://$YOUR_USER@pkgs.fedoraproject.org/forks/packit/rpms/conmon.git
cd conmon
git checkout 2.1.11-f38-update-propose_downstream
git push origin 2.1.11-f38-update-propose_downstream

Alternatively, if you already have the package repository cloned, you can just fetch the Packit's fork:

cd conmon
git remote add packit ssh://$YOUR_USER@pkgs.fedoraproject.org/forks/packit/rpms/conmon.git
git fetch packit refs/heads/2.1.11-f38-update-propose_downstream
git checkout 2.1.11-f38-update-propose_downstream
git push packit 2.1.11-f38-update-propose_downstream

If you have the koji_build job configured as well, make sure to configure the allowed_pr_authors and/or allowed_committers (see the docs) since by default, Packit reacts only to its own PRs.


Before pushing builds/updates, please remember to check the new version against the packaging guidelines.

For example, please:

  • check that the new sources only contain permissible content
  • check that the license of the new version has not changed
  • check for any API/ABI and other changes that may break dependent packages
  • check the autogenerated changelog

:exclamation: Changed default for the changelog entry generated by Packit

We would like to bring to your attention a recent update regarding the default changelog entry generated by Packit during release syncing. Going forward, the default changelog entry will be generated as follows:

- Update to version {version}

followed by a Bugzilla reference if thereis an open bug about a new upstream release.
This aligns with the Fedora Packaging Guidelines and has been agreed upon in this discussion. If you prefer a different behaviour, you can override this default in your configuration, e.g. by using custom command(s) in changelog-entry action (see example).

Logs and details of the syncing: Packit dashboard

Pull-Request has been closed by lsm5

4 days ago