Bug 2246560 - Review Request: intel-lpmd - Intel Low Power Mode Daemon
Summary: Review Request: intel-lpmd - Intel Low Power Mode Daemon
Keywords:
Status: CLOSED COMPLETED
Alias: None
Product: Fedora
Classification: Fedora
Component: Package Review
Version: rawhide
Hardware: Unspecified
OS: Linux
unspecified
medium
Target Milestone: ---
Assignee: Kate Hsuan
QA Contact: Fedora Extras Quality Assurance
URL: https://github.com/intel/intel-lpmd
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2023-10-27 13:13 UTC by Ali Erdinc Koroglu
Modified: 2023-12-15 11:50 UTC (History)
4 users (show)

Fixed In Version:
Clone Of:
Environment:
Last Closed: 2023-12-15 11:50:37 UTC
Type: ---
Embargoed:
hpa: fedora-review+


Attachments (Terms of Use)
The .spec file difference from Copr build 6702644 to 6744711 (1.97 KB, patch)
2023-12-12 14:01 UTC, Fedora Review Service
no flags Details | Diff
The .spec file difference from Copr build 6744711 to 6749586 (549 bytes, patch)
2023-12-13 14:11 UTC, Fedora Review Service
no flags Details | Diff

Description Ali Erdinc Koroglu 2023-10-27 13:13:59 UTC
SPEC Url: https://download.copr.fedorainfracloud.org/results/aekoroglu/fedora/fedora-rawhide-x86_64/06571647-intel-lpmd/intel-lpmd.spec
SRPM Url: https://download.copr.fedorainfracloud.org/results/aekoroglu/fedora/fedora-rawhide-x86_64/06571647-intel-lpmd/intel-lpmd-0.0.2-1.fc40.src.rpm

Description:
Intel-lpmd is a Linux daemon used to optimize active idle power. This daemon
uses a configuration file "intel_lpmd_config.xml". Based on the configuration,
it will choose right set of CPUs to enable.

Reproducible: Always

Comment 1 Fedora Review Service 2023-10-27 23:20:50 UTC
Copr build:
https://copr.fedorainfracloud.org/coprs/build/6575032
(failed)

Build log:
https://download.copr.fedorainfracloud.org/results/@fedora-review/fedora-review-2246560-intel-lpmd/srpm-builds/06575032/builder-live.log.gz

Please make sure the package builds successfully at least for Fedora Rawhide.

- If the build failed for unrelated reasons (e.g. temporary network
  unavailability), please ignore it.
- If the build failed because of missing BuildRequires, please make sure they
  are listed in the "Depends On" field


---
This comment was created by the fedora-review-service
https://github.com/FrostyX/fedora-review-service

If you want to trigger a new Copr build, add a comment containing new
Spec and SRPM URLs or [fedora-review-service-build] string.

Comment 2 Kate Hsuan 2023-11-28 09:42:44 UTC
Thank you for working on it. I’ve started to work on reviewing it. I’ve tried to build the package and list various things that need to be changed. Please prepare a new version that addresses the things listed below.

1. Please use white spaces as the blank spaces and make sure the format of the label and value are aligned. For example:

License:        GPL-2.0-or-later
URL:            https://github.com/intel/intel-lpmd
Source0:        %{url}/archive/v%{version}/%{name}-%{version}.tar.gz

# https://github.com/intel/intel-lpmd/pull/13
Patch0:         13.patch

ExclusiveArch:  x86_64

BuildRequires:  autoconf
BuildRequires:  automake

2. The newline after “Summary:” can be removed.

3. The %build does not rely on ./configure innovation done by autogen.sh. Generating configure should be done in %prep section. Look at the autogen.sh. It consists of “aclocal --install”, “gtkdocize --copy --flavour no-tmpl”, and “autoreconf --install --verbose”. So put these three lines in the %prep section after %autosetup, the ./configure will not be run in the %perp section.

%prep
%autosetup -p1
aclocal --install
gtkdocize --copy --flavour no-tmpl
autoreconf --install --verbose

