Compare commits
79 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7bac3f8b5e | ||
|
|
b112393806 | ||
|
|
c549acc324 | ||
|
|
14cfc4fcf5 | ||
|
|
396959a3ef |
||
|
|
3ccce9fe2c |
||
| dba14b4349 | |||
|
|
8b52f03285 | ||
|
|
f09fdcd8eb | ||
|
|
201d0b3908 | ||
|
|
0936a9fcd0 | ||
|
|
c949917070 |
||
|
|
72b7782599 | ||
|
|
c968de9bf5 | ||
|
|
da6e188921 | ||
|
|
72fea80cc7 | ||
|
|
aeab9876fb | ||
|
|
14f8fd597a | ||
|
|
9f25eef1c8 | ||
|
|
9d428601e9 |
||
|
|
09c7f06575 |
||
|
|
5235d93136 | ||
|
|
8c802480f9 | ||
|
|
931d3944d9 | ||
|
|
8a3dc87da9 | ||
|
|
a295b467f5 | ||
|
|
a13fc83299 | ||
|
|
4b614e8a3d | ||
|
|
d185bf7111 | ||
|
|
7411ec9287 | ||
|
|
6a5b176f6c | ||
|
|
2a8319503b | ||
|
|
9041937edf |
||
|
|
dd57fc84af | ||
|
|
dc2702945e | ||
|
|
30fd6a24c3 | ||
|
|
7af239fc87 | ||
|
|
bffea01116 |
||
|
|
03bd1df840 |
||
|
|
6296657697 | ||
|
|
68751ea10a | ||
|
|
5ac6552b77 | ||
|
|
a14d6588b3 | ||
|
|
4e94fa6ca4 | ||
|
|
c4b231c156 | ||
|
|
8d182d2a72 | ||
|
|
bbbbdecd40 | ||
|
|
6b3027138f | ||
|
|
c3699d870c | ||
| b20c1a4257 | |||
|
|
df664a9084 | ||
|
|
6d7106f64f | ||
|
|
d327075d15 | ||
|
|
cdc0d0ebec | ||
|
|
a637ff4bd8 | ||
|
|
03db1836f4 | ||
|
|
d1610f2785 | ||
|
|
9c0b6ff73c | ||
|
|
b614d9bb86 | ||
|
|
14ad4c5490 | ||
|
|
d9634e2f56 | ||
|
|
5873841bec | ||
|
|
de340079e8 | ||
|
|
7332568141 | ||
|
|
5b204a35e8 | ||
|
|
1821283d27 | ||
|
|
1ba00f299b | ||
|
|
a09afd03e2 | ||
|
|
34ba035802 | ||
|
|
28bc9afe30 | ||
|
|
6f840d29b8 | ||
|
|
20eb55a99e | ||
|
|
459a9ea0e0 | ||
|
|
b97215216d | ||
|
|
5da7358135 | ||
|
|
c67462bad1 | ||
|
|
eeb1bb62c6 | ||
|
|
03c2a3f05b | ||
|
|
57fc8be7c9 |
7 changed files with 627 additions and 518 deletions
23
.gitignore
vendored
23
.gitignore
vendored
|
|
@ -54,3 +54,26 @@
|
|||
/ignition-1d56dc8.tar.gz
|
||||
/ignition-2.9.0.tar.gz
|
||||
/ignition-2.10.1.tar.gz
|
||||
/ignition-2.11.0.tar.gz
|
||||
/ignition-2.12.0.tar.gz
|
||||
/ignition-2.13.0.tar.gz
|
||||
/ignition-2.14.0.tar.gz
|
||||
/ignition-2.15.0.tar.gz
|
||||
/ignition-edge-a3a8f0a.tar.gz
|
||||
/ignition-2.16.1.tar.gz
|
||||
/ignition-2.16.2.tar.gz
|
||||
/ignition-2.17.0.tar.gz
|
||||
/ignition-2.18.0.tar.gz
|
||||
/ignition-2.19.0.tar.gz
|
||||
/ignition-2.20.0.tar.gz
|
||||
/ignition-edge-a258749.tar.gz
|
||||
/ignition-2.21.0.tar.gz
|
||||
/ignition-2.22.0.tar.gz
|
||||
/ignition-2.23.0.tar.gz
|
||||
/ignition-2.24.0.tar.gz
|
||||
/ignition-2.25.0.tar.gz
|
||||
/ignition-2.25.1.tar.gz
|
||||
/ignition-2.26.0.tar.gz
|
||||
/ignition-2.27.0.tar.gz
|
||||
/ignition-edge-6be7c94.tar.gz
|
||||
/ignition-edge-b6c8245.tar.gz
|
||||
|
|
|
|||
1
91-ignition-authorized-keys-file.conf
Normal file
1
91-ignition-authorized-keys-file.conf
Normal file
|
|
@ -0,0 +1 @@
|
|||
AuthorizedKeysFile=.ssh/authorized_keys .ssh/authorized_keys.d/*
|
||||
|
|
@ -51,7 +51,7 @@ def go_mod_tag_to_rpm_provides_version(tag):
|
|||
tag = tag[1:]
|
||||
|
||||
# is this a pseudo-version? e.g. v0.0.0-20181031085051-9002847aa142
|
||||
m = re.match("(.*)-([0-9]{14})-([a-f0-9]{12})", tag)
|
||||
m = re.match("(.*)-([0-9.]+)-([a-f0-9]{12})", tag)
|
||||
if m:
|
||||
# rpm doesn't like multiple dashes in the version, so just merge the
|
||||
# timestamp and the commit checksum into the "release" field
|
||||
|
|
|
|||
|
|
@ -1,2 +1,20 @@
|
|||
# Suppress hardcoded library path warning
|
||||
addFilter("hardcoded-library-path in %{_prefix}/lib/dracut")
|
||||
# Ignition sources have duplicate files because of how spec versioning is
|
||||
# implemented
|
||||
addFilter("ignition-debugsource.x86_64: E: files-duplicated-waste")
|
||||
|
||||
# -validate-redistributable is supposed to have binaries in it, and
|
||||
# doesn't really need docs since it isn't user-facing
|
||||
addFilter("ignition-validate-redistributable.noarch: E: arch-independent-package-contains-binary-or-object")
|
||||
addFilter("ignition-validate-redistributable.noarch: W: no-documentation")
|
||||
|
||||
# This is documented as optional
|
||||
# https://fedoraproject.org/wiki/Upgrade_paths_%E2%80%94_renaming_or_splitting_packages#Do_I_need_to_Provide_my_old_package_names.3F
|
||||
addFilter("ignition-validate-redistributable.noarch: W: obsolete-not-provided ignition-validate-nonlinux")
|
||||
|
||||
# "transpiler" is the correct term for what butane does
|
||||
addFilter("butane.*: E: spelling-error.*transpiler")
|
||||
|
||||
# -redistributable packages have binaries but are noarch by design,
|
||||
# and don't need docs since they aren't user-facing
|
||||
addFilter("butane-redistributable.noarch: E: arch-independent-package-contains-binary-or-object")
|
||||
addFilter("butane-redistributable.noarch: W: no-documentation")
|
||||
|
|
|
|||
1085
ignition.spec
1085
ignition.spec
File diff suppressed because it is too large
Load diff
5
rpminspect.yaml
Normal file
5
rpminspect.yaml
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
debuginfo:
|
||||
ignore:
|
||||
- /usr/share/ignition/ignition-validate-*-unknown-linux-gnu-static
|
||||
|
||||
3
sources
3
sources
|
|
@ -1 +1,2 @@
|
|||
SHA512 (ignition-2.10.1.tar.gz) = 039ea5ab19c0e2efa6ec2c21534e4a5b93f0fb20576d51563283ede1caa3faa29dbb461632bb01f7549d47677991d17516d94f2cefc5982d23545ace5f196f4f
|
||||
SHA512 (ignition-2.27.0.tar.gz) = 7f1ad2da57a196ba0d01b7f2f886f1484edb1f48b8f295f1ad9a4ef9ba2801f0d9d3e9701ec266b4a2446bbf182c50c6733b5ca069ac0c749d77ed342d6a6a9e
|
||||
SHA512 (ignition-edge-b6c8245.tar.gz) = fb823a7c87c7014fcb38566fcd41b11bd38ff27e1ca2bfe6b76111bbabab0d917bc7ba56af450eab434d1907a056b0b1a0fcd6d29e456a4ba2985ddf74efb155
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue