diff --git a/.azldev-version b/.azldev-version index 5373d6700cc..abf1edd1598 100644 --- a/.azldev-version +++ b/.azldev-version @@ -1 +1 @@ -261ae7471a4421377d557c51aaae70add8bc9caf +30ea37909d0f4196ec765b567f1c9d17e321dcb5 diff --git a/.github/workflows/ado/templates/steps/get-changes-info.yml b/.github/workflows/ado/templates/steps/get-changes-info.yml index d3e455480be..d8305863655 100644 --- a/.github/workflows/ado/templates/steps/get-changes-info.yml +++ b/.github/workflows/ado/templates/steps/get-changes-info.yml @@ -73,4 +73,6 @@ steps: - template: verify-rendered-specs.yml parameters: + fromCommitVar: ${{ parameters.baseCommitVar }} renderSetFileVar: ${{ parameters.renderSetFileVar }} + toCommitVar: ${{ parameters.sourceCommitVar }} diff --git a/.github/workflows/ado/templates/steps/verify-rendered-specs.yml b/.github/workflows/ado/templates/steps/verify-rendered-specs.yml index 22928e19da2..f215665e01f 100644 --- a/.github/workflows/ado/templates/steps/verify-rendered-specs.yml +++ b/.github/workflows/ado/templates/steps/verify-rendered-specs.yml @@ -4,12 +4,19 @@ # Step template: render the components in the render set (--check-only) and fail # if any component's rendered output would change, catching stale renders and # direct hand-edits. Reads the render-set path from the variable named by -# renderSetFileVar. +# renderSetFileVar, and the (from, to) commit range for the SRPM EVR check from +# the variables named by fromCommitVar / toCommitVar. parameters: + - name: fromCommitVar + type: string + default: baseCommit - name: renderSetFileVar type: string default: renderSetFile + - name: toCommitVar + type: string + default: sourceCommit steps: - script: | @@ -23,22 +30,34 @@ steps: # An empty render set just means no components changed. if [[ ! -s "$RENDER_SET_FILE" ]]; then echo "No changed components -- skipping render." - exit 0 + else + echo "##[group]Render set" + sed 's/^/ - /' "$RENDER_SET_FILE" + echo "##[endgroup]" + echo "##[group]Specs rendering + verification" + # `-x` fails loudly if the arg list would split into multiple xargs + # invocations -- a multi-batch render-check would silently mask drift in + # the later batches. `-n 50000` is required for `-x` to have any effect + # (without `-n`/`-L`, GNU xargs never splits). `--` ends azldev option + # parsing so component names beginning with `-` (none today) are + # unambiguous. `env AZLDEV_ALLOW_ROOT=1` is inline per + # .github/instructions/ado-pipeline.instructions.md. + xargs -x -n 50000 -d '\n' env AZLDEV_ALLOW_ROOT=1 azldev component render --check-only -- \ + < "$RENDER_SET_FILE" + echo "##[endgroup]" fi - echo "##[group]Render set" - sed 's/^/ - /' "$RENDER_SET_FILE" - echo "##[endgroup]" - echo "##[group]Specs rendering + verification" - # `-x` fails loudly if the arg list would split into multiple xargs - # invocations -- a multi-batch render-check would silently mask drift in - # the later batches. `-n 50000` is required for `-x` to have any effect - # (without `-n`/`-L`, GNU xargs never splits). `--` ends azldev option - # parsing so component names beginning with `-` (none today) are - # unambiguous. `env AZLDEV_ALLOW_ROOT=1` is inline per - # .github/instructions/ado-pipeline.instructions.md. - xargs -x -n 50000 -d '\n' env AZLDEV_ALLOW_ROOT=1 azldev component render --check-only -- \ - < "$RENDER_SET_FILE" + + echo "##[group]SRPM EVR verification" + # Unlike GitHub's render workflow, this check-only render leaves the + # working tree untouched, so this gate validates committed specs. It + # always proves a release-only rebuild of every counter-bumped component + # would produce a new EVR, and `--from`/`--to` add the cross-ref + # regression check over the same commit range the change set used. + env AZLDEV_ALLOW_ROOT=1 azldev component check --evr \ + --from "$FROM_COMMIT" --to "$TO_COMMIT" -a -q -O json echo "##[endgroup]" env: + FROM_COMMIT: $(${{ parameters.fromCommitVar }}) RENDER_SET_FILE: $(${{ parameters.renderSetFileVar }}) + TO_COMMIT: $(${{ parameters.toCommitVar }}) displayName: "Verify rendered specs are up to date" diff --git a/.github/workflows/check-rendered-specs.yml b/.github/workflows/check-rendered-specs.yml index 438e66bbe3c..eb01e68f7a6 100644 --- a/.github/workflows/check-rendered-specs.yml +++ b/.github/workflows/check-rendered-specs.yml @@ -508,10 +508,29 @@ jobs: # check_rendered_specs.py diffs the working tree (now containing # any re-render output and any orphan-cleanup deletions) against # HEAD and produces the user-facing patch. + # Run both gates before exiting so counter drift cannot prevent + # the report and fix patch needed by the PR comment job. + render_check_exit=0 python3 /scripts-render/check_rendered_specs.py \ --specs-dir "$SPECS_DIR" \ --report /output/render-check-report.json \ - --patch /output/rendered-specs.patch + --patch /output/rendered-specs.patch || render_check_exit=$? + + # Counter configuration targets rendered text, so run this after + # the PR render and retain its machine-readable result with the + # existing drift artifacts. `--from "$PR_BASE_SHA"` is the same + # baseline the render set was computed from (and was fetched + # explicitly above), so the EVR regression half compares exactly + # the range this PR introduces. + counter_check_exit=0 + azldev component check --evr --from "$PR_BASE_SHA" -a -q -O json \ + > /output/release-counter-check.json || counter_check_exit=$? + + if [ "$render_check_exit" -ne 0 ]; then + exit "$render_check_exit" + fi + + exit "$counter_check_exit" ' # Dual upload: `archive: false` (v7 feature) gives browser users a direct @@ -543,6 +562,7 @@ jobs: path: | render-output/render-output.json render-output/render-check-report.json + render-output/release-counter-check.json # Post the PR comment. Runs in a separate job so the `pull-requests: write` # token is only granted to a job that does NOT execute any PR-derived code: diff --git a/base/comps/SLOF/SLOF.comp.toml b/base/comps/SLOF/SLOF.comp.toml index 3391bc29cc6..dd086b62463 100644 --- a/base/comps/SLOF/SLOF.comp.toml +++ b/base/comps/SLOF/SLOF.comp.toml @@ -1,3 +1,3 @@ [components.SLOF] -# Release: 8.git%{gittagcommit}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 8.git%{gittagcommit}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.git%\{gittagcommit\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/aalib/aalib.comp.toml b/base/comps/aalib/aalib.comp.toml index f95d72c21a7..f720d289dd6 100644 --- a/base/comps/aalib/aalib.comp.toml +++ b/base/comps/aalib/aalib.comp.toml @@ -1,3 +1,3 @@ [components.aalib] -# Release: 0.56.%{rc_subver}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.56.%{rc_subver}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)\.%\{rc_subver\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/alsa-lib/alsa-lib.comp.toml b/base/comps/alsa-lib/alsa-lib.comp.toml index 62bfddc7ec1..5aa0287cefc 100644 --- a/base/comps/alsa-lib/alsa-lib.comp.toml +++ b/base/comps/alsa-lib/alsa-lib.comp.toml @@ -1,3 +1,3 @@ [components.alsa-lib] -# Release: 1%{?prever_dot}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 1%{?prever_dot}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?prever_dot\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/ansible-packaging/ansible-packaging.comp.toml b/base/comps/ansible-packaging/ansible-packaging.comp.toml index 4f2d3936865..24210a6eba3 100644 --- a/base/comps/ansible-packaging/ansible-packaging.comp.toml +++ b/base/comps/ansible-packaging/ansible-packaging.comp.toml @@ -1,3 +1,9 @@ [components.ansible-packaging] -# Release: 18.1%{?dist} -release = { calculation = "manual" } +# Upstream Release: 18.1%{?dist} + +[components.ansible-packaging.release] +calculation = "static" + +[components.ansible-packaging.release.counter] +source = "release-tag" +regex = '^[0-9]+\.([0-9]+)(?:%\{\??dist\})?$' diff --git a/base/comps/ant-contrib/ant-contrib.comp.toml b/base/comps/ant-contrib/ant-contrib.comp.toml index 0a7f32f39ac..703ed2db84d 100644 --- a/base/comps/ant-contrib/ant-contrib.comp.toml +++ b/base/comps/ant-contrib/ant-contrib.comp.toml @@ -1,3 +1,3 @@ [components.ant-contrib] -# Release: 0.49.%{beta_number}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.49.%{beta_number}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)\.%\{beta_number\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/antlr3/antlr3.comp.toml b/base/comps/antlr3/antlr3.comp.toml index 497ded1aefd..379d2dd7b3e 100644 --- a/base/comps/antlr3/antlr3.comp.toml +++ b/base/comps/antlr3/antlr3.comp.toml @@ -1,3 +1,3 @@ [components.antlr3] -# Release: %{baserelease}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{baserelease}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "baserelease" } } diff --git a/base/comps/arpack/arpack.comp.toml b/base/comps/arpack/arpack.comp.toml index 27fef204b73..7f559dca67e 100644 --- a/base/comps/arpack/arpack.comp.toml +++ b/base/comps/arpack/arpack.comp.toml @@ -1,3 +1,3 @@ [components.arpack] -# Release: 7%{dist} -release = { calculation = "manual" } +# Upstream Release: 7%{dist} +release = { calculation = "static" } diff --git a/base/comps/augeas/augeas.comp.toml b/base/comps/augeas/augeas.comp.toml index 326070e49bb..6cbc00004bd 100644 --- a/base/comps/augeas/augeas.comp.toml +++ b/base/comps/augeas/augeas.comp.toml @@ -1,3 +1,3 @@ [components.augeas] -# Release: 0.6%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.6%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)(?:%\{\??dist\})?$' } } diff --git a/base/comps/automoc/automoc.comp.toml b/base/comps/automoc/automoc.comp.toml index e9c16d47b66..4434084444a 100644 --- a/base/comps/automoc/automoc.comp.toml +++ b/base/comps/automoc/automoc.comp.toml @@ -1,3 +1,3 @@ [components.automoc] -# Release: 0.51.%{?beta_tag}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.51.%{?beta_tag}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)\.%\{\?beta_tag\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/azurelinux-release/azurelinux-release.comp.toml b/base/comps/azurelinux-release/azurelinux-release.comp.toml index cb9e6ce7377..9a4ddf3a936 100644 --- a/base/comps/azurelinux-release/azurelinux-release.comp.toml +++ b/base/comps/azurelinux-release/azurelinux-release.comp.toml @@ -1,3 +1,4 @@ [components.azurelinux-release] spec = { type = "local", path = "azurelinux-release.spec" } -release = { calculation = "manual" } +# Upstream Release: 21%{?dist} +release = { calculation = "static" } diff --git a/base/comps/ca-certificates/ca-certificates.comp.toml b/base/comps/ca-certificates/ca-certificates.comp.toml index 6a27b26b416..9e74f457c8b 100644 --- a/base/comps/ca-certificates/ca-certificates.comp.toml +++ b/base/comps/ca-certificates/ca-certificates.comp.toml @@ -1,3 +1,3 @@ [components.ca-certificates] -# Release: 1.1%{?dist} -release = { calculation = "manual" } +# Upstream Release: 1.1%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^1\.([0-9]+)(?:%\{\??dist\})?$' } } diff --git a/base/comps/cachefilesd/cachefilesd.comp.toml b/base/comps/cachefilesd/cachefilesd.comp.toml index 3f3f68be95d..bd50419201c 100644 --- a/base/comps/cachefilesd/cachefilesd.comp.toml +++ b/base/comps/cachefilesd/cachefilesd.comp.toml @@ -1,3 +1,3 @@ [components.cachefilesd] -# Release: 21%{?dist}%{?buildid} -release = { calculation = "manual" } +# Upstream Release: 21%{?dist}%{?buildid} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)(?:%\{\??dist\})?%\{\?buildid\}$' } } diff --git a/base/comps/chkrootkit/chkrootkit.comp.toml b/base/comps/chkrootkit/chkrootkit.comp.toml index c408f6f9f40..b3f0c200772 100644 --- a/base/comps/chkrootkit/chkrootkit.comp.toml +++ b/base/comps/chkrootkit/chkrootkit.comp.toml @@ -1,3 +1,3 @@ [components.chkrootkit] -# Release: 1b%{?dist} -release = { calculation = "manual" } +# Upstream Release: 1b%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)b(?:%\{\??dist\})?$' } } diff --git a/base/comps/civetweb/civetweb.comp.toml b/base/comps/civetweb/civetweb.comp.toml index 13aa1cd2cf9..46a3d9f1d90 100644 --- a/base/comps/civetweb/civetweb.comp.toml +++ b/base/comps/civetweb/civetweb.comp.toml @@ -1,3 +1,3 @@ [components.civetweb] -# Release: 10%{?dev:%{dev}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 10%{?dev:%{dev}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?dev:%\{dev\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/cmake/cmake.comp.toml b/base/comps/cmake/cmake.comp.toml index 9ad87e463d6..1459f068a1d 100644 --- a/base/comps/cmake/cmake.comp.toml +++ b/base/comps/cmake/cmake.comp.toml @@ -1,3 +1,3 @@ [components.cmake] -# Release: %{baserelease}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{baserelease}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "baserelease" } } diff --git a/base/comps/cpuinfo/cpuinfo.comp.toml b/base/comps/cpuinfo/cpuinfo.comp.toml index 73641f00d16..7d7dd5fab67 100644 --- a/base/comps/cpuinfo/cpuinfo.comp.toml +++ b/base/comps/cpuinfo/cpuinfo.comp.toml @@ -1,3 +1,3 @@ [components.cpuinfo] -# Release: %{patch_level}.git%{?shortcommit0}%{?dist}.2 -release = { calculation = "manual" } +# Upstream Release: %{patch_level}.git%{?shortcommit0}%{?dist}.2 +release = { calculation = "static", counter = { source = "release-tag", regex = '^%\{patch_level\}\.git%\{\?shortcommit0\}(?:%\{\??dist\})?\.([0-9]+)$' } } diff --git a/base/comps/cross-gcc/cross-gcc.comp.toml b/base/comps/cross-gcc/cross-gcc.comp.toml index 00d0e7b3bdc..cd0baf91c43 100644 --- a/base/comps/cross-gcc/cross-gcc.comp.toml +++ b/base/comps/cross-gcc/cross-gcc.comp.toml @@ -1,3 +1,3 @@ [components.cross-gcc] -# Release: %{cross_gcc_release}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{cross_gcc_release}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "cross_gcc_release" } } diff --git a/base/comps/crypto-policies/crypto-policies.comp.toml b/base/comps/crypto-policies/crypto-policies.comp.toml index 5426863a83e..9ab58452112 100644 --- a/base/comps/crypto-policies/crypto-policies.comp.toml +++ b/base/comps/crypto-policies/crypto-policies.comp.toml @@ -1,3 +1,3 @@ [components.crypto-policies] -# Release: 1.git%{git_commit_hash}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 1.git%{git_commit_hash}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.git%\{git_commit_hash\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/csnappy/csnappy.comp.toml b/base/comps/csnappy/csnappy.comp.toml index bd40c19a3af..cad70d059e8 100644 --- a/base/comps/csnappy/csnappy.comp.toml +++ b/base/comps/csnappy/csnappy.comp.toml @@ -1,3 +1,3 @@ [components.csnappy] -# Release: 32.20211216git%{shortcommit}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 32.20211216git%{shortcommit}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.20211216git%\{shortcommit\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/cvsps/cvsps.comp.toml b/base/comps/cvsps/cvsps.comp.toml index 2a565986e2d..78e9041b1f3 100644 --- a/base/comps/cvsps/cvsps.comp.toml +++ b/base/comps/cvsps/cvsps.comp.toml @@ -1,3 +1,3 @@ [components.cvsps] -# Release: 0.39.b1%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.39.b1%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)\.b1(?:%\{\??dist\})?$' } } diff --git a/base/comps/dbusmenu-qt/dbusmenu-qt.comp.toml b/base/comps/dbusmenu-qt/dbusmenu-qt.comp.toml index 4d90a2aae03..1b34d3760cf 100644 --- a/base/comps/dbusmenu-qt/dbusmenu-qt.comp.toml +++ b/base/comps/dbusmenu-qt/dbusmenu-qt.comp.toml @@ -1,3 +1,3 @@ [components.dbusmenu-qt] -# Release: 0.37.%{snapshot}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.37.%{snapshot}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)\.%\{snapshot\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/device-mapper-persistent-data/device-mapper-persistent-data.comp.toml b/base/comps/device-mapper-persistent-data/device-mapper-persistent-data.comp.toml index c75835efc02..38b45fc9c90 100644 --- a/base/comps/device-mapper-persistent-data/device-mapper-persistent-data.comp.toml +++ b/base/comps/device-mapper-persistent-data/device-mapper-persistent-data.comp.toml @@ -1,3 +1,3 @@ [components.device-mapper-persistent-data] -# Release: 4%{?dist}%{?release_suffix} -release = { calculation = "manual" } +# Upstream Release: 4%{?dist}%{?release_suffix} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)(?:%\{\??dist\})?%\{\?release_suffix\}$' } } diff --git a/base/comps/dialog/dialog.comp.toml b/base/comps/dialog/dialog.comp.toml index f2f7b6884f9..4e1cd3001da 100644 --- a/base/comps/dialog/dialog.comp.toml +++ b/base/comps/dialog/dialog.comp.toml @@ -1,3 +1,3 @@ [components.dialog] -# Release: 55.%{dialogsubversion}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 55.%{dialogsubversion}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.%\{dialogsubversion\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/dnsmasq/dnsmasq.comp.toml b/base/comps/dnsmasq/dnsmasq.comp.toml index 4256ecd1cb1..69c7bcc2092 100644 --- a/base/comps/dnsmasq/dnsmasq.comp.toml +++ b/base/comps/dnsmasq/dnsmasq.comp.toml @@ -1,3 +1,3 @@ [components.dnsmasq] -# Release: 1%{?extraversion:.%{extraversion}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 1%{?extraversion:.%{extraversion}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?extraversion:\.%\{extraversion\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/dogtag-pki/dogtag-pki.comp.toml b/base/comps/dogtag-pki/dogtag-pki.comp.toml index 5cfa3e638c0..ccbf82ba266 100644 --- a/base/comps/dogtag-pki/dogtag-pki.comp.toml +++ b/base/comps/dogtag-pki/dogtag-pki.comp.toml @@ -1,3 +1,3 @@ [components.dogtag-pki] -# Release: %{release_number}%{?phase:.}%{?phase}%{?timestamp:.}%{?timestamp}%{?commit_id:.}%{?commit_id}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{release_number}%{?phase:.}%{?phase}%{?timestamp:.}%{?timestamp}%{?commit_id:.}%{?commit_id}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "release_number" } } diff --git a/base/comps/elfutils/elfutils.comp.toml b/base/comps/elfutils/elfutils.comp.toml index e53258baea5..c162176124e 100644 --- a/base/comps/elfutils/elfutils.comp.toml +++ b/base/comps/elfutils/elfutils.comp.toml @@ -1,6 +1,6 @@ [components.elfutils] -# Release: %{baserelease}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %[%{baserelease} + %{azl_release}]%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "baserelease" } } [components.elfutils.build.defines] # Azure Linux-only release delta. Keep the imported Fedora baserelease intact. diff --git a/base/comps/fcoe-utils/fcoe-utils.comp.toml b/base/comps/fcoe-utils/fcoe-utils.comp.toml index 1e4c1de3d7f..736f92cc66a 100644 --- a/base/comps/fcoe-utils/fcoe-utils.comp.toml +++ b/base/comps/fcoe-utils/fcoe-utils.comp.toml @@ -1,3 +1,3 @@ [components.fcoe-utils] -# Release: 12.git%{shortcommit0}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 12.git%{shortcommit0}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.git%\{shortcommit0\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/fence-agents/fence-agents.comp.toml b/base/comps/fence-agents/fence-agents.comp.toml index 6b36f9e6f27..b261532b602 100644 --- a/base/comps/fence-agents/fence-agents.comp.toml +++ b/base/comps/fence-agents/fence-agents.comp.toml @@ -1,3 +1,3 @@ [components.fence-agents] -# Release: 1%{?alphatag:.%{alphatag}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 1%{?alphatag:.%{alphatag}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?alphatag:\.%\{alphatag\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/firefox/firefox.comp.toml b/base/comps/firefox/firefox.comp.toml index 15b6a8ed19b..e698279d2df 100644 --- a/base/comps/firefox/firefox.comp.toml +++ b/base/comps/firefox/firefox.comp.toml @@ -4,7 +4,8 @@ # so the AZL release counter is composed with — rather than replacing — # upstream's value. That way the only knob to turn for an AZL-only rebuild # is `azl_release` in build.defines below. -release = { calculation = "manual" } +# Upstream Release: %[1 + %{azl_release}]%{?pre_tag}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^%\[([0-9]+) \+ %\{azl_release\}\]%\{\?pre_tag\}%\{\?dist\}$' } } [components.firefox.build.defines] # AZL-only release counter. Added to upstream's leading Release integer (1 diff --git a/base/comps/foma/foma.comp.toml b/base/comps/foma/foma.comp.toml index 0de9753897c..bf8ac1b2332 100644 --- a/base/comps/foma/foma.comp.toml +++ b/base/comps/foma/foma.comp.toml @@ -1,3 +1,3 @@ [components.foma] -# Release: 0.14.%{snapshotdate}git%{shortcommit0}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.14.%{snapshotdate}git%{shortcommit0}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)\.%\{snapshotdate\}git%\{shortcommit0\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/freeipa/freeipa.comp.toml b/base/comps/freeipa/freeipa.comp.toml index a43220cd60d..eca216523f3 100644 --- a/base/comps/freeipa/freeipa.comp.toml +++ b/base/comps/freeipa/freeipa.comp.toml @@ -1,3 +1,3 @@ [components.freeipa] -# Release: 5%{?rc_version:.%rc_version}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 5%{?rc_version:.%rc_version}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?rc_version:\.%rc_version\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/gcc/gcc.comp.toml b/base/comps/gcc/gcc.comp.toml index 32b7050f6fb..c2daa980c40 100644 --- a/base/comps/gcc/gcc.comp.toml +++ b/base/comps/gcc/gcc.comp.toml @@ -1,3 +1,3 @@ [components.gcc] -# Release: %{gcc_release}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{gcc_release}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "gcc_release" } } diff --git a/base/comps/gd/gd.comp.toml b/base/comps/gd/gd.comp.toml index 17627135933..296de187046 100644 --- a/base/comps/gd/gd.comp.toml +++ b/base/comps/gd/gd.comp.toml @@ -1,6 +1,6 @@ [components.gd] -# Release: 19%{?prever}%{?short}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 20%{?prever}%{?short}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?prever\}%\{\?short\}(?:%\{\??dist\})?$' } } # AZL does not ship libavif — disable avif support. # The avif bcond defaults ON via %bcond_without on Fedora. diff --git a/base/comps/gengetopt/gengetopt.comp.toml b/base/comps/gengetopt/gengetopt.comp.toml index 1efc27f4f3f..be969a31a33 100644 --- a/base/comps/gengetopt/gengetopt.comp.toml +++ b/base/comps/gengetopt/gengetopt.comp.toml @@ -1,3 +1,3 @@ [components.gengetopt] -# Release: 16%{dist} -release = { calculation = "manual" } +# Upstream Release: 16%{dist} +release = { calculation = "static" } diff --git a/base/comps/glibc/glibc.comp.toml b/base/comps/glibc/glibc.comp.toml index 080f8c03f90..4070e8c6d25 100644 --- a/base/comps/glibc/glibc.comp.toml +++ b/base/comps/glibc/glibc.comp.toml @@ -1,6 +1,6 @@ [components.glibc] -# Release: %{baserelease}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{baserelease}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "baserelease" } } [[components.glibc.overlays]] description = "Bump the manual release for the OPEN_TREE header compatibility fix" diff --git a/base/comps/glusterfs/glusterfs.comp.toml b/base/comps/glusterfs/glusterfs.comp.toml index e37649f898a..c502f13a39f 100644 --- a/base/comps/glusterfs/glusterfs.comp.toml +++ b/base/comps/glusterfs/glusterfs.comp.toml @@ -1,3 +1,3 @@ [components.glusterfs] -# Release: 0.@PACKAGE_RELEASE@%{?dist}.26 -release = { calculation = "manual" } +# Upstream Release: 4%{?prereltag:%{prereltag}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?prereltag:%\{prereltag\}\}%\{\?dist\}$' } } diff --git a/base/comps/glyphicons-halflings-fonts/glyphicons-halflings-fonts.comp.toml b/base/comps/glyphicons-halflings-fonts/glyphicons-halflings-fonts.comp.toml index 37be4fba24d..4c5a76b8c2c 100644 --- a/base/comps/glyphicons-halflings-fonts/glyphicons-halflings-fonts.comp.toml +++ b/base/comps/glyphicons-halflings-fonts/glyphicons-halflings-fonts.comp.toml @@ -1,3 +1,3 @@ [components.glyphicons-halflings-fonts] -# Release: 24.%{checkout}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 24.%{checkout}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.%\{checkout\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/gnulib/gnulib.comp.toml b/base/comps/gnulib/gnulib.comp.toml index 2aedd03b90f..53d4ab99e41 100644 --- a/base/comps/gnulib/gnulib.comp.toml +++ b/base/comps/gnulib/gnulib.comp.toml @@ -1,3 +1,3 @@ [components.gnulib] -# Release: 56.%{gitdate}git%{?dist} -release = { calculation = "manual" } +# Upstream Release: 56.%{gitdate}git%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.%\{gitdate\}git(?:%\{\??dist\})?$' } } diff --git a/base/comps/golang-github-macaron-inject/golang-github-macaron-inject.comp.toml b/base/comps/golang-github-macaron-inject/golang-github-macaron-inject.comp.toml index 51957460b87..99478935b1c 100644 --- a/base/comps/golang-github-macaron-inject/golang-github-macaron-inject.comp.toml +++ b/base/comps/golang-github-macaron-inject/golang-github-macaron-inject.comp.toml @@ -1,3 +1,3 @@ [components.golang-github-macaron-inject] -# Release: 0.25%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.25%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)(?:%\{\??dist\})?$' } } diff --git a/base/comps/golang-github-rcrowley-metrics/golang-github-rcrowley-metrics.comp.toml b/base/comps/golang-github-rcrowley-metrics/golang-github-rcrowley-metrics.comp.toml index 5735fed9b95..5a74e6299bc 100644 --- a/base/comps/golang-github-rcrowley-metrics/golang-github-rcrowley-metrics.comp.toml +++ b/base/comps/golang-github-rcrowley-metrics/golang-github-rcrowley-metrics.comp.toml @@ -1,3 +1,3 @@ [components.golang-github-rcrowley-metrics] -# Release: 0.41%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.41%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)(?:%\{\??dist\})?$' } } diff --git a/base/comps/google-roboto-slab-fonts/google-roboto-slab-fonts.comp.toml b/base/comps/google-roboto-slab-fonts/google-roboto-slab-fonts.comp.toml index 8b3cf8725c5..1a91c0bbb9c 100644 --- a/base/comps/google-roboto-slab-fonts/google-roboto-slab-fonts.comp.toml +++ b/base/comps/google-roboto-slab-fonts/google-roboto-slab-fonts.comp.toml @@ -1,3 +1,3 @@ [components.google-roboto-slab-fonts] -# Release: 0.26.20150923git%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.26.20150923git%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)\.20150923git(?:%\{\??dist\})?$' } } diff --git a/base/comps/gts/gts.comp.toml b/base/comps/gts/gts.comp.toml index 5260b3f6758..7b3aa952336 100644 --- a/base/comps/gts/gts.comp.toml +++ b/base/comps/gts/gts.comp.toml @@ -1,3 +1,3 @@ [components.gts] -# Release: 51.20%{snapshot}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 51.20%{snapshot}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.20%\{snapshot\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/gyp/gyp.comp.toml b/base/comps/gyp/gyp.comp.toml index 65b50dacd71..7c067f073d3 100644 --- a/base/comps/gyp/gyp.comp.toml +++ b/base/comps/gyp/gyp.comp.toml @@ -1,3 +1,3 @@ [components.gyp] -# Release: 0.60%{?revision:.%{revision}git}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.60%{?revision:.%{revision}git}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)%\{\?revision:\.%\{revision\}git\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/hunspell-se/hunspell-se.comp.toml b/base/comps/hunspell-se/hunspell-se.comp.toml index 98bab50e7f5..5e8c6039c87 100644 --- a/base/comps/hunspell-se/hunspell-se.comp.toml +++ b/base/comps/hunspell-se/hunspell-se.comp.toml @@ -1,3 +1,3 @@ [components.hunspell-se] -# Release: 0.32.beta7%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.32.beta7%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)\.beta7(?:%\{\??dist\})?$' } } diff --git a/base/comps/hunspell-smj/hunspell-smj.comp.toml b/base/comps/hunspell-smj/hunspell-smj.comp.toml index f44e62f3dcf..9c6b8c7ad53 100644 --- a/base/comps/hunspell-smj/hunspell-smj.comp.toml +++ b/base/comps/hunspell-smj/hunspell-smj.comp.toml @@ -1,3 +1,3 @@ [components.hunspell-smj] -# Release: 0.32.beta7%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.32.beta7%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)\.beta7(?:%\{\??dist\})?$' } } diff --git a/base/comps/ipxe/ipxe.comp.toml b/base/comps/ipxe/ipxe.comp.toml index 247a0f11c49..da2b629ed7d 100644 --- a/base/comps/ipxe/ipxe.comp.toml +++ b/base/comps/ipxe/ipxe.comp.toml @@ -1,3 +1,3 @@ [components.ipxe] -# Release: 4.git%{hash}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 4.git%{hash}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.git%\{hash\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/iscsi-initiator-utils/iscsi-initiator-utils.comp.toml b/base/comps/iscsi-initiator-utils/iscsi-initiator-utils.comp.toml index 70d7141a8fc..810d8e70ea2 100644 --- a/base/comps/iscsi-initiator-utils/iscsi-initiator-utils.comp.toml +++ b/base/comps/iscsi-initiator-utils/iscsi-initiator-utils.comp.toml @@ -1,3 +1,3 @@ [components.iscsi-initiator-utils] -# Release: 0.git%{shortcommit0}%{?dist}.2 -release = { calculation = "manual" } +# Upstream Release: 0.git%{shortcommit0}%{?dist}.2 +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.git%\{shortcommit0\}(?:%\{\??dist\})?\.([0-9]+)$' } } diff --git a/base/comps/isl/isl.comp.toml b/base/comps/isl/isl.comp.toml index 9703d6eb675..7503f117c45 100644 --- a/base/comps/isl/isl.comp.toml +++ b/base/comps/isl/isl.comp.toml @@ -1,3 +1,3 @@ [components.isl] -# Release: 23%{?buildid}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 23%{?buildid}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?buildid\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/java-25-openjdk-portable/java-25-openjdk-portable.comp.toml b/base/comps/java-25-openjdk-portable/java-25-openjdk-portable.comp.toml index 63e7682ca29..2fc6e03c008 100644 --- a/base/comps/java-25-openjdk-portable/java-25-openjdk-portable.comp.toml +++ b/base/comps/java-25-openjdk-portable/java-25-openjdk-portable.comp.toml @@ -8,8 +8,8 @@ # from the last snapshot of the spec at that version. [components.java-25-openjdk-portable] -# Release: %{?eaprefix}%{rpmrelease}%{?extraver}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{?eaprefix}%[%{rpmrelease} + %{azl_release}]%{?extraver}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "rpmrelease" } } spec = { type = "upstream", upstream-distro = { name = "fedora", version = "43" }, upstream-commit = "cad9d5a1ed48cf7e9e12cfadfdacc11f523d46cb" } # Disable slowdebug variant builds; we don't ship -slowdebug subpackages. build.without = ["slowdebug"] diff --git a/base/comps/java-25-openjdk/java-25-openjdk.comp.toml b/base/comps/java-25-openjdk/java-25-openjdk.comp.toml index 9d65c43c3e0..bd0e032f2c5 100644 --- a/base/comps/java-25-openjdk/java-25-openjdk.comp.toml +++ b/base/comps/java-25-openjdk/java-25-openjdk.comp.toml @@ -1,6 +1,6 @@ [components.java-25-openjdk] -# Release: %{?eaprefix}%{rpmrelease}%{?extraver}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{?eaprefix}%[%{rpmrelease} + %{azl_release}]%{?extraver}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "rpmrelease" } } # Current java-25 build requires java-25-openjdk-portable-sources version 25.0.20.0.10. # Fed43 portable rpm delivers 25.0.0.0.32. Fedora43 builds work with Fed42 rpm. To # unblock our build, we pin to the last Fedora 43 commit when version was 25.0.0.0.32. diff --git a/base/comps/jss/jss.comp.toml b/base/comps/jss/jss.comp.toml index 9e5ad9ba1cf..0b2e52596f9 100644 --- a/base/comps/jss/jss.comp.toml +++ b/base/comps/jss/jss.comp.toml @@ -1,6 +1,6 @@ [components.jss] -# Release: %{release_number}%{?phase:.}%{?phase}%{?timestamp:.}%{?timestamp}%{?commit_id:.}%{?commit_id}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{release_number}%{?phase:.}%{?phase}%{?timestamp:.}%{?timestamp}%{?commit_id:.}%{?commit_id}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "release_number" } } # AZL builds NSS 3.120+ which includes PQC auth defs (ML-DSA) in ssl_auth_size. # JSS's SSLCipher.c has a PR_STATIC_ASSERT that auth_alg_defs[] matches ssl_auth_size, diff --git a/base/comps/kabi-dw/kabi-dw.comp.toml b/base/comps/kabi-dw/kabi-dw.comp.toml index 8ca5211ffb0..05dc5983c17 100644 --- a/base/comps/kabi-dw/kabi-dw.comp.toml +++ b/base/comps/kabi-dw/kabi-dw.comp.toml @@ -1,3 +1,3 @@ [components.kabi-dw] -# Release: 0.29%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.29%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)(?:%\{\??dist\})?$' } } diff --git a/base/comps/kata-containers/kata-containers.comp.toml b/base/comps/kata-containers/kata-containers.comp.toml index 9748496903a..776c5eb85b3 100644 --- a/base/comps/kata-containers/kata-containers.comp.toml +++ b/base/comps/kata-containers/kata-containers.comp.toml @@ -1,3 +1,3 @@ [components.kata-containers] -# Release: 1%{?rcrel}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 1%{?rcrel}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?rcrel\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/kdump-anaconda-addon/kdump-anaconda-addon.comp.toml b/base/comps/kdump-anaconda-addon/kdump-anaconda-addon.comp.toml index 92089b52b39..fbad945759a 100644 --- a/base/comps/kdump-anaconda-addon/kdump-anaconda-addon.comp.toml +++ b/base/comps/kdump-anaconda-addon/kdump-anaconda-addon.comp.toml @@ -1,3 +1,3 @@ [components.kdump-anaconda-addon] -# Release: 16.%{snapshotdate}git%{gitshortcommit}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 16.%{snapshotdate}git%{gitshortcommit}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.%\{snapshotdate\}git%\{gitshortcommit\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/kernel-headers/kernel-headers.comp.toml b/base/comps/kernel-headers/kernel-headers.comp.toml index 806d61fdaa5..ede9842dc93 100644 --- a/base/comps/kernel-headers/kernel-headers.comp.toml +++ b/base/comps/kernel-headers/kernel-headers.comp.toml @@ -4,15 +4,16 @@ # use Azure Linux kernel source and generate headers during build. spec = { type = "upstream" } -# Manual release calculation required because the spec uses %{specrelease} macro -# Release: %{specrelease} -release = { calculation = "manual" } +# The spec uses Release: %{specrelease}, which the auto-calculator cannot parse. +# Overlay 0002 defines %azl_pkgrelease in the spec and rewrites specrelease to +# %{kextraversion}.%{azl_pkgrelease}%{?dist}, so the counter targets that spec +# macro: the define in the overlay stays the base value and the rendered counter +# is that base plus the synthetic commit count. +release = { calculation = "static", counter = { source = "spec-macro", directive = "define", name = "azl_pkgrelease" } } # Version updates: Fedora -> Azure Linux 6.18.31.1 # Uses 3-part version (6.18.31) + kextraversion (1) scheme matching kernel. [components.kernel-headers.build.defines] -# RPM release number for the Azure Linux kernel-headers package -azl_pkgrelease = "1" # 4th version component from the AZL kernel source (6.18.31.1). kextraversion = "1" diff --git a/base/comps/kernel-headers/overlays/0002-set-specrelease-kextraversion-pkgrelease.overlay.toml b/base/comps/kernel-headers/overlays/0002-set-specrelease-kextraversion-pkgrelease.overlay.toml index 9161e04dc57..cfbfeffb4fc 100644 --- a/base/comps/kernel-headers/overlays/0002-set-specrelease-kextraversion-pkgrelease.overlay.toml +++ b/base/comps/kernel-headers/overlays/0002-set-specrelease-kextraversion-pkgrelease.overlay.toml @@ -6,6 +6,11 @@ category = "azl-release-management" upstream-status = "inapplicable" +[[overlays]] +type = "spec-prepend-lines" +description = "Define azl_pkgrelease in the spec so it is the release counter azldev bumps; the value here is the base and the rendered value is base plus the synthetic commit count" +lines = ["%define azl_pkgrelease 1", ""] + [[overlays]] type = "spec-search-replace" description = "Set specrelease to kextraversion.azl_pkgrelease.dist so the 4th version component and package release are explicit" diff --git a/base/comps/kernel/kernel.comp.toml b/base/comps/kernel/kernel.comp.toml index ecd6359a4c5..01f64c0cf41 100644 --- a/base/comps/kernel/kernel.comp.toml +++ b/base/comps/kernel/kernel.comp.toml @@ -5,11 +5,12 @@ # kernel.spec directly; AZL-specific changes are marked with "AZL:" comments. spec = { type = "local", path = "kernel.spec" } -# The spec uses %{specrelease} (kextraversion.azl_pkgrelease.dist) which the -# auto-calculator cannot parse. Release is managed manually: bump azl_pkgrelease -# in kernel.spec when rebuilding without a version change. The -# %changelog is hand-curated inline in the spec. -release = { calculation = "manual" } +# The spec uses %{specrelease} (kextraversion.azl_pkgrelease.dist), which the +# auto-calculator cannot parse. The counter is the %azl_pkgrelease define in +# kernel.spec, reached from Release: %{pkg_release} via +# %{pkg_release} -> %{specrelease} -> %{azl_pkgrelease}. The %changelog is +# hand-curated inline in the spec. +release = { calculation = "static", counter = { source = "spec-macro", directive = "define", name = "azl_pkgrelease" } } # --- Downloaded source tarballs (not vendored into the component dir) --- diff --git a/base/comps/keyutils/keyutils.comp.toml b/base/comps/keyutils/keyutils.comp.toml index 7ad57d29418..9089aee3048 100644 --- a/base/comps/keyutils/keyutils.comp.toml +++ b/base/comps/keyutils/keyutils.comp.toml @@ -1,3 +1,3 @@ [components.keyutils] -# Release: 6%{?buildid}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 6%{?buildid}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?buildid\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/krb5/krb5.comp.toml b/base/comps/krb5/krb5.comp.toml index 40c82f3cb76..64c5d279d1d 100644 --- a/base/comps/krb5/krb5.comp.toml +++ b/base/comps/krb5/krb5.comp.toml @@ -1,3 +1,3 @@ [components.krb5] -# Release: %{krb5_release} -release = { calculation = "manual" } +# Upstream Release: %{krb5_release} +release = { calculation = "autorelease" } diff --git a/base/comps/ldapjdk/ldapjdk.comp.toml b/base/comps/ldapjdk/ldapjdk.comp.toml index bcd88d7d549..67bdf2cd389 100644 --- a/base/comps/ldapjdk/ldapjdk.comp.toml +++ b/base/comps/ldapjdk/ldapjdk.comp.toml @@ -1,3 +1,3 @@ [components.ldapjdk] -# Release: %{release_number}%{?phase:.}%{?phase}%{?timestamp:.}%{?timestamp}%{?commit_id:.}%{?commit_id}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{release_number}%{?phase:.}%{?phase}%{?timestamp:.}%{?timestamp}%{?commit_id:.}%{?commit_id}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "release_number" } } diff --git a/base/comps/libX11/libX11.comp.toml b/base/comps/libX11/libX11.comp.toml index 74c82831b99..893a56dc341 100644 --- a/base/comps/libX11/libX11.comp.toml +++ b/base/comps/libX11/libX11.comp.toml @@ -1,3 +1,3 @@ [components.libX11] -# Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?gitdate:\.%\{gitdate\}git%\{gitversion\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/libXcursor/libXcursor.comp.toml b/base/comps/libXcursor/libXcursor.comp.toml index 3753346f108..e8a62a33ce4 100644 --- a/base/comps/libXcursor/libXcursor.comp.toml +++ b/base/comps/libXcursor/libXcursor.comp.toml @@ -1,3 +1,3 @@ [components.libXcursor] -# Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?gitdate:\.%\{gitdate\}git%\{gitversion\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/libXext/libXext.comp.toml b/base/comps/libXext/libXext.comp.toml index 43cf6773848..8db54bb9469 100644 --- a/base/comps/libXext/libXext.comp.toml +++ b/base/comps/libXext/libXext.comp.toml @@ -1,3 +1,3 @@ [components.libXext] -# Release: 4%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 4%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?gitdate:\.%\{gitdate\}git%\{gitversion\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/libXfixes/libXfixes.comp.toml b/base/comps/libXfixes/libXfixes.comp.toml index 615c3a8506f..fee16fc248a 100644 --- a/base/comps/libXfixes/libXfixes.comp.toml +++ b/base/comps/libXfixes/libXfixes.comp.toml @@ -1,3 +1,3 @@ [components.libXfixes] -# Release: 6%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 6%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?gitdate:\.%\{gitdate\}git%\{gitversion\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/libXi/libXi.comp.toml b/base/comps/libXi/libXi.comp.toml index aae6853b829..4c41251776a 100644 --- a/base/comps/libXi/libXi.comp.toml +++ b/base/comps/libXi/libXi.comp.toml @@ -1,3 +1,3 @@ [components.libXi] -# Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?gitdate:\.%\{gitdate\}git%\{gitversion\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/libXinerama/libXinerama.comp.toml b/base/comps/libXinerama/libXinerama.comp.toml index f6e8896e6f0..9c4d42f545b 100644 --- a/base/comps/libXinerama/libXinerama.comp.toml +++ b/base/comps/libXinerama/libXinerama.comp.toml @@ -1,3 +1,3 @@ [components.libXinerama] -# Release: 9%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 9%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?gitdate:\.%\{gitdate\}git%\{gitversion\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/libXrandr/libXrandr.comp.toml b/base/comps/libXrandr/libXrandr.comp.toml index 0c54f842a72..ceec24c6dd1 100644 --- a/base/comps/libXrandr/libXrandr.comp.toml +++ b/base/comps/libXrandr/libXrandr.comp.toml @@ -1,3 +1,3 @@ [components.libXrandr] -# Release: 6%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 6%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?gitdate:\.%\{gitdate\}git%\{gitversion\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/libXrender/libXrender.comp.toml b/base/comps/libXrender/libXrender.comp.toml index c35d29857cf..8e26482cf1d 100644 --- a/base/comps/libXrender/libXrender.comp.toml +++ b/base/comps/libXrender/libXrender.comp.toml @@ -1,3 +1,3 @@ [components.libXrender] -# Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?gitdate:\.%\{gitdate\}git%\{gitversion\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/libXres/libXres.comp.toml b/base/comps/libXres/libXres.comp.toml index 93a3ec018a9..f39a44aba8a 100644 --- a/base/comps/libXres/libXres.comp.toml +++ b/base/comps/libXres/libXres.comp.toml @@ -1,3 +1,3 @@ [components.libXres] -# Release: 6%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 6%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?gitdate:\.%\{gitdate\}git%\{gitversion\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/libXt/libXt.comp.toml b/base/comps/libXt/libXt.comp.toml index 12bf0738438..8cd988bbe59 100644 --- a/base/comps/libXt/libXt.comp.toml +++ b/base/comps/libXt/libXt.comp.toml @@ -1,3 +1,3 @@ [components.libXt] -# Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?gitdate:\.%\{gitdate\}git%\{gitversion\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/libXtst/libXtst.comp.toml b/base/comps/libXtst/libXtst.comp.toml index caecf613ba8..7f405d11c02 100644 --- a/base/comps/libXtst/libXtst.comp.toml +++ b/base/comps/libXtst/libXtst.comp.toml @@ -1,3 +1,3 @@ [components.libXtst] -# Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?gitdate:\.%\{gitdate\}git%\{gitversion\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/libXv/libXv.comp.toml b/base/comps/libXv/libXv.comp.toml index 88a809628cf..d17ff51b0ce 100644 --- a/base/comps/libXv/libXv.comp.toml +++ b/base/comps/libXv/libXv.comp.toml @@ -1,3 +1,3 @@ [components.libXv] -# Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?gitdate:\.%\{gitdate\}git%\{gitversion\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/libXxf86dga/libXxf86dga.comp.toml b/base/comps/libXxf86dga/libXxf86dga.comp.toml index 7aaff7ce9a7..be99498b34f 100644 --- a/base/comps/libXxf86dga/libXxf86dga.comp.toml +++ b/base/comps/libXxf86dga/libXxf86dga.comp.toml @@ -1,3 +1,3 @@ [components.libXxf86dga] -# Release: 6%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 6%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?gitdate:\.%\{gitdate\}git%\{gitversion\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/libXxf86vm/libXxf86vm.comp.toml b/base/comps/libXxf86vm/libXxf86vm.comp.toml index e3c33c68042..15a8d42d519 100644 --- a/base/comps/libXxf86vm/libXxf86vm.comp.toml +++ b/base/comps/libXxf86vm/libXxf86vm.comp.toml @@ -1,3 +1,3 @@ [components.libXxf86vm] -# Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?gitdate:\.%\{gitdate\}git%\{gitversion\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/libcaca/libcaca.comp.toml b/base/comps/libcaca/libcaca.comp.toml index 54c6be08292..405b00210f1 100644 --- a/base/comps/libcaca/libcaca.comp.toml +++ b/base/comps/libcaca/libcaca.comp.toml @@ -1,3 +1,3 @@ [components.libcaca] -# Release: 0.80.%{beta}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.80.%{beta}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)\.%\{beta\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/libedit/libedit.comp.toml b/base/comps/libedit/libedit.comp.toml index d9f84c7f804..ac4f081f76e 100644 --- a/base/comps/libedit/libedit.comp.toml +++ b/base/comps/libedit/libedit.comp.toml @@ -1,3 +1,3 @@ [components.libedit] -# Release: 57.%{snap}cvs%{?dist} -release = { calculation = "manual" } +# Upstream Release: 57.%{snap}cvs%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.%\{snap\}cvs(?:%\{\??dist\})?$' } } diff --git a/base/comps/libgpiod/libgpiod.comp.toml b/base/comps/libgpiod/libgpiod.comp.toml index c881523452a..f18042099f5 100644 --- a/base/comps/libgpiod/libgpiod.comp.toml +++ b/base/comps/libgpiod/libgpiod.comp.toml @@ -1,3 +1,3 @@ [components.libgpiod] -# Release: 1%{?candidate:.%{candidate}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 1%{?candidate:.%{candidate}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?candidate:\.%\{candidate\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/libi2cd/libi2cd.comp.toml b/base/comps/libi2cd/libi2cd.comp.toml index a7687519d47..1af65dfffd9 100644 --- a/base/comps/libi2cd/libi2cd.comp.toml +++ b/base/comps/libi2cd/libi2cd.comp.toml @@ -1,3 +1,3 @@ [components.libi2cd] -# Release: 9%{?candidate:.%{candidate}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 9%{?candidate:.%{candidate}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?candidate:\.%\{candidate\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/libinput/libinput.comp.toml b/base/comps/libinput/libinput.comp.toml index 40454f47834..4fd69fd3b77 100644 --- a/base/comps/libinput/libinput.comp.toml +++ b/base/comps/libinput/libinput.comp.toml @@ -1,3 +1,3 @@ [components.libinput] -# Release: 1%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 1%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?gitdate:\.%\{gitdate\}git%\{gitversion\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/libldm/libldm.comp.toml b/base/comps/libldm/libldm.comp.toml index b79794edfac..114c30e3aef 100644 --- a/base/comps/libldm/libldm.comp.toml +++ b/base/comps/libldm/libldm.comp.toml @@ -1,3 +1,3 @@ [components.libldm] -# Release: 2%{?dist}%{?extra_release} -release = { calculation = "manual" } +# Upstream Release: 2%{?dist}%{?extra_release} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)(?:%\{\??dist\})?%\{\?extra_release\}$' } } diff --git a/base/comps/libmspack/libmspack.comp.toml b/base/comps/libmspack/libmspack.comp.toml index 48612e48dec..013c3f4b152 100644 --- a/base/comps/libmspack/libmspack.comp.toml +++ b/base/comps/libmspack/libmspack.comp.toml @@ -1,3 +1,3 @@ [components.libmspack] -# Release: 0.15.alpha%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.15.alpha%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)\.alpha(?:%\{\??dist\})?$' } } diff --git a/base/comps/libnsl2/libnsl2.comp.toml b/base/comps/libnsl2/libnsl2.comp.toml index 2a38f8bc82d..2316e7142d3 100644 --- a/base/comps/libnsl2/libnsl2.comp.toml +++ b/base/comps/libnsl2/libnsl2.comp.toml @@ -1,3 +1,3 @@ [components.libnsl2] -# Release: 4%{?relsuffix}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 4%{?relsuffix}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?relsuffix\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/libntirpc/libntirpc.comp.toml b/base/comps/libntirpc/libntirpc.comp.toml index 76f80717153..d6d01cfeb6c 100644 --- a/base/comps/libntirpc/libntirpc.comp.toml +++ b/base/comps/libntirpc/libntirpc.comp.toml @@ -1,3 +1,3 @@ [components.libntirpc] -# Release: 1%{?dev:%{dev}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 1%{?dev:%{dev}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?dev:%\{dev\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/libreplaygain/libreplaygain.comp.toml b/base/comps/libreplaygain/libreplaygain.comp.toml index abb1283167f..1549a192cbf 100644 --- a/base/comps/libreplaygain/libreplaygain.comp.toml +++ b/base/comps/libreplaygain/libreplaygain.comp.toml @@ -1,3 +1,3 @@ [components.libreplaygain] -# Release: 0.29.20110810svn%{svn_release}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.29.20110810svn%{svn_release}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)\.20110810svn%\{svn_release\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/libspf2/libspf2.comp.toml b/base/comps/libspf2/libspf2.comp.toml index 29344eb9d9c..bb3b6fbcb9f 100644 --- a/base/comps/libspf2/libspf2.comp.toml +++ b/base/comps/libspf2/libspf2.comp.toml @@ -1,3 +1,3 @@ [components.libspf2] -# Release: 19.20210922git%{git}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 19.20210922git%{git}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.20210922git%\{git\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/libxkbcommon/libxkbcommon.comp.toml b/base/comps/libxkbcommon/libxkbcommon.comp.toml index 9335a17c2a3..87b6636b698 100644 --- a/base/comps/libxkbcommon/libxkbcommon.comp.toml +++ b/base/comps/libxkbcommon/libxkbcommon.comp.toml @@ -1,3 +1,3 @@ [components.libxkbcommon] -# Release: 1%{?gitdate:.%{gitdate}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 1%{?gitdate:.%{gitdate}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?gitdate:\.%\{gitdate\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/linenoise/linenoise.comp.toml b/base/comps/linenoise/linenoise.comp.toml index 28b656a5e62..8198bb4d882 100644 --- a/base/comps/linenoise/linenoise.comp.toml +++ b/base/comps/linenoise/linenoise.comp.toml @@ -1,3 +1,3 @@ [components.linenoise] -# Release: 13.20200312git%{shortcommit}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 13.20200312git%{shortcommit}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.20200312git%\{shortcommit\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/lirc/lirc.comp.toml b/base/comps/lirc/lirc.comp.toml index 556aa63fd9c..1fbc5074fb1 100644 --- a/base/comps/lirc/lirc.comp.toml +++ b/base/comps/lirc/lirc.comp.toml @@ -1,3 +1,3 @@ [components.lirc] -# Release: 4%{?tag:.}%{?tag}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 4%{?tag:.}%{?tag}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?tag:\.\}%\{\?tag\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/lldpad/lldpad.comp.toml b/base/comps/lldpad/lldpad.comp.toml index dd8d52d6b72..9c6ae0f00ca 100644 --- a/base/comps/lldpad/lldpad.comp.toml +++ b/base/comps/lldpad/lldpad.comp.toml @@ -1,3 +1,3 @@ [components.lldpad] -# Release: 14.git%{checkout}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 14.git%{checkout}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.git%\{checkout\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/man2html/man2html.comp.toml b/base/comps/man2html/man2html.comp.toml index a66f8b398e3..1ba0d7d7a74 100644 --- a/base/comps/man2html/man2html.comp.toml +++ b/base/comps/man2html/man2html.comp.toml @@ -1,3 +1,3 @@ [components.man2html] -# Release: 40.%{posttag}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 40.%{posttag}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.%\{posttag\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/mariadb-connector-c/mariadb-connector-c.comp.toml b/base/comps/mariadb-connector-c/mariadb-connector-c.comp.toml index 6bbda7fb57d..7d5a5c25697 100644 --- a/base/comps/mariadb-connector-c/mariadb-connector-c.comp.toml +++ b/base/comps/mariadb-connector-c/mariadb-connector-c.comp.toml @@ -1,3 +1,3 @@ [components.mariadb-connector-c] -# Release: 3%{?with_debug:.debug}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 3%{?with_debug:.debug}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?with_debug:\.debug\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/mariadb-connector-odbc/mariadb-connector-odbc.comp.toml b/base/comps/mariadb-connector-odbc/mariadb-connector-odbc.comp.toml index 2f6c9a7ab36..bf64858443b 100644 --- a/base/comps/mariadb-connector-odbc/mariadb-connector-odbc.comp.toml +++ b/base/comps/mariadb-connector-odbc/mariadb-connector-odbc.comp.toml @@ -1,3 +1,3 @@ [components.mariadb-connector-odbc] -# Release: 2%{?with_debug:.debug}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 2%{?with_debug:.debug}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?with_debug:\.debug\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/mariadb10.11/mariadb10.11.comp.toml b/base/comps/mariadb10.11/mariadb10.11.comp.toml index 4c4c0fc871b..0d63d764c69 100644 --- a/base/comps/mariadb10.11/mariadb10.11.comp.toml +++ b/base/comps/mariadb10.11/mariadb10.11.comp.toml @@ -1,3 +1,3 @@ [components.'mariadb10.11'] -# Release: 2%{?with_debug:.debug}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 2%{?with_debug:.debug}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?with_debug:\.debug\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/matchbox-window-manager/matchbox-window-manager.comp.toml b/base/comps/matchbox-window-manager/matchbox-window-manager.comp.toml index 10cb3ce399a..f2cc72cd1aa 100644 --- a/base/comps/matchbox-window-manager/matchbox-window-manager.comp.toml +++ b/base/comps/matchbox-window-manager/matchbox-window-manager.comp.toml @@ -1,3 +1,3 @@ [components.matchbox-window-manager] -# Release: 39.%{alphatag}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 39.%{alphatag}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.%\{alphatag\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/mecab/mecab.comp.toml b/base/comps/mecab/mecab.comp.toml index e406cb76183..7008617742e 100644 --- a/base/comps/mecab/mecab.comp.toml +++ b/base/comps/mecab/mecab.comp.toml @@ -1,3 +1,3 @@ [components.mecab] -# Release: 0.%{baserelease}.%{betaver}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{baserelease}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "define", name = "baserelease" } } diff --git a/base/comps/memkind/memkind.comp.toml b/base/comps/memkind/memkind.comp.toml index 9d9ed6f1aca..a51a329eb01 100644 --- a/base/comps/memkind/memkind.comp.toml +++ b/base/comps/memkind/memkind.comp.toml @@ -1,3 +1,3 @@ [components.memkind] -# Release: 11%{?checkout}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 11%{?checkout}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?checkout\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/microcode_ctl/microcode_ctl.comp.toml b/base/comps/microcode_ctl/microcode_ctl.comp.toml index 316bff3a30e..70d35d5b129 100644 --- a/base/comps/microcode_ctl/microcode_ctl.comp.toml +++ b/base/comps/microcode_ctl/microcode_ctl.comp.toml @@ -1,3 +1,3 @@ [components.microcode_ctl] -# Release: 71.1%{?dist} -release = { calculation = "manual" } +# Upstream Release: 71.1%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^71\.([0-9]+)(?:%\{\??dist\})?$' } } diff --git a/base/comps/mod_proxy_cluster/mod_proxy_cluster.comp.toml b/base/comps/mod_proxy_cluster/mod_proxy_cluster.comp.toml index a18da61fad4..e9d02945b80 100644 --- a/base/comps/mod_proxy_cluster/mod_proxy_cluster.comp.toml +++ b/base/comps/mod_proxy_cluster/mod_proxy_cluster.comp.toml @@ -1,3 +1,3 @@ [components.mod_proxy_cluster] -# Release: %{serial}%{?dist}.1 -release = { calculation = "manual" } +# Upstream Release: %{serial}%{?dist}.1 +release = { calculation = "static", counter = { source = "release-tag", regex = '^%\{serial\}(?:%\{\??dist\})?\.([0-9]+)$' } } diff --git a/base/comps/mtdev/mtdev.comp.toml b/base/comps/mtdev/mtdev.comp.toml index 852d4f63309..2067fced17c 100644 --- a/base/comps/mtdev/mtdev.comp.toml +++ b/base/comps/mtdev/mtdev.comp.toml @@ -1,3 +1,3 @@ [components.mtdev] -# Release: 11%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 11%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?gitdate:\.%\{gitdate\}git%\{gitversion\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/mysql8.4/mysql8.4.comp.toml b/base/comps/mysql8.4/mysql8.4.comp.toml index dd2c75596dd..ad00a30131d 100644 --- a/base/comps/mysql8.4/mysql8.4.comp.toml +++ b/base/comps/mysql8.4/mysql8.4.comp.toml @@ -1,3 +1,3 @@ [components.'mysql8.4'] -# Release: 1%{?with_debug:.debug}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 1%{?with_debug:.debug}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?with_debug:\.debug\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/ncurses/ncurses.comp.toml b/base/comps/ncurses/ncurses.comp.toml index 2e43d6eba9c..c2d159f3e0f 100644 --- a/base/comps/ncurses/ncurses.comp.toml +++ b/base/comps/ncurses/ncurses.comp.toml @@ -1,3 +1,3 @@ [components.ncurses] -# Release: 7.%{revision}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 7.%{revision}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.%\{revision\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/net-tools/net-tools.comp.toml b/base/comps/net-tools/net-tools.comp.toml index 4103bde15cd..bbc44e14157 100644 --- a/base/comps/net-tools/net-tools.comp.toml +++ b/base/comps/net-tools/net-tools.comp.toml @@ -1,3 +1,3 @@ [components.net-tools] -# Release: 0.74.%{checkout}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.74.%{checkout}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)\.%\{checkout\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/netcdf4-python/netcdf4-python.comp.toml b/base/comps/netcdf4-python/netcdf4-python.comp.toml index 9f615e9b01b..67a61de8b13 100644 --- a/base/comps/netcdf4-python/netcdf4-python.comp.toml +++ b/base/comps/netcdf4-python/netcdf4-python.comp.toml @@ -1,3 +1,3 @@ [components.netcdf4-python] -# Release: 7%{?dist}.1 -release = { calculation = "manual" } +# Upstream Release: 7%{?dist}.1 +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)(?:%\{\??dist\})?\.1$' } } diff --git a/base/comps/nfs-ganesha/nfs-ganesha.comp.toml b/base/comps/nfs-ganesha/nfs-ganesha.comp.toml index efab3800079..14c81350537 100644 --- a/base/comps/nfs-ganesha/nfs-ganesha.comp.toml +++ b/base/comps/nfs-ganesha/nfs-ganesha.comp.toml @@ -1,3 +1,3 @@ [components.nfs-ganesha] -# Release: 2%{?dev:%{dev}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 2%{?dev:%{dev}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?dev:%\{dev\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/nodejs22/nodejs22.comp.toml b/base/comps/nodejs22/nodejs22.comp.toml index 21c6b170dd0..b2afc05b7b6 100644 --- a/base/comps/nodejs22/nodejs22.comp.toml +++ b/base/comps/nodejs22/nodejs22.comp.toml @@ -1,3 +1,3 @@ [components.nodejs22] -# Release: %{nodejs_release} -release = { calculation = "manual" } +# Upstream Release: %{nodejs_release} +release = { calculation = "autorelease" } diff --git a/base/comps/nodejs24/nodejs24.comp.toml b/base/comps/nodejs24/nodejs24.comp.toml index 24746e3339a..ecb30daf62f 100644 --- a/base/comps/nodejs24/nodejs24.comp.toml +++ b/base/comps/nodejs24/nodejs24.comp.toml @@ -1,3 +1,3 @@ [components.nodejs24] -# Release: %{node_release} -release = { calculation = "manual" } +# Upstream Release: %{node_release} +release = { calculation = "autorelease" } diff --git a/base/comps/nss/nss.comp.toml b/base/comps/nss/nss.comp.toml index 19214c8e3a1..edea50d9fbf 100644 --- a/base/comps/nss/nss.comp.toml +++ b/base/comps/nss/nss.comp.toml @@ -1,6 +1,6 @@ [components.nss] -# Release: %{nss_release}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{nss_release}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "baserelease" } } # Pin to 3.123.1 (commit a2e1a543) — required by 389-ds-base / 389-ds-base-libs # 3.1.4 built in the Fedora 43 snapshot, which have a runtime dependency on # nss >= 3.123.1. Additive minor bump from 3.121.0 across 3.122.x -> 3.123.1; diff --git a/base/comps/numad/numad.comp.toml b/base/comps/numad/numad.comp.toml index 1c4ba33cdd1..3161b6d2ad7 100644 --- a/base/comps/numad/numad.comp.toml +++ b/base/comps/numad/numad.comp.toml @@ -1,3 +1,3 @@ [components.numad] -# Release: 47.20150602git%{?dist} -release = { calculation = "manual" } +# Upstream Release: 47.20150602git%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.20150602git(?:%\{\??dist\})?$' } } diff --git a/base/comps/oniguruma/oniguruma.comp.toml b/base/comps/oniguruma/oniguruma.comp.toml index 27072ce485b..88fb047136d 100644 --- a/base/comps/oniguruma/oniguruma.comp.toml +++ b/base/comps/oniguruma/oniguruma.comp.toml @@ -1,3 +1,3 @@ [components.oniguruma] -# Release: %{?prerelease:0.}%{baserelease}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{?prerelease:0.}%{baserelease}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "baserelease" } } diff --git a/base/comps/openbios/openbios.comp.toml b/base/comps/openbios/openbios.comp.toml index 35b75a2bfe3..e7d37fd2702 100644 --- a/base/comps/openbios/openbios.comp.toml +++ b/base/comps/openbios/openbios.comp.toml @@ -2,8 +2,8 @@ # riscv64 hosts: # https://github.com/openbios/openbios/commit/e5ac46dd24e6216c36aa80462af25457e7029440 [components.openbios] -# Release: %[1 + %{azl_release}].git%{hash}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %[1 + %{azl_release}].git%{hash}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^%\[([0-9]+) \+ %\{azl_release\}\]\.git%\{hash\}%\{\?dist\}$' } } [components.openbios.build.defines] # AZL-only release counter. Add this to upstream's Release value (1) so future diff --git a/base/comps/osbs-client/osbs-client.comp.toml b/base/comps/osbs-client/osbs-client.comp.toml index 1e1590b0646..e5d1b665a86 100644 --- a/base/comps/osbs-client/osbs-client.comp.toml +++ b/base/comps/osbs-client/osbs-client.comp.toml @@ -1,3 +1,45 @@ [components.osbs-client] # Release: %{release}.%{postrelease}.git.%{shortcommit}%{?dist} +# +# Intentionally the only component left on `manual`. Its Release is not +# reducible to a single deterministic counter without diverging from upstream: +# +# %global dev_release 0 +# %if 0%{?dev_release} +# %global postrelease dev +# %global release 23 <- definition 1 +# %else +# %global postrelease 0 +# %global release 6 <- definition 2 +# %endif +# %if "x%{postrelease}" != "x0" +# Release: %{release}.%{postrelease}.git.%{shortcommit}%{?dist} +# %else +# Release: %{release}%{?dist} +# %endif +# +# Neither Release value contains a literal digit, so `source = "release-tag"` +# has nothing to capture; and `%{release}` has two physical definitions, so +# `source = "spec-macro"` (which requires exactly one, to keep the bump +# provably reachable from the rendered Release tag) refuses. +# +# Rejected alternatives: +# - Overlay collapsing the `%if 0%{?dev_release}` branch to a single +# `%global release 6`. Smallest overlay, but it deletes upstream's +# dev-release toggle and so changes build semantics for the dev_release=1 +# configuration. +# - Overlay rewriting both branches to derive from one bare integer via +# `%{expr:}`. Semantics-preserving, but obscure and a permanent structural +# divergence on an otherwise overlay-free component. +# - Extending the `spec-macro` counter to bump N bare-integer definitions. +# A scan of every rendered spec found exactly one other spec whose Release +# chain reaches a multi-definition integer macro (cpuinfo), and that one is +# already served by a trailing-literal `release-tag` regex. The extension +# would generalize to zero additional components. +# +# Consequence: `azldev component update --bump` reports this component as +# skipped (it requires --allow-manual), and it is excluded from +# `component check --release-counters` / `--rebuild-readiness`. A mass rebuild +# that must ship a new osbs-client EVR has to bump `%global release` by hand +# via an overlay at that time. release = { calculation = "manual" } diff --git a/base/comps/pacemaker/pacemaker.comp.toml b/base/comps/pacemaker/pacemaker.comp.toml index 8b9a3b296c4..eb7ff12a52e 100644 --- a/base/comps/pacemaker/pacemaker.comp.toml +++ b/base/comps/pacemaker/pacemaker.comp.toml @@ -1,3 +1,3 @@ [components.pacemaker] -# Release: %{pcmk_release}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{pcmk_release}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "baserelease" } } diff --git a/base/comps/paktype-naskh-basic-fonts/paktype-naskh-basic-fonts.comp.toml b/base/comps/paktype-naskh-basic-fonts/paktype-naskh-basic-fonts.comp.toml index aefe750937c..e9ae6213825 100644 --- a/base/comps/paktype-naskh-basic-fonts/paktype-naskh-basic-fonts.comp.toml +++ b/base/comps/paktype-naskh-basic-fonts/paktype-naskh-basic-fonts.comp.toml @@ -1,3 +1,3 @@ [components.paktype-naskh-basic-fonts] -# Release: 3.%{release_date}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 3.%{release_date}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.%\{release_date\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/pcre/pcre.comp.toml b/base/comps/pcre/pcre.comp.toml index 49828c68fa5..a74b6540f44 100644 --- a/base/comps/pcre/pcre.comp.toml +++ b/base/comps/pcre/pcre.comp.toml @@ -1,3 +1,3 @@ [components.pcre] -# Release: %{?rcversion:0.}1%{?rcversion:.%rcversion}%{?dist}.9 -release = { calculation = "manual" } +# Upstream Release: %{?rcversion:0.}1%{?rcversion:.%rcversion}%{?dist}.9 +release = { calculation = "static", counter = { source = "release-tag", regex = '^%\{\?rcversion:0\.\}([0-9]+)%\{\?rcversion:\.%rcversion\}(?:%\{\??dist\})?\.9$' } } diff --git a/base/comps/pcre2/pcre2.comp.toml b/base/comps/pcre2/pcre2.comp.toml index 390f699272c..9f6e26a3ab2 100644 --- a/base/comps/pcre2/pcre2.comp.toml +++ b/base/comps/pcre2/pcre2.comp.toml @@ -1,3 +1,3 @@ [components.pcre2] -# Release: %{?rcversion:0.}1%{?rcversion:.%rcversion}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{?rcversion:0.}1%{?rcversion:.%rcversion}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^%\{\?rcversion:0\.\}([0-9]+)%\{\?rcversion:\.%rcversion\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/pcsc-lite-asekey/pcsc-lite-asekey.comp.toml b/base/comps/pcsc-lite-asekey/pcsc-lite-asekey.comp.toml index 8981c1cc849..8d1174126b2 100644 --- a/base/comps/pcsc-lite-asekey/pcsc-lite-asekey.comp.toml +++ b/base/comps/pcsc-lite-asekey/pcsc-lite-asekey.comp.toml @@ -1,3 +1,3 @@ [components.pcsc-lite-asekey] -# Release: 27%{dist} -release = { calculation = "manual" } +# Upstream Release: 27%{dist} +release = { calculation = "static" } diff --git a/base/comps/perl-Object-Pad/perl-Object-Pad.comp.toml b/base/comps/perl-Object-Pad/perl-Object-Pad.comp.toml index 6962f629301..57f708b299b 100644 --- a/base/comps/perl-Object-Pad/perl-Object-Pad.comp.toml +++ b/base/comps/perl-Object-Pad/perl-Object-Pad.comp.toml @@ -1,3 +1,3 @@ [components.perl-Object-Pad] -# Release: 1%{dist} -release = { calculation = "manual" } +# Upstream Release: 1%{dist} +release = { calculation = "static" } diff --git a/base/comps/perl-XML-Dumper/perl-XML-Dumper.comp.toml b/base/comps/perl-XML-Dumper/perl-XML-Dumper.comp.toml index 8ce99440a6c..4ea25971295 100644 --- a/base/comps/perl-XML-Dumper/perl-XML-Dumper.comp.toml +++ b/base/comps/perl-XML-Dumper/perl-XML-Dumper.comp.toml @@ -1,3 +1,3 @@ [components.perl-XML-Dumper] -# Release: 52%{dist} -release = { calculation = "manual" } +# Upstream Release: 52%{dist} +release = { calculation = "static" } diff --git a/base/comps/php-phpdocumentor-reflection-common2/php-phpdocumentor-reflection-common2.comp.toml b/base/comps/php-phpdocumentor-reflection-common2/php-phpdocumentor-reflection-common2.comp.toml index 250ecb6d4bf..38be33ededa 100644 --- a/base/comps/php-phpdocumentor-reflection-common2/php-phpdocumentor-reflection-common2.comp.toml +++ b/base/comps/php-phpdocumentor-reflection-common2/php-phpdocumentor-reflection-common2.comp.toml @@ -1,3 +1,3 @@ [components.php-phpdocumentor-reflection-common2] -# Release: 15%{?github_release}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 15%{?github_release}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?github_release\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/php-phpdocumentor-type-resolver1/php-phpdocumentor-type-resolver1.comp.toml b/base/comps/php-phpdocumentor-type-resolver1/php-phpdocumentor-type-resolver1.comp.toml index ebea58697ac..e5f3d112049 100644 --- a/base/comps/php-phpdocumentor-type-resolver1/php-phpdocumentor-type-resolver1.comp.toml +++ b/base/comps/php-phpdocumentor-type-resolver1/php-phpdocumentor-type-resolver1.comp.toml @@ -1,3 +1,3 @@ [components.php-phpdocumentor-type-resolver1] -# Release: 1%{?github_release}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 1%{?github_release}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?github_release\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/php-webmozart-assert2/php-webmozart-assert2.comp.toml b/base/comps/php-webmozart-assert2/php-webmozart-assert2.comp.toml index 34fea1230e9..3e5d4819860 100644 --- a/base/comps/php-webmozart-assert2/php-webmozart-assert2.comp.toml +++ b/base/comps/php-webmozart-assert2/php-webmozart-assert2.comp.toml @@ -1,3 +1,3 @@ [components.php-webmozart-assert2] -# Release: 1%{?github_release}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 1%{?github_release}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?github_release\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/pipewire/pipewire.comp.toml b/base/comps/pipewire/pipewire.comp.toml index 743f732979d..0a7c801b259 100644 --- a/base/comps/pipewire/pipewire.comp.toml +++ b/base/comps/pipewire/pipewire.comp.toml @@ -1,6 +1,6 @@ [components.pipewire] -# Release: %[%{baserelease} + %{azl_release}]%{?snapdate:.%{snapdate}git%{shortcommit}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %[%{baserelease} + %{azl_release}]%{?snapdate:.%{snapdate}git%{shortcommit}}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "baserelease" } } build.without = ["v4l2", "roc"] [components.pipewire.build.defines] diff --git a/base/comps/plexus-i18n/plexus-i18n.comp.toml b/base/comps/plexus-i18n/plexus-i18n.comp.toml index 6bdf774aa56..41f66e4b147 100644 --- a/base/comps/plexus-i18n/plexus-i18n.comp.toml +++ b/base/comps/plexus-i18n/plexus-i18n.comp.toml @@ -1,3 +1,3 @@ [components.plexus-i18n] -# Release: 0.36.b10.4%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.36.b10.4%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)\.b10\.4(?:%\{\??dist\})?$' } } diff --git a/base/comps/postgresql18-decoderbufs/postgresql18-decoderbufs.comp.toml b/base/comps/postgresql18-decoderbufs/postgresql18-decoderbufs.comp.toml index 3b11cf79a11..e654add95d8 100644 --- a/base/comps/postgresql18-decoderbufs/postgresql18-decoderbufs.comp.toml +++ b/base/comps/postgresql18-decoderbufs/postgresql18-decoderbufs.comp.toml @@ -1,3 +1,3 @@ [components.postgresql18-decoderbufs] -# Release: 2%{?pre:.%pre}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 2%{?pre:.%pre}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?pre:\.%pre\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/procps-ng/procps-ng.comp.toml b/base/comps/procps-ng/procps-ng.comp.toml index 6ec372dfe69..0056e5a56aa 100644 --- a/base/comps/procps-ng/procps-ng.comp.toml +++ b/base/comps/procps-ng/procps-ng.comp.toml @@ -1,3 +1,3 @@ [components.procps-ng] -# Release: 7%{?dist}.1 -release = { calculation = "manual" } +# Upstream Release: 7%{?dist}.1 +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)(?:%\{\??dist\})?\.1$' } } diff --git a/base/comps/pulseaudio/pulseaudio.comp.toml b/base/comps/pulseaudio/pulseaudio.comp.toml index f87e3817e88..3027dab7592 100644 --- a/base/comps/pulseaudio/pulseaudio.comp.toml +++ b/base/comps/pulseaudio/pulseaudio.comp.toml @@ -1,6 +1,6 @@ [components.pulseaudio] -# Release: %[9 + %{azl_release}]%{?snap:.%{snap}git%{shortcommit}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %[9 + %{azl_release}]%{?snap:.%{snap}git%{shortcommit}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^%\[([0-9]+) \+ %\{azl_release\}\]%\{\?snap:\.%\{snap\}git%\{shortcommit\}\}%\{\?dist\}$' } } [components.pulseaudio.build.defines] # AZL-only release counter. Added to upstream's hardcoded Release number (9) diff --git a/base/comps/python-blivet/python-blivet.comp.toml b/base/comps/python-blivet/python-blivet.comp.toml index 6159572a59c..dd9f78d2f2e 100644 --- a/base/comps/python-blivet/python-blivet.comp.toml +++ b/base/comps/python-blivet/python-blivet.comp.toml @@ -1,6 +1,6 @@ [components.python-blivet] -# Release: 10%{?prerelease}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 10%{?prerelease}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?prerelease\}(?:%\{\??dist\})?$' } } [[components.python-blivet.overlays]] description = "Bump release for CPE 2.3 parser backport" diff --git a/base/comps/python-d2to1/python-d2to1.comp.toml b/base/comps/python-d2to1/python-d2to1.comp.toml index fb915bfc793..a289f96ea52 100644 --- a/base/comps/python-d2to1/python-d2to1.comp.toml +++ b/base/comps/python-d2to1/python-d2to1.comp.toml @@ -1,3 +1,3 @@ [components.python-d2to1] -# Release: 40.post1%{?dist} -release = { calculation = "manual" } +# Upstream Release: 40.post1%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.post1(?:%\{\??dist\})?$' } } diff --git a/base/comps/python-qt5/python-qt5.comp.toml b/base/comps/python-qt5/python-qt5.comp.toml index 2c605f91cf3..d44912b8f68 100644 --- a/base/comps/python-qt5/python-qt5.comp.toml +++ b/base/comps/python-qt5/python-qt5.comp.toml @@ -1,3 +1,3 @@ [components.python-qt5] -# Release: 0.1%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.1%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)(?:%\{\??dist\})?$' } } diff --git a/base/comps/python-recommonmark/python-recommonmark.comp.toml b/base/comps/python-recommonmark/python-recommonmark.comp.toml index ff7cb5065be..f97025b0428 100644 --- a/base/comps/python-recommonmark/python-recommonmark.comp.toml +++ b/base/comps/python-recommonmark/python-recommonmark.comp.toml @@ -1,3 +1,3 @@ [components.python-recommonmark] -# Release: 16.git%{?dist} -release = { calculation = "manual" } +# Upstream Release: 16.git%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.git(?:%\{\??dist\})?$' } } diff --git a/base/comps/python-sphinx-basic-ng/python-sphinx-basic-ng.comp.toml b/base/comps/python-sphinx-basic-ng/python-sphinx-basic-ng.comp.toml index 345310485db..cb0a3bea40a 100644 --- a/base/comps/python-sphinx-basic-ng/python-sphinx-basic-ng.comp.toml +++ b/base/comps/python-sphinx-basic-ng/python-sphinx-basic-ng.comp.toml @@ -1,3 +1,3 @@ [components.python-sphinx-basic-ng] -# Release: 0.17.%{prerel}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.17.%{prerel}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)\.%\{prerel\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/python-sphinx-theme-builder/python-sphinx-theme-builder.comp.toml b/base/comps/python-sphinx-theme-builder/python-sphinx-theme-builder.comp.toml index 402e59de02c..3f8ca7f67df 100644 --- a/base/comps/python-sphinx-theme-builder/python-sphinx-theme-builder.comp.toml +++ b/base/comps/python-sphinx-theme-builder/python-sphinx-theme-builder.comp.toml @@ -1,3 +1,3 @@ [components.python-sphinx-theme-builder] -# Release: 0.25.%{prerel}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.25.%{prerel}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)\.%\{prerel\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/qt-mobility/qt-mobility.comp.toml b/base/comps/qt-mobility/qt-mobility.comp.toml index 03f4cd130b3..5baf2f9e7fb 100644 --- a/base/comps/qt-mobility/qt-mobility.comp.toml +++ b/base/comps/qt-mobility/qt-mobility.comp.toml @@ -1,3 +1,3 @@ [components.qt-mobility] -# Release: 0.50.%{snap}git%{git_short}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.50.%{snap}git%{git_short}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)\.%\{snap\}git%\{git_short\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/qt5-qtwebkit/qt5-qtwebkit.comp.toml b/base/comps/qt5-qtwebkit/qt5-qtwebkit.comp.toml index 9c0c29e3305..50e7cce76b0 100644 --- a/base/comps/qt5-qtwebkit/qt5-qtwebkit.comp.toml +++ b/base/comps/qt5-qtwebkit/qt5-qtwebkit.comp.toml @@ -1,6 +1,6 @@ [components.qt5-qtwebkit] -# Release: 0.96%{?prerel}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.96%{?prerel}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)%\{\?prerel\}(?:%\{\??dist\})?$' } } [[components.qt5-qtwebkit.overlays]] description = "Bump release for the GStreamer MPEG-TS dependency fix" diff --git a/base/comps/resource-agents/resource-agents.comp.toml b/base/comps/resource-agents/resource-agents.comp.toml index 0988861a0bc..d6cd4605b5e 100644 --- a/base/comps/resource-agents/resource-agents.comp.toml +++ b/base/comps/resource-agents/resource-agents.comp.toml @@ -1,3 +1,3 @@ [components.resource-agents] -# Release: 1%{?rcver:%{rcver}}%{?numcomm:.%{numcomm}}%{?alphatag:.%{alphatag}}%{?dirty:.%{dirty}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 1%{?rcver:%{rcver}}%{?numcomm:.%{numcomm}}%{?alphatag:.%{alphatag}}%{?dirty:.%{dirty}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?rcver:%\{rcver\}\}%\{\?numcomm:\.%\{numcomm\}\}%\{\?alphatag:\.%\{alphatag\}\}%\{\?dirty:\.%\{dirty\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/rocm-compilersupport/rocm-compilersupport.comp.toml b/base/comps/rocm-compilersupport/rocm-compilersupport.comp.toml index b54c02af729..7b67bb17ae9 100644 --- a/base/comps/rocm-compilersupport/rocm-compilersupport.comp.toml +++ b/base/comps/rocm-compilersupport/rocm-compilersupport.comp.toml @@ -5,7 +5,8 @@ # value before the counter was introduced; %{azl_release} then adds the # number of AZL-only rebuilds on top of that, ensuring Release stays # monotonic across the switchover. -release = { calculation = "manual" } +# Upstream Release: %[15 + %{azl_release}].rocm%{rocm_version}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^%\[([0-9]+) \+ %\{azl_release\}\]\.rocm%\{rocm_version\}%\{\?dist\}$' } } [components.rocm-compilersupport.build.defines] # AZL-only release counter. Composed with the "15." base via the overlay diff --git a/base/comps/rpm/rpm.comp.toml b/base/comps/rpm/rpm.comp.toml index caa0074c4a8..33d65e60c8c 100644 --- a/base/comps/rpm/rpm.comp.toml +++ b/base/comps/rpm/rpm.comp.toml @@ -1,6 +1,6 @@ [components.rpm] -# Release: %{?snapver:0.%{snapver}.}%{baserelease}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{?snapver:0.%{snapver}.}%{baserelease}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "baserelease" } } # Update vendor macro. [[components.rpm.overlays]] diff --git a/base/comps/rsync/rsync.comp.toml b/base/comps/rsync/rsync.comp.toml index 391bf31f591..d1fbfbb2525 100644 --- a/base/comps/rsync/rsync.comp.toml +++ b/base/comps/rsync/rsync.comp.toml @@ -1,3 +1,3 @@ [components.rsync] -# Release: 5%{?prerelease}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 5%{?prerelease}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?prerelease\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/rubygem-nokogiri/rubygem-nokogiri.comp.toml b/base/comps/rubygem-nokogiri/rubygem-nokogiri.comp.toml index 01e7fbe9f00..11832d52da5 100644 --- a/base/comps/rubygem-nokogiri/rubygem-nokogiri.comp.toml +++ b/base/comps/rubygem-nokogiri/rubygem-nokogiri.comp.toml @@ -1,3 +1,3 @@ [components.rubygem-nokogiri] -# Release: %{?prever:0.}%{baserelease}%{?prever:.%{prerpmver}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{?prever:0.}%{baserelease}%{?prever:.%{prerpmver}}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "baserelease" } } diff --git a/base/comps/rubygem-rake/rubygem-rake.comp.toml b/base/comps/rubygem-rake/rubygem-rake.comp.toml index 9164bdd4de1..73713a0c5a0 100644 --- a/base/comps/rubygem-rake/rubygem-rake.comp.toml +++ b/base/comps/rubygem-rake/rubygem-rake.comp.toml @@ -1,6 +1,6 @@ [components.rubygem-rake] -# Release: %{?preminorver:0.}%{baserelease}%{?preminorver:%{rpmminorver}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{?preminorver:0.}%[%{baserelease} + %{azl_release}]%{?preminorver:%{rpmminorver}}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "baserelease" } } [components.rubygem-rake.build.defines] # AZL-only release counter added to upstream's %{baserelease}. Bump for an AZL diff --git a/base/comps/rubygem-rspec-core/rubygem-rspec-core.comp.toml b/base/comps/rubygem-rspec-core/rubygem-rspec-core.comp.toml index 2c6605de5f3..9ce16235835 100644 --- a/base/comps/rubygem-rspec-core/rubygem-rspec-core.comp.toml +++ b/base/comps/rubygem-rspec-core/rubygem-rspec-core.comp.toml @@ -1,3 +1,3 @@ [components.rubygem-rspec-core] -# Release: %{?preminorver:0.}%{baserelease}%{?preminorver:%{rpmminorver}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{?preminorver:0.}%{baserelease}%{?preminorver:%{rpmminorver}}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "baserelease" } } diff --git a/base/comps/rubygem-rspec-expectations/rubygem-rspec-expectations.comp.toml b/base/comps/rubygem-rspec-expectations/rubygem-rspec-expectations.comp.toml index 7669c9bdbfe..23b4bb991a8 100644 --- a/base/comps/rubygem-rspec-expectations/rubygem-rspec-expectations.comp.toml +++ b/base/comps/rubygem-rspec-expectations/rubygem-rspec-expectations.comp.toml @@ -1,3 +1,3 @@ [components.rubygem-rspec-expectations] -# Release: %{?preminorver:0.}%{baserelease}%{?preminorver:%{rpmminorver}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{?preminorver:0.}%{baserelease}%{?preminorver:%{rpmminorver}}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "baserelease" } } diff --git a/base/comps/rubygem-rspec-mocks/rubygem-rspec-mocks.comp.toml b/base/comps/rubygem-rspec-mocks/rubygem-rspec-mocks.comp.toml index 329a8b3a763..820d6859cc9 100644 --- a/base/comps/rubygem-rspec-mocks/rubygem-rspec-mocks.comp.toml +++ b/base/comps/rubygem-rspec-mocks/rubygem-rspec-mocks.comp.toml @@ -1,3 +1,3 @@ [components.rubygem-rspec-mocks] -# Release: %{?preminorver:0.}%{baserelease}%{?preminorver:%{rpmminorver}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{?preminorver:0.}%{baserelease}%{?preminorver:%{rpmminorver}}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "baserelease" } } diff --git a/base/comps/rubygem-rspec-support/rubygem-rspec-support.comp.toml b/base/comps/rubygem-rspec-support/rubygem-rspec-support.comp.toml index 1e69c078c89..fac2a88064f 100644 --- a/base/comps/rubygem-rspec-support/rubygem-rspec-support.comp.toml +++ b/base/comps/rubygem-rspec-support/rubygem-rspec-support.comp.toml @@ -1,3 +1,3 @@ [components.rubygem-rspec-support] -# Release: %{?prever:0.}%{baserelease}%{?prever:.%{prerpmver}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{?prever:0.}%{baserelease}%{?prever:.%{prerpmver}}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "baserelease" } } diff --git a/base/comps/sbd/sbd.comp.toml b/base/comps/sbd/sbd.comp.toml index 17024971da9..5a6a8f97f16 100644 --- a/base/comps/sbd/sbd.comp.toml +++ b/base/comps/sbd/sbd.comp.toml @@ -1,3 +1,3 @@ [components.sbd] -# Release: %{baserelease}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{baserelease}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "baserelease" } } diff --git a/base/comps/scl-utils/scl-utils.comp.toml b/base/comps/scl-utils/scl-utils.comp.toml index 16ec368b3ea..9abe3d5826c 100644 --- a/base/comps/scl-utils/scl-utils.comp.toml +++ b/base/comps/scl-utils/scl-utils.comp.toml @@ -1,3 +1,3 @@ [components.scl-utils] -# Release: 6%{dist} -release = { calculation = "manual" } +# Upstream Release: 6%{dist} +release = { calculation = "static" } diff --git a/base/comps/softhsm/softhsm.comp.toml b/base/comps/softhsm/softhsm.comp.toml index a71fcbff993..1d0b4de33a2 100644 --- a/base/comps/softhsm/softhsm.comp.toml +++ b/base/comps/softhsm/softhsm.comp.toml @@ -1,3 +1,3 @@ [components.softhsm] -# Release: %{?prever:0.}13%{?prever:.%{prever}}%{?dist}.1 -release = { calculation = "manual" } +# Upstream Release: %{?prever:0.}13%{?prever:.%{prever}}%{?dist}.1 +release = { calculation = "static", counter = { source = "release-tag", regex = '^%\{\?prever:0\.\}([0-9]+)%\{\?prever:\.%\{prever\}\}(?:%\{\??dist\})?\.1$' } } diff --git a/base/comps/spandsp/spandsp.comp.toml b/base/comps/spandsp/spandsp.comp.toml index f8ec74bc8d1..d1443a12e97 100644 --- a/base/comps/spandsp/spandsp.comp.toml +++ b/base/comps/spandsp/spandsp.comp.toml @@ -1,3 +1,3 @@ [components.spandsp] -# Release: 21%{?pre:.pre%{pre}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 21%{?pre:.pre%{pre}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?pre:\.pre%\{pre\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/squashfs-tools/squashfs-tools.comp.toml b/base/comps/squashfs-tools/squashfs-tools.comp.toml index 7b37d326e86..306a91df12d 100644 --- a/base/comps/squashfs-tools/squashfs-tools.comp.toml +++ b/base/comps/squashfs-tools/squashfs-tools.comp.toml @@ -1,3 +1,3 @@ [components.squashfs-tools] -# Release: 7%{dist} -release = { calculation = "manual" } +# Upstream Release: 7%{dist} +release = { calculation = "static" } diff --git a/base/comps/syslinux/syslinux.comp.toml b/base/comps/syslinux/syslinux.comp.toml index 2ecc80d8095..7d420351b3a 100644 --- a/base/comps/syslinux/syslinux.comp.toml +++ b/base/comps/syslinux/syslinux.comp.toml @@ -1,3 +1,3 @@ [components.syslinux] -# Release: 0.34%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.34%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)(?:%\{\??dist\})?$' } } diff --git a/base/comps/systemtap/systemtap.comp.toml b/base/comps/systemtap/systemtap.comp.toml index 0a4fc7ec816..389c0455ac9 100644 --- a/base/comps/systemtap/systemtap.comp.toml +++ b/base/comps/systemtap/systemtap.comp.toml @@ -2,5 +2,5 @@ # Pin past the default snapshot to correct a previously selected # non-first-parent commit on the f43 branch. spec = { type = "upstream", upstream-commit = "d06e77cc8d15d8f0fc861c82cde5af7f7a12beb1" } -# Release: 1%{?release_override}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 1%{?release_override}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?release_override\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/tesseract-tessdata/tesseract-tessdata.comp.toml b/base/comps/tesseract-tessdata/tesseract-tessdata.comp.toml index c762eaebafb..534de611f70 100644 --- a/base/comps/tesseract-tessdata/tesseract-tessdata.comp.toml +++ b/base/comps/tesseract-tessdata/tesseract-tessdata.comp.toml @@ -1,3 +1,3 @@ [components.tesseract-tessdata] -# Release: 11%{?pre:.%pre}%{?commit:.git%{shortcommit}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 11%{?pre:.%pre}%{?commit:.git%{shortcommit}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?pre:\.%pre\}%\{\?commit:\.git%\{shortcommit\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/tpm2-openssl/tpm2-openssl.comp.toml b/base/comps/tpm2-openssl/tpm2-openssl.comp.toml index a1c943ca4ff..7670878dcf2 100644 --- a/base/comps/tpm2-openssl/tpm2-openssl.comp.toml +++ b/base/comps/tpm2-openssl/tpm2-openssl.comp.toml @@ -1,3 +1,3 @@ [components.tpm2-openssl] -# Release: 7%{?candidate:.%{candidate}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 7%{?candidate:.%{candidate}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?candidate:\.%\{candidate\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/tpm2-pkcs11/tpm2-pkcs11.comp.toml b/base/comps/tpm2-pkcs11/tpm2-pkcs11.comp.toml index b3ad4606ed5..a470727cc83 100644 --- a/base/comps/tpm2-pkcs11/tpm2-pkcs11.comp.toml +++ b/base/comps/tpm2-pkcs11/tpm2-pkcs11.comp.toml @@ -1,3 +1,3 @@ [components.tpm2-pkcs11] -# Release: 6%{?candidate:.%{candidate}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 6%{?candidate:.%{candidate}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?candidate:\.%\{candidate\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/tpm2-tools/tpm2-tools.comp.toml b/base/comps/tpm2-tools/tpm2-tools.comp.toml index c637c584efc..933716a6759 100644 --- a/base/comps/tpm2-tools/tpm2-tools.comp.toml +++ b/base/comps/tpm2-tools/tpm2-tools.comp.toml @@ -1,3 +1,3 @@ [components.tpm2-tools] -# Release: 4%{?candidate:.%{candidate}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 4%{?candidate:.%{candidate}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?candidate:\.%\{candidate\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/tpm2-tss/tpm2-tss.comp.toml b/base/comps/tpm2-tss/tpm2-tss.comp.toml index 9adaf8e65f3..87590dbf0e9 100644 --- a/base/comps/tpm2-tss/tpm2-tss.comp.toml +++ b/base/comps/tpm2-tss/tpm2-tss.comp.toml @@ -1,3 +1,3 @@ [components.tpm2-tss] -# Release: 8%{?candidate:.%{candidate}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 8%{?candidate:.%{candidate}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?candidate:\.%\{candidate\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/tuned/tuned.comp.toml b/base/comps/tuned/tuned.comp.toml index de990f27fdb..2034eef2be2 100644 --- a/base/comps/tuned/tuned.comp.toml +++ b/base/comps/tuned/tuned.comp.toml @@ -1,3 +1,3 @@ [components.tuned] -# Release: 1%{?prerel1}%{?git_suffix:.%{git_suffix}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 1%{?prerel1}%{?git_suffix:.%{git_suffix}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?prerel1\}%\{\?git_suffix:\.%\{git_suffix\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/ubdsrv/ubdsrv.comp.toml b/base/comps/ubdsrv/ubdsrv.comp.toml index 6888d964929..5d041a13b2e 100644 --- a/base/comps/ubdsrv/ubdsrv.comp.toml +++ b/base/comps/ubdsrv/ubdsrv.comp.toml @@ -1,3 +1,3 @@ [components.ubdsrv] -# Release: 1.rc1%{?dist}.5 -release = { calculation = "manual" } +# Upstream Release: 1.rc1%{?dist}.5 +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.rc1(?:%\{\??dist\})?\.5$' } } diff --git a/base/comps/uboot-tools/uboot-tools.comp.toml b/base/comps/uboot-tools/uboot-tools.comp.toml index f0a164bd645..6b24d2ac5ba 100644 --- a/base/comps/uboot-tools/uboot-tools.comp.toml +++ b/base/comps/uboot-tools/uboot-tools.comp.toml @@ -1,6 +1,6 @@ [components.uboot-tools] -# Release: 1%{?candidate:.%{candidate}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 1%{?candidate:.%{candidate}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?candidate:\.%\{candidate\}\}(?:%\{\??dist\})?$' } } [components.uboot-tools.build] # Disable the "toolsonly" bcond to skip building firmware images for ARM dev diff --git a/base/comps/urlview/urlview.comp.toml b/base/comps/urlview/urlview.comp.toml index ca3da190e23..0e97e6f86a4 100644 --- a/base/comps/urlview/urlview.comp.toml +++ b/base/comps/urlview/urlview.comp.toml @@ -1,3 +1,3 @@ [components.urlview] -# Release: 40.%{gitdate}git%{gitrev}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 40.%{gitdate}git%{gitrev}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.%\{gitdate\}git%\{gitrev\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/w3m/w3m.comp.toml b/base/comps/w3m/w3m.comp.toml index 027826623b2..d3c3a34b0df 100644 --- a/base/comps/w3m/w3m.comp.toml +++ b/base/comps/w3m/w3m.comp.toml @@ -1,3 +1,3 @@ [components.w3m] -# Release: 66.git%{gitdate}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 66.git%{gitdate}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.git%\{gitdate\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/xclip/xclip.comp.toml b/base/comps/xclip/xclip.comp.toml index 54272fe1d9c..63204521738 100644 --- a/base/comps/xclip/xclip.comp.toml +++ b/base/comps/xclip/xclip.comp.toml @@ -1,3 +1,3 @@ [components.xclip] -# Release: 25.git%{shortcommit}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 25.git%{shortcommit}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)\.git%\{shortcommit\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/xhtml1-dtds/xhtml1-dtds.comp.toml b/base/comps/xhtml1-dtds/xhtml1-dtds.comp.toml index f290d81c73a..6ffe6dd9932 100644 --- a/base/comps/xhtml1-dtds/xhtml1-dtds.comp.toml +++ b/base/comps/xhtml1-dtds/xhtml1-dtds.comp.toml @@ -1,3 +1,3 @@ [components.xhtml1-dtds] -# Release: %{date}.%{baserelease}%{?dist} -release = { calculation = "manual" } +# Upstream Release: %{date}.%{baserelease}%{?dist} +release = { calculation = "static", counter = { source = "spec-macro", directive = "global", name = "baserelease" } } diff --git a/base/comps/xkeyboard-config/xkeyboard-config.comp.toml b/base/comps/xkeyboard-config/xkeyboard-config.comp.toml index b8c6f82369b..d977a644c91 100644 --- a/base/comps/xkeyboard-config/xkeyboard-config.comp.toml +++ b/base/comps/xkeyboard-config/xkeyboard-config.comp.toml @@ -1,3 +1,3 @@ [components.xkeyboard-config] -# Release: 1%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 1%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?gitdate:\.%\{gitdate\}git%\{gitversion\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/xmlsec1/xmlsec1.comp.toml b/base/comps/xmlsec1/xmlsec1.comp.toml index f96af20e6d7..82e7b695e5f 100644 --- a/base/comps/xmlsec1/xmlsec1.comp.toml +++ b/base/comps/xmlsec1/xmlsec1.comp.toml @@ -1,3 +1,3 @@ [components.xmlsec1] -# Release: 3%{?dist}%{?extra_release} -release = { calculation = "manual" } +# Upstream Release: 3%{?dist}%{?extra_release} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)(?:%\{\??dist\})?%\{\?extra_release\}$' } } diff --git a/base/comps/xorg-x11-drv-evdev/xorg-x11-drv-evdev.comp.toml b/base/comps/xorg-x11-drv-evdev/xorg-x11-drv-evdev.comp.toml index cedf8b555df..85a22c68293 100644 --- a/base/comps/xorg-x11-drv-evdev/xorg-x11-drv-evdev.comp.toml +++ b/base/comps/xorg-x11-drv-evdev/xorg-x11-drv-evdev.comp.toml @@ -1,3 +1,3 @@ [components.xorg-x11-drv-evdev] -# Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?gitdate:\.%\{gitdate\}git%\{gitversion\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/xorg-x11-drv-libinput/xorg-x11-drv-libinput.comp.toml b/base/comps/xorg-x11-drv-libinput/xorg-x11-drv-libinput.comp.toml index 89748e9fec4..3faac1c6041 100644 --- a/base/comps/xorg-x11-drv-libinput/xorg-x11-drv-libinput.comp.toml +++ b/base/comps/xorg-x11-drv-libinput/xorg-x11-drv-libinput.comp.toml @@ -1,3 +1,3 @@ [components.xorg-x11-drv-libinput] -# Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?gitdate:\.%\{gitdate\}git%\{gitversion\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/xorg-x11-drv-wacom/xorg-x11-drv-wacom.comp.toml b/base/comps/xorg-x11-drv-wacom/xorg-x11-drv-wacom.comp.toml index eeef3be703d..43d48a04de5 100644 --- a/base/comps/xorg-x11-drv-wacom/xorg-x11-drv-wacom.comp.toml +++ b/base/comps/xorg-x11-drv-wacom/xorg-x11-drv-wacom.comp.toml @@ -1,3 +1,3 @@ [components.xorg-x11-drv-wacom] -# Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?gitdate:\.%\{gitdate\}git%\{gitversion\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/xorg-x11-server-Xwayland/xorg-x11-server-Xwayland.comp.toml b/base/comps/xorg-x11-server-Xwayland/xorg-x11-server-Xwayland.comp.toml index d03643f4fa8..ee35bf60127 100644 --- a/base/comps/xorg-x11-server-Xwayland/xorg-x11-server-Xwayland.comp.toml +++ b/base/comps/xorg-x11-server-Xwayland/xorg-x11-server-Xwayland.comp.toml @@ -1,3 +1,3 @@ [components.xorg-x11-server-Xwayland] -# Release: 2%{?gitdate:.%{gitdate}git%{shortcommit}}%{?dist} -release = { calculation = "manual" } +# Upstream Release: 2%{?gitdate:.%{gitdate}git%{shortcommit}}%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^([0-9]+)%\{\?gitdate:\.%\{gitdate\}git%\{shortcommit\}\}(?:%\{\??dist\})?$' } } diff --git a/base/comps/zaf/zaf.comp.toml b/base/comps/zaf/zaf.comp.toml index f283bdf24ef..d130ad99c11 100644 --- a/base/comps/zaf/zaf.comp.toml +++ b/base/comps/zaf/zaf.comp.toml @@ -1,3 +1,3 @@ [components.zaf] -# Release: 0.32.%{upstreamid}svn%{?dist} -release = { calculation = "manual" } +# Upstream Release: 0.32.%{upstreamid}svn%{?dist} +release = { calculation = "static", counter = { source = "release-tag", regex = '^0\.([0-9]+)\.%\{upstreamid\}svn(?:%\{\??dist\})?$' } } diff --git a/external/schemas/azldev.schema.json b/external/schemas/azldev.schema.json index 0cfae46ffc2..665383df46e 100644 --- a/external/schemas/azldev.schema.json +++ b/external/schemas/azldev.schema.json @@ -53,6 +53,11 @@ "title": "Undefined macros", "description": "Macro names to undefine when passing to the builder." }, + "emit-upstream-provenance": { + "type": "boolean", + "title": "Emit upstream provenance macros", + "description": "Inject %fedora_upstream_version/release macros derived from the pristine upstream Fedora spec (Fedora upstream components only)." + }, "check": { "$ref": "#/$defs/CheckConfig", "title": "Check configuration", @@ -592,6 +597,26 @@ "additionalProperties": false, "type": "object" }, + "GitSourceConfig": { + "properties": { + "git-url": { + "type": "string", + "title": "Git URL", + "description": "URL of the git repository" + }, + "ref": { + "type": "string", + "title": "Ref", + "description": "Commit SHA to check out (full hex hash)" + } + }, + "additionalProperties": false, + "type": "object", + "required": [ + "git-url", + "ref" + ] + }, "ImageCapabilities": { "properties": { "machine-bootable": { @@ -709,13 +734,61 @@ "additionalProperties": false, "type": "object" }, + "LisaConfig": { + "properties": { + "framework": { + "$ref": "#/$defs/GitSourceConfig", + "title": "Framework", + "description": "Git source for the LISA framework" + }, + "test-cases": { + "items": { + "type": "string" + }, + "type": "array", + "title": "Test cases", + "description": "LISA test case names to run; combined into a generated runbook's criteria" + }, + "pip-pre-install": { + "items": { + "type": "string" + }, + "type": "array", + "title": "Pip pre-install", + "description": "Pip packages to install before the framework (for overriding version pins)" + }, + "pip-extras": { + "items": { + "type": "string" + }, + "type": "array", + "title": "Pip extras", + "description": "Pip extras to install from the LISA framework package" + }, + "extra-args": { + "items": { + "type": "string" + }, + "type": "array", + "title": "Extra arguments", + "description": "Additional arguments passed to LISA. Supports {image-path} {image-name} {capabilities} placeholders." + } + }, + "additionalProperties": false, + "type": "object", + "required": [ + "framework", + "test-cases" + ] + }, "Origin": { "properties": { "type": { "type": "string", "enum": [ "download", - "custom" + "custom", + "overlay" ], "title": "Origin type", "description": "Type of origin for this source file" @@ -989,11 +1062,53 @@ "title": "Release calculation", "description": "Controls how the Release tag is managed during rendering. Empty or omitted means auto.", "default": "auto" + }, + "counter": { + "$ref": "#/$defs/ReleaseCounter", + "title": "Release counter", + "description": "Physical location of the release counter to increment. Replaces an inherited counter atomically and is cleared by manual or autorelease calculation." } }, "additionalProperties": false, "type": "object" }, + "ReleaseCounter": { + "properties": { + "source": { + "type": "string", + "enum": [ + "release-tag", + "spec-macro" + ], + "title": "Counter source", + "description": "Physical location of the release counter" + }, + "regex": { + "type": "string", + "title": "Release tag regex", + "description": "Full-value regular expression with exactly one capturing group. Its rendered match must be a decimal integer. Required when source is release-tag" + }, + "directive": { + "type": "string", + "enum": [ + "global", + "define" + ], + "title": "Macro directive", + "description": "Macro directive that defines the counter. Required when source is spec-macro" + }, + "name": { + "type": "string", + "title": "Macro name", + "description": "Name of the bare-integer macro counter. Required when source is spec-macro" + } + }, + "additionalProperties": false, + "type": "object", + "required": [ + "source" + ] + }, "ResourcesConfig": { "properties": { "rpm-repos": { @@ -1332,6 +1447,11 @@ "$ref": "#/$defs/PytestConfig", "title": "Pytest config", "description": "Pytest-specific configuration (required when type is pytest)" + }, + "lisa": { + "$ref": "#/$defs/LisaConfig", + "title": "LISA config", + "description": "LISA-specific configuration used to generate and run a LISA runbook (optional)" } }, "additionalProperties": false, diff --git a/locks/SLOF.lock b/locks/SLOF.lock index f6cfe6e4238..3c5fee1dcb4 100644 --- a/locks/SLOF.lock +++ b/locks/SLOF.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '1f6da4385968492dfa505b3b5331042ee932345f' upstream-commit = '1f6da4385968492dfa505b3b5331042ee932345f' -input-fingerprint = 'sha256:93da2cdc8038eaca4126f34716dae8ad4454f48a9458b399f6d878bc158c8f89' +input-fingerprint = 'sha256:441848d6e037d3ecf2fa9ed924bf46d39f05c65794342f6f85ccedd71a4e9e0b' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/aalib.lock b/locks/aalib.lock index 22d00c07937..577fc63c1ff 100644 --- a/locks/aalib.lock +++ b/locks/aalib.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '6f05cc2232d5b3b744ffc562cae91934d2860465' upstream-commit = '6f05cc2232d5b3b744ffc562cae91934d2860465' -input-fingerprint = 'sha256:6f997d5dc05636f001d5dcd7c7ebf2a153d23d8fc4cd56797ae23a26e0e6acba' +input-fingerprint = 'sha256:9d7ccd7821bfc2754dcf79f7bac55a36dbf2b54740a840984ae9cc42c6a7b751' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/alsa-lib.lock b/locks/alsa-lib.lock index 0b4339924c3..5a53ef89ac8 100644 --- a/locks/alsa-lib.lock +++ b/locks/alsa-lib.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'cf3a92ad79abbabec310ea0603e31f07407671e9' upstream-commit = 'cf3a92ad79abbabec310ea0603e31f07407671e9' -input-fingerprint = 'sha256:970867b1995c16fca7dfaa7210e65bbb139ab5302a432bbf3292b133108f3398' +input-fingerprint = 'sha256:276bb5f96d8695cfc6398468a4abbc4b20d385f811dce99dc52f65ddfb23a682' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/ansible-packaging.lock b/locks/ansible-packaging.lock index 63119792cc3..966fdcc650b 100644 --- a/locks/ansible-packaging.lock +++ b/locks/ansible-packaging.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'dcb226da0bf4fb7b79dcdc74b4d8d1089aafc01f' upstream-commit = 'dcb226da0bf4fb7b79dcdc74b4d8d1089aafc01f' -input-fingerprint = 'sha256:7cde12a88310d603f3f4bb159baeaa04e488599406af7eed80a03484200cfbd3' +input-fingerprint = 'sha256:29d0098252d025bcd64b9ab73b4661464556d87a1fdf494defcdbdf5509428f7' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/ant-contrib.lock b/locks/ant-contrib.lock index 6b0c2049c27..cd1bf70e11b 100644 --- a/locks/ant-contrib.lock +++ b/locks/ant-contrib.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'ae2a29e7d84036d4d0af6df7667a9209226ba0b7' upstream-commit = 'ae2a29e7d84036d4d0af6df7667a9209226ba0b7' -input-fingerprint = 'sha256:62fb53dd16ef503cb75ee5cdb104a93c878aba045362209e90460c3112407ab9' +input-fingerprint = 'sha256:fc305bbcb8aa47b24028bb9abafabe937a5ddc15b61b46cef1f00f39a05d29ee' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/antlr3.lock b/locks/antlr3.lock index 75da1da3494..3ff2e83a066 100644 --- a/locks/antlr3.lock +++ b/locks/antlr3.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'c69bb68aeb0209613d0e9ede94f1e9e895e916bc' upstream-commit = 'c69bb68aeb0209613d0e9ede94f1e9e895e916bc' -input-fingerprint = 'sha256:502ce134ec2a6e29b741fe351fa306c4a52019e7c3d3a2f1bb74db8ab0161734' +input-fingerprint = 'sha256:703ee83bdf3ce86c3c93350c5b2699c3fdf75827e8c6a16b2f667f3a12d74328' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/arpack.lock b/locks/arpack.lock index 2ffff8a3d7c..67548e4084f 100644 --- a/locks/arpack.lock +++ b/locks/arpack.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '3d07e9210f63856f8ffed5113dfa46befc2a3aad' upstream-commit = '3d07e9210f63856f8ffed5113dfa46befc2a3aad' -input-fingerprint = 'sha256:e67c92b601a1fdca6255f1f52352a960126f3768934b33776a56ab254e42de2e' +input-fingerprint = 'sha256:770ec444b14ab7a88a8e0627d778e5790a319252781dfb0b72e48624141bc196' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/augeas.lock b/locks/augeas.lock index af3049d1c73..a9c480e0c64 100644 --- a/locks/augeas.lock +++ b/locks/augeas.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '4a848504d16993a9eb86da169eff6f89773ad682' upstream-commit = '4a848504d16993a9eb86da169eff6f89773ad682' -input-fingerprint = 'sha256:ec9c9cb6b739ef4bf1778528552c915214fde3aee890fc350245f193c6544006' +input-fingerprint = 'sha256:00555e88c477cb01b2c275d12b5fc2c65bd78665e0526f92b7210c631fac2742' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/automoc.lock b/locks/automoc.lock index b21ff1696da..a2e7135d55f 100644 --- a/locks/automoc.lock +++ b/locks/automoc.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'f3f00a78fbbb893cb150d3e6cb24d9119578780d' upstream-commit = 'f3f00a78fbbb893cb150d3e6cb24d9119578780d' -input-fingerprint = 'sha256:43569b9ea1ab822d937b51afc97e4dc00f2426380a03d00992343de039668639' +input-fingerprint = 'sha256:7cdcf04f694516c5ff32b8bf9652748086d556bb405b8c111cb57e22c4160ee2' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/azurelinux-release.lock b/locks/azurelinux-release.lock index 5b2c9dee04d..9bf8bd570ee 100644 --- a/locks/azurelinux-release.lock +++ b/locks/azurelinux-release.lock @@ -1,3 +1,3 @@ # Managed by azldev component update. Do not edit manually. version = 1 -input-fingerprint = 'sha256:b3c0486c855a4d81ee902b70d2e1422f9f8961a9a8a619ce2abaa5daaf74203f' +input-fingerprint = 'sha256:f8a5577402c000ff2a6027f1733bfc0b380ded5a7518bdb2f05dc511e039b1ee' diff --git a/locks/ca-certificates.lock b/locks/ca-certificates.lock index 318df085f8f..895868eef98 100644 --- a/locks/ca-certificates.lock +++ b/locks/ca-certificates.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '33db9507d1276e6f6fb47a6c64523b4afb5f50f5' upstream-commit = '33db9507d1276e6f6fb47a6c64523b4afb5f50f5' -input-fingerprint = 'sha256:dc03e0d1305468d432548f2e82368e1eeb6801b108359e5fa2e09b62e05df2d2' +input-fingerprint = 'sha256:67fa9aaa713ea7136a86eb04f2f098d4c08208d2727af28b0453eb1c77bfa48a' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/cachefilesd.lock b/locks/cachefilesd.lock index 2465c2d5d5a..b0edb2c031f 100644 --- a/locks/cachefilesd.lock +++ b/locks/cachefilesd.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'd3e99b989008b8ae917d886667415b003cbb79ec' upstream-commit = 'd3e99b989008b8ae917d886667415b003cbb79ec' -input-fingerprint = 'sha256:1f4689bead4708f8d6777828d1394bf5535529fdb2491c55b99960c871917422' +input-fingerprint = 'sha256:cf8a54c0a2209ce4b6f09a0cdb8a83ef66953f9b45ce9f2e91a2b03a93d7775a' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/chkrootkit.lock b/locks/chkrootkit.lock index 20e8a79a047..f07de4ca60d 100644 --- a/locks/chkrootkit.lock +++ b/locks/chkrootkit.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'e970b82013217e081d704bec24fb62919196853b' upstream-commit = 'e970b82013217e081d704bec24fb62919196853b' -input-fingerprint = 'sha256:58b1656d356038a0618f491270673cd564767f71ce34b5b784e35eb71b199494' +input-fingerprint = 'sha256:b7115d9db47a37d1a64625eff930c0e7dfdee7da7efcfa65e48126517e5bd7e7' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/civetweb.lock b/locks/civetweb.lock index 0cf61e7e1b5..4dc403f2718 100644 --- a/locks/civetweb.lock +++ b/locks/civetweb.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '497f5917f10e3d23f72832f7521c9267ce28ce83' upstream-commit = '497f5917f10e3d23f72832f7521c9267ce28ce83' -input-fingerprint = 'sha256:8f97b9cd5703b52fce47aa0115b1f50dcd32ec149bba0bf183fe8c909926166b' +input-fingerprint = 'sha256:8f2ca2bf6fec0c00557a484cda18a082bed964f5f9e05f033b9fb5853eee18d0' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/cmake.lock b/locks/cmake.lock index 2918cbbc6ad..88ed57ac4ad 100644 --- a/locks/cmake.lock +++ b/locks/cmake.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'aaa289ec8e04448b1b35e24f7b5d9edf0fad135a' upstream-commit = 'aaa289ec8e04448b1b35e24f7b5d9edf0fad135a' -input-fingerprint = 'sha256:79fb250411521ae3583c9a9235c65a836e9089a950f6d4923218a864aceda5a9' +input-fingerprint = 'sha256:3e5bea60eee302539d5ce8e9e411ab869ff1a99a1919cd85cbb884507578ce81' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/cpuinfo.lock b/locks/cpuinfo.lock index 6da709435eb..1bdaaff21a9 100644 --- a/locks/cpuinfo.lock +++ b/locks/cpuinfo.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'e021a6721d8fbded97f4b5a659c6bb66db2ebcf7' upstream-commit = 'e021a6721d8fbded97f4b5a659c6bb66db2ebcf7' -input-fingerprint = 'sha256:8e8dd9a42dc4b4010fdf6bd70eed7cb35c1e45733e695657e061aa0c44fe4b85' +input-fingerprint = 'sha256:5e75b04cc1cee9ec89098a972f71cb1642ac4c90f6d4de618c56f22ecff5f041' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/cross-gcc.lock b/locks/cross-gcc.lock index 8812926f505..7ecfa18fc1a 100644 --- a/locks/cross-gcc.lock +++ b/locks/cross-gcc.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'b7d45e4ed35787f46b7118a4f5be8ee981d4ac49' upstream-commit = 'b7d45e4ed35787f46b7118a4f5be8ee981d4ac49' -input-fingerprint = 'sha256:3685db28de64c13e63930565f05246230afa546bf29c2f31080878ae2e15657e' +input-fingerprint = 'sha256:ca058f289686347c85638634e1543c45c38f658f7fbae2275e181e51ab7683ae' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/crypto-policies.lock b/locks/crypto-policies.lock index 7b4a0061678..513365ee682 100644 --- a/locks/crypto-policies.lock +++ b/locks/crypto-policies.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'a43d5d8a178c7b541d77763a142a591c95360f48' upstream-commit = 'a43d5d8a178c7b541d77763a142a591c95360f48' -input-fingerprint = 'sha256:33678363d3ec898ca68924bdf77a8f583940261875ff67944e15ef484226cd51' +input-fingerprint = 'sha256:f9e7956eeff37b3572e0a0e50228ae9f29c5fd45c1768913c99d17d750fb46a6' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/csnappy.lock b/locks/csnappy.lock index 8ce787ca9f9..eca466145a6 100644 --- a/locks/csnappy.lock +++ b/locks/csnappy.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '47da162b8b4a064b2c693ab17cf80eec3b8ac5ba' upstream-commit = '47da162b8b4a064b2c693ab17cf80eec3b8ac5ba' -input-fingerprint = 'sha256:650fc96aa907b116a11031396bae4433bf03707b61c9ba575c40ccb1b21a9ed0' +input-fingerprint = 'sha256:d7e161202cc20900dbe473f73e29f4915281f374f89a9593953971c3faecd8c1' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/cvsps.lock b/locks/cvsps.lock index 832e5abdbe7..9f9f46f330b 100644 --- a/locks/cvsps.lock +++ b/locks/cvsps.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '7d83560855349b49c4f78224b9fd9425e9e274cd' upstream-commit = '7d83560855349b49c4f78224b9fd9425e9e274cd' -input-fingerprint = 'sha256:5e35495f0aa662d7235ac61247ecebdf66abfa73ff23939fb969d4119ce3bccc' +input-fingerprint = 'sha256:16b6359892f42695b4401143260809dfb52d70f116891706d7612e88c619be47' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/dbusmenu-qt.lock b/locks/dbusmenu-qt.lock index 6df9a643c9e..becc404861d 100644 --- a/locks/dbusmenu-qt.lock +++ b/locks/dbusmenu-qt.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '698545c4968690cdb5b091ceefd0ee831b7cee3d' upstream-commit = '698545c4968690cdb5b091ceefd0ee831b7cee3d' -input-fingerprint = 'sha256:b5fcf5e91a499105a3738a796d47b35067db35edabd4c27694380ec040c2635f' +input-fingerprint = 'sha256:53b913d14c2aa18ced8438f3fcefd2a78feec70199c8b1361ca41cbe6ba281ab' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/device-mapper-persistent-data.lock b/locks/device-mapper-persistent-data.lock index 0ce507d02c8..a247b2ea15e 100644 --- a/locks/device-mapper-persistent-data.lock +++ b/locks/device-mapper-persistent-data.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'f5a75df400370d2620d498c6e0a437958baf4d43' upstream-commit = 'f5a75df400370d2620d498c6e0a437958baf4d43' -input-fingerprint = 'sha256:0209b73b8aa934a0be61e7f7861015a738644eb5bc11807921239256fda071b3' +input-fingerprint = 'sha256:49499824e518acebaee71ba1a40d68f4318a1fc1941ca9f29b1a7ed57ecbca91' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/dialog.lock b/locks/dialog.lock index 6a7e656af80..d2aa003ad8f 100644 --- a/locks/dialog.lock +++ b/locks/dialog.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '59722c837b3789f725c9276ec09b953b840b2adf' upstream-commit = '59722c837b3789f725c9276ec09b953b840b2adf' -input-fingerprint = 'sha256:49888aa0a8a3f04a774dba02ae02f01c034238fb7ecd86cffd35abf7b0d0224e' +input-fingerprint = 'sha256:6f157e614f2794a583b1059fbf205cdf14aead31b79791b40d186843335339fc' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/dnsmasq.lock b/locks/dnsmasq.lock index 237874ecbb4..a75500b7221 100644 --- a/locks/dnsmasq.lock +++ b/locks/dnsmasq.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '4f87a0abd166122610888588ba74040dd5da0b20' upstream-commit = '4f87a0abd166122610888588ba74040dd5da0b20' -input-fingerprint = 'sha256:152fa1e92abb8cbf999bb5d21ac4f1245b21c30438dd5205f4e4797d5d8c9a1f' +input-fingerprint = 'sha256:b368728f06d1aac593df05bacb548b1a5129bc8c778ecd9b40a317e8d10dc562' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/dogtag-pki.lock b/locks/dogtag-pki.lock index 897861fb28c..12e9e00cfff 100644 --- a/locks/dogtag-pki.lock +++ b/locks/dogtag-pki.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '960bfe6bd5106dc81083f79f10819dd2bd8ec0d4' upstream-commit = '960bfe6bd5106dc81083f79f10819dd2bd8ec0d4' -input-fingerprint = 'sha256:375eeea66353c243285d781f6ceb90bae856e4a940c64064ae85f4912d711244' +input-fingerprint = 'sha256:9cd2b01d54f69365c720d666b2671808a37c25fedfdd73d831c266a9f4184cd4' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/elfutils.lock b/locks/elfutils.lock index 5cc1fe204af..e4dda46f574 100644 --- a/locks/elfutils.lock +++ b/locks/elfutils.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '5b39a9fe3fa5e0f9a635fc546e47b85301a5a59e' upstream-commit = '5b39a9fe3fa5e0f9a635fc546e47b85301a5a59e' -input-fingerprint = 'sha256:43acbf0cc053b1fdd23ea61bd72acada9038f0b383dac004e17daf7309db4363' +input-fingerprint = 'sha256:aae34fb55654560b88296184c9b696e72845a9b640adeb8585cd3ade45e2f528' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/fcoe-utils.lock b/locks/fcoe-utils.lock index ce49aeb43bd..35280fc1e84 100644 --- a/locks/fcoe-utils.lock +++ b/locks/fcoe-utils.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '03250fc98889f227ae59499b342938d959f0531b' upstream-commit = '03250fc98889f227ae59499b342938d959f0531b' -input-fingerprint = 'sha256:56bd71dbdf9b7a4b6da159be641056b74561c17db5bc0610e67b4f5d8ffa6012' +input-fingerprint = 'sha256:9007167793d67e16f6c6466f6a778422f016d0bd47d39f3cb9c4cb03f6f24bd4' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/fence-agents.lock b/locks/fence-agents.lock index c4389475adc..ce2a9de139b 100644 --- a/locks/fence-agents.lock +++ b/locks/fence-agents.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'd3cee046da18bce492adbcb727aeb989319168a3' upstream-commit = 'd3cee046da18bce492adbcb727aeb989319168a3' -input-fingerprint = 'sha256:2fe5a82f346421688cffb67ae68718146acf8b9b0c7a38eb5d40536c0c8f377d' +input-fingerprint = 'sha256:9ffd333c0c973fe920f4bb70e73451e962ec523c758381daa0b7c9c09aec8e21' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/firefox.lock b/locks/firefox.lock index 8be565737a1..d1c7d036655 100644 --- a/locks/firefox.lock +++ b/locks/firefox.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'e6f01c53ca35f9fbad3bf45f227275550935b9d9' upstream-commit = 'e6f01c53ca35f9fbad3bf45f227275550935b9d9' -input-fingerprint = 'sha256:55ad1d0be4dafff74e28791ed3f44081c8cd20af3633969754d65d5062c2f1e1' +input-fingerprint = 'sha256:01b8565317d213dfc845ad1edc525f712a6538c70e107efe6d27b4af765eb95b' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/foma.lock b/locks/foma.lock index 7f97ac6e512..fa00d5cf1af 100644 --- a/locks/foma.lock +++ b/locks/foma.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'd82ede2cf8ab465e202528f8f58105082fb74903' upstream-commit = 'd82ede2cf8ab465e202528f8f58105082fb74903' -input-fingerprint = 'sha256:55f923be0001dfa3ff7688f574b3971442c2b825718975df429c9d8d9a0b09fa' +input-fingerprint = 'sha256:f2fc0bf81185a7000244278c46d563f3a2e34694320927d7384f0ed01e140e67' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/freeipa.lock b/locks/freeipa.lock index 5d48cdd7616..ede1bada65b 100644 --- a/locks/freeipa.lock +++ b/locks/freeipa.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '611d1e7df60f65f54ccc41c214520d227920ef28' upstream-commit = '611d1e7df60f65f54ccc41c214520d227920ef28' -input-fingerprint = 'sha256:1e8e4627b3903280e6e39c6e43039d020d1338b8cee350c896a400b12bbb6682' +input-fingerprint = 'sha256:058526b3ee209161ea383be68b2c6a4e9abf0e24db689d87b5d17fafbd3780cb' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/gcc.lock b/locks/gcc.lock index 14d19842f85..ac6f5ee1557 100644 --- a/locks/gcc.lock +++ b/locks/gcc.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'fef47e540ee170873511546e35fc912cceed23f1' upstream-commit = 'fef47e540ee170873511546e35fc912cceed23f1' -input-fingerprint = 'sha256:9cba33f3d0d76e1ebc779c654cb919773192af830efc66a9bc45454c89b42071' +input-fingerprint = 'sha256:5d15d6c9465975bfee9b5286b6984ea6daf1a2accf4fdf76810ec27ef7da11f3' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/gd.lock b/locks/gd.lock index 0701589a9df..ddab1080e0d 100644 --- a/locks/gd.lock +++ b/locks/gd.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'a641c09bbc2be46de2bf3b35d4603c694e638aef' upstream-commit = 'a641c09bbc2be46de2bf3b35d4603c694e638aef' -input-fingerprint = 'sha256:09f4724217e06f4c0e025d11b08cde68e9a8212f4100dd08efb96590f1ac415e' +input-fingerprint = 'sha256:092c246f0994894d89f5274deda14fda7c07901901908c22f37fe3e76b3fd226' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/gengetopt.lock b/locks/gengetopt.lock index 1a782b3f998..50f1c7db2e7 100644 --- a/locks/gengetopt.lock +++ b/locks/gengetopt.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '4b09b9dff9b1ff2498795b4b7cbd5432385e3302' upstream-commit = '4b09b9dff9b1ff2498795b4b7cbd5432385e3302' -input-fingerprint = 'sha256:5468e003f44fc6355c17c5ed497953111c087f7be2b26668d4323372c288989a' +input-fingerprint = 'sha256:9d464da31f1f733a71de4554b09af59d6311fd9cb1463e1b353735024702529e' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/glibc.lock b/locks/glibc.lock index 4606b5b847f..d7e94e63234 100644 --- a/locks/glibc.lock +++ b/locks/glibc.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '105bf4c71d7b55fdccc028b22dce154c5d5b6228' upstream-commit = '105bf4c71d7b55fdccc028b22dce154c5d5b6228' -input-fingerprint = 'sha256:63d7b30ccb0b469da0c3dce3a6bb24e54455422700be957bda00393d90fe265c' +input-fingerprint = 'sha256:93946a90556f969fa978dfc697b0159fa7f3d51879d73e91f6ac0744e42adbaf' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/glusterfs.lock b/locks/glusterfs.lock index a9cac057dd3..27a56b8c1c6 100644 --- a/locks/glusterfs.lock +++ b/locks/glusterfs.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '2bff6285efa0b6fde6f3402818a2c717c8019335' upstream-commit = '2bff6285efa0b6fde6f3402818a2c717c8019335' -input-fingerprint = 'sha256:5d89825e15fb5668bc9063771bbec2d3e2aa1884cc6a414a530274e4833d9165' +input-fingerprint = 'sha256:cc40818501d86ca9f84ab0284cd8f4f7fc7c7006f8681456fecbb3adfcc3e981' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/glyphicons-halflings-fonts.lock b/locks/glyphicons-halflings-fonts.lock index 1ff46969186..46c28a6a82a 100644 --- a/locks/glyphicons-halflings-fonts.lock +++ b/locks/glyphicons-halflings-fonts.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '88573dc048688f5e7f706687acfebc97e6840e76' upstream-commit = '88573dc048688f5e7f706687acfebc97e6840e76' -input-fingerprint = 'sha256:b8997154e389a012714eaa95992e4a980001ffebe820bdb6a15f69335744b2c0' +input-fingerprint = 'sha256:180360d3b2cd3db116307b539943b5afb23dc6017ff4f87b7522211aec66673d' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/gnulib.lock b/locks/gnulib.lock index 7b9b788245b..8b648cb2239 100644 --- a/locks/gnulib.lock +++ b/locks/gnulib.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'b28f7e2453c9c44659bb7cd36134eb46a6301c3f' upstream-commit = 'b28f7e2453c9c44659bb7cd36134eb46a6301c3f' -input-fingerprint = 'sha256:26408b093ffec03bc7fc4985c4e3b02da0c5d86e15764e590aef01866a6488be' +input-fingerprint = 'sha256:5f1a1e937e71e22241e4be7dbdb8d1b4bc7009805baabdd14d5b630450e934ab' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/golang-github-macaron-inject.lock b/locks/golang-github-macaron-inject.lock index ebef82be04e..cf060c25c88 100644 --- a/locks/golang-github-macaron-inject.lock +++ b/locks/golang-github-macaron-inject.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'b4addcec6e1debbcdb3d3805a356e4d966d6c325' upstream-commit = 'b4addcec6e1debbcdb3d3805a356e4d966d6c325' -input-fingerprint = 'sha256:51027a74f7a8bf873a3783a0d0505bc6dd5d5e2cff19be90f7cc448322844d7b' +input-fingerprint = 'sha256:834dc7786ac73e9d5c01a098e7ac71cb851a9d86141d32e7e7e57cbf103870c1' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/golang-github-rcrowley-metrics.lock b/locks/golang-github-rcrowley-metrics.lock index 244939a1d76..1b2a2bbbb3c 100644 --- a/locks/golang-github-rcrowley-metrics.lock +++ b/locks/golang-github-rcrowley-metrics.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '3e7502ea5eee2439b3df6c0c26710b19ed4a5377' upstream-commit = '3e7502ea5eee2439b3df6c0c26710b19ed4a5377' -input-fingerprint = 'sha256:9f9b466f8c4ce3dcb272e6b046c6b493b1da25a36ce73f654d9e46406edda224' +input-fingerprint = 'sha256:c53c01de623a62488e4583bcd3c1176f872b26010d831ff3462e226f676575c2' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/google-roboto-slab-fonts.lock b/locks/google-roboto-slab-fonts.lock index 2fdd94c6f2c..ba25f8ee1e1 100644 --- a/locks/google-roboto-slab-fonts.lock +++ b/locks/google-roboto-slab-fonts.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'e05a653ec11e6a024e6b47186a56afc701b3635a' upstream-commit = 'e05a653ec11e6a024e6b47186a56afc701b3635a' -input-fingerprint = 'sha256:d129ca0047405ebeb59578086eb30eb5bbf89fd35cd299c5bb7b80fbdee40d32' +input-fingerprint = 'sha256:9d7d8a37c7353bec5e5e50124a30ed2bbcc173c26e3ddbf504ba2ceee2ad4680' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/gts.lock b/locks/gts.lock index 0d706a71f54..d76257f3386 100644 --- a/locks/gts.lock +++ b/locks/gts.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '163991bf67dc90f2fba117d806499655ec9e01c7' upstream-commit = '163991bf67dc90f2fba117d806499655ec9e01c7' -input-fingerprint = 'sha256:7fce56c262a2f57968b50548b1e3d094dcf81ca0daa6723499f1c322256945fa' +input-fingerprint = 'sha256:7dd3188da2aa1e56a0295107f50a63b4e0377a077d58039b1912e4e8b40ac214' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/gyp.lock b/locks/gyp.lock index 4e7038f2153..8be23161e54 100644 --- a/locks/gyp.lock +++ b/locks/gyp.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '08d72128502727df2b35297ce992b617bbec3cf9' upstream-commit = '08d72128502727df2b35297ce992b617bbec3cf9' -input-fingerprint = 'sha256:21fb98d74a1a0df5565176081795ed0b13eaa83b47a4edec58eb0bf82c505149' +input-fingerprint = 'sha256:a0bbbc4b508d64ef731ab253a246e7e9deaf5054c643a4d65cbc8cb57d98bd59' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/hunspell-se.lock b/locks/hunspell-se.lock index be54908e21a..21c5c24669e 100644 --- a/locks/hunspell-se.lock +++ b/locks/hunspell-se.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'ad9d02bd99ad601fd6017c96b92a0f8252d3d6af' upstream-commit = 'ad9d02bd99ad601fd6017c96b92a0f8252d3d6af' -input-fingerprint = 'sha256:11c623eb3ddf5114e28b60b0f4f1034bfda0b813841b522f28388c579c5c3e90' +input-fingerprint = 'sha256:1f9074ca6ac48fa8568291c54c53dd3948ed11bce0bf3a75c37cdeb02c046d35' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/hunspell-smj.lock b/locks/hunspell-smj.lock index bf121ae5412..15eaf3042b7 100644 --- a/locks/hunspell-smj.lock +++ b/locks/hunspell-smj.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '982d46ebe833b8f10f22fe123850559466672eaa' upstream-commit = '982d46ebe833b8f10f22fe123850559466672eaa' -input-fingerprint = 'sha256:9d203a058df04c3cc0059b41b97eb0625eb0d742a03ff803f54375f2e2c93511' +input-fingerprint = 'sha256:c947d1e43f5693c078dedfbd7244ec7373f2ab01f2bf8324e158999df38b9635' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/ipxe.lock b/locks/ipxe.lock index 8acb0e0edd1..fe5d4009309 100644 --- a/locks/ipxe.lock +++ b/locks/ipxe.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'a2e3015ee498076cbd99033ea2889966628d7fdb' upstream-commit = 'a2e3015ee498076cbd99033ea2889966628d7fdb' -input-fingerprint = 'sha256:59b08814fada9635d0c0817bced357839cf54dba172efa204909cd649bc486fe' +input-fingerprint = 'sha256:b26c6266ce081acc8faaa66d486f18f201c14c5ff49e5e7338d4cfa4b2f9d6d1' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/iscsi-initiator-utils.lock b/locks/iscsi-initiator-utils.lock index dcd3526738f..d18eee676b3 100644 --- a/locks/iscsi-initiator-utils.lock +++ b/locks/iscsi-initiator-utils.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '9a6b8bd47782bcd7dc1d322d32aa98c778564cbe' upstream-commit = '9a6b8bd47782bcd7dc1d322d32aa98c778564cbe' -input-fingerprint = 'sha256:8a463e218d91e425b90f92d10f0241d03a9cb42197fb2e9277d399d996f2f868' +input-fingerprint = 'sha256:fee3a438ebdcf7fe8d0be50cd7f150e8b5a382c8f94c01e88078ca79d4fdaa01' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/isl.lock b/locks/isl.lock index cbb3058e891..efc2d9ff9e0 100644 --- a/locks/isl.lock +++ b/locks/isl.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'e5da0c023fda90878df12c28c4060948041ba74e' upstream-commit = 'e5da0c023fda90878df12c28c4060948041ba74e' -input-fingerprint = 'sha256:64a96243c16a80f9012cda2e5f8e39aa9a5e0abdc6d844947cce3d683751bcb1' +input-fingerprint = 'sha256:c605cb71b30f5860ec56911d7b83c0d07b8149d2093a941ee07e1f0f8ff1ff56' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/java-25-openjdk-portable.lock b/locks/java-25-openjdk-portable.lock index 29a3a47b19b..583329b4801 100644 --- a/locks/java-25-openjdk-portable.lock +++ b/locks/java-25-openjdk-portable.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'cad9d5a1ed48cf7e9e12cfadfdacc11f523d46cb' upstream-commit = 'cad9d5a1ed48cf7e9e12cfadfdacc11f523d46cb' -input-fingerprint = 'sha256:36c3198173416602b88b0c9bacc6b27ad47b4ec6443bfd6d63e42425d333327b' +input-fingerprint = 'sha256:597518bdbc71588ef3aaa176e146232ee092b1527ae719a4a85151a4ffba0949' resolution-input-hash = 'sha256:0202eb9270e8e00e99a72f294e2d072d2bfb8009bfd6cc7fdd72b7bec3fb3996' diff --git a/locks/java-25-openjdk.lock b/locks/java-25-openjdk.lock index 76485a57ea1..11e7988b5d9 100644 --- a/locks/java-25-openjdk.lock +++ b/locks/java-25-openjdk.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '6011214a0e0e5c6302d0d59b6e8805d049749420' upstream-commit = '5443056bc5b97bcc78e36144b6a28b8937dc6cee' -input-fingerprint = 'sha256:c6e3f9d260d8207c81481c4ebf94d5c38df31724b77d1f47f83885fe5fe4e5ff' +input-fingerprint = 'sha256:c35b32fbf3237d2470a27e827a36a2cc3508ab592c2ef64e5311cd7ff6b6ff4b' resolution-input-hash = 'sha256:6ff9dbb2a003cbeff4de0aaad04fa74dd672d8b4431d3025412a6f78978c3259' diff --git a/locks/jss.lock b/locks/jss.lock index 07593c4dbd6..c83d147370b 100644 --- a/locks/jss.lock +++ b/locks/jss.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '7d99ce785209a62462c0389ae489c55e7fb35368' upstream-commit = '7d99ce785209a62462c0389ae489c55e7fb35368' -input-fingerprint = 'sha256:8877009eeb10be1f34cb864e100dd9a94d1df4b0d865bcb092388037eff87a6b' +input-fingerprint = 'sha256:1a9546fd815349b061c5e956e68c4e459f795c24e11f89e7c14bb8399b51cd0c' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/kabi-dw.lock b/locks/kabi-dw.lock index aee219bd18d..b0f637f0d2b 100644 --- a/locks/kabi-dw.lock +++ b/locks/kabi-dw.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '12f278cc2a3a8f123743b019243a65e63cf3157b' upstream-commit = '12f278cc2a3a8f123743b019243a65e63cf3157b' -input-fingerprint = 'sha256:23e9e8b51378db3f3f49986158873e05613fd20057e25125ca27c25da2d14420' +input-fingerprint = 'sha256:84d07237e61e22bf40b46941cd11052175eef8ec159d8551c658a3e3bf46ab93' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/kata-containers.lock b/locks/kata-containers.lock index 65015120bc2..e38e0b2bca1 100644 --- a/locks/kata-containers.lock +++ b/locks/kata-containers.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'd4a94fd83f31e8a88a8c7d72e424d4f5d83bcdfa' upstream-commit = 'd4a94fd83f31e8a88a8c7d72e424d4f5d83bcdfa' -input-fingerprint = 'sha256:4c42bfafab46a2ad4c53ee939b4ca1ba5bf94b7c246e18f24317821276b5e6b5' +input-fingerprint = 'sha256:b6ffb8fa7a66967a24b9d68560b94a6c3cb29aafa366aa19791da83d6643f3f5' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/kdump-anaconda-addon.lock b/locks/kdump-anaconda-addon.lock index 0cbeebfbfaf..1d46e8ed893 100644 --- a/locks/kdump-anaconda-addon.lock +++ b/locks/kdump-anaconda-addon.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '068879df47444e8ec78ae27c98d002123d0c4d6f' upstream-commit = '068879df47444e8ec78ae27c98d002123d0c4d6f' -input-fingerprint = 'sha256:5c748aea8286e4e5a2d79c6bce565d92719cf06635dad8d922c9565212462fdd' +input-fingerprint = 'sha256:954c7308a1bb7a549b7e0fef18bb98de44d7b2b4b094a47269ab093a9bd8cd62' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/kernel-headers.lock b/locks/kernel-headers.lock index 2bee8698074..67af445adc5 100644 --- a/locks/kernel-headers.lock +++ b/locks/kernel-headers.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'bf1c109a1065217ca13cfe5af45fedf1dfb58ffe' upstream-commit = 'bf1c109a1065217ca13cfe5af45fedf1dfb58ffe' -input-fingerprint = 'sha256:40023e332f7533de965ea85abed68292be89eab6b0e53106833865060dbf64c5' +input-fingerprint = 'sha256:a892442be2b426beb5b8ca4873fc85298c35bb9e7e00cb187ebf97ef9b75f88d' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/kernel.lock b/locks/kernel.lock index ac64d6d14aa..9b3e54feae7 100644 --- a/locks/kernel.lock +++ b/locks/kernel.lock @@ -1,4 +1,4 @@ # Managed by azldev component update. Do not edit manually. version = 1 -input-fingerprint = 'sha256:c855a11b58a08f8247ecccb7f9c91e4ce0942bb028ab95df98aa4e55db4ee3d6' +input-fingerprint = 'sha256:7cfa6806eab968e2f7a0fc23b94fc593729c7095090f3d4b30d525acf307743e' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/keyutils.lock b/locks/keyutils.lock index 9e8a4b0d62c..38771eb1030 100644 --- a/locks/keyutils.lock +++ b/locks/keyutils.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '0fdb9190f6ad534a8d28fba90dc95ca14dea3778' upstream-commit = '0fdb9190f6ad534a8d28fba90dc95ca14dea3778' -input-fingerprint = 'sha256:7d2b519ce4f7fc46ece355a1e4a244f1bc7ef5f72120b5e3cc899f5138faf0e7' +input-fingerprint = 'sha256:9fe0ccdc48d9c60faab1aa58386a6f821a91f0d3824d9be058a12d0715a1fa03' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/krb5.lock b/locks/krb5.lock index 66b200a9097..d4fd50f62a8 100644 --- a/locks/krb5.lock +++ b/locks/krb5.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '7aeac1a98f437163161bc7d6edb3ea5267fb9690' upstream-commit = '7aeac1a98f437163161bc7d6edb3ea5267fb9690' -input-fingerprint = 'sha256:1d1c7b15c2153ba7ce148d8c1eeebfc4b96d4987cb12de9013dc277b2ee2d811' +input-fingerprint = 'sha256:227c696a48c489de6bcd87b1a0b5d3e4e8acd9ac9c4293741b8f8ac64a22aa4e' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/ldapjdk.lock b/locks/ldapjdk.lock index 3a37f2c9922..54337823b17 100644 --- a/locks/ldapjdk.lock +++ b/locks/ldapjdk.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '530ef68243510c8a044f24ca0b160d0f73501be2' upstream-commit = '530ef68243510c8a044f24ca0b160d0f73501be2' -input-fingerprint = 'sha256:1f3923dbcb9cdccea3098a2e7e99d2811548dfc76a2377fbadf31665bdf7ab37' +input-fingerprint = 'sha256:f400d0abe08e7c26dc26fdb36a76319dea373d5c8b7c76796d97cc731a467e8f' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libX11.lock b/locks/libX11.lock index 087644c99c7..c0f1e45ec63 100644 --- a/locks/libX11.lock +++ b/locks/libX11.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'aa1a5314eb881eb3b4db24a4af62054dda470ab8' upstream-commit = 'aa1a5314eb881eb3b4db24a4af62054dda470ab8' -input-fingerprint = 'sha256:a789e903814c82623291eefd7353a4ca61c6ef673378792c14498ce1c5c14de6' +input-fingerprint = 'sha256:1bfd937890a33e65b78f81239df97ff0be4e9ed127b93369c9b1f119b9e0eafd' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libXcursor.lock b/locks/libXcursor.lock index 232274aafcf..29358df0f77 100644 --- a/locks/libXcursor.lock +++ b/locks/libXcursor.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '04b5e963d9b3b58413da15ea10d248345d157039' upstream-commit = '04b5e963d9b3b58413da15ea10d248345d157039' -input-fingerprint = 'sha256:f76749fecbeac4286c8b2774b04e33c017c3e2d2ab1597b7611662ce998928f2' +input-fingerprint = 'sha256:9330f28a83ca928c0c8ab5bd9c02d2f0782b130e093eb0a90ae7317bed2e8a18' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libXext.lock b/locks/libXext.lock index fb771bffb79..c6f9b70426b 100644 --- a/locks/libXext.lock +++ b/locks/libXext.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'a89224eec5baec59bee272aed0d1bbb7f33ae31a' upstream-commit = 'a89224eec5baec59bee272aed0d1bbb7f33ae31a' -input-fingerprint = 'sha256:78a767488782a2342ad41e7f49992ef47e6338054c211c4ebb7237a4932223ca' +input-fingerprint = 'sha256:58a278d2743ea26252454c050657c11cbdbc02ddddd70b1b0ffed26c44821b4b' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libXfixes.lock b/locks/libXfixes.lock index f6768b0c02f..d65cf93ee26 100644 --- a/locks/libXfixes.lock +++ b/locks/libXfixes.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '6dbab5b6a81803f2765f1e8177636a81026f8d67' upstream-commit = '6dbab5b6a81803f2765f1e8177636a81026f8d67' -input-fingerprint = 'sha256:3d875fec3407648220940b337783b3a5a960c5fe0ed33aa8c21192a921f41e9a' +input-fingerprint = 'sha256:2136b0030cfb32974b03e49a24d6d35b78a8c0bd2bfa29a36b259f5fc46e07a5' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libXi.lock b/locks/libXi.lock index 21c895c0391..e70b4757cde 100644 --- a/locks/libXi.lock +++ b/locks/libXi.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '7d1f50d83cae1be650d3be41aacba8ec3446d85b' upstream-commit = '7d1f50d83cae1be650d3be41aacba8ec3446d85b' -input-fingerprint = 'sha256:db194934db8d6f6c2e05008461ed27e4d39f7488b74c6011703a2de08811fb8f' +input-fingerprint = 'sha256:761f2fe13ceec1a7a2de5d3932f3ba81bbf7f6e895e886362d29be70fe8e0482' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libXinerama.lock b/locks/libXinerama.lock index eec570fe0af..d8066b6cc1d 100644 --- a/locks/libXinerama.lock +++ b/locks/libXinerama.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '9a8786d916ce693a6591b5ffe38706fc549c1e1b' upstream-commit = '9a8786d916ce693a6591b5ffe38706fc549c1e1b' -input-fingerprint = 'sha256:6defbf8c55128d6af0afe1ddcc80d229728b9885022add27f3f2baed96fb98b4' +input-fingerprint = 'sha256:bd765a1e008922294f6091633952ce07d9f726693d16d7433e3395717a5acfa6' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libXrandr.lock b/locks/libXrandr.lock index 01d755eca64..d42da3f6921 100644 --- a/locks/libXrandr.lock +++ b/locks/libXrandr.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '513c384dac6af2b4d0b9e4bd75ebcd671edc2a55' upstream-commit = '513c384dac6af2b4d0b9e4bd75ebcd671edc2a55' -input-fingerprint = 'sha256:1f21f863be179e50692d7b293f1f51384afffe98f3cb95a9bb1e3e1442eb68d2' +input-fingerprint = 'sha256:56fd411651c2d0a94ce7b868fe0ba457296d94f56afd585a758a0be414c0b810' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libXrender.lock b/locks/libXrender.lock index 46baa640020..b73e3d29c63 100644 --- a/locks/libXrender.lock +++ b/locks/libXrender.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'd61da602716cd660009068fb1c8575a246a708d4' upstream-commit = 'd61da602716cd660009068fb1c8575a246a708d4' -input-fingerprint = 'sha256:6203b57abb29f3fa04f11096736ca124aaed17d8344dea86d2d83257af77f114' +input-fingerprint = 'sha256:abb97d1690d511dd27d4be2a13be5e6326f280be457ba439819d56fab911b028' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libXres.lock b/locks/libXres.lock index 2e66d68ef3a..cef2d4068ed 100644 --- a/locks/libXres.lock +++ b/locks/libXres.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '89d8f906a488f201936843b60ded68be711fdc4f' upstream-commit = '89d8f906a488f201936843b60ded68be711fdc4f' -input-fingerprint = 'sha256:30d039ea206c7a528d471e6c19f98903126d3080e7f10bee90da9a076e81421e' +input-fingerprint = 'sha256:a2efd9c33815759b6602d47dede60ac3e71e33911da01135af2d28a2e197641b' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libXt.lock b/locks/libXt.lock index f07e0d86d0e..fd00faf560c 100644 --- a/locks/libXt.lock +++ b/locks/libXt.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '35cf0285df9f4ad41ba788f2f6ddd31f190ea89b' upstream-commit = '35cf0285df9f4ad41ba788f2f6ddd31f190ea89b' -input-fingerprint = 'sha256:d496e793c92d61d92f85b4c06c34af2d464ff3e51560c439d05b381338979051' +input-fingerprint = 'sha256:9e9f8e7ddbe4b3e34fba18d86e2ca6dd14dc77f4f39966447d0dcacdc261fcc2' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libXtst.lock b/locks/libXtst.lock index 04fabbf10d8..8218af9d6b5 100644 --- a/locks/libXtst.lock +++ b/locks/libXtst.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '1f44c01f1fe6f9e882a128dfa0e4bebac7b9775a' upstream-commit = '1f44c01f1fe6f9e882a128dfa0e4bebac7b9775a' -input-fingerprint = 'sha256:3c03e8d6dfad4f31519ab0a3306081e9b023fcd042a0e993c3c562c34794a7f0' +input-fingerprint = 'sha256:356d18a01b02e04ea2d3d3be8a0b8e3f91bb8c50dab28a603d623128be8c1c1f' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libXv.lock b/locks/libXv.lock index da25b460331..a34e7c90f8d 100644 --- a/locks/libXv.lock +++ b/locks/libXv.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '2337d104b7f7ab84996a47a879db1511a8452ea7' upstream-commit = '2337d104b7f7ab84996a47a879db1511a8452ea7' -input-fingerprint = 'sha256:f7dade8ccd49dc278c3916336ee0482350a152e99579a6d3607e2ead0ed6cf79' +input-fingerprint = 'sha256:c899e51a010b158984e1411036a6f9e0bcac98ae518fa666aa4f8015928ea154' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libXxf86dga.lock b/locks/libXxf86dga.lock index cee8ca1ecfc..5246a8ac9fe 100644 --- a/locks/libXxf86dga.lock +++ b/locks/libXxf86dga.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'f0f36c4e91d44bc6287a3313ba01f39140b7ed3e' upstream-commit = 'f0f36c4e91d44bc6287a3313ba01f39140b7ed3e' -input-fingerprint = 'sha256:8f3b6b0f602228280985f7b4afdb74c73cd91bbb5b1571790d1a6967ea2dabd7' +input-fingerprint = 'sha256:4d97d2c7bd4efe8efe391703ff941c9d054480ee0a6bfb43af04765fc5d7f2c4' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libXxf86vm.lock b/locks/libXxf86vm.lock index 73499a43954..ab0e138ba3c 100644 --- a/locks/libXxf86vm.lock +++ b/locks/libXxf86vm.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'da89c5acbadc58b26530482f5e8d1079c1673e63' upstream-commit = 'da89c5acbadc58b26530482f5e8d1079c1673e63' -input-fingerprint = 'sha256:8a4b141edab74d3c8cef098b90b81f6099efa3cd2a093d3f7d85dc1ef107e2b2' +input-fingerprint = 'sha256:a00aec6535aa99a483648af7ec90a067681dc7abfdb42dbe7496c242f7f36ff4' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libcaca.lock b/locks/libcaca.lock index 5d0b68ce6c1..a8ba00d832d 100644 --- a/locks/libcaca.lock +++ b/locks/libcaca.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '2dd436c8629933bd499e23047f4479a1c05cb9b8' upstream-commit = '2dd436c8629933bd499e23047f4479a1c05cb9b8' -input-fingerprint = 'sha256:44ea4eed29e1146465804ff27d4b0f6ebe82dc07aad2778a9f9f6f870b3cdf65' +input-fingerprint = 'sha256:ece63addc0ef13339e5f4437305ce619d7b76c86f26e24feebf69bc5f2f2a79c' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libedit.lock b/locks/libedit.lock index c1e171ce7e3..2635d85aabc 100644 --- a/locks/libedit.lock +++ b/locks/libedit.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'c51489c500f8884ed4932b5fbf31aab21ed8de08' upstream-commit = 'c51489c500f8884ed4932b5fbf31aab21ed8de08' -input-fingerprint = 'sha256:30f52bcaea0e85f3f6e18adb82d4263db3b16ed3e8d627bb6e3a51e9d532cadc' +input-fingerprint = 'sha256:9f97895b88039bbf87d7bd4771a292e35c2a1e03d7d8445aec9d4d65f1146698' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libgpiod.lock b/locks/libgpiod.lock index 1e435c1d344..9b51f3ab4af 100644 --- a/locks/libgpiod.lock +++ b/locks/libgpiod.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'a4ab19e27e3eeff48bf54fd9d259baadfd450c34' upstream-commit = 'a4ab19e27e3eeff48bf54fd9d259baadfd450c34' -input-fingerprint = 'sha256:fafae3a0491da215639b0a42cc3eea656f5615bb04d66326e5a602b24f18077d' +input-fingerprint = 'sha256:a586cd31096a6f26659aac02b383b79de2c79791e12bc2b69e6bf3c64535beec' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libi2cd.lock b/locks/libi2cd.lock index 309c90a98d4..66c82102f60 100644 --- a/locks/libi2cd.lock +++ b/locks/libi2cd.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'd49a0ce0e996d2e4a699b716c8faafbfb7cc053d' upstream-commit = 'd49a0ce0e996d2e4a699b716c8faafbfb7cc053d' -input-fingerprint = 'sha256:74bd9cb3848ee67744cc41c6279261a532b9b30c26f458416cf00850e87c695f' +input-fingerprint = 'sha256:7c5879576987cc7f07077e09f7c372db564471276f6d91ade4e49f25ae5928cf' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libinput.lock b/locks/libinput.lock index 3803051ce9c..2229e413634 100644 --- a/locks/libinput.lock +++ b/locks/libinput.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'a274e885bd332f237fc56c18c007c645372d81b8' upstream-commit = 'a274e885bd332f237fc56c18c007c645372d81b8' -input-fingerprint = 'sha256:0cfa42de3ec044e2cd760b59faf976ec529c049fa88a084376cb36683f525abd' +input-fingerprint = 'sha256:546c89d9fde605f0fe184d67274ab9ea310a8fdd64be3c04e4c3d37830ce2838' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libldm.lock b/locks/libldm.lock index c4ab45fbb41..957e09826a0 100644 --- a/locks/libldm.lock +++ b/locks/libldm.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '07256b39214a829d7115230215969cd307942c34' upstream-commit = '07256b39214a829d7115230215969cd307942c34' -input-fingerprint = 'sha256:256a13eff83df10b87746afcb86f277c99b72bc92325489e22d12b7ddd144623' +input-fingerprint = 'sha256:baab3c1e9f0b07004ab46f769dfc11e26e282eb7677919aecccf95786797e784' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libmspack.lock b/locks/libmspack.lock index 889275c074a..ec09377d121 100644 --- a/locks/libmspack.lock +++ b/locks/libmspack.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '50c7fea01d975343fb9d77cdf36facb5b412f3ae' upstream-commit = '50c7fea01d975343fb9d77cdf36facb5b412f3ae' -input-fingerprint = 'sha256:ceaecc2b8d6df02e34baddd91134130d7fe25b9a6b01bfda006e32f1f83f742b' +input-fingerprint = 'sha256:cadae12b0410c646acd26f1dbad5dd25e8eb4db1646fa455a0364b07a88ba047' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libnsl2.lock b/locks/libnsl2.lock index 7a93bdc926b..34fc9eef122 100644 --- a/locks/libnsl2.lock +++ b/locks/libnsl2.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '9ff0bce06c32c7c67ff7c29b8386a64724d1dbc7' upstream-commit = '9ff0bce06c32c7c67ff7c29b8386a64724d1dbc7' -input-fingerprint = 'sha256:76db5046e04578a953486ab914a8cc45765d3333e9a9ddbe1b8573f82296e207' +input-fingerprint = 'sha256:1cc7a03277411e38fd5b06f29df115ca3d5e930a6ff244978620884517f9cc31' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libntirpc.lock b/locks/libntirpc.lock index 228e5c97577..db594e54bfe 100644 --- a/locks/libntirpc.lock +++ b/locks/libntirpc.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '50234bbbe6884a4e1d5caf49315113a39ae4e5d8' upstream-commit = '50234bbbe6884a4e1d5caf49315113a39ae4e5d8' -input-fingerprint = 'sha256:017aad91e1c90512f5b202ef312062e9bc86142e628693d3249db0b88a6591a2' +input-fingerprint = 'sha256:1b9c7c12dc900901fd494d1529e0ab12cdda6c722d994bf461d0a955211631a8' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libreplaygain.lock b/locks/libreplaygain.lock index bc916490e01..57d9831ce0a 100644 --- a/locks/libreplaygain.lock +++ b/locks/libreplaygain.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '061a9dff2100e6f65e9e9873028f10bc6780b2d1' upstream-commit = '061a9dff2100e6f65e9e9873028f10bc6780b2d1' -input-fingerprint = 'sha256:be684d4a2f01ae2e2d945ae270e8d1770c884c7d0317d4898e51ae99226251e1' +input-fingerprint = 'sha256:572211202f9c8764e949b5faaf3c95888737fb3503ae8ac76b17caa8521db433' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libspf2.lock b/locks/libspf2.lock index 8b88191f812..8023b6e80c4 100644 --- a/locks/libspf2.lock +++ b/locks/libspf2.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '2ac15d6270cef51ed28d5173db25d52909d7157e' upstream-commit = '2ac15d6270cef51ed28d5173db25d52909d7157e' -input-fingerprint = 'sha256:a7595ea8e3e86a1e56fc472c7b1f54a8fdd66979f478b66ac96bad1fed93892f' +input-fingerprint = 'sha256:a7b91ffa43be0154d1a845c3cba95dd13fcd2174d0aba22def529c5b9f4cd195' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/libxkbcommon.lock b/locks/libxkbcommon.lock index da736a53b40..90fec966fe9 100644 --- a/locks/libxkbcommon.lock +++ b/locks/libxkbcommon.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'fc324e7c9fcfec37b51f41b87d4bb5e8279ea14c' upstream-commit = 'fc324e7c9fcfec37b51f41b87d4bb5e8279ea14c' -input-fingerprint = 'sha256:b1ce8cdd46036de736472add05f26e6ebe861c57c282ae83bb557e4d82cad06f' +input-fingerprint = 'sha256:ec2c49e787325a1e28028f4dc5d675645a2af3f4420b5628450381c1104ee6f2' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/linenoise.lock b/locks/linenoise.lock index 97ad22ac39b..4619add8b17 100644 --- a/locks/linenoise.lock +++ b/locks/linenoise.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '8e9aa2401f19ea3d3e7f1f43aa1209370b07e2bc' upstream-commit = '8e9aa2401f19ea3d3e7f1f43aa1209370b07e2bc' -input-fingerprint = 'sha256:9eaa71b564fc9a36044c1b37b81b2900d980db2a02b8f220a05538d47cc1321d' +input-fingerprint = 'sha256:2e6a87ba93b608646814ec245602e2baa67070e06cd61dd37197cb979facbfcd' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/lirc.lock b/locks/lirc.lock index 016ee9a757e..058aaeae5f1 100644 --- a/locks/lirc.lock +++ b/locks/lirc.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '69d713b2816136486880ae79cebed63b246d8848' upstream-commit = '69d713b2816136486880ae79cebed63b246d8848' -input-fingerprint = 'sha256:8b90c2f953c14f65b7897a524abb6887702d084d242102e5090a1c90ac80009a' +input-fingerprint = 'sha256:4bdab8fcbb669a65ef2dd1c492d6d23ad07c98fd40a1b039bb7d86e54d507e9f' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/lldpad.lock b/locks/lldpad.lock index 6b2710f53dc..89d7d2bd723 100644 --- a/locks/lldpad.lock +++ b/locks/lldpad.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '9c0027d7e4bb7866afd08c7cf5cdd3211a176656' upstream-commit = '9c0027d7e4bb7866afd08c7cf5cdd3211a176656' -input-fingerprint = 'sha256:641aede2ceda3815c23a6c4fa9a8f8ebb3a3d2c274bd5e8bd274507b786ca472' +input-fingerprint = 'sha256:7a19737d7ef9c1d12b8cf45a10cc2604c4e42ca7514431d09665d8cda29a86d1' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/man2html.lock b/locks/man2html.lock index 20219fd94f5..4b9b1ac019f 100644 --- a/locks/man2html.lock +++ b/locks/man2html.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'b367ab049349a4e28da1bc58dbaf12eaf88ab5f3' upstream-commit = 'b367ab049349a4e28da1bc58dbaf12eaf88ab5f3' -input-fingerprint = 'sha256:9e2faa8bc1e0cb15bb24f87712e85991dcfecab293e435ff6c53311ed798d342' +input-fingerprint = 'sha256:9b2efa12bf6b2df59d1b571bd133061c750ee7e9535ba2c65e80522167226b81' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/mariadb-connector-c.lock b/locks/mariadb-connector-c.lock index 90c08e4295c..a21c4142777 100644 --- a/locks/mariadb-connector-c.lock +++ b/locks/mariadb-connector-c.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '14592e725f91942bccc34f0f9603c0ac781e20dd' upstream-commit = '14592e725f91942bccc34f0f9603c0ac781e20dd' -input-fingerprint = 'sha256:5c1c10be75bf7fdb0ef3ba8fb9009c9e3799bd32181d847472e2c5ae17938a0d' +input-fingerprint = 'sha256:d8c11244589b20a2e6fc6ef4ba0ab9eca8b9bdba73f88e89c002035adfd2c6cf' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/mariadb-connector-odbc.lock b/locks/mariadb-connector-odbc.lock index 8089add66d1..bceee9f8b70 100644 --- a/locks/mariadb-connector-odbc.lock +++ b/locks/mariadb-connector-odbc.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'f5e012ad03a823e563a13efb118f3bfb02b39d4a' upstream-commit = 'f5e012ad03a823e563a13efb118f3bfb02b39d4a' -input-fingerprint = 'sha256:ae033920b71650ed03af9354b325b217c63c6c2ee16560bbad0d254c49c01807' +input-fingerprint = 'sha256:7902dc18351b17d7c22dd306471c637f8b26b30ef52476d7c93aafbd47d37db8' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/mariadb10.11.lock b/locks/mariadb10.11.lock index f8f41799ccb..6689917104a 100644 --- a/locks/mariadb10.11.lock +++ b/locks/mariadb10.11.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '0009ff529e9e8b8ebc9d3f67059c656a86416e21' upstream-commit = '0009ff529e9e8b8ebc9d3f67059c656a86416e21' -input-fingerprint = 'sha256:a1617c777d2c4bcbe0d7bf6f9d03f43954b8285ab1b978acf19743588a7d7f2d' +input-fingerprint = 'sha256:c07da33a10b37147a04406f9059c799f589f8e3ba4262dea519a54e4fd519432' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/matchbox-window-manager.lock b/locks/matchbox-window-manager.lock index 4c74a09679f..c9b1872b326 100644 --- a/locks/matchbox-window-manager.lock +++ b/locks/matchbox-window-manager.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'e2ca315a4cbe1280eafdb9a5078063c87deea680' upstream-commit = 'e2ca315a4cbe1280eafdb9a5078063c87deea680' -input-fingerprint = 'sha256:2f5e484bacb713c749b9b82c92edbebcb9322f2a4f72b3fada05b3fe2ef150c8' +input-fingerprint = 'sha256:254e66ef8e1a11c3f86a0dc6882566bc5511cf14ecad51f7f7f51e3c8cdee1eb' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/mecab.lock b/locks/mecab.lock index 042b4ef324f..51e3ea9ce5e 100644 --- a/locks/mecab.lock +++ b/locks/mecab.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'e065e9362d90c15be0391a425d4a9bef6afcea90' upstream-commit = 'e065e9362d90c15be0391a425d4a9bef6afcea90' -input-fingerprint = 'sha256:beee244bd45a3275fda0f18fea3199ff1d6d536866c33d87b76e001ad110f9f3' +input-fingerprint = 'sha256:fb6a8d0b45b5bc752d494d137e83eafc4440351dee48863070e59fe83652147e' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/memkind.lock b/locks/memkind.lock index e52a5452319..b0b3326c12e 100644 --- a/locks/memkind.lock +++ b/locks/memkind.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '94e3deb1a1e7d5fcf56a07918f3c49ba4f0a526b' upstream-commit = '94e3deb1a1e7d5fcf56a07918f3c49ba4f0a526b' -input-fingerprint = 'sha256:f62f853ff6f4e44d4439b1d8eded8f77c407964395d9d52843425f41361d1275' +input-fingerprint = 'sha256:340b3e278c2001c7acd2b8a47cab622fe02a9af56e0265b7e8a17df0bce75858' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/microcode_ctl.lock b/locks/microcode_ctl.lock index f876a3c291a..b5b42bae728 100644 --- a/locks/microcode_ctl.lock +++ b/locks/microcode_ctl.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '490562515a66e732aa360e2ff455bbad1e139240' upstream-commit = '490562515a66e732aa360e2ff455bbad1e139240' -input-fingerprint = 'sha256:ab5684f9137afdd121d19188c72640b5ecbe56b0357fc8b5ea40fade2466a453' +input-fingerprint = 'sha256:1cfb36fa5d49fb71e55c120ee16479625e9568a1fac802cfa57d918d7bcc6d60' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/mod_proxy_cluster.lock b/locks/mod_proxy_cluster.lock index 88240eb6ae8..ab92f55921f 100644 --- a/locks/mod_proxy_cluster.lock +++ b/locks/mod_proxy_cluster.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '9ba1293ddbe02738860764170dde90b12509fa91' upstream-commit = '9ba1293ddbe02738860764170dde90b12509fa91' -input-fingerprint = 'sha256:abcbafe96c8a320e4c6a1febc0e7f9742d1f3d213ef5c21aa0117f2c9fb9d767' +input-fingerprint = 'sha256:7fc3fa506aa31aa530a3516932b71b12a3099cd51641cd3d6b2f4c763f60144a' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/mtdev.lock b/locks/mtdev.lock index f518d99e2d3..696f71fc696 100644 --- a/locks/mtdev.lock +++ b/locks/mtdev.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '015bed889d4ea995f27c88b6f0b6a8bb82766384' upstream-commit = '015bed889d4ea995f27c88b6f0b6a8bb82766384' -input-fingerprint = 'sha256:de4e3f8bf6f7cc29bb3712691ed82164f5c7c5de0063c971f6b09a3a45629544' +input-fingerprint = 'sha256:2ed6b64450d13382eda302b42f43953f7572158abb48dee5ea8101dc631b4f22' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/mysql8.4.lock b/locks/mysql8.4.lock index 37b9e493fcf..a11225158bb 100644 --- a/locks/mysql8.4.lock +++ b/locks/mysql8.4.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'cf3ad927381a537a94c11eb6aae5d301f8f2236d' upstream-commit = 'cf3ad927381a537a94c11eb6aae5d301f8f2236d' -input-fingerprint = 'sha256:a60ec208ca1be68f7d51cc4cfaf8e3a05c8a9ffe6d233e52bacbe62f60c7ad7e' +input-fingerprint = 'sha256:ee106678620115f7e95567c6dbb0bb0c1700ea21e00cd6726cc8f6e40c339d47' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/ncurses.lock b/locks/ncurses.lock index 32d4b22c687..76f008cbe44 100644 --- a/locks/ncurses.lock +++ b/locks/ncurses.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '441f1ce50687c7c64089bbb943f6dbc5ae923574' upstream-commit = '441f1ce50687c7c64089bbb943f6dbc5ae923574' -input-fingerprint = 'sha256:d331f2466dda8a8aae14acc206295808a497df8d2ae56b409cfa902216442f1e' +input-fingerprint = 'sha256:0253c48496e73514f04185a41eaa533385eb50b747b5bb68790a4c27721b678b' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/net-tools.lock b/locks/net-tools.lock index fa98daec293..98b61c1ccb4 100644 --- a/locks/net-tools.lock +++ b/locks/net-tools.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '725e65f6c708431a5a334591c53055e050b15d69' upstream-commit = '725e65f6c708431a5a334591c53055e050b15d69' -input-fingerprint = 'sha256:91574a9d64666300c6ed20ec85573742a2eff006436b8a63299449805cdc178d' +input-fingerprint = 'sha256:08d0f2164378a1adafe212fc88ab4d1bd4e2e2534bc6db5b99ff28a3cf25e59d' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/netcdf4-python.lock b/locks/netcdf4-python.lock index 992341485cc..3e1f414bdfe 100644 --- a/locks/netcdf4-python.lock +++ b/locks/netcdf4-python.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '7a6186ab7b87d2acb22d9961726450df7d602253' upstream-commit = '7a6186ab7b87d2acb22d9961726450df7d602253' -input-fingerprint = 'sha256:5881e123bf42ef190182d6e700f57447f0b1cc671f9187f87a8d4bf0efa1e14d' +input-fingerprint = 'sha256:cd771b37dab682b8b5063434192c48e3b602cca08d8a84fb33eb00aa6a6ed675' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/nfs-ganesha.lock b/locks/nfs-ganesha.lock index 9286678ad92..6265f6fd04d 100644 --- a/locks/nfs-ganesha.lock +++ b/locks/nfs-ganesha.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '88a5b41a3c45c4cf2680ec96dbde6984159a87ee' upstream-commit = '88a5b41a3c45c4cf2680ec96dbde6984159a87ee' -input-fingerprint = 'sha256:6701038b14d682839a2f9b6703b2a7e207a3b14bc1a2f57f1b4ead8987af07ee' +input-fingerprint = 'sha256:b014536d1e7a391fa7a66f80ea15f1d9eea2d25223126baab80731da41d9616f' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/nodejs22.lock b/locks/nodejs22.lock index 55db04865f6..952325bede0 100644 --- a/locks/nodejs22.lock +++ b/locks/nodejs22.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '3f831b206956f0701695686ec2f545a575111237' upstream-commit = '3f831b206956f0701695686ec2f545a575111237' -input-fingerprint = 'sha256:2828d72fc75168ab7c7cef49480f991631ba7910819f53a3b1c1a92271042ac8' +input-fingerprint = 'sha256:c03bdf1bb80f389d2b56baa7465ae0363a220f05d74c845e20de64c0d4216ee0' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/nodejs24.lock b/locks/nodejs24.lock index 098dab36ef6..b76d774df47 100644 --- a/locks/nodejs24.lock +++ b/locks/nodejs24.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'ee8ab0c54ce7f409e4740281a3a44d23648d9c35' upstream-commit = 'ee8ab0c54ce7f409e4740281a3a44d23648d9c35' -input-fingerprint = 'sha256:ab03fcd2aee9805da64c5c0617592debb519b7973a5c1ee5d5607e0829876c4e' +input-fingerprint = 'sha256:800793b0b7202dce5cad8729628b22fd21a8ece9f87f05c47408139885d39e67' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/nss.lock b/locks/nss.lock index 16aaf64cfb6..c0d5ec0def6 100644 --- a/locks/nss.lock +++ b/locks/nss.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'f97da13cbff826185fa4896bf6529cc44094056d' upstream-commit = 'a2e1a543d0c2cb811e939c90d9ebdbf9579468d6' -input-fingerprint = 'sha256:aedc7c09c5934392be3da086502bdd8a49f98876fa7573730636503f7430313f' +input-fingerprint = 'sha256:cae863bf6063b07e751b07d89bf5c545ba9615a9e92f0514921256053650c79b' resolution-input-hash = 'sha256:64a7f71de7e77e45026de92102649770a2534f3cfafae13ffac9c979b473f979' diff --git a/locks/numad.lock b/locks/numad.lock index 90296afcfa4..53f468aba3e 100644 --- a/locks/numad.lock +++ b/locks/numad.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'db883785ea37e0fd289524dee6f21c035760ce7c' upstream-commit = 'db883785ea37e0fd289524dee6f21c035760ce7c' -input-fingerprint = 'sha256:4d9aa399b88128376252693948f90af157c1c7bcac3954111b8e026beb14ba7e' +input-fingerprint = 'sha256:6579757a9695ee785203552cf1fdec231e1428dfd5423e5d1eb1d89aecdb803a' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/oniguruma.lock b/locks/oniguruma.lock index 1ed762e7482..6d256b22eb8 100644 --- a/locks/oniguruma.lock +++ b/locks/oniguruma.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'fcfa905419796bde85f9d531a7a9db3c3d0d2bbf' upstream-commit = 'fcfa905419796bde85f9d531a7a9db3c3d0d2bbf' -input-fingerprint = 'sha256:fed2b89034038f3430a74b313bb5cce41a82fb9d4453e2477d24238041d58197' +input-fingerprint = 'sha256:4158ed2beffa0d4acb785dc65b1917ba6ea1f4693c15afa47c717abf3b403dac' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/openbios.lock b/locks/openbios.lock index 619bf0aeaf4..a07dd0ce35d 100644 --- a/locks/openbios.lock +++ b/locks/openbios.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '086b64fc6eef1bcae87343c28ec336d54ba778a7' upstream-commit = '086b64fc6eef1bcae87343c28ec336d54ba778a7' -input-fingerprint = 'sha256:381c0a720b64262309ce7ffc1dfddc65391b5a434146992de8e6536de20bf65f' +input-fingerprint = 'sha256:4590cd7c512f4924c5ece1a48961e1664ecc68909e06beaf89481c0cbdba21cc' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/pacemaker.lock b/locks/pacemaker.lock index dceda236982..6413df23e86 100644 --- a/locks/pacemaker.lock +++ b/locks/pacemaker.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '56903046276427fe4a46c08f5a19be013f3038d4' upstream-commit = '56903046276427fe4a46c08f5a19be013f3038d4' -input-fingerprint = 'sha256:e1a000c4306a6eb93eec3b3e080a80a7fefa6d9e66a9db690fd2c32f3f6433f5' +input-fingerprint = 'sha256:afad19fd053c004e2d12739bb970fc0221997eb835ff4e8f90a93fa7dd258841' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/paktype-naskh-basic-fonts.lock b/locks/paktype-naskh-basic-fonts.lock index 61c30101e9b..bba0fd0ee03 100644 --- a/locks/paktype-naskh-basic-fonts.lock +++ b/locks/paktype-naskh-basic-fonts.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '7bee249ccbe9df73d65c5e4263fb39c0984dd2a6' upstream-commit = '7bee249ccbe9df73d65c5e4263fb39c0984dd2a6' -input-fingerprint = 'sha256:10e386af255d77e427f8d542529fcbaf4fa688ffb8699068dd4ad2920044286f' +input-fingerprint = 'sha256:9e18fb3219b2c9b743c8c8e1cf6c6462e55344ffe03e633f6320153b0e1fb43f' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/pcre.lock b/locks/pcre.lock index bdf0e90abf8..18bc8c903b7 100644 --- a/locks/pcre.lock +++ b/locks/pcre.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '172ff23d31a500ce220e173da35991c1602a3706' upstream-commit = '172ff23d31a500ce220e173da35991c1602a3706' -input-fingerprint = 'sha256:2e4c98869c85976eae70ab0a6e8b66f175fb291d813879e243c9b169d0dbb98d' +input-fingerprint = 'sha256:0289a60a123893bfd6b278d2d3232f5bc4b20b45d56dbaa942759bee97d5f03e' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/pcre2.lock b/locks/pcre2.lock index 92dba1d8315..d96e7136a6d 100644 --- a/locks/pcre2.lock +++ b/locks/pcre2.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '7564d9d768d993dc417a65d0c9c66d9a857d527d' upstream-commit = '7564d9d768d993dc417a65d0c9c66d9a857d527d' -input-fingerprint = 'sha256:bbd41b847f3ce878f9a2a82458dc161410e257a8f6ac3c56a04f6992eed32a4e' +input-fingerprint = 'sha256:01c63916de389bdff6c3cd12658e11f1e6f285a2dcc629940c8a2a6ac8947fb3' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/pcsc-lite-asekey.lock b/locks/pcsc-lite-asekey.lock index 07469349134..c82dc771f65 100644 --- a/locks/pcsc-lite-asekey.lock +++ b/locks/pcsc-lite-asekey.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'df8018868dc20c2f73a29ad536df5cbd34f4c187' upstream-commit = 'df8018868dc20c2f73a29ad536df5cbd34f4c187' -input-fingerprint = 'sha256:6dc0a4319e4cc3ee22e8b9d55125761be17c49bf0df657434a0715d330f013f0' +input-fingerprint = 'sha256:af116b908de5fb282b79b143813694ba742bc8b4988ae3434114cf2e2f837043' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/perl-Object-Pad.lock b/locks/perl-Object-Pad.lock index 02aed312e43..e0014c0d33d 100644 --- a/locks/perl-Object-Pad.lock +++ b/locks/perl-Object-Pad.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '1f9da1445ccefd924360ffb2c1098aab2b2b87d0' upstream-commit = '1f9da1445ccefd924360ffb2c1098aab2b2b87d0' -input-fingerprint = 'sha256:9a574fdbf8cdd99dabc8b246ae1186c55b9ccb50c9907686e92b5e58e3f5dfef' +input-fingerprint = 'sha256:2a084871d629fb8fc051abfb082122b58d3747e3f8032b74c9bdbf5c1c4a6948' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/perl-XML-Dumper.lock b/locks/perl-XML-Dumper.lock index 2d475508340..29199c88f52 100644 --- a/locks/perl-XML-Dumper.lock +++ b/locks/perl-XML-Dumper.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '050eb0aaec9588e4fbe83bcc44d9ecc691757c75' upstream-commit = '050eb0aaec9588e4fbe83bcc44d9ecc691757c75' -input-fingerprint = 'sha256:a70005f22facf8178b3bcf3a5463f73da10d67f1c44676734ebdfe494b640f56' +input-fingerprint = 'sha256:c6558fc9f9640d7190581bf6968608831016667731693a0ba04692598fee4491' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/php-phpdocumentor-reflection-common2.lock b/locks/php-phpdocumentor-reflection-common2.lock index b4746aaff67..db9daf33a5a 100644 --- a/locks/php-phpdocumentor-reflection-common2.lock +++ b/locks/php-phpdocumentor-reflection-common2.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '0877389b416b7132fa7a965b681c201c4546c244' upstream-commit = '0877389b416b7132fa7a965b681c201c4546c244' -input-fingerprint = 'sha256:d757f2d9808beadc14b4a5a02140069f9fe8e54b403c4d42c046bf25b54750ec' +input-fingerprint = 'sha256:a6d5df68f29795869bc19f0d684ed8d01fff1be60858df97d3c120a848b854ca' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/php-phpdocumentor-type-resolver1.lock b/locks/php-phpdocumentor-type-resolver1.lock index 5ab9cb930bb..2b9b6c0386d 100644 --- a/locks/php-phpdocumentor-type-resolver1.lock +++ b/locks/php-phpdocumentor-type-resolver1.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'f886f8170b54915a4cf5f910045c258152c99818' upstream-commit = 'f886f8170b54915a4cf5f910045c258152c99818' -input-fingerprint = 'sha256:73d6c3d98b683b114f4f972370724571e7106f6e93efa9f3c035aa8818dbe1bc' +input-fingerprint = 'sha256:1f4c833ca066e9c038e3a02c49b5721b6df79e3fb3b52a835b92025b163ef68e' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/php-webmozart-assert2.lock b/locks/php-webmozart-assert2.lock index 2aefaca7863..583b94ce69d 100644 --- a/locks/php-webmozart-assert2.lock +++ b/locks/php-webmozart-assert2.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'efcafb9333e87560c02187c4c47a9f5e7430ddad' upstream-commit = 'efcafb9333e87560c02187c4c47a9f5e7430ddad' -input-fingerprint = 'sha256:3a1fcfea2d480f45ddc66f0171b0fe8e59bcad8eb5aa9d7da395417fbcfd861e' +input-fingerprint = 'sha256:2668d467f4d79b8d43b8acfa211a5a618c489ff5bcffcd182b4ac3b081cc3672' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/pipewire.lock b/locks/pipewire.lock index 99aa1a76649..b2d577eb230 100644 --- a/locks/pipewire.lock +++ b/locks/pipewire.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'f930436e78f3c6c32901254baf4979bab7c2710a' upstream-commit = 'f930436e78f3c6c32901254baf4979bab7c2710a' -input-fingerprint = 'sha256:1dc967243eeed7950f87593790183681e01b198c6c8177a44cf0d8d1c81148db' +input-fingerprint = 'sha256:06113f2b49915dfc348b1c3da4ffb1479d5b1826e5ffa2c9ecf6023edec8bf5b' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/plexus-i18n.lock b/locks/plexus-i18n.lock index acc8e297384..be95e3447ee 100644 --- a/locks/plexus-i18n.lock +++ b/locks/plexus-i18n.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '8764b5cca95e2900884ef1b3274cd32375a2a64b' upstream-commit = '8764b5cca95e2900884ef1b3274cd32375a2a64b' -input-fingerprint = 'sha256:2d1e0d9b5e30566c109ab9fc236dd4d78f966b156d426cd56952d97e17aed2ff' +input-fingerprint = 'sha256:62865d3069fb7e23ffc5a2538156c34e5c3780a7b4361e4558299e3fc526bc0d' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/postgresql18-decoderbufs.lock b/locks/postgresql18-decoderbufs.lock index 301965d7339..420360d9d9a 100644 --- a/locks/postgresql18-decoderbufs.lock +++ b/locks/postgresql18-decoderbufs.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '6028990dc56b68094af2b2e71040a9b05b4e3ce2' upstream-commit = '6028990dc56b68094af2b2e71040a9b05b4e3ce2' -input-fingerprint = 'sha256:275cec817de8b9d59f7c388bc544c8b8883a6048b837a98511d1d9b80477d5b4' +input-fingerprint = 'sha256:f883c3980d91218c782754a0dbe11ebe21fbba578317f07816167b841891ed86' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/procps-ng.lock b/locks/procps-ng.lock index 786f8b71ca1..39e9f386d0f 100644 --- a/locks/procps-ng.lock +++ b/locks/procps-ng.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '7d6b3956704c6a45c95d90b8a6f9f18b37f03848' upstream-commit = '7d6b3956704c6a45c95d90b8a6f9f18b37f03848' -input-fingerprint = 'sha256:5859ec57ea76d59e4f67cdc88bdd4a2f879a18e933fcaaa4b3f8762546427d13' +input-fingerprint = 'sha256:cce1b36f795d872690762322f46cd331a41371e74f0877419c5d8b9c7f532d3d' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/pulseaudio.lock b/locks/pulseaudio.lock index 9385dbaec95..b838d939fbd 100644 --- a/locks/pulseaudio.lock +++ b/locks/pulseaudio.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '9afb54a4dc0503fb2beb1853f6abe627713c0cf2' upstream-commit = '9afb54a4dc0503fb2beb1853f6abe627713c0cf2' -input-fingerprint = 'sha256:b60c88cc394e0ef45d05f9d26f19f364d5c0186d583a96a71f8c3b4b37ddebb1' +input-fingerprint = 'sha256:962d5277f85f5386874a35551c3836c702fd4882fc90ffa7becaedd04a92babe' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/python-blivet.lock b/locks/python-blivet.lock index cca8c1bc389..739fce6c6b7 100644 --- a/locks/python-blivet.lock +++ b/locks/python-blivet.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '330d0d9977fe371ec4c14f03d693c6943d023586' upstream-commit = '330d0d9977fe371ec4c14f03d693c6943d023586' -input-fingerprint = 'sha256:e8a98c8e5f433e2820ea1ca2c377f5e24526cfd1da4dab754b307cd94f44ffdd' +input-fingerprint = 'sha256:98f6b6b32ce59ef77bad21ebe32c24ce9700450da69e7fd4b8ef25bf887370f0' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/python-d2to1.lock b/locks/python-d2to1.lock index 2ef3f471915..d65b44ead01 100644 --- a/locks/python-d2to1.lock +++ b/locks/python-d2to1.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'dc987f3bd929b10147424bf8030828c7a4763a39' upstream-commit = 'dc987f3bd929b10147424bf8030828c7a4763a39' -input-fingerprint = 'sha256:8e8875f58c0807b06fb885684deb497f8951c6a069ea75c3190aa4032d6721c5' +input-fingerprint = 'sha256:9bd76d1c1064f1246afd3b489cfd8cca55fa3f4b619de559a58b718239cc2b5b' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/python-qt5.lock b/locks/python-qt5.lock index ae17c912b36..f1fc6066439 100644 --- a/locks/python-qt5.lock +++ b/locks/python-qt5.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '612acee891cf3656f1120abf03966ad3c7565c25' upstream-commit = '612acee891cf3656f1120abf03966ad3c7565c25' -input-fingerprint = 'sha256:335c7f67969e3421e07af4d7609e8a637a4a5443554af18771f616d57b3b4f4c' +input-fingerprint = 'sha256:a00e170c826226308f557e2873bc5b5900af900b85a6321e2cabdfcb2082badf' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/python-recommonmark.lock b/locks/python-recommonmark.lock index c57e2286fa8..6a7d22c3576 100644 --- a/locks/python-recommonmark.lock +++ b/locks/python-recommonmark.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '613c1dddc7512ceaec6d5b9260e82f882acbe6df' upstream-commit = '613c1dddc7512ceaec6d5b9260e82f882acbe6df' -input-fingerprint = 'sha256:6c0d4b4f917d2e60d0171234f780b5e5a6042c3dcde40da3d3f23ee61c14c330' +input-fingerprint = 'sha256:ad6a4ff86fb5a001404f87aa9fc5fc1f14b8d6cec5e154edeea17a32136c1b44' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/python-sphinx-basic-ng.lock b/locks/python-sphinx-basic-ng.lock index 01de5f08f5a..b49d5ddc306 100644 --- a/locks/python-sphinx-basic-ng.lock +++ b/locks/python-sphinx-basic-ng.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '624d2cfbd8b4745c1b7c0968d106453ed7543533' upstream-commit = '624d2cfbd8b4745c1b7c0968d106453ed7543533' -input-fingerprint = 'sha256:0d64a09800d81a33b8529063d60e4fff0278454b24498b8d3e1c3f336f4ad11d' +input-fingerprint = 'sha256:2740b2f8ebbb818c7f4dfa32ffb24226c0dec95580f060a0de796569ff1827c5' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/python-sphinx-theme-builder.lock b/locks/python-sphinx-theme-builder.lock index 37a4c3bce5a..12fdd33e790 100644 --- a/locks/python-sphinx-theme-builder.lock +++ b/locks/python-sphinx-theme-builder.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '263294fe745f974423d721426a6360b07a8b9eab' upstream-commit = '263294fe745f974423d721426a6360b07a8b9eab' -input-fingerprint = 'sha256:95749629024035e036b001ac8985ccbe05afb4012a47ca561788507927ecc591' +input-fingerprint = 'sha256:ee100473c78ccd851bd118354cb216f4438a0a2b1bcfde99599ee61ab266dff4' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/qt-mobility.lock b/locks/qt-mobility.lock index fc406eeb04c..5b3fe16d340 100644 --- a/locks/qt-mobility.lock +++ b/locks/qt-mobility.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '4a18fb61683e015b6d3f67b374cfe15d49559d8e' upstream-commit = '4a18fb61683e015b6d3f67b374cfe15d49559d8e' -input-fingerprint = 'sha256:bf75c00d0afe56b62ec772f0c20a7a8a68910e41098d43d2add67e0c7758e126' +input-fingerprint = 'sha256:04465c3709fcde3d4daf07cab9cce433747096d75e9c3038d97c6a7e3347ccee' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/qt5-qtwebkit.lock b/locks/qt5-qtwebkit.lock index 082be587162..e6fa40e8f36 100644 --- a/locks/qt5-qtwebkit.lock +++ b/locks/qt5-qtwebkit.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '2058f51438cbeb0d2b37e63efcf6e6fad89560a7' upstream-commit = '2058f51438cbeb0d2b37e63efcf6e6fad89560a7' -input-fingerprint = 'sha256:698497d4d968a0c789fa958b6ae554c270a4e831fdf0e0c22c33f8c127d31cbe' +input-fingerprint = 'sha256:e656a1fbeaf982eeb68c0114979a31112e3ab8c1bcb80794c978da462624f831' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/resource-agents.lock b/locks/resource-agents.lock index 00cdff2ec32..f9f75abb61f 100644 --- a/locks/resource-agents.lock +++ b/locks/resource-agents.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'fba603299eae5c07279b475deac9e1ad0671c52e' upstream-commit = 'fba603299eae5c07279b475deac9e1ad0671c52e' -input-fingerprint = 'sha256:e799ea58dcb8b765c003c0428de0cc76d4036be8c2a075b5c275d143ad1b8c0e' +input-fingerprint = 'sha256:89d164d41df684dd1fd5134cc18f7f2a77a3f90b01ca9604897958ec6ef45afc' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/rocm-compilersupport.lock b/locks/rocm-compilersupport.lock index dc80dea5413..76a894d0354 100644 --- a/locks/rocm-compilersupport.lock +++ b/locks/rocm-compilersupport.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '878261eeebbede5f9f220522155fb1ccd8110df8' upstream-commit = '878261eeebbede5f9f220522155fb1ccd8110df8' -input-fingerprint = 'sha256:2aded3e830fa70d51535bad21b0c45bc25ed26ea39e37844209e485a038bf244' +input-fingerprint = 'sha256:649440637b0efee385def8473feb61a74298f241ee40ae0dd9338f41401d4ee6' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/rpm.lock b/locks/rpm.lock index 3940a7747c0..d798c74eb19 100644 --- a/locks/rpm.lock +++ b/locks/rpm.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '2b5878756a9abdc9ae091b4e786e30f21af5ac40' upstream-commit = '2b5878756a9abdc9ae091b4e786e30f21af5ac40' -input-fingerprint = 'sha256:0fd4111d69e355dc98d74f5581a2fb1b1c5665208908740d9988596e591aa502' +input-fingerprint = 'sha256:434824531f191e51afb97c59f0a7353f695b978f0203fa984fab842bd1a80b60' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/rsync.lock b/locks/rsync.lock index e96406a70ca..76517a9252d 100644 --- a/locks/rsync.lock +++ b/locks/rsync.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '5a246fed517767fafafb7e56ee8a3c1934939a25' upstream-commit = '5a246fed517767fafafb7e56ee8a3c1934939a25' -input-fingerprint = 'sha256:8d19ce190a2fe42ebc1f148e6a65c6deca386ac68caa6098dc8fa3e8d2abd39d' +input-fingerprint = 'sha256:b8ac1ef930f369f986e66f39deb56e6b19733e68b92ddebd7119b93d272cbdd0' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/rubygem-nokogiri.lock b/locks/rubygem-nokogiri.lock index 78e5989fefe..a2f511781b8 100644 --- a/locks/rubygem-nokogiri.lock +++ b/locks/rubygem-nokogiri.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'bd53c9fdecabc71015ec523d9be11d50b9a83302' upstream-commit = 'bd53c9fdecabc71015ec523d9be11d50b9a83302' -input-fingerprint = 'sha256:cca08a10cee968dd02b4030743008cd3ecb50a05bd1cea0922846329a507f4db' +input-fingerprint = 'sha256:2a9aad95f263d655647451d6de1f1808e58e2a58aa0d31edcce5536f767552be' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/rubygem-rake.lock b/locks/rubygem-rake.lock index fd7845421d0..5b5d76b2506 100644 --- a/locks/rubygem-rake.lock +++ b/locks/rubygem-rake.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '198a0a3a905f6a71b9f84974dd00d0c1825269c4' upstream-commit = '198a0a3a905f6a71b9f84974dd00d0c1825269c4' -input-fingerprint = 'sha256:a927343a1c4df8d0fcfb3ea94c3f86f59adcbdd60aa0a865c4e7a9cde0dfc328' +input-fingerprint = 'sha256:44d4f8874ea62c0b221da60734df87f180001808a3f4b322b9fab69b3169bd01' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/rubygem-rspec-core.lock b/locks/rubygem-rspec-core.lock index 26938c101ef..17a5549e5ae 100644 --- a/locks/rubygem-rspec-core.lock +++ b/locks/rubygem-rspec-core.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '7effbf81cb92d50fc56a4061a342eb70a98d5bac' upstream-commit = '7effbf81cb92d50fc56a4061a342eb70a98d5bac' -input-fingerprint = 'sha256:a1ee897095a2405854dc12fe45c304c9b105397b03fff1a000432d9dd3721844' +input-fingerprint = 'sha256:8032a3fa84febef516a32828319d89248fa9cd705006638b489336c4c7334f11' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/rubygem-rspec-expectations.lock b/locks/rubygem-rspec-expectations.lock index 9f11e5bcf58..e05560bcafb 100644 --- a/locks/rubygem-rspec-expectations.lock +++ b/locks/rubygem-rspec-expectations.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '87a8d5773d6e7f66e68b998c8ca209df00d4498d' upstream-commit = '87a8d5773d6e7f66e68b998c8ca209df00d4498d' -input-fingerprint = 'sha256:bd66f162907a61a9e4566059af06e44fce961ed8aa2296f76f8a58a0dde94942' +input-fingerprint = 'sha256:3f3c505545a07fc0893d54cf44e78d7f6dc5b435274fcde98d8e94701c299712' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/rubygem-rspec-mocks.lock b/locks/rubygem-rspec-mocks.lock index ab4f0db51aa..3fcf4e5b438 100644 --- a/locks/rubygem-rspec-mocks.lock +++ b/locks/rubygem-rspec-mocks.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '71926956c76df897b5b578a2e6f5718433530c69' upstream-commit = '71926956c76df897b5b578a2e6f5718433530c69' -input-fingerprint = 'sha256:b4966bbfa848055a475566837464eafbbed251d3a5bb2270e39b5936057a18b7' +input-fingerprint = 'sha256:5c357641b8139a233a71dbb14d29cc165cc39d9d35ed3fb57ac9f98764f1dec7' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/rubygem-rspec-support.lock b/locks/rubygem-rspec-support.lock index 26b82f8c9b2..4075aec4335 100644 --- a/locks/rubygem-rspec-support.lock +++ b/locks/rubygem-rspec-support.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '22d8f3904099881523e32931e7e9c844226a5cd0' upstream-commit = '22d8f3904099881523e32931e7e9c844226a5cd0' -input-fingerprint = 'sha256:06824b9538872c322a24af2ad4bc2fc49d6c8dae380f6dadf3924208a0c4bdcb' +input-fingerprint = 'sha256:77e993d89ac84aef609738e1a8da894ea77d9f6369c8cdd53e7a0d30809652b1' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/sbd.lock b/locks/sbd.lock index 9159f7356ed..ce514f53435 100644 --- a/locks/sbd.lock +++ b/locks/sbd.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '40589e01760d17755afaab9b814731292bc6b09e' upstream-commit = '40589e01760d17755afaab9b814731292bc6b09e' -input-fingerprint = 'sha256:cac357552c228a2daaa82cbdac119092e8539f6c65cd655a33a4314a028c9bca' +input-fingerprint = 'sha256:5477756240688e24e8fc1c3c880e4173775df6fc1b34fa8a7ced4615bf334718' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/scl-utils.lock b/locks/scl-utils.lock index 9559c3e2eae..3b12fa80149 100644 --- a/locks/scl-utils.lock +++ b/locks/scl-utils.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '2fd16e86af9e611007c2e39782f87a50a990b4e8' upstream-commit = '2fd16e86af9e611007c2e39782f87a50a990b4e8' -input-fingerprint = 'sha256:c7b4dbbd566af699ac9746538f4aa072abe26b661c754819de01dcdb51bc5d29' +input-fingerprint = 'sha256:9e47e446a822ee21a4eff6d889b5ed004adf81301f8c034d124fc74a55980ed4' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/softhsm.lock b/locks/softhsm.lock index 335173928ce..ac9d6e4b06a 100644 --- a/locks/softhsm.lock +++ b/locks/softhsm.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '281d7c2fbf25a349cb9bb6e87b82ba016b2f5a28' upstream-commit = '281d7c2fbf25a349cb9bb6e87b82ba016b2f5a28' -input-fingerprint = 'sha256:f48f8af6b309a96741747850a8497e4a5bc6f4bfcd1aad1687bc3c26e8e23e1f' +input-fingerprint = 'sha256:471046e5d1eacb5373ae5cc004e38879bff0632b381e18e289adcb2592bcfcb2' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/spandsp.lock b/locks/spandsp.lock index 9739351b9fb..3755010ec83 100644 --- a/locks/spandsp.lock +++ b/locks/spandsp.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '766accc9968180ed835d722716d24c0754617dfb' upstream-commit = '766accc9968180ed835d722716d24c0754617dfb' -input-fingerprint = 'sha256:c157c2736cba8103c2ed158a4665143b0cf3b693e5b854776d9c2d027101eab8' +input-fingerprint = 'sha256:f0cd29ef41ac1d2aeb24059bb3027ec5df98905e5483475353210a4e84e6e7f6' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/squashfs-tools.lock b/locks/squashfs-tools.lock index 8a31677707c..d1e95069f00 100644 --- a/locks/squashfs-tools.lock +++ b/locks/squashfs-tools.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '246f20758c7bfa7553a129b5822e9b009652b2dd' upstream-commit = '246f20758c7bfa7553a129b5822e9b009652b2dd' -input-fingerprint = 'sha256:e17beb53437fbf3a3ec63fea772606a7373ed6613b8101882c4442cdf130a0c5' +input-fingerprint = 'sha256:1cf6f7933a09d645c445e7b6b36becb961541679e42453b33a30cfaa34146303' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/syslinux.lock b/locks/syslinux.lock index 2101f64ca70..ff0cea75637 100644 --- a/locks/syslinux.lock +++ b/locks/syslinux.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'e12d387bf86083c7b1082f748e3b6e9d3a15641c' upstream-commit = 'e12d387bf86083c7b1082f748e3b6e9d3a15641c' -input-fingerprint = 'sha256:25c2f5cee088789d27fe8fbed18c6184e4c8763a2989ad014f94d813aeefbe9c' +input-fingerprint = 'sha256:574d2f81543a859e4624edc142746b4e26def66adec5efedbe6ede569925c854' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/systemtap.lock b/locks/systemtap.lock index d02b2939b0b..893192593eb 100644 --- a/locks/systemtap.lock +++ b/locks/systemtap.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'd06e77cc8d15d8f0fc861c82cde5af7f7a12beb1' upstream-commit = 'd06e77cc8d15d8f0fc861c82cde5af7f7a12beb1' -input-fingerprint = 'sha256:2da25aa9ad786ee5b902a843031823c05dc00331401b1750c3f278696b205663' +input-fingerprint = 'sha256:d8118c788456371049e586071edff516a9a3a09b6180677c52d5801aeebebbd1' resolution-input-hash = 'sha256:839b5466d4855563ee48b649e3fe11da139d12b234cdf7508df2a0b850388295' diff --git a/locks/tesseract-tessdata.lock b/locks/tesseract-tessdata.lock index 7887c8ecbe4..0fb07dce41f 100644 --- a/locks/tesseract-tessdata.lock +++ b/locks/tesseract-tessdata.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '1037a092f9d05e56a2fb9a8246115dc782c72943' upstream-commit = '1037a092f9d05e56a2fb9a8246115dc782c72943' -input-fingerprint = 'sha256:d01e4ffd56f1df4e1f8c4a8329842f29ae51811cb19ac37df7386c7928f79ede' +input-fingerprint = 'sha256:d4bf26ced9fb855fd7fb5e6c1a37837cb23426cfe3abd07793551d5e11082969' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/tpm2-openssl.lock b/locks/tpm2-openssl.lock index 2dbdeecf74b..34aaa2a7e76 100644 --- a/locks/tpm2-openssl.lock +++ b/locks/tpm2-openssl.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '278b6ea67e09a3907b93248f4c570888fa7e2395' upstream-commit = '278b6ea67e09a3907b93248f4c570888fa7e2395' -input-fingerprint = 'sha256:2e70f919a1b6ccd2062fc56f5803c21bcbe1b3086677aebabb88bfe8ef733d9a' +input-fingerprint = 'sha256:850a4ebfffbcf0aed0164a0bd05f73b688135cf9d897cc4d7bfe5297e3689b2b' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/tpm2-pkcs11.lock b/locks/tpm2-pkcs11.lock index 1e2eb06a0d2..b7ffbc1fb40 100644 --- a/locks/tpm2-pkcs11.lock +++ b/locks/tpm2-pkcs11.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '1847a01c3ea3af57e3d68313f63303e77f3fb82b' upstream-commit = '1847a01c3ea3af57e3d68313f63303e77f3fb82b' -input-fingerprint = 'sha256:26fddfb6c750ed9e891aa1e685cd381d27bd4289a8abc52fb6efb43a9fcae7eb' +input-fingerprint = 'sha256:fbf8554061857fe7e5d507aa7ee659e3abde58243f1196e39b5e986911adf444' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/tpm2-tools.lock b/locks/tpm2-tools.lock index 99aaf1d2912..c90b9baceca 100644 --- a/locks/tpm2-tools.lock +++ b/locks/tpm2-tools.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '0a64626a2a834cd6a3c4cac17a9af62c3cb9e8a6' upstream-commit = '0a64626a2a834cd6a3c4cac17a9af62c3cb9e8a6' -input-fingerprint = 'sha256:4bcccfb51e4da5d150e511635b113ebe75b42bcbda7ccb1aa88ade5b9014cb4e' +input-fingerprint = 'sha256:b299e8aaa6d21486b16502712ee8758560826c5eb9b6621d8bd03acf8e8aca9d' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/tpm2-tss.lock b/locks/tpm2-tss.lock index 0141b4fca11..296278227d6 100644 --- a/locks/tpm2-tss.lock +++ b/locks/tpm2-tss.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '7f13b9f2a3811b0ef4587e9f10dac18a2081406e' upstream-commit = '7f13b9f2a3811b0ef4587e9f10dac18a2081406e' -input-fingerprint = 'sha256:c79b2832efa5120351150110cf8d50b9e92a693292f34a810a7b4b6afd489895' +input-fingerprint = 'sha256:999ec673db21761c748f6925e23091335051fba7d2637fc720b541ea9ec3c0b0' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/tuned.lock b/locks/tuned.lock index d68ad2be83e..6756e739dd0 100644 --- a/locks/tuned.lock +++ b/locks/tuned.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '3be5119cee140cb521eb268566023c3640ba29ef' upstream-commit = '3be5119cee140cb521eb268566023c3640ba29ef' -input-fingerprint = 'sha256:f4e6de1c28797acb67e64559f0bd3838c052f7b663a376195067e014494853fe' +input-fingerprint = 'sha256:552ceb6f73c8208ba15a1254b17a176a7ce33390a9391f8e6cc2efcda6bf71ff' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/ubdsrv.lock b/locks/ubdsrv.lock index 36f5d0eeebb..791c4cd0c30 100644 --- a/locks/ubdsrv.lock +++ b/locks/ubdsrv.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '47b43a80f1fbbfc38915c3ee00669c4042b7ff31' upstream-commit = '47b43a80f1fbbfc38915c3ee00669c4042b7ff31' -input-fingerprint = 'sha256:ab6610a5ccc9a9b64c0d97f7d4be4f6cba0f5351588fa9f032c33824ef508151' +input-fingerprint = 'sha256:5d3edd76b23e2d039a7c71075078785de635aba6a3c3788a6c2fe164924d55f9' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/uboot-tools.lock b/locks/uboot-tools.lock index 9aaa9660307..c5e2e2cbb29 100644 --- a/locks/uboot-tools.lock +++ b/locks/uboot-tools.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '193201a4f187f39b164ce5fb00c924c726e11ff9' upstream-commit = '193201a4f187f39b164ce5fb00c924c726e11ff9' -input-fingerprint = 'sha256:ac931ef367b45ab8a83267684a844386021106172535014bd7b40b80c29bf282' +input-fingerprint = 'sha256:199b9e9be7a7b3cffeb81a8dd505c4e5043c9bae4db55efea09f59fe2896caa2' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/urlview.lock b/locks/urlview.lock index 35ade1f22ff..7a535d188e0 100644 --- a/locks/urlview.lock +++ b/locks/urlview.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'b5146ed72390639051eec8b6bbf7fbd370a1a95b' upstream-commit = 'b5146ed72390639051eec8b6bbf7fbd370a1a95b' -input-fingerprint = 'sha256:9e42f3e9e58cac78baedc4764c6681c727d57921407b1479f022539f6dfbec08' +input-fingerprint = 'sha256:d196a48fb35f7e6b7c12b885a6d766cf18736a71a67ba1bf4a6d3b5e830b3017' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/w3m.lock b/locks/w3m.lock index 04ad5097769..cdd6168e7da 100644 --- a/locks/w3m.lock +++ b/locks/w3m.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '98dfe958b9ed8692667a7d9660229e128fe7eeb2' upstream-commit = '98dfe958b9ed8692667a7d9660229e128fe7eeb2' -input-fingerprint = 'sha256:1ec3a4aad1a812d8078a488f3747b4f94964703b6d9df6af654affaf4b82282a' +input-fingerprint = 'sha256:46d6e24ad31d5ab1136c5fe541168e95f4368b9ea61a9b384cc391d9d9124eb2' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/xclip.lock b/locks/xclip.lock index 80f2efe7e6f..b0a5dc268f5 100644 --- a/locks/xclip.lock +++ b/locks/xclip.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '38611041f8e9b933698fed4aa414854468e9c385' upstream-commit = '38611041f8e9b933698fed4aa414854468e9c385' -input-fingerprint = 'sha256:d17f05cc87a3445061e8c37c8168878d6d722f4d9473244b257c84d6f979965b' +input-fingerprint = 'sha256:153ea46e7be5c099c65c1c95046cd2a203dbf95107374d133e0b5b5140ae46c9' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/xhtml1-dtds.lock b/locks/xhtml1-dtds.lock index 1c5370766b8..4429e59f31d 100644 --- a/locks/xhtml1-dtds.lock +++ b/locks/xhtml1-dtds.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '533260c86ebcf2c0b48e297ae403b7b7f7c42ed9' upstream-commit = '533260c86ebcf2c0b48e297ae403b7b7f7c42ed9' -input-fingerprint = 'sha256:5140204a82f4b6044f31e4ba8c4b2a46dee1480d95474be9c04f2636ae97b188' +input-fingerprint = 'sha256:1865ab9037877e78d821efa484d45ab63414af04532f9ac50dfb7766d668f223' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/xkeyboard-config.lock b/locks/xkeyboard-config.lock index 43fa34ee1ef..549d6649aaa 100644 --- a/locks/xkeyboard-config.lock +++ b/locks/xkeyboard-config.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '4c167e6430fbcb5c584614cec8815aac5ed26b16' upstream-commit = '4c167e6430fbcb5c584614cec8815aac5ed26b16' -input-fingerprint = 'sha256:2c52efdd42134621e6383da24cb9e72ad6779e972eaed31b17107b3bc47308c8' +input-fingerprint = 'sha256:9b7080c366f709a2aceb1c8d81c9f819988e40bd741ae329b49d8b42a2cb020e' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/xmlsec1.lock b/locks/xmlsec1.lock index 0dcd8651273..b7d4ebc3dc5 100644 --- a/locks/xmlsec1.lock +++ b/locks/xmlsec1.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'cb530983f6c57adcf0547c93e0b6ce9458486115' upstream-commit = 'cb530983f6c57adcf0547c93e0b6ce9458486115' -input-fingerprint = 'sha256:414e37855a4c41e44f3488c61bee16f1fec7742141ecc5ab493fd83c765fcc32' +input-fingerprint = 'sha256:0f7569afc3c6a6185cfdafba138492b11c122162f78fd5e20047f54707c05115' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/xorg-x11-drv-evdev.lock b/locks/xorg-x11-drv-evdev.lock index a49f13e6d63..1d8b2c5dcc1 100644 --- a/locks/xorg-x11-drv-evdev.lock +++ b/locks/xorg-x11-drv-evdev.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'a50ba121d9aa99c897495245a4a9d6236643ae2d' upstream-commit = 'a50ba121d9aa99c897495245a4a9d6236643ae2d' -input-fingerprint = 'sha256:5e3e95ce535f8a70bf73066880a4fafd333247a7bf19b7d323ddf88e902f7804' +input-fingerprint = 'sha256:159e0c09ddb198f28a86658a3e233b690040d6f38b953d9566b8f2de3b9c83aa' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/xorg-x11-drv-libinput.lock b/locks/xorg-x11-drv-libinput.lock index d8e06481449..262e16da31a 100644 --- a/locks/xorg-x11-drv-libinput.lock +++ b/locks/xorg-x11-drv-libinput.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '99e3c17a06f16c3464950c99a91db36b70c17fe2' upstream-commit = '99e3c17a06f16c3464950c99a91db36b70c17fe2' -input-fingerprint = 'sha256:48655ed68f356e1681ba54d7db185106a3926f99479bc150c55f140f9ae7ec49' +input-fingerprint = 'sha256:8bbd3dcb572c2bf4c2b1f5e89e329b71548f1bf76f749ddf6450fb27c92f3072' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/xorg-x11-drv-wacom.lock b/locks/xorg-x11-drv-wacom.lock index 26870cedd2f..c13667de74f 100644 --- a/locks/xorg-x11-drv-wacom.lock +++ b/locks/xorg-x11-drv-wacom.lock @@ -2,5 +2,5 @@ version = 1 import-commit = 'fa057afa4046df69082f5993dd1d62e87576ee03' upstream-commit = 'fa057afa4046df69082f5993dd1d62e87576ee03' -input-fingerprint = 'sha256:b28232a45b0e6f10d2e59a9836fe0b953a1b49d6fdb5266f86ccf824dd647340' +input-fingerprint = 'sha256:433f7a67803c990f2f4a5e96d878c177c1cfdcd989aa5c13146d792b25e6db49' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/xorg-x11-server-Xwayland.lock b/locks/xorg-x11-server-Xwayland.lock index e060bd3af72..6bf2e2d35b5 100644 --- a/locks/xorg-x11-server-Xwayland.lock +++ b/locks/xorg-x11-server-Xwayland.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '2a5ddb71c6d77398a7b52326cf45966c669a0ceb' upstream-commit = '2a5ddb71c6d77398a7b52326cf45966c669a0ceb' -input-fingerprint = 'sha256:3b87ee45360ace7831c359158ca89665f12481abe6173fccfcec9b9b5aea2c28' +input-fingerprint = 'sha256:5fada5e9d5dcce7d780a92c633608f6134f2a48bac31d18a0f569ff46e76871c' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/locks/zaf.lock b/locks/zaf.lock index 78d99ffc55f..11ff81c7683 100644 --- a/locks/zaf.lock +++ b/locks/zaf.lock @@ -2,5 +2,5 @@ version = 1 import-commit = '372ea933bbc0e1dca5dea89126a0973286fc1e78' upstream-commit = '372ea933bbc0e1dca5dea89126a0973286fc1e78' -input-fingerprint = 'sha256:a774f4aebac29f51345fba726f9cc48251dddd28ecd973b18253948968ae9bc4' +input-fingerprint = 'sha256:40d9cdf4a879826584b9c259979b923a4557c47c33deb847f434c0d4314d473e' resolution-input-hash = 'sha256:466421704711c4fd3c71f0b2ed715a0e61d49e3e26f3a2637fee755795849c8e' diff --git a/specs/a/aalib/aalib.spec b/specs/a/aalib/aalib.spec index 321e9135a6c..99f9bc8b392 100644 --- a/specs/a/aalib/aalib.spec +++ b/specs/a/aalib/aalib.spec @@ -7,7 +7,7 @@ Summary: ASCII art library Name: aalib Version: 1.4.0 -Release: 0.56.%{rc_subver}%{?dist} +Release: 0.59.%{rc_subver}%{?dist} License: LGPL-2.1-or-later URL: http://aa-project.sourceforge.net/aalib/ Source0: http://download.sourceforge.net/aa-project/%{name}-1.4%{rc_subver}.tar.gz diff --git a/specs/a/accel-config/accel-config.spec b/specs/a/accel-config/accel-config.spec index 1f32a454064..f4ac4360438 100644 --- a/specs/a/accel-config/accel-config.spec +++ b/specs/a/accel-config/accel-config.spec @@ -5,7 +5,7 @@ Name: accel-config Version: 4.1.8 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Configure accelerator subsystem devices License: GPL-2.0-only URL: https://github.com/intel/%{project_name} diff --git a/specs/a/acpica-tools/acpica-tools.spec b/specs/a/acpica-tools/acpica-tools.spec index ab49aa156e0..97333a4dd52 100644 --- a/specs/a/acpica-tools/acpica-tools.spec +++ b/specs/a/acpica-tools/acpica-tools.spec @@ -3,7 +3,7 @@ Name: acpica-tools Version: 20240322 -Release: 4%{?dist} +Release: 4%{?dist} Summary: ACPICA tools for the development and debug of ACPI tables # Automatically converted from old format: GPLv2 - review is highly recommended. diff --git a/specs/a/adobe-afdko/adobe-afdko.spec b/specs/a/adobe-afdko/adobe-afdko.spec index bd5ca488d5c..916cee45cb3 100644 --- a/specs/a/adobe-afdko/adobe-afdko.spec +++ b/specs/a/adobe-afdko/adobe-afdko.spec @@ -9,7 +9,7 @@ Name: adobe-afdko Version: 4.0.3 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Adobe Font Development Kit for OpenType # Everything is Apache-2.0 except: # diff --git a/specs/a/adobe-mappings-cmap/adobe-mappings-cmap.spec b/specs/a/adobe-mappings-cmap/adobe-mappings-cmap.spec index 86a2ddd7385..26d9a9d42da 100644 --- a/specs/a/adobe-mappings-cmap/adobe-mappings-cmap.spec +++ b/specs/a/adobe-mappings-cmap/adobe-mappings-cmap.spec @@ -4,7 +4,7 @@ Name: adobe-mappings-cmap Summary: CMap resources for Adobe's character collections Version: 20231115 -Release: 4%{?dist} +Release: 4%{?dist} License: BSD-3-Clause URL: https://www.adobe.com/ diff --git a/specs/a/adobe-mappings-pdf/adobe-mappings-pdf.spec b/specs/a/adobe-mappings-pdf/adobe-mappings-pdf.spec index 2a5ca205b7a..e0be7e7547a 100644 --- a/specs/a/adobe-mappings-pdf/adobe-mappings-pdf.spec +++ b/specs/a/adobe-mappings-pdf/adobe-mappings-pdf.spec @@ -4,7 +4,7 @@ Name: adobe-mappings-pdf Summary: PDF mapping resources from Adobe Version: 20190401 -Release: 11%{?dist} +Release: 11%{?dist} License: BSD-3-Clause URL: https://www.adobe.com/ diff --git a/specs/a/adobe-source-sans-pro-fonts/adobe-source-sans-pro-fonts.spec b/specs/a/adobe-source-sans-pro-fonts/adobe-source-sans-pro-fonts.spec index 7718aa4dac5..beea97e7263 100644 --- a/specs/a/adobe-source-sans-pro-fonts/adobe-source-sans-pro-fonts.spec +++ b/specs/a/adobe-source-sans-pro-fonts/adobe-source-sans-pro-fonts.spec @@ -2,7 +2,7 @@ # Do not edit manually; changes may be overwritten. Version: 3.052 -Release: 8%{?dist} +Release: 8%{?dist} URL: https://github.com/adobe-fonts/source-sans %global foundry adobe diff --git a/specs/a/allegro/allegro.spec b/specs/a/allegro/allegro.spec index c7af22ab580..99bb7d3d2ec 100644 --- a/specs/a/allegro/allegro.spec +++ b/specs/a/allegro/allegro.spec @@ -3,7 +3,7 @@ Name: allegro Version: 4.4.3.1 -Release: 19%{?dist} +Release: 19%{?dist} Summary: A game programming library Summary(es): Una libreria de programacion de juegos diff --git a/specs/a/alsa-lib/alsa-lib.spec b/specs/a/alsa-lib/alsa-lib.spec index a40208d7486..b6a79b69170 100644 --- a/specs/a/alsa-lib/alsa-lib.spec +++ b/specs/a/alsa-lib/alsa-lib.spec @@ -15,7 +15,7 @@ Summary: The Advanced Linux Sound Architecture (ALSA) library Name: alsa-lib Version: %{version_alsa_lib} -Release: 1%{?prever_dot}%{?dist} +Release: 4%{?prever_dot}%{?dist} License: LGPL-2.1-or-later URL: http://www.alsa-project.org/ diff --git a/specs/a/amdsmi/amdsmi.spec b/specs/a/amdsmi/amdsmi.spec index 2cc94dd6b83..f43805e98bf 100644 --- a/specs/a/amdsmi/amdsmi.spec +++ b/specs/a/amdsmi/amdsmi.spec @@ -43,7 +43,7 @@ Name: amdsmi Version: %{rocm_version} -Release: 8%{?dist} +Release: 8%{?dist} Summary: AMD System Management Interface License: NCSA AND MIT AND BSD-3-Clause diff --git a/specs/a/aml/aml.spec b/specs/a/aml/aml.spec index 83fb5ab11ad..8a40f00224b 100644 --- a/specs/a/aml/aml.spec +++ b/specs/a/aml/aml.spec @@ -5,7 +5,7 @@ Name: aml Version: 0.3.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Another Main Loop # main source is ISC # include/sys/queue.h is BSD diff --git a/specs/a/amtterm/amtterm.spec b/specs/a/amtterm/amtterm.spec index b311635ad5c..204c85a086d 100644 --- a/specs/a/amtterm/amtterm.spec +++ b/specs/a/amtterm/amtterm.spec @@ -5,7 +5,7 @@ Name: amtterm # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later Version: 1.6 -Release: 25%{?dist} +Release: 25%{?dist} Summary: Serial-over-lan (sol) client for Intel AMT URL: http://www.kraxel.org/blog/linux/amtterm/ Source: http://www.kraxel.org/releases/%{name}/%{name}-%{version}.tar.gz diff --git a/specs/a/anaconda-webui/anaconda-webui.spec b/specs/a/anaconda-webui/anaconda-webui.spec index ec223c04e5a..a6a3b4ef72f 100644 --- a/specs/a/anaconda-webui/anaconda-webui.spec +++ b/specs/a/anaconda-webui/anaconda-webui.spec @@ -3,7 +3,7 @@ Name: anaconda-webui Version: 53.1^20251022g00cddf56 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Anaconda installer Web interface License: LGPL-2.1-or-later AND MIT URL: https://github.com/rhinstaller/%{name} diff --git a/specs/a/ansible-collection-ansible-posix/ansible-collection-ansible-posix.spec b/specs/a/ansible-collection-ansible-posix/ansible-collection-ansible-posix.spec index 01e7b383ad4..e417bda13da 100644 --- a/specs/a/ansible-collection-ansible-posix/ansible-collection-ansible-posix.spec +++ b/specs/a/ansible-collection-ansible-posix/ansible-collection-ansible-posix.spec @@ -9,7 +9,7 @@ Name: ansible-collection-ansible-posix Version: 2.1.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Ansible Collection targeting POSIX and POSIX-ish platforms # plugins/module_utils/mount.py: Python Software Foundation License version 2 diff --git a/specs/a/ansible-collection-community-general/ansible-collection-community-general.spec b/specs/a/ansible-collection-community-general/ansible-collection-community-general.spec index 108cf8f788f..68203272dd1 100644 --- a/specs/a/ansible-collection-community-general/ansible-collection-community-general.spec +++ b/specs/a/ansible-collection-community-general/ansible-collection-community-general.spec @@ -3,7 +3,7 @@ Name: ansible-collection-community-general Version: 11.4.2 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Modules and plugins supported by Ansible community # rg --pcre2 -g '!tests/sanity/extra/licenses.py' 'SPDX-License-Identifier: (?!GPL-3\.0-or-later)' | sort | sed 's|^|# |' diff --git a/specs/a/ansible-core/ansible-core.spec b/specs/a/ansible-core/ansible-core.spec index d23942288a5..c11180ff6f1 100644 --- a/specs/a/ansible-core/ansible-core.spec +++ b/specs/a/ansible-core/ansible-core.spec @@ -18,7 +18,7 @@ Name: ansible-core Version: 2.18.12 %global uversion %{version_no_tilde %{quote:%nil}} -Release: 2%{?dist} +Release: 2%{?dist} Summary: A radically simple IT automation system # The main license is GPLv3+. Many of the files in lib/ansible/module_utils diff --git a/specs/a/ansible-packaging/ansible-packaging.spec b/specs/a/ansible-packaging/ansible-packaging.spec index c12b128b1e7..85dc219bb6f 100644 --- a/specs/a/ansible-packaging/ansible-packaging.spec +++ b/specs/a/ansible-packaging/ansible-packaging.spec @@ -5,7 +5,7 @@ Name: ansible-packaging Version: 1 -Release: 18.1%{?dist} +Release: 18.4%{?dist} Summary: RPM packaging macros and generators for Ansible collections License: GPL-3.0-or-later diff --git a/specs/a/ansible-pcp/ansible-pcp.spec b/specs/a/ansible-pcp/ansible-pcp.spec index 480f06ca783..4fc0325672a 100644 --- a/specs/a/ansible-pcp/ansible-pcp.spec +++ b/specs/a/ansible-pcp/ansible-pcp.spec @@ -3,7 +3,7 @@ Name: ansible-pcp Version: 2.4.2 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Ansible Metric collection for Performance Co-Pilot License: MIT URL: https://github.com/performancecopilot/ansible-pcp diff --git a/specs/a/ansible/ansible.spec b/specs/a/ansible/ansible.spec index 572cf83806a..555995d8171 100644 --- a/specs/a/ansible/ansible.spec +++ b/specs/a/ansible/ansible.spec @@ -37,7 +37,7 @@ Name: ansible Summary: Curated set of Ansible collections included in addition to ansible-core Version: 11.13.0 %global uversion %{version_no_tilde %{quote:%nil}} -Release: 2%{?dist} +Release: 2%{?dist} # In addition to GPL-3.0-or-later, the following licenses apply. # License text that solely exists in file headers were not considered. diff --git a/specs/a/ant-contrib/ant-contrib.spec b/specs/a/ant-contrib/ant-contrib.spec index c02459fde6a..eeca724fef6 100644 --- a/specs/a/ant-contrib/ant-contrib.spec +++ b/specs/a/ant-contrib/ant-contrib.spec @@ -6,7 +6,7 @@ Summary: Collection of tasks for Ant Name: ant-contrib Version: 1.0 -Release: 0.49.%{beta_number}%{?dist} +Release: 0.53.%{beta_number}%{?dist} # Project site on sf lists both Apache Software License, Apache License V2.0 # see: https://sourceforge.net/projects/ant-contrib/ License: Apache-2.0 AND Apache-1.1 diff --git a/specs/a/antlr3/antlr3.spec b/specs/a/antlr3/antlr3.spec index d315a9b1482..aecc3f54fae 100644 --- a/specs/a/antlr3/antlr3.spec +++ b/specs/a/antlr3/antlr3.spec @@ -3,7 +3,7 @@ %global antlr_version 3.5.3 %global javascript_runtime_version 3.1 -%global baserelease 16 +%global baserelease 18 # This package needs itself to build. Use this to bootstrap on a new system. %bcond bootstrap 0 diff --git a/specs/a/apache-commons-collections4/apache-commons-collections4.spec b/specs/a/apache-commons-collections4/apache-commons-collections4.spec index 3869fd46b59..866414c673d 100644 --- a/specs/a/apache-commons-collections4/apache-commons-collections4.spec +++ b/specs/a/apache-commons-collections4/apache-commons-collections4.spec @@ -4,7 +4,7 @@ Name: apache-commons-collections4 Summary: Extension of the Java Collections Framework Version: 4.4 -Release: 20%{?dist} +Release: 20%{?dist} License: Apache-2.0 URL: http://commons.apache.org/proper/commons-collections/ diff --git a/specs/a/apache-commons-exec/apache-commons-exec.spec b/specs/a/apache-commons-exec/apache-commons-exec.spec index f4a423ae7ce..8bb75e92973 100644 --- a/specs/a/apache-commons-exec/apache-commons-exec.spec +++ b/specs/a/apache-commons-exec/apache-commons-exec.spec @@ -6,7 +6,7 @@ Name: apache-commons-exec Version: 1.5.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Java library to reliably execute external processes from within the JVM License: Apache-2.0 URL: https://commons.apache.org/proper/%{short_name} diff --git a/specs/a/apache-commons-text/apache-commons-text.spec b/specs/a/apache-commons-text/apache-commons-text.spec index 06b5fa2cf04..dd13db69f0d 100644 --- a/specs/a/apache-commons-text/apache-commons-text.spec +++ b/specs/a/apache-commons-text/apache-commons-text.spec @@ -5,7 +5,7 @@ Name: apache-%{jarname} Version: 1.10.0 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Apache Commons Text is a library focused on algorithms working on strings License: Apache-2.0 URL: https://commons.apache.org/proper/%{jarname} diff --git a/specs/a/apache-ivy/apache-ivy.spec b/specs/a/apache-ivy/apache-ivy.spec index 635839ea792..0c020ad68b6 100644 --- a/specs/a/apache-ivy/apache-ivy.spec +++ b/specs/a/apache-ivy/apache-ivy.spec @@ -10,7 +10,7 @@ Name: apache-%{jarname} Version: 2.5.3 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Java-based dependency manager License: Apache-2.0 URL: https://ant.apache.org/ivy diff --git a/specs/a/apache-logging-parent/apache-logging-parent.spec b/specs/a/apache-logging-parent/apache-logging-parent.spec index 1be171023bc..81a27a7dbf0 100644 --- a/specs/a/apache-logging-parent/apache-logging-parent.spec +++ b/specs/a/apache-logging-parent/apache-logging-parent.spec @@ -4,7 +4,7 @@ Name: apache-logging-parent Summary: Parent pom for Apache Logging Services projects Version: 9 -Release: 11%{?dist} +Release: 11%{?dist} License: Apache-2.0 URL: https://logging.apache.org/ diff --git a/specs/a/apache-sshd/apache-sshd.spec b/specs/a/apache-sshd/apache-sshd.spec index d59152ec92c..3ad9e34616c 100644 --- a/specs/a/apache-sshd/apache-sshd.spec +++ b/specs/a/apache-sshd/apache-sshd.spec @@ -7,7 +7,7 @@ Epoch: 1 Name: apache-sshd Version: 2.11.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Apache SSHD # One file has ISC licensing: diff --git a/specs/a/appx-util/appx-util.spec b/specs/a/appx-util/appx-util.spec index bff7fa026c8..6996477681e 100644 --- a/specs/a/appx-util/appx-util.spec +++ b/specs/a/appx-util/appx-util.spec @@ -3,7 +3,7 @@ Name: appx-util Version: 0.5 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Utility to create Microsoft .appx packages # See LICENSING.md for details diff --git a/specs/a/apt/apt.spec b/specs/a/apt/apt.spec index 2e4ecb4e268..8bb356a4621 100644 --- a/specs/a/apt/apt.spec +++ b/specs/a/apt/apt.spec @@ -17,7 +17,7 @@ Name: apt Version: 3.1.16 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Command-line package manager for Debian packages License: GPL-2.0-or-later diff --git a/specs/a/aqlprofile/aqlprofile.spec b/specs/a/aqlprofile/aqlprofile.spec index 956a98a1849..e6de0917316 100644 --- a/specs/a/aqlprofile/aqlprofile.spec +++ b/specs/a/aqlprofile/aqlprofile.spec @@ -24,7 +24,7 @@ Summary: Architected Queuing Language Profiling Library Name: aqlprofile License: MIT Version: 0.0^git%{date0}.%{shortcommit0} -Release: 3%{?dist} +Release: 3%{?dist} # Only x86_64 works right now: ExclusiveArch: x86_64 diff --git a/specs/a/argparse-manpage/argparse-manpage.spec b/specs/a/argparse-manpage/argparse-manpage.spec index 9948593acaa..98d5921e69f 100644 --- a/specs/a/argparse-manpage/argparse-manpage.spec +++ b/specs/a/argparse-manpage/argparse-manpage.spec @@ -33,7 +33,7 @@ There is a limited support for (deprecated) optparse objects, too. Name: argparse-manpage Version: 4.7 -Release: 4%{?dist} +Release: 4%{?dist} Summary: %{sum Python} BuildArch: noarch diff --git a/specs/a/args4j/args4j.spec b/specs/a/args4j/args4j.spec index da42e0a3c99..16c3de83915 100644 --- a/specs/a/args4j/args4j.spec +++ b/specs/a/args4j/args4j.spec @@ -3,7 +3,7 @@ Name: args4j Version: 2.33 -Release: 31%{?dist} +Release: 31%{?dist} Summary: Java command line arguments parser License: MIT URL: https://args4j.kohsuke.org diff --git a/specs/a/aribb24/aribb24.spec b/specs/a/aribb24/aribb24.spec index 703514e5df9..f6ffb0e2d4f 100644 --- a/specs/a/aribb24/aribb24.spec +++ b/specs/a/aribb24/aribb24.spec @@ -8,7 +8,7 @@ Name: aribb24 Version: 1.0.3%{!?tag:^%{date}git%{shortcommit0}} -Release: 4%{?dist} +Release: 4%{?dist} Summary: A library for ARIB STD-B24 License: LGPL-3.0-only URL: https://github.com/nkoriyama/%{name} diff --git a/specs/a/armadillo/armadillo.spec b/specs/a/armadillo/armadillo.spec index 5eeb874bdd7..d7ac9c7414e 100644 --- a/specs/a/armadillo/armadillo.spec +++ b/specs/a/armadillo/armadillo.spec @@ -3,7 +3,7 @@ Name: armadillo Version: 12.8.1 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Fast C++ matrix library with syntax similar to MATLAB and Octave # Automatically converted from old format: ASL 2.0 - review is highly recommended. diff --git a/specs/a/arpack/arpack.spec b/specs/a/arpack/arpack.spec index b449b75b495..9e00ae8a12d 100644 --- a/specs/a/arpack/arpack.spec +++ b/specs/a/arpack/arpack.spec @@ -11,7 +11,7 @@ Name: arpack Version: 3.9.1 -Release: 7%{dist} +Release: 10%{dist} Summary: Fortran 77 subroutines for solving large scale eigenvalue problems # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/a/asciidoc/asciidoc.spec b/specs/a/asciidoc/asciidoc.spec index 996b36d4b22..63337b3b5c8 100644 --- a/specs/a/asciidoc/asciidoc.spec +++ b/specs/a/asciidoc/asciidoc.spec @@ -3,7 +3,7 @@ Name: asciidoc Version: 10.2.0 -Release: 18%{?dist} +Release: 18%{?dist} Summary: Text based document generation License: GPL-2.0-or-later diff --git a/specs/a/assimp/assimp.spec b/specs/a/assimp/assimp.spec index 9e034072c7d..eadcd1bc0eb 100644 --- a/specs/a/assimp/assimp.spec +++ b/specs/a/assimp/assimp.spec @@ -5,7 +5,7 @@ Name: assimp Version: 6.0.4 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Library to import various 3D model formats into applications # Assimp is BSD diff --git a/specs/a/at/at.spec b/specs/a/at/at.spec index 3f2f032e4f0..36574a5c91d 100644 --- a/specs/a/at/at.spec +++ b/specs/a/at/at.spec @@ -6,7 +6,7 @@ Summary: Job spooling tools Name: at Version: 3.2.5 -Release: 18%{?dist} +Release: 18%{?dist} # http://packages.debian.org/changelogs/pool/main/a/at/current/copyright # + install-sh is MIT license with changes under Public Domain License: GPL-3.0-or-later AND GPL-2.0-or-later AND ISC diff --git a/specs/a/atlas/atlas.spec b/specs/a/atlas/atlas.spec index 398ba43a013..4ff4274ddf6 100644 --- a/specs/a/atlas/atlas.spec +++ b/specs/a/atlas/atlas.spec @@ -9,7 +9,7 @@ Version: 3.10.3 %if "%{?enable_native_atlas}" != "0" %define dist .native %endif -Release: 31%{?dist} +Release: 31%{?dist} Summary: Automatically Tuned Linear Algebra Software License: BSD-3-Clause diff --git a/specs/a/atop/atop.spec b/specs/a/atop/atop.spec index a0bc4baa74d..46ba5d848ba 100644 --- a/specs/a/atop/atop.spec +++ b/specs/a/atop/atop.spec @@ -5,7 +5,7 @@ Name: atop Version: 2.12.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: An advanced interactive monitor to view the load on system and process level License: GPL-2.0-or-later diff --git a/specs/a/augeas/augeas.spec b/specs/a/augeas/augeas.spec index b5bd0de7dd2..72d99884f42 100644 --- a/specs/a/augeas/augeas.spec +++ b/specs/a/augeas/augeas.spec @@ -10,7 +10,7 @@ License: LGPL-2.0-or-later AND LGPL-2.1-only AND LGPL-2.1-or-later AND (G %global commit af2aa88ab37fc48167d8c5e43b1770a4ba2ff403 %forgemeta -Release: 0.6%{?dist} +Release: 0.9%{?dist} URL: %{forgeurl} Source0: %{forgesource} diff --git a/specs/a/aurorae/aurorae.spec b/specs/a/aurorae/aurorae.spec index 6e742fc043b..983e06bd945 100644 --- a/specs/a/aurorae/aurorae.spec +++ b/specs/a/aurorae/aurorae.spec @@ -8,7 +8,7 @@ ExcludeArch: %{ix86} Name: aurorae Summary: Aurorae is a themeable window decoration for KWin Version: 6.6.0 -Release: 2%{?dist} +Release: 2%{?dist} License: GPL-2.0-or-later AND MIT AND CC0-1.0 URL: https://invent.kde.org/plasma/%{name} diff --git a/specs/a/autoconf-archive/autoconf-archive.spec b/specs/a/autoconf-archive/autoconf-archive.spec index 3a1331eb334..712126b9be0 100644 --- a/specs/a/autoconf-archive/autoconf-archive.spec +++ b/specs/a/autoconf-archive/autoconf-archive.spec @@ -3,7 +3,7 @@ Name: autoconf-archive Version: 2024.10.16 -Release: 4%{?dist} +Release: 4%{?dist} Summary: The Autoconf Macro Archive # The following licenses were seen in the binary rpm. diff --git a/specs/a/autoconf/autoconf.spec b/specs/a/autoconf/autoconf.spec index 47d9bb1f3ac..5b78415694d 100644 --- a/specs/a/autoconf/autoconf.spec +++ b/specs/a/autoconf/autoconf.spec @@ -13,7 +13,7 @@ # `/opt/{namespace}/{versioned name}`. Name: autoconf Version: 2.72 -Release: 8%{?dist} +Release: 8%{?dist} # To help future rebase, the following licenses were seen in the following files/folders: # '*' is anything that was not explicitly listed earlier in the folder diff --git a/specs/a/autoconf213/autoconf213.spec b/specs/a/autoconf213/autoconf213.spec index e7307322c16..b6123f4790c 100644 --- a/specs/a/autoconf213/autoconf213.spec +++ b/specs/a/autoconf213/autoconf213.spec @@ -4,7 +4,7 @@ Summary: A GNU tool for automatically configuring source code Name: autoconf213 Version: 2.13 -Release: 59%{?dist} +Release: 59%{?dist} # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later URL: http://www.gnu.org/software/autoconf/ diff --git a/specs/a/automake/automake.spec b/specs/a/automake/automake.spec index d806fd5d010..eb7e91e17f5 100644 --- a/specs/a/automake/automake.spec +++ b/specs/a/automake/automake.spec @@ -26,7 +26,7 @@ Summary: A GNU tool for automatically creating Makefiles Name: automake # Any bump here requires libtool rebuild, rhbz#1813010 Version: %{api_version}.1 -Release: 3%{?dist} +Release: 3%{?dist} # To help future rebase, the following licenses were seen in the following files/folders: # usr/bin/* - GPL-2.0-or-later diff --git a/specs/a/automoc/automoc.spec b/specs/a/automoc/automoc.spec index 1b0aca49a3b..044d0d6dc80 100644 --- a/specs/a/automoc/automoc.spec +++ b/specs/a/automoc/automoc.spec @@ -10,7 +10,7 @@ Name: automoc Version: 1.0 -Release: 0.51.%{?beta_tag}%{?dist} +Release: 0.54.%{?beta_tag}%{?dist} Summary: Automatic moc for Qt 4 License: BSD-2-Clause URL: http://www.kde.org diff --git a/specs/a/avahi/avahi.spec b/specs/a/avahi/avahi.spec index 2726a3c523a..33accc23ecc 100644 --- a/specs/a/avahi/avahi.spec +++ b/specs/a/avahi/avahi.spec @@ -66,7 +66,7 @@ Name: avahi Version: 0.9%{?rc:~%{rc}} -Release: 9%{?dist} +Release: 9%{?dist} Summary: Local network service discovery License: LGPL-2.1-or-later AND LGPL-2.0-or-later AND BSD-2-Clause-Views AND MIT URL: http://avahi.org diff --git a/specs/a/azurelinux-release/azurelinux-release.spec b/specs/a/azurelinux-release/azurelinux-release.spec index 0a0ccb843f2..af137743169 100644 --- a/specs/a/azurelinux-release/azurelinux-release.spec +++ b/specs/a/azurelinux-release/azurelinux-release.spec @@ -39,7 +39,7 @@ Summary: Azure Linux release files Name: azurelinux-release Version: 4.0 # TODO(azl): Review whether we can move back to autorelease (with conditional -p) -Release: 24%{?dist} +Release: 39%{?dist} License: MIT URL: https://aka.ms/azurelinux diff --git a/specs/a/azurelinux-stage1-compat/azurelinux-stage1-compat.spec b/specs/a/azurelinux-stage1-compat/azurelinux-stage1-compat.spec index a213ea86703..81d0e5b6da5 100644 --- a/specs/a/azurelinux-stage1-compat/azurelinux-stage1-compat.spec +++ b/specs/a/azurelinux-stage1-compat/azurelinux-stage1-compat.spec @@ -4,7 +4,7 @@ Summary: Azure Linux Stage1 Compat Name: azurelinux-stage1-compat Version: 0.1 -Release: 2%{?dist} +Release: 2%{?dist} License: MIT URL: https://aka.ms/azurelinux diff --git a/specs/b/babeltrace/babeltrace.spec b/specs/b/babeltrace/babeltrace.spec index 5a726c6832e..30dc067b01d 100644 --- a/specs/b/babeltrace/babeltrace.spec +++ b/specs/b/babeltrace/babeltrace.spec @@ -3,7 +3,7 @@ Name: babeltrace Version: 1.5.11 -Release: 16%{?dist} +Release: 16%{?dist} Summary: Trace Viewer and Converter, mainly for the Common Trace Format License: MIT AND GPL-3.0-or-later WITH Bison-exception-2.2 AND LGPL-2.1-only AND BSD-4-Clause-UC URL: https://www.efficios.com/babeltrace diff --git a/specs/b/babeltrace2/babeltrace2.spec b/specs/b/babeltrace2/babeltrace2.spec index d6d1ba5c330..9cf019c47c9 100644 --- a/specs/b/babeltrace2/babeltrace2.spec +++ b/specs/b/babeltrace2/babeltrace2.spec @@ -3,7 +3,7 @@ Name: babeltrace2 Version: 2.1.2 -Release: 4%{?dist} +Release: 4%{?dist} Summary: A trace manipulation toolkit License: MIT AND GPL-2.0-only URL: https://www.efficios.com/babeltrace diff --git a/specs/b/bash-completion/bash-completion.spec b/specs/b/bash-completion/bash-completion.spec index 9a54b9f9541..e4f2c3489a6 100644 --- a/specs/b/bash-completion/bash-completion.spec +++ b/specs/b/bash-completion/bash-completion.spec @@ -9,7 +9,7 @@ Name: bash-completion Version: 2.16 -Release: 3%{?dist} +Release: 3%{?dist} Epoch: 1 Summary: Programmable completion for Bash diff --git a/specs/b/bcc/bcc.spec b/specs/b/bcc/bcc.spec index a1252d1f866..eab9ad0e3c5 100644 --- a/specs/b/bcc/bcc.spec +++ b/specs/b/bcc/bcc.spec @@ -22,7 +22,7 @@ Name: bcc Version: 0.35.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: BPF Compiler Collection (BCC) License: Apache-2.0 URL: https://github.com/iovisor/bcc diff --git a/specs/b/bcg729/bcg729.spec b/specs/b/bcg729/bcg729.spec index d24d3645293..8c99044a6d1 100644 --- a/specs/b/bcg729/bcg729.spec +++ b/specs/b/bcg729/bcg729.spec @@ -3,7 +3,7 @@ Name: bcg729 Version: 1.1.1 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Opensource implementation of the G.729 codec License: GPL-3.0-or-later diff --git a/specs/b/bdftopcf/bdftopcf.spec b/specs/b/bdftopcf/bdftopcf.spec index 2e444706bc6..021f70b50cd 100644 --- a/specs/b/bdftopcf/bdftopcf.spec +++ b/specs/b/bdftopcf/bdftopcf.spec @@ -3,7 +3,7 @@ Name: bdftopcf Version: 1.1.2 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Font compiler for the X server and font server License: MIT-open-group diff --git a/specs/b/beakerlib/beakerlib.spec b/specs/b/beakerlib/beakerlib.spec index 0fbbf9d7aca..dbf2b74e9e0 100644 --- a/specs/b/beakerlib/beakerlib.spec +++ b/specs/b/beakerlib/beakerlib.spec @@ -4,7 +4,7 @@ Name: beakerlib Summary: A shell-level integration testing library Version: 1.33 -Release: 2%{?dist} +Release: 2%{?dist} License: GPL-2.0-only BuildArch: noarch URL: https://github.com/%{name} diff --git a/specs/b/biber/biber.spec b/specs/b/biber/biber.spec index eb2e913c46b..46b6451b38c 100644 --- a/specs/b/biber/biber.spec +++ b/specs/b/biber/biber.spec @@ -8,7 +8,7 @@ Name: biber # Export $BCF_VERSION from lib/Biber/Constants.pm, bug #2048536 %define bcfversion 3.11 Version: 2.21 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Command-line bibliographic manager, BibTeX replacement # bin/biber: Artistic-2.0 # data/texmap.xsl: Artistic-2.0 diff --git a/specs/b/bind-dyndb-ldap/bind-dyndb-ldap.spec b/specs/b/bind-dyndb-ldap/bind-dyndb-ldap.spec index 7580e4a4f91..d7f9c7088ed 100644 --- a/specs/b/bind-dyndb-ldap/bind-dyndb-ldap.spec +++ b/specs/b/bind-dyndb-ldap/bind-dyndb-ldap.spec @@ -22,7 +22,7 @@ Name: bind-dyndb-ldap Version: 11.11 -Release: 11%{?dist} +Release: 11%{?dist} Summary: LDAP back-end plug-in for BIND License: GPL-2.0-or-later diff --git a/specs/b/bind/bind.spec b/specs/b/bind/bind.spec index 3dbd32a87f5..fad37fc605b 100644 --- a/specs/b/bind/bind.spec +++ b/specs/b/bind/bind.spec @@ -89,7 +89,7 @@ License: MPL-2.0 AND ISC AND MIT AND BSD-3-Clause AND BSD-2-Clause # Before rebasing bind, ensure bind-dyndb-ldap is ready to be rebuild and use side-tag with it. # Updating just bind will cause freeipa-dns-server package to be uninstallable. Version: 9.18.44 -Release: 2%{?dist} +Release: 2%{?dist} Epoch: 32 Url: https://www.isc.org/downloads/bind/ # diff --git a/specs/b/biosdevname/biosdevname.spec b/specs/b/biosdevname/biosdevname.spec index 1883f339500..a8e92a0863b 100644 --- a/specs/b/biosdevname/biosdevname.spec +++ b/specs/b/biosdevname/biosdevname.spec @@ -3,7 +3,7 @@ Name: biosdevname Version: 0.7.3 -Release: 20%{?dist} +Release: 20%{?dist} Summary: Udev helper for naming devices per BIOS names # * biosdevname is GPL-2.0-only diff --git a/specs/b/blis/blis.spec b/specs/b/blis/blis.spec index e172640597f..dec8a2c7af1 100644 --- a/specs/b/blis/blis.spec +++ b/specs/b/blis/blis.spec @@ -26,7 +26,7 @@ Name: blis Version: 2.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: BLAS-like Library Instantiation Software Framework License: BSD-3-Clause URL: https://github.com/flame/blis diff --git a/specs/b/boom-boot/boom-boot.spec b/specs/b/boom-boot/boom-boot.spec index feb834dfd2f..f82c0f0eca7 100644 --- a/specs/b/boom-boot/boom-boot.spec +++ b/specs/b/boom-boot/boom-boot.spec @@ -6,7 +6,7 @@ Name: boom-boot Version: 1.6.8 -Release: 3%{?dist} +Release: 3%{?dist} Summary: %{summary} License: Apache-2.0 diff --git a/specs/b/booth/booth.spec b/specs/b/booth/booth.spec index fd912633335..8f9b511634b 100644 --- a/specs/b/booth/booth.spec +++ b/specs/b/booth/booth.spec @@ -43,7 +43,7 @@ Name: booth Version: 1.2 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Ticket Manager for Multi-site Clusters License: GPL-2.0-or-later Url: https://github.com/%{github_owner}/%{name} diff --git a/specs/b/bouncycastle/bouncycastle.spec b/specs/b/bouncycastle/bouncycastle.spec index fe905a5a55b..eb122a9f665 100644 --- a/specs/b/bouncycastle/bouncycastle.spec +++ b/specs/b/bouncycastle/bouncycastle.spec @@ -10,7 +10,7 @@ Summary: Bouncy Castle Cryptography APIs for Java Name: bouncycastle Version: 1.77 -Release: 6%{?dist} +Release: 6%{?dist} License: MIT URL: http://www.bouncycastle.org diff --git a/specs/b/bpftool/bpftool.spec b/specs/b/bpftool/bpftool.spec index 4ade3f14f91..221b36d43ec 100644 --- a/specs/b/bpftool/bpftool.spec +++ b/specs/b/bpftool/bpftool.spec @@ -3,7 +3,7 @@ Name: bpftool Version: 7.6.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Inspection and simple manipulation of eBPF programs and maps %global libname libbpf diff --git a/specs/b/bpftrace/bpftrace.spec b/specs/b/bpftrace/bpftrace.spec index 7019a203d36..bc811f50f4a 100644 --- a/specs/b/bpftrace/bpftrace.spec +++ b/specs/b/bpftrace/bpftrace.spec @@ -5,7 +5,7 @@ Name: bpftrace Version: 0.24.2 -Release: 2%{?dist} +Release: 2%{?dist} Summary: High-level tracing language for Linux eBPF License: Apache-2.0 diff --git a/specs/b/brotli/brotli.spec b/specs/b/brotli/brotli.spec index 2d0a35be2d5..71cadb3a48a 100644 --- a/specs/b/brotli/brotli.spec +++ b/specs/b/brotli/brotli.spec @@ -3,7 +3,7 @@ Name: brotli Version: 1.2.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Lossless compression algorithm License: MIT diff --git a/specs/b/bsh/bsh.spec b/specs/b/bsh/bsh.spec index fb43a2338be..7c6d0612c93 100644 --- a/specs/b/bsh/bsh.spec +++ b/specs/b/bsh/bsh.spec @@ -33,7 +33,7 @@ Name: bsh Version: 2.1.0 -Release: 18%{?dist} +Release: 18%{?dist} Epoch: 0 Summary: Lightweight Scripting for Java URL: https://beanshell.github.io/ diff --git a/specs/b/btrfs-progs/btrfs-progs.spec b/specs/b/btrfs-progs/btrfs-progs.spec index 4c31ba72f5d..73d53ef8581 100644 --- a/specs/b/btrfs-progs/btrfs-progs.spec +++ b/specs/b/btrfs-progs/btrfs-progs.spec @@ -6,7 +6,7 @@ Name: btrfs-progs Version: 6.19 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Userspace programs for btrfs License: GPL-2.0-only diff --git a/specs/b/busybox/busybox.spec b/specs/b/busybox/busybox.spec index 23745f6dea5..66de735cc07 100644 --- a/specs/b/busybox/busybox.spec +++ b/specs/b/busybox/busybox.spec @@ -57,7 +57,7 @@ Name: busybox Version: 1.37.0 -Release: 4%{?dist} +Release: 4%{?dist} Epoch: 1 Summary: Statically linked binary providing simplified versions of system commands License: GPL-2.0-only diff --git a/specs/b/butane/butane.spec b/specs/b/butane/butane.spec index ecb99d4b724..afe8108f8ca 100644 --- a/specs/b/butane/butane.spec +++ b/specs/b/butane/butane.spec @@ -25,7 +25,7 @@ configs for provisioning operating systems that use Ignition.} %global godocs docs README.md Name: butane -Release: 3%{?dist} +Release: 3%{?dist} Summary: Butane config transpiler License: Apache-2.0 diff --git a/specs/b/byteman/byteman.spec b/specs/b/byteman/byteman.spec index cd21b723799..73337662072 100644 --- a/specs/b/byteman/byteman.spec +++ b/specs/b/byteman/byteman.spec @@ -23,7 +23,7 @@ Name: byteman Version: 4.0.26 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Java agent-based bytecode injection tool # Automatically converted from old format: LGPLv2+ - review is highly recommended. License: LicenseRef-Callaway-LGPLv2+ diff --git a/specs/c/CGAL/CGAL.spec b/specs/c/CGAL/CGAL.spec index 9a884024ae7..239711f4a8f 100644 --- a/specs/c/CGAL/CGAL.spec +++ b/specs/c/CGAL/CGAL.spec @@ -15,7 +15,7 @@ Name: CGAL Version: 6.0.3 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Computational Geometry Algorithms Library # Automatically converted from old format: LGPLv3+ and GPLv3+ and Boost - review is highly recommended. diff --git a/specs/c/CUnit/CUnit.spec b/specs/c/CUnit/CUnit.spec index 747ed637289..a9f5c4f56db 100644 --- a/specs/c/CUnit/CUnit.spec +++ b/specs/c/CUnit/CUnit.spec @@ -5,7 +5,7 @@ Name: CUnit Version: 2.1.3 -Release: 36%{?dist} +Release: 36%{?dist} Summary: Unit testing framework for C License: LGPL-2.0-or-later diff --git a/specs/c/CharLS/CharLS.spec b/specs/c/CharLS/CharLS.spec index 7443ead714a..dad80c349f7 100644 --- a/specs/c/CharLS/CharLS.spec +++ b/specs/c/CharLS/CharLS.spec @@ -3,7 +3,7 @@ Name: CharLS Version: 2.4.2 -Release: 12%{?dist} +Release: 12%{?dist} Summary: An optimized implementation of the JPEG-LS standard License: BSD-3-Clause URL: https://github.com/team-charls/charls diff --git a/specs/c/ca-certificates/ca-certificates.spec b/specs/c/ca-certificates/ca-certificates.spec index 8ca5450ff23..d9911f5beec 100644 --- a/specs/c/ca-certificates/ca-certificates.spec +++ b/specs/c/ca-certificates/ca-certificates.spec @@ -41,7 +41,7 @@ Name: ca-certificates Version: 2025.2.80_v9.0.304 # for Rawhide, please always use release >= 2 # for Fedora release branches, please use release < 2 (1.0, 1.1, ...) -Release: 1.1%{?dist} +Release: 1.4%{?dist} License: MIT AND GPL-2.0-or-later URL: https://fedoraproject.org/wiki/CA-Certificates diff --git a/specs/c/cachefilesd/cachefilesd.spec b/specs/c/cachefilesd/cachefilesd.spec index ea0aca02438..e7c809a6948 100644 --- a/specs/c/cachefilesd/cachefilesd.spec +++ b/specs/c/cachefilesd/cachefilesd.spec @@ -5,7 +5,7 @@ Name: cachefilesd Version: 0.10.10 -Release: 21%{?dist}%{?buildid} +Release: 24%{?dist}%{?buildid} Summary: CacheFiles user-space management daemon License: GPL-2.0-or-later URL: http://people.redhat.com/~dhowells/fscache/ diff --git a/specs/c/capnproto/capnproto.spec b/specs/c/capnproto/capnproto.spec index 2e7fb0f2606..af4b98c7cac 100644 --- a/specs/c/capnproto/capnproto.spec +++ b/specs/c/capnproto/capnproto.spec @@ -8,7 +8,7 @@ Name: capnproto Version: 1.0.1 -Release: 7%{?dist} +Release: 7%{?dist} Summary: A data interchange format and capability-based RPC system License: MIT diff --git a/specs/c/caribou/caribou.spec b/specs/c/caribou/caribou.spec index 63f6c11c596..41d4a795928 100644 --- a/specs/c/caribou/caribou.spec +++ b/specs/c/caribou/caribou.spec @@ -3,7 +3,7 @@ Name: caribou Version: 0.4.21 -Release: 49%{?dist} +Release: 49%{?dist} Summary: A simplified in-place on-screen keyboard # Automatically converted from old format: LGPLv2+ - review is highly recommended. License: LicenseRef-Callaway-LGPLv2+ diff --git a/specs/c/catch2/catch2.spec b/specs/c/catch2/catch2.spec index 5fce9acd98a..8f7b355cc89 100644 --- a/specs/c/catch2/catch2.spec +++ b/specs/c/catch2/catch2.spec @@ -5,7 +5,7 @@ Name: catch2 Version: 2.13.10 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Modern, C++-native, header-only, framework for unit-tests, TDD and BDD License: BSL-1.0 diff --git a/specs/c/ccache/ccache.spec b/specs/c/ccache/ccache.spec index c4df51b890b..bfc2e45bdcf 100644 --- a/specs/c/ccache/ccache.spec +++ b/specs/c/ccache/ccache.spec @@ -16,7 +16,7 @@ Name: ccache Version: 4.11.3 -Release: 3%{?dist} +Release: 3%{?dist} Summary: C/C++ compiler cache # See LICENSE.adoc for licenses of bundled codes diff --git a/specs/c/ceph/ceph.spec b/specs/c/ceph/ceph.spec index 8b5adc5c12d..ef9307f6a8a 100644 --- a/specs/c/ceph/ceph.spec +++ b/specs/c/ceph/ceph.spec @@ -188,7 +188,7 @@ ################################################################################# Name: ceph Version: 19.2.3 -Release: 11%{?dist} +Release: 11%{?dist} %if 0%{?fedora} || 0%{?rhel} Epoch: 2 %endif diff --git a/specs/c/cereal/cereal.spec b/specs/c/cereal/cereal.spec index 22ee4f20a8a..a38fe9b76ac 100644 --- a/specs/c/cereal/cereal.spec +++ b/specs/c/cereal/cereal.spec @@ -11,7 +11,7 @@ Name: cereal Version: 1.3.2 -Release: 13%{?dist} +Release: 13%{?dist} Summary: A header-only C++11 serialization library # include/cereal/details/polymorphic_impl.hpp is BSL-1.0 # include/cereal/external/base64.hpp is Zlib diff --git a/specs/c/certmonger/certmonger.spec b/specs/c/certmonger/certmonger.spec index 9af76a40d8e..46de4d3b5b7 100644 --- a/specs/c/certmonger/certmonger.spec +++ b/specs/c/certmonger/certmonger.spec @@ -31,7 +31,7 @@ Name: certmonger Version: 0.79.21 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Certificate status monitor and PKI enrollment client License: GPL-3.0-or-later diff --git a/specs/c/cgnslib/cgnslib.spec b/specs/c/cgnslib/cgnslib.spec index 8b7dbb90fe3..d3c2c845c09 100644 --- a/specs/c/cgnslib/cgnslib.spec +++ b/specs/c/cgnslib/cgnslib.spec @@ -10,7 +10,7 @@ Name: cgnslib Version: 4.5.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Computational Fluid Dynamics General Notation System License: Zlib URL: http://www.cgns.org/ diff --git a/specs/c/check/check.spec b/specs/c/check/check.spec index 6c8b9d8f9a5..a8dd121e8c2 100644 --- a/specs/c/check/check.spec +++ b/specs/c/check/check.spec @@ -11,7 +11,7 @@ Name: check Version: 0.15.2 -Release: 21%{?dist} +Release: 21%{?dist} Summary: A unit test framework for C License: LGPL-2.1-or-later URL: https://libcheck.github.io/check/ diff --git a/specs/c/chkrootkit/chkrootkit.spec b/specs/c/chkrootkit/chkrootkit.spec index 026ef2e6044..6d41455b3b9 100644 --- a/specs/c/chkrootkit/chkrootkit.spec +++ b/specs/c/chkrootkit/chkrootkit.spec @@ -3,7 +3,7 @@ Name: chkrootkit Version: 0.58 -Release: 1b%{?dist} +Release: 4b%{?dist} Summary: Tool to locally check for signs of a rootkit License: BSD-2-Clause AND GPL-2.0-or-later URL: http://www.chkrootkit.org diff --git a/specs/c/chromaprint/chromaprint.spec b/specs/c/chromaprint/chromaprint.spec index 61f7689f329..5e4ff454073 100644 --- a/specs/c/chromaprint/chromaprint.spec +++ b/specs/c/chromaprint/chromaprint.spec @@ -19,7 +19,7 @@ Name: chromaprint Version: 1.6.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Library implementing the AcoustID fingerprinting # Automatically converted from old format: GPLv2+ - review is highly recommended. diff --git a/specs/c/chrony/chrony.spec b/specs/c/chrony/chrony.spec index 0db8c28926f..4384cfae826 100644 --- a/specs/c/chrony/chrony.spec +++ b/specs/c/chrony/chrony.spec @@ -12,7 +12,7 @@ Name: chrony Version: 4.8 -Release: 4%{?dist} +Release: 4%{?dist} Summary: An NTP client/server License: GPL-2.0-only diff --git a/specs/c/chrpath/chrpath.spec b/specs/c/chrpath/chrpath.spec index eeafa3fd896..39db40bf8d0 100644 --- a/specs/c/chrpath/chrpath.spec +++ b/specs/c/chrpath/chrpath.spec @@ -3,7 +3,7 @@ Name: chrpath Version: 0.16 -Release: 27%{?dist} +Release: 27%{?dist} Summary: Modify rpath of compiled programs License: GPL-2.0-or-later diff --git a/specs/c/cim-schema/cim-schema.spec b/specs/c/cim-schema/cim-schema.spec index 9a6cb295c45..eee9cd4944f 100644 --- a/specs/c/cim-schema/cim-schema.spec +++ b/specs/c/cim-schema/cim-schema.spec @@ -42,7 +42,7 @@ Name: cim-schema Url: http://www.dmtf.org/ Summary: Common Information Model (CIM) Schema Version: %{major}.%{minor}.%{update} -Release: 3%{?dist} +Release: 3%{?dist} License: LicenseRef-DMTF Source0: http://www.dmtf.org/standards/cim/cim_schema_v%{major}%{minor}%{update}/cim_schema_%{version}Experimental-MOFs.zip Source1: http://www.dmtf.org/standards/cim/cim_schema_v%{major}%{minor}%{update}/cim_schema_%{version}Experimental-Doc.zip diff --git a/specs/c/civetweb/civetweb.spec b/specs/c/civetweb/civetweb.spec index d3807ae1406..bcf02ef1fc5 100644 --- a/specs/c/civetweb/civetweb.spec +++ b/specs/c/civetweb/civetweb.spec @@ -7,7 +7,7 @@ Name: civetweb Summary: Embedded C/C++ web server Version: 1.16 -Release: 10%{?dev:%{dev}}%{?dist} +Release: 13%{?dev:%{dev}}%{?dist} License: MIT Url: https://github.com/civetweb/civetweb Source: https://github.com/%{name}/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz diff --git a/specs/c/cjose/cjose.spec b/specs/c/cjose/cjose.spec index 8702b54671f..acc22df8600 100644 --- a/specs/c/cjose/cjose.spec +++ b/specs/c/cjose/cjose.spec @@ -3,7 +3,7 @@ Name: cjose Version: 0.6.2.2 -Release: 9%{?dist} +Release: 9%{?dist} Summary: C library implementing the Javascript Object Signing and Encryption (JOSE) License: MIT diff --git a/specs/c/cjson/cjson.spec b/specs/c/cjson/cjson.spec index feb68410afc..65d3e1f38fc 100644 --- a/specs/c/cjson/cjson.spec +++ b/specs/c/cjson/cjson.spec @@ -3,7 +3,7 @@ Name: cjson Version: 1.7.18 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Ultralightweight JSON parser in ANSI C # several files in tests/ are Apache-2.0 but are not packaged diff --git a/specs/c/clamav/clamav.spec b/specs/c/clamav/clamav.spec index 27aeed77652..0512e6af4d7 100644 --- a/specs/c/clamav/clamav.spec +++ b/specs/c/clamav/clamav.spec @@ -29,7 +29,7 @@ Summary: End-user tools for the Clam Antivirus scanner Name: clamav Version: 1.4.3 -Release: 7%{?dist} +Release: 7%{?dist} License: %{?with_unrar:proprietary}%{!?with_unrar:GPL-2.0-only} URL: https://www.clamav.net/ %if %{with unrar} diff --git a/specs/c/clevis-pin-tpm2/clevis-pin-tpm2.spec b/specs/c/clevis-pin-tpm2/clevis-pin-tpm2.spec index 812c75210da..8bc6cdf2618 100644 --- a/specs/c/clevis-pin-tpm2/clevis-pin-tpm2.spec +++ b/specs/c/clevis-pin-tpm2/clevis-pin-tpm2.spec @@ -10,7 +10,7 @@ Name: clevis-pin-tpm2 Version: 0.5.3 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Clevis PIN for unlocking with TPM2 supporting Authorized Policies SourceLicense: MIT diff --git a/specs/c/clisp/clisp.spec b/specs/c/clisp/clisp.spec index dde6ea88b5e..2de0dfbb9a0 100644 --- a/specs/c/clisp/clisp.spec +++ b/specs/c/clisp/clisp.spec @@ -27,7 +27,7 @@ Version: 2.49.95 # - src/socket.d and modules/clx/mit-clx/doc.lisp are HPND # - src/xthread.d and modules/asdf/asdf.lisp are X11 License: GPL-2.0-or-later AND (GPL-2.0-or-later OR GFDL-1.2-or-later) AND LGPL-2.1-or-later AND HPND AND X11 -Release: 6%{?dist} +Release: 6%{?dist} URL: http://www.clisp.org/ VCS: git:%{forgeurl}.git Source0: %{forgesource} diff --git a/specs/c/cln/cln.spec b/specs/c/cln/cln.spec index 6c94121b588..9971cbb5413 100644 --- a/specs/c/cln/cln.spec +++ b/specs/c/cln/cln.spec @@ -3,7 +3,7 @@ Name: cln Version: 1.3.6 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Class Library for Numbers License: GPL-2.0-or-later diff --git a/specs/c/clutter/clutter.spec b/specs/c/clutter/clutter.spec index 00e20abf3a9..83bdaff8a85 100644 --- a/specs/c/clutter/clutter.spec +++ b/specs/c/clutter/clutter.spec @@ -11,7 +11,7 @@ Name: clutter Version: 1.26.4 -Release: 18%{?dist} +Release: 18%{?dist} Summary: Open Source software library for creating rich graphical user interfaces # Automatically converted from old format: LGPLv2+ - review is highly recommended. diff --git a/specs/c/cmake/cmake.spec b/specs/c/cmake/cmake.spec index e4d2c988687..7fdb3f6fe0b 100644 --- a/specs/c/cmake/cmake.spec +++ b/specs/c/cmake/cmake.spec @@ -72,7 +72,7 @@ %global patch_version 10 # For handling bump release by rpmdev-bumpspec and mass rebuild -%global baserelease 3 +%global baserelease 5 # Set to RC version if building RC, else comment out. #%%global rcsuf rc3 diff --git a/specs/c/cockpit/cockpit.spec b/specs/c/cockpit/cockpit.spec index f8fa393dc34..e1dbeabad12 100644 --- a/specs/c/cockpit/cockpit.spec +++ b/specs/c/cockpit/cockpit.spec @@ -59,7 +59,7 @@ License: LGPL-2.1-or-later AND GPL-3.0-and-later AND MIT AND CC-BY-SA-3.0 URL: https://cockpit-project.org/ Version: 356 -Release: 2%{?dist} +Release: 2%{?dist} Source0: https://github.com/cockpit-project/cockpit/releases/download/%{version}/cockpit-%{version}.tar.xz Source1: https://github.com/cockpit-project/cockpit/releases/download/%{version}/cockpit-node-%{version}.tar.xz diff --git a/specs/c/codec2/codec2.spec b/specs/c/codec2/codec2.spec index 9229ab97169..8efa860769e 100644 --- a/specs/c/codec2/codec2.spec +++ b/specs/c/codec2/codec2.spec @@ -10,7 +10,7 @@ Name: codec2 Version: 1.2.0 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Next-Generation Digital Voice for Two-Way Radio License: LGPL-2.1-only diff --git a/specs/c/cogl/cogl.spec b/specs/c/cogl/cogl.spec index e08004693d8..0ffab2f3196 100644 --- a/specs/c/cogl/cogl.spec +++ b/specs/c/cogl/cogl.spec @@ -5,7 +5,7 @@ Name: cogl Version: 1.22.8 -Release: 16%{?dist} +Release: 16%{?dist} Summary: A library for using 3D graphics hardware to draw pretty pictures # Automatically converted from old format: LGPLv2+ - review is highly recommended. diff --git a/specs/c/coin-or-Cbc/coin-or-Cbc.spec b/specs/c/coin-or-Cbc/coin-or-Cbc.spec index f416b639e9b..cf4ed71a523 100644 --- a/specs/c/coin-or-Cbc/coin-or-Cbc.spec +++ b/specs/c/coin-or-Cbc/coin-or-Cbc.spec @@ -12,7 +12,7 @@ Name: coin-or-%{module} Summary: Coin-or branch and cut Version: 2.10.12 -Release: 11%{?dist} +Release: 11%{?dist} # The project as a whole is licensed EPL-2.0. However, many source files still # claim to be licensed EPL-1.0. This is probably an upstream oversight. diff --git a/specs/c/coin-or-Cgl/coin-or-Cgl.spec b/specs/c/coin-or-Cgl/coin-or-Cgl.spec index dbd1a0e38cb..cb722b9a7dd 100644 --- a/specs/c/coin-or-Cgl/coin-or-Cgl.spec +++ b/specs/c/coin-or-Cgl/coin-or-Cgl.spec @@ -6,7 +6,7 @@ Name: coin-or-%{module} Summary: Cut Generation Library Version: 0.60.9 -Release: 5%{?dist} +Release: 5%{?dist} # The project as a whole is licensed EPL-2.0. However, many source files still # claim to be licensed EPL-1.0. This is probably an upstream oversight. diff --git a/specs/c/coin-or-Clp/coin-or-Clp.spec b/specs/c/coin-or-Clp/coin-or-Clp.spec index f05dc127fd9..2f185a789ea 100644 --- a/specs/c/coin-or-Clp/coin-or-Clp.spec +++ b/specs/c/coin-or-Clp/coin-or-Clp.spec @@ -18,7 +18,7 @@ Name: coin-or-%{module} Summary: Coin-or linear programming Version: 1.17.10 -Release: 10%{?dist} +Release: 10%{?dist} # The project as a whole is licensed EPL-2.0. However, many source files still # claim to be licensed EPL-1.0. This is probably an upstream oversight. diff --git a/specs/c/coin-or-CoinUtils/coin-or-CoinUtils.spec b/specs/c/coin-or-CoinUtils/coin-or-CoinUtils.spec index 09ac75f7f3c..8ea4f9cf1e2 100644 --- a/specs/c/coin-or-CoinUtils/coin-or-CoinUtils.spec +++ b/specs/c/coin-or-CoinUtils/coin-or-CoinUtils.spec @@ -12,7 +12,7 @@ Name: coin-or-%{module} Summary: Coin-or Utilities Version: 2.11.12 -Release: 4%{?dist} +Release: 4%{?dist} # The project as a whole is licensed EPL-2.0. However, many source files still # claim to be licensed EPL-1.0. This is probably an upstream oversight. diff --git a/specs/c/coin-or-DyLP/coin-or-DyLP.spec b/specs/c/coin-or-DyLP/coin-or-DyLP.spec index 8f88dbdf1f7..1358ec6fb55 100644 --- a/specs/c/coin-or-DyLP/coin-or-DyLP.spec +++ b/specs/c/coin-or-DyLP/coin-or-DyLP.spec @@ -6,7 +6,7 @@ Name: coin-or-%{module} Summary: Implementation of the dynamic simplex algorithm Version: 1.10.4 -Release: 19%{?dist} +Release: 19%{?dist} License: EPL-1.0 URL: https://projects.coin-or.org/%{module} Source0: http://www.coin-or.org/download/pkgsource/%{module}/%{module}-%{version}.tgz diff --git a/specs/c/coin-or-Osi/coin-or-Osi.spec b/specs/c/coin-or-Osi/coin-or-Osi.spec index c128c803a7c..0718acbd329 100644 --- a/specs/c/coin-or-Osi/coin-or-Osi.spec +++ b/specs/c/coin-or-Osi/coin-or-Osi.spec @@ -6,7 +6,7 @@ Name: coin-or-%{module} Summary: COIN-OR Open Solver Interface Library Version: 0.108.11 -Release: 5%{?dist} +Release: 5%{?dist} # The project as a whole is licensed EPL-2.0. However, many source files still # claim to be licensed EPL-1.0. This is probably an upstream oversight. diff --git a/specs/c/coin-or-Vol/coin-or-Vol.spec b/specs/c/coin-or-Vol/coin-or-Vol.spec index 222e4dfbf12..e126667693d 100644 --- a/specs/c/coin-or-Vol/coin-or-Vol.spec +++ b/specs/c/coin-or-Vol/coin-or-Vol.spec @@ -6,7 +6,7 @@ Name: coin-or-%{module} Summary: Vol (Volume Algorithm) Version: 1.5.4 -Release: 17%{?dist} +Release: 17%{?dist} License: EPL-1.0 URL: http://projects.coin-or.org/%{module} Source0: http://www.coin-or.org/download/pkgsource/%{module}/%{module}-%{version}.tgz diff --git a/specs/c/colm/colm.spec b/specs/c/colm/colm.spec index 5cc74521879..fe3e851a44d 100644 --- a/specs/c/colm/colm.spec +++ b/specs/c/colm/colm.spec @@ -3,7 +3,7 @@ Name: colm Version: 0.14.7 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Programming language designed for the analysis of computer languages # aapl/ and some headers from src/ are the LGPLv2+ diff --git a/specs/c/color-filesystem/color-filesystem.spec b/specs/c/color-filesystem/color-filesystem.spec index 99514524699..0fabd2ac394 100644 --- a/specs/c/color-filesystem/color-filesystem.spec +++ b/specs/c/color-filesystem/color-filesystem.spec @@ -3,7 +3,7 @@ Name: color-filesystem Version: 1 -Release: 37%{?dist} +Release: 37%{?dist} Summary: Color filesystem layout License: LicenseRef-Not-Copyrightable diff --git a/specs/c/compat-lua/compat-lua.spec b/specs/c/compat-lua/compat-lua.spec index c74c0f07820..72f09894705 100644 --- a/specs/c/compat-lua/compat-lua.spec +++ b/specs/c/compat-lua/compat-lua.spec @@ -3,7 +3,7 @@ Name: compat-lua Version: 5.1.5 -Release: 30%{?dist} +Release: 30%{?dist} Summary: Powerful light-weight programming language (compat version) License: MIT URL: http://www.lua.org/ diff --git a/specs/c/composefs/composefs.spec b/specs/c/composefs/composefs.spec index 1289bb5fb8f..9569dbe6ad1 100644 --- a/specs/c/composefs/composefs.spec +++ b/specs/c/composefs/composefs.spec @@ -12,7 +12,7 @@ Name: composefs Version: 1.0.8 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Tools to handle creating and mounting composefs images License: LGPL-2.0-or-later AND Apache-2.0 diff --git a/specs/c/console-login-helper-messages/console-login-helper-messages.spec b/specs/c/console-login-helper-messages/console-login-helper-messages.spec index 5fedf4e5ce1..ffe3ad5d6d8 100644 --- a/specs/c/console-login-helper-messages/console-login-helper-messages.spec +++ b/specs/c/console-login-helper-messages/console-login-helper-messages.spec @@ -6,7 +6,7 @@ Name: console-login-helper-messages Version: 0.21.3 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Combines motd, issue, profile features to show system information to the user before/on login License: BSD-3-Clause URL: https://github.com/%{github_owner}/%{github_project} diff --git a/specs/c/console-setup/console-setup.spec b/specs/c/console-setup/console-setup.spec index ddeae51d9bb..e1919e92d69 100644 --- a/specs/c/console-setup/console-setup.spec +++ b/specs/c/console-setup/console-setup.spec @@ -4,7 +4,7 @@ Name: console-setup Version: 1.239 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Tools for configuring the console using X Window System key maps # For a breakdown of the licensing, see COPYRIGHT, copyright, copyright.fonts and copyright.xkb diff --git a/specs/c/cppcheck/cppcheck.spec b/specs/c/cppcheck/cppcheck.spec index 54a54912f86..ffd76453881 100644 --- a/specs/c/cppcheck/cppcheck.spec +++ b/specs/c/cppcheck/cppcheck.spec @@ -9,7 +9,7 @@ Name: cppcheck Version: 2.19.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Tool for static C/C++ code analysis License: GPL-3.0-or-later URL: http://cppcheck.sourceforge.io/ diff --git a/specs/c/cpprest/cpprest.spec b/specs/c/cpprest/cpprest.spec index 0e633d45a56..a6992e9e540 100644 --- a/specs/c/cpprest/cpprest.spec +++ b/specs/c/cpprest/cpprest.spec @@ -8,7 +8,7 @@ %define minor 10 Name: cpprest Version: 2.10.19 -Release: 9%{?dist} +Release: 9%{?dist} Summary: C++ REST library License: MIT Url: https://github.com/Microsoft/cpprestsdk diff --git a/specs/c/cpuinfo/cpuinfo.spec b/specs/c/cpuinfo/cpuinfo.spec index 60b240ac839..014b05cb5d1 100644 --- a/specs/c/cpuinfo/cpuinfo.spec +++ b/specs/c/cpuinfo/cpuinfo.spec @@ -33,7 +33,7 @@ Version: 24.09.26 Summary: A library to detect information about host CPU Name: cpuinfo License: BSD-2-Clause -Release: %{patch_level}.git%{?shortcommit0}%{?dist}.2 +Release: %{patch_level}.git%{?shortcommit0}%{?dist}.4 URL: https://github.com/pytorch/%{name} diff --git a/specs/c/createrepo_c/createrepo_c.spec b/specs/c/createrepo_c/createrepo_c.spec index 40ef4e56ea2..5e22be15b66 100644 --- a/specs/c/createrepo_c/createrepo_c.spec +++ b/specs/c/createrepo_c/createrepo_c.spec @@ -44,7 +44,7 @@ Summary: Creates a common metadata repository Name: createrepo_c Version: %{package_version} -Release: 4%{?dist} +Release: 4%{?dist} License: GPL-2.0-or-later URL: https://github.com/rpm-software-management/createrepo_c Source0: %{url}/archive/%{version}/%{name}-%{version}.tar.gz diff --git a/specs/c/cri-o/cri-o.spec b/specs/c/cri-o/cri-o.spec index b5a1f148116..53574bd01df 100644 --- a/specs/c/cri-o/cri-o.spec +++ b/specs/c/cri-o/cri-o.spec @@ -33,7 +33,7 @@ Version: 1.32.0 Name: cri-o Epoch: 0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Open Container Initiative-based implementation of Kubernetes Container Runtime Interface # Upstream license specification: Apache-2.0 diff --git a/specs/c/cross-gcc/cross-gcc.spec b/specs/c/cross-gcc/cross-gcc.spec index 7c447de772c..a05daaaffeb 100644 --- a/specs/c/cross-gcc/cross-gcc.spec +++ b/specs/c/cross-gcc/cross-gcc.spec @@ -86,7 +86,7 @@ # line. gcc_release is the Fedora gcc release that the patches were # taken from. %global gcc_release 2 -%global cross_gcc_release 1 +%global cross_gcc_release 3 %global cross_binutils_version 2.43.1-1 %global isl_version 0.16.1 %global isl_libmajor 15 diff --git a/specs/c/crypto-policies/crypto-policies.spec b/specs/c/crypto-policies/crypto-policies.spec index b09dfbe0be5..c4bb8c3a1f0 100644 --- a/specs/c/crypto-policies/crypto-policies.spec +++ b/specs/c/crypto-policies/crypto-policies.spec @@ -14,7 +14,7 @@ Name: crypto-policies Version: %{git_date} -Release: 1.git%{git_commit_hash}%{?dist} +Release: 4.git%{git_commit_hash}%{?dist} Summary: System-wide crypto policies License: LGPL-2.1-or-later diff --git a/specs/c/csnappy/csnappy.spec b/specs/c/csnappy/csnappy.spec index 8a962746181..de9c399d999 100644 --- a/specs/c/csnappy/csnappy.spec +++ b/specs/c/csnappy/csnappy.spec @@ -14,7 +14,7 @@ Name: csnappy Version: 0 -Release: 32.20211216git%{shortcommit}%{?dist} +Release: 35.20211216git%{shortcommit}%{?dist} Summary: Snappy compression library ported to C License: BSD-3-Clause URL: https://github.com/zeevt/%{name} diff --git a/specs/c/cups-pk-helper/cups-pk-helper.spec b/specs/c/cups-pk-helper/cups-pk-helper.spec index 1519bbc5b7b..eacb5adc13b 100644 --- a/specs/c/cups-pk-helper/cups-pk-helper.spec +++ b/specs/c/cups-pk-helper/cups-pk-helper.spec @@ -3,7 +3,7 @@ Name: cups-pk-helper Version: 0.2.7 -Release: 11%{?dist} +Release: 11%{?dist} Summary: A helper that makes system-config-printer use PolicyKit License: GPL-2.0-or-later diff --git a/specs/c/cvs/cvs.spec b/specs/c/cvs/cvs.spec index 690b8e1b661..229a0f355d5 100644 --- a/specs/c/cvs/cvs.spec +++ b/specs/c/cvs/cvs.spec @@ -17,7 +17,7 @@ Name: cvs Version: 1.11.23 -Release: 76%{?dist} +Release: 76%{?dist} Summary: Concurrent Versions System URL: https://cvs.nongnu.org/ # contrib/check_cvs.in: check-cvs diff --git a/specs/c/cvsps/cvsps.spec b/specs/c/cvsps/cvsps.spec index 64d4931eb04..30d24ca6da7 100644 --- a/specs/c/cvsps/cvsps.spec +++ b/specs/c/cvsps/cvsps.spec @@ -5,7 +5,7 @@ Name: cvsps Version: 2.2 -Release: 0.39.b1%{?dist} +Release: 0.42.b1%{?dist} Summary: Patchset tool for CVS License: GPL-1.0-or-later diff --git a/specs/d/DevIL/DevIL.spec b/specs/d/DevIL/DevIL.spec index 93a2deb11b6..9e7f984b54a 100644 --- a/specs/d/DevIL/DevIL.spec +++ b/specs/d/DevIL/DevIL.spec @@ -3,7 +3,7 @@ Name: DevIL Version: 1.7.8 -Release: 52%{?dist} +Release: 52%{?dist} Summary: A cross-platform image library # Automatically converted from old format: LGPLv2 - review is highly recommended. License: LicenseRef-Callaway-LGPLv2 diff --git a/specs/d/dash/dash.spec b/specs/d/dash/dash.spec index da44691fab4..af435253bc2 100644 --- a/specs/d/dash/dash.spec +++ b/specs/d/dash/dash.spec @@ -3,7 +3,7 @@ Name: dash Version: 0.5.12 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Small and fast POSIX-compliant shell # BSD-3-Clause: DASH in general # GPL-2.0-or-later: From src/mksignames.c diff --git a/specs/d/date/date.spec b/specs/d/date/date.spec index b0f2db26cda..66a79048836 100644 --- a/specs/d/date/date.spec +++ b/specs/d/date/date.spec @@ -6,7 +6,7 @@ Name: date Version: 3.0.4 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Date and time library based on the C++11/14/17 header License: MIT diff --git a/specs/d/dbus-c++/dbus-c++.spec b/specs/d/dbus-c++/dbus-c++.spec index 5ff7e823ca3..238a90c0a07 100644 --- a/specs/d/dbus-c++/dbus-c++.spec +++ b/specs/d/dbus-c++/dbus-c++.spec @@ -5,7 +5,7 @@ Name: dbus-c++ Version: 0.9.0 -Release: 37%{?dist} +Release: 37%{?dist} Summary: Native C++ bindings for D-Bus # Automatically converted from old format: LGPLv2+ - review is highly recommended. diff --git a/specs/d/dbusmenu-qt/dbusmenu-qt.spec b/specs/d/dbusmenu-qt/dbusmenu-qt.spec index 3a818c0db3e..ad50b113f43 100644 --- a/specs/d/dbusmenu-qt/dbusmenu-qt.spec +++ b/specs/d/dbusmenu-qt/dbusmenu-qt.spec @@ -17,7 +17,7 @@ Summary: A Qt implementation of the DBusMenu protocol Name: dbusmenu-qt Version: 0.9.3 -Release: 0.37.%{snapshot}%{?dist} +Release: 0.40.%{snapshot}%{?dist} License: LGPL-2.0-or-later URL: https://launchpad.net/libdbusmenu-qt/ diff --git a/specs/d/ddiskit/ddiskit.spec b/specs/d/ddiskit/ddiskit.spec index 39566bf67ff..2b17d669824 100644 --- a/specs/d/ddiskit/ddiskit.spec +++ b/specs/d/ddiskit/ddiskit.spec @@ -14,7 +14,7 @@ Version: 3.6 %forgemeta -Release: 32%{?dist} +Release: 32%{?dist} Summary: Tool for Red Hat Enterprise Linux Driver Update Disk creation License: GPL-3.0-only diff --git a/specs/d/debootstrap/debootstrap.spec b/specs/d/debootstrap/debootstrap.spec index c48846926c2..f5902c9afef 100644 --- a/specs/d/debootstrap/debootstrap.spec +++ b/specs/d/debootstrap/debootstrap.spec @@ -10,7 +10,7 @@ Name: debootstrap Version: 1.0.140 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Debian GNU/Linux bootstrapper License: MIT diff --git a/specs/d/device-mapper-persistent-data/device-mapper-persistent-data.spec b/specs/d/device-mapper-persistent-data/device-mapper-persistent-data.spec index 886498f0f29..5f23820bb73 100644 --- a/specs/d/device-mapper-persistent-data/device-mapper-persistent-data.spec +++ b/specs/d/device-mapper-persistent-data/device-mapper-persistent-data.spec @@ -13,7 +13,7 @@ Summary: Device-mapper Persistent Data Tools Name: device-mapper-persistent-data Version: 1.1.0 -Release: 4%{?dist}%{?release_suffix} +Release: 7%{?dist}%{?release_suffix} License: GPL-3.0-only AND (0BSD OR MIT OR Apache-2.0) AND Apache-2.0 AND (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND BSD-3-Clause AND MIT AND (MIT OR Apache-2.0) AND (MIT OR Zlib OR Apache-2.0) AND (Unlicense OR MIT) AND (Zlib OR Apache-2.0 OR MIT) #ExcludeArch: %%{ix86} diff --git a/specs/d/devscripts/devscripts.spec b/specs/d/devscripts/devscripts.spec index 09a9f592cb1..9d17d0c0ea2 100644 --- a/specs/d/devscripts/devscripts.spec +++ b/specs/d/devscripts/devscripts.spec @@ -3,7 +3,7 @@ Name: devscripts Version: 2.25.33 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Scripts for Debian Package maintainers BuildArch: noarch diff --git a/specs/d/dialog/dialog.spec b/specs/d/dialog/dialog.spec index d12dfa70afd..cee6194f9ab 100644 --- a/specs/d/dialog/dialog.spec +++ b/specs/d/dialog/dialog.spec @@ -5,7 +5,7 @@ Summary: A utility for creating TTY dialog boxes Name: dialog %global dialogsubversion 20250116 Version: 1.3 -Release: 55.%{dialogsubversion}%{?dist} +Release: 58.%{dialogsubversion}%{?dist} License: LGPL-2.1-only URL: https://invisible-island.net/dialog/dialog.html Source0: https://invisible-mirror.net/archives/dialog/dialog-%{version}-%{dialogsubversion}.tgz diff --git a/specs/d/dietlibc/dietlibc.spec b/specs/d/dietlibc/dietlibc.spec index 240973fb071..67cb9ca1cde 100644 --- a/specs/d/dietlibc/dietlibc.spec +++ b/specs/d/dietlibc/dietlibc.spec @@ -30,7 +30,7 @@ Summary: Small libc implementation Name: dietlibc Version: 0.34 -Release: 21%{?dist} +Release: 21%{?dist} License: GPL-2.0-only URL: http://www.fefe.de/dietlibc/ %if !0%{?prerelease:1} diff --git a/specs/d/discount/discount.spec b/specs/d/discount/discount.spec index f342031d437..19b29d17182 100644 --- a/specs/d/discount/discount.spec +++ b/specs/d/discount/discount.spec @@ -7,7 +7,7 @@ Name: discount Version: 2.2.7 -Release: 13%{?dist} +Release: 13%{?dist} Summary: A command-line utility for converting Markdown files into HTML # Automatically converted from old format: BSD - review is highly recommended. License: LicenseRef-Callaway-BSD diff --git a/specs/d/distribution-gpg-keys/distribution-gpg-keys.spec b/specs/d/distribution-gpg-keys/distribution-gpg-keys.spec index 48828f684c0..6d3e3067f3f 100644 --- a/specs/d/distribution-gpg-keys/distribution-gpg-keys.spec +++ b/specs/d/distribution-gpg-keys/distribution-gpg-keys.spec @@ -3,7 +3,7 @@ Name: distribution-gpg-keys Version: 1.117 -Release: 2%{?dist} +Release: 2%{?dist} Summary: GPG keys of various Linux distributions License: CC0-1.0 diff --git a/specs/d/dlm/dlm.spec b/specs/d/dlm/dlm.spec index b1f51a2e1c4..4cb494568a9 100644 --- a/specs/d/dlm/dlm.spec +++ b/specs/d/dlm/dlm.spec @@ -3,7 +3,7 @@ Name: dlm Version: 4.3.0 -Release: 7%{?dist} +Release: 7%{?dist} License: GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.0-or-later Summary: dlm control daemon and tool URL: https://pagure.io/dlm diff --git a/specs/d/dmidecode/dmidecode.spec b/specs/d/dmidecode/dmidecode.spec index ce82c7796f0..9fb9a1b189a 100644 --- a/specs/d/dmidecode/dmidecode.spec +++ b/specs/d/dmidecode/dmidecode.spec @@ -4,7 +4,7 @@ Summary: Tool to analyse BIOS DMI data Name: dmidecode Version: 3.6 -Release: 8%{?dist} +Release: 8%{?dist} Epoch: 1 License: GPL-2.0-or-later Source0: https://download.savannah.gnu.org/releases/%{name}/%{name}-%{version}.tar.xz diff --git a/specs/d/dnf-plugins-core/dnf-plugins-core.spec b/specs/d/dnf-plugins-core/dnf-plugins-core.spec index 7002dee6fb7..b7ed8eea3c2 100644 --- a/specs/d/dnf-plugins-core/dnf-plugins-core.spec +++ b/specs/d/dnf-plugins-core/dnf-plugins-core.spec @@ -45,7 +45,7 @@ Name: dnf-plugins-core Version: 4.10.1 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Core Plugins for DNF License: GPL-2.0-or-later URL: https://github.com/rpm-software-management/dnf-plugins-core diff --git a/specs/d/dnf/dnf.spec b/specs/d/dnf/dnf.spec index 103dadcaa8b..1ce69d51208 100644 --- a/specs/d/dnf/dnf.spec +++ b/specs/d/dnf/dnf.spec @@ -54,7 +54,7 @@ It supports RPMs, modules and comps groups & environments. Name: dnf Version: 4.24.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: %{pkg_summary} # For a breakdown of the licensing, see PACKAGE-LICENSING License: GPL-2.0-or-later AND GPL-1.0-only diff --git a/specs/d/dnf5/dnf5.spec b/specs/d/dnf5/dnf5.spec index b401bc9f355..3ef205922c1 100644 --- a/specs/d/dnf5/dnf5.spec +++ b/specs/d/dnf5/dnf5.spec @@ -13,7 +13,7 @@ Name: dnf5 Version: %{project_version_prime}.%{project_version_major}.%{project_version_minor}.%{project_version_micro} -Release: 2%{?dist} +Release: 2%{?dist} Summary: Command-line package manager License: GPL-2.0-or-later URL: https://github.com/rpm-software-management/dnf5 diff --git a/specs/d/dnsconfd/dnsconfd.spec b/specs/d/dnsconfd/dnsconfd.spec index 4699379e944..ea94fca66d8 100644 --- a/specs/d/dnsconfd/dnsconfd.spec +++ b/specs/d/dnsconfd/dnsconfd.spec @@ -6,7 +6,7 @@ Name: dnsconfd Version: 1.7.5 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Local DNS cache configuration daemon License: MIT URL: https://github.com/InfrastructureServices/dnsconfd diff --git a/specs/d/dnsmasq/dnsmasq.spec b/specs/d/dnsmasq/dnsmasq.spec index 1832f6d0bf8..6e9485f851f 100644 --- a/specs/d/dnsmasq/dnsmasq.spec +++ b/specs/d/dnsmasq/dnsmasq.spec @@ -27,7 +27,7 @@ Name: dnsmasq Version: 2.92 -Release: 1%{?extraversion:.%{extraversion}}%{?dist} +Release: 4%{?extraversion:.%{extraversion}}%{?dist} Summary: A lightweight DHCP/caching DNS server # SPDX identifiers already diff --git a/specs/d/docbook2X/docbook2X.spec b/specs/d/docbook2X/docbook2X.spec index 365351157d7..43e0775d73c 100644 --- a/specs/d/docbook2X/docbook2X.spec +++ b/specs/d/docbook2X/docbook2X.spec @@ -3,7 +3,7 @@ Name: docbook2X Version: 0.8.8 -Release: 51%{?dist} +Release: 51%{?dist} Summary: Convert docbook into man and Texinfo License: MIT diff --git a/specs/d/dogtag-pki/dogtag-pki.spec b/specs/d/dogtag-pki/dogtag-pki.spec index 7203ecc506e..dc26a6bbb60 100644 --- a/specs/d/dogtag-pki/dogtag-pki.spec +++ b/specs/d/dogtag-pki/dogtag-pki.spec @@ -19,7 +19,7 @@ Name: dogtag-pki # Downstream release number: # - development/stabilization (unsupported): 0. where n >= 1 # - GA/update (supported): where n >= 1 -%global release_number 1 +%global release_number 4 # Development phase: # - development (unsupported): alpha where n >= 1 diff --git a/specs/d/dom4j/dom4j.spec b/specs/d/dom4j/dom4j.spec index caa7eeee8c9..9863df3d4b6 100644 --- a/specs/d/dom4j/dom4j.spec +++ b/specs/d/dom4j/dom4j.spec @@ -33,7 +33,7 @@ Name: dom4j Version: 2.1.4 -Release: 4%{?dist} +Release: 4%{?dist} Epoch: 0 Summary: Open Source XML framework for Java # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/d/double-conversion/double-conversion.spec b/specs/d/double-conversion/double-conversion.spec index b07e30c445c..63a95672275 100644 --- a/specs/d/double-conversion/double-conversion.spec +++ b/specs/d/double-conversion/double-conversion.spec @@ -4,7 +4,7 @@ Summary: Library providing binary-decimal and decimal-binary routines for IEEE doubles Name: double-conversion Version: 3.4.0 -Release: 2%{?dist} +Release: 2%{?dist} License: BSD-3-Clause URL: https://github.com/google/double-conversion diff --git a/specs/d/driverctl/driverctl.spec b/specs/d/driverctl/driverctl.spec index 7a320daaff9..11fcacdb530 100644 --- a/specs/d/driverctl/driverctl.spec +++ b/specs/d/driverctl/driverctl.spec @@ -5,7 +5,7 @@ Name: driverctl Version: 0.101 -Release: 19%{?dist} +Release: 19%{?dist} Summary: Device driver control utility # Automatically converted from old format: LGPLv2 - review is highly recommended. diff --git a/specs/d/drpm/drpm.spec b/specs/d/drpm/drpm.spec index 98c056e925c..aba883efe9f 100644 --- a/specs/d/drpm/drpm.spec +++ b/specs/d/drpm/drpm.spec @@ -10,7 +10,7 @@ Name: drpm Version: 0.5.2 -Release: 10%{?dist} +Release: 10%{?dist} Summary: A library for making, reading and applying deltarpm packages # the entire source code is LGPLv2+, except src/drpm_diff.c and src/drpm_search.c which are BSD # Automatically converted from old format: LGPLv2+ and BSD - review is highly recommended. diff --git a/specs/d/dtc/dtc.spec b/specs/d/dtc/dtc.spec index c4cd5e55bef..6308059ce95 100644 --- a/specs/d/dtc/dtc.spec +++ b/specs/d/dtc/dtc.spec @@ -11,7 +11,7 @@ Name: dtc Version: 1.7.2 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Device Tree Compiler License: GPL-2.0-or-later URL: https://devicetree.org/ diff --git a/specs/e/ebook-tools/ebook-tools.spec b/specs/e/ebook-tools/ebook-tools.spec index 2e9644cbded..86aedfed7e4 100644 --- a/specs/e/ebook-tools/ebook-tools.spec +++ b/specs/e/ebook-tools/ebook-tools.spec @@ -7,7 +7,7 @@ Name: ebook-tools Version: 0.2.2 -Release: 31%{?dist} +Release: 31%{?dist} Summary: Tools for accessing and converting various ebook file formats License: MIT diff --git a/specs/e/ebtables/ebtables.spec b/specs/e/ebtables/ebtables.spec index 16787f355a4..4a5caca18a3 100644 --- a/specs/e/ebtables/ebtables.spec +++ b/specs/e/ebtables/ebtables.spec @@ -5,7 +5,7 @@ Name: ebtables Version: 2.0.11 -Release: 22%{?dist} +Release: 22%{?dist} Summary: Ethernet Bridge frame table administration tool # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later diff --git a/specs/e/ed25519-java/ed25519-java.spec b/specs/e/ed25519-java/ed25519-java.spec index eef15566da9..d20331cf08c 100644 --- a/specs/e/ed25519-java/ed25519-java.spec +++ b/specs/e/ed25519-java/ed25519-java.spec @@ -3,7 +3,7 @@ Name: ed25519-java Version: 0.3.0 -Release: 27%{?dist} +Release: 27%{?dist} Summary: Implementation of EdDSA (Ed25519) in Java # Automatically converted from old format: CC0 - review is highly recommended. License: CC0-1.0 diff --git a/specs/e/editorconfig/editorconfig.spec b/specs/e/editorconfig/editorconfig.spec index ca1117ae31a..5c6b75badda 100644 --- a/specs/e/editorconfig/editorconfig.spec +++ b/specs/e/editorconfig/editorconfig.spec @@ -19,7 +19,7 @@ editors.} Name: editorconfig Summary: Parser for EditorConfig files written in C Version: 0.12.10 -Release: 2%{?dist} +Release: 2%{?dist} # The entire source is BSD-2-Clause, except: # BSD-3-Clause: src/lib/ini.h diff --git a/specs/e/efivar/efivar.spec b/specs/e/efivar/efivar.spec index 2084fffadfe..07a693667af 100644 --- a/specs/e/efivar/efivar.spec +++ b/specs/e/efivar/efivar.spec @@ -3,7 +3,7 @@ Name: efivar Version: 39 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Tools to manage UEFI variables License: LGPL-2.1-only URL: https://github.com/rhboot/efivar diff --git a/specs/e/efl/efl.spec b/specs/e/efl/efl.spec index 9330bf23587..f330049ef60 100644 --- a/specs/e/efl/efl.spec +++ b/specs/e/efl/efl.spec @@ -20,7 +20,7 @@ Name: efl Version: 1.28.1 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Collection of Enlightenment libraries # Automatically converted from old format: BSD and LGPLv2+ and GPLv2 and zlib - review is highly recommended. License: LicenseRef-Callaway-BSD AND LicenseRef-Callaway-LGPLv2+ AND GPL-2.0-only AND Zlib diff --git a/specs/e/eglexternalplatform/eglexternalplatform.spec b/specs/e/eglexternalplatform/eglexternalplatform.spec index d3b37299224..fce3edfc406 100644 --- a/specs/e/eglexternalplatform/eglexternalplatform.spec +++ b/specs/e/eglexternalplatform/eglexternalplatform.spec @@ -5,7 +5,7 @@ Name: eglexternalplatform Version: 1.2.1 -Release: 3%{?dist} +Release: 3%{?dist} Summary: EGL External Platform Interface headers License: MIT URL: https://github.com/NVIDIA diff --git a/specs/e/eigen3/eigen3.spec b/specs/e/eigen3/eigen3.spec index 22d632e96b4..26405b937fc 100644 --- a/specs/e/eigen3/eigen3.spec +++ b/specs/e/eigen3/eigen3.spec @@ -28,7 +28,7 @@ Name: eigen3 Version: 3.4.0 -Release: 20%{?dist} +Release: 20%{?dist} Summary: A lightweight C++ template library for vector and matrix math License: Apache-2.0 AND MPL-2.0 AND LGPL-2.0-or-later AND BSD-3-Clause AND Minpack diff --git a/specs/e/elfutils/elfutils.spec b/specs/e/elfutils/elfutils.spec index a36e046d236..1b12028ebf9 100644 --- a/specs/e/elfutils/elfutils.spec +++ b/specs/e/elfutils/elfutils.spec @@ -10,7 +10,7 @@ Name: elfutils Version: 0.194 -%global baserelease 3 +%global baserelease 6 Release: %[%{baserelease} + %{azl_release}]%{?dist} URL: http://elfutils.org/ %global source_url ftp://sourceware.org/pub/elfutils/%{version}/ diff --git a/specs/e/elinks/elinks.spec b/specs/e/elinks/elinks.spec index b1d8241cec7..6b4f70673a4 100644 --- a/specs/e/elinks/elinks.spec +++ b/specs/e/elinks/elinks.spec @@ -10,7 +10,7 @@ Name: elinks Summary: A text-mode Web browser Version: 0.18.0 -Release: 4%{?dist} +Release: 4%{?dist} License: GPL-2.0-only URL: https://github.com/rkd77/elinks Source: https://github.com/rkd77/elinks/releases/download/v%{version}/elinks-%{version}.tar.xz diff --git a/specs/e/emacs-auctex/emacs-auctex.spec b/specs/e/emacs-auctex/emacs-auctex.spec index b095e697c5e..70b1c942020 100644 --- a/specs/e/emacs-auctex/emacs-auctex.spec +++ b/specs/e/emacs-auctex/emacs-auctex.spec @@ -15,7 +15,7 @@ Summary: Enhanced TeX modes for Emacs Name: emacs-auctex Version: 13.3 -Release: 7%{?dist} +Release: 7%{?dist} # The project as a whole is GPL-3.0-or-later. Exceptions: # - README and doc/intro.texi are FSFAP diff --git a/specs/e/enchant2/enchant2.spec b/specs/e/enchant2/enchant2.spec index 21fa9bb872e..ca43d975052 100644 --- a/specs/e/enchant2/enchant2.spec +++ b/specs/e/enchant2/enchant2.spec @@ -8,7 +8,7 @@ Name: enchant2 Version: 2.8.15 -Release: 3%{?dist} +Release: 3%{?dist} Summary: An Enchanting Spell Checking Library License: LGPL-2.0-or-later diff --git a/specs/e/environment-modules/environment-modules.spec b/specs/e/environment-modules/environment-modules.spec index 854f0fcb433..e649b4dd9a4 100644 --- a/specs/e/environment-modules/environment-modules.spec +++ b/specs/e/environment-modules/environment-modules.spec @@ -5,7 +5,7 @@ Name: environment-modules Version: 5.6.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Provides dynamic modification of a user's environment License: GPL-2.0-or-later diff --git a/specs/e/ephemeral-port-reserve/ephemeral-port-reserve.spec b/specs/e/ephemeral-port-reserve/ephemeral-port-reserve.spec index c35bc3b7eec..ee9b4ce87c3 100644 --- a/specs/e/ephemeral-port-reserve/ephemeral-port-reserve.spec +++ b/specs/e/ephemeral-port-reserve/ephemeral-port-reserve.spec @@ -3,7 +3,7 @@ Name: ephemeral-port-reserve Version: 1.1.4 -Release: 17%{?dist} +Release: 17%{?dist} Summary: Bind to an ephemeral port, force it into the TIME_WAIT state, and unbind it. License: MIT diff --git a/specs/e/epstool/epstool.spec b/specs/e/epstool/epstool.spec index f6599490b66..78743195905 100644 --- a/specs/e/epstool/epstool.spec +++ b/specs/e/epstool/epstool.spec @@ -3,7 +3,7 @@ Name: epstool Version: 3.08 -Release: 33%{?dist} +Release: 33%{?dist} Summary: A utility to create or extract preview images in EPS files # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later diff --git a/specs/e/erlang/erlang.spec b/specs/e/erlang/erlang.spec index c18b49086a9..a2007085bc9 100644 --- a/specs/e/erlang/erlang.spec +++ b/specs/e/erlang/erlang.spec @@ -75,7 +75,7 @@ Name: erlang Version: 26.2.5.17 -Release: 4%{?dist} +Release: 4%{?dist} Summary: General-purpose programming language and runtime environment License: Apache-2.0 diff --git a/specs/e/erofs-utils/erofs-utils.spec b/specs/e/erofs-utils/erofs-utils.spec index 42b4643c50c..8ad13b8b261 100644 --- a/specs/e/erofs-utils/erofs-utils.spec +++ b/specs/e/erofs-utils/erofs-utils.spec @@ -21,7 +21,7 @@ Name: erofs-utils Version: 1.9 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Utilities for working with EROFS License: GPL-2.0-only AND GPL-2.0-or-later AND (GPL-2.0-only OR Apache-2.0) AND (GPL-2.0-or-later OR Apache-2.0) AND (GPL-2.0-only OR BSD-2-Clause) AND (GPL-2.0-or-later OR BSD-2-Clause) AND MIT AND Unlicense diff --git a/specs/e/esmtp/esmtp.spec b/specs/e/esmtp/esmtp.spec index 337a9f17489..42c88c4f8ae 100644 --- a/specs/e/esmtp/esmtp.spec +++ b/specs/e/esmtp/esmtp.spec @@ -5,7 +5,7 @@ Summary: User configurable send-only Mail Transfer Agent Summary(de): Benutzerkonfigurierbarer nur versendender Mail Transfer Agent (MTA) Name: esmtp Version: 1.2 -Release: 31%{?dist} +Release: 31%{?dist} Source: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 Source1: esmtp-0.4.1-mutt # esmtp system config file configuring procmail as mda, for the local-delivery diff --git a/specs/e/espeak-ng/espeak-ng.spec b/specs/e/espeak-ng/espeak-ng.spec index a0a10866eb1..967ee4dc955 100644 --- a/specs/e/espeak-ng/espeak-ng.spec +++ b/specs/e/espeak-ng/espeak-ng.spec @@ -3,7 +3,7 @@ Name: espeak-ng Version: 1.51.1 -Release: 14%{?dist} +Release: 14%{?dist} Summary: eSpeak NG Text-to-Speech License: GPL-3.0-only AND GPL-3.0-or-later AND Apache-2.0 AND BSD-2-Clause AND Unicode-DFS-2016 AND CC-BY-SA-3.0 diff --git a/specs/e/espeak/espeak.spec b/specs/e/espeak/espeak.spec index 95d2df6039d..59eb92ef9f4 100644 --- a/specs/e/espeak/espeak.spec +++ b/specs/e/espeak/espeak.spec @@ -12,7 +12,7 @@ Name: espeak Version: 1.48.04 -Release: 34%{?dist} +Release: 34%{?dist} Summary: Software speech synthesizer (text-to-speech) # Automatically converted from old format: GPLv3+ - review is highly recommended. diff --git a/specs/e/ethtool/ethtool.spec b/specs/e/ethtool/ethtool.spec index db5ae5a4037..3b120337695 100644 --- a/specs/e/ethtool/ethtool.spec +++ b/specs/e/ethtool/ethtool.spec @@ -7,7 +7,7 @@ Summary: Settings tool for Ethernet NICs Name: ethtool Epoch: 2 Version: 6.15 -Release: 5%{?dist} +Release: 5%{?dist} # {json_print,qsfp,sff-common}.{c,h} are GPL-2.0-or-later, rest is GPL-2.0-only License: GPL-2.0-only AND GPL-2.0-or-later URL: https://www.kernel.org/pub/software/network/%{name}/ diff --git a/specs/e/exempi/exempi.spec b/specs/e/exempi/exempi.spec index d4e9ebac4fb..62bbcd2e5d4 100644 --- a/specs/e/exempi/exempi.spec +++ b/specs/e/exempi/exempi.spec @@ -4,7 +4,7 @@ Summary: Library for easy parsing of XMP metadata Name: exempi Version: 2.6.4 -Release: 9%{?dist} +Release: 9%{?dist} License: BSD-3-Clause URL: http://libopenraw.freedesktop.org/wiki/Exempi Source0: https://gitlab.freedesktop.org/libopenraw/%{name}/-/archive/%{version}/%{name}-%{version}.tar.bz2 diff --git a/specs/e/exif/exif.spec b/specs/e/exif/exif.spec index fa153d800a5..796f5c71edf 100644 --- a/specs/e/exif/exif.spec +++ b/specs/e/exif/exif.spec @@ -3,7 +3,7 @@ Name: exif Version: 0.6.22 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Utility to show EXIF information hidden in JPEG files Summary(fr): Outil pour afficher les informations EXIF masquées dans les fichiers JPEG diff --git a/specs/f/f2fs-tools/f2fs-tools.spec b/specs/f/f2fs-tools/f2fs-tools.spec index ce35a4519de..aa8915693f9 100644 --- a/specs/f/f2fs-tools/f2fs-tools.spec +++ b/specs/f/f2fs-tools/f2fs-tools.spec @@ -3,7 +3,7 @@ Name: f2fs-tools Version: 1.16.0 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Tools for Flash-Friendly File System (F2FS) # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later diff --git a/specs/f/fasterxml-oss-parent/fasterxml-oss-parent.spec b/specs/f/fasterxml-oss-parent/fasterxml-oss-parent.spec index 0d90404a8e7..78de0daf9fd 100644 --- a/specs/f/fasterxml-oss-parent/fasterxml-oss-parent.spec +++ b/specs/f/fasterxml-oss-parent/fasterxml-oss-parent.spec @@ -5,7 +5,7 @@ Name: fasterxml-oss-parent Version: 62 -Release: 5%{?dist} +Release: 5%{?dist} Summary: FasterXML parent pom License: Apache-2.0 diff --git a/specs/f/fcgi/fcgi.spec b/specs/f/fcgi/fcgi.spec index 72e3bf87dba..59a07de6c33 100644 --- a/specs/f/fcgi/fcgi.spec +++ b/specs/f/fcgi/fcgi.spec @@ -3,7 +3,7 @@ Name: fcgi Version: 2.4.7 -Release: 2%{?dist} +Release: 2%{?dist} Summary: FastCGI development kit License: OML diff --git a/specs/f/fcoe-utils/fcoe-utils.spec b/specs/f/fcoe-utils/fcoe-utils.spec index 593f551adca..43d21150978 100644 --- a/specs/f/fcoe-utils/fcoe-utils.spec +++ b/specs/f/fcoe-utils/fcoe-utils.spec @@ -10,7 +10,7 @@ Name: fcoe-utils Version: 1.0.34 -Release: 12.git%{shortcommit0}%{?dist} +Release: 15.git%{shortcommit0}%{?dist} Summary: Fibre Channel over Ethernet utilities License: GPL-2.0-only URL: http://www.open-fcoe.org diff --git a/specs/f/fdupes/fdupes.spec b/specs/f/fdupes/fdupes.spec index 3a100124d64..149109f2998 100644 --- a/specs/f/fdupes/fdupes.spec +++ b/specs/f/fdupes/fdupes.spec @@ -8,7 +8,7 @@ Name: fdupes Epoch: 1 Version: 2.4.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Finds duplicate files in a given set of directories License: MIT diff --git a/specs/f/fence-agents/fence-agents.spec b/specs/f/fence-agents/fence-agents.spec index 498d24df72b..f87f7f20c7a 100644 --- a/specs/f/fence-agents/fence-agents.spec +++ b/specs/f/fence-agents/fence-agents.spec @@ -16,7 +16,7 @@ Name: fence-agents Summary: Set of unified programs capable of host isolation ("fencing") Version: 4.17.0 -Release: 1%{?alphatag:.%{alphatag}}%{?dist} +Release: 4%{?alphatag:.%{alphatag}}%{?dist} License: GPL-2.0-or-later AND LGPL-2.0-or-later Group: System Environment/Base URL: https://github.com/ClusterLabs/fence-agents diff --git a/specs/f/fftw/fftw.spec b/specs/f/fftw/fftw.spec index 869b2d3b14e..a683dcef18e 100644 --- a/specs/f/fftw/fftw.spec +++ b/specs/f/fftw/fftw.spec @@ -25,7 +25,7 @@ Name: fftw Version: 3.3.10 -Release: 17%{?dist} +Release: 17%{?dist} Summary: A Fast Fourier Transform library # Generally, the code is under GPL but some headers are also under MIT or BSD: License: GPL-2.0-or-later AND MIT AND BSD-2-Clause diff --git a/specs/f/fido-device-onboard/fido-device-onboard.spec b/specs/f/fido-device-onboard/fido-device-onboard.spec index bce48ef0073..fbd28e1c21c 100644 --- a/specs/f/fido-device-onboard/fido-device-onboard.spec +++ b/specs/f/fido-device-onboard/fido-device-onboard.spec @@ -7,7 +7,7 @@ Name: fido-device-onboard Version: 0.5.5 -Release: 8%{?dist} +Release: 8%{?dist} Summary: A rust implementation of the FIDO Device Onboard Specification License: BSD-3-Clause diff --git a/specs/f/fio/fio.spec b/specs/f/fio/fio.spec index 43cda78993b..636e2e8fb22 100644 --- a/specs/f/fio/fio.spec +++ b/specs/f/fio/fio.spec @@ -3,7 +3,7 @@ Name: fio Version: 3.40 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Multithreaded IO generation tool License: GPL-2.0-only diff --git a/specs/f/firebird/firebird.spec b/specs/f/firebird/firebird.spec index fec9316ed5a..9d5554826ad 100644 --- a/specs/f/firebird/firebird.spec +++ b/specs/f/firebird/firebird.spec @@ -13,7 +13,7 @@ Name: firebird Version: %{upversion} -Release: 2%{?dist} +Release: 2%{?dist} Summary: SQL relational database management system # Automatically converted from old format: Interbase - review is highly recommended. diff --git a/specs/f/firefox/firefox.spec b/specs/f/firefox/firefox.spec index 10d130ab775..147f9ff8198 100644 --- a/specs/f/firefox/firefox.spec +++ b/specs/f/firefox/firefox.spec @@ -206,7 +206,7 @@ ExcludeArch: i686 Summary: Mozilla Firefox Web browser Name: firefox Version: 148.0 -Release: %[1 + %{azl_release}]%{?pre_tag}%{?dist} +Release: %[7 + %{azl_release}]%{?pre_tag}%{?dist} URL: https://www.mozilla.org/firefox/ # Automatically converted from old format: MPLv1.1 or GPLv2+ or LGPLv2+ - review is highly recommended. License: LicenseRef-Callaway-MPLv1.1 OR GPL-2.0-or-later OR LicenseRef-Callaway-LGPLv2+ diff --git a/specs/f/flac/flac.spec b/specs/f/flac/flac.spec index b37aa74fc28..4e42bff5471 100644 --- a/specs/f/flac/flac.spec +++ b/specs/f/flac/flac.spec @@ -3,7 +3,7 @@ Name: flac Version: 1.5.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: An encoder/decoder for the Free Lossless Audio Codec License: BSD-3-Clause AND GPL-2.0-or-later AND GFDL-1.3-or-later diff --git a/specs/f/flashrom/flashrom.spec b/specs/f/flashrom/flashrom.spec index b24fed4ce68..70e332f55f4 100644 --- a/specs/f/flashrom/flashrom.spec +++ b/specs/f/flashrom/flashrom.spec @@ -3,7 +3,7 @@ Name: flashrom Version: 1.4.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Simple program for reading/writing flash chips content License: GPL-2.0-only URL: https://flashrom.org diff --git a/specs/f/flatpak/flatpak.spec b/specs/f/flatpak/flatpak.spec index 80e4d17cb56..102c4d24b10 100644 --- a/specs/f/flatpak/flatpak.spec +++ b/specs/f/flatpak/flatpak.spec @@ -15,7 +15,7 @@ Name: flatpak Version: 1.16.3 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Application deployment framework for desktop apps License: LGPL-2.1-or-later diff --git a/specs/f/flexiblas/flexiblas.spec b/specs/f/flexiblas/flexiblas.spec index 03bade4baf7..eb6958a84f6 100644 --- a/specs/f/flexiblas/flexiblas.spec +++ b/specs/f/flexiblas/flexiblas.spec @@ -22,7 +22,7 @@ Name: flexiblas Version: %{major_version}.%{minor_version}.%{patch_version} -Release: 2%{?dist} +Release: 2%{?dist} Summary: A BLAS/LAPACK wrapper library with runtime exchangeable backends # LGPL-3.0-or-later diff --git a/specs/f/flite/flite.spec b/specs/f/flite/flite.spec index 7579a7f14d9..002ccb2c0f2 100644 --- a/specs/f/flite/flite.spec +++ b/specs/f/flite/flite.spec @@ -15,7 +15,7 @@ Name: flite Version: 2.2 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Small, fast speech synthesis engine (text-to-speech) License: MIT URL: http://cmuflite.org/ diff --git a/specs/f/fltk/fltk.spec b/specs/f/fltk/fltk.spec index 26be7226ee9..6fe2cf3a675 100644 --- a/specs/f/fltk/fltk.spec +++ b/specs/f/fltk/fltk.spec @@ -16,7 +16,7 @@ Name: fltk Version: 1.3.11 -Release: 4%{?dist} +Release: 4%{?dist} Summary: C++ user interface toolkit # see COPYING (or http://www.fltk.org/COPYING.php ) for exceptions details diff --git a/specs/f/fluid-soundfont/fluid-soundfont.spec b/specs/f/fluid-soundfont/fluid-soundfont.spec index c1d4438487c..c3ba20310df 100644 --- a/specs/f/fluid-soundfont/fluid-soundfont.spec +++ b/specs/f/fluid-soundfont/fluid-soundfont.spec @@ -3,7 +3,7 @@ Name: fluid-soundfont Version: 3.1 -Release: 36%{?dist} +Release: 36%{?dist} Summary: Pro-quality GM/GS soundfont License: MIT # The original URL (http://www.powermage.com/fluid) seems dead. Therefore we point diff --git a/specs/f/fluidsynth/fluidsynth.spec b/specs/f/fluidsynth/fluidsynth.spec index 803d6dba72b..b7728388ca0 100644 --- a/specs/f/fluidsynth/fluidsynth.spec +++ b/specs/f/fluidsynth/fluidsynth.spec @@ -5,7 +5,7 @@ Summary: Real-time software synthesizer Name: fluidsynth Version: 2.5.2 -Release: 3%{?dist} +Release: 3%{?dist} URL: http://www.fluidsynth.org/ Source0: https://github.com/Fluidsynth/fluidsynth/archive/v%{version}/fluidsynth-%{version}.tar.gz Source1: https://github.com/kthohr/gcem/archive/refs/tags/gcem-1.18.0.tar.gz diff --git a/specs/f/foma/foma.spec b/specs/f/foma/foma.spec index 593a508b6f8..cbde70ed2c1 100644 --- a/specs/f/foma/foma.spec +++ b/specs/f/foma/foma.spec @@ -12,7 +12,7 @@ Name: foma Version: 0.10.0 -Release: 0.14.%{snapshotdate}git%{shortcommit0}%{?dist} +Release: 0.17.%{snapshotdate}git%{shortcommit0}%{?dist} Summary: Xerox-compatible finite-state compiler License: Apache-2.0 diff --git a/specs/f/fontawesome4-fonts/fontawesome4-fonts.spec b/specs/f/fontawesome4-fonts/fontawesome4-fonts.spec index 245b2894699..f497db306ba 100644 --- a/specs/f/fontawesome4-fonts/fontawesome4-fonts.spec +++ b/specs/f/fontawesome4-fonts/fontawesome4-fonts.spec @@ -8,7 +8,7 @@ Name: fontawesome4-fonts Epoch: 1 Version: 4.7.0 -Release: 26%{?dist} +Release: 26%{?dist} Summary: Iconic font set License: OFL-1.1-RFN diff --git a/specs/f/fontconfig/fontconfig.spec b/specs/f/fontconfig/fontconfig.spec index 364dfad982c..d4ee249bd64 100644 --- a/specs/f/fontconfig/fontconfig.spec +++ b/specs/f/fontconfig/fontconfig.spec @@ -8,7 +8,7 @@ Summary: Font configuration and customization library Name: fontconfig Version: 2.17.0 -Release: 4%{?dist} +Release: 4%{?dist} # src/ftglue.[ch] is in Public Domain # src/fccache.c contains Public Domain code ## https://gitlab.com/fedora/legal/fedora-license-data/-/issues/177 diff --git a/specs/f/fontforge/fontforge.spec b/specs/f/fontforge/fontforge.spec index 651d0ed5d47..9725b0aefd5 100644 --- a/specs/f/fontforge/fontforge.spec +++ b/specs/f/fontforge/fontforge.spec @@ -5,7 +5,7 @@ Name: fontforge Version: 20230101 -Release: 20%{?dist} +Release: 20%{?dist} Summary: Outline and bitmap font editor License: GPL-3.0-or-later diff --git a/specs/f/fonts-rpm-macros/fonts-rpm-macros.spec b/specs/f/fonts-rpm-macros/fonts-rpm-macros.spec index 86e6ab4d483..b7380684518 100644 --- a/specs/f/fonts-rpm-macros/fonts-rpm-macros.spec +++ b/specs/f/fonts-rpm-macros/fonts-rpm-macros.spec @@ -21,7 +21,7 @@ Version: 2.0.5 BuildArch: noarch Name: fonts-rpm-macros -Release: 24%{?dist} +Release: 24%{?dist} Summary: Build-stage rpm automation for fonts packages License: GPL-3.0-or-later diff --git a/specs/f/fonttools/fonttools.spec b/specs/f/fonttools/fonttools.spec index 92e47264fcc..77a8efc839d 100644 --- a/specs/f/fonttools/fonttools.spec +++ b/specs/f/fonttools/fonttools.spec @@ -32,7 +32,7 @@ AFM and to an extent Type 1 and some Mac-specific formats.} Name: fonttools Version: 4.61.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Tools to manipulate font files # https://spdx.org/licenses/MIT.html diff --git a/specs/f/forge-srpm-macros/forge-srpm-macros.spec b/specs/f/forge-srpm-macros/forge-srpm-macros.spec index c2640e4a7ac..ae0d2ff82cd 100644 --- a/specs/f/forge-srpm-macros/forge-srpm-macros.spec +++ b/specs/f/forge-srpm-macros/forge-srpm-macros.spec @@ -8,7 +8,7 @@ Name: forge-srpm-macros Version: 0.4.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Macros to simplify packaging of forge-hosted projects License: GPL-1.0-or-later diff --git a/specs/f/foxi/foxi.spec b/specs/f/foxi/foxi.spec index 9609434025f..fe22b5044df 100644 --- a/specs/f/foxi/foxi.spec +++ b/specs/f/foxi/foxi.spec @@ -10,7 +10,7 @@ Name: foxi License: MIT # 1.4.1 comes from VERSION_NUMBER file Version: 1.4.1^git%{date0}.%{shortcommit0} -Release: 7%{?dist} +Release: 7%{?dist} # Only for pytorch's arch ExclusiveArch: x86_64 aarch64 diff --git a/specs/f/fplus/fplus.spec b/specs/f/fplus/fplus.spec index 8141b6902c2..93f01f159a3 100644 --- a/specs/f/fplus/fplus.spec +++ b/specs/f/fplus/fplus.spec @@ -12,7 +12,7 @@ Summary: Functional Programming Library for C++ Name: fplus License: BSL-1.0 Version: 0.2.25 -Release: 5%{?dist} +Release: 5%{?dist} URL: https://github.com/Dobiasd/FunctionalPlus Source0: %{url}/archive/v%{version}.tar.gz#/FunctionalPlus-%{version}.tar.gz diff --git a/specs/f/freeglut/freeglut.spec b/specs/f/freeglut/freeglut.spec index d2fe664c5c1..5f5c6a1c4cf 100644 --- a/specs/f/freeglut/freeglut.spec +++ b/specs/f/freeglut/freeglut.spec @@ -5,7 +5,7 @@ Summary: A freely licensed alternative to the GLUT library Name: freeglut Version: 3.8.0 -Release: 2%{?dist} +Release: 2%{?dist} URL: http://freeglut.sourceforge.net Source0: https://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz # For the manpages diff --git a/specs/f/freeipa-healthcheck/freeipa-healthcheck.spec b/specs/f/freeipa-healthcheck/freeipa-healthcheck.spec index fc431b043e9..5c17d449042 100644 --- a/specs/f/freeipa-healthcheck/freeipa-healthcheck.spec +++ b/specs/f/freeipa-healthcheck/freeipa-healthcheck.spec @@ -20,7 +20,7 @@ Name: %{prefix}-healthcheck Version: 0.19 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Health check tool for %{productname} BuildArch: noarch License: GPL-3.0-or-later diff --git a/specs/f/freeipa/freeipa.spec b/specs/f/freeipa/freeipa.spec index 48a141a0745..4a665625552 100644 --- a/specs/f/freeipa/freeipa.spec +++ b/specs/f/freeipa/freeipa.spec @@ -213,7 +213,7 @@ Name: %{package_name} Version: %{IPA_VERSION} -Release: 5%{?rc_version:.%rc_version}%{?dist} +Release: 8%{?rc_version:.%rc_version}%{?dist} Summary: The Identity, Policy and Audit system License: GPL-3.0-or-later diff --git a/specs/f/freerdp/freerdp.spec b/specs/f/freerdp/freerdp.spec index 4075deb31e4..060a44da4d8 100644 --- a/specs/f/freerdp/freerdp.spec +++ b/specs/f/freerdp/freerdp.spec @@ -33,7 +33,7 @@ Name: freerdp Epoch: 2 Version: 3.22.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Free implementation of the Remote Desktop Protocol (RDP) # The effective license is Apache-2.0 but: diff --git a/specs/f/frei0r-plugins/frei0r-plugins.spec b/specs/f/frei0r-plugins/frei0r-plugins.spec index 37a60f6f286..e92a094dc8e 100644 --- a/specs/f/frei0r-plugins/frei0r-plugins.spec +++ b/specs/f/frei0r-plugins/frei0r-plugins.spec @@ -3,7 +3,7 @@ Name: frei0r-plugins Version: 2.4.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Frei0r - a minimalist plugin API for video effects # Automatically converted from old format: GPLv2+ - review is highly recommended. diff --git a/specs/f/frr/frr.spec b/specs/f/frr/frr.spec index d87220aa1ba..1050dfa1176 100644 --- a/specs/f/frr/frr.spec +++ b/specs/f/frr/frr.spec @@ -12,7 +12,7 @@ Name: frr Version: 10.4.1 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Routing daemon License: GPL-2.0-or-later AND ISC AND LGPL-2.0-or-later AND BSD-2-Clause AND BSD-3-Clause AND (GPL-2.0-or-later OR ISC) AND MIT URL: http://www.frrouting.org diff --git a/specs/f/frugally-deep/frugally-deep.spec b/specs/f/frugally-deep/frugally-deep.spec index 207a137f322..8f00ddcc590 100644 --- a/specs/f/frugally-deep/frugally-deep.spec +++ b/specs/f/frugally-deep/frugally-deep.spec @@ -14,7 +14,7 @@ License: MIT # Main license is MIT # BSD-2-Clause is only for cmake/HunterGate.cmake and that is not distributed Version: 0.15.30 -Release: 10%{?dist} +Release: 10%{?dist} URL: https://github.com/Dobiasd/frugally-deep Source0: %{url}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz diff --git a/specs/f/fscrypt/fscrypt.spec b/specs/f/fscrypt/fscrypt.spec index fbcdf84d380..b9046d7a13b 100644 --- a/specs/f/fscrypt/fscrypt.spec +++ b/specs/f/fscrypt/fscrypt.spec @@ -24,7 +24,7 @@ provides a uniform interface for creating and modifying encrypted directories.} %global godocs CODE_OF_CONDUCT.md CONTRIBUTING.md NEWS.md README.md Name: fscrypt -Release: 5%{?dist} +Release: 5%{?dist} Summary: Go tool for managing Linux filesystem encryption License: Apache-2.0 diff --git a/specs/f/fuse/fuse.spec b/specs/f/fuse/fuse.spec index 0bb9a3a446b..d64e5b608a8 100644 --- a/specs/f/fuse/fuse.spec +++ b/specs/f/fuse/fuse.spec @@ -3,7 +3,7 @@ Name: fuse Version: 2.9.9 -Release: 25%{?dist} +Release: 25%{?dist} Summary: File System in Userspace (FUSE) v2 utilities License: GPL-1.0-or-later URL: http://fuse.sf.net diff --git a/specs/f/fuse3/fuse3.spec b/specs/f/fuse3/fuse3.spec index 2491619d949..8bc533f05c7 100644 --- a/specs/f/fuse3/fuse3.spec +++ b/specs/f/fuse3/fuse3.spec @@ -13,7 +13,7 @@ Name: fuse3 Version: %{xyz_version} -Release: 7%{?dist} +Release: 7%{?dist} Summary: File System in Userspace (FUSE) v3 utilities License: GPL-1.0-or-later URL: http://fuse.sf.net diff --git a/specs/f/fxdiv/fxdiv.spec b/specs/f/fxdiv/fxdiv.spec index b5b5efe5a4a..8233508f79d 100644 --- a/specs/f/fxdiv/fxdiv.spec +++ b/specs/f/fxdiv/fxdiv.spec @@ -10,7 +10,7 @@ Summary: Header for division via fixed-point math Name: fxdiv License: MIT Version: 1.0^git%{date0}.%{shortcommit0} -Release: 8%{?dist} +Release: 8%{?dist} # Only a header BuildArch: noarch diff --git a/specs/g/GitPython/GitPython.spec b/specs/g/GitPython/GitPython.spec index 2959c0c20b7..5b95caf0332 100644 --- a/specs/g/GitPython/GitPython.spec +++ b/specs/g/GitPython/GitPython.spec @@ -5,7 +5,7 @@ Name: %{srcname} Version: 3.1.46 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Python Git Library License: BSD-3-Clause diff --git a/specs/g/galera/galera.spec b/specs/g/galera/galera.spec index f5649345588..e820dacef70 100644 --- a/specs/g/galera/galera.spec +++ b/specs/g/galera/galera.spec @@ -11,7 +11,7 @@ ExcludeArch: %{ix86} Name: galera Version: 26.4.25 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Synchronous multi-master wsrep provider (replication engine) License: GPL-2.0-only diff --git a/specs/g/game-music-emu/game-music-emu.spec b/specs/g/game-music-emu/game-music-emu.spec index 8c108dda238..913397978b5 100644 --- a/specs/g/game-music-emu/game-music-emu.spec +++ b/specs/g/game-music-emu/game-music-emu.spec @@ -3,7 +3,7 @@ Name: game-music-emu Version: 0.6.4 -Release: 3%{?dist} +Release: 3%{?dist} Provides: libgme%{?_isa} = %{version}-%{release} Summary: Video game music file emulation/playback library # Automatically converted from old format: LGPLv2+ - review is highly recommended. diff --git a/specs/g/gawk/gawk.spec b/specs/g/gawk/gawk.spec index bbec0515cd8..6ac8523525d 100644 --- a/specs/g/gawk/gawk.spec +++ b/specs/g/gawk/gawk.spec @@ -50,7 +50,7 @@ Name: gawk Summary: The GNU version of the AWK text processing utility Version: 5.3.2 -Release: 3%{?dist} +Release: 3%{?dist} License: GPL-3.0-or-later AND GPL-2.0-or-later AND LGPL-2.1-or-later AND BSD-3-Clause diff --git a/specs/g/gcab/gcab.spec b/specs/g/gcab/gcab.spec index 2f80945ac11..cd601a5c8b0 100644 --- a/specs/g/gcab/gcab.spec +++ b/specs/g/gcab/gcab.spec @@ -9,7 +9,7 @@ Name: gcab Version: 1.6 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Cabinet file library and tool # Automatically converted from old format: LGPLv2+ - review is highly recommended. diff --git a/specs/g/gcc/gcc.spec b/specs/g/gcc/gcc.spec index b0db8dd6342..eb75a7ee703 100644 --- a/specs/g/gcc/gcc.spec +++ b/specs/g/gcc/gcc.spec @@ -7,7 +7,7 @@ %global gcc_major 15 # Note, gcc_release must be integer, if you want to add suffixes to # %%{release}, append them after %%{gcc_release} on Release: line. -%global gcc_release 7 +%global gcc_release 9 %global nvptx_tools_gitrev a0c1fff6534a4df9fb17937c3c4a4b1071212029 %global newlib_cygwin_gitrev d35cc82b5ec15bb8a5fe0fe11e183d1887992e99 %global _unpackaged_files_terminate_build 0 diff --git a/specs/g/gcr3/gcr3.spec b/specs/g/gcr3/gcr3.spec index cc80e157fed..a2f0e85d6d8 100644 --- a/specs/g/gcr3/gcr3.spec +++ b/specs/g/gcr3/gcr3.spec @@ -7,7 +7,7 @@ Name: gcr3 Version: 3.41.1 -Release: 12%{?dist} +Release: 12%{?dist} Summary: A library for bits of crypto UI and parsing # gck/pkcs11n.h is MPL 1.1/GPL 2.0/LGPL 2.1 diff --git a/specs/g/gd/gd.spec b/specs/g/gd/gd.spec index b932a0e9a16..cd18c2ef708 100644 --- a/specs/g/gd/gd.spec +++ b/specs/g/gd/gd.spec @@ -24,7 +24,7 @@ Summary: A graphics library for quick creation of PNG or JPEG images Name: gd Version: 2.3.3 -Release: 20%{?prever}%{?short}%{?dist} +Release: 24%{?prever}%{?short}%{?dist} License: GD URL: http://libgd.github.io/ %if 0%{?commit:1} diff --git a/specs/g/gdal/gdal.spec b/specs/g/gdal/gdal.spec index 70f8a8fea31..cb540d96c2b 100644 --- a/specs/g/gdal/gdal.spec +++ b/specs/g/gdal/gdal.spec @@ -58,7 +58,7 @@ Name: gdal Version: 3.11.5 -Release: 3%{?dist} +Release: 3%{?dist} Summary: GIS file format library License: MIT URL: http://www.gdal.org diff --git a/specs/g/gdisk/gdisk.spec b/specs/g/gdisk/gdisk.spec index e63f7156139..2caf01f9b85 100644 --- a/specs/g/gdisk/gdisk.spec +++ b/specs/g/gdisk/gdisk.spec @@ -4,7 +4,7 @@ Summary: An fdisk-like partitioning tool for GPT disks Name: gdisk Version: 1.0.10 -Release: 5%{?dist} +Release: 5%{?dist} License: GPL-2.0-only URL: http://www.rodsbooks.com/gdisk/ Source0: http://downloads.sourceforge.net/gptfdisk/gptfdisk-%{version}.tar.gz diff --git a/specs/g/gdk-pixbuf2-xlib/gdk-pixbuf2-xlib.spec b/specs/g/gdk-pixbuf2-xlib/gdk-pixbuf2-xlib.spec index 8c17856bab8..69ace50bd09 100644 --- a/specs/g/gdk-pixbuf2-xlib/gdk-pixbuf2-xlib.spec +++ b/specs/g/gdk-pixbuf2-xlib/gdk-pixbuf2-xlib.spec @@ -3,7 +3,7 @@ Name: gdk-pixbuf2-xlib Version: 2.40.2 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Deprecated Xlib integration for gdk-pixbuf2 License: LGPL-2.0-or-later AND LGPL-2.1-or-later diff --git a/specs/g/generic-logos/generic-logos.spec b/specs/g/generic-logos/generic-logos.spec index 6c2b976bcc3..56c1841a25f 100644 --- a/specs/g/generic-logos/generic-logos.spec +++ b/specs/g/generic-logos/generic-logos.spec @@ -3,7 +3,7 @@ Name: generic-logos Version: 18.0.0 -Release: 27%{?dist} +Release: 27%{?dist} Summary: Icons and pictures URL: https://pagure.io/generic-logos diff --git a/specs/g/gengetopt/gengetopt.spec b/specs/g/gengetopt/gengetopt.spec index 80c559d4e8b..ba3541ac7f9 100644 --- a/specs/g/gengetopt/gengetopt.spec +++ b/specs/g/gengetopt/gengetopt.spec @@ -3,7 +3,7 @@ Name: gengetopt Version: 2.23 -Release: 16%{dist} +Release: 19%{dist} Summary: Tool to write command line option parsing code for C programs # Automatically converted from old format: GPLv3+ - review is highly recommended. License: GPL-3.0-or-later diff --git a/specs/g/geolite2/geolite2.spec b/specs/g/geolite2/geolite2.spec index 1bc271f677d..caf29282cbb 100644 --- a/specs/g/geolite2/geolite2.spec +++ b/specs/g/geolite2/geolite2.spec @@ -12,7 +12,7 @@ Name: geolite2 # released under CC-BY-SA. # https://bugzilla.redhat.com/show_bug.cgi?id=1786211 Version: 20191217 -Release: 16%{?dist} +Release: 16%{?dist} Summary: Free IP geolocation databases # This work is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License # This database incorporates GeoNames geographical data, which is made available under the Creative Commons Attribution 3.0 License diff --git a/specs/g/geos/geos.spec b/specs/g/geos/geos.spec index 7c4e0bb0259..f6b9f9ccaff 100644 --- a/specs/g/geos/geos.spec +++ b/specs/g/geos/geos.spec @@ -14,7 +14,7 @@ Name: geos Version: 3.14.1 -Release: 3%{?dist} +Release: 3%{?dist} Summary: GEOS is a C++ port of the Java Topology Suite License: LGPL-2.1-only diff --git a/specs/g/gflags/gflags.spec b/specs/g/gflags/gflags.spec index a851864d57c..cccce8bac58 100644 --- a/specs/g/gflags/gflags.spec +++ b/specs/g/gflags/gflags.spec @@ -3,7 +3,7 @@ Name: gflags Version: 2.2.2 -Release: 19%{?dist} +Release: 19%{?dist} Summary: Library for commandline flag processing # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/g/ghc-aeson/ghc-aeson.spec b/specs/g/ghc-aeson/ghc-aeson.spec index 863ec4c5c1a..e8a331ee45f 100644 --- a/specs/g/ghc-aeson/ghc-aeson.spec +++ b/specs/g/ghc-aeson/ghc-aeson.spec @@ -23,7 +23,7 @@ Name: ghc-%{pkg_name} Version: 2.2.3.0 # can only be reset when all subpkgs bumped -Release: 11%{?dist} +Release: 11%{?dist} Summary: Fast JSON parsing and encoding License: BSD-3-Clause diff --git a/specs/g/ghc-ansi-terminal/ghc-ansi-terminal.spec b/specs/g/ghc-ansi-terminal/ghc-ansi-terminal.spec index 71645ec77ba..a6149b8be9e 100644 --- a/specs/g/ghc-ansi-terminal/ghc-ansi-terminal.spec +++ b/specs/g/ghc-ansi-terminal/ghc-ansi-terminal.spec @@ -15,7 +15,7 @@ Name: ghc-%{pkg_name} Version: 1.1.2 # can only be reset when subpkg bumped -Release: 10%{?dist} +Release: 10%{?dist} Summary: Simple ANSI terminal support, with Windows compatibility License: BSD-3-Clause diff --git a/specs/g/ghc-attoparsec-iso8601/ghc-attoparsec-iso8601.spec b/specs/g/ghc-attoparsec-iso8601/ghc-attoparsec-iso8601.spec index 48c5ad3ad84..53f55f1e9da 100644 --- a/specs/g/ghc-attoparsec-iso8601/ghc-attoparsec-iso8601.spec +++ b/specs/g/ghc-attoparsec-iso8601/ghc-attoparsec-iso8601.spec @@ -14,7 +14,7 @@ Name: ghc-%{pkg_name} Version: 1.1.1.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Parsing of ISO 8601 dates, originally from aeson License: BSD-3-Clause diff --git a/specs/g/ghc-constraints/ghc-constraints.spec b/specs/g/ghc-constraints/ghc-constraints.spec index ea89906adcc..7479c008d31 100644 --- a/specs/g/ghc-constraints/ghc-constraints.spec +++ b/specs/g/ghc-constraints/ghc-constraints.spec @@ -16,7 +16,7 @@ Name: ghc-%{pkg_name} Version: 0.14.2 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Constraint manipulation License: BSD-2-Clause diff --git a/specs/g/ghc-crypton-x509-store/ghc-crypton-x509-store.spec b/specs/g/ghc-crypton-x509-store/ghc-crypton-x509-store.spec index 504f39f9606..36de8789948 100644 --- a/specs/g/ghc-crypton-x509-store/ghc-crypton-x509-store.spec +++ b/specs/g/ghc-crypton-x509-store/ghc-crypton-x509-store.spec @@ -12,7 +12,7 @@ Name: ghc-%{pkg_name} Version: 1.6.10 -Release: 3%{?dist} +Release: 3%{?dist} Summary: X.509 collection accessing and storing methods License: BSD-3-Clause diff --git a/specs/g/ghc-crypton-x509/ghc-crypton-x509.spec b/specs/g/ghc-crypton-x509/ghc-crypton-x509.spec index 5bec41feec7..3f3fc073903 100644 --- a/specs/g/ghc-crypton-x509/ghc-crypton-x509.spec +++ b/specs/g/ghc-crypton-x509/ghc-crypton-x509.spec @@ -12,7 +12,7 @@ Name: ghc-%{pkg_name} Version: 1.7.7 -Release: 6%{?dist} +Release: 6%{?dist} Summary: X509 reader and writer License: BSD-3-Clause diff --git a/specs/g/ghc-dec/ghc-dec.spec b/specs/g/ghc-dec/ghc-dec.spec index 09fca1ac204..80b306a9edc 100644 --- a/specs/g/ghc-dec/ghc-dec.spec +++ b/specs/g/ghc-dec/ghc-dec.spec @@ -15,7 +15,7 @@ Name: ghc-%{pkg_name} Version: 0.0.6 # can only be reset when subpkg bumped -Release: 6%{?dist} +Release: 6%{?dist} Summary: Decidable propositions License: BSD-3-Clause diff --git a/specs/g/ghc-doctemplates/ghc-doctemplates.spec b/specs/g/ghc-doctemplates/ghc-doctemplates.spec index f96d8cb6d5a..cf54a950da0 100644 --- a/specs/g/ghc-doctemplates/ghc-doctemplates.spec +++ b/specs/g/ghc-doctemplates/ghc-doctemplates.spec @@ -20,7 +20,7 @@ Name: ghc-%{pkg_name} Version: 0.11.0.1 # can only be reset when all subpkgs bumped -Release: 20%{?dist} +Release: 20%{?dist} Summary: Pandoc-style document templates License: BSD-3-Clause diff --git a/specs/g/ghc-fast-logger/ghc-fast-logger.spec b/specs/g/ghc-fast-logger/ghc-fast-logger.spec index cbeb61f80a2..99061ad47f3 100644 --- a/specs/g/ghc-fast-logger/ghc-fast-logger.spec +++ b/specs/g/ghc-fast-logger/ghc-fast-logger.spec @@ -18,7 +18,7 @@ Name: ghc-%{pkg_name} Version: 3.2.5 # can only be reset when subpkg bumped -Release: 28%{?dist} +Release: 28%{?dist} Summary: A fast logging system License: BSD-3-Clause diff --git a/specs/g/ghc-generics-sop/ghc-generics-sop.spec b/specs/g/ghc-generics-sop/ghc-generics-sop.spec index 13fb0913bb2..7f1d42fd9db 100644 --- a/specs/g/ghc-generics-sop/ghc-generics-sop.spec +++ b/specs/g/ghc-generics-sop/ghc-generics-sop.spec @@ -17,7 +17,7 @@ Name: ghc-%{pkg_name} Version: 0.5.1.4 # can only be reset when subpkg bumped -Release: 22%{?dist} +Release: 22%{?dist} Summary: Generic Programming using True Sums of Products License: BSD-3-Clause diff --git a/specs/g/ghc-hashable/ghc-hashable.spec b/specs/g/ghc-hashable/ghc-hashable.spec index 702e5631071..42650689560 100644 --- a/specs/g/ghc-hashable/ghc-hashable.spec +++ b/specs/g/ghc-hashable/ghc-hashable.spec @@ -18,7 +18,7 @@ Name: ghc-%{pkg_name} Version: 1.4.7.0 # can only be reset when subpkg bumped -Release: 7%{?dist} +Release: 7%{?dist} Summary: A class for types that can be converted to a hash value License: BSD-3-Clause diff --git a/specs/g/ghc-hslua/ghc-hslua.spec b/specs/g/ghc-hslua/ghc-hslua.spec index 82e1c41b2f9..003b9cbff0f 100644 --- a/specs/g/ghc-hslua/ghc-hslua.spec +++ b/specs/g/ghc-hslua/ghc-hslua.spec @@ -26,7 +26,7 @@ Name: ghc-%{pkg_name} Version: 2.3.1 # can only be reset when all subpkgs bumped -Release: 5%{?dist} +Release: 5%{?dist} Summary: Bindings to Lua, an embeddable scripting language License: MIT diff --git a/specs/g/ghc-http2/ghc-http2.spec b/specs/g/ghc-http2/ghc-http2.spec index 7f5ffd19edd..a10a164c824 100644 --- a/specs/g/ghc-http2/ghc-http2.spec +++ b/specs/g/ghc-http2/ghc-http2.spec @@ -18,7 +18,7 @@ Name: ghc-%{pkg_name} Version: 5.3.9 # can only be reset when all subpkgs bumped -Release: 4%{?dist} +Release: 4%{?dist} Summary: HTTP/2 library License: BSD-3-Clause diff --git a/specs/g/ghc-random/ghc-random.spec b/specs/g/ghc-random/ghc-random.spec index e58439562b5..bc8264ca655 100644 --- a/specs/g/ghc-random/ghc-random.spec +++ b/specs/g/ghc-random/ghc-random.spec @@ -17,7 +17,7 @@ Name: ghc-%{pkg_name} Version: 1.2.1.3 # can only be reset when subpkg bumped -Release: 6%{?dist} +Release: 6%{?dist} Summary: Pseudo-random number generation License: BSD-3-Clause diff --git a/specs/g/ghc-rpm-macros/ghc-rpm-macros.spec b/specs/g/ghc-rpm-macros/ghc-rpm-macros.spec index f4697d279c1..0dbe75afa9d 100644 --- a/specs/g/ghc-rpm-macros/ghc-rpm-macros.spec +++ b/specs/g/ghc-rpm-macros/ghc-rpm-macros.spec @@ -7,7 +7,7 @@ Name: ghc-rpm-macros Version: 2.11 -Release: 2%{?dist} +Release: 2%{?dist} Summary: RPM macros for building Haskell packages for GHC License: GPL-3.0-or-later diff --git a/specs/g/ghc-singleton-bool/ghc-singleton-bool.spec b/specs/g/ghc-singleton-bool/ghc-singleton-bool.spec index d0ff725d619..fd74d9586c1 100644 --- a/specs/g/ghc-singleton-bool/ghc-singleton-bool.spec +++ b/specs/g/ghc-singleton-bool/ghc-singleton-bool.spec @@ -15,7 +15,7 @@ Name: ghc-%{pkg_name} Version: 0.1.8 # can only be reset when subpkg bumped -Release: 6%{?dist} +Release: 6%{?dist} Summary: Type level booleans License: BSD-3-Clause diff --git a/specs/g/ghc-skylighting/ghc-skylighting.spec b/specs/g/ghc-skylighting/ghc-skylighting.spec index c23c8f55f9b..989898d60e9 100644 --- a/specs/g/ghc-skylighting/ghc-skylighting.spec +++ b/specs/g/ghc-skylighting/ghc-skylighting.spec @@ -19,7 +19,7 @@ Name: ghc-%{pkg_name} Version: 0.14.5 # can only be reset when all subpkgs bumped -Release: 15%{?dist} +Release: 15%{?dist} Summary: Syntax highlighting library License: GPL-2.0-or-later diff --git a/specs/g/ghc-srpm-macros/ghc-srpm-macros.spec b/specs/g/ghc-srpm-macros/ghc-srpm-macros.spec index e629329ac53..bebd92227ba 100644 --- a/specs/g/ghc-srpm-macros/ghc-srpm-macros.spec +++ b/specs/g/ghc-srpm-macros/ghc-srpm-macros.spec @@ -7,7 +7,7 @@ Name: ghc-srpm-macros Version: 1.9.2 -Release: 4%{?dist} +Release: 4%{?dist} Summary: RPM macros for building Haskell source packages License: GPL-2.0-or-later diff --git a/specs/g/ghc-tasty/ghc-tasty.spec b/specs/g/ghc-tasty/ghc-tasty.spec index 713e524489d..d730606ee95 100644 --- a/specs/g/ghc-tasty/ghc-tasty.spec +++ b/specs/g/ghc-tasty/ghc-tasty.spec @@ -15,7 +15,7 @@ Name: ghc-%{pkg_name} Version: 1.5.3 # can only be reset when subpkg bumped -Release: 27%{?dist} +Release: 27%{?dist} Summary: Modern and extensible testing framework License: MIT diff --git a/specs/g/ghc-texmath/ghc-texmath.spec b/specs/g/ghc-texmath/ghc-texmath.spec index 2201fa5d1d4..3fafc8e3891 100644 --- a/specs/g/ghc-texmath/ghc-texmath.spec +++ b/specs/g/ghc-texmath/ghc-texmath.spec @@ -17,7 +17,7 @@ Name: ghc-%{pkg_name} Version: 0.12.9 # can only be reset when subpkg bumped -Release: 5%{?dist} +Release: 5%{?dist} Summary: Conversion between math formats License: GPL-2.0-or-later diff --git a/specs/g/ghc-unicode-transforms/ghc-unicode-transforms.spec b/specs/g/ghc-unicode-transforms/ghc-unicode-transforms.spec index 09283a5b97b..472c1bd88ed 100644 --- a/specs/g/ghc-unicode-transforms/ghc-unicode-transforms.spec +++ b/specs/g/ghc-unicode-transforms/ghc-unicode-transforms.spec @@ -17,7 +17,7 @@ Name: ghc-%{pkg_name} Version: 0.4.0.1 # can only be reset when subpkg bumped -Release: 12%{?dist} +Release: 12%{?dist} Summary: Unicode normalization License: BSD-3-Clause diff --git a/specs/g/ghc-vector-algorithms/ghc-vector-algorithms.spec b/specs/g/ghc-vector-algorithms/ghc-vector-algorithms.spec index 511842794df..20438f6e823 100644 --- a/specs/g/ghc-vector-algorithms/ghc-vector-algorithms.spec +++ b/specs/g/ghc-vector-algorithms/ghc-vector-algorithms.spec @@ -18,7 +18,7 @@ Name: ghc-%{pkg_name} Version: 0.9.1.0 # can only be reset when subpkg bumped -Release: 6%{?dist} +Release: 6%{?dist} Summary: Efficient algorithms for vector arrays License: BSD-3-Clause diff --git a/specs/g/ghc-vector/ghc-vector.spec b/specs/g/ghc-vector/ghc-vector.spec index a33eb6eacad..79ea384a860 100644 --- a/specs/g/ghc-vector/ghc-vector.spec +++ b/specs/g/ghc-vector/ghc-vector.spec @@ -17,7 +17,7 @@ Name: ghc-%{pkg_name} Version: 0.13.2.0 # can only be reset when subpkg bumped -Release: 6%{?dist} +Release: 6%{?dist} Summary: Efficient Arrays License: BSD-3-Clause diff --git a/specs/g/ghc-warp/ghc-warp.spec b/specs/g/ghc-warp/ghc-warp.spec index 26b97fd3ee0..0c16405bb7b 100644 --- a/specs/g/ghc-warp/ghc-warp.spec +++ b/specs/g/ghc-warp/ghc-warp.spec @@ -17,7 +17,7 @@ Name: ghc-%{pkg_name} Version: 3.4.7 # can only be reset when subpkg bumped -Release: 11%{?dist} +Release: 11%{?dist} Summary: A fast, light-weight web server for WAI applications License: MIT diff --git a/specs/g/ghc-yaml/ghc-yaml.spec b/specs/g/ghc-yaml/ghc-yaml.spec index 95ec7c2d350..9225448f5ce 100644 --- a/specs/g/ghc-yaml/ghc-yaml.spec +++ b/specs/g/ghc-yaml/ghc-yaml.spec @@ -17,7 +17,7 @@ Name: ghc-%{pkg_name} Version: 0.11.11.2 # can only be reset when subpkg bumped -Release: 25%{?dist} +Release: 25%{?dist} Summary: Support for parsing and rendering YAML documents License: BSD-3-Clause diff --git a/specs/g/ghostscript/ghostscript.spec b/specs/g/ghostscript/ghostscript.spec index 7df08717dd9..4d1c69771e8 100644 --- a/specs/g/ghostscript/ghostscript.spec +++ b/specs/g/ghostscript/ghostscript.spec @@ -50,7 +50,7 @@ Name: ghostscript Summary: Interpreter for PostScript language & PDF Version: 10.05.1 -Release: 7%{?dist} +Release: 7%{?dist} License: AGPL-3.0-or-later diff --git a/specs/g/giflib/giflib.spec b/specs/g/giflib/giflib.spec index 350e594b7d8..f1176eede91 100644 --- a/specs/g/giflib/giflib.spec +++ b/specs/g/giflib/giflib.spec @@ -4,7 +4,7 @@ Name: giflib Summary: A library and utilities for processing GIFs Version: 5.2.2 -Release: 10%{?dist} +Release: 10%{?dist} License: MIT URL: http://www.sourceforge.net/projects/%{name}/ diff --git a/specs/g/git/git.spec b/specs/g/git/git.spec index bf80fc295a7..a16cf0d80ea 100644 --- a/specs/g/git/git.spec +++ b/specs/g/git/git.spec @@ -82,7 +82,7 @@ Name: git Version: 2.53.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Fast Version Control System License: BSD-3-Clause AND GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.1-or-later AND MIT URL: https://git-scm.com/ diff --git a/specs/g/gl2ps/gl2ps.spec b/specs/g/gl2ps/gl2ps.spec index ba54a45450f..7ecc65f0f28 100644 --- a/specs/g/gl2ps/gl2ps.spec +++ b/specs/g/gl2ps/gl2ps.spec @@ -7,7 +7,7 @@ Summary: An OpenGL to PostScript printing library Summary(pl): Biblioteka drukowania z OpenGL-a do PostScriptu Name: gl2ps Version: 1.4.2 -Release: 16%{?dist} +Release: 16%{?dist} License: LGPL-2.0-or-later OR GL2PS Source0: http://www.geuz.org/gl2ps/src/%{name}-%{version}.tgz # bump min cmake version requirement to work with cmake 4.0 diff --git a/specs/g/glade/glade.spec b/specs/g/glade/glade.spec index 9a82b90ec8a..6b51bb4c4d0 100644 --- a/specs/g/glade/glade.spec +++ b/specs/g/glade/glade.spec @@ -3,7 +3,7 @@ Name: glade Version: 3.40.0 -Release: 14%{?dist} +Release: 14%{?dist} Summary: User Interface Designer for GTK+ # - /usr/bin/glade is GPLv2+ diff --git a/specs/g/glew/glew.spec b/specs/g/glew/glew.spec index 5310ff5b41d..13d99a5f853 100644 --- a/specs/g/glew/glew.spec +++ b/specs/g/glew/glew.spec @@ -3,7 +3,7 @@ Name: glew Version: 2.2.0 -Release: 12%{?dist} +Release: 12%{?dist} Summary: The OpenGL Extension Wrangler Library # Automatically converted from old format: BSD and MIT - review is highly recommended. License: LicenseRef-Callaway-BSD AND LicenseRef-Callaway-MIT diff --git a/specs/g/glib/glib.spec b/specs/g/glib/glib.spec index 014116d9421..8fc5f1c3cf9 100644 --- a/specs/g/glib/glib.spec +++ b/specs/g/glib/glib.spec @@ -5,7 +5,7 @@ Summary: A library of handy utility functions Name: glib Epoch: 1 Version: 1.2.10 -Release: 77%{?dist} +Release: 77%{?dist} License: LGPL-2.0-or-later URL: http://www.gtk.org/ Source0: https://ftp.gnome.org/pub/gnome/sources/glib/1.2/glib-%{version}.tar.gz diff --git a/specs/g/glibc/glibc.spec b/specs/g/glibc/glibc.spec index 7b094237e12..b087a2754a7 100644 --- a/specs/g/glibc/glibc.spec +++ b/specs/g/glibc/glibc.spec @@ -155,7 +155,7 @@ Version: %{glibcversion} # - It allows using the Release number without the %%dist tag in the dependency # generator to make the generated requires interchangeable between Rawhide # and ELN (.elnYY < .fcXX). -%global baserelease 11 +%global baserelease 14 Release: %{baserelease}%{?dist} # Licenses: diff --git a/specs/g/glibmm2.4/glibmm2.4.spec b/specs/g/glibmm2.4/glibmm2.4.spec index 2736f498baf..49797c3772f 100644 --- a/specs/g/glibmm2.4/glibmm2.4.spec +++ b/specs/g/glibmm2.4/glibmm2.4.spec @@ -10,7 +10,7 @@ Name: glibmm2.4 Version: 2.66.8 -Release: 3%{?dist} +Release: 3%{?dist} Summary: C++ interface for the GLib library # Library sources are LGPL 2.1+, tools used to generate sources are GPL 2+. diff --git a/specs/g/glog/glog.spec b/specs/g/glog/glog.spec index 44fa9b0612d..7a40e0e24a8 100644 --- a/specs/g/glog/glog.spec +++ b/specs/g/glog/glog.spec @@ -3,7 +3,7 @@ Name: glog Version: 0.3.5 -Release: 25%{?dist} +Release: 25%{?dist} Summary: A C++ application logging library # Automatically converted from old format: BSD - review is highly recommended. License: LicenseRef-Callaway-BSD diff --git a/specs/g/glpk/glpk.spec b/specs/g/glpk/glpk.spec index 186ff8eba4a..98b87c22af9 100644 --- a/specs/g/glpk/glpk.spec +++ b/specs/g/glpk/glpk.spec @@ -3,7 +3,7 @@ Name: glpk Version: 5.0 -Release: 15%{?dist} +Release: 15%{?dist} Summary: GNU Linear Programming Kit # GPL-3.0-or-later: the project as a whole diff --git a/specs/g/glusterfs/glusterfs.spec b/specs/g/glusterfs/glusterfs.spec index ad0925908d2..99d5f19cc62 100644 --- a/specs/g/glusterfs/glusterfs.spec +++ b/specs/g/glusterfs/glusterfs.spec @@ -199,7 +199,7 @@ Summary: Distributed File System %if ( 0%{_for_fedora_koji_builds} ) Name: glusterfs Version: 11.2 -Release: 4%{?prereltag:%{prereltag}}%{?dist} +Release: 7%{?prereltag:%{prereltag}}%{?dist} %else Name: @PACKAGE_NAME@ Version: @PACKAGE_VERSION@ diff --git a/specs/g/glyphicons-halflings-fonts/glyphicons-halflings-fonts.spec b/specs/g/glyphicons-halflings-fonts/glyphicons-halflings-fonts.spec index 1f594c99919..7d6335cd5b1 100644 --- a/specs/g/glyphicons-halflings-fonts/glyphicons-halflings-fonts.spec +++ b/specs/g/glyphicons-halflings-fonts/glyphicons-halflings-fonts.spec @@ -10,7 +10,7 @@ Name: %{fontname}-fonts Epoch: 1 Version: 3.1.0 -Release: 24.%{checkout}%{?dist} +Release: 27.%{checkout}%{?dist} Summary: Precisely prepared monochromatic icons and symbols License: MIT diff --git a/specs/g/gnat-srpm-macros/gnat-srpm-macros.spec b/specs/g/gnat-srpm-macros/gnat-srpm-macros.spec index 35f5321ce1c..366e73d9a3a 100644 --- a/specs/g/gnat-srpm-macros/gnat-srpm-macros.spec +++ b/specs/g/gnat-srpm-macros/gnat-srpm-macros.spec @@ -3,7 +3,7 @@ Name: gnat-srpm-macros Version: 7 -Release: 2%{?dist} +Release: 2%{?dist} Summary: RPM macros needed when source packages that need GNAT are built Summary(sv): RPM-makron som behövs när källkodspaket som behöver GNAT byggs diff --git a/specs/g/gnome-autoar/gnome-autoar.spec b/specs/g/gnome-autoar/gnome-autoar.spec index 48c1509344b..69509d70dd8 100644 --- a/specs/g/gnome-autoar/gnome-autoar.spec +++ b/specs/g/gnome-autoar/gnome-autoar.spec @@ -3,7 +3,7 @@ Name: gnome-autoar Version: 0.4.5 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Archive library License: LGPL-2.1-or-later diff --git a/specs/g/gnome-bluetooth/gnome-bluetooth.spec b/specs/g/gnome-bluetooth/gnome-bluetooth.spec index b05c1c0e287..fe0b44ac4d9 100644 --- a/specs/g/gnome-bluetooth/gnome-bluetooth.spec +++ b/specs/g/gnome-bluetooth/gnome-bluetooth.spec @@ -9,7 +9,7 @@ Name: gnome-bluetooth Epoch: 1 Version: 47.1 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Bluetooth graphical utilities License: GPL-2.0-or-later diff --git a/specs/g/gnome-color-manager/gnome-color-manager.spec b/specs/g/gnome-color-manager/gnome-color-manager.spec index 5aedf47a1e0..6a9c8c273ac 100644 --- a/specs/g/gnome-color-manager/gnome-color-manager.spec +++ b/specs/g/gnome-color-manager/gnome-color-manager.spec @@ -3,7 +3,7 @@ Name: gnome-color-manager Version: 3.36.2 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Color management tools for GNOME License: GPL-2.0-or-later URL: https://gitlab.gnome.org/GNOME/gnome-color-manager diff --git a/specs/g/gnome-common/gnome-common.spec b/specs/g/gnome-common/gnome-common.spec index 6dbdd2c02b8..d3a1cf540ad 100644 --- a/specs/g/gnome-common/gnome-common.spec +++ b/specs/g/gnome-common/gnome-common.spec @@ -3,7 +3,7 @@ Name: gnome-common Version: 3.18.0 -Release: 23%{?dist} +Release: 23%{?dist} Summary: Useful things common to building GNOME packages from scratch BuildArch: noarch # Automatically converted from old format: GPLv2+ - review is highly recommended. diff --git a/specs/g/gnome-icon-theme/gnome-icon-theme.spec b/specs/g/gnome-icon-theme/gnome-icon-theme.spec index 2e724ca83cf..5b9275d32cf 100644 --- a/specs/g/gnome-icon-theme/gnome-icon-theme.spec +++ b/specs/g/gnome-icon-theme/gnome-icon-theme.spec @@ -5,7 +5,7 @@ Summary: GNOME icon theme Name: gnome-icon-theme Version: 3.12.0 License: LGPL-3.0-or-later -Release: 27%{?dist} +Release: 27%{?dist} URL: http://www.gnome.org #VCS: git:git://git.gnome.org/gnome-icon-theme diff --git a/specs/g/gnulib/gnulib.spec b/specs/g/gnulib/gnulib.spec index 7c788b088d5..a1d7e0ea67d 100644 --- a/specs/g/gnulib/gnulib.spec +++ b/specs/g/gnulib/gnulib.spec @@ -51,7 +51,7 @@ It can be used to improve portability and other functionality in your programs. Name: gnulib Version: 0 -Release: 56.%{gitdate}git%{?dist} +Release: 59.%{gitdate}git%{?dist} Summary: GNU Portability Library License: Public Domain and BSD and GPLv2+ and GPLv3 and GPLv3+ and LGPLv2 and LGPLv2+ and LGPLv3+ URL: https://www.gnu.org/software/gnulib diff --git a/specs/g/go-vendor-tools/go-vendor-tools.spec b/specs/g/go-vendor-tools/go-vendor-tools.spec index ea7b5386b0c..0994b9ce611 100644 --- a/specs/g/go-vendor-tools/go-vendor-tools.spec +++ b/specs/g/go-vendor-tools/go-vendor-tools.spec @@ -17,7 +17,7 @@ Name: go-vendor-tools Version: 0.10.0 %forgemeta -Release: 3%{?dist} +Release: 3%{?dist} Summary: Tools for handling Go library vendoring in Fedora # BSD-3-Clause: src/go_vendor_tools/archive.py diff --git a/specs/g/golang-github-aws-lambda/golang-github-aws-lambda.spec b/specs/g/golang-github-aws-lambda/golang-github-aws-lambda.spec index 5d73215b931..baedb20a69f 100644 --- a/specs/g/golang-github-aws-lambda/golang-github-aws-lambda.spec +++ b/specs/g/golang-github-aws-lambda/golang-github-aws-lambda.spec @@ -18,7 +18,7 @@ functions.} %global godocs README.md events/*.md Name: %{goname} -Release: 17%{?dist} +Release: 17%{?dist} Summary: Libraries, samples and tools to help Go developers develop AWS Lambda functions # Upstream license specification: Apache-2.0 and MIT diff --git a/specs/g/golang-github-dgrijalva-jwt/golang-github-dgrijalva-jwt.spec b/specs/g/golang-github-dgrijalva-jwt/golang-github-dgrijalva-jwt.spec index d9031317c5d..a8b1266661e 100644 --- a/specs/g/golang-github-dgrijalva-jwt/golang-github-dgrijalva-jwt.spec +++ b/specs/g/golang-github-dgrijalva-jwt/golang-github-dgrijalva-jwt.spec @@ -24,7 +24,7 @@ Golang implementation of json web tokens (jwt).} %global gosupfiles glide.lock glide.yaml Name: %{goname} -Release: 23%{?dist} +Release: 23%{?dist} Summary: Golang implementation of json web tokens (jwt) License: MIT diff --git a/specs/g/golang-github-emicklei-restful/golang-github-emicklei-restful.spec b/specs/g/golang-github-emicklei-restful/golang-github-emicklei-restful.spec index 31ca88fb401..ececce99682 100644 --- a/specs/g/golang-github-emicklei-restful/golang-github-emicklei-restful.spec +++ b/specs/g/golang-github-emicklei-restful/golang-github-emicklei-restful.spec @@ -20,7 +20,7 @@ Package for building REST-style Web Services using Go.} %global godocs examples CHANGES.md README.md Name: %{goname} -Release: 10%{?dist} +Release: 10%{?dist} Summary: Package for building REST-style Web Services using Go License: MIT diff --git a/specs/g/golang-github-envoyproxy-protoc-gen-validate/golang-github-envoyproxy-protoc-gen-validate.spec b/specs/g/golang-github-envoyproxy-protoc-gen-validate/golang-github-envoyproxy-protoc-gen-validate.spec index 9825beaaf2c..5910c90f0fe 100644 --- a/specs/g/golang-github-envoyproxy-protoc-gen-validate/golang-github-envoyproxy-protoc-gen-validate.spec +++ b/specs/g/golang-github-envoyproxy-protoc-gen-validate/golang-github-envoyproxy-protoc-gen-validate.spec @@ -18,7 +18,7 @@ Protoc plugin to generate polyglot message validators.} rule_comparison.md README.md java/RELEASING.md Name: %{goname} -Release: 19%{?dist} +Release: 19%{?dist} Summary: Protoc plugin to generate polyglot message validators # Upstream license specification: Apache-2.0 diff --git a/specs/g/golang-github-gobuffalo-here/golang-github-gobuffalo-here.spec b/specs/g/golang-github-gobuffalo-here/golang-github-gobuffalo-here.spec index db44967a86f..defd2bdf68a 100644 --- a/specs/g/golang-github-gobuffalo-here/golang-github-gobuffalo-here.spec +++ b/specs/g/golang-github-gobuffalo-here/golang-github-gobuffalo-here.spec @@ -19,7 +19,7 @@ requested.} %global godocs README.md SHOULDERS.md Name: %{goname} -Release: 17%{?dist} +Release: 17%{?dist} Summary: Get you accurate Go information about the directory of package requested License: MIT diff --git a/specs/g/golang-github-google-gofuzz/golang-github-google-gofuzz.spec b/specs/g/golang-github-google-gofuzz/golang-github-google-gofuzz.spec index 1fef739aa1a..bc51ed4a1ae 100644 --- a/specs/g/golang-github-google-gofuzz/golang-github-google-gofuzz.spec +++ b/specs/g/golang-github-google-gofuzz/golang-github-google-gofuzz.spec @@ -18,7 +18,7 @@ Gofuzz is a library for populating Go objects with random values.} %global godocs CONTRIBUTING.md README.md Name: %{goname} -Release: 14%{?dist} +Release: 14%{?dist} Summary: Fuzz testing for Go License: Apache-2.0 diff --git a/specs/g/golang-github-googleapis-gnostic/golang-github-googleapis-gnostic.spec b/specs/g/golang-github-googleapis-gnostic/golang-github-googleapis-gnostic.spec index cb575599efa..e71ca0716e6 100644 --- a/specs/g/golang-github-googleapis-gnostic/golang-github-googleapis-gnostic.spec +++ b/specs/g/golang-github-googleapis-gnostic/golang-github-googleapis-gnostic.spec @@ -39,7 +39,7 @@ generate-gnostic directory.} README-report-messages.md README-generate-gnostic.md Name: %{goname} -Release: 20%{?dist} +Release: 20%{?dist} Summary: Compiler for APIs described by the OpenAPI Specification # Upstream license specification: Apache-2.0 diff --git a/specs/g/golang-github-grpc-ecosystem-gateway-2/golang-github-grpc-ecosystem-gateway-2.spec b/specs/g/golang-github-grpc-ecosystem-gateway-2/golang-github-grpc-ecosystem-gateway-2.spec index 1c66744d42d..42175e1d9ca 100644 --- a/specs/g/golang-github-grpc-ecosystem-gateway-2/golang-github-grpc-ecosystem-gateway-2.spec +++ b/specs/g/golang-github-grpc-ecosystem-gateway-2/golang-github-grpc-ecosystem-gateway-2.spec @@ -17,7 +17,7 @@ GRPC to JSON proxy generator following the gRPC HTTP spec.} %global godocs docs examples ADOPTERS.md CONTRIBUTING.md README.md Name: %{goname} -Release: 18%{?dist} +Release: 18%{?dist} Summary: GRPC to JSON proxy generator following the gRPC HTTP spec # Upstream license specification: BSD-3-Clause diff --git a/specs/g/golang-github-hashicorp-hclog/golang-github-hashicorp-hclog.spec b/specs/g/golang-github-hashicorp-hclog/golang-github-hashicorp-hclog.spec index 1f393e96216..d5612edf889 100644 --- a/specs/g/golang-github-hashicorp-hclog/golang-github-hashicorp-hclog.spec +++ b/specs/g/golang-github-hashicorp-hclog/golang-github-hashicorp-hclog.spec @@ -18,7 +18,7 @@ for use in development and production environments.} %global godocs README.md README-hclogvet.md Name: %{goname} -Release: 17%{?dist} +Release: 17%{?dist} Summary: Common logging package for hashicorp tools License: MIT diff --git a/specs/g/golang-github-jmespath/golang-github-jmespath.spec b/specs/g/golang-github-jmespath/golang-github-jmespath.spec index e8399fa5731..20220174cd3 100644 --- a/specs/g/golang-github-jmespath/golang-github-jmespath.spec +++ b/specs/g/golang-github-jmespath/golang-github-jmespath.spec @@ -19,7 +19,7 @@ A JMESPath implementation in Go.} %global gosupfiles glide.lock glide.yaml Name: %{goname} -Release: 18%{?dist} +Release: 18%{?dist} Summary: Golang implementation of JMESPath # Upstream license specification: Apache-2.0 diff --git a/specs/g/golang-github-joho-godotenv/golang-github-joho-godotenv.spec b/specs/g/golang-github-joho-godotenv/golang-github-joho-godotenv.spec index c7eec95f568..6773e0d39d0 100644 --- a/specs/g/golang-github-joho-godotenv/golang-github-joho-godotenv.spec +++ b/specs/g/golang-github-joho-godotenv/golang-github-joho-godotenv.spec @@ -18,7 +18,7 @@ file).} %global godocs README.md Name: %{goname} -Release: 11%{?dist} +Release: 11%{?dist} Summary: Go port of Ruby's dotenv library License: MIT diff --git a/specs/g/golang-github-macaron-inject/golang-github-macaron-inject.spec b/specs/g/golang-github-macaron-inject/golang-github-macaron-inject.spec index 3a5cf0faff0..0b1ffb4f9e6 100644 --- a/specs/g/golang-github-macaron-inject/golang-github-macaron-inject.spec +++ b/specs/g/golang-github-macaron-inject/golang-github-macaron-inject.spec @@ -20,7 +20,7 @@ various ways.} Name: %{goname} Version: 0 -Release: 0.25%{?dist} +Release: 0.28%{?dist} Summary: Utilities for mapping and injecting dependencies in various ways License: Apache-2.0 diff --git a/specs/g/golang-github-markbates-pkger/golang-github-markbates-pkger.spec b/specs/g/golang-github-markbates-pkger/golang-github-markbates-pkger.spec index 462620a1b05..be57dace3ec 100644 --- a/specs/g/golang-github-markbates-pkger/golang-github-markbates-pkger.spec +++ b/specs/g/golang-github-markbates-pkger/golang-github-markbates-pkger.spec @@ -19,7 +19,7 @@ be a replacement for github.com/gobuffalo/packr/v2.} %global godocs examples README.md SHOULDERS.md Name: %{goname} -Release: 17%{?dist} +Release: 17%{?dist} Summary: Embed static files in Go binaries License: MIT diff --git a/specs/g/golang-github-rcrowley-metrics/golang-github-rcrowley-metrics.spec b/specs/g/golang-github-rcrowley-metrics/golang-github-rcrowley-metrics.spec index 2db27c02346..9879792b4d9 100644 --- a/specs/g/golang-github-rcrowley-metrics/golang-github-rcrowley-metrics.spec +++ b/specs/g/golang-github-rcrowley-metrics/golang-github-rcrowley-metrics.spec @@ -23,7 +23,7 @@ Go port of coda hale's metrics library.} Name: %{goname} Version: 0 -Release: 0.41%{?dist} +Release: 0.44%{?dist} Summary: Go port of coda hale's metrics library # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/g/golang-github-shopify-sarama/golang-github-shopify-sarama.spec b/specs/g/golang-github-shopify-sarama/golang-github-shopify-sarama.spec index 6f280a2b15a..9d79124dc76 100644 --- a/specs/g/golang-github-shopify-sarama/golang-github-shopify-sarama.spec +++ b/specs/g/golang-github-shopify-sarama/golang-github-shopify-sarama.spec @@ -17,7 +17,7 @@ Sarama is an MIT-licensed Go client library for Apache Kafka version 0.8 (and la %global godocs examples CHANGELOG.md README.md Name: %{goname} -Release: 17%{?dist} +Release: 17%{?dist} Summary: Go library for Apache Kafka 0.8, and up License: MIT diff --git a/specs/g/golang-github-valyala-fasthttp/golang-github-valyala-fasthttp.spec b/specs/g/golang-github-valyala-fasthttp/golang-github-valyala-fasthttp.spec index f77f9d12d46..f31048654f1 100644 --- a/specs/g/golang-github-valyala-fasthttp/golang-github-valyala-fasthttp.spec +++ b/specs/g/golang-github-valyala-fasthttp/golang-github-valyala-fasthttp.spec @@ -25,7 +25,7 @@ in hot paths. Up to 10x faster than net/http.} %global godocs examples README.md TODO SECURITY.md README-prefork.md Name: %{goname} -Release: 13%{?dist} +Release: 13%{?dist} Summary: Fast HTTP package # reuseport is also MIT diff --git a/specs/g/golang-gopkg-tomb-1/golang-gopkg-tomb-1.spec b/specs/g/golang-gopkg-tomb-1/golang-gopkg-tomb-1.spec index 8093e2b9a94..1b06554b898 100644 --- a/specs/g/golang-gopkg-tomb-1/golang-gopkg-tomb-1.spec +++ b/specs/g/golang-gopkg-tomb-1/golang-gopkg-tomb-1.spec @@ -21,7 +21,7 @@ The Tomb package handles clean goroutine tracking and termination.} %global godocs README.md Name: %{goname} -Release: 18%{?dist} +Release: 18%{?dist} Summary: Clean goroutine termination in the Go language License: BSD-3-Clause URL: %{gourl} diff --git a/specs/g/golang-gopkg-vmihailenco-msgpack-2/golang-gopkg-vmihailenco-msgpack-2.spec b/specs/g/golang-gopkg-vmihailenco-msgpack-2/golang-gopkg-vmihailenco-msgpack-2.spec index 07267a6dc88..cdbf7279924 100644 --- a/specs/g/golang-gopkg-vmihailenco-msgpack-2/golang-gopkg-vmihailenco-msgpack-2.spec +++ b/specs/g/golang-gopkg-vmihailenco-msgpack-2/golang-gopkg-vmihailenco-msgpack-2.spec @@ -19,7 +19,7 @@ MessagePack encoding for Golang.} %global godocs README.md Name: %{goname} -Release: 17%{?dist} +Release: 17%{?dist} Summary: MessagePack encoding for Golang License: BSD-3-Clause diff --git a/specs/g/golang-mongodb-mongo-driver/golang-mongodb-mongo-driver.spec b/specs/g/golang-mongodb-mongo-driver/golang-mongodb-mongo-driver.spec index 041931aa946..d0ee1c3fed8 100644 --- a/specs/g/golang-mongodb-mongo-driver/golang-mongodb-mongo-driver.spec +++ b/specs/g/golang-mongodb-mongo-driver/golang-mongodb-mongo-driver.spec @@ -20,7 +20,7 @@ The Go driver for MongoDB.} %global godocs examples CONTRIBUTING.md README.md Name: %{goname} -Release: 19%{?dist} +Release: 19%{?dist} Summary: Go driver for MongoDB # Upstream license specification: Apache-2.0 diff --git a/specs/g/golang-rsc-pdf/golang-rsc-pdf.spec b/specs/g/golang-rsc-pdf/golang-rsc-pdf.spec index 3481104c573..0383f11feef 100644 --- a/specs/g/golang-rsc-pdf/golang-rsc-pdf.spec +++ b/specs/g/golang-rsc-pdf/golang-rsc-pdf.spec @@ -18,7 +18,7 @@ PDF reader library in Go.} %global godocs README.md Name: %{goname} -Release: 23%{?dist} +Release: 23%{?dist} Summary: PDF reader library in Go # Upstream license specification: BSD-3-Clause diff --git a/specs/g/google-auth-httplib2/google-auth-httplib2.spec b/specs/g/google-auth-httplib2/google-auth-httplib2.spec index 83d533e56af..0033290dd4a 100644 --- a/specs/g/google-auth-httplib2/google-auth-httplib2.spec +++ b/specs/g/google-auth-httplib2/google-auth-httplib2.spec @@ -7,7 +7,7 @@ Name: google-auth-httplib2 Summary: %{sum} Version: 0.2.1 -Release: 2%{?dist} +Release: 2%{?dist} License: Apache-2.0 URL: https://github.com/googleapis/google-auth-library-python-httplib2 diff --git a/specs/g/google-noto-fonts/google-noto-fonts.spec b/specs/g/google-noto-fonts/google-noto-fonts.spec index 70267a0badc..87c6674a19a 100644 --- a/specs/g/google-noto-fonts/google-noto-fonts.spec +++ b/specs/g/google-noto-fonts/google-noto-fonts.spec @@ -36,7 +36,7 @@ in Unicode.\ Name: %{fontname}-fonts Version: %{rpmver} -Release: 3%{?dist} +Release: 3%{?dist} Summary: Hinted and Non Hinted OpenType fonts for Unicode scripts License: OFL-1.1 URL: https://notofonts.github.io/ diff --git a/specs/g/google-roboto-slab-fonts/google-roboto-slab-fonts.spec b/specs/g/google-roboto-slab-fonts/google-roboto-slab-fonts.spec index 84aaaeff6f5..acad3ec8d25 100644 --- a/specs/g/google-roboto-slab-fonts/google-roboto-slab-fonts.spec +++ b/specs/g/google-roboto-slab-fonts/google-roboto-slab-fonts.spec @@ -4,7 +4,7 @@ %global commit0 90abd17b4f97671435798b6147b698aa9087612f Version: 1.100263 -Release: 0.26.20150923git%{?dist} +Release: 0.29.20150923git%{?dist} URL: https://www.google.com/fonts/specimen/Roboto+Slab %global foundry google diff --git a/specs/g/gperftools/gperftools.spec b/specs/g/gperftools/gperftools.spec index 74c6bb91b31..44d2ae7f83b 100644 --- a/specs/g/gperftools/gperftools.spec +++ b/specs/g/gperftools/gperftools.spec @@ -7,7 +7,7 @@ Name: gperftools Version: 2.17.2 -Release: 2%{?dist} +Release: 2%{?dist} License: BSD-3-Clause Summary: Very fast malloc and performance analysis tools URL: https://github.com/gperftools/gperftools diff --git a/specs/g/gpgme/gpgme.spec b/specs/g/gpgme/gpgme.spec index 14bdcf2b49e..c9938db7d2d 100644 --- a/specs/g/gpgme/gpgme.spec +++ b/specs/g/gpgme/gpgme.spec @@ -15,7 +15,7 @@ Name: gpgme Summary: GnuPG Made Easy - high level crypto API Version: 1.24.3 -Release: 7%{?dist} +Release: 7%{?dist} # MIT: src/cJSON.{c,h} (used by gpgme-json) License: LGPL-2.1-or-later AND MIT diff --git a/specs/g/gpgverify/gpgverify.spec b/specs/g/gpgverify/gpgverify.spec index 773b882fdae..c9e774d4ab2 100644 --- a/specs/g/gpgverify/gpgverify.spec +++ b/specs/g/gpgverify/gpgverify.spec @@ -3,7 +3,7 @@ Name: gpgverify Version: 2.2 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Signature verifier for easy and safe scripting License: Boehm-GC diff --git a/specs/g/gpsbabel/gpsbabel.spec b/specs/g/gpsbabel/gpsbabel.spec index ab96f52afe2..4f96acb8161 100644 --- a/specs/g/gpsbabel/gpsbabel.spec +++ b/specs/g/gpsbabel/gpsbabel.spec @@ -3,7 +3,7 @@ Name: gpsbabel Version: 1.10.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: A tool to convert between various formats used by GPS devices License: GPL-2.0-or-later diff --git a/specs/g/gpsd/gpsd.spec b/specs/g/gpsd/gpsd.spec index f5ec2970b26..83049f829f2 100644 --- a/specs/g/gpsd/gpsd.spec +++ b/specs/g/gpsd/gpsd.spec @@ -18,7 +18,7 @@ Name: gpsd-epel Name: gpsd %endif Version: 3.26.1 -Release: 7%{?dist} +Release: 7%{?dist} Epoch: 1 Summary: Service daemon for mediating access to a GPS diff --git a/specs/g/grafana-pcp/grafana-pcp.spec b/specs/g/grafana-pcp/grafana-pcp.spec index bdc156c715e..741d6a0d733 100644 --- a/specs/g/grafana-pcp/grafana-pcp.spec +++ b/specs/g/grafana-pcp/grafana-pcp.spec @@ -19,7 +19,7 @@ end} Name: grafana-pcp Version: 5.3.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Performance Co-Pilot Grafana Plugin License: Apache-2.0 URL: https://github.com/performancecopilot/grafana-pcp diff --git a/specs/g/grafana/grafana.spec b/specs/g/grafana/grafana.spec index 1325ef3a7c4..2d6472585f5 100644 --- a/specs/g/grafana/grafana.spec +++ b/specs/g/grafana/grafana.spec @@ -29,7 +29,7 @@ end} Name: grafana Version: 10.2.6 -Release: 23%{?dist} +Release: 23%{?dist} Summary: Metrics dashboard and graph editor License: AGPL-3.0-only URL: https://grafana.org diff --git a/specs/g/graphite2/graphite2.spec b/specs/g/graphite2/graphite2.spec index 001ed08fb41..d0c810d1969 100644 --- a/specs/g/graphite2/graphite2.spec +++ b/specs/g/graphite2/graphite2.spec @@ -3,7 +3,7 @@ Name: graphite2 Version: 1.3.14 -Release: 20%{?dist} +Release: 20%{?dist} Summary: Font rendering capabilities for complex non-Roman writing systems # As per COPYING file this library is tri-licensed diff --git a/specs/g/graphviz/graphviz.spec b/specs/g/graphviz/graphviz.spec index fe53395331f..23b0d361d0f 100644 --- a/specs/g/graphviz/graphviz.spec +++ b/specs/g/graphviz/graphviz.spec @@ -109,7 +109,7 @@ Name: graphviz Summary: Graph Visualization Tools Version: 13.1.2 -Release: 4%{?dist} +Release: 4%{?dist} License: epl-1.0 AND cpl-1.0 AND bsd-3-clause AND mit AND gpl-3.0-or-later WITH bison-exception-2.2 AND apache-1.1 AND lgpl-2.0-or-later WITH libtool-exception AND smlnj AND hpnd-uc URL: http://www.graphviz.org/ #Source0: https://gitlab.com/%%{name}/%%{name}/-/archive/%%{version}/%%{name}-%%{version}.tar.bz2 diff --git a/specs/g/greenboot-rs/greenboot-rs.spec b/specs/g/greenboot-rs/greenboot-rs.spec index 2387c6865e5..b07bd827d04 100644 --- a/specs/g/greenboot-rs/greenboot-rs.spec +++ b/specs/g/greenboot-rs/greenboot-rs.spec @@ -11,7 +11,7 @@ Name: greenboot-rs Version: 0.16.2 -Release: 1%{?dist} +Release: 1%{?dist} Summary: Generic Health Check Framework for systemd # Aggregated license of statically linked dependencies as per %%cargo_license_summary License: BSD-3-Clause AND ISC AND MIT AND Unicode-DFS-2016 AND (Apache-2.0 OR BSL-1.0) AND (Apache-2.0 OR MIT) AND (Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT) AND (Unlicense OR MIT) diff --git a/specs/g/grub2/grub2.spec b/specs/g/grub2/grub2.spec index 1e0bf06d4f3..a1c16578a41 100644 --- a/specs/g/grub2/grub2.spec +++ b/specs/g/grub2/grub2.spec @@ -22,7 +22,7 @@ Name: grub2 Epoch: 1 Version: 2.12 -Release: 46%{?dist} +Release: 46%{?dist} Summary: Bootloader with support for Linux, Multiboot and more License: GPL-3.0-or-later URL: http://www.gnu.org/software/grub/ diff --git a/specs/g/gsm/gsm.spec b/specs/g/gsm/gsm.spec index c90e3905024..4fea7f26692 100644 --- a/specs/g/gsm/gsm.spec +++ b/specs/g/gsm/gsm.spec @@ -8,7 +8,7 @@ Name: gsm Version: %{ver_major}.%{ver_minor}.%{ver_patch} -Release: 2%{?dist} +Release: 2%{?dist} Summary: Shared libraries for GSM speech compressor License: tu-berlin-2.0 diff --git a/specs/g/gsound/gsound.spec b/specs/g/gsound/gsound.spec index c2056d792cc..9f2ede3d8ce 100644 --- a/specs/g/gsound/gsound.spec +++ b/specs/g/gsound/gsound.spec @@ -3,7 +3,7 @@ Name: gsound Version: 1.0.3 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Small gobject library for playing system sounds License: LGPL-2.1-or-later diff --git a/specs/g/gspell/gspell.spec b/specs/g/gspell/gspell.spec index cb99330a9ac..46ec49cd919 100644 --- a/specs/g/gspell/gspell.spec +++ b/specs/g/gspell/gspell.spec @@ -6,7 +6,7 @@ Name: gspell Version: 1.14.2 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Spell-checking library for GTK+ License: LGPL-2.1-or-later diff --git a/specs/g/gstreamer1-plugins-base/gstreamer1-plugins-base.spec b/specs/g/gstreamer1-plugins-base/gstreamer1-plugins-base.spec index 174cc347fb2..aef2d1f4746 100644 --- a/specs/g/gstreamer1-plugins-base/gstreamer1-plugins-base.spec +++ b/specs/g/gstreamer1-plugins-base/gstreamer1-plugins-base.spec @@ -12,7 +12,7 @@ Name: gstreamer1-plugins-base Version: 1.26.10 -Release: 3%{?dist} +Release: 3%{?dist} Summary: GStreamer streaming media framework base plugins License: LGPL-2.1-or-later diff --git a/specs/g/gstreamer1-plugins-good/gstreamer1-plugins-good.spec b/specs/g/gstreamer1-plugins-good/gstreamer1-plugins-good.spec index e382dd9c1b7..2dfd7ac3430 100644 --- a/specs/g/gstreamer1-plugins-good/gstreamer1-plugins-good.spec +++ b/specs/g/gstreamer1-plugins-good/gstreamer1-plugins-good.spec @@ -38,7 +38,7 @@ Name: gstreamer1-plugins-good Version: 1.26.10 -Release: 3%{?dist} +Release: 3%{?dist} Summary: GStreamer plugins with good code and licensing License: CC0-1.0 AND GPL-2.0-only AND LGPL-2.0-only AND LGPL-2.0-or-later AND LGPL-2.1-only AND LGPL-2.1-or-later AND xlock AND MIT AND BSD-3-Clause AND CC-BY-3.0 diff --git a/specs/g/gstreamer1/gstreamer1.spec b/specs/g/gstreamer1/gstreamer1.spec index fed5d376585..84938318007 100644 --- a/specs/g/gstreamer1/gstreamer1.spec +++ b/specs/g/gstreamer1/gstreamer1.spec @@ -20,7 +20,7 @@ Name: gstreamer1 Version: 1.26.10 -Release: 2%{?dist} +Release: 2%{?dist} Summary: GStreamer streaming media framework runtime License: LGPL-2.1-or-later diff --git a/specs/g/gt/gt.spec b/specs/g/gt/gt.spec index d64c5533215..c20638898bc 100644 --- a/specs/g/gt/gt.spec +++ b/specs/g/gt/gt.spec @@ -3,7 +3,7 @@ Name: gt Version: 0.4 -Release: 49%{?dist} +Release: 49%{?dist} Summary: Modified Timidity which supportes enhanced gus format patches # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later diff --git a/specs/g/gtest/gtest.spec b/specs/g/gtest/gtest.spec index 8239a08c6de..ebe08acb01b 100644 --- a/specs/g/gtest/gtest.spec +++ b/specs/g/gtest/gtest.spec @@ -4,7 +4,7 @@ Summary: Google C++ testing framework Name: gtest Version: 1.15.2 -Release: 5%{?dist} +Release: 5%{?dist} # scripts/generator/* are Apache-2.0 License: BSD-3-Clause and Apache-2.0 URL: https://github.com/google/googletest diff --git a/specs/g/gtk-sharp2/gtk-sharp2.spec b/specs/g/gtk-sharp2/gtk-sharp2.spec index 1e3dfdda4f4..31926c5f08f 100644 --- a/specs/g/gtk-sharp2/gtk-sharp2.spec +++ b/specs/g/gtk-sharp2/gtk-sharp2.spec @@ -3,7 +3,7 @@ Name: gtk-sharp2 Version: 2.12.45 -Release: 26%{?dist} +Release: 26%{?dist} Summary: GTK+ and GNOME bindings for Mono # Automatically converted from old format: LGPLv2+ - review is highly recommended. diff --git a/specs/g/gtkglext/gtkglext.spec b/specs/g/gtkglext/gtkglext.spec index d4750923fe1..9d739d64135 100644 --- a/specs/g/gtkglext/gtkglext.spec +++ b/specs/g/gtkglext/gtkglext.spec @@ -6,7 +6,7 @@ Summary: OpenGL Extension to GTK Name: gtkglext Version: 1.2.0 -Release: 52%{?dist} +Release: 52%{?dist} License: GPL-2.0-or-later OR LGPL-2.0-or-later URL: http://gtkglext.sourceforge.net/ diff --git a/specs/g/gtkmm2.4/gtkmm2.4.spec b/specs/g/gtkmm2.4/gtkmm2.4.spec index 8c34eb01dc5..053d1cee6dd 100644 --- a/specs/g/gtkmm2.4/gtkmm2.4.spec +++ b/specs/g/gtkmm2.4/gtkmm2.4.spec @@ -8,7 +8,7 @@ Name: gtkmm2.4 Version: 2.24.5 -Release: 24%{?dist} +Release: 24%{?dist} Summary: C++ interface for GTK2 (a GUI library for X) diff --git a/specs/g/gtksourceview4/gtksourceview4.spec b/specs/g/gtksourceview4/gtksourceview4.spec index 07b253d52a1..deb610ed3cf 100644 --- a/specs/g/gtksourceview4/gtksourceview4.spec +++ b/specs/g/gtksourceview4/gtksourceview4.spec @@ -8,7 +8,7 @@ Name: gtksourceview4 Version: 4.8.4 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Source code editing widget # Automatically converted from old format: LGPLv2+ - review is highly recommended. diff --git a/specs/g/gts/gts.spec b/specs/g/gts/gts.spec index 441142cf712..866c73b30ca 100644 --- a/specs/g/gts/gts.spec +++ b/specs/g/gts/gts.spec @@ -5,7 +5,7 @@ Name: gts Version: 0.7.6 -Release: 51.20%{snapshot}%{?dist} +Release: 54.20%{snapshot}%{?dist} Summary: GNU Triangulated Surface Library License: LGPL-2.0-or-later URL: http://gts.sourceforge.net/index.html diff --git a/specs/g/gucharmap/gucharmap.spec b/specs/g/gucharmap/gucharmap.spec index b93f2c438a9..56cb0d96560 100644 --- a/specs/g/gucharmap/gucharmap.spec +++ b/specs/g/gucharmap/gucharmap.spec @@ -7,7 +7,7 @@ Name: gucharmap Version: 17.0.1 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Unicode character picker and font browser # semver X, Y and Y+1 diff --git a/specs/g/guestfs-tools/guestfs-tools.spec b/specs/g/guestfs-tools/guestfs-tools.spec index b621273a952..306b0d8bb92 100644 --- a/specs/g/guestfs-tools/guestfs-tools.spec +++ b/specs/g/guestfs-tools/guestfs-tools.spec @@ -19,7 +19,7 @@ Summary: Tools to access and modify virtual machine disk images Name: guestfs-tools Version: 1.55.5 -Release: 2%{?dist} +Release: 2%{?dist} License: GPL-2.0-or-later AND LGPL-2.0-or-later # Build only for architectures that have a kernel diff --git a/specs/g/gumbo-parser/gumbo-parser.spec b/specs/g/gumbo-parser/gumbo-parser.spec index 2aa1e961701..6b43b5c30a6 100644 --- a/specs/g/gumbo-parser/gumbo-parser.spec +++ b/specs/g/gumbo-parser/gumbo-parser.spec @@ -4,7 +4,7 @@ Name: gumbo-parser Epoch: 1 Version: 0.12.1 -Release: 8%{?dist} +Release: 8%{?dist} Summary: A HTML5 parser License: Apache-2.0 diff --git a/specs/g/gupnp-igd/gupnp-igd.spec b/specs/g/gupnp-igd/gupnp-igd.spec index de4c3d969f1..1d450e021b9 100644 --- a/specs/g/gupnp-igd/gupnp-igd.spec +++ b/specs/g/gupnp-igd/gupnp-igd.spec @@ -3,7 +3,7 @@ Name: gupnp-igd Version: 1.6.0 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Library to handle UPnP IGD port mapping License: LGPL-2.1-or-later diff --git a/specs/g/gupnp/gupnp.spec b/specs/g/gupnp/gupnp.spec index e3a0a1fdce8..c61d343e1a2 100644 --- a/specs/g/gupnp/gupnp.spec +++ b/specs/g/gupnp/gupnp.spec @@ -7,7 +7,7 @@ Name: gupnp Version: 1.6.9 -Release: 3%{?dist} +Release: 3%{?dist} Summary: A framework for creating UPnP devices & control points License: LGPL-2.1-or-later diff --git a/specs/g/gyp/gyp.spec b/specs/g/gyp/gyp.spec index 4f38e0081d3..be6469a44eb 100644 --- a/specs/g/gyp/gyp.spec +++ b/specs/g/gyp/gyp.spec @@ -15,7 +15,7 @@ Name: gyp Version: 0.1 -Release: 0.60%{?revision:.%{revision}git}%{?dist} +Release: 0.63%{?revision:.%{revision}git}%{?dist} Summary: Generate Your Projects License: BSD-3-Clause diff --git a/specs/h/h5py/h5py.spec b/specs/h/h5py/h5py.spec index d03898d668c..22fffebabce 100644 --- a/specs/h/h5py/h5py.spec +++ b/specs/h/h5py/h5py.spec @@ -7,7 +7,7 @@ Summary: A Python interface to the HDF5 library Name: h5py Version: 3.13.0 -Release: 7%{?dist} +Release: 7%{?dist} # Automatically converted from old format: BSD - review is highly recommended. License: LicenseRef-Callaway-BSD URL: http://www.h5py.org/ diff --git a/specs/h/half/half.spec b/specs/h/half/half.spec index 8079bee1d75..ca6a2f55728 100644 --- a/specs/h/half/half.spec +++ b/specs/h/half/half.spec @@ -6,7 +6,7 @@ Name: half Version: 2.2.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: A C++ half-precision floating point type License: MIT diff --git a/specs/h/happy/happy.spec b/specs/h/happy/happy.spec index 91641068b6c..e9ec4712758 100644 --- a/specs/h/happy/happy.spec +++ b/specs/h/happy/happy.spec @@ -18,7 +18,7 @@ Name: happy Version: 2.0.2 # can only be reset when subpkg bumped -Release: 4%{?dist} +Release: 4%{?dist} Summary: Parser Generator for Haskell License: BSD-2-Clause diff --git a/specs/h/haproxy/haproxy.spec b/specs/h/haproxy/haproxy.spec index e4f599e90f3..56d0d30a668 100644 --- a/specs/h/haproxy/haproxy.spec +++ b/specs/h/haproxy/haproxy.spec @@ -11,7 +11,7 @@ Name: haproxy Version: 3.0.5 -Release: 5%{?dist} +Release: 5%{?dist} Summary: HAProxy reverse proxy for high availability environments License: GPL-2.0-or-later diff --git a/specs/h/harfbuzz/harfbuzz.spec b/specs/h/harfbuzz/harfbuzz.spec index 06379ed24a7..c0856d1c0ec 100644 --- a/specs/h/harfbuzz/harfbuzz.spec +++ b/specs/h/harfbuzz/harfbuzz.spec @@ -3,7 +3,7 @@ Name: harfbuzz Version: 11.5.1 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Text shaping library License: MIT-Modern-Variant diff --git a/specs/h/hawtjni/hawtjni.spec b/specs/h/hawtjni/hawtjni.spec index 8ae135fd1ad..160892908ec 100644 --- a/specs/h/hawtjni/hawtjni.spec +++ b/specs/h/hawtjni/hawtjni.spec @@ -3,7 +3,7 @@ Name: hawtjni Version: 1.18 -Release: 18%{?dist} +Release: 18%{?dist} Summary: Code generator that produces the JNI code # Maven plugin is under ASL 2.0. # stdint.h, shipped in JAR as resource, used only with M$ VC++, is under BSD. diff --git a/specs/h/help2man/help2man.spec b/specs/h/help2man/help2man.spec index 5e89436d10b..06c687098d3 100644 --- a/specs/h/help2man/help2man.spec +++ b/specs/h/help2man/help2man.spec @@ -8,7 +8,7 @@ Name: help2man Summary: Create simple man pages from --help output Version: 1.49.3 -Release: 9%{?dist} +Release: 9%{?dist} License: GPL-3.0-or-later URL: https://www.gnu.org/software/help2man/ Source: https://ftp.gnu.org/gnu/help2man/help2man-%{version}.tar.xz diff --git a/specs/h/hfsplus-tools/hfsplus-tools.spec b/specs/h/hfsplus-tools/hfsplus-tools.spec index 3c95b062c68..d58ca5c3119 100644 --- a/specs/h/hfsplus-tools/hfsplus-tools.spec +++ b/specs/h/hfsplus-tools/hfsplus-tools.spec @@ -3,7 +3,7 @@ Name: hfsplus-tools Version: 540.1.linux3 -Release: 36%{?dist} +Release: 36%{?dist} Summary: Tools to create/check Apple HFS+ filesystems # Automatically converted from old format: APSL 2.0 - review is highly recommended. diff --git a/specs/h/hidapi/hidapi.spec b/specs/h/hidapi/hidapi.spec index e384bcea6e5..09f432403fc 100644 --- a/specs/h/hidapi/hidapi.spec +++ b/specs/h/hidapi/hidapi.spec @@ -3,7 +3,7 @@ Name: hidapi Version: 0.15.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Library for communicating with USB and Bluetooth HID devices License: GPL-3.0-only OR BSD-3-Clause diff --git a/specs/h/hipblas-common/hipblas-common.spec b/specs/h/hipblas-common/hipblas-common.spec index bc7e0afa1fc..8b99dfc6dd7 100644 --- a/specs/h/hipblas-common/hipblas-common.spec +++ b/specs/h/hipblas-common/hipblas-common.spec @@ -8,7 +8,7 @@ Name: hipblas-common Version: %{rocm_version} -Release: 3%{?dist} +Release: 3%{?dist} Summary: Common files shared by hipBLAS and hipBLASLt Url: https://github.com/ROCm/%{upstreamname} License: MIT diff --git a/specs/h/hipblas/hipblas.spec b/specs/h/hipblas/hipblas.spec index 474e9d838cf..4a070f97d0f 100644 --- a/specs/h/hipblas/hipblas.spec +++ b/specs/h/hipblas/hipblas.spec @@ -43,7 +43,7 @@ Name: %{hipblas_name} Version: %{rocm_version} -Release: 5%{?dist} +Release: 5%{?dist} Summary: ROCm BLAS marshalling library Url: https://github.com/ROCmSoftwarePlatform/%{upstreamname} License: MIT diff --git a/specs/h/hipblaslt/hipblaslt.spec b/specs/h/hipblaslt/hipblaslt.spec index 2147f99190e..e6794f71b39 100644 --- a/specs/h/hipblaslt/hipblaslt.spec +++ b/specs/h/hipblaslt/hipblaslt.spec @@ -74,7 +74,7 @@ Name: %{hipblaslt_name} Version: %{rocm_version} -Release: 2%{?dist} +Release: 2%{?dist} Summary: ROCm general matrix operations beyond BLAS Url: https://github.com/ROCmSoftwarePlatform/%{upstreamname} License: MIT diff --git a/specs/h/hipcub/hipcub.spec b/specs/h/hipcub/hipcub.spec index 166eef30e19..76e2c68d5a5 100644 --- a/specs/h/hipcub/hipcub.spec +++ b/specs/h/hipcub/hipcub.spec @@ -33,7 +33,7 @@ Name: hipcub Version: %{rocm_version} -Release: 2%{?dist} +Release: 2%{?dist} Summary: ROCm port of CUDA CUB library Url: https://github.com/ROCm diff --git a/specs/h/hipfft/hipfft.spec b/specs/h/hipfft/hipfft.spec index 7714682fa88..ad1dddcf723 100644 --- a/specs/h/hipfft/hipfft.spec +++ b/specs/h/hipfft/hipfft.spec @@ -43,7 +43,7 @@ Name: %{hipfft_name} Version: %{rocm_version} -Release: 2%{?dist} +Release: 2%{?dist} Summary: ROCm FFT marshalling library Url: https://github.com/ROCm/%{upstreamname} License: MIT diff --git a/specs/h/hipify/hipify.spec b/specs/h/hipify/hipify.spec index 89a3812d77e..9e4c667918f 100644 --- a/specs/h/hipify/hipify.spec +++ b/specs/h/hipify/hipify.spec @@ -12,7 +12,7 @@ Name: hipify Version: %{rocm_version} -Release: 4%{?dist} +Release: 4%{?dist} Summary: Convert CUDA to HIP Url: https://github.com/ROCm diff --git a/specs/h/hiprand/hiprand.spec b/specs/h/hiprand/hiprand.spec index 7127d668e82..05a5e6833a3 100644 --- a/specs/h/hiprand/hiprand.spec +++ b/specs/h/hiprand/hiprand.spec @@ -44,7 +44,7 @@ Name: %{hiprand_name} Version: %{rocm_version} -Release: 5%{?dist} +Release: 5%{?dist} Summary: HIP random number generator Url: https://github.com/ROCm/%{upstreamname} diff --git a/specs/h/hipsolver/hipsolver.spec b/specs/h/hipsolver/hipsolver.spec index 3e13ff372b8..37feefbdb5c 100644 --- a/specs/h/hipsolver/hipsolver.spec +++ b/specs/h/hipsolver/hipsolver.spec @@ -43,7 +43,7 @@ Name: %{hipsolver_name} Version: %{rocm_version} -Release: 3%{?dist} +Release: 3%{?dist} Summary: ROCm SOLVER marshalling library Url: https://github.com/ROCm/%{upstreamname} License: MIT diff --git a/specs/h/hipsparse/hipsparse.spec b/specs/h/hipsparse/hipsparse.spec index 1d310627375..54a485c6cbf 100644 --- a/specs/h/hipsparse/hipsparse.spec +++ b/specs/h/hipsparse/hipsparse.spec @@ -45,7 +45,7 @@ Name: %{hipsparse_name} Version: %{rocm_version} -Release: 2%{?dist} +Release: 2%{?dist} Summary: ROCm SPARSE marshalling library Url: https://github.com/ROCmSoftwarePlatform/%{upstreamname} License: MIT diff --git a/specs/h/hipsparselt/hipsparselt.spec b/specs/h/hipsparselt/hipsparselt.spec index eb5232d9c9d..f4c4d3999ac 100644 --- a/specs/h/hipsparselt/hipsparselt.spec +++ b/specs/h/hipsparselt/hipsparselt.spec @@ -60,7 +60,7 @@ Name: hipsparselt Version: %{rocm_version} -Release: 4%{?dist} +Release: 4%{?dist} Summary: A SPARSE marshaling library Url: https://github.com/ROCm/%{upstreamname} License: MIT diff --git a/specs/h/hiredis/hiredis.spec b/specs/h/hiredis/hiredis.spec index b20d314aab8..7929b635b89 100644 --- a/specs/h/hiredis/hiredis.spec +++ b/specs/h/hiredis/hiredis.spec @@ -3,7 +3,7 @@ Name: hiredis Version: 1.2.0 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Minimalistic C client library for Redis # Automatically converted from old format: BSD - review is highly recommended. License: LicenseRef-Callaway-BSD diff --git a/specs/h/hivex/hivex.spec b/specs/h/hivex/hivex.spec index b14ae9c26b8..35e8d554e55 100644 --- a/specs/h/hivex/hivex.spec +++ b/specs/h/hivex/hivex.spec @@ -13,7 +13,7 @@ Name: hivex Version: 1.3.24 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Read and write Windows Registry binary hive files License: LGPL-2.1-only AND LGPL-2.0-or-later AND GPL-2.0-or-later diff --git a/specs/h/hunspell-de/hunspell-de.spec b/specs/h/hunspell-de/hunspell-de.spec index 42d106d1dba..3767764e100 100644 --- a/specs/h/hunspell-de/hunspell-de.spec +++ b/specs/h/hunspell-de/hunspell-de.spec @@ -4,7 +4,7 @@ Name: hunspell-de Summary: German hunspell dictionaries Version: 20240224 -Release: 5%{?dist} +Release: 5%{?dist} License: GPL-2.0-only OR GPL-3.0-only URL: https://cgit.freedesktop.org/libreoffice/dictionaries/tree/de diff --git a/specs/h/hunspell-se/hunspell-se.spec b/specs/h/hunspell-se/hunspell-se.spec index 68a1abe5f45..d8c6448470e 100644 --- a/specs/h/hunspell-se/hunspell-se.spec +++ b/specs/h/hunspell-se/hunspell-se.spec @@ -9,7 +9,7 @@ Name: hunspell-se Summary: Northern Saami hunspell dictionaries Version: 1.0 -Release: 0.32.beta7%{?dist} +Release: 0.35.beta7%{?dist} Source: http://divvun.no/static_files/hunspell-se.tar.gz URL: http://www.divvun.no/index.html License: GPL-3.0-only diff --git a/specs/h/hunspell-smj/hunspell-smj.spec b/specs/h/hunspell-smj/hunspell-smj.spec index a2b1e06f06c..23373c9f4d1 100644 --- a/specs/h/hunspell-smj/hunspell-smj.spec +++ b/specs/h/hunspell-smj/hunspell-smj.spec @@ -9,7 +9,7 @@ Name: hunspell-smj Summary: Lule Saami hunspell dictionaries Version: 1.0 -Release: 0.32.beta7%{?dist} +Release: 0.35.beta7%{?dist} Source: http://divvun.no/static_files/hunspell-smj.tar.gz URL: http://www.divvun.no/index.html License: GPL-3.0-only diff --git a/specs/h/hunspell-tr/hunspell-tr.spec b/specs/h/hunspell-tr/hunspell-tr.spec index 11e1774e806..5086c8e24b5 100644 --- a/specs/h/hunspell-tr/hunspell-tr.spec +++ b/specs/h/hunspell-tr/hunspell-tr.spec @@ -11,7 +11,7 @@ Name: hunspell-tr Summary: Turkish hunspell dictionaries Version: 1.1.0 License: MIT -Release: 11%{?dist} +Release: 11%{?dist} URL: https://github.com/tdd-ai/hunspell-tr Source: https://github.com/tdd-ai/hunspell-tr/archive/v%{version}/%{name}-v%{version}.tar.gz diff --git a/specs/h/hunspell/hunspell.spec b/specs/h/hunspell/hunspell.spec index def6737c712..14f39358c4f 100644 --- a/specs/h/hunspell/hunspell.spec +++ b/specs/h/hunspell/hunspell.spec @@ -6,7 +6,7 @@ Name: hunspell Summary: A spell checker and morphological analyzer library Version: 1.7.2 -Release: 11%{?dist} +Release: 11%{?dist} Source: https://github.com/hunspell/hunspell/releases/download/v%{version}/hunspell-%{version}.tar.gz URL: https://github.com/hunspell/hunspell License: LGPL-2.1-or-later OR GPL-2.0-or-later OR MPL-1.1 diff --git a/specs/h/hyphen/hyphen.spec b/specs/h/hyphen/hyphen.spec index a040d519d59..6e097e128ec 100644 --- a/specs/h/hyphen/hyphen.spec +++ b/specs/h/hyphen/hyphen.spec @@ -4,7 +4,7 @@ Name: hyphen Summary: A text hyphenation library Version: 2.8.8 -Release: 28%{?dist} +Release: 28%{?dist} Source: http://downloads.sourceforge.net/hunspell/hyphen-%{version}.tar.gz URL: http://hunspell.sf.net License: GPL-2.0-only OR LGPL-2.1-or-later OR MPL-1.1 diff --git a/specs/i/ImageMagick/ImageMagick.spec b/specs/i/ImageMagick/ImageMagick.spec index 74fa8f0968c..c00e1eb7a76 100644 --- a/specs/i/ImageMagick/ImageMagick.spec +++ b/specs/i/ImageMagick/ImageMagick.spec @@ -20,7 +20,7 @@ Name: ImageMagick Epoch: 1 Version: 7.1.1.47 -Release: 8%{?dist} +Release: 8%{?dist} Summary: An X application for displaying and manipulating images %global VER %(foo=%{version}; echo ${foo:0:5}) diff --git a/specs/i/i2c-tools/i2c-tools.spec b/specs/i/i2c-tools/i2c-tools.spec index b068d13bf22..22a3c84f535 100644 --- a/specs/i/i2c-tools/i2c-tools.spec +++ b/specs/i/i2c-tools/i2c-tools.spec @@ -9,7 +9,7 @@ Name: i2c-tools Version: 4.4 -Release: 4%{?dist} +Release: 4%{?dist} Summary: A heterogeneous set of I2C tools for Linux # Note: py-symbus/ is GPL-2.0-only, lib/ is LGPL-2.1-or-later # and the rest is GPL-2.0-or-later diff --git a/specs/i/ibus/ibus.spec b/specs/i/ibus/ibus.spec index c254f66f6d4..2f0a6b68cd7 100644 --- a/specs/i/ibus/ibus.spec +++ b/specs/i/ibus/ibus.spec @@ -66,7 +66,7 @@ Name: ibus Version: 1.5.33 # https://github.com/fedora-infra/rpmautospec/issues/101 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Intelligent Input Bus for Linux OS License: LGPL-2.1-or-later URL: https://github.com/ibus/%name/wiki diff --git a/specs/i/icoutils/icoutils.spec b/specs/i/icoutils/icoutils.spec index c4d820a163d..608fcf421d4 100644 --- a/specs/i/icoutils/icoutils.spec +++ b/specs/i/icoutils/icoutils.spec @@ -3,7 +3,7 @@ Name: icoutils Version: 0.32.3 -Release: 20%{?dist} +Release: 20%{?dist} Summary: Utility for extracting and converting Microsoft icon and cursor files License: GPL-2.0-or-later AND GPL-3.0-or-later diff --git a/specs/i/icu/icu.spec b/specs/i/icu/icu.spec index 3cb5dc7f93f..126acb1f5fd 100644 --- a/specs/i/icu/icu.spec +++ b/specs/i/icu/icu.spec @@ -12,7 +12,7 @@ Name: icu Version: 77.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: International Components for Unicode License: Unicode-DFS-2016 AND BSD-2-Clause AND BSD-3-Clause AND NAIST-2003 AND LicenseRef-Fedora-Public-Domain diff --git a/specs/i/ignition/ignition.spec b/specs/i/ignition/ignition.spec index 4975a7c0fd0..9f28595e70a 100644 --- a/specs/i/ignition/ignition.spec +++ b/specs/i/ignition/ignition.spec @@ -25,7 +25,7 @@ Version: 2.26.0 %global dracutlibdir %{_prefix}/lib/dracut Name: ignition -Release: 2%{?dist} +Release: 2%{?dist} Summary: First boot installer and configuration tool # Upstream license specification: Apache-2.0 diff --git a/specs/i/igraph/igraph.spec b/specs/i/igraph/igraph.spec index 0053695c3c5..8d7673cb7a1 100644 --- a/specs/i/igraph/igraph.spec +++ b/specs/i/igraph/igraph.spec @@ -12,7 +12,7 @@ Name: igraph Version: 0.10.16 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Library for creating and manipulating graphs License: GPL-2.0-or-later diff --git a/specs/i/ilbc/ilbc.spec b/specs/i/ilbc/ilbc.spec index bbb0592f7f2..26ae6a331f9 100644 --- a/specs/i/ilbc/ilbc.spec +++ b/specs/i/ilbc/ilbc.spec @@ -4,7 +4,7 @@ Name: ilbc Summary: Internet Low Bitrate Codec Version: 3.0.4 -Release: 18%{?dist} +Release: 18%{?dist} License: BSD-3-Clause URL: https://github.com/TimothyGu/libilbc diff --git a/specs/i/im-chooser/im-chooser.spec b/specs/i/im-chooser/im-chooser.spec index 876987e0f85..8071b186f5b 100644 --- a/specs/i/im-chooser/im-chooser.spec +++ b/specs/i/im-chooser/im-chooser.spec @@ -11,7 +11,7 @@ Name: im-chooser Version: 1.7.5 -Release: 5%{?dist} +Release: 5%{?dist} License: GPL-2.0-or-later AND LGPL-2.0-or-later URL: http://pagure.io/im-chooser/ %{?_with_gtk2:BuildRequires: gtk2-devel} diff --git a/specs/i/image-builder/image-builder.spec b/specs/i/image-builder/image-builder.spec index c51b51071e5..f8045ab6da5 100644 --- a/specs/i/image-builder/image-builder.spec +++ b/specs/i/image-builder/image-builder.spec @@ -20,7 +20,7 @@ OSTree commits. Uses osbuild under the hood. } Name: image-builder -Release: 2%{?dist} +Release: 2%{?dist} Summary: An image building executable using osbuild ExcludeArch: i686 diff --git a/specs/i/imath/imath.spec b/specs/i/imath/imath.spec index a82caea7614..16ab88e144d 100644 --- a/specs/i/imath/imath.spec +++ b/specs/i/imath/imath.spec @@ -7,7 +7,7 @@ Name: imath Version: 3.1.12 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Library of 2D and 3D vector, matrix, and math operations for computer graphics License: BSD-3-Clause diff --git a/specs/i/imlib2/imlib2.spec b/specs/i/imlib2/imlib2.spec index 88bf3002422..0febadbe303 100644 --- a/specs/i/imlib2/imlib2.spec +++ b/specs/i/imlib2/imlib2.spec @@ -4,7 +4,7 @@ Summary: Image loading, saving, rendering, and manipulation library Name: imlib2 Version: 1.12.3 -Release: 5%{?dist} +Release: 5%{?dist} License: Imlib2 URL: http://docs.enlightenment.org/api/imlib2/html/ Source0: http://downloads.sourceforge.net/enlightenment/%{name}-%{version}.tar.xz diff --git a/specs/i/imsettings/imsettings.spec b/specs/i/imsettings/imsettings.spec index c9a65869bb2..94e33867d1a 100644 --- a/specs/i/imsettings/imsettings.spec +++ b/specs/i/imsettings/imsettings.spec @@ -3,7 +3,7 @@ Name: imsettings Version: 1.8.10 -Release: 5%{?dist} +Release: 5%{?dist} License: LGPL-2.0-or-later URL: https://gitlab.com/tagoh/%{name}/ BuildRequires: desktop-file-utils diff --git a/specs/i/inih/inih.spec b/specs/i/inih/inih.spec index 77f8ae57c54..b11be12ed44 100644 --- a/specs/i/inih/inih.spec +++ b/specs/i/inih/inih.spec @@ -8,7 +8,7 @@ Name: inih Version: 62 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Simple INI file parser library License: BSD-3-Clause diff --git a/specs/i/iniparser/iniparser.spec b/specs/i/iniparser/iniparser.spec index f6494f86f9d..4c4fa7df1ce 100644 --- a/specs/i/iniparser/iniparser.spec +++ b/specs/i/iniparser/iniparser.spec @@ -3,7 +3,7 @@ Name: iniparser Version: 4.2.6 -Release: 4%{?dist} +Release: 4%{?dist} Summary: C library for parsing "INI-style" files License: MIT diff --git a/specs/i/initscripts/initscripts.spec b/specs/i/initscripts/initscripts.spec index 720a6bb9571..208a4823e65 100644 --- a/specs/i/initscripts/initscripts.spec +++ b/specs/i/initscripts/initscripts.spec @@ -22,7 +22,7 @@ Requires: gawk \ Name: initscripts Summary: Basic support for legacy System V init scripts Version: 10.27 -Release: 2%{?dist} +Release: 2%{?dist} License: GPL-2.0-only diff --git a/specs/i/inotify-tools/inotify-tools.spec b/specs/i/inotify-tools/inotify-tools.spec index 4e31f6cf941..4605e8f9acb 100644 --- a/specs/i/inotify-tools/inotify-tools.spec +++ b/specs/i/inotify-tools/inotify-tools.spec @@ -3,7 +3,7 @@ Name: inotify-tools Version: 4.23.9.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Command line utilities for inotify # GPL-2.0-only: the project as a whole diff --git a/specs/i/intel-cmt-cat/intel-cmt-cat.spec b/specs/i/intel-cmt-cat/intel-cmt-cat.spec index d02c0d90bd0..7fe44c2d8b5 100644 --- a/specs/i/intel-cmt-cat/intel-cmt-cat.spec +++ b/specs/i/intel-cmt-cat/intel-cmt-cat.spec @@ -10,7 +10,7 @@ including, Cache Monitoring Technology (CMT), Memory Bandwidth Monitoring Name: intel-cmt-cat Version: 25.04 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Intel cache monitoring and allocation technology config tool License: BSD-3-Clause diff --git a/specs/i/intel-ipp-crypto-mb/intel-ipp-crypto-mb.spec b/specs/i/intel-ipp-crypto-mb/intel-ipp-crypto-mb.spec index 2dff9489de2..f94ce273bf2 100644 --- a/specs/i/intel-ipp-crypto-mb/intel-ipp-crypto-mb.spec +++ b/specs/i/intel-ipp-crypto-mb/intel-ipp-crypto-mb.spec @@ -14,7 +14,7 @@ Intel Advanced Vector Extensions 512 (Intel AVX-512) instructions.} Name: intel-ipp-crypto-mb Version: 1.0.10 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Intel IPP Cryptography multi-buffer library License: Apache-2.0 diff --git a/specs/i/intel-ipsec-mb/intel-ipsec-mb.spec b/specs/i/intel-ipsec-mb/intel-ipsec-mb.spec index 266e38a91b2..241d8af2e94 100644 --- a/specs/i/intel-ipsec-mb/intel-ipsec-mb.spec +++ b/specs/i/intel-ipsec-mb/intel-ipsec-mb.spec @@ -13,7 +13,7 @@ industry-leading performance on a range of Intel Processors.} Name: intel-ipsec-mb Version: 2.0.1 -Release: 4%{?dist} +Release: 4%{?dist} Summary: IPsec cryptography library optimized for Intel Architecture License: BSD-3-Clause diff --git a/specs/i/iotop-c/iotop-c.spec b/specs/i/iotop-c/iotop-c.spec index 388e98bac00..d7f44a8ca49 100644 --- a/specs/i/iotop-c/iotop-c.spec +++ b/specs/i/iotop-c/iotop-c.spec @@ -3,7 +3,7 @@ Name: iotop-c Version: 1.30 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Simple top-like I/O monitor (implemented in C) License: GPL-2.0-or-later diff --git a/specs/i/iperf3/iperf3.spec b/specs/i/iperf3/iperf3.spec index aabc2c51a35..18758a6f0b8 100644 --- a/specs/i/iperf3/iperf3.spec +++ b/specs/i/iperf3/iperf3.spec @@ -3,7 +3,7 @@ Name: iperf3 Version: 3.19.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Measurement tool for TCP/UDP bandwidth performance # src/cjson.{c,h} and src/net.{c,h} are MIT diff --git a/specs/i/ipmitool/ipmitool.spec b/specs/i/ipmitool/ipmitool.spec index 43a45839dc8..f0de2e3beae 100644 --- a/specs/i/ipmitool/ipmitool.spec +++ b/specs/i/ipmitool/ipmitool.spec @@ -7,7 +7,7 @@ Name: ipmitool Summary: Utility for IPMI control Version: 1.8.19 -Release: 12%{?dist} +Release: 12%{?dist} License: BSD-3-Clause-Sun URL: http://ipmitool.sourceforge.net/ Source0: https://github.com/%{name}/%{name}/archive/%{gitname}_%{gitversion}/%{name}-%{version}.tar.gz diff --git a/specs/i/ipset/ipset.spec b/specs/i/ipset/ipset.spec index 1fccaba77ee..6b5269f6cc5 100644 --- a/specs/i/ipset/ipset.spec +++ b/specs/i/ipset/ipset.spec @@ -3,7 +3,7 @@ Name: ipset Version: 7.24 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Manage Linux IP sets License: GPL-2.0-only diff --git a/specs/i/iptraf-ng/iptraf-ng.spec b/specs/i/iptraf-ng/iptraf-ng.spec index 87d7f4646c8..92680d989e1 100644 --- a/specs/i/iptraf-ng/iptraf-ng.spec +++ b/specs/i/iptraf-ng/iptraf-ng.spec @@ -4,7 +4,7 @@ Summary: A console-based network monitoring utility Name: iptraf-ng Version: 1.2.2 -Release: 19%{?dist} +Release: 19%{?dist} Source0: https://github.com/iptraf-ng/iptraf-ng/archive/v%{version}.tar.gz Source1: %{name}-logrotate.conf Source2: %{name}-tmpfiles.conf diff --git a/specs/i/ipxe/ipxe.spec b/specs/i/ipxe/ipxe.spec index 8254fa5fd10..a79d408df5a 100644 --- a/specs/i/ipxe/ipxe.spec +++ b/specs/i/ipxe/ipxe.spec @@ -42,7 +42,7 @@ Name: ipxe Version: %{date} -Release: 4.git%{hash}%{?dist} +Release: 7.git%{hash}%{?dist} Summary: A network boot loader License: BSD-2-Clause AND BSD-3-Clause AND GPL-2.0-only AND (GPL-2.0-only OR MPL-1.1) AND GPL-2.0-or-later AND GPL-2.0-or-later WITH UBDL-exception AND ISC AND MIT diff --git a/specs/i/irqbalance/irqbalance.spec b/specs/i/irqbalance/irqbalance.spec index 7cdaf0ee93c..94ad9c8a554 100644 --- a/specs/i/irqbalance/irqbalance.spec +++ b/specs/i/irqbalance/irqbalance.spec @@ -3,7 +3,7 @@ Name: irqbalance Version: 1.9.4 -Release: 8%{?dist} +Release: 8%{?dist} Epoch: 2 Summary: IRQ balancing daemon License: GPL-2.0-only diff --git a/specs/i/irssi/irssi.spec b/specs/i/irssi/irssi.spec index 32ce8935915..3a55465c96c 100644 --- a/specs/i/irssi/irssi.spec +++ b/specs/i/irssi/irssi.spec @@ -12,7 +12,7 @@ Summary: Modular text mode IRC client with Perl scripting Name: irssi Version: 1.4.5 -Release: 11%{?dist} +Release: 11%{?dist} License: gpl-2.0-or-later AND gpl-2.0-only AND gfdl-1.1-or-later AND licenseref-fedora-public-domain AND hpnd-markus-kuhn URL: http://irssi.org/ diff --git a/specs/i/iscsi-initiator-utils/iscsi-initiator-utils.spec b/specs/i/iscsi-initiator-utils/iscsi-initiator-utils.spec index e8c9b0d2c74..6ffdcc27074 100644 --- a/specs/i/iscsi-initiator-utils/iscsi-initiator-utils.spec +++ b/specs/i/iscsi-initiator-utils/iscsi-initiator-utils.spec @@ -13,7 +13,7 @@ Summary: iSCSI daemon and utility programs Name: iscsi-initiator-utils Version: 6.%{open_iscsi_version}.%{open_iscsi_build} -Release: 0.git%{shortcommit0}%{?dist}.2 +Release: 0.git%{shortcommit0}%{?dist}.5 License: GPL-2.0-or-later URL: https://github.com/open-iscsi/open-iscsi Source0: https://github.com/open-iscsi/open-iscsi/archive/%{commit0}.tar.gz#/open-iscsi-%{shortcommit0}.tar.gz diff --git a/specs/i/isl/isl.spec b/specs/i/isl/isl.spec index d9d34c71565..c189c727b27 100644 --- a/specs/i/isl/isl.spec +++ b/specs/i/isl/isl.spec @@ -19,7 +19,7 @@ URL: http://isl.gforge.inria.fr/ # # % global buildid .local -Release: 23%{?buildid}%{?dist} +Release: 26%{?buildid}%{?dist} BuildRequires: gcc BuildRequires: gmp-devel diff --git a/specs/i/isns-utils/isns-utils.spec b/specs/i/isns-utils/isns-utils.spec index 7f0be91ecbb..c4736725bec 100644 --- a/specs/i/isns-utils/isns-utils.spec +++ b/specs/i/isns-utils/isns-utils.spec @@ -3,7 +3,7 @@ Name: isns-utils Version: 0.103 -Release: 4%{?dist} +Release: 4%{?dist} Summary: The iSNS daemon and utility programs License: LGPL-2.1-or-later diff --git a/specs/i/iso-codes/iso-codes.spec b/specs/i/iso-codes/iso-codes.spec index f65f0308532..80ecbca6b90 100644 --- a/specs/i/iso-codes/iso-codes.spec +++ b/specs/i/iso-codes/iso-codes.spec @@ -4,7 +4,7 @@ Name: iso-codes Summary: ISO code lists and translations Version: 4.18.0 -Release: 3%{?dist} +Release: 3%{?dist} License: LGPL-2.1-or-later URL: https://salsa.debian.org/iso-codes-team/iso-codes Source0: https://salsa.debian.org/iso-codes-team/%{name}/-/archive/v%{version}/%{name}-v%{version}.tar.gz diff --git a/specs/i/itstool/itstool.spec b/specs/i/itstool/itstool.spec index 4f69b7fd8ae..1dbcfd4cb95 100644 --- a/specs/i/itstool/itstool.spec +++ b/specs/i/itstool/itstool.spec @@ -3,7 +3,7 @@ Name: itstool Version: 2.0.7 -Release: 12%{?dist} +Release: 12%{?dist} Summary: ITS-based XML translation tool License: GPL-3.0-or-later diff --git a/specs/i/iw/iw.spec b/specs/i/iw/iw.spec index fc89ce8ede2..aac0cdc05ce 100644 --- a/specs/i/iw/iw.spec +++ b/specs/i/iw/iw.spec @@ -3,7 +3,7 @@ Name: iw Version: 6.17 -Release: 2%{?dist} +Release: 2%{?dist} Summary: A nl80211 based wireless configuration tool # part of sha256.c is public domain diff --git a/specs/j/Judy/Judy.spec b/specs/j/Judy/Judy.spec index 0af2facd3d8..a90d01bfd60 100644 --- a/specs/j/Judy/Judy.spec +++ b/specs/j/Judy/Judy.spec @@ -3,7 +3,7 @@ Name: Judy Version: 1.0.5 -Release: 43%{?dist} +Release: 43%{?dist} Summary: General purpose dynamic array License: LGPL-2.0-or-later URL: http://sourceforge.net/projects/judy/ diff --git a/specs/j/jack-audio-connection-kit/jack-audio-connection-kit.spec b/specs/j/jack-audio-connection-kit/jack-audio-connection-kit.spec index 9a7b8733b66..95d66690b57 100644 --- a/specs/j/jack-audio-connection-kit/jack-audio-connection-kit.spec +++ b/specs/j/jack-audio-connection-kit/jack-audio-connection-kit.spec @@ -17,7 +17,7 @@ Summary: The Jack Audio Connection Kit Name: jack-audio-connection-kit Version: 1.9.22 -Release: 12%{?dist} +Release: 12%{?dist} # The entire source (~500 files) is a mixture of these three licenses # Automatically converted from old format: GPLv2 and GPLv2+ and LGPLv2+ - review is highly recommended. License: GPL-2.0-only AND GPL-2.0-or-later AND LicenseRef-Callaway-LGPLv2+ diff --git a/specs/j/jackson-annotations/jackson-annotations.spec b/specs/j/jackson-annotations/jackson-annotations.spec index b45e06e14e4..85bf78366d0 100644 --- a/specs/j/jackson-annotations/jackson-annotations.spec +++ b/specs/j/jackson-annotations/jackson-annotations.spec @@ -3,7 +3,7 @@ Name: jackson-annotations Version: 2.18.2 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Core annotations for Jackson data processor License: Apache-2.0 diff --git a/specs/j/jackson-bom/jackson-bom.spec b/specs/j/jackson-bom/jackson-bom.spec index 4d3d7b39750..84c062a5464 100644 --- a/specs/j/jackson-bom/jackson-bom.spec +++ b/specs/j/jackson-bom/jackson-bom.spec @@ -3,7 +3,7 @@ Name: jackson-bom Version: 2.18.2 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Bill of materials POM for Jackson projects License: Apache-2.0 diff --git a/specs/j/jackson-core/jackson-core.spec b/specs/j/jackson-core/jackson-core.spec index 843143d09fc..d81cc45d864 100644 --- a/specs/j/jackson-core/jackson-core.spec +++ b/specs/j/jackson-core/jackson-core.spec @@ -3,7 +3,7 @@ Name: jackson-core Version: 2.18.2 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Core part of Jackson License: Apache-2.0 diff --git a/specs/j/jackson-databind/jackson-databind.spec b/specs/j/jackson-databind/jackson-databind.spec index 1c9eb5619de..9fcd2ae6099 100644 --- a/specs/j/jackson-databind/jackson-databind.spec +++ b/specs/j/jackson-databind/jackson-databind.spec @@ -3,7 +3,7 @@ Name: jackson-databind Version: 2.18.2 -Release: 5%{?dist} +Release: 5%{?dist} Summary: General data-binding package for Jackson (2.x) License: Apache-2.0 and LGPL-2.0-or-later diff --git a/specs/j/jackson-jaxrs-providers/jackson-jaxrs-providers.spec b/specs/j/jackson-jaxrs-providers/jackson-jaxrs-providers.spec index fd5609d9e77..59d94d5be67 100644 --- a/specs/j/jackson-jaxrs-providers/jackson-jaxrs-providers.spec +++ b/specs/j/jackson-jaxrs-providers/jackson-jaxrs-providers.spec @@ -5,7 +5,7 @@ Name: jackson-jaxrs-providers Version: 2.18.2 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Jackson JAX-RS providers License: Apache-2.0 diff --git a/specs/j/jackson-modules-base/jackson-modules-base.spec b/specs/j/jackson-modules-base/jackson-modules-base.spec index d3b8aa3863a..479a6e943d5 100644 --- a/specs/j/jackson-modules-base/jackson-modules-base.spec +++ b/specs/j/jackson-modules-base/jackson-modules-base.spec @@ -5,7 +5,7 @@ Name: jackson-modules-base Version: 2.18.2 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Jackson modules: Base License: Apache-2.0 diff --git a/specs/j/jackson-parent/jackson-parent.spec b/specs/j/jackson-parent/jackson-parent.spec index 82b4223221d..09799682d6b 100644 --- a/specs/j/jackson-parent/jackson-parent.spec +++ b/specs/j/jackson-parent/jackson-parent.spec @@ -3,7 +3,7 @@ Name: jackson-parent Version: 2.18.1 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Parent pom for all Jackson components License: Apache-2.0 diff --git a/specs/j/jacoco/jacoco.spec b/specs/j/jacoco/jacoco.spec index 9c4393264f5..a1927d0c273 100644 --- a/specs/j/jacoco/jacoco.spec +++ b/specs/j/jacoco/jacoco.spec @@ -3,7 +3,7 @@ Name: jacoco Version: 0.8.11 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Java Code Coverage for Eclipse License: EPL-2.0 URL: http://www.eclemma.org/jacoco/ diff --git a/specs/j/jakarta-json/jakarta-json.spec b/specs/j/jakarta-json/jakarta-json.spec index a92d3250122..3e8a651a127 100644 --- a/specs/j/jakarta-json/jakarta-json.spec +++ b/specs/j/jakarta-json/jakarta-json.spec @@ -5,7 +5,7 @@ Name: jakarta-json Version: 2.1.3 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Jakarta JSON Processing License: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 diff --git a/specs/j/jakarta-mail1/jakarta-mail1.spec b/specs/j/jakarta-mail1/jakarta-mail1.spec index 0e8e92fe924..e09838c5657 100644 --- a/specs/j/jakarta-mail1/jakarta-mail1.spec +++ b/specs/j/jakarta-mail1/jakarta-mail1.spec @@ -5,7 +5,7 @@ Name: jakarta-mail1 Version: 1.6.7 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Jakarta Mail API License: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 URL: https://github.com/eclipse-ee4j/mail diff --git a/specs/j/jansi-native/jansi-native.spec b/specs/j/jansi-native/jansi-native.spec index 3b908077129..a0c48882197 100644 --- a/specs/j/jansi-native/jansi-native.spec +++ b/specs/j/jansi-native/jansi-native.spec @@ -10,7 +10,7 @@ Name: jansi-native Version: 1.8 -Release: 24%{?dist} +Release: 24%{?dist} Summary: Jansi Native implements the JNI Libraries used by the Jansi project # Automatically converted from old format: ASL 2.0 - review is highly recommended. License: Apache-2.0 diff --git a/specs/j/jansi1/jansi1.spec b/specs/j/jansi1/jansi1.spec index 657f104718f..87cc86180cb 100644 --- a/specs/j/jansi1/jansi1.spec +++ b/specs/j/jansi1/jansi1.spec @@ -3,7 +3,7 @@ Name: jansi1 Version: 1.18 -Release: 26%{?dist} +Release: 26%{?dist} Summary: Generate and interpret ANSI escape sequences in Java License: Apache-2.0 URL: https://fusesource.github.io/jansi/ diff --git a/specs/j/jansson/jansson.spec b/specs/j/jansson/jansson.spec index 21d09872fd2..bab8221ab57 100644 --- a/specs/j/jansson/jansson.spec +++ b/specs/j/jansson/jansson.spec @@ -6,7 +6,7 @@ Version: 2.14 %forgemeta Name: jansson -Release: 4%{?dist} +Release: 4%{?dist} Summary: C library for encoding, decoding and manipulating JSON data # src/lookup3.h is LicenseRef-Fedora-Public-Domain diff --git a/specs/j/java-25-openjdk-portable/java-25-openjdk-portable.spec b/specs/j/java-25-openjdk-portable/java-25-openjdk-portable.spec index 124cafa7d58..9f2ed888bd5 100644 --- a/specs/j/java-25-openjdk-portable/java-25-openjdk-portable.spec +++ b/specs/j/java-25-openjdk-portable/java-25-openjdk-portable.spec @@ -411,7 +411,7 @@ %global top_level_dir_name %{vcstag} %global top_level_dir_name_backup %{top_level_dir_name}-backup %global buildver 32 -%global rpmrelease 1 +%global rpmrelease 4 #%%global tagsuffix %%{nil} # Priority must be 8 digits in total; up to openjdk 1.8, we were using 18..... so when we moved to 11, we had to add another digit %if %is_system_jdk @@ -1740,6 +1740,9 @@ done %changelog ## START: Generated by rpmautospec +* Fri Aug 14 2026 Thien Trung Vuong - 1:25.0.0.0.32-4 +- feat(rebuild): migrate remaining macro-driven release counters + * Sat May 09 2026 Chris Co - 1:25.0.0.0.32-3 - fix(java): disable slowdebug variant and bump release for openjdk diff --git a/specs/j/java-25-openjdk/java-25-openjdk.spec b/specs/j/java-25-openjdk/java-25-openjdk.spec index 5929f2887d1..2710ab7a047 100644 --- a/specs/j/java-25-openjdk/java-25-openjdk.spec +++ b/specs/j/java-25-openjdk/java-25-openjdk.spec @@ -353,7 +353,7 @@ %global top_level_dir_name %{vcstag} %global top_level_dir_name_backup %{top_level_dir_name}-backup %global buildver 32 -%global rpmrelease 4 +%global rpmrelease 7 # Priority must be 8 digits in total; up to openjdk 1.8, we were using 18..... so when we moved to 11, we had to add another digit %if %is_system_jdk # Using 10 digits may overflow the int used for priority, so we combine the patch and build versions @@ -2405,6 +2405,9 @@ exit 0 %changelog ## START: Generated by rpmautospec +* Fri Aug 14 2026 Thien Trung Vuong - 1:25.0.0.0.32-8 +- feat(rebuild): migrate remaining macro-driven release counters + * Sat May 09 2026 Chris Co - 1:25.0.0.0.32-7 - fix(java): disable slowdebug variant and bump release for openjdk diff --git a/specs/j/jaxen/jaxen.spec b/specs/j/jaxen/jaxen.spec index 635ca53ad93..08c60238b52 100644 --- a/specs/j/jaxen/jaxen.spec +++ b/specs/j/jaxen/jaxen.spec @@ -7,7 +7,7 @@ Name: jaxen Summary: An XPath engine written in Java Epoch: 0 Version: 1.2.0 -Release: 24%{?dist} +Release: 24%{?dist} # Automatically converted from old format: BSD - review is highly recommended. License: LicenseRef-Callaway-BSD diff --git a/specs/j/jbigkit/jbigkit.spec b/specs/j/jbigkit/jbigkit.spec index fa3b37f6229..2037c9635d1 100644 --- a/specs/j/jbigkit/jbigkit.spec +++ b/specs/j/jbigkit/jbigkit.spec @@ -3,7 +3,7 @@ Name: jbigkit Version: 2.1 -Release: 33%{?dist} +Release: 33%{?dist} Summary: JBIG1 lossless image compression tools License: GPL-2.0-or-later diff --git a/specs/j/jboss-jaxrs-2.0-api/jboss-jaxrs-2.0-api.spec b/specs/j/jboss-jaxrs-2.0-api/jboss-jaxrs-2.0-api.spec index 5ba2777c89f..5da9716a4e4 100644 --- a/specs/j/jboss-jaxrs-2.0-api/jboss-jaxrs-2.0-api.spec +++ b/specs/j/jboss-jaxrs-2.0-api/jboss-jaxrs-2.0-api.spec @@ -7,7 +7,7 @@ Name: jboss-jaxrs-2.0-api Version: 1.0.0 -Release: 32%{?dist} +Release: 32%{?dist} Summary: JAX-RS 2.0: The Java API for RESTful Web Services # ASL 2.0 src/main/java/javax/ws/rs/core/GenericEntity.java License: (CDDL-1.0 or GPL-2.0-only WITH Classpath-exception-2.0) and Apache-2.0 diff --git a/specs/j/jboss-logging-tools/jboss-logging-tools.spec b/specs/j/jboss-logging-tools/jboss-logging-tools.spec index e1241d97e9f..a9fe3fca761 100644 --- a/specs/j/jboss-logging-tools/jboss-logging-tools.spec +++ b/specs/j/jboss-logging-tools/jboss-logging-tools.spec @@ -6,7 +6,7 @@ Name: jboss-logging-tools Version: 2.2.1 -Release: 21%{?dist} +Release: 21%{?dist} Summary: JBoss Logging I18n Annotation Processor # Not available license file https://issues.jboss.org/browse/LOGTOOL-107 # ./annotations/src/main/java/org/jboss/logging/annotations/*.java: Apache (v2.0) diff --git a/specs/j/jboss-logging/jboss-logging.spec b/specs/j/jboss-logging/jboss-logging.spec index daa615b0f93..8e5770d747e 100644 --- a/specs/j/jboss-logging/jboss-logging.spec +++ b/specs/j/jboss-logging/jboss-logging.spec @@ -6,7 +6,7 @@ Name: jboss-logging Version: 3.6.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: The JBoss Logging Framework License: Apache-2.0 diff --git a/specs/j/jboss-parent/jboss-parent.spec b/specs/j/jboss-parent/jboss-parent.spec index 496383f982f..40b993923d9 100644 --- a/specs/j/jboss-parent/jboss-parent.spec +++ b/specs/j/jboss-parent/jboss-parent.spec @@ -3,7 +3,7 @@ Name: jboss-parent Version: 20 -Release: 27%{?dist} +Release: 27%{?dist} Summary: JBoss Parent POM License: CC0-1.0 URL: http://www.jboss.org/ diff --git a/specs/j/jdeparser/jdeparser.spec b/specs/j/jdeparser/jdeparser.spec index 24518679404..066e770c21d 100644 --- a/specs/j/jdeparser/jdeparser.spec +++ b/specs/j/jdeparser/jdeparser.spec @@ -6,7 +6,7 @@ Name: jdeparser Version: 2.0.3 -Release: 22%{?dist} +Release: 22%{?dist} Summary: Source generator library for Java License: Apache-2.0 URL: https://github.com/jdeparser/jdeparser2 diff --git a/specs/j/jdependency/jdependency.spec b/specs/j/jdependency/jdependency.spec index 3ddd5ac59a5..14f16eae3b3 100644 --- a/specs/j/jdependency/jdependency.spec +++ b/specs/j/jdependency/jdependency.spec @@ -3,7 +3,7 @@ Name: jdependency Version: 2.12 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Class dependency analysis library for Java # Automatically converted from old format: ASL 2.0 - review is highly recommended. License: Apache-2.0 diff --git a/specs/j/jemalloc/jemalloc.spec b/specs/j/jemalloc/jemalloc.spec index 52b2c5b19a2..64161dd4e8f 100644 --- a/specs/j/jemalloc/jemalloc.spec +++ b/specs/j/jemalloc/jemalloc.spec @@ -6,7 +6,7 @@ Name: jemalloc Version: 5.3.0 -Release: 14%{?dist} +Release: 14%{?dist} Summary: General-purpose scalable concurrent malloc implementation # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/j/jitterentropy/jitterentropy.spec b/specs/j/jitterentropy/jitterentropy.spec index 1587d2c463b..f096fbbc5a0 100644 --- a/specs/j/jitterentropy/jitterentropy.spec +++ b/specs/j/jitterentropy/jitterentropy.spec @@ -4,7 +4,7 @@ %global libjit_soversion 3 Name: jitterentropy Version: 3.6.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Library implementing the jitter entropy source License: BSD-3-Clause OR GPL-2.0-only diff --git a/specs/j/jline2/jline2.spec b/specs/j/jline2/jline2.spec index 9d06ffa6874..52bd3639abf 100644 --- a/specs/j/jline2/jline2.spec +++ b/specs/j/jline2/jline2.spec @@ -3,7 +3,7 @@ Name: jline2 Version: 2.14.6 -Release: 17%{?dist} +Release: 17%{?dist} Summary: Java library for handling console input License: BSD-3-Clause URL: http://jline.github.io/jline2/ diff --git a/specs/j/jomolhari-fonts/jomolhari-fonts.spec b/specs/j/jomolhari-fonts/jomolhari-fonts.spec index b78daf4ab12..970d2dea447 100644 --- a/specs/j/jomolhari-fonts/jomolhari-fonts.spec +++ b/specs/j/jomolhari-fonts/jomolhari-fonts.spec @@ -2,7 +2,7 @@ # Do not edit manually; changes may be overwritten. Version: 0.003 -Release: 45%{?dist} +Release: 45%{?dist} URL: https://fonts.google.com/specimen/Jomolhari diff --git a/specs/j/js-d3-flame-graph/js-d3-flame-graph.spec b/specs/j/js-d3-flame-graph/js-d3-flame-graph.spec index c525baf08d9..7de90827a70 100644 --- a/specs/j/js-d3-flame-graph/js-d3-flame-graph.spec +++ b/specs/j/js-d3-flame-graph/js-d3-flame-graph.spec @@ -6,7 +6,7 @@ Name: js-d3-flame-graph Version: 4.0.7 -Release: 12%{?dist} +Release: 12%{?dist} Summary: A D3.js plugin that produces flame graphs BuildArch: noarch diff --git a/specs/j/js-jquery/js-jquery.spec b/specs/j/js-jquery/js-jquery.spec index 773adff7a0b..c07cd636059 100644 --- a/specs/j/js-jquery/js-jquery.spec +++ b/specs/j/js-jquery/js-jquery.spec @@ -3,7 +3,7 @@ Name: js-jquery Version: 3.7.1 -Release: 8%{?dist} +Release: 8%{?dist} Summary: JavaScript DOM manipulation, event handling, and AJAX library BuildArch: noarch diff --git a/specs/j/jsch-agent-proxy/jsch-agent-proxy.spec b/specs/j/jsch-agent-proxy/jsch-agent-proxy.spec index 3341d7716bb..58d0ff64da8 100644 --- a/specs/j/jsch-agent-proxy/jsch-agent-proxy.spec +++ b/specs/j/jsch-agent-proxy/jsch-agent-proxy.spec @@ -3,7 +3,7 @@ Name: jsch-agent-proxy Version: 0.0.8 -Release: 31%{?dist} +Release: 31%{?dist} Summary: Proxy to ssh-agent and Pageant in Java # Automatically converted from old format: BSD - review is highly recommended. License: LicenseRef-Callaway-BSD diff --git a/specs/j/json-c/json-c.spec b/specs/j/json-c/json-c.spec index ce70a984a5c..ecc3bf8cba9 100644 --- a/specs/j/json-c/json-c.spec +++ b/specs/j/json-c/json-c.spec @@ -39,7 +39,7 @@ Name: json-c Version: 0.18 -Release: 9%{?dist} +Release: 9%{?dist} Summary: JSON implementation in C License: MIT diff --git a/specs/j/json/json.spec b/specs/j/json/json.spec index 4c2720d72bb..9ece302b3a9 100644 --- a/specs/j/json/json.spec +++ b/specs/j/json/json.spec @@ -7,7 +7,7 @@ Name: json Version: 3.11.3 -Release: 5%{?dist} +Release: 5%{?dist} # The entire source is MIT except # include/nlohmann/thirdparty/hedley/hedley.hpp, which is CC0-1.0 diff --git a/specs/j/jsoncpp/jsoncpp.spec b/specs/j/jsoncpp/jsoncpp.spec index ccf3911bf51..99e5bb5dfff 100644 --- a/specs/j/jsoncpp/jsoncpp.spec +++ b/specs/j/jsoncpp/jsoncpp.spec @@ -14,7 +14,7 @@ Name: jsoncpp Version: 1.9.6 -Release: 3%{?dist} +Release: 3%{?dist} Summary: JSON library implemented in C++ License: LicenseRef-Fedora-Public-Domain OR MIT diff --git a/specs/j/jss/jss.spec b/specs/j/jss/jss.spec index d118ebaa77c..40a8e1a8cec 100644 --- a/specs/j/jss/jss.spec +++ b/specs/j/jss/jss.spec @@ -19,7 +19,7 @@ Name: jss # Downstream release number: # - development/stabilization (unsupported): 0. where n >= 1 # - GA/update (supported): where n >= 1 -%global release_number 1 +%global release_number 4 # Development phase: # - development (unsupported): alpha where n >= 1 diff --git a/specs/j/jxrlib/jxrlib.spec b/specs/j/jxrlib/jxrlib.spec index fd84ba86df3..8793c482830 100644 --- a/specs/j/jxrlib/jxrlib.spec +++ b/specs/j/jxrlib/jxrlib.spec @@ -3,7 +3,7 @@ Name: jxrlib Version: 1.1 -Release: 34%{?dist} +Release: 34%{?dist} Summary: Open source implementation of jpegxr # See JPEGXR_DPK_Spec_1.0.doc. Upstream request for plain text license file at diff --git a/specs/k/kabi-dw/kabi-dw.spec b/specs/k/kabi-dw/kabi-dw.spec index 6647647d97b..8cd146c9d13 100644 --- a/specs/k/kabi-dw/kabi-dw.spec +++ b/specs/k/kabi-dw/kabi-dw.spec @@ -10,7 +10,7 @@ Name: kabi-dw Version: 0 -Release: 0.29%{?dist} +Release: 0.32%{?dist} Summary: Detect changes in the ABI between kernel builds License: GPL-3.0-or-later URL: %{forgeurl} diff --git a/specs/k/kata-containers/kata-containers.spec b/specs/k/kata-containers/kata-containers.spec index 51c4b1f2305..93c3d10c2ad 100644 --- a/specs/k/kata-containers/kata-containers.spec +++ b/specs/k/kata-containers/kata-containers.spec @@ -59,7 +59,7 @@ workload isolation and security advantages of VMs. https://katacontainers.io/.} # Unlike for RHEL, we cannot strip it down because we build all components # (RHEL builds only build kata-agent) Name: %{repo} -Release: 1%{?rcrel}%{?dist} +Release: 4%{?rcrel}%{?dist} Summary: Kata Containers version 3.x repository License: Apache-2.0 Url: https://%{download} diff --git a/specs/k/kbd/kbd.spec b/specs/k/kbd/kbd.spec index 5de9655a101..d753ab02b8c 100644 --- a/specs/k/kbd/kbd.spec +++ b/specs/k/kbd/kbd.spec @@ -8,7 +8,7 @@ Name: kbd Version: 2.8.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Tools for configuring the console (keyboard, virtual terminals, etc.) License: GPL-2.0-or-later URL: http://www.kbd-project.org/ diff --git a/specs/k/kde-qdoc-common/kde-qdoc-common.spec b/specs/k/kde-qdoc-common/kde-qdoc-common.spec index 419ebff82d5..4bd7a174b29 100644 --- a/specs/k/kde-qdoc-common/kde-qdoc-common.spec +++ b/specs/k/kde-qdoc-common/kde-qdoc-common.spec @@ -3,7 +3,7 @@ Name: kde-qdoc-common Version: 1.0.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Common files for KDE's API documentation (using QDoc) BuildArch: noarch diff --git a/specs/k/kdsoap-ws-discovery-client/kdsoap-ws-discovery-client.spec b/specs/k/kdsoap-ws-discovery-client/kdsoap-ws-discovery-client.spec index 35ed5d4a3d8..7fbb0bb9fae 100644 --- a/specs/k/kdsoap-ws-discovery-client/kdsoap-ws-discovery-client.spec +++ b/specs/k/kdsoap-ws-discovery-client/kdsoap-ws-discovery-client.spec @@ -3,7 +3,7 @@ Name: kdsoap-ws-discovery-client Version: 0.4.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Library for finding WS-Discovery devices in the network using Qt6 and KDSoap License: GPL-3.0-or-later AND LicenseRef-OASIS AND LicenseRef-WS-Addressing AND LicenseRef-Discovery AND W3C diff --git a/specs/k/kdump-anaconda-addon/kdump-anaconda-addon.spec b/specs/k/kdump-anaconda-addon/kdump-anaconda-addon.spec index a088fb44840..aba80cfaf86 100644 --- a/specs/k/kdump-anaconda-addon/kdump-anaconda-addon.spec +++ b/specs/k/kdump-anaconda-addon/kdump-anaconda-addon.spec @@ -7,7 +7,7 @@ Name: kdump-anaconda-addon Version: 006 -Release: 16.%{snapshotdate}git%{gitshortcommit}%{?dist} +Release: 19.%{snapshotdate}git%{gitshortcommit}%{?dist} Url: https://github.com/rhinstaller/kdump-anaconda-addon License: GPL-2.0-only Summary: Kdump configuration anaconda addon diff --git a/specs/k/kernel-headers/kernel-headers.azl.macros b/specs/k/kernel-headers/kernel-headers.azl.macros index b773c3114c8..d4a69afae65 100644 --- a/specs/k/kernel-headers/kernel-headers.azl.macros +++ b/specs/k/kernel-headers/kernel-headers.azl.macros @@ -1,4 +1,3 @@ # Macros file automatically generated by azldev. # Do not edit manually; changes will be overwritten. -%azl_pkgrelease 1 %kextraversion 1 diff --git a/specs/k/kernel-headers/kernel-headers.spec b/specs/k/kernel-headers/kernel-headers.spec index 899300005e9..0a9b62abfc6 100644 --- a/specs/k/kernel-headers/kernel-headers.spec +++ b/specs/k/kernel-headers/kernel-headers.spec @@ -6,6 +6,8 @@ # This spec file has been modified by azldev to include build configuration overlays. # Do not edit manually; changes may be overwritten. +%define azl_pkgrelease 7 + # All Azure Linux specs with overlays include this macro file, irrespective of whether new macros have been added. %{load:%{_sourcedir}/kernel-headers.azl.macros} @@ -151,7 +153,13 @@ done %changelog ## START: Generated by rpmautospec -* Mon May 18 2026 Rachel Menge - 6.18.31-1 +* Sat Aug 15 2026 azldev - 6.18.31-1 +- Local changes (uncommitted) + +* Fri Aug 14 2026 Thien Trung Vuong - 6.18.3-6 +- feat(rebuild): manage kernel release counters + +* Mon May 18 2026 Rachel Menge - 6.18.3-5 - feat(kernel): update kernel and kernel-headers to 6.18.31.1 * Thu May 14 2026 Rachel Menge - 6.18.3-4 diff --git a/specs/k/kernel-srpm-macros/kernel-srpm-macros.spec b/specs/k/kernel-srpm-macros/kernel-srpm-macros.spec index c65914f9669..c988249ab5a 100644 --- a/specs/k/kernel-srpm-macros/kernel-srpm-macros.spec +++ b/specs/k/kernel-srpm-macros/kernel-srpm-macros.spec @@ -4,7 +4,7 @@ Name: kernel-srpm-macros Version: 1.0 # when bumping version and resetting release, don't forget to bump version of kernel-rpm-macros as well -Release: 28%{?dist} +Release: 28%{?dist} Summary: RPM macros that list arches the full kernel is built on # This package only exist in Fedora repositories # The license is the standard (MIT) specified in diff --git a/specs/k/kernel/kernel.spec b/specs/k/kernel/kernel.spec index 782c63e09fd..9ee781ac25d 100644 --- a/specs/k/kernel/kernel.spec +++ b/specs/k/kernel/kernel.spec @@ -10,7 +10,7 @@ # Azure Linux kernel build defines. These were previously injected via the # azldev-generated kernel.azl.macros file; they now live directly in the spec. # When rebuilding without a version change, bump azl_pkgrelease (manual release). -%define azl_pkgrelease 15 +%define azl_pkgrelease 46 # 4th version component from the AZL kernel source (6.18.31.1). Flows into # Release:, uname -r, and the /lib/modules/ path. %define kextraversion 1 diff --git a/specs/k/keybinder3/keybinder3.spec b/specs/k/keybinder3/keybinder3.spec index 0272eec6444..0e123decdcc 100644 --- a/specs/k/keybinder3/keybinder3.spec +++ b/specs/k/keybinder3/keybinder3.spec @@ -3,7 +3,7 @@ Name: keybinder3 Version: 0.3.2 -Release: 22%{?dist} +Release: 22%{?dist} Summary: A library for registering global keyboard shortcuts License: MIT URL: https://github.com/kupferlauncher/keybinder diff --git a/specs/k/keycloak-httpd-client-install/keycloak-httpd-client-install.spec b/specs/k/keycloak-httpd-client-install/keycloak-httpd-client-install.spec index 4d49ddaa592..1e76befaf13 100644 --- a/specs/k/keycloak-httpd-client-install/keycloak-httpd-client-install.spec +++ b/specs/k/keycloak-httpd-client-install/keycloak-httpd-client-install.spec @@ -16,7 +16,7 @@ Name: %{srcname} Version: 1.3 -Release: 7%{?dist} +Release: 7%{?dist} Summary: %{summary} License: GPL-3.0-or-later diff --git a/specs/k/keyutils/keyutils.spec b/specs/k/keyutils/keyutils.spec index 346d45b745b..9d8a3c08613 100644 --- a/specs/k/keyutils/keyutils.spec +++ b/specs/k/keyutils/keyutils.spec @@ -8,7 +8,7 @@ Name: keyutils Version: 1.6.3 -Release: 6%{?buildid}%{?dist} +Release: 9%{?buildid}%{?dist} Summary: Linux Key Management Utilities License: GPL-2.0-or-later AND LGPL-2.1-or-later Url: https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/keyutils.git diff --git a/specs/k/kf6-attica/kf6-attica.spec b/specs/k/kf6-attica/kf6-attica.spec index 6546cea653d..9058242cc16 100644 --- a/specs/k/kf6-attica/kf6-attica.spec +++ b/specs/k/kf6-attica/kf6-attica.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks Tier 1 Addon with Open Collaboration Services API License: CC0-1.0 AND LGPL-2.0-or-later AND LGPL-2.1-only AND LGPL-3.0-only AND (LGPL-2.1-only OR LGPL-3.0-only) URL: https://invent.kde.org/frameworks/%{framework} diff --git a/specs/k/kf6-karchive/kf6-karchive.spec b/specs/k/kf6-karchive/kf6-karchive.spec index 4083b7ac0ec..323d45aa3af 100644 --- a/specs/k/kf6-karchive/kf6-karchive.spec +++ b/specs/k/kf6-karchive/kf6-karchive.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: KDE Frameworks 6 Tier 1 addon with archive functions License: LGPL-2.0-or-later AND BSD-2-Clause URL: https://invent.kde.org/frameworks/%{framework} diff --git a/specs/k/kf6-kcodecs/kf6-kcodecs.spec b/specs/k/kf6-kcodecs/kf6-kcodecs.spec index 80488550029..70d7b692f5f 100644 --- a/specs/k/kf6-kcodecs/kf6-kcodecs.spec +++ b/specs/k/kf6-kcodecs/kf6-kcodecs.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 6 Tier 1 addon with string manipulation methods License: BSD-3-Clause AND CC0-1.0 AND GPL-2.0-or-later AND LGPL-2.0-only AND LGPL-2.0-or-later AND LGPL-2.1-or-later AND MIT AND MPL-1.1 URL: https://invent.kde.org/frameworks/%{framework} diff --git a/specs/k/kf6-kcompletion/kf6-kcompletion.spec b/specs/k/kf6-kcompletion/kf6-kcompletion.spec index 576a978cec4..e187d010e7c 100644 --- a/specs/k/kf6-kcompletion/kf6-kcompletion.spec +++ b/specs/k/kf6-kcompletion/kf6-kcompletion.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 6 Tier 2 addon with auto completion widgets and classes # BSD-3-Clause is in the LICENSES folder but goes unused. License: CC0-1.0 AND LGPL-2.0-or-later AND LGPL-2.1-or-later diff --git a/specs/k/kf6-kconfig/kf6-kconfig.spec b/specs/k/kf6-kconfig/kf6-kconfig.spec index e3d28e7e3c6..a13ec200a3d 100644 --- a/specs/k/kf6-kconfig/kf6-kconfig.spec +++ b/specs/k/kf6-kconfig/kf6-kconfig.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 6 Tier 1 addon with advanced configuration system License: BSD-2-Clause AND BSD-3-Clause AND CC0-1.0 AND LGPL-2.0-only AND LGPL-2.0-or-later AND LGPL-2.1-only AND LGPL-3.0-only AND MIT URL: https://invent.kde.org/frameworks/%{framework} diff --git a/specs/k/kf6-kcoreaddons/kf6-kcoreaddons.spec b/specs/k/kf6-kcoreaddons/kf6-kcoreaddons.spec index 3759ab937d0..8d8ebbf3b69 100644 --- a/specs/k/kf6-kcoreaddons/kf6-kcoreaddons.spec +++ b/specs/k/kf6-kcoreaddons/kf6-kcoreaddons.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 6 Tier 1 addon with various classes on top of QtCore License: BSD-2-Clause AND BSD-3-Clause AND CC0-1.0 AND GPL-2.0-or-later AND MPL-1.1 AND LGPL-2.0-only AND LGPL-2.1-or-later AND LGPL-3.0-only AND LGPL-2.1-only WITH Qt-LGPL-exception-1.1 URL: https://invent.kde.org/frameworks/%{framework} diff --git a/specs/k/kf6-kdbusaddons/kf6-kdbusaddons.spec b/specs/k/kf6-kdbusaddons/kf6-kdbusaddons.spec index c39e9a1762e..0cb2b19e7fb 100644 --- a/specs/k/kf6-kdbusaddons/kf6-kdbusaddons.spec +++ b/specs/k/kf6-kdbusaddons/kf6-kdbusaddons.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 6 Tier 1 addon with various classes on top of QtDBus License: CC0-1.0 AND LGPL-2.0-or-later AND LGPL-2.1-only AND LGPL-3.0-only URL: https://invent.kde.org/frameworks/%{framework} diff --git a/specs/k/kf6-kdnssd/kf6-kdnssd.spec b/specs/k/kf6-kdnssd/kf6-kdnssd.spec index c00bd5baccb..af471926289 100644 --- a/specs/k/kf6-kdnssd/kf6-kdnssd.spec +++ b/specs/k/kf6-kdnssd/kf6-kdnssd.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 6 Tier 1 integration module for DNS-SD services (Zeroconf) License: BSD-3-Clause AND CC0-1.0 AND LGPL-2.0-or-later URL: https://invent.kde.org/frameworks/%{framework} diff --git a/specs/k/kf6-kfilemetadata/kf6-kfilemetadata.spec b/specs/k/kf6-kfilemetadata/kf6-kfilemetadata.spec index 328373a41ec..36aadd9cc3e 100644 --- a/specs/k/kf6-kfilemetadata/kf6-kfilemetadata.spec +++ b/specs/k/kf6-kfilemetadata/kf6-kfilemetadata.spec @@ -6,7 +6,7 @@ Name: kf6-%{framework} Summary: A Tier 2 KDE Framework for extracting file metadata Version: 6.23.0 -Release: 3%{?dist} +Release: 3%{?dist} License: BSD-3-Clause AND CC0-1.0 AND LGPL-2.1-only AND LGPL-2.1-or-later AND LGPL-3.0-only AND (LGPL-2.1-only OR LGPL-3.0-only) URL: https://invent.kde.org/frameworks/%{framework} diff --git a/specs/k/kf6-kguiaddons/kf6-kguiaddons.spec b/specs/k/kf6-kguiaddons/kf6-kguiaddons.spec index a87fa2e9228..46d09ccb215 100644 --- a/specs/k/kf6-kguiaddons/kf6-kguiaddons.spec +++ b/specs/k/kf6-kguiaddons/kf6-kguiaddons.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 6 Tier 1 addon with various classes on top of QtGui License: BSD-2-Clause AND CC0-1.0 AND GPL-2.0-only AND GPL-2.0-or-later AND GPL-3.0-only AND LGPL-2.0-or-later AND LGPL-2.1-only AND LGPL-3.0-only diff --git a/specs/k/kf6-kholidays/kf6-kholidays.spec b/specs/k/kf6-kholidays/kf6-kholidays.spec index 0aabd62ecaa..fc360b267f1 100644 --- a/specs/k/kf6-kholidays/kf6-kholidays.spec +++ b/specs/k/kf6-kholidays/kf6-kholidays.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: The KHolidays Library License: BSD-2-Clause AND CC0-1.0 AND GPL-3.0-or-later AND LGPL-2.0-or-later WITH Bison-exception-2.2 diff --git a/specs/k/kf6-ki18n/kf6-ki18n.spec b/specs/k/kf6-ki18n/kf6-ki18n.spec index bf21d14d587..61e15fee624 100644 --- a/specs/k/kf6-ki18n/kf6-ki18n.spec +++ b/specs/k/kf6-ki18n/kf6-ki18n.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 6 Tier 1 addon for localization License: BSD-3-Clause AND CC0-1.0 AND LGPL-2.0-or-later AND LGPL-2.1-only AND LGPL-3.0-only AND (LGPL-2.1-only OR LGPL-3.0-only) AND ODbl-1.0 URL: https://invent.kde.org/frameworks/%{framework} diff --git a/specs/k/kf6-kidletime/kf6-kidletime.spec b/specs/k/kf6-kidletime/kf6-kidletime.spec index 2034b1ef698..0b563b1f7b9 100644 --- a/specs/k/kf6-kidletime/kf6-kidletime.spec +++ b/specs/k/kf6-kidletime/kf6-kidletime.spec @@ -8,7 +8,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 6 Tier 1 integration module for idle time detection License: CC0-1.0 AND GPL-2.0-or-later AND LGPL-2.1-or-later AND MIT URL: https://invent.kde.org/frameworks/%{framework} diff --git a/specs/k/kf6-kimageformats/kf6-kimageformats.spec b/specs/k/kf6-kimageformats/kf6-kimageformats.spec index 0959e4471b3..2cbef94e56b 100644 --- a/specs/k/kf6-kimageformats/kf6-kimageformats.spec +++ b/specs/k/kf6-kimageformats/kf6-kimageformats.spec @@ -6,7 +6,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: KDE Frameworks 6 Tier 1 addon with additional image plugins for QtGui License: LGPLv2+ diff --git a/specs/k/kf6-kirigami-addons/kf6-kirigami-addons.spec b/specs/k/kf6-kirigami-addons/kf6-kirigami-addons.spec index 2a1e614af26..9e238f6bfb3 100644 --- a/specs/k/kf6-kirigami-addons/kf6-kirigami-addons.spec +++ b/specs/k/kf6-kirigami-addons/kf6-kirigami-addons.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 1.11.0 -Release: 3%{?dist} +Release: 3%{?dist} License: BSD-2-Clause AND CC-BY-SA-4.0 AND CC0-1.0 AND GPL-2.0-only AND GPL-2.0-or-later AND GPL-3.0-only AND LGPL-2.0-only AND LGPL-2.0-or-later AND LGPL-2.1-only AND LGPL-2.1-or-later AND LGPL-3.0-only AND (GPL-2.0-only OR GPL-3.0-only) AND (LGPL-2.1-only OR LGPL-3.0-only) AND LicenseRef-KFQF-Accepted-GPL Summary: Convergent visual components ("widgets") for Kirigami-based applications Url: https://invent.kde.org/libraries/%{framework} diff --git a/specs/k/kf6-kirigami/kf6-kirigami.spec b/specs/k/kf6-kirigami/kf6-kirigami.spec index e45d2db7bb8..0d29ccb4330 100644 --- a/specs/k/kf6-kirigami/kf6-kirigami.spec +++ b/specs/k/kf6-kirigami/kf6-kirigami.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: QtQuick plugins to build user interfaces based on the KDE UX guidelines License: BSD-3-Clause AND CC0-1.0 AND FSFAP AND GPL-2.0-or-later AND LGPL-2.0-or-later AND LGPL-2.1-only AND LGPL-2.1-or-later AND LGPL-3.0-only AND (LGPL-2.1-only OR LGPL-3.0-only) AND MIT URL: https://invent.kde.org/frameworks/%{framework} diff --git a/specs/k/kf6-kitemmodels/kf6-kitemmodels.spec b/specs/k/kf6-kitemmodels/kf6-kitemmodels.spec index 1a005c8521c..576444b651b 100644 --- a/specs/k/kf6-kitemmodels/kf6-kitemmodels.spec +++ b/specs/k/kf6-kitemmodels/kf6-kitemmodels.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 6 Tier 1 addon with item models License: CC0-1.0 AND LGPL-2.0-or-later AND LGPL-2.1-only AND LGPL-2.1-or-later AND LGPL-3.0-only diff --git a/specs/k/kf6-kitemviews/kf6-kitemviews.spec b/specs/k/kf6-kitemviews/kf6-kitemviews.spec index b71860d65a3..830300a7d39 100644 --- a/specs/k/kf6-kitemviews/kf6-kitemviews.spec +++ b/specs/k/kf6-kitemviews/kf6-kitemviews.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 6 Tier 1 addon with item views License: CC0-1.0 AND GPL-2.0-or-later AND LGPL-2.0-only AND LGPL-2.0-or-later URL: https://invent.kde.org/frameworks/%{framework} diff --git a/specs/k/kf6-kjobwidgets/kf6-kjobwidgets.spec b/specs/k/kf6-kjobwidgets/kf6-kjobwidgets.spec index acea38fae57..3b7e52ea8cd 100644 --- a/specs/k/kf6-kjobwidgets/kf6-kjobwidgets.spec +++ b/specs/k/kf6-kjobwidgets/kf6-kjobwidgets.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 6 Tier 2 addon for KJobs # The following are in the LICENSES folder, but go unused: LGPL-3.0-only, LicenseRef-KDE-Accepted-LGPL License: CC0-1.0 AND LGPL-2.0-only AND LGPL-2.0-or-later diff --git a/specs/k/kf6-kpackage/kf6-kpackage.spec b/specs/k/kf6-kpackage/kf6-kpackage.spec index 0277b3312d3..ee45bc4fad4 100644 --- a/specs/k/kf6-kpackage/kf6-kpackage.spec +++ b/specs/k/kf6-kpackage/kf6-kpackage.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 6 Tier 2 library to load and install packages as plugins License: CC0-1.0 AND GPL-2.0-or-later AND LGPL-2.0-or-later diff --git a/specs/k/kf6-kpty/kf6-kpty.spec b/specs/k/kf6-kpty/kf6-kpty.spec index e4c5e9e0d13..2848633b52d 100644 --- a/specs/k/kf6-kpty/kf6-kpty.spec +++ b/specs/k/kf6-kpty/kf6-kpty.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 6 Tier 2 module providing Pty abstraction License: BSD-3-Clause AND CC0-1.0 AND GPL-2.0-or-later AND LGPL-2.0-or-later diff --git a/specs/k/kf6-kquickcharts/kf6-kquickcharts.spec b/specs/k/kf6-kquickcharts/kf6-kquickcharts.spec index 3ff52eb7cfb..18d1d4559b6 100644 --- a/specs/k/kf6-kquickcharts/kf6-kquickcharts.spec +++ b/specs/k/kf6-kquickcharts/kf6-kquickcharts.spec @@ -6,7 +6,7 @@ Name: kf6-%{framework} Summary: A QtQuick module providing high-performance charts Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} License: BSD-2-Clause AND CC0-1.0 AND LGPL-2.1-only AND LGPL-3.0-only AND MIT URL: https://invent.kde.org/frameworks/%{framework} diff --git a/specs/k/kf6-kstatusnotifieritem/kf6-kstatusnotifieritem.spec b/specs/k/kf6-kstatusnotifieritem/kf6-kstatusnotifieritem.spec index 8fb8b07f556..5577bf8255c 100644 --- a/specs/k/kf6-kstatusnotifieritem/kf6-kstatusnotifieritem.spec +++ b/specs/k/kf6-kstatusnotifieritem/kf6-kstatusnotifieritem.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Implementation of Status Notifier Items License: CC0-1.0 AND LGPL-2.0-or-later diff --git a/specs/k/kf6-kwidgetsaddons/kf6-kwidgetsaddons.spec b/specs/k/kf6-kwidgetsaddons/kf6-kwidgetsaddons.spec index 696f1a7eb3a..c115eeb7de1 100644 --- a/specs/k/kf6-kwidgetsaddons/kf6-kwidgetsaddons.spec +++ b/specs/k/kf6-kwidgetsaddons/kf6-kwidgetsaddons.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 6 Tier 1 addon with various classes on top of QtWidgets License: BSD-3-Clause AND CC0-1.0 AND GPL-2.0-or-later AND LGPL-2.0-only AND LGPL-2.0-or-later AND LGPL-2.1-only AND LGPL-2.1-or-later AND LGPL-3.0-only AND LGPL-3.0-or-later URL: https://invent.kde.org/frameworks/%{framework} diff --git a/specs/k/kf6-kwindowsystem/kf6-kwindowsystem.spec b/specs/k/kf6-kwindowsystem/kf6-kwindowsystem.spec index 98461379fae..95fd9694d3a 100644 --- a/specs/k/kf6-kwindowsystem/kf6-kwindowsystem.spec +++ b/specs/k/kf6-kwindowsystem/kf6-kwindowsystem.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 6 Tier 1 integration module with classes for windows management License: CC0-1.0 AND LGPL-2.1-only AND LGPL-2.1-or-later AND LGPL-3.0-only AND MIT URL: https://invent.kde.org/frameworks/%{framework} diff --git a/specs/k/kf6-networkmanager-qt/kf6-networkmanager-qt.spec b/specs/k/kf6-networkmanager-qt/kf6-networkmanager-qt.spec index 078afd27577..3e0e45a6c65 100644 --- a/specs/k/kf6-networkmanager-qt/kf6-networkmanager-qt.spec +++ b/specs/k/kf6-networkmanager-qt/kf6-networkmanager-qt.spec @@ -7,7 +7,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: A Tier 1 KDE Frameworks 6 module that wraps NetworkManager DBus API License: LGPL-2.0-or-later AND GPL-2.0-only AND GPL-3.0-only AND LGPL-2.1-only AND LGPL-3.0-only AND (GPL-2.0-only OR GPL-3.0-only) AND (LGPL-2.1-only OR LGPL-3.0-only) AND CC0-1.0 URL: https://invent.kde.org/frameworks/%{framework} diff --git a/specs/k/kf6-prison/kf6-prison.spec b/specs/k/kf6-prison/kf6-prison.spec index a26eb388ccd..d96958d8918 100644 --- a/specs/k/kf6-prison/kf6-prison.spec +++ b/specs/k/kf6-prison/kf6-prison.spec @@ -6,7 +6,7 @@ Name: kf6-%{framework} Summary: KDE Frameworks 6 Tier 1 barcode library Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} License: BSD-3-Clause AND CC0-1.0 AND MIT URL: https://invent.kde.org/frameworks/%{framework} Source0: https://download.kde.org/%{stable_kf6}/frameworks/%{majmin_ver_kf6}/%{framework}-%{version}.tar.xz diff --git a/specs/k/kf6-solid/kf6-solid.spec b/specs/k/kf6-solid/kf6-solid.spec index 585d015532f..2fde4f2092a 100644 --- a/specs/k/kf6-solid/kf6-solid.spec +++ b/specs/k/kf6-solid/kf6-solid.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 6 Tier 1 integration module that provides hardware information License: LGPL-2.1-or-later AND LGPL-2.1-only AND CCO-1.0 AND BSD-3-Clause AND LGPL-3.0-only URL: https://solid.kde.org/ diff --git a/specs/k/kf6-sonnet/kf6-sonnet.spec b/specs/k/kf6-sonnet/kf6-sonnet.spec index 326624828be..d1ff31d565f 100644 --- a/specs/k/kf6-sonnet/kf6-sonnet.spec +++ b/specs/k/kf6-sonnet/kf6-sonnet.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 6 Tier 1 solution for spell checking License: BSD-3-Clause AND CC0-1.0 AND LGPL-2.0-or-later AND LGPL-2.1-or-later URL: https://invent.kde.org/frameworks/%{framework} diff --git a/specs/k/kf6-syntax-highlighting/kf6-syntax-highlighting.spec b/specs/k/kf6-syntax-highlighting/kf6-syntax-highlighting.spec index 35ba7ab27ec..dc94a122389 100644 --- a/specs/k/kf6-syntax-highlighting/kf6-syntax-highlighting.spec +++ b/specs/k/kf6-syntax-highlighting/kf6-syntax-highlighting.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 6 Syntax highlighting engine for Kate syntax definitions License: MIT AND BSD-2-Clause AND BSD-3-Clause AND CC0-1.0 AND GPL-2.0-only AND LGPL-2.0-or-later URL: https://invent.kde.org/frameworks/%{framework} diff --git a/specs/k/kf6-threadweaver/kf6-threadweaver.spec b/specs/k/kf6-threadweaver/kf6-threadweaver.spec index f05d731dc9c..46fdfb20b2a 100644 --- a/specs/k/kf6-threadweaver/kf6-threadweaver.spec +++ b/specs/k/kf6-threadweaver/kf6-threadweaver.spec @@ -5,7 +5,7 @@ Name: kf6-%{framework} Version: 6.23.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: KDE Frameworks 6 Tier 1 addon for advanced thread management License: CC0-1.0 AND LGPL-2.0-or-later URL: https://invent.kde.org/frameworks/%{framework} diff --git a/specs/k/kio-fuse/kio-fuse.spec b/specs/k/kio-fuse/kio-fuse.spec index 6d99477917d..ce4415e377a 100644 --- a/specs/k/kio-fuse/kio-fuse.spec +++ b/specs/k/kio-fuse/kio-fuse.spec @@ -13,7 +13,7 @@ Name: kio-fuse Version: 5.1.0 -Release: 10%{?dist} +Release: 10%{?dist} Summary: KIO FUSE License: GPL-3.0-or-later diff --git a/specs/k/kiwi/kiwi.spec b/specs/k/kiwi/kiwi.spec index e7028b81963..d5edd7950f9 100644 --- a/specs/k/kiwi/kiwi.spec +++ b/specs/k/kiwi/kiwi.spec @@ -18,7 +18,7 @@ and cloud systems like Xen, KVM, VMware, EC2 and more. Name: kiwi Version: 10.2.37 -Release: 4%{?dist} +Release: 4%{?dist} URL: http://osinside.github.io/kiwi/ Summary: Flexible operating system image builder License: GPL-3.0-or-later diff --git a/specs/k/kmod/kmod.spec b/specs/k/kmod/kmod.spec index ad02c8f53d1..3b0970506d9 100644 --- a/specs/k/kmod/kmod.spec +++ b/specs/k/kmod/kmod.spec @@ -19,7 +19,7 @@ Name: kmod Version: 34.2 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Linux kernel module management utilities # https://docs.fedoraproject.org/en-US/legal/license-field/#_no_effective_license_analysis diff --git a/specs/k/knighttime/knighttime.spec b/specs/k/knighttime/knighttime.spec index 79f3c9fec6b..a70b189496e 100644 --- a/specs/k/knighttime/knighttime.spec +++ b/specs/k/knighttime/knighttime.spec @@ -4,7 +4,7 @@ Name: knighttime Summary: Helpers for scheduling the dark-light cycle Version: 6.6.0 -Release: 2%{?dist} +Release: 2%{?dist} License: GPL-3.0-only AND BSD-3-Clause AND MIT AND GPL-2.0-only AND LGPL-2.1-only AND CC0-1.0 AND LGPL-3.0-only URL: https://invent.kde.org/plasma/%{name} diff --git a/specs/k/koji-containerbuild/koji-containerbuild.spec b/specs/k/koji-containerbuild/koji-containerbuild.spec index 6c93a15dc73..3b4aba4f504 100644 --- a/specs/k/koji-containerbuild/koji-containerbuild.spec +++ b/specs/k/koji-containerbuild/koji-containerbuild.spec @@ -17,7 +17,7 @@ Name: %{project} Version: 1.0.1 -Release: 15%{?dist} +Release: 15%{?dist} Summary: Koji support for building layered container images # Automatically converted from old format: LGPLv2 - review is highly recommended. diff --git a/specs/k/koji-flatpak/koji-flatpak.spec b/specs/k/koji-flatpak/koji-flatpak.spec index e9bfef533d0..d26dc5331f8 100644 --- a/specs/k/koji-flatpak/koji-flatpak.spec +++ b/specs/k/koji-flatpak/koji-flatpak.spec @@ -6,7 +6,7 @@ Name: koji-flatpak Version: %{project_version} -Release: 6%{?dist} +Release: 6%{?dist} Summary: Koji plugins for building Flatpaks License: LGPL-2.1-only diff --git a/specs/k/koji-image-builder/koji-image-builder.spec b/specs/k/koji-image-builder/koji-image-builder.spec index 8ede856f54f..23c6b391009 100644 --- a/specs/k/koji-image-builder/koji-image-builder.spec +++ b/specs/k/koji-image-builder/koji-image-builder.spec @@ -8,7 +8,7 @@ Version: 8 %forgemeta Name: koji-image-builder -Release: 4%{?dist} +Release: 4%{?dist} License: Apache-2.0 URL: %{forgeurl} diff --git a/specs/k/koji-osbuild/koji-osbuild.spec b/specs/k/koji-osbuild/koji-osbuild.spec index 2b026c2791c..d669c280aaf 100644 --- a/specs/k/koji-osbuild/koji-osbuild.spec +++ b/specs/k/koji-osbuild/koji-osbuild.spec @@ -9,7 +9,7 @@ Name: koji-osbuild Version: 12 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Koji integration for osbuild composer %forgemeta diff --git a/specs/k/kokkos/kokkos.spec b/specs/k/kokkos/kokkos.spec index 64425bcde99..88f6fc132da 100644 --- a/specs/k/kokkos/kokkos.spec +++ b/specs/k/kokkos/kokkos.spec @@ -38,7 +38,7 @@ Name: kokkos Version: 4.7.02 %global sover 4.7 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Kokkos C++ Performance Portability Programming # no support for 32-bit archs https://github.com/kokkos/kokkos/issues/2312 ExcludeArch: i686 armv7hl diff --git a/specs/k/krb5/krb5.spec b/specs/k/krb5/krb5.spec index 54f05de0c97..616cd8a2fd4 100644 --- a/specs/k/krb5/krb5.spec +++ b/specs/k/krb5/krb5.spec @@ -2,7 +2,7 @@ ## (rpmautospec version 0.8.3) ## RPMAUTOSPEC: autorelease, autochangelog %define autorelease(e:s:pb:n) %{?-p:0.}%{lua: - release_number = 3; + release_number = 4; base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}")); print(release_number + base_release_number - 1); }%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}} @@ -734,6 +734,9 @@ exit 0 %changelog ## START: Generated by rpmautospec +* Thu Aug 13 2026 Thien Trung Vuong - 1.22.2-4 +- feat(rebuild): adopt managed release counters + * Thu Apr 30 2026 Daniel McIlvaney - 1.22.2-3 - feat: introduce deterministic commit resolution via Azure Linux lock file diff --git a/specs/k/ksc/ksc.spec b/specs/k/ksc/ksc.spec index cf811909dd4..54be50d99bd 100644 --- a/specs/k/ksc/ksc.spec +++ b/specs/k/ksc/ksc.spec @@ -11,7 +11,7 @@ Name: ksc Version: 1.7 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Kernel source code checker Group: Development/Tools AutoReqProv: no diff --git a/specs/k/ksh/ksh.spec b/specs/k/ksh/ksh.spec index baeab8ade3d..0ccb602182d 100644 --- a/specs/k/ksh/ksh.spec +++ b/specs/k/ksh/ksh.spec @@ -7,7 +7,7 @@ URL: http://www.kornshell.com/ License: EPL-2.0 Epoch: 3 Version: 1.0.10 -Release: 7%{?dist} +Release: 7%{?dist} Source0: https://github.com/ksh93/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz Source1: kshcomp.conf Source2: kshrc.rhs diff --git a/specs/k/kwayland/kwayland.spec b/specs/k/kwayland/kwayland.spec index c35fcca09d3..b1039d097dd 100644 --- a/specs/k/kwayland/kwayland.spec +++ b/specs/k/kwayland/kwayland.spec @@ -3,7 +3,7 @@ Name: kwayland Version: 6.6.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Qt-style API to interact with the wayland-client API License: BSD-3-Clause AND CC0-1.0 AND LGPL-2.1-only AND LGPL-2.1-or-later AND LGPL-3.0-only AND MIT-CMU AND MIT diff --git a/specs/k/kyotocabinet/kyotocabinet.spec b/specs/k/kyotocabinet/kyotocabinet.spec index 2722a457dc2..952f9123f76 100644 --- a/specs/k/kyotocabinet/kyotocabinet.spec +++ b/specs/k/kyotocabinet/kyotocabinet.spec @@ -4,7 +4,7 @@ Summary: A straightforward implementation of DBM Name: kyotocabinet Version: 1.2.80 -Release: 9%{?dist} +Release: 9%{?dist} License: GPL-3.0-only URL: https://dbmx.net/%{name}/ Source: https://dbmx.net/%{name}/pkg/%{name}-%{version}.tar.gz diff --git a/specs/k/kyua/kyua.spec b/specs/k/kyua/kyua.spec index 312d0312dd6..4a963290a56 100644 --- a/specs/k/kyua/kyua.spec +++ b/specs/k/kyua/kyua.spec @@ -6,7 +6,7 @@ Name: kyua Version: 0.13 -Release: 20%{?dist} +Release: 20%{?dist} Summary: Testing framework for infrastructure software # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/l/ladspa/ladspa.spec b/specs/l/ladspa/ladspa.spec index f72429721ff..3b465206ea8 100644 --- a/specs/l/ladspa/ladspa.spec +++ b/specs/l/ladspa/ladspa.spec @@ -3,7 +3,7 @@ Name: ladspa Version: 1.17 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Linux Audio Developer's Simple Plug-in API, examples and tools diff --git a/specs/l/lame/lame.spec b/specs/l/lame/lame.spec index f4955fe6af0..558de9cf374 100644 --- a/specs/l/lame/lame.spec +++ b/specs/l/lame/lame.spec @@ -3,7 +3,7 @@ Name: lame Version: 3.100 -Release: 21%{?dist} +Release: 21%{?dist} Summary: Free MP3 audio compressor License: LGPL-2.0-or-later AND LGPL-2.1-or-later URL: http://lame.sourceforge.net/ diff --git a/specs/l/langpacks/langpacks.spec b/specs/l/langpacks/langpacks.spec index 9617ce13fca..526ab99c0d5 100644 --- a/specs/l/langpacks/langpacks.spec +++ b/specs/l/langpacks/langpacks.spec @@ -3,7 +3,7 @@ Name: langpacks Version: 4.2 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Langpacks meta-package License: GPL-2.0-or-later diff --git a/specs/l/lasi/lasi.spec b/specs/l/lasi/lasi.spec index 4e0bdfdf7cd..5db0a3bd8df 100644 --- a/specs/l/lasi/lasi.spec +++ b/specs/l/lasi/lasi.spec @@ -5,7 +5,7 @@ Name: lasi Version: 1.1.3 -Release: 18%{?dist} +Release: 18%{?dist} Summary: C++ library for creating Postscript documents # Automatically converted from old format: LGPLv2+ - review is highly recommended. diff --git a/specs/l/ldapjdk/ldapjdk.spec b/specs/l/ldapjdk/ldapjdk.spec index 25a6334396e..56a4bb471ec 100644 --- a/specs/l/ldapjdk/ldapjdk.spec +++ b/specs/l/ldapjdk/ldapjdk.spec @@ -16,7 +16,7 @@ Name: ldapjdk # Downstream release number: # - development/stabilization (unsupported): 0. where n >= 1 # - GA/update (supported): where n >= 1 -%global release_number 2 +%global release_number 4 # Development phase: # - development (unsupported): alpha where n >= 1 diff --git a/specs/l/leptonica/leptonica.spec b/specs/l/leptonica/leptonica.spec index 8951374405d..dcf8dc0e9c7 100644 --- a/specs/l/leptonica/leptonica.spec +++ b/specs/l/leptonica/leptonica.spec @@ -18,7 +18,7 @@ Name: leptonica Version: 1.87.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: C library for efficient image processing and image analysis operations License: Leptonica diff --git a/specs/l/lfortran/lfortran.spec b/specs/l/lfortran/lfortran.spec index 1045a977111..789c80860d3 100644 --- a/specs/l/lfortran/lfortran.spec +++ b/specs/l/lfortran/lfortran.spec @@ -3,7 +3,7 @@ Version: 0.56.0 Name: lfortran -Release: 3%{?dist} +Release: 3%{?dist} Summary: A modern Fortran compiler # Main code is BSD-3-Clause diff --git a/specs/l/lftp/lftp.spec b/specs/l/lftp/lftp.spec index db77eef0617..488d44e61d7 100644 --- a/specs/l/lftp/lftp.spec +++ b/specs/l/lftp/lftp.spec @@ -4,7 +4,7 @@ Summary: A sophisticated file transfer program Name: lftp Version: 4.9.3 -Release: 6%{?dist} +Release: 6%{?dist} License: GPL-3.0-or-later Source0: http://lftp.yar.ru/ftp/%{name}-%{version}.tar.xz URL: http://lftp.yar.ru/ diff --git a/specs/l/libEMF/libEMF.spec b/specs/l/libEMF/libEMF.spec index 2a6d533481e..a8216d0daf9 100644 --- a/specs/l/libEMF/libEMF.spec +++ b/specs/l/libEMF/libEMF.spec @@ -5,7 +5,7 @@ Summary: A library for generating Enhanced Metafiles Summary(pl): Biblioteka do generowania plików w formacie Enhanced Metafile Name: libEMF Version: 1.0.13 -Release: 17%{?dist} +Release: 17%{?dist} # include/libEMF/emf.h: LGPL-2.1-or-later # libemf/libemf.{cpp,h}: LGPL-2.1-or-later # src/printemf.c: GPL-2.0-or-later diff --git a/specs/l/libX11/libX11.spec b/specs/l/libX11/libX11.spec index 16aaa9f1f0c..c96b397d019 100644 --- a/specs/l/libX11/libX11.spec +++ b/specs/l/libX11/libX11.spec @@ -8,7 +8,7 @@ Summary: Core X11 protocol client library Name: libX11 Version: 1.8.12 -Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +Release: 6%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} License: MIT AND X11 URL: http://www.x.org diff --git a/specs/l/libXcursor/libXcursor.spec b/specs/l/libXcursor/libXcursor.spec index 84def7915a9..f678d7841f6 100644 --- a/specs/l/libXcursor/libXcursor.spec +++ b/specs/l/libXcursor/libXcursor.spec @@ -8,7 +8,7 @@ Summary: Cursor management library Name: libXcursor Version: 1.2.3 -Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +Release: 6%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} License: HPND-sell-variant URL: http://www.x.org diff --git a/specs/l/libXext/libXext.spec b/specs/l/libXext/libXext.spec index ff6c3557255..7d7b53959b7 100644 --- a/specs/l/libXext/libXext.spec +++ b/specs/l/libXext/libXext.spec @@ -8,7 +8,7 @@ Summary: X.Org X11 libXext runtime library Name: libXext Version: 1.3.6 -Release: 4%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +Release: 7%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} License: MIT-open-group AND X11 AND HPND AND HPND-sell-variant AND SMLNJ AND MIT AND ISC AND HPND-doc AND HPND-doc-sell URL: http://www.x.org diff --git a/specs/l/libXfixes/libXfixes.spec b/specs/l/libXfixes/libXfixes.spec index 793505843c4..d471126a4e0 100644 --- a/specs/l/libXfixes/libXfixes.spec +++ b/specs/l/libXfixes/libXfixes.spec @@ -8,7 +8,7 @@ Summary: X Fixes library Name: libXfixes Version: 6.0.1 -Release: 6%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +Release: 9%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} License: MIT AND HPND-sell-variant URL: http://www.x.org diff --git a/specs/l/libXi/libXi.spec b/specs/l/libXi/libXi.spec index b860d7377a8..4897611fd63 100644 --- a/specs/l/libXi/libXi.spec +++ b/specs/l/libXi/libXi.spec @@ -8,7 +8,7 @@ Summary: X.Org X11 libXi runtime library Name: libXi Version: 1.8.2 -Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +Release: 6%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} License: MIT-open-group AND SMLNJ AND MIT URL: http://www.x.org diff --git a/specs/l/libXinerama/libXinerama.spec b/specs/l/libXinerama/libXinerama.spec index fae7dc8f32e..efc6986f9c1 100644 --- a/specs/l/libXinerama/libXinerama.spec +++ b/specs/l/libXinerama/libXinerama.spec @@ -8,7 +8,7 @@ Summary: X.Org X11 libXinerama runtime library Name: libXinerama Version: 1.1.5 -Release: 9%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +Release: 12%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} License: MIT AND MIT-open-group AND X11 URL: http://www.x.org diff --git a/specs/l/libXrandr/libXrandr.spec b/specs/l/libXrandr/libXrandr.spec index 58140a488f7..000286b793b 100644 --- a/specs/l/libXrandr/libXrandr.spec +++ b/specs/l/libXrandr/libXrandr.spec @@ -8,7 +8,7 @@ Summary: X.Org X11 libXrandr runtime library Name: libXrandr Version: 1.5.4 -Release: 6%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +Release: 9%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} License: HPND-sell-variant URL: http://www.x.org diff --git a/specs/l/libXrender/libXrender.spec b/specs/l/libXrender/libXrender.spec index 7a3fdc5077a..8c551b3849f 100644 --- a/specs/l/libXrender/libXrender.spec +++ b/specs/l/libXrender/libXrender.spec @@ -8,7 +8,7 @@ Summary: X.Org X11 libXrender runtime library Name: libXrender Version: 0.9.12 -Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +Release: 6%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} License: HPND-sell-variant URL: http://www.x.org diff --git a/specs/l/libXres/libXres.spec b/specs/l/libXres/libXres.spec index f98ba4bff42..d49e5585a63 100644 --- a/specs/l/libXres/libXres.spec +++ b/specs/l/libXres/libXres.spec @@ -8,7 +8,7 @@ Summary: X-Resource extension client library Name: libXres Version: 1.2.2 -Release: 6%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +Release: 9%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} License: X11 URL: http://www.x.org diff --git a/specs/l/libXt/libXt.spec b/specs/l/libXt/libXt.spec index 011a55ad29e..abb7f1eada8 100644 --- a/specs/l/libXt/libXt.spec +++ b/specs/l/libXt/libXt.spec @@ -8,7 +8,7 @@ Summary: X.Org X11 libXt runtime library Name: libXt Version: 1.3.1 -Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +Release: 6%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} License: MIT AND HPND-sell-variant AND SMLNJ AND MIT-open-group AND X11 URL: https://www.x.org diff --git a/specs/l/libXtst/libXtst.spec b/specs/l/libXtst/libXtst.spec index ecc0c65157d..b18f31299a2 100644 --- a/specs/l/libXtst/libXtst.spec +++ b/specs/l/libXtst/libXtst.spec @@ -8,7 +8,7 @@ Summary: X.Org X11 libXtst runtime library Name: libXtst Version: 1.2.5 -Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +Release: 6%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} License: MIT-open-group AND HPND-sell-variant AND X11 AND HPND-doc AND HPND-doc-sell URL: http://www.x.org diff --git a/specs/l/libXv/libXv.spec b/specs/l/libXv/libXv.spec index 02d2fabc63f..e1d54362da2 100644 --- a/specs/l/libXv/libXv.spec +++ b/specs/l/libXv/libXv.spec @@ -8,7 +8,7 @@ Summary: X.Org X11 libXv runtime library Name: libXv Version: 1.0.13 -Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +Release: 6%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} License: SMLNJ AND HPND-sell-variant URL: http://www.x.org diff --git a/specs/l/libXxf86dga/libXxf86dga.spec b/specs/l/libXxf86dga/libXxf86dga.spec index 6f85bf40945..fbd51e76b12 100644 --- a/specs/l/libXxf86dga/libXxf86dga.spec +++ b/specs/l/libXxf86dga/libXxf86dga.spec @@ -8,7 +8,7 @@ Summary: X.Org X11 libXxf86dga runtime library Name: libXxf86dga Version: 1.1.6 -Release: 6%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +Release: 9%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} License: MIT URL: http://www.x.org diff --git a/specs/l/libXxf86vm/libXxf86vm.spec b/specs/l/libXxf86vm/libXxf86vm.spec index ae9ba71105f..6de423fcb2c 100644 --- a/specs/l/libXxf86vm/libXxf86vm.spec +++ b/specs/l/libXxf86vm/libXxf86vm.spec @@ -8,7 +8,7 @@ Summary: X.Org X11 libXxf86vm runtime library Name: libXxf86vm Version: 1.1.6 -Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +Release: 6%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} License: X11-distribute-modifications-variant URL: http://www.x.org diff --git a/specs/l/libaccounts-glib/libaccounts-glib.spec b/specs/l/libaccounts-glib/libaccounts-glib.spec index e0439278fc3..2d6956a6e86 100644 --- a/specs/l/libaccounts-glib/libaccounts-glib.spec +++ b/specs/l/libaccounts-glib/libaccounts-glib.spec @@ -3,7 +3,7 @@ Name: libaccounts-glib Version: 1.25 -Release: 24%{?dist} +Release: 24%{?dist} Summary: Accounts framework for Linux and POSIX based platforms # Automatically converted from old format: LGPLv2 - review is highly recommended. License: LicenseRef-Callaway-LGPLv2 diff --git a/specs/l/libaccounts-qt/libaccounts-qt.spec b/specs/l/libaccounts-qt/libaccounts-qt.spec index bac6f3cb80a..2b1cff63171 100644 --- a/specs/l/libaccounts-qt/libaccounts-qt.spec +++ b/specs/l/libaccounts-qt/libaccounts-qt.spec @@ -6,7 +6,7 @@ Name: libaccounts-qt Summary: Accounts framework Qt bindings Version: 1.17 -Release: 4%{?dist} +Release: 4%{?dist} License: LGPL-2.1-only URL: https://gitlab.com/accounts-sso/libaccounts-qt diff --git a/specs/l/libaec/libaec.spec b/specs/l/libaec/libaec.spec index 784c5050376..e0241685c6d 100644 --- a/specs/l/libaec/libaec.spec +++ b/specs/l/libaec/libaec.spec @@ -3,7 +3,7 @@ Name: libaec Version: 1.1.4 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Adaptive Entropy Coding library License: LicenseRef-Callaway-BSD Url: https://gitlab.dkrz.de/k202009/libaec diff --git a/specs/l/libao/libao.spec b/specs/l/libao/libao.spec index 50d31c82671..b4c236e420e 100644 --- a/specs/l/libao/libao.spec +++ b/specs/l/libao/libao.spec @@ -3,7 +3,7 @@ Name: libao Version: 1.2.0 -Release: 31%{?dist} +Release: 31%{?dist} Summary: Cross Platform Audio Output Library License: GPL-2.0-or-later URL: http://xiph.org/ao/ diff --git a/specs/l/libappindicator/libappindicator.spec b/specs/l/libappindicator/libappindicator.spec index c7154f5fa1a..086cd292dc7 100644 --- a/specs/l/libappindicator/libappindicator.spec +++ b/specs/l/libappindicator/libappindicator.spec @@ -15,7 +15,7 @@ Name: libappindicator Version: 12.10.1 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Application indicators library # Automatically converted from old format: LGPLv2 and LGPLv3 - review is highly recommended. diff --git a/specs/l/libarchive/libarchive.spec b/specs/l/libarchive/libarchive.spec index c48ec5f1ce1..242db7d25a0 100644 --- a/specs/l/libarchive/libarchive.spec +++ b/specs/l/libarchive/libarchive.spec @@ -5,7 +5,7 @@ Name: libarchive Version: 3.8.4 -Release: 2%{?dist} +Release: 2%{?dist} Summary: A library for handling streaming archive formats # Licenses: diff --git a/specs/l/libaribcaption/libaribcaption.spec b/specs/l/libaribcaption/libaribcaption.spec index 5ba8f5c1631..dfe64e27227 100644 --- a/specs/l/libaribcaption/libaribcaption.spec +++ b/specs/l/libaribcaption/libaribcaption.spec @@ -3,7 +3,7 @@ Name: libaribcaption Version: 1.1.1 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Portable ARIB STD-B24 Caption Decoder/Renderer License: MIT URL: https://github.com/xqq/libaribcaption diff --git a/specs/l/libarrow/libarrow.spec b/specs/l/libarrow/libarrow.spec index 221401d3717..21eac42277d 100644 --- a/specs/l/libarrow/libarrow.spec +++ b/specs/l/libarrow/libarrow.spec @@ -34,7 +34,7 @@ Name: libarrow Version: 20.0.0 -Release: 11%{?dist} +Release: 11%{?dist} Summary: A toolbox for accelerated data interchange and in-memory processing License: Apache-2.0 URL: https://arrow.apache.org/ diff --git a/specs/l/libass/libass.spec b/specs/l/libass/libass.spec index d009331f0c3..77b78503077 100644 --- a/specs/l/libass/libass.spec +++ b/specs/l/libass/libass.spec @@ -3,7 +3,7 @@ Name: libass Version: 0.17.3 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Portable library for SSA/ASS subtitles rendering License: ISC URL: https://github.com/libass diff --git a/specs/l/libavc1394/libavc1394.spec b/specs/l/libavc1394/libavc1394.spec index de3e064561c..9c936352c7c 100644 --- a/specs/l/libavc1394/libavc1394.spec +++ b/specs/l/libavc1394/libavc1394.spec @@ -4,7 +4,7 @@ Summary: Audio/Video Control library for IEEE-1394 devices Name: libavc1394 Version: 0.5.4 -Release: 27%{?dist} +Release: 27%{?dist} License: GPL-2.0-or-later AND LGPL-2.0-or-later URL: http://sourceforge.net/projects/libavc1394/ Source: https://sourceforge.net/projects/libavc1394/files/libavc1394/libavc1394-%{version}.tar.gz diff --git a/specs/l/libavtp/libavtp.spec b/specs/l/libavtp/libavtp.spec index 09390bb8dc9..3ca07c4c9a1 100644 --- a/specs/l/libavtp/libavtp.spec +++ b/specs/l/libavtp/libavtp.spec @@ -3,7 +3,7 @@ Name: libavtp Version: 0.2.0 -Release: 12%{?dist} +Release: 12%{?dist} Summary: An AVTP protocol implementation License: BSD-3-Clause diff --git a/specs/l/libblkio/libblkio.spec b/specs/l/libblkio/libblkio.spec index 44c2ec5fb65..0d2c5eaf845 100644 --- a/specs/l/libblkio/libblkio.spec +++ b/specs/l/libblkio/libblkio.spec @@ -12,7 +12,7 @@ Version: 1.5.0 Summary: Block device I/O library Name: libblkio -Release: 6%{?dist} +Release: 6%{?dist} URL: %{forgeurl} Source0: %{forgesource} # To create the vendor tarball: diff --git a/specs/l/libblockdev/libblockdev.spec b/specs/l/libblockdev/libblockdev.spec index dffbf848c92..d83ebc986b6 100644 --- a/specs/l/libblockdev/libblockdev.spec +++ b/specs/l/libblockdev/libblockdev.spec @@ -89,7 +89,7 @@ Name: libblockdev Version: 3.4.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: A library for low-level manipulation with block devices License: LGPL-2.1-or-later URL: https://github.com/storaged-project/libblockdev diff --git a/specs/l/libbpf/libbpf.spec b/specs/l/libbpf/libbpf.spec index 384333a55d8..2b5f1b7d777 100644 --- a/specs/l/libbpf/libbpf.spec +++ b/specs/l/libbpf/libbpf.spec @@ -8,7 +8,7 @@ Name: %{githubname} Version: %{githubver} -Release: 4%{?dist} +Release: 4%{?dist} Summary: Libbpf library License: LGPL-2.1-only OR BSD-2-Clause diff --git a/specs/l/libbs2b/libbs2b.spec b/specs/l/libbs2b/libbs2b.spec index a82b0e43ed1..394a6856ce8 100644 --- a/specs/l/libbs2b/libbs2b.spec +++ b/specs/l/libbs2b/libbs2b.spec @@ -3,7 +3,7 @@ Name: libbs2b Version: 3.1.0 -Release: 37%{?dist} +Release: 37%{?dist} Summary: Bauer stereophonic-to-binaural DSP library License: MIT diff --git a/specs/l/libbsd/libbsd.spec b/specs/l/libbsd/libbsd.spec index 9f1dd0acb10..bad582a815a 100644 --- a/specs/l/libbsd/libbsd.spec +++ b/specs/l/libbsd/libbsd.spec @@ -3,7 +3,7 @@ Name: libbsd Version: 0.12.2 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Library providing BSD-compatible functions for portability URL: https://libbsd.freedesktop.org/ # Breakdown in COPYING file of libbsd release tarball, see also: diff --git a/specs/l/libburn/libburn.spec b/specs/l/libburn/libburn.spec index 1f3e78b3dd1..5b02d2994cb 100644 --- a/specs/l/libburn/libburn.spec +++ b/specs/l/libburn/libburn.spec @@ -6,7 +6,7 @@ Summary: Library for reading, mastering and writing optical discs Name: libburn Version: 1.5.8 -Release: 3%{?dist} +Release: 3%{?dist} License: GPL-2.0-or-later URL: https://libburnia-project.org/ Source0: https://files.libburnia-project.org/releases/%{pkgname}-%{version}.tar.gz diff --git a/specs/l/libbytesize/libbytesize.spec b/specs/l/libbytesize/libbytesize.spec index 8be61851068..ba60998ec7a 100644 --- a/specs/l/libbytesize/libbytesize.spec +++ b/specs/l/libbytesize/libbytesize.spec @@ -20,7 +20,7 @@ Name: libbytesize Version: 2.12 -Release: 2%{?dist} +Release: 2%{?dist} Summary: A library for working with sizes in bytes License: LGPL-2.1-or-later URL: https://github.com/storaged-project/libbytesize diff --git a/specs/l/libcaca/libcaca.spec b/specs/l/libcaca/libcaca.spec index 1a3da23a0a1..31abf3d5560 100644 --- a/specs/l/libcaca/libcaca.spec +++ b/specs/l/libcaca/libcaca.spec @@ -22,7 +22,7 @@ Summary: Library for Colour AsCii Art, text mode graphics Name: libcaca Version: 0.99 -Release: 0.80.%{beta}%{?dist} +Release: 0.83.%{beta}%{?dist} License: WTFPL URL: http://caca.zoy.org/wiki/libcaca diff --git a/specs/l/libcacard/libcacard.spec b/specs/l/libcacard/libcacard.spec index f6ce34a79a4..a8ba541c4ee 100644 --- a/specs/l/libcacard/libcacard.spec +++ b/specs/l/libcacard/libcacard.spec @@ -3,7 +3,7 @@ Name: libcacard Version: 2.8.1 -Release: 13%{?dist} +Release: 13%{?dist} Summary: CAC (Common Access Card) library # Automatically converted from old format: LGPLv2+ - review is highly recommended. License: LicenseRef-Callaway-LGPLv2+ diff --git a/specs/l/libcbor/libcbor.spec b/specs/l/libcbor/libcbor.spec index 5b3cf3517fa..0974ec0739d 100644 --- a/specs/l/libcbor/libcbor.spec +++ b/specs/l/libcbor/libcbor.spec @@ -3,7 +3,7 @@ Name: libcbor Version: 0.12.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: A CBOR parsing library License: MIT diff --git a/specs/l/libcerf/libcerf.spec b/specs/l/libcerf/libcerf.spec index 2a3814494c2..6623c00a0b8 100644 --- a/specs/l/libcerf/libcerf.spec +++ b/specs/l/libcerf/libcerf.spec @@ -4,7 +4,7 @@ Name: libcerf Version: 3.1 %global sover 3 -Release: 3%{?dist} +Release: 3%{?dist} Summary: A library that provides complex error functions License: MIT diff --git a/specs/l/libcgif/libcgif.spec b/specs/l/libcgif/libcgif.spec index a917511e890..99f9b0c4857 100644 --- a/specs/l/libcgif/libcgif.spec +++ b/specs/l/libcgif/libcgif.spec @@ -21,7 +21,7 @@ Name: %{libname} Summary: A fast and lightweight GIF encoder Version: 0.5.1 -Release: 2%{?dist} +Release: 2%{?dist} License: MIT URL: https://github.com/%{gh_owner}/%{gh_project} diff --git a/specs/l/libclc/libclc.spec b/specs/l/libclc/libclc.spec index 08d69071578..6d974205eca 100644 --- a/specs/l/libclc/libclc.spec +++ b/specs/l/libclc/libclc.spec @@ -11,7 +11,7 @@ Name: libclc Version: %{libclc_version}%{?rc_ver:~rc%{rc_ver}} -Release: 2%{?dist} +Release: 2%{?dist} Summary: An open source implementation of the OpenCL 1.1 library requirements License: Apache-2.0 WITH LLVM-exception OR NCSA OR MIT diff --git a/specs/l/libcloudproviders/libcloudproviders.spec b/specs/l/libcloudproviders/libcloudproviders.spec index ad4554177a8..e6e6d230245 100644 --- a/specs/l/libcloudproviders/libcloudproviders.spec +++ b/specs/l/libcloudproviders/libcloudproviders.spec @@ -6,7 +6,7 @@ Name: libcloudproviders Summary: Library for integration of cloud storage providers Version: 0.3.6 -Release: 3%{?dist} +Release: 3%{?dist} License: LGPL-3.0-or-later URL: https://gitlab.gnome.org/World/libcloudproviders diff --git a/specs/l/libcomps/libcomps.spec b/specs/l/libcomps/libcomps.spec index 1f5a9f238de..e1b61a929b6 100644 --- a/specs/l/libcomps/libcomps.spec +++ b/specs/l/libcomps/libcomps.spec @@ -5,7 +5,7 @@ Name: libcomps Version: 0.1.23 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Comps XML file manipulation library License: GPL-2.0-or-later diff --git a/specs/l/libconfig/libconfig.spec b/specs/l/libconfig/libconfig.spec index 804f379f945..bc8cefce46d 100644 --- a/specs/l/libconfig/libconfig.spec +++ b/specs/l/libconfig/libconfig.spec @@ -6,7 +6,7 @@ Name: libconfig Summary: C/C++ configuration file library Version: 1.7.3 -Release: 13%{?dist} +Release: 13%{?dist} # lib/grammar.* are GPL-3.0-or-later WITH Bison-exception-2.2 License: LGPL-2.1-or-later AND GPL-3.0-or-later WITH Bison-exception-2.2 URL: http://www.hyperrealm.com/libconfig/ diff --git a/specs/l/libconfuse/libconfuse.spec b/specs/l/libconfuse/libconfuse.spec index a21a0954da3..fdcfc35d46a 100644 --- a/specs/l/libconfuse/libconfuse.spec +++ b/specs/l/libconfuse/libconfuse.spec @@ -3,7 +3,7 @@ Name: libconfuse Version: 3.3 -Release: 16%{?dist} +Release: 16%{?dist} Summary: A configuration file parser library License: ISC diff --git a/specs/l/libcpuid/libcpuid.spec b/specs/l/libcpuid/libcpuid.spec index 1ba1215863b..799f56138b5 100644 --- a/specs/l/libcpuid/libcpuid.spec +++ b/specs/l/libcpuid/libcpuid.spec @@ -3,7 +3,7 @@ Name: libcpuid Version: 0.8.1 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Provides CPU identification for x86 and ARM License: BSD-2-Clause URL: https://github.com/anrieff/libcpuid diff --git a/specs/l/libdatrie/libdatrie.spec b/specs/l/libdatrie/libdatrie.spec index ab37ff369f7..f363f51e721 100644 --- a/specs/l/libdatrie/libdatrie.spec +++ b/specs/l/libdatrie/libdatrie.spec @@ -3,7 +3,7 @@ Name: libdatrie Version: 0.2.13 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Implementation of Double-Array structure for representing trie License: LGPL-2.1-or-later URL: http://linux.thai.net/projects/datrie diff --git a/specs/l/libdbusmenu/libdbusmenu.spec b/specs/l/libdbusmenu/libdbusmenu.spec index a5397c0e527..7f2c5b56798 100644 --- a/specs/l/libdbusmenu/libdbusmenu.spec +++ b/specs/l/libdbusmenu/libdbusmenu.spec @@ -19,7 +19,7 @@ Name: libdbusmenu Version: %{ubuntu_release}.0 -Release: 31%{?dist} +Release: 31%{?dist} Summary: Library for passing menus over DBus # All files installed in final rpms use C sources with dual licensing headers. diff --git a/specs/l/libdecor/libdecor.spec b/specs/l/libdecor/libdecor.spec index e79e9803730..5b471edc869 100644 --- a/specs/l/libdecor/libdecor.spec +++ b/specs/l/libdecor/libdecor.spec @@ -3,7 +3,7 @@ Name: libdecor Version: 0.2.5 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Wayland client side decoration library License: MIT diff --git a/specs/l/libdisplay-info/libdisplay-info.spec b/specs/l/libdisplay-info/libdisplay-info.spec index bf241815522..dbb1556bf07 100644 --- a/specs/l/libdisplay-info/libdisplay-info.spec +++ b/specs/l/libdisplay-info/libdisplay-info.spec @@ -7,7 +7,7 @@ Name: libdisplay-info Version: 0.2.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: EDID and DisplayID library # Main license: MIT diff --git a/specs/l/libdmtx/libdmtx.spec b/specs/l/libdmtx/libdmtx.spec index 8fe4d64d753..506037e1b43 100644 --- a/specs/l/libdmtx/libdmtx.spec +++ b/specs/l/libdmtx/libdmtx.spec @@ -3,7 +3,7 @@ Name: libdmtx Version: 0.7.8 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Library for working with Data Matrix 2D bar-codes License: BSD-2-Clause-Views diff --git a/specs/l/libdnf/libdnf.spec b/specs/l/libdnf/libdnf.spec index 57bdce31a11..d6f0f822c23 100644 --- a/specs/l/libdnf/libdnf.spec +++ b/specs/l/libdnf/libdnf.spec @@ -59,7 +59,7 @@ Name: libdnf Version: %{libdnf_major_version}.%{libdnf_minor_version}.%{libdnf_micro_version} -Release: 2%{?dist} +Release: 2%{?dist} Summary: Library providing simplified C and Python API to libsolv License: LGPL-2.1-or-later URL: https://github.com/rpm-software-management/libdnf diff --git a/specs/l/libdrm/libdrm.spec b/specs/l/libdrm/libdrm.spec index 2a08a677677..504d4d2dc42 100644 --- a/specs/l/libdrm/libdrm.spec +++ b/specs/l/libdrm/libdrm.spec @@ -50,7 +50,7 @@ end} Name: libdrm Summary: Direct Rendering Manager runtime library Version: 2.4.131 -Release: 2%{?dist} +Release: 2%{?dist} License: MIT # Get the patch version. diff --git a/specs/l/libdv/libdv.spec b/specs/l/libdv/libdv.spec index ef07888bdfe..f010c9b76ae 100644 --- a/specs/l/libdv/libdv.spec +++ b/specs/l/libdv/libdv.spec @@ -3,7 +3,7 @@ Name: libdv Version: 1.0.0 -Release: 46%{?dist} +Release: 46%{?dist} Summary: Software decoder for DV format video License: LGPL-2.0-or-later URL: http://libdv.sourceforge.net/ diff --git a/specs/l/libdvdnav/libdvdnav.spec b/specs/l/libdvdnav/libdvdnav.spec index 6e4fde9b92f..a77737ffa5b 100644 --- a/specs/l/libdvdnav/libdvdnav.spec +++ b/specs/l/libdvdnav/libdvdnav.spec @@ -5,7 +5,7 @@ Name: libdvdnav Version: 6.1.1 -Release: 12%{?dist} +Release: 12%{?dist} Summary: A library for reading DVD video discs based on Ogle code License: GPL-2.0-or-later AND LGPL-2.1-or-later URL: http://dvdnav.mplayerhq.hu/ diff --git a/specs/l/libdvdread/libdvdread.spec b/specs/l/libdvdread/libdvdread.spec index 8c21cfa33e9..191c6812bd8 100644 --- a/specs/l/libdvdread/libdvdread.spec +++ b/specs/l/libdvdread/libdvdread.spec @@ -5,7 +5,7 @@ Name: libdvdread Version: 6.1.3 -Release: 11%{?dist} +Release: 11%{?dist} Summary: A library for reading DVD video discs based on Ogle code # msvc/contrib/dirent/dirent.c is HPND-Kevlin-Henney, but is not included in the build # src/logger.c and few other are LGPL-2.1-or-later diff --git a/specs/l/libebur128/libebur128.spec b/specs/l/libebur128/libebur128.spec index be5217de1df..6f9f43d15dd 100644 --- a/specs/l/libebur128/libebur128.spec +++ b/specs/l/libebur128/libebur128.spec @@ -6,7 +6,7 @@ Name: libebur128 Version: 1.2.6 -Release: 15%{?dist} +Release: 15%{?dist} Summary: A library that implements the EBU R 128 standard for loudness normalization License: MIT URL: https://github.com/jiixyj/%{name} diff --git a/specs/l/libecap/libecap.spec b/specs/l/libecap/libecap.spec index c68d5087bc7..608039aa13c 100644 --- a/specs/l/libecap/libecap.spec +++ b/specs/l/libecap/libecap.spec @@ -3,7 +3,7 @@ Name: libecap Version: 1.0.1 -Release: 21%{?dist} +Release: 21%{?dist} Summary: Squid interface for embedded adaptation modules License: BSD-2-Clause URL: http://www.e-cap.org/ diff --git a/specs/l/libecb/libecb.spec b/specs/l/libecb/libecb.spec index 03fb8cff6da..481ad25733b 100644 --- a/specs/l/libecb/libecb.spec +++ b/specs/l/libecb/libecb.spec @@ -9,7 +9,7 @@ Name: libecb # See ECB_VERSION macro. RPM cannot order them correctly. A decimal encoding # would work, but would be uggly. Just use 0. Version: 0.%{snapshot} -Release: 7%{?dist} +Release: 7%{?dist} Summary: Compiler built-ins License: BSD-2-Clause OR GPL-2.0-or-later URL: http://software.schmorp.de/pkg/libecb.html diff --git a/specs/l/libeconf/libeconf.spec b/specs/l/libeconf/libeconf.spec index 36b2f42ef25..14ca4f15d83 100644 --- a/specs/l/libeconf/libeconf.spec +++ b/specs/l/libeconf/libeconf.spec @@ -8,7 +8,7 @@ Name: libeconf Version: 0.7.9 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Enhanced config file parser library License: MIT diff --git a/specs/l/libedit/libedit.spec b/specs/l/libedit/libedit.spec index 4b38477ed80..149674033cd 100644 --- a/specs/l/libedit/libedit.spec +++ b/specs/l/libedit/libedit.spec @@ -9,7 +9,7 @@ Summary: The NetBSD Editline library Name: libedit Version: 3.1 -Release: 57.%{snap}cvs%{?dist} +Release: 60.%{snap}cvs%{?dist} # The project as a whole is BSD-3-Clause. # These files are BSD-2-Clause: diff --git a/specs/l/libei/libei.spec b/specs/l/libei/libei.spec index fc7cce7047c..82c90388b6f 100644 --- a/specs/l/libei/libei.spec +++ b/specs/l/libei/libei.spec @@ -13,7 +13,7 @@ Name: libei Version: 1.5.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Library for Emulated Input License: MIT diff --git a/specs/l/liberation-fonts/liberation-fonts.spec b/specs/l/liberation-fonts/liberation-fonts.spec index 634c6731f07..393b4b3db9d 100644 --- a/specs/l/liberation-fonts/liberation-fonts.spec +++ b/specs/l/liberation-fonts/liberation-fonts.spec @@ -9,7 +9,7 @@ BuildRequires: mkfontscale mkfontdir Epoch: 1 Version: 2.1.5 -Release: 15%{?dist} +Release: 15%{?dist} License: OFL-1.1-RFN URL: https://github.com/liberationfonts/liberation-fonts diff --git a/specs/l/libesmtp/libesmtp.spec b/specs/l/libesmtp/libesmtp.spec index e31ef03292b..4d2b9e494f8 100644 --- a/specs/l/libesmtp/libesmtp.spec +++ b/specs/l/libesmtp/libesmtp.spec @@ -6,7 +6,7 @@ Summary: SMTP client library Name: libesmtp Version: 1.0.6 -Release: 35%{?dist} +Release: 35%{?dist} # Automatically converted from old format: LGPLv2+ - review is highly recommended. License: LicenseRef-Callaway-LGPLv2+ Source: http://www.stafford.uklinux.net/libesmtp/%{name}-%{version}.tar.bz2 diff --git a/specs/l/libestr/libestr.spec b/specs/l/libestr/libestr.spec index 163e9e58b16..26dfe31b804 100644 --- a/specs/l/libestr/libestr.spec +++ b/specs/l/libestr/libestr.spec @@ -3,7 +3,7 @@ Name: libestr Version: 0.1.11 -Release: 13%{?dist} +Release: 13%{?dist} Summary: String handling essentials library License: LGPL-2.1-or-later diff --git a/specs/l/libev/libev.spec b/specs/l/libev/libev.spec index 3c8e4bb7e44..df39e5a1a12 100644 --- a/specs/l/libev/libev.spec +++ b/specs/l/libev/libev.spec @@ -6,7 +6,7 @@ Name: libev Version: 4.33 -Release: 15%{?dist} +Release: 15%{?dist} Summary: High-performance event loop/event model with lots of features License: BSD-2-Clause OR GPL-2.0-or-later diff --git a/specs/l/libevdev/libevdev.spec b/specs/l/libevdev/libevdev.spec index 1317fcc2f4a..4bbbaa2dd5d 100644 --- a/specs/l/libevdev/libevdev.spec +++ b/specs/l/libevdev/libevdev.spec @@ -3,7 +3,7 @@ Name: libevdev Version: 1.13.6 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Kernel Evdev Device Wrapper Library # SPDX diff --git a/specs/l/libevent/libevent.spec b/specs/l/libevent/libevent.spec index 290a4599047..cf59b6a8b77 100644 --- a/specs/l/libevent/libevent.spec +++ b/specs/l/libevent/libevent.spec @@ -5,7 +5,7 @@ Name: libevent Version: 2.1.12 -Release: 17%{?dist} +Release: 17%{?dist} Summary: Abstract asynchronous event notification library # arc4random.c, which is used in build, is ISC. The rest is BSD-3-Clause. diff --git a/specs/l/libewf/libewf.spec b/specs/l/libewf/libewf.spec index c79158e8a3b..b97e0d7db70 100644 --- a/specs/l/libewf/libewf.spec +++ b/specs/l/libewf/libewf.spec @@ -9,7 +9,7 @@ Name: libewf Version: 20140608 -Release: 33%{?dist} +Release: 33%{?dist} Summary: Library for the Expert Witness Compression Format (EWF) License: LGPL-3.0-or-later diff --git a/specs/l/libfastjson/libfastjson.spec b/specs/l/libfastjson/libfastjson.spec index a5de1a51bd6..ebfdba77ccb 100644 --- a/specs/l/libfastjson/libfastjson.spec +++ b/specs/l/libfastjson/libfastjson.spec @@ -3,7 +3,7 @@ Name: libfastjson Version: 1.2304.0 -Release: 8%{?dist} +Release: 8%{?dist} Summary: A JSON implementation in C License: MIT URL: https://github.com/rsyslog/libfastjson diff --git a/specs/l/libffi/libffi.spec b/specs/l/libffi/libffi.spec index 02589861891..d552b3ad852 100644 --- a/specs/l/libffi/libffi.spec +++ b/specs/l/libffi/libffi.spec @@ -7,7 +7,7 @@ Name: libffi Version: 3.5.2 -Release: 2%{?dist} +Release: 2%{?dist} Summary: A portable foreign function interface library # No license change for 3.5.2 # No license change for 3.5.1 diff --git a/specs/l/libfido2/libfido2.spec b/specs/l/libfido2/libfido2.spec index 811fd3fc775..4c2adf0b591 100644 --- a/specs/l/libfido2/libfido2.spec +++ b/specs/l/libfido2/libfido2.spec @@ -4,7 +4,7 @@ Name: libfido2 Version: 1.16.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: FIDO2 library License: BSD-2-Clause diff --git a/specs/l/libftdi/libftdi.spec b/specs/l/libftdi/libftdi.spec index d86d8e13553..b0754c43df0 100644 --- a/specs/l/libftdi/libftdi.spec +++ b/specs/l/libftdi/libftdi.spec @@ -3,7 +3,7 @@ Name: libftdi Version: 1.5 -Release: 22%{?dist} +Release: 22%{?dist} Summary: Library to program and control the FTDI USB controller # Automatically converted from old format: LGPLv2 - review is highly recommended. diff --git a/specs/l/libfyaml/libfyaml.spec b/specs/l/libfyaml/libfyaml.spec index 6ed5c3995a4..b6e05f62614 100644 --- a/specs/l/libfyaml/libfyaml.spec +++ b/specs/l/libfyaml/libfyaml.spec @@ -3,7 +3,7 @@ Name: libfyaml Version: 0.8 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Complete YAML parser and emitter # All files MIT except diff --git a/specs/l/libgdata/libgdata.spec b/specs/l/libgdata/libgdata.spec index db816eb63da..6a8d416c625 100644 --- a/specs/l/libgdata/libgdata.spec +++ b/specs/l/libgdata/libgdata.spec @@ -6,7 +6,7 @@ Name: libgdata Version: 0.18.1 -Release: 16%{?dist} +Release: 16%{?dist} Summary: Library for the GData protocol # Automatically converted from old format: LGPLv2+ - review is highly recommended. diff --git a/specs/l/libgdiplus/libgdiplus.spec b/specs/l/libgdiplus/libgdiplus.spec index d9dfa1f82f2..9ae84657ed5 100644 --- a/specs/l/libgdiplus/libgdiplus.spec +++ b/specs/l/libgdiplus/libgdiplus.spec @@ -6,7 +6,7 @@ Name: libgdiplus Version: 6.1 -Release: 11%{?dist} +Release: 11%{?dist} Summary: An Open Source implementation of the GDI+ API License: MIT URL: http://www.mono-project.com/Main_Page diff --git a/specs/l/libgee/libgee.spec b/specs/l/libgee/libgee.spec index ad50b614004..1906386c372 100644 --- a/specs/l/libgee/libgee.spec +++ b/specs/l/libgee/libgee.spec @@ -3,7 +3,7 @@ Name: libgee Version: 0.20.8 -Release: 3%{?dist} +Release: 3%{?dist} Summary: GObject collection library License: LGPL-2.1-or-later diff --git a/specs/l/libgeotiff/libgeotiff.spec b/specs/l/libgeotiff/libgeotiff.spec index 54f80b48d26..ea4b4e03767 100644 --- a/specs/l/libgeotiff/libgeotiff.spec +++ b/specs/l/libgeotiff/libgeotiff.spec @@ -12,7 +12,7 @@ Name: libgeotiff Version: 1.7.4 -Release: 5%{?dist} +Release: 5%{?dist} Summary: GeoTIFF format library License: MIT diff --git a/specs/l/libgexiv2/libgexiv2.spec b/specs/l/libgexiv2/libgexiv2.spec index 6bd3fc1298d..550f69191a7 100644 --- a/specs/l/libgexiv2/libgexiv2.spec +++ b/specs/l/libgexiv2/libgexiv2.spec @@ -3,7 +3,7 @@ Name: libgexiv2 Version: 0.14.6 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Gexiv2 is a GObject-based wrapper around the Exiv2 library License: GPL-2.0-or-later diff --git a/specs/l/libglib-testing/libglib-testing.spec b/specs/l/libglib-testing/libglib-testing.spec index 90da80089e0..bce5e9197c9 100644 --- a/specs/l/libglib-testing/libglib-testing.spec +++ b/specs/l/libglib-testing/libglib-testing.spec @@ -3,7 +3,7 @@ Name: libglib-testing Version: 0.1.0 -Release: 16%{?dist} +Release: 16%{?dist} Summary: GLib-based test library and harness # Automatically converted from old format: LGPLv2+ - review is highly recommended. diff --git a/specs/l/libglvnd/libglvnd.spec b/specs/l/libglvnd/libglvnd.spec index 7a6de5cc99a..4462f26c8c8 100644 --- a/specs/l/libglvnd/libglvnd.spec +++ b/specs/l/libglvnd/libglvnd.spec @@ -16,7 +16,7 @@ Name: libglvnd Version: 1.7.0 -Release: 9%{?dist} +Release: 9%{?dist} # Provide an upgrade path from the negativo17.org pkgs which have Epoch 1 Epoch: 1 Summary: The GL Vendor-Neutral Dispatch library diff --git a/specs/l/libgnomekbd/libgnomekbd.spec b/specs/l/libgnomekbd/libgnomekbd.spec index 21ef0641318..39ded920efc 100644 --- a/specs/l/libgnomekbd/libgnomekbd.spec +++ b/specs/l/libgnomekbd/libgnomekbd.spec @@ -3,7 +3,7 @@ Name: libgnomekbd Version: 3.28.1 -Release: 9%{?dist} +Release: 9%{?dist} Summary: A keyboard configuration library License: LGPL-2.0-or-later diff --git a/specs/l/libgphoto2/libgphoto2.spec b/specs/l/libgphoto2/libgphoto2.spec index 6cd3a449746..01ea1c4da1f 100644 --- a/specs/l/libgphoto2/libgphoto2.spec +++ b/specs/l/libgphoto2/libgphoto2.spec @@ -8,7 +8,7 @@ Name: libgphoto2 Version: 2.5.33 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Library for accessing digital cameras License: GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.0-only AND LGPL-2.0-or-later AND LGPL-2.1-or-later AND LGPL-3.0-or-later AND BSD-3-Clause AND IJG-short AND (MIT OR Unlicense) URL: http://www.gphoto.org/ diff --git a/specs/l/libgpiod/libgpiod.spec b/specs/l/libgpiod/libgpiod.spec index 951d48b5ba7..30817002efd 100644 --- a/specs/l/libgpiod/libgpiod.spec +++ b/specs/l/libgpiod/libgpiod.spec @@ -6,7 +6,7 @@ Name: libgpiod Version: 2.2.3 -Release: 1%{?candidate:.%{candidate}}%{?dist} +Release: 4%{?candidate:.%{candidate}}%{?dist} Summary: C library and tools for interacting with linux GPIO char device License: LGPL-2.1-or-later diff --git a/specs/l/libgsasl/libgsasl.spec b/specs/l/libgsasl/libgsasl.spec index 92fb1003ef5..c7c3ec6918b 100644 --- a/specs/l/libgsasl/libgsasl.spec +++ b/specs/l/libgsasl/libgsasl.spec @@ -3,7 +3,7 @@ Name: libgsasl Version: 1.10.0 -Release: 15%{?dist} +Release: 15%{?dist} Summary: GNU SASL library License: LGPL-2.1-or-later URL: https://www.gnu.org/software/gsasl/ diff --git a/specs/l/libgta/libgta.spec b/specs/l/libgta/libgta.spec index c39414c9df6..835a583733c 100644 --- a/specs/l/libgta/libgta.spec +++ b/specs/l/libgta/libgta.spec @@ -4,7 +4,7 @@ Name: libgta Version: 1.2.1 %global so_version 1 -Release: 17%{?dist} +Release: 17%{?dist} Summary: Library that implements the Generic Tagged Arrays file format # Automatically converted from old format: LGPLv2+ - review is highly recommended. License: LicenseRef-Callaway-LGPLv2+ diff --git a/specs/l/libgtop2/libgtop2.spec b/specs/l/libgtop2/libgtop2.spec index 7fd116c0c28..eb53b2d33c6 100644 --- a/specs/l/libgtop2/libgtop2.spec +++ b/specs/l/libgtop2/libgtop2.spec @@ -3,7 +3,7 @@ Name: libgtop2 Version: 2.41.3 -Release: 5%{?dist} +Release: 5%{?dist} Summary: LibGTop library (version 2) License: GPL-2.0-or-later diff --git a/specs/l/libgudev/libgudev.spec b/specs/l/libgudev/libgudev.spec index 80105620036..5ce208ec702 100644 --- a/specs/l/libgudev/libgudev.spec +++ b/specs/l/libgudev/libgudev.spec @@ -3,7 +3,7 @@ Name: libgudev Version: 238 -Release: 9%{?dist} +Release: 9%{?dist} Summary: GObject-based wrapper library for libudev License: LGPL-2.1-or-later diff --git a/specs/l/libguestfs/libguestfs.spec b/specs/l/libguestfs/libguestfs.spec index 0808ae8b52f..07c8541bad8 100644 --- a/specs/l/libguestfs/libguestfs.spec +++ b/specs/l/libguestfs/libguestfs.spec @@ -38,7 +38,7 @@ Summary: Access and modify virtual machine disk images Name: libguestfs Epoch: 1 Version: 1.58.1 -Release: 2%{?dist} +Release: 2%{?dist} License: LGPL-2.1-or-later # Build only for architectures that have a kernel diff --git a/specs/l/libgxim/libgxim.spec b/specs/l/libgxim/libgxim.spec index b59a358d5f9..cb9f19ade0c 100644 --- a/specs/l/libgxim/libgxim.spec +++ b/specs/l/libgxim/libgxim.spec @@ -3,7 +3,7 @@ Name: libgxim Version: 0.5.0 -Release: 32%{?dist} +Release: 32%{?dist} License: LGPL-2.1-or-later URL: http://tagoh.bitbucket.org/libgxim/ BuildRequires: intltool gettext ruby rubygems diff --git a/specs/l/libgxps/libgxps.spec b/specs/l/libgxps/libgxps.spec index d1b005fab70..efd2bea029b 100644 --- a/specs/l/libgxps/libgxps.spec +++ b/specs/l/libgxps/libgxps.spec @@ -3,7 +3,7 @@ Name: libgxps Version: 0.3.2 -Release: 12%{?dist} +Release: 12%{?dist} Summary: GObject based library for handling and rendering XPS documents License: LGPL-2.1-or-later diff --git a/specs/l/libharu/libharu.spec b/specs/l/libharu/libharu.spec index 436a7db012f..ee1b4509042 100644 --- a/specs/l/libharu/libharu.spec +++ b/specs/l/libharu/libharu.spec @@ -5,7 +5,7 @@ Name: libharu Version: 2.4.5 # NOTE - sover is major.minor so minor updates will require rebuilds of dependent packages %global sover %(v=%{version}; echo ${v%.*}) -Release: 2%{?dist} +Release: 2%{?dist} Summary: C library for generating PDF files License: zlib-acknowledgement URL: http://libharu.org diff --git a/specs/l/libi2cd/libi2cd.spec b/specs/l/libi2cd/libi2cd.spec index 08826a1f7f3..91426570716 100644 --- a/specs/l/libi2cd/libi2cd.spec +++ b/specs/l/libi2cd/libi2cd.spec @@ -5,7 +5,7 @@ Name: libi2cd Version: 1.0.3 -Release: 9%{?candidate:.%{candidate}}%{?dist} +Release: 12%{?candidate:.%{candidate}}%{?dist} Summary: C library for interacting with linux I2C devices License: LGPL-2.1-or-later diff --git a/specs/l/libical/libical.spec b/specs/l/libical/libical.spec index 5be689ced73..48b0e480164 100644 --- a/specs/l/libical/libical.spec +++ b/specs/l/libical/libical.spec @@ -11,7 +11,7 @@ Summary: Reference implementation of the iCalendar data type and serialization format Name: libical Version: 3.0.20 -Release: 5%{?dist} +Release: 5%{?dist} License: LGPL-2.1-only OR MPL-2.0 URL: https://libical.github.io/libical/ Source: https://github.com/%{name}/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz diff --git a/specs/l/libicns/libicns.spec b/specs/l/libicns/libicns.spec index 083c836f267..ed4a5eb9e63 100644 --- a/specs/l/libicns/libicns.spec +++ b/specs/l/libicns/libicns.spec @@ -3,7 +3,7 @@ Name: libicns Version: 0.8.1 -Release: 35%{?dist} +Release: 35%{?dist} Summary: Library for manipulating Macintosh icns files # libicns, icns2png and icontainer2icns are under LGPLv2+ diff --git a/specs/l/libidn2/libidn2.spec b/specs/l/libidn2/libidn2.spec index d30218040a4..148674c5afb 100644 --- a/specs/l/libidn2/libidn2.spec +++ b/specs/l/libidn2/libidn2.spec @@ -4,7 +4,7 @@ Summary: Library to support IDNA2008 internationalized domain names Name: libidn2 Version: 2.3.8 -Release: 3%{?dist} +Release: 3%{?dist} License: (GPL-2.0-or-later OR LGPL-3.0-or-later) AND GPL-3.0-or-later URL: https://www.gnu.org/software/libidn/#libidn2 diff --git a/specs/l/libiec61883/libiec61883.spec b/specs/l/libiec61883/libiec61883.spec index b87828626cb..94a7a1adf8c 100644 --- a/specs/l/libiec61883/libiec61883.spec +++ b/specs/l/libiec61883/libiec61883.spec @@ -4,7 +4,7 @@ Summary: Streaming library for IEEE1394 Name: libiec61883 Version: 1.2.0 -Release: 40%{?dist} +Release: 40%{?dist} # Automatically converted from old format: LGPLv2+ - review is highly recommended. License: LicenseRef-Callaway-LGPLv2+ Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.gz diff --git a/specs/l/libijs/libijs.spec b/specs/l/libijs/libijs.spec index f1fd8e607c9..d03e9e05a34 100644 --- a/specs/l/libijs/libijs.spec +++ b/specs/l/libijs/libijs.spec @@ -16,7 +16,7 @@ Name: libijs Summary: IJS Raster Image Transport Protocol Library Version: 0.35 -Release: 26%{?dist} +Release: 26%{?dist} License: AGPL-3.0-or-later diff --git a/specs/l/libindicator/libindicator.spec b/specs/l/libindicator/libindicator.spec index 06bb4341cf0..e804b4ecbd3 100644 --- a/specs/l/libindicator/libindicator.spec +++ b/specs/l/libindicator/libindicator.spec @@ -3,7 +3,7 @@ Name: libindicator Version: 12.10.1 -Release: 32%{?dist} +Release: 32%{?dist} Summary: Shared functions for Ayatana indicators # SPDX confirmed diff --git a/specs/l/libinput/libinput.spec b/specs/l/libinput/libinput.spec index 8c51e3b76e2..1f010cf19ea 100644 --- a/specs/l/libinput/libinput.spec +++ b/specs/l/libinput/libinput.spec @@ -8,7 +8,7 @@ Name: libinput Version: 1.30.2 -Release: 1%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +Release: 4%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} Summary: Input device library # SPDX diff --git a/specs/l/libisoburn/libisoburn.spec b/specs/l/libisoburn/libisoburn.spec index afb5905fccd..9f0da2214b6 100644 --- a/specs/l/libisoburn/libisoburn.spec +++ b/specs/l/libisoburn/libisoburn.spec @@ -10,7 +10,7 @@ Summary: Library to enable creation and expansion of ISO-9660 filesystems Name: libisoburn Version: 1.5.8 -Release: 3%{?dist} +Release: 3%{?dist} License: GPL-2.0-or-later URL: https://libburnia-project.org/ Source0: https://files.libburnia-project.org/releases/%{pkgname}-%{version}.tar.gz diff --git a/specs/l/libisofs/libisofs.spec b/specs/l/libisofs/libisofs.spec index e6cf7a5755c..1d2b2ea4a17 100644 --- a/specs/l/libisofs/libisofs.spec +++ b/specs/l/libisofs/libisofs.spec @@ -6,7 +6,7 @@ Summary: Library to create ISO 9660 disk images Name: libisofs Version: 1.5.8 -Release: 4%{?dist} +Release: 4%{?dist} # libisofs/make_isohybrid_mbr.c is LGPL-2.0-or-later, rest is GPL-2.0-or-later License: GPL-2.0-or-later AND LGPL-2.0-or-later URL: https://libburnia-project.org/ diff --git a/specs/l/libjaylink/libjaylink.spec b/specs/l/libjaylink/libjaylink.spec index 833e50cef5e..6c42162273e 100644 --- a/specs/l/libjaylink/libjaylink.spec +++ b/specs/l/libjaylink/libjaylink.spec @@ -3,7 +3,7 @@ Name: libjaylink Version: 0.3.0 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Library for SEGGER J-Link and compatible devices # Automatically converted from old format: GPLv2+ - review is highly recommended. diff --git a/specs/l/libjpeg-turbo/libjpeg-turbo.spec b/specs/l/libjpeg-turbo/libjpeg-turbo.spec index 7e85a12d02b..ebb7fffadc4 100644 --- a/specs/l/libjpeg-turbo/libjpeg-turbo.spec +++ b/specs/l/libjpeg-turbo/libjpeg-turbo.spec @@ -3,7 +3,7 @@ Name: libjpeg-turbo Version: 3.1.2 -Release: 3%{?dist} +Release: 3%{?dist} Summary: A MMX/SSE2/SIMD accelerated library for manipulating JPEG image files License: Zlib AND BSD-3-Clause AND MIT AND IJG URL: https://github.com/%{name}/%{name} diff --git a/specs/l/libkeepalive/libkeepalive.spec b/specs/l/libkeepalive/libkeepalive.spec index c0915ff1b05..50192be8978 100644 --- a/specs/l/libkeepalive/libkeepalive.spec +++ b/specs/l/libkeepalive/libkeepalive.spec @@ -3,7 +3,7 @@ Name: libkeepalive Version: 0.3 -Release: 26%{?dist} +Release: 26%{?dist} Summary: Enable TCP keepalive in dynamic binaries URL: http://libkeepalive.sourceforge.net/ diff --git a/specs/l/libklvanc/libklvanc.spec b/specs/l/libklvanc/libklvanc.spec index 94bfc6071be..89c96436ae7 100644 --- a/specs/l/libklvanc/libklvanc.spec +++ b/specs/l/libklvanc/libklvanc.spec @@ -3,7 +3,7 @@ Name: libklvanc Version: 1.6.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: VANC Processing Framework License: LGPL-2.1 URL: https://github.com/stoth68000/libklvanc diff --git a/specs/l/libkml/libkml.spec b/specs/l/libkml/libkml.spec index 29ef1f3f97b..36423edb981 100644 --- a/specs/l/libkml/libkml.spec +++ b/specs/l/libkml/libkml.spec @@ -17,7 +17,7 @@ Name: libkml Version: 1.3.0 -Release: 59%{?dist} +Release: 59%{?dist} Summary: Reference implementation of OGC KML 2.2 License: BSD-3-Clause diff --git a/specs/l/libkrun/libkrun.spec b/specs/l/libkrun/libkrun.spec index 95c2174878c..b62c9eee9ae 100644 --- a/specs/l/libkrun/libkrun.spec +++ b/specs/l/libkrun/libkrun.spec @@ -13,7 +13,7 @@ Name: libkrun Version: 1.17.4 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Dynamic library providing Virtualization-based process isolation capabilities License: Apache-2.0 diff --git a/specs/l/libkrunfw/libkrunfw.spec b/specs/l/libkrunfw/libkrunfw.spec index 16becfc82be..b970f585364 100644 --- a/specs/l/libkrunfw/libkrunfw.spec +++ b/specs/l/libkrunfw/libkrunfw.spec @@ -9,7 +9,7 @@ Name: libkrunfw Version: 5.2.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: A dynamic library bundling the guest payload consumed by libkrun License: LGPL-2.1-only AND GPL-2.0-only URL: https://github.com/containers/libkrunfw diff --git a/specs/l/liblc3/liblc3.spec b/specs/l/liblc3/liblc3.spec index 235fed4d762..3b515e541c8 100644 --- a/specs/l/liblc3/liblc3.spec +++ b/specs/l/liblc3/liblc3.spec @@ -3,7 +3,7 @@ Name: liblc3 Version: 1.1.3 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Low Complexity Communication Codec (LC3) License: Apache-2.0 diff --git a/specs/l/libldac/libldac.spec b/specs/l/libldac/libldac.spec index 2c633dfdb2e..44dcd3c07ff 100644 --- a/specs/l/libldac/libldac.spec +++ b/specs/l/libldac/libldac.spec @@ -9,7 +9,7 @@ Name: libldac Version: %{sonamebase}.0.2.3 -Release: 19%{?dist} +Release: 19%{?dist} Summary: A lossy audio codec for Bluetooth connections License: Apache-2.0 diff --git a/specs/l/libldm/libldm.spec b/specs/l/libldm/libldm.spec index 168aef14441..6e3b79057c3 100644 --- a/specs/l/libldm/libldm.spec +++ b/specs/l/libldm/libldm.spec @@ -3,7 +3,7 @@ Name: libldm Version: 0.2.5 -Release: 2%{?dist}%{?extra_release} +Release: 5%{?dist}%{?extra_release} Summary: A tool to manage Windows dynamic disks # Automatically converted from old format: LGPLv3+ and GPLv3+ - review is highly recommended. diff --git a/specs/l/liblerc/liblerc.spec b/specs/l/liblerc/liblerc.spec index 96baf2333fb..dc065cdd7a9 100644 --- a/specs/l/liblerc/liblerc.spec +++ b/specs/l/liblerc/liblerc.spec @@ -8,7 +8,7 @@ Name: liblerc Version: 4.0.0 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Library for Limited Error Raster Compression License: Apache-2.0 diff --git a/specs/l/liblockfile/liblockfile.spec b/specs/l/liblockfile/liblockfile.spec index 0bb9e88263b..957b934c277 100644 --- a/specs/l/liblockfile/liblockfile.spec +++ b/specs/l/liblockfile/liblockfile.spec @@ -3,7 +3,7 @@ Name: liblockfile Version: 1.17 -Release: 12%{?dist} +Release: 12%{?dist} Summary: This implements a number of functions found in -lmail on SysV systems # regarding license please see file COPYRIGHT diff --git a/specs/l/liblognorm/liblognorm.spec b/specs/l/liblognorm/liblognorm.spec index dfcefeea8a5..0a3ca94142e 100644 --- a/specs/l/liblognorm/liblognorm.spec +++ b/specs/l/liblognorm/liblognorm.spec @@ -5,7 +5,7 @@ Name: liblognorm Version: 2.0.6 -Release: 17%{?dist} +Release: 17%{?dist} Summary: Fast samples-based log normalization library License: LGPL-2.1-or-later AND Apache-2.0 URL: http://www.liblognorm.com diff --git a/specs/l/liblouis/liblouis.spec b/specs/l/liblouis/liblouis.spec index 6ade13523d6..a317618e2b4 100644 --- a/specs/l/liblouis/liblouis.spec +++ b/specs/l/liblouis/liblouis.spec @@ -3,7 +3,7 @@ Name: liblouis Version: 3.33.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Braille translation and back-translation library # LGPL-2.1-or-later: the project as a whole diff --git a/specs/l/liblqr-1/liblqr-1.spec b/specs/l/liblqr-1/liblqr-1.spec index 5ecaa31ac4c..5ebd6033e5e 100644 --- a/specs/l/liblqr-1/liblqr-1.spec +++ b/specs/l/liblqr-1/liblqr-1.spec @@ -3,7 +3,7 @@ Name: liblqr-1 Version: 0.4.2 -Release: 29%{?dist} +Release: 29%{?dist} Summary: LiquidRescale library # Automatically converted from old format: GPLv3 - review is highly recommended. License: GPL-3.0-only diff --git a/specs/l/liblrdf/liblrdf.spec b/specs/l/liblrdf/liblrdf.spec index 6da1a056d30..1f9132764c8 100644 --- a/specs/l/liblrdf/liblrdf.spec +++ b/specs/l/liblrdf/liblrdf.spec @@ -4,7 +4,7 @@ Summary: Library for manipulating RDF files describing LADSPA plugins Name: liblrdf Version: 0.5.0 -Release: 34%{?dist} +Release: 34%{?dist} # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later URL: https://github.com/swh/LRDF diff --git a/specs/l/liblzf/liblzf.spec b/specs/l/liblzf/liblzf.spec index 2d408d22159..cf1b3b64b04 100644 --- a/specs/l/liblzf/liblzf.spec +++ b/specs/l/liblzf/liblzf.spec @@ -3,7 +3,7 @@ Name: liblzf Version: 3.6 -Release: 34%{?dist} +Release: 34%{?dist} Summary: Small data compression library # Automatically converted from old format: BSD or GPLv2+ - review is highly recommended. diff --git a/specs/l/libmad/libmad.spec b/specs/l/libmad/libmad.spec index c2b1a47f783..0c67d2b4f1f 100644 --- a/specs/l/libmad/libmad.spec +++ b/specs/l/libmad/libmad.spec @@ -3,7 +3,7 @@ Name: libmad Version: 0.16.4 -Release: 9%{?dist} +Release: 9%{?dist} Summary: MPEG audio decoder library License: GPL-2.0-or-later diff --git a/specs/l/libmanette/libmanette.spec b/specs/l/libmanette/libmanette.spec index c9a3c0e42e9..3b93a7cc4e3 100644 --- a/specs/l/libmanette/libmanette.spec +++ b/specs/l/libmanette/libmanette.spec @@ -3,7 +3,7 @@ Name: libmanette Version: 0.2.13 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Game controller library License: LGPL-2.1-or-later diff --git a/specs/l/libmatchbox/libmatchbox.spec b/specs/l/libmatchbox/libmatchbox.spec index 73deac78418..7041ca8c143 100644 --- a/specs/l/libmatchbox/libmatchbox.spec +++ b/specs/l/libmatchbox/libmatchbox.spec @@ -4,7 +4,7 @@ Summary: Libraries for the Matchbox Desktop Name: libmatchbox Version: 1.9 -Release: 41%{?dist} +Release: 41%{?dist} Url: http://projects.o-hand.com/matchbox/ License: LGPL-2.1-or-later Source: http://projects.o-hand.com/matchbox/sources/libmatchbox/%{version}/%{name}-%{version}.tar.bz2 diff --git a/specs/l/libmaxminddb/libmaxminddb.spec b/specs/l/libmaxminddb/libmaxminddb.spec index fe8c063c88c..1bf2bce4680 100644 --- a/specs/l/libmaxminddb/libmaxminddb.spec +++ b/specs/l/libmaxminddb/libmaxminddb.spec @@ -4,7 +4,7 @@ Summary: C library for reading MaxMind DB files Name: libmaxminddb Version: 1.12.2 -Release: 6%{?dist} +Release: 6%{?dist} # BSD-3-Clause (src/maxminddb-compat-util.h) and Apache-2.0 (the rest) License: Apache-2.0 AND BSD-3-Clause URL: https://maxmind.github.io/libmaxminddb/ diff --git a/specs/l/libmd/libmd.spec b/specs/l/libmd/libmd.spec index a1d3a605b3f..274cbc9a109 100644 --- a/specs/l/libmd/libmd.spec +++ b/specs/l/libmd/libmd.spec @@ -4,7 +4,7 @@ Summary: Library that provides message digest functions from BSD systems Name: libmd Version: 1.1.0 -Release: 9%{?dist} +Release: 9%{?dist} # Breakdown in COPYING file of libmd release tarball License: BSD-2-Clause AND BSD-3-Clause AND ISC AND Beerware AND LicenseRef-Fedora-Public-Domain URL: https://www.hadrons.org/software/libmd/ diff --git a/specs/l/libmemcached-awesome/libmemcached-awesome.spec b/specs/l/libmemcached-awesome/libmemcached-awesome.spec index 3ff4c1d3fd2..72a39a284bc 100644 --- a/specs/l/libmemcached-awesome/libmemcached-awesome.spec +++ b/specs/l/libmemcached-awesome/libmemcached-awesome.spec @@ -27,7 +27,7 @@ Name: %{libname}-awesome Summary: Client library and command line tools for memcached server Version: %{upstream_version}%{?upstream_prever:~%{upstream_prever}} -Release: 8%{?dist} +Release: 8%{?dist} # SPDX: License: BSD-3-Clause URL: https://github.com/%{gh_owner}/%{gh_project} diff --git a/specs/l/libmicrodns/libmicrodns.spec b/specs/l/libmicrodns/libmicrodns.spec index 1b2b6267fb7..a7866009779 100644 --- a/specs/l/libmicrodns/libmicrodns.spec +++ b/specs/l/libmicrodns/libmicrodns.spec @@ -3,7 +3,7 @@ Name: libmicrodns Version: 0.2.0 -Release: 15%{?dist} +Release: 15%{?dist} Summary: Minimal mDNS resolver library License: LGPL-2.1-or-later diff --git a/specs/l/libmicrohttpd/libmicrohttpd.spec b/specs/l/libmicrohttpd/libmicrohttpd.spec index 86de1f0ba5a..f096a9398ad 100644 --- a/specs/l/libmicrohttpd/libmicrohttpd.spec +++ b/specs/l/libmicrohttpd/libmicrohttpd.spec @@ -3,7 +3,7 @@ Name: libmicrohttpd Version: 1.0.2 -Release: 4%{?dist} +Release: 4%{?dist} Epoch: 1 Summary: Lightweight library for embedding a webserver in applications diff --git a/specs/l/libmnl/libmnl.spec b/specs/l/libmnl/libmnl.spec index 50192355a4f..74b563eeefd 100644 --- a/specs/l/libmnl/libmnl.spec +++ b/specs/l/libmnl/libmnl.spec @@ -3,7 +3,7 @@ Name: libmnl Version: 1.0.5 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Minimalistic Netlink user-space library License: LGPL-2.1-or-later diff --git a/specs/l/libmodulemd/libmodulemd.spec b/specs/l/libmodulemd/libmodulemd.spec index 21b54409cdb..54295a156b3 100644 --- a/specs/l/libmodulemd/libmodulemd.spec +++ b/specs/l/libmodulemd/libmodulemd.spec @@ -27,7 +27,7 @@ Name: %{upstream_name}%{?v2_suffix} Version: 2.15.2 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Module metadata manipulation library # COPYING: MIT diff --git a/specs/l/libmongocrypt/libmongocrypt.spec b/specs/l/libmongocrypt/libmongocrypt.spec index f32ed029a6c..5635cdb4c26 100644 --- a/specs/l/libmongocrypt/libmongocrypt.spec +++ b/specs/l/libmongocrypt/libmongocrypt.spec @@ -18,7 +18,7 @@ Name: %{libname} Summary: The companion C library for client side encryption in drivers Version: 1.15.2 -Release: 2%{?dist} +Release: 2%{?dist} # see kms-message/THIRD_PARTY_NOTICES # kms-message/src/kms_b64.c is ISC diff --git a/specs/l/libmpeg2/libmpeg2.spec b/specs/l/libmpeg2/libmpeg2.spec index b582bf55b36..c69def6bcbd 100644 --- a/specs/l/libmpeg2/libmpeg2.spec +++ b/specs/l/libmpeg2/libmpeg2.spec @@ -3,7 +3,7 @@ Name: libmpeg2 Version: 0.5.1 -Release: 33%{?dist} +Release: 33%{?dist} Summary: MPEG-2 decoder libraries License: GPL-2.0-or-later diff --git a/specs/l/libmspack/libmspack.spec b/specs/l/libmspack/libmspack.spec index 94fe7af4823..ca6f4db64bf 100644 --- a/specs/l/libmspack/libmspack.spec +++ b/specs/l/libmspack/libmspack.spec @@ -3,7 +3,7 @@ Name: libmspack Version: 0.10.1 -Release: 0.15.alpha%{?dist} +Release: 0.18.alpha%{?dist} Summary: Library for CAB and related files compression and decompression # CRC32 is LicenseRef-Fedora-UltraPermissive diff --git a/specs/l/libmtp/libmtp.spec b/specs/l/libmtp/libmtp.spec index cc82cb261b3..8bfdb5aa98b 100644 --- a/specs/l/libmtp/libmtp.spec +++ b/specs/l/libmtp/libmtp.spec @@ -6,7 +6,7 @@ Name: libmtp Version: 1.1.22 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Software library for MTP media players URL: http://libmtp.sourceforge.net/ diff --git a/specs/l/libmysofa/libmysofa.spec b/specs/l/libmysofa/libmysofa.spec index b3f3efc57aa..91ba2376c9f 100644 --- a/specs/l/libmysofa/libmysofa.spec +++ b/specs/l/libmysofa/libmysofa.spec @@ -3,7 +3,7 @@ Name: libmysofa Version: 1.3.3 -Release: 4%{?dist} +Release: 4%{?dist} Summary: C functions for reading HRTFs License: BSD-3-Clause diff --git a/specs/l/libnbd/libnbd.spec b/specs/l/libnbd/libnbd.spec index 98336a56685..3303a64d3aa 100644 --- a/specs/l/libnbd/libnbd.spec +++ b/specs/l/libnbd/libnbd.spec @@ -24,7 +24,7 @@ Name: libnbd Version: 1.24.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: NBD client library in userspace License: LGPL-2.0-or-later AND BSD-3-Clause diff --git a/specs/l/libnet/libnet.spec b/specs/l/libnet/libnet.spec index 6189e8359aa..7edff8f77ac 100644 --- a/specs/l/libnet/libnet.spec +++ b/specs/l/libnet/libnet.spec @@ -4,7 +4,7 @@ Summary: C library for portable packet creation and injection Name: libnet Version: 1.3 -Release: 7%{?dist} +Release: 7%{?dist} License: BSD-2-Clause AND BSD-3-Clause URL: https://github.com/libnet/libnet Source0: https://github.com/libnet/libnet/releases/download/v%{version}/%{name}-%{version}.tar.gz diff --git a/specs/l/libnetfilter_cthelper/libnetfilter_cthelper.spec b/specs/l/libnetfilter_cthelper/libnetfilter_cthelper.spec index cc4034b2d84..83ca0365ff7 100644 --- a/specs/l/libnetfilter_cthelper/libnetfilter_cthelper.spec +++ b/specs/l/libnetfilter_cthelper/libnetfilter_cthelper.spec @@ -3,7 +3,7 @@ Name: libnetfilter_cthelper Version: 1.0.0 -Release: 32%{?dist} +Release: 32%{?dist} Summary: User-space infrastructure for connection tracking helpers License: GPL-2.0-only URL: http://www.netfilter.org/projects/libnetfilter_cthelper/index.html diff --git a/specs/l/libnetfilter_cttimeout/libnetfilter_cttimeout.spec b/specs/l/libnetfilter_cttimeout/libnetfilter_cttimeout.spec index b1bce60a8b9..2e8a93af008 100644 --- a/specs/l/libnetfilter_cttimeout/libnetfilter_cttimeout.spec +++ b/specs/l/libnetfilter_cttimeout/libnetfilter_cttimeout.spec @@ -3,7 +3,7 @@ Name: libnetfilter_cttimeout Version: 1.0.0 -Release: 29%{?dist} +Release: 29%{?dist} Summary: Timeout policy tuning for Netfilter/conntrack License: GPL-2.0-or-later URL: http://netfilter.org diff --git a/specs/l/libnetfilter_queue/libnetfilter_queue.spec b/specs/l/libnetfilter_queue/libnetfilter_queue.spec index 2dd2b052c38..11c3a793251 100644 --- a/specs/l/libnetfilter_queue/libnetfilter_queue.spec +++ b/specs/l/libnetfilter_queue/libnetfilter_queue.spec @@ -5,7 +5,7 @@ Name: libnetfilter_queue Version: 1.0.5 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Netfilter queue userspace library # Most files say GPLv2+, one says v2 only. License: GPL-2.0-only diff --git a/specs/l/libnfnetlink/libnfnetlink.spec b/specs/l/libnfnetlink/libnfnetlink.spec index 8c64193872b..f8a20fb41fb 100644 --- a/specs/l/libnfnetlink/libnfnetlink.spec +++ b/specs/l/libnfnetlink/libnfnetlink.spec @@ -3,7 +3,7 @@ Name: libnfnetlink Version: 1.0.1 -Release: 32%{?dist} +Release: 32%{?dist} Summary: Netfilter netlink userspace library License: GPL-2.0-or-later URL: http://netfilter.org diff --git a/specs/l/libnfs/libnfs.spec b/specs/l/libnfs/libnfs.spec index 6951f49ddf9..1fc0123492a 100644 --- a/specs/l/libnfs/libnfs.spec +++ b/specs/l/libnfs/libnfs.spec @@ -3,7 +3,7 @@ Name: libnfs Version: 6.0.2 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Client library for accessing NFS shares over a network # The library is licensed as LGPL-2.1-or-later # The protocol definition is BSD-2-Clause diff --git a/specs/l/libnftnl/libnftnl.spec b/specs/l/libnftnl/libnftnl.spec index 6c85412f9d5..371aac62f8a 100644 --- a/specs/l/libnftnl/libnftnl.spec +++ b/specs/l/libnftnl/libnftnl.spec @@ -3,7 +3,7 @@ Name: libnftnl Version: 1.2.9 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Library for low-level interaction with nftables Netlink's API over libmnl License: GPL-2.0-or-later diff --git a/specs/l/libnice/libnice.spec b/specs/l/libnice/libnice.spec index c5a1b73c49f..43fcb303478 100644 --- a/specs/l/libnice/libnice.spec +++ b/specs/l/libnice/libnice.spec @@ -3,7 +3,7 @@ Name: libnice Version: 0.1.22 -Release: 9%{?dist} +Release: 9%{?dist} Summary: GLib ICE implementation License: LGPL-2.1-or-later OR MPL-1.1 diff --git a/specs/l/libnma/libnma.spec b/specs/l/libnma/libnma.spec index d4898fb8cb9..04cb1418ecb 100644 --- a/specs/l/libnma/libnma.spec +++ b/specs/l/libnma/libnma.spec @@ -17,7 +17,7 @@ Name: libnma Summary: NetworkManager GUI library Version: 1.10.6 -Release: 12%{?dist} +Release: 12%{?dist} # The entire source code is GPLv2+ except some files in shared/ which are LGPLv2+ License: GPL-2.0-or-later AND LGPL-2.1-or-later URL: https://gitlab.gnome.org/GNOME/libnma/ diff --git a/specs/l/libnotify/libnotify.spec b/specs/l/libnotify/libnotify.spec index 212d4372f88..c29cb260664 100644 --- a/specs/l/libnotify/libnotify.spec +++ b/specs/l/libnotify/libnotify.spec @@ -5,7 +5,7 @@ Name: libnotify Version: 0.8.8 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Desktop notification library License: LGPL-2.1-or-later diff --git a/specs/l/libnsl2/libnsl2.spec b/specs/l/libnsl2/libnsl2.spec index ec548454475..1baca241131 100644 --- a/specs/l/libnsl2/libnsl2.spec +++ b/specs/l/libnsl2/libnsl2.spec @@ -12,7 +12,7 @@ Name: libnsl2 Version: 2.0.1 -Release: 4%{?relsuffix}%{?dist} +Release: 7%{?relsuffix}%{?dist} Summary: Public client interface library for NIS(YP) and NIS+ License: BSD-3-Clause AND LGPL-2.1-or-later diff --git a/specs/l/libntirpc/libntirpc.spec b/specs/l/libntirpc/libntirpc.spec index 303f4c7b66a..1204a20604f 100644 --- a/specs/l/libntirpc/libntirpc.spec +++ b/specs/l/libntirpc/libntirpc.spec @@ -6,7 +6,7 @@ Name: libntirpc Version: 7.2 -Release: 1%{?dev:%{dev}}%{?dist} +Release: 4%{?dev:%{dev}}%{?dist} Summary: New Transport Independent RPC Library License: BSD-3-Clause Url: https://github.com/nfs-ganesha/ntirpc diff --git a/specs/l/libogg/libogg.spec b/specs/l/libogg/libogg.spec index e6474e85ad6..25c97cb1830 100644 --- a/specs/l/libogg/libogg.spec +++ b/specs/l/libogg/libogg.spec @@ -5,7 +5,7 @@ Summary: The Ogg bitstream file format library Name: libogg Epoch: 2 Version: 1.3.6 -Release: 3%{?dist} +Release: 3%{?dist} License: BSD-3-Clause URL: https://www.xiph.org/ diff --git a/specs/l/libopenraw/libopenraw.spec b/specs/l/libopenraw/libopenraw.spec index c4d4b12f4fa..b395bba00ea 100644 --- a/specs/l/libopenraw/libopenraw.spec +++ b/specs/l/libopenraw/libopenraw.spec @@ -4,7 +4,7 @@ Summary: Decode camera RAW files Name: libopenraw Version: 0.1.3 -Release: 21%{?dist} +Release: 21%{?dist} License: LGPL-3.0-or-later URL: http://libopenraw.freedesktop.org/wiki Source0: http://libopenraw.freedesktop.org/download/%{name}-%{version}.tar.bz2 diff --git a/specs/l/liboqs/liboqs.spec b/specs/l/liboqs/liboqs.spec index 8cda876a0d4..750522fe02a 100644 --- a/specs/l/liboqs/liboqs.spec +++ b/specs/l/liboqs/liboqs.spec @@ -4,7 +4,7 @@ %global oqs_version 0.12.0 Name: liboqs Version: %{oqs_version} -Release: 6%{?dist} +Release: 6%{?dist} Summary: liboqs is an open source C library for quantum-safe cryptographic algorithms. #liboqs uses MIT license by itself but includes several files licensed under different terms. diff --git a/specs/l/libotf/libotf.spec b/specs/l/libotf/libotf.spec index 2999b58b7e8..2ac3df9e4bc 100644 --- a/specs/l/libotf/libotf.spec +++ b/specs/l/libotf/libotf.spec @@ -3,7 +3,7 @@ Name: libotf Version: 0.9.16 -Release: 8%{?dist} +Release: 8%{?dist} Summary: A Library for handling OpenType Font License: LGPL-2.1-or-later diff --git a/specs/l/libpaper/libpaper.spec b/specs/l/libpaper/libpaper.spec index 5e2a09d4749..88aa999def4 100644 --- a/specs/l/libpaper/libpaper.spec +++ b/specs/l/libpaper/libpaper.spec @@ -3,7 +3,7 @@ Name: libpaper Version: 2.1.1 -Release: 10%{?dist} +Release: 10%{?dist} # Needed to replace separate paper package Epoch: 1 Summary: Library and tools for handling papersize diff --git a/specs/l/libpcap/libpcap.spec b/specs/l/libpcap/libpcap.spec index 2691765260e..3971ffd64df 100644 --- a/specs/l/libpcap/libpcap.spec +++ b/specs/l/libpcap/libpcap.spec @@ -4,7 +4,7 @@ Name: libpcap Epoch: 14 Version: 1.10.6 -Release: 2%{?dist} +Release: 2%{?dist} Summary: A system-independent interface for user-level packet capture License: ISC AND BSD-2-Clause AND BSD-3-Clause AND BSD-4-Clause-UC URL: https://www.tcpdump.org/ diff --git a/specs/l/libpciaccess/libpciaccess.spec b/specs/l/libpciaccess/libpciaccess.spec index c775eb3dfad..2ffde5828c9 100644 --- a/specs/l/libpciaccess/libpciaccess.spec +++ b/specs/l/libpciaccess/libpciaccess.spec @@ -3,7 +3,7 @@ Name: libpciaccess Version: 0.16 -Release: 17%{?dist} +Release: 17%{?dist} Summary: PCI access library License: HPND AND MIT diff --git a/specs/l/libpfm/libpfm.spec b/specs/l/libpfm/libpfm.spec index f8cc03db559..f87b9c58f25 100644 --- a/specs/l/libpfm/libpfm.spec +++ b/specs/l/libpfm/libpfm.spec @@ -12,7 +12,7 @@ Name: libpfm Version: 4.13.0 -Release: 17%{?dist} +Release: 17%{?dist} Summary: Library to encode performance events for use by perf tool diff --git a/specs/l/libpng/libpng.spec b/specs/l/libpng/libpng.spec index c9634eee3df..c3dc88c051b 100644 --- a/specs/l/libpng/libpng.spec +++ b/specs/l/libpng/libpng.spec @@ -5,7 +5,7 @@ Summary: A library of functions for manipulating PNG image format files Name: libpng Epoch: 2 Version: 1.6.55 -Release: 2%{?dist} +Release: 2%{?dist} License: zlib URL: http://www.libpng.org/pub/png/ diff --git a/specs/l/libppd/libppd.spec b/specs/l/libppd/libppd.spec index 3e343ab2fd4..614a5483266 100644 --- a/specs/l/libppd/libppd.spec +++ b/specs/l/libppd/libppd.spec @@ -12,7 +12,7 @@ Name: libppd Epoch: 1 Version: 2.1.1 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Library for retro-fitting legacy printer drivers # the CUPS exception text is the same as LLVM exception, so using that name with diff --git a/specs/l/libproxy/libproxy.spec b/specs/l/libproxy/libproxy.spec index cc64bf42af3..12560544c9e 100644 --- a/specs/l/libproxy/libproxy.spec +++ b/specs/l/libproxy/libproxy.spec @@ -7,7 +7,7 @@ Name: libproxy Version: 0.5.12 -Release: 2%{?dist} +Release: 2%{?dist} Summary: A library handling all the details of proxy configuration License: LGPL-2.1-or-later diff --git a/specs/l/libqb/libqb.spec b/specs/l/libqb/libqb.spec index c15ad4457ab..eae5867b3a1 100644 --- a/specs/l/libqb/libqb.spec +++ b/specs/l/libqb/libqb.spec @@ -5,7 +5,7 @@ Name: libqb Version: 2.0.8 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Library providing high performance logging, tracing, ipc, and poll License: LGPL-2.1-or-later diff --git a/specs/l/libquicktime/libquicktime.spec b/specs/l/libquicktime/libquicktime.spec index 591b79a1c80..036eee2754a 100644 --- a/specs/l/libquicktime/libquicktime.spec +++ b/specs/l/libquicktime/libquicktime.spec @@ -16,7 +16,7 @@ Summary: Library for reading and writing Quicktime files Name: libquicktime Version: 1.2.4^%{date}git%{shortcommit} -Release: 4%{?dist} +Release: 4%{?dist} License: GPL-2.0-or-later AND LGPL-2.1-or-later URL: http://libquicktime.sourceforge.net/ Source0: https://sourceforge.net/code-snapshots/git/l/li/libquicktime/git.git/libquicktime-git-%{commit}.zip diff --git a/specs/l/librabbitmq/librabbitmq.spec b/specs/l/librabbitmq/librabbitmq.spec index 6ffec06108f..22490ca00ba 100644 --- a/specs/l/librabbitmq/librabbitmq.spec +++ b/specs/l/librabbitmq/librabbitmq.spec @@ -22,7 +22,7 @@ Name: %{libname} Summary: Client library for AMQP Version: 0.15.0 -Release: 4%{?dist} +Release: 4%{?dist} License: MIT URL: https://github.com/alanxz/rabbitmq-c diff --git a/specs/l/libraqm/libraqm.spec b/specs/l/libraqm/libraqm.spec index 76ff816dea4..acc65709e65 100644 --- a/specs/l/libraqm/libraqm.spec +++ b/specs/l/libraqm/libraqm.spec @@ -3,7 +3,7 @@ Name: libraqm Version: 0.10.1 -Release: 4%{?dist} +Release: 4%{?dist} License: MIT Summary: Complex Textlayout Library Summary(ar): مكتبة رقم للنّصوص المركّبة diff --git a/specs/l/libraw1394/libraw1394.spec b/specs/l/libraw1394/libraw1394.spec index 37b9b77d99b..1a8e986e6ce 100644 --- a/specs/l/libraw1394/libraw1394.spec +++ b/specs/l/libraw1394/libraw1394.spec @@ -4,7 +4,7 @@ Summary: Library providing low-level IEEE-1394 access - 2.1.2- Name: libraw1394 Version: 2.1.2 -Release: 25%{?dist} +Release: 25%{?dist} # Automatically converted from old format: LGPLv2+ - review is highly recommended. License: LicenseRef-Callaway-LGPLv2+ Source: http://www.kernel.org/pub/linux/libs/ieee1394/%{name}-%{version}.tar.xz diff --git a/specs/l/librdkafka/librdkafka.spec b/specs/l/librdkafka/librdkafka.spec index 1ac6ed77e9f..4d8747bf8fb 100644 --- a/specs/l/librdkafka/librdkafka.spec +++ b/specs/l/librdkafka/librdkafka.spec @@ -5,7 +5,7 @@ Name: librdkafka Version: 2.4.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: The Apache Kafka C library License: Apache-2.0 diff --git a/specs/l/libreplaygain/libreplaygain.spec b/specs/l/libreplaygain/libreplaygain.spec index 088078c4ff8..46d43aa043b 100644 --- a/specs/l/libreplaygain/libreplaygain.spec +++ b/specs/l/libreplaygain/libreplaygain.spec @@ -5,7 +5,7 @@ Name: libreplaygain Version: 0 -Release: 0.29.20110810svn%{svn_release}%{?dist} +Release: 0.32.20110810svn%{svn_release}%{?dist} Summary: Gain analysis library from Musepack # Automatically converted from old format: LGPLv2+ - review is highly recommended. diff --git a/specs/l/librepo/librepo.spec b/specs/l/librepo/librepo.spec index 383f75d97ef..2c88d8548cd 100644 --- a/specs/l/librepo/librepo.spec +++ b/specs/l/librepo/librepo.spec @@ -34,7 +34,7 @@ Name: librepo Version: 1.20.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Repodata downloading library License: LGPL-2.1-or-later diff --git a/specs/l/libretls/libretls.spec b/specs/l/libretls/libretls.spec index 4a744799fca..683972d446f 100644 --- a/specs/l/libretls/libretls.spec +++ b/specs/l/libretls/libretls.spec @@ -4,7 +4,7 @@ Summary: Port of libtls from LibreSSL to OpenSSL Name: libretls Version: 3.8.1 -Release: 7%{?dist} +Release: 7%{?dist} # libretls itself is ISC but uses other source codes, breakdown: # BSD-3-Clause: compat/strsep.c # MIT: compat/timegm.c diff --git a/specs/l/librhsm/librhsm.spec b/specs/l/librhsm/librhsm.spec index 26fb1fac23f..2f4a1367802 100644 --- a/specs/l/librhsm/librhsm.spec +++ b/specs/l/librhsm/librhsm.spec @@ -3,7 +3,7 @@ Name: librhsm Version: 0.0.4 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Red Hat Subscription Manager library License: LGPL-2.1-or-later URL: https://github.com/rpm-software-management/librhsm diff --git a/specs/l/librist/librist.spec b/specs/l/librist/librist.spec index 74660ce388b..a6d091e2f81 100644 --- a/specs/l/librist/librist.spec +++ b/specs/l/librist/librist.spec @@ -8,7 +8,7 @@ Name: librist Version: 0.2.7 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Library for Reliable Internet Stream Transport (RIST) protocol # Everything used is BSD-2-Clause except getopt-shim, which is ISC as well diff --git a/specs/l/librttopo/librttopo.spec b/specs/l/librttopo/librttopo.spec index 94ed5cc75ff..4d00d0f72d1 100644 --- a/specs/l/librttopo/librttopo.spec +++ b/specs/l/librttopo/librttopo.spec @@ -17,7 +17,7 @@ Name: librttopo Version: 1.1.0 -Release: 19%{?dist} +Release: 19%{?dist} Summary: Create and manage SQL/MM topologies License: GPL-2.0-or-later diff --git a/specs/l/libsamplerate/libsamplerate.spec b/specs/l/libsamplerate/libsamplerate.spec index 306898fa0b1..9838b098035 100644 --- a/specs/l/libsamplerate/libsamplerate.spec +++ b/specs/l/libsamplerate/libsamplerate.spec @@ -4,7 +4,7 @@ Summary: Sample rate conversion library for audio data Name: libsamplerate Version: 0.2.2 -Release: 12%{?dist} +Release: 12%{?dist} License: BSD-2-Clause URL: https://libsndfile.github.io/libsamplerate/ Source0: https://github.com/libsndfile/%{name}/releases/download/%{version}/%{name}-%{version}.tar.xz diff --git a/specs/l/libsass/libsass.spec b/specs/l/libsass/libsass.spec index 46a93784840..74fcb6eca7e 100644 --- a/specs/l/libsass/libsass.spec +++ b/specs/l/libsass/libsass.spec @@ -4,7 +4,7 @@ Name: libsass Version: 3.6.6 %global soname_version 1 -Release: 6%{?dist} +Release: 6%{?dist} Summary: C/C++ port of the Sass CSS precompiler # src/ast.hpp, src/utf8* is BSL-1.0 diff --git a/specs/l/libseccomp/libseccomp.spec b/specs/l/libseccomp/libseccomp.spec index fbc470ddf48..5703ef2134d 100644 --- a/specs/l/libseccomp/libseccomp.spec +++ b/specs/l/libseccomp/libseccomp.spec @@ -3,7 +3,7 @@ Name: libseccomp Version: 2.6.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Enhanced seccomp library License: LGPL-2.1-only URL: https://github.com/seccomp/libseccomp diff --git a/specs/l/libserf/libserf.spec b/specs/l/libserf/libserf.spec index 5b4653d519c..8d940452c1d 100644 --- a/specs/l/libserf/libserf.spec +++ b/specs/l/libserf/libserf.spec @@ -6,7 +6,7 @@ Name: libserf Version: 1.3.10 -Release: 13%{?dist} +Release: 13%{?dist} Summary: High-Performance Asynchronous HTTP Client Library License: Apache-2.0 URL: https://serf.apache.org/ diff --git a/specs/l/libshout/libshout.spec b/specs/l/libshout/libshout.spec index 3a4cee7bc81..20a9e46a94a 100644 --- a/specs/l/libshout/libshout.spec +++ b/specs/l/libshout/libshout.spec @@ -3,7 +3,7 @@ Name: libshout Version: 2.4.6 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Icecast source streaming library # COPYING: GPLv2 text diff --git a/specs/l/libsigc++20/libsigc++20.spec b/specs/l/libsigc++20/libsigc++20.spec index f9c151ef96d..6bd8d29c005 100644 --- a/specs/l/libsigc++20/libsigc++20.spec +++ b/specs/l/libsigc++20/libsigc++20.spec @@ -6,7 +6,7 @@ Name: libsigc++20 Version: 2.12.1 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Typesafe signal framework for C++ License: LGPL-2.1-or-later diff --git a/specs/l/libsigc++30/libsigc++30.spec b/specs/l/libsigc++30/libsigc++30.spec index 554c8af8283..6ffda2888df 100644 --- a/specs/l/libsigc++30/libsigc++30.spec +++ b/specs/l/libsigc++30/libsigc++30.spec @@ -6,7 +6,7 @@ Name: libsigc++30 Version: 3.6.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Typesafe signal framework for C++ License: LGPL-2.1-or-later diff --git a/specs/l/libslirp/libslirp.spec b/specs/l/libslirp/libslirp.spec index 9fe294c1cae..71c630ef125 100644 --- a/specs/l/libslirp/libslirp.spec +++ b/specs/l/libslirp/libslirp.spec @@ -3,7 +3,7 @@ Name: libslirp Version: 4.9.1 -Release: 3%{?dist} +Release: 3%{?dist} Summary: A general purpose TCP-IP emulator # check the SPDX tags in source files for details diff --git a/specs/l/libsmi/libsmi.spec b/specs/l/libsmi/libsmi.spec index 1d40039c9f3..161826de0b3 100644 --- a/specs/l/libsmi/libsmi.spec +++ b/specs/l/libsmi/libsmi.spec @@ -15,7 +15,7 @@ Name: libsmi Version: 0.4.8 -Release: 45%{?dist} +Release: 45%{?dist} Summary: A library to access SMI MIB information # lib/parser-smi.c is GPL-2.0-or-later, but with the Bison exception that says it can be used under any terms # as part of the larger libsmi work, so we are choosing to use it under the core libsmi licenses instead. diff --git a/specs/l/libsndfile/libsndfile.spec b/specs/l/libsndfile/libsndfile.spec index a53ef67ff4f..e11a1adcae5 100644 --- a/specs/l/libsndfile/libsndfile.spec +++ b/specs/l/libsndfile/libsndfile.spec @@ -4,7 +4,7 @@ Summary: Library for reading and writing sound files Name: libsndfile Version: 1.2.2 -Release: 12%{?dist} +Release: 12%{?dist} License: LGPL-2.1-or-later AND GPL-2.0-or-later AND BSD-3-Clause URL: http://libsndfile.github.io/libsndfile/ Source0: https://github.com/libsndfile/libsndfile/releases/download/%{version}/libsndfile-%{version}.tar.xz diff --git a/specs/l/libsodium/libsodium.spec b/specs/l/libsodium/libsodium.spec index a6859ae9ef0..5e65a2b95ef 100644 --- a/specs/l/libsodium/libsodium.spec +++ b/specs/l/libsodium/libsodium.spec @@ -22,7 +22,7 @@ Name: libsodium Version: 1.0.21 -Release: 4%{?dist} +Release: 4%{?dist} Summary: The Sodium crypto library # Most source code is ISC, except: # BSD-2-Clause: diff --git a/specs/l/libspatialite/libspatialite.spec b/specs/l/libspatialite/libspatialite.spec index 8f51a0dca3b..c296f76cd84 100644 --- a/specs/l/libspatialite/libspatialite.spec +++ b/specs/l/libspatialite/libspatialite.spec @@ -12,7 +12,7 @@ Name: libspatialite Version: 5.1.0 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Enables SQLite to support spatial data License: MPL-1.1 OR GPL-2.0-or-later OR LGPL-2.0-or-later diff --git a/specs/l/libspectre/libspectre.spec b/specs/l/libspectre/libspectre.spec index 5522628e3e0..65471fad614 100644 --- a/specs/l/libspectre/libspectre.spec +++ b/specs/l/libspectre/libspectre.spec @@ -3,7 +3,7 @@ Name: libspectre Version: 0.2.12 -Release: 11%{?dist} +Release: 11%{?dist} Summary: A library for rendering PostScript(TM) documents License: GPL-2.0-or-later diff --git a/specs/l/libspf2/libspf2.spec b/specs/l/libspf2/libspf2.spec index 8fae0526eac..72bd40a2b26 100644 --- a/specs/l/libspf2/libspf2.spec +++ b/specs/l/libspf2/libspf2.spec @@ -17,7 +17,7 @@ Name: libspf2 Version: 1.2.11 -Release: 19.20210922git%{git}%{?dist} +Release: 22.20210922git%{git}%{?dist} Summary: An implementation of the SPF specification License: BSD or LGPLv2+ Url: http://www.libspf2.org/ diff --git a/specs/l/libspiro/libspiro.spec b/specs/l/libspiro/libspiro.spec index b0d39edf555..16297478427 100644 --- a/specs/l/libspiro/libspiro.spec +++ b/specs/l/libspiro/libspiro.spec @@ -3,7 +3,7 @@ Name: libspiro Version: 20240903 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Library to simplify the drawing of beautiful curves # The files that are used to compile this library are all in GPLv3+ diff --git a/specs/l/libsrtp/libsrtp.spec b/specs/l/libsrtp/libsrtp.spec index fe4bb867d6f..79e4ba98d16 100644 --- a/specs/l/libsrtp/libsrtp.spec +++ b/specs/l/libsrtp/libsrtp.spec @@ -3,7 +3,7 @@ Name: libsrtp Version: 2.6.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: An implementation of the Secure Real-time Transport Protocol (SRTP) License: BSD-3-Clause URL: https://github.com/cisco/libsrtp diff --git a/specs/l/libssh/libssh.spec b/specs/l/libssh/libssh.spec index fbc698367b7..974c96b6fbf 100644 --- a/specs/l/libssh/libssh.spec +++ b/specs/l/libssh/libssh.spec @@ -3,7 +3,7 @@ Name: libssh Version: 0.11.4 -Release: 2%{?dist} +Release: 2%{?dist} Summary: A library implementing the SSH protocol License: LGPL-2.1-or-later URL: http://www.libssh.org diff --git a/specs/l/libssh2/libssh2.spec b/specs/l/libssh2/libssh2.spec index f66f1de75d7..b0d2e8f4561 100644 --- a/specs/l/libssh2/libssh2.spec +++ b/specs/l/libssh2/libssh2.spec @@ -9,7 +9,7 @@ Name: libssh2 Version: 1.11.1 -Release: 5%{?dist} +Release: 5%{?dist} Summary: A library implementing the SSH2 protocol License: BSD-3-Clause URL: https://www.libssh2.org/ diff --git a/specs/l/libstoragemgmt/libstoragemgmt.spec b/specs/l/libstoragemgmt/libstoragemgmt.spec index 10b14e7a866..53be07afb07 100644 --- a/specs/l/libstoragemgmt/libstoragemgmt.spec +++ b/specs/l/libstoragemgmt/libstoragemgmt.spec @@ -8,7 +8,7 @@ Name: libstoragemgmt Version: 1.10.3 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Storage array management library License: LGPL-2.1-or-later URL: https://github.com/libstorage/libstoragemgmt diff --git a/specs/l/libtheora/libtheora.spec b/specs/l/libtheora/libtheora.spec index 9ccaa0c2056..b5f34de2851 100644 --- a/specs/l/libtheora/libtheora.spec +++ b/specs/l/libtheora/libtheora.spec @@ -9,7 +9,7 @@ Name: libtheora Epoch: 1 Version: 1.1.1 -Release: 41%{?dist} +Release: 41%{?dist} Summary: Theora Video Compression Codec License: BSD-3-Clause URL: http://www.theora.org diff --git a/specs/l/libtiff/libtiff.spec b/specs/l/libtiff/libtiff.spec index 2f94dc915bf..cf59fd5f31a 100644 --- a/specs/l/libtiff/libtiff.spec +++ b/specs/l/libtiff/libtiff.spec @@ -4,7 +4,7 @@ Summary: Library of functions for manipulating TIFF format image files Name: libtiff Version: 4.7.1 -Release: 2%{?dist} +Release: 2%{?dist} License: libtiff URL: http://www.simplesystems.org/libtiff/ diff --git a/specs/l/libtimezonemap/libtimezonemap.spec b/specs/l/libtimezonemap/libtimezonemap.spec index 8c6e9f7b66b..906b1872f99 100644 --- a/specs/l/libtimezonemap/libtimezonemap.spec +++ b/specs/l/libtimezonemap/libtimezonemap.spec @@ -3,7 +3,7 @@ Name: libtimezonemap Version: 0.4.5.3 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Time zone map widget for Gtk+ # Automatically converted from old format: GPLv3 - review is highly recommended. diff --git a/specs/l/libtirpc/libtirpc.spec b/specs/l/libtirpc/libtirpc.spec index 690899d0c3a..499dc47c967 100644 --- a/specs/l/libtirpc/libtirpc.spec +++ b/specs/l/libtirpc/libtirpc.spec @@ -5,7 +5,7 @@ Name: libtirpc Version: 1.3.7 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Transport Independent RPC Library License: SISSL AND BSD-3-Clause URL: http://git.linux-nfs.org/?p=steved/libtirpc.git;a=summary diff --git a/specs/l/libtomcrypt/libtomcrypt.spec b/specs/l/libtomcrypt/libtomcrypt.spec index 44e74a3b941..076836563a6 100644 --- a/specs/l/libtomcrypt/libtomcrypt.spec +++ b/specs/l/libtomcrypt/libtomcrypt.spec @@ -7,7 +7,7 @@ Name: libtomcrypt Version: 1.18.2 -Release: 23%{?dist} +Release: 23%{?dist} Summary: A comprehensive, portable cryptographic toolkit License: Unlicense OR WTFPL URL: http://www.libtom.net/ diff --git a/specs/l/libtpms/libtpms.spec b/specs/l/libtpms/libtpms.spec index 57371fe5269..4fc5ca78d75 100644 --- a/specs/l/libtpms/libtpms.spec +++ b/specs/l/libtpms/libtpms.spec @@ -3,7 +3,7 @@ Name: libtpms Version: 0.10.2 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Library providing Trusted Platform Module (TPM) functionality License: BSD-3-Clause AND LicenseRef-TCGL diff --git a/specs/l/libvdpau/libvdpau.spec b/specs/l/libvdpau/libvdpau.spec index 5e7ae0a1d5a..22bd7ced912 100644 --- a/specs/l/libvdpau/libvdpau.spec +++ b/specs/l/libvdpau/libvdpau.spec @@ -3,7 +3,7 @@ Name: libvdpau Version: 1.5 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Wrapper library for the Video Decode and Presentation API License: MIT URL: https://freedesktop.org/wiki/Software/VDPAU/ diff --git a/specs/l/libverto/libverto.spec b/specs/l/libverto/libverto.spec index 89645800517..6018c638d22 100644 --- a/specs/l/libverto/libverto.spec +++ b/specs/l/libverto/libverto.spec @@ -5,7 +5,7 @@ Name: libverto Version: 0.3.2 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Main loop abstraction library License: MIT diff --git a/specs/l/libvisual/libvisual.spec b/specs/l/libvisual/libvisual.spec index fcd3799735e..b1e10567010 100644 --- a/specs/l/libvisual/libvisual.spec +++ b/specs/l/libvisual/libvisual.spec @@ -5,7 +5,7 @@ Name: libvisual Version: 0.4.2 -Release: 4%{?dist} +Release: 4%{?dist} Epoch: 1 Summary: Abstraction library for audio visualisation plugins diff --git a/specs/l/libvncserver/libvncserver.spec b/specs/l/libvncserver/libvncserver.spec index 26e6f6d2d00..1e23f4b26c1 100644 --- a/specs/l/libvncserver/libvncserver.spec +++ b/specs/l/libvncserver/libvncserver.spec @@ -6,7 +6,7 @@ Summary: Library to make writing a VNC server easy Name: libvncserver Version: 0.9.15 -Release: 6%{?dist} +Release: 6%{?dist} # NOTE: --with-filetransfer => GPLv2 License: GPL-2.0-or-later diff --git a/specs/l/libvorbis/libvorbis.spec b/specs/l/libvorbis/libvorbis.spec index aa4bad55453..6fcbee5c181 100644 --- a/specs/l/libvorbis/libvorbis.spec +++ b/specs/l/libvorbis/libvorbis.spec @@ -6,7 +6,7 @@ Summary: The Vorbis General Audio Compression Codec Name: libvorbis Version: 1.3.7 -Release: 14%{?dist} +Release: 14%{?dist} Epoch: 1 License: BSD-3-Clause URL: https://www.xiph.org/ diff --git a/specs/l/libvpx/libvpx.spec b/specs/l/libvpx/libvpx.spec index 2a05e7f90db..c9333e10d14 100644 --- a/specs/l/libvpx/libvpx.spec +++ b/specs/l/libvpx/libvpx.spec @@ -9,7 +9,7 @@ Name: libvpx Summary: VP8/VP9 Video Codec SDK Version: 1.15.0 -Release: 5%{?dist} +Release: 5%{?dist} License: BSD-3-Clause URL: http://www.webmproject.org/code/ Source0: https://github.com/webmproject/libvpx/archive/v%{version}.tar.gz diff --git a/specs/l/libwacom/libwacom.spec b/specs/l/libwacom/libwacom.spec index b5a3d15ba46..e229a7dd462 100644 --- a/specs/l/libwacom/libwacom.spec +++ b/specs/l/libwacom/libwacom.spec @@ -3,7 +3,7 @@ Name: libwacom Version: 2.18.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Tablet Information Client Library Requires: %{name}-data diff --git a/specs/l/libwebp/libwebp.spec b/specs/l/libwebp/libwebp.spec index cbe3ea68b82..8c281e94881 100644 --- a/specs/l/libwebp/libwebp.spec +++ b/specs/l/libwebp/libwebp.spec @@ -27,7 +27,7 @@ Name: libwebp Version: 1.6.0 -Release: 4%{?dist} +Release: 4%{?dist} URL: http://webmproject.org/ Summary: Library and tools for the WebP graphics format # Additional IPR is licensed as well. See PATENTS file for details diff --git a/specs/l/libxcb/libxcb.spec b/specs/l/libxcb/libxcb.spec index 4dfeedb3b19..8650fb8589c 100644 --- a/specs/l/libxcb/libxcb.spec +++ b/specs/l/libxcb/libxcb.spec @@ -5,7 +5,7 @@ Name: libxcb Version: 1.17.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: A C binding to the X11 protocol License: X11 URL: http://xcb.freedesktop.org/ diff --git a/specs/l/libxcrypt/libxcrypt.spec b/specs/l/libxcrypt/libxcrypt.spec index 1ea7a5d2745..17345c0874a 100644 --- a/specs/l/libxcrypt/libxcrypt.spec +++ b/specs/l/libxcrypt/libxcrypt.spec @@ -179,7 +179,7 @@ fi \ Name: libxcrypt Version: 4.5.2 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Extended crypt library for descrypt, md5crypt, bcrypt, and others # For explicit license breakdown, see the diff --git a/specs/l/libxcvt/libxcvt.spec b/specs/l/libxcvt/libxcvt.spec index 69f32806ead..11d1e2048b6 100644 --- a/specs/l/libxcvt/libxcvt.spec +++ b/specs/l/libxcvt/libxcvt.spec @@ -3,7 +3,7 @@ Name: libxcvt Version: 0.1.2 -Release: 11%{?dist} +Release: 11%{?dist} Summary: VESA CVT standard timing modelines generator URL: https://gitlab.freedesktop.org/xorg/lib/libxcvt/ diff --git a/specs/l/libxdg-basedir/libxdg-basedir.spec b/specs/l/libxdg-basedir/libxdg-basedir.spec index 848cf2cde6e..ed574717d7f 100644 --- a/specs/l/libxdg-basedir/libxdg-basedir.spec +++ b/specs/l/libxdg-basedir/libxdg-basedir.spec @@ -3,7 +3,7 @@ Name: libxdg-basedir Version: 1.2.0 -Release: 37%{?dist} +Release: 37%{?dist} Summary: Implementation of the XDG Base Directory Specifications License: MIT diff --git a/specs/l/libxfce4windowing/libxfce4windowing.spec b/specs/l/libxfce4windowing/libxfce4windowing.spec index 0e7a11a67f1..e099a5b87cd 100644 --- a/specs/l/libxfce4windowing/libxfce4windowing.spec +++ b/specs/l/libxfce4windowing/libxfce4windowing.spec @@ -16,7 +16,7 @@ Name: libxfce4windowing Version: 4.20.3 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Windowing concept abstraction library for X11 and Wayland License: LGPL-2.1-or-later diff --git a/specs/l/libxkbcommon/libxkbcommon.spec b/specs/l/libxkbcommon/libxkbcommon.spec index 0812b6b80b8..8e31bdc38f3 100644 --- a/specs/l/libxkbcommon/libxkbcommon.spec +++ b/specs/l/libxkbcommon/libxkbcommon.spec @@ -5,7 +5,7 @@ Name: libxkbcommon Version: 1.11.0 -Release: 1%{?gitdate:.%{gitdate}}%{?dist} +Release: 4%{?gitdate:.%{gitdate}}%{?dist} Summary: X.Org X11 XKB parsing library License: MIT AND X11 AND MIT-CMU URL: http://www.x.org diff --git a/specs/l/libxklavier/libxklavier.spec b/specs/l/libxklavier/libxklavier.spec index 3f67959a1cd..68673c8242c 100644 --- a/specs/l/libxklavier/libxklavier.spec +++ b/specs/l/libxklavier/libxklavier.spec @@ -4,7 +4,7 @@ Summary: High-level API for X Keyboard Extension Name: libxklavier Version: 5.4 -Release: 30%{?dist} +Release: 30%{?dist} License: LGPL-2.0-or-later URL: http://www.freedesktop.org/wiki/Software/LibXklavier BuildRequires: make diff --git a/specs/l/libxml++/libxml++.spec b/specs/l/libxml++/libxml++.spec index a809116a5e4..fe9d3dfbf19 100644 --- a/specs/l/libxml++/libxml++.spec +++ b/specs/l/libxml++/libxml++.spec @@ -7,7 +7,7 @@ Name: libxml++ Version: 2.42.3 -Release: 8%{?dist} +Release: 8%{?dist} Summary: C++ wrapper for the libxml2 XML parser library License: LGPL-2.1-or-later diff --git a/specs/l/libxml2/libxml2.spec b/specs/l/libxml2/libxml2.spec index dc4a57d6b4a..1cff23818f0 100644 --- a/specs/l/libxml2/libxml2.spec +++ b/specs/l/libxml2/libxml2.spec @@ -3,7 +3,7 @@ Name: libxml2 Version: 2.12.10 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Library providing XML and HTML support # list.c, dict.c and few others use ISC-Veillard diff --git a/specs/l/libxshmfence/libxshmfence.spec b/specs/l/libxshmfence/libxshmfence.spec index 90d09713129..c885dba480f 100644 --- a/specs/l/libxshmfence/libxshmfence.spec +++ b/specs/l/libxshmfence/libxshmfence.spec @@ -3,7 +3,7 @@ Name: libxshmfence Version: 1.3.2 -Release: 8%{?dist} +Release: 8%{?dist} Summary: X11 shared memory fences License: HPND-sell-variant diff --git a/specs/l/libxslt/libxslt.spec b/specs/l/libxslt/libxslt.spec index 461b9ab0d80..97e4b4ffe1c 100644 --- a/specs/l/libxslt/libxslt.spec +++ b/specs/l/libxslt/libxslt.spec @@ -4,7 +4,7 @@ Name: libxslt Summary: Library providing the Gnome XSLT engine Version: 1.1.43 -Release: 6%{?dist} +Release: 6%{?dist} License: MIT URL: https://gitlab.gnome.org/GNOME/libxslt diff --git a/specs/l/libyaml/libyaml.spec b/specs/l/libyaml/libyaml.spec index 1a1abbf070c..a7229f2ff4b 100644 --- a/specs/l/libyaml/libyaml.spec +++ b/specs/l/libyaml/libyaml.spec @@ -9,7 +9,7 @@ Name: libyaml Version: 0.2.5 -Release: 20%{?dist} +Release: 20%{?dist} Summary: YAML 1.1 parser and emitter written in C # SPDX diff --git a/specs/l/libyubikey/libyubikey.spec b/specs/l/libyubikey/libyubikey.spec index f301e96c19a..2fb94197665 100644 --- a/specs/l/libyubikey/libyubikey.spec +++ b/specs/l/libyubikey/libyubikey.spec @@ -3,7 +3,7 @@ Name: libyubikey Version: 1.13 -Release: 27%{?dist} +Release: 27%{?dist} Summary: C library for decrypting and parsing Yubikey One-time passwords # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/l/libzypp/libzypp.spec b/specs/l/libzypp/libzypp.spec index 6b22ceba2dd..efccf3a3147 100644 --- a/specs/l/libzypp/libzypp.spec +++ b/specs/l/libzypp/libzypp.spec @@ -21,7 +21,7 @@ Requires: %{_bindir}/%{1} Name: libzypp Version: 17.38.1 -Release: 3%{?dist} +Release: 3%{?dist} Summary: A package management library # Automatically converted from old format: GPLv2+ - review is highly recommended. diff --git a/specs/l/linenoise/linenoise.spec b/specs/l/linenoise/linenoise.spec index f2acc2ae335..a06ac2efd5e 100644 --- a/specs/l/linenoise/linenoise.spec +++ b/specs/l/linenoise/linenoise.spec @@ -7,7 +7,7 @@ Name: linenoise Version: 1.0 -Release: 13.20200312git%{shortcommit}%{?dist} +Release: 16.20200312git%{shortcommit}%{?dist} Summary: Minimal replacement for readline License: BSD-2-Clause URL: https://github.com/antirez/linenoise diff --git a/specs/l/linux-firmware/linux-firmware.spec b/specs/l/linux-firmware/linux-firmware.spec index 1d20a680e0a..e4d6f404c33 100644 --- a/specs/l/linux-firmware/linux-firmware.spec +++ b/specs/l/linux-firmware/linux-firmware.spec @@ -8,7 +8,7 @@ Name: linux-firmware Version: 20260221 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Firmware files used by the Linux kernel License: GPL-1.0-or-later AND GPL-2.0-or-later AND MIT AND LicenseRef-Callaway-Redistributable-no-modification-permitted URL: http://www.kernel.org/ diff --git a/specs/l/linuxconsoletools/linuxconsoletools.spec b/specs/l/linuxconsoletools/linuxconsoletools.spec index bd4b36b5977..c7ff442cf71 100644 --- a/specs/l/linuxconsoletools/linuxconsoletools.spec +++ b/specs/l/linuxconsoletools/linuxconsoletools.spec @@ -5,7 +5,7 @@ Name: linuxconsoletools Version: 1.8.1 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Tools for connecting joysticks & legacy devices to the kernel's input subsystem License: GPL-2.0-or-later URL: http://sourceforge.net/projects/linuxconsole/ diff --git a/specs/l/linuxptp/linuxptp.spec b/specs/l/linuxptp/linuxptp.spec index 65d9d7ca337..96f3294bc87 100644 --- a/specs/l/linuxptp/linuxptp.spec +++ b/specs/l/linuxptp/linuxptp.spec @@ -9,7 +9,7 @@ Name: linuxptp Version: 4.4 -Release: 8%{?dist} +Release: 8%{?dist} Summary: PTP implementation for Linux License: GPL-2.0-or-later diff --git a/specs/l/lirc/lirc.spec b/specs/l/lirc/lirc.spec index 304acc491fe..baafbab0b51 100644 --- a/specs/l/lirc/lirc.spec +++ b/specs/l/lirc/lirc.spec @@ -12,7 +12,7 @@ Name: lirc Version: 0.10.2 -Release: 4%{?tag:.}%{?tag}%{?dist} +Release: 7%{?tag:.}%{?tag}%{?dist} Summary: The Linux Infrared Remote Control package %global repo http://downloads.sourceforge.net/lirc/LIRC/%{version} diff --git a/specs/l/lld18/lld18.spec b/specs/l/lld18/lld18.spec index 6e0a5642335..4dbec0cadbd 100644 --- a/specs/l/lld18/lld18.spec +++ b/specs/l/lld18/lld18.spec @@ -52,7 +52,7 @@ Name: %{pkg_name} Version: %{lld_version}%{?rc_ver:~rc%{rc_ver}}%{?llvm_snapshot_version_suffix:~%{llvm_snapshot_version_suffix}} -Release: 9%{?dist} +Release: 9%{?dist} Summary: The LLVM Linker License: Apache-2.0 WITH LLVM-exception OR NCSA diff --git a/specs/l/lldpad/lldpad.spec b/specs/l/lldpad/lldpad.spec index d00b9ae1e49..39c6cd95662 100644 --- a/specs/l/lldpad/lldpad.spec +++ b/specs/l/lldpad/lldpad.spec @@ -10,7 +10,7 @@ Name: lldpad Version: 1.1.0 -Release: 14.git%{checkout}%{?dist} +Release: 17.git%{checkout}%{?dist} Summary: Intel LLDP Agent License: GPL-2.0-only URL: http://open-lldp.org/ diff --git a/specs/l/lldpd/lldpd.spec b/specs/l/lldpd/lldpd.spec index 2104a32af10..331c14b3e3a 100644 --- a/specs/l/lldpd/lldpd.spec +++ b/specs/l/lldpd/lldpd.spec @@ -3,7 +3,7 @@ Name: lldpd Version: 1.0.18 -Release: 5%{?dist} +Release: 5%{?dist} Summary: ISC-licensed implementation of LLDP License: ISC diff --git a/specs/l/llvm15/llvm15.spec b/specs/l/llvm15/llvm15.spec index efb7a3ea685..4f8fa807217 100644 --- a/specs/l/llvm15/llvm15.spec +++ b/specs/l/llvm15/llvm15.spec @@ -80,7 +80,7 @@ Name: %{pkg_name} Version: %{maj_ver}.%{min_ver}.%{patch_ver}%{?rc_ver:~rc%{rc_ver}} -Release: 15%{?dist} +Release: 15%{?dist} Summary: The Low Level Virtual Machine License: Apache-2.0 WITH LLVM-exception OR NCSA diff --git a/specs/l/llvm18/llvm18.spec b/specs/l/llvm18/llvm18.spec index 117b897ed3c..cfb3b9bb663 100644 --- a/specs/l/llvm18/llvm18.spec +++ b/specs/l/llvm18/llvm18.spec @@ -96,7 +96,7 @@ Name: %{pkg_name} Version: %{maj_ver}.%{min_ver}.%{patch_ver}%{?rc_ver:~rc%{rc_ver}}%{?llvm_snapshot_version_suffix:~%{llvm_snapshot_version_suffix}} -Release: 8%{?dist} +Release: 8%{?dist} Summary: The Low Level Virtual Machine License: Apache-2.0 WITH LLVM-exception OR NCSA diff --git a/specs/l/lorax/lorax.spec b/specs/l/lorax/lorax.spec index 52eb69defe2..863823044c2 100644 --- a/specs/l/lorax/lorax.spec +++ b/specs/l/lorax/lorax.spec @@ -8,7 +8,7 @@ Name: lorax Version: 43.11 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Tool for creating the anaconda install images License: GPL-2.0-or-later diff --git a/specs/l/lpcnetfreedv/lpcnetfreedv.spec b/specs/l/lpcnetfreedv/lpcnetfreedv.spec index 4eec251bb9b..1d6fd9bd337 100644 --- a/specs/l/lpcnetfreedv/lpcnetfreedv.spec +++ b/specs/l/lpcnetfreedv/lpcnetfreedv.spec @@ -6,7 +6,7 @@ Name: lpcnetfreedv Version: 0.5 -Release: 10%{?dist} +Release: 10%{?dist} Summary: LPCNet for FreeDV # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/l/lshw/lshw.spec b/specs/l/lshw/lshw.spec index e90c6c1e954..d28bdbf74e3 100644 --- a/specs/l/lshw/lshw.spec +++ b/specs/l/lshw/lshw.spec @@ -8,7 +8,7 @@ Summary: Hardware lister Name: lshw Version: B.02.20 -Release: 11%{?dist} +Release: 11%{?dist} License: GPL-2.0-only URL: https://github.com/lyonel/lshw Source0: https://github.com/lyonel/lshw/archive/refs/tags/%{version}.tar.gz diff --git a/specs/l/lsscsi/lsscsi.spec b/specs/l/lsscsi/lsscsi.spec index 73b41d5f111..f2785cf3466 100644 --- a/specs/l/lsscsi/lsscsi.spec +++ b/specs/l/lsscsi/lsscsi.spec @@ -4,7 +4,7 @@ Summary: List SCSI devices (or hosts) and associated information Name: lsscsi Version: 0.32 -Release: 15%{?dist} +Release: 15%{?dist} License: GPL-2.0-or-later # official git repository: https://github.com/doug-gilbert/lsscsi Source0: http://sg.danny.cz/scsi/%{name}-%{version}.tgz diff --git a/specs/l/lttng-tools/lttng-tools.spec b/specs/l/lttng-tools/lttng-tools.spec index 1c427c0f11c..1575b078530 100644 --- a/specs/l/lttng-tools/lttng-tools.spec +++ b/specs/l/lttng-tools/lttng-tools.spec @@ -12,7 +12,7 @@ Name: lttng-tools Version: 2.14.0 -Release: 5%{?dist} +Release: 5%{?dist} License: GPL-2.0-only AND LGPL-2.1-only URL: http://lttng.org Summary: LTTng control and utility programs diff --git a/specs/l/lttng-ust/lttng-ust.spec b/specs/l/lttng-ust/lttng-ust.spec index 2ea8cffdb39..30a9e61c1c3 100644 --- a/specs/l/lttng-ust/lttng-ust.spec +++ b/specs/l/lttng-ust/lttng-ust.spec @@ -17,7 +17,7 @@ Name: lttng-ust Version: 2.14.0 -Release: 5%{?dist} +Release: 5%{?dist} License: LGPL-2.1-only AND MIT AND GPL-2.0-only AND BSD-3-Clause AND BSD-2-Clause Summary: LTTng Userspace Tracer library diff --git a/specs/l/lua-filesystem/lua-filesystem.spec b/specs/l/lua-filesystem/lua-filesystem.spec index 6f0f1d9d945..bab1b9f1d2b 100644 --- a/specs/l/lua-filesystem/lua-filesystem.spec +++ b/specs/l/lua-filesystem/lua-filesystem.spec @@ -15,7 +15,7 @@ Name: lua-filesystem Version: 1.8.0 -Release: 16%{?dist} +Release: 16%{?dist} Summary: File System Library for the Lua Programming Language %global gitowner lunarmodules diff --git a/specs/l/lua-json/lua-json.spec b/specs/l/lua-json/lua-json.spec index 6cb687be13d..01b5c29ac70 100644 --- a/specs/l/lua-json/lua-json.spec +++ b/specs/l/lua-json/lua-json.spec @@ -8,7 +8,7 @@ Name: lua-json Version: 1.3.4 -Release: 11%{?dist} +Release: 11%{?dist} Summary: JSON Parser/Constructor for Lua License: MIT URL: https://github.com/harningt/luajson diff --git a/specs/l/lua-lunitx/lua-lunitx.spec b/specs/l/lua-lunitx/lua-lunitx.spec index 1842a4c135d..a187e4c127d 100644 --- a/specs/l/lua-lunitx/lua-lunitx.spec +++ b/specs/l/lua-lunitx/lua-lunitx.spec @@ -3,7 +3,7 @@ Name: lua-lunitx Version: 0.8.1 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Unit testing framework for Lua License: MIT diff --git a/specs/l/lua-rpm-macros/lua-rpm-macros.spec b/specs/l/lua-rpm-macros/lua-rpm-macros.spec index 44d1a502768..50aa87f1f20 100644 --- a/specs/l/lua-rpm-macros/lua-rpm-macros.spec +++ b/specs/l/lua-rpm-macros/lua-rpm-macros.spec @@ -24,7 +24,7 @@ Name: lua-rpm-macros Version: 1 -Release: 17%{?dist} +Release: 17%{?dist} Summary: The common Lua RPM macros License: MIT diff --git a/specs/l/lua-term/lua-term.spec b/specs/l/lua-term/lua-term.spec index be53d46e344..cb64e62ce87 100644 --- a/specs/l/lua-term/lua-term.spec +++ b/specs/l/lua-term/lua-term.spec @@ -9,7 +9,7 @@ Name: lua-term Version: 0.08 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Terminal functions for Lua License: MIT diff --git a/specs/l/lua/lua.spec b/specs/l/lua/lua.spec index 40e24c8373d..4b175a40543 100644 --- a/specs/l/lua/lua.spec +++ b/specs/l/lua/lua.spec @@ -17,7 +17,7 @@ Name: lua Version: %{major_version}.8 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Powerful light-weight programming language License: MIT URL: https://www.lua.org/ diff --git a/specs/l/luarocks/luarocks.spec b/specs/l/luarocks/luarocks.spec index f86672537c0..fc98bcdcb3e 100644 --- a/specs/l/luarocks/luarocks.spec +++ b/specs/l/luarocks/luarocks.spec @@ -3,7 +3,7 @@ Name: luarocks Version: 3.9.2 -Release: 9%{?dist} +Release: 9%{?dist} Summary: A deployment and management system for Lua modules License: MIT diff --git a/specs/l/lv2/lv2.spec b/specs/l/lv2/lv2.spec index 45456164a84..9b53541d769 100644 --- a/specs/l/lv2/lv2.spec +++ b/specs/l/lv2/lv2.spec @@ -3,7 +3,7 @@ Name: lv2 Version: 1.18.10 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Audio Plugin Standard # lv2specgen template.html is CC-AT-SA diff --git a/specs/l/lxsession/lxsession.spec b/specs/l/lxsession/lxsession.spec index dfa5170e514..6c95b9d58f4 100644 --- a/specs/l/lxsession/lxsession.spec +++ b/specs/l/lxsession/lxsession.spec @@ -38,7 +38,7 @@ Name: lxsession Version: %{main_version}%{git_ver_rpm} -Release: 4%{?dist} +Release: 4%{?dist} Summary: Lightweight X11 session manager Summary(de): Leichtgewichtiger X11 Sitzungsverwalter diff --git a/specs/l/lz4/lz4.spec b/specs/l/lz4/lz4.spec index fbf25fef7d3..d40e4b1f883 100644 --- a/specs/l/lz4/lz4.spec +++ b/specs/l/lz4/lz4.spec @@ -5,7 +5,7 @@ Name: lz4 Version: 1.10.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Extremely fast compression algorithm License: GPL-2.0-or-later AND BSD-2-Clause diff --git a/specs/l/lzip/lzip.spec b/specs/l/lzip/lzip.spec index a9d74cf2964..664ca13e5c5 100644 --- a/specs/l/lzip/lzip.spec +++ b/specs/l/lzip/lzip.spec @@ -3,7 +3,7 @@ Name: lzip Version: 1.25 -Release: 4%{?dist} +Release: 4%{?dist} Summary: LZMA compressor with integrity checking License: GPL-2.0-or-later diff --git a/specs/l/lzo/lzo.spec b/specs/l/lzo/lzo.spec index 7c252f23ccb..1bba8f6d00e 100644 --- a/specs/l/lzo/lzo.spec +++ b/specs/l/lzo/lzo.spec @@ -3,7 +3,7 @@ Name: lzo Version: 2.10 -Release: 16%{?dist} +Release: 16%{?dist} Summary: Data compression library with very fast (de)compression License: gpl-2.0-or-later URL: http://www.oberhumer.com/opensource/lzo/ diff --git a/specs/l/lzop/lzop.spec b/specs/l/lzop/lzop.spec index e50a30b9eff..62248c549ce 100644 --- a/specs/l/lzop/lzop.spec +++ b/specs/l/lzop/lzop.spec @@ -4,7 +4,7 @@ Summary: Real-time file compressor Name: lzop Version: 1.04 -Release: 18%{?dist} +Release: 18%{?dist} License: GPL-2.0-or-later URL: https://www.lzop.org/ Source0: https://www.lzop.org/download/%{name}-%{version}.tar.gz diff --git a/specs/m/mac-robber/mac-robber.spec b/specs/m/mac-robber/mac-robber.spec index 7fe683a6e45..4e3b6c9f7cc 100644 --- a/specs/m/mac-robber/mac-robber.spec +++ b/specs/m/mac-robber/mac-robber.spec @@ -3,7 +3,7 @@ Name: mac-robber Version: 1.02 -Release: 32%{?dist} +Release: 32%{?dist} Summary: Tool to create a timeline of file activity for mounted file systems # Automatically converted from old format: GPLv2+ - review is highly recommended. diff --git a/specs/m/mailcap/mailcap.spec b/specs/m/mailcap/mailcap.spec index 76421aca052..b193ad8cba0 100644 --- a/specs/m/mailcap/mailcap.spec +++ b/specs/m/mailcap/mailcap.spec @@ -3,7 +3,7 @@ Name: mailcap Version: 2.1.54 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Helper application and MIME type associations for file types License: LicenseRef-Fedora-Public-Domain AND MIT AND metamail diff --git a/specs/m/malcontent/malcontent.spec b/specs/m/malcontent/malcontent.spec index 7086a8cf0dc..e521d4373e4 100644 --- a/specs/m/malcontent/malcontent.spec +++ b/specs/m/malcontent/malcontent.spec @@ -3,7 +3,7 @@ Name: malcontent Version: 0.13.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Parental controls implementation License: LGPL-2.1-only AND CC-BY-3.0 diff --git a/specs/m/man2html/man2html.spec b/specs/m/man2html/man2html.spec index 285e598577d..05aabc5c6f7 100644 --- a/specs/m/man2html/man2html.spec +++ b/specs/m/man2html/man2html.spec @@ -6,7 +6,7 @@ Name: man2html Version: 1.6 -Release: 40.%{posttag}%{?dist} +Release: 43.%{posttag}%{?dist} Summary: Convert man pages to HTML - CGI scripts # man2html.c and debian/sources/man2html.cgi.c are man2html diff --git a/specs/m/mandoc/mandoc.spec b/specs/m/mandoc/mandoc.spec index c650874faa9..7665c2ab74a 100644 --- a/specs/m/mandoc/mandoc.spec +++ b/specs/m/mandoc/mandoc.spec @@ -3,7 +3,7 @@ Name: mandoc Version: 1.14.6 -Release: 13%{?dist} +Release: 13%{?dist} Summary: A suite of tools for compiling mdoc and man License: ISC AND BSD-2-Clause AND BSD-3-Clause diff --git a/specs/m/mapbox-variant/mapbox-variant.spec b/specs/m/mapbox-variant/mapbox-variant.spec index c0457c49159..f36d3ff632a 100644 --- a/specs/m/mapbox-variant/mapbox-variant.spec +++ b/specs/m/mapbox-variant/mapbox-variant.spec @@ -5,7 +5,7 @@ Name: mapbox-variant Version: 1.2.0 -Release: 13%{?dist} +Release: 13%{?dist} Summary: A header-only alternative to boost::variant for C++11 and C++14 License: BSL-1.0 AND BSD-3-Clause diff --git a/specs/m/mariadb-connector-c/mariadb-connector-c.spec b/specs/m/mariadb-connector-c/mariadb-connector-c.spec index 8bce1d913a4..4d760244ad1 100644 --- a/specs/m/mariadb-connector-c/mariadb-connector-c.spec +++ b/specs/m/mariadb-connector-c/mariadb-connector-c.spec @@ -10,7 +10,7 @@ Name: mariadb-connector-c Version: 3.4.8 -Release: 3%{?with_debug:.debug}%{?dist} +Release: 6%{?with_debug:.debug}%{?dist} Summary: The MariaDB Native Client library (C driver) License: LGPL-2.1-or-later AND PHP-3.0 AND PHP-3.01 Source: https://archive.mariadb.org/connector-c-%{version}/%{name}-%{version}-src.tar.gz diff --git a/specs/m/mariadb-connector-odbc/mariadb-connector-odbc.spec b/specs/m/mariadb-connector-odbc/mariadb-connector-odbc.spec index 12fb6fdfa56..41c4d7846c6 100644 --- a/specs/m/mariadb-connector-odbc/mariadb-connector-odbc.spec +++ b/specs/m/mariadb-connector-odbc/mariadb-connector-odbc.spec @@ -13,7 +13,7 @@ Name: mariadb-connector-odbc Version: 3.2.8 -Release: 2%{?with_debug:.debug}%{?dist} +Release: 5%{?with_debug:.debug}%{?dist} Summary: The MariaDB Native Client library (ODBC driver) License: LGPL-2.1-or-later Source: https://archive.mariadb.org/connector-odbc-%{version}/%{name}-%{version}-src.tar.gz @@ -92,6 +92,9 @@ cmake -B %_vpath_builddir -N -LAH %changelog ## START: Generated by rpmautospec +* Thu Aug 13 2026 Thien Trung Vuong - 3.2.8-5 +- feat(rebuild): adopt managed release counters + * Fri May 01 2026 Daniel McIlvaney - 3.2.8-4 - fix(mariadb-connector-odbc): set manual release calculation diff --git a/specs/m/mariadb10.11/mariadb10.11.spec b/specs/m/mariadb10.11/mariadb10.11.spec index 8eaa014b9d8..79629e2645e 100644 --- a/specs/m/mariadb10.11/mariadb10.11.spec +++ b/specs/m/mariadb10.11/mariadb10.11.spec @@ -166,7 +166,7 @@ Name: %{majorname}%{majorversion} Version: %{package_version} -Release: 2%{?with_debug:.debug}%{?dist} +Release: 5%{?with_debug:.debug}%{?dist} Epoch: 3 Summary: A very fast and robust SQL database server diff --git a/specs/m/matchbox-window-manager/matchbox-window-manager.spec b/specs/m/matchbox-window-manager/matchbox-window-manager.spec index e9716f49b0f..21756533ffc 100644 --- a/specs/m/matchbox-window-manager/matchbox-window-manager.spec +++ b/specs/m/matchbox-window-manager/matchbox-window-manager.spec @@ -10,7 +10,7 @@ Summary: Window manager for the Matchbox Desktop Name: matchbox-window-manager Version: 1.2 -Release: 39.%{alphatag}%{?dist} +Release: 42.%{alphatag}%{?dist} Url: http://matchbox-project.org/ # svn checkout http://svn.o-hand.com/repos/matchbox/trunk/matchbox-window-manager License: GPL-2.0-or-later diff --git a/specs/m/matio/matio.spec b/specs/m/matio/matio.spec index 998fd1142cb..f0bd30aebcf 100644 --- a/specs/m/matio/matio.spec +++ b/specs/m/matio/matio.spec @@ -3,7 +3,7 @@ Name: matio Version: 1.5.29 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Library for reading/writing Matlab MAT files License: BSD-2-Clause diff --git a/specs/m/maven-clean-plugin/maven-clean-plugin.spec b/specs/m/maven-clean-plugin/maven-clean-plugin.spec index ed5d0585369..bd65262e09a 100644 --- a/specs/m/maven-clean-plugin/maven-clean-plugin.spec +++ b/specs/m/maven-clean-plugin/maven-clean-plugin.spec @@ -3,7 +3,7 @@ Name: maven-clean-plugin Version: 3.3.2 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Maven Clean Plugin License: Apache-2.0 URL: http://maven.apache.org/plugins/maven-clean-plugin/ diff --git a/specs/m/maven-doxia-sitetools/maven-doxia-sitetools.spec b/specs/m/maven-doxia-sitetools/maven-doxia-sitetools.spec index 910be9f38f9..5bbbd0c4e84 100644 --- a/specs/m/maven-doxia-sitetools/maven-doxia-sitetools.spec +++ b/specs/m/maven-doxia-sitetools/maven-doxia-sitetools.spec @@ -7,7 +7,7 @@ Name: maven-doxia-sitetools Version: 2.0.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Doxia content generation framework License: Apache-2.0 URL: https://maven.apache.org/doxia/ diff --git a/specs/m/maven-doxia/maven-doxia.spec b/specs/m/maven-doxia/maven-doxia.spec index 28ac2e5718b..862f6522486 100644 --- a/specs/m/maven-doxia/maven-doxia.spec +++ b/specs/m/maven-doxia/maven-doxia.spec @@ -4,7 +4,7 @@ Name: maven-doxia Epoch: 0 Version: 2.0.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Content generation framework License: Apache-2.0 diff --git a/specs/m/maven-invoker-plugin/maven-invoker-plugin.spec b/specs/m/maven-invoker-plugin/maven-invoker-plugin.spec index 47c92266c36..397c6717efd 100644 --- a/specs/m/maven-invoker-plugin/maven-invoker-plugin.spec +++ b/specs/m/maven-invoker-plugin/maven-invoker-plugin.spec @@ -5,7 +5,7 @@ Name: maven-invoker-plugin Version: 3.9.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Maven Invoker Plugin License: Apache-2.0 diff --git a/specs/m/maven-invoker/maven-invoker.spec b/specs/m/maven-invoker/maven-invoker.spec index e943fbbdb99..cdfe500cea1 100644 --- a/specs/m/maven-invoker/maven-invoker.spec +++ b/specs/m/maven-invoker/maven-invoker.spec @@ -3,7 +3,7 @@ Name: maven-invoker Version: 3.3.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Fires a maven build in a clean environment License: Apache-2.0 diff --git a/specs/m/maven-reporting-api/maven-reporting-api.spec b/specs/m/maven-reporting-api/maven-reporting-api.spec index ae66ed769c6..fac625754fe 100644 --- a/specs/m/maven-reporting-api/maven-reporting-api.spec +++ b/specs/m/maven-reporting-api/maven-reporting-api.spec @@ -3,7 +3,7 @@ Name: maven-reporting-api Version: 4.0.0 -Release: 5%{?dist} +Release: 5%{?dist} Epoch: 1 Summary: API to manage report generation License: Apache-2.0 diff --git a/specs/m/maven-reporting-impl/maven-reporting-impl.spec b/specs/m/maven-reporting-impl/maven-reporting-impl.spec index 8b9058a1843..25c60052e5f 100644 --- a/specs/m/maven-reporting-impl/maven-reporting-impl.spec +++ b/specs/m/maven-reporting-impl/maven-reporting-impl.spec @@ -3,7 +3,7 @@ Name: maven-reporting-impl Version: 4.0.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Abstract classes to manage report generation License: Apache-2.0 URL: https://maven.apache.org/shared/maven-reporting-impl/ diff --git a/specs/m/maven-script-interpreter/maven-script-interpreter.spec b/specs/m/maven-script-interpreter/maven-script-interpreter.spec index 3a0831c7f61..c9abe9904fa 100644 --- a/specs/m/maven-script-interpreter/maven-script-interpreter.spec +++ b/specs/m/maven-script-interpreter/maven-script-interpreter.spec @@ -4,7 +4,7 @@ %bcond_with groovy Name: maven-script-interpreter Version: 1.3 -Release: 15%{?dist} +Release: 15%{?dist} Summary: Maven Script Interpreter # Automatically converted from old format: ASL 2.0 - review is highly recommended. License: Apache-2.0 diff --git a/specs/m/maven-shade-plugin/maven-shade-plugin.spec b/specs/m/maven-shade-plugin/maven-shade-plugin.spec index 03c11fcc5d2..49c8b4e7108 100644 --- a/specs/m/maven-shade-plugin/maven-shade-plugin.spec +++ b/specs/m/maven-shade-plugin/maven-shade-plugin.spec @@ -3,7 +3,7 @@ Name: maven-shade-plugin Version: 3.6.0 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Maven plugin for packaging artifacts in an uber-jar # Automatically converted from old format: ASL 2.0 - review is highly recommended. License: Apache-2.0 diff --git a/specs/m/maven-verifier-plugin/maven-verifier-plugin.spec b/specs/m/maven-verifier-plugin/maven-verifier-plugin.spec index ac8873cd6e9..a8ece363813 100644 --- a/specs/m/maven-verifier-plugin/maven-verifier-plugin.spec +++ b/specs/m/maven-verifier-plugin/maven-verifier-plugin.spec @@ -3,7 +3,7 @@ Name: maven-verifier-plugin Version: 1.1 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Maven Verifier Plugin # Automatically converted from old format: ASL 2.0 - review is highly recommended. diff --git a/specs/m/mc/mc.spec b/specs/m/mc/mc.spec index bc203bd57e5..b9cc140cd14 100644 --- a/specs/m/mc/mc.spec +++ b/specs/m/mc/mc.spec @@ -12,7 +12,7 @@ Summary: User-friendly text console file manager and visual shell Name: mc Epoch: 1 Version: 4.8.33 -Release: 4%{?dist} +Release: 4%{?dist} License: GPL-3.0-or-later URL: https://midnight-commander.org/ Source: http://ftp.midnight-commander.org/mc-%{version}.tar.xz diff --git a/specs/m/mcelog/mcelog.spec b/specs/m/mcelog/mcelog.spec index 1e438dcfcb1..4b980b978e3 100644 --- a/specs/m/mcelog/mcelog.spec +++ b/specs/m/mcelog/mcelog.spec @@ -4,7 +4,7 @@ Summary: Tool to translate x86-64 CPU Machine Check Exception data Name: mcelog Version: 175 -Release: 14%{?dist} +Release: 14%{?dist} Epoch: 3 License: GPL-2.0-only URL: https://github.com/andikleen/mcelog diff --git a/specs/m/mdadm/mdadm.spec b/specs/m/mdadm/mdadm.spec index 8c108f1a577..d3dc4f6f202 100644 --- a/specs/m/mdadm/mdadm.spec +++ b/specs/m/mdadm/mdadm.spec @@ -5,7 +5,7 @@ Name: mdadm Version: 4.3 -Release: 10%{?dist} +Release: 10%{?dist} Summary: The mdadm program controls Linux md devices (software RAID arrays) URL: http://www.kernel.org/pub/linux/utils/raid/mdadm/ License: GPL-2.0-or-later diff --git a/specs/m/mdevctl/mdevctl.spec b/specs/m/mdevctl/mdevctl.spec index 704b1bcacf4..27400ae58b4 100644 --- a/specs/m/mdevctl/mdevctl.spec +++ b/specs/m/mdevctl/mdevctl.spec @@ -7,7 +7,7 @@ Name: mdevctl Version: 1.4.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: A mediated device management utility for Linux License: LGPL-2.1-only diff --git a/specs/m/mecab/mecab.spec b/specs/m/mecab/mecab.spec index 815b3cf4d21..002b5d132a9 100644 --- a/specs/m/mecab/mecab.spec +++ b/specs/m/mecab/mecab.spec @@ -3,7 +3,7 @@ %define mainver 0.996 #%%define betaver pre3 -%define baserelease 10 +%define baserelease 13 # Note: # mecab dictionary requires mecab-devel to rebuild it, diff --git a/specs/m/media-player-info/media-player-info.spec b/specs/m/media-player-info/media-player-info.spec index 0d8b072ff5c..ba329d3617e 100644 --- a/specs/m/media-player-info/media-player-info.spec +++ b/specs/m/media-player-info/media-player-info.spec @@ -3,7 +3,7 @@ Name: media-player-info Version: 23 -Release: 20%{?dist} +Release: 20%{?dist} Summary: Data files describing media player capabilities # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/m/memkind/memkind.spec b/specs/m/memkind/memkind.spec index 475fa864815..4df34f4978d 100644 --- a/specs/m/memkind/memkind.spec +++ b/specs/m/memkind/memkind.spec @@ -9,7 +9,7 @@ Name: memkind Summary: User Extensible Heap Manager Version: 1.14.0 -Release: 11%{?checkout}%{?dist} +Release: 14%{?checkout}%{?dist} License: BSD-2-Clause URL: http://memkind.github.io/memkind BuildRequires: make patch diff --git a/specs/m/memstrack/memstrack.spec b/specs/m/memstrack/memstrack.spec index 9e3482632ec..3b156196aeb 100644 --- a/specs/m/memstrack/memstrack.spec +++ b/specs/m/memstrack/memstrack.spec @@ -7,7 +7,7 @@ Name: memstrack Version: 0.2.5 -Release: 8%{?dist} +Release: 8%{?dist} Summary: A memory allocation tracer, like a hot spot analyzer for memory allocation License: GPL-3.0-only URL: https://github.com/ryncsn/memstrack diff --git a/specs/m/mesa-libGLU/mesa-libGLU.spec b/specs/m/mesa-libGLU/mesa-libGLU.spec index 64f37f4e093..435494dfe34 100644 --- a/specs/m/mesa-libGLU/mesa-libGLU.spec +++ b/specs/m/mesa-libGLU/mesa-libGLU.spec @@ -3,7 +3,7 @@ Name: mesa-libGLU Version: 9.0.3 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Mesa libGLU library License: X11 diff --git a/specs/m/microcode_ctl/microcode_ctl.spec b/specs/m/microcode_ctl/microcode_ctl.spec index dff6ed0bc27..8041ff0b576 100644 --- a/specs/m/microcode_ctl/microcode_ctl.spec +++ b/specs/m/microcode_ctl/microcode_ctl.spec @@ -7,7 +7,7 @@ Summary: Tool to transform and deploy CPU microcode update for x86 Name: microcode_ctl Version: 2.1 -Release: 71.1%{?dist} +Release: 71.4%{?dist} Epoch: 2 License: GPL-2.0-or-later AND LicenseRef-Fedora-Firmware URL: https://pagure.io/microcode_ctl diff --git a/specs/m/mimalloc/mimalloc.spec b/specs/m/mimalloc/mimalloc.spec index 99ea81b4788..a28b744ab38 100644 --- a/specs/m/mimalloc/mimalloc.spec +++ b/specs/m/mimalloc/mimalloc.spec @@ -5,7 +5,7 @@ Name: mimalloc Version: 2.2.3 -Release: 3%{?dist} +Release: 3%{?dist} Summary: A general purpose allocator with excellent performance License: MIT diff --git a/specs/m/miniz/miniz.spec b/specs/m/miniz/miniz.spec index 03b53459882..d897b6a52ea 100644 --- a/specs/m/miniz/miniz.spec +++ b/specs/m/miniz/miniz.spec @@ -3,7 +3,7 @@ Name: miniz Version: 3.1.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Compression library implementing the zlib and Deflate # examples/example1.c: Unlicense (refers to "unlicense" statement at the end # of tinfl.c from miniz-1.15) diff --git a/specs/m/mint-themes/mint-themes.spec b/specs/m/mint-themes/mint-themes.spec index 7536453555d..00197d95eab 100644 --- a/specs/m/mint-themes/mint-themes.spec +++ b/specs/m/mint-themes/mint-themes.spec @@ -4,7 +4,7 @@ Name: mint-themes Epoch: 1 Version: 2.2.2 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Mint themes # Automatically converted from old format: GPLv3+ - review is highly recommended. diff --git a/specs/m/mintlocale/mintlocale.spec b/specs/m/mintlocale/mintlocale.spec index 882b532e6f7..13f4bd23e04 100644 --- a/specs/m/mintlocale/mintlocale.spec +++ b/specs/m/mintlocale/mintlocale.spec @@ -5,7 +5,7 @@ Name: mintlocale Version: 1.4.7 -Release: 21%{?dist} +Release: 21%{?dist} Summary: Language selection tool # Automatically converted from old format: GPLv2+ - review is highly recommended. diff --git a/specs/m/miopen/miopen.spec b/specs/m/miopen/miopen.spec index 6f080e981cb..64a910f9fc0 100644 --- a/specs/m/miopen/miopen.spec +++ b/specs/m/miopen/miopen.spec @@ -64,7 +64,7 @@ Name: %{miopen_name} Version: %{rocm_version} -Release: 2%{?dist} +Release: 2%{?dist} Summary: AMD's Machine Intelligence Library Url: https://github.com/ROCm/%{upstreamname} License: MIT AND BSD-2-Clause AND Apache-2.0 AND LicenseRef-Fedora-Public-Domain diff --git a/specs/m/mivisionx/mivisionx.spec b/specs/m/mivisionx/mivisionx.spec index 234f4086cf3..25528d71516 100644 --- a/specs/m/mivisionx/mivisionx.spec +++ b/specs/m/mivisionx/mivisionx.spec @@ -25,7 +25,7 @@ Name: mivisionx Version: %{rocm_version} -Release: 6%{?dist} +Release: 6%{?dist} Summary: AMD's computer vision toolkit Url: https://github.com/ROCm/%{upstreamname} License: MIT AND Apache-2.0 AND MIT-Khronos-old AND GPL-3.0-or-later diff --git a/specs/m/mkfontscale/mkfontscale.spec b/specs/m/mkfontscale/mkfontscale.spec index 68db8600ada..eb65af5e91b 100644 --- a/specs/m/mkfontscale/mkfontscale.spec +++ b/specs/m/mkfontscale/mkfontscale.spec @@ -3,7 +3,7 @@ Name: mkfontscale Version: 1.2.3 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Tool to generate legacy X11 font system index files License: MIT-open-group AND X11 AND MIT AND HPND-sell-variant diff --git a/specs/m/mksh/mksh.spec b/specs/m/mksh/mksh.spec index d2d28f159b4..30e69912547 100644 --- a/specs/m/mksh/mksh.spec +++ b/specs/m/mksh/mksh.spec @@ -4,7 +4,7 @@ Summary: MirBSD enhanced version of the Korn Shell Name: mksh Version: 59c -Release: 15%{?dist} +Release: 15%{?dist} # ISC (strlcpy.c) and MirOS (the rest) License: MirOS AND ISC URL: https://www.mirbsd.org/mksh.htm diff --git a/specs/m/mod_auth_openidc/mod_auth_openidc.spec b/specs/m/mod_auth_openidc/mod_auth_openidc.spec index 086467fa1a3..b56451af31b 100644 --- a/specs/m/mod_auth_openidc/mod_auth_openidc.spec +++ b/specs/m/mod_auth_openidc/mod_auth_openidc.spec @@ -18,7 +18,7 @@ Name: mod_auth_openidc Version: 2.4.16.11 -Release: 3%{?dist} +Release: 3%{?dist} Summary: OpenID Connect auth module for Apache HTTP Server License: Apache-2.0 diff --git a/specs/m/mod_fcgid/mod_fcgid.spec b/specs/m/mod_fcgid/mod_fcgid.spec index f487fb46766..d8a9684686b 100644 --- a/specs/m/mod_fcgid/mod_fcgid.spec +++ b/specs/m/mod_fcgid/mod_fcgid.spec @@ -3,7 +3,7 @@ Name: mod_fcgid Version: 2.3.9 -Release: 37%{?dist} +Release: 37%{?dist} Summary: FastCGI interface module for Apache 2 License: Apache-2.0 URL: http://httpd.apache.org/mod_fcgid/ diff --git a/specs/m/mod_perl/mod_perl.spec b/specs/m/mod_perl/mod_perl.spec index 9e1e0de225b..ac629553649 100644 --- a/specs/m/mod_perl/mod_perl.spec +++ b/specs/m/mod_perl/mod_perl.spec @@ -17,7 +17,7 @@ Name: mod_perl Version: 2.0.13 -Release: 12%{?dist} +Release: 12%{?dist} Summary: An embedded Perl interpreter for the Apache HTTP Server # other files: ASL 2.0 ## Not in binary packages diff --git a/specs/m/mod_proxy_cluster/mod_proxy_cluster.spec b/specs/m/mod_proxy_cluster/mod_proxy_cluster.spec index 99729f38793..9c0e4e56fdf 100644 --- a/specs/m/mod_proxy_cluster/mod_proxy_cluster.spec +++ b/specs/m/mod_proxy_cluster/mod_proxy_cluster.spec @@ -14,7 +14,7 @@ Name: mod_proxy_cluster Summary: JBoss mod_proxy_cluster for Apache httpd Version: 1.3.22 -Release: %{serial}%{?dist}.1 +Release: %{serial}%{?dist}.3 License: LGPL-3.0-only URL: https://github.com/modcluster/mod_cluster Source0: https://github.com/modcluster/mod_cluster/archive/%{namedversion}/mod_cluster-%{namedversion}.tar.gz diff --git a/specs/m/mod_wsgi/mod_wsgi.spec b/specs/m/mod_wsgi/mod_wsgi.spec index ca7f20f6741..b62268e1f34 100644 --- a/specs/m/mod_wsgi/mod_wsgi.spec +++ b/specs/m/mod_wsgi/mod_wsgi.spec @@ -13,7 +13,7 @@ Name: mod_wsgi Version: 5.0.2 -Release: 7%{?dist} +Release: 7%{?dist} Summary: A WSGI interface for Python web applications in Apache License: Apache-2.0 AND CC-BY-3.0 URL: https://modwsgi.readthedocs.io/ diff --git a/specs/m/mokutil/mokutil.spec b/specs/m/mokutil/mokutil.spec index 20bfe925111..9b57ff36231 100644 --- a/specs/m/mokutil/mokutil.spec +++ b/specs/m/mokutil/mokutil.spec @@ -3,7 +3,7 @@ Name: mokutil Version: 0.7.2 -Release: 3%{?dist} +Release: 3%{?dist} Epoch: 2 Summary: Tool to manage UEFI Secure Boot MoK Keys License: GPL-3.0-or-later diff --git a/specs/m/mongo-c-driver/mongo-c-driver.spec b/specs/m/mongo-c-driver/mongo-c-driver.spec index 5b95974c9b7..c8425f48d39 100644 --- a/specs/m/mongo-c-driver/mongo-c-driver.spec +++ b/specs/m/mongo-c-driver/mongo-c-driver.spec @@ -33,7 +33,7 @@ Name: mongo-c-driver Summary: Client library written in C for MongoDB Version: %{up_version}%{?up_prever:~%{up_prever}} -Release: 2%{?dist} +Release: 2%{?dist} # See THIRD_PARTY_NOTICES License: Apache-2.0 AND ISC AND MIT AND Zlib URL: https://github.com/%{gh_owner}/%{gh_project} diff --git a/specs/m/mono/mono.spec b/specs/m/mono/mono.spec index 176c805e3ce..22025bf47cc 100644 --- a/specs/m/mono/mono.spec +++ b/specs/m/mono/mono.spec @@ -27,7 +27,7 @@ %global xamarinrelease 199 Name: mono Version: 6.12.0 -Release: 22%{?dist} +Release: 22%{?dist} Summary: Cross-platform, Open Source, .NET development framework License: MIT diff --git a/specs/m/mosh/mosh.spec b/specs/m/mosh/mosh.spec index 62dd08c1f61..fc4ba0f2851 100644 --- a/specs/m/mosh/mosh.spec +++ b/specs/m/mosh/mosh.spec @@ -3,7 +3,7 @@ Name: mosh Version: 1.4.0 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Mobile shell that supports roaming and intelligent local echo # Automatically converted from old format: GPLv3+ - review is highly recommended. diff --git a/specs/m/mozilla-filesystem/mozilla-filesystem.spec b/specs/m/mozilla-filesystem/mozilla-filesystem.spec index 4c082a62c69..6496e98ee3e 100644 --- a/specs/m/mozilla-filesystem/mozilla-filesystem.spec +++ b/specs/m/mozilla-filesystem/mozilla-filesystem.spec @@ -3,7 +3,7 @@ Name: mozilla-filesystem Version: 1.9 -Release: 39%{?dist} +Release: 39%{?dist} Summary: Mozilla filesytem layout License: MPL-1.1 diff --git a/specs/m/mpi4py/mpi4py.spec b/specs/m/mpi4py/mpi4py.spec index 74a7fa8c50e..50cc3b5a6dc 100644 --- a/specs/m/mpi4py/mpi4py.spec +++ b/specs/m/mpi4py/mpi4py.spec @@ -23,7 +23,7 @@ Name: mpi4py Version: 4.1.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Python bindings of the Message Passing Interface (MPI) License: BSD-2-Clause diff --git a/specs/m/mrtg/mrtg.spec b/specs/m/mrtg/mrtg.spec index eec0bb83907..e4d8bced803 100644 --- a/specs/m/mrtg/mrtg.spec +++ b/specs/m/mrtg/mrtg.spec @@ -14,7 +14,7 @@ Summary: Multi Router Traffic Grapher Name: mrtg Version: 2.17.10 -Release: 13%{?dist} +Release: 13%{?dist} URL: http://oss.oetiker.ch/mrtg/ Source0: http://oss.oetiker.ch/mrtg/pub/mrtg-%{version}.tar.gz Source1: http://oss.oetiker.ch/mrtg/pub/mrtg-%{version}.tar.gz.md5 diff --git a/specs/m/msgpack/msgpack.spec b/specs/m/msgpack/msgpack.spec index d411e6e1abe..bcc9087b8e2 100644 --- a/specs/m/msgpack/msgpack.spec +++ b/specs/m/msgpack/msgpack.spec @@ -3,7 +3,7 @@ Name: msgpack Version: 3.1.0 -Release: 21%{?dist} +Release: 21%{?dist} Summary: Binary-based efficient object serialization library # Automatically converted from old format: Boost - review is highly recommended. diff --git a/specs/m/msr-tools/msr-tools.spec b/specs/m/msr-tools/msr-tools.spec index c796f3c42ec..67b0f652b8e 100644 --- a/specs/m/msr-tools/msr-tools.spec +++ b/specs/m/msr-tools/msr-tools.spec @@ -4,7 +4,7 @@ Summary: Collection of tools for reading/writing CPU model specific registers Name: msr-tools Version: 1.3 -Release: 31%{dist} +Release: 31%{dist} # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later Source0: https://github.com/intel/msr-tools/archive/msr-tools-%{version}/%{name}-%{version}.tar.gz diff --git a/specs/m/mtdev/mtdev.spec b/specs/m/mtdev/mtdev.spec index 3eab4cfa1f0..0a320123594 100644 --- a/specs/m/mtdev/mtdev.spec +++ b/specs/m/mtdev/mtdev.spec @@ -6,7 +6,7 @@ Name: mtdev Version: 1.1.6 -Release: 11%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +Release: 14%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} Summary: Multitouch Protocol Translation Library # SPDX diff --git a/specs/m/muParser/muParser.spec b/specs/m/muParser/muParser.spec index 6a7ffa69b4d..c1a51900044 100644 --- a/specs/m/muParser/muParser.spec +++ b/specs/m/muParser/muParser.spec @@ -6,7 +6,7 @@ Name: muParser Summary: A fast math parser library Version: 2.3.5 -Release: 4%{?dist} +Release: 4%{?dist} BuildRequires: cmake BuildRequires: dos2unix BuildRequires: gcc diff --git a/specs/m/munin/munin.spec b/specs/m/munin/munin.spec index 29f93976983..c94617e73a7 100644 --- a/specs/m/munin/munin.spec +++ b/specs/m/munin/munin.spec @@ -3,7 +3,7 @@ Name: munin Version: 2.0.76 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Network-wide resource monitoring tool License: GPL-2.0-only URL: http://munin-monitoring.org/ diff --git a/specs/m/musl/musl.spec b/specs/m/musl/musl.spec index 386fe647967..cd64d662c42 100644 --- a/specs/m/musl/musl.spec +++ b/specs/m/musl/musl.spec @@ -95,7 +95,7 @@ Name: musl Version: 1.2.5 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Fully featured lightweight standard C library for Linux License: MIT URL: https://musl.libc.org diff --git a/specs/m/mysql-selinux/mysql-selinux.spec b/specs/m/mysql-selinux/mysql-selinux.spec index 33b7640fd1e..e4b16a091f5 100644 --- a/specs/m/mysql-selinux/mysql-selinux.spec +++ b/specs/m/mysql-selinux/mysql-selinux.spec @@ -13,7 +13,7 @@ Name: mysql-selinux Version: 1.0.14 -Release: 3%{?dist} +Release: 3%{?dist} License: GPL-3.0-only URL: https://github.com/devexp-db/mysql-selinux diff --git a/specs/m/mysql8.4/mysql8.4.spec b/specs/m/mysql8.4/mysql8.4.spec index 925c6520bc9..654dff47f11 100644 --- a/specs/m/mysql8.4/mysql8.4.spec +++ b/specs/m/mysql8.4/mysql8.4.spec @@ -107,7 +107,7 @@ ExcludeArch: %{ix86} Name: %{majorname}%{majorversion} Version: %{package_version} -Release: 1%{?with_debug:.debug}%{?dist} +Release: 4%{?with_debug:.debug}%{?dist} Summary: MySQL client programs and shared libraries URL: http://www.mysql.com diff --git a/specs/m/mythes/mythes.spec b/specs/m/mythes/mythes.spec index 4f22f0ac1d2..00eb6b4fa8d 100644 --- a/specs/m/mythes/mythes.spec +++ b/specs/m/mythes/mythes.spec @@ -4,7 +4,7 @@ Name: mythes Summary: A thesaurus library Version: 1.2.5 -Release: 10%{?dist} +Release: 10%{?dist} Source: https://github.com/hunspell/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.xz URL: https://github.com/hunspell/mythes License: BSD-3-Clause-Modification AND MIT diff --git a/specs/n/NetworkManager-libreswan/NetworkManager-libreswan.spec b/specs/n/NetworkManager-libreswan/NetworkManager-libreswan.spec index 0a96fd06074..67d7cb939a0 100644 --- a/specs/n/NetworkManager-libreswan/NetworkManager-libreswan.spec +++ b/specs/n/NetworkManager-libreswan/NetworkManager-libreswan.spec @@ -21,7 +21,7 @@ Summary: NetworkManager VPN plug-in for IPsec VPN Name: NetworkManager-libreswan Version: 1.2.30 -Release: 2%{?dist} +Release: 2%{?dist} License: GPL-2.0-or-later URL: https://gitlab.gnome.org/GNOME/NetworkManager-libreswan Source0: https://download.gnome.org/sources/NetworkManager-libreswan/1.2/%{name}-%{version}.tar.xz diff --git a/specs/n/nano/nano.spec b/specs/n/nano/nano.spec index 92c47836c2d..2fea8dd6276 100644 --- a/specs/n/nano/nano.spec +++ b/specs/n/nano/nano.spec @@ -11,7 +11,7 @@ Summary: A small text editor Name: nano Version: 8.5 -Release: 3%{?dist} +Release: 3%{?dist} License: GPL-3.0-or-later URL: https://www.nano-editor.org diff --git a/specs/n/nbdkit/nbdkit.spec b/specs/n/nbdkit/nbdkit.spec index aea63ed173c..b9ac9250780 100644 --- a/specs/n/nbdkit/nbdkit.spec +++ b/specs/n/nbdkit/nbdkit.spec @@ -58,7 +58,7 @@ Name: nbdkit Version: 1.46.2 -Release: 3%{?dist} +Release: 3%{?dist} Summary: NBD server License: BSD-3-Clause diff --git a/specs/n/ncurses/ncurses.spec b/specs/n/ncurses/ncurses.spec index 22f7c9fbb79..c107e168c35 100644 --- a/specs/n/ncurses/ncurses.spec +++ b/specs/n/ncurses/ncurses.spec @@ -12,7 +12,7 @@ Summary: Ncurses support utilities Name: ncurses Version: 6.5 -Release: 7.%{revision}%{?dist} +Release: 10.%{revision}%{?dist} License: MIT-open-group URL: https://invisible-island.net/ncurses/ncurses.html Source0: https://invisible-mirror.net/archives/ncurses/current/ncurses-%{version}-%{revision}.tgz diff --git a/specs/n/ndctl/ndctl.spec b/specs/n/ndctl/ndctl.spec index ef2e87a87af..3060f80b720 100644 --- a/specs/n/ndctl/ndctl.spec +++ b/specs/n/ndctl/ndctl.spec @@ -3,7 +3,7 @@ Name: ndctl Version: 83 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Manage "libnvdimm" subsystem devices (Non-volatile Memory) License: GPL-2.0-only AND LGPL-2.1-only AND CC0-1.0 AND MIT Url: https://github.com/pmem/ndctl diff --git a/specs/n/net-snmp/net-snmp.spec b/specs/n/net-snmp/net-snmp.spec index afb25cabe5d..387bd91e2e0 100644 --- a/specs/n/net-snmp/net-snmp.spec +++ b/specs/n/net-snmp/net-snmp.spec @@ -13,7 +13,7 @@ Summary: A collection of SNMP protocol tools and libraries Name: net-snmp Version: 5.9.4 -Release: 19%{?dist} +Release: 19%{?dist} Epoch: 1 License: MIT-CMU AND BSD-3-Clause AND MIT diff --git a/specs/n/net-tools/net-tools.spec b/specs/n/net-tools/net-tools.spec index 7a20313b338..cea698d3c63 100644 --- a/specs/n/net-tools/net-tools.spec +++ b/specs/n/net-tools/net-tools.spec @@ -6,7 +6,7 @@ Summary: Basic networking tools Name: net-tools Version: 2.0 -Release: 0.74.%{checkout}%{?dist} +Release: 0.77.%{checkout}%{?dist} License: GPL-2.0-or-later URL: http://sourceforge.net/projects/net-tools/ diff --git a/specs/n/netcat/netcat.spec b/specs/n/netcat/netcat.spec index ab3673d928e..477c91a2ef4 100644 --- a/specs/n/netcat/netcat.spec +++ b/specs/n/netcat/netcat.spec @@ -15,7 +15,7 @@ Summary: OpenBSD netcat to read and write data across connections using Name: netcat # Version from CVS revision of OpenBSD netcat.c Version: 1.237 -Release: 4%{?dist} +Release: 4%{?dist} # BSD-3-Clause: nc.1 and netcat.c # BSD-2-Clause: atomicio.{c,h} and socks.c License: BSD-3-Clause AND BSD-2-Clause diff --git a/specs/n/netcdf-cxx/netcdf-cxx.spec b/specs/n/netcdf-cxx/netcdf-cxx.spec index b8147958fdb..0ff7c8c48e7 100644 --- a/specs/n/netcdf-cxx/netcdf-cxx.spec +++ b/specs/n/netcdf-cxx/netcdf-cxx.spec @@ -3,7 +3,7 @@ Name: netcdf-cxx Version: 4.2 -Release: 39%{?dist} +Release: 39%{?dist} Summary: Legacy netCDF C++ library # Automatically converted from old format: NetCDF - review is highly recommended. diff --git a/specs/n/netcdf4-python/netcdf4-python.spec b/specs/n/netcdf4-python/netcdf4-python.spec index 78046130b63..541f2de0955 100644 --- a/specs/n/netcdf4-python/netcdf4-python.spec +++ b/specs/n/netcdf4-python/netcdf4-python.spec @@ -3,7 +3,7 @@ Name: netcdf4-python Version: 1.7.2 -Release: 7%{?dist}.1 +Release: 10%{?dist}.1 Summary: Python/numpy interface to netCDF License: MIT diff --git a/specs/n/netpbm/netpbm.spec b/specs/n/netpbm/netpbm.spec index c5030fb699e..4aef7d8e5fb 100644 --- a/specs/n/netpbm/netpbm.spec +++ b/specs/n/netpbm/netpbm.spec @@ -4,7 +4,7 @@ Summary: A library for handling different graphics file formats Name: netpbm Version: 11.13.00 -Release: 2%{?dist} +Release: 2%{?dist} # See copyright_summary for details License: BSD-3-Clause AND GPL-2.0-only AND LGPL-2.1-or-later AND GPL-3.0-or-later AND IJG AND MIT AND NTP AND PostgreSQL AND LicenseRef-MIT-CRL-Xim AND LicenseRef-Fedora-Public-Domain URL: http://netpbm.sourceforge.net/ diff --git a/specs/n/netplan/netplan.spec b/specs/n/netplan/netplan.spec index ac44c63a7ba..afc2fde9d57 100644 --- a/specs/n/netplan/netplan.spec +++ b/specs/n/netplan/netplan.spec @@ -21,7 +21,7 @@ Name: netplan Version: 1.2.1 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Network configuration tool using YAML License: GPL-3.0-only URL: http://netplan.io/ diff --git a/specs/n/nfs-ganesha/nfs-ganesha.spec b/specs/n/nfs-ganesha/nfs-ganesha.spec index 50a422b5101..23d6cbbfe52 100644 --- a/specs/n/nfs-ganesha/nfs-ganesha.spec +++ b/specs/n/nfs-ganesha/nfs-ganesha.spec @@ -131,7 +131,7 @@ Requires: openSUSE-release Name: nfs-ganesha Version: 7.2 -Release: 2%{?dev:%{dev}}%{?dist} +Release: 5%{?dev:%{dev}}%{?dist} Summary: NFS-Ganesha is a NFS Server running in user space License: LGPL-3.0-or-later Url: https://github.com/nfs-ganesha/nfs-ganesha/wiki diff --git a/specs/n/nfs4-acl-tools/nfs4-acl-tools.spec b/specs/n/nfs4-acl-tools/nfs4-acl-tools.spec index 8555a3f3eef..b8124ce8973 100644 --- a/specs/n/nfs4-acl-tools/nfs4-acl-tools.spec +++ b/specs/n/nfs4-acl-tools/nfs4-acl-tools.spec @@ -3,7 +3,7 @@ Name: nfs4-acl-tools Version: 0.4.2 -Release: 10%{?dist} +Release: 10%{?dist} Summary: The nfs4 ACL tools License: LGPL-2.1-or-later URL: http://git.linux-nfs.org/?p=steved/nfs4-acl-tools.git;a=summary diff --git a/specs/n/nftables/nftables.spec b/specs/n/nftables/nftables.spec index 435e086c5a8..39c1c0bba4e 100644 --- a/specs/n/nftables/nftables.spec +++ b/specs/n/nftables/nftables.spec @@ -3,7 +3,7 @@ Name: nftables Version: 1.1.3 -Release: 7%{?dist} +Release: 7%{?dist} # Upstream released a 0.100 version, then 0.4. Need Epoch to get back on track. Epoch: 1 Summary: Netfilter Tables userspace utilities diff --git a/specs/n/ninja-build/ninja-build.spec b/specs/n/ninja-build/ninja-build.spec index 8425a7457fe..2879c5b0510 100644 --- a/specs/n/ninja-build/ninja-build.spec +++ b/specs/n/ninja-build/ninja-build.spec @@ -7,7 +7,7 @@ Name: ninja-build Version: 1.13.2 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Small build system with a focus on speed License: Apache-2.0 URL: https://ninja-build.org/ diff --git a/specs/n/nkf/nkf.spec b/specs/n/nkf/nkf.spec index 51903cb8330..f102026d9bd 100644 --- a/specs/n/nkf/nkf.spec +++ b/specs/n/nkf/nkf.spec @@ -4,7 +4,7 @@ Name: nkf Epoch: 1 Version: 2.1.4 -Release: 38%{?dist} +Release: 38%{?dist} License: Zlib URL: http://nkf.osdn.jp/ Source0: http://iij.dl.osdn.jp/nkf/64158/%{name}-%{version}.tar.gz diff --git a/specs/n/nmh/nmh.spec b/specs/n/nmh/nmh.spec index 5642223cf17..65a23bd63e3 100644 --- a/specs/n/nmh/nmh.spec +++ b/specs/n/nmh/nmh.spec @@ -3,7 +3,7 @@ Name: nmh Version: 1.8 -Release: 10%{?dist} +Release: 10%{?dist} Summary: A capable MIME-email-handling system with a command-line interface # Automatically converted from old format: BSD - review is highly recommended. License: LicenseRef-Callaway-BSD diff --git a/specs/n/nodejs22/nodejs22.spec b/specs/n/nodejs22/nodejs22.spec index f199d86831a..46915829d78 100644 --- a/specs/n/nodejs22/nodejs22.spec +++ b/specs/n/nodejs22/nodejs22.spec @@ -2,7 +2,7 @@ ## (rpmautospec version 0.8.3) ## RPMAUTOSPEC: autorelease, autochangelog %define autorelease(e:s:pb:n) %{?-p:0.}%{lua: - release_number = 4; + release_number = 5; base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}")); print(release_number + base_release_number - 1); }%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}} @@ -955,6 +955,9 @@ end %changelog ## START: Generated by rpmautospec +* Fri Aug 14 2026 Thien Trung Vuong - 1:22.22.0-5 +- feat(rebuild): migrate remaining macro-driven release counters + * Thu Apr 30 2026 Daniel McIlvaney - 1:22.22.0-4 - feat: introduce deterministic commit resolution via Azure Linux lock file diff --git a/specs/n/nodejs24/nodejs24.spec b/specs/n/nodejs24/nodejs24.spec index effe6f87b89..5b7a219a38d 100644 --- a/specs/n/nodejs24/nodejs24.spec +++ b/specs/n/nodejs24/nodejs24.spec @@ -2,7 +2,7 @@ ## (rpmautospec version 0.8.3) ## RPMAUTOSPEC: autorelease, autochangelog %define autorelease(e:s:pb:n) %{?-p:0.}%{lua: - release_number = 2; + release_number = 3; base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}")); print(release_number + base_release_number - 1); }%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}} @@ -623,6 +623,9 @@ bash '%{SOURCE10}' "${RPM_BUILD_ROOT}%{_bindir}/node-%{node_version_major}" test %changelog ## START: Generated by rpmautospec +* Thu Aug 13 2026 Thien Trung Vuong - 1:24.13.1-3 +- feat(rebuild): adopt managed release counters + * Thu Apr 30 2026 Daniel McIlvaney - 1:24.13.1-2 - feat: introduce deterministic commit resolution via Azure Linux lock file diff --git a/specs/n/nss/nss.spec b/specs/n/nss/nss.spec index a715401cf9e..06a67ec68e8 100644 --- a/specs/n/nss/nss.spec +++ b/specs/n/nss/nss.spec @@ -6,7 +6,7 @@ # NOTE: To avoid NVR clashes of nspr* packages: # - reset %%{nspr_release} to 1, when updating %%{nspr_version} # - increment %%{nspr_version}, when updating the NSS part only -%global baserelease 1 +%global baserelease 4 %global nss_release %baserelease # use "%%global nspr_release %%[%%baserelease+n]" to handle offsets when # release number between nss and nspr are different. diff --git a/specs/n/nss_nis/nss_nis.spec b/specs/n/nss_nis/nss_nis.spec index 80e12d64697..d146e15eee6 100644 --- a/specs/n/nss_nis/nss_nis.spec +++ b/specs/n/nss_nis/nss_nis.spec @@ -3,7 +3,7 @@ Name: nss_nis Version: 3.2 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Name Service Switch (NSS) module using NIS # Automatically converted from old format: LGPLv2+ - review is highly recommended. License: LicenseRef-Callaway-LGPLv2+ diff --git a/specs/n/ntfs-3g-system-compression/ntfs-3g-system-compression.spec b/specs/n/ntfs-3g-system-compression/ntfs-3g-system-compression.spec index 5f66b2b0fef..dd5f9b26a37 100644 --- a/specs/n/ntfs-3g-system-compression/ntfs-3g-system-compression.spec +++ b/specs/n/ntfs-3g-system-compression/ntfs-3g-system-compression.spec @@ -4,7 +4,7 @@ Name: ntfs-3g-system-compression Summary: NTFS-3G plugin for reading "system compressed" files Version: 1.1 -Release: 2%{?dist} +Release: 2%{?dist} License: GPL-2.0-or-later URL: https://github.com/ebiggers/ntfs-3g-system-compression Source: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz diff --git a/specs/n/ntfs-3g/ntfs-3g.spec b/specs/n/ntfs-3g/ntfs-3g.spec index 989ebd5eda6..fc17263db12 100644 --- a/specs/n/ntfs-3g/ntfs-3g.spec +++ b/specs/n/ntfs-3g/ntfs-3g.spec @@ -11,7 +11,7 @@ Name: ntfs-3g Epoch: 2 Version: 2022.10.3 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Linux NTFS userspace driver # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later diff --git a/specs/n/ntpstat/ntpstat.spec b/specs/n/ntpstat/ntpstat.spec index 18c3bbe156e..a8aedc5a16a 100644 --- a/specs/n/ntpstat/ntpstat.spec +++ b/specs/n/ntpstat/ntpstat.spec @@ -3,7 +3,7 @@ Name: ntpstat Version: 0.6 -Release: 15%{?dist} +Release: 15%{?dist} Summary: Utility to print NTP synchronization status License: MIT diff --git a/specs/n/numactl/numactl.spec b/specs/n/numactl/numactl.spec index 999358d7989..5f62c9238ab 100644 --- a/specs/n/numactl/numactl.spec +++ b/specs/n/numactl/numactl.spec @@ -4,7 +4,7 @@ Name: numactl Summary: Library for tuning for Non Uniform Memory Access machines Version: 2.0.19 -Release: 4%{?dist} +Release: 4%{?dist} # libnuma is LGPLv2 and GPLv2 # numactl binaries are GPLv2 only License: GPL-2.0-only diff --git a/specs/n/numad/numad.spec b/specs/n/numad/numad.spec index 918213df21f..1246e43a00c 100644 --- a/specs/n/numad/numad.spec +++ b/specs/n/numad/numad.spec @@ -3,7 +3,7 @@ Name: numad Version: 0.5 -Release: 47.20150602git%{?dist} +Release: 50.20150602git%{?dist} Summary: NUMA user daemon License: LGPL-2.1-only diff --git a/specs/n/numpy/numpy.spec b/specs/n/numpy/numpy.spec index b5a49e6cea0..b4d25dcee17 100644 --- a/specs/n/numpy/numpy.spec +++ b/specs/n/numpy/numpy.spec @@ -23,7 +23,7 @@ Name: numpy Version: 2.3.5 -Release: 2%{?dist} +Release: 2%{?dist} Epoch: 1 Summary: A fast multidimensional array facility for Python diff --git a/specs/n/nunit/nunit.spec b/specs/n/nunit/nunit.spec index 261817a6c1e..18d7ff75338 100644 --- a/specs/n/nunit/nunit.spec +++ b/specs/n/nunit/nunit.spec @@ -5,7 +5,7 @@ Name: nunit Version: 3.7.1 -Release: 23%{?dist} +Release: 23%{?dist} Summary: Unit test framework for CLI # Automatically converted from old format: MIT with advertising - review is highly recommended. License: LicenseRef-Callaway-MIT-with-advertising diff --git a/specs/n/nuspell/nuspell.spec b/specs/n/nuspell/nuspell.spec index 4d42232446e..35dcddb6125 100644 --- a/specs/n/nuspell/nuspell.spec +++ b/specs/n/nuspell/nuspell.spec @@ -3,7 +3,7 @@ Name: nuspell Version: 5.1.6 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Fast and safe spellchecking C++ library and command-line tool License: LGPL-3.0-or-later URL: https://nuspell.github.io diff --git a/specs/n/nvme-cli/nvme-cli.spec b/specs/n/nvme-cli/nvme-cli.spec index cbe5a5248b4..5473313c697 100644 --- a/specs/n/nvme-cli/nvme-cli.spec +++ b/specs/n/nvme-cli/nvme-cli.spec @@ -8,7 +8,7 @@ Name: nvme-cli Version: 2.16 -Release: 2%{?dist} +Release: 2%{?dist} Summary: NVMe management command line interface License: GPL-2.0-only diff --git a/specs/n/nvmetcli/nvmetcli.spec b/specs/n/nvmetcli/nvmetcli.spec index 07d5453ed32..1e486aff80b 100644 --- a/specs/n/nvmetcli/nvmetcli.spec +++ b/specs/n/nvmetcli/nvmetcli.spec @@ -5,7 +5,7 @@ Name: nvmetcli License: Apache-2.0 Summary: An adminstration shell for NVMe storage targets Version: 0.8 -Release: 7%{?dist} +Release: 7%{?dist} URL: ftp://ftp.infradead.org/pub/nvmetcli/ Source: ftp://ftp.infradead.org/pub/nvmetcli/%{name}-%{version}.tar.gz BuildArch: noarch diff --git a/specs/n/nvml/nvml.spec b/specs/n/nvml/nvml.spec index 9b4bcea4b44..15803a209af 100644 --- a/specs/n/nvml/nvml.spec +++ b/specs/n/nvml/nvml.spec @@ -35,7 +35,7 @@ Name: nvml Version: %{upstreamversion} -Release: 5%{?dist} +Release: 5%{?dist} Summary: Persistent Memory Development Kit (formerly NVML) License: BSD-3-Clause URL: http://pmem.io/pmdk diff --git a/specs/o/OpenIPMI/OpenIPMI.spec b/specs/o/OpenIPMI/OpenIPMI.spec index 2ed7a87b57b..9746ae73487 100644 --- a/specs/o/OpenIPMI/OpenIPMI.spec +++ b/specs/o/OpenIPMI/OpenIPMI.spec @@ -10,7 +10,7 @@ Summary: IPMI (Intelligent Platform Management Interface) library and tools Name: OpenIPMI Version: 2.0.36 -Release: 4%{?dist} +Release: 4%{?dist} License: LGPL-2.1-or-later and GPL-2.0-or-later or BSD-3-Clause URL: https://sourceforge.net/projects/openipmi/ Source: https://downloads.sourceforge.net/openipmi/%{name}-%{version}.tar.gz diff --git a/specs/o/oath-toolkit/oath-toolkit.spec b/specs/o/oath-toolkit/oath-toolkit.spec index 3b32dfa50ac..8db3a4426d9 100644 --- a/specs/o/oath-toolkit/oath-toolkit.spec +++ b/specs/o/oath-toolkit/oath-toolkit.spec @@ -3,7 +3,7 @@ Name: oath-toolkit Version: 2.6.12 -Release: 4%{?dist} +Release: 4%{?dist} # Automatically converted from old format: GPLv3+ - review is highly recommended. License: GPL-3.0-or-later Summary: One-time password components diff --git a/specs/o/ocaml-astring/ocaml-astring.spec b/specs/o/ocaml-astring/ocaml-astring.spec index 7656e43d041..73553eaa0e7 100644 --- a/specs/o/ocaml-astring/ocaml-astring.spec +++ b/specs/o/ocaml-astring/ocaml-astring.spec @@ -10,7 +10,7 @@ ExcludeArch: %{ix86} Name: ocaml-astring Version: 0.8.5 -Release: 31%{?dist} +Release: 31%{?dist} Summary: Alternative String module for OCaml License: ISC diff --git a/specs/o/ocaml-augeas/ocaml-augeas.spec b/specs/o/ocaml-augeas/ocaml-augeas.spec index 51822718617..d66f3fd0462 100644 --- a/specs/o/ocaml-augeas/ocaml-augeas.spec +++ b/specs/o/ocaml-augeas/ocaml-augeas.spec @@ -6,7 +6,7 @@ ExcludeArch: %{ix86} Name: ocaml-augeas Version: 0.7 -Release: 4%{?dist} +Release: 4%{?dist} Summary: OCaml bindings for Augeas configuration API License: LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception diff --git a/specs/o/ocaml-camlp-streams/ocaml-camlp-streams.spec b/specs/o/ocaml-camlp-streams/ocaml-camlp-streams.spec index 2db46c0cf2c..518c85e28d3 100644 --- a/specs/o/ocaml-camlp-streams/ocaml-camlp-streams.spec +++ b/specs/o/ocaml-camlp-streams/ocaml-camlp-streams.spec @@ -10,7 +10,7 @@ ExcludeArch: %{ix86} Name: ocaml-camlp-streams Version: 5.0.1 -Release: 20%{?dist} +Release: 20%{?dist} Summary: Stream and Genlex libraries for OCaml License: LGPL-2.1-only WITH OCaml-LGPL-linking-exception diff --git a/specs/o/ocaml-camomile/ocaml-camomile.spec b/specs/o/ocaml-camomile/ocaml-camomile.spec index 4e3094b1393..2e61a34df9e 100644 --- a/specs/o/ocaml-camomile/ocaml-camomile.spec +++ b/specs/o/ocaml-camomile/ocaml-camomile.spec @@ -10,7 +10,7 @@ ExcludeArch: %{ix86} Name: ocaml-camomile Version: 2.0.0 -Release: 19%{?dist} +Release: 19%{?dist} Summary: Unicode library for OCaml # LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception: the project as a whole diff --git a/specs/o/ocaml-cinaps/ocaml-cinaps.spec b/specs/o/ocaml-cinaps/ocaml-cinaps.spec index 7a0828a0c34..539f3df3bea 100644 --- a/specs/o/ocaml-cinaps/ocaml-cinaps.spec +++ b/specs/o/ocaml-cinaps/ocaml-cinaps.spec @@ -10,7 +10,7 @@ ExcludeArch: %{ix86} Name: ocaml-cinaps Version: 0.15.1 -Release: 26%{?dist} +Release: 26%{?dist} Summary: Trivial Metaprogramming tool using the OCaml toplevel License: MIT diff --git a/specs/o/ocaml-cmdliner/ocaml-cmdliner.spec b/specs/o/ocaml-cmdliner/ocaml-cmdliner.spec index 0a52227abc6..c7dd12e3abc 100644 --- a/specs/o/ocaml-cmdliner/ocaml-cmdliner.spec +++ b/specs/o/ocaml-cmdliner/ocaml-cmdliner.spec @@ -10,7 +10,7 @@ ExcludeArch: %{ix86} Name: ocaml-cmdliner Version: 1.3.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Declarative definition of command line interfaces for OCaml License: ISC diff --git a/specs/o/ocaml-compiler-libs-janestreet/ocaml-compiler-libs-janestreet.spec b/specs/o/ocaml-compiler-libs-janestreet/ocaml-compiler-libs-janestreet.spec index e8d8e27d4de..6c58e999aaa 100644 --- a/specs/o/ocaml-compiler-libs-janestreet/ocaml-compiler-libs-janestreet.spec +++ b/specs/o/ocaml-compiler-libs-janestreet/ocaml-compiler-libs-janestreet.spec @@ -12,7 +12,7 @@ ExcludeArch: %{ix86} Name: ocaml-compiler-libs-janestreet Version: 0.17.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: OCaml compiler libraries repackaged License: MIT diff --git a/specs/o/ocaml-cppo/ocaml-cppo.spec b/specs/o/ocaml-cppo/ocaml-cppo.spec index fdbc64c3304..a735a318ace 100644 --- a/specs/o/ocaml-cppo/ocaml-cppo.spec +++ b/specs/o/ocaml-cppo/ocaml-cppo.spec @@ -8,7 +8,7 @@ ExcludeArch: %{ix86} Name: ocaml-cppo Version: 1.8.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Equivalent of the C preprocessor for OCaml programs License: BSD-3-Clause diff --git a/specs/o/ocaml-csexp/ocaml-csexp.spec b/specs/o/ocaml-csexp/ocaml-csexp.spec index 430a632c13a..7f31de75884 100644 --- a/specs/o/ocaml-csexp/ocaml-csexp.spec +++ b/specs/o/ocaml-csexp/ocaml-csexp.spec @@ -20,7 +20,7 @@ ExcludeArch: %{ix86} Name: ocaml-csexp Version: 1.5.2 -Release: 17%{?dist} +Release: 17%{?dist} Summary: Parsing and printing of S-expressions in canonical form License: MIT diff --git a/specs/o/ocaml-curses/ocaml-curses.spec b/specs/o/ocaml-curses/ocaml-curses.spec index 6c71de3219a..0b077e5b677 100644 --- a/specs/o/ocaml-curses/ocaml-curses.spec +++ b/specs/o/ocaml-curses/ocaml-curses.spec @@ -6,7 +6,7 @@ ExcludeArch: %{ix86} Name: ocaml-curses Version: 1.0.11 -Release: 16%{?dist} +Release: 16%{?dist} Summary: OCaml bindings for ncurses License: LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception diff --git a/specs/o/ocaml-dune/ocaml-dune.spec b/specs/o/ocaml-dune/ocaml-dune.spec index 4a88065fab2..2dd90621760 100644 --- a/specs/o/ocaml-dune/ocaml-dune.spec +++ b/specs/o/ocaml-dune/ocaml-dune.spec @@ -17,7 +17,7 @@ Name: ocaml-dune Version: 3.20.2 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Composable build system for OCaml and Reason # Dune itself is MIT. Some bundled libraries have a different license: diff --git a/specs/o/ocaml-fileutils/ocaml-fileutils.spec b/specs/o/ocaml-fileutils/ocaml-fileutils.spec index 0de17881f1c..6cb8c546de1 100644 --- a/specs/o/ocaml-fileutils/ocaml-fileutils.spec +++ b/specs/o/ocaml-fileutils/ocaml-fileutils.spec @@ -12,7 +12,7 @@ ExcludeArch: %{ix86} Name: ocaml-fileutils Version: 0.6.6 -Release: 5%{?dist} +Release: 5%{?dist} Summary: OCaml library for common file and filename operations License: LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception diff --git a/specs/o/ocaml-findlib/ocaml-findlib.spec b/specs/o/ocaml-findlib/ocaml-findlib.spec index 72e562fd905..95aff3521ef 100644 --- a/specs/o/ocaml-findlib/ocaml-findlib.spec +++ b/specs/o/ocaml-findlib/ocaml-findlib.spec @@ -10,7 +10,7 @@ ExcludeArch: %{ix86} Name: ocaml-findlib Version: 1.9.8 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Objective CAML package manager and build helper License: MIT diff --git a/specs/o/ocaml-gettext/ocaml-gettext.spec b/specs/o/ocaml-gettext/ocaml-gettext.spec index bb2813aebe8..28849ca9f50 100644 --- a/specs/o/ocaml-gettext/ocaml-gettext.spec +++ b/specs/o/ocaml-gettext/ocaml-gettext.spec @@ -15,7 +15,7 @@ ExcludeArch: %{ix86} Name: ocaml-gettext Version: 0.5.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: OCaml library for i18n License: LGPL-2.1-or-later with OCaml-LGPL-linking-exception diff --git a/specs/o/ocaml-labltk/ocaml-labltk.spec b/specs/o/ocaml-labltk/ocaml-labltk.spec index d26c8930425..c4abcf2adc9 100644 --- a/specs/o/ocaml-labltk/ocaml-labltk.spec +++ b/specs/o/ocaml-labltk/ocaml-labltk.spec @@ -13,7 +13,7 @@ ExcludeArch: %{ix86} Name: ocaml-labltk Version: 8.06.15 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Tcl/Tk interface for OCaml diff --git a/specs/o/ocaml-lwt/ocaml-lwt.spec b/specs/o/ocaml-lwt/ocaml-lwt.spec index 5ec0c0337db..87a2031bae2 100644 --- a/specs/o/ocaml-lwt/ocaml-lwt.spec +++ b/specs/o/ocaml-lwt/ocaml-lwt.spec @@ -8,7 +8,7 @@ ExcludeArch: %{ix86} Name: ocaml-lwt Version: 5.9.1 -Release: 3%{?dist} +Release: 3%{?dist} Summary: OCaml lightweight thread library # The project as a whole is MIT. The following files are BSD-2-Clause: diff --git a/specs/o/ocaml-ocamlbuild/ocaml-ocamlbuild.spec b/specs/o/ocaml-ocamlbuild/ocaml-ocamlbuild.spec index e1ee591ec66..86a65cbab37 100644 --- a/specs/o/ocaml-ocamlbuild/ocaml-ocamlbuild.spec +++ b/specs/o/ocaml-ocamlbuild/ocaml-ocamlbuild.spec @@ -13,7 +13,7 @@ ExcludeArch: %{ix86} Name: ocaml-ocamlbuild Version: 0.16.1 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Build tool for OCaml libraries and programs diff --git a/specs/o/ocaml-ocplib-endian/ocaml-ocplib-endian.spec b/specs/o/ocaml-ocplib-endian/ocaml-ocplib-endian.spec index 5a51ca51434..0ac40698aeb 100644 --- a/specs/o/ocaml-ocplib-endian/ocaml-ocplib-endian.spec +++ b/specs/o/ocaml-ocplib-endian/ocaml-ocplib-endian.spec @@ -10,7 +10,7 @@ ExcludeArch: %{ix86} Name: ocaml-ocplib-endian Version: 1.2 -Release: 23%{?dist} +Release: 23%{?dist} Summary: Functions to read/write int16/32/64 from strings, bigarrays License: LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception diff --git a/specs/o/ocaml-ounit/ocaml-ounit.spec b/specs/o/ocaml-ounit/ocaml-ounit.spec index 1cc6044595e..c808900a52f 100644 --- a/specs/o/ocaml-ounit/ocaml-ounit.spec +++ b/specs/o/ocaml-ounit/ocaml-ounit.spec @@ -10,7 +10,7 @@ ExcludeArch: %{ix86} Name: ocaml-ounit Version: 2.2.7 -Release: 17%{?dist} +Release: 17%{?dist} Summary: Unit test framework for OCaml License: MIT diff --git a/specs/o/ocaml-ppx-derivers/ocaml-ppx-derivers.spec b/specs/o/ocaml-ppx-derivers/ocaml-ppx-derivers.spec index 9053205cb3c..22ed0a759a7 100644 --- a/specs/o/ocaml-ppx-derivers/ocaml-ppx-derivers.spec +++ b/specs/o/ocaml-ppx-derivers/ocaml-ppx-derivers.spec @@ -10,7 +10,7 @@ ExcludeArch: %{ix86} Name: ocaml-ppx-derivers Version: 1.2.1 -Release: 43%{?dist} +Release: 43%{?dist} Summary: Deriving plugin registry License: BSD-3-Clause diff --git a/specs/o/ocaml-re/ocaml-re.spec b/specs/o/ocaml-re/ocaml-re.spec index 2c5217765a0..a3f8e0d1c16 100644 --- a/specs/o/ocaml-re/ocaml-re.spec +++ b/specs/o/ocaml-re/ocaml-re.spec @@ -14,7 +14,7 @@ ExcludeArch: %{ix86} Name: ocaml-re Version: 1.13.3 -Release: 6%{?dist} +Release: 6%{?dist} Summary: A regular expression library for OCaml License: LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception diff --git a/specs/o/ocaml-react/ocaml-react.spec b/specs/o/ocaml-react/ocaml-react.spec index d55ae7cada7..993c9df697f 100644 --- a/specs/o/ocaml-react/ocaml-react.spec +++ b/specs/o/ocaml-react/ocaml-react.spec @@ -10,7 +10,7 @@ ExcludeArch: %{ix86} Name: ocaml-react Version: 1.2.2 -Release: 17%{?dist} +Release: 17%{?dist} Summary: OCaml framework for Functional Reactive Programming (FRP) License: ISC diff --git a/specs/o/ocaml-srpm-macros/ocaml-srpm-macros.spec b/specs/o/ocaml-srpm-macros/ocaml-srpm-macros.spec index 8fafaf16338..f7332205265 100644 --- a/specs/o/ocaml-srpm-macros/ocaml-srpm-macros.spec +++ b/specs/o/ocaml-srpm-macros/ocaml-srpm-macros.spec @@ -13,7 +13,7 @@ Name: ocaml-srpm-macros Version: 11 -Release: 3%{?dist} +Release: 3%{?dist} Summary: OCaml architecture macros License: GPL-2.0-or-later diff --git a/specs/o/ocaml/ocaml.spec b/specs/o/ocaml/ocaml.spec index bc63b91146d..4ba3a3ad219 100644 --- a/specs/o/ocaml/ocaml.spec +++ b/specs/o/ocaml/ocaml.spec @@ -49,7 +49,7 @@ ExcludeArch: %{ix86} Name: ocaml Version: 5.3.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: OCaml compiler and programming environment diff --git a/specs/o/ocean-sound-theme/ocean-sound-theme.spec b/specs/o/ocean-sound-theme/ocean-sound-theme.spec index 053c28e5009..4b71d8e1f4a 100644 --- a/specs/o/ocean-sound-theme/ocean-sound-theme.spec +++ b/specs/o/ocean-sound-theme/ocean-sound-theme.spec @@ -4,7 +4,7 @@ Name: ocean-sound-theme Summary: Ocean Sound Theme for Plasma Version: 6.6.0 -Release: 2%{?dist} +Release: 2%{?dist} BuildArch: noarch License: CC0-1.0 AND BSD-2-Clause AND CC-BY-SA-4.0 diff --git a/specs/o/odfpy/odfpy.spec b/specs/o/odfpy/odfpy.spec index 4bd199ba1e0..c6807e5efa4 100644 --- a/specs/o/odfpy/odfpy.spec +++ b/specs/o/odfpy/odfpy.spec @@ -3,7 +3,7 @@ Name: odfpy Version: 1.4.1 -Release: 18%{?dist} +Release: 18%{?dist} Summary: Python library for manipulating OpenDocument files # Automatically converted from old format: GPLv2+ - review is highly recommended. diff --git a/specs/o/odt2txt/odt2txt.spec b/specs/o/odt2txt/odt2txt.spec index 03f9717c58a..b9764b6a2f1 100644 --- a/specs/o/odt2txt/odt2txt.spec +++ b/specs/o/odt2txt/odt2txt.spec @@ -3,7 +3,7 @@ Name: odt2txt Version: 0.5 -Release: 18%{?dist} +Release: 18%{?dist} Summary: Converts an OpenDocument to plain text # Automatically converted from old format: GPLv2 - review is highly recommended. diff --git a/specs/o/oniguruma/oniguruma.spec b/specs/o/oniguruma/oniguruma.spec index 9d7b903f6bf..16e2cdec1ea 100644 --- a/specs/o/oniguruma/oniguruma.spec +++ b/specs/o/oniguruma/oniguruma.spec @@ -24,7 +24,7 @@ #%%global betaver rc4 #%%define prerelease 1 -%global baserelease 3 +%global baserelease 5 Name: oniguruma Version: %{mainver}%{?postver:.%postver}%{?gitversion:^%{?gitversion}} diff --git a/specs/o/onnx/onnx.spec b/specs/o/onnx/onnx.spec index 6068bc39f24..bddee965f80 100644 --- a/specs/o/onnx/onnx.spec +++ b/specs/o/onnx/onnx.spec @@ -3,7 +3,7 @@ Name: onnx Version: 1.17.0 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Open standard for machine learning interoperability License: Apache-2.0 diff --git a/specs/o/open-sans-fonts/open-sans-fonts.spec b/specs/o/open-sans-fonts/open-sans-fonts.spec index ccc070bfaa7..ae54903547c 100644 --- a/specs/o/open-sans-fonts/open-sans-fonts.spec +++ b/specs/o/open-sans-fonts/open-sans-fonts.spec @@ -6,7 +6,7 @@ Name: %{fontname}-fonts Version: 1.10 -Release: 25%{?dist} +Release: 25%{?dist} Summary: Open Sans is a humanist sans-serif typeface designed by Steve Matteson License: Apache-2.0 diff --git a/specs/o/open-vmdk/open-vmdk.spec b/specs/o/open-vmdk/open-vmdk.spec index d9c75095054..32dc0f0eea1 100644 --- a/specs/o/open-vmdk/open-vmdk.spec +++ b/specs/o/open-vmdk/open-vmdk.spec @@ -3,7 +3,7 @@ Name: open-vmdk Version: 0.3.12 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Tools to create OVA files from raw disk images License: Apache-2.0 URL: https://github.com/vmware/open-vmdk diff --git a/specs/o/openbios/openbios.spec b/specs/o/openbios/openbios.spec index 840f918e247..d3205d74672 100644 --- a/specs/o/openbios/openbios.spec +++ b/specs/o/openbios/openbios.spec @@ -16,7 +16,7 @@ Name: openbios Version: %{date} -Release: %[1 + %{azl_release}].git%{hash}%{?dist} +Release: %[5 + %{azl_release}].git%{hash}%{?dist} Epoch: 1 Summary: OpenBIOS implementation of IEEE 1275-1994 diff --git a/specs/o/openblas-srpm-macros/openblas-srpm-macros.spec b/specs/o/openblas-srpm-macros/openblas-srpm-macros.spec index cac767bcbbc..aa56e6a0f1f 100644 --- a/specs/o/openblas-srpm-macros/openblas-srpm-macros.spec +++ b/specs/o/openblas-srpm-macros/openblas-srpm-macros.spec @@ -3,7 +3,7 @@ Name: openblas-srpm-macros Version: 2 -Release: 21%{?dist} +Release: 21%{?dist} Summary: OpenBLAS architecture macros License: MIT Source0: macros.openblas-srpm diff --git a/specs/o/openblas/openblas.spec b/specs/o/openblas/openblas.spec index f9718b806f1..1ab47259ba6 100644 --- a/specs/o/openblas/openblas.spec +++ b/specs/o/openblas/openblas.spec @@ -18,7 +18,7 @@ Name: openblas Version: 0.3.29 -Release: 3%{?dist} +Release: 3%{?dist} Summary: An optimized BLAS library based on GotoBLAS2 License: BSD-3-Clause diff --git a/specs/o/openbox/openbox.spec b/specs/o/openbox/openbox.spec index 049401685b0..15a587c9baa 100644 --- a/specs/o/openbox/openbox.spec +++ b/specs/o/openbox/openbox.spec @@ -3,7 +3,7 @@ Name: openbox Version: 3.6.1 -Release: 30%{?dist} +Release: 30%{?dist} Summary: A highly configurable and standards-compliant X11 window manager License: GPL-2.0-or-later diff --git a/specs/o/opencl-filesystem/opencl-filesystem.spec b/specs/o/opencl-filesystem/opencl-filesystem.spec index fc8a9c7f46c..da16014de52 100644 --- a/specs/o/opencl-filesystem/opencl-filesystem.spec +++ b/specs/o/opencl-filesystem/opencl-filesystem.spec @@ -3,7 +3,7 @@ Name: opencl-filesystem Version: 1.0 -Release: 24%{?dist} +Release: 24%{?dist} Summary: OpenCL filesystem layout License: LicenseRef-Not-Copyrightable diff --git a/specs/o/opencore-amr/opencore-amr.spec b/specs/o/opencore-amr/opencore-amr.spec index 03b1a1b5eb3..88f6e38a0e7 100644 --- a/specs/o/opencore-amr/opencore-amr.spec +++ b/specs/o/opencore-amr/opencore-amr.spec @@ -5,7 +5,7 @@ Name: opencore-amr Version: 0.1.6 -Release: 10%{?dist} +Release: 10%{?dist} Summary: OpenCORE Adaptive Multi Rate Narrowband and Wideband speech lib License: Apache-2.0 URL: http://sourceforge.net/projects/opencore-amr/ diff --git a/specs/o/opencv/opencv.spec b/specs/o/opencv/opencv.spec index 22d508a9dea..96801a70ac4 100644 --- a/specs/o/opencv/opencv.spec +++ b/specs/o/opencv/opencv.spec @@ -81,7 +81,7 @@ Version: 4.11.0 %global minorver %(foo=%{version}; a=(${foo//./ }); echo ${a[1]} ) %global padding %(digits=00; num=%{minorver}; echo ${digits:${#num}:${#digits}} ) %global abiver %(echo %{majorver}%{padding}%{minorver} ) -Release: 16%{?dist} +Release: 16%{?dist} Summary: Collection of algorithms for computer vision # This is normal three clause BSD. License: BSD-3-Clause AND Apache-2.0 AND ISC diff --git a/specs/o/opendbx/opendbx.spec b/specs/o/opendbx/opendbx.spec index 4e6c94a0aa0..0b86c61b724 100644 --- a/specs/o/opendbx/opendbx.spec +++ b/specs/o/opendbx/opendbx.spec @@ -6,7 +6,7 @@ Name: opendbx Version: 1.4.6 -Release: 42%{?dist} +Release: 42%{?dist} Summary: Lightweight but extensible database access library written in C License: GPL-2.0-or-later AND LGPL-2.0-or-later diff --git a/specs/o/openexr/openexr.spec b/specs/o/openexr/openexr.spec index 2f9a10653d9..a4281deb7b3 100644 --- a/specs/o/openexr/openexr.spec +++ b/specs/o/openexr/openexr.spec @@ -6,7 +6,7 @@ Name: openexr Version: 3.2.4 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Provides the specification and reference implementation of the EXR file format License: BSD-3-Clause WITH AdditionRef-OpenEXR-Additional-IP-Rights-Grant OR Apache-2.0 diff --git a/specs/o/openexr2/openexr2.spec b/specs/o/openexr2/openexr2.spec index b512ecbc49c..e54e3e4c0ba 100644 --- a/specs/o/openexr2/openexr2.spec +++ b/specs/o/openexr2/openexr2.spec @@ -8,7 +8,7 @@ Name: %{pkgname} Version: 2.5.8 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Provides the specification and reference implementation of the EXR file format License: BSD-3-Clause diff --git a/specs/o/openfec/openfec.spec b/specs/o/openfec/openfec.spec index f659f121190..236b034eccf 100644 --- a/specs/o/openfec/openfec.spec +++ b/specs/o/openfec/openfec.spec @@ -4,7 +4,7 @@ %global debug_package %{nil} Name: openfec Version: 1.4.2.6 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Application-Level Forward Erasure Correction codes License: CeCILL-C and GPLv2+ and BSD # GPLv2+: diff --git a/specs/o/openjpeg/openjpeg.spec b/specs/o/openjpeg/openjpeg.spec index 00e5d49a14e..894deb5e0d6 100644 --- a/specs/o/openjpeg/openjpeg.spec +++ b/specs/o/openjpeg/openjpeg.spec @@ -20,7 +20,7 @@ Name: openjpeg Version: 2.5.4 -Release: 3%{?dist} +Release: 3%{?dist} Summary: C-Library for JPEG 2000 # windirent.h is MIT, the rest is BSD diff --git a/specs/o/openpace/openpace.spec b/specs/o/openpace/openpace.spec index 86e739e7fb8..ab8ef9c4cbb 100644 --- a/specs/o/openpace/openpace.spec +++ b/specs/o/openpace/openpace.spec @@ -3,7 +3,7 @@ Name: openpace Version: 1.1.3 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Cryptographic library for EAC version 2 License: GPL-3.0-only diff --git a/specs/o/opensc/opensc.spec b/specs/o/opensc/opensc.spec index 6662a64d5f5..536382f43af 100644 --- a/specs/o/opensc/opensc.spec +++ b/specs/o/opensc/opensc.spec @@ -3,7 +3,7 @@ Name: opensc Version: 0.26.1 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Smart card library and applications License: LGPL-2.1-or-later AND BSD-3-Clause diff --git a/specs/o/openscap/openscap.spec b/specs/o/openscap/openscap.spec index 065aedc2e75..b8b43795d84 100644 --- a/specs/o/openscap/openscap.spec +++ b/specs/o/openscap/openscap.spec @@ -6,7 +6,7 @@ Name: openscap Version: 1.4.4 -Release: 4%{?dist} +Release: 4%{?dist} Epoch: 1 Summary: Set of open source libraries enabling integration of the SCAP line of standards License: LGPL-2.1-or-later diff --git a/specs/o/opensmtpd/opensmtpd.spec b/specs/o/opensmtpd/opensmtpd.spec index 1bcc856db34..6f58240442c 100644 --- a/specs/o/opensmtpd/opensmtpd.spec +++ b/specs/o/opensmtpd/opensmtpd.spec @@ -11,7 +11,7 @@ Summary: Free implementation of the server-side SMTP protocol as defined by RFC 5321 Name: opensmtpd Version: 7.8.0p0 -Release: 2%{?dist} +Release: 2%{?dist} License: ISC URL: http://www.opensmtpd.org/ diff --git a/specs/o/openspecfun/openspecfun.spec b/specs/o/openspecfun/openspecfun.spec index 547807ca253..12dcb49037f 100644 --- a/specs/o/openspecfun/openspecfun.spec +++ b/specs/o/openspecfun/openspecfun.spec @@ -6,7 +6,7 @@ Summary: Library providing a collection of special mathematical functions Name: openspecfun Version: 0.5.3 -Release: 25%{?dist} +Release: 25%{?dist} # Automatically converted from old format: MIT and Public Domain - review is highly recommended. License: LicenseRef-Callaway-MIT AND LicenseRef-Callaway-Public-Domain Source0: https://github.com/JuliaLang/openspecfun/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz diff --git a/specs/o/openwsman/openwsman.spec b/specs/o/openwsman/openwsman.spec index 2aef09fec83..66f2e31c5ed 100644 --- a/specs/o/openwsman/openwsman.spec +++ b/specs/o/openwsman/openwsman.spec @@ -28,7 +28,7 @@ Name: openwsman Version: 2.8.1 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Open source Implementation of WS-Management License: BSD-3-Clause AND MIT diff --git a/specs/o/oqsprovider/oqsprovider.spec b/specs/o/oqsprovider/oqsprovider.spec index 2369a712e27..a78b23bcd12 100644 --- a/specs/o/oqsprovider/oqsprovider.spec +++ b/specs/o/oqsprovider/oqsprovider.spec @@ -5,7 +5,7 @@ %global liboqs_min_version 0.12.0-1 Name: oqsprovider Version: %{oqs_version} -Release: 5%{?dist} +Release: 5%{?dist} Summary: oqsprovider is an OpenSSL provider for quantum-safe algorithms based on liboqs License: Apache-2.0 AND MIT diff --git a/specs/o/orc/orc.spec b/specs/o/orc/orc.spec index 34e3c7f51d7..76204693d31 100644 --- a/specs/o/orc/orc.spec +++ b/specs/o/orc/orc.spec @@ -3,7 +3,7 @@ Name: orc Version: 0.4.41 -Release: 3%{?dist} +Release: 3%{?dist} Summary: The Oil Run-time Compiler License: BSD-2-Clause AND BSD-3-Clause diff --git a/specs/o/os-prober/os-prober.spec b/specs/o/os-prober/os-prober.spec index 9884568d28e..e5c1bcfa3e8 100644 --- a/specs/o/os-prober/os-prober.spec +++ b/specs/o/os-prober/os-prober.spec @@ -3,7 +3,7 @@ Name: os-prober Version: 1.81 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Probes disks on the system for installed operating systems # For more information about licensing, see copyright file. diff --git a/specs/o/osbuild-composer/osbuild-composer.spec b/specs/o/osbuild-composer/osbuild-composer.spec index 7af48d51f72..f2149a4e24a 100644 --- a/specs/o/osbuild-composer/osbuild-composer.spec +++ b/specs/o/osbuild-composer/osbuild-composer.spec @@ -28,7 +28,7 @@ It is compatible with composer-cli and cockpit-composer clients. } Name: osbuild-composer -Release: 2%{?dist} +Release: 2%{?dist} Summary: An image building service based on osbuild # osbuild-composer doesn't have support for building i686 and armv7hl images diff --git a/specs/o/osbuild/osbuild.spec b/specs/o/osbuild/osbuild.spec index 003ee6a80ed..170aef92f25 100644 --- a/specs/o/osbuild/osbuild.spec +++ b/specs/o/osbuild/osbuild.spec @@ -14,7 +14,7 @@ Version: 174 %global debug_package %{nil} Name: %{pypi_name} -Release: 2%{?dist} +Release: 2%{?dist} License: Apache-2.0 URL: %{forgeurl} diff --git a/specs/p/PEGTL/PEGTL.spec b/specs/p/PEGTL/PEGTL.spec index 8d6c356091b..aaa1709214e 100644 --- a/specs/p/PEGTL/PEGTL.spec +++ b/specs/p/PEGTL/PEGTL.spec @@ -5,7 +5,7 @@ Name: PEGTL Version: 2.8.3 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Parsing Expression Grammar Template Library License: MIT URL: https://github.com/taocpp/%{name} diff --git a/specs/p/PackageKit-Qt/PackageKit-Qt.spec b/specs/p/PackageKit-Qt/PackageKit-Qt.spec index 86456171f3a..06e3444fa5a 100644 --- a/specs/p/PackageKit-Qt/PackageKit-Qt.spec +++ b/specs/p/PackageKit-Qt/PackageKit-Qt.spec @@ -8,7 +8,7 @@ Summary: Qt support library for PackageKit Name: PackageKit-Qt Version: 1.1.4 -Release: 3%{?dist} +Release: 3%{?dist} License: LGPL-2.1-only URL: http://www.packagekit.org/ diff --git a/specs/p/PyQt-builder/PyQt-builder.spec b/specs/p/PyQt-builder/PyQt-builder.spec index 048521be109..384270c582c 100644 --- a/specs/p/PyQt-builder/PyQt-builder.spec +++ b/specs/p/PyQt-builder/PyQt-builder.spec @@ -5,7 +5,7 @@ Name: PyQt-builder Version: 1.19.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: The PEP 517 compliant PyQt build system License: BSD-2-Clause diff --git a/specs/p/pacemaker/pacemaker.spec b/specs/p/pacemaker/pacemaker.spec index 96ca8fb62cc..fb8b315d5f2 100644 --- a/specs/p/pacemaker/pacemaker.spec +++ b/specs/p/pacemaker/pacemaker.spec @@ -44,7 +44,7 @@ ## can be incremented to build packages reliably considered "newer" ## than previously built packages with the same pcmkversion) %global pcmkversion 3.0.1 -%global baserelease 12 +%global baserelease 14 ## Upstream commit (full commit ID, abbreviated commit ID, or tag) to build %global commit 16e74fc4da93a08514e1ec320fa9530b6c3d9fd5 diff --git a/specs/p/paktype-naskh-basic-fonts/paktype-naskh-basic-fonts.spec b/specs/p/paktype-naskh-basic-fonts/paktype-naskh-basic-fonts.spec index f37397462e0..bbfb65619e2 100644 --- a/specs/p/paktype-naskh-basic-fonts/paktype-naskh-basic-fonts.spec +++ b/specs/p/paktype-naskh-basic-fonts/paktype-naskh-basic-fonts.spec @@ -5,7 +5,7 @@ %global release_date 20231228 Version: 7.0 -Release: 3.%{release_date}%{?dist} +Release: 6.%{release_date}%{?dist} URL: https://sourceforge.net/projects/paktype/ %global foundry paktype diff --git a/specs/p/pandoc-cli/pandoc-cli.spec b/specs/p/pandoc-cli/pandoc-cli.spec index c4dc69c83f3..61765638719 100644 --- a/specs/p/pandoc-cli/pandoc-cli.spec +++ b/specs/p/pandoc-cli/pandoc-cli.spec @@ -31,7 +31,7 @@ Name: pandoc-cli Version: 3.6.4 # can only be reset when all subpkgs bumped -Release: 39%{?dist} +Release: 39%{?dist} Summary: Markup conversion between documentation formats License: GPL-2.0-or-later diff --git a/specs/p/pandoc/pandoc.spec b/specs/p/pandoc/pandoc.spec index aea6d18dc94..4185a125138 100644 --- a/specs/p/pandoc/pandoc.spec +++ b/specs/p/pandoc/pandoc.spec @@ -28,7 +28,7 @@ Name: %{pkg_name} Version: 3.6.4 # can only be reset when all subpkgs bumped -Release: 37%{?dist} +Release: 37%{?dist} Summary: Conversion between markup formats License: GPL-2.0-or-later diff --git a/specs/p/paps/paps.spec b/specs/p/paps/paps.spec index 006793fd295..79138a0c38d 100644 --- a/specs/p/paps/paps.spec +++ b/specs/p/paps/paps.spec @@ -3,7 +3,7 @@ Name: paps Version: 0.8.0 -Release: 15%{?dist} +Release: 15%{?dist} License: LGPL-2.0-or-later URL: https://github.com/dov/paps diff --git a/specs/p/pari-elldata/pari-elldata.spec b/specs/p/pari-elldata/pari-elldata.spec index cd84634fc54..3284ef2700d 100644 --- a/specs/p/pari-elldata/pari-elldata.spec +++ b/specs/p/pari-elldata/pari-elldata.spec @@ -3,7 +3,7 @@ Name: pari-elldata Version: 20210301 -Release: 12%{?dist} +Release: 12%{?dist} Summary: PARI/GP Computer Algebra System elliptic curves License: GPL-2.0-or-later URL: https://pari.math.u-bordeaux.fr/packages.html diff --git a/specs/p/pari-galdata/pari-galdata.spec b/specs/p/pari-galdata/pari-galdata.spec index f9443d6f2d0..a6056ec3842 100644 --- a/specs/p/pari-galdata/pari-galdata.spec +++ b/specs/p/pari-galdata/pari-galdata.spec @@ -3,7 +3,7 @@ Name: pari-galdata Version: 20080411 -Release: 30%{?dist} +Release: 30%{?dist} Summary: PARI/GP Computer Algebra System Galois resolvents License: GPL-2.0-or-later URL: http://pari.math.u-bordeaux.fr/packages.html diff --git a/specs/p/pari-galpol/pari-galpol.spec b/specs/p/pari-galpol/pari-galpol.spec index 23d03a8483f..0c84ac17009 100644 --- a/specs/p/pari-galpol/pari-galpol.spec +++ b/specs/p/pari-galpol/pari-galpol.spec @@ -3,7 +3,7 @@ Name: pari-galpol Version: 20180625 -Release: 18%{?dist} +Release: 18%{?dist} Summary: PARI/GP Computer Algebra System Galois polynomials License: GPL-2.0-or-later URL: http://pari.math.u-bordeaux.fr/packages.html diff --git a/specs/p/pari-nflistdata/pari-nflistdata.spec b/specs/p/pari-nflistdata/pari-nflistdata.spec index 502ce842763..fe7623acee2 100644 --- a/specs/p/pari-nflistdata/pari-nflistdata.spec +++ b/specs/p/pari-nflistdata/pari-nflistdata.spec @@ -3,7 +3,7 @@ Name: pari-nflistdata Version: 20220729 -Release: 9%{?dist} +Release: 9%{?dist} Summary: PARI/GP Computer Algebra System nflist extensions License: GPL-2.0-or-later URL: https://pari.math.u-bordeaux.fr/packages.html diff --git a/specs/p/pari-seadata/pari-seadata.spec b/specs/p/pari-seadata/pari-seadata.spec index dc4217f6f5d..1165e1b093e 100644 --- a/specs/p/pari-seadata/pari-seadata.spec +++ b/specs/p/pari-seadata/pari-seadata.spec @@ -3,7 +3,7 @@ Name: pari-seadata Version: 20090618 -Release: 30%{?dist} +Release: 30%{?dist} Summary: PARI/GP Computer Algebra System modular polynomials License: GPL-2.0-or-later URL: https://pari.math.u-bordeaux.fr/packages.html diff --git a/specs/p/passt/passt.spec b/specs/p/passt/passt.spec index f8a02c41de5..39668898c99 100644 --- a/specs/p/passt/passt.spec +++ b/specs/p/passt/passt.spec @@ -16,7 +16,7 @@ Name: passt Version: 0^20260120.g386b5f5 -Release: 2%{?dist} +Release: 2%{?dist} Summary: User-mode networking daemons for virtual machines and namespaces License: GPL-2.0-or-later AND BSD-3-Clause Group: System Environment/Daemons diff --git a/specs/p/patchelf/patchelf.spec b/specs/p/patchelf/patchelf.spec index 42252036201..a0ee7d279fc 100644 --- a/specs/p/patchelf/patchelf.spec +++ b/specs/p/patchelf/patchelf.spec @@ -6,7 +6,7 @@ Name: patchelf Version: 0.18.0 -Release: 10%{?dist} +Release: 10%{?dist} Summary: A utility for patching ELF binaries # Automatically converted from old format: GPLv3+ - review is highly recommended. diff --git a/specs/p/pbzip2/pbzip2.spec b/specs/p/pbzip2/pbzip2.spec index 1d3df838624..2d8c37b5765 100644 --- a/specs/p/pbzip2/pbzip2.spec +++ b/specs/p/pbzip2/pbzip2.spec @@ -3,7 +3,7 @@ Name: pbzip2 Version: 1.1.13 -Release: 16%{?dist} +Release: 16%{?dist} Summary: Parallel implementation of bzip2 URL: https://launchpad.net/pbzip2 License: bzip2-1.0.6 diff --git a/specs/p/pcaudiolib/pcaudiolib.spec b/specs/p/pcaudiolib/pcaudiolib.spec index 7c7111d53ff..8d659b9cd61 100644 --- a/specs/p/pcaudiolib/pcaudiolib.spec +++ b/specs/p/pcaudiolib/pcaudiolib.spec @@ -3,7 +3,7 @@ Name: pcaudiolib Version: 1.1 -Release: 19%{?dist} +Release: 19%{?dist} Summary: Portable C Audio Library # pcaudiolib bundles TPCircularBuffer with Cube license, which is only used diff --git a/specs/p/pciutils/pciutils.spec b/specs/p/pciutils/pciutils.spec index 3e82d3ea874..24cceb5823e 100644 --- a/specs/p/pciutils/pciutils.spec +++ b/specs/p/pciutils/pciutils.spec @@ -3,7 +3,7 @@ Name: pciutils Version: 3.14.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: PCI bus related utilities License: GPL-2.0-or-later URL: https://mj.ucw.cz/sw/pciutils/ diff --git a/specs/p/pcm/pcm.spec b/specs/p/pcm/pcm.spec index 5789e028c31..41006bf76cb 100644 --- a/specs/p/pcm/pcm.spec +++ b/specs/p/pcm/pcm.spec @@ -3,7 +3,7 @@ Name: pcm Version: 202509 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Intel(r) Performance Counter Monitor License: BSD-3-Clause Url: https://github.com/intel/pcm diff --git a/specs/p/pcre/pcre.spec b/specs/p/pcre/pcre.spec index a2b5305ac28..9a5fc7abcc1 100644 --- a/specs/p/pcre/pcre.spec +++ b/specs/p/pcre/pcre.spec @@ -5,7 +5,7 @@ #%%global rcversion RC1 Name: pcre Version: 8.45 -Release: %{?rcversion:0.}1%{?rcversion:.%rcversion}%{?dist}.9 +Release: %{?rcversion:0.}3%{?rcversion:.%rcversion}%{?dist}.9 %global myversion %{version}%{?rcversion:-%rcversion} Summary: Perl-compatible regular expression library ## Source package only: diff --git a/specs/p/pcre2/pcre2.spec b/specs/p/pcre2/pcre2.spec index f959081d221..fdfcee7443d 100644 --- a/specs/p/pcre2/pcre2.spec +++ b/specs/p/pcre2/pcre2.spec @@ -12,7 +12,7 @@ #%%global rcversion RC1 Name: pcre2 Version: 10.47 -Release: %{?rcversion:0.}1%{?rcversion:.%rcversion}%{?dist} +Release: %{?rcversion:0.}3%{?rcversion:.%rcversion}%{?dist} %global myversion %{version}%{?rcversion:-%rcversion} Summary: Perl-compatible regular expression library # the library: BSD with exceptions diff --git a/specs/p/pcsc-lite-asekey/pcsc-lite-asekey.spec b/specs/p/pcsc-lite-asekey/pcsc-lite-asekey.spec index 58db1d88347..b0f9a4cd8e9 100644 --- a/specs/p/pcsc-lite-asekey/pcsc-lite-asekey.spec +++ b/specs/p/pcsc-lite-asekey/pcsc-lite-asekey.spec @@ -7,7 +7,7 @@ Name: pcsc-lite-%{driver} Version: 3.7 -Release: 27%{dist} +Release: 30%{dist} Summary: ASEKey USB token driver # 92_pcscd_asekey.rules: LGPLv2+ # other files: BSD diff --git a/specs/p/pcsc-lite-ccid/pcsc-lite-ccid.spec b/specs/p/pcsc-lite-ccid/pcsc-lite-ccid.spec index ee50d321628..d2708db2ade 100644 --- a/specs/p/pcsc-lite-ccid/pcsc-lite-ccid.spec +++ b/specs/p/pcsc-lite-ccid/pcsc-lite-ccid.spec @@ -6,7 +6,7 @@ Name: pcsc-lite-ccid Version: 1.7.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Generic USB CCID smart card reader driver License: BSD-3-Clause AND GPL-2.0-or-later AND LGPL-2.1-or-later diff --git a/specs/p/pcsc-lite/pcsc-lite.spec b/specs/p/pcsc-lite/pcsc-lite.spec index faa4c8fc2dc..c644707293a 100644 --- a/specs/p/pcsc-lite/pcsc-lite.spec +++ b/specs/p/pcsc-lite/pcsc-lite.spec @@ -10,7 +10,7 @@ Name: pcsc-lite Version: 2.3.3 -Release: 3%{?dist} +Release: 3%{?dist} Summary: PC/SC Lite smart card framework and applications License: BSD-3-Clause AND BSD-2-Clause AND GPL-3.0-or-later diff --git a/specs/p/perl-Algorithm-C3/perl-Algorithm-C3.spec b/specs/p/perl-Algorithm-C3/perl-Algorithm-C3.spec index 9851d371af7..a29c11aee62 100644 --- a/specs/p/perl-Algorithm-C3/perl-Algorithm-C3.spec +++ b/specs/p/perl-Algorithm-C3/perl-Algorithm-C3.spec @@ -3,7 +3,7 @@ Name: perl-Algorithm-C3 Version: 0.11 -Release: 17%{?dist} +Release: 17%{?dist} Summary: Module for merging hierarchies using the C3 algorithm License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Algorithm-C3 diff --git a/specs/p/perl-Algorithm-Diff/perl-Algorithm-Diff.spec b/specs/p/perl-Algorithm-Diff/perl-Algorithm-Diff.spec index 62c6ad4c017..b5bec0c38d4 100644 --- a/specs/p/perl-Algorithm-Diff/perl-Algorithm-Diff.spec +++ b/specs/p/perl-Algorithm-Diff/perl-Algorithm-Diff.spec @@ -6,7 +6,7 @@ Name: perl-Algorithm-Diff Version: %{upstream_version}%{?extra_version} -Release: 15%{?dist} +Release: 15%{?dist} Summary: Compute 'intelligent' differences between two files/lists License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Algorithm-Diff diff --git a/specs/p/perl-Any-Moose/perl-Any-Moose.spec b/specs/p/perl-Any-Moose/perl-Any-Moose.spec index dbfafd71854..15a0129e8b3 100644 --- a/specs/p/perl-Any-Moose/perl-Any-Moose.spec +++ b/specs/p/perl-Any-Moose/perl-Any-Moose.spec @@ -4,7 +4,7 @@ Name: perl-Any-Moose Summary: Use Moose or Mouse automagically (DEPRECATED) Version: 0.27 -Release: 34%{?dist} +Release: 34%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Any-Moose Source0: https://cpan.metacpan.org/authors/id/E/ET/ETHER/Any-Moose-%{version}.tar.gz diff --git a/specs/p/perl-Any-URI-Escape/perl-Any-URI-Escape.spec b/specs/p/perl-Any-URI-Escape/perl-Any-URI-Escape.spec index 47ec8a4fb5e..cb4fd697ec0 100644 --- a/specs/p/perl-Any-URI-Escape/perl-Any-URI-Escape.spec +++ b/specs/p/perl-Any-URI-Escape/perl-Any-URI-Escape.spec @@ -3,7 +3,7 @@ Name: perl-Any-URI-Escape Version: 0.01 -Release: 38%{?dist} +Release: 38%{?dist} Summary: Load URI::Escape::XS preferentially over URI::Escape # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-AnyEvent-AIO/perl-AnyEvent-AIO.spec b/specs/p/perl-AnyEvent-AIO/perl-AnyEvent-AIO.spec index 68c7980328d..fb4c392e0ae 100644 --- a/specs/p/perl-AnyEvent-AIO/perl-AnyEvent-AIO.spec +++ b/specs/p/perl-AnyEvent-AIO/perl-AnyEvent-AIO.spec @@ -3,7 +3,7 @@ Name: perl-AnyEvent-AIO Version: 1.1 -Release: 46%{?dist} +Release: 46%{?dist} Summary: Truly asynchronous file and directrory I/O # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. diff --git a/specs/p/perl-AnyEvent-BDB/perl-AnyEvent-BDB.spec b/specs/p/perl-AnyEvent-BDB/perl-AnyEvent-BDB.spec index 230af48d0ad..d5e7fb34e44 100644 --- a/specs/p/perl-AnyEvent-BDB/perl-AnyEvent-BDB.spec +++ b/specs/p/perl-AnyEvent-BDB/perl-AnyEvent-BDB.spec @@ -3,7 +3,7 @@ Name: perl-AnyEvent-BDB Version: 1.1 -Release: 49%{?dist} +Release: 49%{?dist} Summary: Truly asynchronous Berkeley DB access License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/AnyEvent-BDB diff --git a/specs/p/perl-AnyEvent/perl-AnyEvent.spec b/specs/p/perl-AnyEvent/perl-AnyEvent.spec index 2bd3f4dbf06..540f428fa78 100644 --- a/specs/p/perl-AnyEvent/perl-AnyEvent.spec +++ b/specs/p/perl-AnyEvent/perl-AnyEvent.spec @@ -39,7 +39,7 @@ Name: perl-AnyEvent Version: 7.17 -Release: 22%{?dist} +Release: 22%{?dist} Summary: Framework for multiple event loops License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/AnyEvent diff --git a/specs/p/perl-App-FatPacker/perl-App-FatPacker.spec b/specs/p/perl-App-FatPacker/perl-App-FatPacker.spec index ac37f61283b..c952e1052b8 100644 --- a/specs/p/perl-App-FatPacker/perl-App-FatPacker.spec +++ b/specs/p/perl-App-FatPacker/perl-App-FatPacker.spec @@ -3,7 +3,7 @@ Name: perl-App-FatPacker Version: 0.010008 -Release: 22%{?dist} +Release: 22%{?dist} Summary: Pack dependencies onto a script file # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-App-cpanminus/perl-App-cpanminus.spec b/specs/p/perl-App-cpanminus/perl-App-cpanminus.spec index 4ab71f1e519..c350e97bd93 100644 --- a/specs/p/perl-App-cpanminus/perl-App-cpanminus.spec +++ b/specs/p/perl-App-cpanminus/perl-App-cpanminus.spec @@ -3,7 +3,7 @@ Name: perl-App-cpanminus Version: 1.7048 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Get, unpack, build and install CPAN modules # Other files: GPL+ or Artistic ## unbundled diff --git a/specs/p/perl-AppConfig/perl-AppConfig.spec b/specs/p/perl-AppConfig/perl-AppConfig.spec index ca09d1643b3..c6f49f5ae9b 100644 --- a/specs/p/perl-AppConfig/perl-AppConfig.spec +++ b/specs/p/perl-AppConfig/perl-AppConfig.spec @@ -3,7 +3,7 @@ Name: perl-AppConfig Version: 1.71 -Release: 34%{?dist} +Release: 34%{?dist} Summary: Perl module for reading configuration files # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. diff --git a/specs/p/perl-Archive-Any-Lite/perl-Archive-Any-Lite.spec b/specs/p/perl-Archive-Any-Lite/perl-Archive-Any-Lite.spec index 411d9d33c64..9a70d1a927b 100644 --- a/specs/p/perl-Archive-Any-Lite/perl-Archive-Any-Lite.spec +++ b/specs/p/perl-Archive-Any-Lite/perl-Archive-Any-Lite.spec @@ -10,7 +10,7 @@ Name: perl-Archive-Any-Lite Version: 0.11 -Release: 30%{?dist} +Release: 30%{?dist} Summary: Simple CPAN package extractor License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Archive-Any-Lite diff --git a/specs/p/perl-Archive-Tar/perl-Archive-Tar.spec b/specs/p/perl-Archive-Tar/perl-Archive-Tar.spec index 46edba3d921..be4b5c5b564 100644 --- a/specs/p/perl-Archive-Tar/perl-Archive-Tar.spec +++ b/specs/p/perl-Archive-Tar/perl-Archive-Tar.spec @@ -10,7 +10,7 @@ Name: perl-Archive-Tar Version: 3.04 -Release: 522%{?dist} +Release: 522%{?dist} Summary: A module for Perl manipulation of .tar files License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Archive-Tar diff --git a/specs/p/perl-Archive-Zip/perl-Archive-Zip.spec b/specs/p/perl-Archive-Zip/perl-Archive-Zip.spec index 294855b0a3f..77279232a68 100644 --- a/specs/p/perl-Archive-Zip/perl-Archive-Zip.spec +++ b/specs/p/perl-Archive-Zip/perl-Archive-Zip.spec @@ -3,7 +3,7 @@ Name: perl-Archive-Zip Version: 1.68 -Release: 18%{?dist} +Release: 18%{?dist} Summary: Perl library for accessing Zip archives # lib/Archive/Zip/Member.pm: (GPL-1.0-or-later OR Artistic-1.0-Perl) and Info-ZIP # (The _mapPermissionsToUnix() comments are diff --git a/specs/p/perl-Array-Diff/perl-Array-Diff.spec b/specs/p/perl-Array-Diff/perl-Array-Diff.spec index 9fba674dc73..8e76df6b122 100644 --- a/specs/p/perl-Array-Diff/perl-Array-Diff.spec +++ b/specs/p/perl-Array-Diff/perl-Array-Diff.spec @@ -6,7 +6,7 @@ Name: perl-Array-Diff # but not in RPM world :-( Epoch: 1 Version: 0.09 -Release: 21%{?dist} +Release: 21%{?dist} Summary: Find the differences between two arrays License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Array-Diff diff --git a/specs/p/perl-Authen-SASL/perl-Authen-SASL.spec b/specs/p/perl-Authen-SASL/perl-Authen-SASL.spec index 5d3a584d74b..9a7d92255f5 100644 --- a/specs/p/perl-Authen-SASL/perl-Authen-SASL.spec +++ b/specs/p/perl-Authen-SASL/perl-Authen-SASL.spec @@ -3,7 +3,7 @@ Name: perl-Authen-SASL Version: 2.2000 -Release: 2%{?dist} +Release: 2%{?dist} Summary: SASL Authentication framework for Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Authen-SASL diff --git a/specs/p/perl-B-COW/perl-B-COW.spec b/specs/p/perl-B-COW/perl-B-COW.spec index c953b6e4de4..c827d2bb491 100644 --- a/specs/p/perl-B-COW/perl-B-COW.spec +++ b/specs/p/perl-B-COW/perl-B-COW.spec @@ -3,7 +3,7 @@ Name: perl-B-COW Version: 0.007 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Additional B helpers to check Copy On Write status License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/B-COW diff --git a/specs/p/perl-B-Compiling/perl-B-Compiling.spec b/specs/p/perl-B-Compiling/perl-B-Compiling.spec index f7021006f0b..dd9866b9370 100644 --- a/specs/p/perl-B-Compiling/perl-B-Compiling.spec +++ b/specs/p/perl-B-Compiling/perl-B-Compiling.spec @@ -3,7 +3,7 @@ Name: perl-B-Compiling Version: 0.06 -Release: 37%{?dist} +Release: 37%{?dist} Summary: Expose PL_compiling to perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/B-Compiling diff --git a/specs/p/perl-B-Hooks-EndOfScope/perl-B-Hooks-EndOfScope.spec b/specs/p/perl-B-Hooks-EndOfScope/perl-B-Hooks-EndOfScope.spec index 524af812a93..cefd3f100ce 100644 --- a/specs/p/perl-B-Hooks-EndOfScope/perl-B-Hooks-EndOfScope.spec +++ b/specs/p/perl-B-Hooks-EndOfScope/perl-B-Hooks-EndOfScope.spec @@ -12,7 +12,7 @@ Name: perl-B-Hooks-EndOfScope Version: 0.28 -Release: 5%{?dist} +Release: 5%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl Summary: Execute code after scope compilation finishes URL: https://metacpan.org/release/B-Hooks-EndOfScope diff --git a/specs/p/perl-B-Hooks-OP-Check/perl-B-Hooks-OP-Check.spec b/specs/p/perl-B-Hooks-OP-Check/perl-B-Hooks-OP-Check.spec index a338ad0ebc6..85fa21cab15 100644 --- a/specs/p/perl-B-Hooks-OP-Check/perl-B-Hooks-OP-Check.spec +++ b/specs/p/perl-B-Hooks-OP-Check/perl-B-Hooks-OP-Check.spec @@ -4,7 +4,7 @@ Name: perl-B-Hooks-OP-Check Summary: Wrap OP check callbacks Version: 0.22 -Release: 29%{?dist} +Release: 29%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/B-Hooks-OP-Check Source0: https://cpan.metacpan.org/modules/by-module/B/B-Hooks-OP-Check-%{version}.tar.gz diff --git a/specs/p/perl-B-Keywords/perl-B-Keywords.spec b/specs/p/perl-B-Keywords/perl-B-Keywords.spec index 4b91059e8bc..253b69b9b48 100644 --- a/specs/p/perl-B-Keywords/perl-B-Keywords.spec +++ b/specs/p/perl-B-Keywords/perl-B-Keywords.spec @@ -10,7 +10,7 @@ Name: perl-B-Keywords Version: 1.29 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Lists of reserved barewords and symbol names License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/B-Keywords diff --git a/specs/p/perl-B-Utils/perl-B-Utils.spec b/specs/p/perl-B-Utils/perl-B-Utils.spec index 60489077cef..f5cea961e9a 100644 --- a/specs/p/perl-B-Utils/perl-B-Utils.spec +++ b/specs/p/perl-B-Utils/perl-B-Utils.spec @@ -3,7 +3,7 @@ Name: perl-B-Utils Version: 0.27 -Release: 35%{?dist} +Release: 35%{?dist} Summary: Helper functions for op tree manipulation License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/B-Utils diff --git a/specs/p/perl-BDB/perl-BDB.spec b/specs/p/perl-BDB/perl-BDB.spec index afbff58a339..018f56fc06c 100644 --- a/specs/p/perl-BDB/perl-BDB.spec +++ b/specs/p/perl-BDB/perl-BDB.spec @@ -6,7 +6,7 @@ Name: perl-BDB # Extend to 2 digits to get higher RPM package version than 1.88 Version: %{cpan_version} -Release: 29%{?dist} +Release: 29%{?dist} Summary: Asynchronous Berkeley DB access License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/BDB diff --git a/specs/p/perl-BSD-Resource/perl-BSD-Resource.spec b/specs/p/perl-BSD-Resource/perl-BSD-Resource.spec index f4862d7dd04..db77b3279ed 100644 --- a/specs/p/perl-BSD-Resource/perl-BSD-Resource.spec +++ b/specs/p/perl-BSD-Resource/perl-BSD-Resource.spec @@ -11,7 +11,7 @@ Name: perl-BSD-Resource Version: 1.291.100 %global module_version 1.2911 -Release: 31%{?dist} +Release: 31%{?dist} Summary: BSD process resource limit and priority functions # No matter what the pm and xs headers say, this is stated in the POD and, # according to upstream changelog for 1.2905, is correct. diff --git a/specs/p/perl-Bencode/perl-Bencode.spec b/specs/p/perl-Bencode/perl-Bencode.spec index fcb1e005365..41833d39f8d 100644 --- a/specs/p/perl-Bencode/perl-Bencode.spec +++ b/specs/p/perl-Bencode/perl-Bencode.spec @@ -3,7 +3,7 @@ Name: perl-Bencode Version: 1.502 -Release: 10%{?dist} +Release: 10%{?dist} Summary: BitTorrent serialization format License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Bencode diff --git a/specs/p/perl-Bit-Vector/perl-Bit-Vector.spec b/specs/p/perl-Bit-Vector/perl-Bit-Vector.spec index c8d51b49056..c84b8937a48 100644 --- a/specs/p/perl-Bit-Vector/perl-Bit-Vector.spec +++ b/specs/p/perl-Bit-Vector/perl-Bit-Vector.spec @@ -3,7 +3,7 @@ Name: perl-Bit-Vector Version: 7.4 -Release: 40%{?dist} +Release: 40%{?dist} Summary: Efficient bit vector, set of integers and "big int" math library # Outdated FSF address reported, rt#85827 # Clarified by a private mail from the author: diff --git a/specs/p/perl-Business-ISBN-Data/perl-Business-ISBN-Data.spec b/specs/p/perl-Business-ISBN-Data/perl-Business-ISBN-Data.spec index d53e8be0f44..a0dedc1467b 100644 --- a/specs/p/perl-Business-ISBN-Data/perl-Business-ISBN-Data.spec +++ b/specs/p/perl-Business-ISBN-Data/perl-Business-ISBN-Data.spec @@ -3,7 +3,7 @@ Name: perl-Business-ISBN-Data Version: 20260109.001 -Release: 2%{?dist} +Release: 2%{?dist} Summary: The data pack for Business::ISBN License: Artistic-2.0 URL: https://metacpan.org/release/Business-ISBN-Data diff --git a/specs/p/perl-Business-ISBN/perl-Business-ISBN.spec b/specs/p/perl-Business-ISBN/perl-Business-ISBN.spec index 11f067debc0..5ea7ccf339d 100644 --- a/specs/p/perl-Business-ISBN/perl-Business-ISBN.spec +++ b/specs/p/perl-Business-ISBN/perl-Business-ISBN.spec @@ -11,7 +11,7 @@ Name: perl-Business-ISBN %global cpan_version 3.011 Version: %(echo '%{cpan_version}' | tr '_' '.'}) -Release: 4%{?dist} +Release: 4%{?dist} Summary: Perl module to work with International Standard Book Numbers License: Artistic-2.0 diff --git a/specs/p/perl-CBOR-XS/perl-CBOR-XS.spec b/specs/p/perl-CBOR-XS/perl-CBOR-XS.spec index c08dbecb0a8..0f4eeae6ece 100644 --- a/specs/p/perl-CBOR-XS/perl-CBOR-XS.spec +++ b/specs/p/perl-CBOR-XS/perl-CBOR-XS.spec @@ -3,7 +3,7 @@ Name: perl-CBOR-XS Version: 1.87 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Concise Binary Object Representation (CBOR) # COPYING: GPL-3.0 text ## Replaced by system header-only package diff --git a/specs/p/perl-CGI-Fast/perl-CGI-Fast.spec b/specs/p/perl-CGI-Fast/perl-CGI-Fast.spec index a780f49d224..a43ee5cef72 100644 --- a/specs/p/perl-CGI-Fast/perl-CGI-Fast.spec +++ b/specs/p/perl-CGI-Fast/perl-CGI-Fast.spec @@ -3,7 +3,7 @@ Name: perl-CGI-Fast Version: 2.17 -Release: 7%{?dist} +Release: 7%{?dist} Summary: CGI Interface for Fast CGI # lib/CGI/Fast.pm probably qotes piece of Artistic license before declaring # "as Perl itself" diff --git a/specs/p/perl-CGI/perl-CGI.spec b/specs/p/perl-CGI/perl-CGI.spec index 300f01b6e96..10d550b7575 100644 --- a/specs/p/perl-CGI/perl-CGI.spec +++ b/specs/p/perl-CGI/perl-CGI.spec @@ -4,7 +4,7 @@ Name: perl-CGI Summary: Handle Common Gateway Interface requests and responses Version: 4.71 -Release: 2%{?dist} +Release: 2%{?dist} License: Artistic-2.0 Source0: https://cpan.metacpan.org/authors/id/L/LE/LEEJO/CGI-%{version}.tar.gz URL: https://metacpan.org/release/CGI diff --git a/specs/p/perl-CPAN-Changes/perl-CPAN-Changes.spec b/specs/p/perl-CPAN-Changes/perl-CPAN-Changes.spec index 2e1dc686506..623570cc92f 100644 --- a/specs/p/perl-CPAN-Changes/perl-CPAN-Changes.spec +++ b/specs/p/perl-CPAN-Changes/perl-CPAN-Changes.spec @@ -7,7 +7,7 @@ Name: perl-CPAN-Changes Summary: Read and write Changes files Version: 0.500005 -Release: 3%{?dist} +Release: 3%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/CPAN-Changes Source0: https://cpan.metacpan.org/modules/by-module/CPAN/CPAN-Changes-%{version}.tar.gz diff --git a/specs/p/perl-CPAN-DistnameInfo/perl-CPAN-DistnameInfo.spec b/specs/p/perl-CPAN-DistnameInfo/perl-CPAN-DistnameInfo.spec index bfb8e84759d..86a51d9278c 100644 --- a/specs/p/perl-CPAN-DistnameInfo/perl-CPAN-DistnameInfo.spec +++ b/specs/p/perl-CPAN-DistnameInfo/perl-CPAN-DistnameInfo.spec @@ -3,7 +3,7 @@ Name: perl-CPAN-DistnameInfo Version: 0.12 -Release: 34%{?dist} +Release: 34%{?dist} Summary: Extract distribution name and version from a distribution filename License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/CPAN-DistnameInfo diff --git a/specs/p/perl-CPAN-Meta-Check/perl-CPAN-Meta-Check.spec b/specs/p/perl-CPAN-Meta-Check/perl-CPAN-Meta-Check.spec index 608c1ffe54e..efc31aaf3df 100644 --- a/specs/p/perl-CPAN-Meta-Check/perl-CPAN-Meta-Check.spec +++ b/specs/p/perl-CPAN-Meta-Check/perl-CPAN-Meta-Check.spec @@ -11,7 +11,7 @@ Name: perl-CPAN-Meta-Check Summary: Verify requirements in a CPAN::Meta object Version: 0.018 -Release: 7%{?dist} +Release: 7%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/CPAN-Meta-Check Source0: https://cpan.metacpan.org/modules/by-module/CPAN/CPAN-Meta-Check-%{version}.tar.gz diff --git a/specs/p/perl-CPAN-Meta-Requirements/perl-CPAN-Meta-Requirements.spec b/specs/p/perl-CPAN-Meta-Requirements/perl-CPAN-Meta-Requirements.spec index cd3c90c6934..56475a4576e 100644 --- a/specs/p/perl-CPAN-Meta-Requirements/perl-CPAN-Meta-Requirements.spec +++ b/specs/p/perl-CPAN-Meta-Requirements/perl-CPAN-Meta-Requirements.spec @@ -6,7 +6,7 @@ Name: perl-CPAN-Meta-Requirements Version: 2.143 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Set of version requirements for a CPAN dist License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/CPAN-Meta-Requirements diff --git a/specs/p/perl-CPAN-Meta-YAML/perl-CPAN-Meta-YAML.spec b/specs/p/perl-CPAN-Meta-YAML/perl-CPAN-Meta-YAML.spec index 2ca8dcb5ae7..6b8a78b8a47 100644 --- a/specs/p/perl-CPAN-Meta-YAML/perl-CPAN-Meta-YAML.spec +++ b/specs/p/perl-CPAN-Meta-YAML/perl-CPAN-Meta-YAML.spec @@ -17,7 +17,7 @@ Name: perl-CPAN-Meta-YAML Version: 0.020 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Read and write a subset of YAML for CPAN Meta files License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/CPAN-Meta-YAML diff --git a/specs/p/perl-CPAN-Meta/perl-CPAN-Meta.spec b/specs/p/perl-CPAN-Meta/perl-CPAN-Meta.spec index 1718fe39192..999c3ea6377 100644 --- a/specs/p/perl-CPAN-Meta/perl-CPAN-Meta.spec +++ b/specs/p/perl-CPAN-Meta/perl-CPAN-Meta.spec @@ -4,7 +4,7 @@ Name: perl-CPAN-Meta Summary: Distribution metadata for a CPAN dist Version: 2.150010 -Release: 521%{?dist} +Release: 521%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/CPAN-Meta Source0: https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/CPAN-Meta-%{version}.tar.gz diff --git a/specs/p/perl-CPAN-Requirements-Dynamic/perl-CPAN-Requirements-Dynamic.spec b/specs/p/perl-CPAN-Requirements-Dynamic/perl-CPAN-Requirements-Dynamic.spec index 7e76d5e45be..1890da69043 100644 --- a/specs/p/perl-CPAN-Requirements-Dynamic/perl-CPAN-Requirements-Dynamic.spec +++ b/specs/p/perl-CPAN-Requirements-Dynamic/perl-CPAN-Requirements-Dynamic.spec @@ -3,7 +3,7 @@ Name: perl-CPAN-Requirements-Dynamic Version: 0.002 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Dynamic prerequisites in meta files License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/CPAN-Requirements-Dynamic diff --git a/specs/p/perl-CPAN/perl-CPAN.spec b/specs/p/perl-CPAN/perl-CPAN.spec index acee2d4af17..6aa115090ba 100644 --- a/specs/p/perl-CPAN/perl-CPAN.spec +++ b/specs/p/perl-CPAN/perl-CPAN.spec @@ -13,7 +13,7 @@ Name: perl-CPAN Version: 2.38 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Query, download and build perl modules from CPAN sites License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/CPAN diff --git a/specs/p/perl-Cache-Cache/perl-Cache-Cache.spec b/specs/p/perl-Cache-Cache/perl-Cache-Cache.spec index 34bc2c00c47..1c5b0ec85aa 100644 --- a/specs/p/perl-Cache-Cache/perl-Cache-Cache.spec +++ b/specs/p/perl-Cache-Cache/perl-Cache-Cache.spec @@ -3,7 +3,7 @@ Name: perl-Cache-Cache Version: 1.08 -Release: 33%{?dist} +Release: 33%{?dist} Summary: Generic cache interface and implementations License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Cache-Cache diff --git a/specs/p/perl-Canary-Stability/perl-Canary-Stability.spec b/specs/p/perl-Canary-Stability/perl-Canary-Stability.spec index d89ae0c3df3..9968a30c37c 100644 --- a/specs/p/perl-Canary-Stability/perl-Canary-Stability.spec +++ b/specs/p/perl-Canary-Stability/perl-Canary-Stability.spec @@ -3,7 +3,7 @@ Name: perl-Canary-Stability Version: 2013 -Release: 22%{?dist} +Release: 22%{?dist} Summary: Canary to check perl compatibility for Schmorp's modules # See COPYING file. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Capture-Tiny/perl-Capture-Tiny.spec b/specs/p/perl-Capture-Tiny/perl-Capture-Tiny.spec index 35c5069b2da..5ac70d7a704 100644 --- a/specs/p/perl-Capture-Tiny/perl-Capture-Tiny.spec +++ b/specs/p/perl-Capture-Tiny/perl-Capture-Tiny.spec @@ -3,7 +3,7 @@ Name: perl-Capture-Tiny Version: 0.50 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Capture STDOUT and STDERR from Perl, XS or external programs License: Apache-2.0 URL: https://metacpan.org/release/Capture-Tiny diff --git a/specs/p/perl-Carp-Clan/perl-Carp-Clan.spec b/specs/p/perl-Carp-Clan/perl-Carp-Clan.spec index fe008b3632c..d82b84a3ffd 100644 --- a/specs/p/perl-Carp-Clan/perl-Carp-Clan.spec +++ b/specs/p/perl-Carp-Clan/perl-Carp-Clan.spec @@ -3,7 +3,7 @@ Name: perl-Carp-Clan Version: 6.08 -Release: 22%{?dist} +Release: 22%{?dist} Summary: Perl module to print improved warning messages License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Carp/perl-Carp.spec b/specs/p/perl-Carp/perl-Carp.spec index 175edc722f9..5bff223150a 100644 --- a/specs/p/perl-Carp/perl-Carp.spec +++ b/specs/p/perl-Carp/perl-Carp.spec @@ -4,7 +4,7 @@ %global base_version 1.50 Name: perl-Carp Version: 1.54 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Alternative warn and die for modules License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Carp diff --git a/specs/p/perl-Class-Accessor/perl-Class-Accessor.spec b/specs/p/perl-Class-Accessor/perl-Class-Accessor.spec index cc80e5a8e6e..ffc28e58db0 100644 --- a/specs/p/perl-Class-Accessor/perl-Class-Accessor.spec +++ b/specs/p/perl-Class-Accessor/perl-Class-Accessor.spec @@ -3,7 +3,7 @@ Name: perl-Class-Accessor Version: 0.51 -Release: 24%{?dist} +Release: 24%{?dist} Summary: Automated accessor generation License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Class-Accessor diff --git a/specs/p/perl-Class-Data-Inheritable/perl-Class-Data-Inheritable.spec b/specs/p/perl-Class-Data-Inheritable/perl-Class-Data-Inheritable.spec index 035a4c24fa3..40caa1a9f69 100644 --- a/specs/p/perl-Class-Data-Inheritable/perl-Class-Data-Inheritable.spec +++ b/specs/p/perl-Class-Data-Inheritable/perl-Class-Data-Inheritable.spec @@ -10,7 +10,7 @@ Name: perl-Class-Data-Inheritable Version: 0.10 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Inheritable, overridable class data License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Class-Data-Inheritable diff --git a/specs/p/perl-Class-ISA/perl-Class-ISA.spec b/specs/p/perl-Class-ISA/perl-Class-ISA.spec index 57ae77b4774..77a3f62964f 100644 --- a/specs/p/perl-Class-ISA/perl-Class-ISA.spec +++ b/specs/p/perl-Class-ISA/perl-Class-ISA.spec @@ -3,7 +3,7 @@ Name: perl-Class-ISA Version: 0.36 -Release: 1045%{?dist} +Release: 1045%{?dist} Summary: Report the search path for a class's ISA tree License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Class-ISA diff --git a/specs/p/perl-Class-Inspector/perl-Class-Inspector.spec b/specs/p/perl-Class-Inspector/perl-Class-Inspector.spec index 74e575e581c..c6454671795 100644 --- a/specs/p/perl-Class-Inspector/perl-Class-Inspector.spec +++ b/specs/p/perl-Class-Inspector/perl-Class-Inspector.spec @@ -3,7 +3,7 @@ Name: perl-Class-Inspector Version: 1.36 -Release: 20%{?dist} +Release: 20%{?dist} Summary: Get information about a class and its structure License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Class-Inspector diff --git a/specs/p/perl-Class-Iterator/perl-Class-Iterator.spec b/specs/p/perl-Class-Iterator/perl-Class-Iterator.spec index 5e77e26cce8..51c96d4f5c6 100644 --- a/specs/p/perl-Class-Iterator/perl-Class-Iterator.spec +++ b/specs/p/perl-Class-Iterator/perl-Class-Iterator.spec @@ -3,7 +3,7 @@ Name: perl-Class-Iterator Version: 0.3 -Release: 42%{?dist} +Release: 42%{?dist} Summary: Iterator class License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Class-Iterator diff --git a/specs/p/perl-Class-Load-XS/perl-Class-Load-XS.spec b/specs/p/perl-Class-Load-XS/perl-Class-Load-XS.spec index 70a0727c1b9..d46fca3b836 100644 --- a/specs/p/perl-Class-Load-XS/perl-Class-Load-XS.spec +++ b/specs/p/perl-Class-Load-XS/perl-Class-Load-XS.spec @@ -3,7 +3,7 @@ Name: perl-Class-Load-XS Version: 0.10 -Release: 30%{?dist} +Release: 30%{?dist} Summary: XS implementation of parts of Class::Load License: Artistic-2.0 URL: https://metacpan.org/release/Class-Load-XS diff --git a/specs/p/perl-Class-Load/perl-Class-Load.spec b/specs/p/perl-Class-Load/perl-Class-Load.spec index 01d693c111d..d5e9610ed79 100644 --- a/specs/p/perl-Class-Load/perl-Class-Load.spec +++ b/specs/p/perl-Class-Load/perl-Class-Load.spec @@ -10,7 +10,7 @@ Name: perl-Class-Load Version: 0.25 -Release: 29%{?dist} +Release: 29%{?dist} Summary: A working (require "Class::Name") and more License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Class-Load diff --git a/specs/p/perl-Class-Method-Modifiers/perl-Class-Method-Modifiers.spec b/specs/p/perl-Class-Method-Modifiers/perl-Class-Method-Modifiers.spec index eb4c16aece6..b6b64157e34 100644 --- a/specs/p/perl-Class-Method-Modifiers/perl-Class-Method-Modifiers.spec +++ b/specs/p/perl-Class-Method-Modifiers/perl-Class-Method-Modifiers.spec @@ -11,7 +11,7 @@ Name: perl-Class-Method-Modifiers Summary: Provides Moose-like method modifiers Version: 2.15 -Release: 8%{?dist} +Release: 8%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Class-Method-Modifiers Source0: https://cpan.metacpan.org/modules/by-module/Class/Class-Method-Modifiers-%{version}.tar.gz diff --git a/specs/p/perl-Class-Prototyped/perl-Class-Prototyped.spec b/specs/p/perl-Class-Prototyped/perl-Class-Prototyped.spec index 19c238ff74f..5a4c64b9c60 100644 --- a/specs/p/perl-Class-Prototyped/perl-Class-Prototyped.spec +++ b/specs/p/perl-Class-Prototyped/perl-Class-Prototyped.spec @@ -3,7 +3,7 @@ Name: perl-Class-Prototyped Version: 1.16 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Fast prototype-based OO programming in Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Class-Prototyped diff --git a/specs/p/perl-Class-Singleton/perl-Class-Singleton.spec b/specs/p/perl-Class-Singleton/perl-Class-Singleton.spec index daf11330519..95722754ffe 100644 --- a/specs/p/perl-Class-Singleton/perl-Class-Singleton.spec +++ b/specs/p/perl-Class-Singleton/perl-Class-Singleton.spec @@ -3,7 +3,7 @@ Name: perl-Class-Singleton Version: 1.6 -Release: 15%{?dist} +Release: 15%{?dist} Summary: Implementation of a "Singleton" class License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Class-Singleton diff --git a/specs/p/perl-Class-Tiny/perl-Class-Tiny.spec b/specs/p/perl-Class-Tiny/perl-Class-Tiny.spec index d50452eee49..0e7c99df884 100644 --- a/specs/p/perl-Class-Tiny/perl-Class-Tiny.spec +++ b/specs/p/perl-Class-Tiny/perl-Class-Tiny.spec @@ -10,7 +10,7 @@ Name: perl-Class-Tiny Version: 1.008 -Release: 15%{?dist} +Release: 15%{?dist} Summary: Minimalist class construction License: Apache-2.0 URL: https://metacpan.org/release/Class-Tiny diff --git a/specs/p/perl-Class-XSAccessor/perl-Class-XSAccessor.spec b/specs/p/perl-Class-XSAccessor/perl-Class-XSAccessor.spec index cc1491327d0..3def5d3b5a7 100644 --- a/specs/p/perl-Class-XSAccessor/perl-Class-XSAccessor.spec +++ b/specs/p/perl-Class-XSAccessor/perl-Class-XSAccessor.spec @@ -3,7 +3,7 @@ Name: perl-Class-XSAccessor Version: 1.19 -Release: 40%{?dist} +Release: 40%{?dist} Summary: Generate fast XS accessors without run-time compilation License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Class-XSAccessor diff --git a/specs/p/perl-Clone-Choose/perl-Clone-Choose.spec b/specs/p/perl-Clone-Choose/perl-Clone-Choose.spec index 6feabc66a3b..323af73cc41 100644 --- a/specs/p/perl-Clone-Choose/perl-Clone-Choose.spec +++ b/specs/p/perl-Clone-Choose/perl-Clone-Choose.spec @@ -3,7 +3,7 @@ Name: perl-Clone-Choose Version: 0.010 -Release: 24%{?dist} +Release: 24%{?dist} Summary: Choose appropriate clone utility License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Clone-Choose diff --git a/specs/p/perl-Clone-PP/perl-Clone-PP.spec b/specs/p/perl-Clone-PP/perl-Clone-PP.spec index e9cd826051d..b90690d3f37 100644 --- a/specs/p/perl-Clone-PP/perl-Clone-PP.spec +++ b/specs/p/perl-Clone-PP/perl-Clone-PP.spec @@ -3,7 +3,7 @@ Name: perl-Clone-PP Version: 1.08 -Release: 15%{?dist} +Release: 15%{?dist} Summary: Recursively copy Perl data-types License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Clone-PP diff --git a/specs/p/perl-Clone/perl-Clone.spec b/specs/p/perl-Clone/perl-Clone.spec index 8d7a3afc17c..07fcd621aa2 100644 --- a/specs/p/perl-Clone/perl-Clone.spec +++ b/specs/p/perl-Clone/perl-Clone.spec @@ -6,7 +6,7 @@ Name: perl-Clone Version: 0.47 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Recursively copy perl data types License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Clone diff --git a/specs/p/perl-Color-ANSI-Util/perl-Color-ANSI-Util.spec b/specs/p/perl-Color-ANSI-Util/perl-Color-ANSI-Util.spec index 4400703b6c1..81904911791 100644 --- a/specs/p/perl-Color-ANSI-Util/perl-Color-ANSI-Util.spec +++ b/specs/p/perl-Color-ANSI-Util/perl-Color-ANSI-Util.spec @@ -3,7 +3,7 @@ Name: perl-Color-ANSI-Util Version: 0.165 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Routines for dealing with ANSI colors License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Color-ANSI-Util/ diff --git a/specs/p/perl-Color-RGB-Util/perl-Color-RGB-Util.spec b/specs/p/perl-Color-RGB-Util/perl-Color-RGB-Util.spec index f7d9be0248d..80e8bb3a156 100644 --- a/specs/p/perl-Color-RGB-Util/perl-Color-RGB-Util.spec +++ b/specs/p/perl-Color-RGB-Util/perl-Color-RGB-Util.spec @@ -3,7 +3,7 @@ Name: perl-Color-RGB-Util Version: 0.609 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Utilities related to RGB colors License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Color-RGB-Util/ diff --git a/specs/p/perl-ColorThemeBase-Static/perl-ColorThemeBase-Static.spec b/specs/p/perl-ColorThemeBase-Static/perl-ColorThemeBase-Static.spec index 3203509d040..939be3e8f30 100644 --- a/specs/p/perl-ColorThemeBase-Static/perl-ColorThemeBase-Static.spec +++ b/specs/p/perl-ColorThemeBase-Static/perl-ColorThemeBase-Static.spec @@ -3,7 +3,7 @@ Name: perl-ColorThemeBase-Static Version: 0.009 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Base class for color theme modules with static list of items License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/ColorThemeBase-Static/ diff --git a/specs/p/perl-ColorThemeRole-ANSI/perl-ColorThemeRole-ANSI.spec b/specs/p/perl-ColorThemeRole-ANSI/perl-ColorThemeRole-ANSI.spec index 5535e3f783f..a2dad8e45c8 100644 --- a/specs/p/perl-ColorThemeRole-ANSI/perl-ColorThemeRole-ANSI.spec +++ b/specs/p/perl-ColorThemeRole-ANSI/perl-ColorThemeRole-ANSI.spec @@ -3,7 +3,7 @@ Name: perl-ColorThemeRole-ANSI Version: 0.001 -Release: 16%{?dist} +Release: 16%{?dist} Summary: Roles for using ColorTheme::* with ANSI codes License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/ColorThemeRole-ANSI/ diff --git a/specs/p/perl-ColorThemeUtil-ANSI/perl-ColorThemeUtil-ANSI.spec b/specs/p/perl-ColorThemeUtil-ANSI/perl-ColorThemeUtil-ANSI.spec index 897311f49ed..f10b705dd30 100644 --- a/specs/p/perl-ColorThemeUtil-ANSI/perl-ColorThemeUtil-ANSI.spec +++ b/specs/p/perl-ColorThemeUtil-ANSI/perl-ColorThemeUtil-ANSI.spec @@ -3,7 +3,7 @@ Name: perl-ColorThemeUtil-ANSI Version: 0.002 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Utility routines related to color themes and ANSI code License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/ColorThemeUtil-ANSI/ diff --git a/specs/p/perl-ColorThemes-Standard/perl-ColorThemes-Standard.spec b/specs/p/perl-ColorThemes-Standard/perl-ColorThemes-Standard.spec index 4f32d08d1b0..734b51d8c2d 100644 --- a/specs/p/perl-ColorThemes-Standard/perl-ColorThemes-Standard.spec +++ b/specs/p/perl-ColorThemes-Standard/perl-ColorThemes-Standard.spec @@ -3,7 +3,7 @@ Name: perl-ColorThemes-Standard Version: 0.003 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Standard collection of generic color themes License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/ColorThemes-Standard/ diff --git a/specs/p/perl-Compress-Bzip2/perl-Compress-Bzip2.spec b/specs/p/perl-Compress-Bzip2/perl-Compress-Bzip2.spec index baa18344123..f7762b8cf06 100644 --- a/specs/p/perl-Compress-Bzip2/perl-Compress-Bzip2.spec +++ b/specs/p/perl-Compress-Bzip2/perl-Compress-Bzip2.spec @@ -10,7 +10,7 @@ Name: perl-Compress-Bzip2 Version: 2.28 -Release: 25%{?dist} +Release: 25%{?dist} Summary: Interface to Bzip2 compression library # bzlib-src/win-tst-dlltest.c (unbundled): Public Domain # bzlib-src/LICENSE (unbundled): BSD-4-Clause diff --git a/specs/p/perl-Compress-LZF/perl-Compress-LZF.spec b/specs/p/perl-Compress-LZF/perl-Compress-LZF.spec index e9071b444fc..2875168991c 100644 --- a/specs/p/perl-Compress-LZF/perl-Compress-LZF.spec +++ b/specs/p/perl-Compress-LZF/perl-Compress-LZF.spec @@ -3,7 +3,7 @@ Name: perl-Compress-LZF Version: 3.8 -Release: 36%{?dist} +Release: 36%{?dist} Summary: Extremely light-weight Lempel-Ziv-Free compression License: GPL-1.0-or-later OR Artistic-1.0-Perl ## Not in the binary packages diff --git a/specs/p/perl-Compress-Raw-Bzip2/perl-Compress-Raw-Bzip2.spec b/specs/p/perl-Compress-Raw-Bzip2/perl-Compress-Raw-Bzip2.spec index 62f03f964d1..34ab7f9835f 100644 --- a/specs/p/perl-Compress-Raw-Bzip2/perl-Compress-Raw-Bzip2.spec +++ b/specs/p/perl-Compress-Raw-Bzip2/perl-Compress-Raw-Bzip2.spec @@ -11,7 +11,7 @@ Name: perl-Compress-Raw-Bzip2 Summary: Low-level interface to bzip2 compression library Version: 2.213 -Release: 522%{?dist} +Release: 522%{?dist} # Other files: GPL-1.0-or-later OR Artistic-1.0-Perl ## unbundled # bzip2-src: BSD diff --git a/specs/p/perl-Compress-Raw-Lzma/perl-Compress-Raw-Lzma.spec b/specs/p/perl-Compress-Raw-Lzma/perl-Compress-Raw-Lzma.spec index a774893f0bd..f1834f50897 100644 --- a/specs/p/perl-Compress-Raw-Lzma/perl-Compress-Raw-Lzma.spec +++ b/specs/p/perl-Compress-Raw-Lzma/perl-Compress-Raw-Lzma.spec @@ -6,7 +6,7 @@ Name: perl-Compress-Raw-Lzma Version: 2.213 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Low-level interface to lzma compression library License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Compress-Raw-Lzma diff --git a/specs/p/perl-Compress-Raw-Zlib/perl-Compress-Raw-Zlib.spec b/specs/p/perl-Compress-Raw-Zlib/perl-Compress-Raw-Zlib.spec index bab571776ab..b4608cb7472 100644 --- a/specs/p/perl-Compress-Raw-Zlib/perl-Compress-Raw-Zlib.spec +++ b/specs/p/perl-Compress-Raw-Zlib/perl-Compress-Raw-Zlib.spec @@ -11,7 +11,7 @@ Name: perl-Compress-Raw-Zlib Version: 2.213 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Low-level interface to the zlib compression library # Zlib.xs: (GPL-1.0-or-later OR Artistic-1.0-Perl) AND Zlib # Others: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Config-Any/perl-Config-Any.spec b/specs/p/perl-Config-Any/perl-Config-Any.spec index c398ebc7866..d6551e79fbd 100644 --- a/specs/p/perl-Config-Any/perl-Config-Any.spec +++ b/specs/p/perl-Config-Any/perl-Config-Any.spec @@ -4,7 +4,7 @@ Name: perl-Config-Any Summary: Load configuration from different file formats, transparently Version: 0.33 -Release: 8%{?dist} +Release: 8%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Config-Any Source0: https://cpan.metacpan.org/modules/by-module/Config/Config-Any-%{version}.tar.gz diff --git a/specs/p/perl-Config-AutoConf/perl-Config-AutoConf.spec b/specs/p/perl-Config-AutoConf/perl-Config-AutoConf.spec index f6848c9ef26..fb7502b002a 100644 --- a/specs/p/perl-Config-AutoConf/perl-Config-AutoConf.spec +++ b/specs/p/perl-Config-AutoConf/perl-Config-AutoConf.spec @@ -8,7 +8,7 @@ Name: perl-Config-AutoConf Version: 0.320 -Release: 14%{?dist} +Release: 14%{?dist} Summary: A module to implement some of AutoConf macros in pure Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Config-AutoConf diff --git a/specs/p/perl-Config-General/perl-Config-General.spec b/specs/p/perl-Config-General/perl-Config-General.spec index bafa91dea41..13ca8830849 100644 --- a/specs/p/perl-Config-General/perl-Config-General.spec +++ b/specs/p/perl-Config-General/perl-Config-General.spec @@ -3,7 +3,7 @@ Name: perl-Config-General Version: 2.67 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Generic configuration module for Perl License: Artistic-2.0 URL: https://metacpan.org/release/Config-General diff --git a/specs/p/perl-Config-IniFiles/perl-Config-IniFiles.spec b/specs/p/perl-Config-IniFiles/perl-Config-IniFiles.spec index 0ebc777cfa9..708ccec2231 100644 --- a/specs/p/perl-Config-IniFiles/perl-Config-IniFiles.spec +++ b/specs/p/perl-Config-IniFiles/perl-Config-IniFiles.spec @@ -3,7 +3,7 @@ Name: perl-Config-IniFiles Version: 3.000003 -Release: 18%{?dist} +Release: 18%{?dist} Summary: A module for reading .ini-style configuration files # LICENSE: GPL+ or Artistic # lib/Config/IniFiles.pm: GPL+ or Artistic diff --git a/specs/p/perl-Config-Perl-V/perl-Config-Perl-V.spec b/specs/p/perl-Config-Perl-V/perl-Config-Perl-V.spec index f5f368937ac..b4a2fac479d 100644 --- a/specs/p/perl-Config-Perl-V/perl-Config-Perl-V.spec +++ b/specs/p/perl-Config-Perl-V/perl-Config-Perl-V.spec @@ -3,7 +3,7 @@ Name: perl-Config-Perl-V Version: 0.39 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Structured data retrieval of perl -V output License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Config-Perl-V diff --git a/specs/p/perl-Config-Tiny/perl-Config-Tiny.spec b/specs/p/perl-Config-Tiny/perl-Config-Tiny.spec index b3ebf25f209..0ba8fbc4195 100644 --- a/specs/p/perl-Config-Tiny/perl-Config-Tiny.spec +++ b/specs/p/perl-Config-Tiny/perl-Config-Tiny.spec @@ -10,7 +10,7 @@ Name: perl-Config-Tiny Version: 2.30 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Perl module for reading and writing .ini style configuration files License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Config-Tiny diff --git a/specs/p/perl-Const-Fast/perl-Const-Fast.spec b/specs/p/perl-Const-Fast/perl-Const-Fast.spec index 281cc1429aa..184c42d51f9 100644 --- a/specs/p/perl-Const-Fast/perl-Const-Fast.spec +++ b/specs/p/perl-Const-Fast/perl-Const-Fast.spec @@ -10,7 +10,7 @@ Name: perl-Const-Fast Version: 0.014 -Release: 37%{?dist} +Release: 37%{?dist} Summary: Facility for creating read-only scalars, arrays, and hashes License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Const-Fast diff --git a/specs/p/perl-Contextual-Return/perl-Contextual-Return.spec b/specs/p/perl-Contextual-Return/perl-Contextual-Return.spec index b7b243a9859..01867463863 100644 --- a/specs/p/perl-Contextual-Return/perl-Contextual-Return.spec +++ b/specs/p/perl-Contextual-Return/perl-Contextual-Return.spec @@ -3,7 +3,7 @@ Name: perl-Contextual-Return Version: 0.004014 -Release: 27%{?dist} +Release: 27%{?dist} Summary: Create context-sensitive return values License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Contextual-Return diff --git a/specs/p/perl-Convert-ASN1/perl-Convert-ASN1.spec b/specs/p/perl-Convert-ASN1/perl-Convert-ASN1.spec index 89693697be6..aa0f361c6c4 100644 --- a/specs/p/perl-Convert-ASN1/perl-Convert-ASN1.spec +++ b/specs/p/perl-Convert-ASN1/perl-Convert-ASN1.spec @@ -7,7 +7,7 @@ Summary: ASN.1 encode/decode library Name: perl-Convert-ASN1 Version: 0.34 -Release: 7%{?dist} +Release: 7%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Convert-ASN1 Source0: https://cpan.metacpan.org/authors/id/T/TI/TIMLEGGE/Convert-ASN1-%{version}.tar.gz diff --git a/specs/p/perl-Convert-Bencode/perl-Convert-Bencode.spec b/specs/p/perl-Convert-Bencode/perl-Convert-Bencode.spec index f76a84233e7..e2b60ec4b43 100644 --- a/specs/p/perl-Convert-Bencode/perl-Convert-Bencode.spec +++ b/specs/p/perl-Convert-Bencode/perl-Convert-Bencode.spec @@ -3,7 +3,7 @@ Name: perl-Convert-Bencode Version: 1.03 -Release: 43%{?dist} +Release: 43%{?dist} Summary: Functions for converting to/from bencoded strings License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Convert-Bencode diff --git a/specs/p/perl-Convert-Bencode_XS/perl-Convert-Bencode_XS.spec b/specs/p/perl-Convert-Bencode_XS/perl-Convert-Bencode_XS.spec index b8f4f742805..2ce48b130b3 100644 --- a/specs/p/perl-Convert-Bencode_XS/perl-Convert-Bencode_XS.spec +++ b/specs/p/perl-Convert-Bencode_XS/perl-Convert-Bencode_XS.spec @@ -3,7 +3,7 @@ Name: perl-Convert-Bencode_XS Version: 0.06 -Release: 48%{?dist} +Release: 48%{?dist} Summary: Faster conversions to/from Bencode format License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Convert-Bencode_XS diff --git a/specs/p/perl-Convert-BinHex/perl-Convert-BinHex.spec b/specs/p/perl-Convert-BinHex/perl-Convert-BinHex.spec index d7503d8db10..4716b6169d0 100644 --- a/specs/p/perl-Convert-BinHex/perl-Convert-BinHex.spec +++ b/specs/p/perl-Convert-BinHex/perl-Convert-BinHex.spec @@ -3,7 +3,7 @@ Name: perl-Convert-BinHex Version: 1.125 -Release: 32%{?dist} +Release: 32%{?dist} Summary: Convert to/from RFC1741 HQX7 (Mac BinHex) License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Convert-BinHex diff --git a/specs/p/perl-Coro-Multicore/perl-Coro-Multicore.spec b/specs/p/perl-Coro-Multicore/perl-Coro-Multicore.spec index ca7c1e8b5aa..caa230f3e85 100644 --- a/specs/p/perl-Coro-Multicore/perl-Coro-Multicore.spec +++ b/specs/p/perl-Coro-Multicore/perl-Coro-Multicore.spec @@ -10,7 +10,7 @@ Name: perl-Coro-Multicore Version: 1.07 -Release: 18%{?dist} +Release: 18%{?dist} Summary: Make Coro threads on multiple cores with specially supported modules # COPYING: GPL-1.0-or-later OR Artistic-1.0-Perl # perlmulticore.h: LicenseRef-Fedora-Public-Domain OR CC0-1.0 diff --git a/specs/p/perl-Coro/perl-Coro.spec b/specs/p/perl-Coro/perl-Coro.spec index d8192ab3140..66c3fabb25c 100644 --- a/specs/p/perl-Coro/perl-Coro.spec +++ b/specs/p/perl-Coro/perl-Coro.spec @@ -4,7 +4,7 @@ %global cpan_version 6.57 Name: perl-Coro Version: 6.570 -Release: 24%{?dist} +Release: 24%{?dist} Summary: The only real threads in perl # Coro/libcoro: GPL-2.0-or-later OR BSD-2-Clause # Rest of package: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Cpanel-JSON-XS/perl-Cpanel-JSON-XS.spec b/specs/p/perl-Cpanel-JSON-XS/perl-Cpanel-JSON-XS.spec index fdff14a85ab..ad0df6a2f55 100644 --- a/specs/p/perl-Cpanel-JSON-XS/perl-Cpanel-JSON-XS.spec +++ b/specs/p/perl-Cpanel-JSON-XS/perl-Cpanel-JSON-XS.spec @@ -11,7 +11,7 @@ Name: perl-Cpanel-JSON-XS Summary: JSON::XS for Cpanel, fast and correct serializing Version: 4.40 -Release: 2%{?dist} +Release: 2%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Cpanel-JSON-XS Source0: https://cpan.metacpan.org/authors/id/R/RU/RURBAN/Cpanel-JSON-XS-%{version}.tar.gz diff --git a/specs/p/perl-Crypt-Blowfish/perl-Crypt-Blowfish.spec b/specs/p/perl-Crypt-Blowfish/perl-Crypt-Blowfish.spec index 1b4b002d5a6..40b8db6205d 100644 --- a/specs/p/perl-Crypt-Blowfish/perl-Crypt-Blowfish.spec +++ b/specs/p/perl-Crypt-Blowfish/perl-Crypt-Blowfish.spec @@ -4,7 +4,7 @@ Summary: XS Blowfish implementation for Perl Name: perl-Crypt-Blowfish Version: 2.14 -Release: 36%{?dist} +Release: 36%{?dist} License: BSD-Systemics-W3Works URL: https://metacpan.org/release/Crypt-Blowfish Source0: https://cpan.metacpan.org/modules/by-module/Crypt/Crypt-Blowfish-%{version}.tar.gz diff --git a/specs/p/perl-Crypt-Blowfish_PP/perl-Crypt-Blowfish_PP.spec b/specs/p/perl-Crypt-Blowfish_PP/perl-Crypt-Blowfish_PP.spec index 5c397b9a5b4..b3790a6ca03 100644 --- a/specs/p/perl-Crypt-Blowfish_PP/perl-Crypt-Blowfish_PP.spec +++ b/specs/p/perl-Crypt-Blowfish_PP/perl-Crypt-Blowfish_PP.spec @@ -3,7 +3,7 @@ Name: perl-Crypt-Blowfish_PP Version: 1.12 -Release: 40%{?dist} +Release: 40%{?dist} Summary: Blowfish encryption algorithm implemented purely in Perl # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Crypt-CBC/perl-Crypt-CBC.spec b/specs/p/perl-Crypt-CBC/perl-Crypt-CBC.spec index efadea7fbb6..2916cc0b1be 100644 --- a/specs/p/perl-Crypt-CBC/perl-Crypt-CBC.spec +++ b/specs/p/perl-Crypt-CBC/perl-Crypt-CBC.spec @@ -4,7 +4,7 @@ Summary: Encrypt Data with Cipher Block Chaining Mode Name: perl-Crypt-CBC Version: 3.07 -Release: 2%{?dist} +Release: 2%{?dist} # Upstream confirms that they're under the same license as perl. # Wording in CBC.pm is less than clear, but still. # https://github.com/cpan-authors/Lib-Crypt-CBC/issues/14 diff --git a/specs/p/perl-Crypt-DES/perl-Crypt-DES.spec b/specs/p/perl-Crypt-DES/perl-Crypt-DES.spec index 180fdd14554..25dcbead5b3 100644 --- a/specs/p/perl-Crypt-DES/perl-Crypt-DES.spec +++ b/specs/p/perl-Crypt-DES/perl-Crypt-DES.spec @@ -10,7 +10,7 @@ Name: perl-Crypt-DES Version: 2.07 -Release: 44%{?dist} +Release: 44%{?dist} Summary: Perl DES encryption module License: BSD-Systemics URL: https://metacpan.org/release/Crypt-DES diff --git a/specs/p/perl-Crypt-IDEA/perl-Crypt-IDEA.spec b/specs/p/perl-Crypt-IDEA/perl-Crypt-IDEA.spec index 2bb43a613a5..7ec8525ced5 100644 --- a/specs/p/perl-Crypt-IDEA/perl-Crypt-IDEA.spec +++ b/specs/p/perl-Crypt-IDEA/perl-Crypt-IDEA.spec @@ -4,7 +4,7 @@ Summary: Perl interface to IDEA block cipher Name: perl-Crypt-IDEA Version: 1.10 -Release: 37%{?dist} +Release: 37%{?dist} License: BSD-Systemics URL: https://metacpan.org/release/Crypt-IDEA Source0: https://cpan.metacpan.org/modules/by-module/Crypt/Crypt-IDEA-%{version}.tar.gz diff --git a/specs/p/perl-Crypt-OpenSSL-Bignum/perl-Crypt-OpenSSL-Bignum.spec b/specs/p/perl-Crypt-OpenSSL-Bignum/perl-Crypt-OpenSSL-Bignum.spec index c0ae3e9033f..ae0acca71b7 100644 --- a/specs/p/perl-Crypt-OpenSSL-Bignum/perl-Crypt-OpenSSL-Bignum.spec +++ b/specs/p/perl-Crypt-OpenSSL-Bignum/perl-Crypt-OpenSSL-Bignum.spec @@ -3,7 +3,7 @@ Name: perl-Crypt-OpenSSL-Bignum Version: 0.09 -Release: 32%{?dist} +Release: 32%{?dist} Summary: Perl interface to OpenSSL's multiprecision integer arithmetic License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Crypt-OpenSSL-Bignum diff --git a/specs/p/perl-Crypt-PBKDF2/perl-Crypt-PBKDF2.spec b/specs/p/perl-Crypt-PBKDF2/perl-Crypt-PBKDF2.spec index 874d3aeb747..23d73f42473 100644 --- a/specs/p/perl-Crypt-PBKDF2/perl-Crypt-PBKDF2.spec +++ b/specs/p/perl-Crypt-PBKDF2/perl-Crypt-PBKDF2.spec @@ -4,7 +4,7 @@ Summary: The PBKDF2 password hashing algorithm Name: perl-Crypt-PBKDF2 Version: 0.161520 -Release: 25%{?dist} +Release: 25%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Crypt-PBKDF2 Source0: https://cpan.metacpan.org/modules/by-module/Crypt/Crypt-PBKDF2-%{version}.tar.gz diff --git a/specs/p/perl-Crypt-PasswdMD5/perl-Crypt-PasswdMD5.spec b/specs/p/perl-Crypt-PasswdMD5/perl-Crypt-PasswdMD5.spec index ed6da61aae1..7b9cb1735e1 100644 --- a/specs/p/perl-Crypt-PasswdMD5/perl-Crypt-PasswdMD5.spec +++ b/specs/p/perl-Crypt-PasswdMD5/perl-Crypt-PasswdMD5.spec @@ -6,7 +6,7 @@ Name: perl-Crypt-PasswdMD5 # Keep 1-digit version because of history Version: %(echo '%{cpan_version}' | sed 's/\.\(.\)/.\1./') -Release: 11%{?dist} +Release: 11%{?dist} Summary: Provides interoperable MD5-based crypt() functions License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Crypt-PasswdMD5 diff --git a/specs/p/perl-Crypt-Rijndael/perl-Crypt-Rijndael.spec b/specs/p/perl-Crypt-Rijndael/perl-Crypt-Rijndael.spec index 302879ed5f5..5109c5d5e0a 100644 --- a/specs/p/perl-Crypt-Rijndael/perl-Crypt-Rijndael.spec +++ b/specs/p/perl-Crypt-Rijndael/perl-Crypt-Rijndael.spec @@ -3,7 +3,7 @@ Name: perl-Crypt-Rijndael Version: 1.16 -Release: 18%{?dist} +Release: 18%{?dist} Summary: Crypt::CBC compliant Rijndael encryption module # Rijndael.{h,xs}, _rijndael.c: LGPL-2.0-or-later # Rijndael.pm, COPYING: LGPL-3.0-only diff --git a/specs/p/perl-Crypt-URandom/perl-Crypt-URandom.spec b/specs/p/perl-Crypt-URandom/perl-Crypt-URandom.spec index 2fcb6f6106a..fdf2c4a4daa 100644 --- a/specs/p/perl-Crypt-URandom/perl-Crypt-URandom.spec +++ b/specs/p/perl-Crypt-URandom/perl-Crypt-URandom.spec @@ -6,7 +6,7 @@ Name: perl-Crypt-URandom Version: 0.55 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Non-blocking randomness for Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Crypt-URandom diff --git a/specs/p/perl-CryptX/perl-CryptX.spec b/specs/p/perl-CryptX/perl-CryptX.spec index 894663237ca..032aeb0b58f 100644 --- a/specs/p/perl-CryptX/perl-CryptX.spec +++ b/specs/p/perl-CryptX/perl-CryptX.spec @@ -8,7 +8,7 @@ Name: perl-CryptX Version: 0.087 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Cryptographic toolkit # src/ltc/*: Unlicense # src/ltm/*: Unlicense diff --git a/specs/p/perl-Cwd-Guard/perl-Cwd-Guard.spec b/specs/p/perl-Cwd-Guard/perl-Cwd-Guard.spec index d7e0589174b..16b8e2cbdd0 100644 --- a/specs/p/perl-Cwd-Guard/perl-Cwd-Guard.spec +++ b/specs/p/perl-Cwd-Guard/perl-Cwd-Guard.spec @@ -5,7 +5,7 @@ Name: perl-Cwd-Guard Version: 0.05 -Release: 29%{?dist} +Release: 29%{?dist} Summary: Temporarily change the current directory License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Cwd-Guard diff --git a/specs/p/perl-DBD-CSV/perl-DBD-CSV.spec b/specs/p/perl-DBD-CSV/perl-DBD-CSV.spec index fd69b5777cd..c2999d6ebcb 100644 --- a/specs/p/perl-DBD-CSV/perl-DBD-CSV.spec +++ b/specs/p/perl-DBD-CSV/perl-DBD-CSV.spec @@ -3,7 +3,7 @@ Name: perl-DBD-CSV Version: 0.62 -Release: 4%{?dist} +Release: 4%{?dist} Summary: DBI driver for CSV files License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/DBD-CSV diff --git a/specs/p/perl-DBD-MariaDB/perl-DBD-MariaDB.spec b/specs/p/perl-DBD-MariaDB/perl-DBD-MariaDB.spec index a3317652041..6150c247d13 100644 --- a/specs/p/perl-DBD-MariaDB/perl-DBD-MariaDB.spec +++ b/specs/p/perl-DBD-MariaDB/perl-DBD-MariaDB.spec @@ -12,7 +12,7 @@ Name: perl-DBD-MariaDB Version: 1.24 -Release: 4%{?dist} +Release: 4%{?dist} Summary: MariaDB and MySQL driver for the Perl5 Database Interface (DBI) License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/DBD-MariaDB/ diff --git a/specs/p/perl-DBD-MySQL/perl-DBD-MySQL.spec b/specs/p/perl-DBD-MySQL/perl-DBD-MySQL.spec index e21e260850f..3845dbd471e 100644 --- a/specs/p/perl-DBD-MySQL/perl-DBD-MySQL.spec +++ b/specs/p/perl-DBD-MySQL/perl-DBD-MySQL.spec @@ -14,7 +14,7 @@ ExcludeArch: %{ix86} Name: perl-DBD-MySQL Version: 5.013 -Release: 2%{?dist} +Release: 2%{?dist} Summary: A MySQL interface for Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/%{cpan_name} diff --git a/specs/p/perl-DBD-Pg/perl-DBD-Pg.spec b/specs/p/perl-DBD-Pg/perl-DBD-Pg.spec index b211d42cacf..bfc11ba4c83 100644 --- a/specs/p/perl-DBD-Pg/perl-DBD-Pg.spec +++ b/specs/p/perl-DBD-Pg/perl-DBD-Pg.spec @@ -7,7 +7,7 @@ Name: perl-DBD-Pg Summary: A PostgreSQL interface for Perl Version: 3.18.0 -Release: 9%{?dist} +Release: 9%{?dist} # Pg.pm, README: Points to directory which contains GPL-2.0-or-later and Artistic-1.0-Perl # other files: Same as Perl (GPL-1.0-or-later OR Artistic-1.0-Perl) License: GPL-2.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-DBD-SQLite/perl-DBD-SQLite.spec b/specs/p/perl-DBD-SQLite/perl-DBD-SQLite.spec index f4523da20c2..4e281d8436d 100644 --- a/specs/p/perl-DBD-SQLite/perl-DBD-SQLite.spec +++ b/specs/p/perl-DBD-SQLite/perl-DBD-SQLite.spec @@ -6,7 +6,7 @@ Name: perl-DBD-SQLite Version: 1.76 -Release: 5%{?dist} +Release: 5%{?dist} Summary: SQLite DBI Driver # lib/DBD/SQLite.pm: GPL-1.0-or-later OR Artistic-1.0-Perl # LICENSE: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-DBI/perl-DBI.spec b/specs/p/perl-DBI/perl-DBI.spec index 31e2072a2a3..241266cbd48 100644 --- a/specs/p/perl-DBI/perl-DBI.spec +++ b/specs/p/perl-DBI/perl-DBI.spec @@ -34,7 +34,7 @@ Name: perl-DBI Version: 1.647 -Release: 5%{?dist} +Release: 5%{?dist} Summary: A database access API for perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: http://dbi.perl.org/ diff --git a/specs/p/perl-DBM-Deep/perl-DBM-Deep.spec b/specs/p/perl-DBM-Deep/perl-DBM-Deep.spec index f6870b703f7..16e2e810631 100644 --- a/specs/p/perl-DBM-Deep/perl-DBM-Deep.spec +++ b/specs/p/perl-DBM-Deep/perl-DBM-Deep.spec @@ -3,7 +3,7 @@ Name: perl-DBM-Deep Version: 2.0019 -Release: 7%{?dist} +Release: 7%{?dist} Summary: A pure perl multi-level hash/array DBM License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/DBM-Deep diff --git a/specs/p/perl-DB_File/perl-DB_File.spec b/specs/p/perl-DB_File/perl-DB_File.spec index c555a343f8a..64e3c69c4d6 100644 --- a/specs/p/perl-DB_File/perl-DB_File.spec +++ b/specs/p/perl-DB_File/perl-DB_File.spec @@ -10,7 +10,7 @@ Name: perl-DB_File Version: 1.859 -Release: 517%{?dist} +Release: 517%{?dist} Summary: Perl5 access to Berkeley DB version 1.x License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/DB_File diff --git a/specs/p/perl-Data-Binary/perl-Data-Binary.spec b/specs/p/perl-Data-Binary/perl-Data-Binary.spec index f626b8063b1..4a6abbd4add 100644 --- a/specs/p/perl-Data-Binary/perl-Data-Binary.spec +++ b/specs/p/perl-Data-Binary/perl-Data-Binary.spec @@ -3,7 +3,7 @@ Name: perl-Data-Binary Version: 0.01 -Release: 21%{?dist} +Release: 21%{?dist} Summary: Simple detection of binary versus text in strings License: Artistic-2.0 URL: https://metacpan.org/release/Data-Binary diff --git a/specs/p/perl-Data-Compare/perl-Data-Compare.spec b/specs/p/perl-Data-Compare/perl-Data-Compare.spec index 5a292b16131..36ea341e4b9 100644 --- a/specs/p/perl-Data-Compare/perl-Data-Compare.spec +++ b/specs/p/perl-Data-Compare/perl-Data-Compare.spec @@ -3,7 +3,7 @@ Name: perl-Data-Compare Version: 1.29 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Compare perl data structures # Some of the metadata files suggest GPL2 rather than GPL (any version) # but the module is actually licensed "same as perl" diff --git a/specs/p/perl-Data-Constraint/perl-Data-Constraint.spec b/specs/p/perl-Data-Constraint/perl-Data-Constraint.spec index 3aae6b53cef..b9a08846034 100644 --- a/specs/p/perl-Data-Constraint/perl-Data-Constraint.spec +++ b/specs/p/perl-Data-Constraint/perl-Data-Constraint.spec @@ -3,7 +3,7 @@ Name: perl-Data-Constraint Version: 1.205 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Prototypical value checking License: Artistic-2.0 diff --git a/specs/p/perl-Data-Denter/perl-Data-Denter.spec b/specs/p/perl-Data-Denter/perl-Data-Denter.spec index d7316425e39..e9f20152849 100644 --- a/specs/p/perl-Data-Denter/perl-Data-Denter.spec +++ b/specs/p/perl-Data-Denter/perl-Data-Denter.spec @@ -3,7 +3,7 @@ Name: perl-Data-Denter Version: 0.15 -Release: 47%{?dist} +Release: 47%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl Summary: An alternative to Data::Dumper and Storable Source: https://cpan.metacpan.org/authors/id/I/IN/INGY/Data-Denter-%{version}.tar.gz diff --git a/specs/p/perl-Data-Dump-Streamer/perl-Data-Dump-Streamer.spec b/specs/p/perl-Data-Dump-Streamer/perl-Data-Dump-Streamer.spec index 874b0839295..d1f5cfa7151 100644 --- a/specs/p/perl-Data-Dump-Streamer/perl-Data-Dump-Streamer.spec +++ b/specs/p/perl-Data-Dump-Streamer/perl-Data-Dump-Streamer.spec @@ -3,7 +3,7 @@ Name: perl-Data-Dump-Streamer Version: 2.42 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Accurately serialize a data structure as Perl code License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Data-Dump-Streamer diff --git a/specs/p/perl-Data-Dump/perl-Data-Dump.spec b/specs/p/perl-Data-Dump/perl-Data-Dump.spec index f38689d8e2c..e24ad06b8e5 100644 --- a/specs/p/perl-Data-Dump/perl-Data-Dump.spec +++ b/specs/p/perl-Data-Dump/perl-Data-Dump.spec @@ -3,7 +3,7 @@ Name: perl-Data-Dump Version: 1.25 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Pretty printing of data structures License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Data-Dump diff --git a/specs/p/perl-Data-Dumper-Names/perl-Data-Dumper-Names.spec b/specs/p/perl-Data-Dumper-Names/perl-Data-Dumper-Names.spec index 39bfb549035..74edf42b01c 100644 --- a/specs/p/perl-Data-Dumper-Names/perl-Data-Dumper-Names.spec +++ b/specs/p/perl-Data-Dumper-Names/perl-Data-Dumper-Names.spec @@ -3,7 +3,7 @@ Name: perl-Data-Dumper-Names Version: 0.03 -Release: 49%{?dist} +Release: 49%{?dist} Summary: Data::Dumper like module for printing and eval data structures License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Data-Dumper-Names diff --git a/specs/p/perl-Data-Dumper/perl-Data-Dumper.spec b/specs/p/perl-Data-Dumper/perl-Data-Dumper.spec index 9c7d25002c0..e5dd6903674 100644 --- a/specs/p/perl-Data-Dumper/perl-Data-Dumper.spec +++ b/specs/p/perl-Data-Dumper/perl-Data-Dumper.spec @@ -5,7 +5,7 @@ Name: perl-Data-Dumper Version: 2.191 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Stringify perl data structures, suitable for printing and eval License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Data-Dumper diff --git a/specs/p/perl-Data-OptList/perl-Data-OptList.spec b/specs/p/perl-Data-OptList/perl-Data-OptList.spec index e886f9b8530..5314cbcd878 100644 --- a/specs/p/perl-Data-OptList/perl-Data-OptList.spec +++ b/specs/p/perl-Data-OptList/perl-Data-OptList.spec @@ -13,7 +13,7 @@ Name: perl-Data-OptList Version: 0.114 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Parse and validate simple name/value option pairs License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Data-OptList diff --git a/specs/p/perl-Data-Perl/perl-Data-Perl.spec b/specs/p/perl-Data-Perl/perl-Data-Perl.spec index 98adbe66b71..e446d871fa1 100644 --- a/specs/p/perl-Data-Perl/perl-Data-Perl.spec +++ b/specs/p/perl-Data-Perl/perl-Data-Perl.spec @@ -3,7 +3,7 @@ Name: perl-Data-Perl Version: 0.002011 -Release: 18%{?dist} +Release: 18%{?dist} Summary: Base classes wrapping fundamental Perl data types License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Data-Perl diff --git a/specs/p/perl-Data-Section-Simple/perl-Data-Section-Simple.spec b/specs/p/perl-Data-Section-Simple/perl-Data-Section-Simple.spec index 4f239aac671..015f2d34053 100644 --- a/specs/p/perl-Data-Section-Simple/perl-Data-Section-Simple.spec +++ b/specs/p/perl-Data-Section-Simple/perl-Data-Section-Simple.spec @@ -3,7 +3,7 @@ Name: perl-Data-Section-Simple Version: 0.07 -Release: 34%{?dist} +Release: 34%{?dist} Summary: Read data from __DATA__ License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Data-Section-Simple diff --git a/specs/p/perl-Data-Section/perl-Data-Section.spec b/specs/p/perl-Data-Section/perl-Data-Section.spec index 86c59333b93..3d9e661ca90 100644 --- a/specs/p/perl-Data-Section/perl-Data-Section.spec +++ b/specs/p/perl-Data-Section/perl-Data-Section.spec @@ -13,7 +13,7 @@ Name: perl-Data-Section Version: 0.200008 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Read multiple hunks of data out of your DATA section License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Data-Section diff --git a/specs/p/perl-Data-Serializer/perl-Data-Serializer.spec b/specs/p/perl-Data-Serializer/perl-Data-Serializer.spec index 52bfd50727c..43f2ebda9e2 100644 --- a/specs/p/perl-Data-Serializer/perl-Data-Serializer.spec +++ b/specs/p/perl-Data-Serializer/perl-Data-Serializer.spec @@ -3,7 +3,7 @@ Name: perl-Data-Serializer Version: 0.65 -Release: 17%{?dist} +Release: 17%{?dist} Summary: Modules that serialize data structures License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Data-Serializer diff --git a/specs/p/perl-Data-Taxi/perl-Data-Taxi.spec b/specs/p/perl-Data-Taxi/perl-Data-Taxi.spec index 47f32fd525c..a617d1d4541 100644 --- a/specs/p/perl-Data-Taxi/perl-Data-Taxi.spec +++ b/specs/p/perl-Data-Taxi/perl-Data-Taxi.spec @@ -3,7 +3,7 @@ Name: perl-Data-Taxi Version: 0.96 -Release: 43%{?dist} +Release: 43%{?dist} Summary: Taint-aware, XML-ish data serialization License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Data-Taxi diff --git a/specs/p/perl-Data-UUID/perl-Data-UUID.spec b/specs/p/perl-Data-UUID/perl-Data-UUID.spec index 7b1066bcc5c..5d50ad68b1f 100644 --- a/specs/p/perl-Data-UUID/perl-Data-UUID.spec +++ b/specs/p/perl-Data-UUID/perl-Data-UUID.spec @@ -3,7 +3,7 @@ Name: perl-Data-UUID Version: 1.227 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Globally/Universally Unique Identifiers (GUIDs/UUIDs) # Makefile.PL says BSD but LICENSE file is HP-1989 # LICENSE: HP-1989 diff --git a/specs/p/perl-Data-Uniqid/perl-Data-Uniqid.spec b/specs/p/perl-Data-Uniqid/perl-Data-Uniqid.spec index 31c5507d5ee..1a63dcbe5e6 100644 --- a/specs/p/perl-Data-Uniqid/perl-Data-Uniqid.spec +++ b/specs/p/perl-Data-Uniqid/perl-Data-Uniqid.spec @@ -3,7 +3,7 @@ Name: perl-Data-Uniqid Version: 0.12 -Release: 38%{?dist} +Release: 38%{?dist} Summary: Perl extension for simple generating of unique id's # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Data-Visitor/perl-Data-Visitor.spec b/specs/p/perl-Data-Visitor/perl-Data-Visitor.spec index e718c6f91b4..441dd133ede 100644 --- a/specs/p/perl-Data-Visitor/perl-Data-Visitor.spec +++ b/specs/p/perl-Data-Visitor/perl-Data-Visitor.spec @@ -3,7 +3,7 @@ Name: perl-Data-Visitor Version: 0.32 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Visitor style traversal of Perl data structures License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Data-Visitor diff --git a/specs/p/perl-Date-Calc/perl-Date-Calc.spec b/specs/p/perl-Date-Calc/perl-Date-Calc.spec index c59a6a57b35..3c0e9a8292f 100644 --- a/specs/p/perl-Date-Calc/perl-Date-Calc.spec +++ b/specs/p/perl-Date-Calc/perl-Date-Calc.spec @@ -3,7 +3,7 @@ Name: perl-Date-Calc Version: 6.4 -Release: 32%{?dist} +Release: 32%{?dist} Summary: Gregorian calendar date calculations License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Date-Calc diff --git a/specs/p/perl-Date-ISO8601/perl-Date-ISO8601.spec b/specs/p/perl-Date-ISO8601/perl-Date-ISO8601.spec index 3d6a8327200..4be422bf1e3 100644 --- a/specs/p/perl-Date-ISO8601/perl-Date-ISO8601.spec +++ b/specs/p/perl-Date-ISO8601/perl-Date-ISO8601.spec @@ -10,7 +10,7 @@ Name: perl-Date-ISO8601 Version: 0.005 -Release: 24%{?dist} +Release: 24%{?dist} Summary: Three ISO 8601 numerical calendars License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Date-ISO8601 diff --git a/specs/p/perl-Date-Manip/perl-Date-Manip.spec b/specs/p/perl-Date-Manip/perl-Date-Manip.spec index 7697e21f2ad..2c5cf2f8cf7 100644 --- a/specs/p/perl-Date-Manip/perl-Date-Manip.spec +++ b/specs/p/perl-Date-Manip/perl-Date-Manip.spec @@ -3,7 +3,7 @@ Name: perl-Date-Manip Version: 6.98 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Date manipulation routines License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Date-Manip diff --git a/specs/p/perl-DateTime-Calendar-Julian/perl-DateTime-Calendar-Julian.spec b/specs/p/perl-DateTime-Calendar-Julian/perl-DateTime-Calendar-Julian.spec index 5cf2cb65793..c3ba4b731c6 100644 --- a/specs/p/perl-DateTime-Calendar-Julian/perl-DateTime-Calendar-Julian.spec +++ b/specs/p/perl-DateTime-Calendar-Julian/perl-DateTime-Calendar-Julian.spec @@ -3,7 +3,7 @@ Name: perl-DateTime-Calendar-Julian Version: 0.107 -Release: 12%{?dist} +Release: 12%{?dist} # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl Summary: Julian Calendar support for DateTime.pm diff --git a/specs/p/perl-DateTime-Calendar-Mayan/perl-DateTime-Calendar-Mayan.spec b/specs/p/perl-DateTime-Calendar-Mayan/perl-DateTime-Calendar-Mayan.spec index ea954b7b1a5..991e2802879 100644 --- a/specs/p/perl-DateTime-Calendar-Mayan/perl-DateTime-Calendar-Mayan.spec +++ b/specs/p/perl-DateTime-Calendar-Mayan/perl-DateTime-Calendar-Mayan.spec @@ -3,7 +3,7 @@ Name: perl-DateTime-Calendar-Mayan Version: 0.0601 -Release: 48%{?dist} +Release: 48%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl Summary: Mayan Long Count Calendar URL: https://metacpan.org/release/DateTime-Calendar-Mayan diff --git a/specs/p/perl-DateTime-Format-Builder/perl-DateTime-Format-Builder.spec b/specs/p/perl-DateTime-Format-Builder/perl-DateTime-Format-Builder.spec index 68d7f5d9554..f20f10edeaa 100644 --- a/specs/p/perl-DateTime-Format-Builder/perl-DateTime-Format-Builder.spec +++ b/specs/p/perl-DateTime-Format-Builder/perl-DateTime-Format-Builder.spec @@ -12,7 +12,7 @@ Name: perl-DateTime-Format-Builder # 0.83 in reality, but rpm can't get it Version: 0.8300 -Release: 17%{?dist} +Release: 17%{?dist} Summary: Create DateTime parser classes and objects # examples/W3CDTF.pm: GPL-1.0-or-later OR Artistic-1.0-Perl # examples/MySQL.pm: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-DateTime-Format-HTTP/perl-DateTime-Format-HTTP.spec b/specs/p/perl-DateTime-Format-HTTP/perl-DateTime-Format-HTTP.spec index 948760fb842..641a09d434b 100644 --- a/specs/p/perl-DateTime-Format-HTTP/perl-DateTime-Format-HTTP.spec +++ b/specs/p/perl-DateTime-Format-HTTP/perl-DateTime-Format-HTTP.spec @@ -3,7 +3,7 @@ Name: perl-DateTime-Format-HTTP Version: 0.43 -Release: 4%{?dist} +Release: 4%{?dist} Summary: HTTP protocol date conversion routines License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/DateTime-Format-HTTP diff --git a/specs/p/perl-DateTime-Format-IBeat/perl-DateTime-Format-IBeat.spec b/specs/p/perl-DateTime-Format-IBeat/perl-DateTime-Format-IBeat.spec index 779205ea82b..c5762d2f702 100644 --- a/specs/p/perl-DateTime-Format-IBeat/perl-DateTime-Format-IBeat.spec +++ b/specs/p/perl-DateTime-Format-IBeat/perl-DateTime-Format-IBeat.spec @@ -3,7 +3,7 @@ Name: perl-DateTime-Format-IBeat Version: 0.161 -Release: 53%{?dist} +Release: 53%{?dist} Summary: Format times in .beat notation License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/DateTime-Format-IBeat diff --git a/specs/p/perl-DateTime-Format-Mail/perl-DateTime-Format-Mail.spec b/specs/p/perl-DateTime-Format-Mail/perl-DateTime-Format-Mail.spec index 2755a31a2f9..970ece389c5 100644 --- a/specs/p/perl-DateTime-Format-Mail/perl-DateTime-Format-Mail.spec +++ b/specs/p/perl-DateTime-Format-Mail/perl-DateTime-Format-Mail.spec @@ -7,7 +7,7 @@ Name: perl-DateTime-Format-Mail Epoch: 1 Version: 0.403 -Release: 28%{?dist} +Release: 28%{?dist} Summary: Convert between DateTime and RFC2822/822 formats License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/DateTime-Format-Mail diff --git a/specs/p/perl-DateTime-Format-MySQL/perl-DateTime-Format-MySQL.spec b/specs/p/perl-DateTime-Format-MySQL/perl-DateTime-Format-MySQL.spec index 90bfc39e7b7..b470bee711b 100644 --- a/specs/p/perl-DateTime-Format-MySQL/perl-DateTime-Format-MySQL.spec +++ b/specs/p/perl-DateTime-Format-MySQL/perl-DateTime-Format-MySQL.spec @@ -6,7 +6,7 @@ Name: perl-DateTime-Format-MySQL Version: %{rpm_version} -Release: 8%{?dist} +Release: 8%{?dist} Summary: Parse and format MySQL dates and times License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/DateTime-Format-MySQL diff --git a/specs/p/perl-DateTime-Format-Strptime/perl-DateTime-Format-Strptime.spec b/specs/p/perl-DateTime-Format-Strptime/perl-DateTime-Format-Strptime.spec index 4089e59b547..4508dafd6e9 100644 --- a/specs/p/perl-DateTime-Format-Strptime/perl-DateTime-Format-Strptime.spec +++ b/specs/p/perl-DateTime-Format-Strptime/perl-DateTime-Format-Strptime.spec @@ -4,7 +4,7 @@ Name: perl-DateTime-Format-Strptime Epoch: 1 Version: 1.79 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Parse and format strptime and strftime patterns License: Artistic-2.0 URL: https://metacpan.org/release/DateTime-Format-Strptime diff --git a/specs/p/perl-DateTime-Locale/perl-DateTime-Locale.spec b/specs/p/perl-DateTime-Locale/perl-DateTime-Locale.spec index 6b278566ce4..9b9b3eb4070 100644 --- a/specs/p/perl-DateTime-Locale/perl-DateTime-Locale.spec +++ b/specs/p/perl-DateTime-Locale/perl-DateTime-Locale.spec @@ -3,7 +3,7 @@ Name: perl-DateTime-Locale Version: 1.45 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Localization support for DateTime.pm # Although the CLDR license is listed as "MIT" on the Fedora Wiki, it's more # similar to recently added "Unicode-DFS-2015" license. diff --git a/specs/p/perl-DateTime-TimeZone-SystemV/perl-DateTime-TimeZone-SystemV.spec b/specs/p/perl-DateTime-TimeZone-SystemV/perl-DateTime-TimeZone-SystemV.spec index 147df5c0c5d..cb0aae3dd42 100644 --- a/specs/p/perl-DateTime-TimeZone-SystemV/perl-DateTime-TimeZone-SystemV.spec +++ b/specs/p/perl-DateTime-TimeZone-SystemV/perl-DateTime-TimeZone-SystemV.spec @@ -10,7 +10,7 @@ Name: perl-DateTime-TimeZone-SystemV Version: 0.010 -Release: 25%{?dist} +Release: 25%{?dist} Summary: System V and POSIX timezone strings License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/DateTime-TimeZone-SystemV diff --git a/specs/p/perl-DateTime-TimeZone-Tzfile/perl-DateTime-TimeZone-Tzfile.spec b/specs/p/perl-DateTime-TimeZone-Tzfile/perl-DateTime-TimeZone-Tzfile.spec index df186cbf05e..c1aac04f578 100644 --- a/specs/p/perl-DateTime-TimeZone-Tzfile/perl-DateTime-TimeZone-Tzfile.spec +++ b/specs/p/perl-DateTime-TimeZone-Tzfile/perl-DateTime-TimeZone-Tzfile.spec @@ -10,7 +10,7 @@ Name: perl-DateTime-TimeZone-Tzfile Version: 0.011 -Release: 25%{?dist} +Release: 25%{?dist} Summary: Tzfile (zoneinfo) timezone files License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/DateTime-TimeZone-Tzfile diff --git a/specs/p/perl-DateTime-TimeZone/perl-DateTime-TimeZone.spec b/specs/p/perl-DateTime-TimeZone/perl-DateTime-TimeZone.spec index 28b8985e5a2..9050d32433b 100644 --- a/specs/p/perl-DateTime-TimeZone/perl-DateTime-TimeZone.spec +++ b/specs/p/perl-DateTime-TimeZone/perl-DateTime-TimeZone.spec @@ -9,7 +9,7 @@ Name: perl-DateTime-TimeZone Version: 2.66 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Time zone object base class and factory # tzdata%%{tzversion}.tar.gz archive: LicenseRef-Fedora-Public-Domain # other files: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-DateTime/perl-DateTime.spec b/specs/p/perl-DateTime/perl-DateTime.spec index a6e568ac38e..22d407690ea 100644 --- a/specs/p/perl-DateTime/perl-DateTime.spec +++ b/specs/p/perl-DateTime/perl-DateTime.spec @@ -11,7 +11,7 @@ Name: perl-DateTime Epoch: 2 Version: 1.66 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Date and time object for Perl License: Artistic-2.0 URL: https://metacpan.org/release/DateTime diff --git a/specs/p/perl-Declare-Constraints-Simple/perl-Declare-Constraints-Simple.spec b/specs/p/perl-Declare-Constraints-Simple/perl-Declare-Constraints-Simple.spec index e63e0ab36fd..530ebf654fc 100644 --- a/specs/p/perl-Declare-Constraints-Simple/perl-Declare-Constraints-Simple.spec +++ b/specs/p/perl-Declare-Constraints-Simple/perl-Declare-Constraints-Simple.spec @@ -3,7 +3,7 @@ Name: perl-Declare-Constraints-Simple Version: 0.03 -Release: 58%{?dist} +Release: 58%{?dist} Summary: Declarative Validation of Data Structures License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Declare-Constraints-Simple diff --git a/specs/p/perl-Devel-CallChecker/perl-Devel-CallChecker.spec b/specs/p/perl-Devel-CallChecker/perl-Devel-CallChecker.spec index af19daec644..b9e92889692 100644 --- a/specs/p/perl-Devel-CallChecker/perl-Devel-CallChecker.spec +++ b/specs/p/perl-Devel-CallChecker/perl-Devel-CallChecker.spec @@ -12,7 +12,7 @@ Name: perl-Devel-CallChecker Version: 0.009 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Custom op checking attached to subroutines License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Devel-CallChecker diff --git a/specs/p/perl-Devel-CallParser/perl-Devel-CallParser.spec b/specs/p/perl-Devel-CallParser/perl-Devel-CallParser.spec index 1023022d248..335c0afebcc 100644 --- a/specs/p/perl-Devel-CallParser/perl-Devel-CallParser.spec +++ b/specs/p/perl-Devel-CallParser/perl-Devel-CallParser.spec @@ -3,7 +3,7 @@ Name: perl-Devel-CallParser Version: 0.002 -Release: 41%{?dist} +Release: 41%{?dist} Summary: Custom parsing attached to subroutines License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Devel-CallParser diff --git a/specs/p/perl-Devel-Caller/perl-Devel-Caller.spec b/specs/p/perl-Devel-Caller/perl-Devel-Caller.spec index 81817ae6fdc..20188579f8a 100644 --- a/specs/p/perl-Devel-Caller/perl-Devel-Caller.spec +++ b/specs/p/perl-Devel-Caller/perl-Devel-Caller.spec @@ -3,7 +3,7 @@ Name: perl-Devel-Caller Version: 2.07 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Meatier versions of caller License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Devel-Caller diff --git a/specs/p/perl-Devel-CheckBin/perl-Devel-CheckBin.spec b/specs/p/perl-Devel-CheckBin/perl-Devel-CheckBin.spec index d7cd44e0e63..a705d71aa8b 100644 --- a/specs/p/perl-Devel-CheckBin/perl-Devel-CheckBin.spec +++ b/specs/p/perl-Devel-CheckBin/perl-Devel-CheckBin.spec @@ -3,7 +3,7 @@ Name: perl-Devel-CheckBin Version: 0.04 -Release: 30%{?dist} +Release: 30%{?dist} Summary: Check that a command is available License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Devel-CheckBin diff --git a/specs/p/perl-Devel-CheckCompiler/perl-Devel-CheckCompiler.spec b/specs/p/perl-Devel-CheckCompiler/perl-Devel-CheckCompiler.spec index 48055fc33f5..581e67bffb3 100644 --- a/specs/p/perl-Devel-CheckCompiler/perl-Devel-CheckCompiler.spec +++ b/specs/p/perl-Devel-CheckCompiler/perl-Devel-CheckCompiler.spec @@ -3,7 +3,7 @@ Name: perl-Devel-CheckCompiler Version: 0.07 -Release: 28%{?dist} +Release: 28%{?dist} Summary: Check the compiler's availability License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Devel-CheckCompiler diff --git a/specs/p/perl-Devel-CheckLib/perl-Devel-CheckLib.spec b/specs/p/perl-Devel-CheckLib/perl-Devel-CheckLib.spec index 81fee30e2e6..a3d051e97da 100644 --- a/specs/p/perl-Devel-CheckLib/perl-Devel-CheckLib.spec +++ b/specs/p/perl-Devel-CheckLib/perl-Devel-CheckLib.spec @@ -10,7 +10,7 @@ Name: perl-Devel-CheckLib Version: 1.16 -Release: 16%{?dist} +Release: 16%{?dist} Summary: Check that a library is available License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Devel-Cycle/perl-Devel-Cycle.spec b/specs/p/perl-Devel-Cycle/perl-Devel-Cycle.spec index 5ac3525f937..677672123c2 100644 --- a/specs/p/perl-Devel-Cycle/perl-Devel-Cycle.spec +++ b/specs/p/perl-Devel-Cycle/perl-Devel-Cycle.spec @@ -3,7 +3,7 @@ Name: perl-Devel-Cycle Version: 1.12 -Release: 33%{?dist} +Release: 33%{?dist} Summary: Find memory cycles in objects License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Devel-Cycle diff --git a/specs/p/perl-Devel-Declare/perl-Devel-Declare.spec b/specs/p/perl-Devel-Declare/perl-Devel-Declare.spec index 165115cec0a..152f4525d3f 100644 --- a/specs/p/perl-Devel-Declare/perl-Devel-Declare.spec +++ b/specs/p/perl-Devel-Declare/perl-Devel-Declare.spec @@ -10,7 +10,7 @@ Name: perl-Devel-Declare Version: 0.006022 -Release: 26%{?dist} +Release: 26%{?dist} Summary: Adding keywords to perl, in perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Devel-Declare diff --git a/specs/p/perl-Devel-EnforceEncapsulation/perl-Devel-EnforceEncapsulation.spec b/specs/p/perl-Devel-EnforceEncapsulation/perl-Devel-EnforceEncapsulation.spec index e94f75ea828..2219ef6fa3e 100644 --- a/specs/p/perl-Devel-EnforceEncapsulation/perl-Devel-EnforceEncapsulation.spec +++ b/specs/p/perl-Devel-EnforceEncapsulation/perl-Devel-EnforceEncapsulation.spec @@ -3,7 +3,7 @@ Name: perl-Devel-EnforceEncapsulation Version: 0.51 -Release: 34%{?dist} +Release: 34%{?dist} Summary: Find access violations to blessed objects License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Devel-EnforceEncapsulation diff --git a/specs/p/perl-Devel-GlobalDestruction/perl-Devel-GlobalDestruction.spec b/specs/p/perl-Devel-GlobalDestruction/perl-Devel-GlobalDestruction.spec index 92117ac13a7..654ff1d6a1d 100644 --- a/specs/p/perl-Devel-GlobalDestruction/perl-Devel-GlobalDestruction.spec +++ b/specs/p/perl-Devel-GlobalDestruction/perl-Devel-GlobalDestruction.spec @@ -3,7 +3,7 @@ Name: perl-Devel-GlobalDestruction Version: 0.14 -Release: 28%{?dist} +Release: 28%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl Summary: Expose PL_dirty, the flag that marks global destruction URL: https://metacpan.org/release/Devel-GlobalDestruction diff --git a/specs/p/perl-Devel-Hide/perl-Devel-Hide.spec b/specs/p/perl-Devel-Hide/perl-Devel-Hide.spec index 09563b43124..86c62ab3413 100644 --- a/specs/p/perl-Devel-Hide/perl-Devel-Hide.spec +++ b/specs/p/perl-Devel-Hide/perl-Devel-Hide.spec @@ -10,7 +10,7 @@ Name: perl-Devel-Hide Version: 0.0015 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Forces the unavailability of specified Perl modules (for testing) License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Devel-Hide diff --git a/specs/p/perl-Devel-Leak/perl-Devel-Leak.spec b/specs/p/perl-Devel-Leak/perl-Devel-Leak.spec index 66568971aa4..2dc85182e0e 100644 --- a/specs/p/perl-Devel-Leak/perl-Devel-Leak.spec +++ b/specs/p/perl-Devel-Leak/perl-Devel-Leak.spec @@ -3,7 +3,7 @@ Name: perl-Devel-Leak Version: 0.03 -Release: 61%{?dist} +Release: 61%{?dist} Summary: Utility for looking for perl objects that are not reclaimed License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Devel-Leak diff --git a/specs/p/perl-Devel-LexAlias/perl-Devel-LexAlias.spec b/specs/p/perl-Devel-LexAlias/perl-Devel-LexAlias.spec index 0e8087201d3..0a3cad712c4 100644 --- a/specs/p/perl-Devel-LexAlias/perl-Devel-LexAlias.spec +++ b/specs/p/perl-Devel-LexAlias/perl-Devel-LexAlias.spec @@ -3,7 +3,7 @@ Name: perl-Devel-LexAlias Version: 0.05 -Release: 42%{?dist} +Release: 42%{?dist} Summary: Alias lexical variables License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Devel-LexAlias diff --git a/specs/p/perl-Devel-OverloadInfo/perl-Devel-OverloadInfo.spec b/specs/p/perl-Devel-OverloadInfo/perl-Devel-OverloadInfo.spec index 06b60a70af7..8a548ef0dc1 100644 --- a/specs/p/perl-Devel-OverloadInfo/perl-Devel-OverloadInfo.spec +++ b/specs/p/perl-Devel-OverloadInfo/perl-Devel-OverloadInfo.spec @@ -3,7 +3,7 @@ Name: perl-Devel-OverloadInfo Version: 0.008 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Introspect overloaded operators License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Devel-OverloadInfo diff --git a/specs/p/perl-Devel-PPPort/perl-Devel-PPPort.spec b/specs/p/perl-Devel-PPPort/perl-Devel-PPPort.spec index 31513626fb9..ce90d89b722 100644 --- a/specs/p/perl-Devel-PPPort/perl-Devel-PPPort.spec +++ b/specs/p/perl-Devel-PPPort/perl-Devel-PPPort.spec @@ -8,7 +8,7 @@ Name: perl-Devel-PPPort Version: 3.73 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Perl Pollution Portability header generator License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Devel-PPPort diff --git a/specs/p/perl-Devel-PartialDump/perl-Devel-PartialDump.spec b/specs/p/perl-Devel-PartialDump/perl-Devel-PartialDump.spec index 4ef4ea318c0..a7018224c98 100644 --- a/specs/p/perl-Devel-PartialDump/perl-Devel-PartialDump.spec +++ b/specs/p/perl-Devel-PartialDump/perl-Devel-PartialDump.spec @@ -3,7 +3,7 @@ Name: perl-Devel-PartialDump Version: 0.20 -Release: 25%{?dist} +Release: 25%{?dist} Summary: Partial dumping of data structures, optimized for argument printing License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Devel-PartialDump diff --git a/specs/p/perl-Devel-Refcount/perl-Devel-Refcount.spec b/specs/p/perl-Devel-Refcount/perl-Devel-Refcount.spec index b8ce659a3e6..743a354a0eb 100644 --- a/specs/p/perl-Devel-Refcount/perl-Devel-Refcount.spec +++ b/specs/p/perl-Devel-Refcount/perl-Devel-Refcount.spec @@ -3,7 +3,7 @@ Name: perl-Devel-Refcount Version: 0.10 -Release: 41%{?dist} +Release: 41%{?dist} Summary: Obtain the REFCNT value of a referent License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Devel-Refcount diff --git a/specs/p/perl-Devel-Size/perl-Devel-Size.spec b/specs/p/perl-Devel-Size/perl-Devel-Size.spec index 037ab51f699..ad3f98d3fca 100644 --- a/specs/p/perl-Devel-Size/perl-Devel-Size.spec +++ b/specs/p/perl-Devel-Size/perl-Devel-Size.spec @@ -10,7 +10,7 @@ Name: perl-Devel-Size Version: 0.85 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Perl extension for finding the memory usage of Perl variables License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Devel-Size diff --git a/specs/p/perl-Devel-StackTrace/perl-Devel-StackTrace.spec b/specs/p/perl-Devel-StackTrace/perl-Devel-StackTrace.spec index 518bec35772..f96b1f1f644 100644 --- a/specs/p/perl-Devel-StackTrace/perl-Devel-StackTrace.spec +++ b/specs/p/perl-Devel-StackTrace/perl-Devel-StackTrace.spec @@ -5,7 +5,7 @@ Name: perl-Devel-StackTrace Summary: Perl module implementing stack trace and stack trace frame objects Version: 2.05 Epoch: 1 -Release: 7%{?dist} +Release: 7%{?dist} License: Artistic-2.0 URL: https://metacpan.org/release/Devel-StackTrace Source0: https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/Devel-StackTrace-%{version}.tar.gz diff --git a/specs/p/perl-Devel-Symdump/perl-Devel-Symdump.spec b/specs/p/perl-Devel-Symdump/perl-Devel-Symdump.spec index 5c42f0a195f..d44ad867a40 100644 --- a/specs/p/perl-Devel-Symdump/perl-Devel-Symdump.spec +++ b/specs/p/perl-Devel-Symdump/perl-Devel-Symdump.spec @@ -4,7 +4,7 @@ Name: perl-Devel-Symdump Epoch: 1 Version: 2.18 -Release: 33%{?dist} +Release: 33%{?dist} Summary: A Perl module for inspecting Perl's symbol table License: GPL-1.0-or-later OR Artistic-1.0-Perl Url: https://metacpan.org/release/Devel-Symdump diff --git a/specs/p/perl-Digest-BubbleBabble/perl-Digest-BubbleBabble.spec b/specs/p/perl-Digest-BubbleBabble/perl-Digest-BubbleBabble.spec index b9514bf432b..b98dbbb4487 100644 --- a/specs/p/perl-Digest-BubbleBabble/perl-Digest-BubbleBabble.spec +++ b/specs/p/perl-Digest-BubbleBabble/perl-Digest-BubbleBabble.spec @@ -4,7 +4,7 @@ Summary: Create bubble-babble fingerprints Name: perl-Digest-BubbleBabble Version: 0.02 -Release: 43%{?dist} +Release: 43%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Digest-BubbleBabble Source0: https://cpan.metacpan.org/modules/by-module/Digest/Digest-BubbleBabble-%{version}.tar.gz diff --git a/specs/p/perl-Digest-CRC/perl-Digest-CRC.spec b/specs/p/perl-Digest-CRC/perl-Digest-CRC.spec index e881f47eb25..0b1098ba6ba 100644 --- a/specs/p/perl-Digest-CRC/perl-Digest-CRC.spec +++ b/specs/p/perl-Digest-CRC/perl-Digest-CRC.spec @@ -3,7 +3,7 @@ Name: perl-Digest-CRC Version: 0.24 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Generic CRC functions License: LicenseRef-Fedora-Public-Domain URL: https://metacpan.org/release/Digest-CRC diff --git a/specs/p/perl-Digest-HMAC/perl-Digest-HMAC.spec b/specs/p/perl-Digest-HMAC/perl-Digest-HMAC.spec index 232c375a28f..ac2faed99ed 100644 --- a/specs/p/perl-Digest-HMAC/perl-Digest-HMAC.spec +++ b/specs/p/perl-Digest-HMAC/perl-Digest-HMAC.spec @@ -3,7 +3,7 @@ Name: perl-Digest-HMAC Version: 1.05 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Keyed-Hashing for Message Authentication License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Digest-HMAC diff --git a/specs/p/perl-Digest-MD5/perl-Digest-MD5.spec b/specs/p/perl-Digest-MD5/perl-Digest-MD5.spec index 882f8bc396e..9a9d7655147 100644 --- a/specs/p/perl-Digest-MD5/perl-Digest-MD5.spec +++ b/specs/p/perl-Digest-MD5/perl-Digest-MD5.spec @@ -3,7 +3,7 @@ Name: perl-Digest-MD5 Version: 2.59 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Perl interface to the MD5 algorithm # MD5.pm: (GPL-1.0-or-later OR Artistic-1.0-Perl) AND RSA-MD # MD5.xs: (GPL-1.0-or-later OR Artistic-1.0-Perl) AND RSA-MD diff --git a/specs/p/perl-Digest-SHA/perl-Digest-SHA.spec b/specs/p/perl-Digest-SHA/perl-Digest-SHA.spec index 55b5813ab74..cc04cbca780 100644 --- a/specs/p/perl-Digest-SHA/perl-Digest-SHA.spec +++ b/specs/p/perl-Digest-SHA/perl-Digest-SHA.spec @@ -13,7 +13,7 @@ Name: perl-Digest-SHA Epoch: 1 Version: 6.04 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Perl extension for SHA-1/224/256/384/512 License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Digest-SHA diff --git a/specs/p/perl-Digest-SHA1/perl-Digest-SHA1.spec b/specs/p/perl-Digest-SHA1/perl-Digest-SHA1.spec index 3912f2253a9..38108a3b30e 100644 --- a/specs/p/perl-Digest-SHA1/perl-Digest-SHA1.spec +++ b/specs/p/perl-Digest-SHA1/perl-Digest-SHA1.spec @@ -3,7 +3,7 @@ Name: perl-Digest-SHA1 Version: 2.13 -Release: 49%{?dist} +Release: 49%{?dist} Summary: Digest-SHA1 Perl module License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Digest-SHA3/perl-Digest-SHA3.spec b/specs/p/perl-Digest-SHA3/perl-Digest-SHA3.spec index 13da8af6371..947af297be6 100644 --- a/specs/p/perl-Digest-SHA3/perl-Digest-SHA3.spec +++ b/specs/p/perl-Digest-SHA3/perl-Digest-SHA3.spec @@ -3,7 +3,7 @@ Name: perl-Digest-SHA3 Version: 1.05 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Perl extension for SHA-3 License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Digest-SHA3 diff --git a/specs/p/perl-Digest/perl-Digest.spec b/specs/p/perl-Digest/perl-Digest.spec index 09be59fa33f..6775c13ac84 100644 --- a/specs/p/perl-Digest/perl-Digest.spec +++ b/specs/p/perl-Digest/perl-Digest.spec @@ -3,7 +3,7 @@ Name: perl-Digest Version: 1.20 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Modules that calculate message digests License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Digest diff --git a/specs/p/perl-Dist-CheckConflicts/perl-Dist-CheckConflicts.spec b/specs/p/perl-Dist-CheckConflicts/perl-Dist-CheckConflicts.spec index 47154bc97c3..0c3079e7aae 100644 --- a/specs/p/perl-Dist-CheckConflicts/perl-Dist-CheckConflicts.spec +++ b/specs/p/perl-Dist-CheckConflicts/perl-Dist-CheckConflicts.spec @@ -10,7 +10,7 @@ Name: perl-Dist-CheckConflicts Version: 0.11 -Release: 34%{?dist} +Release: 34%{?dist} Summary: Declare version conflicts for your dist License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Dist-CheckConflicts diff --git a/specs/p/perl-DynaLoader-Functions/perl-DynaLoader-Functions.spec b/specs/p/perl-DynaLoader-Functions/perl-DynaLoader-Functions.spec index 3b3359e990b..b10beac7f4a 100644 --- a/specs/p/perl-DynaLoader-Functions/perl-DynaLoader-Functions.spec +++ b/specs/p/perl-DynaLoader-Functions/perl-DynaLoader-Functions.spec @@ -12,7 +12,7 @@ Name: perl-DynaLoader-Functions Version: 0.004 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Deconstructed dynamic C library loading License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/DynaLoader-Functions diff --git a/specs/p/perl-EV/perl-EV.spec b/specs/p/perl-EV/perl-EV.spec index 94414fee079..f08a613c510 100644 --- a/specs/p/perl-EV/perl-EV.spec +++ b/specs/p/perl-EV/perl-EV.spec @@ -3,7 +3,7 @@ Name: perl-EV Version: 4.34 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Wrapper for the libev high-performance event loop library # Note: The source archive includes a libev/ folder which contents are licensed diff --git a/specs/p/perl-Email-Date-Format/perl-Email-Date-Format.spec b/specs/p/perl-Email-Date-Format/perl-Email-Date-Format.spec index 96ecccd94a0..7b279a85992 100644 --- a/specs/p/perl-Email-Date-Format/perl-Email-Date-Format.spec +++ b/specs/p/perl-Email-Date-Format/perl-Email-Date-Format.spec @@ -3,7 +3,7 @@ Name: perl-Email-Date-Format Version: 1.008 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Produce RFC 2822 date strings License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Email-Date-Format diff --git a/specs/p/perl-Email-Valid/perl-Email-Valid.spec b/specs/p/perl-Email-Valid/perl-Email-Valid.spec index f79146fe3d6..8ee0e056ccc 100644 --- a/specs/p/perl-Email-Valid/perl-Email-Valid.spec +++ b/specs/p/perl-Email-Valid/perl-Email-Valid.spec @@ -3,7 +3,7 @@ Name: perl-Email-Valid Version: 1.204 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Check validity of internet email address License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Email-Valid diff --git a/specs/p/perl-Encode-EUCJPASCII/perl-Encode-EUCJPASCII.spec b/specs/p/perl-Encode-EUCJPASCII/perl-Encode-EUCJPASCII.spec index 0c8f47f06cb..ab5958b6317 100644 --- a/specs/p/perl-Encode-EUCJPASCII/perl-Encode-EUCJPASCII.spec +++ b/specs/p/perl-Encode-EUCJPASCII/perl-Encode-EUCJPASCII.spec @@ -3,7 +3,7 @@ Name: perl-Encode-EUCJPASCII Version: 0.03 -Release: 49%{?dist} +Release: 49%{?dist} Summary: EucJP-ascii - An eucJP-open mapping License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Encode-EUCJPASCII diff --git a/specs/p/perl-Encode-Locale/perl-Encode-Locale.spec b/specs/p/perl-Encode-Locale/perl-Encode-Locale.spec index 5e3f9630cdb..3885fbcb259 100644 --- a/specs/p/perl-Encode-Locale/perl-Encode-Locale.spec +++ b/specs/p/perl-Encode-Locale/perl-Encode-Locale.spec @@ -3,7 +3,7 @@ Name: perl-Encode-Locale Version: 1.05 -Release: 33%{?dist} +Release: 33%{?dist} Summary: Determine the locale encoding License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Encode-Locale diff --git a/specs/p/perl-Encode/perl-Encode.spec b/specs/p/perl-Encode/perl-Encode.spec index 5b2da58ebf2..216288587d6 100644 --- a/specs/p/perl-Encode/perl-Encode.spec +++ b/specs/p/perl-Encode/perl-Encode.spec @@ -11,7 +11,7 @@ Version: %{cpan_version} # perl-encoding sub-package has independent version which does not change # often and consecutive builds would clash on perl-encoding NEVRA. This is the # same case as in perl.spec. -Release: 521%{?dist} +Release: 521%{?dist} Summary: Character encodings in Perl # ucm: license in this repository can be ingored based on # https://gitlab.com/fedora/legal/fedora-license-data/-/issues/30#note_1435176617 diff --git a/specs/p/perl-Env-Sanctify/perl-Env-Sanctify.spec b/specs/p/perl-Env-Sanctify/perl-Env-Sanctify.spec index 10426f5123e..ffe970c3060 100644 --- a/specs/p/perl-Env-Sanctify/perl-Env-Sanctify.spec +++ b/specs/p/perl-Env-Sanctify/perl-Env-Sanctify.spec @@ -4,7 +4,7 @@ Name: perl-Env-Sanctify Summary: Lexically scoped sanctification of %%ENV Version: 1.12 -Release: 35%{?dist} +Release: 35%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Env-Sanctify Source0: https://cpan.metacpan.org/modules/by-module/Env/Env-Sanctify-%{version}.tar.gz diff --git a/specs/p/perl-Env/perl-Env.spec b/specs/p/perl-Env/perl-Env.spec index 125a8aec16f..cbc303a041b 100644 --- a/specs/p/perl-Env/perl-Env.spec +++ b/specs/p/perl-Env/perl-Env.spec @@ -4,7 +4,7 @@ %global base_version 1.04 Name: perl-Env Version: 1.06 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Perl module that imports environment variables as scalars or arrays License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Env diff --git a/specs/p/perl-Error/perl-Error.spec b/specs/p/perl-Error/perl-Error.spec index f79f0b90816..16d1f802615 100644 --- a/specs/p/perl-Error/perl-Error.spec +++ b/specs/p/perl-Error/perl-Error.spec @@ -4,7 +4,7 @@ Name: perl-Error Epoch: 1 Version: 0.17030 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Error/exception handling in an OO-ish way License: (GPL-1.0-or-later OR Artistic-1.0-Perl) AND X11 URL: https://metacpan.org/release/Error diff --git a/specs/p/perl-Eval-Closure/perl-Eval-Closure.spec b/specs/p/perl-Eval-Closure/perl-Eval-Closure.spec index 1f7c9f6f4b7..2a258ff9a4d 100644 --- a/specs/p/perl-Eval-Closure/perl-Eval-Closure.spec +++ b/specs/p/perl-Eval-Closure/perl-Eval-Closure.spec @@ -10,7 +10,7 @@ Name: perl-Eval-Closure Version: 0.14 -Release: 27%{?dist} +Release: 27%{?dist} Summary: Safely and cleanly create closures via string eval License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Eval-Closure diff --git a/specs/p/perl-Event/perl-Event.spec b/specs/p/perl-Event/perl-Event.spec index 1f337cc7665..0b1469b06f2 100644 --- a/specs/p/perl-Event/perl-Event.spec +++ b/specs/p/perl-Event/perl-Event.spec @@ -3,7 +3,7 @@ Name: perl-Event Version: 1.28 -Release: 17%{?dist} +Release: 17%{?dist} Summary: Event loop processing License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Event diff --git a/specs/p/perl-Exception-Base/perl-Exception-Base.spec b/specs/p/perl-Exception-Base/perl-Exception-Base.spec index c0bbadb2b29..e38b74a37f0 100644 --- a/specs/p/perl-Exception-Base/perl-Exception-Base.spec +++ b/specs/p/perl-Exception-Base/perl-Exception-Base.spec @@ -3,7 +3,7 @@ Name: perl-Exception-Base Version: 0.2501 -Release: 31%{?dist} +Release: 31%{?dist} Summary: Lightweight exceptions License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Exception-Base diff --git a/specs/p/perl-Exception-Class/perl-Exception-Class.spec b/specs/p/perl-Exception-Class/perl-Exception-Class.spec index 8ecac08bf20..769da4c6c13 100644 --- a/specs/p/perl-Exception-Class/perl-Exception-Class.spec +++ b/specs/p/perl-Exception-Class/perl-Exception-Class.spec @@ -3,7 +3,7 @@ Name: perl-Exception-Class Version: 1.45 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Module that allows you to declare real exception classes in Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Exception-Class diff --git a/specs/p/perl-Expect/perl-Expect.spec b/specs/p/perl-Expect/perl-Expect.spec index 802acc746d9..267aad6c4a9 100644 --- a/specs/p/perl-Expect/perl-Expect.spec +++ b/specs/p/perl-Expect/perl-Expect.spec @@ -3,7 +3,7 @@ Name: perl-Expect Version: 1.38 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Expect for Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Expect diff --git a/specs/p/perl-Exporter-Tidy/perl-Exporter-Tidy.spec b/specs/p/perl-Exporter-Tidy/perl-Exporter-Tidy.spec index da909c1cf99..81d894fbb67 100644 --- a/specs/p/perl-Exporter-Tidy/perl-Exporter-Tidy.spec +++ b/specs/p/perl-Exporter-Tidy/perl-Exporter-Tidy.spec @@ -3,7 +3,7 @@ Name: perl-Exporter-Tidy Version: 0.09 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Another way of exporting symbols License: any-OSI-perl-modules URL: https://metacpan.org/release/Exporter-Tidy diff --git a/specs/p/perl-Exporter-Tiny/perl-Exporter-Tiny.spec b/specs/p/perl-Exporter-Tiny/perl-Exporter-Tiny.spec index 059e4438323..150b1009935 100644 --- a/specs/p/perl-Exporter-Tiny/perl-Exporter-Tiny.spec +++ b/specs/p/perl-Exporter-Tiny/perl-Exporter-Tiny.spec @@ -3,7 +3,7 @@ Name: perl-Exporter-Tiny Version: 1.006002 -Release: 10%{?dist} +Release: 10%{?dist} Summary: An exporter with the features of Sub::Exporter but only core dependencies License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://exportertiny.github.io/ diff --git a/specs/p/perl-Exporter/perl-Exporter.spec b/specs/p/perl-Exporter/perl-Exporter.spec index d2e77f0df26..0486d99ce11 100644 --- a/specs/p/perl-Exporter/perl-Exporter.spec +++ b/specs/p/perl-Exporter/perl-Exporter.spec @@ -5,7 +5,7 @@ Name: perl-Exporter Version: 5.79 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Implements default import method for modules License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Exporter diff --git a/specs/p/perl-ExtUtils-CBuilder/perl-ExtUtils-CBuilder.spec b/specs/p/perl-ExtUtils-CBuilder/perl-ExtUtils-CBuilder.spec index 30644732d67..88974af6703 100644 --- a/specs/p/perl-ExtUtils-CBuilder/perl-ExtUtils-CBuilder.spec +++ b/specs/p/perl-ExtUtils-CBuilder/perl-ExtUtils-CBuilder.spec @@ -8,7 +8,7 @@ Name: perl-ExtUtils-CBuilder Epoch: 1 # Mimic perl.spec Version: 0.280242 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Compile and link C code for Perl modules License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/ExtUtils-CBuilder diff --git a/specs/p/perl-ExtUtils-CChecker/perl-ExtUtils-CChecker.spec b/specs/p/perl-ExtUtils-CChecker/perl-ExtUtils-CChecker.spec index b6cf10c6380..a4ce112246b 100644 --- a/specs/p/perl-ExtUtils-CChecker/perl-ExtUtils-CChecker.spec +++ b/specs/p/perl-ExtUtils-CChecker/perl-ExtUtils-CChecker.spec @@ -3,7 +3,7 @@ Name: perl-ExtUtils-CChecker Version: 0.12 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Configure-time utilities for using C headers, libraries, or OS features License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/ExtUtils-CChecker diff --git a/specs/p/perl-ExtUtils-Config/perl-ExtUtils-Config.spec b/specs/p/perl-ExtUtils-Config/perl-ExtUtils-Config.spec index b6d5546c38e..24cfa1ec5cd 100644 --- a/specs/p/perl-ExtUtils-Config/perl-ExtUtils-Config.spec +++ b/specs/p/perl-ExtUtils-Config/perl-ExtUtils-Config.spec @@ -3,7 +3,7 @@ Name: perl-ExtUtils-Config Version: 0.010 -Release: 4%{?dist} +Release: 4%{?dist} Summary: A wrapper for perl's configuration License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/ExtUtils-Config diff --git a/specs/p/perl-ExtUtils-Depends/perl-ExtUtils-Depends.spec b/specs/p/perl-ExtUtils-Depends/perl-ExtUtils-Depends.spec index c8873cdd147..0e23f07958f 100644 --- a/specs/p/perl-ExtUtils-Depends/perl-ExtUtils-Depends.spec +++ b/specs/p/perl-ExtUtils-Depends/perl-ExtUtils-Depends.spec @@ -3,7 +3,7 @@ Name: perl-ExtUtils-Depends Version: 0.8002 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Easily build XS extensions that depend on XS extensions License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/ExtUtils-Depends diff --git a/specs/p/perl-ExtUtils-HasCompiler/perl-ExtUtils-HasCompiler.spec b/specs/p/perl-ExtUtils-HasCompiler/perl-ExtUtils-HasCompiler.spec index e68a74a04a8..2cca81c84bb 100644 --- a/specs/p/perl-ExtUtils-HasCompiler/perl-ExtUtils-HasCompiler.spec +++ b/specs/p/perl-ExtUtils-HasCompiler/perl-ExtUtils-HasCompiler.spec @@ -3,7 +3,7 @@ Name: perl-ExtUtils-HasCompiler Version: 0.025 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Check for the presence of a compiler License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/ExtUtils-HasCompiler diff --git a/specs/p/perl-ExtUtils-Helpers/perl-ExtUtils-Helpers.spec b/specs/p/perl-ExtUtils-Helpers/perl-ExtUtils-Helpers.spec index 00b623d721f..a9ba21985f4 100644 --- a/specs/p/perl-ExtUtils-Helpers/perl-ExtUtils-Helpers.spec +++ b/specs/p/perl-ExtUtils-Helpers/perl-ExtUtils-Helpers.spec @@ -3,7 +3,7 @@ Name: perl-ExtUtils-Helpers Version: 0.028 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Various portability utilities for module builders License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/ExtUtils-Helpers diff --git a/specs/p/perl-ExtUtils-Install/perl-ExtUtils-Install.spec b/specs/p/perl-ExtUtils-Install/perl-ExtUtils-Install.spec index 542053af67f..f36c502af5b 100644 --- a/specs/p/perl-ExtUtils-Install/perl-ExtUtils-Install.spec +++ b/specs/p/perl-ExtUtils-Install/perl-ExtUtils-Install.spec @@ -3,7 +3,7 @@ Name: perl-ExtUtils-Install Version: 2.22 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Install Perl files from here to there License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/ExtUtils-Install diff --git a/specs/p/perl-ExtUtils-InstallPaths/perl-ExtUtils-InstallPaths.spec b/specs/p/perl-ExtUtils-InstallPaths/perl-ExtUtils-InstallPaths.spec index 55806447ab6..d33887f9c32 100644 --- a/specs/p/perl-ExtUtils-InstallPaths/perl-ExtUtils-InstallPaths.spec +++ b/specs/p/perl-ExtUtils-InstallPaths/perl-ExtUtils-InstallPaths.spec @@ -3,7 +3,7 @@ Name: perl-ExtUtils-InstallPaths Version: 0.015 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Build.PL install path logic made easy License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/ExtUtils-InstallPaths diff --git a/specs/p/perl-ExtUtils-MakeMaker-CPANfile/perl-ExtUtils-MakeMaker-CPANfile.spec b/specs/p/perl-ExtUtils-MakeMaker-CPANfile/perl-ExtUtils-MakeMaker-CPANfile.spec index 8e648b10797..e1dab05b0bd 100644 --- a/specs/p/perl-ExtUtils-MakeMaker-CPANfile/perl-ExtUtils-MakeMaker-CPANfile.spec +++ b/specs/p/perl-ExtUtils-MakeMaker-CPANfile/perl-ExtUtils-MakeMaker-CPANfile.spec @@ -3,7 +3,7 @@ Name: perl-ExtUtils-MakeMaker-CPANfile Version: 0.09 -Release: 22%{?dist} +Release: 22%{?dist} Summary: CPANfile support for ExtUtils::MakeMaker License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/ExtUtils-MakeMaker-CPANfile diff --git a/specs/p/perl-ExtUtils-MakeMaker/perl-ExtUtils-MakeMaker.spec b/specs/p/perl-ExtUtils-MakeMaker/perl-ExtUtils-MakeMaker.spec index 30129b1e52e..2d34b6bd9ab 100644 --- a/specs/p/perl-ExtUtils-MakeMaker/perl-ExtUtils-MakeMaker.spec +++ b/specs/p/perl-ExtUtils-MakeMaker/perl-ExtUtils-MakeMaker.spec @@ -9,7 +9,7 @@ Name: perl-%{cpan_name} Epoch: 2 Version: 7.76 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Create a module Makefile License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/%{cpan_name} diff --git a/specs/p/perl-ExtUtils-Manifest/perl-ExtUtils-Manifest.spec b/specs/p/perl-ExtUtils-Manifest/perl-ExtUtils-Manifest.spec index ce651fbe709..a918b0956e6 100644 --- a/specs/p/perl-ExtUtils-Manifest/perl-ExtUtils-Manifest.spec +++ b/specs/p/perl-ExtUtils-Manifest/perl-ExtUtils-Manifest.spec @@ -4,7 +4,7 @@ Name: perl-ExtUtils-Manifest Epoch: 1 Version: 1.75 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Utilities to write and check a MANIFEST file License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/ExtUtils-Manifest diff --git a/specs/p/perl-ExtUtils-ParseXS/perl-ExtUtils-ParseXS.spec b/specs/p/perl-ExtUtils-ParseXS/perl-ExtUtils-ParseXS.spec index 7662641469a..9c5d18cb645 100644 --- a/specs/p/perl-ExtUtils-ParseXS/perl-ExtUtils-ParseXS.spec +++ b/specs/p/perl-ExtUtils-ParseXS/perl-ExtUtils-ParseXS.spec @@ -6,7 +6,7 @@ Name: perl-ExtUtils-ParseXS # Epoch to compete with perl.spec Epoch: 1 Version: 3.58 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Module and a script for converting Perl XS code into C code License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/ExtUtils-ParseXS diff --git a/specs/p/perl-ExtUtils-PkgConfig/perl-ExtUtils-PkgConfig.spec b/specs/p/perl-ExtUtils-PkgConfig/perl-ExtUtils-PkgConfig.spec index d8bdd671635..fd755d13a5c 100644 --- a/specs/p/perl-ExtUtils-PkgConfig/perl-ExtUtils-PkgConfig.spec +++ b/specs/p/perl-ExtUtils-PkgConfig/perl-ExtUtils-PkgConfig.spec @@ -3,7 +3,7 @@ Name: perl-ExtUtils-PkgConfig Version: 1.16 -Release: 28%{?dist} +Release: 28%{?dist} Summary: Simplistic interface to pkg-config License: LGPL-2.0-or-later URL: https://metacpan.org/release/ExtUtils-PkgConfig diff --git a/specs/p/perl-FCGI-Client/perl-FCGI-Client.spec b/specs/p/perl-FCGI-Client/perl-FCGI-Client.spec index 5d1784a0a99..68c67ac9e42 100644 --- a/specs/p/perl-FCGI-Client/perl-FCGI-Client.spec +++ b/specs/p/perl-FCGI-Client/perl-FCGI-Client.spec @@ -4,7 +4,7 @@ Name: perl-FCGI-Client Summary: Client library for the fastcgi protocol Version: 0.09 -Release: 22%{?dist} +Release: 22%{?dist} # lib/FCGI/Client.pm -> GPL+ or Artistic # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-FCGI/perl-FCGI.spec b/specs/p/perl-FCGI/perl-FCGI.spec index a8dad2b22eb..a62cae21d1e 100644 --- a/specs/p/perl-FCGI/perl-FCGI.spec +++ b/specs/p/perl-FCGI/perl-FCGI.spec @@ -10,7 +10,7 @@ Summary: FastCGI Perl bindings # needed to properly replace/obsolete fcgi-perl Epoch: 1 Version: 0.82 -Release: 18%{?dist} +Release: 18%{?dist} # eg/echo.pl: "See the LICENSE file" # fastcgi.h: "See the LICENSE file" # FCGI.pm: "See the LICENSE file" diff --git a/specs/p/perl-Fedora-VSP/perl-Fedora-VSP.spec b/specs/p/perl-Fedora-VSP/perl-Fedora-VSP.spec index 366971f9824..44e64133099 100644 --- a/specs/p/perl-Fedora-VSP/perl-Fedora-VSP.spec +++ b/specs/p/perl-Fedora-VSP/perl-Fedora-VSP.spec @@ -3,7 +3,7 @@ Name: perl-Fedora-VSP Version: 0.001 -Release: 38%{?dist} +Release: 38%{?dist} Summary: Perl version normalization for RPM License: GPL-3.0-or-later URL: https://ppisar.fedorapeople.org/Fedora-VSP/ diff --git a/specs/p/perl-File-BaseDir/perl-File-BaseDir.spec b/specs/p/perl-File-BaseDir/perl-File-BaseDir.spec index 98c45114cb3..8bc66267bea 100644 --- a/specs/p/perl-File-BaseDir/perl-File-BaseDir.spec +++ b/specs/p/perl-File-BaseDir/perl-File-BaseDir.spec @@ -5,7 +5,7 @@ %{bcond_without perl_File_BaseDir_enables_xdg_user_dirs} Name: perl-File-BaseDir Version: 0.09 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Use the Freedesktop.org base directory specification License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/File-BaseDir diff --git a/specs/p/perl-File-Copy-Recursive-Reduced/perl-File-Copy-Recursive-Reduced.spec b/specs/p/perl-File-Copy-Recursive-Reduced/perl-File-Copy-Recursive-Reduced.spec index 06878cc8a95..e173e22d199 100644 --- a/specs/p/perl-File-Copy-Recursive-Reduced/perl-File-Copy-Recursive-Reduced.spec +++ b/specs/p/perl-File-Copy-Recursive-Reduced/perl-File-Copy-Recursive-Reduced.spec @@ -3,7 +3,7 @@ Name: perl-File-Copy-Recursive-Reduced Version: 0.008 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Recursive copying of files and directories within Perl 5 toolchain License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/File-Copy-Recursive-Reduced diff --git a/specs/p/perl-File-Copy-Recursive/perl-File-Copy-Recursive.spec b/specs/p/perl-File-Copy-Recursive/perl-File-Copy-Recursive.spec index 2f1e961b86d..4b771c76afb 100644 --- a/specs/p/perl-File-Copy-Recursive/perl-File-Copy-Recursive.spec +++ b/specs/p/perl-File-Copy-Recursive/perl-File-Copy-Recursive.spec @@ -3,7 +3,7 @@ Name: perl-File-Copy-Recursive Version: 0.45 -Release: 19%{?dist} +Release: 19%{?dist} Summary: Extension for recursively copying files and directories License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/File-Copy-Recursive diff --git a/specs/p/perl-File-DesktopEntry/perl-File-DesktopEntry.spec b/specs/p/perl-File-DesktopEntry/perl-File-DesktopEntry.spec index 2dfe98f5308..905e9aef496 100644 --- a/specs/p/perl-File-DesktopEntry/perl-File-DesktopEntry.spec +++ b/specs/p/perl-File-DesktopEntry/perl-File-DesktopEntry.spec @@ -10,7 +10,7 @@ Name: perl-File-DesktopEntry Version: 0.22 -Release: 30%{?dist} +Release: 30%{?dist} Summary: Object to handle .desktop files License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/File-DesktopEntry diff --git a/specs/p/perl-File-DirList/perl-File-DirList.spec b/specs/p/perl-File-DirList/perl-File-DirList.spec index a02a4cbc30f..4de97cbf874 100644 --- a/specs/p/perl-File-DirList/perl-File-DirList.spec +++ b/specs/p/perl-File-DirList/perl-File-DirList.spec @@ -3,7 +3,7 @@ Name: perl-File-DirList Version: 0.05 -Release: 15%{?dist} +Release: 15%{?dist} Summary: Provide a sorted list of directory content # Standard perl license, see README.md License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-File-FcntlLock/perl-File-FcntlLock.spec b/specs/p/perl-File-FcntlLock/perl-File-FcntlLock.spec index f01fba33263..a8e7a055aa5 100644 --- a/specs/p/perl-File-FcntlLock/perl-File-FcntlLock.spec +++ b/specs/p/perl-File-FcntlLock/perl-File-FcntlLock.spec @@ -3,7 +3,7 @@ Name: perl-File-FcntlLock Version: 0.22 -Release: 37%{?dist} +Release: 37%{?dist} Summary: Perl module for file locking with fcntl # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-File-Fetch/perl-File-Fetch.spec b/specs/p/perl-File-Fetch/perl-File-Fetch.spec index a4111ab6357..c816611713d 100644 --- a/specs/p/perl-File-Fetch/perl-File-Fetch.spec +++ b/specs/p/perl-File-Fetch/perl-File-Fetch.spec @@ -3,7 +3,7 @@ Name: perl-File-Fetch Version: 1.08 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Generic file fetching mechanism License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/File-Fetch diff --git a/specs/p/perl-File-Find-Iterator/perl-File-Find-Iterator.spec b/specs/p/perl-File-Find-Iterator/perl-File-Find-Iterator.spec index 367d7186f61..24ead296aa2 100644 --- a/specs/p/perl-File-Find-Iterator/perl-File-Find-Iterator.spec +++ b/specs/p/perl-File-Find-Iterator/perl-File-Find-Iterator.spec @@ -3,7 +3,7 @@ Name: perl-File-Find-Iterator Version: 0.4 -Release: 42%{?dist} +Release: 42%{?dist} Summary: Iterator interface for search files License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/File-Find-Iterator diff --git a/specs/p/perl-File-Find-Object-Rule/perl-File-Find-Object-Rule.spec b/specs/p/perl-File-Find-Object-Rule/perl-File-Find-Object-Rule.spec index b4d5d093844..44d7dcfe467 100644 --- a/specs/p/perl-File-Find-Object-Rule/perl-File-Find-Object-Rule.spec +++ b/specs/p/perl-File-Find-Object-Rule/perl-File-Find-Object-Rule.spec @@ -9,7 +9,7 @@ Name: perl-File-Find-Object-Rule Version: 0.0313 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Alternative interface to File::Find::Object License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/File-Find-Object-Rule diff --git a/specs/p/perl-File-Find-Object/perl-File-Find-Object.spec b/specs/p/perl-File-Find-Object/perl-File-Find-Object.spec index 264a4b38b53..88fc8e97083 100644 --- a/specs/p/perl-File-Find-Object/perl-File-Find-Object.spec +++ b/specs/p/perl-File-Find-Object/perl-File-Find-Object.spec @@ -3,7 +3,7 @@ Name: perl-File-Find-Object Version: 0.3.9 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Object oriented File::Find replacement License: GPL-2.0-or-later OR Artistic-2.0 URL: https://metacpan.org/release/File-Find-Object diff --git a/specs/p/perl-File-Find-Rule-Perl/perl-File-Find-Rule-Perl.spec b/specs/p/perl-File-Find-Rule-Perl/perl-File-Find-Rule-Perl.spec index 01b6d087acd..1737c8fc749 100644 --- a/specs/p/perl-File-Find-Rule-Perl/perl-File-Find-Rule-Perl.spec +++ b/specs/p/perl-File-Find-Rule-Perl/perl-File-Find-Rule-Perl.spec @@ -3,7 +3,7 @@ Name: perl-File-Find-Rule-Perl Version: 1.16 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Common rules for searching for Perl things License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/File-Find-Rule-Perl diff --git a/specs/p/perl-File-Find-Rule/perl-File-Find-Rule.spec b/specs/p/perl-File-Find-Rule/perl-File-Find-Rule.spec index 5306880616c..cc26cd57436 100644 --- a/specs/p/perl-File-Find-Rule/perl-File-Find-Rule.spec +++ b/specs/p/perl-File-Find-Rule/perl-File-Find-Rule.spec @@ -3,7 +3,7 @@ Name: perl-File-Find-Rule Version: 0.35 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Perl module implementing an alternative interface to File::Find License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/File-Find-Rule diff --git a/specs/p/perl-File-HomeDir/perl-File-HomeDir.spec b/specs/p/perl-File-HomeDir/perl-File-HomeDir.spec index 67cedc69ed8..cfab86f4e58 100644 --- a/specs/p/perl-File-HomeDir/perl-File-HomeDir.spec +++ b/specs/p/perl-File-HomeDir/perl-File-HomeDir.spec @@ -3,7 +3,7 @@ Name: perl-File-HomeDir Version: 1.006 -Release: 16%{?dist} +Release: 16%{?dist} Summary: Find your home and other directories on any platform License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/File-HomeDir diff --git a/specs/p/perl-File-Listing/perl-File-Listing.spec b/specs/p/perl-File-Listing/perl-File-Listing.spec index 24fde9871fb..49ded39e54b 100644 --- a/specs/p/perl-File-Listing/perl-File-Listing.spec +++ b/specs/p/perl-File-Listing/perl-File-Listing.spec @@ -3,7 +3,7 @@ Name: perl-File-Listing Version: 6.16 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Parse directory listing License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/File-Listing diff --git a/specs/p/perl-File-MimeInfo/perl-File-MimeInfo.spec b/specs/p/perl-File-MimeInfo/perl-File-MimeInfo.spec index a145a451f33..5c3bb66d172 100644 --- a/specs/p/perl-File-MimeInfo/perl-File-MimeInfo.spec +++ b/specs/p/perl-File-MimeInfo/perl-File-MimeInfo.spec @@ -14,7 +14,7 @@ Name: perl-File-MimeInfo Version: 0.35 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Determine file type and open application License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/File-MimeInfo diff --git a/specs/p/perl-File-Path/perl-File-Path.spec b/specs/p/perl-File-Path/perl-File-Path.spec index 5e967b88f38..5f81665d7bd 100644 --- a/specs/p/perl-File-Path/perl-File-Path.spec +++ b/specs/p/perl-File-Path/perl-File-Path.spec @@ -3,7 +3,7 @@ Name: perl-File-Path Version: 2.18 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Create or remove directory trees License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/File-Path diff --git a/specs/p/perl-File-ReadBackwards/perl-File-ReadBackwards.spec b/specs/p/perl-File-ReadBackwards/perl-File-ReadBackwards.spec index 1ed4dac2d8d..0cc959fae6c 100644 --- a/specs/p/perl-File-ReadBackwards/perl-File-ReadBackwards.spec +++ b/specs/p/perl-File-ReadBackwards/perl-File-ReadBackwards.spec @@ -3,7 +3,7 @@ Name: perl-File-ReadBackwards Version: 1.06 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Read a file backwards by lines License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/File-ReadBackwards diff --git a/specs/p/perl-File-Remove/perl-File-Remove.spec b/specs/p/perl-File-Remove/perl-File-Remove.spec index f374382ce8c..d08bff18221 100644 --- a/specs/p/perl-File-Remove/perl-File-Remove.spec +++ b/specs/p/perl-File-Remove/perl-File-Remove.spec @@ -3,7 +3,7 @@ Name: perl-File-Remove Version: 1.61 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Convenience module for removing files and directories License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-File-ShareDir-Install/perl-File-ShareDir-Install.spec b/specs/p/perl-File-ShareDir-Install/perl-File-ShareDir-Install.spec index 5959dabcbfa..deffe1a09e5 100644 --- a/specs/p/perl-File-ShareDir-Install/perl-File-ShareDir-Install.spec +++ b/specs/p/perl-File-ShareDir-Install/perl-File-ShareDir-Install.spec @@ -3,7 +3,7 @@ Name: perl-File-ShareDir-Install Version: 0.14 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Install shared files License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/File-ShareDir-Install diff --git a/specs/p/perl-File-ShareDir/perl-File-ShareDir.spec b/specs/p/perl-File-ShareDir/perl-File-ShareDir.spec index 3d929eb018d..3a58e3214d2 100644 --- a/specs/p/perl-File-ShareDir/perl-File-ShareDir.spec +++ b/specs/p/perl-File-ShareDir/perl-File-ShareDir.spec @@ -6,7 +6,7 @@ Name: perl-File-ShareDir Version: 1.118 -Release: 15%{?dist} +Release: 15%{?dist} Summary: Locate per-dist and per-module shared files # other files: GPL+ or Artistic ## not in binary packages diff --git a/specs/p/perl-File-Slurp/perl-File-Slurp.spec b/specs/p/perl-File-Slurp/perl-File-Slurp.spec index 42a557f96c7..a6d01ffc570 100644 --- a/specs/p/perl-File-Slurp/perl-File-Slurp.spec +++ b/specs/p/perl-File-Slurp/perl-File-Slurp.spec @@ -3,7 +3,7 @@ Name: perl-File-Slurp Version: 9999.32 -Release: 17%{?dist} +Release: 17%{?dist} Summary: Efficient Reading/Writing of Complete Files License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/File-Slurp diff --git a/specs/p/perl-File-Slurper/perl-File-Slurper.spec b/specs/p/perl-File-Slurper/perl-File-Slurper.spec index 61c6a7d0f57..27c8a6d5914 100644 --- a/specs/p/perl-File-Slurper/perl-File-Slurper.spec +++ b/specs/p/perl-File-Slurper/perl-File-Slurper.spec @@ -3,7 +3,7 @@ Name: perl-File-Slurper Version: 0.014 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Simple, sane and efficient module to slurp a file License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/File-Slurper diff --git a/specs/p/perl-File-Temp/perl-File-Temp.spec b/specs/p/perl-File-Temp/perl-File-Temp.spec index 13e8f499370..8e7aa7497ac 100644 --- a/specs/p/perl-File-Temp/perl-File-Temp.spec +++ b/specs/p/perl-File-Temp/perl-File-Temp.spec @@ -6,7 +6,7 @@ Name: perl-File-Temp Epoch: 1 # Normalized version, compete with perl.spec Version: 0.231.100 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Return name and handle of a temporary file safely License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/File-Temp diff --git a/specs/p/perl-File-Touch/perl-File-Touch.spec b/specs/p/perl-File-Touch/perl-File-Touch.spec index e13bcd886dd..c5da6e0c815 100644 --- a/specs/p/perl-File-Touch/perl-File-Touch.spec +++ b/specs/p/perl-File-Touch/perl-File-Touch.spec @@ -3,7 +3,7 @@ Name: perl-File-Touch Version: 0.12 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Update access, modification timestamps, creating nonexistent files License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/File-Touch diff --git a/specs/p/perl-File-TreeCreate/perl-File-TreeCreate.spec b/specs/p/perl-File-TreeCreate/perl-File-TreeCreate.spec index 4491acd27de..3b08275c40f 100644 --- a/specs/p/perl-File-TreeCreate/perl-File-TreeCreate.spec +++ b/specs/p/perl-File-TreeCreate/perl-File-TreeCreate.spec @@ -3,7 +3,7 @@ Name: perl-File-TreeCreate Version: 0.0.1 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Recursively create a directory tree License: MIT URL: https://metacpan.org/release/File-TreeCreate diff --git a/specs/p/perl-File-Type/perl-File-Type.spec b/specs/p/perl-File-Type/perl-File-Type.spec index fc64f3fc1db..cf89eb48503 100644 --- a/specs/p/perl-File-Type/perl-File-Type.spec +++ b/specs/p/perl-File-Type/perl-File-Type.spec @@ -3,7 +3,7 @@ Name: perl-File-Type Version: 0.22 -Release: 52%{?dist} +Release: 52%{?dist} Summary: Determine file type using magic License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/File-Type diff --git a/specs/p/perl-File-Which/perl-File-Which.spec b/specs/p/perl-File-Which/perl-File-Which.spec index 68405786951..44eb9347448 100644 --- a/specs/p/perl-File-Which/perl-File-Which.spec +++ b/specs/p/perl-File-Which/perl-File-Which.spec @@ -3,7 +3,7 @@ Name: perl-File-Which Version: 1.27 -Release: 15%{?dist} +Release: 15%{?dist} Summary: Portable implementation of the 'which' utility License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/File-Which diff --git a/specs/p/perl-File-chdir/perl-File-chdir.spec b/specs/p/perl-File-chdir/perl-File-chdir.spec index 4d6696ebe50..f1dd84b4149 100644 --- a/specs/p/perl-File-chdir/perl-File-chdir.spec +++ b/specs/p/perl-File-chdir/perl-File-chdir.spec @@ -3,7 +3,7 @@ Name: perl-File-chdir Version: 0.1011 -Release: 29%{?dist} +Release: 29%{?dist} Summary: A more sensible way to change directories License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/File-chdir diff --git a/specs/p/perl-File-pushd/perl-File-pushd.spec b/specs/p/perl-File-pushd/perl-File-pushd.spec index d57ca27280b..660a4efc0c7 100644 --- a/specs/p/perl-File-pushd/perl-File-pushd.spec +++ b/specs/p/perl-File-pushd/perl-File-pushd.spec @@ -3,7 +3,7 @@ Name: perl-File-pushd Version: 1.016 -Release: 24%{?dist} +Release: 24%{?dist} Summary: Change directory temporarily for a limited scope License: Apache-2.0 URL: https://metacpan.org/release/File-pushd diff --git a/specs/p/perl-FileHandle-Fmode/perl-FileHandle-Fmode.spec b/specs/p/perl-FileHandle-Fmode/perl-FileHandle-Fmode.spec index 02fa8db501c..71b29d808e3 100644 --- a/specs/p/perl-FileHandle-Fmode/perl-FileHandle-Fmode.spec +++ b/specs/p/perl-FileHandle-Fmode/perl-FileHandle-Fmode.spec @@ -3,7 +3,7 @@ Name: perl-FileHandle-Fmode Version: 0.15 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Determine whether a filehandle is opened for reading, writing, or both License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/FileHandle-Fmode diff --git a/specs/p/perl-Filter-Simple/perl-Filter-Simple.spec b/specs/p/perl-Filter-Simple/perl-Filter-Simple.spec index 272802e7c74..7a180dabfd7 100644 --- a/specs/p/perl-Filter-Simple/perl-Filter-Simple.spec +++ b/specs/p/perl-Filter-Simple/perl-Filter-Simple.spec @@ -4,7 +4,7 @@ %global base_version 0.94 Name: perl-Filter-Simple Version: 0.96 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Simplified Perl source filtering License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Filter-Simple diff --git a/specs/p/perl-Filter/perl-Filter.spec b/specs/p/perl-Filter/perl-Filter.spec index 4be85d36d68..9f451d7f39d 100644 --- a/specs/p/perl-Filter/perl-Filter.spec +++ b/specs/p/perl-Filter/perl-Filter.spec @@ -11,7 +11,7 @@ Name: perl-Filter Epoch: 2 Version: 1.64 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Perl source filters License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Filter diff --git a/specs/p/perl-Font-AFM/perl-Font-AFM.spec b/specs/p/perl-Font-AFM/perl-Font-AFM.spec index f9d2a837741..f9315ad69fe 100644 --- a/specs/p/perl-Font-AFM/perl-Font-AFM.spec +++ b/specs/p/perl-Font-AFM/perl-Font-AFM.spec @@ -3,7 +3,7 @@ Name: perl-Font-AFM Version: 1.20 -Release: 52%{?dist} +Release: 52%{?dist} Summary: Perl interface to Adobe Font Metrics files License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Font-TTF/perl-Font-TTF.spec b/specs/p/perl-Font-TTF/perl-Font-TTF.spec index 1ed3a678de9..262f8e45131 100644 --- a/specs/p/perl-Font-TTF/perl-Font-TTF.spec +++ b/specs/p/perl-Font-TTF/perl-Font-TTF.spec @@ -3,7 +3,7 @@ Name: perl-Font-TTF Version: 1.06 -Release: 28%{?dist} +Release: 28%{?dist} Summary: Perl library for modifying TTF font files # other files: Artistic 2.0 ## not in binary packages diff --git a/specs/p/perl-FreezeThaw/perl-FreezeThaw.spec b/specs/p/perl-FreezeThaw/perl-FreezeThaw.spec index a8429aa48ca..e79a1c8489a 100644 --- a/specs/p/perl-FreezeThaw/perl-FreezeThaw.spec +++ b/specs/p/perl-FreezeThaw/perl-FreezeThaw.spec @@ -3,7 +3,7 @@ Name: perl-FreezeThaw Version: 0.5001 -Release: 48%{?dist} +Release: 48%{?dist} Summary: Convert Perl structures to strings and back License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/FreezeThaw diff --git a/specs/p/perl-Function-Parameters/perl-Function-Parameters.spec b/specs/p/perl-Function-Parameters/perl-Function-Parameters.spec index 7d0f3e79542..7acf186ade8 100644 --- a/specs/p/perl-Function-Parameters/perl-Function-Parameters.spec +++ b/specs/p/perl-Function-Parameters/perl-Function-Parameters.spec @@ -7,7 +7,7 @@ Name: perl-Function-Parameters %global cpan_version 2.002006 Version: 2.2.6 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Subroutine definitions with parameter lists License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Function-Parameters diff --git a/specs/p/perl-Future-AsyncAwait/perl-Future-AsyncAwait.spec b/specs/p/perl-Future-AsyncAwait/perl-Future-AsyncAwait.spec index 3a2f44ffb68..d3b3b6d4b00 100644 --- a/specs/p/perl-Future-AsyncAwait/perl-Future-AsyncAwait.spec +++ b/specs/p/perl-Future-AsyncAwait/perl-Future-AsyncAwait.spec @@ -17,7 +17,7 @@ Name: perl-Future-AsyncAwait Version: 0.71 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Deferred subroutine syntax for futures License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Future-AsyncAwait diff --git a/specs/p/perl-Future-IO/perl-Future-IO.spec b/specs/p/perl-Future-IO/perl-Future-IO.spec index da63fa6c2a7..95022e1a1d9 100644 --- a/specs/p/perl-Future-IO/perl-Future-IO.spec +++ b/specs/p/perl-Future-IO/perl-Future-IO.spec @@ -3,7 +3,7 @@ Name: perl-Future-IO Version: 0.16 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Future-returning IO core methods License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Future/perl-Future.spec b/specs/p/perl-Future/perl-Future.spec index 6c4b256ad13..b3fb2b087c2 100644 --- a/specs/p/perl-Future/perl-Future.spec +++ b/specs/p/perl-Future/perl-Future.spec @@ -3,7 +3,7 @@ Name: perl-Future Version: 0.51 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Perl object system to represent an operation awaiting completion License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-GD-Barcode/perl-GD-Barcode.spec b/specs/p/perl-GD-Barcode/perl-GD-Barcode.spec index b30f9329e9e..7439f8bebfa 100644 --- a/specs/p/perl-GD-Barcode/perl-GD-Barcode.spec +++ b/specs/p/perl-GD-Barcode/perl-GD-Barcode.spec @@ -13,7 +13,7 @@ Name: perl-GD-Barcode Version: 2.01 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Create barcode image with GD # see Barcode.pm License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-GD/perl-GD.spec b/specs/p/perl-GD/perl-GD.spec index 8c08505247a..e552f51e457 100644 --- a/specs/p/perl-GD/perl-GD.spec +++ b/specs/p/perl-GD/perl-GD.spec @@ -3,7 +3,7 @@ Name: perl-GD Version: 2.83 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Perl interface to the GD graphics library License: GPL-1.0-or-later OR Artistic-2.0 URL: https://metacpan.org/release/GD diff --git a/specs/p/perl-GSSAPI/perl-GSSAPI.spec b/specs/p/perl-GSSAPI/perl-GSSAPI.spec index 40a847b4fc6..57d6304f927 100644 --- a/specs/p/perl-GSSAPI/perl-GSSAPI.spec +++ b/specs/p/perl-GSSAPI/perl-GSSAPI.spec @@ -9,7 +9,7 @@ Name: perl-GSSAPI Version: 0.28 -Release: 51%{?dist} +Release: 51%{?dist} Summary: Perl extension providing access to the GSSAPIv2 library License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/GSSAPI diff --git a/specs/p/perl-GTop/perl-GTop.spec b/specs/p/perl-GTop/perl-GTop.spec index f537e2eae7d..7b06602a04d 100644 --- a/specs/p/perl-GTop/perl-GTop.spec +++ b/specs/p/perl-GTop/perl-GTop.spec @@ -3,7 +3,7 @@ Name: perl-GTop Version: 0.18 -Release: 48%{?dist} +Release: 48%{?dist} Summary: Perl interface to libgtop License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/GTop diff --git a/specs/p/perl-Getopt-ArgvFile/perl-Getopt-ArgvFile.spec b/specs/p/perl-Getopt-ArgvFile/perl-Getopt-ArgvFile.spec index 3176b8513f0..f30b6dd5979 100644 --- a/specs/p/perl-Getopt-ArgvFile/perl-Getopt-ArgvFile.spec +++ b/specs/p/perl-Getopt-ArgvFile/perl-Getopt-ArgvFile.spec @@ -3,7 +3,7 @@ Name: perl-Getopt-ArgvFile Version: 1.11 -Release: 47%{?dist} +Release: 47%{?dist} Summary: Interpolates script options from files into @ARGV or another array License: Artistic-2.0 URL: https://metacpan.org/release/Getopt-ArgvFile diff --git a/specs/p/perl-Getopt-Long-Descriptive/perl-Getopt-Long-Descriptive.spec b/specs/p/perl-Getopt-Long-Descriptive/perl-Getopt-Long-Descriptive.spec index 4bb1c6ab432..a34534b98a9 100644 --- a/specs/p/perl-Getopt-Long-Descriptive/perl-Getopt-Long-Descriptive.spec +++ b/specs/p/perl-Getopt-Long-Descriptive/perl-Getopt-Long-Descriptive.spec @@ -4,7 +4,7 @@ Name: perl-Getopt-Long-Descriptive Summary: Getopt::Long with usage text Version: 0.116 -Release: 4%{?dist} +Release: 4%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Getopt-Long-Descriptive Source0: https://cpan.metacpan.org/modules/by-module/Getopt/Getopt-Long-Descriptive-%{version}.tar.gz diff --git a/specs/p/perl-Getopt-Long/perl-Getopt-Long.spec b/specs/p/perl-Getopt-Long/perl-Getopt-Long.spec index e02eec0a972..db31c884658 100644 --- a/specs/p/perl-Getopt-Long/perl-Getopt-Long.spec +++ b/specs/p/perl-Getopt-Long/perl-Getopt-Long.spec @@ -4,7 +4,7 @@ Name: perl-Getopt-Long Epoch: 1 Version: 2.58 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Extended processing of command line options License: GPL-2.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Getopt-Long diff --git a/specs/p/perl-Git-Wrapper/perl-Git-Wrapper.spec b/specs/p/perl-Git-Wrapper/perl-Git-Wrapper.spec index 7bf25f166cb..2003696d2b7 100644 --- a/specs/p/perl-Git-Wrapper/perl-Git-Wrapper.spec +++ b/specs/p/perl-Git-Wrapper/perl-Git-Wrapper.spec @@ -6,7 +6,7 @@ Name: perl-Git-Wrapper Version: 0.048 -Release: 24%{?dist} +Release: 24%{?dist} Summary: Wrap git command-line interface for Perl # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-GitLab-API-v4/perl-GitLab-API-v4.spec b/specs/p/perl-GitLab-API-v4/perl-GitLab-API-v4.spec index e28cd013509..5301ee8ff99 100644 --- a/specs/p/perl-GitLab-API-v4/perl-GitLab-API-v4.spec +++ b/specs/p/perl-GitLab-API-v4/perl-GitLab-API-v4.spec @@ -6,7 +6,7 @@ Name: perl-%{src_name} Version: 0.27 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Complete GitLab API v4 client # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. diff --git a/specs/p/perl-Glib/perl-Glib.spec b/specs/p/perl-Glib/perl-Glib.spec index d8852784690..6faa05374d0 100644 --- a/specs/p/perl-Glib/perl-Glib.spec +++ b/specs/p/perl-Glib/perl-Glib.spec @@ -10,7 +10,7 @@ Name: perl-Glib Version: 1.3294 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Perl interface to GLib License: LGPL-2.1-or-later URL: https://metacpan.org/release/Glib diff --git a/specs/p/perl-GraphViz/perl-GraphViz.spec b/specs/p/perl-GraphViz/perl-GraphViz.spec index 2a80e1fa05f..dee136263ac 100644 --- a/specs/p/perl-GraphViz/perl-GraphViz.spec +++ b/specs/p/perl-GraphViz/perl-GraphViz.spec @@ -6,7 +6,7 @@ Name: perl-GraphViz Version: 2.26 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Interface to the GraphViz graphing tool License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/GraphViz diff --git a/specs/p/perl-Graphics-ColorNamesLite-WWW/perl-Graphics-ColorNamesLite-WWW.spec b/specs/p/perl-Graphics-ColorNamesLite-WWW/perl-Graphics-ColorNamesLite-WWW.spec index 1bd9e921aaa..d2918254aa7 100644 --- a/specs/p/perl-Graphics-ColorNamesLite-WWW/perl-Graphics-ColorNamesLite-WWW.spec +++ b/specs/p/perl-Graphics-ColorNamesLite-WWW/perl-Graphics-ColorNamesLite-WWW.spec @@ -3,7 +3,7 @@ Name: perl-Graphics-ColorNamesLite-WWW Version: 1.14.000 -Release: 16%{?dist} +Release: 16%{?dist} Summary: WWW color names and equivalent RGB values License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Graphics-ColorNamesLite-WWW/ diff --git a/specs/p/perl-Graphics-TIFF/perl-Graphics-TIFF.spec b/specs/p/perl-Graphics-TIFF/perl-Graphics-TIFF.spec index a5be1554c95..e8d6b70028c 100644 --- a/specs/p/perl-Graphics-TIFF/perl-Graphics-TIFF.spec +++ b/specs/p/perl-Graphics-TIFF/perl-Graphics-TIFF.spec @@ -6,7 +6,7 @@ Name: perl-Graphics-TIFF Version: 21 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Perl extension for the LibTIFF library License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Graphics-TIFF diff --git a/specs/p/perl-Guard/perl-Guard.spec b/specs/p/perl-Guard/perl-Guard.spec index 5e5e62d71f1..404a779df63 100644 --- a/specs/p/perl-Guard/perl-Guard.spec +++ b/specs/p/perl-Guard/perl-Guard.spec @@ -3,7 +3,7 @@ Name: perl-Guard Version: 1.023 -Release: 36%{?dist} +Release: 36%{?dist} Summary: Safe cleanup blocks License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Guard diff --git a/specs/p/perl-HTML-Format/perl-HTML-Format.spec b/specs/p/perl-HTML-Format/perl-HTML-Format.spec index 3a9b88839b3..bfaa06aa45e 100644 --- a/specs/p/perl-HTML-Format/perl-HTML-Format.spec +++ b/specs/p/perl-HTML-Format/perl-HTML-Format.spec @@ -5,7 +5,7 @@ Name: perl-HTML-Format Version: 2.16 -Release: 29%{?dist} +Release: 29%{?dist} Summary: HTML formatter modules %if "%{version}" > "2.12" diff --git a/specs/p/perl-HTML-Parser/perl-HTML-Parser.spec b/specs/p/perl-HTML-Parser/perl-HTML-Parser.spec index 482e8e17718..27fac1da459 100644 --- a/specs/p/perl-HTML-Parser/perl-HTML-Parser.spec +++ b/specs/p/perl-HTML-Parser/perl-HTML-Parser.spec @@ -4,7 +4,7 @@ Name: perl-HTML-Parser Summary: Perl module for parsing HTML Version: 3.83 -Release: 5%{?dist} +Release: 5%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl Source0: https://cpan.metacpan.org/authors/id/O/OA/OALDERS/HTML-Parser-%{version}.tar.gz URL: https://metacpan.org/release/HTML-Parser diff --git a/specs/p/perl-HTML-Tagset/perl-HTML-Tagset.spec b/specs/p/perl-HTML-Tagset/perl-HTML-Tagset.spec index 6504a10ffe4..4d07ad7f424 100644 --- a/specs/p/perl-HTML-Tagset/perl-HTML-Tagset.spec +++ b/specs/p/perl-HTML-Tagset/perl-HTML-Tagset.spec @@ -9,7 +9,7 @@ Name: perl-HTML-Tagset Version: 3.24 -Release: 5%{?dist} +Release: 5%{?dist} Summary: HTML::Tagset - data tables useful in parsing HTML License: Artistic-2.0 URL: https://metacpan.org/release/HTML-Tagset diff --git a/specs/p/perl-HTML-Template/perl-HTML-Template.spec b/specs/p/perl-HTML-Template/perl-HTML-Template.spec index 3b94a1c27af..a473fd76aff 100644 --- a/specs/p/perl-HTML-Template/perl-HTML-Template.spec +++ b/specs/p/perl-HTML-Template/perl-HTML-Template.spec @@ -3,7 +3,7 @@ Name: perl-HTML-Template Version: 2.97 -Release: 28%{?dist} +Release: 28%{?dist} Summary: Perl module to use HTML Templates # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-HTML-Tree/perl-HTML-Tree.spec b/specs/p/perl-HTML-Tree/perl-HTML-Tree.spec index a0ce75f552d..256195cb817 100644 --- a/specs/p/perl-HTML-Tree/perl-HTML-Tree.spec +++ b/specs/p/perl-HTML-Tree/perl-HTML-Tree.spec @@ -11,7 +11,7 @@ Name: perl-HTML-Tree Epoch: 1 Version: 5.07 -Release: 30%{?dist} +Release: 30%{?dist} Summary: HTML tree handling modules for Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/HTML-Tree diff --git a/specs/p/perl-HTTP-CookieJar/perl-HTTP-CookieJar.spec b/specs/p/perl-HTTP-CookieJar/perl-HTTP-CookieJar.spec index 952fcf3e69c..f049d3707f7 100644 --- a/specs/p/perl-HTTP-CookieJar/perl-HTTP-CookieJar.spec +++ b/specs/p/perl-HTTP-CookieJar/perl-HTTP-CookieJar.spec @@ -3,7 +3,7 @@ Name: perl-HTTP-CookieJar Version: 0.014 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Minimalist HTTP user agent cookie jar License: Apache-2.0 URL: https://metacpan.org/release/HTTP-CookieJar diff --git a/specs/p/perl-HTTP-Cookies/perl-HTTP-Cookies.spec b/specs/p/perl-HTTP-Cookies/perl-HTTP-Cookies.spec index 46c2635ec16..aec451eeaab 100644 --- a/specs/p/perl-HTTP-Cookies/perl-HTTP-Cookies.spec +++ b/specs/p/perl-HTTP-Cookies/perl-HTTP-Cookies.spec @@ -3,7 +3,7 @@ Name: perl-HTTP-Cookies Version: 6.11 -Release: 7%{?dist} +Release: 7%{?dist} Summary: HTTP cookie jars License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/HTTP-Cookies diff --git a/specs/p/perl-HTTP-Daemon/perl-HTTP-Daemon.spec b/specs/p/perl-HTTP-Daemon/perl-HTTP-Daemon.spec index 74432a1bcab..435ad5dd3f4 100644 --- a/specs/p/perl-HTTP-Daemon/perl-HTTP-Daemon.spec +++ b/specs/p/perl-HTTP-Daemon/perl-HTTP-Daemon.spec @@ -6,7 +6,7 @@ Name: perl-HTTP-Daemon Version: 6.16 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Simple HTTP server class License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/HTTP-Daemon diff --git a/specs/p/perl-HTTP-Date/perl-HTTP-Date.spec b/specs/p/perl-HTTP-Date/perl-HTTP-Date.spec index 0984d6fae8f..13a4bf020e5 100644 --- a/specs/p/perl-HTTP-Date/perl-HTTP-Date.spec +++ b/specs/p/perl-HTTP-Date/perl-HTTP-Date.spec @@ -3,7 +3,7 @@ Name: perl-HTTP-Date Version: 6.06 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Date conversion routines License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/HTTP-Date diff --git a/specs/p/perl-HTTP-Message/perl-HTTP-Message.spec b/specs/p/perl-HTTP-Message/perl-HTTP-Message.spec index 229847fb08e..6fab6c44413 100644 --- a/specs/p/perl-HTTP-Message/perl-HTTP-Message.spec +++ b/specs/p/perl-HTTP-Message/perl-HTTP-Message.spec @@ -3,7 +3,7 @@ Name: perl-HTTP-Message Version: 7.01 -Release: 2%{?dist} +Release: 2%{?dist} Summary: HTTP style message # CONTRIBUTING.md: CC0-1.0 # other files: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-HTTP-Negotiate/perl-HTTP-Negotiate.spec b/specs/p/perl-HTTP-Negotiate/perl-HTTP-Negotiate.spec index 51674dc4333..0eb47e4b950 100644 --- a/specs/p/perl-HTTP-Negotiate/perl-HTTP-Negotiate.spec +++ b/specs/p/perl-HTTP-Negotiate/perl-HTTP-Negotiate.spec @@ -3,7 +3,7 @@ Name: perl-HTTP-Negotiate Version: 6.01 -Release: 42%{?dist} +Release: 42%{?dist} Summary: Choose a variant to serve License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/HTTP-Negotiate diff --git a/specs/p/perl-HTTP-Tiny-Multipart/perl-HTTP-Tiny-Multipart.spec b/specs/p/perl-HTTP-Tiny-Multipart/perl-HTTP-Tiny-Multipart.spec index ae1e671e590..4d369da4b90 100644 --- a/specs/p/perl-HTTP-Tiny-Multipart/perl-HTTP-Tiny-Multipart.spec +++ b/specs/p/perl-HTTP-Tiny-Multipart/perl-HTTP-Tiny-Multipart.spec @@ -3,7 +3,7 @@ Name: perl-HTTP-Tiny-Multipart Version: 0.08 -Release: 21%{?dist} +Release: 21%{?dist} Summary: Add post_multipart to HTTP::Tiny License: Artistic-2.0 diff --git a/specs/p/perl-HTTP-Tiny/perl-HTTP-Tiny.spec b/specs/p/perl-HTTP-Tiny/perl-HTTP-Tiny.spec index 437b3d731f4..432306e364b 100644 --- a/specs/p/perl-HTTP-Tiny/perl-HTTP-Tiny.spec +++ b/specs/p/perl-HTTP-Tiny/perl-HTTP-Tiny.spec @@ -6,7 +6,7 @@ Name: perl-HTTP-Tiny Version: 0.090 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Small, simple, correct HTTP/1.1 client License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/HTTP-Tiny diff --git a/specs/p/perl-Hash-Flatten/perl-Hash-Flatten.spec b/specs/p/perl-Hash-Flatten/perl-Hash-Flatten.spec index a270da2dc22..fd3a316202d 100644 --- a/specs/p/perl-Hash-Flatten/perl-Hash-Flatten.spec +++ b/specs/p/perl-Hash-Flatten/perl-Hash-Flatten.spec @@ -3,7 +3,7 @@ Name: perl-Hash-Flatten Version: 1.19 -Release: 44%{?dist} +Release: 44%{?dist} Summary: Flatten/unflatten complex data hashes License: GPL-2.0-only URL: https://metacpan.org/release/Hash-Flatten diff --git a/specs/p/perl-Hash-Merge/perl-Hash-Merge.spec b/specs/p/perl-Hash-Merge/perl-Hash-Merge.spec index 4f8ac760233..551962c0614 100644 --- a/specs/p/perl-Hash-Merge/perl-Hash-Merge.spec +++ b/specs/p/perl-Hash-Merge/perl-Hash-Merge.spec @@ -3,7 +3,7 @@ Name: perl-Hash-Merge Version: 0.302 -Release: 16%{?dist} +Release: 16%{?dist} Summary: Merges arbitrary deep hashes into a single hash License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Hash-Merge diff --git a/specs/p/perl-Hash-Util-FieldHash-Compat/perl-Hash-Util-FieldHash-Compat.spec b/specs/p/perl-Hash-Util-FieldHash-Compat/perl-Hash-Util-FieldHash-Compat.spec index 089a7d0e9cb..59d87ee35cb 100644 --- a/specs/p/perl-Hash-Util-FieldHash-Compat/perl-Hash-Util-FieldHash-Compat.spec +++ b/specs/p/perl-Hash-Util-FieldHash-Compat/perl-Hash-Util-FieldHash-Compat.spec @@ -3,7 +3,7 @@ Name: perl-Hash-Util-FieldHash-Compat Version: 0.11 -Release: 29%{?dist} +Release: 29%{?dist} Summary: Use Hash::Util::FieldHash or ties, depending on availability License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Hash-Util-FieldHash-Compat diff --git a/specs/p/perl-Heap/perl-Heap.spec b/specs/p/perl-Heap/perl-Heap.spec index fca1e5a8162..908cdc77ec2 100644 --- a/specs/p/perl-Heap/perl-Heap.spec +++ b/specs/p/perl-Heap/perl-Heap.spec @@ -3,7 +3,7 @@ Name: perl-Heap Version: 0.80 -Release: 49%{?dist} +Release: 49%{?dist} Summary: Perl extension for keeping data partially sorted License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Hook-LexWrap/perl-Hook-LexWrap.spec b/specs/p/perl-Hook-LexWrap/perl-Hook-LexWrap.spec index 811386c7d72..020a3c76cdc 100644 --- a/specs/p/perl-Hook-LexWrap/perl-Hook-LexWrap.spec +++ b/specs/p/perl-Hook-LexWrap/perl-Hook-LexWrap.spec @@ -3,7 +3,7 @@ Name: perl-Hook-LexWrap Version: 0.26 -Release: 26%{?dist} +Release: 26%{?dist} Summary: Lexically scoped subroutine wrappers License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Hook-LexWrap diff --git a/specs/p/perl-IO-AIO/perl-IO-AIO.spec b/specs/p/perl-IO-AIO/perl-IO-AIO.spec index e43d69220d7..b0d405e1713 100644 --- a/specs/p/perl-IO-AIO/perl-IO-AIO.spec +++ b/specs/p/perl-IO-AIO/perl-IO-AIO.spec @@ -10,7 +10,7 @@ Provides: perl(IO::AIO) = %{upstream_version}%{extraversion} Name: perl-IO-AIO Version: %{upstream_version}%{extraversion} -Release: 7%{?dist} +Release: 7%{?dist} Summary: Asynchronous Input/Output License: GPL-2.0-or-later URL: https://metacpan.org/release/IO-AIO diff --git a/specs/p/perl-IO-All/perl-IO-All.spec b/specs/p/perl-IO-All/perl-IO-All.spec index 25f10b15a45..d58747f49c3 100644 --- a/specs/p/perl-IO-All/perl-IO-All.spec +++ b/specs/p/perl-IO-All/perl-IO-All.spec @@ -18,7 +18,7 @@ Name: perl-IO-All Version: 0.87 -Release: 26%{?dist} +Release: 26%{?dist} Summary: IO::All Perl module License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/IO-All diff --git a/specs/p/perl-IO-Async/perl-IO-Async.spec b/specs/p/perl-IO-Async/perl-IO-Async.spec index 0156269278f..4a77f886a08 100644 --- a/specs/p/perl-IO-Async/perl-IO-Async.spec +++ b/specs/p/perl-IO-Async/perl-IO-Async.spec @@ -3,7 +3,7 @@ Name: perl-IO-Async Version: 0.804 -Release: 4%{?dist} +Release: 4%{?dist} Summary: A collection of modules that implement asynchronous filehandle IO License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-IO-CaptureOutput/perl-IO-CaptureOutput.spec b/specs/p/perl-IO-CaptureOutput/perl-IO-CaptureOutput.spec index e6484c1ce8d..3bba141bd04 100644 --- a/specs/p/perl-IO-CaptureOutput/perl-IO-CaptureOutput.spec +++ b/specs/p/perl-IO-CaptureOutput/perl-IO-CaptureOutput.spec @@ -10,7 +10,7 @@ Name: perl-IO-CaptureOutput Version: 1.1105 -Release: 18%{?dist} +Release: 18%{?dist} Summary: Capture STDOUT/STDERR from sub-processes and XS/C modules License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/IO-CaptureOutput diff --git a/specs/p/perl-IO-Compress-Brotli/perl-IO-Compress-Brotli.spec b/specs/p/perl-IO-Compress-Brotli/perl-IO-Compress-Brotli.spec index 5810a3f09ed..8fe5c9bf84e 100644 --- a/specs/p/perl-IO-Compress-Brotli/perl-IO-Compress-Brotli.spec +++ b/specs/p/perl-IO-Compress-Brotli/perl-IO-Compress-Brotli.spec @@ -4,7 +4,7 @@ %global cpan_version 0.019 Name: perl-IO-Compress-Brotli Version: %{cpan_version}000 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Perl bindings for Brotli compression License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/IO-Compress-Brotli/ diff --git a/specs/p/perl-IO-Compress-Lzma/perl-IO-Compress-Lzma.spec b/specs/p/perl-IO-Compress-Lzma/perl-IO-Compress-Lzma.spec index bcf52ffddd8..8997477f6db 100644 --- a/specs/p/perl-IO-Compress-Lzma/perl-IO-Compress-Lzma.spec +++ b/specs/p/perl-IO-Compress-Lzma/perl-IO-Compress-Lzma.spec @@ -10,7 +10,7 @@ Name: perl-IO-Compress-Lzma Version: 2.213 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Read and write lzma compressed data License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/IO-Compress-Lzma diff --git a/specs/p/perl-IO-Compress/perl-IO-Compress.spec b/specs/p/perl-IO-Compress/perl-IO-Compress.spec index 214de5ed30a..8d61778eb18 100644 --- a/specs/p/perl-IO-Compress/perl-IO-Compress.spec +++ b/specs/p/perl-IO-Compress/perl-IO-Compress.spec @@ -17,7 +17,7 @@ Name: perl-IO-Compress Version: 2.213 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Read and write compressed data License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/IO-Compress diff --git a/specs/p/perl-IO-HTML/perl-IO-HTML.spec b/specs/p/perl-IO-HTML/perl-IO-HTML.spec index 4b42033200c..e3147bdc303 100644 --- a/specs/p/perl-IO-HTML/perl-IO-HTML.spec +++ b/specs/p/perl-IO-HTML/perl-IO-HTML.spec @@ -3,7 +3,7 @@ Name: perl-IO-HTML Version: 1.004 -Release: 16%{?dist} +Release: 16%{?dist} Summary: Open an HTML file with automatic character set detection # examples/detect-encoding.pl: Public Domain License: (GPL-1.0-or-later OR Artistic-1.0-Perl) AND LicenseRef-Fedora-Public-Domain diff --git a/specs/p/perl-IO-Multiplex/perl-IO-Multiplex.spec b/specs/p/perl-IO-Multiplex/perl-IO-Multiplex.spec index 61d2c17d4a3..bfad6328c96 100644 --- a/specs/p/perl-IO-Multiplex/perl-IO-Multiplex.spec +++ b/specs/p/perl-IO-Multiplex/perl-IO-Multiplex.spec @@ -4,7 +4,7 @@ Summary: Manage IO on many file handles Name: perl-IO-Multiplex Version: 1.16 -Release: 31%{?dist} +Release: 31%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/IO-Multiplex Source0: https://cpan.metacpan.org/modules/by-module/IO/IO-Multiplex-%{version}.tar.gz diff --git a/specs/p/perl-IO-Pipely/perl-IO-Pipely.spec b/specs/p/perl-IO-Pipely/perl-IO-Pipely.spec index d228a1d2a64..7a85255c1ec 100644 --- a/specs/p/perl-IO-Pipely/perl-IO-Pipely.spec +++ b/specs/p/perl-IO-Pipely/perl-IO-Pipely.spec @@ -3,7 +3,7 @@ Name: perl-IO-Pipely Version: 0.006 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Portably create pipe() or pipe-like handles, one way or another License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/IO-Pipely diff --git a/specs/p/perl-IO-Prompter/perl-IO-Prompter.spec b/specs/p/perl-IO-Prompter/perl-IO-Prompter.spec index c0cf7307f0b..95773f4e8c5 100644 --- a/specs/p/perl-IO-Prompter/perl-IO-Prompter.spec +++ b/specs/p/perl-IO-Prompter/perl-IO-Prompter.spec @@ -3,7 +3,7 @@ Name: perl-IO-Prompter Version: 0.005004 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Prompt for input, read it, clean it, return it # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. diff --git a/specs/p/perl-IO-SessionData/perl-IO-SessionData.spec b/specs/p/perl-IO-SessionData/perl-IO-SessionData.spec index 1424155122c..f5cfabb3f76 100644 --- a/specs/p/perl-IO-SessionData/perl-IO-SessionData.spec +++ b/specs/p/perl-IO-SessionData/perl-IO-SessionData.spec @@ -3,7 +3,7 @@ Name: perl-IO-SessionData Version: 1.03 -Release: 33%{?dist} +Release: 33%{?dist} Summary: IO::SessionData and IO::SessionSet modules License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/IO-SessionData diff --git a/specs/p/perl-IO-Socket-INET6/perl-IO-Socket-INET6.spec b/specs/p/perl-IO-Socket-INET6/perl-IO-Socket-INET6.spec index 887a942faf7..88463d3ccb1 100644 --- a/specs/p/perl-IO-Socket-INET6/perl-IO-Socket-INET6.spec +++ b/specs/p/perl-IO-Socket-INET6/perl-IO-Socket-INET6.spec @@ -9,7 +9,7 @@ Name: perl-IO-Socket-INET6 Version: 2.73 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Perl Object interface for AF_INET|AF_INET6 domain sockets License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/IO-Socket-INET6 diff --git a/specs/p/perl-IO-Socket-IP/perl-IO-Socket-IP.spec b/specs/p/perl-IO-Socket-IP/perl-IO-Socket-IP.spec index 072561f1067..e6f9ba07dc3 100644 --- a/specs/p/perl-IO-Socket-IP/perl-IO-Socket-IP.spec +++ b/specs/p/perl-IO-Socket-IP/perl-IO-Socket-IP.spec @@ -10,7 +10,7 @@ Name: perl-IO-Socket-IP Version: 0.43 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Drop-in replacement for IO::Socket::INET supporting both IPv4 and IPv6 License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/IO-Socket-IP diff --git a/specs/p/perl-IO-Socket-SSL/perl-IO-Socket-SSL.spec b/specs/p/perl-IO-Socket-SSL/perl-IO-Socket-SSL.spec index 6afd3193007..e7a1bec54c9 100644 --- a/specs/p/perl-IO-Socket-SSL/perl-IO-Socket-SSL.spec +++ b/specs/p/perl-IO-Socket-SSL/perl-IO-Socket-SSL.spec @@ -11,7 +11,7 @@ Name: perl-IO-Socket-SSL Version: 2.095 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Perl library for transparent SSL License: (GPL-1.0-or-later OR Artistic-1.0-Perl) AND MPL-2.0 URL: https://metacpan.org/release/IO-Socket-SSL diff --git a/specs/p/perl-IO-String/perl-IO-String.spec b/specs/p/perl-IO-String/perl-IO-String.spec index e0d5d50fa96..d2a99e38aed 100644 --- a/specs/p/perl-IO-String/perl-IO-String.spec +++ b/specs/p/perl-IO-String/perl-IO-String.spec @@ -3,7 +3,7 @@ Name: perl-IO-String Version: 1.08 -Release: 54%{?dist} +Release: 54%{?dist} Summary: Emulate file interface for in-core strings License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/IO-String diff --git a/specs/p/perl-IO-Tty/perl-IO-Tty.spec b/specs/p/perl-IO-Tty/perl-IO-Tty.spec index bbb57a7f1ce..34881f85da9 100644 --- a/specs/p/perl-IO-Tty/perl-IO-Tty.spec +++ b/specs/p/perl-IO-Tty/perl-IO-Tty.spec @@ -3,7 +3,7 @@ Name: perl-IO-Tty Version: 1.20 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Perl interface to pseudo tty's License: (GPL-1.0-or-later OR Artistic-1.0-Perl) AND BSD-2-Clause URL: https://metacpan.org/release/IO-Tty diff --git a/specs/p/perl-IO-Zlib/perl-IO-Zlib.spec b/specs/p/perl-IO-Zlib/perl-IO-Zlib.spec index 472ed77dd79..5b594a19be0 100644 --- a/specs/p/perl-IO-Zlib/perl-IO-Zlib.spec +++ b/specs/p/perl-IO-Zlib/perl-IO-Zlib.spec @@ -5,7 +5,7 @@ Name: perl-IO-Zlib # To compete with perl.spec Epoch: 1 Version: 1.15 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Perl IO:: style interface to Compress::Zlib License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/IO-Zlib diff --git a/specs/p/perl-IO-stringy/perl-IO-stringy.spec b/specs/p/perl-IO-stringy/perl-IO-stringy.spec index 6b36c1bc654..19ad1b7b0c4 100644 --- a/specs/p/perl-IO-stringy/perl-IO-stringy.spec +++ b/specs/p/perl-IO-stringy/perl-IO-stringy.spec @@ -4,7 +4,7 @@ Summary: I/O on in-core objects like strings and arrays for Perl Name: perl-IO-stringy Version: 2.113 -Release: 18%{?dist} +Release: 18%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/IO-stringy Source0: https://cpan.metacpan.org/modules/by-module/IO/IO-Stringy-%{version}.tar.gz diff --git a/specs/p/perl-IPC-Cmd/perl-IPC-Cmd.spec b/specs/p/perl-IPC-Cmd/perl-IPC-Cmd.spec index b9d6c22b377..368d66f9874 100644 --- a/specs/p/perl-IPC-Cmd/perl-IPC-Cmd.spec +++ b/specs/p/perl-IPC-Cmd/perl-IPC-Cmd.spec @@ -8,7 +8,7 @@ Name: perl-IPC-Cmd # Epoch to compete with perl.spec Epoch: 2 Version: 1.04 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Finding and running system commands made easy License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/IPC-Cmd diff --git a/specs/p/perl-IPC-Run/perl-IPC-Run.spec b/specs/p/perl-IPC-Run/perl-IPC-Run.spec index b718123ee32..57c20043e89 100644 --- a/specs/p/perl-IPC-Run/perl-IPC-Run.spec +++ b/specs/p/perl-IPC-Run/perl-IPC-Run.spec @@ -6,7 +6,7 @@ Name: perl-IPC-Run Version: 20250809.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Perl module for interacting with child processes # the rest: GPL+ or Artistic # The Win32* modules are not part of the binary RPM package diff --git a/specs/p/perl-IPC-Run3/perl-IPC-Run3.spec b/specs/p/perl-IPC-Run3/perl-IPC-Run3.spec index b1393afe5f6..e088fca24be 100644 --- a/specs/p/perl-IPC-Run3/perl-IPC-Run3.spec +++ b/specs/p/perl-IPC-Run3/perl-IPC-Run3.spec @@ -3,7 +3,7 @@ Name: perl-IPC-Run3 Version: 0.049 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Run a subprocess in batch mode License: GPL-1.0-or-later OR Artistic-1.0-Perl OR BSD-2-Clause URL: https://metacpan.org/release/IPC-Run3 diff --git a/specs/p/perl-IPC-ShareLite/perl-IPC-ShareLite.spec b/specs/p/perl-IPC-ShareLite/perl-IPC-ShareLite.spec index 5a342167c9a..75a822d9f5d 100644 --- a/specs/p/perl-IPC-ShareLite/perl-IPC-ShareLite.spec +++ b/specs/p/perl-IPC-ShareLite/perl-IPC-ShareLite.spec @@ -3,7 +3,7 @@ Name: perl-IPC-ShareLite Version: 0.17 -Release: 51%{?dist} +Release: 51%{?dist} Summary: Lightweight interface to shared memory License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/IPC-ShareLite diff --git a/specs/p/perl-IPC-SharedCache/perl-IPC-SharedCache.spec b/specs/p/perl-IPC-SharedCache/perl-IPC-SharedCache.spec index 8f15116e641..2f6122c8f52 100644 --- a/specs/p/perl-IPC-SharedCache/perl-IPC-SharedCache.spec +++ b/specs/p/perl-IPC-SharedCache/perl-IPC-SharedCache.spec @@ -3,7 +3,7 @@ Name: perl-IPC-SharedCache Version: 1.3 -Release: 58%{?dist} +Release: 58%{?dist} Summary: Perl module to manage a cache in SysV IPC shared memory # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later diff --git a/specs/p/perl-IPC-SysV/perl-IPC-SysV.spec b/specs/p/perl-IPC-SysV/perl-IPC-SysV.spec index 868cd4971a8..16ba357e4ec 100644 --- a/specs/p/perl-IPC-SysV/perl-IPC-SysV.spec +++ b/specs/p/perl-IPC-SysV/perl-IPC-SysV.spec @@ -10,7 +10,7 @@ Name: perl-IPC-SysV Version: 2.09 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Object interface to System V IPC License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/IPC-SysV diff --git a/specs/p/perl-IPC-System-Simple/perl-IPC-System-Simple.spec b/specs/p/perl-IPC-System-Simple/perl-IPC-System-Simple.spec index 74c81bab294..8d016bdde46 100644 --- a/specs/p/perl-IPC-System-Simple/perl-IPC-System-Simple.spec +++ b/specs/p/perl-IPC-System-Simple/perl-IPC-System-Simple.spec @@ -10,7 +10,7 @@ Name: perl-IPC-System-Simple Version: 1.30 -Release: 17%{?dist} +Release: 17%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl Summary: Run commands simply, with detailed diagnostics URL: https://metacpan.org/release/IPC-System-Simple diff --git a/specs/p/perl-Image-Base/perl-Image-Base.spec b/specs/p/perl-Image-Base/perl-Image-Base.spec index db09b4c733e..1de9266eeb8 100644 --- a/specs/p/perl-Image-Base/perl-Image-Base.spec +++ b/specs/p/perl-Image-Base/perl-Image-Base.spec @@ -3,7 +3,7 @@ Name: perl-Image-Base Version: 1.17 -Release: 33%{?dist} +Release: 33%{?dist} Summary: Base class for loading, manipulating and saving images in Perl # Automatically converted from old format: LGPLv2+ - review is highly recommended. diff --git a/specs/p/perl-Image-Info/perl-Image-Info.spec b/specs/p/perl-Image-Info/perl-Image-Info.spec index 9ea144ba280..05ad50dc584 100644 --- a/specs/p/perl-Image-Info/perl-Image-Info.spec +++ b/specs/p/perl-Image-Info/perl-Image-Info.spec @@ -3,7 +3,7 @@ Name: perl-Image-Info Version: 1.45 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Image meta information extraction module for Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Image-Info diff --git a/specs/p/perl-Image-Size/perl-Image-Size.spec b/specs/p/perl-Image-Size/perl-Image-Size.spec index c4924f44fa5..aaee438a3d2 100644 --- a/specs/p/perl-Image-Size/perl-Image-Size.spec +++ b/specs/p/perl-Image-Size/perl-Image-Size.spec @@ -9,7 +9,7 @@ Name: perl-Image-Size Version: 3.300 -Release: 34%{?dist} +Release: 34%{?dist} Summary: Determine the size of images in several common formats in Perl # Automatically converted from old format: LGPLv2 or Artistic 2.0 - review is highly recommended. License: LicenseRef-Callaway-LGPLv2 OR Artistic-2.0 diff --git a/specs/p/perl-Image-Xbm/perl-Image-Xbm.spec b/specs/p/perl-Image-Xbm/perl-Image-Xbm.spec index 9484a24c92e..f1ecacac514 100644 --- a/specs/p/perl-Image-Xbm/perl-Image-Xbm.spec +++ b/specs/p/perl-Image-Xbm/perl-Image-Xbm.spec @@ -3,7 +3,7 @@ Name: perl-Image-Xbm Version: 1.11 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Load, create, manipulate and save xbm image files in Perl # t/xbm.t : GNU General Public License # t/xbm-badfile.t : Perl 5 License diff --git a/specs/p/perl-Image-Xpm/perl-Image-Xpm.spec b/specs/p/perl-Image-Xpm/perl-Image-Xpm.spec index 7b9ed93eff0..aa62ca8e2eb 100644 --- a/specs/p/perl-Image-Xpm/perl-Image-Xpm.spec +++ b/specs/p/perl-Image-Xpm/perl-Image-Xpm.spec @@ -3,7 +3,7 @@ Name: perl-Image-Xpm Version: 1.13 -Release: 28%{?dist} +Release: 28%{?dist} Summary: Load, create, manipulate and save xpm image files in Perl License: GPL-1.0-or-later URL: https://metacpan.org/release/Image-Xpm diff --git a/specs/p/perl-Import-Into/perl-Import-Into.spec b/specs/p/perl-Import-Into/perl-Import-Into.spec index 033b7d5f72b..25dc100cd55 100644 --- a/specs/p/perl-Import-Into/perl-Import-Into.spec +++ b/specs/p/perl-Import-Into/perl-Import-Into.spec @@ -3,7 +3,7 @@ Name: perl-Import-Into Version: 1.002005 -Release: 30%{?dist} +Release: 30%{?dist} Summary: Import packages into other packages License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Import-Into diff --git a/specs/p/perl-Inline-C/perl-Inline-C.spec b/specs/p/perl-Inline-C/perl-Inline-C.spec index 249a35ea9a1..0487adfe1cf 100644 --- a/specs/p/perl-Inline-C/perl-Inline-C.spec +++ b/specs/p/perl-Inline-C/perl-Inline-C.spec @@ -6,7 +6,7 @@ Name: perl-Inline-C Version: 0.82 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Write Perl subroutines in C License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Inline-C diff --git a/specs/p/perl-Inline-Files/perl-Inline-Files.spec b/specs/p/perl-Inline-Files/perl-Inline-Files.spec index fc40f7385db..e572a841e23 100644 --- a/specs/p/perl-Inline-Files/perl-Inline-Files.spec +++ b/specs/p/perl-Inline-Files/perl-Inline-Files.spec @@ -3,7 +3,7 @@ Name: perl-Inline-Files Version: 0.71 -Release: 21%{?dist} +Release: 21%{?dist} Summary: Allows for multiple inline files in a single Perl file License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Inline-Files diff --git a/specs/p/perl-Inline/perl-Inline.spec b/specs/p/perl-Inline/perl-Inline.spec index 424843086c8..b82e1e4aa54 100644 --- a/specs/p/perl-Inline/perl-Inline.spec +++ b/specs/p/perl-Inline/perl-Inline.spec @@ -6,7 +6,7 @@ Name: perl-Inline Version: 0.87 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Inline Perl module License: GPL-1.0-or-later OR Artistic-1.0-Perl Url: https://metacpan.org/release/Inline diff --git a/specs/p/perl-JSON-Color/perl-JSON-Color.spec b/specs/p/perl-JSON-Color/perl-JSON-Color.spec index fffbba25224..5de642e8bb1 100644 --- a/specs/p/perl-JSON-Color/perl-JSON-Color.spec +++ b/specs/p/perl-JSON-Color/perl-JSON-Color.spec @@ -3,7 +3,7 @@ Name: perl-JSON-Color Version: 0.134 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Encode to colored JSON License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/JSON-Color/ diff --git a/specs/p/perl-JSON-MaybeXS/perl-JSON-MaybeXS.spec b/specs/p/perl-JSON-MaybeXS/perl-JSON-MaybeXS.spec index d698c53e3f5..ae1722c3a9f 100644 --- a/specs/p/perl-JSON-MaybeXS/perl-JSON-MaybeXS.spec +++ b/specs/p/perl-JSON-MaybeXS/perl-JSON-MaybeXS.spec @@ -12,7 +12,7 @@ Name: perl-JSON-MaybeXS Summary: Use Cpanel::JSON::XS with a fallback to JSON::XS and JSON::PP Version: 1.004008 -Release: 5%{?dist} +Release: 5%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/JSON-MaybeXS Source0: https://cpan.metacpan.org/modules/by-module/JSON/JSON-MaybeXS-%{version}.tar.gz diff --git a/specs/p/perl-JSON-PP/perl-JSON-PP.spec b/specs/p/perl-JSON-PP/perl-JSON-PP.spec index 2248039d86c..e16dcb7471c 100644 --- a/specs/p/perl-JSON-PP/perl-JSON-PP.spec +++ b/specs/p/perl-JSON-PP/perl-JSON-PP.spec @@ -7,7 +7,7 @@ Name: perl-JSON-PP Epoch: 1 Version: 4.16 -Release: 523%{?dist} +Release: 523%{?dist} Summary: JSON::XS compatible pure-Perl module License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/JSON-PP diff --git a/specs/p/perl-JSON-XS/perl-JSON-XS.spec b/specs/p/perl-JSON-XS/perl-JSON-XS.spec index f51a4456675..11130e18e61 100644 --- a/specs/p/perl-JSON-XS/perl-JSON-XS.spec +++ b/specs/p/perl-JSON-XS/perl-JSON-XS.spec @@ -5,7 +5,7 @@ Name: perl-JSON-XS Summary: JSON serializing/de-serializing, done correctly and fast Epoch: 1 Version: 4.04 -Release: 2%{?dist} +Release: 2%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/JSON-XS Source0: https://cpan.metacpan.org/modules/by-module/JSON/JSON-XS-%{version}.tar.gz diff --git a/specs/p/perl-JSON/perl-JSON.spec b/specs/p/perl-JSON/perl-JSON.spec index f7ea1c8b69c..794341479db 100644 --- a/specs/p/perl-JSON/perl-JSON.spec +++ b/specs/p/perl-JSON/perl-JSON.spec @@ -4,7 +4,7 @@ Name: perl-JSON Summary: Parse and convert to JSON (JavaScript Object Notation) Version: 4.10 -Release: 9%{?dist} +Release: 9%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/JSON Source0: https://cpan.metacpan.org/modules/by-module/JSON/JSON-%{version}.tar.gz diff --git a/specs/p/perl-LDAP/perl-LDAP.spec b/specs/p/perl-LDAP/perl-LDAP.spec index 1dba7edfd63..c263f3c933e 100644 --- a/specs/p/perl-LDAP/perl-LDAP.spec +++ b/specs/p/perl-LDAP/perl-LDAP.spec @@ -13,7 +13,7 @@ Name: perl-LDAP Version: 0.68 -Release: 17%{?dist} +Release: 17%{?dist} Epoch: 1 Summary: LDAP Perl module License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-LWP-MediaTypes/perl-LWP-MediaTypes.spec b/specs/p/perl-LWP-MediaTypes/perl-LWP-MediaTypes.spec index da5b10ca329..fd419910aec 100644 --- a/specs/p/perl-LWP-MediaTypes/perl-LWP-MediaTypes.spec +++ b/specs/p/perl-LWP-MediaTypes/perl-LWP-MediaTypes.spec @@ -6,7 +6,7 @@ Name: perl-LWP-MediaTypes Version: 6.04 -Release: 22%{?dist} +Release: 22%{?dist} Summary: Guess media type for a file or a URL # lib/LWP/media.types: CC0-1.0 # lib/LWP/MediaTypes.pm: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-LWP-Protocol-https/perl-LWP-Protocol-https.spec b/specs/p/perl-LWP-Protocol-https/perl-LWP-Protocol-https.spec index 69423704df8..2de98c7356d 100644 --- a/specs/p/perl-LWP-Protocol-https/perl-LWP-Protocol-https.spec +++ b/specs/p/perl-LWP-Protocol-https/perl-LWP-Protocol-https.spec @@ -6,7 +6,7 @@ Name: perl-LWP-Protocol-https Version: 6.14 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Provide HTTPS support for LWP::UserAgent License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/LWP-Protocol-https diff --git a/specs/p/perl-Lexical-SealRequireHints/perl-Lexical-SealRequireHints.spec b/specs/p/perl-Lexical-SealRequireHints/perl-Lexical-SealRequireHints.spec index 565fb227c36..e0ddaf80e6f 100644 --- a/specs/p/perl-Lexical-SealRequireHints/perl-Lexical-SealRequireHints.spec +++ b/specs/p/perl-Lexical-SealRequireHints/perl-Lexical-SealRequireHints.spec @@ -6,7 +6,7 @@ Name: perl-Lexical-SealRequireHints Version: 0.012 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Prevent leakage of lexical hints License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Lexical-SealRequireHints diff --git a/specs/p/perl-Lexical-Var/perl-Lexical-Var.spec b/specs/p/perl-Lexical-Var/perl-Lexical-Var.spec index d77288e63f1..e48696c39a4 100644 --- a/specs/p/perl-Lexical-Var/perl-Lexical-Var.spec +++ b/specs/p/perl-Lexical-Var/perl-Lexical-Var.spec @@ -6,7 +6,7 @@ Name: perl-Lexical-Var Version: 0.010 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Static variables without name space pollution License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Lexical-Var diff --git a/specs/p/perl-Lingua-EN-Inflect/perl-Lingua-EN-Inflect.spec b/specs/p/perl-Lingua-EN-Inflect/perl-Lingua-EN-Inflect.spec index e639cb166bf..b4d9b915ef4 100644 --- a/specs/p/perl-Lingua-EN-Inflect/perl-Lingua-EN-Inflect.spec +++ b/specs/p/perl-Lingua-EN-Inflect/perl-Lingua-EN-Inflect.spec @@ -3,7 +3,7 @@ Name: perl-Lingua-EN-Inflect Version: 1.905 -Release: 15%{?dist} +Release: 15%{?dist} Summary: Convert singular to plural, select "a" or "an" License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Lingua-EN-Inflect diff --git a/specs/p/perl-Lingua-Translit/perl-Lingua-Translit.spec b/specs/p/perl-Lingua-Translit/perl-Lingua-Translit.spec index 5c6fd2bc640..20172473758 100644 --- a/specs/p/perl-Lingua-Translit/perl-Lingua-Translit.spec +++ b/specs/p/perl-Lingua-Translit/perl-Lingua-Translit.spec @@ -3,7 +3,7 @@ Name: perl-Lingua-Translit Version: 0.29 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Transliterates text between writing systems # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Linux-Pid/perl-Linux-Pid.spec b/specs/p/perl-Linux-Pid/perl-Linux-Pid.spec index 0e022c5e962..0e7cb73639f 100644 --- a/specs/p/perl-Linux-Pid/perl-Linux-Pid.spec +++ b/specs/p/perl-Linux-Pid/perl-Linux-Pid.spec @@ -3,7 +3,7 @@ Name: perl-Linux-Pid Version: 0.04 -Release: 61%{?dist} +Release: 61%{?dist} Summary: Get the native PID and the PPID on Linux # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-List-AllUtils/perl-List-AllUtils.spec b/specs/p/perl-List-AllUtils/perl-List-AllUtils.spec index 25a4616598e..4aaa24010e5 100644 --- a/specs/p/perl-List-AllUtils/perl-List-AllUtils.spec +++ b/specs/p/perl-List-AllUtils/perl-List-AllUtils.spec @@ -3,7 +3,7 @@ Name: perl-List-AllUtils Version: 0.19 -Release: 16%{?dist} +Release: 16%{?dist} Summary: Combines List::Util and List::SomeUtils # CODE_OF_CONDUCT.md: CC-BY-4.0 # lib/List/AllUtils.pm: Artistic-2.0 diff --git a/specs/p/perl-List-Compare/perl-List-Compare.spec b/specs/p/perl-List-Compare/perl-List-Compare.spec index d83f2e9b329..4fadb528087 100644 --- a/specs/p/perl-List-Compare/perl-List-Compare.spec +++ b/specs/p/perl-List-Compare/perl-List-Compare.spec @@ -3,7 +3,7 @@ Name: perl-List-Compare Version: 0.55 -Release: 15%{?dist} +Release: 15%{?dist} Summary: Compare elements of two or more lists License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/List-Compare diff --git a/specs/p/perl-List-MoreUtils-XS/perl-List-MoreUtils-XS.spec b/specs/p/perl-List-MoreUtils-XS/perl-List-MoreUtils-XS.spec index c8386b2ed0e..358919d7853 100644 --- a/specs/p/perl-List-MoreUtils-XS/perl-List-MoreUtils-XS.spec +++ b/specs/p/perl-List-MoreUtils-XS/perl-List-MoreUtils-XS.spec @@ -10,7 +10,7 @@ Name: perl-List-MoreUtils-XS Version: 0.430 -Release: 19%{?dist} +Release: 19%{?dist} Summary: Provide compiled List::MoreUtils functions # Code from List-MoreUtils < 0.417 is GPL-1.0-or-later OR Artistic-1.0-Perl # Anything after that is Apache-2.0 diff --git a/specs/p/perl-List-MoreUtils/perl-List-MoreUtils.spec b/specs/p/perl-List-MoreUtils/perl-List-MoreUtils.spec index 69d882e2a68..20d17f2ba94 100644 --- a/specs/p/perl-List-MoreUtils/perl-List-MoreUtils.spec +++ b/specs/p/perl-List-MoreUtils/perl-List-MoreUtils.spec @@ -3,7 +3,7 @@ Name: perl-List-MoreUtils Version: 0.430 -Release: 15%{?dist} +Release: 15%{?dist} Summary: Provide the stuff missing in List::Util # All code present in version 0.416: GPL-1.0-or-later OR Artistic-1.0-Perl # All new code from version 0.417 onwards: Apache-2.0 diff --git a/specs/p/perl-List-SomeUtils/perl-List-SomeUtils.spec b/specs/p/perl-List-SomeUtils/perl-List-SomeUtils.spec index 8bd11c262f8..2c6deba5e63 100644 --- a/specs/p/perl-List-SomeUtils/perl-List-SomeUtils.spec +++ b/specs/p/perl-List-SomeUtils/perl-List-SomeUtils.spec @@ -3,7 +3,7 @@ Name: perl-List-SomeUtils Version: 0.59 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Provide the stuff missing in List::Util License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/List-SomeUtils diff --git a/specs/p/perl-List-UtilsBy/perl-List-UtilsBy.spec b/specs/p/perl-List-UtilsBy/perl-List-UtilsBy.spec index 21305aba055..9e579fa8ec6 100644 --- a/specs/p/perl-List-UtilsBy/perl-List-UtilsBy.spec +++ b/specs/p/perl-List-UtilsBy/perl-List-UtilsBy.spec @@ -3,7 +3,7 @@ Name: perl-List-UtilsBy Version: 0.12 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Higher-order list utility functions License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/List-UtilsBy diff --git a/specs/p/perl-Locale-Codes/perl-Locale-Codes.spec b/specs/p/perl-Locale-Codes/perl-Locale-Codes.spec index 34641d34761..8f9fb4541f7 100644 --- a/specs/p/perl-Locale-Codes/perl-Locale-Codes.spec +++ b/specs/p/perl-Locale-Codes/perl-Locale-Codes.spec @@ -3,7 +3,7 @@ Name: perl-Locale-Codes Version: 3.86 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Distribution of modules to handle locale codes License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Locale-Codes diff --git a/specs/p/perl-Locale-Maketext/perl-Locale-Maketext.spec b/specs/p/perl-Locale-Maketext/perl-Locale-Maketext.spec index e3b3b6c84e4..2922655541f 100644 --- a/specs/p/perl-Locale-Maketext/perl-Locale-Maketext.spec +++ b/specs/p/perl-Locale-Maketext/perl-Locale-Maketext.spec @@ -12,7 +12,7 @@ Name: perl-Locale-Maketext Version: 1.33 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Framework for localization License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Locale-Maketext diff --git a/specs/p/perl-Locale-US/perl-Locale-US.spec b/specs/p/perl-Locale-US/perl-Locale-US.spec index 10bcb297fa6..46f7b5f9d22 100644 --- a/specs/p/perl-Locale-US/perl-Locale-US.spec +++ b/specs/p/perl-Locale-US/perl-Locale-US.spec @@ -3,7 +3,7 @@ Name: perl-Locale-US Version: 3.04 -Release: 31%{?dist} +Release: 31%{?dist} Summary: Two letter codes for state identification in the United States and vice versa License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Locale-US diff --git a/specs/p/perl-Log-Any-Adapter-Screen/perl-Log-Any-Adapter-Screen.spec b/specs/p/perl-Log-Any-Adapter-Screen/perl-Log-Any-Adapter-Screen.spec index d7138b24977..94e999846d1 100644 --- a/specs/p/perl-Log-Any-Adapter-Screen/perl-Log-Any-Adapter-Screen.spec +++ b/specs/p/perl-Log-Any-Adapter-Screen/perl-Log-Any-Adapter-Screen.spec @@ -3,7 +3,7 @@ Name: perl-Log-Any-Adapter-Screen Version: 0.141 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Send logs to screen, with colors and some other features License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Log-Any/perl-Log-Any.spec b/specs/p/perl-Log-Any/perl-Log-Any.spec index 09b0099fc40..0e3aa9e26c9 100644 --- a/specs/p/perl-Log-Any/perl-Log-Any.spec +++ b/specs/p/perl-Log-Any/perl-Log-Any.spec @@ -3,7 +3,7 @@ Name: perl-Log-Any Version: 1.718 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Bringing loggers and listeners together License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Log-Any diff --git a/specs/p/perl-Log-Dispatch-FileRotate/perl-Log-Dispatch-FileRotate.spec b/specs/p/perl-Log-Dispatch-FileRotate/perl-Log-Dispatch-FileRotate.spec index 71fbf7adc43..e07d2897386 100644 --- a/specs/p/perl-Log-Dispatch-FileRotate/perl-Log-Dispatch-FileRotate.spec +++ b/specs/p/perl-Log-Dispatch-FileRotate/perl-Log-Dispatch-FileRotate.spec @@ -3,7 +3,7 @@ Name: perl-Log-Dispatch-FileRotate Version: 1.38 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Log to files that archive/rotate themselves License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Log-Dispatch-FileRotate diff --git a/specs/p/perl-Log-Dispatch/perl-Log-Dispatch.spec b/specs/p/perl-Log-Dispatch/perl-Log-Dispatch.spec index 86af32f893c..800e674907f 100644 --- a/specs/p/perl-Log-Dispatch/perl-Log-Dispatch.spec +++ b/specs/p/perl-Log-Dispatch/perl-Log-Dispatch.spec @@ -19,7 +19,7 @@ Name: perl-Log-Dispatch Version: 2.71 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Dispatches messages to one or more outputs License: Artistic-2.0 URL: https://metacpan.org/release/Log-Dispatch diff --git a/specs/p/perl-Log-Log4perl/perl-Log-Log4perl.spec b/specs/p/perl-Log-Log4perl/perl-Log-Log4perl.spec index 6b99fa864ce..5ef13b39346 100644 --- a/specs/p/perl-Log-Log4perl/perl-Log-Log4perl.spec +++ b/specs/p/perl-Log-Log4perl/perl-Log-Log4perl.spec @@ -5,7 +5,7 @@ Name: perl-Log-Log4perl Version: 1.57 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Log4j implementation for Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Log-Log4perl diff --git a/specs/p/perl-Log-Trace/perl-Log-Trace.spec b/specs/p/perl-Log-Trace/perl-Log-Trace.spec index ac42f174819..25c15524f86 100644 --- a/specs/p/perl-Log-Trace/perl-Log-Trace.spec +++ b/specs/p/perl-Log-Trace/perl-Log-Trace.spec @@ -3,7 +3,7 @@ Name: perl-Log-Trace Version: 1.070 -Release: 48%{?dist} +Release: 48%{?dist} License: GPL-2.0-or-later Summary: A unified approach to tracing Source: https://cpan.metacpan.org/authors/id/B/BB/BBC/Log-Trace-%{version}.tar.gz diff --git a/specs/p/perl-MCE/perl-MCE.spec b/specs/p/perl-MCE/perl-MCE.spec index f5b26b5927a..60af2c63588 100644 --- a/specs/p/perl-MCE/perl-MCE.spec +++ b/specs/p/perl-MCE/perl-MCE.spec @@ -3,7 +3,7 @@ Name: perl-MCE Version: 1.902 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Many-core Engine for Perl providing parallel processing capabilities License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/MCE diff --git a/specs/p/perl-MIME-Base32/perl-MIME-Base32.spec b/specs/p/perl-MIME-Base32/perl-MIME-Base32.spec index ff001e97b75..32dbe75d6ac 100644 --- a/specs/p/perl-MIME-Base32/perl-MIME-Base32.spec +++ b/specs/p/perl-MIME-Base32/perl-MIME-Base32.spec @@ -3,7 +3,7 @@ Name: perl-MIME-Base32 Version: 1.303 -Release: 25%{?dist} +Release: 25%{?dist} Summary: Base32 encoder / decoder # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-MIME-Base64/perl-MIME-Base64.spec b/specs/p/perl-MIME-Base64/perl-MIME-Base64.spec index f567d17a286..7bedc0258d6 100644 --- a/specs/p/perl-MIME-Base64/perl-MIME-Base64.spec +++ b/specs/p/perl-MIME-Base64/perl-MIME-Base64.spec @@ -3,7 +3,7 @@ Name: perl-MIME-Base64 Version: 3.16 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Encoding and decoding of Base64 and quoted-printable strings # Base.xs: (GPL-1.0-or-later OR Artistic-1.0-Perl) AND metamail # Other files: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-MIME-Charset/perl-MIME-Charset.spec b/specs/p/perl-MIME-Charset/perl-MIME-Charset.spec index 5f2ec09b81b..bcb3710e28c 100644 --- a/specs/p/perl-MIME-Charset/perl-MIME-Charset.spec +++ b/specs/p/perl-MIME-Charset/perl-MIME-Charset.spec @@ -3,7 +3,7 @@ Name: perl-MIME-Charset Version: 1.013.1 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Charset Informations for MIME License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/MIME-Charset diff --git a/specs/p/perl-MIME-Types/perl-MIME-Types.spec b/specs/p/perl-MIME-Types/perl-MIME-Types.spec index a623f7d0a12..1d0d6a8d573 100644 --- a/specs/p/perl-MIME-Types/perl-MIME-Types.spec +++ b/specs/p/perl-MIME-Types/perl-MIME-Types.spec @@ -17,7 +17,7 @@ Name: perl-MIME-Types Version: 2.29 -Release: 2%{?dist} +Release: 2%{?dist} Summary: MIME types module for Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/MIME-Types diff --git a/specs/p/perl-MIME-tools/perl-MIME-tools.spec b/specs/p/perl-MIME-tools/perl-MIME-tools.spec index 5928e5d4ab4..db5ed28334a 100644 --- a/specs/p/perl-MIME-tools/perl-MIME-tools.spec +++ b/specs/p/perl-MIME-tools/perl-MIME-tools.spec @@ -4,7 +4,7 @@ Summary: Modules for parsing and creating MIME entities in Perl Name: perl-MIME-tools Version: 5.515 -Release: 5%{?dist} +Release: 5%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/MIME-tools Source0: https://cpan.metacpan.org/modules/by-module/MIME/MIME-tools-%{version}.tar.gz diff --git a/specs/p/perl-MLDBM/perl-MLDBM.spec b/specs/p/perl-MLDBM/perl-MLDBM.spec index b8e6e88a26e..5d661a34885 100644 --- a/specs/p/perl-MLDBM/perl-MLDBM.spec +++ b/specs/p/perl-MLDBM/perl-MLDBM.spec @@ -3,7 +3,7 @@ Name: perl-MLDBM Version: 2.05 -Release: 37%{?dist} +Release: 37%{?dist} Summary: Store multi-level hash structure in single level tied hash License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/MLDBM diff --git a/specs/p/perl-MRO-Compat/perl-MRO-Compat.spec b/specs/p/perl-MRO-Compat/perl-MRO-Compat.spec index ea8dd9d4c30..fc97e75f664 100644 --- a/specs/p/perl-MRO-Compat/perl-MRO-Compat.spec +++ b/specs/p/perl-MRO-Compat/perl-MRO-Compat.spec @@ -3,7 +3,7 @@ Name: perl-MRO-Compat Version: 0.15 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Mro::* interface compatibility for Perls < 5.9.5 License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/MRO-Compat diff --git a/specs/p/perl-Mail-Sender/perl-Mail-Sender.spec b/specs/p/perl-Mail-Sender/perl-Mail-Sender.spec index 6040de4f8cb..53f1dcba1fc 100644 --- a/specs/p/perl-Mail-Sender/perl-Mail-Sender.spec +++ b/specs/p/perl-Mail-Sender/perl-Mail-Sender.spec @@ -6,7 +6,7 @@ Version: 0.903 # I really wish CPAN maintainers would stop fscking around with versions. # we went from 0.900003 to 0.901 Epoch: 1 -Release: 28%{?dist} +Release: 28%{?dist} Summary: Module for sending mails with attachments through an SMTP server # There is also a clause which says that it may not be used for SPAM. diff --git a/specs/p/perl-Mail-Sendmail/perl-Mail-Sendmail.spec b/specs/p/perl-Mail-Sendmail/perl-Mail-Sendmail.spec index fa1f3512e60..2a6d6658743 100644 --- a/specs/p/perl-Mail-Sendmail/perl-Mail-Sendmail.spec +++ b/specs/p/perl-Mail-Sendmail/perl-Mail-Sendmail.spec @@ -3,7 +3,7 @@ Name: perl-Mail-Sendmail Version: 0.82 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Simple platform independent mailer for Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-MailTools/perl-MailTools.spec b/specs/p/perl-MailTools/perl-MailTools.spec index fa9c54c1689..728bc30a829 100644 --- a/specs/p/perl-MailTools/perl-MailTools.spec +++ b/specs/p/perl-MailTools/perl-MailTools.spec @@ -4,7 +4,7 @@ Summary: Various ancient mail-related perl modules Name: perl-MailTools Version: 2.22 -Release: 4%{?dist} +Release: 4%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/MailTools Source0: https://cpan.metacpan.org/authors/id/M/MA/MARKOV/MailTools-%{version}.tar.gz diff --git a/specs/p/perl-Math-Base-Convert/perl-Math-Base-Convert.spec b/specs/p/perl-Math-Base-Convert/perl-Math-Base-Convert.spec index 6d088422bae..3e601e9ffe3 100644 --- a/specs/p/perl-Math-Base-Convert/perl-Math-Base-Convert.spec +++ b/specs/p/perl-Math-Base-Convert/perl-Math-Base-Convert.spec @@ -3,7 +3,7 @@ Name: perl-Math-Base-Convert Version: 0.13 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Very fast base to base conversion License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Math-Base-Convert diff --git a/specs/p/perl-Math-BigInt-FastCalc/perl-Math-BigInt-FastCalc.spec b/specs/p/perl-Math-BigInt-FastCalc/perl-Math-BigInt-FastCalc.spec index be055ff8dba..0c9028ae9ff 100644 --- a/specs/p/perl-Math-BigInt-FastCalc/perl-Math-BigInt-FastCalc.spec +++ b/specs/p/perl-Math-BigInt-FastCalc/perl-Math-BigInt-FastCalc.spec @@ -4,7 +4,7 @@ Name: perl-Math-BigInt-FastCalc %global cpan_version 0.5020 Version: 0.502.000 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Math::BigInt::Calc with some XS for more speed License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Math-BigInt-FastCalc diff --git a/specs/p/perl-Math-BigInt-GMP/perl-Math-BigInt-GMP.spec b/specs/p/perl-Math-BigInt-GMP/perl-Math-BigInt-GMP.spec index e7224a4d686..ffaf5af4268 100644 --- a/specs/p/perl-Math-BigInt-GMP/perl-Math-BigInt-GMP.spec +++ b/specs/p/perl-Math-BigInt-GMP/perl-Math-BigInt-GMP.spec @@ -3,7 +3,7 @@ Name: perl-Math-BigInt-GMP Version: 1.7003 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Use the GMP library for Math::BigInt routines License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Math-BigInt-GMP diff --git a/specs/p/perl-Math-BigInt/perl-Math-BigInt.spec b/specs/p/perl-Math-BigInt/perl-Math-BigInt.spec index cc7cbede703..428a77294c1 100644 --- a/specs/p/perl-Math-BigInt/perl-Math-BigInt.spec +++ b/specs/p/perl-Math-BigInt/perl-Math-BigInt.spec @@ -6,7 +6,7 @@ Epoch: 1 %global cpan_version 2.005003 # Keep 4-digit version to compete with perl.spec Version: %(echo %{cpan_version} | sed 's/\(\.....\)/\1./') -Release: 4%{?dist} +Release: 4%{?dist} Summary: Arbitrary-size integer and float mathematics License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Math-BigInt diff --git a/specs/p/perl-Metrics-Any/perl-Metrics-Any.spec b/specs/p/perl-Metrics-Any/perl-Metrics-Any.spec index ee3954039dd..910d4471d4b 100644 --- a/specs/p/perl-Metrics-Any/perl-Metrics-Any.spec +++ b/specs/p/perl-Metrics-Any/perl-Metrics-Any.spec @@ -3,7 +3,7 @@ Name: perl-Metrics-Any Version: 0.10 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Abstract collection of monitoring metrics # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Mixin-Linewise/perl-Mixin-Linewise.spec b/specs/p/perl-Mixin-Linewise/perl-Mixin-Linewise.spec index 5b558833198..062dec0d484 100644 --- a/specs/p/perl-Mixin-Linewise/perl-Mixin-Linewise.spec +++ b/specs/p/perl-Mixin-Linewise/perl-Mixin-Linewise.spec @@ -3,7 +3,7 @@ Name: perl-Mixin-Linewise Version: 0.111 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Write your linewise code for handles; this does the rest License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Mixin-Linewise diff --git a/specs/p/perl-Mock-Config/perl-Mock-Config.spec b/specs/p/perl-Mock-Config/perl-Mock-Config.spec index f5e56e5c8b2..f13eb8bead0 100644 --- a/specs/p/perl-Mock-Config/perl-Mock-Config.spec +++ b/specs/p/perl-Mock-Config/perl-Mock-Config.spec @@ -3,7 +3,7 @@ Name: perl-Mock-Config Version: 0.04 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Temporarily set Config or XSConfig values License: Artistic-2.0 URL: https://metacpan.org/release/Mock-Config diff --git a/specs/p/perl-Module-Build-Deprecated/perl-Module-Build-Deprecated.spec b/specs/p/perl-Module-Build-Deprecated/perl-Module-Build-Deprecated.spec index 81d9fa3e21b..f22426426fb 100644 --- a/specs/p/perl-Module-Build-Deprecated/perl-Module-Build-Deprecated.spec +++ b/specs/p/perl-Module-Build-Deprecated/perl-Module-Build-Deprecated.spec @@ -3,7 +3,7 @@ Name: perl-Module-Build-Deprecated Version: 0.4210 -Release: 33%{?dist} +Release: 33%{?dist} Summary: Collection of modules removed from Module-Build License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Build-Deprecated diff --git a/specs/p/perl-Module-Build-Tiny/perl-Module-Build-Tiny.spec b/specs/p/perl-Module-Build-Tiny/perl-Module-Build-Tiny.spec index 8106b4f924e..561a223d34d 100644 --- a/specs/p/perl-Module-Build-Tiny/perl-Module-Build-Tiny.spec +++ b/specs/p/perl-Module-Build-Tiny/perl-Module-Build-Tiny.spec @@ -4,7 +4,7 @@ Summary: A tiny replacement for Module::Build Name: perl-Module-Build-Tiny Version: 0.052 -Release: 3%{?dist} +Release: 3%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Build-Tiny Source0: https://cpan.metacpan.org/modules/by-module/Module/Module-Build-Tiny-%{version}.tar.gz diff --git a/specs/p/perl-Module-Build-XSUtil/perl-Module-Build-XSUtil.spec b/specs/p/perl-Module-Build-XSUtil/perl-Module-Build-XSUtil.spec index 2ffe0bc3df8..963043418b4 100644 --- a/specs/p/perl-Module-Build-XSUtil/perl-Module-Build-XSUtil.spec +++ b/specs/p/perl-Module-Build-XSUtil/perl-Module-Build-XSUtil.spec @@ -4,7 +4,7 @@ Summary: A Module::Build class for building XS modules Name: perl-Module-Build-XSUtil Version: 0.19 -Release: 24%{?dist} +Release: 24%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://github.com/hideo55/Module-Build-XSUtil Source0: https://cpan.metacpan.org/modules/by-module/Module/Module-Build-XSUtil-%{version}.tar.gz diff --git a/specs/p/perl-Module-Build/perl-Module-Build.spec b/specs/p/perl-Module-Build/perl-Module-Build.spec index 993dc5a9a10..bb88501f6e8 100644 --- a/specs/p/perl-Module-Build/perl-Module-Build.spec +++ b/specs/p/perl-Module-Build/perl-Module-Build.spec @@ -15,7 +15,7 @@ Name: perl-Module-Build Epoch: 2 Version: %{cpan_version_major}%{?cpan_version_minor:.%cpan_version_minor} -Release: 10%{?dist} +Release: 10%{?dist} Summary: Build and install Perl modules License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Build diff --git a/specs/p/perl-Module-CPANTS-Analyse/perl-Module-CPANTS-Analyse.spec b/specs/p/perl-Module-CPANTS-Analyse/perl-Module-CPANTS-Analyse.spec index 39fe397fed9..06e3a7d7e0d 100644 --- a/specs/p/perl-Module-CPANTS-Analyse/perl-Module-CPANTS-Analyse.spec +++ b/specs/p/perl-Module-CPANTS-Analyse/perl-Module-CPANTS-Analyse.spec @@ -3,7 +3,7 @@ Name: perl-Module-CPANTS-Analyse Version: 1.02 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Generate Kwalitee ratings for a distribution License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-CPANTS-Analyse diff --git a/specs/p/perl-Module-CPANfile/perl-Module-CPANfile.spec b/specs/p/perl-Module-CPANfile/perl-Module-CPANfile.spec index ee1cb5157a9..3e1cf0f8ddd 100644 --- a/specs/p/perl-Module-CPANfile/perl-Module-CPANfile.spec +++ b/specs/p/perl-Module-CPANfile/perl-Module-CPANfile.spec @@ -3,7 +3,7 @@ Name: perl-Module-CPANfile Version: 1.1004 -Release: 24%{?dist} +Release: 24%{?dist} Summary: Parse cpanfile License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-CPANfile diff --git a/specs/p/perl-Module-CoreList/perl-Module-CoreList.spec b/specs/p/perl-Module-CoreList/perl-Module-CoreList.spec index 7ae6ffd25db..a575a89547b 100644 --- a/specs/p/perl-Module-CoreList/perl-Module-CoreList.spec +++ b/specs/p/perl-Module-CoreList/perl-Module-CoreList.spec @@ -5,7 +5,7 @@ Name: perl-Module-CoreList # Epoch to compete with perl.spec Epoch: 1 Version: 5.20260119 -Release: 2%{?dist} +Release: 2%{?dist} Summary: What modules are shipped with versions of perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-CoreList diff --git a/specs/p/perl-Module-Find/perl-Module-Find.spec b/specs/p/perl-Module-Find/perl-Module-Find.spec index 54bedcfb721..1981473cd37 100644 --- a/specs/p/perl-Module-Find/perl-Module-Find.spec +++ b/specs/p/perl-Module-Find/perl-Module-Find.spec @@ -3,7 +3,7 @@ Name: perl-Module-Find Version: 0.17 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Find and use installed modules in a (sub)category License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Find diff --git a/specs/p/perl-Module-Implementation/perl-Module-Implementation.spec b/specs/p/perl-Module-Implementation/perl-Module-Implementation.spec index 0869e756134..279230cbe3f 100644 --- a/specs/p/perl-Module-Implementation/perl-Module-Implementation.spec +++ b/specs/p/perl-Module-Implementation/perl-Module-Implementation.spec @@ -13,7 +13,7 @@ Name: perl-Module-Implementation Version: 0.09 -Release: 43%{?dist} +Release: 43%{?dist} Summary: Loads one of several alternate underlying implementations for a module License: Artistic-2.0 URL: https://metacpan.org/release/perl-Module-Implementation diff --git a/specs/p/perl-Module-Install-AuthorRequires/perl-Module-Install-AuthorRequires.spec b/specs/p/perl-Module-Install-AuthorRequires/perl-Module-Install-AuthorRequires.spec index fc501602dfc..def03a7f2e4 100644 --- a/specs/p/perl-Module-Install-AuthorRequires/perl-Module-Install-AuthorRequires.spec +++ b/specs/p/perl-Module-Install-AuthorRequires/perl-Module-Install-AuthorRequires.spec @@ -3,7 +3,7 @@ Name: perl-Module-Install-AuthorRequires Version: 0.02 -Release: 39%{?dist} +Release: 39%{?dist} Summary: Declare author-only dependencies License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Install-AuthorRequires diff --git a/specs/p/perl-Module-Install-AuthorTests/perl-Module-Install-AuthorTests.spec b/specs/p/perl-Module-Install-AuthorTests/perl-Module-Install-AuthorTests.spec index 5c75ddac759..feffdbbe4ce 100644 --- a/specs/p/perl-Module-Install-AuthorTests/perl-Module-Install-AuthorTests.spec +++ b/specs/p/perl-Module-Install-AuthorTests/perl-Module-Install-AuthorTests.spec @@ -3,7 +3,7 @@ Name: perl-Module-Install-AuthorTests Version: 0.002 -Release: 39%{?dist} +Release: 39%{?dist} Summary: Designate tests only run by module authors License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Install-AuthorTests diff --git a/specs/p/perl-Module-Install-AutoLicense/perl-Module-Install-AutoLicense.spec b/specs/p/perl-Module-Install-AutoLicense/perl-Module-Install-AutoLicense.spec index e7d121f76f8..0d23b2e5500 100644 --- a/specs/p/perl-Module-Install-AutoLicense/perl-Module-Install-AutoLicense.spec +++ b/specs/p/perl-Module-Install-AutoLicense/perl-Module-Install-AutoLicense.spec @@ -3,7 +3,7 @@ Name: perl-Module-Install-AutoLicense Version: 0.10 -Release: 26%{?dist} +Release: 26%{?dist} Summary: Module::Install extension to automatically generate LICENSE files License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Install-AutoLicense diff --git a/specs/p/perl-Module-Install-ExtraTests/perl-Module-Install-ExtraTests.spec b/specs/p/perl-Module-Install-ExtraTests/perl-Module-Install-ExtraTests.spec index 6b9dd32b5c9..2c06974a07d 100644 --- a/specs/p/perl-Module-Install-ExtraTests/perl-Module-Install-ExtraTests.spec +++ b/specs/p/perl-Module-Install-ExtraTests/perl-Module-Install-ExtraTests.spec @@ -3,7 +3,7 @@ Name: perl-Module-Install-ExtraTests Version: 0.008 -Release: 37%{?dist} +Release: 37%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl Summary: Ignorable, contextual test support for Module::Install Url: https://metacpan.org/release/Module-Install-ExtraTests diff --git a/specs/p/perl-Module-Install-GithubMeta/perl-Module-Install-GithubMeta.spec b/specs/p/perl-Module-Install-GithubMeta/perl-Module-Install-GithubMeta.spec index a1c00acc6d0..f0dbd0afe81 100644 --- a/specs/p/perl-Module-Install-GithubMeta/perl-Module-Install-GithubMeta.spec +++ b/specs/p/perl-Module-Install-GithubMeta/perl-Module-Install-GithubMeta.spec @@ -3,7 +3,7 @@ Name: perl-Module-Install-GithubMeta Version: 0.30 -Release: 32%{?dist} +Release: 32%{?dist} # lib/Module/Install/GithubMeta.pm -> GPL+ or Artistic License: GPL-1.0-or-later OR Artistic-1.0-Perl Summary: A Module::Install extension to include GitHub meta information in META.yml diff --git a/specs/p/perl-Module-Install-ManifestSkip/perl-Module-Install-ManifestSkip.spec b/specs/p/perl-Module-Install-ManifestSkip/perl-Module-Install-ManifestSkip.spec index ae8dffb4775..f58bb6cbd63 100644 --- a/specs/p/perl-Module-Install-ManifestSkip/perl-Module-Install-ManifestSkip.spec +++ b/specs/p/perl-Module-Install-ManifestSkip/perl-Module-Install-ManifestSkip.spec @@ -3,7 +3,7 @@ Name: perl-Module-Install-ManifestSkip Version: 0.24 -Release: 33%{?dist} +Release: 33%{?dist} Summary: Generate a MANIFEST.SKIP file License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Install-ManifestSkip diff --git a/specs/p/perl-Module-Install-ReadmeFromPod/perl-Module-Install-ReadmeFromPod.spec b/specs/p/perl-Module-Install-ReadmeFromPod/perl-Module-Install-ReadmeFromPod.spec index 812f8b36707..9d53b3f0497 100644 --- a/specs/p/perl-Module-Install-ReadmeFromPod/perl-Module-Install-ReadmeFromPod.spec +++ b/specs/p/perl-Module-Install-ReadmeFromPod/perl-Module-Install-ReadmeFromPod.spec @@ -13,7 +13,7 @@ Name: perl-Module-Install-ReadmeFromPod Version: 0.30 -Release: 29%{?dist} +Release: 29%{?dist} Summary: Module::Install extension to automatically convert POD to a README License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Install-ReadmeFromPod diff --git a/specs/p/perl-Module-Install-ReadmeMarkdownFromPod/perl-Module-Install-ReadmeMarkdownFromPod.spec b/specs/p/perl-Module-Install-ReadmeMarkdownFromPod/perl-Module-Install-ReadmeMarkdownFromPod.spec index d0671e554a7..5dc3f0b7cb6 100644 --- a/specs/p/perl-Module-Install-ReadmeMarkdownFromPod/perl-Module-Install-ReadmeMarkdownFromPod.spec +++ b/specs/p/perl-Module-Install-ReadmeMarkdownFromPod/perl-Module-Install-ReadmeMarkdownFromPod.spec @@ -3,7 +3,7 @@ Name: perl-Module-Install-ReadmeMarkdownFromPod Version: 0.04 -Release: 26%{?dist} +Release: 26%{?dist} Summary: Create README.mkdn from POD License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Install-ReadmeMarkdownFromPod diff --git a/specs/p/perl-Module-Install-Repository/perl-Module-Install-Repository.spec b/specs/p/perl-Module-Install-Repository/perl-Module-Install-Repository.spec index 75d4e8dd695..cf252023f67 100644 --- a/specs/p/perl-Module-Install-Repository/perl-Module-Install-Repository.spec +++ b/specs/p/perl-Module-Install-Repository/perl-Module-Install-Repository.spec @@ -3,7 +3,7 @@ Name: perl-Module-Install-Repository Version: 0.08 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Automatically sets repository URL from Svn/Svk/Git checkout License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Install-Repository diff --git a/specs/p/perl-Module-Install-TestBase/perl-Module-Install-TestBase.spec b/specs/p/perl-Module-Install-TestBase/perl-Module-Install-TestBase.spec index 4d9824a4c40..c009698e487 100644 --- a/specs/p/perl-Module-Install-TestBase/perl-Module-Install-TestBase.spec +++ b/specs/p/perl-Module-Install-TestBase/perl-Module-Install-TestBase.spec @@ -3,7 +3,7 @@ Name: perl-Module-Install-TestBase Version: 0.86 -Release: 37%{?dist} +Release: 37%{?dist} Summary: Module::Install support for Test::Base License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Install-TestBase diff --git a/specs/p/perl-Module-Install/perl-Module-Install.spec b/specs/p/perl-Module-Install/perl-Module-Install.spec index e52889c2d3c..054b2df4712 100644 --- a/specs/p/perl-Module-Install/perl-Module-Install.spec +++ b/specs/p/perl-Module-Install/perl-Module-Install.spec @@ -10,7 +10,7 @@ Name: perl-Module-Install Version: 1.21 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Standalone, extensible Perl module installer License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Install diff --git a/specs/p/perl-Module-Load-Conditional/perl-Module-Load-Conditional.spec b/specs/p/perl-Module-Load-Conditional/perl-Module-Load-Conditional.spec index 6990f186530..de8146a2c8c 100644 --- a/specs/p/perl-Module-Load-Conditional/perl-Module-Load-Conditional.spec +++ b/specs/p/perl-Module-Load-Conditional/perl-Module-Load-Conditional.spec @@ -3,7 +3,7 @@ Name: perl-Module-Load-Conditional Version: 0.74 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Looking up module information / loading at run-time License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Load-Conditional diff --git a/specs/p/perl-Module-Load-Util/perl-Module-Load-Util.spec b/specs/p/perl-Module-Load-Util/perl-Module-Load-Util.spec index 2b40245f1b4..c6fb720686c 100644 --- a/specs/p/perl-Module-Load-Util/perl-Module-Load-Util.spec +++ b/specs/p/perl-Module-Load-Util/perl-Module-Load-Util.spec @@ -3,7 +3,7 @@ Name: perl-Module-Load-Util Version: 0.012 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Some utility routines related to module loading License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Load-Util/ diff --git a/specs/p/perl-Module-Load/perl-Module-Load.spec b/specs/p/perl-Module-Load/perl-Module-Load.spec index c28009dece3..2e35d3ce6c1 100644 --- a/specs/p/perl-Module-Load/perl-Module-Load.spec +++ b/specs/p/perl-Module-Load/perl-Module-Load.spec @@ -5,7 +5,7 @@ Name: perl-Module-Load # Epoch to compete with perl.spec Epoch: 1 Version: 0.36 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Run-time require of both modules and files License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Load diff --git a/specs/p/perl-Module-Manifest-Skip/perl-Module-Manifest-Skip.spec b/specs/p/perl-Module-Manifest-Skip/perl-Module-Manifest-Skip.spec index 1ffdc8f1dd4..603a3721c1b 100644 --- a/specs/p/perl-Module-Manifest-Skip/perl-Module-Manifest-Skip.spec +++ b/specs/p/perl-Module-Manifest-Skip/perl-Module-Manifest-Skip.spec @@ -3,7 +3,7 @@ Name: perl-Module-Manifest-Skip Version: 0.23 -Release: 35%{?dist} +Release: 35%{?dist} Summary: MANIFEST.SKIP Manangement for Modules License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Manifest-Skip diff --git a/specs/p/perl-Module-Manifest/perl-Module-Manifest.spec b/specs/p/perl-Module-Manifest/perl-Module-Manifest.spec index f0d12c34a73..0de9224e2e1 100644 --- a/specs/p/perl-Module-Manifest/perl-Module-Manifest.spec +++ b/specs/p/perl-Module-Manifest/perl-Module-Manifest.spec @@ -3,7 +3,7 @@ Name: perl-Module-Manifest Version: 1.09 -Release: 25%{?dist} +Release: 25%{?dist} Summary: Parse and examine a Perl distribution MANIFEST file License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Manifest diff --git a/specs/p/perl-Module-Metadata/perl-Module-Metadata.spec b/specs/p/perl-Module-Metadata/perl-Module-Metadata.spec index b748ea5d98a..04ec274939a 100644 --- a/specs/p/perl-Module-Metadata/perl-Module-Metadata.spec +++ b/specs/p/perl-Module-Metadata/perl-Module-Metadata.spec @@ -3,7 +3,7 @@ Name: perl-Module-Metadata Version: 1.000038 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Gather package and POD information from perl module files License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Metadata diff --git a/specs/p/perl-Module-Package-Au/perl-Module-Package-Au.spec b/specs/p/perl-Module-Package-Au/perl-Module-Package-Au.spec index b00b9fc6084..ee8c082a9bf 100644 --- a/specs/p/perl-Module-Package-Au/perl-Module-Package-Au.spec +++ b/specs/p/perl-Module-Package-Au/perl-Module-Package-Au.spec @@ -3,7 +3,7 @@ Name: perl-Module-Package-Au Version: 2 -Release: 33%{?dist} +Release: 33%{?dist} Summary: Reusable Module::Install bits License: CC0-1.0 URL: https://metacpan.org/release/Module-Package-Au diff --git a/specs/p/perl-Module-Package/perl-Module-Package.spec b/specs/p/perl-Module-Package/perl-Module-Package.spec index 8938c66269c..c6d2b423617 100644 --- a/specs/p/perl-Module-Package/perl-Module-Package.spec +++ b/specs/p/perl-Module-Package/perl-Module-Package.spec @@ -3,7 +3,7 @@ Name: perl-Module-Package Version: 0.30 -Release: 39%{?dist} +Release: 39%{?dist} Summary: Postmodern Perl Module Packaging License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Package diff --git a/specs/p/perl-Module-Pluggable/perl-Module-Pluggable.spec b/specs/p/perl-Module-Pluggable/perl-Module-Pluggable.spec index dc61cec673a..e95f9a51f10 100644 --- a/specs/p/perl-Module-Pluggable/perl-Module-Pluggable.spec +++ b/specs/p/perl-Module-Pluggable/perl-Module-Pluggable.spec @@ -11,7 +11,7 @@ Name: perl-Module-Pluggable Epoch: 2 Version: 6.3 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Automatically give your module the ability to have plugins License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Pluggable diff --git a/specs/p/perl-Module-Refresh/perl-Module-Refresh.spec b/specs/p/perl-Module-Refresh/perl-Module-Refresh.spec index fdf150f6458..ba91aa09f71 100644 --- a/specs/p/perl-Module-Refresh/perl-Module-Refresh.spec +++ b/specs/p/perl-Module-Refresh/perl-Module-Refresh.spec @@ -3,7 +3,7 @@ Name: perl-Module-Refresh Version: 0.18 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Refresh %INC files when updated on disk License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Refresh diff --git a/specs/p/perl-Module-Runtime-Conflicts/perl-Module-Runtime-Conflicts.spec b/specs/p/perl-Module-Runtime-Conflicts/perl-Module-Runtime-Conflicts.spec index c7adcab7769..e7d45e84474 100644 --- a/specs/p/perl-Module-Runtime-Conflicts/perl-Module-Runtime-Conflicts.spec +++ b/specs/p/perl-Module-Runtime-Conflicts/perl-Module-Runtime-Conflicts.spec @@ -3,7 +3,7 @@ Name: perl-Module-Runtime-Conflicts Version: 0.003 -Release: 28%{?dist} +Release: 28%{?dist} Summary: Provide information on conflicts for Module::Runtime # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Module-Runtime/perl-Module-Runtime.spec b/specs/p/perl-Module-Runtime/perl-Module-Runtime.spec index d7752403258..33b68833a2d 100644 --- a/specs/p/perl-Module-Runtime/perl-Module-Runtime.spec +++ b/specs/p/perl-Module-Runtime/perl-Module-Runtime.spec @@ -4,7 +4,7 @@ # This file is licensed under the terms of GNU GPLv2+. Name: perl-Module-Runtime Version: 0.018 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Runtime module handling License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-Runtime diff --git a/specs/p/perl-Module-ScanDeps/perl-Module-ScanDeps.spec b/specs/p/perl-Module-ScanDeps/perl-Module-ScanDeps.spec index 396cf7a00a0..0500dd14167 100644 --- a/specs/p/perl-Module-ScanDeps/perl-Module-ScanDeps.spec +++ b/specs/p/perl-Module-ScanDeps/perl-Module-ScanDeps.spec @@ -13,7 +13,7 @@ Name: perl-Module-ScanDeps Summary: Recursively scan Perl code for dependencies Version: 1.37 -Release: 4%{?dist} +Release: 4%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Module-ScanDeps Source0: https://cpan.metacpan.org/authors/id/R/RS/RSCHUPP/Module-ScanDeps-%{version}.tar.gz diff --git a/specs/p/perl-Module-Signature/perl-Module-Signature.spec b/specs/p/perl-Module-Signature/perl-Module-Signature.spec index 893c9e15697..000b3f625c4 100644 --- a/specs/p/perl-Module-Signature/perl-Module-Signature.spec +++ b/specs/p/perl-Module-Signature/perl-Module-Signature.spec @@ -6,7 +6,7 @@ Name: perl-Module-Signature Version: 0.93 -Release: 3%{?dist} +Release: 3%{?dist} Summary: CPAN signature management utilities and modules License: CC0-1.0 URL: https://metacpan.org/release/Module-Signature diff --git a/specs/p/perl-Mojolicious/perl-Mojolicious.spec b/specs/p/perl-Mojolicious/perl-Mojolicious.spec index 10d494dd662..f4a7a50b57b 100644 --- a/specs/p/perl-Mojolicious/perl-Mojolicious.spec +++ b/specs/p/perl-Mojolicious/perl-Mojolicious.spec @@ -3,7 +3,7 @@ Name: perl-Mojolicious Version: 9.41 -Release: 3%{?dist} +Release: 3%{?dist} Summary: A next generation web framework for Perl License: Artistic-2.0 diff --git a/specs/p/perl-Moo/perl-Moo.spec b/specs/p/perl-Moo/perl-Moo.spec index 84d13538d62..e2629916c98 100644 --- a/specs/p/perl-Moo/perl-Moo.spec +++ b/specs/p/perl-Moo/perl-Moo.spec @@ -3,7 +3,7 @@ Name: perl-Moo Version: 2.005005 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Minimalist Object Orientation (with Moose compatibility) License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-MooX-HandlesVia/perl-MooX-HandlesVia.spec b/specs/p/perl-MooX-HandlesVia/perl-MooX-HandlesVia.spec index 5d1b852f62d..1def151aa34 100644 --- a/specs/p/perl-MooX-HandlesVia/perl-MooX-HandlesVia.spec +++ b/specs/p/perl-MooX-HandlesVia/perl-MooX-HandlesVia.spec @@ -3,7 +3,7 @@ Name: perl-MooX-HandlesVia Version: 0.001009 -Release: 16%{?dist} +Release: 16%{?dist} Summary: NativeTrait-like behavior for Moo License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/MooX-HandlesVia diff --git a/specs/p/perl-MooX-TypeTiny/perl-MooX-TypeTiny.spec b/specs/p/perl-MooX-TypeTiny/perl-MooX-TypeTiny.spec index 7c727480c4d..537123e82bc 100644 --- a/specs/p/perl-MooX-TypeTiny/perl-MooX-TypeTiny.spec +++ b/specs/p/perl-MooX-TypeTiny/perl-MooX-TypeTiny.spec @@ -3,7 +3,7 @@ Name: perl-MooX-TypeTiny Version: 0.002003 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Optimized type checks for Moo + Type::Tiny # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-MooX-Types-MooseLike/perl-MooX-Types-MooseLike.spec b/specs/p/perl-MooX-Types-MooseLike/perl-MooX-Types-MooseLike.spec index f04f299b741..83c8006fc34 100644 --- a/specs/p/perl-MooX-Types-MooseLike/perl-MooX-Types-MooseLike.spec +++ b/specs/p/perl-MooX-Types-MooseLike/perl-MooX-Types-MooseLike.spec @@ -3,7 +3,7 @@ Name: perl-MooX-Types-MooseLike Version: 0.29 -Release: 31%{?dist} +Release: 31%{?dist} Summary: Some Moosish types and a type builder # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Moose-Autobox/perl-Moose-Autobox.spec b/specs/p/perl-Moose-Autobox/perl-Moose-Autobox.spec index 99eb2cc410f..e4f62a2410b 100644 --- a/specs/p/perl-Moose-Autobox/perl-Moose-Autobox.spec +++ b/specs/p/perl-Moose-Autobox/perl-Moose-Autobox.spec @@ -3,7 +3,7 @@ Name: perl-Moose-Autobox Version: 0.16 -Release: 29%{?dist} +Release: 29%{?dist} # lib/Moose/Autobox.pm -> GPL+ or Artistic # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Moose/perl-Moose.spec b/specs/p/perl-Moose/perl-Moose.spec index 72b6152f464..4952dcc1a9f 100644 --- a/specs/p/perl-Moose/perl-Moose.spec +++ b/specs/p/perl-Moose/perl-Moose.spec @@ -11,7 +11,7 @@ Name: perl-Moose Summary: Complete modern object system for Perl 5 Version: 2.4000 -Release: 5%{?dist} +Release: 5%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Moose Source0: https://cpan.metacpan.org/modules/by-module/Test/Moose-%{version}.tar.gz diff --git a/specs/p/perl-MooseX-AttributeHelpers/perl-MooseX-AttributeHelpers.spec b/specs/p/perl-MooseX-AttributeHelpers/perl-MooseX-AttributeHelpers.spec index 7d8572ab75f..a3fbf2a1218 100644 --- a/specs/p/perl-MooseX-AttributeHelpers/perl-MooseX-AttributeHelpers.spec +++ b/specs/p/perl-MooseX-AttributeHelpers/perl-MooseX-AttributeHelpers.spec @@ -3,7 +3,7 @@ Name: perl-MooseX-AttributeHelpers Version: 0.25 -Release: 30%{?dist} +Release: 30%{?dist} Summary: Extended Moose attribute interfaces (deprecated) License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/MooseX-AttributeHelpers diff --git a/specs/p/perl-MooseX-ConfigFromFile/perl-MooseX-ConfigFromFile.spec b/specs/p/perl-MooseX-ConfigFromFile/perl-MooseX-ConfigFromFile.spec index c0d074d2d7f..94f12a1b240 100644 --- a/specs/p/perl-MooseX-ConfigFromFile/perl-MooseX-ConfigFromFile.spec +++ b/specs/p/perl-MooseX-ConfigFromFile/perl-MooseX-ConfigFromFile.spec @@ -3,7 +3,7 @@ Name: perl-MooseX-ConfigFromFile Version: 0.14 -Release: 34%{?dist} +Release: 34%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl Summary: An abstract Moose role for setting attributes from a configfile URL: https://metacpan.org/release/MooseX-ConfigFromFile diff --git a/specs/p/perl-MooseX-Getopt/perl-MooseX-Getopt.spec b/specs/p/perl-MooseX-Getopt/perl-MooseX-Getopt.spec index 41c041a629a..8920a897963 100644 --- a/specs/p/perl-MooseX-Getopt/perl-MooseX-Getopt.spec +++ b/specs/p/perl-MooseX-Getopt/perl-MooseX-Getopt.spec @@ -11,7 +11,7 @@ Name: perl-MooseX-Getopt Summary: Moose role for processing command line options Version: 0.78 -Release: 4%{?dist} +Release: 4%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/MooseX-Getopt Source0: https://cpan.metacpan.org/modules/by-module/MooseX/MooseX-Getopt-%{version}.tar.gz diff --git a/specs/p/perl-MooseX-GlobRef/perl-MooseX-GlobRef.spec b/specs/p/perl-MooseX-GlobRef/perl-MooseX-GlobRef.spec index c8136450c7a..21bb0d2873e 100644 --- a/specs/p/perl-MooseX-GlobRef/perl-MooseX-GlobRef.spec +++ b/specs/p/perl-MooseX-GlobRef/perl-MooseX-GlobRef.spec @@ -3,7 +3,7 @@ Name: perl-MooseX-GlobRef Version: 0.0701 -Release: 42%{?dist} +Release: 42%{?dist} Summary: Store a Moose object in glob reference License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/MooseX-GlobRef diff --git a/specs/p/perl-MooseX-InsideOut/perl-MooseX-InsideOut.spec b/specs/p/perl-MooseX-InsideOut/perl-MooseX-InsideOut.spec index 73b8fe9a95f..f05ec6cc871 100644 --- a/specs/p/perl-MooseX-InsideOut/perl-MooseX-InsideOut.spec +++ b/specs/p/perl-MooseX-InsideOut/perl-MooseX-InsideOut.spec @@ -3,7 +3,7 @@ Name: perl-MooseX-InsideOut Version: 0.106 -Release: 42%{?dist} +Release: 42%{?dist} Summary: Inside-out objects with Moose License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/MooseX-InsideOut diff --git a/specs/p/perl-MooseX-MarkAsMethods/perl-MooseX-MarkAsMethods.spec b/specs/p/perl-MooseX-MarkAsMethods/perl-MooseX-MarkAsMethods.spec index 450f1882737..81547ff3255 100644 --- a/specs/p/perl-MooseX-MarkAsMethods/perl-MooseX-MarkAsMethods.spec +++ b/specs/p/perl-MooseX-MarkAsMethods/perl-MooseX-MarkAsMethods.spec @@ -3,7 +3,7 @@ Name: perl-MooseX-MarkAsMethods Version: 0.15 -Release: 38%{?dist} +Release: 38%{?dist} Summary: Mark overload code symbols as methods # Automatically converted from old format: LGPLv2+ - review is highly recommended. License: LicenseRef-Callaway-LGPLv2+ diff --git a/specs/p/perl-MooseX-NonMoose/perl-MooseX-NonMoose.spec b/specs/p/perl-MooseX-NonMoose/perl-MooseX-NonMoose.spec index 116550be399..72db7057c6e 100644 --- a/specs/p/perl-MooseX-NonMoose/perl-MooseX-NonMoose.spec +++ b/specs/p/perl-MooseX-NonMoose/perl-MooseX-NonMoose.spec @@ -10,7 +10,7 @@ Name: perl-MooseX-NonMoose Version: 0.27 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Easy subclassing of non-Moose classes License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/MooseX-NonMoose diff --git a/specs/p/perl-MooseX-Role-Parameterized/perl-MooseX-Role-Parameterized.spec b/specs/p/perl-MooseX-Role-Parameterized/perl-MooseX-Role-Parameterized.spec index 4013d5f72e6..bfb2491b705 100644 --- a/specs/p/perl-MooseX-Role-Parameterized/perl-MooseX-Role-Parameterized.spec +++ b/specs/p/perl-MooseX-Role-Parameterized/perl-MooseX-Role-Parameterized.spec @@ -4,7 +4,7 @@ Name: perl-MooseX-Role-Parameterized Summary: Make your roles flexible through parameterization Version: 1.11 -Release: 19%{?dist} +Release: 19%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/MooseX-Role-Parameterized Source0: https://cpan.metacpan.org/modules/by-module/MooseX/MooseX-Role-Parameterized-%{version}.tar.gz diff --git a/specs/p/perl-MooseX-Role-WithOverloading/perl-MooseX-Role-WithOverloading.spec b/specs/p/perl-MooseX-Role-WithOverloading/perl-MooseX-Role-WithOverloading.spec index 7f2a4c06fd5..bcda1d36938 100644 --- a/specs/p/perl-MooseX-Role-WithOverloading/perl-MooseX-Role-WithOverloading.spec +++ b/specs/p/perl-MooseX-Role-WithOverloading/perl-MooseX-Role-WithOverloading.spec @@ -3,7 +3,7 @@ Name: perl-MooseX-Role-WithOverloading Version: 0.17 -Release: 35%{?dist} +Release: 35%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl Summary: Roles that support overloading URL: https://metacpan.org/release/MooseX-Role-WithOverloading diff --git a/specs/p/perl-MooseX-SimpleConfig/perl-MooseX-SimpleConfig.spec b/specs/p/perl-MooseX-SimpleConfig/perl-MooseX-SimpleConfig.spec index fdeddaa9281..8afc8ba2d24 100644 --- a/specs/p/perl-MooseX-SimpleConfig/perl-MooseX-SimpleConfig.spec +++ b/specs/p/perl-MooseX-SimpleConfig/perl-MooseX-SimpleConfig.spec @@ -3,7 +3,7 @@ Name: perl-MooseX-SimpleConfig Version: 0.11 -Release: 32%{?dist} +Release: 32%{?dist} Summary: Moose role for setting attributes from a simple configfile License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/MooseX-SimpleConfig diff --git a/specs/p/perl-MooseX-StrictConstructor/perl-MooseX-StrictConstructor.spec b/specs/p/perl-MooseX-StrictConstructor/perl-MooseX-StrictConstructor.spec index b9aad9fab45..a77cc33b775 100644 --- a/specs/p/perl-MooseX-StrictConstructor/perl-MooseX-StrictConstructor.spec +++ b/specs/p/perl-MooseX-StrictConstructor/perl-MooseX-StrictConstructor.spec @@ -3,7 +3,7 @@ Name: perl-MooseX-StrictConstructor Version: 0.21 -Release: 27%{?dist} +Release: 27%{?dist} # see lib/MooseX/StrictConstructor.pm License: Artistic-2.0 Summary: Make your object constructors blow up on unknown attributes diff --git a/specs/p/perl-MooseX-Types-Common/perl-MooseX-Types-Common.spec b/specs/p/perl-MooseX-Types-Common/perl-MooseX-Types-Common.spec index 4177200457a..5df0d4adb6c 100644 --- a/specs/p/perl-MooseX-Types-Common/perl-MooseX-Types-Common.spec +++ b/specs/p/perl-MooseX-Types-Common/perl-MooseX-Types-Common.spec @@ -4,7 +4,7 @@ Name: perl-MooseX-Types-Common Summary: A library of commonly used type constraints Version: 0.001015 -Release: 3%{?dist} +Release: 3%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl Source0: https://cpan.metacpan.org/authors/id/E/ET/ETHER/MooseX-Types-Common-%{version}.tar.gz URL: https://metacpan.org/release/MooseX-Types-Common diff --git a/specs/p/perl-MooseX-Types-Path-Tiny/perl-MooseX-Types-Path-Tiny.spec b/specs/p/perl-MooseX-Types-Path-Tiny/perl-MooseX-Types-Path-Tiny.spec index e308b888d28..2eecf1aa091 100644 --- a/specs/p/perl-MooseX-Types-Path-Tiny/perl-MooseX-Types-Path-Tiny.spec +++ b/specs/p/perl-MooseX-Types-Path-Tiny/perl-MooseX-Types-Path-Tiny.spec @@ -4,7 +4,7 @@ Name: perl-MooseX-Types-Path-Tiny Summary: Path::Tiny types and coercions for Moose Version: 0.012 -Release: 27%{?dist} +Release: 27%{?dist} License: Apache-2.0 URL: https://metacpan.org/release/MooseX-Types-Path-Tiny Source0: https://cpan.metacpan.org/modules/by-module/MooseX/MooseX-Types-Path-Tiny-%{version}.tar.gz diff --git a/specs/p/perl-MooseX-Types-Stringlike/perl-MooseX-Types-Stringlike.spec b/specs/p/perl-MooseX-Types-Stringlike/perl-MooseX-Types-Stringlike.spec index 7f5fea993a1..ffd99507790 100644 --- a/specs/p/perl-MooseX-Types-Stringlike/perl-MooseX-Types-Stringlike.spec +++ b/specs/p/perl-MooseX-Types-Stringlike/perl-MooseX-Types-Stringlike.spec @@ -4,7 +4,7 @@ Name: perl-MooseX-Types-Stringlike Summary: Moose type constraints for strings or string-like objects Version: 0.003 -Release: 34%{?dist} +Release: 34%{?dist} License: Apache-2.0 URL: https://metacpan.org/release/MooseX-Types-Stringlike Source0: https://cpan.metacpan.org/modules/by-module/MooseX/MooseX-Types-Stringlike-%{version}.tar.gz diff --git a/specs/p/perl-MooseX-Types/perl-MooseX-Types.spec b/specs/p/perl-MooseX-Types/perl-MooseX-Types.spec index bb26a23cbe1..b0c9532f769 100644 --- a/specs/p/perl-MooseX-Types/perl-MooseX-Types.spec +++ b/specs/p/perl-MooseX-Types/perl-MooseX-Types.spec @@ -3,7 +3,7 @@ Name: perl-MooseX-Types Version: 0.51 -Release: 3%{?dist} +Release: 3%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl Summary: Organize your Moose types in libraries URL: https://metacpan.org/dist/MooseX-Types diff --git a/specs/p/perl-Mouse/perl-Mouse.spec b/specs/p/perl-Mouse/perl-Mouse.spec index 0818a921c08..400630f88da 100644 --- a/specs/p/perl-Mouse/perl-Mouse.spec +++ b/specs/p/perl-Mouse/perl-Mouse.spec @@ -4,7 +4,7 @@ Name: perl-Mouse Summary: Moose minus the antlers Version: 2.5.11 -Release: 6%{?dist} +Release: 6%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Mouse Source0: https://cpan.metacpan.org/modules/by-module/Test/Mouse-v%{version}.tar.gz diff --git a/specs/p/perl-MouseX-Foreign/perl-MouseX-Foreign.spec b/specs/p/perl-MouseX-Foreign/perl-MouseX-Foreign.spec index 5009c30c5d3..1595c106ed3 100644 --- a/specs/p/perl-MouseX-Foreign/perl-MouseX-Foreign.spec +++ b/specs/p/perl-MouseX-Foreign/perl-MouseX-Foreign.spec @@ -3,7 +3,7 @@ Name: perl-MouseX-Foreign Version: 1.000 -Release: 30%{?dist} +Release: 30%{?dist} Summary: Extends non-Mouse classes as well as Mouse classes # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-MouseX-Types-Common/perl-MouseX-Types-Common.spec b/specs/p/perl-MouseX-Types-Common/perl-MouseX-Types-Common.spec index 6294fa4d4fe..409b3d2ed5b 100644 --- a/specs/p/perl-MouseX-Types-Common/perl-MouseX-Types-Common.spec +++ b/specs/p/perl-MouseX-Types-Common/perl-MouseX-Types-Common.spec @@ -3,7 +3,7 @@ Name: perl-MouseX-Types-Common Version: 0.001000 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Set of commonly-used type constraints License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: http://metacpan.org/dist/MouseX-Types-Common/ diff --git a/specs/p/perl-MouseX-Types/perl-MouseX-Types.spec b/specs/p/perl-MouseX-Types/perl-MouseX-Types.spec index 02509e01508..3d4134ab4ae 100644 --- a/specs/p/perl-MouseX-Types/perl-MouseX-Types.spec +++ b/specs/p/perl-MouseX-Types/perl-MouseX-Types.spec @@ -4,7 +4,7 @@ Name: perl-MouseX-Types Summary: Organize your Mouse types in libraries Version: 0.06 -Release: 41%{?dist} +Release: 41%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/MouseX-Types Source0: https://cpan.metacpan.org/modules/by-module/MouseX/MouseX-Types-%{version}.tar.gz diff --git a/specs/p/perl-Mozilla-CA/perl-Mozilla-CA.spec b/specs/p/perl-Mozilla-CA/perl-Mozilla-CA.spec index 62556ebea29..84cae4662a2 100644 --- a/specs/p/perl-Mozilla-CA/perl-Mozilla-CA.spec +++ b/specs/p/perl-Mozilla-CA/perl-Mozilla-CA.spec @@ -6,7 +6,7 @@ Name: perl-Mozilla-CA # certificates. They are taken from ca-certificates package instead # per bug #738383. Version: 20250602 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Mozilla's CA certificate bundle in PEM format # README: MPL-2.0 ## Unbundled diff --git a/specs/p/perl-Mozilla-PublicSuffix/perl-Mozilla-PublicSuffix.spec b/specs/p/perl-Mozilla-PublicSuffix/perl-Mozilla-PublicSuffix.spec index 6281ac92f81..126866619c2 100644 --- a/specs/p/perl-Mozilla-PublicSuffix/perl-Mozilla-PublicSuffix.spec +++ b/specs/p/perl-Mozilla-PublicSuffix/perl-Mozilla-PublicSuffix.spec @@ -3,7 +3,7 @@ Name: perl-Mozilla-PublicSuffix Version: 1.0.7 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Get a domain name's public suffix via the Mozilla Public Suffix List License: MIT URL: https://metacpan.org/release/Mozilla-PublicSuffix diff --git a/specs/p/perl-NTLM/perl-NTLM.spec b/specs/p/perl-NTLM/perl-NTLM.spec index c62790e38b0..91692343f76 100644 --- a/specs/p/perl-NTLM/perl-NTLM.spec +++ b/specs/p/perl-NTLM/perl-NTLM.spec @@ -6,7 +6,7 @@ Name: perl-NTLM Version: 1.09 -Release: 42%{?dist} +Release: 42%{?dist} Summary: NTLM Perl module License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/NTLM diff --git a/specs/p/perl-Net-CIDR/perl-Net-CIDR.spec b/specs/p/perl-Net-CIDR/perl-Net-CIDR.spec index 1654402cbbb..9c9544c31a9 100644 --- a/specs/p/perl-Net-CIDR/perl-Net-CIDR.spec +++ b/specs/p/perl-Net-CIDR/perl-Net-CIDR.spec @@ -3,7 +3,7 @@ Name: perl-Net-CIDR Version: 0.27 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Manipulate IPv4/IPv6 netblocks in CIDR notation License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/dist/Net-CIDR diff --git a/specs/p/perl-Net-DNS/perl-Net-DNS.spec b/specs/p/perl-Net-DNS/perl-Net-DNS.spec index 9cf086c2417..691cac61996 100644 --- a/specs/p/perl-Net-DNS/perl-Net-DNS.spec +++ b/specs/p/perl-Net-DNS/perl-Net-DNS.spec @@ -3,7 +3,7 @@ Name: perl-Net-DNS Version: 1.53 -Release: 2%{?dist} +Release: 2%{?dist} Summary: DNS resolver modules for Perl License: MIT URL: https://www.net-dns.org diff --git a/specs/p/perl-Net-Domain-TLD/perl-Net-Domain-TLD.spec b/specs/p/perl-Net-Domain-TLD/perl-Net-Domain-TLD.spec index 1102b247f65..bc1fd29a576 100644 --- a/specs/p/perl-Net-Domain-TLD/perl-Net-Domain-TLD.spec +++ b/specs/p/perl-Net-Domain-TLD/perl-Net-Domain-TLD.spec @@ -3,7 +3,7 @@ Name: perl-Net-Domain-TLD Version: 1.75 -Release: 28%{?dist} +Release: 28%{?dist} Summary: Work with TLD names # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Net-HTTP/perl-Net-HTTP.spec b/specs/p/perl-Net-HTTP/perl-Net-HTTP.spec index 3e56799f488..839e9c16c1c 100644 --- a/specs/p/perl-Net-HTTP/perl-Net-HTTP.spec +++ b/specs/p/perl-Net-HTTP/perl-Net-HTTP.spec @@ -10,7 +10,7 @@ Name: perl-Net-HTTP Version: 6.24 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Low-level HTTP connection (client) License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Net-HTTP diff --git a/specs/p/perl-Net-IDN-Encode/perl-Net-IDN-Encode.spec b/specs/p/perl-Net-IDN-Encode/perl-Net-IDN-Encode.spec index 8c416d09f4b..7729e507c07 100644 --- a/specs/p/perl-Net-IDN-Encode/perl-Net-IDN-Encode.spec +++ b/specs/p/perl-Net-IDN-Encode/perl-Net-IDN-Encode.spec @@ -4,7 +4,7 @@ Name: perl-Net-IDN-Encode Summary: Internationalizing Domain Names in Applications (IDNA) Version: 2.500 -Release: 27%{?dist} +Release: 27%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Net-IDN-Encode Source0: https://cpan.metacpan.org/authors/id/C/CF/CFAERBER/Net-IDN-Encode-%{version}.tar.gz diff --git a/specs/p/perl-Net-IMAP-Simple-SSL/perl-Net-IMAP-Simple-SSL.spec b/specs/p/perl-Net-IMAP-Simple-SSL/perl-Net-IMAP-Simple-SSL.spec index ba7f97fe646..86a780287d2 100644 --- a/specs/p/perl-Net-IMAP-Simple-SSL/perl-Net-IMAP-Simple-SSL.spec +++ b/specs/p/perl-Net-IMAP-Simple-SSL/perl-Net-IMAP-Simple-SSL.spec @@ -3,7 +3,7 @@ Name: perl-Net-IMAP-Simple-SSL Version: 1.3 -Release: 44%{?dist} +Release: 44%{?dist} Summary: Simple IMAP account handling with SSL License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Net-IMAP-Simple-SSL diff --git a/specs/p/perl-Net-IMAP-Simple/perl-Net-IMAP-Simple.spec b/specs/p/perl-Net-IMAP-Simple/perl-Net-IMAP-Simple.spec index 3f187a696ee..95da7864955 100644 --- a/specs/p/perl-Net-IMAP-Simple/perl-Net-IMAP-Simple.spec +++ b/specs/p/perl-Net-IMAP-Simple/perl-Net-IMAP-Simple.spec @@ -3,7 +3,7 @@ Name: perl-Net-IMAP-Simple Version: 1.2212 -Release: 21%{?dist} +Release: 21%{?dist} Summary: Simple IMAP account handling License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Net-IMAP-Simple diff --git a/specs/p/perl-Net-LibIDN/perl-Net-LibIDN.spec b/specs/p/perl-Net-LibIDN/perl-Net-LibIDN.spec index 2bc85f2768f..056f34bfd48 100644 --- a/specs/p/perl-Net-LibIDN/perl-Net-LibIDN.spec +++ b/specs/p/perl-Net-LibIDN/perl-Net-LibIDN.spec @@ -6,7 +6,7 @@ Summary: Perl bindings for GNU LibIDN Name: perl-Net-LibIDN Version: 0.12 -Release: 55%{?dist} +Release: 55%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/%{pkgname} Source: https://cpan.metacpan.org/authors/id/T/TH/THOR/%{pkgname}-%{version}.tar.gz diff --git a/specs/p/perl-Net-LibIDN2/perl-Net-LibIDN2.spec b/specs/p/perl-Net-LibIDN2/perl-Net-LibIDN2.spec index 61f86681657..4ecb1994156 100644 --- a/specs/p/perl-Net-LibIDN2/perl-Net-LibIDN2.spec +++ b/specs/p/perl-Net-LibIDN2/perl-Net-LibIDN2.spec @@ -3,7 +3,7 @@ Name: perl-Net-LibIDN2 Version: 1.02 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Perl binding for GNU Libidn2 License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Net-LibIDN2 diff --git a/specs/p/perl-Net-Ping/perl-Net-Ping.spec b/specs/p/perl-Net-Ping/perl-Net-Ping.spec index 00c7eda254d..41f9e198a8c 100644 --- a/specs/p/perl-Net-Ping/perl-Net-Ping.spec +++ b/specs/p/perl-Net-Ping/perl-Net-Ping.spec @@ -7,7 +7,7 @@ Name: perl-Net-Ping Version: 2.76 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Check a remote host for reachability License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Net-Ping/ diff --git a/specs/p/perl-Net-SMTP-SSL/perl-Net-SMTP-SSL.spec b/specs/p/perl-Net-SMTP-SSL/perl-Net-SMTP-SSL.spec index 22217b02639..384f7d87d40 100644 --- a/specs/p/perl-Net-SMTP-SSL/perl-Net-SMTP-SSL.spec +++ b/specs/p/perl-Net-SMTP-SSL/perl-Net-SMTP-SSL.spec @@ -3,7 +3,7 @@ Name: perl-Net-SMTP-SSL Version: 1.04 -Release: 28%{?dist} +Release: 28%{?dist} Summary: SSL support for Net::SMTP License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Net-SMTP-SSL diff --git a/specs/p/perl-Net-SNMP/perl-Net-SNMP.spec b/specs/p/perl-Net-SNMP/perl-Net-SNMP.spec index 1a3f18bba55..7d144382d42 100644 --- a/specs/p/perl-Net-SNMP/perl-Net-SNMP.spec +++ b/specs/p/perl-Net-SNMP/perl-Net-SNMP.spec @@ -3,7 +3,7 @@ Name: perl-Net-SNMP Version: 6.0.1 -Release: 45%{?dist} +Release: 45%{?dist} Summary: Object oriented interface to SNMP License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Net-SSLeay/perl-Net-SSLeay.spec b/specs/p/perl-Net-SSLeay/perl-Net-SSLeay.spec index 7e1ef066c78..6d8afa2bc19 100644 --- a/specs/p/perl-Net-SSLeay/perl-Net-SSLeay.spec +++ b/specs/p/perl-Net-SSLeay/perl-Net-SSLeay.spec @@ -15,7 +15,7 @@ Name: perl-Net-SSLeay Version: 1.94 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Perl extension for using OpenSSL License: Artistic-2.0 URL: https://metacpan.org/release/Net-SSLeay diff --git a/specs/p/perl-Net-Server/perl-Net-Server.spec b/specs/p/perl-Net-Server/perl-Net-Server.spec index cf63c3807be..faabea2496e 100644 --- a/specs/p/perl-Net-Server/perl-Net-Server.spec +++ b/specs/p/perl-Net-Server/perl-Net-Server.spec @@ -3,7 +3,7 @@ Name: perl-Net-Server Version: 2.014 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Extensible, general Perl server engine License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Net-Server diff --git a/specs/p/perl-Number-Compare/perl-Number-Compare.spec b/specs/p/perl-Number-Compare/perl-Number-Compare.spec index c79e5531781..0977c7845aa 100644 --- a/specs/p/perl-Number-Compare/perl-Number-Compare.spec +++ b/specs/p/perl-Number-Compare/perl-Number-Compare.spec @@ -3,7 +3,7 @@ Name: perl-Number-Compare Version: 0.03 -Release: 42%{?dist} +Release: 42%{?dist} Summary: Perl module for numeric comparisons License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Number-Compare diff --git a/specs/p/perl-Object-Accessor/perl-Object-Accessor.spec b/specs/p/perl-Object-Accessor/perl-Object-Accessor.spec index f98474902e7..e12ab9531ee 100644 --- a/specs/p/perl-Object-Accessor/perl-Object-Accessor.spec +++ b/specs/p/perl-Object-Accessor/perl-Object-Accessor.spec @@ -5,7 +5,7 @@ Name: perl-Object-Accessor # Epoch to compete with perl.spec Epoch: 1 Version: 0.48 -Release: 37%{?dist} +Release: 37%{?dist} Summary: Interface to create per object accessors License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Object-Accessor diff --git a/specs/p/perl-Object-Deadly/perl-Object-Deadly.spec b/specs/p/perl-Object-Deadly/perl-Object-Deadly.spec index 0cb4b5545e2..c034f8662ad 100644 --- a/specs/p/perl-Object-Deadly/perl-Object-Deadly.spec +++ b/specs/p/perl-Object-Deadly/perl-Object-Deadly.spec @@ -3,7 +3,7 @@ Name: perl-Object-Deadly Version: 0.09 -Release: 51%{?dist} +Release: 51%{?dist} Summary: Perl module providing an object that dies whenever examined License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Object-Deadly diff --git a/specs/p/perl-Object-HashBase/perl-Object-HashBase.spec b/specs/p/perl-Object-HashBase/perl-Object-HashBase.spec index 1f823121746..14718ac1b59 100644 --- a/specs/p/perl-Object-HashBase/perl-Object-HashBase.spec +++ b/specs/p/perl-Object-HashBase/perl-Object-HashBase.spec @@ -3,7 +3,7 @@ Name: perl-Object-HashBase Version: 0.015 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Build hash-based classes License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Object-HashBase diff --git a/specs/p/perl-Object-Pad/perl-Object-Pad.spec b/specs/p/perl-Object-Pad/perl-Object-Pad.spec index 08c935d44c3..75ba82e8a07 100644 --- a/specs/p/perl-Object-Pad/perl-Object-Pad.spec +++ b/specs/p/perl-Object-Pad/perl-Object-Pad.spec @@ -12,7 +12,7 @@ Name: perl-Object-Pad Version: 0.823 -Release: 1%{dist} +Release: 4%{dist} Summary: Simple syntax for lexical slot-based objects License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Object-Pad diff --git a/specs/p/perl-PAR-Dist/perl-PAR-Dist.spec b/specs/p/perl-PAR-Dist/perl-PAR-Dist.spec index 0f0a5dd3620..fe32f2e1fa2 100644 --- a/specs/p/perl-PAR-Dist/perl-PAR-Dist.spec +++ b/specs/p/perl-PAR-Dist/perl-PAR-Dist.spec @@ -3,7 +3,7 @@ Name: perl-PAR-Dist Version: 0.53 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Toolkit for creating and manipulating Perl PAR distributions License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/PAR-Dist diff --git a/specs/p/perl-PDF-API2/perl-PDF-API2.spec b/specs/p/perl-PDF-API2/perl-PDF-API2.spec index 5a8d60c5b80..ecba694300b 100644 --- a/specs/p/perl-PDF-API2/perl-PDF-API2.spec +++ b/specs/p/perl-PDF-API2/perl-PDF-API2.spec @@ -3,7 +3,7 @@ Name: perl-PDF-API2 Version: 2.048 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Perl module for creation and modification of PDF files # lib/PDF/API2.pm: LGPL-2.1-or-later # lib/PDF/API2/Resource/XObject/Image/PNM.pm: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-PHP-Serialization/perl-PHP-Serialization.spec b/specs/p/perl-PHP-Serialization/perl-PHP-Serialization.spec index e37299f6aa1..b37c3cb9837 100644 --- a/specs/p/perl-PHP-Serialization/perl-PHP-Serialization.spec +++ b/specs/p/perl-PHP-Serialization/perl-PHP-Serialization.spec @@ -3,7 +3,7 @@ Name: perl-PHP-Serialization Version: 0.34 -Release: 43%{?dist} +Release: 43%{?dist} Summary: Converts between PHP's serialize() output and the equivalent Perl structure # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-POE-Test-Loops/perl-POE-Test-Loops.spec b/specs/p/perl-POE-Test-Loops/perl-POE-Test-Loops.spec index 2dc42a674ea..f5c8ec13612 100644 --- a/specs/p/perl-POE-Test-Loops/perl-POE-Test-Loops.spec +++ b/specs/p/perl-POE-Test-Loops/perl-POE-Test-Loops.spec @@ -7,7 +7,7 @@ Name: perl-POE-Test-Loops Summary: Reusable tests for POE::Loop authors Version: 1.360 -Release: 33%{?dist} +Release: 33%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl Source0: https://cpan.metacpan.org/authors/id/R/RC/RCAPUTO/POE-Test-Loops-%{version}.tar.gz URL: https://metacpan.org/release/POE-Test-Loops diff --git a/specs/p/perl-POE/perl-POE.spec b/specs/p/perl-POE/perl-POE.spec index 0691a195bbe..704158c5ee6 100644 --- a/specs/p/perl-POE/perl-POE.spec +++ b/specs/p/perl-POE/perl-POE.spec @@ -8,7 +8,7 @@ Name: perl-POE Version: 1.370 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Portable multitasking and networking framework for event loops License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/POE diff --git a/specs/p/perl-PPI/perl-PPI.spec b/specs/p/perl-PPI/perl-PPI.spec index 36aa053a211..760b0424f31 100644 --- a/specs/p/perl-PPI/perl-PPI.spec +++ b/specs/p/perl-PPI/perl-PPI.spec @@ -10,7 +10,7 @@ Name: perl-PPI Version: 1.283 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Parse, Analyze and Manipulate Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/PPI diff --git a/specs/p/perl-PPIx-QuoteLike/perl-PPIx-QuoteLike.spec b/specs/p/perl-PPIx-QuoteLike/perl-PPIx-QuoteLike.spec index 384c34e840d..3590a9e06ee 100644 --- a/specs/p/perl-PPIx-QuoteLike/perl-PPIx-QuoteLike.spec +++ b/specs/p/perl-PPIx-QuoteLike/perl-PPIx-QuoteLike.spec @@ -6,7 +6,7 @@ Name: perl-PPIx-QuoteLike Version: 0.023 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Parse Perl string literals and string-literal-like things License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/PPIx-QuoteLike diff --git a/specs/p/perl-PPIx-Regexp/perl-PPIx-Regexp.spec b/specs/p/perl-PPIx-Regexp/perl-PPIx-Regexp.spec index 5a42019bbc2..6a21d6c651d 100644 --- a/specs/p/perl-PPIx-Regexp/perl-PPIx-Regexp.spec +++ b/specs/p/perl-PPIx-Regexp/perl-PPIx-Regexp.spec @@ -6,7 +6,7 @@ Name: perl-PPIx-Regexp Version: 0.091 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Represent a regular expression of some sort License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/PPIx-Regexp diff --git a/specs/p/perl-PPIx-Utils/perl-PPIx-Utils.spec b/specs/p/perl-PPIx-Utils/perl-PPIx-Utils.spec index d3bf5e27b5f..f48e9f1a87a 100644 --- a/specs/p/perl-PPIx-Utils/perl-PPIx-Utils.spec +++ b/specs/p/perl-PPIx-Utils/perl-PPIx-Utils.spec @@ -3,7 +3,7 @@ Name: perl-PPIx-Utils Version: 0.004 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Utility functions for PPI License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Package-Anon/perl-Package-Anon.spec b/specs/p/perl-Package-Anon/perl-Package-Anon.spec index 63c4cedb67a..0a53372c91d 100644 --- a/specs/p/perl-Package-Anon/perl-Package-Anon.spec +++ b/specs/p/perl-Package-Anon/perl-Package-Anon.spec @@ -3,7 +3,7 @@ Name: perl-Package-Anon Version: 0.05 -Release: 44%{?dist} +Release: 44%{?dist} Summary: Anonymous packages License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Package-Anon diff --git a/specs/p/perl-Package-DeprecationManager/perl-Package-DeprecationManager.spec b/specs/p/perl-Package-DeprecationManager/perl-Package-DeprecationManager.spec index 60880fab09c..0223b1ce919 100644 --- a/specs/p/perl-Package-DeprecationManager/perl-Package-DeprecationManager.spec +++ b/specs/p/perl-Package-DeprecationManager/perl-Package-DeprecationManager.spec @@ -3,7 +3,7 @@ Name: perl-Package-DeprecationManager Version: 0.18 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Manage deprecation warnings for your distribution License: Artistic-2.0 URL: https://metacpan.org/release/Package-DeprecationManager diff --git a/specs/p/perl-Package-Generator/perl-Package-Generator.spec b/specs/p/perl-Package-Generator/perl-Package-Generator.spec index d82095a59eb..c74ca863f25 100644 --- a/specs/p/perl-Package-Generator/perl-Package-Generator.spec +++ b/specs/p/perl-Package-Generator/perl-Package-Generator.spec @@ -10,7 +10,7 @@ Name: perl-Package-Generator Version: 1.106 -Release: 35%{?dist} +Release: 35%{?dist} Summary: Generate new packages quickly and easily License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Package-Generator diff --git a/specs/p/perl-Package-Stash-XS/perl-Package-Stash-XS.spec b/specs/p/perl-Package-Stash-XS/perl-Package-Stash-XS.spec index 3bf4c94ec82..b0e6088117d 100644 --- a/specs/p/perl-Package-Stash-XS/perl-Package-Stash-XS.spec +++ b/specs/p/perl-Package-Stash-XS/perl-Package-Stash-XS.spec @@ -10,7 +10,7 @@ Name: perl-Package-Stash-XS Version: 0.30 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Faster and more correct implementation of the Package::Stash API License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Package-Stash-XS diff --git a/specs/p/perl-Package-Stash/perl-Package-Stash.spec b/specs/p/perl-Package-Stash/perl-Package-Stash.spec index a193135b014..1f1ee42e420 100644 --- a/specs/p/perl-Package-Stash/perl-Package-Stash.spec +++ b/specs/p/perl-Package-Stash/perl-Package-Stash.spec @@ -10,7 +10,7 @@ Name: perl-Package-Stash Version: 0.40 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Routines for manipulating stashes License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Package-Stash diff --git a/specs/p/perl-PadWalker/perl-PadWalker.spec b/specs/p/perl-PadWalker/perl-PadWalker.spec index ed3357b2655..92e35c4227c 100644 --- a/specs/p/perl-PadWalker/perl-PadWalker.spec +++ b/specs/p/perl-PadWalker/perl-PadWalker.spec @@ -3,7 +3,7 @@ Name: perl-PadWalker Version: 2.5 -Release: 19%{?dist} +Release: 19%{?dist} Summary: Play with other people's lexical variables License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/PadWalker diff --git a/specs/p/perl-Paper-Specs/perl-Paper-Specs.spec b/specs/p/perl-Paper-Specs/perl-Paper-Specs.spec index 87e0f096229..88f9e770da5 100644 --- a/specs/p/perl-Paper-Specs/perl-Paper-Specs.spec +++ b/specs/p/perl-Paper-Specs/perl-Paper-Specs.spec @@ -3,7 +3,7 @@ Name: perl-Paper-Specs Version: 0.10 -Release: 38%{?dist} +Release: 38%{?dist} Summary: Size and layout information for paper stock, forms, and labels License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Paper-Specs diff --git a/specs/p/perl-Parallel-ForkManager/perl-Parallel-ForkManager.spec b/specs/p/perl-Parallel-ForkManager/perl-Parallel-ForkManager.spec index 2fb16fe30ba..7b963527092 100644 --- a/specs/p/perl-Parallel-ForkManager/perl-Parallel-ForkManager.spec +++ b/specs/p/perl-Parallel-ForkManager/perl-Parallel-ForkManager.spec @@ -3,7 +3,7 @@ Name: perl-Parallel-ForkManager Version: 2.03 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Simple parallel processing fork manager License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Parallel-ForkManager diff --git a/specs/p/perl-Params-Check/perl-Params-Check.spec b/specs/p/perl-Params-Check/perl-Params-Check.spec index a16883407ea..d3dba65f1f1 100644 --- a/specs/p/perl-Params-Check/perl-Params-Check.spec +++ b/specs/p/perl-Params-Check/perl-Params-Check.spec @@ -5,7 +5,7 @@ Name: perl-Params-Check # Epoch to compete with perl.spec Epoch: 1 Version: 0.38 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Generic input parsing/checking mechanism License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Params-Check diff --git a/specs/p/perl-Params-Classify/perl-Params-Classify.spec b/specs/p/perl-Params-Classify/perl-Params-Classify.spec index 46af20d7ccd..d18bcc5eb15 100644 --- a/specs/p/perl-Params-Classify/perl-Params-Classify.spec +++ b/specs/p/perl-Params-Classify/perl-Params-Classify.spec @@ -10,7 +10,7 @@ Name: perl-Params-Classify Version: 0.015 -Release: 28%{?dist} +Release: 28%{?dist} Summary: Argument type classification License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Params-Classify diff --git a/specs/p/perl-Params-Coerce/perl-Params-Coerce.spec b/specs/p/perl-Params-Coerce/perl-Params-Coerce.spec index cca65dcb52f..fe4e5dc3539 100644 --- a/specs/p/perl-Params-Coerce/perl-Params-Coerce.spec +++ b/specs/p/perl-Params-Coerce/perl-Params-Coerce.spec @@ -3,7 +3,7 @@ Name: perl-Params-Coerce Version: 0.15 -Release: 16%{?dist} +Release: 16%{?dist} Summary: Allows your classes to do coercion of parameters License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Params-Coerce diff --git a/specs/p/perl-Params-Util/perl-Params-Util.spec b/specs/p/perl-Params-Util/perl-Params-Util.spec index 5264197ffca..c8e6aff8261 100644 --- a/specs/p/perl-Params-Util/perl-Params-Util.spec +++ b/specs/p/perl-Params-Util/perl-Params-Util.spec @@ -3,7 +3,7 @@ Name: perl-Params-Util Version: 1.102 -Release: 20%{?dist} +Release: 20%{?dist} Summary: Simple standalone parameter-checking functions License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Params-Util diff --git a/specs/p/perl-Params-Validate/perl-Params-Validate.spec b/specs/p/perl-Params-Validate/perl-Params-Validate.spec index 4f4984000cd..9cab7e6c35b 100644 --- a/specs/p/perl-Params-Validate/perl-Params-Validate.spec +++ b/specs/p/perl-Params-Validate/perl-Params-Validate.spec @@ -4,7 +4,7 @@ Summary: Params-Validate Perl module Name: perl-Params-Validate Version: 1.31 -Release: 13%{?dist} +Release: 13%{?dist} # One file is GPL-1.0-or-later OR Artistic-1.0-Perl (c/ppport.h) License: Artistic-2.0 AND (GPL-1.0-or-later OR Artistic-1.0-Perl) URL: https://metacpan.org/release/Params-Validate diff --git a/specs/p/perl-Params-ValidationCompiler/perl-Params-ValidationCompiler.spec b/specs/p/perl-Params-ValidationCompiler/perl-Params-ValidationCompiler.spec index 0593a6a08d5..203513f64d4 100644 --- a/specs/p/perl-Params-ValidationCompiler/perl-Params-ValidationCompiler.spec +++ b/specs/p/perl-Params-ValidationCompiler/perl-Params-ValidationCompiler.spec @@ -10,7 +10,7 @@ Name: perl-Params-ValidationCompiler Version: 0.31 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Build an optimized subroutine parameter validator once, use it forever License: Artistic-2.0 URL: https://metacpan.org/release/Params-ValidationCompiler diff --git a/specs/p/perl-Parse-DebControl/perl-Parse-DebControl.spec b/specs/p/perl-Parse-DebControl/perl-Parse-DebControl.spec index c2cb3860d44..e5271cb548d 100644 --- a/specs/p/perl-Parse-DebControl/perl-Parse-DebControl.spec +++ b/specs/p/perl-Parse-DebControl/perl-Parse-DebControl.spec @@ -3,7 +3,7 @@ Name: perl-Parse-DebControl Version: 2.005 -Release: 35%{?dist} +Release: 35%{?dist} Summary: Easy OO parsing of debian control-like files License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Parse-Distname/perl-Parse-Distname.spec b/specs/p/perl-Parse-Distname/perl-Parse-Distname.spec index f7440f38ed3..38f519075c6 100644 --- a/specs/p/perl-Parse-Distname/perl-Parse-Distname.spec +++ b/specs/p/perl-Parse-Distname/perl-Parse-Distname.spec @@ -3,7 +3,7 @@ Name: perl-Parse-Distname Version: 0.05 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Parse a distribution name License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/dist/Parse-Distname diff --git a/specs/p/perl-Parse-PMFile/perl-Parse-PMFile.spec b/specs/p/perl-Parse-PMFile/perl-Parse-PMFile.spec index ec5d9f82d20..a01dd9898da 100644 --- a/specs/p/perl-Parse-PMFile/perl-Parse-PMFile.spec +++ b/specs/p/perl-Parse-PMFile/perl-Parse-PMFile.spec @@ -6,7 +6,7 @@ Name: perl-Parse-PMFile Version: 0.47 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Parses .pm file as PAUSE does License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Parse-PMFile diff --git a/specs/p/perl-Parse-RecDescent/perl-Parse-RecDescent.spec b/specs/p/perl-Parse-RecDescent/perl-Parse-RecDescent.spec index d13d1da1a03..41e76884dbf 100644 --- a/specs/p/perl-Parse-RecDescent/perl-Parse-RecDescent.spec +++ b/specs/p/perl-Parse-RecDescent/perl-Parse-RecDescent.spec @@ -3,7 +3,7 @@ Name: perl-Parse-RecDescent Version: 1.967015 -Release: 26%{?dist} +Release: 26%{?dist} Summary: Generate Recursive-Descent Parsers License: ( GPL-1.0-or-later OR Artistic-1.0-Perl ) OR ( GPL-2.0-or-later OR Artistic-1.0-Perl ) # demo/demo_another_Cgrammar.pl: GPLv2+ or Artistic diff --git a/specs/p/perl-Parse-Yapp/perl-Parse-Yapp.spec b/specs/p/perl-Parse-Yapp/perl-Parse-Yapp.spec index 5cf3f815fa1..9c76af39d9c 100644 --- a/specs/p/perl-Parse-Yapp/perl-Parse-Yapp.spec +++ b/specs/p/perl-Parse-Yapp/perl-Parse-Yapp.spec @@ -6,7 +6,7 @@ Name: perl-Parse-Yapp # Keep 2-digit version for history Version: %{cpan_version} -Release: 23%{?dist} +Release: 23%{?dist} Summary: Perl extension for generating and using LALR parsers License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Parse-Yapp diff --git a/specs/p/perl-Path-Class/perl-Path-Class.spec b/specs/p/perl-Path-Class/perl-Path-Class.spec index 839ffe2ae70..d360758d111 100644 --- a/specs/p/perl-Path-Class/perl-Path-Class.spec +++ b/specs/p/perl-Path-Class/perl-Path-Class.spec @@ -3,7 +3,7 @@ Name: perl-Path-Class Version: 0.37 -Release: 31%{?dist} +Release: 31%{?dist} Summary: Cross-platform path specification manipulation License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Path-Class diff --git a/specs/p/perl-Path-Tiny/perl-Path-Tiny.spec b/specs/p/perl-Path-Tiny/perl-Path-Tiny.spec index 980e6d68608..b705ccb3a94 100644 --- a/specs/p/perl-Path-Tiny/perl-Path-Tiny.spec +++ b/specs/p/perl-Path-Tiny/perl-Path-Tiny.spec @@ -10,7 +10,7 @@ Name: perl-Path-Tiny Version: 0.150 -Release: 3%{?dist} +Release: 3%{?dist} Summary: File path utility License: Apache-2.0 URL: https://metacpan.org/release/Path-Tiny diff --git a/specs/p/perl-PathTools/perl-PathTools.spec b/specs/p/perl-PathTools/perl-PathTools.spec index 960caa63d83..de9b14c9339 100644 --- a/specs/p/perl-PathTools/perl-PathTools.spec +++ b/specs/p/perl-PathTools/perl-PathTools.spec @@ -5,7 +5,7 @@ Name: perl-PathTools Version: 3.94 -Release: 521%{?dist} +Release: 521%{?dist} Summary: PathTools Perl module (Cwd, File::Spec) # Cwd.xs: BSD-3-Clause # other files: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Pegex/perl-Pegex.spec b/specs/p/perl-Pegex/perl-Pegex.spec index a182209c553..c5bd1c04bc8 100644 --- a/specs/p/perl-Pegex/perl-Pegex.spec +++ b/specs/p/perl-Pegex/perl-Pegex.spec @@ -3,7 +3,7 @@ Name: perl-Pegex Version: 0.75 -Release: 19%{?dist} +Release: 19%{?dist} Summary: Pegex Parser Generator # inc/lib/TestML: GPL-1.0-or-later OR Artistic-1.0-Perl (bundled from # TestML-0.46) diff --git a/specs/p/perl-Perl-Critic-Deprecated/perl-Perl-Critic-Deprecated.spec b/specs/p/perl-Perl-Critic-Deprecated/perl-Perl-Critic-Deprecated.spec index 78795ebee01..add0c69dc25 100644 --- a/specs/p/perl-Perl-Critic-Deprecated/perl-Perl-Critic-Deprecated.spec +++ b/specs/p/perl-Perl-Critic-Deprecated/perl-Perl-Critic-Deprecated.spec @@ -3,7 +3,7 @@ Name: perl-Perl-Critic-Deprecated Version: 1.119 -Release: 34%{?dist} +Release: 34%{?dist} Summary: Perl::Critic policies that have been superseded by others License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Perl-Critic-Deprecated diff --git a/specs/p/perl-Perl-Critic-Lax/perl-Perl-Critic-Lax.spec b/specs/p/perl-Perl-Critic-Lax/perl-Perl-Critic-Lax.spec index 82ce89aea52..5b4089aa37e 100644 --- a/specs/p/perl-Perl-Critic-Lax/perl-Perl-Critic-Lax.spec +++ b/specs/p/perl-Perl-Critic-Lax/perl-Perl-Critic-Lax.spec @@ -3,7 +3,7 @@ Name: perl-Perl-Critic-Lax Version: 0.014 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Policies that let you slide on common exceptions License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Perl-Critic-Lax diff --git a/specs/p/perl-Perl-Critic-More/perl-Perl-Critic-More.spec b/specs/p/perl-Perl-Critic-More/perl-Perl-Critic-More.spec index 286ebac979d..c18e68c525d 100644 --- a/specs/p/perl-Perl-Critic-More/perl-Perl-Critic-More.spec +++ b/specs/p/perl-Perl-Critic-More/perl-Perl-Critic-More.spec @@ -3,7 +3,7 @@ Name: perl-Perl-Critic-More Version: 1.003 -Release: 34%{?dist} +Release: 34%{?dist} Summary: Supplemental policies for Perl::Critic License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Perl-Critic-More diff --git a/specs/p/perl-Perl-Critic-Pulp/perl-Perl-Critic-Pulp.spec b/specs/p/perl-Perl-Critic-Pulp/perl-Perl-Critic-Pulp.spec index c782938cbef..a45df216325 100644 --- a/specs/p/perl-Perl-Critic-Pulp/perl-Perl-Critic-Pulp.spec +++ b/specs/p/perl-Perl-Critic-Pulp/perl-Perl-Critic-Pulp.spec @@ -3,7 +3,7 @@ Name: perl-Perl-Critic-Pulp Version: 100 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Some add-on perlcritic policies License: GPL-3.0-or-later URL: https://metacpan.org/release/Perl-Critic-Pulp diff --git a/specs/p/perl-Perl-Critic/perl-Perl-Critic.spec b/specs/p/perl-Perl-Critic/perl-Perl-Critic.spec index 566dea6fc6d..43423cb0fdc 100644 --- a/specs/p/perl-Perl-Critic/perl-Perl-Critic.spec +++ b/specs/p/perl-Perl-Critic/perl-Perl-Critic.spec @@ -10,7 +10,7 @@ Name: perl-Perl-Critic Version: 1.156 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Critique Perl source code for best-practices License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Perl-Critic diff --git a/specs/p/perl-Perl-Destruct-Level/perl-Perl-Destruct-Level.spec b/specs/p/perl-Perl-Destruct-Level/perl-Perl-Destruct-Level.spec index 6576cc3d996..0c424ed964c 100644 --- a/specs/p/perl-Perl-Destruct-Level/perl-Perl-Destruct-Level.spec +++ b/specs/p/perl-Perl-Destruct-Level/perl-Perl-Destruct-Level.spec @@ -4,7 +4,7 @@ Name: perl-Perl-Destruct-Level Summary: Allows you to change perl's internal destruction level Version: 0.02 -Release: 45%{?dist} +Release: 45%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Perl-Destruct-Level Source0: https://cpan.metacpan.org/modules/by-module/Perl/Perl-Destruct-Level-%{version}.tar.gz diff --git a/specs/p/perl-Perl-MinimumVersion/perl-Perl-MinimumVersion.spec b/specs/p/perl-Perl-MinimumVersion/perl-Perl-MinimumVersion.spec index 56a9bfc0053..f73f80203c9 100644 --- a/specs/p/perl-Perl-MinimumVersion/perl-Perl-MinimumVersion.spec +++ b/specs/p/perl-Perl-MinimumVersion/perl-Perl-MinimumVersion.spec @@ -3,7 +3,7 @@ Name: perl-Perl-MinimumVersion Version: 1.44 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Find a minimum required version of perl for Perl code License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Perl-MinimumVersion diff --git a/specs/p/perl-Perl-OSType/perl-Perl-OSType.spec b/specs/p/perl-Perl-OSType/perl-Perl-OSType.spec index 957198bdc07..a05baec0484 100644 --- a/specs/p/perl-Perl-OSType/perl-Perl-OSType.spec +++ b/specs/p/perl-Perl-OSType/perl-Perl-OSType.spec @@ -6,7 +6,7 @@ Name: perl-Perl-OSType Version: 1.010 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Map Perl operating system names to generic types License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Perl-OSType diff --git a/specs/p/perl-Perl-PrereqScanner-NotQuiteLite/perl-Perl-PrereqScanner-NotQuiteLite.spec b/specs/p/perl-Perl-PrereqScanner-NotQuiteLite/perl-Perl-PrereqScanner-NotQuiteLite.spec index 13429e8eafd..ad2ae4d7048 100644 --- a/specs/p/perl-Perl-PrereqScanner-NotQuiteLite/perl-Perl-PrereqScanner-NotQuiteLite.spec +++ b/specs/p/perl-Perl-PrereqScanner-NotQuiteLite/perl-Perl-PrereqScanner-NotQuiteLite.spec @@ -3,7 +3,7 @@ Name: perl-Perl-PrereqScanner-NotQuiteLite Version: 0.9917 -Release: 8%{?dist} +Release: 8%{?dist} Summary: A tool to scan your Perl code for its prerequisites License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Perl-PrereqScanner-NotQuiteLite diff --git a/specs/p/perl-Perl-Version/perl-Perl-Version.spec b/specs/p/perl-Perl-Version/perl-Perl-Version.spec index 96fa2806f8d..304877fe426 100644 --- a/specs/p/perl-Perl-Version/perl-Perl-Version.spec +++ b/specs/p/perl-Perl-Version/perl-Perl-Version.spec @@ -3,7 +3,7 @@ Name: perl-Perl-Version Version: 1.018 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Parse and manipulate Perl version strings License: Artistic-2.0 URL: https://metacpan.org/release/Perl-Version diff --git a/specs/p/perl-Perl4-CoreLibs/perl-Perl4-CoreLibs.spec b/specs/p/perl-Perl4-CoreLibs/perl-Perl4-CoreLibs.spec index a82ddf2221a..b2be2de0571 100644 --- a/specs/p/perl-Perl4-CoreLibs/perl-Perl4-CoreLibs.spec +++ b/specs/p/perl-Perl4-CoreLibs/perl-Perl4-CoreLibs.spec @@ -3,7 +3,7 @@ Name: perl-Perl4-CoreLibs Version: 0.005 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Libraries historically supplied with Perl 4 License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Perl4-CoreLibs diff --git a/specs/p/perl-PerlIO-utf8_strict/perl-PerlIO-utf8_strict.spec b/specs/p/perl-PerlIO-utf8_strict/perl-PerlIO-utf8_strict.spec index 1e94b2e9490..85f1bcb7f0a 100644 --- a/specs/p/perl-PerlIO-utf8_strict/perl-PerlIO-utf8_strict.spec +++ b/specs/p/perl-PerlIO-utf8_strict/perl-PerlIO-utf8_strict.spec @@ -3,7 +3,7 @@ Name: perl-PerlIO-utf8_strict Version: 0.010 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Fast and correct UTF-8 I/O License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/PerlIO-utf8_strict diff --git a/specs/p/perl-PerlIO-via-QuotedPrint/perl-PerlIO-via-QuotedPrint.spec b/specs/p/perl-PerlIO-via-QuotedPrint/perl-PerlIO-via-QuotedPrint.spec index 84af84e3591..903853bca9e 100644 --- a/specs/p/perl-PerlIO-via-QuotedPrint/perl-PerlIO-via-QuotedPrint.spec +++ b/specs/p/perl-PerlIO-via-QuotedPrint/perl-PerlIO-via-QuotedPrint.spec @@ -3,7 +3,7 @@ Name: perl-PerlIO-via-QuotedPrint Version: 0.10 -Release: 521%{?dist} +Release: 521%{?dist} Summary: PerlIO layer for quoted-printable strings License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/PerlIO-via-QuotedPrint diff --git a/specs/p/perl-Pod-Checker/perl-Pod-Checker.spec b/specs/p/perl-Pod-Checker/perl-Pod-Checker.spec index 4c85499dee5..4e460e37e3a 100644 --- a/specs/p/perl-Pod-Checker/perl-Pod-Checker.spec +++ b/specs/p/perl-Pod-Checker/perl-Pod-Checker.spec @@ -5,7 +5,7 @@ Name: perl-Pod-Checker # Compete with perl.spec Epoch: 4 Version: 1.77 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Check POD documents for syntax errors License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Pod-Checker diff --git a/specs/p/perl-Pod-Coverage-Moose/perl-Pod-Coverage-Moose.spec b/specs/p/perl-Pod-Coverage-Moose/perl-Pod-Coverage-Moose.spec index 236f79fcd52..803776e0ca7 100644 --- a/specs/p/perl-Pod-Coverage-Moose/perl-Pod-Coverage-Moose.spec +++ b/specs/p/perl-Pod-Coverage-Moose/perl-Pod-Coverage-Moose.spec @@ -3,7 +3,7 @@ Name: perl-Pod-Coverage-Moose Version: 0.08 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Pod::Coverage extension for Moose License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Pod-Coverage-Moose diff --git a/specs/p/perl-Pod-Coverage-TrustPod/perl-Pod-Coverage-TrustPod.spec b/specs/p/perl-Pod-Coverage-TrustPod/perl-Pod-Coverage-TrustPod.spec index 4333538832f..eff398e8688 100644 --- a/specs/p/perl-Pod-Coverage-TrustPod/perl-Pod-Coverage-TrustPod.spec +++ b/specs/p/perl-Pod-Coverage-TrustPod/perl-Pod-Coverage-TrustPod.spec @@ -3,7 +3,7 @@ Name: perl-Pod-Coverage-TrustPod Version: 0.100006 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Allow a module's pod to contain Pod::Coverage hints License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Pod-Coverage-TrustPod diff --git a/specs/p/perl-Pod-Coverage/perl-Pod-Coverage.spec b/specs/p/perl-Pod-Coverage/perl-Pod-Coverage.spec index 969d291b0a3..231cdac7f0f 100644 --- a/specs/p/perl-Pod-Coverage/perl-Pod-Coverage.spec +++ b/specs/p/perl-Pod-Coverage/perl-Pod-Coverage.spec @@ -3,7 +3,7 @@ Name: perl-Pod-Coverage Version: 0.23 -Release: 36%{?dist} +Release: 36%{?dist} Summary: Checks if the documentation of a module is comprehensive License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Pod-Coverage diff --git a/specs/p/perl-Pod-Escapes/perl-Pod-Escapes.spec b/specs/p/perl-Pod-Escapes/perl-Pod-Escapes.spec index d76d9462774..4b300ca9f2e 100644 --- a/specs/p/perl-Pod-Escapes/perl-Pod-Escapes.spec +++ b/specs/p/perl-Pod-Escapes/perl-Pod-Escapes.spec @@ -5,7 +5,7 @@ Name: perl-Pod-Escapes # Compete with perl.spec Epoch: 1 Version: 1.07 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Resolve POD escape sequences License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Pod-Escapes diff --git a/specs/p/perl-Pod-Eventual/perl-Pod-Eventual.spec b/specs/p/perl-Pod-Eventual/perl-Pod-Eventual.spec index fc28cafe96b..5442239ec46 100644 --- a/specs/p/perl-Pod-Eventual/perl-Pod-Eventual.spec +++ b/specs/p/perl-Pod-Eventual/perl-Pod-Eventual.spec @@ -3,7 +3,7 @@ Name: perl-Pod-Eventual Version: 0.094003 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Read a POD document as a series of trivial events License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Pod-Eventual diff --git a/specs/p/perl-Pod-Markdown/perl-Pod-Markdown.spec b/specs/p/perl-Pod-Markdown/perl-Pod-Markdown.spec index 4a883474e63..b3c61543a21 100644 --- a/specs/p/perl-Pod-Markdown/perl-Pod-Markdown.spec +++ b/specs/p/perl-Pod-Markdown/perl-Pod-Markdown.spec @@ -3,7 +3,7 @@ Name: perl-Pod-Markdown Version: 3.400 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Convert POD to Markdown License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Pod-Markdown diff --git a/specs/p/perl-Pod-MinimumVersion/perl-Pod-MinimumVersion.spec b/specs/p/perl-Pod-MinimumVersion/perl-Pod-MinimumVersion.spec index 47b015006ec..3c070719881 100644 --- a/specs/p/perl-Pod-MinimumVersion/perl-Pod-MinimumVersion.spec +++ b/specs/p/perl-Pod-MinimumVersion/perl-Pod-MinimumVersion.spec @@ -3,7 +3,7 @@ Name: perl-Pod-MinimumVersion Version: 50 -Release: 44%{?dist} +Release: 44%{?dist} Summary: Perl version for POD directives used License: GPL-3.0-or-later URL: https://metacpan.org/release/Pod-MinimumVersion diff --git a/specs/p/perl-Pod-POM/perl-Pod-POM.spec b/specs/p/perl-Pod-POM/perl-Pod-POM.spec index 477cf52ba2f..26b16be3e74 100644 --- a/specs/p/perl-Pod-POM/perl-Pod-POM.spec +++ b/specs/p/perl-Pod-POM/perl-Pod-POM.spec @@ -5,7 +5,7 @@ Name: perl-Pod-POM Version: 2.01 -Release: 32%{?dist} +Release: 32%{?dist} Summary: Object-oriented interface to Perl POD documents # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Pod-Parser/perl-Pod-Parser.spec b/specs/p/perl-Pod-Parser/perl-Pod-Parser.spec index e12cd0d703e..40184b4817f 100644 --- a/specs/p/perl-Pod-Parser/perl-Pod-Parser.spec +++ b/specs/p/perl-Pod-Parser/perl-Pod-Parser.spec @@ -10,7 +10,7 @@ Name: perl-Pod-Parser Version: 1.67 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Basic perl modules for handling Plain Old Documentation (POD) License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Pod-Parser diff --git a/specs/p/perl-Pod-Perldoc/perl-Pod-Perldoc.spec b/specs/p/perl-Pod-Perldoc/perl-Pod-Perldoc.spec index cfa51a0293e..c4c4583b70b 100644 --- a/specs/p/perl-Pod-Perldoc/perl-Pod-Perldoc.spec +++ b/specs/p/perl-Pod-Perldoc/perl-Pod-Perldoc.spec @@ -11,7 +11,7 @@ Name: perl-Pod-Perldoc # let's overwrite the module from perl.srpm Version: 3.28.01 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Look up Perl documentation in Pod format License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Pod-Perldoc diff --git a/specs/p/perl-Pod-Readme/perl-Pod-Readme.spec b/specs/p/perl-Pod-Readme/perl-Pod-Readme.spec index ece6bcf32ce..98a2fe76c4a 100644 --- a/specs/p/perl-Pod-Readme/perl-Pod-Readme.spec +++ b/specs/p/perl-Pod-Readme/perl-Pod-Readme.spec @@ -3,7 +3,7 @@ Name: perl-Pod-Readme Version: 1.2.3 -Release: 21%{?dist} +Release: 21%{?dist} Summary: Intelligently generate a README file from POD License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Pod-Readme diff --git a/specs/p/perl-Pod-Simple/perl-Pod-Simple.spec b/specs/p/perl-Pod-Simple/perl-Pod-Simple.spec index a2a85ffae45..9d3fd93a50d 100644 --- a/specs/p/perl-Pod-Simple/perl-Pod-Simple.spec +++ b/specs/p/perl-Pod-Simple/perl-Pod-Simple.spec @@ -5,7 +5,7 @@ Name: perl-Pod-Simple # Epoch to compete with perl.spec Epoch: 1 Version: 3.47 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Framework for parsing POD documentation License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Pod-Simple diff --git a/specs/p/perl-Pod-Spell-CommonMistakes/perl-Pod-Spell-CommonMistakes.spec b/specs/p/perl-Pod-Spell-CommonMistakes/perl-Pod-Spell-CommonMistakes.spec index 921394f6cb7..ab0f724f407 100644 --- a/specs/p/perl-Pod-Spell-CommonMistakes/perl-Pod-Spell-CommonMistakes.spec +++ b/specs/p/perl-Pod-Spell-CommonMistakes/perl-Pod-Spell-CommonMistakes.spec @@ -3,7 +3,7 @@ Name: perl-Pod-Spell-CommonMistakes Version: 1.002 -Release: 33%{?dist} +Release: 33%{?dist} Summary: Catches common typos in POD # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Pod-Spell/perl-Pod-Spell.spec b/specs/p/perl-Pod-Spell/perl-Pod-Spell.spec index c58b02b3723..b920e68bf34 100644 --- a/specs/p/perl-Pod-Spell/perl-Pod-Spell.spec +++ b/specs/p/perl-Pod-Spell/perl-Pod-Spell.spec @@ -3,7 +3,7 @@ Name: perl-Pod-Spell Version: 1.27 -Release: 4%{?dist} +Release: 4%{?dist} Summary: A formatter for spell-checking POD License: Artistic-2.0 URL: https://metacpan.org/release/Pod-Spell diff --git a/specs/p/perl-Pod-Usage/perl-Pod-Usage.spec b/specs/p/perl-Pod-Usage/perl-Pod-Usage.spec index b960ba79bfa..5de5f6a8aa8 100644 --- a/specs/p/perl-Pod-Usage/perl-Pod-Usage.spec +++ b/specs/p/perl-Pod-Usage/perl-Pod-Usage.spec @@ -5,7 +5,7 @@ Name: perl-Pod-Usage # Compete with perl.spec's epoch Epoch: 4 Version: 2.05 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Print a usage message from embedded POD documentation # License clarification CPAN RT#102529 License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Probe-Perl/perl-Probe-Perl.spec b/specs/p/perl-Probe-Perl/perl-Probe-Perl.spec index 5c3fe572d20..9e48ce9b009 100644 --- a/specs/p/perl-Probe-Perl/perl-Probe-Perl.spec +++ b/specs/p/perl-Probe-Perl/perl-Probe-Perl.spec @@ -3,7 +3,7 @@ Name: perl-Probe-Perl Version: 0.03 -Release: 34%{?dist} +Release: 34%{?dist} Summary: Information about the currently running perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Probe-Perl diff --git a/specs/p/perl-Readonly/perl-Readonly.spec b/specs/p/perl-Readonly/perl-Readonly.spec index 2cb4d0b8e7a..3b5c2cb414f 100644 --- a/specs/p/perl-Readonly/perl-Readonly.spec +++ b/specs/p/perl-Readonly/perl-Readonly.spec @@ -3,7 +3,7 @@ Name: perl-Readonly Version: 2.05 -Release: 30%{?dist} +Release: 30%{?dist} Summary: Facility for creating read-only scalars, arrays, hashes License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Readonly diff --git a/specs/p/perl-Ref-Util-XS/perl-Ref-Util-XS.spec b/specs/p/perl-Ref-Util-XS/perl-Ref-Util-XS.spec index 4b97e3dac69..fd0ee16cf16 100644 --- a/specs/p/perl-Ref-Util-XS/perl-Ref-Util-XS.spec +++ b/specs/p/perl-Ref-Util-XS/perl-Ref-Util-XS.spec @@ -10,7 +10,7 @@ Name: perl-Ref-Util-XS Version: 0.117 -Release: 28%{?dist} +Release: 28%{?dist} Summary: Utility functions for checking references License: MIT URL: https://metacpan.org/release/Ref-Util-XS diff --git a/specs/p/perl-Ref-Util/perl-Ref-Util.spec b/specs/p/perl-Ref-Util/perl-Ref-Util.spec index 2be7fc50daa..514b99f10cf 100644 --- a/specs/p/perl-Ref-Util/perl-Ref-Util.spec +++ b/specs/p/perl-Ref-Util/perl-Ref-Util.spec @@ -10,7 +10,7 @@ Name: perl-Ref-Util Version: 0.204 -Release: 24%{?dist} +Release: 24%{?dist} Summary: Utility functions for checking references License: MIT URL: https://metacpan.org/release/Ref-Util diff --git a/specs/p/perl-Regexp-Common/perl-Regexp-Common.spec b/specs/p/perl-Regexp-Common/perl-Regexp-Common.spec index c8376760013..f8fddf976c7 100644 --- a/specs/p/perl-Regexp-Common/perl-Regexp-Common.spec +++ b/specs/p/perl-Regexp-Common/perl-Regexp-Common.spec @@ -3,7 +3,7 @@ Name: perl-Regexp-Common Version: 2024080801 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Regexp::Common Perl module # Old Artistic 1.0 is also valid, but we won't list it here since it is non-free. # Also, it would throw off the automated license check and flag this package. diff --git a/specs/p/perl-Regexp-IPv6/perl-Regexp-IPv6.spec b/specs/p/perl-Regexp-IPv6/perl-Regexp-IPv6.spec index ef343429dda..dc113bf1a44 100644 --- a/specs/p/perl-Regexp-IPv6/perl-Regexp-IPv6.spec +++ b/specs/p/perl-Regexp-IPv6/perl-Regexp-IPv6.spec @@ -3,7 +3,7 @@ Name: perl-Regexp-IPv6 Version: 0.03 -Release: 43%{?dist} +Release: 43%{?dist} Summary: Regular expression for IPv6 addresses License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Regexp-IPv6 diff --git a/specs/p/perl-Regexp-Pattern-Perl/perl-Regexp-Pattern-Perl.spec b/specs/p/perl-Regexp-Pattern-Perl/perl-Regexp-Pattern-Perl.spec index 729bc4c8b2d..453e348ee36 100644 --- a/specs/p/perl-Regexp-Pattern-Perl/perl-Regexp-Pattern-Perl.spec +++ b/specs/p/perl-Regexp-Pattern-Perl/perl-Regexp-Pattern-Perl.spec @@ -3,7 +3,7 @@ Name: perl-Regexp-Pattern-Perl Version: 0.007 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Regexp patterns related to Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Regexp-Pattern-Perl/ diff --git a/specs/p/perl-Regexp-Trie/perl-Regexp-Trie.spec b/specs/p/perl-Regexp-Trie/perl-Regexp-Trie.spec index b7da4feb241..5a086dcad49 100644 --- a/specs/p/perl-Regexp-Trie/perl-Regexp-Trie.spec +++ b/specs/p/perl-Regexp-Trie/perl-Regexp-Trie.spec @@ -3,7 +3,7 @@ Name: perl-Regexp-Trie Version: 0.02 -Release: 22%{?dist} +Release: 22%{?dist} Summary: Build trie-ized regexp License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Regexp-Trie diff --git a/specs/p/perl-Return-Type/perl-Return-Type.spec b/specs/p/perl-Return-Type/perl-Return-Type.spec index f9e67527551..5448c489008 100644 --- a/specs/p/perl-Return-Type/perl-Return-Type.spec +++ b/specs/p/perl-Return-Type/perl-Return-Type.spec @@ -3,7 +3,7 @@ Name: perl-Return-Type Version: 0.007 -Release: 16%{?dist} +Release: 16%{?dist} Summary: Specify a return type for a function License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Return-Type diff --git a/specs/p/perl-Role-Tiny/perl-Role-Tiny.spec b/specs/p/perl-Role-Tiny/perl-Role-Tiny.spec index d461a17b580..2cd61a5e4e6 100644 --- a/specs/p/perl-Role-Tiny/perl-Role-Tiny.spec +++ b/specs/p/perl-Role-Tiny/perl-Role-Tiny.spec @@ -3,7 +3,7 @@ Name: perl-Role-Tiny Version: 2.002004 -Release: 15%{?dist} +Release: 15%{?dist} Summary: A nouvelle cuisine portion size slice of Moose License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Role-Tiny diff --git a/specs/p/perl-SGMLSpm/perl-SGMLSpm.spec b/specs/p/perl-SGMLSpm/perl-SGMLSpm.spec index 63791345fcd..8753777cc89 100644 --- a/specs/p/perl-SGMLSpm/perl-SGMLSpm.spec +++ b/specs/p/perl-SGMLSpm/perl-SGMLSpm.spec @@ -3,7 +3,7 @@ Name: perl-SGMLSpm Version: 1.03ii -Release: 66%{?dist} +Release: 66%{?dist} Summary: Perl library for parsing the output of nsgmls License: GPL-2.0-or-later diff --git a/specs/p/perl-SNMP_Session/perl-SNMP_Session.spec b/specs/p/perl-SNMP_Session/perl-SNMP_Session.spec index c668d3246fd..70235b55088 100644 --- a/specs/p/perl-SNMP_Session/perl-SNMP_Session.spec +++ b/specs/p/perl-SNMP_Session/perl-SNMP_Session.spec @@ -3,7 +3,7 @@ Name: perl-SNMP_Session Version: 1.16 -Release: 8%{?dist} +Release: 8%{?dist} Summary: SNMP support for Perl 5 License: Artistic-2.0 diff --git a/specs/p/perl-SOAP-Lite/perl-SOAP-Lite.spec b/specs/p/perl-SOAP-Lite/perl-SOAP-Lite.spec index c76b72b3c0e..4eb8106d630 100644 --- a/specs/p/perl-SOAP-Lite/perl-SOAP-Lite.spec +++ b/specs/p/perl-SOAP-Lite/perl-SOAP-Lite.spec @@ -3,7 +3,7 @@ Name: perl-SOAP-Lite Version: 1.27 -Release: 28%{?dist} +Release: 28%{?dist} Summary: Client and server side SOAP implementation License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/SOAP-Lite diff --git a/specs/p/perl-SQL-Statement/perl-SQL-Statement.spec b/specs/p/perl-SQL-Statement/perl-SQL-Statement.spec index 3b860e1bfa9..ee35f4ee854 100644 --- a/specs/p/perl-SQL-Statement/perl-SQL-Statement.spec +++ b/specs/p/perl-SQL-Statement/perl-SQL-Statement.spec @@ -3,7 +3,7 @@ Name: perl-SQL-Statement Version: 1.414 -Release: 17%{?dist} +Release: 17%{?dist} Summary: SQL parsing and processing engine License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/SQL-Statement diff --git a/specs/p/perl-SUPER/perl-SUPER.spec b/specs/p/perl-SUPER/perl-SUPER.spec index 6bdfa170a0f..2d88d45d0a1 100644 --- a/specs/p/perl-SUPER/perl-SUPER.spec +++ b/specs/p/perl-SUPER/perl-SUPER.spec @@ -3,7 +3,7 @@ Name: perl-SUPER Version: 1.20190531 -Release: 21%{?dist} +Release: 21%{?dist} Summary: Sane superclass method dispatcher License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/SUPER diff --git a/specs/p/perl-Safe-Isa/perl-Safe-Isa.spec b/specs/p/perl-Safe-Isa/perl-Safe-Isa.spec index d15d6238725..67601fd2cdd 100644 --- a/specs/p/perl-Safe-Isa/perl-Safe-Isa.spec +++ b/specs/p/perl-Safe-Isa/perl-Safe-Isa.spec @@ -3,7 +3,7 @@ Name: perl-Safe-Isa Version: 1.000010 -Release: 23%{?dist} +Release: 23%{?dist} Summary: Call isa, can, does and DOES safely on things that may not be objects License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Safe-Isa diff --git a/specs/p/perl-Scalar-List-Utils/perl-Scalar-List-Utils.spec b/specs/p/perl-Scalar-List-Utils/perl-Scalar-List-Utils.spec index e6fad2b9070..23942f5e125 100644 --- a/specs/p/perl-Scalar-List-Utils/perl-Scalar-List-Utils.spec +++ b/specs/p/perl-Scalar-List-Utils/perl-Scalar-List-Utils.spec @@ -4,7 +4,7 @@ Name: perl-Scalar-List-Utils Epoch: 5 Version: 1.70 -Release: 2%{?dist} +Release: 2%{?dist} Summary: A selection of general-utility scalar and list subroutines License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Scalar-List-Utils diff --git a/specs/p/perl-Scalar-Properties/perl-Scalar-Properties.spec b/specs/p/perl-Scalar-Properties/perl-Scalar-Properties.spec index c005be91fa7..24950498eeb 100644 --- a/specs/p/perl-Scalar-Properties/perl-Scalar-Properties.spec +++ b/specs/p/perl-Scalar-Properties/perl-Scalar-Properties.spec @@ -16,7 +16,7 @@ Name: perl-Scalar-Properties Version: 1.100860 -Release: 41%{?dist} +Release: 41%{?dist} Summary: Run-time properties on scalar variables License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Scalar-Properties diff --git a/specs/p/perl-Scope-Guard/perl-Scope-Guard.spec b/specs/p/perl-Scope-Guard/perl-Scope-Guard.spec index 1f62df748d6..5651108f4c3 100644 --- a/specs/p/perl-Scope-Guard/perl-Scope-Guard.spec +++ b/specs/p/perl-Scope-Guard/perl-Scope-Guard.spec @@ -4,7 +4,7 @@ Name: perl-Scope-Guard Summary: Lexically scoped resource management Version: 0.21 -Release: 31%{?dist} +Release: 31%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Scope-Guard Source0: https://cpan.metacpan.org/modules/by-module/Scope/Scope-Guard-%{version}.tar.gz diff --git a/specs/p/perl-Scope-Upper/perl-Scope-Upper.spec b/specs/p/perl-Scope-Upper/perl-Scope-Upper.spec index def2357695b..7c50055a154 100644 --- a/specs/p/perl-Scope-Upper/perl-Scope-Upper.spec +++ b/specs/p/perl-Scope-Upper/perl-Scope-Upper.spec @@ -4,7 +4,7 @@ Name: perl-Scope-Upper Summary: Act on upper scopes Version: 0.34 -Release: 11%{?dist} +Release: 11%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl Source0: https://cpan.metacpan.org/authors/id/V/VP/VPIT/Scope-Upper-%{version}.tar.gz URL: https://metacpan.org/release/Scope-Upper diff --git a/specs/p/perl-Sentinel/perl-Sentinel.spec b/specs/p/perl-Sentinel/perl-Sentinel.spec index 7fe9316c2e6..59be97d5a76 100644 --- a/specs/p/perl-Sentinel/perl-Sentinel.spec +++ b/specs/p/perl-Sentinel/perl-Sentinel.spec @@ -3,7 +3,7 @@ Name: perl-Sentinel Version: 0.07 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Create lightweight SCALARs with get/set callbacks License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Sereal-Decoder/perl-Sereal-Decoder.spec b/specs/p/perl-Sereal-Decoder/perl-Sereal-Decoder.spec index 8397ff89579..a4e1a481471 100644 --- a/specs/p/perl-Sereal-Decoder/perl-Sereal-Decoder.spec +++ b/specs/p/perl-Sereal-Decoder/perl-Sereal-Decoder.spec @@ -6,7 +6,7 @@ Name: perl-Sereal-Decoder Version: 5.004 -Release: 17%{?dist} +Release: 17%{?dist} Summary: Perl deserialization for Sereal format # lib/Sereal/Decoder.pm: GPL+ or Artistic ## Unbundled: diff --git a/specs/p/perl-Sereal-Encoder/perl-Sereal-Encoder.spec b/specs/p/perl-Sereal-Encoder/perl-Sereal-Encoder.spec index 7589d0a2e41..7f9abcb45ca 100644 --- a/specs/p/perl-Sereal-Encoder/perl-Sereal-Encoder.spec +++ b/specs/p/perl-Sereal-Encoder/perl-Sereal-Encoder.spec @@ -10,7 +10,7 @@ Name: perl-Sereal-Encoder Version: 5.004 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Perl serialization into Sereal format # lib/Sereal/Encoder.pm: GPL+ or Artistic # qsort.h: LGPLv2+ (borrowed from glibc) diff --git a/specs/p/perl-Sereal/perl-Sereal.spec b/specs/p/perl-Sereal/perl-Sereal.spec index 41d231c56a0..5c5e40544aa 100644 --- a/specs/p/perl-Sereal/perl-Sereal.spec +++ b/specs/p/perl-Sereal/perl-Sereal.spec @@ -10,7 +10,7 @@ Name: perl-Sereal Version: 5.004 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Fast, compact, powerful binary (de-)serialization # Makefile.PL defines LICENSE License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Socket/perl-Socket.spec b/specs/p/perl-Socket/perl-Socket.spec index 76560bba7d7..81be6f7e539 100644 --- a/specs/p/perl-Socket/perl-Socket.spec +++ b/specs/p/perl-Socket/perl-Socket.spec @@ -4,7 +4,7 @@ Name: perl-Socket Epoch: 4 Version: 2.040 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Networking constants and support functions License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Socket diff --git a/specs/p/perl-Socket6/perl-Socket6.spec b/specs/p/perl-Socket6/perl-Socket6.spec index 8f92cd7599f..9288ac5c574 100644 --- a/specs/p/perl-Socket6/perl-Socket6.spec +++ b/specs/p/perl-Socket6/perl-Socket6.spec @@ -3,7 +3,7 @@ Name: perl-Socket6 Version: 0.29 -Release: 27%{?dist} +Release: 27%{?dist} Summary: IPv6 related part of the C socket.h defines and structure manipulators License: BSD-3-Clause URL: https://metacpan.org/release/Socket6 diff --git a/specs/p/perl-Software-License-CCpack/perl-Software-License-CCpack.spec b/specs/p/perl-Software-License-CCpack/perl-Software-License-CCpack.spec index d434181bed1..a102fde5e82 100644 --- a/specs/p/perl-Software-License-CCpack/perl-Software-License-CCpack.spec +++ b/specs/p/perl-Software-License-CCpack/perl-Software-License-CCpack.spec @@ -18,7 +18,7 @@ Name: perl-Software-License-CCpack Version: 1.11 -Release: 42%{?dist} +Release: 42%{?dist} Summary: Software::License pack for Creative Commons' licenses License: LGPL-3.0-only URL: https://metacpan.org/release/Software-License-CCpack diff --git a/specs/p/perl-Software-License/perl-Software-License.spec b/specs/p/perl-Software-License/perl-Software-License.spec index 3ef333a061b..1eed0f7326b 100644 --- a/specs/p/perl-Software-License/perl-Software-License.spec +++ b/specs/p/perl-Software-License/perl-Software-License.spec @@ -16,7 +16,7 @@ Name: perl-Software-License Version: 0.104007 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Package that provides templated software licenses License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Software-License diff --git a/specs/p/perl-Sort-Key/perl-Sort-Key.spec b/specs/p/perl-Sort-Key/perl-Sort-Key.spec index c3243fcf122..ca9c8e16202 100644 --- a/specs/p/perl-Sort-Key/perl-Sort-Key.spec +++ b/specs/p/perl-Sort-Key/perl-Sort-Key.spec @@ -3,7 +3,7 @@ Name: perl-Sort-Key Version: 1.33 -Release: 36%{?dist} +Release: 36%{?dist} Summary: Fastest way to sort anything in Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Sort-Key diff --git a/specs/p/perl-Sort-Versions/perl-Sort-Versions.spec b/specs/p/perl-Sort-Versions/perl-Sort-Versions.spec index 46ebf0ce1c8..e0a9e79cc5e 100644 --- a/specs/p/perl-Sort-Versions/perl-Sort-Versions.spec +++ b/specs/p/perl-Sort-Versions/perl-Sort-Versions.spec @@ -3,7 +3,7 @@ Name: perl-Sort-Versions Version: 1.62 -Release: 32%{?dist} +Release: 32%{?dist} Summary: Perl module for sorting of revision-like numbers License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Sort-Versions diff --git a/specs/p/perl-Specio/perl-Specio.spec b/specs/p/perl-Specio/perl-Specio.spec index 8ee0cf15e71..7ddf956e7cc 100644 --- a/specs/p/perl-Specio/perl-Specio.spec +++ b/specs/p/perl-Specio/perl-Specio.spec @@ -10,7 +10,7 @@ Name: perl-Specio Version: 0.53 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Type constraints and coercions for Perl # lib/Specio/PartialDump.pm: GPL-1.0-or-later OR Artistic-1.0-Perl # diff --git a/specs/p/perl-Spellunker/perl-Spellunker.spec b/specs/p/perl-Spellunker/perl-Spellunker.spec index 80540e97d9f..c2cc42f71d6 100644 --- a/specs/p/perl-Spellunker/perl-Spellunker.spec +++ b/specs/p/perl-Spellunker/perl-Spellunker.spec @@ -3,7 +3,7 @@ Name: perl-Spellunker Version: 0.4.0 -Release: 34%{?dist} +Release: 34%{?dist} Summary: Pure perl spelling checker implementation License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Spellunker diff --git a/specs/p/perl-Spiffy/perl-Spiffy.spec b/specs/p/perl-Spiffy/perl-Spiffy.spec index c5e3ae15539..81f059205d5 100644 --- a/specs/p/perl-Spiffy/perl-Spiffy.spec +++ b/specs/p/perl-Spiffy/perl-Spiffy.spec @@ -6,7 +6,7 @@ Name: perl-Spiffy Version: 0.46 -Release: 34%{?dist} +Release: 34%{?dist} Summary: Framework for doing object oriented (OO) programming in Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Spiffy diff --git a/specs/p/perl-Storable/perl-Storable.spec b/specs/p/perl-Storable/perl-Storable.spec index f3cec0f97f4..ae0d9e063c4 100644 --- a/specs/p/perl-Storable/perl-Storable.spec +++ b/specs/p/perl-Storable/perl-Storable.spec @@ -5,7 +5,7 @@ Name: perl-Storable Epoch: 1 Version: 3.37 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Persistence for Perl data structures # Storable.pm: GPL+ or Artistic License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-String-CRC32/perl-String-CRC32.spec b/specs/p/perl-String-CRC32/perl-String-CRC32.spec index 1b6acf9799b..e6d853ab0ac 100644 --- a/specs/p/perl-String-CRC32/perl-String-CRC32.spec +++ b/specs/p/perl-String-CRC32/perl-String-CRC32.spec @@ -3,7 +3,7 @@ Name: perl-String-CRC32 Version: 2.100 -Release: 17%{?dist} +Release: 17%{?dist} Summary: Perl interface for cyclic redundancy check generation License: LicenseRef-Fedora-Public-Domain URL: https://metacpan.org/release/String-CRC32 diff --git a/specs/p/perl-String-Escape/perl-String-Escape.spec b/specs/p/perl-String-Escape/perl-String-Escape.spec index d7417a6debb..420d6e0cfdb 100644 --- a/specs/p/perl-String-Escape/perl-String-Escape.spec +++ b/specs/p/perl-String-Escape/perl-String-Escape.spec @@ -3,7 +3,7 @@ Name: perl-String-Escape Version: 2010.002 -Release: 47%{?dist} +Release: 47%{?dist} Summary: String::Escape Perl module # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-String-Format/perl-String-Format.spec b/specs/p/perl-String-Format/perl-String-Format.spec index 8ce87be5d31..04f436c876b 100644 --- a/specs/p/perl-String-Format/perl-String-Format.spec +++ b/specs/p/perl-String-Format/perl-String-Format.spec @@ -3,7 +3,7 @@ Name: perl-String-Format Version: 1.18 -Release: 23%{?dist} +Release: 23%{?dist} Summary: Sprintf-like string formatting capabilities with arbitrary format definitions License: GPL-2.0-only diff --git a/specs/p/perl-String-ShellQuote/perl-String-ShellQuote.spec b/specs/p/perl-String-ShellQuote/perl-String-ShellQuote.spec index 00d17012d58..c06bf49c56a 100644 --- a/specs/p/perl-String-ShellQuote/perl-String-ShellQuote.spec +++ b/specs/p/perl-String-ShellQuote/perl-String-ShellQuote.spec @@ -3,7 +3,7 @@ Name: perl-String-ShellQuote Version: 1.04 -Release: 47%{?dist} +Release: 47%{?dist} Summary: Perl module for quoting strings for passing through the shell License: (GPL-1.0-or-later OR Artistic-1.0-Perl) AND GPL-2.0-or-later URL: https://metacpan.org/release/String-ShellQuote diff --git a/specs/p/perl-Struct-Dumb/perl-Struct-Dumb.spec b/specs/p/perl-Struct-Dumb/perl-Struct-Dumb.spec index 5001fd8c9c6..b28893e8111 100644 --- a/specs/p/perl-Struct-Dumb/perl-Struct-Dumb.spec +++ b/specs/p/perl-Struct-Dumb/perl-Struct-Dumb.spec @@ -3,7 +3,7 @@ Name: perl-Struct-Dumb Version: 0.14 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Make simple lightweight record-like structures License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Sub-Exporter-ForMethods/perl-Sub-Exporter-ForMethods.spec b/specs/p/perl-Sub-Exporter-ForMethods/perl-Sub-Exporter-ForMethods.spec index 53afe9c8204..6e5b9ffd23c 100644 --- a/specs/p/perl-Sub-Exporter-ForMethods/perl-Sub-Exporter-ForMethods.spec +++ b/specs/p/perl-Sub-Exporter-ForMethods/perl-Sub-Exporter-ForMethods.spec @@ -3,7 +3,7 @@ Name: perl-Sub-Exporter-ForMethods Version: 0.100055 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Helper routines for using Sub::Exporter to build methods License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Sub-Exporter-ForMethods diff --git a/specs/p/perl-Sub-Exporter-Lexical/perl-Sub-Exporter-Lexical.spec b/specs/p/perl-Sub-Exporter-Lexical/perl-Sub-Exporter-Lexical.spec index 38a9a52c7d1..c44dd957db8 100644 --- a/specs/p/perl-Sub-Exporter-Lexical/perl-Sub-Exporter-Lexical.spec +++ b/specs/p/perl-Sub-Exporter-Lexical/perl-Sub-Exporter-Lexical.spec @@ -3,7 +3,7 @@ Name: perl-Sub-Exporter-Lexical Version: 1.000 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Export lexically-available subs with Sub::Exporter License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Sub-Exporter-Lexical diff --git a/specs/p/perl-Sub-Exporter-Progressive/perl-Sub-Exporter-Progressive.spec b/specs/p/perl-Sub-Exporter-Progressive/perl-Sub-Exporter-Progressive.spec index 5fb1bd4ae5c..a79f949ba6c 100644 --- a/specs/p/perl-Sub-Exporter-Progressive/perl-Sub-Exporter-Progressive.spec +++ b/specs/p/perl-Sub-Exporter-Progressive/perl-Sub-Exporter-Progressive.spec @@ -3,7 +3,7 @@ Name: perl-Sub-Exporter-Progressive Version: 0.001013 -Release: 28%{?dist} +Release: 28%{?dist} Summary: Only use Sub::Exporter if you need it License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Sub-Exporter-Progressive diff --git a/specs/p/perl-Sub-Exporter/perl-Sub-Exporter.spec b/specs/p/perl-Sub-Exporter/perl-Sub-Exporter.spec index 98be1834a77..d2323c318d9 100644 --- a/specs/p/perl-Sub-Exporter/perl-Sub-Exporter.spec +++ b/specs/p/perl-Sub-Exporter/perl-Sub-Exporter.spec @@ -10,7 +10,7 @@ Name: perl-Sub-Exporter Version: 0.991 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Sophisticated exporter for custom-built routines License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Sub-Exporter diff --git a/specs/p/perl-Sub-Identify/perl-Sub-Identify.spec b/specs/p/perl-Sub-Identify/perl-Sub-Identify.spec index 688d1c190ab..71db89579a8 100644 --- a/specs/p/perl-Sub-Identify/perl-Sub-Identify.spec +++ b/specs/p/perl-Sub-Identify/perl-Sub-Identify.spec @@ -10,7 +10,7 @@ Name: perl-Sub-Identify Version: 0.14 -Release: 32%{?dist} +Release: 32%{?dist} Summary: Retrieve names of code references License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Sub-Identify diff --git a/specs/p/perl-Sub-Infix/perl-Sub-Infix.spec b/specs/p/perl-Sub-Infix/perl-Sub-Infix.spec index db012e5840a..78d50d5c508 100644 --- a/specs/p/perl-Sub-Infix/perl-Sub-Infix.spec +++ b/specs/p/perl-Sub-Infix/perl-Sub-Infix.spec @@ -3,7 +3,7 @@ Name: perl-Sub-Infix Version: 0.004 -Release: 27%{?dist} +Release: 27%{?dist} Summary: Create a fake infix operator License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Sub-Infix diff --git a/specs/p/perl-Sub-Install/perl-Sub-Install.spec b/specs/p/perl-Sub-Install/perl-Sub-Install.spec index 4259136c27e..5f57a1b1085 100644 --- a/specs/p/perl-Sub-Install/perl-Sub-Install.spec +++ b/specs/p/perl-Sub-Install/perl-Sub-Install.spec @@ -10,7 +10,7 @@ Name: perl-Sub-Install Version: 0.929 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Install subroutines into packages easily License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Sub-Install diff --git a/specs/p/perl-Sub-Name/perl-Sub-Name.spec b/specs/p/perl-Sub-Name/perl-Sub-Name.spec index 97e4deae63a..a631ec8c322 100644 --- a/specs/p/perl-Sub-Name/perl-Sub-Name.spec +++ b/specs/p/perl-Sub-Name/perl-Sub-Name.spec @@ -7,7 +7,7 @@ Name: perl-Sub-Name Version: 0.28 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Name - or rename - a sub License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Sub-Name diff --git a/specs/p/perl-Sub-Quote/perl-Sub-Quote.spec b/specs/p/perl-Sub-Quote/perl-Sub-Quote.spec index 1ae594802be..7dcd8c57f0c 100644 --- a/specs/p/perl-Sub-Quote/perl-Sub-Quote.spec +++ b/specs/p/perl-Sub-Quote/perl-Sub-Quote.spec @@ -3,7 +3,7 @@ Name: perl-Sub-Quote Version: 2.006009 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Efficient generation of subroutines via string eval License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Sub-Quote diff --git a/specs/p/perl-Sub-Uplevel/perl-Sub-Uplevel.spec b/specs/p/perl-Sub-Uplevel/perl-Sub-Uplevel.spec index c83299b6f7a..a41ef18190c 100644 --- a/specs/p/perl-Sub-Uplevel/perl-Sub-Uplevel.spec +++ b/specs/p/perl-Sub-Uplevel/perl-Sub-Uplevel.spec @@ -5,7 +5,7 @@ Name: perl-Sub-Uplevel Summary: Apparently run a function in a higher stack frame Epoch: 1 Version: 0.2800 -Release: 26%{?dist} +Release: 26%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Sub-Uplevel Source0: https://cpan.metacpan.org/modules/by-module/Sub/Sub-Uplevel-%{version}.tar.gz diff --git a/specs/p/perl-Symbol-Util/perl-Symbol-Util.spec b/specs/p/perl-Symbol-Util/perl-Symbol-Util.spec index 42445f3cd89..ed2d367a3cd 100644 --- a/specs/p/perl-Symbol-Util/perl-Symbol-Util.spec +++ b/specs/p/perl-Symbol-Util/perl-Symbol-Util.spec @@ -3,7 +3,7 @@ Name: perl-Symbol-Util Version: 0.0203 -Release: 39%{?dist} +Release: 39%{?dist} Summary: Additional utilities for Perl symbols manipulation License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Symbol-Util diff --git a/specs/p/perl-Syntax-Keyword-Defer/perl-Syntax-Keyword-Defer.spec b/specs/p/perl-Syntax-Keyword-Defer/perl-Syntax-Keyword-Defer.spec index 95c0890acfc..baaa0fd8814 100644 --- a/specs/p/perl-Syntax-Keyword-Defer/perl-Syntax-Keyword-Defer.spec +++ b/specs/p/perl-Syntax-Keyword-Defer/perl-Syntax-Keyword-Defer.spec @@ -13,7 +13,7 @@ Name: perl-Syntax-Keyword-Defer Version: 0.11 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Add defer block syntax to Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Syntax-Keyword-Defer diff --git a/specs/p/perl-Syntax-Keyword-Dynamically/perl-Syntax-Keyword-Dynamically.spec b/specs/p/perl-Syntax-Keyword-Dynamically/perl-Syntax-Keyword-Dynamically.spec index a9478226c0d..92f771b75a7 100644 --- a/specs/p/perl-Syntax-Keyword-Dynamically/perl-Syntax-Keyword-Dynamically.spec +++ b/specs/p/perl-Syntax-Keyword-Dynamically/perl-Syntax-Keyword-Dynamically.spec @@ -8,7 +8,7 @@ Name: perl-Syntax-Keyword-Dynamically Version: 0.14 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Dynamically change the value of a variable License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Syntax-Keyword-Dynamically diff --git a/specs/p/perl-Syntax-Keyword-Junction/perl-Syntax-Keyword-Junction.spec b/specs/p/perl-Syntax-Keyword-Junction/perl-Syntax-Keyword-Junction.spec index e77ee4ec89c..c3b1b2d0205 100644 --- a/specs/p/perl-Syntax-Keyword-Junction/perl-Syntax-Keyword-Junction.spec +++ b/specs/p/perl-Syntax-Keyword-Junction/perl-Syntax-Keyword-Junction.spec @@ -6,7 +6,7 @@ Name: perl-Syntax-Keyword-Junction Version: 0.003009 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Perl6 style Junction operators in Perl5 License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Syntax-Keyword-Junction diff --git a/specs/p/perl-Syntax-Keyword-Match/perl-Syntax-Keyword-Match.spec b/specs/p/perl-Syntax-Keyword-Match/perl-Syntax-Keyword-Match.spec index 51b59d7a743..6673c854ea7 100644 --- a/specs/p/perl-Syntax-Keyword-Match/perl-Syntax-Keyword-Match.spec +++ b/specs/p/perl-Syntax-Keyword-Match/perl-Syntax-Keyword-Match.spec @@ -6,7 +6,7 @@ Name: perl-Syntax-Keyword-Match Version: 0.15 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Match/case syntax for Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Syntax-Keyword-Match diff --git a/specs/p/perl-Syntax-Keyword-MultiSub/perl-Syntax-Keyword-MultiSub.spec b/specs/p/perl-Syntax-Keyword-MultiSub/perl-Syntax-Keyword-MultiSub.spec index 9e6894d261c..d30f64ff6a7 100644 --- a/specs/p/perl-Syntax-Keyword-MultiSub/perl-Syntax-Keyword-MultiSub.spec +++ b/specs/p/perl-Syntax-Keyword-MultiSub/perl-Syntax-Keyword-MultiSub.spec @@ -6,7 +6,7 @@ Name: perl-Syntax-Keyword-MultiSub Version: 0.05 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Multiple dispatch on subroutines License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Syntax-Keyword-MultiSub diff --git a/specs/p/perl-Syntax-Keyword-Try/perl-Syntax-Keyword-Try.spec b/specs/p/perl-Syntax-Keyword-Try/perl-Syntax-Keyword-Try.spec index a1f33592643..8c66929ad59 100644 --- a/specs/p/perl-Syntax-Keyword-Try/perl-Syntax-Keyword-Try.spec +++ b/specs/p/perl-Syntax-Keyword-Try/perl-Syntax-Keyword-Try.spec @@ -10,7 +10,7 @@ Name: perl-Syntax-Keyword-Try Version: 0.30 -Release: 5%{?dist} +Release: 5%{?dist} Summary: try/catch/finally syntax for perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Syntax-Keyword-Try/ diff --git a/specs/p/perl-Syntax-Operator-Divides/perl-Syntax-Operator-Divides.spec b/specs/p/perl-Syntax-Operator-Divides/perl-Syntax-Operator-Divides.spec index 0c8c635272c..7b4b69f2da5 100644 --- a/specs/p/perl-Syntax-Operator-Divides/perl-Syntax-Operator-Divides.spec +++ b/specs/p/perl-Syntax-Operator-Divides/perl-Syntax-Operator-Divides.spec @@ -13,7 +13,7 @@ Name: perl-Syntax-Operator-Divides Version: 0.08 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Infix operator for division test License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Syntax-Operator-Divides diff --git a/specs/p/perl-Syntax-Operator-Equ/perl-Syntax-Operator-Equ.spec b/specs/p/perl-Syntax-Operator-Equ/perl-Syntax-Operator-Equ.spec index 25200144bf7..89c2742bd5f 100644 --- a/specs/p/perl-Syntax-Operator-Equ/perl-Syntax-Operator-Equ.spec +++ b/specs/p/perl-Syntax-Operator-Equ/perl-Syntax-Operator-Equ.spec @@ -13,7 +13,7 @@ Name: perl-Syntax-Operator-Equ Version: 0.10 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Equality operators that distinguish undef License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Syntax-Operator-Equ diff --git a/specs/p/perl-Syntax-Operator-In/perl-Syntax-Operator-In.spec b/specs/p/perl-Syntax-Operator-In/perl-Syntax-Operator-In.spec index a03ce27f855..c731e6678e3 100644 --- a/specs/p/perl-Syntax-Operator-In/perl-Syntax-Operator-In.spec +++ b/specs/p/perl-Syntax-Operator-In/perl-Syntax-Operator-In.spec @@ -6,7 +6,7 @@ Name: perl-Syntax-Operator-In Version: 0.10 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Infix element-of-list meta-operator License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Syntax-Operator-In diff --git a/specs/p/perl-Sys-Hostname-Long/perl-Sys-Hostname-Long.spec b/specs/p/perl-Sys-Hostname-Long/perl-Sys-Hostname-Long.spec index 6188f89eed7..cba8d93f91b 100644 --- a/specs/p/perl-Sys-Hostname-Long/perl-Sys-Hostname-Long.spec +++ b/specs/p/perl-Sys-Hostname-Long/perl-Sys-Hostname-Long.spec @@ -3,7 +3,7 @@ Name: perl-Sys-Hostname-Long Version: 1.5 -Release: 33%{?dist} +Release: 33%{?dist} Summary: Try every conceivable way to get full hostname License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Sys-Hostname-Long diff --git a/specs/p/perl-Sys-Syslog/perl-Sys-Syslog.spec b/specs/p/perl-Sys-Syslog/perl-Sys-Syslog.spec index a8e0931d0fe..d04c0b24784 100644 --- a/specs/p/perl-Sys-Syslog/perl-Sys-Syslog.spec +++ b/specs/p/perl-Sys-Syslog/perl-Sys-Syslog.spec @@ -9,7 +9,7 @@ %endif Name: perl-Sys-Syslog Version: 0.36 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Perl interface to the UNIX syslog(3) calls # README: GPL+ or Artistic # ppport.h: GPL+ or Artistic diff --git a/specs/p/perl-Sysadm-Install/perl-Sysadm-Install.spec b/specs/p/perl-Sysadm-Install/perl-Sysadm-Install.spec index 4e3b2883524..9fb194b526d 100644 --- a/specs/p/perl-Sysadm-Install/perl-Sysadm-Install.spec +++ b/specs/p/perl-Sysadm-Install/perl-Sysadm-Install.spec @@ -4,7 +4,7 @@ Summary: Typical installation tasks for system administrators Name: perl-Sysadm-Install Version: 0.48 -Release: 27%{?dist} +Release: 27%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Sysadm-Install Source0: https://cpan.metacpan.org/authors/id/M/MS/MSCHILLI/Sysadm-Install-%{version}.tar.gz diff --git a/specs/p/perl-TAP-Formatter-HTML/perl-TAP-Formatter-HTML.spec b/specs/p/perl-TAP-Formatter-HTML/perl-TAP-Formatter-HTML.spec index cbc1848169a..23ac9c0ac1a 100644 --- a/specs/p/perl-TAP-Formatter-HTML/perl-TAP-Formatter-HTML.spec +++ b/specs/p/perl-TAP-Formatter-HTML/perl-TAP-Formatter-HTML.spec @@ -3,7 +3,7 @@ Name: perl-TAP-Formatter-HTML Version: 0.13 -Release: 7%{?dist} +Release: 7%{?dist} Summary: TAP Test Harness output delegate for html output License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/TAP-Formatter-HTML diff --git a/specs/p/perl-TAP-Harness-Archive/perl-TAP-Harness-Archive.spec b/specs/p/perl-TAP-Harness-Archive/perl-TAP-Harness-Archive.spec index 09c451c2cea..be8e3033e85 100644 --- a/specs/p/perl-TAP-Harness-Archive/perl-TAP-Harness-Archive.spec +++ b/specs/p/perl-TAP-Harness-Archive/perl-TAP-Harness-Archive.spec @@ -3,7 +3,7 @@ Name: perl-TAP-Harness-Archive Version: 0.18 -Release: 30%{?dist} +Release: 30%{?dist} Summary: Create an archive of TAP test results # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Taint-Runtime/perl-Taint-Runtime.spec b/specs/p/perl-Taint-Runtime/perl-Taint-Runtime.spec index c2933930785..aefae01bef5 100644 --- a/specs/p/perl-Taint-Runtime/perl-Taint-Runtime.spec +++ b/specs/p/perl-Taint-Runtime/perl-Taint-Runtime.spec @@ -3,7 +3,7 @@ Name: perl-Taint-Runtime Version: 0.03 -Release: 58%{?dist} +Release: 58%{?dist} Summary: Runtime enable taint checking License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Taint-Runtime diff --git a/specs/p/perl-Task-Weaken/perl-Task-Weaken.spec b/specs/p/perl-Task-Weaken/perl-Task-Weaken.spec index 8343d9fb8ab..abde7ca04ae 100644 --- a/specs/p/perl-Task-Weaken/perl-Task-Weaken.spec +++ b/specs/p/perl-Task-Weaken/perl-Task-Weaken.spec @@ -3,7 +3,7 @@ Name: perl-Task-Weaken Version: 1.06 -Release: 23%{?dist} +Release: 23%{?dist} Summary: Ensure that a platform has weaken support License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Task-Weaken diff --git a/specs/p/perl-Template-Toolkit/perl-Template-Toolkit.spec b/specs/p/perl-Template-Toolkit/perl-Template-Toolkit.spec index acb4a173bd1..ce4af82c692 100644 --- a/specs/p/perl-Template-Toolkit/perl-Template-Toolkit.spec +++ b/specs/p/perl-Template-Toolkit/perl-Template-Toolkit.spec @@ -3,7 +3,7 @@ Name: perl-Template-Toolkit Version: 3.102 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Template processing system License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: http://www.template-toolkit.org/ diff --git a/specs/p/perl-Term-ANSIColor/perl-Term-ANSIColor.spec b/specs/p/perl-Term-ANSIColor/perl-Term-ANSIColor.spec index 4366b503a24..6bf486e3ca9 100644 --- a/specs/p/perl-Term-ANSIColor/perl-Term-ANSIColor.spec +++ b/specs/p/perl-Term-ANSIColor/perl-Term-ANSIColor.spec @@ -10,7 +10,7 @@ Name: perl-Term-ANSIColor Version: 5.01 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Color screen output using ANSI escape sequences License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Term-ANSIColor diff --git a/specs/p/perl-Term-Cap/perl-Term-Cap.spec b/specs/p/perl-Term-Cap/perl-Term-Cap.spec index 34da9ae3010..74f0a744d11 100644 --- a/specs/p/perl-Term-Cap/perl-Term-Cap.spec +++ b/specs/p/perl-Term-Cap/perl-Term-Cap.spec @@ -3,7 +3,7 @@ Name: perl-Term-Cap Version: 1.18 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Perl termcap interface License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Term-Cap diff --git a/specs/p/perl-Term-Size-Any/perl-Term-Size-Any.spec b/specs/p/perl-Term-Size-Any/perl-Term-Size-Any.spec index 58e6e72d765..be20d81580a 100644 --- a/specs/p/perl-Term-Size-Any/perl-Term-Size-Any.spec +++ b/specs/p/perl-Term-Size-Any/perl-Term-Size-Any.spec @@ -6,7 +6,7 @@ Name: perl-Term-Size-Any Version: 0.002 -Release: 46%{?dist} +Release: 46%{?dist} Summary: Retrieve terminal size License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Term-Size-Any diff --git a/specs/p/perl-Term-Size-Perl/perl-Term-Size-Perl.spec b/specs/p/perl-Term-Size-Perl/perl-Term-Size-Perl.spec index f7f48eae40e..911187b206e 100644 --- a/specs/p/perl-Term-Size-Perl/perl-Term-Size-Perl.spec +++ b/specs/p/perl-Term-Size-Perl/perl-Term-Size-Perl.spec @@ -3,7 +3,7 @@ Name: perl-Term-Size-Perl Version: 0.031 -Release: 23%{?dist} +Release: 23%{?dist} Summary: Perl extension for retrieving terminal size (Perl version) License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Term-Size-Perl diff --git a/specs/p/perl-Term-Table/perl-Term-Table.spec b/specs/p/perl-Term-Table/perl-Term-Table.spec index 0eae12008c7..ecef21c9d99 100644 --- a/specs/p/perl-Term-Table/perl-Term-Table.spec +++ b/specs/p/perl-Term-Table/perl-Term-Table.spec @@ -8,7 +8,7 @@ Name: perl-Term-Table Version: 0.028 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Format a header and rows into a table License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Term-Table diff --git a/specs/p/perl-TermReadKey/perl-TermReadKey.spec b/specs/p/perl-TermReadKey/perl-TermReadKey.spec index be3df899a9e..44bab3e73ed 100644 --- a/specs/p/perl-TermReadKey/perl-TermReadKey.spec +++ b/specs/p/perl-TermReadKey/perl-TermReadKey.spec @@ -3,7 +3,7 @@ Name: perl-TermReadKey Version: 2.38 -Release: 27%{?dist} +Release: 27%{?dist} Summary: A perl module for simple terminal control License: TermReadKey AND (GPL-1.0-or-later OR Artistic-1.0-Perl) URL: https://metacpan.org/release/TermReadKey diff --git a/specs/p/perl-Test-Assert/perl-Test-Assert.spec b/specs/p/perl-Test-Assert/perl-Test-Assert.spec index 99ba1ad7aef..31276185857 100644 --- a/specs/p/perl-Test-Assert/perl-Test-Assert.spec +++ b/specs/p/perl-Test-Assert/perl-Test-Assert.spec @@ -16,7 +16,7 @@ Name: perl-Test-Assert Version: 0.0504 -Release: 46%{?dist} +Release: 46%{?dist} Summary: Assertion methods for those who like JUnit License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Assert diff --git a/specs/p/perl-Test-Assertions/perl-Test-Assertions.spec b/specs/p/perl-Test-Assertions/perl-Test-Assertions.spec index 4fee6ca25be..e018b1b3933 100644 --- a/specs/p/perl-Test-Assertions/perl-Test-Assertions.spec +++ b/specs/p/perl-Test-Assertions/perl-Test-Assertions.spec @@ -3,7 +3,7 @@ Name: perl-Test-Assertions Version: 1.054 -Release: 48%{?dist} +Release: 48%{?dist} Summary: Simple set of building blocks for both unit and runtime testing License: GPL-2.0-only URL: https://metacpan.org/release/Test-Assertions diff --git a/specs/p/perl-Test-Base/perl-Test-Base.spec b/specs/p/perl-Test-Base/perl-Test-Base.spec index 7e73f0610e7..ba26ad6a3fc 100644 --- a/specs/p/perl-Test-Base/perl-Test-Base.spec +++ b/specs/p/perl-Test-Base/perl-Test-Base.spec @@ -10,7 +10,7 @@ Name: perl-Test-Base Version: 0.89 -Release: 24%{?dist} +Release: 24%{?dist} Summary: Data Driven Testing Framework License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Base diff --git a/specs/p/perl-Test-CPAN-Meta-JSON/perl-Test-CPAN-Meta-JSON.spec b/specs/p/perl-Test-CPAN-Meta-JSON/perl-Test-CPAN-Meta-JSON.spec index d80f752c142..be3b7aff578 100644 --- a/specs/p/perl-Test-CPAN-Meta-JSON/perl-Test-CPAN-Meta-JSON.spec +++ b/specs/p/perl-Test-CPAN-Meta-JSON/perl-Test-CPAN-Meta-JSON.spec @@ -3,7 +3,7 @@ Name: perl-Test-CPAN-Meta-JSON Version: 0.16 -Release: 32%{?dist} +Release: 32%{?dist} Summary: Validate a META.json file within a CPAN distribution License: Artistic-2.0 URL: https://metacpan.org/release/Test-CPAN-Meta-YAML diff --git a/specs/p/perl-Test-CPAN-Meta/perl-Test-CPAN-Meta.spec b/specs/p/perl-Test-CPAN-Meta/perl-Test-CPAN-Meta.spec index d6ea6d91dbb..1119d42d799 100644 --- a/specs/p/perl-Test-CPAN-Meta/perl-Test-CPAN-Meta.spec +++ b/specs/p/perl-Test-CPAN-Meta/perl-Test-CPAN-Meta.spec @@ -10,7 +10,7 @@ Name: perl-Test-CPAN-Meta Version: 0.25 -Release: 40%{?dist} +Release: 40%{?dist} Summary: Validation of the META.yml file in a CPAN distribution License: Artistic-2.0 URL: https://metacpan.org/release/Test-CPAN-Meta diff --git a/specs/p/perl-Test-CheckChanges/perl-Test-CheckChanges.spec b/specs/p/perl-Test-CheckChanges/perl-Test-CheckChanges.spec index 274093d0cbd..04a12de6245 100644 --- a/specs/p/perl-Test-CheckChanges/perl-Test-CheckChanges.spec +++ b/specs/p/perl-Test-CheckChanges/perl-Test-CheckChanges.spec @@ -11,7 +11,7 @@ Name: perl-Test-CheckChanges Summary: Check that the Changes file matches the distribution Version: 0.14 -Release: 45%{?dist} +Release: 45%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-CheckChanges Source0: https://cpan.metacpan.org/modules/by-module/Test/Test-CheckChanges-%{version}.tar.gz diff --git a/specs/p/perl-Test-CheckDeps/perl-Test-CheckDeps.spec b/specs/p/perl-Test-CheckDeps/perl-Test-CheckDeps.spec index 44dc1dbdf7b..e78bb062e32 100644 --- a/specs/p/perl-Test-CheckDeps/perl-Test-CheckDeps.spec +++ b/specs/p/perl-Test-CheckDeps/perl-Test-CheckDeps.spec @@ -4,7 +4,7 @@ Name: perl-Test-CheckDeps Summary: Check for presence of dependencies Version: 0.010 -Release: 44%{?dist} +Release: 44%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-CheckDeps Source0: https://cpan.metacpan.org/modules/by-module/Test/Test-CheckDeps-%{version}.tar.gz diff --git a/specs/p/perl-Test-CheckManifest/perl-Test-CheckManifest.spec b/specs/p/perl-Test-CheckManifest/perl-Test-CheckManifest.spec index fccd9dc32bb..df837bd4c6d 100644 --- a/specs/p/perl-Test-CheckManifest/perl-Test-CheckManifest.spec +++ b/specs/p/perl-Test-CheckManifest/perl-Test-CheckManifest.spec @@ -3,7 +3,7 @@ Name: perl-Test-CheckManifest Version: 1.43 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Check if your Manifest matches your distro License: Artistic-2.0 URL: https://metacpan.org/release/Test-CheckManifest diff --git a/specs/p/perl-Test-Class/perl-Test-Class.spec b/specs/p/perl-Test-Class/perl-Test-Class.spec index 39f791e003d..7343bd449a7 100644 --- a/specs/p/perl-Test-Class/perl-Test-Class.spec +++ b/specs/p/perl-Test-Class/perl-Test-Class.spec @@ -3,7 +3,7 @@ Name: perl-Test-Class Version: 0.52 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Easily create test classes in an xUnit/JUnit style License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Class diff --git a/specs/p/perl-Test-CleanNamespaces/perl-Test-CleanNamespaces.spec b/specs/p/perl-Test-CleanNamespaces/perl-Test-CleanNamespaces.spec index 8ceff7e423c..4a17e9e1f79 100644 --- a/specs/p/perl-Test-CleanNamespaces/perl-Test-CleanNamespaces.spec +++ b/specs/p/perl-Test-CleanNamespaces/perl-Test-CleanNamespaces.spec @@ -11,7 +11,7 @@ Name: perl-Test-CleanNamespaces Summary: Check for uncleaned imports Version: 0.24 -Release: 26%{?dist} +Release: 26%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-CleanNamespaces Source0: https://cpan.metacpan.org/modules/by-module/Test/Test-CleanNamespaces-%{version}.tar.gz diff --git a/specs/p/perl-Test-ConsistentVersion/perl-Test-ConsistentVersion.spec b/specs/p/perl-Test-ConsistentVersion/perl-Test-ConsistentVersion.spec index dc8c4b8928f..0875113ebe6 100644 --- a/specs/p/perl-Test-ConsistentVersion/perl-Test-ConsistentVersion.spec +++ b/specs/p/perl-Test-ConsistentVersion/perl-Test-ConsistentVersion.spec @@ -3,7 +3,7 @@ Name: perl-Test-ConsistentVersion Version: 0.3.1 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Ensures a CPAN distribution has consistent versioning License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-ConsistentVersion diff --git a/specs/p/perl-Test-Deep/perl-Test-Deep.spec b/specs/p/perl-Test-Deep/perl-Test-Deep.spec index a120336fb96..fba2b87ca60 100644 --- a/specs/p/perl-Test-Deep/perl-Test-Deep.spec +++ b/specs/p/perl-Test-Deep/perl-Test-Deep.spec @@ -3,7 +3,7 @@ Name: perl-Test-Deep Version: 1.205 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Extremely flexible deep comparison License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Deep diff --git a/specs/p/perl-Test-Differences/perl-Test-Differences.spec b/specs/p/perl-Test-Differences/perl-Test-Differences.spec index 7fe9bd8cedf..d918b6cd0bf 100644 --- a/specs/p/perl-Test-Differences/perl-Test-Differences.spec +++ b/specs/p/perl-Test-Differences/perl-Test-Differences.spec @@ -6,7 +6,7 @@ Name: perl-Test-Differences %global cpan_version 0.72 Version: %(LANG=C printf "%.4f" %{cpan_version}) -Release: 3%{?dist} +Release: 3%{?dist} Summary: Test strings and data structures and show differences if not OK License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Differences diff --git a/specs/p/perl-Test-DistManifest/perl-Test-DistManifest.spec b/specs/p/perl-Test-DistManifest/perl-Test-DistManifest.spec index 6c6a6977dac..a1d0b0b73ac 100644 --- a/specs/p/perl-Test-DistManifest/perl-Test-DistManifest.spec +++ b/specs/p/perl-Test-DistManifest/perl-Test-DistManifest.spec @@ -11,7 +11,7 @@ Name: perl-Test-DistManifest Version: 1.014 -Release: 34%{?dist} +Release: 34%{?dist} Summary: Author test that validates a package MANIFEST License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-DistManifest diff --git a/specs/p/perl-Test-Distribution/perl-Test-Distribution.spec b/specs/p/perl-Test-Distribution/perl-Test-Distribution.spec index 55ebac0937a..6cb672731f2 100644 --- a/specs/p/perl-Test-Distribution/perl-Test-Distribution.spec +++ b/specs/p/perl-Test-Distribution/perl-Test-Distribution.spec @@ -3,7 +3,7 @@ Name: perl-Test-Distribution Version: 2.00 -Release: 50%{?dist} +Release: 50%{?dist} Summary: Perform tests on all modules of a distribution License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Distribution diff --git a/specs/p/perl-Test-EOL/perl-Test-EOL.spec b/specs/p/perl-Test-EOL/perl-Test-EOL.spec index 8fc3dd53293..262eb251720 100644 --- a/specs/p/perl-Test-EOL/perl-Test-EOL.spec +++ b/specs/p/perl-Test-EOL/perl-Test-EOL.spec @@ -3,7 +3,7 @@ Name: perl-Test-EOL Version: 2.02 -Release: 15%{?dist} +Release: 15%{?dist} Summary: Check the correct line endings in your project License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-EOL diff --git a/specs/p/perl-Test-Exception/perl-Test-Exception.spec b/specs/p/perl-Test-Exception/perl-Test-Exception.spec index 404f2c63bbb..39b4c3ab1e9 100644 --- a/specs/p/perl-Test-Exception/perl-Test-Exception.spec +++ b/specs/p/perl-Test-Exception/perl-Test-Exception.spec @@ -3,7 +3,7 @@ Name: perl-Test-Exception Version: 0.43 -Release: 30%{?dist} +Release: 30%{?dist} Summary: Library of test functions for exception based Perl code License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Exception diff --git a/specs/p/perl-Test-ExpectAndCheck/perl-Test-ExpectAndCheck.spec b/specs/p/perl-Test-ExpectAndCheck/perl-Test-ExpectAndCheck.spec index e137b3afc40..9c98efa6ac3 100644 --- a/specs/p/perl-Test-ExpectAndCheck/perl-Test-ExpectAndCheck.spec +++ b/specs/p/perl-Test-ExpectAndCheck/perl-Test-ExpectAndCheck.spec @@ -3,7 +3,7 @@ Name: perl-Test-ExpectAndCheck Version: 0.07 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Expect/check-style unit testing with object methods License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Test-FailWarnings/perl-Test-FailWarnings.spec b/specs/p/perl-Test-FailWarnings/perl-Test-FailWarnings.spec index 2622b10d197..40b2090a24d 100644 --- a/specs/p/perl-Test-FailWarnings/perl-Test-FailWarnings.spec +++ b/specs/p/perl-Test-FailWarnings/perl-Test-FailWarnings.spec @@ -3,7 +3,7 @@ Name: perl-Test-FailWarnings Version: 0.008 -Release: 37%{?dist} +Release: 37%{?dist} Summary: Add test failures if warnings are caught License: Apache-2.0 diff --git a/specs/p/perl-Test-Fatal/perl-Test-Fatal.spec b/specs/p/perl-Test-Fatal/perl-Test-Fatal.spec index 748eb0a97c1..e66160b1743 100644 --- a/specs/p/perl-Test-Fatal/perl-Test-Fatal.spec +++ b/specs/p/perl-Test-Fatal/perl-Test-Fatal.spec @@ -14,7 +14,7 @@ Summary: Incredibly simple helpers for testing code with exceptions Name: perl-Test-Fatal Version: 0.017 -Release: 9%{?dist} +Release: 9%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Fatal Source0: https://cpan.metacpan.org/modules/by-module/Test/Test-Fatal-%{version}.tar.gz diff --git a/specs/p/perl-Test-File-ShareDir/perl-Test-File-ShareDir.spec b/specs/p/perl-Test-File-ShareDir/perl-Test-File-ShareDir.spec index 70858099a12..adbceb845f1 100644 --- a/specs/p/perl-Test-File-ShareDir/perl-Test-File-ShareDir.spec +++ b/specs/p/perl-Test-File-ShareDir/perl-Test-File-ShareDir.spec @@ -3,7 +3,7 @@ Name: perl-Test-File-ShareDir Version: 1.001002 -Release: 26%{?dist} +Release: 26%{?dist} Summary: Create a Fake ShareDir for your modules for testing License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-File-ShareDir diff --git a/specs/p/perl-Test-File/perl-Test-File.spec b/specs/p/perl-Test-File/perl-Test-File.spec index ba9c79cac09..a031998284b 100644 --- a/specs/p/perl-Test-File/perl-Test-File.spec +++ b/specs/p/perl-Test-File/perl-Test-File.spec @@ -8,7 +8,7 @@ Summary: Test file attributes through Test::Builder Name: perl-Test-File Version: %{rpm_version} -Release: 3%{?dist} +Release: 3%{?dist} License: Artistic-2.0 URL: https://metacpan.org/release/Test-File Source0: https://cpan.metacpan.org/modules/by-module/Test/Test-File-%{cpan_version}.tar.gz diff --git a/specs/p/perl-Test-Future-IO-Impl/perl-Test-Future-IO-Impl.spec b/specs/p/perl-Test-Future-IO-Impl/perl-Test-Future-IO-Impl.spec index a4c2134177b..fd046316d5f 100644 --- a/specs/p/perl-Test-Future-IO-Impl/perl-Test-Future-IO-Impl.spec +++ b/specs/p/perl-Test-Future-IO-Impl/perl-Test-Future-IO-Impl.spec @@ -3,7 +3,7 @@ Name: perl-Test-Future-IO-Impl Version: 0.14 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Acceptance tests for Future::IO implementations License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Test-Harness/perl-Test-Harness.spec b/specs/p/perl-Test-Harness/perl-Test-Harness.spec index e282cb9f6ff..63abd7b106c 100644 --- a/specs/p/perl-Test-Harness/perl-Test-Harness.spec +++ b/specs/p/perl-Test-Harness/perl-Test-Harness.spec @@ -11,7 +11,7 @@ Name: perl-Test-Harness Epoch: 1 Version: 3.52 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Run Perl standard test scripts with statistics License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Harness diff --git a/specs/p/perl-Test-HasVersion/perl-Test-HasVersion.spec b/specs/p/perl-Test-HasVersion/perl-Test-HasVersion.spec index 06d2341dd9c..acb25c2cc39 100644 --- a/specs/p/perl-Test-HasVersion/perl-Test-HasVersion.spec +++ b/specs/p/perl-Test-HasVersion/perl-Test-HasVersion.spec @@ -3,7 +3,7 @@ Name: perl-Test-HasVersion Version: 0.014 -Release: 30%{?dist} +Release: 30%{?dist} Summary: Check Perl modules have version numbers License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-HasVersion diff --git a/specs/p/perl-Test-InDistDir/perl-Test-InDistDir.spec b/specs/p/perl-Test-InDistDir/perl-Test-InDistDir.spec index c5993eaa14b..dd631ca2269 100644 --- a/specs/p/perl-Test-InDistDir/perl-Test-InDistDir.spec +++ b/specs/p/perl-Test-InDistDir/perl-Test-InDistDir.spec @@ -3,7 +3,7 @@ Name: perl-Test-InDistDir Version: 1.112071 -Release: 28%{?dist} +Release: 28%{?dist} Summary: Test environment setup for development with IDE License: WTFPL URL: https://metacpan.org/release/Test-InDistDir diff --git a/specs/p/perl-Test-Inter/perl-Test-Inter.spec b/specs/p/perl-Test-Inter/perl-Test-Inter.spec index 37c7fdfab7b..2cc5961497f 100644 --- a/specs/p/perl-Test-Inter/perl-Test-Inter.spec +++ b/specs/p/perl-Test-Inter/perl-Test-Inter.spec @@ -3,7 +3,7 @@ Name: perl-Test-Inter Version: 1.12 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Framework for more readable interactive test scripts License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Inter diff --git a/specs/p/perl-Test-Kwalitee/perl-Test-Kwalitee.spec b/specs/p/perl-Test-Kwalitee/perl-Test-Kwalitee.spec index 2edbde5c581..5dc3ae9a413 100644 --- a/specs/p/perl-Test-Kwalitee/perl-Test-Kwalitee.spec +++ b/specs/p/perl-Test-Kwalitee/perl-Test-Kwalitee.spec @@ -3,7 +3,7 @@ Name: perl-Test-Kwalitee Version: 1.28 -Release: 20%{?dist} +Release: 20%{?dist} Summary: Test the Kwalitee of a distribution before you release it License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: http://metacpan.org/module/Test::Kwalitee diff --git a/specs/p/perl-Test-LeakTrace/perl-Test-LeakTrace.spec b/specs/p/perl-Test-LeakTrace/perl-Test-LeakTrace.spec index b8f351d209a..f0d474b08ca 100644 --- a/specs/p/perl-Test-LeakTrace/perl-Test-LeakTrace.spec +++ b/specs/p/perl-Test-LeakTrace/perl-Test-LeakTrace.spec @@ -11,7 +11,7 @@ Name: perl-Test-LeakTrace Summary: Trace memory leaks Version: 0.17 -Release: 24%{?dist} +Release: 24%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-LeakTrace Source0: https://cpan.metacpan.org/modules/by-module/Test/Test-LeakTrace-%{version}.tar.gz diff --git a/specs/p/perl-Test-LongString/perl-Test-LongString.spec b/specs/p/perl-Test-LongString/perl-Test-LongString.spec index 710d70d8662..aa5d90c330f 100644 --- a/specs/p/perl-Test-LongString/perl-Test-LongString.spec +++ b/specs/p/perl-Test-LongString/perl-Test-LongString.spec @@ -3,7 +3,7 @@ Name: perl-Test-LongString Version: 0.17 -Release: 33%{?dist} +Release: 33%{?dist} Summary: Perl module to test long strings License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-LongString diff --git a/specs/p/perl-Test-Manifest/perl-Test-Manifest.spec b/specs/p/perl-Test-Manifest/perl-Test-Manifest.spec index 652b046b703..3d47e4bbc22 100644 --- a/specs/p/perl-Test-Manifest/perl-Test-Manifest.spec +++ b/specs/p/perl-Test-Manifest/perl-Test-Manifest.spec @@ -4,7 +4,7 @@ Summary: Test case module for Perl Name: perl-Test-Manifest Version: 2.026 -Release: 3%{?dist} +Release: 3%{?dist} License: Artistic-2.0 URL: https://metacpan.org/release/Test-Manifest Source0: https://www.cpan.org/modules/by-module/Test/Test-Manifest-%{version}.tar.gz diff --git a/specs/p/perl-Test-Memory-Cycle/perl-Test-Memory-Cycle.spec b/specs/p/perl-Test-Memory-Cycle/perl-Test-Memory-Cycle.spec index c6510542456..4dca0054925 100644 --- a/specs/p/perl-Test-Memory-Cycle/perl-Test-Memory-Cycle.spec +++ b/specs/p/perl-Test-Memory-Cycle/perl-Test-Memory-Cycle.spec @@ -3,7 +3,7 @@ Name: perl-Test-Memory-Cycle Version: 1.06 -Release: 30%{?dist} +Release: 30%{?dist} Summary: Check for memory leaks and circular memory references License: Artistic-2.0 URL: https://metacpan.org/release/Test-Memory-Cycle diff --git a/specs/p/perl-Test-MemoryGrowth/perl-Test-MemoryGrowth.spec b/specs/p/perl-Test-MemoryGrowth/perl-Test-MemoryGrowth.spec index 335a3b181e0..3c6b97091ee 100644 --- a/specs/p/perl-Test-MemoryGrowth/perl-Test-MemoryGrowth.spec +++ b/specs/p/perl-Test-MemoryGrowth/perl-Test-MemoryGrowth.spec @@ -3,7 +3,7 @@ Name: perl-Test-MemoryGrowth Version: 0.05 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Assert that code does not cause growth in memory usage License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-MemoryGrowth diff --git a/specs/p/perl-Test-Metrics-Any/perl-Test-Metrics-Any.spec b/specs/p/perl-Test-Metrics-Any/perl-Test-Metrics-Any.spec index 15153733a2d..c72f6294805 100644 --- a/specs/p/perl-Test-Metrics-Any/perl-Test-Metrics-Any.spec +++ b/specs/p/perl-Test-Metrics-Any/perl-Test-Metrics-Any.spec @@ -3,7 +3,7 @@ Name: perl-Test-Metrics-Any Version: 0.01 -Release: 19%{?dist} +Release: 19%{?dist} Summary: Assert that code produces metrics via Metrics::Any # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Test-MinimumVersion/perl-Test-MinimumVersion.spec b/specs/p/perl-Test-MinimumVersion/perl-Test-MinimumVersion.spec index 0599edfa68f..98e3bc52762 100644 --- a/specs/p/perl-Test-MinimumVersion/perl-Test-MinimumVersion.spec +++ b/specs/p/perl-Test-MinimumVersion/perl-Test-MinimumVersion.spec @@ -3,7 +3,7 @@ Name: perl-Test-MinimumVersion Version: 0.101083 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Check whether your code requires a newer perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-MinimumVersion diff --git a/specs/p/perl-Test-MockRandom/perl-Test-MockRandom.spec b/specs/p/perl-Test-MockRandom/perl-Test-MockRandom.spec index 3fc0a5c02a0..05a1a0d784a 100644 --- a/specs/p/perl-Test-MockRandom/perl-Test-MockRandom.spec +++ b/specs/p/perl-Test-MockRandom/perl-Test-MockRandom.spec @@ -3,7 +3,7 @@ Name: perl-Test-MockRandom Version: 1.01 -Release: 27%{?dist} +Release: 27%{?dist} Summary: Replaces random number generation with non-random number generation License: Apache-2.0 URL: https://metacpan.org/release/Test-MockRandom diff --git a/specs/p/perl-Test-Mojibake/perl-Test-Mojibake.spec b/specs/p/perl-Test-Mojibake/perl-Test-Mojibake.spec index 0b584fe23a2..fe215877c8c 100644 --- a/specs/p/perl-Test-Mojibake/perl-Test-Mojibake.spec +++ b/specs/p/perl-Test-Mojibake/perl-Test-Mojibake.spec @@ -9,7 +9,7 @@ Name: perl-Test-Mojibake Version: 1.3 -Release: 35%{?dist} +Release: 35%{?dist} Summary: Check your source for encoding misbehavior License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Mojibake diff --git a/specs/p/perl-Test-Most/perl-Test-Most.spec b/specs/p/perl-Test-Most/perl-Test-Most.spec index c67ff8e7dd3..743c65452ac 100644 --- a/specs/p/perl-Test-Most/perl-Test-Most.spec +++ b/specs/p/perl-Test-Most/perl-Test-Most.spec @@ -3,7 +3,7 @@ Name: perl-Test-Most Version: 0.38 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Perl module with test functions and features License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Most diff --git a/specs/p/perl-Test-Needs/perl-Test-Needs.spec b/specs/p/perl-Test-Needs/perl-Test-Needs.spec index 120eb270e7f..4d426934b41 100644 --- a/specs/p/perl-Test-Needs/perl-Test-Needs.spec +++ b/specs/p/perl-Test-Needs/perl-Test-Needs.spec @@ -3,7 +3,7 @@ Name: perl-Test-Needs Version: 0.002010 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Skip tests when modules not available License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Test-NoTabs/perl-Test-NoTabs.spec b/specs/p/perl-Test-NoTabs/perl-Test-NoTabs.spec index 1f99831c048..a584cead7c8 100644 --- a/specs/p/perl-Test-NoTabs/perl-Test-NoTabs.spec +++ b/specs/p/perl-Test-NoTabs/perl-Test-NoTabs.spec @@ -3,7 +3,7 @@ Name: perl-Test-NoTabs Version: 2.02 -Release: 24%{?dist} +Release: 24%{?dist} Summary: Check the presence of tabs in your project License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-NoTabs diff --git a/specs/p/perl-Test-NoWarnings/perl-Test-NoWarnings.spec b/specs/p/perl-Test-NoWarnings/perl-Test-NoWarnings.spec index d08533fb0a6..3a682523d01 100644 --- a/specs/p/perl-Test-NoWarnings/perl-Test-NoWarnings.spec +++ b/specs/p/perl-Test-NoWarnings/perl-Test-NoWarnings.spec @@ -10,7 +10,7 @@ Name: perl-Test-NoWarnings Version: 1.06 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Make sure you didn't emit any warnings while testing License: LGPL-2.1-or-later URL: https://metacpan.org/release/Test-NoWarnings diff --git a/specs/p/perl-Test-Object/perl-Test-Object.spec b/specs/p/perl-Test-Object/perl-Test-Object.spec index dd06f92e630..bea6979a463 100644 --- a/specs/p/perl-Test-Object/perl-Test-Object.spec +++ b/specs/p/perl-Test-Object/perl-Test-Object.spec @@ -3,7 +3,7 @@ Name: perl-Test-Object Version: 0.08 -Release: 26%{?dist} +Release: 26%{?dist} Summary: Thoroughly testing objects via registered handlers License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Object diff --git a/specs/p/perl-Test-Output/perl-Test-Output.spec b/specs/p/perl-Test-Output/perl-Test-Output.spec index 8d7fd4a2adc..d6b5120d586 100644 --- a/specs/p/perl-Test-Output/perl-Test-Output.spec +++ b/specs/p/perl-Test-Output/perl-Test-Output.spec @@ -6,7 +6,7 @@ Name: perl-Test-Output # Keep 2-digit precision Version: %(echo '%{cpan_version}' | sed 's/\(\...\)\(.\)/\1.\2/') -Release: 3%{?dist} +Release: 3%{?dist} Summary: Utilities to test STDOUT and STDERR messages License: Artistic-2.0 URL: https://metacpan.org/release/Test-Output diff --git a/specs/p/perl-Test-Perl-Critic/perl-Test-Perl-Critic.spec b/specs/p/perl-Test-Perl-Critic/perl-Test-Perl-Critic.spec index c104cf1681d..cc8c97e0ef9 100644 --- a/specs/p/perl-Test-Perl-Critic/perl-Test-Perl-Critic.spec +++ b/specs/p/perl-Test-Perl-Critic/perl-Test-Perl-Critic.spec @@ -4,7 +4,7 @@ Name: perl-Test-Perl-Critic Summary: Use Perl::Critic in test programs Version: 1.04 -Release: 26%{?dist} +Release: 26%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Perl-Critic Source0: https://cpan.metacpan.org/modules/by-module/Test/Test-Perl-Critic-%{version}.tar.gz diff --git a/specs/p/perl-Test-Pod-Content/perl-Test-Pod-Content.spec b/specs/p/perl-Test-Pod-Content/perl-Test-Pod-Content.spec index abfa76a322b..316674600eb 100644 --- a/specs/p/perl-Test-Pod-Content/perl-Test-Pod-Content.spec +++ b/specs/p/perl-Test-Pod-Content/perl-Test-Pod-Content.spec @@ -3,7 +3,7 @@ Name: perl-Test-Pod-Content Version: 0.0.6 -Release: 40%{?dist} +Release: 40%{?dist} Summary: Test a Pod's content License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Pod-Content diff --git a/specs/p/perl-Test-Pod-Coverage/perl-Test-Pod-Coverage.spec b/specs/p/perl-Test-Pod-Coverage/perl-Test-Pod-Coverage.spec index 88f5cd5415b..3f807e535c5 100644 --- a/specs/p/perl-Test-Pod-Coverage/perl-Test-Pod-Coverage.spec +++ b/specs/p/perl-Test-Pod-Coverage/perl-Test-Pod-Coverage.spec @@ -3,7 +3,7 @@ Name: perl-Test-Pod-Coverage Version: 1.10 -Release: 32%{?dist} +Release: 32%{?dist} Summary: Check for pod coverage in your distribution License: Artistic-2.0 URL: https://metacpan.org/release/Test-Pod-Coverage diff --git a/specs/p/perl-Test-Pod-LinkCheck/perl-Test-Pod-LinkCheck.spec b/specs/p/perl-Test-Pod-LinkCheck/perl-Test-Pod-LinkCheck.spec index fbd015aea5b..9e13e1d98b0 100644 --- a/specs/p/perl-Test-Pod-LinkCheck/perl-Test-Pod-LinkCheck.spec +++ b/specs/p/perl-Test-Pod-LinkCheck/perl-Test-Pod-LinkCheck.spec @@ -3,7 +3,7 @@ Name: perl-Test-Pod-LinkCheck Version: 0.008 -Release: 40%{?dist} +Release: 40%{?dist} Summary: Tests POD for invalid links License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Pod-LinkCheck diff --git a/specs/p/perl-Test-Pod-No404s/perl-Test-Pod-No404s.spec b/specs/p/perl-Test-Pod-No404s/perl-Test-Pod-No404s.spec index 5f1992c1561..9dd13647bd7 100644 --- a/specs/p/perl-Test-Pod-No404s/perl-Test-Pod-No404s.spec +++ b/specs/p/perl-Test-Pod-No404s/perl-Test-Pod-No404s.spec @@ -3,7 +3,7 @@ Name: perl-Test-Pod-No404s Version: 0.02 -Release: 41%{?dist} +Release: 41%{?dist} Summary: Checks POD for HTTP 404 links License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Pod-No404s diff --git a/specs/p/perl-Test-Pod/perl-Test-Pod.spec b/specs/p/perl-Test-Pod/perl-Test-Pod.spec index 760a87e7587..95506ed6c13 100644 --- a/specs/p/perl-Test-Pod/perl-Test-Pod.spec +++ b/specs/p/perl-Test-Pod/perl-Test-Pod.spec @@ -3,7 +3,7 @@ Name: perl-Test-Pod Version: 1.52 -Release: 24%{?dist} +Release: 24%{?dist} Summary: Test POD files for correctness License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Pod diff --git a/specs/p/perl-Test-Portability-Files/perl-Test-Portability-Files.spec b/specs/p/perl-Test-Portability-Files/perl-Test-Portability-Files.spec index 9c0f62f9cc0..014712daab4 100644 --- a/specs/p/perl-Test-Portability-Files/perl-Test-Portability-Files.spec +++ b/specs/p/perl-Test-Portability-Files/perl-Test-Portability-Files.spec @@ -3,7 +3,7 @@ Name: perl-Test-Portability-Files Version: 0.10 -Release: 22%{?dist} +Release: 22%{?dist} Summary: Check file names portability License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Portability-Files diff --git a/specs/p/perl-Test-RandomResult/perl-Test-RandomResult.spec b/specs/p/perl-Test-RandomResult/perl-Test-RandomResult.spec index 3d274e6783d..3267af36d1d 100644 --- a/specs/p/perl-Test-RandomResult/perl-Test-RandomResult.spec +++ b/specs/p/perl-Test-RandomResult/perl-Test-RandomResult.spec @@ -3,7 +3,7 @@ Name: perl-Test-RandomResult Version: 0.001 -Release: 16%{?dist} +Release: 16%{?dist} Summary: Test that results of a running code look random License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-RandomResult/ diff --git a/specs/p/perl-Test-Refcount/perl-Test-Refcount.spec b/specs/p/perl-Test-Refcount/perl-Test-Refcount.spec index 97b9a7e7a4a..151a86645c0 100644 --- a/specs/p/perl-Test-Refcount/perl-Test-Refcount.spec +++ b/specs/p/perl-Test-Refcount/perl-Test-Refcount.spec @@ -3,7 +3,7 @@ Name: perl-Test-Refcount Version: 0.10 -Release: 20%{?dist} +Release: 20%{?dist} Summary: Assert reference counts on objects License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Test-Regexp/perl-Test-Regexp.spec b/specs/p/perl-Test-Regexp/perl-Test-Regexp.spec index 12f88e7217b..e2c83f3c5f8 100644 --- a/specs/p/perl-Test-Regexp/perl-Test-Regexp.spec +++ b/specs/p/perl-Test-Regexp/perl-Test-Regexp.spec @@ -3,7 +3,7 @@ Name: perl-Test-Regexp Version: 2017040101 -Release: 28%{?dist} +Release: 28%{?dist} Summary: Test your regular expressions License: MIT URL: https://metacpan.org/release/Test-Regexp diff --git a/specs/p/perl-Test-Requires/perl-Test-Requires.spec b/specs/p/perl-Test-Requires/perl-Test-Requires.spec index 2a79d558cfa..53ebec543ee 100644 --- a/specs/p/perl-Test-Requires/perl-Test-Requires.spec +++ b/specs/p/perl-Test-Requires/perl-Test-Requires.spec @@ -4,7 +4,7 @@ Name: perl-Test-Requires Summary: Checks to see if a given module can be loaded Version: 0.11 -Release: 18%{?dist} +Release: 18%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Requires Source0: https://cpan.metacpan.org/modules/by-module/Test/Test-Requires-%{version}.tar.gz diff --git a/specs/p/perl-Test-Script/perl-Test-Script.spec b/specs/p/perl-Test-Script/perl-Test-Script.spec index 4b5c7f8fc67..045198a4ba1 100644 --- a/specs/p/perl-Test-Script/perl-Test-Script.spec +++ b/specs/p/perl-Test-Script/perl-Test-Script.spec @@ -3,7 +3,7 @@ Name: perl-Test-Script Version: 1.31 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Cross-platform basic tests for scripts License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Script diff --git a/specs/p/perl-Test-Signature/perl-Test-Signature.spec b/specs/p/perl-Test-Signature/perl-Test-Signature.spec index 91fe36c04eb..b1b568ba8e7 100644 --- a/specs/p/perl-Test-Signature/perl-Test-Signature.spec +++ b/specs/p/perl-Test-Signature/perl-Test-Signature.spec @@ -12,7 +12,7 @@ Name: perl-Test-Signature Version: 1.11 -Release: 36%{?dist} +Release: 36%{?dist} Summary: Automated SIGNATURE testing License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Signature diff --git a/specs/p/perl-Test-Simple/perl-Test-Simple.spec b/specs/p/perl-Test-Simple/perl-Test-Simple.spec index 5f2baff507b..fb090ed895e 100644 --- a/specs/p/perl-Test-Simple/perl-Test-Simple.spec +++ b/specs/p/perl-Test-Simple/perl-Test-Simple.spec @@ -18,7 +18,7 @@ Name: perl-Test-Simple Summary: Basic utilities for writing tests Epoch: 3 Version: 1.302214 -Release: 5%{?dist} +Release: 5%{?dist} # CC0-1.0: lib/ok.pm # Public Domain: lib/Test/Tutorial.pod # GPL-1.0-or-later OR Artistic-1.0-Perl: the rest of the distribution diff --git a/specs/p/perl-Test-Spelling/perl-Test-Spelling.spec b/specs/p/perl-Test-Spelling/perl-Test-Spelling.spec index 228d191ed96..5d2567f06ec 100644 --- a/specs/p/perl-Test-Spelling/perl-Test-Spelling.spec +++ b/specs/p/perl-Test-Spelling/perl-Test-Spelling.spec @@ -3,7 +3,7 @@ Name: perl-Test-Spelling Version: 0.25 -Release: 20%{?dist} +Release: 20%{?dist} Summary: Check for spelling errors in POD files License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Spelling diff --git a/specs/p/perl-Test-Strict/perl-Test-Strict.spec b/specs/p/perl-Test-Strict/perl-Test-Strict.spec index 019707244e4..688af3a152a 100644 --- a/specs/p/perl-Test-Strict/perl-Test-Strict.spec +++ b/specs/p/perl-Test-Strict/perl-Test-Strict.spec @@ -10,7 +10,7 @@ Name: perl-Test-Strict Version: 0.54 -Release: 4%{?dist} +Release: 4%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl Summary: Check syntax, presence of use strict/warnings, and test coverage Source: https://cpan.metacpan.org/authors/id/M/MA/MANWAR/Test-Strict-%{version}.tar.gz diff --git a/specs/p/perl-Test-SubCalls/perl-Test-SubCalls.spec b/specs/p/perl-Test-SubCalls/perl-Test-SubCalls.spec index 0a42c35bbfc..b14ea791caa 100644 --- a/specs/p/perl-Test-SubCalls/perl-Test-SubCalls.spec +++ b/specs/p/perl-Test-SubCalls/perl-Test-SubCalls.spec @@ -3,7 +3,7 @@ Name: perl-Test-SubCalls Version: 1.10 -Release: 24%{?dist} +Release: 24%{?dist} Summary: Track the number of times subs are called License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-SubCalls diff --git a/specs/p/perl-Test-Synopsis/perl-Test-Synopsis.spec b/specs/p/perl-Test-Synopsis/perl-Test-Synopsis.spec index b694673b49f..09cf44fefbf 100644 --- a/specs/p/perl-Test-Synopsis/perl-Test-Synopsis.spec +++ b/specs/p/perl-Test-Synopsis/perl-Test-Synopsis.spec @@ -9,7 +9,7 @@ Name: perl-Test-Synopsis Version: 0.17 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Test your SYNOPSIS code License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Synopsis diff --git a/specs/p/perl-Test-Taint/perl-Test-Taint.spec b/specs/p/perl-Test-Taint/perl-Test-Taint.spec index 89ff05aca3c..93138aff95d 100644 --- a/specs/p/perl-Test-Taint/perl-Test-Taint.spec +++ b/specs/p/perl-Test-Taint/perl-Test-Taint.spec @@ -4,7 +4,7 @@ Summary: Tools to test taintedness Name: perl-Test-Taint Version: 1.08 -Release: 23%{?dist} +Release: 23%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Taint Source0: https://cpan.metacpan.org/authors/id/P/PE/PETDANCE/Test-Taint-%{version}.tar.gz diff --git a/specs/p/perl-Test-TrailingSpace/perl-Test-TrailingSpace.spec b/specs/p/perl-Test-TrailingSpace/perl-Test-TrailingSpace.spec index 767732cf999..1b8f538c17c 100644 --- a/specs/p/perl-Test-TrailingSpace/perl-Test-TrailingSpace.spec +++ b/specs/p/perl-Test-TrailingSpace/perl-Test-TrailingSpace.spec @@ -3,7 +3,7 @@ Name: perl-Test-TrailingSpace Version: 0.0601 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Test for trailing space in source files License: MIT URL: https://metacpan.org/release/Test-TrailingSpace diff --git a/specs/p/perl-Test-Trap/perl-Test-Trap.spec b/specs/p/perl-Test-Trap/perl-Test-Trap.spec index 8cfdcb862cd..1f1212653d9 100644 --- a/specs/p/perl-Test-Trap/perl-Test-Trap.spec +++ b/specs/p/perl-Test-Trap/perl-Test-Trap.spec @@ -3,7 +3,7 @@ Name: perl-Test-Trap Version: 0.3.5 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Trap exit codes, exceptions, output, etc License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Trap diff --git a/specs/p/perl-Test-Unit-Lite/perl-Test-Unit-Lite.spec b/specs/p/perl-Test-Unit-Lite/perl-Test-Unit-Lite.spec index 970b7e55e51..954e3c36db0 100644 --- a/specs/p/perl-Test-Unit-Lite/perl-Test-Unit-Lite.spec +++ b/specs/p/perl-Test-Unit-Lite/perl-Test-Unit-Lite.spec @@ -8,7 +8,7 @@ Name: perl-Test-Unit-Lite Epoch: 1 Version: 0.12%{?extraversion:.}%{?extraversion} -Release: 10%{?dist} +Release: 10%{?dist} Summary: Unit testing without external dependencies License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Unit-Lite diff --git a/specs/p/perl-Test-UseAllModules/perl-Test-UseAllModules.spec b/specs/p/perl-Test-UseAllModules/perl-Test-UseAllModules.spec index 059ae4f3156..ac26779d5ba 100644 --- a/specs/p/perl-Test-UseAllModules/perl-Test-UseAllModules.spec +++ b/specs/p/perl-Test-UseAllModules/perl-Test-UseAllModules.spec @@ -3,7 +3,7 @@ Name: perl-Test-UseAllModules Version: 0.17 -Release: 32%{?dist} +Release: 32%{?dist} Summary: Do use_ok() for all the MANIFESTed modules License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-UseAllModules diff --git a/specs/p/perl-Test-Valgrind/perl-Test-Valgrind.spec b/specs/p/perl-Test-Valgrind/perl-Test-Valgrind.spec index bac55dbccac..ff85a849351 100644 --- a/specs/p/perl-Test-Valgrind/perl-Test-Valgrind.spec +++ b/specs/p/perl-Test-Valgrind/perl-Test-Valgrind.spec @@ -10,7 +10,7 @@ Name: perl-Test-Valgrind Summary: Generate suppressions, analyze and test any command with valgrind Version: 1.19 -Release: 29%{?dist} +Release: 29%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Valgrind Source0: https://cpan.metacpan.org/modules/by-module/Test/Test-Valgrind-%{version}.tar.gz diff --git a/specs/p/perl-Test-Version/perl-Test-Version.spec b/specs/p/perl-Test-Version/perl-Test-Version.spec index 89d483ef76b..abd9000a159 100644 --- a/specs/p/perl-Test-Version/perl-Test-Version.spec +++ b/specs/p/perl-Test-Version/perl-Test-Version.spec @@ -3,7 +3,7 @@ Name: perl-Test-Version Version: 2.09 -Release: 28%{?dist} +Release: 28%{?dist} Summary: Check to see that versions in modules are sane License: Artistic-2.0 URL: https://metacpan.org/release/Test-Version diff --git a/specs/p/perl-Test-Warn/perl-Test-Warn.spec b/specs/p/perl-Test-Warn/perl-Test-Warn.spec index 5fe399e7872..d2090d19139 100644 --- a/specs/p/perl-Test-Warn/perl-Test-Warn.spec +++ b/specs/p/perl-Test-Warn/perl-Test-Warn.spec @@ -3,7 +3,7 @@ Name: perl-Test-Warn Version: 0.37 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Perl extension to test methods for warnings License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Warn diff --git a/specs/p/perl-Test-Warnings/perl-Test-Warnings.spec b/specs/p/perl-Test-Warnings/perl-Test-Warnings.spec index 62b0150c279..c780cab55b5 100644 --- a/specs/p/perl-Test-Warnings/perl-Test-Warnings.spec +++ b/specs/p/perl-Test-Warnings/perl-Test-Warnings.spec @@ -10,7 +10,7 @@ Name: perl-Test-Warnings Version: 0.038 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Test for warnings and the lack of them License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-Warnings diff --git a/specs/p/perl-Test-Without-Module/perl-Test-Without-Module.spec b/specs/p/perl-Test-Without-Module/perl-Test-Without-Module.spec index 4f2122175eb..642bc9e02e1 100644 --- a/specs/p/perl-Test-Without-Module/perl-Test-Without-Module.spec +++ b/specs/p/perl-Test-Without-Module/perl-Test-Without-Module.spec @@ -3,7 +3,7 @@ Name: perl-Test-Without-Module Version: 0.23 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Test fallback behavior in absence of modules License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Test-XML/perl-Test-XML.spec b/specs/p/perl-Test-XML/perl-Test-XML.spec index 1bedb303ee8..350e6ab3117 100644 --- a/specs/p/perl-Test-XML/perl-Test-XML.spec +++ b/specs/p/perl-Test-XML/perl-Test-XML.spec @@ -3,7 +3,7 @@ Name: perl-Test-XML Version: 0.08 -Release: 33%{?dist} +Release: 33%{?dist} Summary: Compare XML in perl tests License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-XML diff --git a/specs/p/perl-Test-YAML/perl-Test-YAML.spec b/specs/p/perl-Test-YAML/perl-Test-YAML.spec index f35793bf59c..0e368d706c7 100644 --- a/specs/p/perl-Test-YAML/perl-Test-YAML.spec +++ b/specs/p/perl-Test-YAML/perl-Test-YAML.spec @@ -6,7 +6,7 @@ Name: perl-Test-YAML Version: 1.07 -Release: 23%{?dist} +Release: 23%{?dist} Summary: Testing Module for YAML Implementations License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Test-YAML diff --git a/specs/p/perl-Test2-Plugin-NoWarnings/perl-Test2-Plugin-NoWarnings.spec b/specs/p/perl-Test2-Plugin-NoWarnings/perl-Test2-Plugin-NoWarnings.spec index 9331ad45bf5..ecf56086f6d 100644 --- a/specs/p/perl-Test2-Plugin-NoWarnings/perl-Test2-Plugin-NoWarnings.spec +++ b/specs/p/perl-Test2-Plugin-NoWarnings/perl-Test2-Plugin-NoWarnings.spec @@ -3,7 +3,7 @@ Name: perl-Test2-Plugin-NoWarnings Version: 0.10 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Fail if tests warn License: Artistic-2.0 URL: https://metacpan.org/release/Test2-Plugin-NoWarnings diff --git a/specs/p/perl-Text-Balanced/perl-Text-Balanced.spec b/specs/p/perl-Text-Balanced/perl-Text-Balanced.spec index 92fb4f19ad8..971a0f1b067 100644 --- a/specs/p/perl-Text-Balanced/perl-Text-Balanced.spec +++ b/specs/p/perl-Text-Balanced/perl-Text-Balanced.spec @@ -3,7 +3,7 @@ Name: perl-Text-Balanced Version: 2.07 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Extract delimited text sequences from strings License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Text-Balanced diff --git a/specs/p/perl-Text-CSV/perl-Text-CSV.spec b/specs/p/perl-Text-CSV/perl-Text-CSV.spec index e3081b0ac67..1315b2c9666 100644 --- a/specs/p/perl-Text-CSV/perl-Text-CSV.spec +++ b/specs/p/perl-Text-CSV/perl-Text-CSV.spec @@ -3,7 +3,7 @@ Name: perl-Text-CSV Version: 2.06 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Comma-separated values manipulator License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Text-CSV diff --git a/specs/p/perl-Text-CSV_XS/perl-Text-CSV_XS.spec b/specs/p/perl-Text-CSV_XS/perl-Text-CSV_XS.spec index c93e169a5a1..5e24bdaf719 100644 --- a/specs/p/perl-Text-CSV_XS/perl-Text-CSV_XS.spec +++ b/specs/p/perl-Text-CSV_XS/perl-Text-CSV_XS.spec @@ -3,7 +3,7 @@ Name: perl-Text-CSV_XS Version: 1.61 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Comma-separated values manipulation routines License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Text-CSV_XS diff --git a/specs/p/perl-Text-CharWidth/perl-Text-CharWidth.spec b/specs/p/perl-Text-CharWidth/perl-Text-CharWidth.spec index 441f82816a6..07b2ef795cb 100644 --- a/specs/p/perl-Text-CharWidth/perl-Text-CharWidth.spec +++ b/specs/p/perl-Text-CharWidth/perl-Text-CharWidth.spec @@ -4,7 +4,7 @@ Summary: Get number of occupied columns of a string on terminal Name: perl-Text-CharWidth Version: 0.04 -Release: 59%{?dist} +Release: 59%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Text-CharWidth diff --git a/specs/p/perl-Text-Diff/perl-Text-Diff.spec b/specs/p/perl-Text-Diff/perl-Text-Diff.spec index 8688487c343..8fbafc42035 100644 --- a/specs/p/perl-Text-Diff/perl-Text-Diff.spec +++ b/specs/p/perl-Text-Diff/perl-Text-Diff.spec @@ -3,7 +3,7 @@ Name: perl-Text-Diff Version: 1.45 -Release: 25%{?dist} +Release: 25%{?dist} Summary: Perform diffs on files and record sets # lib/Text/Diff.pm - GPL-2.0-or-later OR Artistic-1.0-Perl # lib/Text/Diff/Config.pm - MIT diff --git a/specs/p/perl-Text-Glob/perl-Text-Glob.spec b/specs/p/perl-Text-Glob/perl-Text-Glob.spec index e8d58ada9b2..8cc34c8c933 100644 --- a/specs/p/perl-Text-Glob/perl-Text-Glob.spec +++ b/specs/p/perl-Text-Glob/perl-Text-Glob.spec @@ -3,7 +3,7 @@ Name: perl-Text-Glob Version: 0.11 -Release: 27%{?dist} +Release: 27%{?dist} Summary: Perl module to match globbing patterns against text License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Text-Glob diff --git a/specs/p/perl-Text-Iconv/perl-Text-Iconv.spec b/specs/p/perl-Text-Iconv/perl-Text-Iconv.spec index 2e93e04c8b1..5e7ef72759a 100644 --- a/specs/p/perl-Text-Iconv/perl-Text-Iconv.spec +++ b/specs/p/perl-Text-Iconv/perl-Text-Iconv.spec @@ -3,7 +3,7 @@ Name: perl-Text-Iconv Version: 1.7 -Release: 58%{?dist} +Release: 58%{?dist} Summary: Perl interface to iconv() codeset conversion function License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Text-ParseWords/perl-Text-ParseWords.spec b/specs/p/perl-Text-ParseWords/perl-Text-ParseWords.spec index 6dcf5739a64..4bab1257609 100644 --- a/specs/p/perl-Text-ParseWords/perl-Text-ParseWords.spec +++ b/specs/p/perl-Text-ParseWords/perl-Text-ParseWords.spec @@ -3,7 +3,7 @@ Name: perl-Text-ParseWords Version: 3.31 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Parse text into an array of tokens or array of arrays License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Text-ParseWords diff --git a/specs/p/perl-Text-Roman/perl-Text-Roman.spec b/specs/p/perl-Text-Roman/perl-Text-Roman.spec index c9c23a760ed..1dcb70eb8b2 100644 --- a/specs/p/perl-Text-Roman/perl-Text-Roman.spec +++ b/specs/p/perl-Text-Roman/perl-Text-Roman.spec @@ -3,7 +3,7 @@ Name: perl-Text-Roman Version: 3.5 -Release: 32%{?dist} +Release: 32%{?dist} Summary: Conversion between Roman algorisms and Arabic numerals # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Text-Soundex/perl-Text-Soundex.spec b/specs/p/perl-Text-Soundex/perl-Text-Soundex.spec index 1a983d25f94..08b9e131aa8 100644 --- a/specs/p/perl-Text-Soundex/perl-Text-Soundex.spec +++ b/specs/p/perl-Text-Soundex/perl-Text-Soundex.spec @@ -3,7 +3,7 @@ Name: perl-Text-Soundex Version: 3.05 -Release: 36%{?dist} +Release: 36%{?dist} Summary: Implementation of the soundex algorithm # The original license was (Copyright only). Since 3.05 somebody (RJBS?) # added Perl license but kept the original license text. diff --git a/specs/p/perl-Text-Tabs+Wrap/perl-Text-Tabs+Wrap.spec b/specs/p/perl-Text-Tabs+Wrap/perl-Text-Tabs+Wrap.spec index 2e80a60a731..0e20b711fb0 100644 --- a/specs/p/perl-Text-Tabs+Wrap/perl-Text-Tabs+Wrap.spec +++ b/specs/p/perl-Text-Tabs+Wrap/perl-Text-Tabs+Wrap.spec @@ -3,7 +3,7 @@ Name: perl-Text-Tabs+Wrap Version: 2024.001 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Expand tabs and do simple line wrapping License: TTWL URL: https://metacpan.org/release/Text-Tabs%2BWrap diff --git a/specs/p/perl-Text-Template/perl-Text-Template.spec b/specs/p/perl-Text-Template/perl-Text-Template.spec index 1ead143754b..bd793e4c4ae 100644 --- a/specs/p/perl-Text-Template/perl-Text-Template.spec +++ b/specs/p/perl-Text-Template/perl-Text-Template.spec @@ -6,7 +6,7 @@ Name: perl-Text-Template Version: 1.61 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Expand template text with embedded Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Text-Template diff --git a/specs/p/perl-Text-Unidecode/perl-Text-Unidecode.spec b/specs/p/perl-Text-Unidecode/perl-Text-Unidecode.spec index 990f9a90e3d..2294adbfa5a 100644 --- a/specs/p/perl-Text-Unidecode/perl-Text-Unidecode.spec +++ b/specs/p/perl-Text-Unidecode/perl-Text-Unidecode.spec @@ -3,7 +3,7 @@ Name: perl-Text-Unidecode Version: 1.30 -Release: 28%{?dist} +Release: 28%{?dist} Summary: US-ASCII transliterations of Unicode text License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Text-Unidecode diff --git a/specs/p/perl-Text-WrapI18N/perl-Text-WrapI18N.spec b/specs/p/perl-Text-WrapI18N/perl-Text-WrapI18N.spec index 85150e87ebd..8467bdb766f 100644 --- a/specs/p/perl-Text-WrapI18N/perl-Text-WrapI18N.spec +++ b/specs/p/perl-Text-WrapI18N/perl-Text-WrapI18N.spec @@ -4,7 +4,7 @@ Summary: Line wrapping with support for several locale setups Name: perl-Text-WrapI18N Version: 0.06 -Release: 53%{?dist} +Release: 53%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Text-WrapI18N diff --git a/specs/p/perl-Thread-Queue/perl-Thread-Queue.spec b/specs/p/perl-Thread-Queue/perl-Thread-Queue.spec index 73a35581ad2..0385b4e2732 100644 --- a/specs/p/perl-Thread-Queue/perl-Thread-Queue.spec +++ b/specs/p/perl-Thread-Queue/perl-Thread-Queue.spec @@ -4,7 +4,7 @@ %global base_version 3.13 Name: perl-Thread-Queue Version: 3.14 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Thread-safe queues License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Thread-Queue diff --git a/specs/p/perl-Throwable/perl-Throwable.spec b/specs/p/perl-Throwable/perl-Throwable.spec index e98a994b99b..f137cc57fe6 100644 --- a/specs/p/perl-Throwable/perl-Throwable.spec +++ b/specs/p/perl-Throwable/perl-Throwable.spec @@ -4,7 +4,7 @@ Name: perl-Throwable Epoch: 1 Version: 1.001 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Role for classes that can be thrown License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Throwable diff --git a/specs/p/perl-Tie-IxHash/perl-Tie-IxHash.spec b/specs/p/perl-Tie-IxHash/perl-Tie-IxHash.spec index e06199f4aa4..6a29f07211d 100644 --- a/specs/p/perl-Tie-IxHash/perl-Tie-IxHash.spec +++ b/specs/p/perl-Tie-IxHash/perl-Tie-IxHash.spec @@ -10,7 +10,7 @@ Name: perl-Tie-IxHash Version: 1.23 -Release: 42%{?dist} +Release: 42%{?dist} Summary: Ordered associative arrays for Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-Tie-RefHash-Weak/perl-Tie-RefHash-Weak.spec b/specs/p/perl-Tie-RefHash-Weak/perl-Tie-RefHash-Weak.spec index de5bf6e94f7..f485aee9418 100644 --- a/specs/p/perl-Tie-RefHash-Weak/perl-Tie-RefHash-Weak.spec +++ b/specs/p/perl-Tie-RefHash-Weak/perl-Tie-RefHash-Weak.spec @@ -3,7 +3,7 @@ Name: perl-Tie-RefHash-Weak Version: 0.09 -Release: 48%{?dist} +Release: 48%{?dist} Summary: Tie::RefHash subclass with weakened references in the keys License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Tie-RefHash-Weak diff --git a/specs/p/perl-Tie-RefHash/perl-Tie-RefHash.spec b/specs/p/perl-Tie-RefHash/perl-Tie-RefHash.spec index 55eddb7b70a..9eee5a06475 100644 --- a/specs/p/perl-Tie-RefHash/perl-Tie-RefHash.spec +++ b/specs/p/perl-Tie-RefHash/perl-Tie-RefHash.spec @@ -6,7 +6,7 @@ Name: perl-Tie-RefHash Version: 1.41 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Use references as hash keys License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Tie-RefHash diff --git a/specs/p/perl-Tie-ToObject/perl-Tie-ToObject.spec b/specs/p/perl-Tie-ToObject/perl-Tie-ToObject.spec index e1791e07928..0ad9883f24f 100644 --- a/specs/p/perl-Tie-ToObject/perl-Tie-ToObject.spec +++ b/specs/p/perl-Tie-ToObject/perl-Tie-ToObject.spec @@ -3,7 +3,7 @@ Name: perl-Tie-ToObject Version: 0.03 -Release: 51%{?dist} +Release: 51%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl Summary: Tie to an existing object Source: https://cpan.metacpan.org/authors/id/N/NU/NUFFIN/Tie-ToObject-%{version}.tar.gz diff --git a/specs/p/perl-Time-HiRes/perl-Time-HiRes.spec b/specs/p/perl-Time-HiRes/perl-Time-HiRes.spec index 2f4e10adbfd..51f5f7a0bd1 100644 --- a/specs/p/perl-Time-HiRes/perl-Time-HiRes.spec +++ b/specs/p/perl-Time-HiRes/perl-Time-HiRes.spec @@ -6,7 +6,7 @@ Name: perl-Time-HiRes Epoch: 4 Version: 1.9778 -Release: 521%{?dist} +Release: 521%{?dist} Summary: High resolution alarm, sleep, gettimeofday, interval timers License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Time-HiRes diff --git a/specs/p/perl-Time-Local/perl-Time-Local.spec b/specs/p/perl-Time-Local/perl-Time-Local.spec index 2fa9c7f9320..9583772c009 100644 --- a/specs/p/perl-Time-Local/perl-Time-Local.spec +++ b/specs/p/perl-Time-Local/perl-Time-Local.spec @@ -5,7 +5,7 @@ Name: perl-Time-Local Epoch: 2 Version: %{cpan_version}0 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Efficiently compute time from local and GMT time License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Time-Local diff --git a/specs/p/perl-TimeDate/perl-TimeDate.spec b/specs/p/perl-TimeDate/perl-TimeDate.spec index 4e8fb652950..2b0eb85d8b8 100644 --- a/specs/p/perl-TimeDate/perl-TimeDate.spec +++ b/specs/p/perl-TimeDate/perl-TimeDate.spec @@ -4,7 +4,7 @@ Name: perl-TimeDate Version: 2.33 Epoch: 1 -Release: 18%{?dist} +Release: 18%{?dist} Summary: A Perl module for time and date manipulation License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/TimeDate diff --git a/specs/p/perl-Tk/perl-Tk.spec b/specs/p/perl-Tk/perl-Tk.spec index 6a1280e2a10..350f633ca68 100644 --- a/specs/p/perl-Tk/perl-Tk.spec +++ b/specs/p/perl-Tk/perl-Tk.spec @@ -9,7 +9,7 @@ Name: perl-Tk Version: 804.036 -Release: 24%{?dist} +Release: 24%{?dist} Summary: Perl Graphical User Interface ToolKit License: (GPL-1.0-or-later OR Artistic-1.0-Perl) AND SWL diff --git a/specs/p/perl-Try-Tiny/perl-Try-Tiny.spec b/specs/p/perl-Try-Tiny/perl-Try-Tiny.spec index af899b49b0c..b5cf6821b1c 100644 --- a/specs/p/perl-Try-Tiny/perl-Try-Tiny.spec +++ b/specs/p/perl-Try-Tiny/perl-Try-Tiny.spec @@ -10,7 +10,7 @@ Name: perl-Try-Tiny Summary: Minimal try/catch with proper localization of $@ Version: 0.32 -Release: 4%{?dist} +Release: 4%{?dist} License: MIT URL: https://metacpan.org/release/Try-Tiny Source0: https://cpan.metacpan.org/authors/id/E/ET/ETHER/Try-Tiny-%{version}.tar.gz diff --git a/specs/p/perl-Type-Tiny-XS/perl-Type-Tiny-XS.spec b/specs/p/perl-Type-Tiny-XS/perl-Type-Tiny-XS.spec index 47336fc5e2b..b8f709b4b85 100644 --- a/specs/p/perl-Type-Tiny-XS/perl-Type-Tiny-XS.spec +++ b/specs/p/perl-Type-Tiny-XS/perl-Type-Tiny-XS.spec @@ -3,7 +3,7 @@ Name: perl-Type-Tiny-XS Version: 0.025 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Provides an XS boost for some of Type::Tiny's built-in type constraints License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/dist/Type-Tiny-XS/ diff --git a/specs/p/perl-Type-Tiny/perl-Type-Tiny.spec b/specs/p/perl-Type-Tiny/perl-Type-Tiny.spec index ec303388274..27173aceca9 100644 --- a/specs/p/perl-Type-Tiny/perl-Type-Tiny.spec +++ b/specs/p/perl-Type-Tiny/perl-Type-Tiny.spec @@ -3,7 +3,7 @@ Name: perl-Type-Tiny Version: 2.008003 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Tiny, yet Moo(se)-compatible type constraint License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Type-Tiny diff --git a/specs/p/perl-Types-Path-Tiny/perl-Types-Path-Tiny.spec b/specs/p/perl-Types-Path-Tiny/perl-Types-Path-Tiny.spec index 937dc708118..cc33469b8dc 100644 --- a/specs/p/perl-Types-Path-Tiny/perl-Types-Path-Tiny.spec +++ b/specs/p/perl-Types-Path-Tiny/perl-Types-Path-Tiny.spec @@ -3,7 +3,7 @@ Name: perl-Types-Path-Tiny Version: 0.006 -Release: 24%{?dist} +Release: 24%{?dist} Summary: Path::Tiny types and coercions for Moose and Moo License: Apache-2.0 URL: https://metacpan.org/release/Types-Path-Tiny diff --git a/specs/p/perl-Types-Serialiser/perl-Types-Serialiser.spec b/specs/p/perl-Types-Serialiser/perl-Types-Serialiser.spec index 99b039b81fa..936f1d7ae3c 100644 --- a/specs/p/perl-Types-Serialiser/perl-Types-Serialiser.spec +++ b/specs/p/perl-Types-Serialiser/perl-Types-Serialiser.spec @@ -4,7 +4,7 @@ Name: perl-Types-Serialiser Summary: Simple data types for common serialization formats Version: 1.01 -Release: 15%{?dist} +Release: 15%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Types-Serialiser Source0: https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/Types-Serialiser-%{version}.tar.gz diff --git a/specs/p/perl-UNIVERSAL-isa/perl-UNIVERSAL-isa.spec b/specs/p/perl-UNIVERSAL-isa/perl-UNIVERSAL-isa.spec index 95f79297b38..f5a289b89e0 100644 --- a/specs/p/perl-UNIVERSAL-isa/perl-UNIVERSAL-isa.spec +++ b/specs/p/perl-UNIVERSAL-isa/perl-UNIVERSAL-isa.spec @@ -3,7 +3,7 @@ Name: perl-UNIVERSAL-isa Version: 1.20171012 -Release: 25%{?dist} +Release: 25%{?dist} Summary: Hack around module authors using UNIVERSAL::isa as a function License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/UNIVERSAL-isa diff --git a/specs/p/perl-URI-Find/perl-URI-Find.spec b/specs/p/perl-URI-Find/perl-URI-Find.spec index 844aafd1910..b3c5c85d956 100644 --- a/specs/p/perl-URI-Find/perl-URI-Find.spec +++ b/specs/p/perl-URI-Find/perl-URI-Find.spec @@ -4,7 +4,7 @@ Name: perl-URI-Find Summary: Find URIs in plain text Version: 20160806 -Release: 27%{?dist} +Release: 27%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl Source0: https://cpan.metacpan.org/authors/id/M/MS/MSCHWERN/URI-Find-%{version}.tar.gz URL: https://metacpan.org/release/URI-Find diff --git a/specs/p/perl-URI/perl-URI.spec b/specs/p/perl-URI/perl-URI.spec index bd4078cbdf1..c4c7bf8a34f 100644 --- a/specs/p/perl-URI/perl-URI.spec +++ b/specs/p/perl-URI/perl-URI.spec @@ -12,7 +12,7 @@ Name: perl-URI Version: 5.34 -Release: 3%{?dist} +Release: 3%{?dist} Summary: A Perl module implementing URI parsing and manipulation License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/URI diff --git a/specs/p/perl-Unicode-CheckUTF8/perl-Unicode-CheckUTF8.spec b/specs/p/perl-Unicode-CheckUTF8/perl-Unicode-CheckUTF8.spec index e2d08facb1b..31418256b1b 100644 --- a/specs/p/perl-Unicode-CheckUTF8/perl-Unicode-CheckUTF8.spec +++ b/specs/p/perl-Unicode-CheckUTF8/perl-Unicode-CheckUTF8.spec @@ -15,7 +15,7 @@ Summary: Checks if scalar is valid UTF-8 Name: perl-Unicode-CheckUTF8 Version: 1.03 -Release: 46%{?dist} +Release: 46%{?dist} License: Unicode-3.0 AND (GPL-1.0-or-later OR Artistic-1.0-Perl) URL: https://metacpan.org/release/Unicode-CheckUTF8 Source0: https://cpan.metacpan.org/modules/by-module/Unicode/Unicode-CheckUTF8-%{version}.tar.gz diff --git a/specs/p/perl-Unicode-Collate/perl-Unicode-Collate.spec b/specs/p/perl-Unicode-Collate/perl-Unicode-Collate.spec index 3b0c9e7f2ab..6486f42fe54 100644 --- a/specs/p/perl-Unicode-Collate/perl-Unicode-Collate.spec +++ b/specs/p/perl-Unicode-Collate/perl-Unicode-Collate.spec @@ -3,7 +3,7 @@ Name: perl-Unicode-Collate Version: 1.31 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Unicode Collation Algorithm # Collate/allkeys.txt: Unicode-DFS-2016 (the file contains a link to # ) diff --git a/specs/p/perl-Unicode-EastAsianWidth/perl-Unicode-EastAsianWidth.spec b/specs/p/perl-Unicode-EastAsianWidth/perl-Unicode-EastAsianWidth.spec index 1ecfc994fa3..4824e052073 100644 --- a/specs/p/perl-Unicode-EastAsianWidth/perl-Unicode-EastAsianWidth.spec +++ b/specs/p/perl-Unicode-EastAsianWidth/perl-Unicode-EastAsianWidth.spec @@ -3,7 +3,7 @@ Name: perl-Unicode-EastAsianWidth Version: 12.0 -Release: 18%{?dist} +Release: 18%{?dist} Summary: East Asian Width properties License: CC0-1.0 URL: https://metacpan.org/release/Unicode-EastAsianWidth diff --git a/specs/p/perl-Unicode-LineBreak/perl-Unicode-LineBreak.spec b/specs/p/perl-Unicode-LineBreak/perl-Unicode-LineBreak.spec index 2d6e41783c4..5edc429dfca 100644 --- a/specs/p/perl-Unicode-LineBreak/perl-Unicode-LineBreak.spec +++ b/specs/p/perl-Unicode-LineBreak/perl-Unicode-LineBreak.spec @@ -10,7 +10,7 @@ Name: perl-Unicode-LineBreak Version: 2019.001 -Release: 26%{?dist} +Release: 26%{?dist} Summary: UAX #14 Unicode Line Breaking Algorithm License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Unicode-LineBreak diff --git a/specs/p/perl-Unicode-Map8/perl-Unicode-Map8.spec b/specs/p/perl-Unicode-Map8/perl-Unicode-Map8.spec index 7ae6af07127..fc61dd3944d 100644 --- a/specs/p/perl-Unicode-Map8/perl-Unicode-Map8.spec +++ b/specs/p/perl-Unicode-Map8/perl-Unicode-Map8.spec @@ -3,7 +3,7 @@ Name: perl-Unicode-Map8 Version: 0.13 -Release: 53%{?dist} +Release: 53%{?dist} Summary: Mapping table between 8-bit chars and Unicode for Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Unicode-Map8 diff --git a/specs/p/perl-Unicode-Normalize/perl-Unicode-Normalize.spec b/specs/p/perl-Unicode-Normalize/perl-Unicode-Normalize.spec index e5dc61f296c..bfcd1112c83 100644 --- a/specs/p/perl-Unicode-Normalize/perl-Unicode-Normalize.spec +++ b/specs/p/perl-Unicode-Normalize/perl-Unicode-Normalize.spec @@ -4,7 +4,7 @@ %global base_version 1.26 Name: perl-Unicode-Normalize Version: 1.32 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Unicode Normalization Forms License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Unicode-Normalize diff --git a/specs/p/perl-Unicode-String/perl-Unicode-String.spec b/specs/p/perl-Unicode-String/perl-Unicode-String.spec index 31c621016ca..ce54f7e895b 100644 --- a/specs/p/perl-Unicode-String/perl-Unicode-String.spec +++ b/specs/p/perl-Unicode-String/perl-Unicode-String.spec @@ -3,7 +3,7 @@ Name: perl-Unicode-String Version: 2.10 -Release: 33%{?dist} +Release: 33%{?dist} Summary: Perl modules to handle various Unicode issues diff --git a/specs/p/perl-Unicode-UTF8/perl-Unicode-UTF8.spec b/specs/p/perl-Unicode-UTF8/perl-Unicode-UTF8.spec index ee06d6552a5..a514d15150d 100644 --- a/specs/p/perl-Unicode-UTF8/perl-Unicode-UTF8.spec +++ b/specs/p/perl-Unicode-UTF8/perl-Unicode-UTF8.spec @@ -11,7 +11,7 @@ Summary: Encoding and decoding of UTF-8 encoding form Name: perl-Unicode-UTF8 Version: 0.62 -Release: 30%{?dist} +Release: 30%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Unicode-UTF8 Source0: https://cpan.metacpan.org/modules/by-module/Unicode/Unicode-UTF8-%{version}.tar.gz diff --git a/specs/p/perl-Unix-Syslog/perl-Unix-Syslog.spec b/specs/p/perl-Unix-Syslog/perl-Unix-Syslog.spec index da11ce49657..c3ba9c09f72 100644 --- a/specs/p/perl-Unix-Syslog/perl-Unix-Syslog.spec +++ b/specs/p/perl-Unix-Syslog/perl-Unix-Syslog.spec @@ -6,7 +6,7 @@ Name: perl-Unix-Syslog Version: 1.1 -Release: 55%{?dist} +Release: 55%{?dist} Summary: Perl interface to the UNIX syslog(3) calls License: Artistic-2.0 URL: https://metacpan.org/release/Unix-Syslog diff --git a/specs/p/perl-Validation-Class/perl-Validation-Class.spec b/specs/p/perl-Validation-Class/perl-Validation-Class.spec index 385c15ba685..31f46513411 100644 --- a/specs/p/perl-Validation-Class/perl-Validation-Class.spec +++ b/specs/p/perl-Validation-Class/perl-Validation-Class.spec @@ -3,7 +3,7 @@ Name: perl-Validation-Class Version: 7.900059 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Powerful Data Validation Framework License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Validation-Class diff --git a/specs/p/perl-Variable-Magic/perl-Variable-Magic.spec b/specs/p/perl-Variable-Magic/perl-Variable-Magic.spec index d659a58a6a4..458fcfb65bd 100644 --- a/specs/p/perl-Variable-Magic/perl-Variable-Magic.spec +++ b/specs/p/perl-Variable-Magic/perl-Variable-Magic.spec @@ -3,7 +3,7 @@ Name: perl-Variable-Magic Version: 0.64 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Associate user-defined magic to variables from Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-WWW-RobotRules/perl-WWW-RobotRules.spec b/specs/p/perl-WWW-RobotRules/perl-WWW-RobotRules.spec index 9b19481d7e0..4f0173076e2 100644 --- a/specs/p/perl-WWW-RobotRules/perl-WWW-RobotRules.spec +++ b/specs/p/perl-WWW-RobotRules/perl-WWW-RobotRules.spec @@ -3,7 +3,7 @@ Name: perl-WWW-RobotRules Version: 6.02 -Release: 43%{?dist} +Release: 43%{?dist} Summary: Database of robots.txt-derived permissions License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/WWW-RobotRules diff --git a/specs/p/perl-Want/perl-Want.spec b/specs/p/perl-Want/perl-Want.spec index 12f8f0ebc90..ea9f2bf0b01 100644 --- a/specs/p/perl-Want/perl-Want.spec +++ b/specs/p/perl-Want/perl-Want.spec @@ -3,7 +3,7 @@ Name: perl-Want Version: 0.29 -Release: 34%{?dist} +Release: 34%{?dist} Summary: Perl module implementing a generalisation of wantarray License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/Want diff --git a/specs/p/perl-XML-Catalog/perl-XML-Catalog.spec b/specs/p/perl-XML-Catalog/perl-XML-Catalog.spec index 99fd72b372d..92d4dc7553c 100644 --- a/specs/p/perl-XML-Catalog/perl-XML-Catalog.spec +++ b/specs/p/perl-XML-Catalog/perl-XML-Catalog.spec @@ -6,7 +6,7 @@ Name: perl-XML-Catalog Version: %(echo '%{cpan_version}' | tr -d 'v') -Release: 34%{?dist} +Release: 34%{?dist} Summary: Resolve public identifiers and remap system identifiers License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/XML-Catalog diff --git a/specs/p/perl-XML-DOM/perl-XML-DOM.spec b/specs/p/perl-XML-DOM/perl-XML-DOM.spec index c6d2d75bfbf..026423eb268 100644 --- a/specs/p/perl-XML-DOM/perl-XML-DOM.spec +++ b/specs/p/perl-XML-DOM/perl-XML-DOM.spec @@ -3,7 +3,7 @@ Name: perl-XML-DOM Version: 1.46 -Release: 28%{?dist} +Release: 28%{?dist} Summary: DOM extension to XML::Parser License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-XML-Dumper/perl-XML-Dumper.spec b/specs/p/perl-XML-Dumper/perl-XML-Dumper.spec index 894d5631422..b837bcf9501 100644 --- a/specs/p/perl-XML-Dumper/perl-XML-Dumper.spec +++ b/specs/p/perl-XML-Dumper/perl-XML-Dumper.spec @@ -3,7 +3,7 @@ Name: perl-XML-Dumper Version: 0.81 -Release: 52%{dist} +Release: 55%{dist} Summary: Perl module for dumping Perl objects from/to XML License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-XML-Filter-BufferText/perl-XML-Filter-BufferText.spec b/specs/p/perl-XML-Filter-BufferText/perl-XML-Filter-BufferText.spec index e702c19be85..c233fcc6132 100644 --- a/specs/p/perl-XML-Filter-BufferText/perl-XML-Filter-BufferText.spec +++ b/specs/p/perl-XML-Filter-BufferText/perl-XML-Filter-BufferText.spec @@ -3,7 +3,7 @@ Name: perl-XML-Filter-BufferText Version: 1.01 -Release: 52%{?dist} +Release: 52%{?dist} Summary: Filter to put all characters() in one event # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-XML-Handler-YAWriter/perl-XML-Handler-YAWriter.spec b/specs/p/perl-XML-Handler-YAWriter/perl-XML-Handler-YAWriter.spec index ccf0819ee8d..13e399d397c 100644 --- a/specs/p/perl-XML-Handler-YAWriter/perl-XML-Handler-YAWriter.spec +++ b/specs/p/perl-XML-Handler-YAWriter/perl-XML-Handler-YAWriter.spec @@ -3,7 +3,7 @@ Name: perl-XML-Handler-YAWriter Version: 0.23 -Release: 53%{?dist} +Release: 53%{?dist} Summary: Yet another Perl SAX XML Writer diff --git a/specs/p/perl-XML-LibXML-Simple/perl-XML-LibXML-Simple.spec b/specs/p/perl-XML-LibXML-Simple/perl-XML-LibXML-Simple.spec index 58d7ba7f567..4ab9991bb80 100644 --- a/specs/p/perl-XML-LibXML-Simple/perl-XML-LibXML-Simple.spec +++ b/specs/p/perl-XML-LibXML-Simple/perl-XML-LibXML-Simple.spec @@ -3,7 +3,7 @@ Name: perl-XML-LibXML-Simple Version: 1.01 -Release: 19%{?dist} +Release: 19%{?dist} Summary: Read XML strings or files # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-XML-LibXML/perl-XML-LibXML.spec b/specs/p/perl-XML-LibXML/perl-XML-LibXML.spec index 1e8d3190f8a..b6f80d52f02 100644 --- a/specs/p/perl-XML-LibXML/perl-XML-LibXML.spec +++ b/specs/p/perl-XML-LibXML/perl-XML-LibXML.spec @@ -11,7 +11,7 @@ Name: perl-XML-LibXML # it might not be needed anymore # this module is maintained, the other is not Version: 2.0210 -Release: 7%{?dist} +Release: 7%{?dist} Epoch: 1 Summary: Perl interface to the libxml2 library License: (GPL-1.0-or-later OR Artistic-1.0-Perl) AND MIT diff --git a/specs/p/perl-XML-LibXSLT/perl-XML-LibXSLT.spec b/specs/p/perl-XML-LibXSLT/perl-XML-LibXSLT.spec index 5a6a485ee23..e556afd5da4 100644 --- a/specs/p/perl-XML-LibXSLT/perl-XML-LibXSLT.spec +++ b/specs/p/perl-XML-LibXSLT/perl-XML-LibXSLT.spec @@ -6,7 +6,7 @@ Name: perl-XML-LibXSLT # NOTE: also update perl-XML-LibXML to a compatible version. See below why. Version: %(echo '%{cpan_version}' | sed 's/\(\....\)\(.\)/\1.\2/') -Release: 6%{?dist} +Release: 6%{?dist} Summary: Perl module for interfacing to GNOME's libxslt # lib/XML/LibXSLT.pm: GPL-1.0-or-later OR Artistic-1.0-Perl # lib/XML/LibXSLT/Quick.pm: MIT diff --git a/specs/p/perl-XML-NamespaceSupport/perl-XML-NamespaceSupport.spec b/specs/p/perl-XML-NamespaceSupport/perl-XML-NamespaceSupport.spec index 79782928bdd..e73b14183d0 100644 --- a/specs/p/perl-XML-NamespaceSupport/perl-XML-NamespaceSupport.spec +++ b/specs/p/perl-XML-NamespaceSupport/perl-XML-NamespaceSupport.spec @@ -3,7 +3,7 @@ Name: perl-XML-NamespaceSupport Version: 1.12 -Release: 27%{?dist} +Release: 27%{?dist} Summary: A simple generic name space support class License: GPL-1.0-or-later OR Artistic-1.0-Perl Url: https://metacpan.org/release/XML-NamespaceSupport diff --git a/specs/p/perl-XML-Parser-Lite/perl-XML-Parser-Lite.spec b/specs/p/perl-XML-Parser-Lite/perl-XML-Parser-Lite.spec index f4a09467552..73a5c227e10 100644 --- a/specs/p/perl-XML-Parser-Lite/perl-XML-Parser-Lite.spec +++ b/specs/p/perl-XML-Parser-Lite/perl-XML-Parser-Lite.spec @@ -5,7 +5,7 @@ Name: perl-XML-Parser-Lite # Use three digits since 0.719 -> 0.72 %global cpan_version 0.722 Version: %{cpan_version} -Release: 22%{?dist} +Release: 22%{?dist} Summary: Lightweight regexp-based XML parser License: ( GPL-1.0-or-later OR Artistic-1.0-Perl ) AND LicenseRef-REX URL: https://metacpan.org/release/XML-Parser-Lite diff --git a/specs/p/perl-XML-Parser/perl-XML-Parser.spec b/specs/p/perl-XML-Parser/perl-XML-Parser.spec index db6a3205647..0842bb6e4b7 100644 --- a/specs/p/perl-XML-Parser/perl-XML-Parser.spec +++ b/specs/p/perl-XML-Parser/perl-XML-Parser.spec @@ -3,7 +3,7 @@ Name: perl-XML-Parser Version: 2.47 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Perl module for parsing XML documents License: Artistic-2.0 diff --git a/specs/p/perl-XML-RegExp/perl-XML-RegExp.spec b/specs/p/perl-XML-RegExp/perl-XML-RegExp.spec index d24e2722f43..22707ba1fc3 100644 --- a/specs/p/perl-XML-RegExp/perl-XML-RegExp.spec +++ b/specs/p/perl-XML-RegExp/perl-XML-RegExp.spec @@ -3,7 +3,7 @@ Name: perl-XML-RegExp Version: 0.04 -Release: 37%{?dist} +Release: 37%{?dist} Summary: Regular expressions for XML tokens License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-XML-SAX-Base/perl-XML-SAX-Base.spec b/specs/p/perl-XML-SAX-Base/perl-XML-SAX-Base.spec index cab7ddd3a26..bc0eec65b15 100644 --- a/specs/p/perl-XML-SAX-Base/perl-XML-SAX-Base.spec +++ b/specs/p/perl-XML-SAX-Base/perl-XML-SAX-Base.spec @@ -3,7 +3,7 @@ Name: perl-XML-SAX-Base Version: 1.09 -Release: 27%{?dist} +Release: 27%{?dist} Summary: Base class SAX drivers and filters License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/XML-SAX-Base diff --git a/specs/p/perl-XML-SAX-Writer/perl-XML-SAX-Writer.spec b/specs/p/perl-XML-SAX-Writer/perl-XML-SAX-Writer.spec index 216207f08c0..cd8f809569e 100644 --- a/specs/p/perl-XML-SAX-Writer/perl-XML-SAX-Writer.spec +++ b/specs/p/perl-XML-SAX-Writer/perl-XML-SAX-Writer.spec @@ -3,7 +3,7 @@ Name: perl-XML-SAX-Writer Version: 0.57 -Release: 25%{?dist} +Release: 25%{?dist} Summary: SAX2 Writer # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-XML-SAX/perl-XML-SAX.spec b/specs/p/perl-XML-SAX/perl-XML-SAX.spec index fe93d84e3bc..826702b189f 100644 --- a/specs/p/perl-XML-SAX/perl-XML-SAX.spec +++ b/specs/p/perl-XML-SAX/perl-XML-SAX.spec @@ -4,7 +4,7 @@ Summary: SAX parser access API for Perl Name: perl-XML-SAX Version: 1.02 -Release: 20%{?dist} +Release: 20%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/XML-SAX diff --git a/specs/p/perl-XML-SemanticDiff/perl-XML-SemanticDiff.spec b/specs/p/perl-XML-SemanticDiff/perl-XML-SemanticDiff.spec index 6cada820c08..1d2c40f1ce4 100644 --- a/specs/p/perl-XML-SemanticDiff/perl-XML-SemanticDiff.spec +++ b/specs/p/perl-XML-SemanticDiff/perl-XML-SemanticDiff.spec @@ -4,7 +4,7 @@ Name: perl-XML-SemanticDiff Summary: Perl extension for comparing XML documents Version: 1.0007 -Release: 22%{?dist} +Release: 22%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/XML-SemanticDiff Source0: https://cpan.metacpan.org/modules/by-module/XML/XML-SemanticDiff-%{version}.tar.gz diff --git a/specs/p/perl-XML-Simple/perl-XML-Simple.spec b/specs/p/perl-XML-Simple/perl-XML-Simple.spec index 0ae7fd40d55..f6edeb3132e 100644 --- a/specs/p/perl-XML-Simple/perl-XML-Simple.spec +++ b/specs/p/perl-XML-Simple/perl-XML-Simple.spec @@ -10,7 +10,7 @@ Name: perl-XML-Simple Version: 2.25 -Release: 24%{?dist} +Release: 24%{?dist} Summary: Easy API to maintain XML in Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/XML-Simple diff --git a/specs/p/perl-XML-TokeParser/perl-XML-TokeParser.spec b/specs/p/perl-XML-TokeParser/perl-XML-TokeParser.spec index 38aaa7a2d21..209ede45994 100644 --- a/specs/p/perl-XML-TokeParser/perl-XML-TokeParser.spec +++ b/specs/p/perl-XML-TokeParser/perl-XML-TokeParser.spec @@ -3,7 +3,7 @@ Name: perl-XML-TokeParser Version: 0.05 -Release: 48%{?dist} +Release: 48%{?dist} Summary: Simplified interface to XML::Parser License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-XML-Twig/perl-XML-Twig.spec b/specs/p/perl-XML-Twig/perl-XML-Twig.spec index 759b8c4ad85..ee6b5f7e5ae 100644 --- a/specs/p/perl-XML-Twig/perl-XML-Twig.spec +++ b/specs/p/perl-XML-Twig/perl-XML-Twig.spec @@ -10,7 +10,7 @@ Name: perl-XML-Twig Version: 3.54 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Perl module for processing huge XML documents in tree mode License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/XML-Twig diff --git a/specs/p/perl-XML-Writer/perl-XML-Writer.spec b/specs/p/perl-XML-Writer/perl-XML-Writer.spec index 6a1bba2a593..875dd1db1bb 100644 --- a/specs/p/perl-XML-Writer/perl-XML-Writer.spec +++ b/specs/p/perl-XML-Writer/perl-XML-Writer.spec @@ -3,7 +3,7 @@ Name: perl-XML-Writer Version: 0.900 -Release: 18%{?dist} +Release: 18%{?dist} Summary: A simple Perl module for writing XML documents License: LicenseRef-Fedora-UltraPermissive URL: https://metacpan.org/release/XML-Writer diff --git a/specs/p/perl-XML-XPath/perl-XML-XPath.spec b/specs/p/perl-XML-XPath/perl-XML-XPath.spec index c2ac30fa8c8..53bbaa4c993 100644 --- a/specs/p/perl-XML-XPath/perl-XML-XPath.spec +++ b/specs/p/perl-XML-XPath/perl-XML-XPath.spec @@ -10,7 +10,7 @@ Name: perl-XML-XPath Version: 1.48 -Release: 10%{?dist} +Release: 10%{?dist} Summary: XPath parser and evaluator for Perl # XML/XPath.pm, XML/XPath/PerlSAX.pm, REAME: GPL-1.0-or-later OR Artistic-1.0-Perl # Others: Artistic-2.0 diff --git a/specs/p/perl-XML-XPathEngine/perl-XML-XPathEngine.spec b/specs/p/perl-XML-XPathEngine/perl-XML-XPathEngine.spec index daa71a5a061..a4347d8f8fd 100644 --- a/specs/p/perl-XML-XPathEngine/perl-XML-XPathEngine.spec +++ b/specs/p/perl-XML-XPathEngine/perl-XML-XPathEngine.spec @@ -6,7 +6,7 @@ Name: perl-XML-XPathEngine Version: 0.14 -Release: 34%{?dist} +Release: 34%{?dist} Summary: Re-usable XPath engine for DOM-like trees License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/XML-XPathEngine diff --git a/specs/p/perl-XS-Parse-Keyword/perl-XS-Parse-Keyword.spec b/specs/p/perl-XS-Parse-Keyword/perl-XS-Parse-Keyword.spec index 532c477520d..4bb24c1b4db 100644 --- a/specs/p/perl-XS-Parse-Keyword/perl-XS-Parse-Keyword.spec +++ b/specs/p/perl-XS-Parse-Keyword/perl-XS-Parse-Keyword.spec @@ -6,7 +6,7 @@ Name: perl-XS-Parse-Keyword Version: 0.49 -Release: 2%{?dist} +Release: 2%{?dist} Summary: XS functions to assist in parsing keyword syntax License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/XS-Parse-Keyword diff --git a/specs/p/perl-XS-Parse-Sublike/perl-XS-Parse-Sublike.spec b/specs/p/perl-XS-Parse-Sublike/perl-XS-Parse-Sublike.spec index 21dcfe8b2fb..4ddc3cdb90a 100644 --- a/specs/p/perl-XS-Parse-Sublike/perl-XS-Parse-Sublike.spec +++ b/specs/p/perl-XS-Parse-Sublike/perl-XS-Parse-Sublike.spec @@ -17,7 +17,7 @@ Name: perl-XS-Parse-Sublike Version: 0.41 -Release: 2%{?dist} +Release: 2%{?dist} Summary: XS functions to assist in parsing sub-like syntax License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/XS-Parse-Sublike diff --git a/specs/p/perl-XString/perl-XString.spec b/specs/p/perl-XString/perl-XString.spec index 9a9f00566c7..f5988ac1c95 100644 --- a/specs/p/perl-XString/perl-XString.spec +++ b/specs/p/perl-XString/perl-XString.spec @@ -3,7 +3,7 @@ Name: perl-XString Version: 0.005 -Release: 18%{?dist} +Release: 18%{?dist} Summary: Isolated String helpers from B License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/XString diff --git a/specs/p/perl-XXX/perl-XXX.spec b/specs/p/perl-XXX/perl-XXX.spec index 31beca0e95d..710f233b5e8 100644 --- a/specs/p/perl-XXX/perl-XXX.spec +++ b/specs/p/perl-XXX/perl-XXX.spec @@ -3,7 +3,7 @@ Name: perl-XXX Version: 0.38 -Release: 12%{?dist} +Release: 12%{?dist} Summary: See Your Data in the Nude License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/XXX diff --git a/specs/p/perl-YAML-LibYAML/perl-YAML-LibYAML.spec b/specs/p/perl-YAML-LibYAML/perl-YAML-LibYAML.spec index e692e416e9b..f3434305663 100644 --- a/specs/p/perl-YAML-LibYAML/perl-YAML-LibYAML.spec +++ b/specs/p/perl-YAML-LibYAML/perl-YAML-LibYAML.spec @@ -11,7 +11,7 @@ Name: perl-YAML-LibYAML Epoch: 1 Version: 0.904.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Perl YAML Serialization using XS and libyaml License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/YAML-LibYAML diff --git a/specs/p/perl-YAML-PP/perl-YAML-PP.spec b/specs/p/perl-YAML-PP/perl-YAML-PP.spec index d8da5dfc989..12479caa33a 100644 --- a/specs/p/perl-YAML-PP/perl-YAML-PP.spec +++ b/specs/p/perl-YAML-PP/perl-YAML-PP.spec @@ -3,7 +3,7 @@ Name: perl-YAML-PP Version: 0.39.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: YAML 1.2 processor License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/YAML-PP/ diff --git a/specs/p/perl-YAML-Syck/perl-YAML-Syck.spec b/specs/p/perl-YAML-Syck/perl-YAML-Syck.spec index 58c7d751260..1425015aea6 100644 --- a/specs/p/perl-YAML-Syck/perl-YAML-Syck.spec +++ b/specs/p/perl-YAML-Syck/perl-YAML-Syck.spec @@ -10,7 +10,7 @@ Name: perl-YAML-Syck Version: 1.36 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Fast, lightweight YAML loader and dumper # gram.*: GPL-2.0-or-later # *: MIT diff --git a/specs/p/perl-YAML-Tiny/perl-YAML-Tiny.spec b/specs/p/perl-YAML-Tiny/perl-YAML-Tiny.spec index 4ed8152b6e1..a972e6f3e27 100644 --- a/specs/p/perl-YAML-Tiny/perl-YAML-Tiny.spec +++ b/specs/p/perl-YAML-Tiny/perl-YAML-Tiny.spec @@ -10,7 +10,7 @@ Name: perl-YAML-Tiny Version: 1.76 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Read/Write YAML files with as little code as possible License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/YAML-Tiny diff --git a/specs/p/perl-YAML/perl-YAML.spec b/specs/p/perl-YAML/perl-YAML.spec index 4d3fc5fe6cb..6dbf6582cc1 100644 --- a/specs/p/perl-YAML/perl-YAML.spec +++ b/specs/p/perl-YAML/perl-YAML.spec @@ -16,7 +16,7 @@ Name: perl-YAML Version: 1.31 -Release: 7%{?dist} +Release: 7%{?dist} Summary: YAML Ain't Markup Language (tm) License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/YAML diff --git a/specs/p/perl-accessors/perl-accessors.spec b/specs/p/perl-accessors/perl-accessors.spec index f3a032cced1..f9ece35dfc0 100644 --- a/specs/p/perl-accessors/perl-accessors.spec +++ b/specs/p/perl-accessors/perl-accessors.spec @@ -3,7 +3,7 @@ Name: perl-accessors Version: 1.01 -Release: 47%{?dist} +Release: 47%{?dist} Summary: Create accessor methods in caller's package License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/accessors diff --git a/specs/p/perl-aliased/perl-aliased.spec b/specs/p/perl-aliased/perl-aliased.spec index 1a7e834aa94..66871c5e382 100644 --- a/specs/p/perl-aliased/perl-aliased.spec +++ b/specs/p/perl-aliased/perl-aliased.spec @@ -3,7 +3,7 @@ Name: perl-aliased Version: 0.34 -Release: 32%{?dist} +Release: 32%{?dist} Summary: Use shorter versions of class names License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/aliased diff --git a/specs/p/perl-autobox/perl-autobox.spec b/specs/p/perl-autobox/perl-autobox.spec index 2acc2e91f9f..c870d1d0a4b 100644 --- a/specs/p/perl-autobox/perl-autobox.spec +++ b/specs/p/perl-autobox/perl-autobox.spec @@ -3,7 +3,7 @@ Name: perl-autobox Version: 3.0.2 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Call methods on native types License: Artistic-2.0 URL: https://metacpan.org/release/autobox diff --git a/specs/p/perl-autodie/perl-autodie.spec b/specs/p/perl-autodie/perl-autodie.spec index 63228a33dcf..fcb134b093a 100644 --- a/specs/p/perl-autodie/perl-autodie.spec +++ b/specs/p/perl-autodie/perl-autodie.spec @@ -6,7 +6,7 @@ Name: perl-autodie Version: 2.37 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Replace functions with ones that succeed or die License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/autodie diff --git a/specs/p/perl-autovivification/perl-autovivification.spec b/specs/p/perl-autovivification/perl-autovivification.spec index a53007f0be5..d626fae2d4b 100644 --- a/specs/p/perl-autovivification/perl-autovivification.spec +++ b/specs/p/perl-autovivification/perl-autovivification.spec @@ -3,7 +3,7 @@ Name: perl-autovivification Version: 0.18 -Release: 28%{?dist} +Release: 28%{?dist} Summary: Lexically disable autovivification License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/autovivification diff --git a/specs/p/perl-bareword-filehandles/perl-bareword-filehandles.spec b/specs/p/perl-bareword-filehandles/perl-bareword-filehandles.spec index 36bb18ad2af..be3744826b5 100644 --- a/specs/p/perl-bareword-filehandles/perl-bareword-filehandles.spec +++ b/specs/p/perl-bareword-filehandles/perl-bareword-filehandles.spec @@ -3,7 +3,7 @@ Name: perl-bareword-filehandles Version: 0.007 -Release: 24%{?dist} +Release: 24%{?dist} Summary: Disables bareword filehandles License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/bareword-filehandles diff --git a/specs/p/perl-bignum/perl-bignum.spec b/specs/p/perl-bignum/perl-bignum.spec index 956fdd5f836..6b8817366c1 100644 --- a/specs/p/perl-bignum/perl-bignum.spec +++ b/specs/p/perl-bignum/perl-bignum.spec @@ -3,7 +3,7 @@ Name: perl-bignum Version: 0.67 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Transparent big number support for Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/bignum diff --git a/specs/p/perl-boolean/perl-boolean.spec b/specs/p/perl-boolean/perl-boolean.spec index b5879308f42..47e8b33199d 100644 --- a/specs/p/perl-boolean/perl-boolean.spec +++ b/specs/p/perl-boolean/perl-boolean.spec @@ -3,7 +3,7 @@ Name: perl-boolean Version: 0.46 -Release: 27%{?dist} +Release: 27%{?dist} Summary: Boolean support for Perl License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/boolean diff --git a/specs/p/perl-common-sense/perl-common-sense.spec b/specs/p/perl-common-sense/perl-common-sense.spec index 8f90d7dd3f2..94b38da5ac2 100644 --- a/specs/p/perl-common-sense/perl-common-sense.spec +++ b/specs/p/perl-common-sense/perl-common-sense.spec @@ -11,7 +11,7 @@ Name: perl-common-sense Summary: "Common sense" Perl defaults Version: %{rpm_version} -Release: 21%{?dist} +Release: 21%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/common-sense Source0: https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/common-sense-%{cpan_version}.tar.gz diff --git a/specs/p/perl-constant-boolean/perl-constant-boolean.spec b/specs/p/perl-constant-boolean/perl-constant-boolean.spec index ab159704262..96c9ff7d731 100644 --- a/specs/p/perl-constant-boolean/perl-constant-boolean.spec +++ b/specs/p/perl-constant-boolean/perl-constant-boolean.spec @@ -3,7 +3,7 @@ Name: perl-constant-boolean Version: 0.02 -Release: 44%{?dist} +Release: 44%{?dist} Summary: Define TRUE and FALSE constants License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/constant-boolean diff --git a/specs/p/perl-constant-defer/perl-constant-defer.spec b/specs/p/perl-constant-defer/perl-constant-defer.spec index 93706a2af58..d6790f0fdd7 100644 --- a/specs/p/perl-constant-defer/perl-constant-defer.spec +++ b/specs/p/perl-constant-defer/perl-constant-defer.spec @@ -6,7 +6,7 @@ Name: perl-constant-defer Version: 6 -Release: 35%{?dist} +Release: 35%{?dist} Summary: Constant subs with deferred value calculation License: GPL-3.0-or-later URL: https://metacpan.org/release/constant-defer diff --git a/specs/p/perl-constant/perl-constant.spec b/specs/p/perl-constant/perl-constant.spec index 591074f63ed..ebe05015195 100644 --- a/specs/p/perl-constant/perl-constant.spec +++ b/specs/p/perl-constant/perl-constant.spec @@ -12,7 +12,7 @@ Name: perl-constant Version: 1.33 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Perl pragma to declare constants License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/constant diff --git a/specs/p/perl-experimental/perl-experimental.spec b/specs/p/perl-experimental/perl-experimental.spec index 2a931ba5b55..b2f4aedad9d 100644 --- a/specs/p/perl-experimental/perl-experimental.spec +++ b/specs/p/perl-experimental/perl-experimental.spec @@ -3,7 +3,7 @@ Name: perl-experimental Version: 0.036 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Experimental features made easy License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/experimental diff --git a/specs/p/perl-generators/perl-generators.spec b/specs/p/perl-generators/perl-generators.spec index 9bef79ded21..cd3c268b23f 100644 --- a/specs/p/perl-generators/perl-generators.spec +++ b/specs/p/perl-generators/perl-generators.spec @@ -3,7 +3,7 @@ Name: perl-generators Version: 1.16 -Release: 9%{?dist} +Release: 9%{?dist} Summary: RPM Perl dependencies generators License: GPL-1.0-or-later URL: http://jplesnik.fedorapeople.org/generators diff --git a/specs/p/perl-gettext/perl-gettext.spec b/specs/p/perl-gettext/perl-gettext.spec index 905c0d3908c..2ea7bd1ae38 100644 --- a/specs/p/perl-gettext/perl-gettext.spec +++ b/specs/p/perl-gettext/perl-gettext.spec @@ -6,7 +6,7 @@ Name: perl-gettext Version: 1.07 -Release: 37%{?dist} +Release: 37%{?dist} Summary: Interface to gettext family of functions License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-inc-latest/perl-inc-latest.spec b/specs/p/perl-inc-latest/perl-inc-latest.spec index cade0afd15c..bedd9d48a6d 100644 --- a/specs/p/perl-inc-latest/perl-inc-latest.spec +++ b/specs/p/perl-inc-latest/perl-inc-latest.spec @@ -4,7 +4,7 @@ Name: perl-inc-latest Epoch: 2 Version: 0.500 -Release: 32%{?dist} +Release: 32%{?dist} Summary: Use modules bundled in inc/ if they are newer than installed ones License: Apache-2.0 URL: https://metacpan.org/release/inc-latest diff --git a/specs/p/perl-indirect/perl-indirect.spec b/specs/p/perl-indirect/perl-indirect.spec index 8cbf73ae870..5de6cf38e4a 100644 --- a/specs/p/perl-indirect/perl-indirect.spec +++ b/specs/p/perl-indirect/perl-indirect.spec @@ -10,7 +10,7 @@ Name: perl-indirect Version: 0.39 -Release: 29%{?dist} +Release: 29%{?dist} Summary: Lexically warn about using the indirect object syntax License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/indirect diff --git a/specs/p/perl-libintl-perl/perl-libintl-perl.spec b/specs/p/perl-libintl-perl/perl-libintl-perl.spec index b9510eb3dd0..0809d19d0fb 100644 --- a/specs/p/perl-libintl-perl/perl-libintl-perl.spec +++ b/specs/p/perl-libintl-perl/perl-libintl-perl.spec @@ -4,7 +4,7 @@ Summary: Internationalization library for Perl, compatible with gettext Name: perl-libintl-perl Version: 1.35 -Release: 4%{?dist} +Release: 4%{?dist} # gettext_xs/gettext_xs.pm: GPL-3.0-or-later # gettext_xs/Makefile.PL: LGPL-2.0-or-later # lib/Locale/gettext_xs.pod: LGPL-2.0-or-later diff --git a/specs/p/perl-libnet/perl-libnet.spec b/specs/p/perl-libnet/perl-libnet.spec index 41223c6b65c..030dc4f8dcd 100644 --- a/specs/p/perl-libnet/perl-libnet.spec +++ b/specs/p/perl-libnet/perl-libnet.spec @@ -16,7 +16,7 @@ Name: perl-libnet Version: 3.15 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Perl clients for various network protocols License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/libnet diff --git a/specs/p/perl-libwww-perl/perl-libwww-perl.spec b/specs/p/perl-libwww-perl/perl-libwww-perl.spec index c314a76c4a6..22b5ea2140f 100644 --- a/specs/p/perl-libwww-perl/perl-libwww-perl.spec +++ b/specs/p/perl-libwww-perl/perl-libwww-perl.spec @@ -8,7 +8,7 @@ Name: perl-libwww-perl Version: 6.81 -Release: 2%{?dist} +Release: 2%{?dist} Summary: A Perl interface to the World-Wide Web License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/libwww-perl diff --git a/specs/p/perl-libxml-perl/perl-libxml-perl.spec b/specs/p/perl-libxml-perl/perl-libxml-perl.spec index 320fdbe63b3..1d1a85ad1b1 100644 --- a/specs/p/perl-libxml-perl/perl-libxml-perl.spec +++ b/specs/p/perl-libxml-perl/perl-libxml-perl.spec @@ -3,7 +3,7 @@ Name: perl-libxml-perl Version: 0.08 -Release: 56%{?dist} +Release: 56%{?dist} Summary: A collection of Perl modules for working with XML License: (GPL-1.0-or-later OR Artistic-1.0-Perl) AND LicenseRef-Fedora-Public-Domain URL: https://metacpan.org/release/libxml-perl diff --git a/specs/p/perl-local-lib/perl-local-lib.spec b/specs/p/perl-local-lib/perl-local-lib.spec index fd668d05a8d..1502580243f 100644 --- a/specs/p/perl-local-lib/perl-local-lib.spec +++ b/specs/p/perl-local-lib/perl-local-lib.spec @@ -3,7 +3,7 @@ Name: perl-local-lib Version: 2.000029 -Release: 11%{?dist} +Release: 11%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl Summary: Create and use a local lib/ for perl modules Url: https://metacpan.org/release/local-lib diff --git a/specs/p/perl-match-simple/perl-match-simple.spec b/specs/p/perl-match-simple/perl-match-simple.spec index 62f9b4a6f55..51d7ea31c2d 100644 --- a/specs/p/perl-match-simple/perl-match-simple.spec +++ b/specs/p/perl-match-simple/perl-match-simple.spec @@ -3,7 +3,7 @@ Name: perl-match-simple Version: 0.012 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Simplified clone of smartmatch operator License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: http://search.cpan.org/dist/match-simple/ diff --git a/specs/p/perl-meta/perl-meta.spec b/specs/p/perl-meta/perl-meta.spec index 07bf26dafb8..7aa0dbd0f37 100644 --- a/specs/p/perl-meta/perl-meta.spec +++ b/specs/p/perl-meta/perl-meta.spec @@ -6,7 +6,7 @@ Name: perl-meta Version: 0.015 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Meta-programming API License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/dist/meta diff --git a/specs/p/perl-multidimensional/perl-multidimensional.spec b/specs/p/perl-multidimensional/perl-multidimensional.spec index 6cedcf59eba..8d9f59fffc7 100644 --- a/specs/p/perl-multidimensional/perl-multidimensional.spec +++ b/specs/p/perl-multidimensional/perl-multidimensional.spec @@ -3,7 +3,7 @@ Name: perl-multidimensional Version: 0.014 -Release: 27%{?dist} +Release: 27%{?dist} Summary: Disables multidimensional array emulation # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. License: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-namespace-autoclean/perl-namespace-autoclean.spec b/specs/p/perl-namespace-autoclean/perl-namespace-autoclean.spec index b7fc7cff9ee..d55d9f3908e 100644 --- a/specs/p/perl-namespace-autoclean/perl-namespace-autoclean.spec +++ b/specs/p/perl-namespace-autoclean/perl-namespace-autoclean.spec @@ -10,7 +10,7 @@ Name: perl-namespace-autoclean Version: 0.31 -Release: 4%{?dist} +Release: 4%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl Summary: Keep imports out of your namespace URL: https://metacpan.org/release/namespace-autoclean diff --git a/specs/p/perl-namespace-clean/perl-namespace-clean.spec b/specs/p/perl-namespace-clean/perl-namespace-clean.spec index fcd724a76ed..2484d32b4e7 100644 --- a/specs/p/perl-namespace-clean/perl-namespace-clean.spec +++ b/specs/p/perl-namespace-clean/perl-namespace-clean.spec @@ -11,7 +11,7 @@ Name: perl-namespace-clean Summary: Keep your namespace tidy Version: 0.27 -Release: 30%{?dist} +Release: 30%{?dist} License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/namespace-clean Source0: https://cpan.metacpan.org/authors/id/R/RI/RIBASUSHI/namespace-clean-%{version}.tar.gz diff --git a/specs/p/perl-parent/perl-parent.spec b/specs/p/perl-parent/perl-parent.spec index 1480ea6a684..03d01fdba60 100644 --- a/specs/p/perl-parent/perl-parent.spec +++ b/specs/p/perl-parent/perl-parent.spec @@ -4,7 +4,7 @@ Name: perl-parent Epoch: 1 Version: 0.244 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Establish an ISA relationship with base classes at compile time License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/parent diff --git a/specs/p/perl-perlfaq/perl-perlfaq.spec b/specs/p/perl-perlfaq/perl-perlfaq.spec index ae73b796857..1c22dc8ffcd 100644 --- a/specs/p/perl-perlfaq/perl-perlfaq.spec +++ b/specs/p/perl-perlfaq/perl-perlfaq.spec @@ -3,7 +3,7 @@ Name: perl-perlfaq Version: 5.20250619 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Frequently asked questions about Perl # Code examples are Public Domain License: (GPL-1.0-or-later OR Artistic-1.0-Perl) AND LicenseRef-Fedora-Public-Domain diff --git a/specs/p/perl-pod2pdf/perl-pod2pdf.spec b/specs/p/perl-pod2pdf/perl-pod2pdf.spec index 75c60f1ecf4..8acbc2b7657 100644 --- a/specs/p/perl-pod2pdf/perl-pod2pdf.spec +++ b/specs/p/perl-pod2pdf/perl-pod2pdf.spec @@ -3,7 +3,7 @@ Name: perl-pod2pdf Version: 0.42 -Release: 39%{?dist} +Release: 39%{?dist} Summary: Converts Pod to PDF format License: Artistic-2.0 URL: https://metacpan.org/release/pod2pdf diff --git a/specs/p/perl-podlators/perl-podlators.spec b/specs/p/perl-podlators/perl-podlators.spec index 274763482e5..2b4c0aa71ee 100644 --- a/specs/p/perl-podlators/perl-podlators.spec +++ b/specs/p/perl-podlators/perl-podlators.spec @@ -4,7 +4,7 @@ Name: perl-podlators Epoch: 1 Version: 6.0.2 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Format POD source into various output formats # pod/perlpodstyle.pod: FSFAP # other files: GPL-1.0-or-later OR Artistic-1.0-Perl diff --git a/specs/p/perl-podlinkcheck/perl-podlinkcheck.spec b/specs/p/perl-podlinkcheck/perl-podlinkcheck.spec index 49f96b09dd8..e7d88fef593 100644 --- a/specs/p/perl-podlinkcheck/perl-podlinkcheck.spec +++ b/specs/p/perl-podlinkcheck/perl-podlinkcheck.spec @@ -6,7 +6,7 @@ Name: perl-podlinkcheck Version: 15 -Release: 30%{?dist} +Release: 30%{?dist} Summary: Check Perl POD L<> link references License: GPL-3.0-or-later URL: https://metacpan.org/release/podlinkcheck diff --git a/specs/p/perl-prefork/perl-prefork.spec b/specs/p/perl-prefork/perl-prefork.spec index 4ef560a0eb8..3c181f38512 100644 --- a/specs/p/perl-prefork/perl-prefork.spec +++ b/specs/p/perl-prefork/perl-prefork.spec @@ -3,7 +3,7 @@ Name: perl-prefork Version: 1.05 -Release: 22%{?dist} +Release: 22%{?dist} Summary: Optimized module loading for forking or non-forking processes License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/prefork diff --git a/specs/p/perl-srpm-macros/perl-srpm-macros.spec b/specs/p/perl-srpm-macros/perl-srpm-macros.spec index 6f48552f316..0e14eb8be50 100644 --- a/specs/p/perl-srpm-macros/perl-srpm-macros.spec +++ b/specs/p/perl-srpm-macros/perl-srpm-macros.spec @@ -3,7 +3,7 @@ Name: perl-srpm-macros Version: 1 -Release: 61%{?dist} +Release: 61%{?dist} Summary: RPM macros for building Perl source package from source repository License: GPL-3.0-or-later Source0: macros.perl-srpm diff --git a/specs/p/perl-strictures/perl-strictures.spec b/specs/p/perl-strictures/perl-strictures.spec index 1429f384b80..4f0678f6e18 100644 --- a/specs/p/perl-strictures/perl-strictures.spec +++ b/specs/p/perl-strictures/perl-strictures.spec @@ -10,7 +10,7 @@ Name: perl-strictures Version: 2.000006 -Release: 23%{?dist} +Release: 23%{?dist} Summary: Turn on strict and make most warnings fatal License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/strictures diff --git a/specs/p/perl-syntax/perl-syntax.spec b/specs/p/perl-syntax/perl-syntax.spec index a98ca6d9a30..43684e7a508 100644 --- a/specs/p/perl-syntax/perl-syntax.spec +++ b/specs/p/perl-syntax/perl-syntax.spec @@ -3,7 +3,7 @@ Name: perl-syntax Version: 0.004 -Release: 38%{?dist} +Release: 38%{?dist} Summary: Activate syntax extensions License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/syntax diff --git a/specs/p/perl-threads-shared/perl-threads-shared.spec b/specs/p/perl-threads-shared/perl-threads-shared.spec index 099bce3f7bf..a17e650c9c7 100644 --- a/specs/p/perl-threads-shared/perl-threads-shared.spec +++ b/specs/p/perl-threads-shared/perl-threads-shared.spec @@ -5,7 +5,7 @@ Name: perl-threads-shared Version: 1.70 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Perl extension for sharing data structures between threads License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/threads-shared diff --git a/specs/p/perl-threads/perl-threads.spec b/specs/p/perl-threads/perl-threads.spec index b90b926cd66..a9012e07809 100644 --- a/specs/p/perl-threads/perl-threads.spec +++ b/specs/p/perl-threads/perl-threads.spec @@ -5,7 +5,7 @@ Name: perl-threads Epoch: 1 Version: 2.43 -Release: 521%{?dist} +Release: 521%{?dist} Summary: Perl interpreter-based threads License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/threads diff --git a/specs/p/perl-utf8-all/perl-utf8-all.spec b/specs/p/perl-utf8-all/perl-utf8-all.spec index 789a55c0c39..60db425c32d 100644 --- a/specs/p/perl-utf8-all/perl-utf8-all.spec +++ b/specs/p/perl-utf8-all/perl-utf8-all.spec @@ -3,7 +3,7 @@ Name: perl-utf8-all Version: 0.024 -Release: 26%{?dist} +Release: 26%{?dist} Summary: Turn on Unicode everywhere License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/utf8-all diff --git a/specs/p/perl-version/perl-version.spec b/specs/p/perl-version/perl-version.spec index fbed073ef75..878139af6e3 100644 --- a/specs/p/perl-version/perl-version.spec +++ b/specs/p/perl-version/perl-version.spec @@ -12,7 +12,7 @@ Name: perl-version Epoch: 9 Version: 0.99.33 %global module_version 0.9933 -Release: 522%{?dist} +Release: 522%{?dist} Summary: Perl extension for Version Objects License: GPL-1.0-or-later OR Artistic-1.0-Perl URL: https://metacpan.org/release/version diff --git a/specs/p/perl/perl.spec b/specs/p/perl/perl.spec index e3a44e43e2f..d81ba7c0d2e 100644 --- a/specs/p/perl/perl.spec +++ b/specs/p/perl/perl.spec @@ -123,7 +123,7 @@ License: GPL-1.0-or-later OR Artistic-1.0-Perl Epoch: %{perl_epoch} Version: %{perl_version} # release number must be even higher, because dual-lived modules will be broken otherwise -Release: 525%{?dist} +Release: 525%{?dist} Summary: Practical Extraction and Report Language Url: https://www.perl.org/ Source0: https://www.cpan.org/src/5.0/perl-%{perl_version}.tar.xz diff --git a/specs/p/perltidy/perltidy.spec b/specs/p/perltidy/perltidy.spec index 263a83a6d9c..17346b2a7e2 100644 --- a/specs/p/perltidy/perltidy.spec +++ b/specs/p/perltidy/perltidy.spec @@ -3,7 +3,7 @@ Name: perltidy Version: 20250912 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Tool for indenting and re-formatting Perl scripts License: GPL-2.0-or-later URL: http://perltidy.sourceforge.net/ diff --git a/specs/p/pf-bb-config/pf-bb-config.spec b/specs/p/pf-bb-config/pf-bb-config.spec index 8d8ca77c682..1f473194639 100644 --- a/specs/p/pf-bb-config/pf-bb-config.spec +++ b/specs/p/pf-bb-config/pf-bb-config.spec @@ -3,7 +3,7 @@ Name: pf-bb-config Version: 24.07 -Release: 4%{?dist} +Release: 4%{?dist} Summary: PF BBDEV (baseband device) Configuration Application License: Apache-2.0 diff --git a/specs/p/php-PsrLog/php-PsrLog.spec b/specs/p/php-PsrLog/php-PsrLog.spec index 4e894ccfec8..a243010111d 100644 --- a/specs/p/php-PsrLog/php-PsrLog.spec +++ b/specs/p/php-PsrLog/php-PsrLog.spec @@ -24,7 +24,7 @@ Name: php-PsrLog Version: %{github_version} -Release: 12%{?dist} +Release: 12%{?dist} Summary: Common interface for logging libraries License: MIT diff --git a/specs/p/php-doctrine-deprecations/php-doctrine-deprecations.spec b/specs/p/php-doctrine-deprecations/php-doctrine-deprecations.spec index 87d2c1b24e7..8355e78ceac 100644 --- a/specs/p/php-doctrine-deprecations/php-doctrine-deprecations.spec +++ b/specs/p/php-doctrine-deprecations/php-doctrine-deprecations.spec @@ -25,7 +25,7 @@ Name: php-%{pk_vendor}-%{pk_project} Version: 1.1.6 -Release: 2%{?dist} +Release: 2%{?dist} Summary: A small layer on top of triggeFr_error or PSR-3 logging License: MIT diff --git a/specs/p/php-doctrine-instantiator/php-doctrine-instantiator.spec b/specs/p/php-doctrine-instantiator/php-doctrine-instantiator.spec index a785d653d95..2bdf58db378 100644 --- a/specs/p/php-doctrine-instantiator/php-doctrine-instantiator.spec +++ b/specs/p/php-doctrine-instantiator/php-doctrine-instantiator.spec @@ -25,7 +25,7 @@ Name: php-doctrine-instantiator Version: 1.5.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Instantiate objects in PHP without invoking their constructors License: MIT diff --git a/specs/p/php-doctrine-instantiator2/php-doctrine-instantiator2.spec b/specs/p/php-doctrine-instantiator2/php-doctrine-instantiator2.spec index 6a4e0de614c..6ded5b3e7eb 100644 --- a/specs/p/php-doctrine-instantiator2/php-doctrine-instantiator2.spec +++ b/specs/p/php-doctrine-instantiator2/php-doctrine-instantiator2.spec @@ -25,7 +25,7 @@ Name: php-doctrine-instantiator%{major} Version: 2.1.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Instantiate objects in PHP without invoking their constructors, version %{major} License: MIT diff --git a/specs/p/php-fedora-autoloader/php-fedora-autoloader.spec b/specs/p/php-fedora-autoloader/php-fedora-autoloader.spec index e690d9df5a4..456e74fc726 100644 --- a/specs/p/php-fedora-autoloader/php-fedora-autoloader.spec +++ b/specs/p/php-fedora-autoloader/php-fedora-autoloader.spec @@ -38,7 +38,7 @@ Name: php-%{composer_vendor}-%{composer_project} Version: %{github_version} -Release: 17%{?dist} +Release: 17%{?dist} Summary: Fedora Autoloader License: MIT diff --git a/specs/p/php-hamcrest2/php-hamcrest2.spec b/specs/p/php-hamcrest2/php-hamcrest2.spec index 9532ef22128..ce8f855ac2a 100644 --- a/specs/p/php-hamcrest2/php-hamcrest2.spec +++ b/specs/p/php-hamcrest2/php-hamcrest2.spec @@ -20,7 +20,7 @@ Name: php-hamcrest2 Version: 2.1.1 -Release: 3%{?dist} +Release: 3%{?dist} Summary: PHP port of Hamcrest Matchers License: BSD-3-Clause diff --git a/specs/p/php-mockery/php-mockery.spec b/specs/p/php-mockery/php-mockery.spec index ef29d9438ef..557eb573b95 100644 --- a/specs/p/php-mockery/php-mockery.spec +++ b/specs/p/php-mockery/php-mockery.spec @@ -20,7 +20,7 @@ Name: php-mockery Version: 1.6.12 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Mockery is a simple but flexible PHP mock object framework License: BSD-3-Clause diff --git a/specs/p/php-myclabs-deep-copy/php-myclabs-deep-copy.spec b/specs/p/php-myclabs-deep-copy/php-myclabs-deep-copy.spec index 3f7c54afd31..d089984fcd8 100644 --- a/specs/p/php-myclabs-deep-copy/php-myclabs-deep-copy.spec +++ b/specs/p/php-myclabs-deep-copy/php-myclabs-deep-copy.spec @@ -21,7 +21,7 @@ Name: php-myclabs-deep-copy%{major} Version: 1.13.4 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Create deep copies (clones) of your objects diff --git a/specs/p/php-nikic-php-parser5/php-nikic-php-parser5.spec b/specs/p/php-nikic-php-parser5/php-nikic-php-parser5.spec index 5d807ee6d7f..6283e0345b3 100644 --- a/specs/p/php-nikic-php-parser5/php-nikic-php-parser5.spec +++ b/specs/p/php-nikic-php-parser5/php-nikic-php-parser5.spec @@ -31,7 +31,7 @@ Name: php-%{gh_owner}-%{pk_project}%{major} Version: %{upstream_version}%{?upstream_prever:~%{upstream_prever}} -Release: 2%{?dist} +Release: 2%{?dist} Summary: A PHP parser written in PHP - version %{major} License: BSD-3-Clause diff --git a/specs/p/php-pecl-apcu/php-pecl-apcu.spec b/specs/p/php-pecl-apcu/php-pecl-apcu.spec index f72bde53bf7..2529ca1bb60 100644 --- a/specs/p/php-pecl-apcu/php-pecl-apcu.spec +++ b/specs/p/php-pecl-apcu/php-pecl-apcu.spec @@ -19,7 +19,7 @@ Name: php-pecl-apcu Summary: APC User Cache Version: 5.1.28 -Release: 2%{?dist} +Release: 2%{?dist} Source0: https://pecl.php.net/get/%{sources}.tgz Source1: %{pecl_name}.ini Source2: %{pecl_name}-panel.conf diff --git a/specs/p/php-pecl-igbinary/php-pecl-igbinary.spec b/specs/p/php-pecl-igbinary/php-pecl-igbinary.spec index 1e3ddd4ca50..6b96d26b130 100644 --- a/specs/p/php-pecl-igbinary/php-pecl-igbinary.spec +++ b/specs/p/php-pecl-igbinary/php-pecl-igbinary.spec @@ -20,7 +20,7 @@ Summary: Replacement for the standard PHP serializer Name: php-pecl-igbinary Version: %{upstream_version}%{?upstream_prever:~%{upstream_prever}} -Release: 6%{?dist} +Release: 6%{?dist} Source0: https://pecl.php.net/get/%{sources}.tgz License: BSD-3-Clause diff --git a/specs/p/php-pecl-msgpack/php-pecl-msgpack.spec b/specs/p/php-pecl-msgpack/php-pecl-msgpack.spec index f9f4ad11214..a4e79144300 100644 --- a/specs/p/php-pecl-msgpack/php-pecl-msgpack.spec +++ b/specs/p/php-pecl-msgpack/php-pecl-msgpack.spec @@ -29,7 +29,7 @@ Summary: API for communicating with MessagePack serialization Name: php-pecl-msgpack Version: %{upstream_version}%{?upstream_lower:~%{upstream_lower}} -Release: 5%{?dist} +Release: 5%{?dist} Source: https://pecl.php.net/get/%{pecl_name}-%{upstream_version}%{?upstream_prever}.tgz License: BSD-3-Clause URL: https://pecl.php.net/package/msgpack diff --git a/specs/p/php-pecl-redis6/php-pecl-redis6.spec b/specs/p/php-pecl-redis6/php-pecl-redis6.spec index 06a741afbe8..25c278508bb 100644 --- a/specs/p/php-pecl-redis6/php-pecl-redis6.spec +++ b/specs/p/php-pecl-redis6/php-pecl-redis6.spec @@ -40,7 +40,7 @@ Summary: PHP extension for interfacing with key-value stores Name: php-pecl-redis6 Version: %{upstream_version}%{?upstream_prever:~%{upstream_prever}} -Release: 2%{?dist} +Release: 2%{?dist} License: PHP-3.01 URL: https://pecl.php.net/package/redis Source0: https://pecl.php.net/get/%{sources}.tgz diff --git a/specs/p/php-pecl-rrd/php-pecl-rrd.spec b/specs/p/php-pecl-rrd/php-pecl-rrd.spec index 791e104cae6..06060f3088f 100644 --- a/specs/p/php-pecl-rrd/php-pecl-rrd.spec +++ b/specs/p/php-pecl-rrd/php-pecl-rrd.spec @@ -22,7 +22,7 @@ Summary: PHP Bindings for rrdtool Name: php-pecl-rrd Version: 2.0.3 -Release: 19%{?dist} +Release: 19%{?dist} License: BSD-2-Clause URL: https://pecl.php.net/package/rrd diff --git a/specs/p/php-pecl-xdebug3/php-pecl-xdebug3.spec b/specs/p/php-pecl-xdebug3/php-pecl-xdebug3.spec index 70c4acd7f49..9cf67887298 100644 --- a/specs/p/php-pecl-xdebug3/php-pecl-xdebug3.spec +++ b/specs/p/php-pecl-xdebug3/php-pecl-xdebug3.spec @@ -32,7 +32,7 @@ Name: php-pecl-xdebug3 Summary: Provides functions for function traces and profiling Version: %{upstream_version}%{?upstream_prever:~%{upstream_lower}} -Release: 2%{?dist} +Release: 2%{?dist} Source0: https://github.com/%{pecl_name}/%{pecl_name}/archive/%{gh_commit}/%{pecl_name}-%{upstream_version}%{?upstream_prever}-%{gh_short}.tar.gz License: Xdebug-1.03 diff --git a/specs/p/php-pecl-zip/php-pecl-zip.spec b/specs/p/php-pecl-zip/php-pecl-zip.spec index 6526c724ea3..8a0b86963a4 100644 --- a/specs/p/php-pecl-zip/php-pecl-zip.spec +++ b/specs/p/php-pecl-zip/php-pecl-zip.spec @@ -21,7 +21,7 @@ Summary: A ZIP archive management extension Name: php-pecl-zip Version: %{upstream_version}%{?upstream_prever:~%{upstream_prever}} -Release: 2%{?dist} +Release: 2%{?dist} License: PHP-3.01 URL: https://pecl.php.net/package/zip diff --git a/specs/p/php-phar-io-manifest2/php-phar-io-manifest2.spec b/specs/p/php-phar-io-manifest2/php-phar-io-manifest2.spec index 54ed2935822..4ad20ed1433 100644 --- a/specs/p/php-phar-io-manifest2/php-phar-io-manifest2.spec +++ b/specs/p/php-phar-io-manifest2/php-phar-io-manifest2.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 2.0.4 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Component for reading phar.io manifest information License: BSD-3-Clause diff --git a/specs/p/php-phar-io-version3/php-phar-io-version3.spec b/specs/p/php-phar-io-version3/php-phar-io-version3.spec index 83cf5ddb800..328a670c1cc 100644 --- a/specs/p/php-phar-io-version3/php-phar-io-version3.spec +++ b/specs/p/php-phar-io-version3/php-phar-io-version3.spec @@ -25,7 +25,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 3.2.1 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Library for handling version information and constraints License: BSD-3-Clause diff --git a/specs/p/php-phpdocumentor-reflection-common2/php-phpdocumentor-reflection-common2.spec b/specs/p/php-phpdocumentor-reflection-common2/php-phpdocumentor-reflection-common2.spec index 6fee8a90980..9d32fa3b451 100644 --- a/specs/p/php-phpdocumentor-reflection-common2/php-phpdocumentor-reflection-common2.spec +++ b/specs/p/php-phpdocumentor-reflection-common2/php-phpdocumentor-reflection-common2.spec @@ -31,7 +31,7 @@ Name: php-%{composer_vendor}-%{composer_project}%{major} Version: %{github_version} -Release: 15%{?github_release}%{?dist} +Release: 18%{?github_release}%{?dist} Summary: Common reflection classes used by phpdocumentor Group: Development/Libraries diff --git a/specs/p/php-phpdocumentor-reflection-docblock5/php-phpdocumentor-reflection-docblock5.spec b/specs/p/php-phpdocumentor-reflection-docblock5/php-phpdocumentor-reflection-docblock5.spec index c8d281d0553..abc02ee8f96 100644 --- a/specs/p/php-phpdocumentor-reflection-docblock5/php-phpdocumentor-reflection-docblock5.spec +++ b/specs/p/php-phpdocumentor-reflection-docblock5/php-phpdocumentor-reflection-docblock5.spec @@ -18,7 +18,7 @@ Name: php-phpdocumentor-reflection-docblock%{major} Version: 5.6.6 -Release: 2%{?dist} +Release: 2%{?dist} Summary: DocBlock parser License: MIT diff --git a/specs/p/php-phpdocumentor-type-resolver1/php-phpdocumentor-type-resolver1.spec b/specs/p/php-phpdocumentor-type-resolver1/php-phpdocumentor-type-resolver1.spec index 0606cddd184..30e9fd306c2 100644 --- a/specs/p/php-phpdocumentor-type-resolver1/php-phpdocumentor-type-resolver1.spec +++ b/specs/p/php-phpdocumentor-type-resolver1/php-phpdocumentor-type-resolver1.spec @@ -42,7 +42,7 @@ Name: php-%{composer_vendor}-%{composer_project}%{major} Version: %{github_version} -Release: 1%{?github_release}%{?dist} +Release: 4%{?github_release}%{?dist} Summary: A PSR-5 based resolver of Class names, Types and Structural Element Names Group: Development/Libraries diff --git a/specs/p/php-phpspec-prophecy/php-phpspec-prophecy.spec b/specs/p/php-phpspec-prophecy/php-phpspec-prophecy.spec index 4d2cc47ce8c..684fda8e45f 100644 --- a/specs/p/php-phpspec-prophecy/php-phpspec-prophecy.spec +++ b/specs/p/php-phpspec-prophecy/php-phpspec-prophecy.spec @@ -19,7 +19,7 @@ Name: php-phpspec-prophecy Version: 1.25.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Highly opinionated mocking framework for PHP License: MIT diff --git a/specs/p/php-phpstan-phpdoc-parser/php-phpstan-phpdoc-parser.spec b/specs/p/php-phpstan-phpdoc-parser/php-phpstan-phpdoc-parser.spec index 15fc554c153..d0e1141286c 100644 --- a/specs/p/php-phpstan-phpdoc-parser/php-phpstan-phpdoc-parser.spec +++ b/specs/p/php-phpstan-phpdoc-parser/php-phpstan-phpdoc-parser.spec @@ -23,7 +23,7 @@ Name: php-%{gh_owner}-%{gh_project}%{major} Version: 2.3.2 -Release: 2%{?dist} +Release: 2%{?dist} Summary: PHPDoc parser with support for nullable, intersection and generic types License: MIT diff --git a/specs/p/php-phpunit-Text-Template/php-phpunit-Text-Template.spec b/specs/p/php-phpunit-Text-Template/php-phpunit-Text-Template.spec index 74970dbc73e..dc3c2091c38 100644 --- a/specs/p/php-phpunit-Text-Template/php-phpunit-Text-Template.spec +++ b/specs/p/php-phpunit-Text-Template/php-phpunit-Text-Template.spec @@ -19,7 +19,7 @@ Name: php-phpunit-Text-Template Version: 1.2.1 -Release: 23%{?dist} +Release: 23%{?dist} Summary: Simple template engine License: BSD-3-Clause diff --git a/specs/p/php-phpunit-Version/php-phpunit-Version.spec b/specs/p/php-phpunit-Version/php-phpunit-Version.spec index 31f59960714..842344b0a1b 100644 --- a/specs/p/php-phpunit-Version/php-phpunit-Version.spec +++ b/specs/p/php-phpunit-Version/php-phpunit-Version.spec @@ -18,7 +18,7 @@ Name: php-phpunit-Version Version: 2.0.1 -Release: 22%{?dist} +Release: 22%{?dist} Summary: Managing the version number of Git-hosted PHP projects License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-code-coverage10/php-phpunit-php-code-coverage10.spec b/specs/p/php-phpunit-php-code-coverage10/php-phpunit-php-code-coverage10.spec index 0f5332c2969..9654726c613 100644 --- a/specs/p/php-phpunit-php-code-coverage10/php-phpunit-php-code-coverage10.spec +++ b/specs/p/php-phpunit-php-code-coverage10/php-phpunit-php-code-coverage10.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{ver_major} Version: 10.1.16 -Release: 4%{?dist} +Release: 4%{?dist} Summary: PHP code coverage information, version %{ver_major} # SPDX: Main license is BSD-3-Clause diff --git a/specs/p/php-phpunit-php-code-coverage11/php-phpunit-php-code-coverage11.spec b/specs/p/php-phpunit-php-code-coverage11/php-phpunit-php-code-coverage11.spec index 0ae6d26b651..9ccb3f0b447 100644 --- a/specs/p/php-phpunit-php-code-coverage11/php-phpunit-php-code-coverage11.spec +++ b/specs/p/php-phpunit-php-code-coverage11/php-phpunit-php-code-coverage11.spec @@ -30,7 +30,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{ver_major} Version: 11.0.12 -Release: 2%{?dist} +Release: 2%{?dist} Summary: PHP code coverage information, version %{ver_major} # SPDX: Main license is BSD-3-Clause diff --git a/specs/p/php-phpunit-php-code-coverage12/php-phpunit-php-code-coverage12.spec b/specs/p/php-phpunit-php-code-coverage12/php-phpunit-php-code-coverage12.spec index 599f45d4f36..ff982dd9b25 100644 --- a/specs/p/php-phpunit-php-code-coverage12/php-phpunit-php-code-coverage12.spec +++ b/specs/p/php-phpunit-php-code-coverage12/php-phpunit-php-code-coverage12.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{ver_major} Version: 12.5.3 -Release: 3%{?dist} +Release: 3%{?dist} Summary: PHP code coverage information, version %{ver_major} # SPDX: Main license is BSD-3-Clause diff --git a/specs/p/php-phpunit-php-code-coverage13/php-phpunit-php-code-coverage13.spec b/specs/p/php-phpunit-php-code-coverage13/php-phpunit-php-code-coverage13.spec index 9158fa9da86..ba3ced0270d 100644 --- a/specs/p/php-phpunit-php-code-coverage13/php-phpunit-php-code-coverage13.spec +++ b/specs/p/php-phpunit-php-code-coverage13/php-phpunit-php-code-coverage13.spec @@ -32,7 +32,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{ver_major} Version: 13.0.1 -Release: 4%{?dist} +Release: 4%{?dist} Summary: PHP code coverage information, version %{ver_major} # SPDX: Main license is BSD-3-Clause diff --git a/specs/p/php-phpunit-php-code-coverage7/php-phpunit-php-code-coverage7.spec b/specs/p/php-phpunit-php-code-coverage7/php-phpunit-php-code-coverage7.spec index 19ee625dbaa..924c582c0c3 100644 --- a/specs/p/php-phpunit-php-code-coverage7/php-phpunit-php-code-coverage7.spec +++ b/specs/p/php-phpunit-php-code-coverage7/php-phpunit-php-code-coverage7.spec @@ -33,7 +33,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{ver_major} Version: 7.0.17 -Release: 6%{?dist} +Release: 6%{?dist} Summary: PHP code coverage information # SPDX: Main license is BSD-3-Clause diff --git a/specs/p/php-phpunit-php-code-coverage9/php-phpunit-php-code-coverage9.spec b/specs/p/php-phpunit-php-code-coverage9/php-phpunit-php-code-coverage9.spec index 5cf4683f086..f5d508c060f 100644 --- a/specs/p/php-phpunit-php-code-coverage9/php-phpunit-php-code-coverage9.spec +++ b/specs/p/php-phpunit-php-code-coverage9/php-phpunit-php-code-coverage9.spec @@ -30,7 +30,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{ver_major} Version: 9.2.32 -Release: 4%{?dist} +Release: 4%{?dist} Summary: PHP code coverage information, version %{ver_major} # SPDX: Main license is BSD-3-Clause diff --git a/specs/p/php-phpunit-php-file-iterator2/php-phpunit-php-file-iterator2.spec b/specs/p/php-phpunit-php-file-iterator2/php-phpunit-php-file-iterator2.spec index 92debe39702..4f216dfe551 100644 --- a/specs/p/php-phpunit-php-file-iterator2/php-phpunit-php-file-iterator2.spec +++ b/specs/p/php-phpunit-php-file-iterator2/php-phpunit-php-file-iterator2.spec @@ -32,7 +32,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 2.0.6 -Release: 5%{?dist} +Release: 5%{?dist} Summary: FilterIterator implementation that filters files based on a list of suffixes License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-file-iterator3/php-phpunit-php-file-iterator3.spec b/specs/p/php-phpunit-php-file-iterator3/php-phpunit-php-file-iterator3.spec index 17a84b3cd30..25d646f9c19 100644 --- a/specs/p/php-phpunit-php-file-iterator3/php-phpunit-php-file-iterator3.spec +++ b/specs/p/php-phpunit-php-file-iterator3/php-phpunit-php-file-iterator3.spec @@ -32,7 +32,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 3.0.6 -Release: 12%{?dist} +Release: 12%{?dist} Summary: FilterIterator implementation that filters files based on a list of suffixes, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-file-iterator4/php-phpunit-php-file-iterator4.spec b/specs/p/php-phpunit-php-file-iterator4/php-phpunit-php-file-iterator4.spec index 7fe0d0d6334..e31ca10ae60 100644 --- a/specs/p/php-phpunit-php-file-iterator4/php-phpunit-php-file-iterator4.spec +++ b/specs/p/php-phpunit-php-file-iterator4/php-phpunit-php-file-iterator4.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 4.1.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: FilterIterator implementation based on a list of suffixes, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-file-iterator5/php-phpunit-php-file-iterator5.spec b/specs/p/php-phpunit-php-file-iterator5/php-phpunit-php-file-iterator5.spec index a69730ab34e..57155422624 100644 --- a/specs/p/php-phpunit-php-file-iterator5/php-phpunit-php-file-iterator5.spec +++ b/specs/p/php-phpunit-php-file-iterator5/php-phpunit-php-file-iterator5.spec @@ -31,7 +31,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 5.1.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: FilterIterator implementation based on a list of suffixes, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-file-iterator6/php-phpunit-php-file-iterator6.spec b/specs/p/php-phpunit-php-file-iterator6/php-phpunit-php-file-iterator6.spec index d5d3bd522cb..8cb87c400f1 100644 --- a/specs/p/php-phpunit-php-file-iterator6/php-phpunit-php-file-iterator6.spec +++ b/specs/p/php-phpunit-php-file-iterator6/php-phpunit-php-file-iterator6.spec @@ -30,7 +30,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 6.0.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: FilterIterator implementation based on a list of suffixes, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-file-iterator7/php-phpunit-php-file-iterator7.spec b/specs/p/php-phpunit-php-file-iterator7/php-phpunit-php-file-iterator7.spec index e61f5112a98..84904922949 100644 --- a/specs/p/php-phpunit-php-file-iterator7/php-phpunit-php-file-iterator7.spec +++ b/specs/p/php-phpunit-php-file-iterator7/php-phpunit-php-file-iterator7.spec @@ -30,7 +30,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 7.0.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: FilterIterator implementation based on a list of suffixes, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-invoker2/php-phpunit-php-invoker2.spec b/specs/p/php-phpunit-php-invoker2/php-phpunit-php-invoker2.spec index e5ae14c204f..7e0af2e60c6 100644 --- a/specs/p/php-phpunit-php-invoker2/php-phpunit-php-invoker2.spec +++ b/specs/p/php-phpunit-php-invoker2/php-phpunit-php-invoker2.spec @@ -25,7 +25,7 @@ Name: php-phpunit-php-invoker2 Version: 2.0.1 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Invoke callables with a timeout License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-invoker3/php-phpunit-php-invoker3.spec b/specs/p/php-phpunit-php-invoker3/php-phpunit-php-invoker3.spec index 9ff1060a778..516bd0f1e7d 100644 --- a/specs/p/php-phpunit-php-invoker3/php-phpunit-php-invoker3.spec +++ b/specs/p/php-phpunit-php-invoker3/php-phpunit-php-invoker3.spec @@ -31,7 +31,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 3.1.1 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Invoke callables with a timeout, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-invoker4/php-phpunit-php-invoker4.spec b/specs/p/php-phpunit-php-invoker4/php-phpunit-php-invoker4.spec index a2e58a3d14a..e9b0d8318a7 100644 --- a/specs/p/php-phpunit-php-invoker4/php-phpunit-php-invoker4.spec +++ b/specs/p/php-phpunit-php-invoker4/php-phpunit-php-invoker4.spec @@ -27,7 +27,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 4.0.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Invoke callables with a timeout, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-invoker5/php-phpunit-php-invoker5.spec b/specs/p/php-phpunit-php-invoker5/php-phpunit-php-invoker5.spec index cc5f3eaaa99..3cfbc3234ab 100644 --- a/specs/p/php-phpunit-php-invoker5/php-phpunit-php-invoker5.spec +++ b/specs/p/php-phpunit-php-invoker5/php-phpunit-php-invoker5.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 5.0.1 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Invoke callables with a timeout, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-invoker6/php-phpunit-php-invoker6.spec b/specs/p/php-phpunit-php-invoker6/php-phpunit-php-invoker6.spec index c29189a8e79..94fa0e60b97 100644 --- a/specs/p/php-phpunit-php-invoker6/php-phpunit-php-invoker6.spec +++ b/specs/p/php-phpunit-php-invoker6/php-phpunit-php-invoker6.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 6.0.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Invoke callables with a timeout, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-invoker7/php-phpunit-php-invoker7.spec b/specs/p/php-phpunit-php-invoker7/php-phpunit-php-invoker7.spec index b1560af9aa6..580a5be4114 100644 --- a/specs/p/php-phpunit-php-invoker7/php-phpunit-php-invoker7.spec +++ b/specs/p/php-phpunit-php-invoker7/php-phpunit-php-invoker7.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 7.0.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Invoke callables with a timeout, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-text-template2/php-phpunit-php-text-template2.spec b/specs/p/php-phpunit-php-text-template2/php-phpunit-php-text-template2.spec index 4642c18263c..3db32590035 100644 --- a/specs/p/php-phpunit-php-text-template2/php-phpunit-php-text-template2.spec +++ b/specs/p/php-phpunit-php-text-template2/php-phpunit-php-text-template2.spec @@ -31,7 +31,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{ver_major} Version: 2.0.4 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Simple template engine, version %{ver_major} License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-text-template3/php-phpunit-php-text-template3.spec b/specs/p/php-phpunit-php-text-template3/php-phpunit-php-text-template3.spec index 68b0f335e59..54db69a9ada 100644 --- a/specs/p/php-phpunit-php-text-template3/php-phpunit-php-text-template3.spec +++ b/specs/p/php-phpunit-php-text-template3/php-phpunit-php-text-template3.spec @@ -27,7 +27,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{ver_major} Version: 3.0.1 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Simple template engine, version %{ver_major} License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-text-template4/php-phpunit-php-text-template4.spec b/specs/p/php-phpunit-php-text-template4/php-phpunit-php-text-template4.spec index d058392b296..0004065da7b 100644 --- a/specs/p/php-phpunit-php-text-template4/php-phpunit-php-text-template4.spec +++ b/specs/p/php-phpunit-php-text-template4/php-phpunit-php-text-template4.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{ver_major} Version: 4.0.1 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Simple template engine, version %{ver_major} License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-text-template5/php-phpunit-php-text-template5.spec b/specs/p/php-phpunit-php-text-template5/php-phpunit-php-text-template5.spec index 2e7fcca5517..036986adad4 100644 --- a/specs/p/php-phpunit-php-text-template5/php-phpunit-php-text-template5.spec +++ b/specs/p/php-phpunit-php-text-template5/php-phpunit-php-text-template5.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{ver_major} Version: 5.0.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Simple template engine, version %{ver_major} License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-text-template6/php-phpunit-php-text-template6.spec b/specs/p/php-phpunit-php-text-template6/php-phpunit-php-text-template6.spec index 72d73d1cbd4..3a51a4527b1 100644 --- a/specs/p/php-phpunit-php-text-template6/php-phpunit-php-text-template6.spec +++ b/specs/p/php-phpunit-php-text-template6/php-phpunit-php-text-template6.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{ver_major} Version: 6.0.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Simple template engine, version %{ver_major} License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-timer2/php-phpunit-php-timer2.spec b/specs/p/php-phpunit-php-timer2/php-phpunit-php-timer2.spec index cd03a080008..a4092148e52 100644 --- a/specs/p/php-phpunit-php-timer2/php-phpunit-php-timer2.spec +++ b/specs/p/php-phpunit-php-timer2/php-phpunit-php-timer2.spec @@ -32,7 +32,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 2.1.4 -Release: 5%{?dist} +Release: 5%{?dist} Summary: PHP Utility class for timing License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-timer5/php-phpunit-php-timer5.spec b/specs/p/php-phpunit-php-timer5/php-phpunit-php-timer5.spec index de844063843..f3fac3494b5 100644 --- a/specs/p/php-phpunit-php-timer5/php-phpunit-php-timer5.spec +++ b/specs/p/php-phpunit-php-timer5/php-phpunit-php-timer5.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 5.0.3 -Release: 14%{?dist} +Release: 14%{?dist} Summary: PHP Utility class for timing, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-timer6/php-phpunit-php-timer6.spec b/specs/p/php-phpunit-php-timer6/php-phpunit-php-timer6.spec index 8a268b23718..ba1ee4a3027 100644 --- a/specs/p/php-phpunit-php-timer6/php-phpunit-php-timer6.spec +++ b/specs/p/php-phpunit-php-timer6/php-phpunit-php-timer6.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 6.0.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: PHP Utility class for timing, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-timer7/php-phpunit-php-timer7.spec b/specs/p/php-phpunit-php-timer7/php-phpunit-php-timer7.spec index c9c6fd929e7..b32a7e54911 100644 --- a/specs/p/php-phpunit-php-timer7/php-phpunit-php-timer7.spec +++ b/specs/p/php-phpunit-php-timer7/php-phpunit-php-timer7.spec @@ -31,7 +31,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 7.0.1 -Release: 5%{?dist} +Release: 5%{?dist} Summary: PHP Utility class for timing, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-timer8/php-phpunit-php-timer8.spec b/specs/p/php-phpunit-php-timer8/php-phpunit-php-timer8.spec index 1cb5bb6fffe..da47f4cefea 100644 --- a/specs/p/php-phpunit-php-timer8/php-phpunit-php-timer8.spec +++ b/specs/p/php-phpunit-php-timer8/php-phpunit-php-timer8.spec @@ -30,7 +30,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 8.0.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: PHP Utility class for timing, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-timer9/php-phpunit-php-timer9.spec b/specs/p/php-phpunit-php-timer9/php-phpunit-php-timer9.spec index edb757b71e7..910de0e1b16 100644 --- a/specs/p/php-phpunit-php-timer9/php-phpunit-php-timer9.spec +++ b/specs/p/php-phpunit-php-timer9/php-phpunit-php-timer9.spec @@ -30,7 +30,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 9.0.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: PHP Utility class for timing, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-phpunit-php-token-stream4/php-phpunit-php-token-stream4.spec b/specs/p/php-phpunit-php-token-stream4/php-phpunit-php-token-stream4.spec index 0b0b5860338..b9c4b10f92d 100644 --- a/specs/p/php-phpunit-php-token-stream4/php-phpunit-php-token-stream4.spec +++ b/specs/p/php-phpunit-php-token-stream4/php-phpunit-php-token-stream4.spec @@ -30,7 +30,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 4.0.4 -Release: 16%{?dist} +Release: 16%{?dist} Summary: Wrapper around PHP tokenizer extension License: BSD-3-Clause diff --git a/specs/p/php-sebastian-cli-parser/php-sebastian-cli-parser.spec b/specs/p/php-sebastian-cli-parser/php-sebastian-cli-parser.spec index c1bcf1426f2..98122ee63a2 100644 --- a/specs/p/php-sebastian-cli-parser/php-sebastian-cli-parser.spec +++ b/specs/p/php-sebastian-cli-parser/php-sebastian-cli-parser.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 1.0.2 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Library for parsing CLI options, version 1 License: BSD-3-Clause diff --git a/specs/p/php-sebastian-cli-parser2/php-sebastian-cli-parser2.spec b/specs/p/php-sebastian-cli-parser2/php-sebastian-cli-parser2.spec index 5b66d0236a2..d335dff4fbe 100644 --- a/specs/p/php-sebastian-cli-parser2/php-sebastian-cli-parser2.spec +++ b/specs/p/php-sebastian-cli-parser2/php-sebastian-cli-parser2.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 2.0.1 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Library for parsing CLI options, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-cli-parser3/php-sebastian-cli-parser3.spec b/specs/p/php-sebastian-cli-parser3/php-sebastian-cli-parser3.spec index 0e3bc5e5da7..481a4f5478e 100644 --- a/specs/p/php-sebastian-cli-parser3/php-sebastian-cli-parser3.spec +++ b/specs/p/php-sebastian-cli-parser3/php-sebastian-cli-parser3.spec @@ -30,7 +30,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 3.0.2 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Library for parsing CLI options, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-cli-parser4/php-sebastian-cli-parser4.spec b/specs/p/php-sebastian-cli-parser4/php-sebastian-cli-parser4.spec index c952080243a..c8471c0b347 100644 --- a/specs/p/php-sebastian-cli-parser4/php-sebastian-cli-parser4.spec +++ b/specs/p/php-sebastian-cli-parser4/php-sebastian-cli-parser4.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 4.2.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Library for parsing CLI options, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-cli-parser5/php-sebastian-cli-parser5.spec b/specs/p/php-sebastian-cli-parser5/php-sebastian-cli-parser5.spec index 33c03d30635..170b6a170b2 100644 --- a/specs/p/php-sebastian-cli-parser5/php-sebastian-cli-parser5.spec +++ b/specs/p/php-sebastian-cli-parser5/php-sebastian-cli-parser5.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 5.0.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Library for parsing CLI options, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-code-unit-reverse-lookup/php-sebastian-code-unit-reverse-lookup.spec b/specs/p/php-sebastian-code-unit-reverse-lookup/php-sebastian-code-unit-reverse-lookup.spec index 14b4ccc99f3..938daf0938d 100644 --- a/specs/p/php-sebastian-code-unit-reverse-lookup/php-sebastian-code-unit-reverse-lookup.spec +++ b/specs/p/php-sebastian-code-unit-reverse-lookup/php-sebastian-code-unit-reverse-lookup.spec @@ -24,7 +24,7 @@ Name: php-sebastian-%{gh_project} Version: 1.0.3 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Looks up which function or method a line of code belongs to, version 1 License: BSD-3-Clause diff --git a/specs/p/php-sebastian-code-unit-reverse-lookup2/php-sebastian-code-unit-reverse-lookup2.spec b/specs/p/php-sebastian-code-unit-reverse-lookup2/php-sebastian-code-unit-reverse-lookup2.spec index 84cd3e9ab03..225405e1d23 100644 --- a/specs/p/php-sebastian-code-unit-reverse-lookup2/php-sebastian-code-unit-reverse-lookup2.spec +++ b/specs/p/php-sebastian-code-unit-reverse-lookup2/php-sebastian-code-unit-reverse-lookup2.spec @@ -30,7 +30,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 2.0.3 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Looks up which function or method a line of code belongs to, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-code-unit-reverse-lookup3/php-sebastian-code-unit-reverse-lookup3.spec b/specs/p/php-sebastian-code-unit-reverse-lookup3/php-sebastian-code-unit-reverse-lookup3.spec index 7e4e1c578ab..5a97f7bce67 100644 --- a/specs/p/php-sebastian-code-unit-reverse-lookup3/php-sebastian-code-unit-reverse-lookup3.spec +++ b/specs/p/php-sebastian-code-unit-reverse-lookup3/php-sebastian-code-unit-reverse-lookup3.spec @@ -27,7 +27,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 3.0.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Looks up which function or method a line of code belongs to, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-code-unit-reverse-lookup4/php-sebastian-code-unit-reverse-lookup4.spec b/specs/p/php-sebastian-code-unit-reverse-lookup4/php-sebastian-code-unit-reverse-lookup4.spec index cab86615ae7..78ca4beb00a 100644 --- a/specs/p/php-sebastian-code-unit-reverse-lookup4/php-sebastian-code-unit-reverse-lookup4.spec +++ b/specs/p/php-sebastian-code-unit-reverse-lookup4/php-sebastian-code-unit-reverse-lookup4.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 4.0.1 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Looks up which function or method a line of code belongs to, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-code-unit/php-sebastian-code-unit.spec b/specs/p/php-sebastian-code-unit/php-sebastian-code-unit.spec index f991eaa8c61..ba4e1c90ce4 100644 --- a/specs/p/php-sebastian-code-unit/php-sebastian-code-unit.spec +++ b/specs/p/php-sebastian-code-unit/php-sebastian-code-unit.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 1.0.8 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Collection of value objects that represent the PHP code units, version 1 License: BSD-3-Clause diff --git a/specs/p/php-sebastian-code-unit2/php-sebastian-code-unit2.spec b/specs/p/php-sebastian-code-unit2/php-sebastian-code-unit2.spec index 67ee52149a3..58ed7ad86a6 100644 --- a/specs/p/php-sebastian-code-unit2/php-sebastian-code-unit2.spec +++ b/specs/p/php-sebastian-code-unit2/php-sebastian-code-unit2.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 2.0.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Collection of value objects that represent the PHP code units, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-code-unit3/php-sebastian-code-unit3.spec b/specs/p/php-sebastian-code-unit3/php-sebastian-code-unit3.spec index 301d5ad3731..33d54df80cd 100644 --- a/specs/p/php-sebastian-code-unit3/php-sebastian-code-unit3.spec +++ b/specs/p/php-sebastian-code-unit3/php-sebastian-code-unit3.spec @@ -30,7 +30,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 3.0.3 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Collection of value objects that represent the PHP code units, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-comparator3/php-sebastian-comparator3.spec b/specs/p/php-sebastian-comparator3/php-sebastian-comparator3.spec index 815a0989691..c269a0ad4c7 100644 --- a/specs/p/php-sebastian-comparator3/php-sebastian-comparator3.spec +++ b/specs/p/php-sebastian-comparator3/php-sebastian-comparator3.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 3.0.7 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Compare PHP values for equality, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-comparator4/php-sebastian-comparator4.spec b/specs/p/php-sebastian-comparator4/php-sebastian-comparator4.spec index 4f361629ac4..d57960cd775 100644 --- a/specs/p/php-sebastian-comparator4/php-sebastian-comparator4.spec +++ b/specs/p/php-sebastian-comparator4/php-sebastian-comparator4.spec @@ -30,7 +30,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 4.0.10 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Compare PHP values for equality, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-comparator5/php-sebastian-comparator5.spec b/specs/p/php-sebastian-comparator5/php-sebastian-comparator5.spec index 23846a6d674..13e051dcc67 100644 --- a/specs/p/php-sebastian-comparator5/php-sebastian-comparator5.spec +++ b/specs/p/php-sebastian-comparator5/php-sebastian-comparator5.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 5.0.5 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Compare PHP values for equality, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-comparator6/php-sebastian-comparator6.spec b/specs/p/php-sebastian-comparator6/php-sebastian-comparator6.spec index f6203038c01..25bfdf6ae74 100644 --- a/specs/p/php-sebastian-comparator6/php-sebastian-comparator6.spec +++ b/specs/p/php-sebastian-comparator6/php-sebastian-comparator6.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 6.3.3 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Compare PHP values for equality, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-comparator7/php-sebastian-comparator7.spec b/specs/p/php-sebastian-comparator7/php-sebastian-comparator7.spec index 788f8d5fcbb..1c0382aa359 100644 --- a/specs/p/php-sebastian-comparator7/php-sebastian-comparator7.spec +++ b/specs/p/php-sebastian-comparator7/php-sebastian-comparator7.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 7.1.4 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Compare PHP values for equality, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-comparator8/php-sebastian-comparator8.spec b/specs/p/php-sebastian-comparator8/php-sebastian-comparator8.spec index fe0f0a8562c..156ee818fc0 100644 --- a/specs/p/php-sebastian-comparator8/php-sebastian-comparator8.spec +++ b/specs/p/php-sebastian-comparator8/php-sebastian-comparator8.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 8.1.4 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Compare PHP values for equality, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-complexity/php-sebastian-complexity.spec b/specs/p/php-sebastian-complexity/php-sebastian-complexity.spec index f155dc1ba78..7401985816f 100644 --- a/specs/p/php-sebastian-complexity/php-sebastian-complexity.spec +++ b/specs/p/php-sebastian-complexity/php-sebastian-complexity.spec @@ -27,7 +27,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 2.0.3 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Calculating the complexity of PHP code units, version 2 License: BSD-3-Clause diff --git a/specs/p/php-sebastian-complexity3/php-sebastian-complexity3.spec b/specs/p/php-sebastian-complexity3/php-sebastian-complexity3.spec index 7231e10d94d..046d0cc0ee0 100644 --- a/specs/p/php-sebastian-complexity3/php-sebastian-complexity3.spec +++ b/specs/p/php-sebastian-complexity3/php-sebastian-complexity3.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 3.2.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Calculating the complexity of PHP code units, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-complexity4/php-sebastian-complexity4.spec b/specs/p/php-sebastian-complexity4/php-sebastian-complexity4.spec index 558c42eb4e8..715d1ef3b79 100644 --- a/specs/p/php-sebastian-complexity4/php-sebastian-complexity4.spec +++ b/specs/p/php-sebastian-complexity4/php-sebastian-complexity4.spec @@ -30,7 +30,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 4.0.1 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Calculating the complexity of PHP code units, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-complexity5/php-sebastian-complexity5.spec b/specs/p/php-sebastian-complexity5/php-sebastian-complexity5.spec index 2d59cefebc2..e9fa014fbc2 100644 --- a/specs/p/php-sebastian-complexity5/php-sebastian-complexity5.spec +++ b/specs/p/php-sebastian-complexity5/php-sebastian-complexity5.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 5.0.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Calculating the complexity of PHP code units, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-complexity6/php-sebastian-complexity6.spec b/specs/p/php-sebastian-complexity6/php-sebastian-complexity6.spec index adc7d56848e..ed7d0319821 100644 --- a/specs/p/php-sebastian-complexity6/php-sebastian-complexity6.spec +++ b/specs/p/php-sebastian-complexity6/php-sebastian-complexity6.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 6.0.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Calculating the complexity of PHP code units, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-diff3/php-sebastian-diff3.spec b/specs/p/php-sebastian-diff3/php-sebastian-diff3.spec index 9f928d6b83a..ff5bcf88ed2 100644 --- a/specs/p/php-sebastian-diff3/php-sebastian-diff3.spec +++ b/specs/p/php-sebastian-diff3/php-sebastian-diff3.spec @@ -31,7 +31,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 3.0.6 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Diff implementation, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-diff4/php-sebastian-diff4.spec b/specs/p/php-sebastian-diff4/php-sebastian-diff4.spec index 93ad58197ff..2cad20c0e0a 100644 --- a/specs/p/php-sebastian-diff4/php-sebastian-diff4.spec +++ b/specs/p/php-sebastian-diff4/php-sebastian-diff4.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 4.0.6 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Diff implementation, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-diff5/php-sebastian-diff5.spec b/specs/p/php-sebastian-diff5/php-sebastian-diff5.spec index e7536b97ffb..80e050d2119 100644 --- a/specs/p/php-sebastian-diff5/php-sebastian-diff5.spec +++ b/specs/p/php-sebastian-diff5/php-sebastian-diff5.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 5.1.1 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Diff implementation, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-diff6/php-sebastian-diff6.spec b/specs/p/php-sebastian-diff6/php-sebastian-diff6.spec index c7fa70a4b7b..e3a9b274ccb 100644 --- a/specs/p/php-sebastian-diff6/php-sebastian-diff6.spec +++ b/specs/p/php-sebastian-diff6/php-sebastian-diff6.spec @@ -30,7 +30,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 6.0.2 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Diff implementation, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-diff7/php-sebastian-diff7.spec b/specs/p/php-sebastian-diff7/php-sebastian-diff7.spec index 9206c8357eb..6db8c87d78e 100644 --- a/specs/p/php-sebastian-diff7/php-sebastian-diff7.spec +++ b/specs/p/php-sebastian-diff7/php-sebastian-diff7.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 7.0.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Diff implementation, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-diff8/php-sebastian-diff8.spec b/specs/p/php-sebastian-diff8/php-sebastian-diff8.spec index 260c067a945..9d8d55c7720 100644 --- a/specs/p/php-sebastian-diff8/php-sebastian-diff8.spec +++ b/specs/p/php-sebastian-diff8/php-sebastian-diff8.spec @@ -26,7 +26,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 8.3.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Diff implementation, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-environment4/php-sebastian-environment4.spec b/specs/p/php-sebastian-environment4/php-sebastian-environment4.spec index d4f6c7252c4..069c762a9bd 100644 --- a/specs/p/php-sebastian-environment4/php-sebastian-environment4.spec +++ b/specs/p/php-sebastian-environment4/php-sebastian-environment4.spec @@ -31,7 +31,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 4.2.5 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Handle HHVM/PHP environments, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-environment5/php-sebastian-environment5.spec b/specs/p/php-sebastian-environment5/php-sebastian-environment5.spec index b3850c84d51..212bef79cef 100644 --- a/specs/p/php-sebastian-environment5/php-sebastian-environment5.spec +++ b/specs/p/php-sebastian-environment5/php-sebastian-environment5.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 5.1.5 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Handle HHVM/PHP environments, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-environment6/php-sebastian-environment6.spec b/specs/p/php-sebastian-environment6/php-sebastian-environment6.spec index 4ab0368cd98..77d4817765d 100644 --- a/specs/p/php-sebastian-environment6/php-sebastian-environment6.spec +++ b/specs/p/php-sebastian-environment6/php-sebastian-environment6.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 6.1.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Handle HHVM/PHP environments, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-environment7/php-sebastian-environment7.spec b/specs/p/php-sebastian-environment7/php-sebastian-environment7.spec index 7bd9d84c475..287866c8c93 100644 --- a/specs/p/php-sebastian-environment7/php-sebastian-environment7.spec +++ b/specs/p/php-sebastian-environment7/php-sebastian-environment7.spec @@ -30,7 +30,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 7.2.1 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Handle HHVM/PHP environments, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-environment8/php-sebastian-environment8.spec b/specs/p/php-sebastian-environment8/php-sebastian-environment8.spec index ce9f759f195..0594e77865b 100644 --- a/specs/p/php-sebastian-environment8/php-sebastian-environment8.spec +++ b/specs/p/php-sebastian-environment8/php-sebastian-environment8.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 8.0.3 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Handle HHVM/PHP environments, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-environment9/php-sebastian-environment9.spec b/specs/p/php-sebastian-environment9/php-sebastian-environment9.spec index aa27dc9075e..6e62d7e6995 100644 --- a/specs/p/php-sebastian-environment9/php-sebastian-environment9.spec +++ b/specs/p/php-sebastian-environment9/php-sebastian-environment9.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 9.0.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Handle HHVM/PHP environments, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-exporter3/php-sebastian-exporter3.spec b/specs/p/php-sebastian-exporter3/php-sebastian-exporter3.spec index 8468de0c55e..a50db10959e 100644 --- a/specs/p/php-sebastian-exporter3/php-sebastian-exporter3.spec +++ b/specs/p/php-sebastian-exporter3/php-sebastian-exporter3.spec @@ -32,7 +32,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 3.1.8 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Export PHP variables for visualization, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-exporter4/php-sebastian-exporter4.spec b/specs/p/php-sebastian-exporter4/php-sebastian-exporter4.spec index 30aa2cb2444..343bc993db1 100644 --- a/specs/p/php-sebastian-exporter4/php-sebastian-exporter4.spec +++ b/specs/p/php-sebastian-exporter4/php-sebastian-exporter4.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 4.0.8 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Export PHP variables for visualization, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-exporter5/php-sebastian-exporter5.spec b/specs/p/php-sebastian-exporter5/php-sebastian-exporter5.spec index ff87c44d90b..f7a1ace130b 100644 --- a/specs/p/php-sebastian-exporter5/php-sebastian-exporter5.spec +++ b/specs/p/php-sebastian-exporter5/php-sebastian-exporter5.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 5.1.4 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Export PHP variables for visualization, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-exporter6/php-sebastian-exporter6.spec b/specs/p/php-sebastian-exporter6/php-sebastian-exporter6.spec index dd3e25b192e..29a2f3903ba 100644 --- a/specs/p/php-sebastian-exporter6/php-sebastian-exporter6.spec +++ b/specs/p/php-sebastian-exporter6/php-sebastian-exporter6.spec @@ -31,7 +31,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 6.3.2 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Export PHP variables for visualization, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-exporter7/php-sebastian-exporter7.spec b/specs/p/php-sebastian-exporter7/php-sebastian-exporter7.spec index e4548c7e0ea..69bade27d4d 100644 --- a/specs/p/php-sebastian-exporter7/php-sebastian-exporter7.spec +++ b/specs/p/php-sebastian-exporter7/php-sebastian-exporter7.spec @@ -30,7 +30,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 7.0.2 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Export PHP variables for visualization, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-exporter8/php-sebastian-exporter8.spec b/specs/p/php-sebastian-exporter8/php-sebastian-exporter8.spec index ef29e857a26..75b6a394cbd 100644 --- a/specs/p/php-sebastian-exporter8/php-sebastian-exporter8.spec +++ b/specs/p/php-sebastian-exporter8/php-sebastian-exporter8.spec @@ -30,7 +30,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 8.0.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Export PHP variables for visualization, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-global-state3/php-sebastian-global-state3.spec b/specs/p/php-sebastian-global-state3/php-sebastian-global-state3.spec index f6d3ab864a3..1e1a5c76a0e 100644 --- a/specs/p/php-sebastian-global-state3/php-sebastian-global-state3.spec +++ b/specs/p/php-sebastian-global-state3/php-sebastian-global-state3.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 3.0.6 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Snapshotting of global state, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-global-state5/php-sebastian-global-state5.spec b/specs/p/php-sebastian-global-state5/php-sebastian-global-state5.spec index 6bd5d320041..3dfba0e5559 100644 --- a/specs/p/php-sebastian-global-state5/php-sebastian-global-state5.spec +++ b/specs/p/php-sebastian-global-state5/php-sebastian-global-state5.spec @@ -27,7 +27,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 5.0.8 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Snapshotting of global state, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-global-state6/php-sebastian-global-state6.spec b/specs/p/php-sebastian-global-state6/php-sebastian-global-state6.spec index fab28aca4cd..164d266c089 100644 --- a/specs/p/php-sebastian-global-state6/php-sebastian-global-state6.spec +++ b/specs/p/php-sebastian-global-state6/php-sebastian-global-state6.spec @@ -27,7 +27,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 6.0.2 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Snapshotting of global state, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-global-state7/php-sebastian-global-state7.spec b/specs/p/php-sebastian-global-state7/php-sebastian-global-state7.spec index 2f0af7d1337..01415281c9b 100644 --- a/specs/p/php-sebastian-global-state7/php-sebastian-global-state7.spec +++ b/specs/p/php-sebastian-global-state7/php-sebastian-global-state7.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 7.0.2 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Snapshotting of global state, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-global-state8/php-sebastian-global-state8.spec b/specs/p/php-sebastian-global-state8/php-sebastian-global-state8.spec index 7711b4fa495..86b91580b7d 100644 --- a/specs/p/php-sebastian-global-state8/php-sebastian-global-state8.spec +++ b/specs/p/php-sebastian-global-state8/php-sebastian-global-state8.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 8.0.2 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Snapshotting of global state, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-global-state9/php-sebastian-global-state9.spec b/specs/p/php-sebastian-global-state9/php-sebastian-global-state9.spec index 8b7264c21ad..f826b1ddc0a 100644 --- a/specs/p/php-sebastian-global-state9/php-sebastian-global-state9.spec +++ b/specs/p/php-sebastian-global-state9/php-sebastian-global-state9.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 9.0.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Snapshotting of global state, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-lines-of-code/php-sebastian-lines-of-code.spec b/specs/p/php-sebastian-lines-of-code/php-sebastian-lines-of-code.spec index bdb5e39c3bd..1d7c7c6c9da 100644 --- a/specs/p/php-sebastian-lines-of-code/php-sebastian-lines-of-code.spec +++ b/specs/p/php-sebastian-lines-of-code/php-sebastian-lines-of-code.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 1.0.4 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Counting the lines of code in PHP source code, version 1 License: BSD-3-Clause diff --git a/specs/p/php-sebastian-lines-of-code2/php-sebastian-lines-of-code2.spec b/specs/p/php-sebastian-lines-of-code2/php-sebastian-lines-of-code2.spec index d290d04a3c9..bdc13f405c9 100644 --- a/specs/p/php-sebastian-lines-of-code2/php-sebastian-lines-of-code2.spec +++ b/specs/p/php-sebastian-lines-of-code2/php-sebastian-lines-of-code2.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 2.0.2 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Counting the lines of code in PHP source code, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-lines-of-code3/php-sebastian-lines-of-code3.spec b/specs/p/php-sebastian-lines-of-code3/php-sebastian-lines-of-code3.spec index a3726e491e3..30689436d05 100644 --- a/specs/p/php-sebastian-lines-of-code3/php-sebastian-lines-of-code3.spec +++ b/specs/p/php-sebastian-lines-of-code3/php-sebastian-lines-of-code3.spec @@ -30,7 +30,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 3.0.1 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Counting the lines of code in PHP source code, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-lines-of-code4/php-sebastian-lines-of-code4.spec b/specs/p/php-sebastian-lines-of-code4/php-sebastian-lines-of-code4.spec index 156608b6a55..ae040bbf1fb 100644 --- a/specs/p/php-sebastian-lines-of-code4/php-sebastian-lines-of-code4.spec +++ b/specs/p/php-sebastian-lines-of-code4/php-sebastian-lines-of-code4.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 4.0.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Counting the lines of code in PHP source code, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-lines-of-code5/php-sebastian-lines-of-code5.spec b/specs/p/php-sebastian-lines-of-code5/php-sebastian-lines-of-code5.spec index 9d2893d146d..d29b9342099 100644 --- a/specs/p/php-sebastian-lines-of-code5/php-sebastian-lines-of-code5.spec +++ b/specs/p/php-sebastian-lines-of-code5/php-sebastian-lines-of-code5.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 5.0.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Counting the lines of code in PHP source code, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-object-enumerator3/php-sebastian-object-enumerator3.spec b/specs/p/php-sebastian-object-enumerator3/php-sebastian-object-enumerator3.spec index 9887f4107ca..40ae175692f 100644 --- a/specs/p/php-sebastian-object-enumerator3/php-sebastian-object-enumerator3.spec +++ b/specs/p/php-sebastian-object-enumerator3/php-sebastian-object-enumerator3.spec @@ -31,7 +31,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 3.0.5 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Traverses array and object to enumerate all referenced objects, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-object-enumerator4/php-sebastian-object-enumerator4.spec b/specs/p/php-sebastian-object-enumerator4/php-sebastian-object-enumerator4.spec index c6385359a9f..640b6b63a82 100644 --- a/specs/p/php-sebastian-object-enumerator4/php-sebastian-object-enumerator4.spec +++ b/specs/p/php-sebastian-object-enumerator4/php-sebastian-object-enumerator4.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 4.0.4 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Traverses array and object to enumerate all referenced objects, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-object-enumerator5/php-sebastian-object-enumerator5.spec b/specs/p/php-sebastian-object-enumerator5/php-sebastian-object-enumerator5.spec index cc291e76bae..3f63abe34c3 100644 --- a/specs/p/php-sebastian-object-enumerator5/php-sebastian-object-enumerator5.spec +++ b/specs/p/php-sebastian-object-enumerator5/php-sebastian-object-enumerator5.spec @@ -27,7 +27,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 5.0.0 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Traverses array and object to enumerate all referenced objects, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-object-enumerator6/php-sebastian-object-enumerator6.spec b/specs/p/php-sebastian-object-enumerator6/php-sebastian-object-enumerator6.spec index a7fda4cbf9b..ec2e9e50155 100644 --- a/specs/p/php-sebastian-object-enumerator6/php-sebastian-object-enumerator6.spec +++ b/specs/p/php-sebastian-object-enumerator6/php-sebastian-object-enumerator6.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 6.0.1 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Traverses array and object to enumerate all referenced objects, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-object-enumerator7/php-sebastian-object-enumerator7.spec b/specs/p/php-sebastian-object-enumerator7/php-sebastian-object-enumerator7.spec index da6d4753775..de17e365944 100644 --- a/specs/p/php-sebastian-object-enumerator7/php-sebastian-object-enumerator7.spec +++ b/specs/p/php-sebastian-object-enumerator7/php-sebastian-object-enumerator7.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 7.0.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Traverses array and object to enumerate all referenced objects, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-object-enumerator8/php-sebastian-object-enumerator8.spec b/specs/p/php-sebastian-object-enumerator8/php-sebastian-object-enumerator8.spec index 1155fd52490..cd3a9001db7 100644 --- a/specs/p/php-sebastian-object-enumerator8/php-sebastian-object-enumerator8.spec +++ b/specs/p/php-sebastian-object-enumerator8/php-sebastian-object-enumerator8.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 8.0.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Traverses array and object to enumerate all referenced objects, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-object-reflector/php-sebastian-object-reflector.spec b/specs/p/php-sebastian-object-reflector/php-sebastian-object-reflector.spec index fbba025bd6b..4de1fa80690 100644 --- a/specs/p/php-sebastian-object-reflector/php-sebastian-object-reflector.spec +++ b/specs/p/php-sebastian-object-reflector/php-sebastian-object-reflector.spec @@ -30,7 +30,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 1.1.3 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Allows reflection of object attributes, version 1 License: BSD-3-Clause diff --git a/specs/p/php-sebastian-object-reflector2/php-sebastian-object-reflector2.spec b/specs/p/php-sebastian-object-reflector2/php-sebastian-object-reflector2.spec index 47ccc475ece..9d0ba80e263 100644 --- a/specs/p/php-sebastian-object-reflector2/php-sebastian-object-reflector2.spec +++ b/specs/p/php-sebastian-object-reflector2/php-sebastian-object-reflector2.spec @@ -27,7 +27,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 2.0.4 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Allows reflection of object attributes, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-object-reflector3/php-sebastian-object-reflector3.spec b/specs/p/php-sebastian-object-reflector3/php-sebastian-object-reflector3.spec index 5fc7ac5c159..853bf8aab6e 100644 --- a/specs/p/php-sebastian-object-reflector3/php-sebastian-object-reflector3.spec +++ b/specs/p/php-sebastian-object-reflector3/php-sebastian-object-reflector3.spec @@ -27,7 +27,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 3.0.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Allows reflection of object attributes, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-object-reflector4/php-sebastian-object-reflector4.spec b/specs/p/php-sebastian-object-reflector4/php-sebastian-object-reflector4.spec index 9587115dd79..5a8c6ea9db1 100644 --- a/specs/p/php-sebastian-object-reflector4/php-sebastian-object-reflector4.spec +++ b/specs/p/php-sebastian-object-reflector4/php-sebastian-object-reflector4.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 4.0.1 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Allows reflection of object attributes, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-object-reflector5/php-sebastian-object-reflector5.spec b/specs/p/php-sebastian-object-reflector5/php-sebastian-object-reflector5.spec index 7d449650049..b65cbc968f0 100644 --- a/specs/p/php-sebastian-object-reflector5/php-sebastian-object-reflector5.spec +++ b/specs/p/php-sebastian-object-reflector5/php-sebastian-object-reflector5.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 5.0.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Allows reflection of object attributes, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-object-reflector6/php-sebastian-object-reflector6.spec b/specs/p/php-sebastian-object-reflector6/php-sebastian-object-reflector6.spec index 66475234c24..7f34a9e6fdc 100644 --- a/specs/p/php-sebastian-object-reflector6/php-sebastian-object-reflector6.spec +++ b/specs/p/php-sebastian-object-reflector6/php-sebastian-object-reflector6.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 6.0.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Allows reflection of object attributes, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-recursion-context3/php-sebastian-recursion-context3.spec b/specs/p/php-sebastian-recursion-context3/php-sebastian-recursion-context3.spec index 8c0c88f6869..ebd6fec0974 100644 --- a/specs/p/php-sebastian-recursion-context3/php-sebastian-recursion-context3.spec +++ b/specs/p/php-sebastian-recursion-context3/php-sebastian-recursion-context3.spec @@ -30,7 +30,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 3.0.2 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Recursively process PHP variables, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-recursion-context4/php-sebastian-recursion-context4.spec b/specs/p/php-sebastian-recursion-context4/php-sebastian-recursion-context4.spec index 253cd711bd2..c84506cb2eb 100644 --- a/specs/p/php-sebastian-recursion-context4/php-sebastian-recursion-context4.spec +++ b/specs/p/php-sebastian-recursion-context4/php-sebastian-recursion-context4.spec @@ -27,7 +27,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 4.0.6 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Recursively process PHP variables, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-recursion-context5/php-sebastian-recursion-context5.spec b/specs/p/php-sebastian-recursion-context5/php-sebastian-recursion-context5.spec index 6b666f86869..abc6da8f9c9 100644 --- a/specs/p/php-sebastian-recursion-context5/php-sebastian-recursion-context5.spec +++ b/specs/p/php-sebastian-recursion-context5/php-sebastian-recursion-context5.spec @@ -27,7 +27,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 5.0.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Recursively process PHP variables, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-recursion-context6/php-sebastian-recursion-context6.spec b/specs/p/php-sebastian-recursion-context6/php-sebastian-recursion-context6.spec index 88e8d0be433..7268bd008dd 100644 --- a/specs/p/php-sebastian-recursion-context6/php-sebastian-recursion-context6.spec +++ b/specs/p/php-sebastian-recursion-context6/php-sebastian-recursion-context6.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 6.0.3 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Recursively process PHP variables, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-recursion-context7/php-sebastian-recursion-context7.spec b/specs/p/php-sebastian-recursion-context7/php-sebastian-recursion-context7.spec index fa179b9194d..f44fe8a1326 100644 --- a/specs/p/php-sebastian-recursion-context7/php-sebastian-recursion-context7.spec +++ b/specs/p/php-sebastian-recursion-context7/php-sebastian-recursion-context7.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 7.0.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Recursively process PHP variables, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-recursion-context8/php-sebastian-recursion-context8.spec b/specs/p/php-sebastian-recursion-context8/php-sebastian-recursion-context8.spec index ad46e4be705..8fbc696c40d 100644 --- a/specs/p/php-sebastian-recursion-context8/php-sebastian-recursion-context8.spec +++ b/specs/p/php-sebastian-recursion-context8/php-sebastian-recursion-context8.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 8.0.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Recursively process PHP variables, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-resource-operations2/php-sebastian-resource-operations2.spec b/specs/p/php-sebastian-resource-operations2/php-sebastian-resource-operations2.spec index 07bd69e7773..e273825ac73 100644 --- a/specs/p/php-sebastian-resource-operations2/php-sebastian-resource-operations2.spec +++ b/specs/p/php-sebastian-resource-operations2/php-sebastian-resource-operations2.spec @@ -27,7 +27,7 @@ Name: php-sebastian-resource-operations%{major} Version: 2.0.3 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Provides a list of PHP built-in functions that operate on resources, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-resource-operations3/php-sebastian-resource-operations3.spec b/specs/p/php-sebastian-resource-operations3/php-sebastian-resource-operations3.spec index d03b2c44f73..29b3a95a27b 100644 --- a/specs/p/php-sebastian-resource-operations3/php-sebastian-resource-operations3.spec +++ b/specs/p/php-sebastian-resource-operations3/php-sebastian-resource-operations3.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 3.0.4 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Provides a list of PHP built-in functions that operate on resources, version %{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-type/php-sebastian-type.spec b/specs/p/php-sebastian-type/php-sebastian-type.spec index 296f78e430e..f409c60290b 100644 --- a/specs/p/php-sebastian-type/php-sebastian-type.spec +++ b/specs/p/php-sebastian-type/php-sebastian-type.spec @@ -31,7 +31,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 1.1.5 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Collection of value objects that represent the types of the PHP type system, v1 License: BSD-3-Clause diff --git a/specs/p/php-sebastian-type3/php-sebastian-type3.spec b/specs/p/php-sebastian-type3/php-sebastian-type3.spec index e7f3e77bfb4..1f0946e759c 100644 --- a/specs/p/php-sebastian-type3/php-sebastian-type3.spec +++ b/specs/p/php-sebastian-type3/php-sebastian-type3.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 3.2.1 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Collection of value objects that represent the types of the PHP type system, v%{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-type4/php-sebastian-type4.spec b/specs/p/php-sebastian-type4/php-sebastian-type4.spec index 22a4d8e7b40..3caa14c1a08 100644 --- a/specs/p/php-sebastian-type4/php-sebastian-type4.spec +++ b/specs/p/php-sebastian-type4/php-sebastian-type4.spec @@ -28,7 +28,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 4.0.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Collection of value objects that represent the types of the PHP type system, v%{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-type5/php-sebastian-type5.spec b/specs/p/php-sebastian-type5/php-sebastian-type5.spec index c4b78acaba5..4bd779ecc77 100644 --- a/specs/p/php-sebastian-type5/php-sebastian-type5.spec +++ b/specs/p/php-sebastian-type5/php-sebastian-type5.spec @@ -30,7 +30,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 5.1.3 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Collection of value objects that represent the types of the PHP type system, v%{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-type6/php-sebastian-type6.spec b/specs/p/php-sebastian-type6/php-sebastian-type6.spec index cbc78cb9ad4..7bb9443cb01 100644 --- a/specs/p/php-sebastian-type6/php-sebastian-type6.spec +++ b/specs/p/php-sebastian-type6/php-sebastian-type6.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 6.0.3 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Collection of value objects that represent the types of the PHP type system, v%{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-type7/php-sebastian-type7.spec b/specs/p/php-sebastian-type7/php-sebastian-type7.spec index 989208e1261..0e5cf6d1d71 100644 --- a/specs/p/php-sebastian-type7/php-sebastian-type7.spec +++ b/specs/p/php-sebastian-type7/php-sebastian-type7.spec @@ -29,7 +29,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{major} Version: 7.0.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Collection of value objects that represent the types of the PHP type system, v%{major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-version3/php-sebastian-version3.spec b/specs/p/php-sebastian-version3/php-sebastian-version3.spec index 524fe8636ba..106818719b5 100644 --- a/specs/p/php-sebastian-version3/php-sebastian-version3.spec +++ b/specs/p/php-sebastian-version3/php-sebastian-version3.spec @@ -24,7 +24,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{ver_major} Version: 3.0.2 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Managing the version number of Git-hosted PHP projects, version %{ver_major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-version4/php-sebastian-version4.spec b/specs/p/php-sebastian-version4/php-sebastian-version4.spec index 25228a88685..15aadbfc015 100644 --- a/specs/p/php-sebastian-version4/php-sebastian-version4.spec +++ b/specs/p/php-sebastian-version4/php-sebastian-version4.spec @@ -25,7 +25,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{ver_major} Version: 4.0.1 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Managing the version number of Git-hosted PHP projects, version %{ver_major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-version5/php-sebastian-version5.spec b/specs/p/php-sebastian-version5/php-sebastian-version5.spec index ccb42048196..d143a6705b0 100644 --- a/specs/p/php-sebastian-version5/php-sebastian-version5.spec +++ b/specs/p/php-sebastian-version5/php-sebastian-version5.spec @@ -25,7 +25,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{ver_major} Version: 5.0.2 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Managing the version number of Git-hosted PHP projects, version %{ver_major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-version6/php-sebastian-version6.spec b/specs/p/php-sebastian-version6/php-sebastian-version6.spec index d1ef25d7110..000d426104a 100644 --- a/specs/p/php-sebastian-version6/php-sebastian-version6.spec +++ b/specs/p/php-sebastian-version6/php-sebastian-version6.spec @@ -25,7 +25,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{ver_major} Version: 6.0.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Managing the version number of Git-hosted PHP projects, version %{ver_major} License: BSD-3-Clause diff --git a/specs/p/php-sebastian-version7/php-sebastian-version7.spec b/specs/p/php-sebastian-version7/php-sebastian-version7.spec index 2e179efb026..b5f29ec8773 100644 --- a/specs/p/php-sebastian-version7/php-sebastian-version7.spec +++ b/specs/p/php-sebastian-version7/php-sebastian-version7.spec @@ -25,7 +25,7 @@ Name: php-%{pk_vendor}-%{pk_project}%{ver_major} Version: 7.0.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Managing the version number of Git-hosted PHP projects, version %{ver_major} License: BSD-3-Clause diff --git a/specs/p/php-staabm-side-effects-detector/php-staabm-side-effects-detector.spec b/specs/p/php-staabm-side-effects-detector/php-staabm-side-effects-detector.spec index ac13d43113c..9b9abad596b 100644 --- a/specs/p/php-staabm-side-effects-detector/php-staabm-side-effects-detector.spec +++ b/specs/p/php-staabm-side-effects-detector/php-staabm-side-effects-detector.spec @@ -22,7 +22,7 @@ Name: php-%{gh_owner}-%{gh_project} Version: 1.0.5 -Release: 4%{?dist} +Release: 4%{?dist} Summary: A static analysis tool to detect side effects in PHP code License: MIT diff --git a/specs/p/php-theseer-autoload/php-theseer-autoload.spec b/specs/p/php-theseer-autoload/php-theseer-autoload.spec index 3a78cf2368b..5b7a1125440 100644 --- a/specs/p/php-theseer-autoload/php-theseer-autoload.spec +++ b/specs/p/php-theseer-autoload/php-theseer-autoload.spec @@ -26,7 +26,7 @@ Name: php-theseer-autoload Version: 1.29.4 -Release: 2%{?dist} +Release: 2%{?dist} Summary: A tool and library to generate autoload code License: BSD-3-Clause diff --git a/specs/p/php-theseer-directoryscanner/php-theseer-directoryscanner.spec b/specs/p/php-theseer-directoryscanner/php-theseer-directoryscanner.spec index 3805390ec44..9c297659248 100644 --- a/specs/p/php-theseer-directoryscanner/php-theseer-directoryscanner.spec +++ b/specs/p/php-theseer-directoryscanner/php-theseer-directoryscanner.spec @@ -25,7 +25,7 @@ Name: php-theseer-directoryscanner Version: 1.3.3 -Release: 13%{?dist} +Release: 13%{?dist} Summary: A recursive directory scanner and filter License: BSD-2-Clause diff --git a/specs/p/php-theseer-tokenizer/php-theseer-tokenizer.spec b/specs/p/php-theseer-tokenizer/php-theseer-tokenizer.spec index 532a4c84dea..9857dcbae2b 100644 --- a/specs/p/php-theseer-tokenizer/php-theseer-tokenizer.spec +++ b/specs/p/php-theseer-tokenizer/php-theseer-tokenizer.spec @@ -20,7 +20,7 @@ Name: php-%{gh_vendor}-%{gh_project} Version: 1.3.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Library for converting tokenized PHP source code into XML License: BSD-3-Clause diff --git a/specs/p/php-theseer-tokenizer2/php-theseer-tokenizer2.spec b/specs/p/php-theseer-tokenizer2/php-theseer-tokenizer2.spec index d85c9a2a8b0..1d2c2f302da 100644 --- a/specs/p/php-theseer-tokenizer2/php-theseer-tokenizer2.spec +++ b/specs/p/php-theseer-tokenizer2/php-theseer-tokenizer2.spec @@ -21,7 +21,7 @@ Name: php-%{gh_vendor}-%{gh_project}%{major} Version: 2.0.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Library for converting tokenized PHP source code into XML License: BSD-3-Clause diff --git a/specs/p/php-webmozart-assert2/php-webmozart-assert2.spec b/specs/p/php-webmozart-assert2/php-webmozart-assert2.spec index 1669e54da58..386a12986ae 100644 --- a/specs/p/php-webmozart-assert2/php-webmozart-assert2.spec +++ b/specs/p/php-webmozart-assert2/php-webmozart-assert2.spec @@ -43,7 +43,7 @@ Name: php-%{composer_vendor}-%{composer_project}%{major} Version: %{github_version} -Release: 1%{?github_release}%{?dist} +Release: 4%{?github_release}%{?dist} Summary: Assertions to validate method input/output with nice error messages License: MIT diff --git a/specs/p/php-zetacomponents-base/php-zetacomponents-base.spec b/specs/p/php-zetacomponents-base/php-zetacomponents-base.spec index 45bff5b9438..9f4d54ca994 100644 --- a/specs/p/php-zetacomponents-base/php-zetacomponents-base.spec +++ b/specs/p/php-zetacomponents-base/php-zetacomponents-base.spec @@ -27,7 +27,7 @@ Name: php-%{gh_owner}-%{cname} Version: 1.9.4 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Zeta Base Component Group: Development/Libraries diff --git a/specs/p/php-zetacomponents-console-tools/php-zetacomponents-console-tools.spec b/specs/p/php-zetacomponents-console-tools/php-zetacomponents-console-tools.spec index d81671f5d03..77b77977213 100644 --- a/specs/p/php-zetacomponents-console-tools/php-zetacomponents-console-tools.spec +++ b/specs/p/php-zetacomponents-console-tools/php-zetacomponents-console-tools.spec @@ -26,7 +26,7 @@ Name: php-%{gh_owner}-%{cname} Version: 1.7.5 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Zeta %{gh_project} Component License: Apache-2.0 diff --git a/specs/p/php-zetacomponents-unit-test/php-zetacomponents-unit-test.spec b/specs/p/php-zetacomponents-unit-test/php-zetacomponents-unit-test.spec index 6d1b2c0e9f8..58adb602d25 100644 --- a/specs/p/php-zetacomponents-unit-test/php-zetacomponents-unit-test.spec +++ b/specs/p/php-zetacomponents-unit-test/php-zetacomponents-unit-test.spec @@ -19,7 +19,7 @@ Name: php-%{gh_owner}-%{cname} Version: 1.2.6 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Zeta UnitTest Component License: Apache-2.0 diff --git a/specs/p/phpunit10/phpunit10.spec b/specs/p/phpunit10/phpunit10.spec index af298e34408..07fd3eeb449 100644 --- a/specs/p/phpunit10/phpunit10.spec +++ b/specs/p/phpunit10/phpunit10.spec @@ -38,7 +38,7 @@ Name: %{pk_project}%{ver_major} Version: %{upstream_version}%{?upstream_prever:~%{upstream_prever}} -Release: 2%{?dist} +Release: 2%{?dist} Summary: The PHP Unit Testing framework version %{ver_major} License: BSD-3-Clause diff --git a/specs/p/phpunit11/phpunit11.spec b/specs/p/phpunit11/phpunit11.spec index ffa61d567a7..ac204ca3de5 100644 --- a/specs/p/phpunit11/phpunit11.spec +++ b/specs/p/phpunit11/phpunit11.spec @@ -38,7 +38,7 @@ Name: %{pk_project}%{ver_major} Version: %{upstream_version}%{?upstream_prever:~%{upstream_prever}} -Release: 2%{?dist} +Release: 2%{?dist} Summary: The PHP Unit Testing framework version %{ver_major} License: BSD-3-Clause diff --git a/specs/p/phpunit12/phpunit12.spec b/specs/p/phpunit12/phpunit12.spec index d59f8791190..d0e413fb171 100644 --- a/specs/p/phpunit12/phpunit12.spec +++ b/specs/p/phpunit12/phpunit12.spec @@ -38,7 +38,7 @@ Name: %{pk_project}%{ver_major} Version: %{upstream_version}%{?upstream_prever:~%{upstream_prever}} -Release: 2%{?dist} +Release: 2%{?dist} Summary: The PHP Unit Testing framework version %{ver_major} License: BSD-3-Clause diff --git a/specs/p/phpunit13/phpunit13.spec b/specs/p/phpunit13/phpunit13.spec index c4d7c127788..7a99f5639d1 100644 --- a/specs/p/phpunit13/phpunit13.spec +++ b/specs/p/phpunit13/phpunit13.spec @@ -38,7 +38,7 @@ Name: %{pk_project}%{ver_major} Version: %{upstream_version}%{?upstream_prever:~%{upstream_prever}} -Release: 3%{?dist} +Release: 3%{?dist} Summary: The PHP Unit Testing framework version %{ver_major} License: BSD-3-Clause diff --git a/specs/p/phpunit8/phpunit8.spec b/specs/p/phpunit8/phpunit8.spec index f54090ef173..1ecc9c2843d 100644 --- a/specs/p/phpunit8/phpunit8.spec +++ b/specs/p/phpunit8/phpunit8.spec @@ -30,7 +30,7 @@ Name: %{pk_project}%{ver_major} Version: %{upstream_version}%{?upstream_prever:~%{upstream_prever}} -Release: 2%{?dist} +Release: 2%{?dist} Summary: The PHP Unit Testing framework version %{ver_major} License: BSD-3-Clause diff --git a/specs/p/phpunit9/phpunit9.spec b/specs/p/phpunit9/phpunit9.spec index 82b06cc6ab0..e939dbb2432 100644 --- a/specs/p/phpunit9/phpunit9.spec +++ b/specs/p/phpunit9/phpunit9.spec @@ -30,7 +30,7 @@ Name: %{pk_project}%{ver_major} Version: %{upstream_version}%{?upstream_prever:~%{upstream_prever}} -Release: 2%{?dist} +Release: 2%{?dist} Summary: The PHP Unit Testing framework version %{ver_major} License: BSD-3-Clause diff --git a/specs/p/picosat/picosat.spec b/specs/p/picosat/picosat.spec index 4361a85fe6e..96b048a13d6 100644 --- a/specs/p/picosat/picosat.spec +++ b/specs/p/picosat/picosat.spec @@ -3,7 +3,7 @@ Name: picosat Version: 965 -Release: 29%{?dist} +Release: 29%{?dist} Summary: A SAT solver License: MIT diff --git a/specs/p/pipewire-media-session/pipewire-media-session.spec b/specs/p/pipewire-media-session/pipewire-media-session.spec index f9d6e6001bf..a4aa877029c 100644 --- a/specs/p/pipewire-media-session/pipewire-media-session.spec +++ b/specs/p/pipewire-media-session/pipewire-media-session.spec @@ -4,7 +4,7 @@ Name: pipewire-media-session Summary: PipeWire reference session manager Version: 0.4.3 -Release: 2%{?dist} +Release: 2%{?dist} License: MIT URL: https://pipewire.org/ Source0: https://gitlab.freedesktop.org/pipewire/media-session/-/archive/%{version}/media-session-%{version}.tar.gz diff --git a/specs/p/pipewire/pipewire.spec b/specs/p/pipewire/pipewire.spec index 68de1242e01..681027c41cc 100644 --- a/specs/p/pipewire/pipewire.spec +++ b/specs/p/pipewire/pipewire.spec @@ -15,7 +15,7 @@ %global ms_version 0.4.2 # For rpmdev-bumpspec and releng automation -%global baserelease 1 +%global baserelease 10 #global snapdate 20210107 #global gitcommit b17db2cebc1a5ab2c01851d29c05f79cd2f262bb diff --git a/specs/p/pixman/pixman.spec b/specs/p/pixman/pixman.spec index 7f7f0b06e33..1b30317d6ee 100644 --- a/specs/p/pixman/pixman.spec +++ b/specs/p/pixman/pixman.spec @@ -6,7 +6,7 @@ Name: pixman Version: 0.46.2 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Pixel manipulation library # SPDX diff --git a/specs/p/pkcs11-helper/pkcs11-helper.spec b/specs/p/pkcs11-helper/pkcs11-helper.spec index edb47d3db64..e5bd8ff1859 100644 --- a/specs/p/pkcs11-helper/pkcs11-helper.spec +++ b/specs/p/pkcs11-helper/pkcs11-helper.spec @@ -3,7 +3,7 @@ Name: pkcs11-helper Version: 1.30.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: A library for using PKCS#11 providers License: GPL-2.0-only OR BSD-3-Clause diff --git a/specs/p/pkgconf/pkgconf.spec b/specs/p/pkgconf/pkgconf.spec index 946cdd20c2a..0c77705ca87 100644 --- a/specs/p/pkgconf/pkgconf.spec +++ b/specs/p/pkgconf/pkgconf.spec @@ -26,7 +26,7 @@ Name: pkgconf Version: 2.3.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Package compiler and linker metadata toolkit # cli/getopt_long.c, libpkgconf/bsdstubs.c, libpkgconf/pkg.c and tests/* are ISC diff --git a/specs/p/plasma-keyboard/plasma-keyboard.spec b/specs/p/plasma-keyboard/plasma-keyboard.spec index 305eb2ba56a..80f3b7a1fdd 100644 --- a/specs/p/plasma-keyboard/plasma-keyboard.spec +++ b/specs/p/plasma-keyboard/plasma-keyboard.spec @@ -4,7 +4,7 @@ Name: plasma-keyboard Epoch: 1 Version: 6.6.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Virtual Keyboard for Qt based desktops License: LGPL-2.1-only AND GPL-2.0-only AND CC0-1.0 AND LGPL-3.0-only AND GPL-3.0-or-later AND GPL-2.0-or-later AND GPL-3.0-only diff --git a/specs/p/plasma-login-manager/plasma-login-manager.spec b/specs/p/plasma-login-manager/plasma-login-manager.spec index 9325df6b806..d8995867dea 100644 --- a/specs/p/plasma-login-manager/plasma-login-manager.spec +++ b/specs/p/plasma-login-manager/plasma-login-manager.spec @@ -12,7 +12,7 @@ Name: plasma-login-manager Version: 6.6.0 -Release: 2%{?dist} +Release: 2%{?dist} License: BSD-3-Clause and CC0-1.0 and (GPL-2.0-only or GPL-3.0-only) and GPL-2.0-or-later and LGPL-2.0-or-later and LGPL-2.1-or-later Summary: QML based login manager from KDE diff --git a/specs/p/plexus-i18n/plexus-i18n.spec b/specs/p/plexus-i18n/plexus-i18n.spec index 247c0cd9041..4d531c5c555 100644 --- a/specs/p/plexus-i18n/plexus-i18n.spec +++ b/specs/p/plexus-i18n/plexus-i18n.spec @@ -3,7 +3,7 @@ Name: plexus-i18n Version: 1.0 -Release: 0.36.b10.4%{?dist} +Release: 0.39.b10.4%{?dist} Summary: Plexus I18N Component # Automatically converted from old format: ASL 2.0 - review is highly recommended. License: Apache-2.0 diff --git a/specs/p/plexus-velocity/plexus-velocity.spec b/specs/p/plexus-velocity/plexus-velocity.spec index dec448b0107..60af0dabb35 100644 --- a/specs/p/plexus-velocity/plexus-velocity.spec +++ b/specs/p/plexus-velocity/plexus-velocity.spec @@ -3,7 +3,7 @@ Name: plexus-velocity Version: 2.2.1 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Plexus Velocity Component # Automatically converted from old format: ASL 2.0 - review is highly recommended. License: Apache-2.0 diff --git a/specs/p/plotutils/plotutils.spec b/specs/p/plotutils/plotutils.spec index cf24b42c26e..a50ea2a6288 100644 --- a/specs/p/plotutils/plotutils.spec +++ b/specs/p/plotutils/plotutils.spec @@ -3,7 +3,7 @@ Name: plotutils Version: 2.6 -Release: 39%{?dist} +Release: 39%{?dist} Summary: GNU vector and raster graphics utilities and libraries # libxmi is GPLv2+ diff --git a/specs/p/pmix/pmix.spec b/specs/p/pmix/pmix.spec index a941cea94d2..8b86cf0664f 100644 --- a/specs/p/pmix/pmix.spec +++ b/specs/p/pmix/pmix.spec @@ -3,7 +3,7 @@ Name: pmix Version: 5.0.7 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Process Management Interface Exascale (PMIx) License: BSD-3-Clause URL: https://pmix.org/ diff --git a/specs/p/pocketfft/pocketfft.spec b/specs/p/pocketfft/pocketfft.spec index f4c50384e70..bb363c77b26 100644 --- a/specs/p/pocketfft/pocketfft.spec +++ b/specs/p/pocketfft/pocketfft.spec @@ -9,7 +9,7 @@ Summary: C++ header for FFT Name: pocketfft License: BSD-3-Clause Version: 1.0^git%{date0}.%{shortcommit0} -Release: 8%{?dist} +Release: 8%{?dist} # Only a header BuildArch: noarch diff --git a/specs/p/polkit-pkla-compat/polkit-pkla-compat.spec b/specs/p/polkit-pkla-compat/polkit-pkla-compat.spec index 231777735ef..b8c576b1e46 100644 --- a/specs/p/polkit-pkla-compat/polkit-pkla-compat.spec +++ b/specs/p/polkit-pkla-compat/polkit-pkla-compat.spec @@ -3,7 +3,7 @@ Name: polkit-pkla-compat Version: 0.1 -Release: 32%{?dist} +Release: 32%{?dist} Summary: Rules for polkit to add compatibility with pklocalauthority # GPLv2-licensed ltmain.sh and Apache-licensed mocklibc are not shipped in # the binary package. diff --git a/specs/p/polkit-qt-1/polkit-qt-1.spec b/specs/p/polkit-qt-1/polkit-qt-1.spec index a9d631bb459..8d124edcea5 100644 --- a/specs/p/polkit-qt-1/polkit-qt-1.spec +++ b/specs/p/polkit-qt-1/polkit-qt-1.spec @@ -3,7 +3,7 @@ Name: polkit-qt-1 Version: 0.200.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Qt bindings for PolicyKit License: BSD-3-Clause AND GPL-2.0-or-later AND LGPL-2.0-or-later diff --git a/specs/p/polylabel/polylabel.spec b/specs/p/polylabel/polylabel.spec index 450a1295c4a..14eeb243de3 100644 --- a/specs/p/polylabel/polylabel.spec +++ b/specs/p/polylabel/polylabel.spec @@ -10,7 +10,7 @@ Name: polylabel Version: 2.0.1 -Release: 5%{?dist} +Release: 5%{?dist} Summary: A fast algorithm for finding the pole of inaccessibility of a polygon License: ISC diff --git a/specs/p/poppler-data/poppler-data.spec b/specs/p/poppler-data/poppler-data.spec index b908b4d46e5..207c32cc205 100644 --- a/specs/p/poppler-data/poppler-data.spec +++ b/specs/p/poppler-data/poppler-data.spec @@ -6,7 +6,7 @@ Name: poppler-data Summary: Encoding files for use with poppler Version: 0.4.11 -Release: 11%{?dist} +Release: 11%{?dist} # NOTE: The licensing details are explained in COPYING file in source archive. # Makefile is HPND-sell-variant but is not included in binary package diff --git a/specs/p/popt/popt.spec b/specs/p/popt/popt.spec index 8f4aff902ef..46af6d1b71c 100644 --- a/specs/p/popt/popt.spec +++ b/specs/p/popt/popt.spec @@ -9,7 +9,7 @@ Summary: C library for parsing command line parameters Name: popt Version: %{ver}%{?snap:~%{snap}} -Release: 10%{?dist} +Release: 10%{?dist} # COPYING: MIT text # po/eo.po: LicenseRef-Fedora-Public-Domain # po/fi.po: MIT AND LicenseRef-Fedora-Public-Domain diff --git a/specs/p/postgresql18-decoderbufs/postgresql18-decoderbufs.spec b/specs/p/postgresql18-decoderbufs/postgresql18-decoderbufs.spec index 1d00dcf95bc..a7988a0a09e 100644 --- a/specs/p/postgresql18-decoderbufs/postgresql18-decoderbufs.spec +++ b/specs/p/postgresql18-decoderbufs/postgresql18-decoderbufs.spec @@ -9,7 +9,7 @@ Name: postgresql%{pgversion}-decoderbufs Version: 3.2.0 -Release: 2%{?pre:.%pre}%{?dist} +Release: 5%{?pre:.%pre}%{?dist} Summary: PostgreSQL Protocol Buffers logical decoder plugin License: MIT diff --git a/specs/p/postgresql18-pg_repack/postgresql18-pg_repack.spec b/specs/p/postgresql18-pg_repack/postgresql18-pg_repack.spec index c092b08fd36..59a1b89dc8d 100644 --- a/specs/p/postgresql18-pg_repack/postgresql18-pg_repack.spec +++ b/specs/p/postgresql18-pg_repack/postgresql18-pg_repack.spec @@ -7,7 +7,7 @@ %global pgversion 18 Name: postgresql%{pgversion}-%{majorname} Version: 1.5.2 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Reorganize tables in PostgreSQL databases without any locks License: BSD-3-Clause diff --git a/specs/p/postgresql18-pgaudit/postgresql18-pgaudit.spec b/specs/p/postgresql18-pgaudit/postgresql18-pgaudit.spec index d1cbd59ca93..6eb9c38b8d3 100644 --- a/specs/p/postgresql18-pgaudit/postgresql18-pgaudit.spec +++ b/specs/p/postgresql18-pgaudit/postgresql18-pgaudit.spec @@ -7,7 +7,7 @@ %global pgversion 18 Name: postgresql%{pgversion}-%{majorname} Version: 18.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: PostgreSQL Audit Extension License: PostgreSQL diff --git a/specs/p/postgresql18-pgvector/postgresql18-pgvector.spec b/specs/p/postgresql18-pgvector/postgresql18-pgvector.spec index febe35f1ded..bed2105999b 100644 --- a/specs/p/postgresql18-pgvector/postgresql18-pgvector.spec +++ b/specs/p/postgresql18-pgvector/postgresql18-pgvector.spec @@ -15,7 +15,7 @@ Name: postgresql%{pgversion}-%{sname} Version: 0.8.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Open-source vector similarity search for Postgres License: PostgreSQL URL: https://github.com/%{sname}/%{sname}/ diff --git a/specs/p/postgresql18-postgis/postgresql18-postgis.spec b/specs/p/postgresql18-postgis/postgresql18-postgis.spec index 92471fe9147..97d62d879a5 100644 --- a/specs/p/postgresql18-postgis/postgresql18-postgis.spec +++ b/specs/p/postgresql18-postgis/postgresql18-postgis.spec @@ -23,7 +23,7 @@ Name: postgresql%{pgversion}-postgis Version: 3.6.2 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Geographic Information Systems Extensions to PostgreSQL License: GPL-2.0-or-later diff --git a/specs/p/potrace/potrace.spec b/specs/p/potrace/potrace.spec index 45ffc097ac2..e36a9029c8d 100644 --- a/specs/p/potrace/potrace.spec +++ b/specs/p/potrace/potrace.spec @@ -3,7 +3,7 @@ Name: potrace Version: 1.16 -Release: 16%{?dist} +Release: 16%{?dist} Summary: Transform bitmaps into vector graphics # README defines license as GPLv2+ # potrace/potrace-1.16/src/getopt.c is LGPL-2.0-or-later diff --git a/specs/p/powertop/powertop.spec b/specs/p/powertop/powertop.spec index 862bfdfd120..10e05f74ccf 100644 --- a/specs/p/powertop/powertop.spec +++ b/specs/p/powertop/powertop.spec @@ -3,7 +3,7 @@ Name: powertop Version: 2.15 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Power consumption monitor License: gpl-2.0-only AND lgpl-2.1-only AND isc diff --git a/specs/p/pps-tools/pps-tools.spec b/specs/p/pps-tools/pps-tools.spec index 155994c4024..b3283b77a7c 100644 --- a/specs/p/pps-tools/pps-tools.spec +++ b/specs/p/pps-tools/pps-tools.spec @@ -3,7 +3,7 @@ Name: pps-tools Version: 1.0.3 -Release: 12%{?dist} +Release: 12%{?dist} Summary: LinuxPPS user-space tools License: GPL-2.0-or-later diff --git a/specs/p/pptp/pptp.spec b/specs/p/pptp/pptp.spec index c6f5cf6ed4c..b7d43c8e68b 100644 --- a/specs/p/pptp/pptp.spec +++ b/specs/p/pptp/pptp.spec @@ -3,7 +3,7 @@ Name: pptp Version: 1.10.0 -Release: 24%{?dist} +Release: 24%{?dist} Summary: Point-to-Point Tunneling Protocol (PPTP) Client License: gpl-2.0-or-later URL: http://pptpclient.sourceforge.net/ diff --git a/specs/p/priv_wrapper/priv_wrapper.spec b/specs/p/priv_wrapper/priv_wrapper.spec index 1130ccca72a..e0421dbb61f 100644 --- a/specs/p/priv_wrapper/priv_wrapper.spec +++ b/specs/p/priv_wrapper/priv_wrapper.spec @@ -3,7 +3,7 @@ Name: priv_wrapper Version: 1.0.1 -Release: 11%{?dist} +Release: 11%{?dist} Summary: A library to disable resource limits and other privilege dropping License: GPL-3.0-or-later diff --git a/specs/p/procps-ng/procps-ng.spec b/specs/p/procps-ng/procps-ng.spec index 2ce73688755..c3202fb402b 100644 --- a/specs/p/procps-ng/procps-ng.spec +++ b/specs/p/procps-ng/procps-ng.spec @@ -7,7 +7,7 @@ Summary: System and process monitoring utilities Name: procps-ng Version: 4.0.4 -Release: 7%{?dist}.1 +Release: 10%{?dist}.1 License: GPL-2.0-or-later AND LGPL-2.0-or-later AND LGPL-2.1-or-later URL: https://sourceforge.net/projects/procps-ng/ diff --git a/specs/p/proj/proj.spec b/specs/p/proj/proj.spec index 897b920899d..d6794f08561 100644 --- a/specs/p/proj/proj.spec +++ b/specs/p/proj/proj.spec @@ -14,7 +14,7 @@ Name: proj # Also check whether there is a new proj-data release when upgrading! Version: 9.6.2 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Cartographic projection software (PROJ) License: MIT diff --git a/specs/p/protobuf/protobuf.spec b/specs/p/protobuf/protobuf.spec index cc1869772c0..515ba8d4805 100644 --- a/specs/p/protobuf/protobuf.spec +++ b/specs/p/protobuf/protobuf.spec @@ -28,7 +28,7 @@ Name: protobuf # “patch” updates of protobuf. Version: 3.19.6 %global so_version 30 -Release: 20%{?dist} +Release: 20%{?dist} # The entire source is BSD-3-Clause, except the following files, which belong # to the build system; are unpackaged maintainer utility scripts; or are used diff --git a/specs/p/ps_mem/ps_mem.spec b/specs/p/ps_mem/ps_mem.spec index 43dfeaa3408..a9479dfd71a 100644 --- a/specs/p/ps_mem/ps_mem.spec +++ b/specs/p/ps_mem/ps_mem.spec @@ -4,7 +4,7 @@ Name: ps_mem Version: 3.14 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Memory profiling tool License: LGPL-2.1-only URL: https://github.com/pixelb/ps_mem diff --git a/specs/p/psimd/psimd.spec b/specs/p/psimd/psimd.spec index 45ad4240c83..823508c4503 100644 --- a/specs/p/psimd/psimd.spec +++ b/specs/p/psimd/psimd.spec @@ -11,7 +11,7 @@ Summary: P(ortable) SIMD Name: psimd License: MIT Version: %{date0}.%{shortcommit0} -Release: 9%{?dist} +Release: 9%{?dist} URL: https://github.com/Maratyszcza Source0: %{url}/%{name}/archive/%{commit0}/%{name}-%{shortcommit0}.tar.gz diff --git a/specs/p/psutils/psutils.spec b/specs/p/psutils/psutils.spec index bdf7cd0c4de..cb21aed795e 100644 --- a/specs/p/psutils/psutils.spec +++ b/specs/p/psutils/psutils.spec @@ -9,7 +9,7 @@ Name: psutils Version: 2.10 -Release: 10%{?dist} +Release: 10%{?dist} Summary: PostScript utilities # COPYING: GPLv3 text # epsffit.1: GPLv3+ diff --git a/specs/p/pthreadpool/pthreadpool.spec b/specs/p/pthreadpool/pthreadpool.spec index 45e50f48f97..301a03ee620 100644 --- a/specs/p/pthreadpool/pthreadpool.spec +++ b/specs/p/pthreadpool/pthreadpool.spec @@ -9,7 +9,7 @@ Summary: Portable thread pool Name: pthreadpool License: BSD-2-Clause Version: 0.0^git%{date0}.%{shortcommit0} -Release: 8%{?dist} +Release: 8%{?dist} URL: https://github.com/Maratyszcza/%{name} Source0: %{url}/archive/%{commit0}/%{name}-%{shortcommit0}.tar.gz diff --git a/specs/p/pugixml/pugixml.spec b/specs/p/pugixml/pugixml.spec index 902bf495c4e..ce3afb1fddf 100644 --- a/specs/p/pugixml/pugixml.spec +++ b/specs/p/pugixml/pugixml.spec @@ -5,7 +5,7 @@ Name: pugixml Version: 1.15 -Release: 2%{?dist} +Release: 2%{?dist} Summary: A light-weight C++ XML processing library License: MIT URL: https://pugixml.org/ diff --git a/specs/p/pulseaudio/pulseaudio.spec b/specs/p/pulseaudio/pulseaudio.spec index b517c2a6778..5c3b1b01480 100644 --- a/specs/p/pulseaudio/pulseaudio.spec +++ b/specs/p/pulseaudio/pulseaudio.spec @@ -40,7 +40,7 @@ Name: pulseaudio Summary: Improved Linux Sound Server Version: %{pa_major}%{?pa_minor:.%{pa_minor}} -Release: %[9 + %{azl_release}]%{?snap:.%{snap}git%{shortcommit}}%{?dist} +Release: %[15 + %{azl_release}]%{?snap:.%{snap}git%{shortcommit}}%{?dist} License: LGPL-2.1-or-later URL: http://www.freedesktop.org/wiki/Software/PulseAudio %if 0%{?gitrel} diff --git a/specs/p/pydot/pydot.spec b/specs/p/pydot/pydot.spec index 1fb7e0c7454..e08a1b146f9 100644 --- a/specs/p/pydot/pydot.spec +++ b/specs/p/pydot/pydot.spec @@ -11,7 +11,7 @@ tools dot, neato, twopi. Name: pydot Version: 4.0.1 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Python interface to Graphviz's Dot language License: MIT URL: https://github.com/pydot/pydot diff --git a/specs/p/pyflakes/pyflakes.spec b/specs/p/pyflakes/pyflakes.spec index 8e38f1ca250..4f72784ae54 100644 --- a/specs/p/pyflakes/pyflakes.spec +++ b/specs/p/pyflakes/pyflakes.spec @@ -11,7 +11,7 @@ check on style.} Name: pyflakes # WARNING: When updating pyflakes, check not to break flake8! Version: 3.1.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: A simple program which checks Python source files for errors License: MIT diff --git a/specs/p/pyicu/pyicu.spec b/specs/p/pyicu/pyicu.spec index c6068be991f..233b672b592 100644 --- a/specs/p/pyicu/pyicu.spec +++ b/specs/p/pyicu/pyicu.spec @@ -4,7 +4,7 @@ %define realname PyICU Name: pyicu Version: 2.14 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Python extension wrapping the ICU C++ libraries License: MIT diff --git a/specs/p/pykickstart/pykickstart.spec b/specs/p/pykickstart/pykickstart.spec index 5db8da4847f..d681ce4ac4b 100644 --- a/specs/p/pykickstart/pykickstart.spec +++ b/specs/p/pykickstart/pykickstart.spec @@ -8,7 +8,7 @@ Name: pykickstart Version: 3.66 -Release: 6%{?dist} +Release: 6%{?dist} License: GPL-2.0-only Summary: Python utilities for manipulating kickstart files. Url: http://fedoraproject.org/wiki/pykickstart diff --git a/specs/p/pyodbc/pyodbc.spec b/specs/p/pyodbc/pyodbc.spec index b164f3585f0..f0d4a00975c 100644 --- a/specs/p/pyodbc/pyodbc.spec +++ b/specs/p/pyodbc/pyodbc.spec @@ -3,7 +3,7 @@ Name: pyodbc Version: 5.1.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Python DB API 2.0 Module for ODBC License: MIT-0 URL: https://github.com/mkleehammer/pyodbc diff --git a/specs/p/pyparted/pyparted.spec b/specs/p/pyparted/pyparted.spec index 0e9a8444205..452d2f2a770 100644 --- a/specs/p/pyparted/pyparted.spec +++ b/specs/p/pyparted/pyparted.spec @@ -5,7 +5,7 @@ Summary: Python module for GNU parted Name: pyparted Epoch: 1 Version: 3.13.0 -Release: 14%{?dist} +Release: 14%{?dist} License: GPL-2.0-or-later URL: https://github.com/dcantrell/pyparted diff --git a/specs/p/pyproj/pyproj.spec b/specs/p/pyproj/pyproj.spec index 15e20dbb354..15d7c153b72 100644 --- a/specs/p/pyproj/pyproj.spec +++ b/specs/p/pyproj/pyproj.spec @@ -10,7 +10,7 @@ Name: pyproj Version: 3.7.2 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Cython wrapper to provide python interfaces to Proj # this software uses the "MIT:Modern Style with sublicense" license License: MIT diff --git a/specs/p/pyproject-rpm-macros/pyproject-rpm-macros.spec b/specs/p/pyproject-rpm-macros/pyproject-rpm-macros.spec index 5f558f45963..1c52ef195d6 100644 --- a/specs/p/pyproject-rpm-macros/pyproject-rpm-macros.spec +++ b/specs/p/pyproject-rpm-macros/pyproject-rpm-macros.spec @@ -18,7 +18,7 @@ License: MIT # Increment Z when this is a bugfix or a cosmetic change # Dropping support for EOL Fedoras is *not* considered a breaking change Version: 1.18.6 -Release: 3%{?dist} +Release: 3%{?dist} # Macro files Source001: macros.pyproject diff --git a/specs/p/python-Bottleneck/python-Bottleneck.spec b/specs/p/python-Bottleneck/python-Bottleneck.spec index 6642a92e414..ddde5a2e6fa 100644 --- a/specs/p/python-Bottleneck/python-Bottleneck.spec +++ b/specs/p/python-Bottleneck/python-Bottleneck.spec @@ -7,7 +7,7 @@ Name: python-Bottleneck Version: 1.6.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Collection of fast NumPy array functions written in Cython License: BSD-2-Clause diff --git a/specs/p/python-CacheControl/python-CacheControl.spec b/specs/p/python-CacheControl/python-CacheControl.spec index 5e2e0aa185b..d7b2b389f4f 100644 --- a/specs/p/python-CacheControl/python-CacheControl.spec +++ b/specs/p/python-CacheControl/python-CacheControl.spec @@ -13,7 +13,7 @@ true of requests in terms of caching.} Name: python-%{pypi_name} Summary: httplib2 caching for requests Version: 0.14.3 -Release: 6%{?dist} +Release: 6%{?dist} License: MIT URL: https://github.com/ionrock/cachecontrol diff --git a/specs/p/python-CommonMark/python-CommonMark.spec b/specs/p/python-CommonMark/python-CommonMark.spec index af79dfb4064..a1d5cb228d2 100644 --- a/specs/p/python-CommonMark/python-CommonMark.spec +++ b/specs/p/python-CommonMark/python-CommonMark.spec @@ -15,7 +15,7 @@ so far seems to work (all tests pass on 2.7, 3.3, and 3.4). Name: python-%{pypi_name} Version: 0.9.1 -Release: 25%{?dist} +Release: 25%{?dist} Summary: Python parser for the CommonMark Markdown spec # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/p/python-PyMySQL/python-PyMySQL.spec b/specs/p/python-PyMySQL/python-PyMySQL.spec index 8d80cc1da6b..70759750053 100644 --- a/specs/p/python-PyMySQL/python-PyMySQL.spec +++ b/specs/p/python-PyMySQL/python-PyMySQL.spec @@ -3,7 +3,7 @@ Name: python-PyMySQL Version: 1.1.2 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Pure-Python MySQL client library License: MIT diff --git a/specs/p/python-WSGIProxy2/python-WSGIProxy2.spec b/specs/p/python-WSGIProxy2/python-WSGIProxy2.spec index 89647c6a084..4a9fa77e8b2 100644 --- a/specs/p/python-WSGIProxy2/python-WSGIProxy2.spec +++ b/specs/p/python-WSGIProxy2/python-WSGIProxy2.spec @@ -6,7 +6,7 @@ Name: python-%{pypi_name} Version: 0.4.6 -Release: 25%{?dist} +Release: 25%{?dist} Summary: WSGI Proxy that supports several HTTP backends License: MIT diff --git a/specs/p/python-aiodns/python-aiodns.spec b/specs/p/python-aiodns/python-aiodns.spec index 0c9b3ba77b8..9cf3164463c 100644 --- a/specs/p/python-aiodns/python-aiodns.spec +++ b/specs/p/python-aiodns/python-aiodns.spec @@ -7,7 +7,7 @@ Name: python-aiodns Version: 3.6.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Simple DNS resolver for asyncio License: MIT diff --git a/specs/p/python-aiomysql/python-aiomysql.spec b/specs/p/python-aiomysql/python-aiomysql.spec index 9cdedd27f59..e32cd23a8c7 100644 --- a/specs/p/python-aiomysql/python-aiomysql.spec +++ b/specs/p/python-aiomysql/python-aiomysql.spec @@ -3,7 +3,7 @@ Name: python-aiomysql Version: 0.2.0 -Release: 11%{?dist} +Release: 11%{?dist} Summary: MySQL driver for asyncio License: MIT diff --git a/specs/p/python-aioodbc/python-aioodbc.spec b/specs/p/python-aioodbc/python-aioodbc.spec index 4728e7cf993..5dcabb862b2 100644 --- a/specs/p/python-aioodbc/python-aioodbc.spec +++ b/specs/p/python-aioodbc/python-aioodbc.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 0.4.0 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Library for accessing a ODBC databases from the asyncio License: Apache-2.0 diff --git a/specs/p/python-aioresponses/python-aioresponses.spec b/specs/p/python-aioresponses/python-aioresponses.spec index 4742b25db3b..3ca92220911 100644 --- a/specs/p/python-aioresponses/python-aioresponses.spec +++ b/specs/p/python-aioresponses/python-aioresponses.spec @@ -8,7 +8,7 @@ easy way to test asynchronous HTTP requests. Name: python-%{srcname} Version: 0.7.8 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Mock out requests made by ClientSession from aiohttp package License: MIT diff --git a/specs/p/python-aiosqlite/python-aiosqlite.spec b/specs/p/python-aiosqlite/python-aiosqlite.spec index 603c87865f4..64f1237bb68 100644 --- a/specs/p/python-aiosqlite/python-aiosqlite.spec +++ b/specs/p/python-aiosqlite/python-aiosqlite.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 0.22.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Asyncio bridge to the standard SQLite3 module License: MIT diff --git a/specs/p/python-aiounittest/python-aiounittest.spec b/specs/p/python-aiounittest/python-aiounittest.spec index b91265ed4c7..3d0d83cc8c8 100644 --- a/specs/p/python-aiounittest/python-aiounittest.spec +++ b/specs/p/python-aiounittest/python-aiounittest.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 1.5.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Test asyncio code more easily License: MIT diff --git a/specs/p/python-annotated-types/python-annotated-types.spec b/specs/p/python-annotated-types/python-annotated-types.spec index 26d1decd15c..0ec5e50d94b 100644 --- a/specs/p/python-annotated-types/python-annotated-types.spec +++ b/specs/p/python-annotated-types/python-annotated-types.spec @@ -10,7 +10,7 @@ Name: python-annotated-types Version: 0.7.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Reusable constraint types to use with typing.Annotated License: MIT diff --git a/specs/p/python-anyio/python-anyio.spec b/specs/p/python-anyio/python-anyio.spec index d6253125df6..4cf6f3822f2 100644 --- a/specs/p/python-anyio/python-anyio.spec +++ b/specs/p/python-anyio/python-anyio.spec @@ -10,7 +10,7 @@ on top of asyncio, and works in harmony with the native SC of trio itself.} Name: python-%{srcname} Version: 4.12.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Compatibility layer for multiple asynchronous event loop implementations License: MIT URL: https://github.com/agronholm/anyio diff --git a/specs/p/python-aodhclient/python-aodhclient.spec b/specs/p/python-aodhclient/python-aodhclient.spec index 99bbcf573f3..5bded7a3444 100644 --- a/specs/p/python-aodhclient/python-aodhclient.spec +++ b/specs/p/python-aodhclient/python-aodhclient.spec @@ -20,7 +20,7 @@ provides a Python API (the aodhclient module) and a command-line tool. Name: python-aodhclient Version: 3.6.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Python API and CLI for OpenStack Aodh License: Apache-2.0 diff --git a/specs/p/python-asciitree/python-asciitree.spec b/specs/p/python-asciitree/python-asciitree.spec index 45f37190b9c..35c893ec7da 100644 --- a/specs/p/python-asciitree/python-asciitree.spec +++ b/specs/p/python-asciitree/python-asciitree.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 0.3.3 -Release: 37%{?dist} +Release: 37%{?dist} Summary: Draws ASCII trees License: MIT diff --git a/specs/p/python-asn1crypto/python-asn1crypto.spec b/specs/p/python-asn1crypto/python-asn1crypto.spec index e858e47a82e..c677e612aed 100644 --- a/specs/p/python-asn1crypto/python-asn1crypto.spec +++ b/specs/p/python-asn1crypto/python-asn1crypto.spec @@ -8,7 +8,7 @@ Name: python-%{pypi_name} Version: 1.5.1 -Release: 17%{?dist} +Release: 17%{?dist} Summary: Fast Python ASN.1 parser and serializer License: MIT diff --git a/specs/p/python-asyncssh/python-asyncssh.spec b/specs/p/python-asyncssh/python-asyncssh.spec index 4705d6e7195..a8395e3b110 100644 --- a/specs/p/python-asyncssh/python-asyncssh.spec +++ b/specs/p/python-asyncssh/python-asyncssh.spec @@ -9,7 +9,7 @@ SFTP, SCP, forwarding, session multiplexing over a connection and more. Name: python-%{srcname} Version: 2.21.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Asynchronous SSH for Python # Automatically converted from old format: EPL-2.0 or GPLv2+ - review is highly recommended. diff --git a/specs/p/python-atpublic/python-atpublic.spec b/specs/p/python-atpublic/python-atpublic.spec index 2dd01c07c59..71ef38c082f 100644 --- a/specs/p/python-atpublic/python-atpublic.spec +++ b/specs/p/python-atpublic/python-atpublic.spec @@ -12,7 +12,7 @@ Python 3.6. Name: python-atpublic Version: 4.1.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Decorator for populating a Python module's __all__ License: Apache-2.0 diff --git a/specs/p/python-augeas/python-augeas.spec b/specs/p/python-augeas/python-augeas.spec index 6a8221d6fad..d1dc2f7541a 100644 --- a/specs/p/python-augeas/python-augeas.spec +++ b/specs/p/python-augeas/python-augeas.spec @@ -3,7 +3,7 @@ Name: python-augeas Version: 1.2.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Python bindings to augeas License: LGPL-2.1-or-later URL: http://augeas.net/ diff --git a/specs/p/python-autopage/python-autopage.spec b/specs/p/python-autopage/python-autopage.spec index e06035fe052..90f8b858c57 100644 --- a/specs/p/python-autopage/python-autopage.spec +++ b/specs/p/python-autopage/python-autopage.spec @@ -20,7 +20,7 @@ Name: python-%{srcname} Version: 0.5.2 -Release: 13%{?dist} +Release: 13%{?dist} Summary: A Python library to provide automatic paging for console output # Automatically converted from old format: ASL 2.0 - review is highly recommended. License: Apache-2.0 diff --git a/specs/p/python-azure-devtools/python-azure-devtools.spec b/specs/p/python-azure-devtools/python-azure-devtools.spec index 80d80835220..3cc16830f1b 100644 --- a/specs/p/python-azure-devtools/python-azure-devtools.spec +++ b/specs/p/python-azure-devtools/python-azure-devtools.spec @@ -10,7 +10,7 @@ Name: python-%{srcname} Version: %{short_version}~git.4.%{shortcommit} -Release: 16%{?dist} +Release: 16%{?dist} Summary: Microsoft Azure Development Tools for SDK License: MIT and Apache-2.0 URL: https://github.com/Azure/azure-sdk-for-python/ diff --git a/specs/p/python-azure-functions-devops-build/python-azure-functions-devops-build.spec b/specs/p/python-azure-functions-devops-build/python-azure-functions-devops-build.spec index 40d09610bd0..8c1e8e4564f 100644 --- a/specs/p/python-azure-functions-devops-build/python-azure-functions-devops-build.spec +++ b/specs/p/python-azure-functions-devops-build/python-azure-functions-devops-build.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 0.0.22 -Release: 19%{?dist} +Release: 19%{?dist} Summary: Python package for integrating Azure Functions with Azure DevOps License: MIT URL: https://pypi.org/project/%{srcname}/ diff --git a/specs/p/python-azure-keyvault-certificates/python-azure-keyvault-certificates.spec b/specs/p/python-azure-keyvault-certificates/python-azure-keyvault-certificates.spec index e2fd50bfb44..a966dc4331e 100644 --- a/specs/p/python-azure-keyvault-certificates/python-azure-keyvault-certificates.spec +++ b/specs/p/python-azure-keyvault-certificates/python-azure-keyvault-certificates.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 4.7.0 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Microsoft Azure Key Vault Certificates Client Library for Python License: MIT URL: https://pypi.org/project/%{srcname}/ diff --git a/specs/p/python-azure-keyvault-secrets/python-azure-keyvault-secrets.spec b/specs/p/python-azure-keyvault-secrets/python-azure-keyvault-secrets.spec index 1c6aee2d81f..d7ed5cec131 100644 --- a/specs/p/python-azure-keyvault-secrets/python-azure-keyvault-secrets.spec +++ b/specs/p/python-azure-keyvault-secrets/python-azure-keyvault-secrets.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 4.7.0 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Microsoft Azure Key Vault Secrets Client Library for Python License: MIT URL: https://pypi.org/project/%{srcname}/ diff --git a/specs/p/python-azure-mgmt-managedservices/python-azure-mgmt-managedservices.spec b/specs/p/python-azure-mgmt-managedservices/python-azure-mgmt-managedservices.spec index 929e854cb90..12c908217f1 100644 --- a/specs/p/python-azure-mgmt-managedservices/python-azure-mgmt-managedservices.spec +++ b/specs/p/python-azure-mgmt-managedservices/python-azure-mgmt-managedservices.spec @@ -12,7 +12,7 @@ Name: python-%{srcname} Version: 1.0.0 -Release: 20%{?dist} +Release: 20%{?dist} Summary: Microsoft Azure Managed Services Client Library for Python License: MIT URL: https://pypi.org/project/%{srcname}/ diff --git a/specs/p/python-azure-mgmt-quota/python-azure-mgmt-quota.spec b/specs/p/python-azure-mgmt-quota/python-azure-mgmt-quota.spec index a108f79751c..29428ff784d 100644 --- a/specs/p/python-azure-mgmt-quota/python-azure-mgmt-quota.spec +++ b/specs/p/python-azure-mgmt-quota/python-azure-mgmt-quota.spec @@ -6,7 +6,7 @@ Name: python-%{srcname} Version: 1.0.0~b2 -Release: 15%{?dist} +Release: 15%{?dist} Summary: Microsoft Azure Quota Management Client Library for Python License: MIT URL: https://pypi.org/project/%{srcname}/ diff --git a/specs/p/python-azure-mgmt-support/python-azure-mgmt-support.spec b/specs/p/python-azure-mgmt-support/python-azure-mgmt-support.spec index 0a5699ae14a..f87d2d7aea7 100644 --- a/specs/p/python-azure-mgmt-support/python-azure-mgmt-support.spec +++ b/specs/p/python-azure-mgmt-support/python-azure-mgmt-support.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 6.0.0 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Microsoft Azure Support Management Client Library for Python License: MIT URL: https://pypi.org/project/%{srcname}/ diff --git a/specs/p/python-azure-sdk-tools/python-azure-sdk-tools.spec b/specs/p/python-azure-sdk-tools/python-azure-sdk-tools.spec index 9044dd9b24b..93795b58600 100644 --- a/specs/p/python-azure-sdk-tools/python-azure-sdk-tools.spec +++ b/specs/p/python-azure-sdk-tools/python-azure-sdk-tools.spec @@ -10,7 +10,7 @@ Name: python-%{srcname} Version: %{short_version}~git.4.%{shortcommit} -Release: 17%{?dist} +Release: 17%{?dist} Summary: Specific tools for Azure SDK for Python testing License: MIT and Apache-2.0 URL: https://github.com/Azure/azure-sdk-for-python/ diff --git a/specs/p/python-backoff/python-backoff.spec b/specs/p/python-backoff/python-backoff.spec index 5daf56d1b5a..18c61aef670 100644 --- a/specs/p/python-backoff/python-backoff.spec +++ b/specs/p/python-backoff/python-backoff.spec @@ -11,7 +11,7 @@ polling resources for externally generated content. Name: python-%{srcname} Version: 2.2.1 -Release: 14%{?dist} +Release: 14%{?dist} BuildArch: noarch License: MIT diff --git a/specs/p/python-beautifulsoup4/python-beautifulsoup4.spec b/specs/p/python-beautifulsoup4/python-beautifulsoup4.spec index 725ee6dd95a..e5f30f2b1aa 100644 --- a/specs/p/python-beautifulsoup4/python-beautifulsoup4.spec +++ b/specs/p/python-beautifulsoup4/python-beautifulsoup4.spec @@ -12,7 +12,7 @@ Name: python-beautifulsoup4 Version: 4.14.3 -Release: 2%{?dist} +Release: 2%{?dist} Summary: HTML/XML parser for quick-turnaround applications like screen-scraping License: MIT URL: http://www.crummy.com/software/BeautifulSoup/ diff --git a/specs/p/python-betamax/python-betamax.spec b/specs/p/python-betamax/python-betamax.spec index 3e9ce7eb226..8e3311f5534 100644 --- a/specs/p/python-betamax/python-betamax.spec +++ b/specs/p/python-betamax/python-betamax.spec @@ -9,7 +9,7 @@ Name: python-%{srcname} Version: 0.9.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: VCR imitation for python-requests License: Apache-2.0 diff --git a/specs/p/python-bleach/python-bleach.spec b/specs/p/python-bleach/python-bleach.spec index 564ba9be0bc..525adc95e82 100644 --- a/specs/p/python-bleach/python-bleach.spec +++ b/specs/p/python-bleach/python-bleach.spec @@ -5,7 +5,7 @@ Name: python-%{modname} Version: 6.2.0 -Release: 8%{?dist} +Release: 8%{?dist} Summary: An easy whitelist-based HTML-sanitizing tool License: Apache-2.0 diff --git a/specs/p/python-blinker/python-blinker.spec b/specs/p/python-blinker/python-blinker.spec index a74d84fec78..b9ed71c0090 100644 --- a/specs/p/python-blinker/python-blinker.spec +++ b/specs/p/python-blinker/python-blinker.spec @@ -5,7 +5,7 @@ Name: python-blinker Version: 1.9.0 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Fast, simple object-to-object and broadcast signaling License: MIT diff --git a/specs/p/python-blivet/python-blivet.spec b/specs/p/python-blivet/python-blivet.spec index 08d6d1773e7..70621585b68 100644 --- a/specs/p/python-blivet/python-blivet.spec +++ b/specs/p/python-blivet/python-blivet.spec @@ -8,7 +8,7 @@ Version: 3.12.1 #%%global prerelease .b2 # prerelease, if defined, should be something like .a1, .b1, .b2.dev1, or .c2 -Release: 10%{?prerelease}%{?dist} +Release: 14%{?prerelease}%{?dist} Epoch: 1 License: LGPL-2.1-or-later %global realname blivet diff --git a/specs/p/python-booleanoperations/python-booleanoperations.spec b/specs/p/python-booleanoperations/python-booleanoperations.spec index 3bf2f231a29..1762888dd00 100644 --- a/specs/p/python-booleanoperations/python-booleanoperations.spec +++ b/specs/p/python-booleanoperations/python-booleanoperations.spec @@ -8,7 +8,7 @@ Name: python-%{pkgname} Version: 0.9.0 -Release: 24%{?dist} +Release: 24%{?dist} Summary: Boolean operations on paths License: MIT diff --git a/specs/p/python-boto/python-boto.spec b/specs/p/python-boto/python-boto.spec index cbb7878b0a9..14522aeacd9 100644 --- a/specs/p/python-boto/python-boto.spec +++ b/specs/p/python-boto/python-boto.spec @@ -4,7 +4,7 @@ Summary: A simple, lightweight interface to Amazon Web Services Name: python-boto Version: 2.49.0 -Release: 30%{?dist} +Release: 30%{?dist} License: MIT URL: https://github.com/boto/boto Source0: https://pypi.io/packages/source/b/boto/boto-%{version}.tar.gz diff --git a/specs/p/python-boto3/python-boto3.spec b/specs/p/python-boto3/python-boto3.spec index 0e0f355b463..29b25d23144 100644 --- a/specs/p/python-boto3/python-boto3.spec +++ b/specs/p/python-boto3/python-boto3.spec @@ -11,7 +11,7 @@ Name: python-boto3 Version: 1.42.52 -Release: 2%{?dist} +Release: 2%{?dist} Summary: The AWS SDK for Python License: Apache-2.0 diff --git a/specs/p/python-botocore/python-botocore.spec b/specs/p/python-botocore/python-botocore.spec index d2502d8512c..c7e3fa0ce48 100644 --- a/specs/p/python-botocore/python-botocore.spec +++ b/specs/p/python-botocore/python-botocore.spec @@ -7,7 +7,7 @@ Name: python-%{pypi_name} # NOTICE - Updating this package requires updating python-boto3 Version: 1.42.52 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Low-level, data-driven core of boto 3 License: Apache-2.0 diff --git a/specs/p/python-bsddb3/python-bsddb3.spec b/specs/p/python-bsddb3/python-bsddb3.spec index ace96e65177..59a8f4bf0f3 100644 --- a/specs/p/python-bsddb3/python-bsddb3.spec +++ b/specs/p/python-bsddb3/python-bsddb3.spec @@ -16,7 +16,7 @@ any length.} Name: python-%{srcname} Version: 6.2.9 -Release: 24%{?dist} +Release: 24%{?dist} Summary: Python 3 bindings for Berkeley DB License: BSD-3-Clause diff --git a/specs/p/python-cached_property/python-cached_property.spec b/specs/p/python-cached_property/python-cached_property.spec index 51589abc124..efe499f8f2a 100644 --- a/specs/p/python-cached_property/python-cached_property.spec +++ b/specs/p/python-cached_property/python-cached_property.spec @@ -6,7 +6,7 @@ Name: python-%{modulename} Version: 2.0.1 -Release: 7%{?dist} +Release: 7%{?dist} Summary: A cached-property for decorating methods in Python classes License: BSD-3-Clause URL: https://github.com/pydanny/%{projectname} diff --git a/specs/p/python-capturer/python-capturer.spec b/specs/p/python-capturer/python-capturer.spec index 40689eec88b..9ca551e935f 100644 --- a/specs/p/python-capturer/python-capturer.spec +++ b/specs/p/python-capturer/python-capturer.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 3.0 -Release: 23%{?dist} +Release: 23%{?dist} Summary: Easily capture stdout/stderr of the current process and subprocesses License: MIT diff --git a/specs/p/python-cbor2/python-cbor2.spec b/specs/p/python-cbor2/python-cbor2.spec index a2413e75246..03b1ff911a5 100644 --- a/specs/p/python-cbor2/python-cbor2.spec +++ b/specs/p/python-cbor2/python-cbor2.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 5.6.5 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Python CBOR (de)serializer with extensive tag support License: MIT diff --git a/specs/p/python-cffsubr/python-cffsubr.spec b/specs/p/python-cffsubr/python-cffsubr.spec index 960b5ca93a5..bad99614e39 100644 --- a/specs/p/python-cffsubr/python-cffsubr.spec +++ b/specs/p/python-cffsubr/python-cffsubr.spec @@ -3,7 +3,7 @@ Name: python-cffsubr Version: 0.4.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Standalone CFF subroutinizer based on the AFDKO tx tool # The entire source is Apache-2.0, except: diff --git a/specs/p/python-cheroot/python-cheroot.spec b/specs/p/python-cheroot/python-cheroot.spec index 463be903a8e..dea20696a96 100644 --- a/specs/p/python-cheroot/python-cheroot.spec +++ b/specs/p/python-cheroot/python-cheroot.spec @@ -8,7 +8,7 @@ Name: python-%{pypi_name} Version: 10.0.1 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Highly-optimized, pure-python HTTP server # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/p/python-cherrypy/python-cherrypy.spec b/specs/p/python-cherrypy/python-cherrypy.spec index a9cf1c02616..e6a23e2e7bc 100644 --- a/specs/p/python-cherrypy/python-cherrypy.spec +++ b/specs/p/python-cherrypy/python-cherrypy.spec @@ -13,7 +13,7 @@ Name: python-cherrypy %global camelname CherryPy Version: 18.10.0 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Pythonic, object-oriented web development framework # Automatically converted from old format: BSD - review is highly recommended. License: LicenseRef-Callaway-BSD diff --git a/specs/p/python-cinderclient/python-cinderclient.spec b/specs/p/python-cinderclient/python-cinderclient.spec index 2737ee8087d..925752890ad 100644 --- a/specs/p/python-cinderclient/python-cinderclient.spec +++ b/specs/p/python-cinderclient/python-cinderclient.spec @@ -21,7 +21,7 @@ Client library (cinderclient python module) and command line utility \ Name: python-cinderclient Version: 9.6.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Python API and CLI for OpenStack Cinder License: Apache-2.0 diff --git a/specs/p/python-click-log/python-click-log.spec b/specs/p/python-click-log/python-click-log.spec index ff3b9830f03..af5f79f8a4b 100644 --- a/specs/p/python-click-log/python-click-log.spec +++ b/specs/p/python-click-log/python-click-log.spec @@ -7,7 +7,7 @@ Name: python-%{srcname} Version: 0.4.0 -Release: 16%{?dist} +Release: 16%{?dist} Summary: %{sum} License: MIT diff --git a/specs/p/python-cligj/python-cligj.spec b/specs/p/python-cligj/python-cligj.spec index 024e631994b..f8d2295532d 100644 --- a/specs/p/python-cligj/python-cligj.spec +++ b/specs/p/python-cligj/python-cligj.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 0.7.2 -Release: 21%{?dist} +Release: 21%{?dist} Summary: Click params for GeoJSON CLI License: BSD-3-Clause diff --git a/specs/p/python-cloud-sptheme/python-cloud-sptheme.spec b/specs/p/python-cloud-sptheme/python-cloud-sptheme.spec index 11bdb4aba6d..8a78b56a1a3 100644 --- a/specs/p/python-cloud-sptheme/python-cloud-sptheme.spec +++ b/specs/p/python-cloud-sptheme/python-cloud-sptheme.spec @@ -7,7 +7,7 @@ Name: python-%{srcname} Version: 1.10.1 -Release: 21%{?dist} +Release: 21%{?dist} Summary: %{sum} # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/p/python-cmd2/python-cmd2.spec b/specs/p/python-cmd2/python-cmd2.spec index 0acd7258d71..1b8f3ee3419 100644 --- a/specs/p/python-cmd2/python-cmd2.spec +++ b/specs/p/python-cmd2/python-cmd2.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 2.5.11 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Extra features for standard library's cmd module License: MIT diff --git a/specs/p/python-coincidence/python-coincidence.spec b/specs/p/python-coincidence/python-coincidence.spec index 9170e5c4ad8..f6d5e060f4c 100644 --- a/specs/p/python-coincidence/python-coincidence.spec +++ b/specs/p/python-coincidence/python-coincidence.spec @@ -7,7 +7,7 @@ Name: python-coincidence Version: 0.6.6 %forgemeta -Release: 7%{?dist} +Release: 7%{?dist} Summary: Helper functions for pytest License: MIT diff --git a/specs/p/python-coloredlogs/python-coloredlogs.spec b/specs/p/python-coloredlogs/python-coloredlogs.spec index d5e7e024b10..19ef20cfc7b 100644 --- a/specs/p/python-coloredlogs/python-coloredlogs.spec +++ b/specs/p/python-coloredlogs/python-coloredlogs.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 15.0.1 -Release: 17%{?dist} +Release: 17%{?dist} Summary: Colored terminal output for Python's logging module License: MIT diff --git a/specs/p/python-colour/python-colour.spec b/specs/p/python-colour/python-colour.spec index ba13571bf57..d51ed7cf2f7 100644 --- a/specs/p/python-colour/python-colour.spec +++ b/specs/p/python-colour/python-colour.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 0.1.5 -Release: 29%{?dist} +Release: 29%{?dist} Summary: Python module to convert and manipulate color representations License: BSD-2-Clause diff --git a/specs/p/python-configobj/python-configobj.spec b/specs/p/python-configobj/python-configobj.spec index 446dbe290d4..1f0b1ef48f2 100644 --- a/specs/p/python-configobj/python-configobj.spec +++ b/specs/p/python-configobj/python-configobj.spec @@ -3,7 +3,7 @@ Name: python-configobj Version: 5.0.9 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Config file reading, writing, and validation License: BSD-3-Clause URL: http://configobj.readthedocs.org/ diff --git a/specs/p/python-configshell/python-configshell.spec b/specs/p/python-configshell/python-configshell.spec index 5c81f986b25..b7613b764ce 100644 --- a/specs/p/python-configshell/python-configshell.spec +++ b/specs/p/python-configshell/python-configshell.spec @@ -9,7 +9,7 @@ License: Apache-2.0 Summary: A framework to implement simple but nice CLIs Epoch: 1 Version: 2.0.2 -Release: 5%{?dist} +Release: 5%{?dist} URL: https://github.com/open-iscsi/configshell-fb Source: %{url}/archive/v%{version}/%{oname}-%{version}.tar.gz BuildArch: noarch diff --git a/specs/p/python-construct/python-construct.spec b/specs/p/python-construct/python-construct.spec index 6657d5e1710..fefedc5edfe 100644 --- a/specs/p/python-construct/python-construct.spec +++ b/specs/p/python-construct/python-construct.spec @@ -4,7 +4,7 @@ Summary: A powerful declarative parser/builder for binary data Name: python-construct Version: 2.10.70 -Release: 12%{?dist} +Release: 12%{?dist} License: MIT URL: http://construct.readthedocs.org Source0: https://pypi.python.org/packages/source/c/construct/construct-%{version}.tar.gz diff --git a/specs/p/python-coverage/python-coverage.spec b/specs/p/python-coverage/python-coverage.spec index 0d0303e7965..781405d833a 100644 --- a/specs/p/python-coverage/python-coverage.spec +++ b/specs/p/python-coverage/python-coverage.spec @@ -8,7 +8,7 @@ Name: python-coverage Summary: Code coverage testing module for Python Version: 7.10.2 -Release: 4%{?dist} +Release: 4%{?dist} # There is a jquery file in tests/ that is MIT OR GPL-2.0-only # but it does not end up in the binary package License: Apache-2.0 diff --git a/specs/p/python-cppheaderparser/python-cppheaderparser.spec b/specs/p/python-cppheaderparser/python-cppheaderparser.spec index caa11c7e9ae..463e9aa720c 100644 --- a/specs/p/python-cppheaderparser/python-cppheaderparser.spec +++ b/specs/p/python-cppheaderparser/python-cppheaderparser.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 2.7.4 -Release: 22%{?dist} +Release: 22%{?dist} Summary: Parse C++ header files and generate a data structure License: BSD-3-Clause diff --git a/specs/p/python-cpuinfo/python-cpuinfo.spec b/specs/p/python-cpuinfo/python-cpuinfo.spec index 0eb25ec3e7b..83ed4e678c3 100644 --- a/specs/p/python-cpuinfo/python-cpuinfo.spec +++ b/specs/p/python-cpuinfo/python-cpuinfo.spec @@ -6,7 +6,7 @@ Name: python-%{srcname} Version: 9.0.0 -Release: 17%{?dist} +Release: 17%{?dist} Summary: %{sum} License: MIT diff --git a/specs/p/python-crashtest/python-crashtest.spec b/specs/p/python-crashtest/python-crashtest.spec index 8e8bd112a77..e7de4890a9b 100644 --- a/specs/p/python-crashtest/python-crashtest.spec +++ b/specs/p/python-crashtest/python-crashtest.spec @@ -9,7 +9,7 @@ inspection easier.} Name: python-%{pypi_name} Version: 0.4.1 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Manage Python errors with ease License: MIT diff --git a/specs/p/python-cssselect/python-cssselect.spec b/specs/p/python-cssselect/python-cssselect.spec index 7a897ecceb4..7c118ddb68e 100644 --- a/specs/p/python-cssselect/python-cssselect.spec +++ b/specs/p/python-cssselect/python-cssselect.spec @@ -7,7 +7,7 @@ Name: python-cssselect Version: 1.3.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Parses CSS3 Selectors and translates them to XPath 1.0 # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/p/python-cssselect2/python-cssselect2.spec b/specs/p/python-cssselect2/python-cssselect2.spec index 0d36c62f9ae..61f4058bb7c 100644 --- a/specs/p/python-cssselect2/python-cssselect2.spec +++ b/specs/p/python-cssselect2/python-cssselect2.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 0.8.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: CSS selectors for Python ElementTree License: BSD-3-Clause URL: https://doc.courtbouillon.org/cssselect2/stable/ diff --git a/specs/p/python-cups/python-cups.spec b/specs/p/python-cups/python-cups.spec index d1c1ff6190f..34b481614a2 100644 --- a/specs/p/python-cups/python-cups.spec +++ b/specs/p/python-cups/python-cups.spec @@ -9,7 +9,7 @@ Summary: Python bindings for CUPS Name: python-cups Version: 2.0.4 -Release: 8%{?dist} +Release: 8%{?dist} # older URL, but still with useful information about pycups #URL: http://cyberelk.net/tim/software/pycups/ URL: https://github.com/OpenPrinting/pycups/ diff --git a/specs/p/python-d2to1/python-d2to1.spec b/specs/p/python-d2to1/python-d2to1.spec index b97a3a81193..96cbbfa1d1d 100644 --- a/specs/p/python-d2to1/python-d2to1.spec +++ b/specs/p/python-d2to1/python-d2to1.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 0.2.12 -Release: 40.post1%{?dist} +Release: 43.post1%{?dist} Summary: Allows using distutils2-like setup.cfg files with setup.py License: BSD-3-Clause diff --git a/specs/p/python-dasbus/python-dasbus.spec b/specs/p/python-dasbus/python-dasbus.spec index cba34cea17c..c34203ac8d1 100644 --- a/specs/p/python-dasbus/python-dasbus.spec +++ b/specs/p/python-dasbus/python-dasbus.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 1.7 -Release: 14%{?dist} +Release: 14%{?dist} Summary: DBus library in Python 3 License: LGPL-2.1-or-later diff --git a/specs/p/python-dateparser/python-dateparser.spec b/specs/p/python-dateparser/python-dateparser.spec index 70ecbbba851..12596830b69 100644 --- a/specs/p/python-dateparser/python-dateparser.spec +++ b/specs/p/python-dateparser/python-dateparser.spec @@ -18,7 +18,7 @@ Name: python-dateparser Version: 1.2.2 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Python parser for human readable dates License: BSD-3-Clause diff --git a/specs/p/python-dbus-next/python-dbus-next.spec b/specs/p/python-dbus-next/python-dbus-next.spec index fa6a449a6c8..e58d151c368 100644 --- a/specs/p/python-dbus-next/python-dbus-next.spec +++ b/specs/p/python-dbus-next/python-dbus-next.spec @@ -8,7 +8,7 @@ Name: python-%{pypi_name} Version: 0.2.3 -Release: 18%{?dist} +Release: 18%{?dist} Summary: Zero-dependency DBus library for Python with asyncio support License: MIT diff --git a/specs/p/python-dbusmock/python-dbusmock.spec b/specs/p/python-dbusmock/python-dbusmock.spec index 6c7d4ac33f6..d7f156c15ff 100644 --- a/specs/p/python-dbusmock/python-dbusmock.spec +++ b/specs/p/python-dbusmock/python-dbusmock.spec @@ -5,7 +5,7 @@ Name: python-%{modname} Version: 0.38.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Mock D-Bus objects License: LGPL-3.0-or-later diff --git a/specs/p/python-deepdiff/python-deepdiff.spec b/specs/p/python-deepdiff/python-deepdiff.spec index 2490dd4265b..9163a596f72 100644 --- a/specs/p/python-deepdiff/python-deepdiff.spec +++ b/specs/p/python-deepdiff/python-deepdiff.spec @@ -7,7 +7,7 @@ Name: python-deepdiff Version: 8.6.1 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Deep Difference and search of any Python object/data License: MIT diff --git a/specs/p/python-deprecated/python-deprecated.spec b/specs/p/python-deprecated/python-deprecated.spec index 4729d2f4445..040e28fc568 100644 --- a/specs/p/python-deprecated/python-deprecated.spec +++ b/specs/p/python-deprecated/python-deprecated.spec @@ -3,7 +3,7 @@ Name: python-deprecated Version: 1.3.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Python decorator to deprecate old python classes, functions or methods License: MIT URL: https://github.com/laurent-laporte-pro/deprecated diff --git a/specs/p/python-deprecation/python-deprecation.spec b/specs/p/python-deprecation/python-deprecation.spec index 7158ae73f61..dbd97af05df 100644 --- a/specs/p/python-deprecation/python-deprecation.spec +++ b/specs/p/python-deprecation/python-deprecation.spec @@ -3,7 +3,7 @@ Name: python-deprecation Version: 2.1.0 -Release: 22%{?dist} +Release: 22%{?dist} Summary: A library to handle automated deprecations License: Apache-2.0 diff --git a/specs/p/python-dictdiffer/python-dictdiffer.spec b/specs/p/python-dictdiffer/python-dictdiffer.spec index 6802b82eafc..b920c94fd05 100644 --- a/specs/p/python-dictdiffer/python-dictdiffer.spec +++ b/specs/p/python-dictdiffer/python-dictdiffer.spec @@ -13,7 +13,7 @@ Name: python-%{library} Version: 0.9.0 -Release: 18%{?dist} +Release: 18%{?dist} Summary: Dictdiffer is a module that helps you to diff and patch dictionaries License: MIT URL: https://github.com/inveniosoftware/dictdiffer diff --git a/specs/p/python-diskcache/python-diskcache.spec b/specs/p/python-diskcache/python-diskcache.spec index 8b46a606d41..828d2bf15f9 100644 --- a/specs/p/python-diskcache/python-diskcache.spec +++ b/specs/p/python-diskcache/python-diskcache.spec @@ -8,7 +8,7 @@ Version: 5.6.3 %forgemeta Name: python-%{srcname} -Release: 12%{?dist} +Release: 12%{?dist} Summary: Python disk-backed cache License: Apache-2.0 diff --git a/specs/p/python-distlib/python-distlib.spec b/specs/p/python-distlib/python-distlib.spec index 04aac95a8f1..6c0a075a853 100644 --- a/specs/p/python-distlib/python-distlib.spec +++ b/specs/p/python-distlib/python-distlib.spec @@ -6,7 +6,7 @@ Name: python-distlib Version: 0.4.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Low-level components of distutils2/packaging, augmented with higher-level APIs # Automatically converted from old format: Python - review is highly recommended. diff --git a/specs/p/python-distro/python-distro.spec b/specs/p/python-distro/python-distro.spec index c9e203acf9e..f662b462567 100644 --- a/specs/p/python-distro/python-distro.spec +++ b/specs/p/python-distro/python-distro.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 1.9.0 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Linux Distribution - a Linux OS platform information API License: Apache-2.0 diff --git a/specs/p/python-django-database-url/python-django-database-url.spec b/specs/p/python-django-database-url/python-django-database-url.spec index 1957647e13a..5d9744cdc9f 100644 --- a/specs/p/python-django-database-url/python-django-database-url.spec +++ b/specs/p/python-django-database-url/python-django-database-url.spec @@ -10,7 +10,7 @@ Name: python-django-database-url Version: 0.5.0 -Release: 31%{?dist} +Release: 31%{?dist} Summary: Use Database URLs in your Django Application # Automatically converted from old format: BSD - review is highly recommended. License: LicenseRef-Callaway-BSD diff --git a/specs/p/python-django-redis/python-django-redis.spec b/specs/p/python-django-redis/python-django-redis.spec index 1357bb448f4..b8aa94a65a8 100644 --- a/specs/p/python-django-redis/python-django-redis.spec +++ b/specs/p/python-django-redis/python-django-redis.spec @@ -6,7 +6,7 @@ Name: python-%{pypi_name} Version: 4.5.0 -Release: 32%{?dist} +Release: 32%{?dist} Summary: Full featured redis cache backend for Django # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/p/python-django-search-url/python-django-search-url.spec b/specs/p/python-django-search-url/python-django-search-url.spec index 493c006d7c2..f03e6e92577 100644 --- a/specs/p/python-django-search-url/python-django-search-url.spec +++ b/specs/p/python-django-search-url/python-django-search-url.spec @@ -6,7 +6,7 @@ Name: python-%{pkg_name} Version: 0.1 -Release: 25%{?dist} +Release: 25%{?dist} Summary: Use Search URLs in your Django Application # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/p/python-dns/python-dns.spec b/specs/p/python-dns/python-dns.spec index ab6dfa69408..2089a8654f7 100644 --- a/specs/p/python-dns/python-dns.spec +++ b/specs/p/python-dns/python-dns.spec @@ -16,7 +16,7 @@ Name: python-dns Version: 2.8.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: DNS toolkit for Python # The entire package is licensed with both licenses, see LICENSE file diff --git a/specs/p/python-dockerfile-parse/python-dockerfile-parse.spec b/specs/p/python-dockerfile-parse/python-dockerfile-parse.spec index 0c2c2057db3..3e03b269eae 100644 --- a/specs/p/python-dockerfile-parse/python-dockerfile-parse.spec +++ b/specs/p/python-dockerfile-parse/python-dockerfile-parse.spec @@ -8,7 +8,7 @@ Name: python-%{srcname} Version: 2.0.1 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Python library for Dockerfile manipulation # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/p/python-docstring-parser/python-docstring-parser.spec b/specs/p/python-docstring-parser/python-docstring-parser.spec index 8f21b895810..86d0715788c 100644 --- a/specs/p/python-docstring-parser/python-docstring-parser.spec +++ b/specs/p/python-docstring-parser/python-docstring-parser.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 0.17.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Parse Python docstrings License: MIT URL: https://github.com/rr-/docstring_parser diff --git a/specs/p/python-domdf-python-tools/python-domdf-python-tools.spec b/specs/p/python-domdf-python-tools/python-domdf-python-tools.spec index 9f77e640c24..182ff194a6b 100644 --- a/specs/p/python-domdf-python-tools/python-domdf-python-tools.spec +++ b/specs/p/python-domdf-python-tools/python-domdf-python-tools.spec @@ -10,7 +10,7 @@ Name: python-domdf-python-tools Version: 3.9.0 %forgemeta -Release: 9%{?dist} +Release: 9%{?dist} Summary: Helpful functions for Python # Primary license: MIT diff --git a/specs/p/python-et_xmlfile/python-et_xmlfile.spec b/specs/p/python-et_xmlfile/python-et_xmlfile.spec index 50d5750951b..e1cc3a42a68 100644 --- a/specs/p/python-et_xmlfile/python-et_xmlfile.spec +++ b/specs/p/python-et_xmlfile/python-et_xmlfile.spec @@ -11,7 +11,7 @@ the openpyxl project but is now a standalone module. Name: python-%{pypi_name} Version: 2.0.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: %{sum} License: MIT diff --git a/specs/p/python-execnet/python-execnet.spec b/specs/p/python-execnet/python-execnet.spec index 66152955deb..7eb403530c2 100644 --- a/specs/p/python-execnet/python-execnet.spec +++ b/specs/p/python-execnet/python-execnet.spec @@ -10,7 +10,7 @@ Name: python-%{srcname} Version: 2.1.2 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Distributed Python deployment and communication License: MIT URL: https://github.com/pytest-dev/execnet diff --git a/specs/p/python-extras/python-extras.spec b/specs/p/python-extras/python-extras.spec index 86c9f3de97e..a70e716ed6a 100644 --- a/specs/p/python-extras/python-extras.spec +++ b/specs/p/python-extras/python-extras.spec @@ -5,7 +5,7 @@ Name: python-extras Version: 1.0.0 -Release: 43%{?dist} +Release: 43%{?dist} Summary: Useful extra bits for Python License: MIT diff --git a/specs/p/python-fastbencode/python-fastbencode.spec b/specs/p/python-fastbencode/python-fastbencode.spec index 929bffd483f..905a4cee7f2 100644 --- a/specs/p/python-fastbencode/python-fastbencode.spec +++ b/specs/p/python-fastbencode/python-fastbencode.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 0.3.2 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Implementation of bencode with optional fast C extensions License: GPL-2.0-or-later AND MIT diff --git a/specs/p/python-fastjsonschema/python-fastjsonschema.spec b/specs/p/python-fastjsonschema/python-fastjsonschema.spec index 5bde91fd1f7..5f4357170f0 100644 --- a/specs/p/python-fastjsonschema/python-fastjsonschema.spec +++ b/specs/p/python-fastjsonschema/python-fastjsonschema.spec @@ -3,7 +3,7 @@ Name: python-fastjsonschema Version: 2.21.2 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Fastest Python implementation of JSON schema License: BSD-3-Clause diff --git a/specs/p/python-feedparser/python-feedparser.spec b/specs/p/python-feedparser/python-feedparser.spec index e686920797f..86d289a6575 100644 --- a/specs/p/python-feedparser/python-feedparser.spec +++ b/specs/p/python-feedparser/python-feedparser.spec @@ -5,7 +5,7 @@ Name: python-feedparser Version: 6.0.12 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Parse RSS and Atom feeds in Python # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/p/python-fields/python-fields.spec b/specs/p/python-fields/python-fields.spec index 9fb68271163..c0095998a4a 100644 --- a/specs/p/python-fields/python-fields.spec +++ b/specs/p/python-fields/python-fields.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 5.0.0 -Release: 28%{?dist} +Release: 28%{?dist} Summary: Container class boilerplate killer License: BSD-2-Clause diff --git a/specs/p/python-flake8/python-flake8.spec b/specs/p/python-flake8/python-flake8.spec index ffc49c8be83..e145d07fa71 100644 --- a/specs/p/python-flake8/python-flake8.spec +++ b/specs/p/python-flake8/python-flake8.spec @@ -3,7 +3,7 @@ Name: python-flake8 Version: 6.1.0 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Python code checking using pyflakes, pycodestyle, and mccabe License: MIT diff --git a/specs/p/python-fluidity-sm/python-fluidity-sm.spec b/specs/p/python-fluidity-sm/python-fluidity-sm.spec index a7553c9b07f..916ba192044 100644 --- a/specs/p/python-fluidity-sm/python-fluidity-sm.spec +++ b/specs/p/python-fluidity-sm/python-fluidity-sm.spec @@ -3,7 +3,7 @@ Name: python-fluidity-sm Version: 0.2.0 -Release: 42%{?dist} +Release: 42%{?dist} Summary: State machine implementation for Python objects License: MIT URL: https://github.com/nsi-iff/fluidity diff --git a/specs/p/python-fontMath/python-fontMath.spec b/specs/p/python-fontMath/python-fontMath.spec index 914b6edf56b..206c5b1c49d 100644 --- a/specs/p/python-fontMath/python-fontMath.spec +++ b/specs/p/python-fontMath/python-fontMath.spec @@ -6,7 +6,7 @@ Name: python-%{srcname} Version: 0.9.4 -Release: 7%{?dist} +Release: 7%{?dist} Summary: A set of objects for performing math operations on font data License: MIT diff --git a/specs/p/python-fqdn/python-fqdn.spec b/specs/p/python-fqdn/python-fqdn.spec index 254ed9731fa..8ca6ebff011 100644 --- a/specs/p/python-fqdn/python-fqdn.spec +++ b/specs/p/python-fqdn/python-fqdn.spec @@ -4,7 +4,7 @@ %global srcname %(echo %{name} | sed 's/^python-//') Name: python-fqdn Version: 1.5.1 -Release: 21%{?dist} +Release: 21%{?dist} Summary: Validates fully-qualified domain names against RFC 1123 BuildArch: noarch License: MPL-2.0 diff --git a/specs/p/python-freezegun/python-freezegun.spec b/specs/p/python-freezegun/python-freezegun.spec index 3ba54ef6a86..1d1bd717708 100644 --- a/specs/p/python-freezegun/python-freezegun.spec +++ b/specs/p/python-freezegun/python-freezegun.spec @@ -6,7 +6,7 @@ Name: python-freezegun Version: 1.5.1 -Release: 8%{?dist} +Release: 8%{?dist} Summary: %{sum} License: Apache-2.0 diff --git a/specs/p/python-funcy/python-funcy.spec b/specs/p/python-funcy/python-funcy.spec index e8ec99a9455..6873d05cacc 100644 --- a/specs/p/python-funcy/python-funcy.spec +++ b/specs/p/python-funcy/python-funcy.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 1.17 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Fancy and practical functional tools License: BSD-3-Clause diff --git a/specs/p/python-futurist/python-futurist.spec b/specs/p/python-futurist/python-futurist.spec index d3262563d18..3d16179005a 100644 --- a/specs/p/python-futurist/python-futurist.spec +++ b/specs/p/python-futurist/python-futurist.spec @@ -18,7 +18,7 @@ Code from the future, delivered to you in the now. Name: python-%{pypi_name} Version: 3.0.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Useful additions to futures, from the future License: Apache-2.0 diff --git a/specs/p/python-genshi/python-genshi.spec b/specs/p/python-genshi/python-genshi.spec index 3410e8d5cc1..6cba30fbd34 100644 --- a/specs/p/python-genshi/python-genshi.spec +++ b/specs/p/python-genshi/python-genshi.spec @@ -3,7 +3,7 @@ Name: python-genshi Version: 0.7.10 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Toolkit for stream-based generation of output for the web License: BSD-3-Clause diff --git a/specs/p/python-geographiclib/python-geographiclib.spec b/specs/p/python-geographiclib/python-geographiclib.spec index 3f5aecb2e28..adbe14bf81d 100644 --- a/specs/p/python-geographiclib/python-geographiclib.spec +++ b/specs/p/python-geographiclib/python-geographiclib.spec @@ -5,7 +5,7 @@ Name: python-%{pkg_name} Version: 2.1 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Python 3 implementation of geographiclib License: MIT diff --git a/specs/p/python-ghp-import/python-ghp-import.spec b/specs/p/python-ghp-import/python-ghp-import.spec index b45e7eb16d9..e970b442abe 100644 --- a/specs/p/python-ghp-import/python-ghp-import.spec +++ b/specs/p/python-ghp-import/python-ghp-import.spec @@ -3,7 +3,7 @@ Name: python-ghp-import Version: 2.1.0 -Release: 16%{?dist} +Release: 16%{?dist} Summary: GitHub Pages Import BuildArch: noarch diff --git a/specs/p/python-gitdb/python-gitdb.spec b/specs/p/python-gitdb/python-gitdb.spec index 8d8b74dd7db..a22a3ac1062 100644 --- a/specs/p/python-gitdb/python-gitdb.spec +++ b/specs/p/python-gitdb/python-gitdb.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 4.0.11 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Git Object Database License: BSD-3-Clause diff --git a/specs/p/python-glanceclient/python-glanceclient.spec b/specs/p/python-glanceclient/python-glanceclient.spec index 8c59adc5cbd..27df4909559 100644 --- a/specs/p/python-glanceclient/python-glanceclient.spec +++ b/specs/p/python-glanceclient/python-glanceclient.spec @@ -31,7 +31,7 @@ glanceclient module), and a command-line script (glance). Each implements \ Name: python-glanceclient Epoch: 1 Version: 4.7.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Python API and CLI for OpenStack Glance License: Apache-2.0 diff --git a/specs/p/python-gnocchiclient/python-gnocchiclient.spec b/specs/p/python-gnocchiclient/python-gnocchiclient.spec index 54de2173179..8824ea1dc67 100644 --- a/specs/p/python-gnocchiclient/python-gnocchiclient.spec +++ b/specs/p/python-gnocchiclient/python-gnocchiclient.spec @@ -25,7 +25,7 @@ provides a Python API (the gnocchiclient module) and a command-line tool. Name: python-gnocchiclient Version: 7.1.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Python API and CLI for OpenStack Gnocchi License: Apache-2.0 diff --git a/specs/p/python-google-auth/python-google-auth.spec b/specs/p/python-google-auth/python-google-auth.spec index 053d1514af3..71a71b7b496 100644 --- a/specs/p/python-google-auth/python-google-auth.spec +++ b/specs/p/python-google-auth/python-google-auth.spec @@ -20,7 +20,7 @@ Name: python-google-auth Version: 2.45.0 -Release: 2%{?dist} +Release: 2%{?dist} Epoch: 1 Summary: Google Authentication Library diff --git a/specs/p/python-greenlet/python-greenlet.spec b/specs/p/python-greenlet/python-greenlet.spec index 47614a753b6..6311e9063e4 100644 --- a/specs/p/python-greenlet/python-greenlet.spec +++ b/specs/p/python-greenlet/python-greenlet.spec @@ -5,7 +5,7 @@ Name: python-%{modname} Version: 3.1.1 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Lightweight in-process concurrent programming License: MIT AND PSF-2.0 URL: https://github.com/python-greenlet/greenlet diff --git a/specs/p/python-grpcio-gcp/python-grpcio-gcp.spec b/specs/p/python-grpcio-gcp/python-grpcio-gcp.spec index 762c0ac8af7..0f8a4aae0b6 100644 --- a/specs/p/python-grpcio-gcp/python-grpcio-gcp.spec +++ b/specs/p/python-grpcio-gcp/python-grpcio-gcp.spec @@ -6,7 +6,7 @@ Name: python-%{srcname} Version: 0.2.2 -Release: 22%{?dist} +Release: 22%{?dist} Summary: gRPC for GCP extensions License: Apache-2.0 diff --git a/specs/p/python-gssapi/python-gssapi.spec b/specs/p/python-gssapi/python-gssapi.spec index cb56878de11..75c1224f398 100644 --- a/specs/p/python-gssapi/python-gssapi.spec +++ b/specs/p/python-gssapi/python-gssapi.spec @@ -5,7 +5,7 @@ Name: python-gssapi Version: 1.7.3 -Release: 16%{?dist} +Release: 16%{?dist} Summary: Python Bindings for GSSAPI (RFC 2743/2744 and extensions) License: ISC diff --git a/specs/p/python-gunicorn/python-gunicorn.spec b/specs/p/python-gunicorn/python-gunicorn.spec index 486b0967cca..29643c1bf21 100644 --- a/specs/p/python-gunicorn/python-gunicorn.spec +++ b/specs/p/python-gunicorn/python-gunicorn.spec @@ -11,7 +11,7 @@ speedy.} Name: python-%{srcname} Version: 23.0.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Python WSGI HTTP Server License: MIT URL: https://gunicorn.org/ diff --git a/specs/p/python-hacking/python-hacking.spec b/specs/p/python-hacking/python-hacking.spec index 3c3b877b16d..46351789f92 100644 --- a/specs/p/python-hacking/python-hacking.spec +++ b/specs/p/python-hacking/python-hacking.spec @@ -21,7 +21,7 @@ Name: python-%{pypi_name} Version: 7.0.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: OpenStack Hacking Guideline Enforcement License: Apache-2.0 diff --git a/specs/p/python-hamcrest/python-hamcrest.spec b/specs/p/python-hamcrest/python-hamcrest.spec index de8d9e49066..9b1426682e1 100644 --- a/specs/p/python-hamcrest/python-hamcrest.spec +++ b/specs/p/python-hamcrest/python-hamcrest.spec @@ -6,7 +6,7 @@ Name: python-%{modname} Version: 2.1.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Hamcrest matchers for Python License: BSD-3-Clause diff --git a/specs/p/python-hatch-fancy-pypi-readme/python-hatch-fancy-pypi-readme.spec b/specs/p/python-hatch-fancy-pypi-readme/python-hatch-fancy-pypi-readme.spec index 54e57a1c437..2a1f13de382 100644 --- a/specs/p/python-hatch-fancy-pypi-readme/python-hatch-fancy-pypi-readme.spec +++ b/specs/p/python-hatch-fancy-pypi-readme/python-hatch-fancy-pypi-readme.spec @@ -3,7 +3,7 @@ Name: python-hatch-fancy-pypi-readme Version: 25.1.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Hatch plugin for writing fancy PyPI readmes License: MIT diff --git a/specs/p/python-hatch-jupyter-builder/python-hatch-jupyter-builder.spec b/specs/p/python-hatch-jupyter-builder/python-hatch-jupyter-builder.spec index bf3c08136a8..ec64a9a3591 100644 --- a/specs/p/python-hatch-jupyter-builder/python-hatch-jupyter-builder.spec +++ b/specs/p/python-hatch-jupyter-builder/python-hatch-jupyter-builder.spec @@ -3,7 +3,7 @@ Name: python-hatch-jupyter-builder Version: 0.9.1 -Release: 6%{?dist} +Release: 6%{?dist} Summary: A hatch plugin to help build Jupyter packages License: BSD-3-Clause URL: https://pypi.org/project/hatch-jupyter-builder/ diff --git a/specs/p/python-hatch-requirements-txt/python-hatch-requirements-txt.spec b/specs/p/python-hatch-requirements-txt/python-hatch-requirements-txt.spec index 8f935647057..ead8ef5aba4 100644 --- a/specs/p/python-hatch-requirements-txt/python-hatch-requirements-txt.spec +++ b/specs/p/python-hatch-requirements-txt/python-hatch-requirements-txt.spec @@ -7,7 +7,7 @@ Name: python-hatch-requirements-txt Version: 0.4.1 %forgemeta -Release: 9%{?dist} +Release: 9%{?dist} Summary: Hatchling plugin to read project dependencies from requirements.txt License: MIT diff --git a/specs/p/python-httplib2/python-httplib2.spec b/specs/p/python-httplib2/python-httplib2.spec index 1169a84d661..dd9ee2f1654 100644 --- a/specs/p/python-httplib2/python-httplib2.spec +++ b/specs/p/python-httplib2/python-httplib2.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 0.22.0 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Comprehensive HTTP client library License: MIT URL: https://pypi.python.org/pypi/httplib2 diff --git a/specs/p/python-httptools/python-httptools.spec b/specs/p/python-httptools/python-httptools.spec index cafbfcc8090..575e9b48f0b 100644 --- a/specs/p/python-httptools/python-httptools.spec +++ b/specs/p/python-httptools/python-httptools.spec @@ -3,7 +3,7 @@ Name: python-httptools Version: 0.6.4 -Release: 7%{?dist} +Release: 7%{?dist} Summary: A collection of framework independent HTTP protocol utils # httptools is MIT diff --git a/specs/p/python-humanfriendly/python-humanfriendly.spec b/specs/p/python-humanfriendly/python-humanfriendly.spec index a9e930737e0..25b7e02c838 100644 --- a/specs/p/python-humanfriendly/python-humanfriendly.spec +++ b/specs/p/python-humanfriendly/python-humanfriendly.spec @@ -10,7 +10,7 @@ Name: python-%{srcname} Version: 10.0 -Release: 20%{?dist} +Release: 20%{?dist} Summary: Human friendly output for text interfaces using Python License: MIT diff --git a/specs/p/python-identify/python-identify.spec b/specs/p/python-identify/python-identify.spec index 33fa4060fdc..75cbab488cb 100644 --- a/specs/p/python-identify/python-identify.spec +++ b/specs/p/python-identify/python-identify.spec @@ -6,7 +6,7 @@ Name: python-%{pypi_name} Version: 2.6.16 -Release: 3%{?dist} +Release: 3%{?dist} Summary: File identification library for Python License: MIT diff --git a/specs/p/python-ifaddr/python-ifaddr.spec b/specs/p/python-ifaddr/python-ifaddr.spec index c26243a3f91..27652a037c2 100644 --- a/specs/p/python-ifaddr/python-ifaddr.spec +++ b/specs/p/python-ifaddr/python-ifaddr.spec @@ -8,7 +8,7 @@ of the computer. Name: python-%{srcname} Version: 0.2.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Python library that allows you to find all the IP addresses of the computer License: MIT diff --git a/specs/p/python-igraph/python-igraph.spec b/specs/p/python-igraph/python-igraph.spec index a6942a95dc7..a8c62ddd8d3 100644 --- a/specs/p/python-igraph/python-igraph.spec +++ b/specs/p/python-igraph/python-igraph.spec @@ -5,7 +5,7 @@ Name: python-igraph Version: 0.11.9 %global igraph_version 0.9 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Python bindings for igraph License: GPL-2.0-or-later diff --git a/specs/p/python-imagesize/python-imagesize.spec b/specs/p/python-imagesize/python-imagesize.spec index ce3df61c6b1..a037a85d74b 100644 --- a/specs/p/python-imagesize/python-imagesize.spec +++ b/specs/p/python-imagesize/python-imagesize.spec @@ -8,7 +8,7 @@ Name: python-%{pypi_name} Version: 1.4.1 -Release: 15%{?dist} +Release: 15%{?dist} Summary: %{sum} License: MIT diff --git a/specs/p/python-iniparse/python-iniparse.spec b/specs/p/python-iniparse/python-iniparse.spec index 2484feb0ba3..35600428c26 100644 --- a/specs/p/python-iniparse/python-iniparse.spec +++ b/specs/p/python-iniparse/python-iniparse.spec @@ -6,7 +6,7 @@ Name: python-iniparse Version: 0.5.1 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Accessing and Modifying INI files # From LICENSE: diff --git a/specs/p/python-inkex/python-inkex.spec b/specs/p/python-inkex/python-inkex.spec index 3200d7fd0e8..e25f9c43515 100644 --- a/specs/p/python-inkex/python-inkex.spec +++ b/specs/p/python-inkex/python-inkex.spec @@ -12,7 +12,7 @@ Version: 1.4.0^%{commitdate}git%{shortcommit} %forgemeta Name: python-%{srcname} -Release: 6%{?dist} +Release: 6%{?dist} Summary: Python extensions for Inkscape core License: GPL-2.0-or-later diff --git a/specs/p/python-inotify/python-inotify.spec b/specs/p/python-inotify/python-inotify.spec index 8b9fb609a8a..50e0a71b115 100644 --- a/specs/p/python-inotify/python-inotify.spec +++ b/specs/p/python-inotify/python-inotify.spec @@ -6,7 +6,7 @@ Summary: Monitor filesystem events with Python under Linux Name: python-inotify Version: 0.9.6 -Release: 43%{?dist} +Release: 43%{?dist} License: MIT URL: https://github.com/seb-m/pyinotify Source0: http://seb.dbzteam.org/pub/pyinotify/releases/pyinotify-%{version}.tar.gz diff --git a/specs/p/python-installer/python-installer.spec b/specs/p/python-installer/python-installer.spec index f8739a71e97..0beb4996159 100644 --- a/specs/p/python-installer/python-installer.spec +++ b/specs/p/python-installer/python-installer.spec @@ -3,7 +3,7 @@ Name: python-installer Version: 0.7.0 -Release: 14%{?dist} +Release: 14%{?dist} Summary: A library for installing Python wheels # SPDX diff --git a/specs/p/python-invoke/python-invoke.spec b/specs/p/python-invoke/python-invoke.spec index 00ff3058cd9..5ba0d3c75d5 100644 --- a/specs/p/python-invoke/python-invoke.spec +++ b/specs/p/python-invoke/python-invoke.spec @@ -10,7 +10,7 @@ Name: python-invoke Version: 2.2.0 -Release: 13%{?dist} +Release: 13%{?dist} Summary: A Python task execution tool and library License: BSD-2-Clause diff --git a/specs/p/python-ipyparallel/python-ipyparallel.spec b/specs/p/python-ipyparallel/python-ipyparallel.spec index c8154016c2d..2c44d9990af 100644 --- a/specs/p/python-ipyparallel/python-ipyparallel.spec +++ b/specs/p/python-ipyparallel/python-ipyparallel.spec @@ -3,7 +3,7 @@ Name: python-ipyparallel Version: 9.0.2 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Interactive Parallel Computing with IPython License: BSD-3-Clause diff --git a/specs/p/python-ironicclient/python-ironicclient.spec b/specs/p/python-ironicclient/python-ironicclient.spec index 50e3c61fb5f..11bf8f955e5 100644 --- a/specs/p/python-ironicclient/python-ironicclient.spec +++ b/specs/p/python-ironicclient/python-ironicclient.spec @@ -13,7 +13,7 @@ Name: python-ironicclient Version: 5.8.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Python client for Ironic License: Apache-2.0 diff --git a/specs/p/python-iso639/python-iso639.spec b/specs/p/python-iso639/python-iso639.spec index 9f13b7eb71e..8541ec5e689 100644 --- a/specs/p/python-iso639/python-iso639.spec +++ b/specs/p/python-iso639/python-iso639.spec @@ -5,7 +5,7 @@ Name: python-%{modname} Version: 0.1.4 -Release: 33%{?dist} +Release: 33%{?dist} Summary: ISO639-2 support for Python License: MIT diff --git a/specs/p/python-iso8601/python-iso8601.spec b/specs/p/python-iso8601/python-iso8601.spec index dddf55d1819..4f8796130d5 100644 --- a/specs/p/python-iso8601/python-iso8601.spec +++ b/specs/p/python-iso8601/python-iso8601.spec @@ -12,7 +12,7 @@ This module parses the most common forms of ISO 8601 date strings \ Name: python-%{srcname} Version: 2.1.0 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Simple module to parse ISO 8601 dates License: MIT diff --git a/specs/p/python-isoduration/python-isoduration.spec b/specs/p/python-isoduration/python-isoduration.spec index 2283d7633fe..98831f69bea 100644 --- a/specs/p/python-isoduration/python-isoduration.spec +++ b/specs/p/python-isoduration/python-isoduration.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 20.11.0 -Release: 16%{?dist} +Release: 16%{?dist} Summary: Operations with ISO 8601 durations License: ISC diff --git a/specs/p/python-isort/python-isort.spec b/specs/p/python-isort/python-isort.spec index 374f6f10349..f59da713f28 100644 --- a/specs/p/python-isort/python-isort.spec +++ b/specs/p/python-isort/python-isort.spec @@ -6,7 +6,7 @@ Name: python-%{modname} Version: 6.1.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Python utility / library to sort Python imports License: MIT diff --git a/specs/p/python-itsdangerous/python-itsdangerous.spec b/specs/p/python-itsdangerous/python-itsdangerous.spec index 283159dbce6..0e7cb12fea1 100644 --- a/specs/p/python-itsdangerous/python-itsdangerous.spec +++ b/specs/p/python-itsdangerous/python-itsdangerous.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 2.2.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Library for passing trusted data to untrusted environments License: BSD-3-Clause URL: https://itsdangerous.palletsprojects.com diff --git a/specs/p/python-jaraco-text/python-jaraco-text.spec b/specs/p/python-jaraco-text/python-jaraco-text.spec index 06fea64a23d..f1db25c3b67 100644 --- a/specs/p/python-jaraco-text/python-jaraco-text.spec +++ b/specs/p/python-jaraco-text/python-jaraco-text.spec @@ -19,7 +19,7 @@ Name: python-%{pkg_name} Version: 4.0.0 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Module for text manipulation License: MIT diff --git a/specs/p/python-jinja2/python-jinja2.spec b/specs/p/python-jinja2/python-jinja2.spec index d5d85350e25..7006f960236 100644 --- a/specs/p/python-jinja2/python-jinja2.spec +++ b/specs/p/python-jinja2/python-jinja2.spec @@ -5,7 +5,7 @@ Name: python-jinja2 Version: 3.1.6 -Release: 7%{?dist} +Release: 7%{?dist} Summary: General purpose template engine License: BSD-3-Clause URL: https://palletsprojects.com/p/jinja/ diff --git a/specs/p/python-jmespath/python-jmespath.spec b/specs/p/python-jmespath/python-jmespath.spec index a25e7774aff..672bbfee3f6 100644 --- a/specs/p/python-jmespath/python-jmespath.spec +++ b/specs/p/python-jmespath/python-jmespath.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 1.0.1 -Release: 14%{?dist} +Release: 14%{?dist} Summary: JSON Matching Expressions License: MIT diff --git a/specs/p/python-json-logger/python-json-logger.spec b/specs/p/python-json-logger/python-json-logger.spec index 59287965827..9ae1e4634f4 100644 --- a/specs/p/python-json-logger/python-json-logger.spec +++ b/specs/p/python-json-logger/python-json-logger.spec @@ -5,7 +5,7 @@ Name: python-json-logger Version: 3.3.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: A python library adding a json log formatter # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/p/python-jsonpatch/python-jsonpatch.spec b/specs/p/python-jsonpatch/python-jsonpatch.spec index c9003968f49..b412d1d950b 100644 --- a/specs/p/python-jsonpatch/python-jsonpatch.spec +++ b/specs/p/python-jsonpatch/python-jsonpatch.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 1.33 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Applying JSON Patches in Python License: BSD-3-Clause diff --git a/specs/p/python-jsonpickle/python-jsonpickle.spec b/specs/p/python-jsonpickle/python-jsonpickle.spec index 36105c5f164..7fb7edd19d6 100644 --- a/specs/p/python-jsonpickle/python-jsonpickle.spec +++ b/specs/p/python-jsonpickle/python-jsonpickle.spec @@ -6,7 +6,7 @@ Name: python-jsonpickle # to use a Python-compatible version number if you need to set an "uncommon" # version for this RPM. Version: 4.0.2 -Release: 7%{?dist} +Release: 7%{?dist} Summary: A module that allows any object to be serialized into JSON License: BSD-3-Clause diff --git a/specs/p/python-jsonpointer/python-jsonpointer.spec b/specs/p/python-jsonpointer/python-jsonpointer.spec index bae4139139e..0ab63c1ddea 100644 --- a/specs/p/python-jsonpointer/python-jsonpointer.spec +++ b/specs/p/python-jsonpointer/python-jsonpointer.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 2.4 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Resolve JSON Pointers in Python License: BSD-3-Clause diff --git a/specs/p/python-jsonschema-specifications/python-jsonschema-specifications.spec b/specs/p/python-jsonschema-specifications/python-jsonschema-specifications.spec index d016a0d4ffa..27743edfd7a 100644 --- a/specs/p/python-jsonschema-specifications/python-jsonschema-specifications.spec +++ b/specs/p/python-jsonschema-specifications/python-jsonschema-specifications.spec @@ -18,7 +18,7 @@ referencing-based Schema Registry.} Name: python-%{pypi_name} Summary: JSON Schema meta-schemas and vocabularies, exposed as a Registry Version: 2024.10.1 -Release: 7%{?dist} +Release: 7%{?dist} License: MIT URL: https://github.com/python-jsonschema/jsonschema-specifications Source0: %{pypi_source %{pkg_name}} diff --git a/specs/p/python-jsonschema/python-jsonschema.spec b/specs/p/python-jsonschema/python-jsonschema.spec index e89b0b9f635..0ebaf73a7c5 100644 --- a/specs/p/python-jsonschema/python-jsonschema.spec +++ b/specs/p/python-jsonschema/python-jsonschema.spec @@ -15,7 +15,7 @@ jsonschema is an implementation of JSON Schema for Python (supporting Name: python-%{pypi_name} Summary: Implementation of JSON Schema validation for Python Version: 4.23.0 -Release: 7%{?dist} +Release: 7%{?dist} License: MIT URL: https://github.com/Julian/jsonschema Source0: %{pypi_source} diff --git a/specs/p/python-junitxml/python-junitxml.spec b/specs/p/python-junitxml/python-junitxml.spec index 53f52a4a15f..abae50d7b63 100644 --- a/specs/p/python-junitxml/python-junitxml.spec +++ b/specs/p/python-junitxml/python-junitxml.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 0.7 -Release: 44%{?dist} +Release: 44%{?dist} Summary: PyJUnitXML, a pyunit extension to output JUnit compatible XML License: LGPL-3.0-only diff --git a/specs/p/python-jwt/python-jwt.spec b/specs/p/python-jwt/python-jwt.spec index 59a4f60d96b..b73ea89b808 100644 --- a/specs/p/python-jwt/python-jwt.spec +++ b/specs/p/python-jwt/python-jwt.spec @@ -17,7 +17,7 @@ encrypted JSON objects.} Name: python-%{pkgname} Version: 2.8.0 -Release: 8%{?dist} +Release: 8%{?dist} Summary: JSON Web Token implementation in Python License: MIT URL: https://github.com/jpadilla/pyjwt diff --git a/specs/p/python-kdcproxy/python-kdcproxy.spec b/specs/p/python-kdcproxy/python-kdcproxy.spec index fa996c5c43e..4d4c7c50273 100644 --- a/specs/p/python-kdcproxy/python-kdcproxy.spec +++ b/specs/p/python-kdcproxy/python-kdcproxy.spec @@ -5,7 +5,7 @@ Name: python-%{realname} Version: 1.1.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: MS-KKDCP (kerberos proxy) WSGI module License: MIT diff --git a/specs/p/python-keystoneauth1/python-keystoneauth1.spec b/specs/p/python-keystoneauth1/python-keystoneauth1.spec index 859a42b827a..fe9040c6be9 100644 --- a/specs/p/python-keystoneauth1/python-keystoneauth1.spec +++ b/specs/p/python-keystoneauth1/python-keystoneauth1.spec @@ -19,7 +19,7 @@ new clients. Name: python-%{pypi_name} Version: 5.8.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Authentication Library for OpenStack Clients License: Apache-2.0 URL: https://pypi.io/pypi/%{pypi_name} diff --git a/specs/p/python-keystoneclient/python-keystoneclient.spec b/specs/p/python-keystoneclient/python-keystoneclient.spec index b32e957ab3b..e84938460b0 100644 --- a/specs/p/python-keystoneclient/python-keystoneclient.spec +++ b/specs/p/python-keystoneclient/python-keystoneclient.spec @@ -21,7 +21,7 @@ Identity API. Name: python-keystoneclient Epoch: 1 Version: 5.5.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Client library for OpenStack Identity API License: Apache-2.0 URL: https://launchpad.net/python-keystoneclient diff --git a/specs/p/python-kmod/python-kmod.spec b/specs/p/python-kmod/python-kmod.spec index d4802afd1e5..18534d84b21 100644 --- a/specs/p/python-kmod/python-kmod.spec +++ b/specs/p/python-kmod/python-kmod.spec @@ -5,7 +5,7 @@ Name: python-kmod License: LGPL-2.0-or-later Summary: Python module to work with kernel modules Version: 0.9.2 -Release: 12%{?dist} +Release: 12%{?dist} URL: https://github.com/maurizio-lombardi/python-kmod/ Source0: https://github.com/downloads/maurizio-lombardi/%{name}/%{name}-%{version}.tar.gz BuildRequires: gcc diff --git a/specs/p/python-kubernetes/python-kubernetes.spec b/specs/p/python-kubernetes/python-kubernetes.spec index 1f189a1fbb8..77c64411062 100644 --- a/specs/p/python-kubernetes/python-kubernetes.spec +++ b/specs/p/python-kubernetes/python-kubernetes.spec @@ -21,7 +21,7 @@ Name: python-%{library} Epoch: 1 Version: 34.1.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Python client for the kubernetes API. # Automatically converted from old format: ASL 2.0 - review is highly recommended. License: Apache-2.0 diff --git a/specs/p/python-langdetect/python-langdetect.spec b/specs/p/python-langdetect/python-langdetect.spec index c9870653626..f796b676f24 100644 --- a/specs/p/python-langdetect/python-langdetect.spec +++ b/specs/p/python-langdetect/python-langdetect.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 1.0.9 -Release: 16%{?dist} +Release: 16%{?dist} Summary: Language detection library ported from Google's language-detection # Both python-langdetect and language-detection are under ASL 2.0 diff --git a/specs/p/python-ldap3/python-ldap3.spec b/specs/p/python-ldap3/python-ldap3.spec index 27093fef952..60766c1bb00 100644 --- a/specs/p/python-ldap3/python-ldap3.spec +++ b/specs/p/python-ldap3/python-ldap3.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 2.9.1 -Release: 16%{?dist} +Release: 16%{?dist} Summary: Strictly RFC 4511 conforming LDAP V3 pure Python client License: LGPL-3.0-or-later diff --git a/specs/p/python-lesscpy/python-lesscpy.spec b/specs/p/python-lesscpy/python-lesscpy.spec index 96a983e372f..c7922b084ca 100644 --- a/specs/p/python-lesscpy/python-lesscpy.spec +++ b/specs/p/python-lesscpy/python-lesscpy.spec @@ -9,7 +9,7 @@ Name: python-%{pypi_name} Version: 0.14.0 -Release: 23%{?dist} +Release: 23%{?dist} Summary: Lesscss compiler License: MIT diff --git a/specs/p/python-lexicon/python-lexicon.spec b/specs/p/python-lexicon/python-lexicon.spec index 4609b3c714f..5808571468d 100644 --- a/specs/p/python-lexicon/python-lexicon.spec +++ b/specs/p/python-lexicon/python-lexicon.spec @@ -5,7 +5,7 @@ Name: python-lexicon Version: 3.0.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Powerful dict subclass(es) with aliasing and attribute access License: BSD-2-Clause URL: https://github.com/bitprophet/lexicon diff --git a/specs/p/python-libevdev/python-libevdev.spec b/specs/p/python-libevdev/python-libevdev.spec index 930dfe8b69d..364fde82881 100644 --- a/specs/p/python-libevdev/python-libevdev.spec +++ b/specs/p/python-libevdev/python-libevdev.spec @@ -3,7 +3,7 @@ Name: python-libevdev Version: 0.12 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Python bindings to the libevdev evdev device wrapper library # SPDX diff --git a/specs/p/python-libnacl/python-libnacl.spec b/specs/p/python-libnacl/python-libnacl.spec index 64d03e058cf..6b476564628 100644 --- a/specs/p/python-libnacl/python-libnacl.spec +++ b/specs/p/python-libnacl/python-libnacl.spec @@ -3,7 +3,7 @@ Name: python-libnacl Version: 2.1.0 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Python bindings for libsodium based on ctypes # Automatically converted from old format: ASL 2.0 - review is highly recommended. diff --git a/specs/p/python-linkify-it-py/python-linkify-it-py.spec b/specs/p/python-linkify-it-py/python-linkify-it-py.spec index 085306d4b22..e91ff86d7c9 100644 --- a/specs/p/python-linkify-it-py/python-linkify-it-py.spec +++ b/specs/p/python-linkify-it-py/python-linkify-it-py.spec @@ -8,7 +8,7 @@ Name: python-linkify-it-py Version: 2.0.3 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Link recognition library with full Unicode support License: MIT diff --git a/specs/p/python-lunr/python-lunr.spec b/specs/p/python-lunr/python-lunr.spec index 41b22a4210a..c16bee5ec7c 100644 --- a/specs/p/python-lunr/python-lunr.spec +++ b/specs/p/python-lunr/python-lunr.spec @@ -3,7 +3,7 @@ Name: python-lunr Version: 0.8.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: A Python implementation of Lunr.js License: MIT diff --git a/specs/p/python-manilaclient/python-manilaclient.spec b/specs/p/python-manilaclient/python-manilaclient.spec index b193dc46022..98018dc5452 100644 --- a/specs/p/python-manilaclient/python-manilaclient.spec +++ b/specs/p/python-manilaclient/python-manilaclient.spec @@ -20,7 +20,7 @@ Share API. Name: python-manilaclient Version: 5.0.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Client Library for OpenStack Share API License: Apache-2.0 URL: https://pypi.io/pypi/%{name} diff --git a/specs/p/python-manuel/python-manuel.spec b/specs/p/python-manuel/python-manuel.spec index 8c96cb7773c..6a9ba5e07ea 100644 --- a/specs/p/python-manuel/python-manuel.spec +++ b/specs/p/python-manuel/python-manuel.spec @@ -3,7 +3,7 @@ Name: python-manuel Version: 1.12.4 -Release: 15%{?dist} +Release: 15%{?dist} Summary: Build tested documentation # The content is Apache-2.0. Other licenses are due to files copied in by diff --git a/specs/p/python-markdown-it-py/python-markdown-it-py.spec b/specs/p/python-markdown-it-py/python-markdown-it-py.spec index ee1cfdc1c8f..91b03f0e903 100644 --- a/specs/p/python-markdown-it-py/python-markdown-it-py.spec +++ b/specs/p/python-markdown-it-py/python-markdown-it-py.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 3.0.0 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Python port of markdown-it # SPDX diff --git a/specs/p/python-markdown_2/python-markdown_2.spec b/specs/p/python-markdown_2/python-markdown_2.spec index 99ac82f4687..924a7c96805 100644 --- a/specs/p/python-markdown_2/python-markdown_2.spec +++ b/specs/p/python-markdown_2/python-markdown_2.spec @@ -6,7 +6,7 @@ Name: python-%{modname}_2 Version: 3.4.4 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Python implementation of Markdown License: BSD-3-Clause diff --git a/specs/p/python-matplotlib-inline/python-matplotlib-inline.spec b/specs/p/python-matplotlib-inline/python-matplotlib-inline.spec index 62a63282f76..2ced4954acc 100644 --- a/specs/p/python-matplotlib-inline/python-matplotlib-inline.spec +++ b/specs/p/python-matplotlib-inline/python-matplotlib-inline.spec @@ -3,7 +3,7 @@ Name: python-matplotlib-inline Version: 0.1.7 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Inline Matplotlib backend for Jupyter # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/p/python-mdurl/python-mdurl.spec b/specs/p/python-mdurl/python-mdurl.spec index 2e3171fd172..67da35ead79 100644 --- a/specs/p/python-mdurl/python-mdurl.spec +++ b/specs/p/python-mdurl/python-mdurl.spec @@ -3,7 +3,7 @@ Name: python-mdurl Version: 0.1.2 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Markdown URL utilities # SPDX diff --git a/specs/p/python-memcached/python-memcached.spec b/specs/p/python-memcached/python-memcached.spec index 4a59301e3d1..ce577453dbb 100644 --- a/specs/p/python-memcached/python-memcached.spec +++ b/specs/p/python-memcached/python-memcached.spec @@ -3,7 +3,7 @@ Name: python-memcached Version: 1.62 -Release: 3%{?dist} +Release: 3%{?dist} Summary: A Python memcached client library # Automatically converted from old format: Python - review is highly recommended. diff --git a/specs/p/python-mercantile/python-mercantile.spec b/specs/p/python-mercantile/python-mercantile.spec index 3487a588248..3faa8154c24 100644 --- a/specs/p/python-mercantile/python-mercantile.spec +++ b/specs/p/python-mercantile/python-mercantile.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 1.2.1 -Release: 20%{?dist} +Release: 20%{?dist} Summary: Web Mercator XYZ tile utilities License: BSD-3-Clause diff --git a/specs/p/python-mistralclient/python-mistralclient.spec b/specs/p/python-mistralclient/python-mistralclient.spec index 0d45f44a2e9..cfe4612e110 100644 --- a/specs/p/python-mistralclient/python-mistralclient.spec +++ b/specs/p/python-mistralclient/python-mistralclient.spec @@ -26,7 +26,7 @@ and Command Line Interface (CLI) library. Name: python-%{pypi_name} Version: 5.3.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Python client for Mistral REST API License: Apache-2.0 diff --git a/specs/p/python-msgpack/python-msgpack.spec b/specs/p/python-msgpack/python-msgpack.spec index bef0e80bb08..2aea4241f78 100644 --- a/specs/p/python-msgpack/python-msgpack.spec +++ b/specs/p/python-msgpack/python-msgpack.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 1.1.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Python MessagePack (de)serializer License: Apache-2.0 diff --git a/specs/p/python-multilib/python-multilib.spec b/specs/p/python-multilib/python-multilib.spec index 77eb49afaf9..5f886d166f5 100644 --- a/specs/p/python-multilib/python-multilib.spec +++ b/specs/p/python-multilib/python-multilib.spec @@ -3,7 +3,7 @@ Name: python-multilib Version: 1.3 -Release: 6%{?dist} +Release: 6%{?dist} Summary: A module for determining if a package is multilib or not License: GPL-2.0-only URL: https://pagure.io/releng/python-multilib diff --git a/specs/p/python-mypy_extensions/python-mypy_extensions.spec b/specs/p/python-mypy_extensions/python-mypy_extensions.spec index 777a310f582..2571a0b2637 100644 --- a/specs/p/python-mypy_extensions/python-mypy_extensions.spec +++ b/specs/p/python-mypy_extensions/python-mypy_extensions.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 1.1.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Extensions for mypy (separated out from mypy/extensions) License: MIT diff --git a/specs/p/python-mysqlclient/python-mysqlclient.spec b/specs/p/python-mysqlclient/python-mysqlclient.spec index 64e1fc378ad..04dba0faff1 100644 --- a/specs/p/python-mysqlclient/python-mysqlclient.spec +++ b/specs/p/python-mysqlclient/python-mysqlclient.spec @@ -6,7 +6,7 @@ Name: python-%{pypi_name} Version: 2.2.5 -Release: 7%{?dist} +Release: 7%{?dist} Summary: MySQL/mariaDB database connector for Python License: GPL-2.0-only diff --git a/specs/p/python-natsort/python-natsort.spec b/specs/p/python-natsort/python-natsort.spec index fad5193f52c..f23a120ada5 100644 --- a/specs/p/python-natsort/python-natsort.spec +++ b/specs/p/python-natsort/python-natsort.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 8.4.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Python library that sorts lists using the "natural order" sort License: MIT diff --git a/specs/p/python-nbformat/python-nbformat.spec b/specs/p/python-nbformat/python-nbformat.spec index c561967dd53..5e8458c6193 100644 --- a/specs/p/python-nbformat/python-nbformat.spec +++ b/specs/p/python-nbformat/python-nbformat.spec @@ -9,7 +9,7 @@ Name: python-%{srcname} Version: 5.10.4 -Release: 6%{?dist} +Release: 6%{?dist} Summary: The Jupyter Notebook format # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/p/python-netaddr/python-netaddr.spec b/specs/p/python-netaddr/python-netaddr.spec index fb3a1632ac3..185ff4b3759 100644 --- a/specs/p/python-netaddr/python-netaddr.spec +++ b/specs/p/python-netaddr/python-netaddr.spec @@ -5,7 +5,7 @@ Name: python-netaddr Version: 1.3.0 -Release: 11%{?dist} +Release: 11%{?dist} Summary: A pure Python network address representation and manipulation library License: BSD-3-Clause diff --git a/specs/p/python-netifaces/python-netifaces.spec b/specs/p/python-netifaces/python-netifaces.spec index 2d20d5f4f1d..4bd7af9da91 100644 --- a/specs/p/python-netifaces/python-netifaces.spec +++ b/specs/p/python-netifaces/python-netifaces.spec @@ -5,7 +5,7 @@ Name: python-netifaces Version: 0.11.0 -Release: 16%{?dist} +Release: 16%{?dist} Summary: Python library to retrieve information about network interfaces License: MIT URL: https://pypi.python.org/pypi/netifaces diff --git a/specs/p/python-neutronclient/python-neutronclient.spec b/specs/p/python-neutronclient/python-neutronclient.spec index a1d27bd2d56..b8ce69662f0 100644 --- a/specs/p/python-neutronclient/python-neutronclient.spec +++ b/specs/p/python-neutronclient/python-neutronclient.spec @@ -25,7 +25,7 @@ Neutron's API. Name: python-neutronclient Version: 11.3.1 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Python API and CLI for OpenStack Neutron License: Apache-2.0 diff --git a/specs/p/python-nltk/python-nltk.spec b/specs/p/python-nltk/python-nltk.spec index 0e8e32acef0..3da34cce880 100644 --- a/specs/p/python-nltk/python-nltk.spec +++ b/specs/p/python-nltk/python-nltk.spec @@ -5,7 +5,7 @@ Name: python-nltk Epoch: 1 Version: 3.9.1 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Natural Language Toolkit # The entire source code is ASL 2.0 except nltk/stem/porter.py is diff --git a/specs/p/python-notebook-shim/python-notebook-shim.spec b/specs/p/python-notebook-shim/python-notebook-shim.spec index b0d7c1bb08b..2c8df04d76a 100644 --- a/specs/p/python-notebook-shim/python-notebook-shim.spec +++ b/specs/p/python-notebook-shim/python-notebook-shim.spec @@ -3,7 +3,7 @@ Name: python-notebook-shim Version: 0.2.4 -Release: 9%{?dist} +Release: 9%{?dist} Summary: A shim layer for notebook traits and config License: BSD-3-Clause URL: https://pypi.org/project/notebook-shim/ diff --git a/specs/p/python-novaclient/python-novaclient.spec b/specs/p/python-novaclient/python-novaclient.spec index 8b9b6aaadf3..510941ec7e5 100644 --- a/specs/p/python-novaclient/python-novaclient.spec +++ b/specs/p/python-novaclient/python-novaclient.spec @@ -26,7 +26,7 @@ the OpenStack Nova API. Name: python-novaclient Epoch: 1 Version: 18.7.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Python API and CLI for OpenStack Nova License: Apache-2.0 URL: https://launchpad.net/%{name} diff --git a/specs/p/python-numpydoc/python-numpydoc.spec b/specs/p/python-numpydoc/python-numpydoc.spec index 409a1d73d09..4c9aef783cd 100644 --- a/specs/p/python-numpydoc/python-numpydoc.spec +++ b/specs/p/python-numpydoc/python-numpydoc.spec @@ -3,7 +3,7 @@ Name: python-numpydoc Version: 1.8.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Sphinx extension to support docstrings in NumPy format License: BSD-2-Clause diff --git a/specs/p/python-oauth2client/python-oauth2client.spec b/specs/p/python-oauth2client/python-oauth2client.spec index e434febeb7a..75d11aafeec 100644 --- a/specs/p/python-oauth2client/python-oauth2client.spec +++ b/specs/p/python-oauth2client/python-oauth2client.spec @@ -8,7 +8,7 @@ Name: python-%{srcname} Version: 4.1.3 -Release: 33%{?dist} +Release: 33%{?dist} Summary: %{sum} License: Apache-2.0 diff --git a/specs/p/python-oauthlib/python-oauthlib.spec b/specs/p/python-oauthlib/python-oauthlib.spec index 3c3901f317c..7677d158413 100644 --- a/specs/p/python-oauthlib/python-oauthlib.spec +++ b/specs/p/python-oauthlib/python-oauthlib.spec @@ -6,7 +6,7 @@ Name: python-oauthlib Version: 3.2.2 -Release: 11%{?dist} +Release: 11%{?dist} Summary: An implementation of the OAuth request-signing logic License: BSD-3-Clause diff --git a/specs/p/python-octaviaclient/python-octaviaclient.spec b/specs/p/python-octaviaclient/python-octaviaclient.spec index e114e4d9b42..34b6a288292 100644 --- a/specs/p/python-octaviaclient/python-octaviaclient.spec +++ b/specs/p/python-octaviaclient/python-octaviaclient.spec @@ -19,7 +19,7 @@ Client for OpenStack Octavia (Load Balancer as a Service) Name: python-%{pypi_name} Version: 3.8.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Client for OpenStack Octavia (Load Balancer as a Service) License: Apache-2.0 diff --git a/specs/p/python-olefile/python-olefile.spec b/specs/p/python-olefile/python-olefile.spec index ffd7ce3215f..d79f4c85f9d 100644 --- a/specs/p/python-olefile/python-olefile.spec +++ b/specs/p/python-olefile/python-olefile.spec @@ -3,7 +3,7 @@ Name: python-olefile Version: 0.47 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Python package to parse, read and write Microsoft OLE2 files %global srcname olefile diff --git a/specs/p/python-openpyxl/python-openpyxl.spec b/specs/p/python-openpyxl/python-openpyxl.spec index 00c4fa6a7f9..bed6d534ea1 100644 --- a/specs/p/python-openpyxl/python-openpyxl.spec +++ b/specs/p/python-openpyxl/python-openpyxl.spec @@ -10,7 +10,7 @@ Office Open XML format. Name: python-%{pypi_name} Version: 3.1.5 -Release: 5%{?dist} +Release: 5%{?dist} Summary: %{sum} # Automatically converted from old format: MIT and Python - review is highly recommended. diff --git a/specs/p/python-openshift/python-openshift.spec b/specs/p/python-openshift/python-openshift.spec index 17210ca4335..af19625941e 100644 --- a/specs/p/python-openshift/python-openshift.spec +++ b/specs/p/python-openshift/python-openshift.spec @@ -30,7 +30,7 @@ Name: python-%{library} Version: 0.13.2 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Python client for the OpenShift API # Automatically converted from old format: ASL 2.0 - review is highly recommended. License: Apache-2.0 diff --git a/specs/p/python-openstackclient/python-openstackclient.spec b/specs/p/python-openstackclient/python-openstackclient.spec index 6bb26ba97a8..8d09bf9e10c 100644 --- a/specs/p/python-openstackclient/python-openstackclient.spec +++ b/specs/p/python-openstackclient/python-openstackclient.spec @@ -30,7 +30,7 @@ actual REST API client actions. Name: python-%{sname} Version: 7.1.2 -Release: 10%{?dist} +Release: 10%{?dist} Summary: OpenStack Command-line Client License: Apache-2.0 diff --git a/specs/p/python-openstackdocstheme/python-openstackdocstheme.spec b/specs/p/python-openstackdocstheme/python-openstackdocstheme.spec index dae1eedfb21..fb297478ea9 100644 --- a/specs/p/python-openstackdocstheme/python-openstackdocstheme.spec +++ b/specs/p/python-openstackdocstheme/python-openstackdocstheme.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 3.0.0 -Release: 15%{?dist} +Release: 15%{?dist} Summary: OpenStack Docs Theme # Automatically converted from old format: ASL 2.0 - review is highly recommended. diff --git a/specs/p/python-openstacksdk/python-openstacksdk.spec b/specs/p/python-openstacksdk/python-openstacksdk.spec index 1e629d2a8b9..5961ce03f41 100644 --- a/specs/p/python-openstacksdk/python-openstacksdk.spec +++ b/specs/p/python-openstacksdk/python-openstacksdk.spec @@ -25,7 +25,7 @@ clouds - test files Name: python-%{pypi_name} Version: 4.0.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: An SDK for building applications to work with OpenStack License: Apache-2.0 diff --git a/specs/p/python-orderly-set/python-orderly-set.spec b/specs/p/python-orderly-set/python-orderly-set.spec index 8375eda012a..4f713d09f1a 100644 --- a/specs/p/python-orderly-set/python-orderly-set.spec +++ b/specs/p/python-orderly-set/python-orderly-set.spec @@ -6,7 +6,7 @@ Name: python-%{pypi_name} Version: %{pypi_version} -Release: 4%{?dist} +Release: 4%{?dist} Summary: A package containing multiple implementations of Ordered Set License: MIT URL: https://github.com/seperman/orderly-set diff --git a/specs/p/python-os-client-config/python-os-client-config.spec b/specs/p/python-os-client-config/python-os-client-config.spec index a6adf8240d7..06a7472a2bf 100644 --- a/specs/p/python-os-client-config/python-os-client-config.spec +++ b/specs/p/python-os-client-config/python-os-client-config.spec @@ -22,7 +22,7 @@ have to know extra info to use OpenStack \ Name: python-%{pypi_name} Version: 2.1.0 -Release: 20%{?dist} +Release: 20%{?dist} Summary: OpenStack Client Configuration Library # Automatically converted from old format: ASL 2.0 - review is highly recommended. License: Apache-2.0 diff --git a/specs/p/python-os-service-types/python-os-service-types.spec b/specs/p/python-os-service-types/python-os-service-types.spec index 9f501461a43..344be179d69 100644 --- a/specs/p/python-os-service-types/python-os-service-types.spec +++ b/specs/p/python-os-service-types/python-os-service-types.spec @@ -33,7 +33,7 @@ and local caching of the fetched data. Name: python-%{pypi_name} Version: 1.7.0 -Release: 25%{?dist} +Release: 25%{?dist} Summary: Python library for consuming OpenStack sevice-types-authority data # Automatically converted from old format: ASL 2.0 - review is highly recommended. diff --git a/specs/p/python-osc-lib/python-osc-lib.spec b/specs/p/python-osc-lib/python-osc-lib.spec index 61315912b7b..7eda7c9cfb1 100644 --- a/specs/p/python-osc-lib/python-osc-lib.spec +++ b/specs/p/python-osc-lib/python-osc-lib.spec @@ -24,7 +24,7 @@ Name: python-%{library} Version: 3.1.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: OpenStack library for writing OSC plugins License: Apache-2.0 URL: https://github.com/openstack/%{library}/ diff --git a/specs/p/python-oslo-config/python-oslo-config.spec b/specs/p/python-oslo-config/python-oslo-config.spec index 9b53e4dcb3e..f189c56c89b 100644 --- a/specs/p/python-oslo-config/python-oslo-config.spec +++ b/specs/p/python-oslo-config/python-oslo-config.spec @@ -26,7 +26,7 @@ Name: python-oslo-config Epoch: 2 Version: 9.6.0 -Release: 8%{?dist} +Release: 8%{?dist} Summary: OpenStack common configuration library Group: Development/Languages diff --git a/specs/p/python-oslo-i18n/python-oslo-i18n.spec b/specs/p/python-oslo-i18n/python-oslo-i18n.spec index f509560f567..31fc33b97a4 100644 --- a/specs/p/python-oslo-i18n/python-oslo-i18n.spec +++ b/specs/p/python-oslo-i18n/python-oslo-i18n.spec @@ -22,7 +22,7 @@ or library. Name: python-oslo-i18n Version: 6.4.0 -Release: 8%{?dist} +Release: 8%{?dist} Summary: OpenStack i18n library License: Apache-2.0 URL: https://github.com/openstack/%{pypi_name} diff --git a/specs/p/python-oslo-log/python-oslo-log.spec b/specs/p/python-oslo-log/python-oslo-log.spec index 864d1ace61d..f1e91f09164 100644 --- a/specs/p/python-oslo-log/python-oslo-log.spec +++ b/specs/p/python-oslo-log/python-oslo-log.spec @@ -30,7 +30,7 @@ Tests for the Oslo Log handling library. Name: python-oslo-log Version: 6.1.2 -Release: 9%{?dist} +Release: 9%{?dist} Summary: OpenStack Oslo Log library License: Apache-2.0 diff --git a/specs/p/python-oslo-serialization/python-oslo-serialization.spec b/specs/p/python-oslo-serialization/python-oslo-serialization.spec index 9474dae01d7..482e30d827f 100644 --- a/specs/p/python-oslo-serialization/python-oslo-serialization.spec +++ b/specs/p/python-oslo-serialization/python-oslo-serialization.spec @@ -24,7 +24,7 @@ storable formats. Name: python-%{pkg_name} Version: 5.5.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: OpenStack oslo.serialization library License: Apache-2.0 diff --git a/specs/p/python-oslo-utils/python-oslo-utils.spec b/specs/p/python-oslo-utils/python-oslo-utils.spec index 6c043e92dbc..999ba963891 100644 --- a/specs/p/python-oslo-utils/python-oslo-utils.spec +++ b/specs/p/python-oslo-utils/python-oslo-utils.spec @@ -29,7 +29,7 @@ The OpenStack Oslo Utility library. \ Name: python-oslo-utils Version: 7.3.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: OpenStack Oslo Utility library License: Apache-2.0 diff --git a/specs/p/python-oslotest/python-oslotest.spec b/specs/p/python-oslotest/python-oslotest.spec index cd276d09dbb..4f3951645ca 100644 --- a/specs/p/python-oslotest/python-oslotest.spec +++ b/specs/p/python-oslotest/python-oslotest.spec @@ -22,7 +22,7 @@ Name: python-%{pypi_name} Version: 5.0.0 -Release: 12%{?dist} +Release: 12%{?dist} Summary: OpenStack test framework License: Apache-2.0 diff --git a/specs/p/python-pam/python-pam.spec b/specs/p/python-pam/python-pam.spec index dffe94ee5d5..0fab297015f 100644 --- a/specs/p/python-pam/python-pam.spec +++ b/specs/p/python-pam/python-pam.spec @@ -3,7 +3,7 @@ Name: python-pam Version: 2.0.2 -Release: 17%{?dist} +Release: 17%{?dist} Summary: Pure Python interface to the Pluggable Authentication Modules system on Linux License: MIT URL: https://github.com/FirefighterBlu3/python-pam diff --git a/specs/p/python-pandas/python-pandas.spec b/specs/p/python-pandas/python-pandas.spec index 39053664d1c..585895b6a53 100644 --- a/specs/p/python-pandas/python-pandas.spec +++ b/specs/p/python-pandas/python-pandas.spec @@ -19,7 +19,7 @@ Name: python-pandas Version: 2.3.3 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Python library providing high-performance data analysis tools # Drop support for i686 in preparation for `libarrow` diff --git a/specs/p/python-paramiko/python-paramiko.spec b/specs/p/python-paramiko/python-paramiko.spec index 7c273a4370c..ce315c1597d 100644 --- a/specs/p/python-paramiko/python-paramiko.spec +++ b/specs/p/python-paramiko/python-paramiko.spec @@ -3,7 +3,7 @@ Name: python-paramiko Version: 3.5.1 -Release: 7%{?dist} +Release: 7%{?dist} Summary: SSH2 protocol library for python # No version specified diff --git a/specs/p/python-parsel/python-parsel.spec b/specs/p/python-parsel/python-parsel.spec index 0e611ec155e..247bff1788c 100644 --- a/specs/p/python-parsel/python-parsel.spec +++ b/specs/p/python-parsel/python-parsel.spec @@ -5,7 +5,7 @@ Name: python-%{modname} Version: 1.10.0 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Library to extract data from HTML and XML using XPath and CSS selectors License: BSD-3-Clause diff --git a/specs/p/python-passlib/python-passlib.spec b/specs/p/python-passlib/python-passlib.spec index 1fa278718f7..0a3c3b6424b 100644 --- a/specs/p/python-passlib/python-passlib.spec +++ b/specs/p/python-passlib/python-passlib.spec @@ -3,7 +3,7 @@ Name: python-passlib Version: 1.7.4 -Release: 26%{?dist} +Release: 26%{?dist} Summary: Comprehensive password hashing framework supporting over 20 schemes # license breakdown is described in LICENSE file diff --git a/specs/p/python-paste-deploy/python-paste-deploy.spec b/specs/p/python-paste-deploy/python-paste-deploy.spec index a724a74dce3..4150d6ba960 100644 --- a/specs/p/python-paste-deploy/python-paste-deploy.spec +++ b/specs/p/python-paste-deploy/python-paste-deploy.spec @@ -10,7 +10,7 @@ this configuration file. Name: python-paste-deploy Version: 3.1.0 -Release: 13%{?dist} +Release: 13%{?dist} Summary: %{sum} License: MIT URL: https://github.com/Pylons/pastedeploy diff --git a/specs/p/python-paste-script/python-paste-script.spec b/specs/p/python-paste-script/python-paste-script.spec index ff509224368..992bc34125f 100644 --- a/specs/p/python-paste-script/python-paste-script.spec +++ b/specs/p/python-paste-script/python-paste-script.spec @@ -13,7 +13,7 @@ Built-in features:\ Name: python-paste-script Version: 3.3.0 -Release: 12%{?dist} +Release: 12%{?dist} BuildArch: noarch # paste/script/wsgiserver/ is BSD licensed from CherryPy diff --git a/specs/p/python-paste/python-paste.spec b/specs/p/python-paste/python-paste.spec index 5428aa2ae63..a4517d2688f 100644 --- a/specs/p/python-paste/python-paste.spec +++ b/specs/p/python-paste/python-paste.spec @@ -9,7 +9,7 @@ interfaces. Name: python-paste Version: 3.10.1 -Release: 12%{?dist} +Release: 12%{?dist} BuildArch: noarch # Most of the code is MIT diff --git a/specs/p/python-path/python-path.spec b/specs/p/python-path/python-path.spec index e9ee045bce4..a5a1afce4fd 100644 --- a/specs/p/python-path/python-path.spec +++ b/specs/p/python-path/python-path.spec @@ -5,7 +5,7 @@ Name: python-path Version: 17.1.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Python module wrapper for os.path License: MIT diff --git a/specs/p/python-patiencediff/python-patiencediff.spec b/specs/p/python-patiencediff/python-patiencediff.spec index 064fe254903..9515107586c 100644 --- a/specs/p/python-patiencediff/python-patiencediff.spec +++ b/specs/p/python-patiencediff/python-patiencediff.spec @@ -4,7 +4,7 @@ %global pypi_name patiencediff Name: python-patiencediff Version: 0.2.15 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Python implementation of the patiencediff algorithm License: GPL-2.0-or-later diff --git a/specs/p/python-pecan/python-pecan.spec b/specs/p/python-pecan/python-pecan.spec index 1196cdb6113..502b51bdbb6 100644 --- a/specs/p/python-pecan/python-pecan.spec +++ b/specs/p/python-pecan/python-pecan.spec @@ -7,7 +7,7 @@ Name: python-%{pypi_name} Version: 1.7.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: A lean WSGI object-dispatching web framework # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/p/python-pendulum/python-pendulum.spec b/specs/p/python-pendulum/python-pendulum.spec index ef7c716ea4e..35bd870ea5c 100644 --- a/specs/p/python-pendulum/python-pendulum.spec +++ b/specs/p/python-pendulum/python-pendulum.spec @@ -10,7 +10,7 @@ Name: python-pendulum Version: 3.2.0~dev0^%{snapdate}git%{sub %{commit} 1 7} -Release: 2%{?dist} +Release: 2%{?dist} Summary: Python datetimes made easy License: MIT diff --git a/specs/p/python-pexpect/python-pexpect.spec b/specs/p/python-pexpect/python-pexpect.spec index 4a4f7a21fd7..2ad0c996d97 100644 --- a/specs/p/python-pexpect/python-pexpect.spec +++ b/specs/p/python-pexpect/python-pexpect.spec @@ -8,7 +8,7 @@ Name: python-%{modname} Summary: Unicode-aware Pure Python Expect-like module Version: 4.9.0 -Release: 15%{?dist} +Release: 15%{?dist} # All the files have ISC license except the # following two that have BSD license: diff --git a/specs/p/python-phonenumbers/python-phonenumbers.spec b/specs/p/python-phonenumbers/python-phonenumbers.spec index c84957e5a68..f0f2628cc5c 100644 --- a/specs/p/python-phonenumbers/python-phonenumbers.spec +++ b/specs/p/python-phonenumbers/python-phonenumbers.spec @@ -10,7 +10,7 @@ numbers.\ Name: python-%{pypi_name} Version: 8.13.48 -Release: 7%{?dist} +Release: 7%{?dist} Summary: A Python port of Google's libphonenumber License: Apache-2.0 URL: https://github.com/daviddrysdale/%{name} diff --git a/specs/p/python-pickleshare/python-pickleshare.spec b/specs/p/python-pickleshare/python-pickleshare.spec index 97dd6e9ff85..3fe246fca13 100644 --- a/specs/p/python-pickleshare/python-pickleshare.spec +++ b/specs/p/python-pickleshare/python-pickleshare.spec @@ -3,7 +3,7 @@ Name: python-pickleshare Version: 0.7.5 -Release: 24%{?dist} +Release: 24%{?dist} Summary: Tiny 'shelve'-like database with concurrency support License: MIT diff --git a/specs/p/python-pid/python-pid.spec b/specs/p/python-pid/python-pid.spec index 3918f203c8a..6cff17cb36d 100644 --- a/specs/p/python-pid/python-pid.spec +++ b/specs/p/python-pid/python-pid.spec @@ -15,7 +15,7 @@ PidFile can also be used as a context manager or a decorator.} Name: python-%{srcname} Version: 3.0.4 -Release: 5%{?dist} +Release: 5%{?dist} Summary: PID file management library License: Apache-2.0 diff --git a/specs/p/python-pillow/python-pillow.spec b/specs/p/python-pillow/python-pillow.spec index a728c0063b9..b3b1db73916 100644 --- a/specs/p/python-pillow/python-pillow.spec +++ b/specs/p/python-pillow/python-pillow.spec @@ -24,7 +24,7 @@ Name: python-%{srcname} Version: 11.3.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Python image processing library # License: see http://www.pythonware.com/products/pil/license.htm diff --git a/specs/p/python-pluggy/python-pluggy.spec b/specs/p/python-pluggy/python-pluggy.spec index 98642f932fb..105ac37d952 100644 --- a/specs/p/python-pluggy/python-pluggy.spec +++ b/specs/p/python-pluggy/python-pluggy.spec @@ -6,7 +6,7 @@ Name: python-pluggy Version: 1.6.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: The plugin manager stripped of pytest specific details # SPDX diff --git a/specs/p/python-ply/python-ply.spec b/specs/p/python-ply/python-ply.spec index a2e7b2cd4b4..f92f79e6c14 100644 --- a/specs/p/python-ply/python-ply.spec +++ b/specs/p/python-ply/python-ply.spec @@ -8,7 +8,7 @@ Name: python-%{modname} Summary: Python Lex-Yacc Version: 3.11 -Release: 33%{?dist} +Release: 33%{?dist} License: BSD-3-Clause URL: http://www.dabeaz.com/ply/ Source0: http://www.dabeaz.com/ply/%{modname}-%{version}.tar.gz diff --git a/specs/p/python-polib/python-polib.spec b/specs/p/python-polib/python-polib.spec index 65e3492eff9..eba0c8117fd 100644 --- a/specs/p/python-polib/python-polib.spec +++ b/specs/p/python-polib/python-polib.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 1.2.0 -Release: 14%{?dist} +Release: 14%{?dist} Summary: A library to parse and manage gettext catalogs License: MIT diff --git a/specs/p/python-portend/python-portend.spec b/specs/p/python-portend/python-portend.spec index e39540a090b..3955be1d8f1 100644 --- a/specs/p/python-portend/python-portend.spec +++ b/specs/p/python-portend/python-portend.spec @@ -10,7 +10,7 @@ Name: python-%{pypi_name} Version: 3.2.0 -Release: 12%{?dist} +Release: 12%{?dist} Summary: TCP port monitoring utilities License: MIT diff --git a/specs/p/python-productmd/python-productmd.spec b/specs/p/python-productmd/python-productmd.spec index 7163719405f..5721b83856f 100644 --- a/specs/p/python-productmd/python-productmd.spec +++ b/specs/p/python-productmd/python-productmd.spec @@ -3,7 +3,7 @@ Name: python-productmd Version: 1.50 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Library providing parsers for metadata related to OS installation License: LGPL-2.1-only diff --git a/specs/p/python-psycopg2/python-psycopg2.spec b/specs/p/python-psycopg2/python-psycopg2.spec index e53e29fcc0a..85d9808c074 100644 --- a/specs/p/python-psycopg2/python-psycopg2.spec +++ b/specs/p/python-psycopg2/python-psycopg2.spec @@ -14,7 +14,7 @@ features offered by PostgreSQL. Summary: %{sum} Name: python-%{srcname} Version: 2.9.10 -Release: 5%{?dist} +Release: 5%{?dist} # The exceptions allow linking to OpenSSL and PostgreSQL's libpq License: LGPL-3.0-or-later WITH openvpn-openssl-exception Url: https://www.psycopg.org/ diff --git a/specs/p/python-ptyprocess/python-ptyprocess.spec b/specs/p/python-ptyprocess/python-ptyprocess.spec index 75a7bb33c23..cbb1596cf2a 100644 --- a/specs/p/python-ptyprocess/python-ptyprocess.spec +++ b/specs/p/python-ptyprocess/python-ptyprocess.spec @@ -7,7 +7,7 @@ Name: python-ptyprocess Version: 0.7.0 -Release: 15%{?dist} +Release: 15%{?dist} Summary: Run a subprocess in a pseudo terminal License: ISC diff --git a/specs/p/python-py/python-py.spec b/specs/p/python-py/python-py.spec index 7646618a3ca..86c52513c01 100644 --- a/specs/p/python-py/python-py.spec +++ b/specs/p/python-py/python-py.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 1.11.0 -Release: 20%{?dist} +Release: 20%{?dist} Summary: Library with cross-python path, ini-parsing, io, code, log facilities # Automatically converted from old format: MIT and Public Domain - review is highly recommended. License: LicenseRef-Callaway-MIT AND LicenseRef-Callaway-Public-Domain diff --git a/specs/p/python-pyasn1/python-pyasn1.spec b/specs/p/python-pyasn1/python-pyasn1.spec index 932f7f05981..cb99f729280 100644 --- a/specs/p/python-pyasn1/python-pyasn1.spec +++ b/specs/p/python-pyasn1/python-pyasn1.spec @@ -6,7 +6,7 @@ Name: python-pyasn1 Version: 0.6.2 -Release: 2%{?dist} +Release: 2%{?dist} Summary: ASN.1 tools for Python License: BSD-2-Clause Source0: https://github.com/pyasn1/pyasn1/archive/v%{version}.tar.gz diff --git a/specs/p/python-pybtex-docutils/python-pybtex-docutils.spec b/specs/p/python-pybtex-docutils/python-pybtex-docutils.spec index e48a0c5a285..e88cbfbf373 100644 --- a/specs/p/python-pybtex-docutils/python-pybtex-docutils.spec +++ b/specs/p/python-pybtex-docutils/python-pybtex-docutils.spec @@ -3,7 +3,7 @@ Name: python-pybtex-docutils Version: 1.0.3 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Docutils backend for pybtex # The content is MIT. Other licenses are due to files copied in by Sphinx. diff --git a/specs/p/python-pycares/python-pycares.spec b/specs/p/python-pycares/python-pycares.spec index 0adcdb166f5..a2527fdc754 100644 --- a/specs/p/python-pycares/python-pycares.spec +++ b/specs/p/python-pycares/python-pycares.spec @@ -7,7 +7,7 @@ Name: python-pycares Version: 4.10.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Python interface for c-ares License: MIT diff --git a/specs/p/python-pycdio/python-pycdio.spec b/specs/p/python-pycdio/python-pycdio.spec index 930568a8b5f..9d83d7948ce 100644 --- a/specs/p/python-pycdio/python-pycdio.spec +++ b/specs/p/python-pycdio/python-pycdio.spec @@ -3,7 +3,7 @@ Name: python-pycdio Version: 2.1.1 -Release: 8%{?dist} +Release: 8%{?dist} Summary: A Python interface to the CD Input and Control library License: GPL-3.0-or-later diff --git a/specs/p/python-pycryptodomex/python-pycryptodomex.spec b/specs/p/python-pycryptodomex/python-pycryptodomex.spec index ae56604514a..cfa1b36b975 100644 --- a/specs/p/python-pycryptodomex/python-pycryptodomex.spec +++ b/specs/p/python-pycryptodomex/python-pycryptodomex.spec @@ -32,7 +32,7 @@ with the PyCrypto library.} Name: python-%{srcname} Version: 3.23.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: A self-contained cryptographic library for Python # PyCrypto-based code is public domain, further PyCryptodome contributions are diff --git a/specs/p/python-pycurl/python-pycurl.spec b/specs/p/python-pycurl/python-pycurl.spec index f868386c683..5bc8bf7ee90 100644 --- a/specs/p/python-pycurl/python-pycurl.spec +++ b/specs/p/python-pycurl/python-pycurl.spec @@ -12,7 +12,7 @@ Name: python-%{modname} Version: 7.45.6 -Release: 6%{?dist} +Release: 6%{?dist} Summary: A Python interface to libcurl License: curl OR LGPL-2.1-or-later diff --git a/specs/p/python-pyfakefs/python-pyfakefs.spec b/specs/p/python-pyfakefs/python-pyfakefs.spec index edaf811a776..9a6607f880e 100644 --- a/specs/p/python-pyfakefs/python-pyfakefs.spec +++ b/specs/p/python-pyfakefs/python-pyfakefs.spec @@ -5,7 +5,7 @@ Name: python-%{package_name} Version: 5.10.2 -Release: 2%{?dist} +Release: 2%{?dist} Summary: pyfakefs implements a fake file system that mocks the Python file system modules. License: Apache-2.0 URL: http://pyfakefs.org diff --git a/specs/p/python-pymemcache/python-pymemcache.spec b/specs/p/python-pymemcache/python-pymemcache.spec index 239ecda7428..e080c9d7aed 100644 --- a/specs/p/python-pymemcache/python-pymemcache.spec +++ b/specs/p/python-pymemcache/python-pymemcache.spec @@ -6,7 +6,7 @@ Name: python-%{pypi_name} Version: 4.0.0 -Release: 13%{?dist} +Release: 13%{?dist} Summary: A comprehensive, fast, pure Python memcached client # Automatically converted from old format: ASL 2.0 - review is highly recommended. diff --git a/specs/p/python-pymongo/python-pymongo.spec b/specs/p/python-pymongo/python-pymongo.spec index 7e273df3629..12b7bfdf8ea 100644 --- a/specs/p/python-pymongo/python-pymongo.spec +++ b/specs/p/python-pymongo/python-pymongo.spec @@ -8,7 +8,7 @@ Name: python-pymongo Version: 4.13.2 -Release: 4%{?dist} +Release: 4%{?dist} License: Apache-2.0 Summary: Python driver for MongoDB diff --git a/specs/p/python-pymssql/python-pymssql.spec b/specs/p/python-pymssql/python-pymssql.spec index 506ed5aea33..22fe8cf3d05 100644 --- a/specs/p/python-pymssql/python-pymssql.spec +++ b/specs/p/python-pymssql/python-pymssql.spec @@ -7,7 +7,7 @@ a Python DB-API (PEP-249) interface to Microsoft SQL Server.} Name: python-%{pypi_name} Version: 2.3.9 -Release: 2%{?dist} +Release: 2%{?dist} Summary: DB-API interface to Microsoft SQL Server License: LGPL-2.0-or-later diff --git a/specs/p/python-pyperclip/python-pyperclip.spec b/specs/p/python-pyperclip/python-pyperclip.spec index 7ebff93bbd9..9605d23c4e0 100644 --- a/specs/p/python-pyperclip/python-pyperclip.spec +++ b/specs/p/python-pyperclip/python-pyperclip.spec @@ -9,7 +9,7 @@ Name: python-pyperclip Version: 1.8.2 -Release: 16%{?dist} +Release: 16%{?dist} Summary: A cross-platform clipboard module for Python License: BSD-3-Clause diff --git a/specs/p/python-pypng/python-pypng.spec b/specs/p/python-pypng/python-pypng.spec index 171f08944a4..0cb34092ed5 100644 --- a/specs/p/python-pypng/python-pypng.spec +++ b/specs/p/python-pypng/python-pypng.spec @@ -5,7 +5,7 @@ Name: python-pypng Version: 0.0.21 -Release: 16%{?dist} +Release: 16%{?dist} Summary: Pure Python PNG image encoder/decoder License: MIT diff --git a/specs/p/python-pyqt5-sip/python-pyqt5-sip.spec b/specs/p/python-pyqt5-sip/python-pyqt5-sip.spec index 404601ba10a..9c3bda722a4 100644 --- a/specs/p/python-pyqt5-sip/python-pyqt5-sip.spec +++ b/specs/p/python-pyqt5-sip/python-pyqt5-sip.spec @@ -8,7 +8,7 @@ Name: python-pyqt5-sip Version: 12.17.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: The sip module support for PyQt5 License: BSD-2-Clause diff --git a/specs/p/python-pyqt6-sip/python-pyqt6-sip.spec b/specs/p/python-pyqt6-sip/python-pyqt6-sip.spec index 63c729a88b5..25b9b61f917 100644 --- a/specs/p/python-pyqt6-sip/python-pyqt6-sip.spec +++ b/specs/p/python-pyqt6-sip/python-pyqt6-sip.spec @@ -9,7 +9,7 @@ Name: python-%{pkg_name} Version: 13.10.2 -Release: 5%{?dist} +Release: 5%{?dist} Summary: The sip module support for PyQt6 License: GPL-2.0-only OR GPL-3.0-only diff --git a/specs/p/python-pyside6/python-pyside6.spec b/specs/p/python-pyside6/python-pyside6.spec index 7cbfd581fd8..7dd9fad9c07 100644 --- a/specs/p/python-pyside6/python-pyside6.spec +++ b/specs/p/python-pyside6/python-pyside6.spec @@ -13,7 +13,7 @@ Name: python-%{pypi_name} Version: 6.10.3 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Python bindings for the Qt 6 cross-platform application and UI framework License: LGPL-3.0-only OR GPL-3.0-only WITH Qt-GPL-exception-1.0 diff --git a/specs/p/python-pysocks/python-pysocks.spec b/specs/p/python-pysocks/python-pysocks.spec index 9b0a1981e82..592f304c94c 100644 --- a/specs/p/python-pysocks/python-pysocks.spec +++ b/specs/p/python-pysocks/python-pysocks.spec @@ -11,7 +11,7 @@ Name: python-%{modname} Version: 1.7.1 -Release: 32%{?dist} +Release: 32%{?dist} Summary: %{sum} License: BSD-3-Clause diff --git a/specs/p/python-pytest-aiohttp/python-pytest-aiohttp.spec b/specs/p/python-pytest-aiohttp/python-pytest-aiohttp.spec index 8581aa4e3f1..633e98b21d0 100644 --- a/specs/p/python-pytest-aiohttp/python-pytest-aiohttp.spec +++ b/specs/p/python-pytest-aiohttp/python-pytest-aiohttp.spec @@ -8,7 +8,7 @@ Name: python-%{pypi_name} Version: 1.1.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Pytest plugin for aiohttp support License: Apache-2.0 diff --git a/specs/p/python-pytest-cache/python-pytest-cache.spec b/specs/p/python-pytest-cache/python-pytest-cache.spec index daaaf9c9f03..00d311216e0 100644 --- a/specs/p/python-pytest-cache/python-pytest-cache.spec +++ b/specs/p/python-pytest-cache/python-pytest-cache.spec @@ -11,7 +11,7 @@ Name: python-%{srcname} Version: 1.0 -Release: 42%{?dist} +Release: 42%{?dist} Summary: Pytest plugin with mechanisms for caching across test runs License: MIT diff --git a/specs/p/python-pytest-django/python-pytest-django.spec b/specs/p/python-pytest-django/python-pytest-django.spec index 6d75ffbd43f..510def24616 100644 --- a/specs/p/python-pytest-django/python-pytest-django.spec +++ b/specs/p/python-pytest-django/python-pytest-django.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 4.9.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: A Django plugin for pytest License: LicenseRef-Callaway-BSD diff --git a/specs/p/python-pytest-forked/python-pytest-forked.spec b/specs/p/python-pytest-forked/python-pytest-forked.spec index f33d1840e8d..5dfddf1adf8 100644 --- a/specs/p/python-pytest-forked/python-pytest-forked.spec +++ b/specs/p/python-pytest-forked/python-pytest-forked.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 1.6.0 -Release: 14%{?dist} +Release: 14%{?dist} Summary: py.test plugin for running tests in isolated forked subprocesses License: MIT diff --git a/specs/p/python-pytest-httpbin/python-pytest-httpbin.spec b/specs/p/python-pytest-httpbin/python-pytest-httpbin.spec index 425767e790f..5a41715b251 100644 --- a/specs/p/python-pytest-httpbin/python-pytest-httpbin.spec +++ b/specs/p/python-pytest-httpbin/python-pytest-httpbin.spec @@ -14,7 +14,7 @@ provides your test with the URL in the fixture. Name: python-%{github_name} Version: 2.1.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: %{sum} # License is included in-line in README.md diff --git a/specs/p/python-pytest-httpserver/python-pytest-httpserver.spec b/specs/p/python-pytest-httpserver/python-pytest-httpserver.spec index e15b7e1260c..00ae3a791db 100644 --- a/specs/p/python-pytest-httpserver/python-pytest-httpserver.spec +++ b/specs/p/python-pytest-httpserver/python-pytest-httpserver.spec @@ -11,7 +11,7 @@ http requests and their responses.} Name: python-%{srcname} Version: 1.0.8 -Release: 12%{?dist} +Release: 12%{?dist} Summary: HTTP server for pytest License: MIT diff --git a/specs/p/python-pytest-isort/python-pytest-isort.spec b/specs/p/python-pytest-isort/python-pytest-isort.spec index 94c70eb6d16..bd1b56b4c0d 100644 --- a/specs/p/python-pytest-isort/python-pytest-isort.spec +++ b/specs/p/python-pytest-isort/python-pytest-isort.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 4.0.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Pytest plugin to check import ordering using isort # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/p/python-pytest-mock/python-pytest-mock.spec b/specs/p/python-pytest-mock/python-pytest-mock.spec index b65db015b51..038274f5cf5 100644 --- a/specs/p/python-pytest-mock/python-pytest-mock.spec +++ b/specs/p/python-pytest-mock/python-pytest-mock.spec @@ -7,7 +7,7 @@ Name: python-%{package_name} Version: 3.14.1 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Thin-wrapper around the mock package for easier use with py.test License: MIT diff --git a/specs/p/python-pytest-mpl/python-pytest-mpl.spec b/specs/p/python-pytest-mpl/python-pytest-mpl.spec index a4713931a8f..ee2f6ad8dba 100644 --- a/specs/p/python-pytest-mpl/python-pytest-mpl.spec +++ b/specs/p/python-pytest-mpl/python-pytest-mpl.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 0.13 -Release: 20%{?dist} +Release: 20%{?dist} Summary: Pytest plugin for testing figure output from Matplotlib # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/p/python-pytest-param-files/python-pytest-param-files.spec b/specs/p/python-pytest-param-files/python-pytest-param-files.spec index aadaa57bfca..8fc54fcd7a5 100644 --- a/specs/p/python-pytest-param-files/python-pytest-param-files.spec +++ b/specs/p/python-pytest-param-files/python-pytest-param-files.spec @@ -3,7 +3,7 @@ Name: python-pytest-param-files Version: 0.6.0 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Create pytest parametrize decorators from external files # SPDX diff --git a/specs/p/python-pytest-relaxed/python-pytest-relaxed.spec b/specs/p/python-pytest-relaxed/python-pytest-relaxed.spec index dd1faf0f355..5f88dd38814 100644 --- a/specs/p/python-pytest-relaxed/python-pytest-relaxed.spec +++ b/specs/p/python-pytest-relaxed/python-pytest-relaxed.spec @@ -3,7 +3,7 @@ Name: python-pytest-relaxed Version: 2.0.2 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Relaxed test discovery/organization for pytest License: BSD-2-Clause diff --git a/specs/p/python-pytest-remotedata/python-pytest-remotedata.spec b/specs/p/python-pytest-remotedata/python-pytest-remotedata.spec index bf09aed480e..726aca7e04d 100644 --- a/specs/p/python-pytest-remotedata/python-pytest-remotedata.spec +++ b/specs/p/python-pytest-remotedata/python-pytest-remotedata.spec @@ -6,7 +6,7 @@ Name: python-%{srcname} Version: 0.4.1 -Release: 11%{?dist} +Release: 11%{?dist} Summary: %{sum} License: BSD-3-Clause diff --git a/specs/p/python-pytest-repeat/python-pytest-repeat.spec b/specs/p/python-pytest-repeat/python-pytest-repeat.spec index 8a00e94c747..0c92cedaeb5 100644 --- a/specs/p/python-pytest-repeat/python-pytest-repeat.spec +++ b/specs/p/python-pytest-repeat/python-pytest-repeat.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 0.9.3 -Release: 10%{?dist} +Release: 10%{?dist} Summary: A pytest plugin for repeating test execution License: MPL-2.0 diff --git a/specs/p/python-pytest-rerunfailures/python-pytest-rerunfailures.spec b/specs/p/python-pytest-rerunfailures/python-pytest-rerunfailures.spec index a1b580574ce..2ed44c27923 100644 --- a/specs/p/python-pytest-rerunfailures/python-pytest-rerunfailures.spec +++ b/specs/p/python-pytest-rerunfailures/python-pytest-rerunfailures.spec @@ -8,7 +8,7 @@ Name: python-%{srcname} Version: 15.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: A py.test plugin that re-runs failed tests to eliminate flakey failures License: MPL-2.0 diff --git a/specs/p/python-pytest-runner/python-pytest-runner.spec b/specs/p/python-pytest-runner/python-pytest-runner.spec index ea574aa53f4..bf6cbc674d7 100644 --- a/specs/p/python-pytest-runner/python-pytest-runner.spec +++ b/specs/p/python-pytest-runner/python-pytest-runner.spec @@ -9,7 +9,7 @@ Name: python-%{modulename} Version: 4.0 -Release: 32%{?dist} +Release: 32%{?dist} Summary: Invoke py.test as distutils command with dependency resolution License: MIT diff --git a/specs/p/python-pytest-timeout/python-pytest-timeout.spec b/specs/p/python-pytest-timeout/python-pytest-timeout.spec index 3a023e8cff5..efc28b03cda 100644 --- a/specs/p/python-pytest-timeout/python-pytest-timeout.spec +++ b/specs/p/python-pytest-timeout/python-pytest-timeout.spec @@ -5,7 +5,7 @@ Name: python-pytest-timeout Version: 2.4.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: py.test plugin to abort hanging tests # SPDX diff --git a/specs/p/python-pytest-tornado/python-pytest-tornado.spec b/specs/p/python-pytest-tornado/python-pytest-tornado.spec index ae7921d0b7f..83d3fb06c06 100644 --- a/specs/p/python-pytest-tornado/python-pytest-tornado.spec +++ b/specs/p/python-pytest-tornado/python-pytest-tornado.spec @@ -6,7 +6,7 @@ Name: python-%{srcname} Version: 0.8.1 -Release: 23%{?dist} +Release: 23%{?dist} Summary: Py.test plugin for testing of asynchronous tornado applications License: Apache-2.0 diff --git a/specs/p/python-pytest-xdist/python-pytest-xdist.spec b/specs/p/python-pytest-xdist/python-pytest-xdist.spec index 8ad973ffec2..77b1bdfd6ec 100644 --- a/specs/p/python-pytest-xdist/python-pytest-xdist.spec +++ b/specs/p/python-pytest-xdist/python-pytest-xdist.spec @@ -5,7 +5,7 @@ Name: python-pytest-xdist Version: 3.7.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: pytest plugin for distributed testing and loop-on-failing modes License: MIT diff --git a/specs/p/python-pywt/python-pywt.spec b/specs/p/python-pywt/python-pywt.spec index 5fca2ca3f7d..5997973789c 100644 --- a/specs/p/python-pywt/python-pywt.spec +++ b/specs/p/python-pywt/python-pywt.spec @@ -7,7 +7,7 @@ Name: python-%{modname} Version: 1.8.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: PyWavelets, wavelet transform module License: MIT URL: https://pywavelets.readthedocs.io/en/latest diff --git a/specs/p/python-qt5/python-qt5.spec b/specs/p/python-qt5/python-qt5.spec index c0bf1424e60..10b333645fe 100644 --- a/specs/p/python-qt5/python-qt5.spec +++ b/specs/p/python-qt5/python-qt5.spec @@ -23,7 +23,7 @@ Summary: PyQt5 is Python bindings for Qt5 Name: python-qt5 Version: 5.15.12 -Release: 0.1%{?dist} +Release: 0.4%{?dist} # Automatically converted from old format: GPLv3 - review is highly recommended. License: GPL-3.0-only diff --git a/specs/p/python-recommonmark/python-recommonmark.spec b/specs/p/python-recommonmark/python-recommonmark.spec index 7ff5581c193..199c6212c12 100644 --- a/specs/p/python-recommonmark/python-recommonmark.spec +++ b/specs/p/python-recommonmark/python-recommonmark.spec @@ -10,7 +10,7 @@ Documentation is available on Read the Docs: http://recommonmark.readthedocs.org Name: python-recommonmark Version: 0.7.1 -Release: 16.git%{?dist} +Release: 19.git%{?dist} Summary: %{sum} License: MIT diff --git a/specs/p/python-reno/python-reno.spec b/specs/p/python-reno/python-reno.spec index 4042fa3d061..925e621981a 100644 --- a/specs/p/python-reno/python-reno.spec +++ b/specs/p/python-reno/python-reno.spec @@ -20,7 +20,7 @@ helps automate the hard parts. Name: python-%{pypi_name} Version: 4.1.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Release NOtes manager License: Apache-2.0 diff --git a/specs/p/python-repoze-lru/python-repoze-lru.spec b/specs/p/python-repoze-lru/python-repoze-lru.spec index 826d594a99b..a184fc043c1 100644 --- a/specs/p/python-repoze-lru/python-repoze-lru.spec +++ b/specs/p/python-repoze-lru/python-repoze-lru.spec @@ -5,7 +5,7 @@ Name: python-repoze-lru Version: 0.7 -Release: 30%{?dist} +Release: 30%{?dist} Summary: A tiny LRU cache implementation and decorator # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/p/python-repoze-sphinx-autointerface/python-repoze-sphinx-autointerface.spec b/specs/p/python-repoze-sphinx-autointerface/python-repoze-sphinx-autointerface.spec index a14911c904b..363e68160b8 100644 --- a/specs/p/python-repoze-sphinx-autointerface/python-repoze-sphinx-autointerface.spec +++ b/specs/p/python-repoze-sphinx-autointerface/python-repoze-sphinx-autointerface.spec @@ -6,7 +6,7 @@ Name: python-%{srcname} Version: 1.0.0 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Auto-generate Sphinx API docs from Zope interfaces License: BSD-3-Clause-Modification diff --git a/specs/p/python-requests-file/python-requests-file.spec b/specs/p/python-requests-file/python-requests-file.spec index 2361c77eeec..5e6cc196276 100644 --- a/specs/p/python-requests-file/python-requests-file.spec +++ b/specs/p/python-requests-file/python-requests-file.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 2.0.0 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Transport adapter for using file:// URLs with python-requests License: Apache-2.0 diff --git a/specs/p/python-requests-ftp/python-requests-ftp.spec b/specs/p/python-requests-ftp/python-requests-ftp.spec index 8c59a35c271..71668f0a2db 100644 --- a/specs/p/python-requests-ftp/python-requests-ftp.spec +++ b/specs/p/python-requests-ftp/python-requests-ftp.spec @@ -8,7 +8,7 @@ Name: python-%{srcname} Version: 0.3.1 -Release: 43%{?dist} +Release: 43%{?dist} Summary: FTP transport adapter for python-requests License: Apache-2.0 diff --git a/specs/p/python-requests-futures/python-requests-futures.spec b/specs/p/python-requests-futures/python-requests-futures.spec index c0435c000a3..8bae7406df1 100644 --- a/specs/p/python-requests-futures/python-requests-futures.spec +++ b/specs/p/python-requests-futures/python-requests-futures.spec @@ -3,7 +3,7 @@ Name: python-requests-futures Version: 1.0.2 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Asynchronous Python HTTP Requests License: Apache-2.0 diff --git a/specs/p/python-requests-mock/python-requests-mock.spec b/specs/p/python-requests-mock/python-requests-mock.spec index f8547871362..4026b1ac237 100644 --- a/specs/p/python-requests-mock/python-requests-mock.spec +++ b/specs/p/python-requests-mock/python-requests-mock.spec @@ -10,7 +10,7 @@ Name: python-requests-mock Version: 1.12.1 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Mock out responses from the requests package License: Apache-2.0 URL: https://requests-mock.readthedocs.io/ diff --git a/specs/p/python-requests-oauthlib/python-requests-oauthlib.spec b/specs/p/python-requests-oauthlib/python-requests-oauthlib.spec index 786ce31d10b..2670fc78f71 100644 --- a/specs/p/python-requests-oauthlib/python-requests-oauthlib.spec +++ b/specs/p/python-requests-oauthlib/python-requests-oauthlib.spec @@ -9,7 +9,7 @@ Name: python-requests-oauthlib Version: 1.3.1 -Release: 16%{?dist} +Release: 16%{?dist} Summary: OAuthlib authentication support for Requests. License: ISC diff --git a/specs/p/python-requests-toolbelt/python-requests-toolbelt.spec b/specs/p/python-requests-toolbelt/python-requests-toolbelt.spec index 3a8ea5f2ea5..ed37d24d497 100644 --- a/specs/p/python-requests-toolbelt/python-requests-toolbelt.spec +++ b/specs/p/python-requests-toolbelt/python-requests-toolbelt.spec @@ -6,7 +6,7 @@ Name: python-%{srcname} Version: 1.0.0 -Release: 15%{?dist} +Release: 15%{?dist} Summary: Utility belt for advanced users of python-requests License: Apache-2.0 diff --git a/specs/p/python-requests-unixsocket/python-requests-unixsocket.spec b/specs/p/python-requests-unixsocket/python-requests-unixsocket.spec index 4ddbffacfa1..5a79dae6359 100644 --- a/specs/p/python-requests-unixsocket/python-requests-unixsocket.spec +++ b/specs/p/python-requests-unixsocket/python-requests-unixsocket.spec @@ -11,7 +11,7 @@ Name: python-%{package_name} Version: 0.4.0 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Use requests to talk HTTP via a UNIX domain socket # Automatically converted from old format: ASL 2.0 - review is highly recommended. diff --git a/specs/p/python-requests_ntlm/python-requests_ntlm.spec b/specs/p/python-requests_ntlm/python-requests_ntlm.spec index b3235cbe267..b4e873590dd 100644 --- a/specs/p/python-requests_ntlm/python-requests_ntlm.spec +++ b/specs/p/python-requests_ntlm/python-requests_ntlm.spec @@ -12,7 +12,7 @@ Name: python-%{srcname} Version: 1.3.0 -Release: 8%{?dist} +Release: 8%{?dist} Summary: NTLM module for python requests (requires md4, thus legacy OpenSSL settings) License: ISC diff --git a/specs/p/python-requestsexceptions/python-requestsexceptions.spec b/specs/p/python-requestsexceptions/python-requestsexceptions.spec index 20d56018fc5..c9fde1acc19 100644 --- a/specs/p/python-requestsexceptions/python-requestsexceptions.spec +++ b/specs/p/python-requestsexceptions/python-requestsexceptions.spec @@ -11,7 +11,7 @@ requests library regardless of whether they are bundled. Name: python-%{pypi_name} Version: 1.4.0 -Release: 27%{?dist} +Release: 27%{?dist} Summary: Import exceptions from potentially bundled packages in requests # Automatically converted from old format: ASL 2.0 - review is highly recommended. diff --git a/specs/p/python-resolvelib/python-resolvelib.spec b/specs/p/python-resolvelib/python-resolvelib.spec index 551fec023b5..e86867968eb 100644 --- a/specs/p/python-resolvelib/python-resolvelib.spec +++ b/specs/p/python-resolvelib/python-resolvelib.spec @@ -9,7 +9,7 @@ Name: python-%{pypi_name} Version: 1.0.1 %global tag %{version} %forgemeta -Release: 12%{?dist} +Release: 12%{?dist} Summary: Resolve abstract dependencies into concrete ones License: ISC diff --git a/specs/p/python-responses/python-responses.spec b/specs/p/python-responses/python-responses.spec index 087078a78cd..90ecd0df1a6 100644 --- a/specs/p/python-responses/python-responses.spec +++ b/specs/p/python-responses/python-responses.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 0.25.8 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Python library to mock out calls with Python requests # Automatically converted from old format: ASL 2.0 - review is highly recommended. License: Apache-2.0 diff --git a/specs/p/python-rfc3986/python-rfc3986.spec b/specs/p/python-rfc3986/python-rfc3986.spec index bac2ac66ca7..23988e1a776 100644 --- a/specs/p/python-rfc3986/python-rfc3986.spec +++ b/specs/p/python-rfc3986/python-rfc3986.spec @@ -9,7 +9,7 @@ A Python implementation of RFC 3986 including validation and authority parsing.} Name: python-%{pypi_name} Version: 2.0.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Validating URI References per RFC 3986 # Automatically converted from old format: ASL 2.0 - review is highly recommended. diff --git a/specs/p/python-rpm-generators/python-rpm-generators.spec b/specs/p/python-rpm-generators/python-rpm-generators.spec index 4217ca40842..a5cc794e117 100644 --- a/specs/p/python-rpm-generators/python-rpm-generators.spec +++ b/specs/p/python-rpm-generators/python-rpm-generators.spec @@ -4,7 +4,7 @@ Name: python-rpm-generators Summary: Dependency generators for Python RPMs Version: 14 -Release: 14%{?dist} +Release: 14%{?dist} Url: https://src.fedoraproject.org/rpms/python-rpm-generators diff --git a/specs/p/python-rpm-macros/python-rpm-macros.spec b/specs/p/python-rpm-macros/python-rpm-macros.spec index 5e67b37533f..934e43f4ebb 100644 --- a/specs/p/python-rpm-macros/python-rpm-macros.spec +++ b/specs/p/python-rpm-macros/python-rpm-macros.spec @@ -58,7 +58,7 @@ elseif posix.stat('macros.python-srpm') then end } Version: %{__default_python3_version} -Release: 6%{?dist} +Release: 6%{?dist} BuildArch: noarch diff --git a/specs/p/python-rsa/python-rsa.spec b/specs/p/python-rsa/python-rsa.spec index ac979ee6a58..652d0ef16aa 100644 --- a/specs/p/python-rsa/python-rsa.spec +++ b/specs/p/python-rsa/python-rsa.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 4.9 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Pure-Python RSA implementation License: Apache-2.0 diff --git a/specs/p/python-rst-linker/python-rst-linker.spec b/specs/p/python-rst-linker/python-rst-linker.spec index ae20c8e7164..dec63eaf827 100644 --- a/specs/p/python-rst-linker/python-rst-linker.spec +++ b/specs/p/python-rst-linker/python-rst-linker.spec @@ -10,7 +10,7 @@ Name: python-%{pkg_name} Version: 2.4.0 -Release: 15%{?dist} +Release: 15%{?dist} Summary: Can add links and perform other custom replacements to rst License: MIT diff --git a/specs/p/python-rtslib/python-rtslib.spec b/specs/p/python-rtslib/python-rtslib.spec index bac8319f127..d0f73ec5b44 100644 --- a/specs/p/python-rtslib/python-rtslib.spec +++ b/specs/p/python-rtslib/python-rtslib.spec @@ -10,7 +10,7 @@ Name: python-rtslib License: Apache-2.0 Summary: API for Linux kernel LIO SCSI target Version: 2.2.3 -Release: 5%{?dist} +Release: 5%{?dist} URL: https://github.com/open-iscsi/%{oname} Source: %{url}/archive/v%{version}/%{oname}-%{version}.tar.gz Patch0: 0001-disable-xen_pvscsi.patch diff --git a/specs/p/python-s3transfer/python-s3transfer.spec b/specs/p/python-s3transfer/python-s3transfer.spec index 68ee5c80997..a7c4656daa3 100644 --- a/specs/p/python-s3transfer/python-s3transfer.spec +++ b/specs/p/python-s3transfer/python-s3transfer.spec @@ -7,7 +7,7 @@ S3transfer is a Python library for managing Amazon S3 transfers. Name: python-%{srcname} Version: 0.16.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Amazon S3 Transfer Manager License: Apache-2.0 diff --git a/specs/p/python-scour/python-scour.spec b/specs/p/python-scour/python-scour.spec index d4e63646bb0..45653715d29 100644 --- a/specs/p/python-scour/python-scour.spec +++ b/specs/p/python-scour/python-scour.spec @@ -6,7 +6,7 @@ Name: python-scour Version: 0.38.2 -Release: 17%{?dist} +Release: 17%{?dist} Summary: %{sum} # All files are Apache-2.0 except scour/svg_regex.py diff --git a/specs/p/python-scramp/python-scramp.spec b/specs/p/python-scramp/python-scramp.spec index 04a754bc138..7cd3e89d4f9 100644 --- a/specs/p/python-scramp/python-scramp.spec +++ b/specs/p/python-scramp/python-scramp.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 1.4.6 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Implementation of the SCRAM protocol License: MIT-0 diff --git a/specs/p/python-semver/python-semver.spec b/specs/p/python-semver/python-semver.spec index c1a287a9cab..d84c747a4c3 100644 --- a/specs/p/python-semver/python-semver.spec +++ b/specs/p/python-semver/python-semver.spec @@ -5,7 +5,7 @@ Name: python-%{modname} Version: 3.0.4 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Python helper for Semantic Versioning License: BSD-3-Clause diff --git a/specs/p/python-setuptools-gettext/python-setuptools-gettext.spec b/specs/p/python-setuptools-gettext/python-setuptools-gettext.spec index f46eda14609..3ad0d72689d 100644 --- a/specs/p/python-setuptools-gettext/python-setuptools-gettext.spec +++ b/specs/p/python-setuptools-gettext/python-setuptools-gettext.spec @@ -3,7 +3,7 @@ Name: python-setuptools-gettext Version: 0.1.14 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Setuptools gettext extension plugin License: GPL-2.0-or-later diff --git a/specs/p/python-sgmllib3k/python-sgmllib3k.spec b/specs/p/python-sgmllib3k/python-sgmllib3k.spec index 5774b818717..d3dbf50e655 100644 --- a/specs/p/python-sgmllib3k/python-sgmllib3k.spec +++ b/specs/p/python-sgmllib3k/python-sgmllib3k.spec @@ -7,7 +7,7 @@ Name: python-sgmllib3k Version: 1.0.0 -Release: 22%{?dist} +Release: 22%{?dist} Summary: python3 copy of sgmllib License: PSF-2.0 URL: http://hg.hardcoded.net/sgmllib diff --git a/specs/p/python-should_dsl/python-should_dsl.spec b/specs/p/python-should_dsl/python-should_dsl.spec index c7e8405cb5a..944be086f8e 100644 --- a/specs/p/python-should_dsl/python-should_dsl.spec +++ b/specs/p/python-should_dsl/python-should_dsl.spec @@ -4,7 +4,7 @@ Summary: Should assertions in Python in as clear and readable a way as possible Name: python-should_dsl Version: 2.1.2 -Release: 24%{?dist} +Release: 24%{?dist} License: MIT URL: https://github.com/nsi-iff/should-dsl Source0: https://files.pythonhosted.org/packages/source/s/should_dsl/should_dsl-%{version}.tar.gz diff --git a/specs/p/python-smartypants/python-smartypants.spec b/specs/p/python-smartypants/python-smartypants.spec index 0021f29bd25..a0b5a7d2c90 100644 --- a/specs/p/python-smartypants/python-smartypants.spec +++ b/specs/p/python-smartypants/python-smartypants.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 2.0.1 -Release: 28%{?dist} +Release: 28%{?dist} Summary: plug-in that easily translates ASCII punctuation characters into smart entities License: BSD-3-Clause AND BSD-2-Clause diff --git a/specs/p/python-smbprotocol/python-smbprotocol.spec b/specs/p/python-smbprotocol/python-smbprotocol.spec index a26f2f87a4a..cad8a47da6d 100644 --- a/specs/p/python-smbprotocol/python-smbprotocol.spec +++ b/specs/p/python-smbprotocol/python-smbprotocol.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 1.15.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Interact with a server using the SMB 2/3 Protocol License: MIT diff --git a/specs/p/python-smmap/python-smmap.spec b/specs/p/python-smmap/python-smmap.spec index e14e3d3ad2e..d421ec26edf 100644 --- a/specs/p/python-smmap/python-smmap.spec +++ b/specs/p/python-smmap/python-smmap.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 5.0.1 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Sliding window memory map manager License: BSD-3-Clause diff --git a/specs/p/python-snappy/python-snappy.spec b/specs/p/python-snappy/python-snappy.spec index 263afd24b12..0dd883a1a96 100644 --- a/specs/p/python-snappy/python-snappy.spec +++ b/specs/p/python-snappy/python-snappy.spec @@ -5,7 +5,7 @@ Name: python-snappy Version: 0.7.3 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Python library for the snappy compression library from Google # Automatically converted from old format: BSD - review is highly recommended. License: LicenseRef-Callaway-BSD diff --git a/specs/p/python-sortedcontainers/python-sortedcontainers.spec b/specs/p/python-sortedcontainers/python-sortedcontainers.spec index bfd18edd96c..eb94a22a60c 100644 --- a/specs/p/python-sortedcontainers/python-sortedcontainers.spec +++ b/specs/p/python-sortedcontainers/python-sortedcontainers.spec @@ -8,7 +8,7 @@ Name: python-%{srcname} Version: 2.4.0 -Release: 26%{?dist} +Release: 26%{?dist} Summary: Pure Python sorted container types License: Apache-2.0 diff --git a/specs/p/python-specfile/python-specfile.spec b/specs/p/python-specfile/python-specfile.spec index 3e2160d5f23..8cb8533753a 100644 --- a/specs/p/python-specfile/python-specfile.spec +++ b/specs/p/python-specfile/python-specfile.spec @@ -19,7 +19,7 @@ in a minimal diff.} Name: python-specfile Version: %{package_version} -Release: 2%{?dist} +Release: 2%{?dist} Summary: A library for parsing and manipulating RPM spec files License: MIT diff --git a/specs/p/python-sphinx-basic-ng/python-sphinx-basic-ng.spec b/specs/p/python-sphinx-basic-ng/python-sphinx-basic-ng.spec index ed1235c9918..66c9dfa806e 100644 --- a/specs/p/python-sphinx-basic-ng/python-sphinx-basic-ng.spec +++ b/specs/p/python-sphinx-basic-ng/python-sphinx-basic-ng.spec @@ -10,7 +10,7 @@ Name: python-sphinx-basic-ng Version: 1.0.0 -Release: 0.17.%{prerel}%{?dist} +Release: 0.20.%{prerel}%{?dist} Summary: Modernized skeleton for Sphinx themes License: MIT diff --git a/specs/p/python-sphinx-bootstrap-theme/python-sphinx-bootstrap-theme.spec b/specs/p/python-sphinx-bootstrap-theme/python-sphinx-bootstrap-theme.spec index 5f960989115..adb45b20351 100644 --- a/specs/p/python-sphinx-bootstrap-theme/python-sphinx-bootstrap-theme.spec +++ b/specs/p/python-sphinx-bootstrap-theme/python-sphinx-bootstrap-theme.spec @@ -15,7 +15,7 @@ of different Bootswatch CSS themes. Name: python-%{srcname} Version: 0.8.1 -Release: 17%{?dist} +Release: 17%{?dist} Summary: %{common_sum} # Automatically converted from old format: MIT and ASL 2.0 - review is highly recommended. diff --git a/specs/p/python-sphinx-last-updated-by-git/python-sphinx-last-updated-by-git.spec b/specs/p/python-sphinx-last-updated-by-git/python-sphinx-last-updated-by-git.spec index ad213128585..6bf1ca62e73 100644 --- a/specs/p/python-sphinx-last-updated-by-git/python-sphinx-last-updated-by-git.spec +++ b/specs/p/python-sphinx-last-updated-by-git/python-sphinx-last-updated-by-git.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 0.2.2 -Release: 21%{?dist} +Release: 21%{?dist} Summary: Get the "last updated" time for each Sphinx page from Git # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/p/python-sphinx-notfound-page/python-sphinx-notfound-page.spec b/specs/p/python-sphinx-notfound-page/python-sphinx-notfound-page.spec index 4e9c9b39014..8e7bd251cb2 100644 --- a/specs/p/python-sphinx-notfound-page/python-sphinx-notfound-page.spec +++ b/specs/p/python-sphinx-notfound-page/python-sphinx-notfound-page.spec @@ -10,7 +10,7 @@ Name: python-%{pypi_name} Version: 1.0.4 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Create a custom 404 page with absolute URLs hardcoded License: MIT diff --git a/specs/p/python-sphinx-pytest/python-sphinx-pytest.spec b/specs/p/python-sphinx-pytest/python-sphinx-pytest.spec index e0784a6e5ce..429b6e93413 100644 --- a/specs/p/python-sphinx-pytest/python-sphinx-pytest.spec +++ b/specs/p/python-sphinx-pytest/python-sphinx-pytest.spec @@ -3,7 +3,7 @@ Name: python-sphinx-pytest Version: 0.2.0 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Helpful pytest fixtures for sphinx extensions # SPDX diff --git a/specs/p/python-sphinx-tabs/python-sphinx-tabs.spec b/specs/p/python-sphinx-tabs/python-sphinx-tabs.spec index 4c91244ef7c..881d8f33a14 100644 --- a/specs/p/python-sphinx-tabs/python-sphinx-tabs.spec +++ b/specs/p/python-sphinx-tabs/python-sphinx-tabs.spec @@ -6,7 +6,7 @@ Name: python-sphinx-tabs Version: 3.4.7 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Tabbed views for Sphinx # SPDX License: MIT diff --git a/specs/p/python-sphinx-theme-builder/python-sphinx-theme-builder.spec b/specs/p/python-sphinx-theme-builder/python-sphinx-theme-builder.spec index f91cc50841c..670a987ddd2 100644 --- a/specs/p/python-sphinx-theme-builder/python-sphinx-theme-builder.spec +++ b/specs/p/python-sphinx-theme-builder/python-sphinx-theme-builder.spec @@ -13,7 +13,7 @@ Name: python-sphinx-theme-builder Version: 0.2.0 -Release: 0.25.%{prerel}%{?dist} +Release: 0.28.%{prerel}%{?dist} Summary: Streamline the Sphinx theme development workflow # Most of the code is MIT. However, diff --git a/specs/p/python-sphinx-theme-py3doc-enhanced/python-sphinx-theme-py3doc-enhanced.spec b/specs/p/python-sphinx-theme-py3doc-enhanced/python-sphinx-theme-py3doc-enhanced.spec index 904815f40f5..2d15f38cf39 100644 --- a/specs/p/python-sphinx-theme-py3doc-enhanced/python-sphinx-theme-py3doc-enhanced.spec +++ b/specs/p/python-sphinx-theme-py3doc-enhanced/python-sphinx-theme-py3doc-enhanced.spec @@ -9,7 +9,7 @@ enhancements. Name: python-%{pkgname} Version: 2.4.0 -Release: 19%{?dist} +Release: 19%{?dist} Summary: Theme based on the theme of https://docs.python.org/3/ # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/p/python-sphinx_lv2_theme/python-sphinx_lv2_theme.spec b/specs/p/python-sphinx_lv2_theme/python-sphinx_lv2_theme.spec index 32c1d1ff166..d7e61cdb1b2 100644 --- a/specs/p/python-sphinx_lv2_theme/python-sphinx_lv2_theme.spec +++ b/specs/p/python-sphinx_lv2_theme/python-sphinx_lv2_theme.spec @@ -16,7 +16,7 @@ for typical Sphinx themes.} Name: python-%{pypi_name} Version: 1.4.2 -Release: 8%{?dist} +Release: 8%{?dist} Summary: A minimal pure-CSS theme for Sphinx License: ISC URL: https://gitlab.com/lv2/%{pypi_name} diff --git a/specs/p/python-sphinx_selective_exclude/python-sphinx_selective_exclude.spec b/specs/p/python-sphinx_selective_exclude/python-sphinx_selective_exclude.spec index 3596fc2df14..63af816e043 100644 --- a/specs/p/python-sphinx_selective_exclude/python-sphinx_selective_exclude.spec +++ b/specs/p/python-sphinx_selective_exclude/python-sphinx_selective_exclude.spec @@ -8,7 +8,7 @@ Name: python-%{srcname} Version: 1.0.3 -Release: 21%{?dist} +Release: 21%{?dist} Summary: Sphinx eager ".. only::" directive and other selective rendition extensions # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/p/python-sphinxcontrib-autoprogram/python-sphinxcontrib-autoprogram.spec b/specs/p/python-sphinxcontrib-autoprogram/python-sphinxcontrib-autoprogram.spec index 06d3888af7f..d75b5f0c12c 100644 --- a/specs/p/python-sphinxcontrib-autoprogram/python-sphinxcontrib-autoprogram.spec +++ b/specs/p/python-sphinxcontrib-autoprogram/python-sphinxcontrib-autoprogram.spec @@ -6,7 +6,7 @@ Name: python-%{pypi_name} Version: 0.1.9 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Sphinx extension for documenting CLI programs License: LicenseRef-Callaway-BSD diff --git a/specs/p/python-sphinxcontrib-doxylink/python-sphinxcontrib-doxylink.spec b/specs/p/python-sphinxcontrib-doxylink/python-sphinxcontrib-doxylink.spec index b11ed3d9e51..2cc9218ff8d 100644 --- a/specs/p/python-sphinxcontrib-doxylink/python-sphinxcontrib-doxylink.spec +++ b/specs/p/python-sphinxcontrib-doxylink/python-sphinxcontrib-doxylink.spec @@ -3,7 +3,7 @@ Name: python-sphinxcontrib-doxylink Version: 1.13.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: A Sphinx extension to link to external Doxygen API documentation License: BSD-2-Clause URL: https://github.com/sphinx-contrib/doxylink diff --git a/specs/p/python-sphinxcontrib-httpdomain/python-sphinxcontrib-httpdomain.spec b/specs/p/python-sphinxcontrib-httpdomain/python-sphinxcontrib-httpdomain.spec index a2707ebe133..5af9e544075 100644 --- a/specs/p/python-sphinxcontrib-httpdomain/python-sphinxcontrib-httpdomain.spec +++ b/specs/p/python-sphinxcontrib-httpdomain/python-sphinxcontrib-httpdomain.spec @@ -6,7 +6,7 @@ Name: python-%{upstream_name} Version: 1.8.1 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Sphinx domain for documenting HTTP APIs License: BSD-2-Clause URL: http://packages.python.org/sphinxcontrib-httpdomain/ diff --git a/specs/p/python-sphinxcontrib-jquery/python-sphinxcontrib-jquery.spec b/specs/p/python-sphinxcontrib-jquery/python-sphinxcontrib-jquery.spec index 8f5b0b3e882..bb6e58c96a3 100644 --- a/specs/p/python-sphinxcontrib-jquery/python-sphinxcontrib-jquery.spec +++ b/specs/p/python-sphinxcontrib-jquery/python-sphinxcontrib-jquery.spec @@ -3,7 +3,7 @@ Name: python-sphinxcontrib-jquery Version: 4.1 -Release: 15%{?dist} +Release: 15%{?dist} Summary: Extension to include jQuery on newer Sphinx releases # The project is 0BSD diff --git a/specs/p/python-sphinxcontrib-log-cabinet/python-sphinxcontrib-log-cabinet.spec b/specs/p/python-sphinxcontrib-log-cabinet/python-sphinxcontrib-log-cabinet.spec index 98fe02d9c6c..c36e5f8df31 100644 --- a/specs/p/python-sphinxcontrib-log-cabinet/python-sphinxcontrib-log-cabinet.spec +++ b/specs/p/python-sphinxcontrib-log-cabinet/python-sphinxcontrib-log-cabinet.spec @@ -4,7 +4,7 @@ %global pypi_name sphinxcontrib-log-cabinet Name: python-%{pypi_name} Version: 1.0.1 -Release: 25%{?dist} +Release: 25%{?dist} Summary: Organize changelog directives in Sphinx docs License: BSD-3-Clause URL: https://github.com/davidism/sphinxcontrib-log-cabinet diff --git a/specs/p/python-sphinxcontrib-spelling/python-sphinxcontrib-spelling.spec b/specs/p/python-sphinxcontrib-spelling/python-sphinxcontrib-spelling.spec index 6a95b00d3c4..8fe85efbc7e 100644 --- a/specs/p/python-sphinxcontrib-spelling/python-sphinxcontrib-spelling.spec +++ b/specs/p/python-sphinxcontrib-spelling/python-sphinxcontrib-spelling.spec @@ -14,7 +14,7 @@ misspelled words. Name: python-%{pypi_name} Version: 7.3.3 -Release: 17%{?dist} +Release: 17%{?dist} Summary: %{sum} # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/p/python-sphinxcontrib-trio/python-sphinxcontrib-trio.spec b/specs/p/python-sphinxcontrib-trio/python-sphinxcontrib-trio.spec index b33edf6878e..0f4dc726afb 100644 --- a/specs/p/python-sphinxcontrib-trio/python-sphinxcontrib-trio.spec +++ b/specs/p/python-sphinxcontrib-trio/python-sphinxcontrib-trio.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 1.1.2 -Release: 27%{?dist} +Release: 27%{?dist} Summary: Make Sphinx better at documenting Python functions and methods # Automatically converted from old format: MIT or ASL 2.0 - review is highly recommended. License: LicenseRef-Callaway-MIT OR Apache-2.0 diff --git a/specs/p/python-sphinxygen/python-sphinxygen.spec b/specs/p/python-sphinxygen/python-sphinxygen.spec index 4d9b8a20e79..ebee2f5d65a 100644 --- a/specs/p/python-sphinxygen/python-sphinxygen.spec +++ b/specs/p/python-sphinxygen/python-sphinxygen.spec @@ -3,7 +3,7 @@ Name: python-sphinxygen Version: 1.0.10 -Release: 7%{?dist} +Release: 7%{?dist} Summary: A script to read Doxygen XML output and emit ReST for Sphinx # All files under ISC, though some tests and diff --git a/specs/p/python-sqlalchemy-utils/python-sqlalchemy-utils.spec b/specs/p/python-sqlalchemy-utils/python-sqlalchemy-utils.spec index 7778c03b886..0e733655a91 100644 --- a/specs/p/python-sqlalchemy-utils/python-sqlalchemy-utils.spec +++ b/specs/p/python-sqlalchemy-utils/python-sqlalchemy-utils.spec @@ -5,7 +5,7 @@ Name: python-sqlalchemy-utils Version: 0.41.1 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Various utility functions for SQLAlchemy # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/p/python-sqlalchemy1.3/python-sqlalchemy1.3.spec b/specs/p/python-sqlalchemy1.3/python-sqlalchemy1.3.spec index 48931c44631..dbd9365ac60 100644 --- a/specs/p/python-sqlalchemy1.3/python-sqlalchemy1.3.spec +++ b/specs/p/python-sqlalchemy1.3/python-sqlalchemy1.3.spec @@ -17,7 +17,7 @@ Name: python-sqlalchemy1.3 Version: 1.3.24 # cope with pre-release versions containing tildes %global srcversion %{lua: srcversion, num = rpm.expand("%{version}"):gsub("~", ""); print(srcversion);} -Release: 19%{?dist} +Release: 19%{?dist} Summary: Modular and flexible ORM library for python (legacy 1.3.x version) License: MIT diff --git a/specs/p/python-stestr/python-stestr.spec b/specs/p/python-stestr/python-stestr.spec index 82627299fc5..a737941fa72 100644 --- a/specs/p/python-stestr/python-stestr.spec +++ b/specs/p/python-stestr/python-stestr.spec @@ -17,7 +17,7 @@ stestr hard codes python-subunit-isms into how it works. Name: python-%{pypi_name} Version: 4.1.0 -Release: 13%{?dist} +Release: 13%{?dist} Summary: A test runner runner similar to testrepository # Automatically converted from old format: ASL 2.0 - review is highly recommended. diff --git a/specs/p/python-stevedore/python-stevedore.spec b/specs/p/python-stevedore/python-stevedore.spec index 293f7d45650..4bb7fb137e1 100644 --- a/specs/p/python-stevedore/python-stevedore.spec +++ b/specs/p/python-stevedore/python-stevedore.spec @@ -12,7 +12,7 @@ Name: python-stevedore Version: 5.3.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Manage dynamic plugins for Python applications Group: Development/Languages diff --git a/specs/p/python-strict-rfc3339/python-strict-rfc3339.spec b/specs/p/python-strict-rfc3339/python-strict-rfc3339.spec index d2c9e229000..1cbe41e1fbc 100644 --- a/specs/p/python-strict-rfc3339/python-strict-rfc3339.spec +++ b/specs/p/python-strict-rfc3339/python-strict-rfc3339.spec @@ -12,7 +12,7 @@ Goals: Name: python-strict-rfc3339 Version: 0.7 -Release: 21%{?dist} +Release: 21%{?dist} Summary: Strict, simple, lightweight RFC3339 functions License: GPL-3.0-only diff --git a/specs/p/python-string_utils/python-string_utils.spec b/specs/p/python-string_utils/python-string_utils.spec index 0f1b13c1fe3..ce130f6c68b 100644 --- a/specs/p/python-string_utils/python-string_utils.spec +++ b/specs/p/python-string_utils/python-string_utils.spec @@ -9,7 +9,7 @@ Name: python-string_utils Version: 1.0.0 -Release: 23%{?dist} +Release: 23%{?dist} Summary: Utility functions for strings validation and manipulation # SPDX diff --git a/specs/p/python-suds/python-suds.spec b/specs/p/python-suds/python-suds.spec index bfc0db3178e..fc52907ce68 100644 --- a/specs/p/python-suds/python-suds.spec +++ b/specs/p/python-suds/python-suds.spec @@ -3,7 +3,7 @@ Name: python-suds Version: 1.2.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: A python SOAP client License: LGPL-3.0-or-later diff --git a/specs/p/python-swiftclient/python-swiftclient.spec b/specs/p/python-swiftclient/python-swiftclient.spec index 14247de9e29..b4f8bf2ee62 100644 --- a/specs/p/python-swiftclient/python-swiftclient.spec +++ b/specs/p/python-swiftclient/python-swiftclient.spec @@ -21,7 +21,7 @@ Object Storage API. Name: python-swiftclient Version: 4.6.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Client Library for OpenStack Object Storage API License: Apache-2.0 URL: http://launchpad.net/python-swiftclient/ diff --git a/specs/p/python-sybil/python-sybil.spec b/specs/p/python-sybil/python-sybil.spec index a7961774c22..2df0ed4531a 100644 --- a/specs/p/python-sybil/python-sybil.spec +++ b/specs/p/python-sybil/python-sybil.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 9.1.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Automated testing for the examples in your documentation License: MIT diff --git a/specs/p/python-syrupy/python-syrupy.spec b/specs/p/python-syrupy/python-syrupy.spec index 92ae72aac08..fbee048794f 100644 --- a/specs/p/python-syrupy/python-syrupy.spec +++ b/specs/p/python-syrupy/python-syrupy.spec @@ -3,7 +3,7 @@ Name: python-syrupy Version: 4.9.1 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Pytest snapshot plugin License: Apache-2.0 diff --git a/specs/p/python-templated-dictionary/python-templated-dictionary.spec b/specs/p/python-templated-dictionary/python-templated-dictionary.spec index 9f08645848f..29ca3ea104d 100644 --- a/specs/p/python-templated-dictionary/python-templated-dictionary.spec +++ b/specs/p/python-templated-dictionary/python-templated-dictionary.spec @@ -10,7 +10,7 @@ Name: python-%{srcname} Version: 1.6 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Dictionary with Jinja2 expansion License: GPL-2.0-or-later diff --git a/specs/p/python-tempora/python-tempora.spec b/specs/p/python-tempora/python-tempora.spec index 97420bfaa27..23640923cd9 100644 --- a/specs/p/python-tempora/python-tempora.spec +++ b/specs/p/python-tempora/python-tempora.spec @@ -7,7 +7,7 @@ Name: python-%{pypi_name} Version: 5.7.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Objects and routines pertaining to date and time (tempora) License: MIT diff --git a/specs/p/python-tensile/python-tensile.spec b/specs/p/python-tensile/python-tensile.spec index 4ebcae41bae..92e210e6224 100644 --- a/specs/p/python-tensile/python-tensile.spec +++ b/specs/p/python-tensile/python-tensile.spec @@ -23,7 +23,7 @@ Name: python-tensile-devel Name: python-tensile %endif Version: %{rocm_version} -Release: 2%{?dist} +Release: 2%{?dist} Summary: Tool for creating benchmark-driven backend libraries for GEMMs URL: https://github.com/ROCmSoftwarePlatform/Tensile diff --git a/specs/p/python-testrepository/python-testrepository.spec b/specs/p/python-testrepository/python-testrepository.spec index 254a292b7c9..56b9c6582bb 100644 --- a/specs/p/python-testrepository/python-testrepository.spec +++ b/specs/p/python-testrepository/python-testrepository.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 0.0.22 -Release: 2%{?dist} +Release: 2%{?dist} Summary: A repository of test results # Automatically converted from old format: ASL 2.0 - review is highly recommended. diff --git a/specs/p/python-text-unidecode/python-text-unidecode.spec b/specs/p/python-text-unidecode/python-text-unidecode.spec index 151df3f5d2a..848f82cd7f0 100644 --- a/specs/p/python-text-unidecode/python-text-unidecode.spec +++ b/specs/p/python-text-unidecode/python-text-unidecode.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 1.3 -Release: 25%{?dist} +Release: 25%{?dist} Summary: A Python module for handling non-Roman text data # Automatically converted from old format: GPL+ or Artistic - review is highly recommended. diff --git a/specs/p/python-tinycss2/python-tinycss2.spec b/specs/p/python-tinycss2/python-tinycss2.spec index 30285446a12..5deaf8b997b 100644 --- a/specs/p/python-tinycss2/python-tinycss2.spec +++ b/specs/p/python-tinycss2/python-tinycss2.spec @@ -6,7 +6,7 @@ Name: python-%{srcname} Version: 1.5.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Low-level CSS parser for Python License: BSD-3-Clause diff --git a/specs/p/python-toolz/python-toolz.spec b/specs/p/python-toolz/python-toolz.spec index b994745fd2e..563139f9b1f 100644 --- a/specs/p/python-toolz/python-toolz.spec +++ b/specs/p/python-toolz/python-toolz.spec @@ -31,7 +31,7 @@ suitable for most developers. Name: python-%{srcname} Version: 1.0.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: A functional standard library for Python # The project is released under the BSD-3-Clause license. diff --git a/specs/p/python-tpm2-pytss/python-tpm2-pytss.spec b/specs/p/python-tpm2-pytss/python-tpm2-pytss.spec index 18b60b7a266..e3fbb068df0 100644 --- a/specs/p/python-tpm2-pytss/python-tpm2-pytss.spec +++ b/specs/p/python-tpm2-pytss/python-tpm2-pytss.spec @@ -6,7 +6,7 @@ Name: python-%{pypi_name} Version: 2.3.0 -Release: 10%{?dist} +Release: 10%{?dist} Summary: TPM 2.0 TSS Bindings for Python License: BSD-2-Clause diff --git a/specs/p/python-troveclient/python-troveclient.spec b/specs/p/python-troveclient/python-troveclient.spec index aadf064a66f..3ce4ad42382 100644 --- a/specs/p/python-troveclient/python-troveclient.spec +++ b/specs/p/python-troveclient/python-troveclient.spec @@ -22,7 +22,7 @@ implements 100% (or less ;) ) of the Trove API. Name: python-troveclient Version: 8.6.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Client library for OpenStack DBaaS API License: Apache-2.0 diff --git a/specs/p/python-typing-extensions/python-typing-extensions.spec b/specs/p/python-typing-extensions/python-typing-extensions.spec index 29610ce8e17..60359a7cc2f 100644 --- a/specs/p/python-typing-extensions/python-typing-extensions.spec +++ b/specs/p/python-typing-extensions/python-typing-extensions.spec @@ -3,7 +3,7 @@ Name: python-typing-extensions Version: 4.15.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Backported and Experimental Type Hints for Python License: PSF-2.0 diff --git a/specs/p/python-typogrify/python-typogrify.spec b/specs/p/python-typogrify/python-typogrify.spec index e8d2bf8499f..b7c17a03da5 100644 --- a/specs/p/python-typogrify/python-typogrify.spec +++ b/specs/p/python-typogrify/python-typogrify.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 2.0.7 -Release: 28%{?dist} +Release: 28%{?dist} Summary: Filters to enhance web typography, with support for Django & Jinja templates # typogrify/packages/titlecase/__init__.py is MIT diff --git a/specs/p/python-uc-micro-py/python-uc-micro-py.spec b/specs/p/python-uc-micro-py/python-uc-micro-py.spec index cdd742f180a..1b33893e207 100644 --- a/specs/p/python-uc-micro-py/python-uc-micro-py.spec +++ b/specs/p/python-uc-micro-py/python-uc-micro-py.spec @@ -3,7 +3,7 @@ Name: python-uc-micro-py Version: 1.0.3 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Micro subset of Unicode data files for linkify-it.py projects License: MIT diff --git a/specs/p/python-ufoLib2/python-ufoLib2.spec b/specs/p/python-ufoLib2/python-ufoLib2.spec index 3d0ddcf850d..cd030903543 100644 --- a/specs/p/python-ufoLib2/python-ufoLib2.spec +++ b/specs/p/python-ufoLib2/python-ufoLib2.spec @@ -6,7 +6,7 @@ Name: python-ufoLib2 Version: 0.18.1 -Release: 5%{?dist} +Release: 5%{?dist} Summary: A library to deal with UFO font sources License: Apache-2.0 diff --git a/specs/p/python-ujson/python-ujson.spec b/specs/p/python-ujson/python-ujson.spec index 490d5acefd4..e6fb7c659a6 100644 --- a/specs/p/python-ujson/python-ujson.spec +++ b/specs/p/python-ujson/python-ujson.spec @@ -3,7 +3,7 @@ Name: python-ujson Version: 5.11.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Ultra fast JSON encoder and decoder written in pure C # The entire source is BSD-3-Clause, except: diff --git a/specs/p/python-ukkonen/python-ukkonen.spec b/specs/p/python-ukkonen/python-ukkonen.spec index 0846da45803..ca384c97268 100644 --- a/specs/p/python-ukkonen/python-ukkonen.spec +++ b/specs/p/python-ukkonen/python-ukkonen.spec @@ -3,7 +3,7 @@ Name: python-ukkonen Version: 1.0.1 -Release: 21%{?dist} +Release: 21%{?dist} Summary: Implementation of bounded Levenshtein distance (Ukkonen) License: MIT diff --git a/specs/p/python-unicodedata2/python-unicodedata2.spec b/specs/p/python-unicodedata2/python-unicodedata2.spec index a9e9ee07062..cff9887b3f5 100644 --- a/specs/p/python-unicodedata2/python-unicodedata2.spec +++ b/specs/p/python-unicodedata2/python-unicodedata2.spec @@ -6,7 +6,7 @@ Name: python-%{pypi_name} Version: 17.0.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Unicodedata backport updated to the latest Unicode version License: Apache-2.0 diff --git a/specs/p/python-uri-template/python-uri-template.spec b/specs/p/python-uri-template/python-uri-template.spec index df8e83c9156..21f083800dd 100644 --- a/specs/p/python-uri-template/python-uri-template.spec +++ b/specs/p/python-uri-template/python-uri-template.spec @@ -6,7 +6,7 @@ Name: python-%{pypi_name} Version: %{pypi_version} -Release: 6%{?dist} +Release: 6%{?dist} Summary: RFC 6570 URI Template Processor License: MIT diff --git a/specs/p/python-uritemplate/python-uritemplate.spec b/specs/p/python-uritemplate/python-uritemplate.spec index 44a4d8700c9..4bfb983e0bf 100644 --- a/specs/p/python-uritemplate/python-uritemplate.spec +++ b/specs/p/python-uritemplate/python-uritemplate.spec @@ -8,7 +8,7 @@ Name: python-%{modname} Version: 4.1.1 -Release: 18%{?dist} +Release: 18%{?dist} Summary: Simple python library to deal with URI Templates (RFC 6570) License: BSD-3-Clause OR Apache-2.0 diff --git a/specs/p/python-urlgrabber/python-urlgrabber.spec b/specs/p/python-urlgrabber/python-urlgrabber.spec index b4b769c8ec1..d56d2c14130 100644 --- a/specs/p/python-urlgrabber/python-urlgrabber.spec +++ b/specs/p/python-urlgrabber/python-urlgrabber.spec @@ -14,7 +14,7 @@ Name: python-%{pypi_name} Version: %{majorver}.%{minorver}.%{patchver} -Release: 25%{?dist} +Release: 25%{?dist} Summary: A high-level cross-protocol url-grabber # Automatically converted from old format: LGPLv2+ - review is highly recommended. diff --git a/specs/p/python-urllib-gssapi/python-urllib-gssapi.spec b/specs/p/python-urllib-gssapi/python-urllib-gssapi.spec index 4774217d2b9..66bbad0f21c 100644 --- a/specs/p/python-urllib-gssapi/python-urllib-gssapi.spec +++ b/specs/p/python-urllib-gssapi/python-urllib-gssapi.spec @@ -6,7 +6,7 @@ Name: python-%{sname} Version: 1.0.2 -Release: 20%{?dist} +Release: 20%{?dist} Summary: A GSSAPI/SPNEGO authentication handler for urllib/urllib2 License: Apache-2.0 diff --git a/specs/p/python-validators/python-validators.spec b/specs/p/python-validators/python-validators.spec index ed002a9ef5d..fb8619741dd 100644 --- a/specs/p/python-validators/python-validators.spec +++ b/specs/p/python-validators/python-validators.spec @@ -5,7 +5,7 @@ Name: python-%{pypi_name} Version: 0.35.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Data validation in Python for humans License: LicenseRef-Callaway-BSD diff --git a/specs/p/python-vcrpy/python-vcrpy.spec b/specs/p/python-vcrpy/python-vcrpy.spec index cab109ec986..63efa0c76f5 100644 --- a/specs/p/python-vcrpy/python-vcrpy.spec +++ b/specs/p/python-vcrpy/python-vcrpy.spec @@ -8,7 +8,7 @@ Name: python-%{modname} Version: 7.0.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Automatically mock your HTTP interactions to simplify and speed up testing License: MIT diff --git a/specs/p/python-verboselogs/python-verboselogs.spec b/specs/p/python-verboselogs/python-verboselogs.spec index 3ba926f8c52..e54bee4cfee 100644 --- a/specs/p/python-verboselogs/python-verboselogs.spec +++ b/specs/p/python-verboselogs/python-verboselogs.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 1.7 -Release: 32%{?dist} +Release: 32%{?dist} Summary: Verbose logging level for Python's logging module License: MIT diff --git a/specs/p/python-versioneer/python-versioneer.spec b/specs/p/python-versioneer/python-versioneer.spec index 3f1d45bfeaa..5cc7046525b 100644 --- a/specs/p/python-versioneer/python-versioneer.spec +++ b/specs/p/python-versioneer/python-versioneer.spec @@ -8,7 +8,7 @@ version-control system about the current tree.} Name: python-versioneer Version: 0.29 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Easy VCS-based management of project version strings License: Unlicense diff --git a/specs/p/python-voluptuous/python-voluptuous.spec b/specs/p/python-voluptuous/python-voluptuous.spec index b5ac8e022ac..096bfac8135 100644 --- a/specs/p/python-voluptuous/python-voluptuous.spec +++ b/specs/p/python-voluptuous/python-voluptuous.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 0.15.2 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Python data validation library License: BSD-3-Clause diff --git a/specs/p/python-w3lib/python-w3lib.spec b/specs/p/python-w3lib/python-w3lib.spec index 43c10904964..ef1d1b9ee49 100644 --- a/specs/p/python-w3lib/python-w3lib.spec +++ b/specs/p/python-w3lib/python-w3lib.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 2.3.1 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Library of web-related functions License: BSD-3-Clause diff --git a/specs/p/python-warlock/python-warlock.spec b/specs/p/python-warlock/python-warlock.spec index 257d2b50896..8ee406b542d 100644 --- a/specs/p/python-warlock/python-warlock.spec +++ b/specs/p/python-warlock/python-warlock.spec @@ -5,7 +5,7 @@ Name: python-warlock Version: 2.1.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Python object model built on top of JSON schema License: Apache-2.0 diff --git a/specs/p/python-wcag-contrast-ratio/python-wcag-contrast-ratio.spec b/specs/p/python-wcag-contrast-ratio/python-wcag-contrast-ratio.spec index 66e7b7afbe3..3fc1a236d0d 100644 --- a/specs/p/python-wcag-contrast-ratio/python-wcag-contrast-ratio.spec +++ b/specs/p/python-wcag-contrast-ratio/python-wcag-contrast-ratio.spec @@ -3,7 +3,7 @@ Name: python-wcag-contrast-ratio Version: 0.9 -Release: 17%{?dist} +Release: 17%{?dist} Summary: A library for computing contrast ratios, as required by WCAG 2.0 # SPDX License: MIT diff --git a/specs/p/python-webob/python-webob.spec b/specs/p/python-webob/python-webob.spec index ba2a1ba77c2..e54d36e11d7 100644 --- a/specs/p/python-webob/python-webob.spec +++ b/specs/p/python-webob/python-webob.spec @@ -12,7 +12,7 @@ environment. Name: python-webob Summary: WSGI request and response object Version: 1.8.9 -Release: 7%{?dist} +Release: 7%{?dist} License: MIT URL: https://webob.org Source: %{pypi_source webob} diff --git a/specs/p/python-websocket-client/python-websocket-client.spec b/specs/p/python-websocket-client/python-websocket-client.spec index 665787739f4..4c899913fb3 100644 --- a/specs/p/python-websocket-client/python-websocket-client.spec +++ b/specs/p/python-websocket-client/python-websocket-client.spec @@ -10,7 +10,7 @@ permessage-deflate extension from RFC 7692.} Name: python-websocket-client Version: 1.8.0 -Release: 8%{?dist} +Release: 8%{?dist} Summary: WebSocket client for python License: Apache-2.0 URL: https://github.com/websocket-client/websocket-client diff --git a/specs/p/python-webtest/python-webtest.spec b/specs/p/python-webtest/python-webtest.spec index 3c3bd6b5457..cf1570c5a8e 100644 --- a/specs/p/python-webtest/python-webtest.spec +++ b/specs/p/python-webtest/python-webtest.spec @@ -5,7 +5,7 @@ Name: python-webtest Version: 3.0.6 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Helper to test WSGI applications License: MIT diff --git a/specs/p/python-whoosh/python-whoosh.spec b/specs/p/python-whoosh/python-whoosh.spec index 11154bc2627..12ff5083f12 100644 --- a/specs/p/python-whoosh/python-whoosh.spec +++ b/specs/p/python-whoosh/python-whoosh.spec @@ -8,7 +8,7 @@ Name: python-whoosh Version: 2.7.4 -Release: 42%{?dist} +Release: 42%{?dist} Summary: Fast, pure-Python full text indexing, search, and spell checking library # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/p/python-winrm/python-winrm.spec b/specs/p/python-winrm/python-winrm.spec index 4075f9891f9..0bea1f4cb93 100644 --- a/specs/p/python-winrm/python-winrm.spec +++ b/specs/p/python-winrm/python-winrm.spec @@ -5,7 +5,7 @@ Name: python-%{srcname} Version: 0.5.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Python libraries for interacting with windows remote management License: MIT diff --git a/specs/p/python-wxpython4/python-wxpython4.spec b/specs/p/python-wxpython4/python-wxpython4.spec index 5764c88ec10..4f723407be3 100644 --- a/specs/p/python-wxpython4/python-wxpython4.spec +++ b/specs/p/python-wxpython4/python-wxpython4.spec @@ -15,7 +15,7 @@ specific code. Name: python-wxpython4 Version: 4.2.4 -Release: 2%{?dist} +Release: 2%{?dist} Summary: %{sum} # wxPython is licensed under the wxWidgets license. The only exception is # the pubsub code in wx/lib/pubsub which is BSD licensed. Note: wxPython diff --git a/specs/p/python-xapp/python-xapp.spec b/specs/p/python-xapp/python-xapp.spec index 2f778437416..e9043a01389 100644 --- a/specs/p/python-xapp/python-xapp.spec +++ b/specs/p/python-xapp/python-xapp.spec @@ -3,7 +3,7 @@ Name: python-xapp Version: 2.4.2 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Python bindings for xapps # Automatically converted from old format: LGPLv2 - review is highly recommended. diff --git a/specs/p/python-xlrd/python-xlrd.spec b/specs/p/python-xlrd/python-xlrd.spec index 79977fbdae6..80238c60481 100644 --- a/specs/p/python-xlrd/python-xlrd.spec +++ b/specs/p/python-xlrd/python-xlrd.spec @@ -6,7 +6,7 @@ Name: python-%{srcname} Version: 2.0.1 -Release: 27%{?dist} +Release: 27%{?dist} Summary: %{sum} # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/p/python-xlsxwriter/python-xlsxwriter.spec b/specs/p/python-xlsxwriter/python-xlsxwriter.spec index ed5d9627cbf..9ed823638a7 100644 --- a/specs/p/python-xlsxwriter/python-xlsxwriter.spec +++ b/specs/p/python-xlsxwriter/python-xlsxwriter.spec @@ -6,7 +6,7 @@ Name: python-%{pypi_name} Version: 3.2.9 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Python module for writing files in the Excel 2007+ XLSX file format License: BSD-2-Clause URL: https://pypi.python.org/pypi/XlsxWriter diff --git a/specs/p/python-xmltodict/python-xmltodict.spec b/specs/p/python-xmltodict/python-xmltodict.spec index f76b36eab87..093dc13fa5b 100644 --- a/specs/p/python-xmltodict/python-xmltodict.spec +++ b/specs/p/python-xmltodict/python-xmltodict.spec @@ -5,7 +5,7 @@ Name: python-xmltodict Version: 0.14.2 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Python to transform XML to JSON License: MIT diff --git a/specs/p/python-yarl/python-yarl.spec b/specs/p/python-yarl/python-yarl.spec index ef14c7640bd..a7bdb852c09 100644 --- a/specs/p/python-yarl/python-yarl.spec +++ b/specs/p/python-yarl/python-yarl.spec @@ -6,7 +6,7 @@ Name: python-%{pypi_name} Version: 1.22.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Python module to handle URLs License: Apache-2.0 diff --git a/specs/p/python-yubico/python-yubico.spec b/specs/p/python-yubico/python-yubico.spec index 550e2ef17c2..94c4477138a 100644 --- a/specs/p/python-yubico/python-yubico.spec +++ b/specs/p/python-yubico/python-yubico.spec @@ -6,7 +6,7 @@ Name: python-%{srcname} Version: 1.3.3 -Release: 23%{?dist} +Release: 23%{?dist} Summary: Pure-python library for interacting with Yubikeys License: BSD-2-Clause diff --git a/specs/p/python-zaqarclient/python-zaqarclient.spec b/specs/p/python-zaqarclient/python-zaqarclient.spec index b9551caa59b..278298d525f 100644 --- a/specs/p/python-zaqarclient/python-zaqarclient.spec +++ b/specs/p/python-zaqarclient/python-zaqarclient.spec @@ -14,7 +14,7 @@ Python client to Zaqar messaging service API v1 Name: python-zaqarclient Version: 2.8.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Client Library for OpenStack Zaqar Queueing API License: Apache-2.0 diff --git a/specs/p/python-zc-lockfile/python-zc-lockfile.spec b/specs/p/python-zc-lockfile/python-zc-lockfile.spec index 4054e5d820b..6f7272179b3 100644 --- a/specs/p/python-zc-lockfile/python-zc-lockfile.spec +++ b/specs/p/python-zc-lockfile/python-zc-lockfile.spec @@ -3,7 +3,7 @@ Name: python-zc-lockfile Version: 3.0.post1 -Release: 17%{?dist} +Release: 17%{?dist} Summary: Basic Inter-Process Locks License: ZPL-2.1 URL: https://pypi.io/project/zc.lockfile/ diff --git a/specs/p/python-zope-event/python-zope-event.spec b/specs/p/python-zope-event/python-zope-event.spec index 34f3d82df5d..98e104efea3 100644 --- a/specs/p/python-zope-event/python-zope-event.spec +++ b/specs/p/python-zope-event/python-zope-event.spec @@ -12,7 +12,7 @@ Name: python-zope-event Version: 5.1 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Zope Event Publication License: ZPL-2.1 URL: https://pypi.python.org/pypi/zope.event/ diff --git a/specs/p/python-zope-exceptions/python-zope-exceptions.spec b/specs/p/python-zope-exceptions/python-zope-exceptions.spec index a7f07b66076..0c1f7675816 100644 --- a/specs/p/python-zope-exceptions/python-zope-exceptions.spec +++ b/specs/p/python-zope-exceptions/python-zope-exceptions.spec @@ -11,7 +11,7 @@ Summary: Zope Exceptions Name: python-zope-exceptions Version: 6.0 -Release: 3%{?dist} +Release: 3%{?dist} VCS: git:%{giturl}.git Source0: %{giturl}/archive/%{version}/%{modname}-%{version}.tar.gz License: ZPL-2.1 diff --git a/specs/p/python-zope-testing/python-zope-testing.spec b/specs/p/python-zope-testing/python-zope-testing.spec index 6d8b2a60b49..0c2299ad08a 100644 --- a/specs/p/python-zope-testing/python-zope-testing.spec +++ b/specs/p/python-zope-testing/python-zope-testing.spec @@ -12,7 +12,7 @@ Name: python-zope-testing Version: 5.1 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Zope Testing Framework License: ZPL-2.1 URL: https://pypi.io/project/%{modname} diff --git a/specs/p/python-zopfli/python-zopfli.spec b/specs/p/python-zopfli/python-zopfli.spec index 09926e2ba4c..607b9e2e2c5 100644 --- a/specs/p/python-zopfli/python-zopfli.spec +++ b/specs/p/python-zopfli/python-zopfli.spec @@ -6,7 +6,7 @@ Name: python-zopfli Version: 0.2.3 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Zopfli module for python License: Apache-2.0 URL: https://github.com/obp/py-zopfli diff --git a/specs/p/python-zstarfile/python-zstarfile.spec b/specs/p/python-zstarfile/python-zstarfile.spec index eb56edb0229..5c075dd5bef 100644 --- a/specs/p/python-zstarfile/python-zstarfile.spec +++ b/specs/p/python-zstarfile/python-zstarfile.spec @@ -7,7 +7,7 @@ Name: python-zstarfile Version: 0.3.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Tarfile extension with additional compression algorithms and PEP 706 by default diff --git a/specs/p/python-zstd/python-zstd.spec b/specs/p/python-zstd/python-zstd.spec index f324061f19f..437289f467f 100644 --- a/specs/p/python-zstd/python-zstd.spec +++ b/specs/p/python-zstd/python-zstd.spec @@ -9,7 +9,7 @@ Version: 1.5.7.2 # grep "^VERSION = " zstd-*/setup.py %global zstd_version %(echo %{version} | cut -d. -f1,2,3 --output-delimiter .) -Release: 5%{?dist} +Release: 5%{?dist} Summary: Zstd Bindings for Python # original zstd bits are GPL-2.0-or-later OR BSD-2-Clause diff --git a/specs/p/python3-mypy/python3-mypy.spec b/specs/p/python3-mypy/python3-mypy.spec index 8745499b51a..6bfb98cc838 100644 --- a/specs/p/python3-mypy/python3-mypy.spec +++ b/specs/p/python3-mypy/python3-mypy.spec @@ -3,7 +3,7 @@ Name: python3-mypy Version: 1.18.2 -Release: 2%{?dist} +Release: 2%{?dist} Summary: A static type checker for Python %{?python_provide:%python_provide python3-mypy} diff --git a/specs/p/python3-openid/python3-openid.spec b/specs/p/python3-openid/python3-openid.spec index 93e5a02182e..d8f30a1dd2e 100644 --- a/specs/p/python3-openid/python3-openid.spec +++ b/specs/p/python3-openid/python3-openid.spec @@ -3,7 +3,7 @@ Name: python3-openid Version: 3.1.0 -Release: 30%{?dist} +Release: 30%{?dist} Summary: Python 3 port of the python-openid library # Automatically converted from old format: ASL 2.0 - review is highly recommended. License: Apache-2.0 diff --git a/specs/p/pytz/pytz.spec b/specs/p/pytz/pytz.spec index f3477e6e8bb..4f1b68af53f 100644 --- a/specs/p/pytz/pytz.spec +++ b/specs/p/pytz/pytz.spec @@ -6,7 +6,7 @@ Name: pytz Version: 2025.2 -Release: 7%{?dist} +Release: 7%{?dist} Summary: World Timezone Definitions for Python License: MIT diff --git a/specs/p/pywbem/pywbem.spec b/specs/p/pywbem/pywbem.spec index 2c18283f21f..8caaace80d2 100644 --- a/specs/p/pywbem/pywbem.spec +++ b/specs/p/pywbem/pywbem.spec @@ -6,7 +6,7 @@ Name: pywbem Version: 1.7.3 Epoch: 1 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Python WBEM client interface and related utilities License: LGPL-2.1-or-later URL: https://github.com/pywbem/pywbem diff --git a/specs/p/pyxattr/pyxattr.spec b/specs/p/pyxattr/pyxattr.spec index 2e96ba28b82..c883fbb1ff2 100644 --- a/specs/p/pyxattr/pyxattr.spec +++ b/specs/p/pyxattr/pyxattr.spec @@ -4,7 +4,7 @@ Name: pyxattr Summary: Extended attributes library wrapper for Python Version: 0.7.2 -Release: 19%{?dist} +Release: 19%{?dist} # Automatically converted from old format: LGPLv2+ - review is highly recommended. License: LicenseRef-Callaway-LGPLv2+ URL: https://pyxattr.k1024.org/ diff --git a/specs/p/pyxdg/pyxdg.spec b/specs/p/pyxdg/pyxdg.spec index c38fc256387..c3736649de1 100644 --- a/specs/p/pyxdg/pyxdg.spec +++ b/specs/p/pyxdg/pyxdg.spec @@ -3,7 +3,7 @@ Name: pyxdg Version: 0.28 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Python library to access freedesktop.org standards License: LGPL-2.0-only URL: http://freedesktop.org/Software/pyxdg diff --git a/specs/q/qatengine/qatengine.spec b/specs/q/qatengine/qatengine.spec index 0c9d9ff99a3..e40ec7cf4be 100644 --- a/specs/q/qatengine/qatengine.spec +++ b/specs/q/qatengine/qatengine.spec @@ -17,7 +17,7 @@ Name: qatengine Version: 2.0.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Intel QuickAssist Technology (QAT) OpenSSL Engine # Most of the source code is BSD, with the following exceptions: diff --git a/specs/q/qatlib/qatlib.spec b/specs/q/qatlib/qatlib.spec index 10cb382ce65..0a315628ba3 100644 --- a/specs/q/qatlib/qatlib.spec +++ b/specs/q/qatlib/qatlib.spec @@ -7,7 +7,7 @@ %global libusdm_soversion 0 Name: qatlib Version: 25.08.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Intel QuickAssist user space library # The entire source code is released under BSD. # For a breakdown of inbound licenses see the INSTALL file. diff --git a/specs/q/qatzip/qatzip.spec b/specs/q/qatzip/qatzip.spec index 66dd2ffd32d..09b73af40f7 100644 --- a/specs/q/qatzip/qatzip.spec +++ b/specs/q/qatzip/qatzip.spec @@ -8,7 +8,7 @@ Name: qatzip Version: 1.3.1 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Intel QuickAssist Technology (QAT) QATzip Library License: BSD-3-Clause URL: https://github.com/intel/%{githubname} diff --git a/specs/q/qcustomplot/qcustomplot.spec b/specs/q/qcustomplot/qcustomplot.spec index d1e0d4a42c0..acbfc51eda8 100644 --- a/specs/q/qcustomplot/qcustomplot.spec +++ b/specs/q/qcustomplot/qcustomplot.spec @@ -15,7 +15,7 @@ Name: qcustomplot Version: 2.1.1 -Release: 15%{?dist} +Release: 15%{?dist} Summary: Qt widget for plotting and data visualization License: GPL-3.0-or-later diff --git a/specs/q/qdbm/qdbm.spec b/specs/q/qdbm/qdbm.spec index a58292023c1..42e9f44551b 100644 --- a/specs/q/qdbm/qdbm.spec +++ b/specs/q/qdbm/qdbm.spec @@ -15,7 +15,7 @@ BuildRequires: javapackages-local-openjdk%2 \ Name: qdbm Version: 1.8.78 -Release: 73%{?dist} +Release: 73%{?dist} # SPDX confirmed License: LGPL-2.1-or-later diff --git a/specs/q/qjson/qjson.spec b/specs/q/qjson/qjson.spec index 99e0d85ef79..621984d5ee4 100644 --- a/specs/q/qjson/qjson.spec +++ b/specs/q/qjson/qjson.spec @@ -16,7 +16,7 @@ Name: qjson Version: 0.9.0 -Release: 24%{?dist} +Release: 24%{?dist} Summary: A qt-based library that maps JSON data to QVariant objects # Automatically converted from old format: GPLv2+ - review is highly recommended. diff --git a/specs/q/qpid-proton/qpid-proton.spec b/specs/q/qpid-proton/qpid-proton.spec index ae0eaa0bf06..f33f308092b 100644 --- a/specs/q/qpid-proton/qpid-proton.spec +++ b/specs/q/qpid-proton/qpid-proton.spec @@ -11,7 +11,7 @@ Name: qpid-proton Version: 0.40.0 -Release: 13%{?dist} +Release: 13%{?dist} Summary: A high performance, lightweight messaging library # Automatically converted from old format: ASL 2.0 - review is highly recommended. License: Apache-2.0 diff --git a/specs/q/qrencode/qrencode.spec b/specs/q/qrencode/qrencode.spec index 5292af3dc30..00fbbc8afa6 100644 --- a/specs/q/qrencode/qrencode.spec +++ b/specs/q/qrencode/qrencode.spec @@ -15,7 +15,7 @@ Name: qrencode Version: 4.1.1 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Generate QR 2D barcodes # Automatically converted from old format: LGPLv2+ - review is highly recommended. diff --git a/specs/q/qrupdate/qrupdate.spec b/specs/q/qrupdate/qrupdate.spec index ecf30df11a0..9dae7b758af 100644 --- a/specs/q/qrupdate/qrupdate.spec +++ b/specs/q/qrupdate/qrupdate.spec @@ -9,7 +9,7 @@ Name: qrupdate Version: 1.1.2 -Release: 35%{?dist} +Release: 35%{?dist} Summary: A Fortran library for fast updates of QR and Cholesky decompositions # Automatically converted from old format: GPLv3+ - review is highly recommended. License: GPL-3.0-or-later diff --git a/specs/q/qt-mobility/qt-mobility.spec b/specs/q/qt-mobility/qt-mobility.spec index 1d12d57ae68..b0f435c97b2 100644 --- a/specs/q/qt-mobility/qt-mobility.spec +++ b/specs/q/qt-mobility/qt-mobility.spec @@ -11,7 +11,7 @@ Name: qt-mobility Summary: Qt Mobility Framework Version: 1.2.2 -Release: 0.50.%{snap}git%{git_short}%{?dist} +Release: 0.53.%{snap}git%{git_short}%{?dist} License: LGPL-2.1-only WITH Digia-Qt-LGPL-exception-1.1 URL: https://code.qt.io/cgit/qt-mobility/qt-mobility.git diff --git a/specs/q/qt5-qtwebkit/qt5-qtwebkit.spec b/specs/q/qt5-qtwebkit/qt5-qtwebkit.spec index 363e9f8af52..2160c4e4c9a 100644 --- a/specs/q/qt5-qtwebkit/qt5-qtwebkit.spec +++ b/specs/q/qt5-qtwebkit/qt5-qtwebkit.spec @@ -21,7 +21,7 @@ Name: qt5-%{qt_module} Version: 5.212.0 -Release: 0.96%{?prerel}%{?dist} +Release: 0.100%{?prerel}%{?dist} Summary: Qt5 - QtWebKit components License: LGPL-2.0-only AND BSD-3-Clause diff --git a/specs/q/quota/quota.spec b/specs/q/quota/quota.spec index 209cb5760c8..35340b63852 100644 --- a/specs/q/quota/quota.spec +++ b/specs/q/quota/quota.spec @@ -16,7 +16,7 @@ Name: quota Epoch: 1 Version: 4.10 -Release: 3%{?dist} +Release: 3%{?dist} Summary: System administration tools for monitoring users' disk usage # quota_nld.c, quotaio_xfs.h: GPL-2.0-only # bylabel.c copied from util-linux: GPL-2.0-or-later diff --git a/specs/r/R/R.spec b/specs/r/R/R.spec index 662bde45460..dd1787d3293 100644 --- a/specs/r/R/R.spec +++ b/specs/r/R/R.spec @@ -38,7 +38,7 @@ Name: R Version: %{major_version}.%{minor_version}.%{patch_version} -Release: 4%{?dist} +Release: 4%{?dist} Summary: A language for data analysis and graphics License: GPL-2.0-or-later diff --git a/specs/r/ragel/ragel.spec b/specs/r/ragel/ragel.spec index aacc83f513e..71d671ed4a9 100644 --- a/specs/r/ragel/ragel.spec +++ b/specs/r/ragel/ragel.spec @@ -5,7 +5,7 @@ Name: ragel Version: 7.0.4 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Finite state machine compiler # aapl/ is the LGPLv2+ diff --git a/specs/r/rasdaemon/rasdaemon.spec b/specs/r/rasdaemon/rasdaemon.spec index d3197cc0b02..e5ee7f6e3fb 100644 --- a/specs/r/rasdaemon/rasdaemon.spec +++ b/specs/r/rasdaemon/rasdaemon.spec @@ -3,7 +3,7 @@ Name: rasdaemon Version: 0.8.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Utility to receive RAS error tracings Group: Applications/System # Automatically converted from old format: GPLv2 - review is highly recommended. diff --git a/specs/r/rb_libtorrent/rb_libtorrent.spec b/specs/r/rb_libtorrent/rb_libtorrent.spec index 3e28682cd07..6c0f3657171 100644 --- a/specs/r/rb_libtorrent/rb_libtorrent.spec +++ b/specs/r/rb_libtorrent/rb_libtorrent.spec @@ -5,7 +5,7 @@ Name: rb_libtorrent Version: 2.0.11 -Release: 4%{?dist} +Release: 4%{?dist} Summary: A C++ BitTorrent library aiming to be the best alternative License: BSD diff --git a/specs/r/rccl/rccl.spec b/specs/r/rccl/rccl.spec index e98d00cf968..57dc4931010 100644 --- a/specs/r/rccl/rccl.spec +++ b/specs/r/rccl/rccl.spec @@ -52,7 +52,7 @@ Name: %{rccl_name} Version: %{rocm_version} -Release: 6%{?dist} +Release: 6%{?dist} Summary: ROCm Communication Collectives Library Url: https://github.com/ROCm/rccl diff --git a/specs/r/recode/recode.spec b/specs/r/recode/recode.spec index 293c00e739d..136f53daa48 100644 --- a/specs/r/recode/recode.spec +++ b/specs/r/recode/recode.spec @@ -3,7 +3,7 @@ Name: recode Version: 3.7.15 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Conversion between character sets and surfaces # COPYING: GPLv3 text # COPYING-LIB: LGPLv3 text diff --git a/specs/r/redhat-fonts/redhat-fonts.spec b/specs/r/redhat-fonts/redhat-fonts.spec index 962acd94eae..ea6d2347a40 100644 --- a/specs/r/redhat-fonts/redhat-fonts.spec +++ b/specs/r/redhat-fonts/redhat-fonts.spec @@ -29,7 +29,7 @@ and designed by Jeremy Mickel / MCKL for the new Red Hat identity. Name: %{fontname}-fonts Version: 4.1.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Red Hat Typeface fonts # Only the metainfo files are CC-BY-SA License: OFL-1.1-RFN AND CC-BY-SA-4.0 diff --git a/specs/r/reflections/reflections.spec b/specs/r/reflections/reflections.spec index 376a75c76ac..bf0fa8719a6 100644 --- a/specs/r/reflections/reflections.spec +++ b/specs/r/reflections/reflections.spec @@ -3,7 +3,7 @@ Name: reflections Version: 0.9.12 -Release: 22%{?dist} +Release: 22%{?dist} Summary: Java run-time meta-data analysis License: WTFPL URL: https://github.com/ronmamo/reflections diff --git a/specs/r/resolv_wrapper/resolv_wrapper.spec b/specs/r/resolv_wrapper/resolv_wrapper.spec index cec5ee1121f..857b915e913 100644 --- a/specs/r/resolv_wrapper/resolv_wrapper.spec +++ b/specs/r/resolv_wrapper/resolv_wrapper.spec @@ -3,7 +3,7 @@ Name: resolv_wrapper Version: 1.1.8 -Release: 11%{?dist} +Release: 11%{?dist} Summary: A wrapper for dns name resolving or dns faking License: BSD-3-Clause diff --git a/specs/r/resource-agents/resource-agents.spec b/specs/r/resource-agents/resource-agents.spec index f12445b502b..497608f1fa2 100644 --- a/specs/r/resource-agents/resource-agents.spec +++ b/specs/r/resource-agents/resource-agents.spec @@ -55,7 +55,7 @@ Name: resource-agents Summary: Open Source HA Reusable Cluster Resource Scripts Version: 4.17.0 -Release: 1%{?rcver:%{rcver}}%{?numcomm:.%{numcomm}}%{?alphatag:.%{alphatag}}%{?dirty:.%{dirty}}%{?dist} +Release: 4%{?rcver:%{rcver}}%{?numcomm:.%{numcomm}}%{?alphatag:.%{alphatag}}%{?dirty:.%{dirty}}%{?dist} License: GPL-2.0-or-later AND LGPL-2.1-or-later URL: https://github.com/ClusterLabs/resource-agents Source0: %{upstream_prefix}-%{upstream_version}.tar.gz diff --git a/specs/r/resteasy/resteasy.spec b/specs/r/resteasy/resteasy.spec index fb6e2189326..4058b0a7ea4 100644 --- a/specs/r/resteasy/resteasy.spec +++ b/specs/r/resteasy/resteasy.spec @@ -6,7 +6,7 @@ Name: resteasy Version: 3.0.26 -Release: 38%{?dist} +Release: 38%{?dist} Summary: Framework for RESTful Web services and Java applications License: Apache-2.0 URL: http://resteasy.jboss.org/ diff --git a/specs/r/rhash/rhash.spec b/specs/r/rhash/rhash.spec index 4c7422f7957..e945a43ce54 100644 --- a/specs/r/rhash/rhash.spec +++ b/specs/r/rhash/rhash.spec @@ -3,7 +3,7 @@ Name: rhash Version: 1.4.5 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Great utility for computing hash sums License: MIT diff --git a/specs/r/rit-meera-new-fonts/rit-meera-new-fonts.spec b/specs/r/rit-meera-new-fonts/rit-meera-new-fonts.spec index a11b052a5a1..3be89d398b2 100644 --- a/specs/r/rit-meera-new-fonts/rit-meera-new-fonts.spec +++ b/specs/r/rit-meera-new-fonts/rit-meera-new-fonts.spec @@ -3,7 +3,7 @@ # SPDX-License-Identifier: MIT Version: 1.6.2 -Release: 5%{?dist} +Release: 5%{?dist} URL: https://gitlab.com/rit-fonts/%{fontsource} Patch1: %{name}-add-monospace-fallback.patch diff --git a/specs/r/rit-rachana-fonts/rit-rachana-fonts.spec b/specs/r/rit-rachana-fonts/rit-rachana-fonts.spec index 340ba89668d..885dbf38b2e 100644 --- a/specs/r/rit-rachana-fonts/rit-rachana-fonts.spec +++ b/specs/r/rit-rachana-fonts/rit-rachana-fonts.spec @@ -3,7 +3,7 @@ # SPDX-License-Identifier: MIT Version: 1.5.2 -Release: 5%{?dist} +Release: 5%{?dist} URL: https://gitlab.com/rit-fonts/%{fontsource} %global foundry RIT diff --git a/specs/r/rng-tools/rng-tools.spec b/specs/r/rng-tools/rng-tools.spec index a323431863f..a1eeb62b9e4 100644 --- a/specs/r/rng-tools/rng-tools.spec +++ b/specs/r/rng-tools/rng-tools.spec @@ -15,7 +15,7 @@ Summary: Random number generator related utilities Name: rng-tools Version: 6.17 -Release: 8%{?dist} +Release: 8%{?dist} License: GPL-2.0-or-later URL: https://github.com/nhorman/rng-tools Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz diff --git a/specs/r/rocal/rocal.spec b/specs/r/rocal/rocal.spec index 6336b91fdec..55767f20257 100644 --- a/specs/r/rocal/rocal.spec +++ b/specs/r/rocal/rocal.spec @@ -37,7 +37,7 @@ Name: rocal Version: %{rocm_version} -Release: 3%{?dist} +Release: 3%{?dist} Summary: ROCm Augmentation Library Url: https://github.com/ROCm/rocAL diff --git a/specs/r/rocalution/rocalution.spec b/specs/r/rocalution/rocalution.spec index df75b3952fd..2d2d8d4d369 100644 --- a/specs/r/rocalution/rocalution.spec +++ b/specs/r/rocalution/rocalution.spec @@ -51,7 +51,7 @@ Name: %{rocalution_name} Version: %{rocm_version} -Release: 7%{?dist} +Release: 7%{?dist} Summary: Next generation library for iterative sparse solvers for ROCm platform Url: https://github.com/ROCm/%{upstreamname} License: MIT diff --git a/specs/r/rocblas/rocblas.spec b/specs/r/rocblas/rocblas.spec index 47cc96f1a3e..5ef402f7040 100644 --- a/specs/r/rocblas/rocblas.spec +++ b/specs/r/rocblas/rocblas.spec @@ -122,7 +122,7 @@ Name: %{rocblas_name} Version: %{rocm_version} -Release: 2%{?dist} +Release: 2%{?dist} Summary: BLAS implementation for ROCm Url: https://github.com/ROCmSoftwarePlatform/%{upstreamname} License: MIT AND BSD-3-Clause diff --git a/specs/r/rocclr/rocclr.spec b/specs/r/rocclr/rocclr.spec index 0a8d1896fad..8fe9fd3e5ee 100644 --- a/specs/r/rocclr/rocclr.spec +++ b/specs/r/rocclr/rocclr.spec @@ -63,7 +63,7 @@ Name: rocclr Version: %{rocm_version} -Release: 3%{?dist} +Release: 3%{?dist} Summary: ROCm Compute Language Runtime Url: https://github.com/ROCm/clr License: MIT diff --git a/specs/r/rocdecode/rocdecode.spec b/specs/r/rocdecode/rocdecode.spec index 2ab9d2599c2..225149b3d03 100644 --- a/specs/r/rocdecode/rocdecode.spec +++ b/specs/r/rocdecode/rocdecode.spec @@ -41,7 +41,7 @@ Name: %{rocdecode_name} Version: %{rocm_version} -Release: 5%{?dist} +Release: 5%{?dist} Summary: High-performance video decode SDK for AMD GPUs Url: https://github.com/ROCm/rocDecode diff --git a/specs/r/rocfft/rocfft.spec b/specs/r/rocfft/rocfft.spec index 8b5d3d6f8f7..369b96a8e0c 100755 --- a/specs/r/rocfft/rocfft.spec +++ b/specs/r/rocfft/rocfft.spec @@ -92,7 +92,7 @@ Name: %{rocfft_name} Version: %{rocm_version} -Release: 4%{?dist} +Release: 4%{?dist} Summary: ROCm Fast Fourier Transforms (FFT) library Url: https://github.com/ROCm/%{upstreamname} diff --git a/specs/r/rocjpeg/rocjpeg.spec b/specs/r/rocjpeg/rocjpeg.spec index b73d6f91a6b..83a9abc336c 100644 --- a/specs/r/rocjpeg/rocjpeg.spec +++ b/specs/r/rocjpeg/rocjpeg.spec @@ -41,7 +41,7 @@ Name: %{rocjpeg_name} Version: %{rocm_version} -Release: 6%{?dist} +Release: 6%{?dist} Summary: A high-performance jpeg decode library for AMD’s GPUs Url: https://github.com/ROCm/rocJPEG diff --git a/specs/r/rocm-bandwidth-test/rocm-bandwidth-test.spec b/specs/r/rocm-bandwidth-test/rocm-bandwidth-test.spec index 209a624d293..c640697185a 100644 --- a/specs/r/rocm-bandwidth-test/rocm-bandwidth-test.spec +++ b/specs/r/rocm-bandwidth-test/rocm-bandwidth-test.spec @@ -11,7 +11,7 @@ Name: rocm-bandwidth-test Version: %{rocm_version} -Release: 2%{?dist} +Release: 2%{?dist} Summary: Bandwidth test for ROCm # License mismatch diff --git a/specs/r/rocm-cmake/rocm-cmake.spec b/specs/r/rocm-cmake/rocm-cmake.spec index 3c2de461ef3..1edc001d405 100644 --- a/specs/r/rocm-cmake/rocm-cmake.spec +++ b/specs/r/rocm-cmake/rocm-cmake.spec @@ -10,7 +10,7 @@ Name: rocm-cmake Version: %{rocm_version} -Release: 3%{?dist} +Release: 3%{?dist} Summary: CMake modules for common build and development tasks for ROCm License: MIT URL: https://github.com/ROCm/rocm-cmake diff --git a/specs/r/rocm-compilersupport/rocm-compilersupport.spec b/specs/r/rocm-compilersupport/rocm-compilersupport.spec index 7f15c107316..2033f36148c 100644 --- a/specs/r/rocm-compilersupport/rocm-compilersupport.spec +++ b/specs/r/rocm-compilersupport/rocm-compilersupport.spec @@ -45,7 +45,7 @@ Name: rocm-compilersupport Version: %{llvm_maj_ver} -Release: %[15 + %{azl_release}].rocm%{rocm_version}%{?dist} +Release: %[23 + %{azl_release}].rocm%{rocm_version}%{?dist} Summary: Various AMD ROCm LLVM related services %if 0%{?suse_version} Group: Development/Languages/Other diff --git a/specs/r/rocm-core/rocm-core.spec b/specs/r/rocm-core/rocm-core.spec index febcd1b0169..2d2c66ea42d 100644 --- a/specs/r/rocm-core/rocm-core.spec +++ b/specs/r/rocm-core/rocm-core.spec @@ -17,7 +17,7 @@ Name: %{core_name} Version: %{rocm_version} -Release: 2%{?dist} +Release: 2%{?dist} Summary: A utility to get the ROCm release version Url: https://github.com/ROCm/%{upstreamname} License: MIT diff --git a/specs/r/rocm-examples/rocm-examples.spec b/specs/r/rocm-examples/rocm-examples.spec index 2d93c0baf33..875aee59239 100644 --- a/specs/r/rocm-examples/rocm-examples.spec +++ b/specs/r/rocm-examples/rocm-examples.spec @@ -28,7 +28,7 @@ Name: rocm-examples Version: %{rocm_version} -Release: 4%{?dist} +Release: 4%{?dist} Summary: A collection of examples for the ROCm software stack Url: https://github.com/ROCm/%{upstreamname} License: MIT AND Apache-2.0 diff --git a/specs/r/rocm-omp/rocm-omp.spec b/specs/r/rocm-omp/rocm-omp.spec index 1bebbabd611..399918b5406 100644 --- a/specs/r/rocm-omp/rocm-omp.spec +++ b/specs/r/rocm-omp/rocm-omp.spec @@ -24,7 +24,7 @@ Name: rocm-omp Version: %{rocm_version} -Release: 3%{?dist} +Release: 3%{?dist} Summary: ROCm OpenMP Url: https://github.com/ROCm/%{upstreamname} diff --git a/specs/r/rocm-rpm-macros/rocm-rpm-macros.spec b/specs/r/rocm-rpm-macros/rocm-rpm-macros.spec index 8d5f6dcdf53..c16ded9ffa6 100644 --- a/specs/r/rocm-rpm-macros/rocm-rpm-macros.spec +++ b/specs/r/rocm-rpm-macros/rocm-rpm-macros.spec @@ -3,7 +3,7 @@ Name: rocm-rpm-macros Version: 6.4.2 -Release: 2%{?dist} +Release: 2%{?dist} Summary: ROCm RPM macros License: GPL-2.0-or-later diff --git a/specs/r/rocm-rpp/rocm-rpp.spec b/specs/r/rocm-rpp/rocm-rpp.spec index 1ab9ecd4df6..b22fc839d12 100644 --- a/specs/r/rocm-rpp/rocm-rpp.spec +++ b/specs/r/rocm-rpp/rocm-rpp.spec @@ -25,7 +25,7 @@ Name: rocm-rpp Version: %{rocm_version} -Release: 6%{?dist} +Release: 6%{?dist} Summary: ROCm Performace Primatives for computer vision Url: https://github.com/ROCm/%{upstreamname} License: MIT AND Apache-2.0 AND LicenseRef-Fedora-Public-Domain diff --git a/specs/r/rocm-runtime/rocm-runtime.spec b/specs/r/rocm-runtime/rocm-runtime.spec index 69939268666..bd9287c2fa6 100644 --- a/specs/r/rocm-runtime/rocm-runtime.spec +++ b/specs/r/rocm-runtime/rocm-runtime.spec @@ -32,7 +32,7 @@ Name: %{runtime_name} Version: %{rocm_version} -Release: 4%{?dist} +Release: 4%{?dist} Summary: ROCm Runtime Library License: NCSA diff --git a/specs/r/rocm-smi/rocm-smi.spec b/specs/r/rocm-smi/rocm-smi.spec index 9b4f791c650..a6cc547de8b 100644 --- a/specs/r/rocm-smi/rocm-smi.spec +++ b/specs/r/rocm-smi/rocm-smi.spec @@ -17,7 +17,7 @@ Name: rocm-smi Version: %{rocm_version} -Release: 2%{?dist} +Release: 2%{?dist} Summary: ROCm System Management Interface Library License: MIT AND NCSA diff --git a/specs/r/rocm/rocm.spec b/specs/r/rocm/rocm.spec index d992e4ff63d..23fc1807f67 100644 --- a/specs/r/rocm/rocm.spec +++ b/specs/r/rocm/rocm.spec @@ -7,7 +7,7 @@ Name: rocm Version: %{rocm_version} -Release: 2%{?dist} +Release: 2%{?dist} Summary: ROCm Metapackage License: MIT diff --git a/specs/r/rocminfo/rocminfo.spec b/specs/r/rocminfo/rocminfo.spec index e70cd8c4249..4a8654252ff 100644 --- a/specs/r/rocminfo/rocminfo.spec +++ b/specs/r/rocminfo/rocminfo.spec @@ -8,7 +8,7 @@ Name: rocminfo Version: %{rocm_version} -Release: 3%{?dist} +Release: 3%{?dist} Summary: ROCm system info utility License: NCSA diff --git a/specs/r/rocprim/rocprim.spec b/specs/r/rocprim/rocprim.spec index 2ba96084bbc..23effd9b174 100644 --- a/specs/r/rocprim/rocprim.spec +++ b/specs/r/rocprim/rocprim.spec @@ -22,7 +22,7 @@ Name: rocprim Version: %{rocm_version} -Release: 4%{?dist} +Release: 4%{?dist} Summary: ROCm parallel primatives License: MIT AND BSD-3-Clause diff --git a/specs/r/rocrand/rocrand.spec b/specs/r/rocrand/rocrand.spec index f8b0f7f00e9..2c475840be3 100644 --- a/specs/r/rocrand/rocrand.spec +++ b/specs/r/rocrand/rocrand.spec @@ -86,7 +86,7 @@ Name: %{rocrand_name} Version: %{rocm_version} -Release: 6%{?dist} +Release: 6%{?dist} Summary: ROCm random number generator Url: https://github.com/ROCm/rocRAND diff --git a/specs/r/rocsolver/rocsolver.spec b/specs/r/rocsolver/rocsolver.spec index bd9e4143b6a..778ad92f1ca 100644 --- a/specs/r/rocsolver/rocsolver.spec +++ b/specs/r/rocsolver/rocsolver.spec @@ -75,7 +75,7 @@ Name: %{rocsolver_name} Version: %{rocm_version} -Release: 3%{?dist} +Release: 3%{?dist} Summary: Next generation LAPACK implementation for ROCm platform Url: https://github.com/ROCm/rocSOLVER diff --git a/specs/r/rocsparse/rocsparse.spec b/specs/r/rocsparse/rocsparse.spec index 4eaaad6fd3c..710af617d3d 100644 --- a/specs/r/rocsparse/rocsparse.spec +++ b/specs/r/rocsparse/rocsparse.spec @@ -82,7 +82,7 @@ Name: %{rocsparse_name} Version: %{rocm_version} -Release: 2%{?dist} +Release: 2%{?dist} Summary: SPARSE implementation for ROCm Url: https://github.com/ROCm/%{upstreamname} License: MIT diff --git a/specs/r/rocthrust/rocthrust.spec b/specs/r/rocthrust/rocthrust.spec index 4262d198739..433e2787163 100644 --- a/specs/r/rocthrust/rocthrust.spec +++ b/specs/r/rocthrust/rocthrust.spec @@ -30,7 +30,7 @@ Name: rocthrust Version: %{rocm_version} -Release: 2%{?dist} +Release: 2%{?dist} Summary: ROCm Thrust libary Url: https://github.com/ROCm/%{upstreamname} diff --git a/specs/r/roctracer/roctracer.spec b/specs/r/roctracer/roctracer.spec index 45640c58f3c..70df5c3fbc2 100644 --- a/specs/r/roctracer/roctracer.spec +++ b/specs/r/roctracer/roctracer.spec @@ -27,7 +27,7 @@ Name: roctracer Version: %{rocm_version} -Release: 5%{?dist} +Release: 5%{?dist} Summary: ROCm Tracer Callback/Activity Library for Performance tracing AMD GPUs Url: https://github.com/ROCm/%{upstreamname} diff --git a/specs/r/rocwmma/rocwmma.spec b/specs/r/rocwmma/rocwmma.spec index e731a401900..7073903150c 100644 --- a/specs/r/rocwmma/rocwmma.spec +++ b/specs/r/rocwmma/rocwmma.spec @@ -17,7 +17,7 @@ Name: rocwmma Version: %{rocm_version} -Release: 4%{?dist} +Release: 4%{?dist} Summary: ROCm Matrix Multiple and Accumulate library Url: https://github.com/ROCm/%{upstreamname} License: MIT diff --git a/specs/r/rpcbind/rpcbind.spec b/specs/r/rpcbind/rpcbind.spec index 833962d356e..72d4ba735b2 100644 --- a/specs/r/rpcbind/rpcbind.spec +++ b/specs/r/rpcbind/rpcbind.spec @@ -7,7 +7,7 @@ Name: rpcbind Version: 1.2.8 -Release: 1%{?dist} +Release: 1%{?dist} Summary: Universal Addresses to RPC Program Number Mapper License: BSD-3-Clause URL: http://nfsv4.bullopensource.org diff --git a/specs/r/rpcsvc-proto/rpcsvc-proto.spec b/specs/r/rpcsvc-proto/rpcsvc-proto.spec index 816a1365d93..8b864197ada 100644 --- a/specs/r/rpcsvc-proto/rpcsvc-proto.spec +++ b/specs/r/rpcsvc-proto/rpcsvc-proto.spec @@ -21,7 +21,7 @@ Name: rpcsvc-proto Version: 1.4 -Release: 19%{?dist} +Release: 19%{?dist} Summary: RPC protocol definitions # Automatically converted from old format: BSD and LGPLv2+ - review is highly recommended. License: LicenseRef-Callaway-BSD AND LicenseRef-Callaway-LGPLv2+ diff --git a/specs/r/rpm-mpi-hooks/rpm-mpi-hooks.spec b/specs/r/rpm-mpi-hooks/rpm-mpi-hooks.spec index 9e3debd9079..72ea9574ad6 100644 --- a/specs/r/rpm-mpi-hooks/rpm-mpi-hooks.spec +++ b/specs/r/rpm-mpi-hooks/rpm-mpi-hooks.spec @@ -3,7 +3,7 @@ Name: rpm-mpi-hooks Version: 8 -Release: 13%{?dist} +Release: 13%{?dist} Summary: RPM dependency generator hooks for MPI packages License: MIT diff --git a/specs/r/rpm/rpm.spec b/specs/r/rpm/rpm.spec index 45bc83b9bb8..7cbf847517e 100644 --- a/specs/r/rpm/rpm.spec +++ b/specs/r/rpm/rpm.spec @@ -27,7 +27,7 @@ %global rpmver 6.0.1 #global snapver rc1 -%global baserelease 1 +%global baserelease 3 %global sover 10 %global srcver %{rpmver}%{?snapver:-%{snapver}} diff --git a/specs/r/rpmdevtools/rpmdevtools.spec b/specs/r/rpmdevtools/rpmdevtools.spec index 6157f7657d7..efa3aaf98a0 100644 --- a/specs/r/rpmdevtools/rpmdevtools.spec +++ b/specs/r/rpmdevtools/rpmdevtools.spec @@ -3,7 +3,7 @@ Name: rpmdevtools Version: 9.6 -Release: 14%{?dist} +Release: 14%{?dist} Summary: RPM Development Tools # rpmdev-md5 and rpmdev-setuptree are GPL-2.0-only, diff --git a/specs/r/rpmlint/rpmlint.spec b/specs/r/rpmlint/rpmlint.spec index fea93903ac2..daa056e9ad0 100644 --- a/specs/r/rpmlint/rpmlint.spec +++ b/specs/r/rpmlint/rpmlint.spec @@ -6,7 +6,7 @@ Name: rpmlint Version: 2.8.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Tool for checking common errors in RPM packages License: GPL-2.0-or-later URL: https://github.com/rpm-software-management/rpmlint diff --git a/specs/r/rsync/rsync.spec b/specs/r/rsync/rsync.spec index dd300e58ee6..ae27313f4c1 100644 --- a/specs/r/rsync/rsync.spec +++ b/specs/r/rsync/rsync.spec @@ -12,7 +12,7 @@ Summary: A program for synchronizing files over a network Name: rsync Version: 3.4.1 -Release: 5%{?prerelease}%{?dist} +Release: 8%{?prerelease}%{?dist} URL: https://rsync.samba.org/ Source0: https://download.samba.org/pub/rsync/src/rsync-%{version}%{?prerelease}.tar.gz diff --git a/specs/r/rtl-sdr/rtl-sdr.spec b/specs/r/rtl-sdr/rtl-sdr.spec index d9924a85bad..ad2de25d2a7 100644 --- a/specs/r/rtl-sdr/rtl-sdr.spec +++ b/specs/r/rtl-sdr/rtl-sdr.spec @@ -17,7 +17,7 @@ Name: rtl-sdr URL: http://sdr.osmocom.org/trac/wiki/rtl-sdr #Version: 0.6.0^%%{git_suffix} Version: 2.0.1 -Release: 7%{?dist} +Release: 7%{?dist} # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later BuildRequires: gcc diff --git a/specs/r/rubygem-aruba/rubygem-aruba.spec b/specs/r/rubygem-aruba/rubygem-aruba.spec index 8e465d878d3..563e0b3fa7a 100644 --- a/specs/r/rubygem-aruba/rubygem-aruba.spec +++ b/specs/r/rubygem-aruba/rubygem-aruba.spec @@ -7,7 +7,7 @@ Summary: CLI Steps for Cucumber, hand-crafted for you in Aruba Name: rubygem-%{gem_name} Version: 2.3.3 -Release: 2%{?dist} +Release: 2%{?dist} # SPDX confirmed # templates/, jquery.js existed on 0.14.14, no longer included in 2.0 and above diff --git a/specs/r/rubygem-contracts/rubygem-contracts.spec b/specs/r/rubygem-contracts/rubygem-contracts.spec index defd042bfc8..8831085cf15 100644 --- a/specs/r/rubygem-contracts/rubygem-contracts.spec +++ b/specs/r/rubygem-contracts/rubygem-contracts.spec @@ -5,7 +5,7 @@ Name: rubygem-%{gem_name} Version: 0.17.3 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Contracts for Ruby # SPDX confirmed diff --git a/specs/r/rubygem-domain_name/rubygem-domain_name.spec b/specs/r/rubygem-domain_name/rubygem-domain_name.spec index a726f159bbe..257057dc276 100644 --- a/specs/r/rubygem-domain_name/rubygem-domain_name.spec +++ b/specs/r/rubygem-domain_name/rubygem-domain_name.spec @@ -6,7 +6,7 @@ Summary: Domain Name manipulation library for Ruby Name: rubygem-%{gem_name} Version: 0.6.20240107 -Release: 7%{?dist} +Release: 7%{?dist} # See LICENSE.txt # BSD-2-Clause: overall diff --git a/specs/r/rubygem-flexmock/rubygem-flexmock.spec b/specs/r/rubygem-flexmock/rubygem-flexmock.spec index 8964c9a2efe..78e63cb5e3a 100644 --- a/specs/r/rubygem-flexmock/rubygem-flexmock.spec +++ b/specs/r/rubygem-flexmock/rubygem-flexmock.spec @@ -6,7 +6,7 @@ Summary: Mock object library for ruby Name: rubygem-%{gem_name} Version: 3.0.2 -Release: 2%{?dist} +Release: 2%{?dist} License: MIT URL: https://github.com/doudou/flexmock Source0: https://rubygems.org/gems/%{gem_name}-%{version}.gem diff --git a/specs/r/rubygem-gettext/rubygem-gettext.spec b/specs/r/rubygem-gettext/rubygem-gettext.spec index 6e6bd29e766..de1ef8c2539 100644 --- a/specs/r/rubygem-gettext/rubygem-gettext.spec +++ b/specs/r/rubygem-gettext/rubygem-gettext.spec @@ -8,7 +8,7 @@ Name: rubygem-%{gem_name} Version: 3.5.1 -Release: 4%{?dist} +Release: 4%{?dist} Summary: RubyGem of Localization Library and Tools for Ruby # Ruby OR LGPL-3.0-or-later: gemspec diff --git a/specs/r/rubygem-hoe/rubygem-hoe.spec b/specs/r/rubygem-hoe/rubygem-hoe.spec index 7a88544796f..a8ef3184ed6 100644 --- a/specs/r/rubygem-hoe/rubygem-hoe.spec +++ b/specs/r/rubygem-hoe/rubygem-hoe.spec @@ -7,7 +7,7 @@ Summary: Hoe is a simple rake/rubygems helper for project Rakefiles Name: rubygem-%{gem_name} Version: 4.6.0 -Release: 2%{?dist} +Release: 2%{?dist} # SPDX confirmed License: MIT URL: https://github.com/seattlerb/hoe diff --git a/specs/r/rubygem-http-cookie/rubygem-http-cookie.spec b/specs/r/rubygem-http-cookie/rubygem-http-cookie.spec index 9b79a1c1cc1..94b01661589 100644 --- a/specs/r/rubygem-http-cookie/rubygem-http-cookie.spec +++ b/specs/r/rubygem-http-cookie/rubygem-http-cookie.spec @@ -5,7 +5,7 @@ Name: rubygem-%{gem_name} Version: 1.1.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Ruby library to handle HTTP Cookies based on RFC 6265 License: MIT diff --git a/specs/r/rubygem-http_parser.rb/rubygem-http_parser.rb.spec b/specs/r/rubygem-http_parser.rb/rubygem-http_parser.rb.spec index d6e88f68e36..bcce77db832 100644 --- a/specs/r/rubygem-http_parser.rb/rubygem-http_parser.rb.spec +++ b/specs/r/rubygem-http_parser.rb/rubygem-http_parser.rb.spec @@ -5,7 +5,7 @@ Name: rubygem-%{gem_name} Version: 0.8.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Simple callback-based HTTP request/response parser License: MIT URL: https://github.com/tmm1/http_parser.rb diff --git a/specs/r/rubygem-httpclient/rubygem-httpclient.spec b/specs/r/rubygem-httpclient/rubygem-httpclient.spec index 95dd8955621..2f379065a58 100644 --- a/specs/r/rubygem-httpclient/rubygem-httpclient.spec +++ b/specs/r/rubygem-httpclient/rubygem-httpclient.spec @@ -15,7 +15,7 @@ Summary: HTTP Client interface for ruby Name: rubygem-%{gem_name} Version: 2.8.3 -Release: 17%{?dist} +Release: 17%{?dist} # httpclient is licensed under Ruby license from 2003 or later. License: Ruby URL: https://github.com/nahi/httpclient diff --git a/specs/r/rubygem-json/rubygem-json.spec b/specs/r/rubygem-json/rubygem-json.spec index 157fd81af19..1a54e07c2f8 100644 --- a/specs/r/rubygem-json/rubygem-json.spec +++ b/specs/r/rubygem-json/rubygem-json.spec @@ -9,7 +9,7 @@ Name: rubygem-%{gem_name} Version: %{pkg_version_num}%{?pkg_version_alpha:~%pkg_version_alpha} -Release: 2%{?dist} +Release: 2%{?dist} Summary: A JSON implementation in Ruby diff --git a/specs/r/rubygem-kramdown-parser-gfm/rubygem-kramdown-parser-gfm.spec b/specs/r/rubygem-kramdown-parser-gfm/rubygem-kramdown-parser-gfm.spec index 042f012d797..60cdfcad1b6 100644 --- a/specs/r/rubygem-kramdown-parser-gfm/rubygem-kramdown-parser-gfm.spec +++ b/specs/r/rubygem-kramdown-parser-gfm/rubygem-kramdown-parser-gfm.spec @@ -6,7 +6,7 @@ Name: rubygem-%{gem_name} Summary: Kramdown parser for GitHub-flavored markdown Version: 1.1.0 -Release: 17%{?dist} +Release: 17%{?dist} # SPDX confirmed License: MIT diff --git a/specs/r/rubygem-locale/rubygem-locale.spec b/specs/r/rubygem-locale/rubygem-locale.spec index 6422d0db734..284654864fc 100644 --- a/specs/r/rubygem-locale/rubygem-locale.spec +++ b/specs/r/rubygem-locale/rubygem-locale.spec @@ -6,7 +6,7 @@ Summary: Pure ruby library which provides basic APIs for localization Name: rubygem-%{gem_name} Version: 2.1.4 -Release: 7%{?dist} +Release: 7%{?dist} # SPDX confirmed # Ruby: lib/locale.rb diff --git a/specs/r/rubygem-minitest-mock/rubygem-minitest-mock.spec b/specs/r/rubygem-minitest-mock/rubygem-minitest-mock.spec index fded8e35347..a3e7995fb61 100644 --- a/specs/r/rubygem-minitest-mock/rubygem-minitest-mock.spec +++ b/specs/r/rubygem-minitest-mock/rubygem-minitest-mock.spec @@ -6,7 +6,7 @@ Name: rubygem-%{gem_name} Version: 5.27.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: minitest/mock, by Steven Baker, is a beautifully tiny mock (and stub) object framework # From README.rdoc diff --git a/specs/r/rubygem-minitest4/rubygem-minitest4.spec b/specs/r/rubygem-minitest4/rubygem-minitest4.spec index 9f0a8f18b70..7fe7bac1b57 100644 --- a/specs/r/rubygem-minitest4/rubygem-minitest4.spec +++ b/specs/r/rubygem-minitest4/rubygem-minitest4.spec @@ -10,7 +10,7 @@ Summary: Small and fast replacement for ruby's huge and slow test/unit Name: rubygem-%{gem_name}4 # With 4.7.5, some test fails, so for now use 4.7.0 Version: 4.7.0 -Release: 28%{?dist} +Release: 28%{?dist} License: MIT URL: https://github.com/seattlerb/minitest diff --git a/specs/r/rubygem-net-http-persistent/rubygem-net-http-persistent.spec b/specs/r/rubygem-net-http-persistent/rubygem-net-http-persistent.spec index 1352bf76052..0b280c669d9 100644 --- a/specs/r/rubygem-net-http-persistent/rubygem-net-http-persistent.spec +++ b/specs/r/rubygem-net-http-persistent/rubygem-net-http-persistent.spec @@ -6,7 +6,7 @@ Summary: Persistent connections using Net::HTTP plus a speed fix Name: rubygem-%{gem_name} Version: 4.0.6 -Release: 3%{?dist} +Release: 3%{?dist} # SPDX confirmed License: MIT diff --git a/specs/r/rubygem-nokogiri/rubygem-nokogiri.spec b/specs/r/rubygem-nokogiri/rubygem-nokogiri.spec index ad70dd34198..cab47a5ffb8 100644 --- a/specs/r/rubygem-nokogiri/rubygem-nokogiri.spec +++ b/specs/r/rubygem-nokogiri/rubygem-nokogiri.spec @@ -4,7 +4,7 @@ %global mainver 1.19.1 #%%global prever .rc4 -%global baserelease 1 +%global baserelease 3 %global prerpmver %(echo "%{?prever}" | sed -e 's|\\.||g') %global gem_name nokogiri diff --git a/specs/r/rubygem-power_assert/rubygem-power_assert.spec b/specs/r/rubygem-power_assert/rubygem-power_assert.spec index f6a0d1fc17c..951ed588cba 100644 --- a/specs/r/rubygem-power_assert/rubygem-power_assert.spec +++ b/specs/r/rubygem-power_assert/rubygem-power_assert.spec @@ -6,7 +6,7 @@ # Note: 1.1.7 -> 1.2.0: just the upstream URL changed Name: rubygem-%{gem_name} Version: 2.0.5 -Release: 103%{?dist} +Release: 103%{?dist} Summary: Power Assert for Ruby # SPDX confirmed diff --git a/specs/r/rubygem-racc/rubygem-racc.spec b/specs/r/rubygem-racc/rubygem-racc.spec index 259d12cf447..28464dac8ec 100644 --- a/specs/r/rubygem-racc/rubygem-racc.spec +++ b/specs/r/rubygem-racc/rubygem-racc.spec @@ -5,7 +5,7 @@ Name: rubygem-%{gem_name} Version: 1.8.1 -Release: 104%{?dist} +Release: 104%{?dist} Summary: LALR(1) parser generator # SPDX confirmed diff --git a/specs/r/rubygem-rails-controller-testing/rubygem-rails-controller-testing.spec b/specs/r/rubygem-rails-controller-testing/rubygem-rails-controller-testing.spec index 46abfadb633..2501a5e8186 100644 --- a/specs/r/rubygem-rails-controller-testing/rubygem-rails-controller-testing.spec +++ b/specs/r/rubygem-rails-controller-testing/rubygem-rails-controller-testing.spec @@ -5,7 +5,7 @@ Name: rubygem-%{gem_name} Version: 1.0.5 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Extracting `assigns` and `assert_template` from ActionDispatch License: MIT diff --git a/specs/r/rubygem-rake/rubygem-rake.spec b/specs/r/rubygem-rake/rubygem-rake.spec index ad1f95cae14..9406044b8ca 100644 --- a/specs/r/rubygem-rake/rubygem-rake.spec +++ b/specs/r/rubygem-rake/rubygem-rake.spec @@ -12,7 +12,7 @@ %global gem_name rake -%global baserelease 101 +%global baserelease 104 Summary: Rake is a Make-like program implemented in Ruby Name: rubygem-%{gem_name} diff --git a/specs/r/rubygem-redcarpet/rubygem-redcarpet.spec b/specs/r/rubygem-redcarpet/rubygem-redcarpet.spec index 6d2f586ee74..0a89af0d148 100644 --- a/specs/r/rubygem-redcarpet/rubygem-redcarpet.spec +++ b/specs/r/rubygem-redcarpet/rubygem-redcarpet.spec @@ -5,7 +5,7 @@ Name: rubygem-%{gem_name} Version: 3.6.1 -Release: 3%{?dist} +Release: 3%{?dist} Summary: A fast, safe and extensible Markdown to (X)HTML parser # SPDX confirmed diff --git a/specs/r/rubygem-ronn-ng/rubygem-ronn-ng.spec b/specs/r/rubygem-ronn-ng/rubygem-ronn-ng.spec index 4db1d153705..7b284ff6ab5 100644 --- a/specs/r/rubygem-ronn-ng/rubygem-ronn-ng.spec +++ b/specs/r/rubygem-ronn-ng/rubygem-ronn-ng.spec @@ -6,7 +6,7 @@ Name: rubygem-%{gem_name} Version: 0.10.1 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Builds man pages from Markdown License: MIT URL: https://github.com/apjanke/ronn-ng diff --git a/specs/r/rubygem-rouge/rubygem-rouge.spec b/specs/r/rubygem-rouge/rubygem-rouge.spec index fb8616edfb1..893ec53ce4c 100644 --- a/specs/r/rubygem-rouge/rubygem-rouge.spec +++ b/specs/r/rubygem-rouge/rubygem-rouge.spec @@ -5,7 +5,7 @@ Name: rubygem-%{gem_name} Version: 4.6.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Pure-ruby colorizer based on pygments # From LICENSE file # SPDX confirmed diff --git a/specs/r/rubygem-rspec-core/rubygem-rspec-core.spec b/specs/r/rubygem-rspec-core/rubygem-rspec-core.spec index 28a0178df35..9b91433415c 100644 --- a/specs/r/rubygem-rspec-core/rubygem-rspec-core.spec +++ b/specs/r/rubygem-rspec-core/rubygem-rspec-core.spec @@ -6,7 +6,7 @@ %global rpmminorver .%(echo %preminorver | sed -e 's|^\\.\\.*||') %global fullver %{majorver}%{?preminorver} -%global baserelease 1 +%global baserelease 3 %global gem_name rspec-core diff --git a/specs/r/rubygem-rspec-expectations/rubygem-rspec-expectations.spec b/specs/r/rubygem-rspec-expectations/rubygem-rspec-expectations.spec index f8a99b6fed0..4b7dd5a586a 100644 --- a/specs/r/rubygem-rspec-expectations/rubygem-rspec-expectations.spec +++ b/specs/r/rubygem-rspec-expectations/rubygem-rspec-expectations.spec @@ -6,7 +6,7 @@ %global rpmminorver .%(echo %preminorver | sed -e 's|^\\.\\.*||') %global fullver %{majorver}%{?preminorver} -%global baserelease 2 +%global baserelease 4 %global gem_name rspec-expectations diff --git a/specs/r/rubygem-rspec-mocks/rubygem-rspec-mocks.spec b/specs/r/rubygem-rspec-mocks/rubygem-rspec-mocks.spec index 10d91ff7d82..34f4a1312e7 100644 --- a/specs/r/rubygem-rspec-mocks/rubygem-rspec-mocks.spec +++ b/specs/r/rubygem-rspec-mocks/rubygem-rspec-mocks.spec @@ -6,7 +6,7 @@ %global rpmminorver .%(echo %preminorver | sed -e 's|^\\.\\.*||') %global fullver %{majorver}%{?preminorver} -%global baserelease 3 +%global baserelease 5 %global gem_name rspec-mocks diff --git a/specs/r/rubygem-rspec-support/rubygem-rspec-support.spec b/specs/r/rubygem-rspec-support/rubygem-rspec-support.spec index 45be4deac25..cf3711d64a9 100644 --- a/specs/r/rubygem-rspec-support/rubygem-rspec-support.spec +++ b/specs/r/rubygem-rspec-support/rubygem-rspec-support.spec @@ -6,7 +6,7 @@ %global mainver 3.13.7 %undefine prever -%global baserelease 1 +%global baserelease 3 %global prerpmver %(echo "%{?prever}" | sed -e 's|\\.||g') %bcond_with bootstrap diff --git a/specs/r/rubygem-rspec/rubygem-rspec.spec b/specs/r/rubygem-rspec/rubygem-rspec.spec index 09ecdabb944..924965c26af 100644 --- a/specs/r/rubygem-rspec/rubygem-rspec.spec +++ b/specs/r/rubygem-rspec/rubygem-rspec.spec @@ -6,7 +6,7 @@ Summary: Behaviour driven development (BDD) framework for Ruby Name: rubygem-%{gem_name} Version: 3.13.1 -Release: 3%{?dist} +Release: 3%{?dist} License: MIT URL: http://rspec.info diff --git a/specs/r/rubygem-stringex/rubygem-stringex.spec b/specs/r/rubygem-stringex/rubygem-stringex.spec index 927dc975c74..274781b9920 100644 --- a/specs/r/rubygem-stringex/rubygem-stringex.spec +++ b/specs/r/rubygem-stringex/rubygem-stringex.spec @@ -6,7 +6,7 @@ Name: rubygem-%{gem_name} Summary: Useful extensions to Ruby's String class Version: 2.8.6 -Release: 8%{?dist} +Release: 8%{?dist} # SPDX confirmed License: MIT diff --git a/specs/r/rubygem-test-unit-notify/rubygem-test-unit-notify.spec b/specs/r/rubygem-test-unit-notify/rubygem-test-unit-notify.spec index 761418b21a8..30e6d632dcc 100644 --- a/specs/r/rubygem-test-unit-notify/rubygem-test-unit-notify.spec +++ b/specs/r/rubygem-test-unit-notify/rubygem-test-unit-notify.spec @@ -9,7 +9,7 @@ Summary: Test::Unit::Notify - A test result notify extension for Test::Unit Name: rubygem-%{gem_name} Version: 1.0.4 -Release: 23%{?dist} +Release: 23%{?dist} # https://github.com/test-unit/test-unit-notify/issues/2 # https://cutter.osdn.jp/reference/readme.html # LGPL-2.1-or-later: overall diff --git a/specs/r/rubygem-test-unit-rr/rubygem-test-unit-rr.spec b/specs/r/rubygem-test-unit-rr/rubygem-test-unit-rr.spec index 151a2cf79f6..d0936607782 100644 --- a/specs/r/rubygem-test-unit-rr/rubygem-test-unit-rr.spec +++ b/specs/r/rubygem-test-unit-rr/rubygem-test-unit-rr.spec @@ -6,7 +6,7 @@ Summary: Test::Unit::RR - RR adapter for Test::Unit Name: rubygem-%{gem_name} Version: 1.0.5 -Release: 22%{?dist} +Release: 22%{?dist} # SPDX confirmed License: LGPL-2.1-or-later URL: http://rubyforge.org/projects/test-unit/ diff --git a/specs/r/rubygem-test-unit-ruby-core/rubygem-test-unit-ruby-core.spec b/specs/r/rubygem-test-unit-ruby-core/rubygem-test-unit-ruby-core.spec index 53c30c146e7..981de7f2e5b 100644 --- a/specs/r/rubygem-test-unit-ruby-core/rubygem-test-unit-ruby-core.spec +++ b/specs/r/rubygem-test-unit-ruby-core/rubygem-test-unit-ruby-core.spec @@ -5,7 +5,7 @@ Name: rubygem-%{gem_name} Version: 1.0.7 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Additional test assertions for Ruby standard libraries # SPDX confirmed diff --git a/specs/r/rubygem-test-unit/rubygem-test-unit.spec b/specs/r/rubygem-test-unit/rubygem-test-unit.spec index 8cdd8ea512e..87689ff4cd7 100644 --- a/specs/r/rubygem-test-unit/rubygem-test-unit.spec +++ b/specs/r/rubygem-test-unit/rubygem-test-unit.spec @@ -12,7 +12,7 @@ Name: rubygem-%{gem_name} # changes default progress style # (For 3.5.8 and 3.5.9, F-38 and below reverted this change) Version: 3.7.0 -Release: 102%{?dist} +Release: 102%{?dist} # SPDX confirmed # lib/test/unit/diff.rb is under (BSD-2-Clause OR Ruby) AND Python-2.0.1 # lib/test-unit.rb changed to BSD-2-Clause or Ruby (from 3.3.7) diff --git a/specs/r/rubygem-text/rubygem-text.spec b/specs/r/rubygem-text/rubygem-text.spec index 3c986a7c4fd..85aeddb8aa8 100644 --- a/specs/r/rubygem-text/rubygem-text.spec +++ b/specs/r/rubygem-text/rubygem-text.spec @@ -5,7 +5,7 @@ Name: rubygem-%{gem_name} Version: 1.3.1 -Release: 23%{?dist} +Release: 23%{?dist} Summary: Collection of text algorithms # SPDX confirmed diff --git a/specs/r/rubygem-thread_order/rubygem-thread_order.spec b/specs/r/rubygem-thread_order/rubygem-thread_order.spec index 82512acc91a..88cf3acfc42 100644 --- a/specs/r/rubygem-thread_order/rubygem-thread_order.spec +++ b/specs/r/rubygem-thread_order/rubygem-thread_order.spec @@ -5,7 +5,7 @@ Name: rubygem-%{gem_name} Version: 1.1.1 -Release: 15%{?dist} +Release: 15%{?dist} Summary: Test helper for ordering threaded code License: MIT diff --git a/specs/r/rust-afterburn/rust-afterburn.spec b/specs/r/rust-afterburn/rust-afterburn.spec index f3f2f12f799..49446d1b020 100644 --- a/specs/r/rust-afterburn/rust-afterburn.spec +++ b/specs/r/rust-afterburn/rust-afterburn.spec @@ -10,7 +10,7 @@ Name: rust-afterburn Version: 5.10.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Simple cloud provider agent License: Apache-2.0 diff --git a/specs/r/rust-leb128/rust-leb128.spec b/specs/r/rust-leb128/rust-leb128.spec index 7d238e77a66..abe75c76e4d 100644 --- a/specs/r/rust-leb128/rust-leb128.spec +++ b/specs/r/rust-leb128/rust-leb128.spec @@ -8,7 +8,7 @@ Name: rust-leb128 Version: 0.2.5 -Release: 13%{?dist} +Release: 13%{?dist} Summary: DWARF's LEB128 encoding library and REPL # Upstream license specification: Apache-2.0/MIT diff --git a/specs/r/rust-peg0.5/rust-peg0.5.spec b/specs/r/rust-peg0.5/rust-peg0.5.spec index 7792eda44d3..2b0fac32139 100644 --- a/specs/r/rust-peg0.5/rust-peg0.5.spec +++ b/specs/r/rust-peg0.5/rust-peg0.5.spec @@ -9,7 +9,7 @@ Name: rust-peg0.5 Version: 0.5.7 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Simple Parsing Expression Grammar (PEG) parser generator License: MIT diff --git a/specs/r/rust-seahash/rust-seahash.spec b/specs/r/rust-seahash/rust-seahash.spec index ef984e8a6f8..d01197069ac 100644 --- a/specs/r/rust-seahash/rust-seahash.spec +++ b/specs/r/rust-seahash/rust-seahash.spec @@ -9,7 +9,7 @@ Name: rust-seahash Version: 4.1.0 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Blazingly fast, portable hash function with proven statistical guarantees # https://github.com/redox-os/tfs/pull/76 diff --git a/specs/r/rust-slog/rust-slog.spec b/specs/r/rust-slog/rust-slog.spec index 4d5ab73c071..dcf33076264 100644 --- a/specs/r/rust-slog/rust-slog.spec +++ b/specs/r/rust-slog/rust-slog.spec @@ -9,7 +9,7 @@ Name: rust-slog Version: 2.7.0 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Structured, extensible, composable logging for Rust License: MPL-2.0 OR MIT OR Apache-2.0 diff --git a/specs/r/rust-ssh-key-dir/rust-ssh-key-dir.spec b/specs/r/rust-ssh-key-dir/rust-ssh-key-dir.spec index 84155e03804..22ab6041f24 100644 --- a/specs/r/rust-ssh-key-dir/rust-ssh-key-dir.spec +++ b/specs/r/rust-ssh-key-dir/rust-ssh-key-dir.spec @@ -8,7 +8,7 @@ Name: rust-%{crate} Version: 0.1.5 -Release: 4%{?dist} +Release: 4%{?dist} Summary: sshd AuthorizedKeysCommand to read ~/.ssh/authorized_keys.d License: Apache-2.0 diff --git a/specs/r/rust-tpm2-policy/rust-tpm2-policy.spec b/specs/r/rust-tpm2-policy/rust-tpm2-policy.spec index 46a0ea081e6..759af9d24a8 100644 --- a/specs/r/rust-tpm2-policy/rust-tpm2-policy.spec +++ b/specs/r/rust-tpm2-policy/rust-tpm2-policy.spec @@ -8,7 +8,7 @@ Name: rust-%{crate} Version: 0.6.0 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Specify and send TPM2 policies to satisfy object authorization # Upstream license specification: EUPL-1.2 diff --git a/specs/r/rutabaga-gfx-ffi/rutabaga-gfx-ffi.spec b/specs/r/rutabaga-gfx-ffi/rutabaga-gfx-ffi.spec index 50bb0bb008f..c18649a554f 100644 --- a/specs/r/rutabaga-gfx-ffi/rutabaga-gfx-ffi.spec +++ b/specs/r/rutabaga-gfx-ffi/rutabaga-gfx-ffi.spec @@ -6,7 +6,7 @@ Name: rutabaga-gfx-ffi Version: 0.1.3 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Handling virtio-gpu protocols URL: https://chromium.googlesource.com/crosvm/crosvm diff --git a/specs/s/SDL2_image/SDL2_image.spec b/specs/s/SDL2_image/SDL2_image.spec index b4894953b2a..8e6ff537d9d 100644 --- a/specs/s/SDL2_image/SDL2_image.spec +++ b/specs/s/SDL2_image/SDL2_image.spec @@ -3,7 +3,7 @@ Name: SDL2_image Version: 2.8.8 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Image loading library for SDL # IMG_png.c is LGPLv2+ and zlib, rest is just zlib diff --git a/specs/s/SDL3/SDL3.spec b/specs/s/SDL3/SDL3.spec index 1007f7e897b..24d6d26b794 100644 --- a/specs/s/SDL3/SDL3.spec +++ b/specs/s/SDL3/SDL3.spec @@ -24,7 +24,7 @@ Name: SDL3 Version: 3.4.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Cross-platform multimedia library License: Zlib AND MIT AND Apache-2.0 AND (Apache-2.0 OR MIT) URL: http://www.libsdl.org/ diff --git a/specs/s/SLOF/SLOF.spec b/specs/s/SLOF/SLOF.spec index 59411f507e6..40540493226 100644 --- a/specs/s/SLOF/SLOF.spec +++ b/specs/s/SLOF/SLOF.spec @@ -14,7 +14,7 @@ Name: SLOF Version: %{gittagdate} -Release: 8.git%{gittagcommit}%{?dist} +Release: 11.git%{gittagcommit}%{?dist} Summary: Slimline Open Firmware License: BSD-3-Clause diff --git a/specs/s/ShellCheck/ShellCheck.spec b/specs/s/ShellCheck/ShellCheck.spec index 6d906390097..ffc9d906aeb 100644 --- a/specs/s/ShellCheck/ShellCheck.spec +++ b/specs/s/ShellCheck/ShellCheck.spec @@ -13,7 +13,7 @@ Name: %{pkg_name} Version: 0.11.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Shell script analysis tool License: GPL-3.0-or-later diff --git a/specs/s/s-nail/s-nail.spec b/specs/s/s-nail/s-nail.spec index b3159a7d261..955be6a2da3 100644 --- a/specs/s/s-nail/s-nail.spec +++ b/specs/s/s-nail/s-nail.spec @@ -3,7 +3,7 @@ Name: s-nail Version: 14.9.25 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Environment for sending and receiving mail, providing functionality of POSIX mailx # Everything is ISC except parts coming from the original Heirloom mailx which are BSD diff --git a/specs/s/sanlock/sanlock.spec b/specs/s/sanlock/sanlock.spec index 4389d082cf3..f407f37349e 100644 --- a/specs/s/sanlock/sanlock.spec +++ b/specs/s/sanlock/sanlock.spec @@ -3,7 +3,7 @@ Name: sanlock Version: 3.9.5 -Release: 6%{?dist} +Release: 6%{?dist} Summary: A shared storage lock manager License: GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.0-or-later URL: https://pagure.io/sanlock/ diff --git a/specs/s/sassc/sassc.spec b/specs/s/sassc/sassc.spec index 28cc4c547ee..50fd440c493 100644 --- a/specs/s/sassc/sassc.spec +++ b/specs/s/sassc/sassc.spec @@ -6,7 +6,7 @@ Name: sassc Version: 3.6.2 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Wrapper around libsass to compile CSS stylesheet License: MIT diff --git a/specs/s/sbc/sbc.spec b/specs/s/sbc/sbc.spec index 890fa704f4d..794721e613b 100644 --- a/specs/s/sbc/sbc.spec +++ b/specs/s/sbc/sbc.spec @@ -3,7 +3,7 @@ Name: sbc Version: 2.0 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Sub Band Codec used by bluetooth A2DP License: GPL-2.0-only AND LGPL-2.1-or-later diff --git a/specs/s/sbd/sbd.spec b/specs/s/sbd/sbd.spec index b82f85e7d21..afeef498dfe 100644 --- a/specs/s/sbd/sbd.spec +++ b/specs/s/sbd/sbd.spec @@ -22,7 +22,7 @@ %global shortcommit %(echo %{longcommit}|cut -c1-8) %global modified %(echo %{longcommit}-|cut -f2 -d-) %global github_owner Clusterlabs -%global baserelease 2 +%global baserelease 4 %ifarch s390x s390 # minimum timeout on LPAR diag288 watchdog is 15s diff --git a/specs/s/sblim-cmpi-base/sblim-cmpi-base.spec b/specs/s/sblim-cmpi-base/sblim-cmpi-base.spec index 9b5e51f4d52..2fe92fda94b 100644 --- a/specs/s/sblim-cmpi-base/sblim-cmpi-base.spec +++ b/specs/s/sblim-cmpi-base/sblim-cmpi-base.spec @@ -5,7 +5,7 @@ Name: sblim-cmpi-base Version: 1.6.4 -Release: 32%{?dist} +Release: 32%{?dist} Summary: SBLIM CMPI Base Providers License: EPL-1.0 diff --git a/specs/s/sblim-cmpi-devel/sblim-cmpi-devel.spec b/specs/s/sblim-cmpi-devel/sblim-cmpi-devel.spec index cd5b1850c80..841def37f48 100644 --- a/specs/s/sblim-cmpi-devel/sblim-cmpi-devel.spec +++ b/specs/s/sblim-cmpi-devel/sblim-cmpi-devel.spec @@ -4,7 +4,7 @@ Name: sblim-cmpi-devel Version: 2.0.3 -Release: 34%{?dist} +Release: 34%{?dist} Summary: SBLIM CMPI Provider Development Support License: EPL-1.0 diff --git a/specs/s/sblim-indication_helper/sblim-indication_helper.spec b/specs/s/sblim-indication_helper/sblim-indication_helper.spec index 9a76e04c2b3..6863a3604eb 100644 --- a/specs/s/sblim-indication_helper/sblim-indication_helper.spec +++ b/specs/s/sblim-indication_helper/sblim-indication_helper.spec @@ -3,7 +3,7 @@ Name: sblim-indication_helper Version: 0.5.0 -Release: 17%{?dist} +Release: 17%{?dist} Summary: Toolkit for CMPI indication providers License: EPL-1.0 diff --git a/specs/s/sblim-sfcCommon/sblim-sfcCommon.spec b/specs/s/sblim-sfcCommon/sblim-sfcCommon.spec index cbb85cb245a..67b8539fe3a 100644 --- a/specs/s/sblim-sfcCommon/sblim-sfcCommon.spec +++ b/specs/s/sblim-sfcCommon/sblim-sfcCommon.spec @@ -3,7 +3,7 @@ Name: sblim-sfcCommon Version: 1.0.1 -Release: 29%{?dist} +Release: 29%{?dist} Summary: Common functions for SBLIM Small Footprint CIM Broker and CIM Client Library. License: EPL-1.0 diff --git a/specs/s/sblim-testsuite/sblim-testsuite.spec b/specs/s/sblim-testsuite/sblim-testsuite.spec index 9a3aaacdabd..5a79fc5a508 100644 --- a/specs/s/sblim-testsuite/sblim-testsuite.spec +++ b/specs/s/sblim-testsuite/sblim-testsuite.spec @@ -5,7 +5,7 @@ Name: sblim-testsuite Version: 1.3.0 -Release: 35%{?dist} +Release: 35%{?dist} Summary: SBLIM testsuite License: EPL-1.0 diff --git a/specs/s/sblim-wbemcli/sblim-wbemcli.spec b/specs/s/sblim-wbemcli/sblim-wbemcli.spec index 5740d5dfb22..3d0cbb92951 100644 --- a/specs/s/sblim-wbemcli/sblim-wbemcli.spec +++ b/specs/s/sblim-wbemcli/sblim-wbemcli.spec @@ -3,7 +3,7 @@ Name: sblim-wbemcli Version: 1.6.3 -Release: 31%{?dist} +Release: 31%{?dist} Summary: SBLIM WBEM Command Line Interface License: EPL-1.0 diff --git a/specs/s/sbsigntools/sbsigntools.spec b/specs/s/sbsigntools/sbsigntools.spec index 4ee05f7157b..f29b13a18e0 100644 --- a/specs/s/sbsigntools/sbsigntools.spec +++ b/specs/s/sbsigntools/sbsigntools.spec @@ -6,7 +6,7 @@ Name: sbsigntools Version: 0.9.5 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Signing utility for UEFI secure boot # Most source code is GPL-3.0-or-later, except: # LicenseRef-Fedora-Public-Domain: diff --git a/specs/s/scap-security-guide/scap-security-guide.spec b/specs/s/scap-security-guide/scap-security-guide.spec index 9141e27990b..2909f329263 100644 --- a/specs/s/scap-security-guide/scap-security-guide.spec +++ b/specs/s/scap-security-guide/scap-security-guide.spec @@ -8,7 +8,7 @@ Name: scap-security-guide Version: 0.1.79 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Security guidance and baselines in SCAP formats License: BSD-3-Clause URL: https://github.com/ComplianceAsCode/content/ diff --git a/specs/s/schroedinger/schroedinger.spec b/specs/s/schroedinger/schroedinger.spec index 220eed49296..ad5a4e3216f 100644 --- a/specs/s/schroedinger/schroedinger.spec +++ b/specs/s/schroedinger/schroedinger.spec @@ -5,7 +5,7 @@ Name: schroedinger Version: 1.0.11 -Release: 35%{?dist} +Release: 35%{?dist} Summary: Portable libraries for the high quality Dirac video codec # No version is given for the GPL or the LGPL diff --git a/specs/s/scim/scim.spec b/specs/s/scim/scim.spec index 7349388a8eb..390548a3a95 100644 --- a/specs/s/scim/scim.spec +++ b/specs/s/scim/scim.spec @@ -3,7 +3,7 @@ Name: scim Version: 1.4.18 -Release: 14%{?dist} +Release: 14%{?dist} Summary: Smart Common Input Method platform License: LGPL-2.1-or-later diff --git a/specs/s/scipy/scipy.spec b/specs/s/scipy/scipy.spec index 4393f515cff..f1e08dc3848 100644 --- a/specs/s/scipy/scipy.spec +++ b/specs/s/scipy/scipy.spec @@ -47,7 +47,7 @@ Summary: Scientific Tools for Python Name: scipy Version: 1.16.2 -Release: 2%{?dist} +Release: 2%{?dist} # BSD-3-Clause -- whole package except: # BSD-2-Clause -- scipy/_lib/_pep440.py diff --git a/specs/s/scl-utils/scl-utils.spec b/specs/s/scl-utils/scl-utils.spec index 789480cff6d..6f6a380bb2b 100644 --- a/specs/s/scl-utils/scl-utils.spec +++ b/specs/s/scl-utils/scl-utils.spec @@ -7,7 +7,7 @@ Name: scl-utils Epoch: 1 Version: 2.0.3 -Release: 6%{dist} +Release: 9%{dist} Summary: Utilities for alternative packaging License: GPL-2.0-or-later diff --git a/specs/s/scotch/scotch.spec b/specs/s/scotch/scotch.spec index cf6f7335089..adbc016661c 100644 --- a/specs/s/scotch/scotch.spec +++ b/specs/s/scotch/scotch.spec @@ -19,7 +19,7 @@ Name: scotch Summary: Graph, mesh and hypergraph partitioning library Version: 7.0.9 -Release: 2%{?dist} +Release: 2%{?dist} License: CeCILL-C URL: https://gitlab.inria.fr/scotch/scotch diff --git a/specs/s/screen/screen.spec b/specs/s/screen/screen.spec index 05d873062b1..b43729f5eeb 100644 --- a/specs/s/screen/screen.spec +++ b/specs/s/screen/screen.spec @@ -7,7 +7,7 @@ Summary: A screen manager that supports multiple logins on one terminal Name: screen Version: 5.0.1 -Release: 7%{?dist} +Release: 7%{?dist} License: GPL-3.0-or-later URL: http://www.gnu.org/software/screen BuildRequires: make diff --git a/specs/s/scrub/scrub.spec b/specs/s/scrub/scrub.spec index 9c97393f200..c4118a65123 100644 --- a/specs/s/scrub/scrub.spec +++ b/specs/s/scrub/scrub.spec @@ -3,7 +3,7 @@ Name: scrub Version: 2.6.1 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Disk scrubbing program License: GPL-2.0-or-later URL: https://github.com/chaos/scrub/ diff --git a/specs/s/sdbus-cpp/sdbus-cpp.spec b/specs/s/sdbus-cpp/sdbus-cpp.spec index 612a959c169..b1366414b8d 100644 --- a/specs/s/sdbus-cpp/sdbus-cpp.spec +++ b/specs/s/sdbus-cpp/sdbus-cpp.spec @@ -5,7 +5,7 @@ Name: sdbus-cpp Version: 2.1.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: High-level C++ D-Bus library License: LGPL-2.1-only diff --git a/specs/s/sddm/sddm.spec b/specs/s/sddm/sddm.spec index 448f3f8fc25..192c4d93fdb 100644 --- a/specs/s/sddm/sddm.spec +++ b/specs/s/sddm/sddm.spec @@ -6,7 +6,7 @@ Name: sddm Version: 0.21.0 -Release: 11%{?dist} +Release: 11%{?dist} License: GPL-2.0-or-later Summary: QML based desktop and login manager diff --git a/specs/s/sdl12-compat/sdl12-compat.spec b/specs/s/sdl12-compat/sdl12-compat.spec index 8be7e34c0f9..91df696ccb9 100644 --- a/specs/s/sdl12-compat/sdl12-compat.spec +++ b/specs/s/sdl12-compat/sdl12-compat.spec @@ -10,7 +10,7 @@ Name: sdl12-compat Version: 1.2.74 -Release: 2%{?dist} +Release: 2%{?dist} Summary: SDL 1.2 runtime compatibility library using SDL 2.0 # mp3 decoder code is MIT-0/PD # SDL_opengl.h is zlib and MIT diff --git a/specs/s/sdl2-compat/sdl2-compat.spec b/specs/s/sdl2-compat/sdl2-compat.spec index 67dfc11bc2c..2f623f0d112 100644 --- a/specs/s/sdl2-compat/sdl2-compat.spec +++ b/specs/s/sdl2-compat/sdl2-compat.spec @@ -12,7 +12,7 @@ Name: sdl2-compat Version: 2.32.64 -Release: 2%{?dist} +Release: 2%{?dist} SourceLicense: Zlib and Apache-2.0 and MIT and BSD-3-Clause Summary: SDL 2.0 runtime compatibility library using SDL 3.0 License: Zlib diff --git a/specs/s/seatd/seatd.spec b/specs/s/seatd/seatd.spec index fd467074ac7..24809b3a0f4 100644 --- a/specs/s/seatd/seatd.spec +++ b/specs/s/seatd/seatd.spec @@ -8,7 +8,7 @@ Name: seatd Version: 0.9.2 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Minimal seat management daemon License: MIT diff --git a/specs/s/sensible-utils/sensible-utils.spec b/specs/s/sensible-utils/sensible-utils.spec index f99930b03a4..cf3f696f39f 100644 --- a/specs/s/sensible-utils/sensible-utils.spec +++ b/specs/s/sensible-utils/sensible-utils.spec @@ -3,7 +3,7 @@ Name: sensible-utils Version: 0.0.25 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Utilities for sensible alternative selection BuildArch: noarch diff --git a/specs/s/serd/serd.spec b/specs/s/serd/serd.spec index 8e14642bc70..131aec3818b 100644 --- a/specs/s/serd/serd.spec +++ b/specs/s/serd/serd.spec @@ -5,7 +5,7 @@ Name: serd Version: 0.32.8 -Release: 2%{?dist} +Release: 2%{?dist} Summary: A lightweight C library for RDF syntax License: ISC diff --git a/specs/s/setools/setools.spec b/specs/s/setools/setools.spec index 748e38b941b..89ffe7afa2c 100644 --- a/specs/s/setools/setools.spec +++ b/specs/s/setools/setools.spec @@ -6,7 +6,7 @@ Name: setools Version: 4.6.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Policy analysis tools for SELinux License: GPL-2.0-only AND LGPL-2.1-only diff --git a/specs/s/setxkbmap/setxkbmap.spec b/specs/s/setxkbmap/setxkbmap.spec index 97b723dff3a..47fd6a55794 100644 --- a/specs/s/setxkbmap/setxkbmap.spec +++ b/specs/s/setxkbmap/setxkbmap.spec @@ -3,7 +3,7 @@ Name: setxkbmap Version: 1.3.4 -Release: 7%{?dist} +Release: 7%{?dist} Summary: X11 keymap client License: HPND diff --git a/specs/s/shake/shake.spec b/specs/s/shake/shake.spec index e0b058d2513..c41542994e8 100644 --- a/specs/s/shake/shake.spec +++ b/specs/s/shake/shake.spec @@ -19,7 +19,7 @@ Name: %{pkg_name} Version: 0.19.8 # can only be reset when all subpkgs bumped -Release: 34%{?dist} +Release: 34%{?dist} Summary: Build system library, like Make, but more accurate dependencies License: BSD-3-Clause diff --git a/specs/s/shapelib/shapelib.spec b/specs/s/shapelib/shapelib.spec index 966d2fd917c..bf3e5a994e7 100644 --- a/specs/s/shapelib/shapelib.spec +++ b/specs/s/shapelib/shapelib.spec @@ -14,7 +14,7 @@ Name: shapelib Version: 1.6.1 -Release: 5%{?dist} +Release: 5%{?dist} Summary: C library for handling ESRI Shapefiles # The core library is dual-licensed LGPLv2 or MIT. # Some contributed files have different licenses: diff --git a/specs/s/sharutils/sharutils.spec b/specs/s/sharutils/sharutils.spec index 7acbbc002f2..b76fefd32f5 100644 --- a/specs/s/sharutils/sharutils.spec +++ b/specs/s/sharutils/sharutils.spec @@ -4,7 +4,7 @@ Summary: The GNU shar utilities for packaging and unpackaging shell archives Name: sharutils Version: 4.15.2 -Release: 31%{?dist} +Release: 31%{?dist} # The main code: GPL-3.0-or-later # intl/dngettext.c: LGPL-2.0-or-later # lib (gnulib): GPL-3.0-or-later diff --git a/specs/s/shell-color-prompt/shell-color-prompt.spec b/specs/s/shell-color-prompt/shell-color-prompt.spec index d695a218e92..73e6ccc7e96 100644 --- a/specs/s/shell-color-prompt/shell-color-prompt.spec +++ b/specs/s/shell-color-prompt/shell-color-prompt.spec @@ -6,7 +6,7 @@ Name: shell-color-prompt Version: 0.7.1 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Color prompt for bash shell License: GPL-2.0-or-later diff --git a/specs/s/shim/shim.spec b/specs/s/shim/shim.spec index 82b6a785a59..cb77cd08477 100644 --- a/specs/s/shim/shim.spec +++ b/specs/s/shim/shim.spec @@ -8,7 +8,7 @@ Name: shim Version: 15.8 -Release: 5%{?dist} +Release: 5%{?dist} Summary: First-stage UEFI bootloader License: BSD-3-Clause URL: https://github.com/rhboot/shim/ diff --git a/specs/s/signify/signify.spec b/specs/s/signify/signify.spec index 1c4ef69c5c1..3e642290d96 100644 --- a/specs/s/signify/signify.spec +++ b/specs/s/signify/signify.spec @@ -3,7 +3,7 @@ Name: signify Version: 32 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Sign and verify signatures on files # signify itself is ISC but uses other source codes, breakdown: diff --git a/specs/s/signon-plugin-oauth2/signon-plugin-oauth2.spec b/specs/s/signon-plugin-oauth2/signon-plugin-oauth2.spec index fedf28b97f5..1ddccc018b3 100644 --- a/specs/s/signon-plugin-oauth2/signon-plugin-oauth2.spec +++ b/specs/s/signon-plugin-oauth2/signon-plugin-oauth2.spec @@ -7,7 +7,7 @@ Name: signon-plugin-oauth2 Version: 0.25^%{gitdate}.%{shortcommit0} -Release: 7%{?dist} +Release: 7%{?dist} Summary: OAuth2 plugin for the Accounts framework License: LGPL-2.1-or-later diff --git a/specs/s/signon/signon.spec b/specs/s/signon/signon.spec index b28f774a2e6..3e8e88f60c4 100644 --- a/specs/s/signon/signon.spec +++ b/specs/s/signon/signon.spec @@ -8,7 +8,7 @@ Name: signon Version: 8.60^%{gitdate}.%{shortcommit0} -Release: 5%{?dist} +Release: 5%{?dist} Summary: Accounts framework for Linux and POSIX based platforms License: LGPL-2.1-only diff --git a/specs/s/sil-padauk-fonts/sil-padauk-fonts.spec b/specs/s/sil-padauk-fonts/sil-padauk-fonts.spec index b6de55cc5a3..6848e3fa255 100644 --- a/specs/s/sil-padauk-fonts/sil-padauk-fonts.spec +++ b/specs/s/sil-padauk-fonts/sil-padauk-fonts.spec @@ -2,7 +2,7 @@ # Do not edit manually; changes may be overwritten. Version: 3.003 -Release: 21%{?dist} +Release: 21%{?dist} URL: https://software.sil.org/padauk/ %global foundry SIL diff --git a/specs/s/sip6/sip6.spec b/specs/s/sip6/sip6.spec index 6baa8509be1..45f0b4b3176 100644 --- a/specs/s/sip6/sip6.spec +++ b/specs/s/sip6/sip6.spec @@ -5,7 +5,7 @@ Name: sip6 Version: 6.15.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: SIP - Python/C++ Bindings Generator %py_provides python3-sip6 diff --git a/specs/s/slang/slang.spec b/specs/s/slang/slang.spec index 21a2791a052..d4d6a5d4791 100644 --- a/specs/s/slang/slang.spec +++ b/specs/s/slang/slang.spec @@ -10,7 +10,7 @@ Summary: Shared library for the S-Lang extension language Name: slang Version: 2.3.3 -Release: 9%{?dist} +Release: 9%{?dist} License: GPL-2.0-or-later URL: https://www.jedsoft.org/slang/ Source: https://www.jedsoft.org/releases/%{name}/%{name}-%{version}.tar.bz2 diff --git a/specs/s/slapi-nis/slapi-nis.spec b/specs/s/slapi-nis/slapi-nis.spec index 564d459d194..c468420b67d 100644 --- a/specs/s/slapi-nis/slapi-nis.spec +++ b/specs/s/slapi-nis/slapi-nis.spec @@ -16,7 +16,7 @@ Name: slapi-nis Version: 0.70.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Schema Compatibility plugins for Directory Server License: GPL-3.0-or-later URL: http://pagure.io/slapi-nis/ diff --git a/specs/s/smartmontools/smartmontools.spec b/specs/s/smartmontools/smartmontools.spec index a056e1bfeb3..49deb85dbe0 100644 --- a/specs/s/smartmontools/smartmontools.spec +++ b/specs/s/smartmontools/smartmontools.spec @@ -10,7 +10,7 @@ Summary: Tools for monitoring SMART capable hard disks Name: smartmontools Version: 7.5 -Release: 5%{?dist} +Release: 5%{?dist} Epoch: 1 License: GPL-2.0-or-later URL: https://www.smartmontools.org/ diff --git a/specs/s/smc-tools/smc-tools.spec b/specs/s/smc-tools/smc-tools.spec index d1e8fe3d1cb..cd315d207ec 100644 --- a/specs/s/smc-tools/smc-tools.spec +++ b/specs/s/smc-tools/smc-tools.spec @@ -3,7 +3,7 @@ Name: smc-tools Version: 1.8.5 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Shared Memory Communication Tools License: EPL-1.0 diff --git a/specs/s/snappy/snappy.spec b/specs/s/snappy/snappy.spec index b9385df5539..ecd9180c8bd 100644 --- a/specs/s/snappy/snappy.spec +++ b/specs/s/snappy/snappy.spec @@ -8,7 +8,7 @@ %global __cmake_in_source_build 1 Name: snappy Version: 1.2.2 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Fast compression and decompression library License: BSD-3-Clause diff --git a/specs/s/softhsm/softhsm.spec b/specs/s/softhsm/softhsm.spec index 8f9dc8e615d..d16ef9cb6f0 100644 --- a/specs/s/softhsm/softhsm.spec +++ b/specs/s/softhsm/softhsm.spec @@ -7,7 +7,7 @@ Summary: Software version of a PKCS#11 Hardware Security Module Name: softhsm Version: 2.6.1 -Release: %{?prever:0.}13%{?prever:.%{prever}}%{?dist}.1 +Release: %{?prever:0.}15%{?prever:.%{prever}}%{?dist}.1 License: BSD-2-clause Url: http://www.opendnssec.org/ Source: http://dist.opendnssec.org/source/%{?prever:testing/}%{name}-%{version}.tar.gz diff --git a/specs/s/sombok/sombok.spec b/specs/s/sombok/sombok.spec index 683353f4a66..937003dbf37 100644 --- a/specs/s/sombok/sombok.spec +++ b/specs/s/sombok/sombok.spec @@ -3,7 +3,7 @@ Name: sombok Version: 2.4.0 -Release: 25%{?dist} +Release: 25%{?dist} Summary: Unicode Text Segmentation Package License: (GPL-1.0-or-later OR Artistic-1.0-Perl) AND (GPL-2.0-or-later OR Artistic-1.0-Perl) URL: http://sf.net/projects/linefold/ diff --git a/specs/s/soundtouch/soundtouch.spec b/specs/s/soundtouch/soundtouch.spec index a293257390e..e01b1c4057e 100644 --- a/specs/s/soundtouch/soundtouch.spec +++ b/specs/s/soundtouch/soundtouch.spec @@ -3,7 +3,7 @@ Name: soundtouch Version: 2.4.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Audio Processing library for changing Tempo, Pitch and Playback Rates License: LGPL-2.1-or-later URL: http://www.surina.net/soundtouch/ diff --git a/specs/s/soxr/soxr.spec b/specs/s/soxr/soxr.spec index 5a10e2264e5..197ff344a3c 100644 --- a/specs/s/soxr/soxr.spec +++ b/specs/s/soxr/soxr.spec @@ -5,7 +5,7 @@ Name: soxr Version: 0.1.3 -Release: 21%{?dist} +Release: 21%{?dist} Summary: The SoX Resampler library License: LGPL-2.1-or-later diff --git a/specs/s/spandsp/spandsp.spec b/specs/s/spandsp/spandsp.spec index 05854a31bbb..a34b2124bd7 100644 --- a/specs/s/spandsp/spandsp.spec +++ b/specs/s/spandsp/spandsp.spec @@ -6,7 +6,7 @@ Name: spandsp Summary: A DSP library for telephony Version: 0.0.6 -Release: 21%{?pre:.pre%{pre}}%{?dist} +Release: 24%{?pre:.pre%{pre}}%{?dist} License: LGPL-2.1-only AND GPL-2.0-only URL: https://www.soft-switch.org # Remove non-free file (no permission to redistribute) diff --git a/specs/s/sparsehash/sparsehash.spec b/specs/s/sparsehash/sparsehash.spec index 3b8f861e6fc..e45f4784710 100644 --- a/specs/s/sparsehash/sparsehash.spec +++ b/specs/s/sparsehash/sparsehash.spec @@ -7,7 +7,7 @@ Name: sparsehash Version: 2.0.3 -Release: 16%{?dist} +Release: 16%{?dist} Summary: Extremely memory-efficient C++ hash_map implementation # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/s/spatialindex/spatialindex.spec b/specs/s/spatialindex/spatialindex.spec index 8f70a0e8c28..fea88741d80 100644 --- a/specs/s/spatialindex/spatialindex.spec +++ b/specs/s/spatialindex/spatialindex.spec @@ -3,7 +3,7 @@ Name: spatialindex Version: 2.1.0 -Release: 3%{?dist} +Release: 3%{?dist} %global so_version 8 Summary: Spatial index library diff --git a/specs/s/spec-version-maven-plugin/spec-version-maven-plugin.spec b/specs/s/spec-version-maven-plugin/spec-version-maven-plugin.spec index 2031cadc5d8..f87f92f7caf 100644 --- a/specs/s/spec-version-maven-plugin/spec-version-maven-plugin.spec +++ b/specs/s/spec-version-maven-plugin/spec-version-maven-plugin.spec @@ -5,7 +5,7 @@ Name: spec-version-maven-plugin Version: 2.2 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Spec Version Maven Plugin License: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0 diff --git a/specs/s/speech-dispatcher/speech-dispatcher.spec b/specs/s/speech-dispatcher/speech-dispatcher.spec index 7eb987787e5..8eabadeed40 100644 --- a/specs/s/speech-dispatcher/speech-dispatcher.spec +++ b/specs/s/speech-dispatcher/speech-dispatcher.spec @@ -9,7 +9,7 @@ Name: speech-dispatcher Version: 0.12.1 -Release: 6%{?dist} +Release: 6%{?dist} Summary: To provide a high-level device independent layer for speech synthesis # Almost all files are under GPL-2.0-or-later, however diff --git a/specs/s/speech-tools/speech-tools.spec b/specs/s/speech-tools/speech-tools.spec index e52ac42ac0a..f84728eb1ff 100644 --- a/specs/s/speech-tools/speech-tools.spec +++ b/specs/s/speech-tools/speech-tools.spec @@ -3,7 +3,7 @@ Name: speech-tools Version: 2.5 -Release: 27%{?dist} +Release: 27%{?dist} Summary: Edinburgh speech tools library License: MIT-Festival diff --git a/specs/s/speex/speex.spec b/specs/s/speex/speex.spec index 218897f1939..b2935978f62 100644 --- a/specs/s/speex/speex.spec +++ b/specs/s/speex/speex.spec @@ -4,7 +4,7 @@ Summary: A voice compression format (codec) Name: speex Version: 1.2.0 -Release: 21%{?dist} +Release: 21%{?dist} License: BSD-3-clause AND TU-Berlin-1.0 URL: https://www.speex.org/ Source0: https://downloads.xiph.org/releases/speex/%{name}-%{version}.tar.gz diff --git a/specs/s/speexdsp/speexdsp.spec b/specs/s/speexdsp/speexdsp.spec index 214d319157d..2afbd827c6b 100644 --- a/specs/s/speexdsp/speexdsp.spec +++ b/specs/s/speexdsp/speexdsp.spec @@ -3,7 +3,7 @@ Name: speexdsp Version: 1.2.1 -Release: 11%{?dist} +Release: 11%{?dist} Summary: A voice compression format (DSP) License: BSD-3-Clause diff --git a/specs/s/sphinx/sphinx.spec b/specs/s/sphinx/sphinx.spec index f3c13bad588..04ad191dd6f 100644 --- a/specs/s/sphinx/sphinx.spec +++ b/specs/s/sphinx/sphinx.spec @@ -23,7 +23,7 @@ Name: sphinx Version: 2.2.11 -Release: 35%{?dist} +Release: 35%{?dist} Summary: Free open-source SQL full-text search engine # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later diff --git a/specs/s/spice-protocol/spice-protocol.spec b/specs/s/spice-protocol/spice-protocol.spec index fed4c1937aa..e9b984601d2 100644 --- a/specs/s/spice-protocol/spice-protocol.spec +++ b/specs/s/spice-protocol/spice-protocol.spec @@ -3,7 +3,7 @@ Name: spice-protocol Version: 0.14.5 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Spice protocol header files # Main headers are BSD, controller / foreign menu are LGPL License: BSD-3-Clause AND LGPL-2.1-or-later diff --git a/specs/s/spice/spice.spec b/specs/s/spice/spice.spec index a367dc8445a..8e812f718e0 100644 --- a/specs/s/spice/spice.spec +++ b/specs/s/spice/spice.spec @@ -3,7 +3,7 @@ Name: spice Version: 0.16.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Implements the SPICE protocol # Automatically converted from old format: LGPLv2+ - review is highly recommended. License: LicenseRef-Callaway-LGPLv2+ diff --git a/specs/s/sqlite2/sqlite2.spec b/specs/s/sqlite2/sqlite2.spec index d175159f5b3..52daebab5fd 100644 --- a/specs/s/sqlite2/sqlite2.spec +++ b/specs/s/sqlite2/sqlite2.spec @@ -12,7 +12,7 @@ Name: sqlite2 Version: 2.8.17 -Release: 48%{?dist} +Release: 48%{?dist} Summary: Embeddable SQL engine in a C library License: blessing AND LicenseRef-Fedora-Public-Domain diff --git a/specs/s/squashfs-tools/squashfs-tools.spec b/specs/s/squashfs-tools/squashfs-tools.spec index c7b4812a1fe..3dcab7ba33a 100644 --- a/specs/s/squashfs-tools/squashfs-tools.spec +++ b/specs/s/squashfs-tools/squashfs-tools.spec @@ -14,7 +14,7 @@ Source: %{forgesource} # https://bugzilla.redhat.com/show_bug.cgi?id=2178510 # Fix a crash caused by an out-of-bounds access that was inadvertently # re-introduced in a memory leak fix -Release: 7%{dist} +Release: 10%{dist} License: GPL-2.0-or-later BuildRequires: make diff --git a/specs/s/squid/squid.spec b/specs/s/squid/squid.spec index b4d3817a570..cf23814b59a 100644 --- a/specs/s/squid/squid.spec +++ b/specs/s/squid/squid.spec @@ -6,7 +6,7 @@ Name: squid Version: 7.4 -Release: 2%{?dist} +Release: 2%{?dist} Summary: The Squid proxy caching server Epoch: 7 # See CREDITS for breakdown of non GPLv2+ code diff --git a/specs/s/srt/srt.spec b/specs/s/srt/srt.spec index f307046c823..02240769265 100644 --- a/specs/s/srt/srt.spec +++ b/specs/s/srt/srt.spec @@ -5,7 +5,7 @@ Name: srt Version: 1.5.4 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Secure Reliable Transport protocol tools License: MPL-2.0 diff --git a/specs/s/sshpass/sshpass.spec b/specs/s/sshpass/sshpass.spec index d98519b8948..dd3b87a23a2 100644 --- a/specs/s/sshpass/sshpass.spec +++ b/specs/s/sshpass/sshpass.spec @@ -4,7 +4,7 @@ Summary: Non-interactive SSH authentication utility Name: sshpass Version: 1.09 -Release: 12%{?dist} +Release: 12%{?dist} # Automatically converted from old format: GPLv2 - review is highly recommended. License: GPL-2.0-only Url: http://sshpass.sourceforge.net/ diff --git a/specs/s/ssmtp/ssmtp.spec b/specs/s/ssmtp/ssmtp.spec index 9aacc6cdcf9..1e25a76d362 100644 --- a/specs/s/ssmtp/ssmtp.spec +++ b/specs/s/ssmtp/ssmtp.spec @@ -3,7 +3,7 @@ Name: ssmtp Version: 2.64 -Release: 41%{?dist} +Release: 41%{?dist} Summary: Extremely simple MTA to get mail off the system to a Mailhub License: GPL-2.0-or-later URL: http://packages.debian.org/stable/mail/ssmtp diff --git a/specs/s/stalld/stalld.spec b/specs/s/stalld/stalld.spec index 34680b31ed2..7f729416a71 100644 --- a/specs/s/stalld/stalld.spec +++ b/specs/s/stalld/stalld.spec @@ -3,7 +3,7 @@ Name: stalld Version: 1.26.3 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Daemon that finds starving tasks and gives them a temporary boost License: GPL-2.0-or-later AND GPL-2.0-only diff --git a/specs/s/stress/stress.spec b/specs/s/stress/stress.spec index ec4b134696f..7c22d4fafbb 100644 --- a/specs/s/stress/stress.spec +++ b/specs/s/stress/stress.spec @@ -4,7 +4,7 @@ %define _hardened_build 1 Name: stress Version: 1.0.7 -Release: 8%{?dist} +Release: 8%{?dist} Summary: A tool to put given subsystems under a specified load License: GPL-2.0-or-later diff --git a/specs/s/string-template-maven-plugin/string-template-maven-plugin.spec b/specs/s/string-template-maven-plugin/string-template-maven-plugin.spec index ed20e18fd06..8e7c03f13b2 100644 --- a/specs/s/string-template-maven-plugin/string-template-maven-plugin.spec +++ b/specs/s/string-template-maven-plugin/string-template-maven-plugin.spec @@ -5,7 +5,7 @@ Name: string-template-maven-plugin Version: 1.1 -Release: 19%{?dist} +Release: 19%{?dist} Summary: Execute StringTemplate files during a maven build License: MIT diff --git a/specs/s/stringtemplate4/stringtemplate4.spec b/specs/s/stringtemplate4/stringtemplate4.spec index 8712aa1fcc7..0d3503bd587 100644 --- a/specs/s/stringtemplate4/stringtemplate4.spec +++ b/specs/s/stringtemplate4/stringtemplate4.spec @@ -5,7 +5,7 @@ Name: stringtemplate4 Version: 4.3.4 -Release: 12%{?dist} +Release: 12%{?dist} Summary: A Java template engine License: BSD-3-Clause URL: http://www.stringtemplate.org/ diff --git a/specs/s/suitesparse/suitesparse.spec b/specs/s/suitesparse/suitesparse.spec index b17e3e50640..4dd16b3d9e2 100644 --- a/specs/s/suitesparse/suitesparse.spec +++ b/specs/s/suitesparse/suitesparse.spec @@ -51,7 +51,7 @@ Name: suitesparse Version: 7.11.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: A collection of sparse matrix libraries # See LICENSE.txt for a breakdown of all licenses: diff --git a/specs/s/supermin/supermin.spec b/specs/s/supermin/supermin.spec index 88dfbf9aca2..c7a602d2ec6 100644 --- a/specs/s/supermin/supermin.spec +++ b/specs/s/supermin/supermin.spec @@ -41,7 +41,7 @@ ExcludeArch: %{ix86} Summary: Tool for creating supermin appliances Name: supermin Version: 5.3.5 -Release: 7%{?dist} +Release: 7%{?dist} License: GPL-2.0-or-later ExclusiveArch: %{kernel_arches} diff --git a/specs/s/swtpm/swtpm.spec b/specs/s/swtpm/swtpm.spec index 40cfa2a279d..bfd8dd9c260 100644 --- a/specs/s/swtpm/swtpm.spec +++ b/specs/s/swtpm/swtpm.spec @@ -11,7 +11,7 @@ Summary: TPM Emulator Name: swtpm Version: 0.10.1 -Release: 3%{?dist} +Release: 3%{?dist} License: BSD-3-Clause Url: https://github.com/stefanberger/swtpm Source0: https://github.com/stefanberger/swtpm/archive/v%{version}/%{name}-%{version}.tar.gz diff --git a/specs/s/synce4l/synce4l.spec b/specs/s/synce4l/synce4l.spec index 4d9890c7e64..6751d76210d 100644 --- a/specs/s/synce4l/synce4l.spec +++ b/specs/s/synce4l/synce4l.spec @@ -3,7 +3,7 @@ Name: synce4l Version: 1.1.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: SyncE implementation for Linux License: GPL-2.0-or-later diff --git a/specs/s/sysfsutils/sysfsutils.spec b/specs/s/sysfsutils/sysfsutils.spec index 5e3ac9451c2..adfd1daca50 100644 --- a/specs/s/sysfsutils/sysfsutils.spec +++ b/specs/s/sysfsutils/sysfsutils.spec @@ -7,7 +7,7 @@ Name: sysfsutils Version: 2.1.1 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Utilities for interfacing with sysfs URL: https://github.com/linux-ras/sysfsutils License: GPL-2.0-only diff --git a/specs/s/syslinux/syslinux.spec b/specs/s/syslinux/syslinux.spec index a3712122f78..6f4cd277309 100644 --- a/specs/s/syslinux/syslinux.spec +++ b/specs/s/syslinux/syslinux.spec @@ -13,7 +13,7 @@ Summary: Simple kernel loader which boots from a FAT filesystem Name: syslinux Version: 6.04 %define tarball_version 6.04-pre1 -Release: 0.34%{?dist} +Release: 0.39%{?dist} License: GPL-2.0-or-later URL: http://syslinux.zytor.com/wiki/index.php/The_Syslinux_Project Source0: http://www.kernel.org/pub/linux/utils/boot/syslinux/%{name}-%{tarball_version}.tar.xz diff --git a/specs/s/systemtap/systemtap.spec b/specs/s/systemtap/systemtap.spec index 63e2468cb01..dff7cb64524 100644 --- a/specs/s/systemtap/systemtap.spec +++ b/specs/s/systemtap/systemtap.spec @@ -134,7 +134,7 @@ f /var/log/stap-server/log 0644 stap-server stap-server - Name: systemtap # PRERELEASE Version: 5.5 -Release: 1%{?release_override}%{?dist} +Release: 6%{?release_override}%{?dist} # for version, see also configure.ac diff --git a/specs/t/t1lib/t1lib.spec b/specs/t/t1lib/t1lib.spec index 5fe0777f121..ff3be80960b 100644 --- a/specs/t/t1lib/t1lib.spec +++ b/specs/t/t1lib/t1lib.spec @@ -4,7 +4,7 @@ Summary: PostScript Type 1 font rasterizer Name: t1lib Version: 5.1.2 -Release: 43%{?dist} +Release: 43%{?dist} # Automatically converted from old format: LGPLv2+ - review is highly recommended. License: LicenseRef-Callaway-LGPLv2+ URL: ftp://sunsite.unc.edu/pub/Linux/libs/graphics/t1lib-%{version}.lsm diff --git a/specs/t/t1utils/t1utils.spec b/specs/t/t1utils/t1utils.spec index ca0002acfba..a88928d272c 100644 --- a/specs/t/t1utils/t1utils.spec +++ b/specs/t/t1utils/t1utils.spec @@ -4,7 +4,7 @@ Summary: Collection of Type 1 and 2 font manipulation utilities Name: t1utils Version: 1.42 -Release: 12%{?dist} +Release: 12%{?dist} # The Click license is an MIT variant. License: MIT URL: http://www.lcdf.org/~eddietwo/type/ diff --git a/specs/t/targetcli/targetcli.spec b/specs/t/targetcli/targetcli.spec index 7152beac8f2..63e22c7d1b8 100644 --- a/specs/t/targetcli/targetcli.spec +++ b/specs/t/targetcli/targetcli.spec @@ -7,7 +7,7 @@ Name: targetcli License: Apache-2.0 Summary: An administration shell for storage targets Version: 3.0.1 -Release: 5%{?dist} +Release: 5%{?dist} URL: https://github.com/open-iscsi/%{oname} Source: %{url}/archive/v%{version}/%{oname}-%{version}.tar.gz # Proposed upstream diff --git a/specs/t/tboot/tboot.spec b/specs/t/tboot/tboot.spec index 9e90173cd09..b8c9b05cee4 100644 --- a/specs/t/tboot/tboot.spec +++ b/specs/t/tboot/tboot.spec @@ -4,7 +4,7 @@ Summary: Performs a verified launch using Intel TXT Name: tboot Version: 1.11.7 -Release: 14%{?dist} +Release: 14%{?dist} Epoch: 1 License: BSD-3-Clause diff --git a/specs/t/tcsh/tcsh.spec b/specs/t/tcsh/tcsh.spec index 46a853830f6..a34bbad195c 100644 --- a/specs/t/tcsh/tcsh.spec +++ b/specs/t/tcsh/tcsh.spec @@ -16,7 +16,7 @@ Name: tcsh Summary: An enhanced version of csh, the C shell Version: 6.24.14 -Release: 5%{?dist} +Release: 5%{?dist} License: BSD-3-Clause URL: http://www.tcsh.org/ diff --git a/specs/t/teckit/teckit.spec b/specs/t/teckit/teckit.spec index f03921e4244..31ed2083aeb 100644 --- a/specs/t/teckit/teckit.spec +++ b/specs/t/teckit/teckit.spec @@ -3,7 +3,7 @@ Name: teckit Version: 2.5.13 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Encoding conversion library and mapping compiler # COPYING: links to license/LICENSING.txt # license/License_CPLv05.txt: CPL-1.0 text, "0.5" version in the license diff --git a/specs/t/tesseract-tessdata/tesseract-tessdata.spec b/specs/t/tesseract-tessdata/tesseract-tessdata.spec index 9f4d2110a18..4de6addddce 100644 --- a/specs/t/tesseract-tessdata/tesseract-tessdata.spec +++ b/specs/t/tesseract-tessdata/tesseract-tessdata.spec @@ -8,7 +8,7 @@ Name: tesseract-tessdata Version: 4.1.0 -Release: 11%{?pre:.%pre}%{?commit:.git%{shortcommit}}%{?dist} +Release: 14%{?pre:.%pre}%{?commit:.git%{shortcommit}}%{?dist} Summary: Trained models for the Tesseract Open Source OCR Engine BuildArch: noarch diff --git a/specs/t/tesseract/tesseract.spec b/specs/t/tesseract/tesseract.spec index 96b95885d51..9e9939b6ed4 100644 --- a/specs/t/tesseract/tesseract.spec +++ b/specs/t/tesseract/tesseract.spec @@ -14,7 +14,7 @@ Name: tesseract Version: 5.5.2 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Raw OCR Engine License: Apache-2.0 diff --git a/specs/t/time/time.spec b/specs/t/time/time.spec index 6095f800a86..ed35de9bd1c 100644 --- a/specs/t/time/time.spec +++ b/specs/t/time/time.spec @@ -4,7 +4,7 @@ Summary: A GNU utility for monitoring a program's use of system resources Name: time Version: 1.9 -Release: 28%{?dist} +Release: 28%{?dist} # src/time.c: GPL-3.0-or-later # COPYING: GPL-3.0 text # doc/time.texi: GFDL-1.3-no-invariants-or-later diff --git a/specs/t/tini/tini.spec b/specs/t/tini/tini.spec index ebb569b5018..a610bf1a1c0 100644 --- a/specs/t/tini/tini.spec +++ b/specs/t/tini/tini.spec @@ -3,7 +3,7 @@ Name: tini Version: 0.19.0 -Release: 12%{?dist} +Release: 12%{?dist} Summary: A tiny but valid init for containers License: MIT diff --git a/specs/t/tinycdb/tinycdb.spec b/specs/t/tinycdb/tinycdb.spec index b0000fe2580..df41afde316 100644 --- a/specs/t/tinycdb/tinycdb.spec +++ b/specs/t/tinycdb/tinycdb.spec @@ -4,7 +4,7 @@ Name: tinycdb Summary: Utility and library for manipulating constant databases Version: 0.80 -Release: 6%{?dist} +Release: 6%{?dist} License: LicenseRef-Fedora-Public-Domain URL: http://www.corpit.ru/mjt/tinycdb.html Source0: http://www.corpit.ru/mjt/%{name}/%{name}-%{version}.tar.gz diff --git a/specs/t/tlog/tlog.spec b/specs/t/tlog/tlog.spec index 3bc2ed4dd5c..e28d9e107d6 100644 --- a/specs/t/tlog/tlog.spec +++ b/specs/t/tlog/tlog.spec @@ -23,7 +23,7 @@ Name: tlog Version: 14 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Terminal I/O logger %if "%{_vendor}" == "debbuild" diff --git a/specs/t/tmux/tmux.spec b/specs/t/tmux/tmux.spec index bde3093179e..adfe4950921 100644 --- a/specs/t/tmux/tmux.spec +++ b/specs/t/tmux/tmux.spec @@ -5,7 +5,7 @@ Name: tmux Version: 3.5a -Release: 8%{?dist} +Release: 8%{?dist} Summary: A terminal multiplexer License: ISC AND BSD-2-Clause AND BSD-3-Clause AND SSH-short AND LicenseRef-Fedora-Public-Domain URL: https://tmux.github.io/ diff --git a/specs/t/tog-pegasus/tog-pegasus.spec b/specs/t/tog-pegasus/tog-pegasus.spec index 2e395e43aaf..2c7cc53a3a0 100644 --- a/specs/t/tog-pegasus/tog-pegasus.spec +++ b/specs/t/tog-pegasus/tog-pegasus.spec @@ -9,7 +9,7 @@ Name: tog-pegasus Version: %{major_ver}.1 -Release: 87%{?dist} +Release: 87%{?dist} Epoch: 2 Summary: OpenPegasus WBEM Services for Linux diff --git a/specs/t/toilet/toilet.spec b/specs/t/toilet/toilet.spec index 49955d9bc5e..a28a37b49e1 100644 --- a/specs/t/toilet/toilet.spec +++ b/specs/t/toilet/toilet.spec @@ -3,7 +3,7 @@ Name: toilet Version: 0.3 -Release: 20%{?dist} +Release: 20%{?dist} Summary: Display large colorful characters in text mode License: WTFPL diff --git a/specs/t/tokyocabinet/tokyocabinet.spec b/specs/t/tokyocabinet/tokyocabinet.spec index 84ef52ab388..8cd2c6cd134 100644 --- a/specs/t/tokyocabinet/tokyocabinet.spec +++ b/specs/t/tokyocabinet/tokyocabinet.spec @@ -4,7 +4,7 @@ Summary: A modern implementation of a DBM Name: tokyocabinet Version: 1.4.48 -Release: 29%{?dist} +Release: 29%{?dist} License: LGPL-2.1-or-later URL: http://fallabs.com/tokyocabinet/ Source: http://fallabs.com/%{name}/%{name}-%{version}.tar.gz diff --git a/specs/t/tomcat-jakartaee-migration/tomcat-jakartaee-migration.spec b/specs/t/tomcat-jakartaee-migration/tomcat-jakartaee-migration.spec index f217197d91e..639215a56bb 100644 --- a/specs/t/tomcat-jakartaee-migration/tomcat-jakartaee-migration.spec +++ b/specs/t/tomcat-jakartaee-migration/tomcat-jakartaee-migration.spec @@ -3,7 +3,7 @@ Name: tomcat-jakartaee-migration Version: 1.0.9 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Tomcat Migration Tool for Jakarta EE License: Apache-2.0 diff --git a/specs/t/tomcli/tomcli.spec b/specs/t/tomcli/tomcli.spec index 56f293bd185..dc2e435de65 100644 --- a/specs/t/tomcli/tomcli.spec +++ b/specs/t/tomcli/tomcli.spec @@ -34,7 +34,7 @@ PATH=%{buildroot}%{_bindir}:${PATH} Name: tomcli Version: 0.10.1 -Release: 4%{?dist} +Release: 4%{?dist} Summary: CLI for working with TOML files. Pronounced "tom clee." License: MIT diff --git a/specs/t/toolbox/toolbox.spec b/specs/t/toolbox/toolbox.spec index e0c7d28a97f..bd9387a6638 100644 --- a/specs/t/toolbox/toolbox.spec +++ b/specs/t/toolbox/toolbox.spec @@ -45,7 +45,7 @@ Version: 0.3 %endif %endif -Release: 2%{?dist} +Release: 2%{?dist} Summary: Tool for interactive command line environments on Linux License: Apache-2.0 diff --git a/specs/t/tpm2-openssl/tpm2-openssl.spec b/specs/t/tpm2-openssl/tpm2-openssl.spec index 47f562e6dd7..9e50633cb60 100644 --- a/specs/t/tpm2-openssl/tpm2-openssl.spec +++ b/specs/t/tpm2-openssl/tpm2-openssl.spec @@ -3,7 +3,7 @@ Name:tpm2-openssl Version: 1.2.0 -Release: 7%{?candidate:.%{candidate}}%{?dist} +Release: 10%{?candidate:.%{candidate}}%{?dist} Summary: Provider for integration of TPM 2.0 to OpenSSL 3.0 License: BSD-3-Clause diff --git a/specs/t/tpm2-pkcs11/tpm2-pkcs11.spec b/specs/t/tpm2-pkcs11/tpm2-pkcs11.spec index d801958f012..e97da5c543c 100644 --- a/specs/t/tpm2-pkcs11/tpm2-pkcs11.spec +++ b/specs/t/tpm2-pkcs11/tpm2-pkcs11.spec @@ -5,7 +5,7 @@ Name: tpm2-pkcs11 Version: 1.9.1 -Release: 6%{?candidate:.%{candidate}}%{?dist} +Release: 9%{?candidate:.%{candidate}}%{?dist} Summary: PKCS#11 interface for TPM 2.0 hardware License: BSD-2-Clause diff --git a/specs/t/tpm2-tools/tpm2-tools.spec b/specs/t/tpm2-tools/tpm2-tools.spec index f0bf2bedc57..38ff799bfc2 100644 --- a/specs/t/tpm2-tools/tpm2-tools.spec +++ b/specs/t/tpm2-tools/tpm2-tools.spec @@ -5,7 +5,7 @@ Name: tpm2-tools Version: 5.7 -Release: 4%{?candidate:.%{candidate}}%{?dist} +Release: 7%{?candidate:.%{candidate}}%{?dist} Summary: A bunch of TPM testing toolS build upon tpm2-tss License: BSD-3-Clause diff --git a/specs/t/tpm2-tss/tpm2-tss.spec b/specs/t/tpm2-tss/tpm2-tss.spec index 9f1ea94ac2b..9f04d9a8be7 100644 --- a/specs/t/tpm2-tss/tpm2-tss.spec +++ b/specs/t/tpm2-tss/tpm2-tss.spec @@ -8,7 +8,7 @@ Name: tpm2-tss Version: 4.1.3 -Release: 8%{?candidate:.%{candidate}}%{?dist} +Release: 11%{?candidate:.%{candidate}}%{?dist} Summary: TPM2.0 Software Stack # The entire source code is under BSD except implementation.h and tpmb.h which diff --git a/specs/t/treelayout/treelayout.spec b/specs/t/treelayout/treelayout.spec index f692603bd3c..ee9e3c7247e 100644 --- a/specs/t/treelayout/treelayout.spec +++ b/specs/t/treelayout/treelayout.spec @@ -6,7 +6,7 @@ Name: treelayout Version: 1.0.3 -Release: 28%{?dist} +Release: 28%{?dist} Summary: Efficient and customizable Tree Layout Algorithm in Java License: BSD-3-Clause URL: http://treelayout.sourceforge.net/ diff --git a/specs/t/triehash/triehash.spec b/specs/t/triehash/triehash.spec index 10712d40f0a..cb245470c12 100644 --- a/specs/t/triehash/triehash.spec +++ b/specs/t/triehash/triehash.spec @@ -5,7 +5,7 @@ Name: triehash Version: 0.3 -Release: 17%{?dist} +Release: 17%{?dist} Summary: Generator for order-preserving minimal perfect hash functions in C License: MIT diff --git a/specs/t/trilead-ssh2/trilead-ssh2.spec b/specs/t/trilead-ssh2/trilead-ssh2.spec index 34f9a192f00..322405a255c 100644 --- a/specs/t/trilead-ssh2/trilead-ssh2.spec +++ b/specs/t/trilead-ssh2/trilead-ssh2.spec @@ -6,7 +6,7 @@ Name: trilead-ssh2 Version: %{buildver}.%{patchlvl} -Release: 19%{?dist} +Release: 19%{?dist} Summary: SSH-2 protocol implementation in pure Java # Project is under BSD, but some parts are MIT licensed diff --git a/specs/t/tslib/tslib.spec b/specs/t/tslib/tslib.spec index f857f5ac884..be0d5f19183 100644 --- a/specs/t/tslib/tslib.spec +++ b/specs/t/tslib/tslib.spec @@ -3,7 +3,7 @@ Name: tslib Version: 1.23 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Touchscreen Access Library License: LGPL-2.1-only URL: https://github.com/kergoth/tslib diff --git a/specs/t/tss2/tss2.spec b/specs/t/tss2/tss2.spec index 04c374f0acb..e5bd4230528 100644 --- a/specs/t/tss2/tss2.spec +++ b/specs/t/tss2/tss2.spec @@ -12,7 +12,7 @@ Name: tss2 # this is the release of the TSS library Version: 2.3.2 # this is the release of the fedora package, goes back to 1 when version changes -Release: 4%{?dist} +Release: 4%{?dist} Epoch: 1 Summary: IBM's TCG Software Stack (TSS) for TPM 2.0 and related utilities diff --git a/specs/t/ttembed/ttembed.spec b/specs/t/ttembed/ttembed.spec index 7219bd902f7..61773de7015 100644 --- a/specs/t/ttembed/ttembed.spec +++ b/specs/t/ttembed/ttembed.spec @@ -3,7 +3,7 @@ Name: ttembed Version: 1.1 -Release: 25%{?dist} +Release: 25%{?dist} Summary: Remove embedding limitations from TrueType fonts License: Unlicense URL: https://github.com/hisdeedsaredust/ttembed diff --git a/specs/t/tuned/tuned.spec b/specs/t/tuned/tuned.spec index c6a813a8132..9a0db545f3e 100644 --- a/specs/t/tuned/tuned.spec +++ b/specs/t/tuned/tuned.spec @@ -61,7 +61,7 @@ Summary: A dynamic adaptive system tuning daemon Name: tuned Version: 2.27.0 -Release: 1%{?prerel1}%{?git_suffix:.%{git_suffix}}%{?dist} +Release: 4%{?prerel1}%{?git_suffix:.%{git_suffix}}%{?dist} License: GPL-2.0-or-later AND CC-BY-SA-3.0 %if 0%{?git_commit:1} Source0: https://github.com/redhat-performance/%{name}/archive/%{git_commit}/%{name}-%{version}-%{git_suffix}.tar.gz diff --git a/specs/t/twolame/twolame.spec b/specs/t/twolame/twolame.spec index 2ee4a33fb3c..0bc43f9e781 100644 --- a/specs/t/twolame/twolame.spec +++ b/specs/t/twolame/twolame.spec @@ -3,7 +3,7 @@ Name: twolame Version: 0.4.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Optimized MPEG Audio Layer 2 encoding library based on tooLAME # build-scripts/install-sh is MIT/X11, build-scripts/{libtool.m4, ltmain.sh} are GPLv2+ License: LGPL-2.1-or-later diff --git a/specs/u/ubdsrv/ubdsrv.spec b/specs/u/ubdsrv/ubdsrv.spec index 664e9be3f83..a2ccb926034 100644 --- a/specs/u/ubdsrv/ubdsrv.spec +++ b/specs/u/ubdsrv/ubdsrv.spec @@ -8,7 +8,7 @@ Version: 1.1 Summary: Userspace block driver server and ublk tool Name: ubdsrv -Release: 1.rc1%{?dist}.5 +Release: 4.rc1%{?dist}.5 URL: %{forgeurl} Source: %{forgesource} License: LGPLv2+ or MIT diff --git a/specs/u/uboot-tools/uboot-tools.spec b/specs/u/uboot-tools/uboot-tools.spec index 165d0dc26bb..1a115f831b0 100644 --- a/specs/u/uboot-tools/uboot-tools.spec +++ b/specs/u/uboot-tools/uboot-tools.spec @@ -16,7 +16,7 @@ Name: uboot-tools Version: 2025.10 -Release: 1%{?candidate:.%{candidate}}%{?dist} +Release: 4%{?candidate:.%{candidate}}%{?dist} Epoch: 1 Summary: U-Boot utilities # Automatically converted from old format: GPLv2+ BSD LGPL-2.1+ LGPL-2.0+ - review is highly recommended. diff --git a/specs/u/uchardet/uchardet.spec b/specs/u/uchardet/uchardet.spec index 5c479eaafa3..46264cbd2d4 100644 --- a/specs/u/uchardet/uchardet.spec +++ b/specs/u/uchardet/uchardet.spec @@ -5,7 +5,7 @@ Name: uchardet Version: 0.0.8 -Release: 9%{?dist} +Release: 9%{?dist} Summary: An encoding detector library ported from Mozilla License: MPL-1.1 OR GPL-2.0-or-later OR LGPL-2.0-or-later diff --git a/specs/u/uhttpmock/uhttpmock.spec b/specs/u/uhttpmock/uhttpmock.spec index 805935b8a6d..ad0487eef44 100644 --- a/specs/u/uhttpmock/uhttpmock.spec +++ b/specs/u/uhttpmock/uhttpmock.spec @@ -12,7 +12,7 @@ Name: uhttpmock Version: 0.11.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: HTTP web service mocking library License: LGPL-2.1-or-later diff --git a/specs/u/umockdev/umockdev.spec b/specs/u/umockdev/umockdev.spec index 38fa692d2b1..2752acaf20a 100644 --- a/specs/u/umockdev/umockdev.spec +++ b/specs/u/umockdev/umockdev.spec @@ -3,7 +3,7 @@ Name: umockdev Version: 0.19.5 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Mock hardware devices License: LGPL-2.1-or-later diff --git a/specs/u/unity-gtk-module/unity-gtk-module.spec b/specs/u/unity-gtk-module/unity-gtk-module.spec index 5a37e884e30..25f61b7eba0 100644 --- a/specs/u/unity-gtk-module/unity-gtk-module.spec +++ b/specs/u/unity-gtk-module/unity-gtk-module.spec @@ -6,7 +6,7 @@ Name: unity-gtk-module Version: 0.0.0+17.04.20170403 -Release: 24%{?dist} +Release: 24%{?dist} Summary: GTK+ module for exporting old-style menus as GMenuModels # Automatically converted from old format: LGPLv3 - review is highly recommended. diff --git a/specs/u/uriparser/uriparser.spec b/specs/u/uriparser/uriparser.spec index d5045b32838..5b2557503c5 100644 --- a/specs/u/uriparser/uriparser.spec +++ b/specs/u/uriparser/uriparser.spec @@ -12,7 +12,7 @@ Name: uriparser Version: 1.0.0 -Release: 4%{?dist} +Release: 4%{?dist} Summary: URI parsing library - RFC 3986 # main license is BSD-3-Clause diff --git a/specs/u/urlview/urlview.spec b/specs/u/urlview/urlview.spec index 8b38790c315..7c04e4850e3 100644 --- a/specs/u/urlview/urlview.spec +++ b/specs/u/urlview/urlview.spec @@ -6,7 +6,7 @@ %global gitrev %(c=%{gitfullrev}; echo ${c:0:6}) Name: urlview Version: 0.9 -Release: 40.%{gitdate}git%{gitrev}%{?dist} +Release: 43.%{gitdate}git%{gitrev}%{?dist} Summary: URL extractor/launcher License: GPL-2.0-only AND GPL-2.0-or-later AND LGPL-2.0-or-later diff --git a/specs/u/urw-base35-fonts/urw-base35-fonts.spec b/specs/u/urw-base35-fonts/urw-base35-fonts.spec index ab9a31edd0d..019585eac20 100644 --- a/specs/u/urw-base35-fonts/urw-base35-fonts.spec +++ b/specs/u/urw-base35-fonts/urw-base35-fonts.spec @@ -141,7 +141,7 @@ by (URW)++ company, and are mainly utilized by applications using Ghostscript. Name: %{fontname}-fonts Summary: Core Font Set containing 35 freely distributable fonts from (URW)++ Version: 20200910 -Release: 27%{?dist} +Release: 27%{?dist} # NOTE: (URW)++ holds the copyright, but Artifex Software has obtained rights to # release these fonts under GNU Affero General Public License (version 3). diff --git a/specs/u/usbredir/usbredir.spec b/specs/u/usbredir/usbredir.spec index 9b2c3edab7a..1b74bd57c1c 100644 --- a/specs/u/usbredir/usbredir.spec +++ b/specs/u/usbredir/usbredir.spec @@ -3,7 +3,7 @@ Name: usbredir Version: 0.15.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: USB network redirection protocol libraries License: LGPL-2.1-or-later URL: https://www.spice-space.org/usbredir.html diff --git a/specs/u/userspace-rcu/userspace-rcu.spec b/specs/u/userspace-rcu/userspace-rcu.spec index 67df75dab82..027626abe94 100644 --- a/specs/u/userspace-rcu/userspace-rcu.spec +++ b/specs/u/userspace-rcu/userspace-rcu.spec @@ -3,7 +3,7 @@ Name: userspace-rcu Version: 0.15.3 -Release: 3%{?dist} +Release: 3%{?dist} Summary: RCU (read-copy-update) implementation in user-space License: LGPL-2.1-or-later URL: https://liburcu.org diff --git a/specs/u/utf8cpp/utf8cpp.spec b/specs/u/utf8cpp/utf8cpp.spec index 687ae283980..7a4624d215f 100644 --- a/specs/u/utf8cpp/utf8cpp.spec +++ b/specs/u/utf8cpp/utf8cpp.spec @@ -9,7 +9,7 @@ Name: utf8cpp Version: 4.0.8 -Release: 2%{?dist} +Release: 2%{?dist} Summary: A simple, portable and lightweight library for handling UTF-8 encoded strings License: BSL-1.0 URL: https://github.com/nemtrif/utfcpp diff --git a/specs/u/uthash/uthash.spec b/specs/u/uthash/uthash.spec index fcd414f7d37..4c0e399289a 100644 --- a/specs/u/uthash/uthash.spec +++ b/specs/u/uthash/uthash.spec @@ -3,7 +3,7 @@ Name: uthash Version: 2.3.0 -Release: 11%{?dist} +Release: 11%{?dist} Summary: A hash table for C structures License: BSD-1-Clause diff --git a/specs/u/uuid/uuid.spec b/specs/u/uuid/uuid.spec index 69ade71cb4c..e01eb136124 100644 --- a/specs/u/uuid/uuid.spec +++ b/specs/u/uuid/uuid.spec @@ -9,7 +9,7 @@ Name: uuid Version: 1.6.2 -Release: 68%{?dist} +Release: 68%{?dist} Summary: Universally Unique Identifier library License: MIT URL: http://www.ossp.org/pkg/lib/uuid/ diff --git a/specs/v/vala/vala.spec b/specs/v/vala/vala.spec index 4a2ea3a911f..b4a637c49e0 100644 --- a/specs/v/vala/vala.spec +++ b/specs/v/vala/vala.spec @@ -6,7 +6,7 @@ Name: vala Version: 0.56.18 -Release: 4%{?dist} +Release: 4%{?dist} Summary: A modern programming language for GNOME # Most files are LGPLv2.1+, curses.vapi is 2-clause BSD diff --git a/specs/v/valkey/valkey.spec b/specs/v/valkey/valkey.spec index 6f769c9a4c5..f81a3e08b72 100644 --- a/specs/v/valkey/valkey.spec +++ b/specs/v/valkey/valkey.spec @@ -14,7 +14,7 @@ Name: valkey Version: 8.1.5 -Release: 2%{?dist} +Release: 2%{?dist} Summary: A persistent key-value database # valkey: BSD-3-Clause # hiredis: BSD-3-Clause diff --git a/specs/v/vid.stab/vid.stab.spec b/specs/v/vid.stab/vid.stab.spec index 764311af1a9..3a7e55987ac 100644 --- a/specs/v/vid.stab/vid.stab.spec +++ b/specs/v/vid.stab/vid.stab.spec @@ -9,7 +9,7 @@ Name: vid.stab Version: 1.1.1 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Video stabilize library for fmpeg, mlt or transcode # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later diff --git a/specs/v/virglrenderer/virglrenderer.spec b/specs/v/virglrenderer/virglrenderer.spec index 695163b2827..8b94ad45eb8 100644 --- a/specs/v/virglrenderer/virglrenderer.spec +++ b/specs/v/virglrenderer/virglrenderer.spec @@ -7,7 +7,7 @@ Name: virglrenderer Version: 1.2.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Virgl Rendering library. License: MIT diff --git a/specs/v/virt-what/virt-what.spec b/specs/v/virt-what/virt-what.spec index 3d5fbd8851f..8f4532a24e1 100644 --- a/specs/v/virt-what/virt-what.spec +++ b/specs/v/virt-what/virt-what.spec @@ -3,7 +3,7 @@ Name: virt-what Version: 1.27 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Detect if we are running in a virtual machine License: GPL-2.0-or-later diff --git a/specs/v/vmaf/vmaf.spec b/specs/v/vmaf/vmaf.spec index 71ab7dacfee..ea74cb53b7a 100644 --- a/specs/v/vmaf/vmaf.spec +++ b/specs/v/vmaf/vmaf.spec @@ -3,7 +3,7 @@ Name: vmaf Version: 3.0.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Video Multi-Method Assessment Fusion License: BSD-2-Clause-Patent diff --git a/specs/v/vo-amrwbenc/vo-amrwbenc.spec b/specs/v/vo-amrwbenc/vo-amrwbenc.spec index d76f637e4db..73710a4c679 100644 --- a/specs/v/vo-amrwbenc/vo-amrwbenc.spec +++ b/specs/v/vo-amrwbenc/vo-amrwbenc.spec @@ -5,7 +5,7 @@ Name: vo-amrwbenc Version: 0.1.3 -Release: 24%{?dist} +Release: 24%{?dist} Summary: VisualOn AMR-WB encoder library License: Apache-2.0 URL: http://opencore-amr.sourceforge.net/ diff --git a/specs/v/voikko-fi/voikko-fi.spec b/specs/v/voikko-fi/voikko-fi.spec index 116d9006b32..44b49592ab3 100644 --- a/specs/v/voikko-fi/voikko-fi.spec +++ b/specs/v/voikko-fi/voikko-fi.spec @@ -3,7 +3,7 @@ Name: voikko-fi Version: 2.5 -Release: 10%{?dist} +Release: 10%{?dist} Summary: A description of Finnish morphology written for libvoikko License: GPL-2.0-or-later diff --git a/specs/w/w3m/w3m.spec b/specs/w/w3m/w3m.spec index 025dd289430..4c9bc4c9df0 100644 --- a/specs/w/w3m/w3m.spec +++ b/specs/w/w3m/w3m.spec @@ -11,7 +11,7 @@ Name: w3m Version: 0.5.3 -Release: 66.git%{gitdate}%{?dist} +Release: 69.git%{gitdate}%{?dist} # Unicode-DFS-2015 is added for EastAsianWidth.txt source License: MIT AND Unicode-DFS-2015 URL: http://w3m.sourceforge.net/ diff --git a/specs/w/waf/waf.spec b/specs/w/waf/waf.spec index 7b096b00174..49169686360 100644 --- a/specs/w/waf/waf.spec +++ b/specs/w/waf/waf.spec @@ -3,7 +3,7 @@ Name: waf Version: 2.1.9 -Release: 2%{?dist} +Release: 2%{?dist} Summary: A Python-based build system # The entire source code is BSD apart from pproc.py (taken from Python 2.5) # Automatically converted from old format: BSD and Python - review is highly recommended. diff --git a/specs/w/wagyu/wagyu.spec b/specs/w/wagyu/wagyu.spec index bb1386eba5d..77f3378f015 100644 --- a/specs/w/wagyu/wagyu.spec +++ b/specs/w/wagyu/wagyu.spec @@ -11,7 +11,7 @@ Name: wagyu Version: 0.5.0 -Release: 13%{?dist} +Release: 13%{?dist} Summary: A general library for geometry operations of union, intersections, difference, and xor License: BSL-1.0 AND BSD-3-Clause diff --git a/specs/w/watchdog/watchdog.spec b/specs/w/watchdog/watchdog.spec index 8da9f810b82..69342f049c5 100644 --- a/specs/w/watchdog/watchdog.spec +++ b/specs/w/watchdog/watchdog.spec @@ -4,7 +4,7 @@ Summary: Software and/or Hardware watchdog daemon Name: watchdog Version: 5.16 -Release: 12%{?dist} +Release: 12%{?dist} License: GPL-2.0-or-later URL: http://sourceforge.net/projects/watchdog/ diff --git a/specs/w/wayland-protocols/wayland-protocols.spec b/specs/w/wayland-protocols/wayland-protocols.spec index f1c7cebfb91..168a8cbdb0d 100644 --- a/specs/w/wayland-protocols/wayland-protocols.spec +++ b/specs/w/wayland-protocols/wayland-protocols.spec @@ -6,7 +6,7 @@ Name: wayland-protocols Version: 1.47 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Wayland protocols that adds functionality not available in the core protocol License: MIT diff --git a/specs/w/wayland/wayland.spec b/specs/w/wayland/wayland.spec index 0be73b915a3..c1c440d9dab 100644 --- a/specs/w/wayland/wayland.spec +++ b/specs/w/wayland/wayland.spec @@ -3,7 +3,7 @@ Name: wayland Version: 1.24.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Wayland Compositor Infrastructure # SPDX diff --git a/specs/w/web-assets/web-assets.spec b/specs/w/web-assets/web-assets.spec index 8671d49ec27..87beb4cdd38 100644 --- a/specs/w/web-assets/web-assets.spec +++ b/specs/w/web-assets/web-assets.spec @@ -6,7 +6,7 @@ Name: web-assets Version: 5 -Release: 25%{?dist} +Release: 25%{?dist} Summary: A simple framework for bits pushed to browsers License: MIT URL: https://fedoraproject.org/wiki/User:Patches/PackagingDrafts/Web_Assets diff --git a/specs/w/weldr-client/weldr-client.spec b/specs/w/weldr-client/weldr-client.spec index efe8d3b31d1..18b71596454 100644 --- a/specs/w/weldr-client/weldr-client.spec +++ b/specs/w/weldr-client/weldr-client.spec @@ -10,7 +10,7 @@ Name: weldr-client Version: 36.1 -Release: 2%{?dist} +Release: 2%{?dist} # Upstream license specification: Apache-2.0 License: Apache-2.0 Summary: Command line utility to control osbuild-composer diff --git a/specs/w/weston/weston.spec b/specs/w/weston/weston.spec index a341f0490c3..1f673b3b778 100644 --- a/specs/w/weston/weston.spec +++ b/specs/w/weston/weston.spec @@ -5,7 +5,7 @@ Name: weston Version: 14.0.2 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Reference compositor for Wayland License: MIT and CC-BY-SA-3.0 diff --git a/specs/w/wget2/wget2.spec b/specs/w/wget2/wget2.spec index 8133c0e0682..c433334577a 100644 --- a/specs/w/wget2/wget2.spec +++ b/specs/w/wget2/wget2.spec @@ -14,7 +14,7 @@ Name: wget2 Version: 2.2.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: An advanced file and recursive website downloader # Documentation is GFDL diff --git a/specs/w/wildmidi/wildmidi.spec b/specs/w/wildmidi/wildmidi.spec index 4958d695762..3e912b7888b 100644 --- a/specs/w/wildmidi/wildmidi.spec +++ b/specs/w/wildmidi/wildmidi.spec @@ -3,7 +3,7 @@ Name: wildmidi Version: 0.4.6 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Softsynth midi player License: GPL-3.0-or-later URL: https://github.com/Mindwerks/wildmidi diff --git a/specs/w/wireguard-tools/wireguard-tools.spec b/specs/w/wireguard-tools/wireguard-tools.spec index b3f785519b3..3b2238c771a 100644 --- a/specs/w/wireguard-tools/wireguard-tools.spec +++ b/specs/w/wireguard-tools/wireguard-tools.spec @@ -3,7 +3,7 @@ Name: wireguard-tools Version: 1.0.20250521 -Release: 3%{?dist} +Release: 3%{?dist} URL: https://www.wireguard.com/ Summary: Fast, modern, secure VPN tunnel # Automatically converted from old format: GPLv2 - review is highly recommended. diff --git a/specs/w/wireless-regdb/wireless-regdb.spec b/specs/w/wireless-regdb/wireless-regdb.spec index 3e803b2f7b9..38d6f5ecb0a 100644 --- a/specs/w/wireless-regdb/wireless-regdb.spec +++ b/specs/w/wireless-regdb/wireless-regdb.spec @@ -5,7 +5,7 @@ Name: wireless-regdb Version: 2025.10.07 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Regulatory database for 802.11 wireless networking License: ISC diff --git a/specs/w/wireshark/wireshark.spec b/specs/w/wireshark/wireshark.spec index 73c77e2c4c1..f84fe469094 100644 --- a/specs/w/wireshark/wireshark.spec +++ b/specs/w/wireshark/wireshark.spec @@ -9,7 +9,7 @@ Summary: Network traffic analyzer Name: wireshark Version: 4.6.3 -Release: 3%{?dist} +Release: 3%{?dist} Epoch: 1 License: BSD-1-Clause AND BSD-2-Clause AND BSD-3-Clause AND MIT AND GPL-2.0-or-later AND LGPL-2.0-or-later AND Zlib AND ISC AND (BSD-3-Clause OR GPL-2.0-only) AND (GPL-2.0-or-later AND Zlib) Url: http://www.wireshark.org/ diff --git a/specs/w/woff2/woff2.spec b/specs/w/woff2/woff2.spec index 2dd9cfdadd5..918c77ea6a0 100644 --- a/specs/w/woff2/woff2.spec +++ b/specs/w/woff2/woff2.spec @@ -5,7 +5,7 @@ Name: woff2 Version: 1.0.2 -Release: 24%{?dist} +Release: 24%{?dist} Summary: Web Open Font Format 2.0 library License: MIT diff --git a/specs/w/wsdd/wsdd.spec b/specs/w/wsdd/wsdd.spec index 3630264da64..068074af516 100644 --- a/specs/w/wsdd/wsdd.spec +++ b/specs/w/wsdd/wsdd.spec @@ -3,7 +3,7 @@ Name: wsdd Version: 0.8 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Web Services Dynamic Discovery host daemon License: MIT URL: https://github.com/christgau/wsdd diff --git a/specs/w/wslay/wslay.spec b/specs/w/wslay/wslay.spec index 06b15b4ee15..1165e150527 100644 --- a/specs/w/wslay/wslay.spec +++ b/specs/w/wslay/wslay.spec @@ -5,7 +5,7 @@ Name: wslay Version: 1.1.1 -Release: 8%{?dist} +Release: 8%{?dist} Summary: Lightweight WebSocket library in C License: MIT URL: https://tatsuhiro-t.github.io/wslay diff --git a/specs/w/wsmancli/wsmancli.spec b/specs/w/wsmancli/wsmancli.spec index 602d8b6e196..c4528380473 100644 --- a/specs/w/wsmancli/wsmancli.spec +++ b/specs/w/wsmancli/wsmancli.spec @@ -3,7 +3,7 @@ Name: wsmancli Version: 2.8.0 -Release: 3%{?dist} +Release: 3%{?dist} License: BSD-3-Clause Url: http://www.openwsman.org/ # You can get this tarball here: diff --git a/specs/w/wxGTK/wxGTK.spec b/specs/w/wxGTK/wxGTK.spec index 79bbebcf379..03d348c6497 100644 --- a/specs/w/wxGTK/wxGTK.spec +++ b/specs/w/wxGTK/wxGTK.spec @@ -12,7 +12,7 @@ Name: wxGTK Version: 3.2.8 -Release: 4%{?dist} +Release: 4%{?dist} Summary: GTK port of the wxWidgets GUI library License: LGPL-2.0-or-later WITH WxWindows-exception-3.1 URL: https://www.wxwidgets.org/ diff --git a/specs/x/xapian-bindings/xapian-bindings.spec b/specs/x/xapian-bindings/xapian-bindings.spec index e7656fc93eb..d0f118e7272 100644 --- a/specs/x/xapian-bindings/xapian-bindings.spec +++ b/specs/x/xapian-bindings/xapian-bindings.spec @@ -6,7 +6,7 @@ Name: xapian-bindings Version: 1.4.29 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Bindings for the Xapian Probabilistic Information Retrieval Library # Automatically converted from old format: GPLv2+ - review is highly recommended. diff --git a/specs/x/xapian-core/xapian-core.spec b/specs/x/xapian-core/xapian-core.spec index 150b0be6ec5..9ec72902991 100644 --- a/specs/x/xapian-core/xapian-core.spec +++ b/specs/x/xapian-core/xapian-core.spec @@ -10,7 +10,7 @@ Name: xapian-core Version: 1.4.29 -Release: 4%{?dist} +Release: 4%{?dist} Summary: The Xapian Probabilistic Information Retrieval Library License: GPL-2.0-or-later URL: https://www.xapian.org/ diff --git a/specs/x/xapps/xapps.spec b/specs/x/xapps/xapps.spec index 8e038107e12..c7f7fb0e69f 100644 --- a/specs/x/xapps/xapps.spec +++ b/specs/x/xapps/xapps.spec @@ -3,7 +3,7 @@ Name: xapps Version: 2.8.8 -Release: 7%{?dist} +Release: 7%{?dist} Summary: Common files for XApp desktop apps License: LGPL-3.0-only diff --git a/specs/x/xbean/xbean.spec b/specs/x/xbean/xbean.spec index f84648838c5..e957827334c 100644 --- a/specs/x/xbean/xbean.spec +++ b/specs/x/xbean/xbean.spec @@ -5,7 +5,7 @@ Name: xbean Version: 4.24 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Java plugin based web server License: Apache-2.0 URL: https://geronimo.apache.org/xbean/ diff --git a/specs/x/xcb-proto/xcb-proto.spec b/specs/x/xcb-proto/xcb-proto.spec index 967b0edfe79..8e763f8dcdc 100644 --- a/specs/x/xcb-proto/xcb-proto.spec +++ b/specs/x/xcb-proto/xcb-proto.spec @@ -3,7 +3,7 @@ Name: xcb-proto Version: 1.17.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: XCB protocol descriptions License: X11-distribute-modifications-variant diff --git a/specs/x/xcb-util-image/xcb-util-image.spec b/specs/x/xcb-util-image/xcb-util-image.spec index fac3a660064..597d5d3de73 100644 --- a/specs/x/xcb-util-image/xcb-util-image.spec +++ b/specs/x/xcb-util-image/xcb-util-image.spec @@ -3,7 +3,7 @@ Name: xcb-util-image Version: 0.4.1 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Port of Xlib's XImage and XShmImage functions on top of libxcb License: X11-distribute-modifications-variant URL: http://xcb.freedesktop.org diff --git a/specs/x/xcb-util-keysyms/xcb-util-keysyms.spec b/specs/x/xcb-util-keysyms/xcb-util-keysyms.spec index 4295ce84bf7..71d87a34b19 100644 --- a/specs/x/xcb-util-keysyms/xcb-util-keysyms.spec +++ b/specs/x/xcb-util-keysyms/xcb-util-keysyms.spec @@ -3,7 +3,7 @@ Name: xcb-util-keysyms Version: 0.4.1 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Standard X key constants and keycodes conversion on top of libxcb License: X11-distribute-modifications-variant URL: http://xcb.freedesktop.org diff --git a/specs/x/xcb-util-renderutil/xcb-util-renderutil.spec b/specs/x/xcb-util-renderutil/xcb-util-renderutil.spec index a0a2c9771df..837ad552d52 100644 --- a/specs/x/xcb-util-renderutil/xcb-util-renderutil.spec +++ b/specs/x/xcb-util-renderutil/xcb-util-renderutil.spec @@ -3,7 +3,7 @@ Name: xcb-util-renderutil Version: 0.3.10 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Convenience functions for the Render extension License: X11-distribute-modifications-variant AND HPND-sell-variant URL: http://xcb.freedesktop.org diff --git a/specs/x/xcb-util-wm/xcb-util-wm.spec b/specs/x/xcb-util-wm/xcb-util-wm.spec index d6f1d2d451e..520a8fa6ba3 100644 --- a/specs/x/xcb-util-wm/xcb-util-wm.spec +++ b/specs/x/xcb-util-wm/xcb-util-wm.spec @@ -3,7 +3,7 @@ Name: xcb-util-wm Version: 0.4.2 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Client and window-manager helper library on top of libxcb License: X11-distribute-modifications-variant URL: http://xcb.freedesktop.org diff --git a/specs/x/xcb-util/xcb-util.spec b/specs/x/xcb-util/xcb-util.spec index 3f677515c43..2d2940dc9e7 100644 --- a/specs/x/xcb-util/xcb-util.spec +++ b/specs/x/xcb-util/xcb-util.spec @@ -3,7 +3,7 @@ Name: xcb-util Version: 0.4.1 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Convenience libraries sitting on top of libxcb License: X11-distribute-modifications-variant URL: http://xcb.freedesktop.org diff --git a/specs/x/xclip/xclip.spec b/specs/x/xclip/xclip.spec index 3deb7fcc924..f82f9233c94 100644 --- a/specs/x/xclip/xclip.spec +++ b/specs/x/xclip/xclip.spec @@ -6,7 +6,7 @@ Name: xclip Version: 0.13 -Release: 25.git%{shortcommit}%{?dist} +Release: 28.git%{shortcommit}%{?dist} # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later Summary: Command line clipboard grabber diff --git a/specs/x/xclock/xclock.spec b/specs/x/xclock/xclock.spec index fac48530f43..7e43be2c600 100644 --- a/specs/x/xclock/xclock.spec +++ b/specs/x/xclock/xclock.spec @@ -3,7 +3,7 @@ Name: xclock Version: 1.1.1 -Release: 10%{?dist} +Release: 10%{?dist} Summary: The classic X Window System clock utility License: MIT-open-group AND SMLNJ AND MIT diff --git a/specs/x/xdg-dbus-proxy/xdg-dbus-proxy.spec b/specs/x/xdg-dbus-proxy/xdg-dbus-proxy.spec index 865f60f6397..343cdac4931 100644 --- a/specs/x/xdg-dbus-proxy/xdg-dbus-proxy.spec +++ b/specs/x/xdg-dbus-proxy/xdg-dbus-proxy.spec @@ -3,7 +3,7 @@ Name: xdg-dbus-proxy Version: 0.1.6 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Filtering proxy for D-Bus connections License: LGPL-2.1-or-later diff --git a/specs/x/xdg-user-dirs-gtk/xdg-user-dirs-gtk.spec b/specs/x/xdg-user-dirs-gtk/xdg-user-dirs-gtk.spec index aa9b18c84b3..b4d73da5f79 100644 --- a/specs/x/xdg-user-dirs-gtk/xdg-user-dirs-gtk.spec +++ b/specs/x/xdg-user-dirs-gtk/xdg-user-dirs-gtk.spec @@ -3,7 +3,7 @@ Name: xdg-user-dirs-gtk Version: 0.16 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Gnome integration of special directories License: GPL-2.0-or-later diff --git a/specs/x/xdg-user-dirs/xdg-user-dirs.spec b/specs/x/xdg-user-dirs/xdg-user-dirs.spec index 24ddd1c82e5..e00cd86d637 100644 --- a/specs/x/xdg-user-dirs/xdg-user-dirs.spec +++ b/specs/x/xdg-user-dirs/xdg-user-dirs.spec @@ -6,7 +6,7 @@ Name: xdg-user-dirs Version: 0.18 -Release: 12%{?dist} +Release: 12%{?dist} Summary: Handles user special directories License: GPL-2.0-or-later AND MIT diff --git a/specs/x/xdotool/xdotool.spec b/specs/x/xdotool/xdotool.spec index 9feb1fa2f7f..1171711b01a 100644 --- a/specs/x/xdotool/xdotool.spec +++ b/specs/x/xdotool/xdotool.spec @@ -4,7 +4,7 @@ Name: xdotool Version: 3.20211022.1 Epoch: 1 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Fake keyboard/mouse input # Automatically converted from old format: BSD - review is highly recommended. License: LicenseRef-Callaway-BSD diff --git a/specs/x/xdp-tools/xdp-tools.spec b/specs/x/xdp-tools/xdp-tools.spec index 9478b4184cd..05e3755334b 100644 --- a/specs/x/xdp-tools/xdp-tools.spec +++ b/specs/x/xdp-tools/xdp-tools.spec @@ -3,7 +3,7 @@ Name: xdp-tools Version: 1.5.8 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Utilities and example programs for use with XDP %global _soversion 1.5.0 diff --git a/specs/x/xeus-zmq/xeus-zmq.spec b/specs/x/xeus-zmq/xeus-zmq.spec index 39ce8b26098..242c525dcd5 100644 --- a/specs/x/xeus-zmq/xeus-zmq.spec +++ b/specs/x/xeus-zmq/xeus-zmq.spec @@ -3,7 +3,7 @@ Name: xeus-zmq Version: 3.1.0 -Release: 5%{?dist} +Release: 5%{?dist} Summary: ZeroMQ based middleware for xeus License: BSD-3-Clause diff --git a/specs/x/xevd/xevd.spec b/specs/x/xevd/xevd.spec index de52e436b5a..8c21188039e 100644 --- a/specs/x/xevd/xevd.spec +++ b/specs/x/xevd/xevd.spec @@ -3,7 +3,7 @@ Name: xevd Version: 0.5.0 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Reference MPEG-5 Part 1 (EVC) decoder License: BSD-3-Clause diff --git a/specs/x/xeve/xeve.spec b/specs/x/xeve/xeve.spec index bb66555abe6..733805a5a36 100644 --- a/specs/x/xeve/xeve.spec +++ b/specs/x/xeve/xeve.spec @@ -3,7 +3,7 @@ Name: xeve Version: 0.5.1 -Release: 6%{?dist} +Release: 6%{?dist} Summary: Reference MPEG-5 Part 1 (EVC) encoder License: BSD-3-Clause diff --git a/specs/x/xeyes/xeyes.spec b/specs/x/xeyes/xeyes.spec index a6c06812110..e3e1a8240f4 100644 --- a/specs/x/xeyes/xeyes.spec +++ b/specs/x/xeyes/xeyes.spec @@ -3,7 +3,7 @@ Name: xeyes Version: 1.3.0 -Release: 7%{?dist} +Release: 7%{?dist} Summary: A follow the mouse X demo License: X11 diff --git a/specs/x/xfsdump/xfsdump.spec b/specs/x/xfsdump/xfsdump.spec index b4a016f7f89..7eef3ce7286 100644 --- a/specs/x/xfsdump/xfsdump.spec +++ b/specs/x/xfsdump/xfsdump.spec @@ -4,7 +4,7 @@ Summary: Backup and restore utilities for the XFS filesystem Name: xfsdump Version: 3.2.0 -Release: 4%{?dist} +Release: 4%{?dist} # Licensing based on generic "GNU GENERAL PUBLIC LICENSE" # in source, with no mention of version. License: GPL-1.0-or-later diff --git a/specs/x/xfsprogs/xfsprogs.spec b/specs/x/xfsprogs/xfsprogs.spec index 07ecb1cba65..e8f2aa89457 100644 --- a/specs/x/xfsprogs/xfsprogs.spec +++ b/specs/x/xfsprogs/xfsprogs.spec @@ -4,7 +4,7 @@ Summary: Utilities for managing the XFS filesystem Name: xfsprogs Version: 6.15.0 -Release: 4%{?dist} +Release: 4%{?dist} License: GPL-1.0-or-later AND LGPL-2.1-or-later URL: https://xfs.wiki.kernel.org Source0: http://kernel.org/pub/linux/utils/fs/xfs/xfsprogs/%{name}-%{version}.tar.xz diff --git a/specs/x/xhost/xhost.spec b/specs/x/xhost/xhost.spec index fcfc50f3c0c..718824ca911 100644 --- a/specs/x/xhost/xhost.spec +++ b/specs/x/xhost/xhost.spec @@ -3,7 +3,7 @@ Name: xhost Version: 1.0.9 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Manage hosts or users allowed to connect to the X server License: MIT AND ICU diff --git a/specs/x/xhtml1-dtds/xhtml1-dtds.spec b/specs/x/xhtml1-dtds/xhtml1-dtds.spec index a252985813c..573844e24b2 100644 --- a/specs/x/xhtml1-dtds/xhtml1-dtds.spec +++ b/specs/x/xhtml1-dtds/xhtml1-dtds.spec @@ -2,7 +2,7 @@ # Do not edit manually; changes may be overwritten. %global date 20020801 -%global baserelease 23 +%global baserelease 25 Name: xhtml1-dtds Version: 1.0 diff --git a/specs/x/xkbcomp/xkbcomp.spec b/specs/x/xkbcomp/xkbcomp.spec index f3a91cfe4c6..a9117c808f7 100644 --- a/specs/x/xkbcomp/xkbcomp.spec +++ b/specs/x/xkbcomp/xkbcomp.spec @@ -3,7 +3,7 @@ Name: xkbcomp Version: 1.5.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: XKB keymap compiler License: MIT-open-group AND HPND-DEC diff --git a/specs/x/xkeyboard-config/xkeyboard-config.spec b/specs/x/xkeyboard-config/xkeyboard-config.spec index aeb93cb5d31..d071a4bc88f 100644 --- a/specs/x/xkeyboard-config/xkeyboard-config.spec +++ b/specs/x/xkeyboard-config/xkeyboard-config.spec @@ -14,7 +14,7 @@ Summary: X Keyboard Extension configuration data Name: xkeyboard-config Version: 2.46 -Release: 1%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +Release: 4%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} License: HPND AND HPND-sell-variant AND X11 AND X11-distribute-modifications-variant AND MIT AND MIT-open-group AND xkeyboard-config-Zinoviev URL: http://www.freedesktop.org/wiki/Software/XKeyboardConfig diff --git a/specs/x/xmlrpc-c/xmlrpc-c.spec b/specs/x/xmlrpc-c/xmlrpc-c.spec index d3135c3576d..c9f83ab2ea0 100644 --- a/specs/x/xmlrpc-c/xmlrpc-c.spec +++ b/specs/x/xmlrpc-c/xmlrpc-c.spec @@ -6,7 +6,7 @@ Name: xmlrpc-c Version: 1.60.04 -Release: 5%{?dist} +Release: 5%{?dist} Summary: Lightweight RPC library based on XML and HTTP # See doc/COPYING for details. # The Python 1.5.2 license used by a few files is just BSD. diff --git a/specs/x/xmlsec1/xmlsec1.spec b/specs/x/xmlsec1/xmlsec1.spec index dafc71b0de4..0ed2d3218b7 100644 --- a/specs/x/xmlsec1/xmlsec1.spec +++ b/specs/x/xmlsec1/xmlsec1.spec @@ -13,7 +13,7 @@ Summary: Library providing support for "XML Signature" and "XML Encryption" standards Name: xmlsec1 Version: 1.2.41 -Release: 3%{?dist}%{?extra_release} +Release: 6%{?dist}%{?extra_release} Epoch: 1 License: MIT Source0: https://github.com/lsh123/xmlsec/releases/download/%{version}/xmlsec1-%{version}.tar.gz diff --git a/specs/x/xmltoman/xmltoman.spec b/specs/x/xmltoman/xmltoman.spec index 79163e1d339..9ee8c87996a 100644 --- a/specs/x/xmltoman/xmltoman.spec +++ b/specs/x/xmltoman/xmltoman.spec @@ -3,7 +3,7 @@ Name: xmltoman Version: 0.4 -Release: 34%{?dist} +Release: 34%{?dist} Summary: Scripts for converting XML to roff or HTML License: GPL-2.0-or-later diff --git a/specs/x/xmodmap/xmodmap.spec b/specs/x/xmodmap/xmodmap.spec index 7ac0e145a7f..0ad390131cc 100644 --- a/specs/x/xmodmap/xmodmap.spec +++ b/specs/x/xmodmap/xmodmap.spec @@ -3,7 +3,7 @@ Name: xmodmap Version: 1.0.11 -Release: 10%{?dist} +Release: 10%{?dist} Summary: Edit and display the X11 core keyboard map License: MIT AND MIT-open-group diff --git a/specs/x/xmvn-connector-ivy/xmvn-connector-ivy.spec b/specs/x/xmvn-connector-ivy/xmvn-connector-ivy.spec index 779a9d64e94..07a0db2a877 100644 --- a/specs/x/xmvn-connector-ivy/xmvn-connector-ivy.spec +++ b/specs/x/xmvn-connector-ivy/xmvn-connector-ivy.spec @@ -3,7 +3,7 @@ Name: xmvn-connector-ivy Version: 4.0.0 -Release: 9%{?dist} +Release: 9%{?dist} Summary: XMvn Connector for Apache Ivy # Automatically converted from old format: ASL 2.0 - review is highly recommended. License: Apache-2.0 diff --git a/specs/x/xorg-x11-drv-dummy/xorg-x11-drv-dummy.spec b/specs/x/xorg-x11-drv-dummy/xorg-x11-drv-dummy.spec index 477915e8463..86afc14bb63 100644 --- a/specs/x/xorg-x11-drv-dummy/xorg-x11-drv-dummy.spec +++ b/specs/x/xorg-x11-drv-dummy/xorg-x11-drv-dummy.spec @@ -10,7 +10,7 @@ Summary: Xorg X11 dummy video driver Name: xorg-x11-drv-dummy Version: 0.4.1 -Release: 8%{?dist} +Release: 8%{?dist} URL: http://www.x.org License: MIT AND X11 diff --git a/specs/x/xorg-x11-drv-evdev/xorg-x11-drv-evdev.spec b/specs/x/xorg-x11-drv-evdev/xorg-x11-drv-evdev.spec index e6e593428e3..eb2a7d932ba 100644 --- a/specs/x/xorg-x11-drv-evdev/xorg-x11-drv-evdev.spec +++ b/specs/x/xorg-x11-drv-evdev/xorg-x11-drv-evdev.spec @@ -11,7 +11,7 @@ Summary: Xorg X11 evdev input driver Name: xorg-x11-drv-evdev Version: 2.11.0 -Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +Release: 6%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} URL: http://www.x.org License: HPND-sell-variant AND MIT diff --git a/specs/x/xorg-x11-drv-libinput/xorg-x11-drv-libinput.spec b/specs/x/xorg-x11-drv-libinput/xorg-x11-drv-libinput.spec index 63f92ec6dd9..0dc77630059 100644 --- a/specs/x/xorg-x11-drv-libinput/xorg-x11-drv-libinput.spec +++ b/specs/x/xorg-x11-drv-libinput/xorg-x11-drv-libinput.spec @@ -11,7 +11,7 @@ Summary: Xorg X11 libinput input driver Name: xorg-x11-drv-libinput Version: 1.5.0 -Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +Release: 6%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} URL: http://www.x.org # SPDX License: MIT diff --git a/specs/x/xorg-x11-drv-wacom/xorg-x11-drv-wacom.spec b/specs/x/xorg-x11-drv-wacom/xorg-x11-drv-wacom.spec index fb634eb8740..9fa56242c16 100644 --- a/specs/x/xorg-x11-drv-wacom/xorg-x11-drv-wacom.spec +++ b/specs/x/xorg-x11-drv-wacom/xorg-x11-drv-wacom.spec @@ -12,7 +12,7 @@ Summary: Xorg X11 wacom input driver Name: xorg-x11-drv-wacom Version: 1.2.3 -Release: 3%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} +Release: 6%{?gitdate:.%{gitdate}git%{gitversion}}%{?dist} URL: http://www.x.org License: GPL-2.0-or-later diff --git a/specs/x/xorg-x11-font-utils/xorg-x11-font-utils.spec b/specs/x/xorg-x11-font-utils/xorg-x11-font-utils.spec index 86c14ca313a..5b0aae53f6a 100644 --- a/specs/x/xorg-x11-font-utils/xorg-x11-font-utils.spec +++ b/specs/x/xorg-x11-font-utils/xorg-x11-font-utils.spec @@ -10,7 +10,7 @@ Summary: X.Org X11 font utilities Name: xorg-x11-font-utils Epoch: 1 Version: 7.5 -Release: 63%{?dist} +Release: 63%{?dist} License: MIT AND BSD-2-Clause AND MIT-open-group AND Unicode-3.0 URL: http://www.x.org diff --git a/specs/x/xorg-x11-fonts/xorg-x11-fonts.spec b/specs/x/xorg-x11-fonts/xorg-x11-fonts.spec index 2face4ed15d..e069820543d 100644 --- a/specs/x/xorg-x11-fonts/xorg-x11-fonts.spec +++ b/specs/x/xorg-x11-fonts/xorg-x11-fonts.spec @@ -35,7 +35,7 @@ fi \ Summary: X.Org X11 fonts Name: xorg-x11-fonts Version: 7.5 -Release: 42%{?dist} +Release: 42%{?dist} License: HPND AND Adobe-Utopia AND Cronyx AND MIT AND Lucida-Bitmap-Fonts AND Bitstream-Charter AND X11 URL: https://www.x.org diff --git a/specs/x/xorg-x11-server-Xwayland/xorg-x11-server-Xwayland.spec b/specs/x/xorg-x11-server-Xwayland/xorg-x11-server-Xwayland.spec index f6149a853a2..a015d270822 100644 --- a/specs/x/xorg-x11-server-Xwayland/xorg-x11-server-Xwayland.spec +++ b/specs/x/xorg-x11-server-Xwayland/xorg-x11-server-Xwayland.spec @@ -12,7 +12,7 @@ Summary: Xwayland Name: xorg-x11-server-Xwayland Version: 24.1.9 -Release: 2%{?gitdate:.%{gitdate}git%{shortcommit}}%{?dist} +Release: 5%{?gitdate:.%{gitdate}git%{shortcommit}}%{?dist} URL: http://www.x.org %if 0%{?gitdate} diff --git a/specs/x/xorg-x11-server/xorg-x11-server.spec b/specs/x/xorg-x11-server/xorg-x11-server.spec index b55a193c902..390f52b46b2 100644 --- a/specs/x/xorg-x11-server/xorg-x11-server.spec +++ b/specs/x/xorg-x11-server/xorg-x11-server.spec @@ -20,7 +20,7 @@ Summary: X.Org X11 X server Name: xorg-x11-server Version: 21.1.21 -Release: 3%{?dist} +Release: 3%{?dist} URL: http://www.x.org # SPDX License: Adobe-Display-PostScript AND BSD-3-Clause AND DEC-3-Clause AND HPND AND HPND-sell-MIT-disclaimer-xserver AND HPND-sell-variant AND ICU AND ISC AND MIT AND MIT-open-group AND NTP AND SGI-B-2.0 AND SMLNJ AND X11 AND X11-distribute-modifications-variant diff --git a/specs/x/xorg-x11-xinit/xorg-x11-xinit.spec b/specs/x/xorg-x11-xinit/xorg-x11-xinit.spec index 6b8b4fa39af..1771b6fe26b 100644 --- a/specs/x/xorg-x11-xinit/xorg-x11-xinit.spec +++ b/specs/x/xorg-x11-xinit/xorg-x11-xinit.spec @@ -6,7 +6,7 @@ Summary: X.Org X11 X Window System xinit startup scripts Name: xorg-x11-%{pkgname} Version: 1.4.3 -Release: 4%{?dist} +Release: 4%{?dist} License: X11-distribute-modifications-variant AND MIT-open-group URL: https://www.x.org diff --git a/specs/x/xrdb/xrdb.spec b/specs/x/xrdb/xrdb.spec index 90752df5873..87591d2916c 100644 --- a/specs/x/xrdb/xrdb.spec +++ b/specs/x/xrdb/xrdb.spec @@ -3,7 +3,7 @@ Name: xrdb Version: 1.2.2 -Release: 7%{?dist} +Release: 7%{?dist} Summary: X server resource database utility License: HPND-DEC AND MIT-open-group diff --git a/specs/x/xset/xset.spec b/specs/x/xset/xset.spec index 981a08dc01f..acf1f71bb43 100644 --- a/specs/x/xset/xset.spec +++ b/specs/x/xset/xset.spec @@ -3,7 +3,7 @@ Name: xset Version: 1.2.5 -Release: 9%{?dist} +Release: 9%{?dist} Summary: User preference utility for X License: MIT-open-group diff --git a/specs/x/xvidcore/xvidcore.spec b/specs/x/xvidcore/xvidcore.spec index 248151d9ab0..d22dc0d44c5 100644 --- a/specs/x/xvidcore/xvidcore.spec +++ b/specs/x/xvidcore/xvidcore.spec @@ -5,7 +5,7 @@ Name: xvidcore Version: 1.3.7 -Release: 15%{?dist} +Release: 15%{?dist} Summary: MPEG-4 Simple and Advanced Simple Profile codec License: GPL-2.0-or-later URL: https://www.xvid.com/ diff --git a/specs/x/xwayland-run/xwayland-run.spec b/specs/x/xwayland-run/xwayland-run.spec index 0aa5063221e..30c7900123d 100644 --- a/specs/x/xwayland-run/xwayland-run.spec +++ b/specs/x/xwayland-run/xwayland-run.spec @@ -3,7 +3,7 @@ Name: xwayland-run Version: 0.0.4 -Release: 13%{?dist} +Release: 13%{?dist} Summary: Set of utilities to run headless X/Wayland clients License: GPL-2.0-or-later diff --git a/specs/x/xxhash/xxhash.spec b/specs/x/xxhash/xxhash.spec index 1fa5c687fb0..0a06f945865 100644 --- a/specs/x/xxhash/xxhash.spec +++ b/specs/x/xxhash/xxhash.spec @@ -3,7 +3,7 @@ Name: xxhash Version: 0.8.3 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Extremely fast hash algorithm # The source for the library (xxhash.c and xxhash.h) is BSD-2-Clause diff --git a/specs/x/xz/xz.spec b/specs/x/xz/xz.spec index 567b7c28ce9..615ae225e31 100644 --- a/specs/x/xz/xz.spec +++ b/specs/x/xz/xz.spec @@ -8,7 +8,7 @@ Summary: LZMA compression utilities Name: xz Epoch: 1 Version: 5.8.1 -Release: 5%{?dist} +Release: 5%{?dist} # liblzma - 0BSD # xz{,dec}, lzma{dec,info} - 0BSD diff --git a/specs/y/yaml-cpp/yaml-cpp.spec b/specs/y/yaml-cpp/yaml-cpp.spec index e5e9d45108f..6fa8188bcda 100644 --- a/specs/y/yaml-cpp/yaml-cpp.spec +++ b/specs/y/yaml-cpp/yaml-cpp.spec @@ -5,7 +5,7 @@ Name: yaml-cpp Version: 0.8.0 -Release: 5%{?dist} +Release: 5%{?dist} License: MIT Summary: A YAML parser and emitter for C++ diff --git a/specs/y/yarnpkg/yarnpkg.spec b/specs/y/yarnpkg/yarnpkg.spec index 0426a91e35a..5e7cbfb46a1 100644 --- a/specs/y/yarnpkg/yarnpkg.spec +++ b/specs/y/yarnpkg/yarnpkg.spec @@ -15,7 +15,7 @@ Name: yarnpkg Version: 1.22.22 -Release: 18%{?dist} +Release: 18%{?dist} Summary: Fast, reliable, and secure dependency management. License: BSD-2-Clause URL: https://github.com/yarnpkg/yarn diff --git a/specs/y/yelp-xsl/yelp-xsl.spec b/specs/y/yelp-xsl/yelp-xsl.spec index a03a9183f3b..e3d3c5337f7 100644 --- a/specs/y/yelp-xsl/yelp-xsl.spec +++ b/specs/y/yelp-xsl/yelp-xsl.spec @@ -5,7 +5,7 @@ Name: yelp-xsl Version: 49.0 -Release: 2%{?dist} +Release: 2%{?dist} Summary: XSL stylesheets for the yelp help browser License: GPL-2.0-or-later AND LGPL-2.0-or-later AND MIT AND BSD-3-Clause diff --git a/specs/y/ykclient/ykclient.spec b/specs/y/ykclient/ykclient.spec index 36f61e7d8ec..637e7cf6ab0 100644 --- a/specs/y/ykclient/ykclient.spec +++ b/specs/y/ykclient/ykclient.spec @@ -3,7 +3,7 @@ Name: ykclient Version: 2.15 -Release: 23%{?dist} +Release: 23%{?dist} Summary: Yubikey management library and client # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/z/zaf/zaf.spec b/specs/z/zaf/zaf.spec index edca6bc0f85..f1721f6ea7e 100644 --- a/specs/z/zaf/zaf.spec +++ b/specs/z/zaf/zaf.spec @@ -5,7 +5,7 @@ Name: zaf Summary: South Africa hyphenation rules %define upstreamid 20080714 Version: 0 -Release: 0.32.%{upstreamid}svn%{?dist} +Release: 0.35.%{upstreamid}svn%{?dist} Source: zaf-0-0.1.%{upstreamid}svn.tar.bz2 # Below URL is dead now, don't file any bugs for updating it. URL: http://zaf.sourceforge.net/ diff --git a/specs/z/zbar/zbar.spec b/specs/z/zbar/zbar.spec index 4b427964c61..f56e105ff8c 100644 --- a/specs/z/zbar/zbar.spec +++ b/specs/z/zbar/zbar.spec @@ -9,7 +9,7 @@ Name: zbar Version: 0.23.93 -Release: 11%{?dist} +Release: 11%{?dist} Summary: Bar code reader License: LGPL-2.1-or-later diff --git a/specs/z/zchunk/zchunk.spec b/specs/z/zchunk/zchunk.spec index 73f0155ba32..30a927bb4eb 100644 --- a/specs/z/zchunk/zchunk.spec +++ b/specs/z/zchunk/zchunk.spec @@ -3,7 +3,7 @@ Name: zchunk Version: 1.5.1 -Release: 4%{?dist} +Release: 4%{?dist} Summary: Compressed file format that allows easy deltas License: BSD-2-Clause AND MIT URL: https://github.com/zchunk/zchunk diff --git a/specs/z/zenity/zenity.spec b/specs/z/zenity/zenity.spec index d031d502f92..ac37b0b9da2 100644 --- a/specs/z/zenity/zenity.spec +++ b/specs/z/zenity/zenity.spec @@ -3,7 +3,7 @@ Name: zenity Version: 4.2.1 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Display dialog boxes from shell scripts License: LGPL-2.1-or-later diff --git a/specs/z/zerofree/zerofree.spec b/specs/z/zerofree/zerofree.spec index 70233807cc7..3eeafa0fd00 100644 --- a/specs/z/zerofree/zerofree.spec +++ b/specs/z/zerofree/zerofree.spec @@ -4,7 +4,7 @@ Summary: Utility to force unused ext2/3/4 inodes and blocks to zero Name: zerofree Version: 1.1.1 -Release: 17%{?dist} +Release: 17%{?dist} License: GPL-2.0-only URL: https://frippery.org/uml/ Source0: https://frippery.org/uml/%{name}-%{version}.tgz diff --git a/specs/z/zfp/zfp.spec b/specs/z/zfp/zfp.spec index e734fbfad65..7d1102dfc7e 100644 --- a/specs/z/zfp/zfp.spec +++ b/specs/z/zfp/zfp.spec @@ -6,7 +6,7 @@ Name: zfp Version: 1.0.1 -Release: 9%{?dist} +Release: 9%{?dist} Summary: Library for compressed numerical arrays with high throughput R/W random access # Automatically converted from old format: BSD - review is highly recommended. diff --git a/specs/z/zig-srpm-macros/zig-srpm-macros.spec b/specs/z/zig-srpm-macros/zig-srpm-macros.spec index 7d152012f5d..0d6bf165720 100644 --- a/specs/z/zig-srpm-macros/zig-srpm-macros.spec +++ b/specs/z/zig-srpm-macros/zig-srpm-macros.spec @@ -4,7 +4,7 @@ Name: zig-srpm-macros Version: 1 -Release: 6%{?dist} +Release: 6%{?dist} Summary: SRPM macros required for Zig packages License: MIT diff --git a/specs/z/zint/zint.spec b/specs/z/zint/zint.spec index 8cdd2bb6c98..fb72a65ae55 100644 --- a/specs/z/zint/zint.spec +++ b/specs/z/zint/zint.spec @@ -3,7 +3,7 @@ Name: zint Version: 2.15.0 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Barcode generator library License: BSD-3-Clause AND GPL-3.0-or-later URL: http://www.zint.org.uk diff --git a/specs/z/zopfli/zopfli.spec b/specs/z/zopfli/zopfli.spec index 1c0d663eb20..ac53038750b 100644 --- a/specs/z/zopfli/zopfli.spec +++ b/specs/z/zopfli/zopfli.spec @@ -6,7 +6,7 @@ Name: zopfli Version: %{so_ver} -Release: 14%{?dist} +Release: 14%{?dist} Summary: Zlib compatible better compressor License: Apache-2.0 diff --git a/specs/z/zstd/zstd.spec b/specs/z/zstd/zstd.spec index 45a8e875585..ac4e3b608a9 100644 --- a/specs/z/zstd/zstd.spec +++ b/specs/z/zstd/zstd.spec @@ -21,7 +21,7 @@ Name: zstd Version: 1.5.7 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Zstd compression library License: BSD-3-Clause AND GPL-2.0-only diff --git a/specs/z/zvbi/zvbi.spec b/specs/z/zvbi/zvbi.spec index 96eaad50910..95a798e755a 100644 --- a/specs/z/zvbi/zvbi.spec +++ b/specs/z/zvbi/zvbi.spec @@ -6,7 +6,7 @@ Name: zvbi Version: 0.2.44 -Release: 3%{?dist} +Release: 3%{?dist} Summary: Raw VBI, Teletext and Closed Caption decoding library License: GPL-2.0-or-later AND LGPL-2.0-or-later AND LGPL-2.1-or-later AND BSD-2-Clause AND MIT URL: https://github.com/zapping-vbi/zvbi diff --git a/specs/z/zypper/zypper.spec b/specs/z/zypper/zypper.spec index a826efe8617..887d6e3db0c 100644 --- a/specs/z/zypper/zypper.spec +++ b/specs/z/zypper/zypper.spec @@ -8,7 +8,7 @@ Name: zypper Version: 1.14.94 -Release: 2%{?dist} +Release: 2%{?dist} Summary: Command line package manager using libzypp # Automatically converted from old format: GPLv2+ - review is highly recommended.