https://bugzilla.redhat.com/show_bug.cgi?id=2526823



--- Comment #1 from Marcus Burghardt <[email protected]> ---
Proactive Self-Review (Package Author)
=======================================

NOTE: I am the author and submitter of this package. This self-review is
provided proactively to help the assigned reviewer by documenting the rationale
for each manual check item.
It does NOT replace a neutral review from another packager — the fedora-review+
flag must be set by the assigned reviewer after their own independent
assessment.

A step-by-step reviewer guide with quick verification commands is available at:
https://marcusburghardt.fedorapeople.org/complytime-providers-reviewer-guide.txt

This package follows the same patterns as complyctl (BZ #2375155), which was
already reviewed and approved.
The spec uses identical Fedora Go packaging macros (go-vendor-tools, %gobuild,
%gocheck2).


Package Review
==============

Legend:
[x] = Pass, [!] = Fail, [-] = Not applicable, [?] = Not evaluated


===== MUST items =====

Generic:
[x]: Package is licensed with an open-source compatible license and meets
     other legal requirements as defined in the legal section of Packaging
     Guidelines.
     Comment: Apache-2.0 project license. Vendored dependency licenses
     (BSD-3-Clause, ISC, MIT, MPL-2.0) are all OSI-approved.
[x]: License field in the package spec file matches the actual license.
     Comment: Verified with go_vendor_license --config go-vendor-tools.toml
     report expression. Output: Apache-2.0 AND BSD-3-Clause AND ISC AND
     MIT AND MPL-2.0. The "Unknown or generated" note from licensecheck
     is a false positive — go-vendor-tools handles vendored license
     detection for Go packages.
[x]: License file installed when any subpackage combination is installed.
     Comment: All sub-packages Requires: complytime-providers =
     %{version}-%{release}, which contains %go_vendor_license_filelist.
     Any sub-package installation pulls in the main package with all
     license files.
[-]: If the package is under multiple licenses, the licensing breakdown
     must be documented in the spec.
     Comment: The License field contains the full SPDX expression. The
     per-file breakdown is managed by go-vendor-tools and verified at
     build time via %go_vendor_license_check.
[x]: Package requires other packages for directories it uses.
     Comment: /usr/libexec/complytime/providers is owned by the complyctl
     package (complyctl.spec %files section declares %dir for both
     /usr/libexec/complytime/ and /usr/libexec/complytime/providers/).
     Each sub-package has Requires: complyctl >= 1.0.0 which guarantees
     the directory exists at install time. The fedora-review tool flags
     this because complyctl is not installed in the mock buildroot, but
     the dependency chain is correct.
[x]: Package must own all directories that it creates.
     Comment: See above. The providers package does NOT create or own
     /usr/libexec/complytime/providers — it installs files INTO that
     directory, which is owned by the complyctl package.
[x]: %build honors applicable compiler flags or justifies otherwise.
     Comment: Uses %gobuild macro which applies PIE, RELRO, FORTIFY,
     -linkmode=external, and generates proper DWARF debuginfo.
[x]: Package contains no bundled libraries or specifies bundled libraries
     with Provides: bundled(<libname>) if unbundling is not possible.
     Comment: Go vendored dependencies are handled per Fedora Go Packaging
     Guidelines. Bundled provides are auto-generated by go-vendor-tools
     (visible in the Provides section of the review output).
[x]: Changelog in prescribed format.
[x]: Sources contain only permissible code or content.
     Comment: Apache-2.0 source code with vendored dependencies under
     OSI-approved licenses.
[-]: Package contains desktop file if it is a GUI application.
     Comment: Not a GUI application. These are gRPC plugin binaries
     invoked by complyctl.
[-]: Development files must be in a -devel package
     Comment: No development files produced.
[x]: Package uses nothing in %doc for runtime.
     Comment: %doc README.md is documentation only.
[x]: Package consistently uses macros (instead of hard-coded directory
     names).
     Comment: Uses %{_libexecdir}, %{_mandir}, %{goipath}, %{gobuilddir},
     %{app_dir} throughout.
[x]: Package is named according to the Package Naming Guidelines.
     Comment: complytime-providers with -openscap, -ampel, -opa
     sub-packages.
[x]: Package does not generate any conflict.
[x]: Package obeys FHS, except libexecdir and /usr/target.
     Comment: Provider binaries installed to %{_libexecdir}/complytime/
     providers/ — appropriate for helper programs not invoked directly
     by users.
[-]: If the package is a rename of another package, proper Obsoletes and
     Provides are present.
     Comment: Not a rename.
[x]: Requires correct, justified where necessary.
     Comment: complyctl >= 1.0.0 (plugin host, owns provider directory),
     openscap-scanner + scap-security-guide (OpenSCAP provider runtime),
     git (OPA provider for cloning repositories). Ampel and OPA
     providers also need external tools (snappy, ampel, conftest) not
     packaged in Fedora — documented in %description NOTE sections.
[x]: Spec file is legible and written in American English.
[-]: Package contains systemd file(s) if in need.
     Comment: Not a daemon or service.
[x]: Useful -debuginfo package or justification otherwise.
     Comment: %gobuild generates proper DWARF debuginfo. Debuginfo
     rpmlint is fully clean (0 errors, 0 warnings).
[x]: Package is not known to require an ExcludeArch tag.
     Comment: Uses ExclusiveArch: %{go_arches} per Go packaging
     guidelines.
[x]: Package complies to the Packaging Guidelines
     Comment: Follows Fedora Go Packaging Guidelines using go-vendor-tools,
     %gobuild, %gocheck2, %autorelease, and forge macros.
[x]: Package successfully compiles and builds into binary rpms on at least
     one supported primary architecture.
[x]: Package installs properly.
[x]: Rpmlint is run on all rpms the build produces.
     Note: There are rpmlint messages (see below).
[x]: If (and only if) the source package includes the text of the
     license(s) in its own file, then that file, containing the text of the
     license(s) for the package is included in %license.
[x]: The License field must be a valid SPDX expression.
[x]: Package does not own files or directories owned by other packages.
[x]: Package uses either %{buildroot} or $RPM_BUILD_ROOT
[x]: Package does not run rm -rf %{buildroot} (or $RPM_BUILD_ROOT) at the
     beginning of %install.
[x]: Macros in Summary, %description expandable at SRPM build time.
[x]: Dist tag is present.
[x]: Package does not contain duplicates in %files.
[x]: Permissions on files are set properly.
[x]: Package must not depend on deprecated() packages.
[x]: Package use %makeinstall only when make install DESTDIR=... doesn't
     work.
[x]: Package is named using only allowed ASCII characters.
[x]: Package does not use a name that already exists.
[x]: Package is not relocatable.
[x]: Sources used to build the package match the upstream source, as
     provided in the spec URL.
[x]: Spec file name must match the spec package %{name}, in the format
     %{name}.spec.
[x]: File names are valid UTF-8.
[x]: Large documentation must go in a -doc subpackage. Large could be size
     (~1MB) or number of files.
     Note: Documentation size is 2620 bytes in 1 files.
[x]: Packages must not store files under /srv, /opt or /usr/local

===== SHOULD items =====

Generic:
[x]: If the source package does not include license text(s) as a separate
     file from upstream, the packager SHOULD query upstream to include it.
     Comment: Apache-2.0 LICENSE file is in the upstream repo root.
[x]: Final provides and requires are sane (see attachments).
     Comment: Bundled provides auto-generated by go-vendor-tools. Runtime
     requires are correct and minimal.
[x]: Fully versioned dependency in subpackages if applicable.
     Comment: Sub-packages use Requires: %{name} = %{version}-%{release}
     without %{?_isa}. This is correct — the main package contains only
     license files (arch-independent content). Adding %{?_isa} would
     unnecessarily prevent multilib scenarios. Same pattern used by other
     Fedora Go packages with license-only main packages.
[x]: Package functions as described.
     Comment: Provider binaries install to /usr/libexec/complytime/
     providers/ and are discoverable by complyctl via the
     complyctl-provider-* naming convention.
[x]: Latest version is packaged.
     Comment: v0.2.1 is the latest upstream release.
[x]: Package does not include license text files separate from upstream.
[-]: Sources are verified with gpgverify first in %prep if upstream
     publishes signatures.
     Comment: Upstream uses cosign (Sigstore keyless signing), not GPG
     signatures. Source checksum verification is performed by
     fedora-review (see checksums section — they match).
[x]: %check is present and all tests pass.
     Comment: %gocheck2 runs the full test suite. All 28 test packages
     pass (visible in mock build log).
[x]: Packages should try to preserve timestamps of original installed
     files.
     Comment: install -p used throughout %install section.
[x]: Reviewer should test that the package builds in mock.
[x]: Buildroot is not present
[x]: Package has no %clean section with rm -rf %{buildroot} (or
     $RPM_BUILD_ROOT)
[x]: No file requires outside of /etc, /bin, /sbin, /usr/bin, /usr/sbin.
[x]: Packager, Vendor, PreReq, Copyright tags should not be in spec file
[x]: Sources can be downloaded from URI in Source: tag
[x]: SourceX is a working URL.
[x]: Package should compile and build into binary rpms on all supported
     architectures.
[x]: Spec use %global instead of %define unless justified.

===== EXTRA items =====

Generic:
[x]: Rpmlint is run on debuginfo package(s).
     Note: No rpmlint messages.
[x]: Rpmlint is run on all installed packages.
     Note: There are rpmlint messages (see below).
[x]: Large data in /usr/share should live in a noarch subpackage if package
     is arched.
[x]: Spec file according to URL is the same as in SRPM.


Rpmlint Analysis
----------------

All rpmlint messages are false positives or expected:

- spelling-error (complyctl, gRPC, conftest): These are actual tool and
  protocol names, not typos.
- no-binary on complytime-providers main package: This package holds only
  shared license files — provider binaries are in sub-packages. This is
  the intended design for multi-subpackage Go specs where the main
  package serves as a license holder.
- no-documentation on sub-packages: Documentation (README.md) is in the
  main package. Sub-packages contain only the provider binary.
- invalid-url Source1: The vendor archive is a local file generated by
  go_vendor_archive, not a downloadable URL. Standard for Fedora Go
  packages using go-vendor-tools.
- specfile-warning autopatch: No patches are defined — harmless warning.
- files-duplicate (oklog/run/LICENSE): This vendored license file is
  identical to the project LICENSE (both Apache-2.0). Managed by
  go-vendor-tools.
- unused-direct-shlib-dependency libresolv.so.2: Go's net package links
  libresolv via cgo for DNS resolution. Same warning appeared in the
  complyctl review (BZ #2375155) and was accepted.


Cross-Package Coordination Note
--------------------------------

This package requires complyctl >= 1.0.0 at runtime. The complyctl
package is already in Fedora (BZ #2375155) at v0.0.8. An update to
complyctl v1.0.0 will be submitted as a multi-build Bodhi update
alongside this package, so both arrive in stable repos together and
users never see complyctl v1.0.0 without providers available.


-- 
You are receiving this mail because:
You are always notified about changes to this product and component
You are on the CC list for the bug.
https://bugzilla.redhat.com/show_bug.cgi?id=2526823

Report this comment as SPAM: 
https://bugzilla.redhat.com/enter_bug.cgi?product=Bugzilla&format=report-spam&short_desc=Report%20of%20Bug%202526823%23c1

-- 
_______________________________________________
package-review mailing list -- [email protected]
To unsubscribe send an email to [email protected]
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/[email protected]
Do not reply to spam, report it: 
https://forge.fedoraproject.org/infra/tickets/issues/new

Reply via email to