[Git][csonto/lvm2][main] packit: Add packit configuration

"Marian Csontos (@csonto)" <[email protected]> Wed, 18 Oct 2023 09:37:29 +0000
Newsgroups gmane.linux.lvm.devel
Message-ID <652fa7593eadb_2c98caf381014f0@gitlab-sidekiq-low-urgency-cpu-bound-v2-6dfc54d567-hh59c.mail>
--===============3445979341586305041==
Content-Type: multipart/alternative;
 boundary="--==_mimepart_652fa7585a23b_2c98caf38101318";
 charset=UTF-8

----==_mimepart_652fa7585a23b_2c98caf38101318
Content-Type: text/plain;
 charset=UTF-8
Content-Transfer-Encoding: 7bit



Marian Csontos pushed to branch main at Marian Csontos / lvm2


Commits:
1e5ca375 by Marian Csontos at 2023-10-18T11:36:58+02:00
packit: Add packit configuration

- - - - -


1 changed file:

- + .packit.yaml


Changes:

=====================================
.packit.yaml
=====================================
@@ -0,0 +1,152 @@
+# See the documentation for more information:
+# https://packit.dev/docs/configuration/
+
+# name in upstream package repository or registry (e.g. in PyPI)
+upstream_package_name: lvm2
+# downstream (Fedora) RPM package name
+downstream_package_name: lvm2
+
+specfile_path: spec/lvm2.spec
+
+# add or remove files that should be synced
+files_to_sync:
+    - spec/lvm2.spec
+    - spec/macros.inc
+    - spec/source.inc
+    - spec/build.inc
+    - spec/packages.inc
+    #- .packit.yaml
+
+actions:
+
+  get-current-version: "sed -e 's/^\\([0-9.]*\\).*/\\1/' VERSION"
+
+  # NOTE: make dist does not fit, it needs ./configure which would require dependencies installed
+  # NOTE: Must use semicolons and cannot use comments here - the lines are joined into single string.
+  create-archive: >
+    bash -c 'set -xv;
+    PREFIX=LVM2.$PACKIT_PROJECT_VERSION;
+    TARBALL=spec/$PREFIX.tgz;
+    git archive --prefix=$PREFIX/ --output=$TARBALL HEAD > /dev/null;
+    echo $TARBALL;
+    '
+
+  # fix-spec-file:
+  # - It updates Version and Release in the spec file.
+  # - In lvm2 case it needs to update device_mapper_version
+  # The following is not needed as we use same name as our spec files:
+  # - It replaces Source configured by spec_source_id (default Source0) with a local path to the generated archive.
+  # - It changes the first %setup (or %autosetup) macro in %prep and adds -n so
+  #   the generated tarball can be unpacked (it tries to extract the directory name
+  #   directly from the archive or uses the configured archive_root_dir_template).
+  fix-spec-file: >
+    bash -c 'set -xv;
+    VERSION_DM=$(sed -e "s/^\([0-9.]*\).*/\1/" VERSION_DM);
+    VERSION=$(sed -e "s/^\([0-9.]*\).*/\1/" VERSION);
+    echo PACKIT_PROJECT_VERSION="$PACKIT_PROJECT_VERSION" >&2;
+    echo PACKIT_RPMSPEC_RELEASE="$PACKIT_RPMSPEC_RELEASE" >&2;
+    sed -i spec/source.inc
+    -e "s/\(^\s*%global\s*device_mapper_version\s*\).*/\1$VERSION_DM/"
+    -e "s/\(^\s*Version:\s*\).*/\1$VERSION/"
+    -e "s/\(^\s*Release:\s*\).*/\10.$PACKIT_RPMSPEC_RELEASE/"
+    -e "s/\(^\s*Source0:\s*\).*/\1LVM2.$VERSION.tgz/"
+    # NOTE: Reamining is not needed when using LVM2.${VERSION} :-)
+    #sed -i spec/lvm2.spec 
+    #-e "s/^\s*%\(auto\|\)setup\s*.*/%setup -q -n lvm2-$VERSION/";
+    '
+  #  - "bash -c 'sed -i spec/lvm2.spec -e \"s/Version:.*/Version: $(sed -e \"s/^\\([0-9.]*\\).*/\\1/\" VERSION)/\"'"
+  # fix-spec-file:
+  #  - bash -c "sed -i spec/lvm2.spec -e \"s/%global device_mapper_version .*/%global device_mapper_version $(sed -e 's/^\\([0-9.]*\\).*/\\1/' VERSION_DM)/\""
+  #  # NOTE: Even though there is get-current-version hook, the version is not used in Version: in spec
+  #  - "bash -c 'sed -i spec/lvm2.spec -e \"s/Version:.*/Version: $(sed -e \"s/^\\([0-9.]*\\).*/\\1/\" VERSION)/\"'"
+
+# TODO:
+# - COPR build of latest version for all fedoras and cXs
+# - fedora PR for a release
+# - release - tag
+#     - build for epel-8, epel-9, fedora-all
+jobs:
+- job: copr_build
+  trigger: pull_request
+  metadata:
+    targets:
+    - fedora-rawhide-x86_64
+
+- job: copr_build
+  trigger: commit
+  metadata:
+    branch: main
+    targets:
+    - fedora-rawhide-x86_64
+
+- job: copr_build
+  trigger: commit
+  metadata:
+    branch: latest
+    targets:
+    - fedora-rawhide-x86_64
+
+- job: copr_build
+  trigger: commit
+  metadata:
+    branch: latest
+    targets:
+    - fedora-rawhide-x86_64
+    - fedora-all
+  specfile_path: spec/fedora/lvm2.spec
+  actions:
+    create-archive: >
+      bash -c 'set -xv;
+      PREFIX=LVM2.$PACKIT_PROJECT_VERSION;
+      TARBALL=spec/fedora/$PREFIX.tgz;
+      git archive --prefix=$PREFIX/ --output=$TARBALL HEAD > /dev/null;
+      echo $TARBALL;
+      '
+    # TODO: Release should be taken from tag
+    fix-spec-file: >
+      bash -c 'set -xv;
+      VERSION_DM=$(sed -e "s/^\([0-9.]*\).*/\1/" VERSION_DM);
+      VERSION=$(sed -e "s/^\([0-9.]*\).*/\1/" VERSION);
+      RELEASE=$(sed -e "s/^.*-\([0-9]*\) ([-0-9]*])//" VERSION);
+      echo PACKIT_PROJECT_VERSION="$PACKIT_PROJECT_VERSION" >&2;
+      echo PACKIT_RPMSPEC_RELEASE="$PACKIT_RPMSPEC_RELEASE" >&2;
+      sed -i spec/fedora/lvm2.spec
+      -e "s/\(^\s*%global\s*device_mapper_version\s*\).*/\1$VERSION_DM/"
+      -e "s/\(^\s*Version:\s*\).*/\1$VERSION/"
+      -e "s/\(^\s*Release:\s*\).*/\10.$PACKIT_RPMSPEC_RELEASE/"
+      -e "s/\(^\s*Source0:\s*\).*/\1LVM2.$VERSION.tgz/"
+      '
+
+- job: copr_build
+  trigger: release
+  specfile_path: spec/fedora/lvm2.spec
+  actions:
+    create-archive: >
+      bash -c 'set -xv;
+      PREFIX=LVM2.$PACKIT_PROJECT_VERSION;
+      TARBALL=spec/fedora/$PREFIX.tgz;
+      git archive --prefix=$PREFIX/ --output=$TARBALL HEAD > /dev/null;
+      echo $TARBALL;
+      '
+    # TODO: Release should be taken from tag
+    fix-spec-file: >
+      bash -c 'set -xv;
+      VERSION_DM=$(sed -e "s/^\([0-9.]*\).*/\1/" VERSION_DM);
+      VERSION=$(sed -e "s/^\([0-9.]*\).*/\1/" VERSION);
+      RELEASE=$(sed -e "s/^.*-\([0-9]*\) ([-0-9]*])//" VERSION);
+      echo PACKIT_PROJECT_VERSION="$PACKIT_PROJECT_VERSION" >&2;
+      echo PACKIT_RPMSPEC_RELEASE="$PACKIT_RPMSPEC_RELEASE" >&2;
+      sed -i spec/fedora/lvm2.spec
+      -e "s/\(^\s*%global\s*device_mapper_version\s*\).*/\1$VERSION_DM/"
+      -e "s/\(^\s*Version:\s*\).*/\1$VERSION/"
+      -e "s/\(^\s*Release:\s*\).*/\10.$PACKIT_RPMSPEC_RELEASE/"
+      -e "s/\(^\s*Source0:\s*\).*/\1LVM2.$VERSION.tgz/"
+      '
+
+  metadata:
+    targets:
+      - fedora-all
+      - epel-7
+      - epel-8
+      - epel-9
+



