[packit] 1.13.2 upstream release
Upstream tag: v1.13.2 Upstream commit: 24c0c336 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/skopeo.git refs/heads/*:refs/remotes/packit/* git checkout packit/1.13.2-rawhide-update-propose_downstream ```
This commit is contained in:
parent
4e23506b8e
commit
b40717aade
1
.gitignore
vendored
1
.gitignore
vendored
@ -309,3 +309,4 @@
|
|||||||
/v1.12.0.tar.gz
|
/v1.12.0.tar.gz
|
||||||
/v1.13.0.tar.gz
|
/v1.13.0.tar.gz
|
||||||
/v1.13.1.tar.gz
|
/v1.13.1.tar.gz
|
||||||
|
/v1.13.2.tar.gz
|
||||||
|
47
.packit.yaml
Normal file
47
.packit.yaml
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
---
|
||||||
|
# See the documentation for more information:
|
||||||
|
# https://packit.dev/docs/configuration/
|
||||||
|
|
||||||
|
# NOTE: The Packit copr_build tasks help to check if every commit builds on
|
||||||
|
# supported Fedora and CentOS Stream arches.
|
||||||
|
# They do not block the current Cirrus-based workflow.
|
||||||
|
|
||||||
|
# Build targets can be found at:
|
||||||
|
# https://copr.fedorainfracloud.org/coprs/rhcontainerbot/packit-builds/
|
||||||
|
# and
|
||||||
|
# https://copr.fedorainfracloud.org/coprs/rhcontainerbot/podman-next/
|
||||||
|
|
||||||
|
specfile_path: rpm/skopeo.spec
|
||||||
|
upstream_tag_template: v{version}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
- &copr
|
||||||
|
job: copr_build
|
||||||
|
trigger: pull_request
|
||||||
|
owner: rhcontainerbot
|
||||||
|
project: packit-builds
|
||||||
|
enable_net: true
|
||||||
|
srpm_build_deps:
|
||||||
|
- make
|
||||||
|
|
||||||
|
- <<: *copr
|
||||||
|
# Run on commit to main branch
|
||||||
|
trigger: commit
|
||||||
|
branch: main
|
||||||
|
project: podman-next
|
||||||
|
|
||||||
|
- 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
|
3
README.packit
Normal file
3
README.packit
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
This repository is maintained by packit.
|
||||||
|
https://packit.dev/
|
||||||
|
The file was generated using packit 0.78.2.post2+g81828af.
|
45
skopeo.spec
45
skopeo.spec
@ -40,7 +40,7 @@ Epoch: %{conditional_epoch}
|
|||||||
# If that's what you're reading, Version must be 0, and will be updated by Packit for
|
# If that's what you're reading, Version must be 0, and will be updated by Packit for
|
||||||
# copr and koji builds.
|
# copr and koji builds.
|
||||||
# If you're reading this on dist-git, the version is automatically filled in by Packit.
|
# If you're reading this on dist-git, the version is automatically filled in by Packit.
|
||||||
Version: 1.13.1
|
Version: 1.13.2
|
||||||
License: Apache-2.0 and BSD-2-Clause and BSD-3-Clause and ISC and MIT and MPL-2.0
|
License: Apache-2.0 and BSD-2-Clause and BSD-3-Clause and ISC and MIT and MPL-2.0
|
||||||
Release: %autorelease
|
Release: %autorelease
|
||||||
%if %{defined golang_arches_future}
|
%if %{defined golang_arches_future}
|
||||||
@ -69,49 +69,6 @@ BuildRequires: glib2-devel
|
|||||||
BuildRequires: make
|
BuildRequires: make
|
||||||
BuildRequires: shadow-utils-subid-devel
|
BuildRequires: shadow-utils-subid-devel
|
||||||
Requires: containers-common >= 4:1-21
|
Requires: containers-common >= 4:1-21
|
||||||
# DO NOT DELETE BELOW LINE - used for updating downstream goimports
|
|
||||||
# vendored libraries
|
|
||||||
Provides: bundled(golang(github.com/containers/common/pkg/auth))
|
|
||||||
Provides: bundled(golang(github.com/containers/common/pkg/flag))
|
|
||||||
Provides: bundled(golang(github.com/containers/common/pkg/report))
|
|
||||||
Provides: bundled(golang(github.com/containers/common/pkg/retry))
|
|
||||||
Provides: bundled(golang(github.com/containers/image/v5/copy))
|
|
||||||
Provides: bundled(golang(github.com/containers/image/v5/directory))
|
|
||||||
Provides: bundled(golang(github.com/containers/image/v5/docker))
|
|
||||||
Provides: bundled(golang(github.com/containers/image/v5/docker/archive))
|
|
||||||
Provides: bundled(golang(github.com/containers/image/v5/docker/reference))
|
|
||||||
Provides: bundled(golang(github.com/containers/image/v5/image))
|
|
||||||
Provides: bundled(golang(github.com/containers/image/v5/manifest))
|
|
||||||
Provides: bundled(golang(github.com/containers/image/v5/oci/layout))
|
|
||||||
Provides: bundled(golang(github.com/containers/image/v5/pkg/blobinfocache))
|
|
||||||
Provides: bundled(golang(github.com/containers/image/v5/pkg/cli))
|
|
||||||
Provides: bundled(golang(github.com/containers/image/v5/pkg/cli/sigstore))
|
|
||||||
Provides: bundled(golang(github.com/containers/image/v5/pkg/compression))
|
|
||||||
Provides: bundled(golang(github.com/containers/image/v5/signature))
|
|
||||||
Provides: bundled(golang(github.com/containers/image/v5/signature/signer))
|
|
||||||
Provides: bundled(golang(github.com/containers/image/v5/signature/sigstore))
|
|
||||||
Provides: bundled(golang(github.com/containers/image/v5/transports))
|
|
||||||
Provides: bundled(golang(github.com/containers/image/v5/transports/alltransports))
|
|
||||||
Provides: bundled(golang(github.com/containers/image/v5/types))
|
|
||||||
Provides: bundled(golang(github.com/containers/ocicrypt/config))
|
|
||||||
Provides: bundled(golang(github.com/containers/ocicrypt/helpers))
|
|
||||||
Provides: bundled(golang(github.com/containers/storage/pkg/homedir))
|
|
||||||
Provides: bundled(golang(github.com/containers/storage/pkg/reexec))
|
|
||||||
Provides: bundled(golang(github.com/containers/storage/pkg/unshare))
|
|
||||||
Provides: bundled(golang(github.com/docker/distribution/registry/api/errcode))
|
|
||||||
Provides: bundled(golang(github.com/docker/distribution/registry/api/v2))
|
|
||||||
Provides: bundled(golang(github.com/opencontainers/go-digest))
|
|
||||||
Provides: bundled(golang(github.com/opencontainers/image-spec/specs-go/v1))
|
|
||||||
Provides: bundled(golang(github.com/sirupsen/logrus))
|
|
||||||
Provides: bundled(golang(github.com/spf13/cobra))
|
|
||||||
Provides: bundled(golang(github.com/spf13/pflag))
|
|
||||||
Provides: bundled(golang(github.com/stretchr/testify/assert))
|
|
||||||
Provides: bundled(golang(github.com/stretchr/testify/require))
|
|
||||||
Provides: bundled(golang(github.com/syndtr/gocapability/capability))
|
|
||||||
Provides: bundled(golang(golang.org/x/exp/maps))
|
|
||||||
Provides: bundled(golang(golang.org/x/exp/slices))
|
|
||||||
Provides: bundled(golang(golang.org/x/term))
|
|
||||||
Provides: bundled(golang(gopkg.in/yaml.v3))
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Command line utility to inspect images and repositories directly on Docker
|
Command line utility to inspect images and repositories directly on Docker
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (v1.13.1.tar.gz) = df9c3dc450707c91e3bed8816a90176292198779f59ad9dfbc4fa340a2d812e7761937b5e130a0bd4778c06b6670e9a081850fcb2b01f09e236f95cbedea6e06
|
SHA512 (v1.13.2.tar.gz) = 8d321fba452784e3704c058113eb29c76a26e71aa19d0ba2c48fa077e0b74a64a1b8c4ba121d35a1d9ba886a5c28f2e66891e3f592654f2f738d8659443179b3
|
||||||
|
Loading…
Reference in New Issue
Block a user