%build
%configure
%make_build

4. I also noticed that the package requires dbus-glib.  
“BuildRequires:  dbus-glib-devel”
As far as I know, dbus-glib is going to be deprecated. The better way is to use the GDBus as the DBus backend for lpmd. Could you please switch to GDBus?
The information can be found at https://dbus.freedesktop.org/doc/dbus-glib/.

Thank you.

Comment 3 Ali Erdinc Koroglu 2023-11-28 16:54:20 UTC
Hello Kate, thank you for your comments.
You can find the changes in the new package. I'll reach out to upstream developers about the GDBus change, but I believe we can continue the review process

SPEC Url: https://download.copr.fedorainfracloud.org/results/aekoroglu/fedora/fedora-rawhide-x86_64/06702575-intel-lpmd/intel-lpmd.spec
SRPM Url: https://download.copr.fedorainfracloud.org/results/aekoroglu/fedora/fedora-rawhide-x86_64/06702575-intel-lpmd/intel-lpmd-0.0.2-1.fc40.src.rpm

Comment 4 Fedora Review Service 2023-11-28 17:20:51 UTC
Copr build:
https://copr.fedorainfracloud.org/coprs/build/6702644
(succeeded)

Review template:
https://download.copr.fedorainfracloud.org/results/@fedora-review/fedora-review-2246560-intel-lpmd/fedora-rawhide-x86_64/06702644-intel-lpmd/fedora-review/review.txt

Please take a look if any issues were found.


---
This comment was created by the fedora-review-service
https://github.com/FrostyX/fedora-review-service

If you want to trigger a new Copr build, add a comment containing new
Spec and SRPM URLs or [fedora-review-service-build] string.

Comment 5 Kate Hsuan 2023-12-01 06:09:44 UTC
Thank you for updating.

Overall this work looked good but some minor things need to be improved. 

1. In the %description section,
“it puts the system into Low Power Mode by activate the power efficient CPUs and disable the rest, and restore the system from Low Power Mode by activating
all CPUs.”
should be
“it puts the system into Low Power Mode by activating the power efficient CPUs and disabling the rest, and restoring the system from Low Power Mode by activating all CPUs.”

2. Add a newline after %global %global daemon_name intel_lpmd.

3. In the %file section, the dbus configuration files should be placed in %{_datadir}/dbus-1. (/usr/share/dbus-1)

%config(noreplace) %{_sysconfdir}/dbus-1/system.d/org.freedesktop.%{daemon_name}.conf

could be

%{_datadir}/dbus-1/system.d/org.freedesktop.%{daemon_name}.conf

4. The DBus introspection file should also be placed to /usr/share/dbus-1/interfaces so the %install and the %file sections need to be revised and shown as follows.

The %install section could be
(Move and copy the files to the corresponding place)
%install
%make_install
mv %{buildroot}/%{_sysconfdir}/dbus-1/system.d %{buildroot}/%{_datadir}/dbus-1
install -p -D -m 0644 src/intel_lpmd_dbus_interface.xml %{buildroot}/%{_datadir}/dbus-1/interfaces/org.freedesktop.intel_lpmd.xml