View it on GitLab: https://gitlab.com/csonto/lvm2/-/commit/1e5ca3758eed36f4d79e79b02d8dd070073b3ccf

-- 
View it on GitLab: https://gitlab.com/csonto/lvm2/-/commit/1e5ca3758eed36f4d79e79b02d8dd070073b3ccf
You're receiving this email because of your account on gitlab.com.



----==_mimepart_652fa7585a23b_2c98caf38101318
Content-Type: text/html;
 charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w=
3.org/TR/REC-html40/loose.dtd">
<html lang=3D"en" style=3D'--code-editor-font: var(--default-mono-font, "Gi=
tLab Mono"), JetBrains Mono, Menlo, DejaVu Sans Mono, Liberation Mono, Cons=
olas, Ubuntu Mono, Courier New, andale mono, lucida console, monospace;'>
<head>
<meta content=3D"text/html; charset=3DUS-ASCII" http-equiv=3D"Content-Type"=
>
<title>
GitLab
</title>

<style data-premailer=3D"ignore" type=3D"text/css">
a { color: #1068bf; }
</style>


<style>img {
max-width: 100%; height: auto;
}
body {
font-size: 0.875rem;
}
body {
-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px;
}
body {
font-family: var(--default-regular-font, "GitLab Sans"),-apple-system,Blink=
MacSystemFont,"Segoe UI",Roboto,"Noto Sans",Ubuntu,Cantarell,"Helvetica Neu=
e",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto =
Color Emoji"; font-size: inherit;
}
</style>
</head>
<body style=3D'font-size: inherit; -webkit-text-shadow: rgba(255,255,255,0.=
01) 0 0 1px; font-family: var(--default-regular-font, "GitLab Sans"),-apple=
-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Noto Sans",Ubuntu,Cantarell,"=
Helvetica Neue",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI S=
ymbol","Noto Color Emoji";'>
<div class=3D"content">

