From ee12981b4df601abf4b8f5fa85e029f62f8270cd Mon Sep 17 00:00:00 2001 From: Packit Date: Thu, 10 Aug 2023 18:00:19 +0000 Subject: [PATCH 01/18] [packit] 1.31.2 upstream release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upstream tag: v1.31.2 Upstream commit: d4d1d751 If you need to do any change in this pull request, you need to locally fetch the source branch of it and push it (with a fix) to your fork (as it is not possible to push to the branch created in the Packit’s fork): ``` git fetch https://src.fedoraproject.org/forks/packit/rpms/buildah.git refs/heads/*:refs/remotes/packit/* git checkout packit/1.31.2-f39-update-propose_downstream ``` --- .gitignore | 1 + .packit.yaml | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ README.packit | 3 +++ buildah.spec | 2 +- sources | 2 +- 5 files changed, 55 insertions(+), 2 deletions(-) create mode 100644 .packit.yaml create mode 100644 README.packit diff --git a/.gitignore b/.gitignore index 069b25d..759ec3a 100644 --- a/.gitignore +++ b/.gitignore @@ -697,3 +697,4 @@ /v1.30.0.tar.gz /v1.31.0.tar.gz /v1.31.1.tar.gz +/v1.31.2.tar.gz diff --git a/.packit.yaml b/.packit.yaml new file mode 100644 index 0000000..80f8a05 --- /dev/null +++ b/.packit.yaml @@ -0,0 +1,49 @@ +--- +# See the documentation for more information: +# https://packit.dev/docs/configuration/ + +specfile_path: rpm/buildah.spec +upstream_tag_template: v{version} + +srpm_build_deps: + - make + +jobs: + - job: copr_build + trigger: pull_request + # keep in sync with https://copr.fedorainfracloud.org/coprs/rhcontainerbot/podman-next + enable_net: true + targets: + - fedora-all-x86_64 + - fedora-all-aarch64 + - fedora-eln-x86_64 + - fedora-eln-aarch64 + - centos-stream+epel-next-8-x86_64 + - centos-stream+epel-next-8-aarch64 + - centos-stream+epel-next-9-x86_64 + - centos-stream+epel-next-9-aarch64 + additional_repos: + - "copr://rhcontainerbot/podman-next" + + # Run on commit to main branch + - job: copr_build + trigger: commit + 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 diff --git a/README.packit b/README.packit new file mode 100644 index 0000000..d7c433c --- /dev/null +++ b/README.packit @@ -0,0 +1,3 @@ +This repository is maintained by packit. +https://packit.dev/ +The file was generated using packit 0.78.2.post2+g81828af. diff --git a/buildah.spec b/buildah.spec index 7eeba61..72a3ae3 100644 --- a/buildah.spec +++ b/buildah.spec @@ -35,7 +35,7 @@ Epoch: 102 # If that's what you're reading, Version must be 0, and will be updated by Packit for # copr and koji builds. # If you're reading this on dist-git, the version is automatically filled in by Packit. -Version: 1.31.1 +Version: 1.31.2 License: Apache-2.0 and BSD-2-Clause and BSD-3-Clause and ISC and MIT and MPL-2.0 Release: %autorelease %if %{defined golang_arches_future} diff --git a/sources b/sources index 1be5825..2046290 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (v1.31.1.tar.gz) = 7375877d964197d0690542e1da0636b0a67cdf01f30ddbdd69cced5cfe4f8bb370b37ec58f2dffd2c2f048b897470d8fb06cd9f70c8e75df2aa6b19f86610f7b +SHA512 (v1.31.2.tar.gz) = c8611016448de7e9548ff692d1b352d7234f357440001106276e513df135a28ba0d4413a14f5c30e4b88615267d92f4aea63e1687b84a0638f1f9ab4f348c74a From 925c955dfe29bb599e2486b72f180fefa671f78e Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Fri, 11 Aug 2023 10:01:39 -0400 Subject: [PATCH 02/18] fix buildtags (cherry picked from commit 2ded9f0893f850d9fd94578d71c519a02ef6b562) --- buildah.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildah.spec b/buildah.spec index 72a3ae3..58265d2 100644 --- a/buildah.spec +++ b/buildah.spec @@ -119,7 +119,7 @@ export CGO_CFLAGS+=" -m64 -mtune=generic -fcf-protection=full" export CNI_VERSION=`grep '^# github.com/containernetworking/cni ' src/modules.txt | sed 's,.* ,,'` export LDFLAGS="-X main.buildInfo=`date +%s` -X main.cniVersion=${CNI_VERSION}" -export BUILDTAGS='seccomp exclude_graphdriver_devicemapper $(hack/systemd_tag.sh) $hack/libsubid_tag.sh)' +export BUILDTAGS='seccomp exclude_graphdriver_devicemapper $(hack/systemd_tag.sh) $(hack/libsubid_tag.sh)' %if !%{defined build_with_btrfs} export BUILDTAGS+=' btrfs_noversion exclude_graphdriver_btrfs' %endif From ff7ebddd154e780e72afb5de949f5036a0c7e218 Mon Sep 17 00:00:00 2001 From: Lokesh Mandvekar Date: Fri, 11 Aug 2023 14:10:23 -0400 Subject: [PATCH 03/18] use double quotes for buildtags (cherry picked from commit 047a9f8cdfc0459065e2c4ef83f137ecb193e54a) --- buildah.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildah.spec b/buildah.spec index 58265d2..b728251 100644 --- a/buildah.spec +++ b/buildah.spec @@ -119,9 +119,9 @@ export CGO_CFLAGS+=" -m64 -mtune=generic -fcf-protection=full" export CNI_VERSION=`grep '^# github.com/containernetworking/cni ' src/modules.txt | sed 's,.* ,,'` export LDFLAGS="-X main.buildInfo=`date +%s` -X main.cniVersion=${CNI_VERSION}" -export BUILDTAGS='seccomp exclude_graphdriver_devicemapper $(hack/systemd_tag.sh) $(hack/libsubid_tag.sh)' +export BUILDTAGS="seccomp exclude_graphdriver_devicemapper $(hack/systemd_tag.sh) $(hack/libsubid_tag.sh)" %if !%{defined build_with_btrfs} -export BUILDTAGS+=' btrfs_noversion exclude_graphdriver_btrfs' +export BUILDTAGS+=" btrfs_noversion exclude_graphdriver_btrfs" %endif %gobuild -o bin/%{name} ./cmd/%{name} From 454ebeeb46f29916f73c27a1761551e484077cf2 Mon Sep 17 00:00:00 2001 From: Packit Date: Thu, 24 Aug 2023 20:53:50 +0000 Subject: [PATCH 04/18] [packit] 1.31.3 upstream release MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Upstream tag: v1.31.3 Upstream commit: 3ae75d4a If you need to do any change in this pull request, you need to locally fetch the source branch of it and push it (with a fix) to your fork (as it is not possible to push to the branch created in the Packit’s fork): ``` git fetch https://src.fedoraproject.org/forks/packit/rpms/buildah.git refs/heads/*:refs/remotes/packit/* git checkout packit/1.31.3-f39-update-propose_downstream ``` --- .gitignore | 1 + README.packit | 2 +- buildah.spec | 5 +++-- sources | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 759ec3a..8c69906 100644 --- a/.gitignore +++ b/.gitignore @@ -698,3 +698,4 @@ /v1.31.0.tar.gz /v1.31.1.tar.gz /v1.31.2.tar.gz +/v1.31.3.tar.gz diff --git a/README.packit b/README.packit index d7c433c..797aefb 100644 --- a/README.packit +++ b/README.packit @@ -1,3 +1,3 @@ This repository is maintained by packit. https://packit.dev/ -The file was generated using packit 0.78.2.post2+g81828af. +The file was generated using packit 0.79.0.post2+g93f33d9. diff --git a/buildah.spec b/buildah.spec index b728251..2208df3 100644 --- a/buildah.spec +++ b/buildah.spec @@ -35,8 +35,9 @@ Epoch: 102 # If that's what you're reading, Version must be 0, and will be updated by Packit for # copr and koji builds. # If you're reading this on dist-git, the version is automatically filled in by Packit. -Version: 1.31.2 -License: Apache-2.0 and BSD-2-Clause and BSD-3-Clause and ISC and MIT and MPL-2.0 +Version: 1.31.3 +# The `AND` needs to be uppercase in the License for SPDX compatibility +License: Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND ISC AND MIT AND MPL-2.0 Release: %autorelease %if %{defined golang_arches_future} ExclusiveArch: %{golang_arches_future} diff --git a/sources b/sources index 2046290..bd6291e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (v1.31.2.tar.gz) = c8611016448de7e9548ff692d1b352d7234f357440001106276e513df135a28ba0d4413a14f5c30e4b88615267d92f4aea63e1687b84a0638f1f9ab4f348c74a +SHA512 (v1.31.3.tar.gz) = efa656c818f7b07f903cb5f70b2c50c8d5b85a11ce9093707d051f3d6e67a8dfa5ab6ecb720900c563d879173ebeb3ac0e5175c0090f4608a0dd253f4149af93 From 207add2d65c48a2bc747ab692fb0ba530f5baf11 Mon Sep 17 00:00:00 2001 From: Packit Date: Thu, 14 Sep 2023 19:06:47 +0000 Subject: [PATCH 05/18] [packit] 1.32.0 upstream release Upstream tag: v1.32.0 Upstream commit: 2326d492 --- .gitignore | 1 + README.packit | 2 +- buildah.spec | 2 +- sources | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 8c69906..f4f3bf4 100644 --- a/.gitignore +++ b/.gitignore @@ -699,3 +699,4 @@ /v1.31.1.tar.gz /v1.31.2.tar.gz /v1.31.3.tar.gz +/v1.32.0.tar.gz diff --git a/README.packit b/README.packit index 797aefb..786c2a0 100644 --- a/README.packit +++ b/README.packit @@ -1,3 +1,3 @@ This repository is maintained by packit. https://packit.dev/ -The file was generated using packit 0.79.0.post2+g93f33d9. +The file was generated using packit 0.80.0.post8+gf2b5fcbc. diff --git a/buildah.spec b/buildah.spec index 2208df3..83fdfc0 100644 --- a/buildah.spec +++ b/buildah.spec @@ -35,7 +35,7 @@ Epoch: 102 # If that's what you're reading, Version must be 0, and will be updated by Packit for # copr and koji builds. # If you're reading this on dist-git, the version is automatically filled in by Packit. -Version: 1.31.3 +Version: 1.32.0 # The `AND` needs to be uppercase in the License for SPDX compatibility License: Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND ISC AND MIT AND MPL-2.0 Release: %autorelease diff --git a/sources b/sources index bd6291e..4983eb4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (v1.31.3.tar.gz) = efa656c818f7b07f903cb5f70b2c50c8d5b85a11ce9093707d051f3d6e67a8dfa5ab6ecb720900c563d879173ebeb3ac0e5175c0090f4608a0dd253f4149af93 +SHA512 (v1.32.0.tar.gz) = 7c61141e43ea2f968a50b4c5ae6b69c2b9734a19774c7ca48bc942b900ca55ec381ac93fdf04f08061640a457551a9e03a45a37d22cb94b34cecded192dced8f From 87f4e30778a370ffaa91209de56b25d0c33caeef Mon Sep 17 00:00:00 2001 From: Packit Date: Tue, 24 Oct 2023 14:19:34 +0000 Subject: [PATCH 06/18] [packit] 1.32.1 upstream release Upstream tag: v1.32.1 Upstream commit: bfd436d1 --- .gitignore | 1 + README.packit | 2 +- buildah.spec | 2 +- sources | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index f4f3bf4..45a4983 100644 --- a/.gitignore +++ b/.gitignore @@ -700,3 +700,4 @@ /v1.31.2.tar.gz /v1.31.3.tar.gz /v1.32.0.tar.gz +/v1.32.1.tar.gz diff --git a/README.packit b/README.packit index 786c2a0..2a3acd4 100644 --- a/README.packit +++ b/README.packit @@ -1,3 +1,3 @@ This repository is maintained by packit. https://packit.dev/ -The file was generated using packit 0.80.0.post8+gf2b5fcbc. +The file was generated using packit 0.84.0. diff --git a/buildah.spec b/buildah.spec index 83fdfc0..5679494 100644 --- a/buildah.spec +++ b/buildah.spec @@ -35,7 +35,7 @@ Epoch: 102 # If that's what you're reading, Version must be 0, and will be updated by Packit for # copr and koji builds. # If you're reading this on dist-git, the version is automatically filled in by Packit. -Version: 1.32.0 +Version: 1.32.1 # The `AND` needs to be uppercase in the License for SPDX compatibility License: Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND ISC AND MIT AND MPL-2.0 Release: %autorelease diff --git a/sources b/sources index 4983eb4..6de0749 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (v1.32.0.tar.gz) = 7c61141e43ea2f968a50b4c5ae6b69c2b9734a19774c7ca48bc942b900ca55ec381ac93fdf04f08061640a457551a9e03a45a37d22cb94b34cecded192dced8f +SHA512 (v1.32.1.tar.gz) = e5c59f158b786809c89465361a662211bbef6bb4c27c79490604923d924c2030398a0878b122b246b02ae246bd977b7ccffdc6de4f06e80f096c2921c34bf04a From 7c5b10b0f44d0109c8f637022e2c9756296a2c58 Mon Sep 17 00:00:00 2001 From: Packit Date: Mon, 30 Oct 2023 18:17:56 +0000 Subject: [PATCH 07/18] [packit] 1.32.2 upstream release Upstream tag: v1.32.2 Upstream commit: 050318f8 --- .gitignore | 1 + buildah.spec | 2 +- sources | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 45a4983..b550c51 100644 --- a/.gitignore +++ b/.gitignore @@ -701,3 +701,4 @@ /v1.31.3.tar.gz /v1.32.0.tar.gz /v1.32.1.tar.gz +/v1.32.2.tar.gz diff --git a/buildah.spec b/buildah.spec index 5679494..44714be 100644 --- a/buildah.spec +++ b/buildah.spec @@ -35,7 +35,7 @@ Epoch: 102 # If that's what you're reading, Version must be 0, and will be updated by Packit for # copr and koji builds. # If you're reading this on dist-git, the version is automatically filled in by Packit. -Version: 1.32.1 +Version: 1.32.2 # The `AND` needs to be uppercase in the License for SPDX compatibility License: Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND ISC AND MIT AND MPL-2.0 Release: %autorelease diff --git a/sources b/sources index 6de0749..551ddf6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (v1.32.1.tar.gz) = e5c59f158b786809c89465361a662211bbef6bb4c27c79490604923d924c2030398a0878b122b246b02ae246bd977b7ccffdc6de4f06e80f096c2921c34bf04a +SHA512 (v1.32.2.tar.gz) = 3a50e53e047aa0e23643d8751af1fb51a83fd51e5440111432eb34bdb07e95f24676a917b54409c223df444fe123c8df4aa9af435737cfdd02d0eda0d3f5bba1 From fb9ab7b37ef331cb54d4619ee7832768bc3e159f Mon Sep 17 00:00:00 2001 From: Packit Date: Sun, 26 Nov 2023 22:09:16 +0000 Subject: [PATCH 08/18] [packit] 1.33.2 upstream release Upstream tag: v1.33.2 Upstream commit: 7fffb336 --- .gitignore | 1 + .packit.yaml | 7 ++++++- README.packit | 2 +- buildah.spec | 2 +- sources | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index b550c51..b3703b3 100644 --- a/.gitignore +++ b/.gitignore @@ -702,3 +702,4 @@ /v1.32.0.tar.gz /v1.32.1.tar.gz /v1.32.2.tar.gz +/v1.33.2.tar.gz diff --git a/.packit.yaml b/.packit.yaml index 80f8a05..76b297c 100644 --- a/.packit.yaml +++ b/.packit.yaml @@ -11,7 +11,9 @@ srpm_build_deps: jobs: - job: copr_build trigger: pull_request - # keep in sync with https://copr.fedorainfracloud.org/coprs/rhcontainerbot/podman-next + notifications: + failure_comment: + message: "Ephemeral COPR build failed. @containers/packit-build please check." enable_net: true targets: - fedora-all-x86_64 @@ -28,6 +30,9 @@ jobs: # 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." owner: rhcontainerbot project: podman-next enable_net: true diff --git a/README.packit b/README.packit index 2a3acd4..d778d97 100644 --- a/README.packit +++ b/README.packit @@ -1,3 +1,3 @@ This repository is maintained by packit. https://packit.dev/ -The file was generated using packit 0.84.0. +The file was generated using packit 0.86.2.post1.dev2+g209847d1. diff --git a/buildah.spec b/buildah.spec index 44714be..d8f6c72 100644 --- a/buildah.spec +++ b/buildah.spec @@ -35,7 +35,7 @@ Epoch: 102 # If that's what you're reading, Version must be 0, and will be updated by Packit for # copr and koji builds. # If you're reading this on dist-git, the version is automatically filled in by Packit. -Version: 1.32.2 +Version: 1.33.2 # The `AND` needs to be uppercase in the License for SPDX compatibility License: Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND ISC AND MIT AND MPL-2.0 Release: %autorelease diff --git a/sources b/sources index 551ddf6..57d136b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (v1.32.2.tar.gz) = 3a50e53e047aa0e23643d8751af1fb51a83fd51e5440111432eb34bdb07e95f24676a917b54409c223df444fe123c8df4aa9af435737cfdd02d0eda0d3f5bba1 +SHA512 (v1.33.2.tar.gz) = 574c1a249d93edd5f89e106cd192da94235edcff097d9bce841e3b3b3a9588029deddaceb301505114b994e854016c72090cc0016a00ef027b25f3672a3fab32 From 5d9366536fcd5bdda53dc70b995fa63d925b5dd1 Mon Sep 17 00:00:00 2001 From: Packit Date: Wed, 13 Dec 2023 15:30:01 +0000 Subject: [PATCH 09/18] [packit] 1.34.0 upstream release Upstream tag: v1.34.0 Upstream commit: 21ec7ace --- .gitignore | 1 + README.packit | 2 +- buildah.spec | 2 +- sources | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b3703b3..e7874b3 100644 --- a/.gitignore +++ b/.gitignore @@ -703,3 +703,4 @@ /v1.32.1.tar.gz /v1.32.2.tar.gz /v1.33.2.tar.gz +/v1.34.0.tar.gz diff --git a/README.packit b/README.packit index d778d97..14f5afe 100644 --- a/README.packit +++ b/README.packit @@ -1,3 +1,3 @@ This repository is maintained by packit. https://packit.dev/ -The file was generated using packit 0.86.2.post1.dev2+g209847d1. +The file was generated using packit 0.87.1.post1.dev7+g9f53ebb4. diff --git a/buildah.spec b/buildah.spec index d8f6c72..a7d6942 100644 --- a/buildah.spec +++ b/buildah.spec @@ -35,7 +35,7 @@ Epoch: 102 # If that's what you're reading, Version must be 0, and will be updated by Packit for # copr and koji builds. # If you're reading this on dist-git, the version is automatically filled in by Packit. -Version: 1.33.2 +Version: 1.34.0 # The `AND` needs to be uppercase in the License for SPDX compatibility License: Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND ISC AND MIT AND MPL-2.0 Release: %autorelease diff --git a/sources b/sources index 57d136b..472b673 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (v1.33.2.tar.gz) = 574c1a249d93edd5f89e106cd192da94235edcff097d9bce841e3b3b3a9588029deddaceb301505114b994e854016c72090cc0016a00ef027b25f3672a3fab32 +SHA512 (v1.34.0.tar.gz) = a3836ce540058f418131969e157d548864727398535e4e99a693d883419b8d764da7166f9b9376c2b9686d8beac101687843c2e93198b16328ef333ad96d55db From 5bbc730ba01c676d56016224bd3ac0cfb86015e5 Mon Sep 17 00:00:00 2001 From: Packit Date: Thu, 22 Feb 2024 19:49:17 +0000 Subject: [PATCH 10/18] [packit] 1.34.1 upstream release Upstream tag: v1.34.1 Upstream commit: a2bab63f --- .gitignore | 1 + README.packit | 2 +- buildah.spec | 2 +- sources | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index e7874b3..c8db536 100644 --- a/.gitignore +++ b/.gitignore @@ -704,3 +704,4 @@ /v1.32.2.tar.gz /v1.33.2.tar.gz /v1.34.0.tar.gz +/v1.34.1.tar.gz diff --git a/README.packit b/README.packit index 14f5afe..7553f6b 100644 --- a/README.packit +++ b/README.packit @@ -1,3 +1,3 @@ This repository is maintained by packit. https://packit.dev/ -The file was generated using packit 0.87.1.post1.dev7+g9f53ebb4. +The file was generated using packit 0.92.0. diff --git a/buildah.spec b/buildah.spec index a7d6942..55f77c0 100644 --- a/buildah.spec +++ b/buildah.spec @@ -35,7 +35,7 @@ Epoch: 102 # If that's what you're reading, Version must be 0, and will be updated by Packit for # copr and koji builds. # If you're reading this on dist-git, the version is automatically filled in by Packit. -Version: 1.34.0 +Version: 1.34.1 # The `AND` needs to be uppercase in the License for SPDX compatibility License: Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND ISC AND MIT AND MPL-2.0 Release: %autorelease diff --git a/sources b/sources index 472b673..e7039ae 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (v1.34.0.tar.gz) = a3836ce540058f418131969e157d548864727398535e4e99a693d883419b8d764da7166f9b9376c2b9686d8beac101687843c2e93198b16328ef333ad96d55db +SHA512 (v1.34.1.tar.gz) = 2d229ead1149b66d1b7d91f596809e97e5316356ab0997ea335eb3e246ed8bc6879e0e260bb478b4d7ec7c42c7dbf33d0e91086a34e89a3b79eb27322da06c1e From d4d536bd34de2f7ad6ab8f066b27a6d6b80a4afa Mon Sep 17 00:00:00 2001 From: Packit Date: Thu, 7 Mar 2024 12:45:03 +0000 Subject: [PATCH 11/18] [packit] 1.35.0 upstream release Upstream tag: v1.35.0 Upstream commit: fedbd796 --- .gitignore | 1 + README.packit | 2 +- buildah.spec | 2 +- sources | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index c8db536..d446755 100644 --- a/.gitignore +++ b/.gitignore @@ -705,3 +705,4 @@ /v1.33.2.tar.gz /v1.34.0.tar.gz /v1.34.1.tar.gz +/v1.35.0.tar.gz diff --git a/README.packit b/README.packit index 7553f6b..58aeb5d 100644 --- a/README.packit +++ b/README.packit @@ -1,3 +1,3 @@ This repository is maintained by packit. https://packit.dev/ -The file was generated using packit 0.92.0. +The file was generated using packit 0.93.0.post1.dev3+ge6195b47. diff --git a/buildah.spec b/buildah.spec index 55f77c0..c2dc6bc 100644 --- a/buildah.spec +++ b/buildah.spec @@ -35,7 +35,7 @@ Epoch: 102 # If that's what you're reading, Version must be 0, and will be updated by Packit for # copr and koji builds. # If you're reading this on dist-git, the version is automatically filled in by Packit. -Version: 1.34.1 +Version: 1.35.0 # The `AND` needs to be uppercase in the License for SPDX compatibility License: Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND ISC AND MIT AND MPL-2.0 Release: %autorelease diff --git a/sources b/sources index e7039ae..8dfaef8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (v1.34.1.tar.gz) = 2d229ead1149b66d1b7d91f596809e97e5316356ab0997ea335eb3e246ed8bc6879e0e260bb478b4d7ec7c42c7dbf33d0e91086a34e89a3b79eb27322da06c1e +SHA512 (v1.35.0.tar.gz) = b4dd30b4d8087bbd0bbfd9a7b9791afc015a0c489041b38d6b6241df27a97286083dcf7b25102ce1fa1080265378442be73313e301c22660f21d8e4f39bb3aa4 From 9f863abe9371e3197831e5e9be588a97f8d1c64b Mon Sep 17 00:00:00 2001 From: Packit Date: Mon, 18 Mar 2024 23:58:16 +0000 Subject: [PATCH 12/18] [packit] 1.35.1 upstream release Upstream tag: v1.35.1 Upstream commit: f0141c69 --- .gitignore | 1 + README.packit | 2 +- buildah.spec | 2 +- sources | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index d446755..b1ef613 100644 --- a/.gitignore +++ b/.gitignore @@ -706,3 +706,4 @@ /v1.34.0.tar.gz /v1.34.1.tar.gz /v1.35.0.tar.gz +/v1.35.1.tar.gz diff --git a/README.packit b/README.packit index 58aeb5d..4afa99b 100644 --- a/README.packit +++ b/README.packit @@ -1,3 +1,3 @@ This repository is maintained by packit. https://packit.dev/ -The file was generated using packit 0.93.0.post1.dev3+ge6195b47. +The file was generated using packit 0.94.0.post1.dev2+g7ce7e679. diff --git a/buildah.spec b/buildah.spec index c2dc6bc..af363c2 100644 --- a/buildah.spec +++ b/buildah.spec @@ -35,7 +35,7 @@ Epoch: 102 # If that's what you're reading, Version must be 0, and will be updated by Packit for # copr and koji builds. # If you're reading this on dist-git, the version is automatically filled in by Packit. -Version: 1.35.0 +Version: 1.35.1 # The `AND` needs to be uppercase in the License for SPDX compatibility License: Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND ISC AND MIT AND MPL-2.0 Release: %autorelease diff --git a/sources b/sources index 8dfaef8..3f9ef00 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (v1.35.0.tar.gz) = b4dd30b4d8087bbd0bbfd9a7b9791afc015a0c489041b38d6b6241df27a97286083dcf7b25102ce1fa1080265378442be73313e301c22660f21d8e4f39bb3aa4 +SHA512 (v1.35.1.tar.gz) = 3e5af28b3d45e51674d08bef9a92cd64589026d9c6ebee51156738151681395860e372bba2667815e0f90e37984eb9dfdc9b8ad0675b62c8751582b29485d159 From 9e2120ab78a77525808c31cc1dbe6df1bdc92d2e Mon Sep 17 00:00:00 2001 From: Packit Date: Tue, 26 Mar 2024 23:58:42 +0000 Subject: [PATCH 13/18] [packit] 1.35.2 upstream release Upstream tag: v1.35.2 Upstream commit: 5070e42c --- .gitignore | 1 + README.packit | 2 +- buildah.spec | 2 +- sources | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b1ef613..7d6fdfb 100644 --- a/.gitignore +++ b/.gitignore @@ -707,3 +707,4 @@ /v1.34.1.tar.gz /v1.35.0.tar.gz /v1.35.1.tar.gz +/v1.35.2.tar.gz diff --git a/README.packit b/README.packit index 4afa99b..d401b46 100644 --- a/README.packit +++ b/README.packit @@ -1,3 +1,3 @@ This repository is maintained by packit. https://packit.dev/ -The file was generated using packit 0.94.0.post1.dev2+g7ce7e679. +The file was generated using packit 0.94.0.post1.dev8+g4b1f9717. diff --git a/buildah.spec b/buildah.spec index af363c2..913619a 100644 --- a/buildah.spec +++ b/buildah.spec @@ -35,7 +35,7 @@ Epoch: 102 # If that's what you're reading, Version must be 0, and will be updated by Packit for # copr and koji builds. # If you're reading this on dist-git, the version is automatically filled in by Packit. -Version: 1.35.1 +Version: 1.35.2 # The `AND` needs to be uppercase in the License for SPDX compatibility License: Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND ISC AND MIT AND MPL-2.0 Release: %autorelease diff --git a/sources b/sources index 3f9ef00..13122ac 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (v1.35.1.tar.gz) = 3e5af28b3d45e51674d08bef9a92cd64589026d9c6ebee51156738151681395860e372bba2667815e0f90e37984eb9dfdc9b8ad0675b62c8751582b29485d159 +SHA512 (v1.35.2.tar.gz) = a2f55ce6381bdf155b58b3dbd7090e5a1e27b0d6b9b501835365baed81e52fbc1a30ca4184b9a8a65d31a0af3b9ab13441d4b18983861258bc4be939561d0dee From 36d51f5796e863112ed2826bddf9108ade12ba96 Mon Sep 17 00:00:00 2001 From: Packit Date: Sat, 30 Mar 2024 01:14:39 +0000 Subject: [PATCH 14/18] [packit] 1.35.3 upstream release Upstream tag: v1.35.3 Upstream commit: 9f0251c1 --- .gitignore | 1 + buildah.spec | 2 +- sources | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 7d6fdfb..bb66142 100644 --- a/.gitignore +++ b/.gitignore @@ -708,3 +708,4 @@ /v1.35.0.tar.gz /v1.35.1.tar.gz /v1.35.2.tar.gz +/v1.35.3.tar.gz diff --git a/buildah.spec b/buildah.spec index 913619a..447944e 100644 --- a/buildah.spec +++ b/buildah.spec @@ -35,7 +35,7 @@ Epoch: 102 # If that's what you're reading, Version must be 0, and will be updated by Packit for # copr and koji builds. # If you're reading this on dist-git, the version is automatically filled in by Packit. -Version: 1.35.2 +Version: 1.35.3 # The `AND` needs to be uppercase in the License for SPDX compatibility License: Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND ISC AND MIT AND MPL-2.0 Release: %autorelease diff --git a/sources b/sources index 13122ac..c330933 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (v1.35.2.tar.gz) = a2f55ce6381bdf155b58b3dbd7090e5a1e27b0d6b9b501835365baed81e52fbc1a30ca4184b9a8a65d31a0af3b9ab13441d4b18983861258bc4be939561d0dee +SHA512 (v1.35.3.tar.gz) = ca325ce1a878eb9e9a6caedf236add16702d8dcd83f15a1995b8215998821218104ea8cb7a5d11fc354ee01d9805c339578975d35db859f1d53b08e0a2139fe3 From 68e4ed062dec30c41f3347b8c83d7ccb65973022 Mon Sep 17 00:00:00 2001 From: Packit Date: Fri, 10 May 2024 13:22:43 +0000 Subject: [PATCH 15/18] Update to 1.35.4 upstream release Upstream tag: v1.35.4 Upstream commit: c2926eaf Commit authored by Packit automation (https://packit.dev/) --- .gitignore | 1 + README.packit | 2 +- buildah.spec | 2 +- sources | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index bb66142..5c3b8f9 100644 --- a/.gitignore +++ b/.gitignore @@ -709,3 +709,4 @@ /v1.35.1.tar.gz /v1.35.2.tar.gz /v1.35.3.tar.gz +/v1.35.4.tar.gz diff --git a/README.packit b/README.packit index d401b46..97de583 100644 --- a/README.packit +++ b/README.packit @@ -1,3 +1,3 @@ This repository is maintained by packit. https://packit.dev/ -The file was generated using packit 0.94.0.post1.dev8+g4b1f9717. +The file was generated using packit 0.96.0.post1.dev4+gc5b1ea8e. diff --git a/buildah.spec b/buildah.spec index 447944e..958819e 100644 --- a/buildah.spec +++ b/buildah.spec @@ -35,7 +35,7 @@ Epoch: 102 # If that's what you're reading, Version must be 0, and will be updated by Packit for # copr and koji builds. # If you're reading this on dist-git, the version is automatically filled in by Packit. -Version: 1.35.3 +Version: 1.35.4 # The `AND` needs to be uppercase in the License for SPDX compatibility License: Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND ISC AND MIT AND MPL-2.0 Release: %autorelease diff --git a/sources b/sources index c330933..7d510b6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (v1.35.3.tar.gz) = ca325ce1a878eb9e9a6caedf236add16702d8dcd83f15a1995b8215998821218104ea8cb7a5d11fc354ee01d9805c339578975d35db859f1d53b08e0a2139fe3 +SHA512 (v1.35.4.tar.gz) = 679f2328f675a39f9965128d51a6e8a3f82d64a6d3c3cdcb862cfcb7691eba272d869b6718147da1590aa573534081329ef05e879875024a11aa9ad52b2f292f From aa7febf9b0f359332f33fd2f6aced12f15482198 Mon Sep 17 00:00:00 2001 From: Packit Date: Thu, 23 May 2024 23:58:26 +0000 Subject: [PATCH 16/18] Update to 1.36.0 upstream release Upstream tag: v1.36.0 Upstream commit: 6ceba883 Commit authored by Packit automation (https://packit.dev/) --- .gitignore | 1 + .packit.yaml | 6 ++---- buildah.spec | 6 ++++-- sources | 2 +- 4 files changed, 8 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 5c3b8f9..95911f6 100644 --- a/.gitignore +++ b/.gitignore @@ -710,3 +710,4 @@ /v1.35.2.tar.gz /v1.35.3.tar.gz /v1.35.4.tar.gz +/v1.36.0.tar.gz diff --git a/.packit.yaml b/.packit.yaml index 76b297c..ae0e7cc 100644 --- a/.packit.yaml +++ b/.packit.yaml @@ -20,10 +20,8 @@ jobs: - fedora-all-aarch64 - fedora-eln-x86_64 - fedora-eln-aarch64 - - centos-stream+epel-next-8-x86_64 - - centos-stream+epel-next-8-aarch64 - - centos-stream+epel-next-9-x86_64 - - centos-stream+epel-next-9-aarch64 + - epel-9-x86_64 + - epel-9-aarch64 additional_repos: - "copr://rhcontainerbot/podman-next" diff --git a/buildah.spec b/buildah.spec index 958819e..81b91d8 100644 --- a/buildah.spec +++ b/buildah.spec @@ -35,7 +35,7 @@ Epoch: 102 # If that's what you're reading, Version must be 0, and will be updated by Packit for # copr and koji builds. # If you're reading this on dist-git, the version is automatically filled in by Packit. -Version: 1.35.4 +Version: 1.36.0 # The `AND` needs to be uppercase in the License for SPDX compatibility License: Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND ISC AND MIT AND MPL-2.0 Release: %autorelease @@ -86,7 +86,9 @@ or Summary: Tests for %{name} Requires: %{name} = %{version}-%{release} +%if %{defined fedora} Requires: bats +%endif Requires: bzip2 Requires: podman Requires: golang @@ -146,7 +148,7 @@ rm %{buildroot}%{_datadir}/%{name}/test/system/tools/build/* %{!?_licensedir:%global license %doc} %files -%license LICENSE +%license LICENSE vendor/modules.txt %doc README.md %{_bindir}/%{name} %{_mandir}/man1/%{name}* diff --git a/sources b/sources index 7d510b6..17815a5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (v1.35.4.tar.gz) = 679f2328f675a39f9965128d51a6e8a3f82d64a6d3c3cdcb862cfcb7691eba272d869b6718147da1590aa573534081329ef05e879875024a11aa9ad52b2f292f +SHA512 (v1.36.0.tar.gz) = feb55b0dfb3cba4e9c6776b0f4730ebb4b9ea416f507e342f3b1cbf23b2bb79d96a58622faac7a980727e6739df7e0ceddf1a9d5ae483a3c7e781f7af75d115f From b2819220bd34560664c52e74514c294b5d46dfe4 Mon Sep 17 00:00:00 2001 From: Packit Date: Fri, 26 Jul 2024 17:52:49 +0000 Subject: [PATCH 17/18] Update to 1.37.0 upstream release Upstream tag: v1.37.0 Upstream commit: f9de1bbd Commit authored by Packit automation (https://packit.dev/) --- .gitignore | 1 + .packit.yaml | 61 +++++++++++++++++++++++++++++++++++++++++++-------- README.packit | 2 +- buildah.spec | 2 +- sources | 2 +- 5 files changed, 56 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index 95911f6..48e749c 100644 --- a/.gitignore +++ b/.gitignore @@ -711,3 +711,4 @@ /v1.35.3.tar.gz /v1.35.4.tar.gz /v1.36.0.tar.gz +/v1.37.0.tar.gz diff --git a/.packit.yaml b/.packit.yaml index ae0e7cc..b465fec 100644 --- a/.packit.yaml +++ b/.packit.yaml @@ -2,45 +2,88 @@ # See the documentation for more information: # https://packit.dev/docs/configuration/ -specfile_path: rpm/buildah.spec +downstream_package_name: buildah upstream_tag_template: v{version} +packages: + buildah-fedora: + pkg_tool: fedpkg + specfile_path: rpm/buildah.spec + buildah-centos: + pkg_tool: centpkg + specfile_path: rpm/buildah.spec + buildah-rhel: + specfile_path: rpm/buildah.spec + srpm_build_deps: - make jobs: - job: copr_build trigger: pull_request - notifications: + packages: [buildah-fedora] + notifications: &copr_build_failure_notification failure_comment: message: "Ephemeral COPR build failed. @containers/packit-build please check." - enable_net: true targets: - - fedora-all-x86_64 - - fedora-all-aarch64 - - fedora-eln-x86_64 - - fedora-eln-aarch64 + fedora-all-x86_64: {} + fedora-all-aarch64: {} + fedora-eln-x86_64: + additional_repos: + - "https://kojipkgs.fedoraproject.org/repos/eln-build/latest/x86_64/" + fedora-eln-aarch64: + additional_repos: + - "https://kojipkgs.fedoraproject.org/repos/eln-build/latest/aarch64/" + enable_net: true + + - job: copr_build + trigger: pull_request + packages: [buildah-centos] + notifications: *copr_build_failure_notification + targets: + - centos-stream-9-x86_64 + - centos-stream-9-aarch64 + - centos-stream-10-x86_64 + - centos-stream-10-aarch64 + enable_net: true + + - job: copr_build + trigger: pull_request + packages: [buildah-rhel] + notifications: *copr_build_failure_notification + targets: - epel-9-x86_64 - epel-9-aarch64 - additional_repos: - - "copr://rhcontainerbot/podman-next" + enable_net: true # Run on commit to main branch - job: copr_build trigger: commit + packages: [buildah-fedora] notifications: failure_comment: message: "podman-next COPR build failed. @containers/packit-build please check." + branch: main owner: rhcontainerbot project: podman-next enable_net: true + # Sync to Fedora - job: propose_downstream trigger: release + packages: [buildah-fedora] update_release: false dist_git_branches: - fedora-all + # Sync to CentOS Stream + - job: propose_downstream + trigger: release + packages: [buildah-centos] + update_release: false + dist_git_branches: + - c10s + - job: koji_build trigger: commit dist_git_branches: diff --git a/README.packit b/README.packit index 97de583..8d4e245 100644 --- a/README.packit +++ b/README.packit @@ -1,3 +1,3 @@ This repository is maintained by packit. https://packit.dev/ -The file was generated using packit 0.96.0.post1.dev4+gc5b1ea8e. +The file was generated using packit 0.99.0.post1.dev18+g4850a935. diff --git a/buildah.spec b/buildah.spec index 81b91d8..fd6c67b 100644 --- a/buildah.spec +++ b/buildah.spec @@ -35,7 +35,7 @@ Epoch: 102 # If that's what you're reading, Version must be 0, and will be updated by Packit for # copr and koji builds. # If you're reading this on dist-git, the version is automatically filled in by Packit. -Version: 1.36.0 +Version: 1.37.0 # The `AND` needs to be uppercase in the License for SPDX compatibility License: Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND ISC AND MIT AND MPL-2.0 Release: %autorelease diff --git a/sources b/sources index 17815a5..9d6a031 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (v1.36.0.tar.gz) = feb55b0dfb3cba4e9c6776b0f4730ebb4b9ea416f507e342f3b1cbf23b2bb79d96a58622faac7a980727e6739df7e0ceddf1a9d5ae483a3c7e781f7af75d115f +SHA512 (v1.37.0.tar.gz) = 0c4209edce498bd96498d539380517e9641c438aadf3bc90f148abd03b22a8409ec5a23438e9d1534845652eeef283aedd328fc6fe07cc8a7789808d945c41c0 From 3079b71be31613c7fbc23a6025347295c82f7a6b Mon Sep 17 00:00:00 2001 From: Packit Date: Tue, 13 Aug 2024 15:07:39 +0000 Subject: [PATCH 18/18] Update to 1.37.1 upstream release Upstream tag: v1.37.1 Upstream commit: 67cc51e9 Commit authored by Packit automation (https://packit.dev/) --- .gitignore | 1 + README.packit | 2 +- buildah.spec | 2 +- sources | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 48e749c..c3f5790 100644 --- a/.gitignore +++ b/.gitignore @@ -712,3 +712,4 @@ /v1.35.4.tar.gz /v1.36.0.tar.gz /v1.37.0.tar.gz +/v1.37.1.tar.gz diff --git a/README.packit b/README.packit index 8d4e245..4df53f3 100644 --- a/README.packit +++ b/README.packit @@ -1,3 +1,3 @@ This repository is maintained by packit. https://packit.dev/ -The file was generated using packit 0.99.0.post1.dev18+g4850a935. +The file was generated using packit 0.100.1. diff --git a/buildah.spec b/buildah.spec index fd6c67b..c5e10b3 100644 --- a/buildah.spec +++ b/buildah.spec @@ -35,7 +35,7 @@ Epoch: 102 # If that's what you're reading, Version must be 0, and will be updated by Packit for # copr and koji builds. # If you're reading this on dist-git, the version is automatically filled in by Packit. -Version: 1.37.0 +Version: 1.37.1 # The `AND` needs to be uppercase in the License for SPDX compatibility License: Apache-2.0 AND BSD-2-Clause AND BSD-3-Clause AND ISC AND MIT AND MPL-2.0 Release: %autorelease diff --git a/sources b/sources index 9d6a031..ebe2ecb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (v1.37.0.tar.gz) = 0c4209edce498bd96498d539380517e9641c438aadf3bc90f148abd03b22a8409ec5a23438e9d1534845652eeef283aedd328fc6fe07cc8a7789808d945c41c0 +SHA512 (v1.37.1.tar.gz) = b36dd0c9ccac399550232fe1b7024f8969fa9086efe9cdf8a8ed10ad3c3d3bad4095a7ac17ed41ccb670a781a975dea36f1ad99ba6ae15d7b2b4d728399c5e36