The file section could be simplified like this
…
%dir %{_sysconfdir}/%{daemon_name}
%config(noreplace) %{_sysconfdir}/%{daemon_name}/%{daemon_name}_config.xml
%{_datadir}/dbus-1/*
%{_unitdir}/%{daemon_name}.service
%{_mandir}/man5/%{daemon_name}_config.xml.5*
…

Please prepare a new version addressing the things listed above. I will perform a comprehensive test for the next revision.

Thank you :)

Comment 7 Fedora Review Service 2023-12-12 14:01:09 UTC
Created attachment 2003970 [details]
The .spec file difference from Copr build 6702644 to 6744711

Comment 8 Fedora Review Service 2023-12-12 14:01:12 UTC
Copr build:
https://copr.fedorainfracloud.org/coprs/build/6744711
(succeeded)

Review template:
https://download.copr.fedorainfracloud.org/results/@fedora-review/fedora-review-2246560-intel-lpmd/fedora-rawhide-x86_64/06744711-intel-lpmd/fedora-review/review.txt

Please take a look if any issues were found.


---
This comment was created by the fedora-review-service
https://github.com/FrostyX/fedora-review-service

If you want to trigger a new Copr build, add a comment containing new
Spec and SRPM URLs or [fedora-review-service-build] string.

Comment 9 Neal Gompa 2023-12-13 03:24:28 UTC
> aclocal --install
> gtkdocize --copy --flavour no-tmpl
> autoreconf --install --verbose

This should be in %build rather than %prep. Or if you're not backporting to RHEL, use the new %conf section and put %configure there too.

Cf. https://rpm-software-management.github.io/rpm/manual/spec.html

Comment 10 Kate Hsuan 2023-12-13 10:01:26 UTC
Hi,

Thank you for updating.

Two minor issues need to be improved.

1. Thanks Neal for pointing out this. The three commands could be moved from %prep section to %build section.

2. "Requires:	dbus-tools" could be removed.
   I briefly looked into the code. Only the test script runs dbus-tools to send DBus messages but the test script was not included in the package.
   dbus-tools is a set of commands for DBus and includes the following files.
...
/usr/bin/dbus-monitor
/usr/bin/dbus-send
/usr/bin/dbus-update-activation-environment
/usr/bin/dbus-uuidgen
...

I'll also update the review checklist here for the next version.

Comment 12 Fedora Review Service 2023-12-13 14:11:14 UTC
Created attachment 2004150 [details]
The .spec file difference from Copr build 6744711 to 6749586

Comment 13 Fedora Review Service 2023-12-13 14:11:17 UTC
Copr build:
https://copr.fedorainfracloud.org/coprs/build/6749586
(succeeded)

Review template:
https://download.copr.fedorainfracloud.org/results/@fedora-review/fedora-review-2246560-intel-lpmd/fedora-rawhide-x86_64/06749586-intel-lpmd/fedora-review/review.txt

Please take a look if any issues were found.


---
This comment was created by the fedora-review-service
https://github.com/FrostyX/fedora-review-service

If you want to trigger a new Copr build, add a comment containing new
Spec and SRPM URLs or [fedora-review-service-build] string.

Comment 14 Kate Hsuan 2023-12-14 06:17:30 UTC
Hi,

Thank you for updating.

Overall looks good. One minor thing I missed. The list of patches should be present in "PatchN: " tags.
This is mentioned in the document: "Normally, patches to a package SHOULD be listed in PatchN: tags in the RPM spec file and applied using the %patch or %autosetup macros."
https://docs.fedoraproject.org/en-US/packaging-guidelines/#_applying_patches

So, please replace the Patch: with Patch0:

# https://github.com/intel/intel-lpmd/pull/13
Patch0:         13.patch

After the PatchN: tag is fixed, I'll approve this work.

The full review checklist is shown as follows.

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

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



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

C/C++:
[-]: Provides: bundled(gnulib) in place as required.
     Note: Sources not installed
[x]: Package does not contain kernel modules.
[x]: If your application is a C or C++ application you must list a
     BuildRequires against gcc, gcc-c++ or clang.
[x]: Header files in -devel subpackage, if present.
[x]: Package does not contain any libtool archives (.la)
[x]: Package contains no static executables.
[x]: Rpath absent or only used for internal libs.

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.
[x]: License field in the package spec file matches the actual license.
     Note: Checking patched sources after %prep for licenses. Licenses
     found: "Unknown or generated", "GNU General Public License, Version
     2", "GNU General Public License v2.0 or later". 17 files have unknown
     license. Detailed output of licensecheck in
     /home/kate/test_ground/lpmd/round4/2246560-intel-lpmd/licensecheck.txt
[-]: License file installed when any subpackage combination is installed.
[x]: Package must own all directories that it creates.
     Note: Directories without known owners: /usr/share/dbus-1/interfaces,
     /usr/share/dbus-1/system.d, /usr/share/dbus-1/system-services,
     /usr/share/dbus-1
[x]: %build honors applicable compiler flags or justifies otherwise.
[x]: Package contains no bundled libraries without FPC exception.
[-]: Changelog in prescribed format.
[x]: Sources contain only permissible code or content.
[-]: Package contains desktop file if it is a GUI application.
[-]: Development files must be in a -devel package
[x]: Package uses nothing in %doc for runtime.
[x]: Package consistently uses macros (instead of hard-coded directory
     names).
[x]: Package is named according to the Package Naming Guidelines.
[x]: Package does not generate any conflict.
[x]: Package obeys FHS, except libexecdir and /usr/target.
[-]: If the package is a rename of another package, proper Obsoletes and
     Provides are present.
[-]: Requires correct, justified where necessary.
[x]: Spec file is legible and written in American English.
[x]: Package contains systemd file(s) if in need.
[x]: Useful -debuginfo package or justification otherwise.
[x]: Package is not known to require an ExcludeArch tag.
[x]: Package complies to the Packaging Guidelines
[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 attachment).
[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 requires other packages for directories it uses.
[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]: %config files are marked noreplace or the reason is justified.
[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]: No %config files under /usr.
[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]: systemd_post is invoked in %post, systemd_preun in %preun, and
     systemd_postun in %postun for Systemd service files.
     Note: Systemd service file(s) in intel-lpmd
[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 2490 bytes in 1 files.
[x]: Packages must not store files under /srv, /opt or /usr/local

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

Generic:
[-]: If the source package does not include license text(s) as a separate
     file from upstream, the packager SHOULD query upstream to include it.
[x]: Final provides and requires are sane (see attachments).
[x]: Package functions as described.
[x]: Latest version is packaged.
[x]: Package does not include license text files separate from upstream.
[x]: Patches link to upstream bugs/comments/lists or are otherwise
     justified.
[-]: Sources are verified with gpgverify first in %prep if upstream
     publishes signatures.
     Note: gpgverify is not used.
[-]: %check is present and all tests pass.
[x]: Packages should try to preserve timestamps of original installed
     files.
[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]: Fully versioned dependency in subpackages if applicable.
[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 attachment).
[x]: Large data in /usr/share should live in a noarch subpackage if package
     is arched.
[x]: Package should not use obsolete m4 macros
[x]: Spec file according to URL is the same as in SRPM.


Rpmlint
-------
Checking: intel-lpmd-0.0.2-1.fc40.x86_64.rpm
          intel-lpmd-debuginfo-0.0.2-1.fc40.x86_64.rpm
          intel-lpmd-debugsource-0.0.2-1.fc40.x86_64.rpm
          intel-lpmd-0.0.2-1.fc40.src.rpm
=================================================================================== rpmlint session starts ==================================================================================
rpmlint: 2.4.0
configuration:
    /usr/lib/python3.12/site-packages/rpmlint/configdefaults.toml
    /etc/xdg/rpmlint/fedora-legacy-licenses.toml
    /etc/xdg/rpmlint/fedora-spdx-licenses.toml
    /etc/xdg/rpmlint/fedora.toml
    /etc/xdg/rpmlint/scoring.toml
    /etc/xdg/rpmlint/users-groups.toml
    /etc/xdg/rpmlint/warn-on-functions.toml
rpmlintrc: [PosixPath('/tmp/tmp3u6hq8pf')]
checks: 31, packages: 4

intel-lpmd.x86_64: W: no-manual-page-for-binary intel_lpmd_control
intel-lpmd.x86_64: W: dbus-policy-allow-receive <allow receive_sender="org.freedesktop.intel_lpmd"/> /usr/share/dbus-1/system.d/org.freedesktop.intel_lpmd.conf
intel-lpmd.x86_64: W: dbus-policy-allow-receive <allow receive_sender="org.freedesktop.intel_lpmd"/> /usr/share/dbus-1/system.d/org.freedesktop.intel_lpmd.conf
intel-lpmd.x86_64: W: dbus-policy-allow-receive <allow receive_sender="org.freedesktop.intel_lpmd"/> /usr/share/dbus-1/system.d/org.freedesktop.intel_lpmd.conf
==================================================== 4 packages and 0 specfiles checked; 0 errors, 4 warnings, 0 badness; has taken 0.3 s ===================================================




Rpmlint (debuginfo)
-------------------
Checking: intel-lpmd-debuginfo-0.0.2-1.fc40.x86_64.rpm
=================================================================================== rpmlint session starts ==================================================================================
rpmlint: 2.4.0
configuration:
    /usr/lib/python3.12/site-packages/rpmlint/configdefaults.toml
    /etc/xdg/rpmlint/fedora-legacy-licenses.toml
    /etc/xdg/rpmlint/fedora-spdx-licenses.toml
    /etc/xdg/rpmlint/fedora.toml
    /etc/xdg/rpmlint/scoring.toml
    /etc/xdg/rpmlint/users-groups.toml
    /etc/xdg/rpmlint/warn-on-functions.toml
rpmlintrc: [PosixPath('/tmp/tmpqrutxyff')]
checks: 31, packages: 1

==================================================== 1 packages and 0 specfiles checked; 0 errors, 0 warnings, 0 badness; has taken 0.1 s ===================================================





Rpmlint (installed packages)
----------------------------
/bin/sh: warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8)
/bin/sh: warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8)
/bin/sh: warning: setlocale: LC_ALL: cannot change locale (en_US.UTF-8)
============================ rpmlint session starts ============================
rpmlint: 2.5.0
configuration:
    /usr/lib/python3.12/site-packages/rpmlint/configdefaults.toml
    /etc/xdg/rpmlint/fedora-legacy-licenses.toml
    /etc/xdg/rpmlint/fedora-spdx-licenses.toml
    /etc/xdg/rpmlint/fedora.toml
    /etc/xdg/rpmlint/scoring.toml
    /etc/xdg/rpmlint/users-groups.toml
    /etc/xdg/rpmlint/warn-on-functions.toml
checks: 32, packages: 3

intel-lpmd.x86_64: W: unused-direct-shlib-dependency /usr/bin/intel_lpmd_control /lib64/libdbus-1.so.3
intel-lpmd.x86_64: W: unused-direct-shlib-dependency /usr/bin/intel_lpmd_control /lib64/libgobject-2.0.so.0
intel-lpmd.x86_64: W: no-manual-page-for-binary intel_lpmd_control
intel-lpmd.x86_64: W: dbus-policy-allow-receive <allow receive_sender="org.freedesktop.intel_lpmd"/> /usr/share/dbus-1/system.d/org.freedesktop.intel_lpmd.conf
intel-lpmd.x86_64: W: dbus-policy-allow-receive <allow receive_sender="org.freedesktop.intel_lpmd"/> /usr/share/dbus-1/system.d/org.freedesktop.intel_lpmd.conf
intel-lpmd.x86_64: W: dbus-policy-allow-receive <allow receive_sender="org.freedesktop.intel_lpmd"/> /usr/share/dbus-1/system.d/org.freedesktop.intel_lpmd.conf
 3 packages and 0 specfiles checked; 0 errors, 6 warnings, 21 filtered, 0 badness; has taken 0.4 s 



Source checksums
----------------
https://github.com/intel/intel-lpmd/archive/v0.0.2/intel-lpmd-0.0.2.tar.gz :
  CHECKSUM(SHA256) this package     : 998225a8a054e87a4be1ec3b3c1bfbcf6d5eb3c6fce0eb40d22864f26b365121
  CHECKSUM(SHA256) upstream package : 998225a8a054e87a4be1ec3b3c1bfbcf6d5eb3c6fce0eb40d22864f26b365121


Requires
--------
intel-lpmd (rpmlib, GLIBC filtered):
    /bin/sh
    config(intel-lpmd)
    libc.so.6()(64bit)
    libdbus-1.so.3()(64bit)
    libdbus-glib-1.so.2()(64bit)
    libgcc_s.so.1()(64bit)
    libgcc_s.so.1(GCC_3.0)(64bit)
    libgcc_s.so.1(GCC_3.3.1)(64bit)
    libgio-2.0.so.0()(64bit)
    libglib-2.0.so.0()(64bit)
    libgmodule-2.0.so.0()(64bit)
    libgobject-2.0.so.0()(64bit)
    libnl-3.so.200()(64bit)
    libnl-3.so.200(libnl_3)(64bit)
    libnl-genl-3.so.200()(64bit)
    libnl-genl-3.so.200(libnl_3)(64bit)
    libsystemd.so.0()(64bit)
    libsystemd.so.0(LIBSYSTEMD_221)(64bit)
    libxml2.so.2()(64bit)
    libxml2.so.2(LIBXML2_2.4.30)(64bit)
    libxml2.so.2(LIBXML2_2.6.0)(64bit)
    rtld(GNU_HASH)

intel-lpmd-debuginfo (rpmlib, GLIBC filtered):

intel-lpmd-debugsource (rpmlib, GLIBC filtered):



Provides
--------
intel-lpmd:
    config(intel-lpmd)
    intel-lpmd
    intel-lpmd(x86-64)

intel-lpmd-debuginfo:
    debuginfo(build-id)
    intel-lpmd-debuginfo
    intel-lpmd-debuginfo(x86-64)

intel-lpmd-debugsource:
    intel-lpmd-debugsource
    intel-lpmd-debugsource(x86-64)



Generated by fedora-review 0.10.0 (e79b66b) last change: 2023-07-24
Command line :/usr/bin/fedora-review -b 2246560
Buildroot used: fedora-rawhide-x86_64
Active plugins: Generic, C/C++, Shell-api
Disabled plugins: SugarActivity, fonts, Perl, Java, Python, PHP, Ocaml, R, Haskell
Disabled flags: EXARCH, EPEL6, EPEL7, DISTTAG, BATCH

Comment 16 Fedora Review Service 2023-12-14 11:14:33 UTC
Copr build:
https://copr.fedorainfracloud.org/coprs/build/6752749
(succeeded)

Review template:
https://download.copr.fedorainfracloud.org/results/@fedora-review/fedora-review-2246560-intel-lpmd/fedora-rawhide-x86_64/06752749-intel-lpmd/fedora-review/review.txt

Please take a look if any issues were found.


---
This comment was created by the fedora-review-service
https://github.com/FrostyX/fedora-review-service

If you want to trigger a new Copr build, add a comment containing new
Spec and SRPM URLs or [fedora-review-service-build] string.

Comment 17 Fedora Review Service 2023-12-14 11:14:44 UTC
Copr build:
https://copr.fedorainfracloud.org/coprs/build/6752748
(succeeded)

Review template:
https://download.copr.fedorainfracloud.org/results/@fedora-review/fedora-review-2246560-intel-lpmd/fedora-rawhide-x86_64/06752748-intel-lpmd/fedora-review/review.txt

Please take a look if any issues were found.


---
This comment was created by the fedora-review-service
https://github.com/FrostyX/fedora-review-service

If you want to trigger a new Copr build, add a comment containing new
Spec and SRPM URLs or [fedora-review-service-build] string.

Comment 18 Kate Hsuan 2023-12-15 10:09:28 UTC
Hi,

Thank you for your contribution.

It looks good to me. Approved.

Comment 19 Fedora Admin user for bugzilla script actions 2023-12-15 11:49:19 UTC
The Pagure repository was created at https://src.fedoraproject.org/rpms/intel-lpmd

Comment 20 Ali Erdinc Koroglu 2023-12-15 11:50:37 UTC
Thank you Kate and Neal :)


Note You need to log in before you can comment on or make changes to this bug.