<h3 style=3D"margin-top: 20px; margin-bottom: 10px;">
Marian Csontos pushed to branch main at <a href=3D"https://gitlab.com/csont=
o/lvm2">Marian Csontos / lvm2</a>
</h3>
<h4 style=3D"margin-top: 10px; margin-bottom: 10px;">
Commits:
</h4>
<ul>
<li>
<strong style=3D"font-weight: bold;"><a href=3D"https://gitlab.com/csonto/l=
vm2/-/commit/1e5ca3758eed36f4d79e79b02d8dd070073b3ccf">1e5ca375</a></strong=
>
<div>
<span> by Marian Csontos </span> <i> at 2023-10-18T11:36:58+02:00 </i>
</div>
<pre class=3D"commit-message" style=3D'white-space: pre-wrap; display: bloc=
k; font-size: 14px; color: #333238; position: relative; font-family: var(--=
default-mono-font, "GitLab Mono"),"JetBrains Mono","Menlo","DejaVu Sans Mon=
o","Liberation Mono","Consolas","Ubuntu Mono","Courier New","andale mono","=
lucida console",monospace; word-break: break-all; word-wrap: break-word; ba=
ckground-color: #fbfafd; border-radius: 2px; margin: 0; padding: 8px 12px; =
border: 1px solid #dcdcde;'>packit: Add packit configuration
</pre>
</li>
</ul>
<h4 style=3D"margin-top: 10px; margin-bottom: 10px;">
1 changed file:
</h4>
<ul>
<li class=3D"file-stats">
<a href=3D"#8eef649c6f3efda90b9e4f57ec6593b23880057e">
<span class=3D"new-file">
+
.packit.yaml
</span>
</a>
</li>
</ul>
<h4 style=3D"margin-top: 10px; margin-bottom: 10px;">
Changes:
</h4>
<li id=3D"8eef649c6f3efda90b9e4f57ec6593b23880057e">
<a href=3D"https://gitlab.com/csonto/lvm2/-/commit/1e5ca3758eed36f4d79e79b0=
2d8dd070073b3ccf#8eef649c6f3efda90b9e4f57ec6593b23880057e"><strong style=3D=
"font-weight: bold;">.packit.yaml</strong></a>
<hr style=3D"overflow: hidden; border: 1px solid #e1e1e1;">
<table class=3D"code white" style=3D"border-spacing: 0; border-collapse: co=
llapse; width: auto; font-family: monospace; font-size: 90%;" bgcolor=3D"#f=
ff" width=3D"100%" cellpadding=3D"0" cellspacing=3D"0">
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"1" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
1
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC1" c=
lass=3D"line" lang=3D"yaml"><span class=3D"c1" style=3D"color: #998; font-s=
tyle: italic;"># See the documentation for more information:</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"2" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
2
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC2" c=
lass=3D"line" lang=3D"yaml"><span class=3D"c1" style=3D"color: #998; font-s=
tyle: italic;"># https://packit.dev/docs/configuration/</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"3" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
3
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC3" c=
lass=3D"line" lang=3D"yaml"></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"4" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
4
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC4" c=
lass=3D"line" lang=3D"yaml"><span class=3D"c1" style=3D"color: #998; font-s=
tyle: italic;"># name in upstream package repository or registry (e.g. in P=
yPI)</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"5" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
5
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC5" c=
lass=3D"line" lang=3D"yaml"><span class=3D"na" style=3D"color: #008080;">up=
stream_package_name</span><span class=3D"pi">:</span> <span class=3D"s" sty=
le=3D"color: #d14;">lvm2</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"6" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
6
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC6" c=
lass=3D"line" lang=3D"yaml"><span class=3D"c1" style=3D"color: #998; font-s=
tyle: italic;"># downstream (Fedora) RPM package name</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"7" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
7
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC7" c=
lass=3D"line" lang=3D"yaml"><span class=3D"na" style=3D"color: #008080;">do=
wnstream_package_name</span><span class=3D"pi">:</span> <span class=3D"s" s=
tyle=3D"color: #d14;">lvm2</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"8" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
8
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC8" c=
lass=3D"line" lang=3D"yaml"></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"9" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
9
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC9" c=
lass=3D"line" lang=3D"yaml"><span class=3D"na" style=3D"color: #008080;">sp=
ecfile_path</span><span class=3D"pi">:</span> <span class=3D"s" style=3D"co=
lor: #d14;">spec/lvm2.spec</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"10" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
10
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC10" =
class=3D"line" lang=3D"yaml"></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"11" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
11
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC11" =
class=3D"line" lang=3D"yaml"><span class=3D"c1" style=3D"color: #998; font-=
style: italic;"># add or remove files that should be synced</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"12" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
12
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC12" =
class=3D"line" lang=3D"yaml"><span class=3D"na" style=3D"color: #008080;">f=
iles_to_sync</span><span class=3D"pi">:</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"13" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
13
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC13" =
class=3D"line" lang=3D"yaml">    <span class=3D"pi">-</span> <span class=3D=
"s" style=3D"color: #d14;">spec/lvm2.spec</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"14" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
14
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC14" =
class=3D"line" lang=3D"yaml">    <span class=3D"pi">-</span> <span class=3D=
"s" style=3D"color: #d14;">spec/macros.inc</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"15" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
15
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC15" =
class=3D"line" lang=3D"yaml">    <span class=3D"pi">-</span> <span class=3D=
"s" style=3D"color: #d14;">spec/source.inc</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"16" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
16
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC16" =
class=3D"line" lang=3D"yaml">    <span class=3D"pi">-</span> <span class=3D=
"s" style=3D"color: #d14;">spec/build.inc</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"17" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
17
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC17" =
class=3D"line" lang=3D"yaml">    <span class=3D"pi">-</span> <span class=3D=
"s" style=3D"color: #d14;">spec/packages.inc</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"18" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
18
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC18" =
class=3D"line" lang=3D"yaml">    <span class=3D"c1" style=3D"color: #998; f=
ont-style: italic;">#- .packit.yaml</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"19" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
19
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC19" =
class=3D"line" lang=3D"yaml"></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"20" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
20
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC20" =
class=3D"line" lang=3D"yaml"><span class=3D"na" style=3D"color: #008080;">a=
ctions</span><span class=3D"pi">:</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"21" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
21
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC21" =
class=3D"line" lang=3D"yaml"></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"22" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
22
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC22" =
class=3D"line" lang=3D"yaml">  <span class=3D"na" style=3D"color: #008080;"=
>get-current-version</span><span class=3D"pi">:</span> <span class=3D"s2" s=
tyle=3D"color: #d14;">"</span><span class=3D"s" style=3D"color: #d14;">sed<=
/span><span class=3D"nv" style=3D"color: #008080;"> </span><span class=3D"s=
" style=3D"color: #d14;">-e</span><span class=3D"nv" style=3D"color: #00808=
0;"> </span><span class=3D"s" style=3D"color: #d14;">'s/^</span><span class=
=3D"se" style=3D"color: #d14;">\\</span><span class=3D"s" style=3D"color: #=
d14;">([0-9.]*</span><span class=3D"se" style=3D"color: #d14;">\\</span><sp=
an class=3D"s" style=3D"color: #d14;">).*/</span><span class=3D"se" style=
=3D"color: #d14;">\\</span><span class=3D"s" style=3D"color: #d14;">1/'</sp=
an><span class=3D"nv" style=3D"color: #008080;"> </span><span class=3D"s" s=
tyle=3D"color: #d14;">VERSION"</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"23" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
23
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC23" =
class=3D"line" lang=3D"yaml"></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"24" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
24
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC24" =
class=3D"line" lang=3D"yaml">  <span class=3D"c1" style=3D"color: #998; fon=
t-style: italic;"># NOTE: make dist does not fit, it needs ./configure whic=
h would require dependencies installed</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"25" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
25
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC25" =
class=3D"line" lang=3D"yaml">  <span class=3D"c1" style=3D"color: #998; fon=
t-style: italic;"># NOTE: Must use semicolons and cannot use comments here =
- the lines are joined into single string.</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"26" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
26
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC26" =
class=3D"line" lang=3D"yaml">  <span class=3D"na" style=3D"color: #008080;"=
>create-archive</span><span class=3D"pi">:</span> <span class=3D"pi">&gt;</=
span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"27" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
27
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC27" =
class=3D"line" lang=3D"yaml">    <span class=3D"s" style=3D"color: #d14;">b=
ash -c 'set -xv;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"28" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
28
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC28" =
class=3D"line" lang=3D"yaml">    <span class=3D"s" style=3D"color: #d14;">P=
REFIX=3DLVM2.$PACKIT_PROJECT_VERSION;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"29" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
29
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC29" =
class=3D"line" lang=3D"yaml">    <span class=3D"s" style=3D"color: #d14;">T=
ARBALL=3Dspec/$PREFIX.tgz;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"30" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
30
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC30" =
class=3D"line" lang=3D"yaml">    <span class=3D"s" style=3D"color: #d14;">g=
it archive --prefix=3D$PREFIX/ --output=3D$TARBALL HEAD &gt; /dev/null;</sp=
an></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"31" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
31
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC31" =
class=3D"line" lang=3D"yaml">    <span class=3D"s" style=3D"color: #d14;">e=
cho $TARBALL;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"32" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
32
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC32" =
class=3D"line" lang=3D"yaml">    <span class=3D"s" style=3D"color: #d14;">'=
</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"33" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
33
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC33" =
class=3D"line" lang=3D"yaml"></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"34" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
34
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC34" =
class=3D"line" lang=3D"yaml">  <span class=3D"c1" style=3D"color: #998; fon=
t-style: italic;"># fix-spec-file:</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"35" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
35
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC35" =
class=3D"line" lang=3D"yaml">  <span class=3D"c1" style=3D"color: #998; fon=
t-style: italic;"># - It updates Version and Release in the spec file.</spa=
n></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"36" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
36
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC36" =
class=3D"line" lang=3D"yaml">  <span class=3D"c1" style=3D"color: #998; fon=
t-style: italic;"># - In lvm2 case it needs to update device_mapper_version=
</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"37" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
37
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC37" =
class=3D"line" lang=3D"yaml">  <span class=3D"c1" style=3D"color: #998; fon=
t-style: italic;"># The following is not needed as we use same name as our =
spec files:</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"38" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
38
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC38" =
class=3D"line" lang=3D"yaml">  <span class=3D"c1" style=3D"color: #998; fon=
t-style: italic;"># - It replaces Source configured by spec_source_id (defa=
ult Source0) with a local path to the generated archive.</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"39" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
39
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC39" =
class=3D"line" lang=3D"yaml">  <span class=3D"c1" style=3D"color: #998; fon=
t-style: italic;"># - It changes the first %setup (or %autosetup) macro in =
%prep and adds -n so</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"40" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
40
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC40" =
class=3D"line" lang=3D"yaml">  <span class=3D"c1" style=3D"color: #998; fon=
t-style: italic;">#   the generated tarball can be unpacked (it tries to ex=
tract the directory name</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"41" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
41
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC41" =
class=3D"line" lang=3D"yaml">  <span class=3D"c1" style=3D"color: #998; fon=
t-style: italic;">#   directly from the archive or uses the configured arch=
ive_root_dir_template).</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"42" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
42
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC42" =
class=3D"line" lang=3D"yaml">  <span class=3D"na" style=3D"color: #008080;"=
>fix-spec-file</span><span class=3D"pi">:</span> <span class=3D"pi">&gt;</s=
pan></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"43" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
43
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC43" =
class=3D"line" lang=3D"yaml">    <span class=3D"s" style=3D"color: #d14;">b=
ash -c 'set -xv;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"44" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
44
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC44" =
class=3D"line" lang=3D"yaml">    <span class=3D"s" style=3D"color: #d14;">V=
ERSION_DM=3D$(sed -e "s/^\([0-9.]*\).*/\1/" VERSION_DM);</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"45" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
45
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC45" =
class=3D"line" lang=3D"yaml">    <span class=3D"s" style=3D"color: #d14;">V=
ERSION=3D$(sed -e "s/^\([0-9.]*\).*/\1/" VERSION);</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"46" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
46
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC46" =
class=3D"line" lang=3D"yaml">    <span class=3D"s" style=3D"color: #d14;">e=
cho PACKIT_PROJECT_VERSION=3D"$PACKIT_PROJECT_VERSION" &gt;&amp;2;</span></=
span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"47" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
47
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC47" =
class=3D"line" lang=3D"yaml">    <span class=3D"s" style=3D"color: #d14;">e=
cho PACKIT_RPMSPEC_RELEASE=3D"$PACKIT_RPMSPEC_RELEASE" &gt;&amp;2;</span></=
span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"48" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
48
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC48" =
class=3D"line" lang=3D"yaml">    <span class=3D"s" style=3D"color: #d14;">s=
ed -i spec/source.inc</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"49" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
49
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC49" =
class=3D"line" lang=3D"yaml">    <span class=3D"s" style=3D"color: #d14;">-=
e "s/\(^\s*%global\s*device_mapper_version\s*\).*/\1$VERSION_DM/"</span></s=
pan>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"50" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
50
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC50" =
class=3D"line" lang=3D"yaml">    <span class=3D"s" style=3D"color: #d14;">-=
e "s/\(^\s*Version:\s*\).*/\1$VERSION/"</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"51" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
51
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC51" =
class=3D"line" lang=3D"yaml">    <span class=3D"s" style=3D"color: #d14;">-=
e "s/\(^\s*Release:\s*\).*/\10.$PACKIT_RPMSPEC_RELEASE/"</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"52" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
52
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC52" =
class=3D"line" lang=3D"yaml">    <span class=3D"s" style=3D"color: #d14;">-=
e "s/\(^\s*Source0:\s*\).*/\1LVM2.$VERSION.tgz/"</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"53" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
53
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC53" =
class=3D"line" lang=3D"yaml">    <span class=3D"s" style=3D"color: #d14;">#=
 NOTE: Reamining is not needed when using LVM2.${VERSION} :-)</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"54" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
54
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC54" =
class=3D"line" lang=3D"yaml">    <span class=3D"s" style=3D"color: #d14;">#=
sed -i spec/lvm2.spec </span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"55" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
55
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC55" =
class=3D"line" lang=3D"yaml">    <span class=3D"s" style=3D"color: #d14;">#=
-e "s/^\s*%\(auto\|\)setup\s*.*/%setup -q -n lvm2-$VERSION/";</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"56" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
56
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC56" =
class=3D"line" lang=3D"yaml">    <span class=3D"s" style=3D"color: #d14;">'=
</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"57" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
57
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC57" =
class=3D"line" lang=3D"yaml">  <span class=3D"c1" style=3D"color: #998; fon=
t-style: italic;">#  - "bash -c 'sed -i spec/lvm2.spec -e \"s/Version:.*/Ve=
rsion: $(sed -e \"s/^\\([0-9.]*\\).*/\\1/\" VERSION)/\"'"</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"58" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
58
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC58" =
class=3D"line" lang=3D"yaml">  <span class=3D"c1" style=3D"color: #998; fon=
t-style: italic;"># fix-spec-file:</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"59" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
59
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC59" =
class=3D"line" lang=3D"yaml">  <span class=3D"c1" style=3D"color: #998; fon=
t-style: italic;">#  - bash -c "sed -i spec/lvm2.spec -e \"s/%global device=
_mapper_version .*/%global device_mapper_version $(sed -e 's/^\\([0-9.]*\\)=
.*/\\1/' VERSION_DM)/\""</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"60" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
60
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC60" =
class=3D"line" lang=3D"yaml">  <span class=3D"c1" style=3D"color: #998; fon=
t-style: italic;">#  # NOTE: Even though there is get-current-version hook,=
 the version is not used in Version: in spec</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"61" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
61
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC61" =
class=3D"line" lang=3D"yaml">  <span class=3D"c1" style=3D"color: #998; fon=
t-style: italic;">#  - "bash -c 'sed -i spec/lvm2.spec -e \"s/Version:.*/Ve=
rsion: $(sed -e \"s/^\\([0-9.]*\\).*/\\1/\" VERSION)/\"'"</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"62" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
62
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC62" =
class=3D"line" lang=3D"yaml"></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"63" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
63
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC63" =
class=3D"line" lang=3D"yaml"><span class=3D"c1" style=3D"color: #998; font-=
style: italic;"># TODO:</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"64" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
64
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC64" =
class=3D"line" lang=3D"yaml"><span class=3D"c1" style=3D"color: #998; font-=
style: italic;"># - COPR build of latest version for all fedoras and cXs</s=
pan></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"65" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
65
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC65" =
class=3D"line" lang=3D"yaml"><span class=3D"c1" style=3D"color: #998; font-=
style: italic;"># - fedora PR for a release</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"66" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
66
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC66" =
class=3D"line" lang=3D"yaml"><span class=3D"c1" style=3D"color: #998; font-=
style: italic;"># - release - tag</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"67" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
67
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC67" =
class=3D"line" lang=3D"yaml"><span class=3D"c1" style=3D"color: #998; font-=
style: italic;">#     - build for epel-8, epel-9, fedora-all</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"68" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
68
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC68" =
class=3D"line" lang=3D"yaml"><span class=3D"na" style=3D"color: #008080;">j=
obs</span><span class=3D"pi">:</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"69" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
69
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC69" =
class=3D"line" lang=3D"yaml"><span class=3D"pi">-</span> <span class=3D"na"=
 style=3D"color: #008080;">job</span><span class=3D"pi">:</span> <span clas=
s=3D"s" style=3D"color: #d14;">copr_build</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"70" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
70
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC70" =
class=3D"line" lang=3D"yaml">  <span class=3D"na" style=3D"color: #008080;"=
>trigger</span><span class=3D"pi">:</span> <span class=3D"s" style=3D"color=
: #d14;">pull_request</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"71" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
71
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC71" =
class=3D"line" lang=3D"yaml">  <span class=3D"na" style=3D"color: #008080;"=
>metadata</span><span class=3D"pi">:</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"72" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
72
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC72" =
class=3D"line" lang=3D"yaml">    <span class=3D"na" style=3D"color: #008080=
;">targets</span><span class=3D"pi">:</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"73" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
73
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC73" =
class=3D"line" lang=3D"yaml">    <span class=3D"pi">-</span> <span class=3D=
"s" style=3D"color: #d14;">fedora-rawhide-x86_64</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"74" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
74
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC74" =
class=3D"line" lang=3D"yaml"></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"75" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
75
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC75" =
class=3D"line" lang=3D"yaml"><span class=3D"pi">-</span> <span class=3D"na"=
 style=3D"color: #008080;">job</span><span class=3D"pi">:</span> <span clas=
s=3D"s" style=3D"color: #d14;">copr_build</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"76" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
76
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC76" =
class=3D"line" lang=3D"yaml">  <span class=3D"na" style=3D"color: #008080;"=
>trigger</span><span class=3D"pi">:</span> <span class=3D"s" style=3D"color=
: #d14;">commit</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"77" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
77
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC77" =
class=3D"line" lang=3D"yaml">  <span class=3D"na" style=3D"color: #008080;"=
>metadata</span><span class=3D"pi">:</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"78" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
78
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC78" =
class=3D"line" lang=3D"yaml">    <span class=3D"na" style=3D"color: #008080=
;">branch</span><span class=3D"pi">:</span> <span class=3D"s" style=3D"colo=
r: #d14;">main</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"79" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
79
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC79" =
class=3D"line" lang=3D"yaml">    <span class=3D"na" style=3D"color: #008080=
;">targets</span><span class=3D"pi">:</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"80" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
80
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC80" =
class=3D"line" lang=3D"yaml">    <span class=3D"pi">-</span> <span class=3D=
"s" style=3D"color: #d14;">fedora-rawhide-x86_64</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"81" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
81
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC81" =
class=3D"line" lang=3D"yaml"></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"82" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
82
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC82" =
class=3D"line" lang=3D"yaml"><span class=3D"pi">-</span> <span class=3D"na"=
 style=3D"color: #008080;">job</span><span class=3D"pi">:</span> <span clas=
s=3D"s" style=3D"color: #d14;">copr_build</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"83" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
83
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC83" =
class=3D"line" lang=3D"yaml">  <span class=3D"na" style=3D"color: #008080;"=
>trigger</span><span class=3D"pi">:</span> <span class=3D"s" style=3D"color=
: #d14;">commit</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"84" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
84
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC84" =
class=3D"line" lang=3D"yaml">  <span class=3D"na" style=3D"color: #008080;"=
>metadata</span><span class=3D"pi">:</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"85" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
85
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC85" =
class=3D"line" lang=3D"yaml">    <span class=3D"na" style=3D"color: #008080=
;">branch</span><span class=3D"pi">:</span> <span class=3D"s" style=3D"colo=
r: #d14;">latest</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"86" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
86
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC86" =
class=3D"line" lang=3D"yaml">    <span class=3D"na" style=3D"color: #008080=
;">targets</span><span class=3D"pi">:</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"87" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
87
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC87" =
class=3D"line" lang=3D"yaml">    <span class=3D"pi">-</span> <span class=3D=
"s" style=3D"color: #d14;">fedora-rawhide-x86_64</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"88" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
88
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC88" =
class=3D"line" lang=3D"yaml"></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"89" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
89
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC89" =
class=3D"line" lang=3D"yaml"><span class=3D"pi">-</span> <span class=3D"na"=
 style=3D"color: #008080;">job</span><span class=3D"pi">:</span> <span clas=
s=3D"s" style=3D"color: #d14;">copr_build</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"90" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
90
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC90" =
class=3D"line" lang=3D"yaml">  <span class=3D"na" style=3D"color: #008080;"=
>trigger</span><span class=3D"pi">:</span> <span class=3D"s" style=3D"color=
: #d14;">commit</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"91" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
91
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC91" =
class=3D"line" lang=3D"yaml">  <span class=3D"na" style=3D"color: #008080;"=
>metadata</span><span class=3D"pi">:</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"92" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
92
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC92" =
class=3D"line" lang=3D"yaml">    <span class=3D"na" style=3D"color: #008080=
;">branch</span><span class=3D"pi">:</span> <span class=3D"s" style=3D"colo=
r: #d14;">latest</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"93" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
93
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC93" =
class=3D"line" lang=3D"yaml">    <span class=3D"na" style=3D"color: #008080=
;">targets</span><span class=3D"pi">:</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"94" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
94
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC94" =
class=3D"line" lang=3D"yaml">    <span class=3D"pi">-</span> <span class=3D=
"s" style=3D"color: #d14;">fedora-rawhide-x86_64</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"95" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
95
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC95" =
class=3D"line" lang=3D"yaml">    <span class=3D"pi">-</span> <span class=3D=
"s" style=3D"color: #d14;">fedora-all</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"96" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
96
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC96" =
class=3D"line" lang=3D"yaml">  <span class=3D"na" style=3D"color: #008080;"=
>specfile_path</span><span class=3D"pi">:</span> <span class=3D"s" style=3D=
"color: #d14;">spec/fedora/lvm2.spec</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"97" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
97
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC97" =
class=3D"line" lang=3D"yaml">  <span class=3D"na" style=3D"color: #008080;"=
>actions</span><span class=3D"pi">:</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"98" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
98
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC98" =
class=3D"line" lang=3D"yaml">    <span class=3D"na" style=3D"color: #008080=
;">create-archive</span><span class=3D"pi">:</span> <span class=3D"pi">&gt;=
</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"99" style=3D"wi=
dth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-righ=
t-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"ri=
ght" bgcolor=3D"#ddfbe6">
99
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC99" =
class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;"=
>bash -c 'set -xv;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"100" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
100
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC100"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">PREFIX=3DLVM2.$PACKIT_PROJECT_VERSION;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"101" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
101
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC101"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">TARBALL=3Dspec/fedora/$PREFIX.tgz;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"102" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
102
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC102"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">git archive --prefix=3D$PREFIX/ --output=3D$TARBALL HEAD &gt; /dev/null;<=
/span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"103" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
103
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC103"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">echo $TARBALL;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"104" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
104
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC104"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">'</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"105" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
105
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC105"=
 class=3D"line" lang=3D"yaml">    <span class=3D"c1" style=3D"color: #998; =
font-style: italic;"># TODO: Release should be taken from tag</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"106" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
106
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC106"=
 class=3D"line" lang=3D"yaml">    <span class=3D"na" style=3D"color: #00808=
0;">fix-spec-file</span><span class=3D"pi">:</span> <span class=3D"pi">&gt;=
</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"107" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
107
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC107"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">bash -c 'set -xv;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"108" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
108
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC108"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">VERSION_DM=3D$(sed -e "s/^\([0-9.]*\).*/\1/" VERSION_DM);</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"109" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
109
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC109"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">VERSION=3D$(sed -e "s/^\([0-9.]*\).*/\1/" VERSION);</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"110" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
110
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC110"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">RELEASE=3D$(sed -e "s/^.*-\([0-9]*\) ([-0-9]*])//" VERSION);</span></span=
>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"111" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
111
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC111"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">echo PACKIT_PROJECT_VERSION=3D"$PACKIT_PROJECT_VERSION" &gt;&amp;2;</span=
></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"112" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
112
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC112"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">echo PACKIT_RPMSPEC_RELEASE=3D"$PACKIT_RPMSPEC_RELEASE" &gt;&amp;2;</span=
></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"113" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
113
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC113"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">sed -i spec/fedora/lvm2.spec</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"114" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
114
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC114"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">-e "s/\(^\s*%global\s*device_mapper_version\s*\).*/\1$VERSION_DM/"</span>=
</span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"115" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
115
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC115"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">-e "s/\(^\s*Version:\s*\).*/\1$VERSION/"</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"116" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
116
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC116"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">-e "s/\(^\s*Release:\s*\).*/\10.$PACKIT_RPMSPEC_RELEASE/"</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"117" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
117
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC117"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">-e "s/\(^\s*Source0:\s*\).*/\1LVM2.$VERSION.tgz/"</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"118" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
118
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC118"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">'</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"119" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
119
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC119"=
 class=3D"line" lang=3D"yaml"></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"120" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
120
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC120"=
 class=3D"line" lang=3D"yaml"><span class=3D"pi">-</span> <span class=3D"na=
" style=3D"color: #008080;">job</span><span class=3D"pi">:</span> <span cla=
ss=3D"s" style=3D"color: #d14;">copr_build</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"121" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
121
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC121"=
 class=3D"line" lang=3D"yaml">  <span class=3D"na" style=3D"color: #008080;=
">trigger</span><span class=3D"pi">:</span> <span class=3D"s" style=3D"colo=
r: #d14;">release</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"122" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
122
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC122"=
 class=3D"line" lang=3D"yaml">  <span class=3D"na" style=3D"color: #008080;=
">specfile_path</span><span class=3D"pi">:</span> <span class=3D"s" style=
=3D"color: #d14;">spec/fedora/lvm2.spec</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"123" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
123
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC123"=
 class=3D"line" lang=3D"yaml">  <span class=3D"na" style=3D"color: #008080;=
">actions</span><span class=3D"pi">:</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"124" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
124
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC124"=
 class=3D"line" lang=3D"yaml">    <span class=3D"na" style=3D"color: #00808=
0;">create-archive</span><span class=3D"pi">:</span> <span class=3D"pi">&gt=
;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"125" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
125
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC125"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">bash -c 'set -xv;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"126" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
126
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC126"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">PREFIX=3DLVM2.$PACKIT_PROJECT_VERSION;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"127" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
127
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC127"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">TARBALL=3Dspec/fedora/$PREFIX.tgz;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"128" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
128
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC128"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">git archive --prefix=3D$PREFIX/ --output=3D$TARBALL HEAD &gt; /dev/null;<=
/span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"129" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
129
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC129"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">echo $TARBALL;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"130" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
130
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC130"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">'</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"131" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
131
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC131"=
 class=3D"line" lang=3D"yaml">    <span class=3D"c1" style=3D"color: #998; =
font-style: italic;"># TODO: Release should be taken from tag</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"132" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
132
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC132"=
 class=3D"line" lang=3D"yaml">    <span class=3D"na" style=3D"color: #00808=
0;">fix-spec-file</span><span class=3D"pi">:</span> <span class=3D"pi">&gt;=
</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"133" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
133
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC133"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">bash -c 'set -xv;</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"134" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
134
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC134"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">VERSION_DM=3D$(sed -e "s/^\([0-9.]*\).*/\1/" VERSION_DM);</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"135" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
135
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC135"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">VERSION=3D$(sed -e "s/^\([0-9.]*\).*/\1/" VERSION);</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"136" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
136
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC136"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">RELEASE=3D$(sed -e "s/^.*-\([0-9]*\) ([-0-9]*])//" VERSION);</span></span=
>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"137" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
137
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC137"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">echo PACKIT_PROJECT_VERSION=3D"$PACKIT_PROJECT_VERSION" &gt;&amp;2;</span=
></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"138" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
138
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC138"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">echo PACKIT_RPMSPEC_RELEASE=3D"$PACKIT_RPMSPEC_RELEASE" &gt;&amp;2;</span=
></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"139" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
139
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC139"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">sed -i spec/fedora/lvm2.spec</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"140" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
140
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC140"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">-e "s/\(^\s*%global\s*device_mapper_version\s*\).*/\1$VERSION_DM/"</span>=
</span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"141" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
141
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC141"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">-e "s/\(^\s*Version:\s*\).*/\1$VERSION/"</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"142" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
142
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC142"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">-e "s/\(^\s*Release:\s*\).*/\10.$PACKIT_RPMSPEC_RELEASE/"</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"143" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
143
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC143"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">-e "s/\(^\s*Source0:\s*\).*/\1LVM2.$VERSION.tgz/"</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"144" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
144
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC144"=
 class=3D"line" lang=3D"yaml">      <span class=3D"s" style=3D"color: #d14;=
">'</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"145" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
145
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC145"=
 class=3D"line" lang=3D"yaml"></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"146" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
146
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC146"=
 class=3D"line" lang=3D"yaml">  <span class=3D"na" style=3D"color: #008080;=
">metadata</span><span class=3D"pi">:</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"147" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
147
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC147"=
 class=3D"line" lang=3D"yaml">    <span class=3D"na" style=3D"color: #00808=
0;">targets</span><span class=3D"pi">:</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"148" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
148
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC148"=
 class=3D"line" lang=3D"yaml">      <span class=3D"pi">-</span> <span class=
=3D"s" style=3D"color: #d14;">fedora-all</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"149" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
149
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC149"=
 class=3D"line" lang=3D"yaml">      <span class=3D"pi">-</span> <span class=
=3D"s" style=3D"color: #d14;">epel-7</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"150" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
150
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC150"=
 class=3D"line" lang=3D"yaml">      <span class=3D"pi">-</span> <span class=
=3D"s" style=3D"color: #d14;">epel-8</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"151" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
151
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC151"=
 class=3D"line" lang=3D"yaml">      <span class=3D"pi">-</span> <span class=
=3D"s" style=3D"color: #d14;">epel-9</span></span>
</pre></td>
</tr>
<tr class=3D"line_holder new" style=3D"line-height: 1.6;">
<td class=3D"old_line diff-line-num new" data-linenumber=3D"0" style=3D"wid=
th: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-right=
-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"rig=
ht" bgcolor=3D"#ddfbe6">
=20
</td>
<td class=3D"new_line diff-line-num new" data-linenumber=3D"152" style=3D"w=
idth: 35px; color: rgba(31,30,36,0.24); border-right-width: 1px; border-rig=
ht-color: #c7f0d2; border-right-style: solid; padding: inherit;" align=3D"r=
ight" bgcolor=3D"#ddfbe6">
152
</td>
<td class=3D"line_content new" style=3D"padding: inherit;" bgcolor=3D"#ecfd=
f0"><pre style=3D'display: block; font-size: 14px; color: #333238; position=
: relative; font-family: var(--default-mono-font, "GitLab Mono"),"JetBrains=
 Mono","Menlo","DejaVu Sans Mono","Liberation Mono","Consolas","Ubuntu Mono=
","Courier New","andale mono","lucida console",monospace; word-break: break=
-all; word-wrap: break-word; background-color: inherit; border-radius: 2px;=
 margin: 0; padding: 0; border: inherit solid #dcdcde;'>+<span id=3D"LC152"=
 class=3D"line" lang=3D"yaml"></span></pre></td>
</tr>

</table>
<br>
</li>

</div>
<div class=3D"footer" style=3D"margin-top: 10px;">
<p style=3D"font-size: small; color: #737278;">
&#8212;
<br>
<a href=3D"https://gitlab.com/csonto/lvm2/-/commit/1e5ca3758eed36f4d79e79b0=
2d8dd070073b3ccf">View it on GitLab</a>.
<br>
You're receiving this email because of your account on <a target=3D"_blank"=
 rel=3D"noopener noreferrer" href=3D"https://gitlab.com">gitlab.com</a>. <a=
 href=3D"https://gitlab.com/-/profile/notifications" target=3D"_blank" rel=
=3D"noopener noreferrer" class=3D"mng-notif-link">Manage all notifications<=
/a> &#183; <a href=3D"https://gitlab.com/help" target=3D"_blank" rel=3D"noo=
pener noreferrer" class=3D"help-link">Help</a>
<script type=3D"application/ld+json">{"@context":"http://schema.org","@type=
":"EmailMessage","action":{"@type":"ViewAction","name":"View Commit","url":=
"https://gitlab.com/csonto/lvm2/-/commit/1e5ca3758eed36f4d79e79b02d8dd07007=
3b3ccf"}}</script>


</p>
</div>
</body>
</html>

----==_mimepart_652fa7585a23b_2c98caf38101318--

--===============3445979341586305041==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

--
lvm-devel mailing list
[email protected]
https://listman.redhat.com/mailman/listinfo/lvm-devel

--===============3445979341586305041==--