[Bug 1875744] Review Request: python-schedule - Job scheduling for humans

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875744



--- Comment #6 from Fedora Update System  ---
FEDORA-2020-5ae1686b47 has been submitted as an update to Fedora 31.
https://bodhi.fedoraproject.org/updates/FEDORA-2020-5ae1686b47


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875744] Review Request: python-schedule - Job scheduling for humans

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875744



--- Comment #5 from Fedora Update System  ---
FEDORA-2020-3a850d7ff6 has been submitted as an update to Fedora 32.
https://bodhi.fedoraproject.org/updates/FEDORA-2020-3a850d7ff6


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875766] Review Request: python-sentinels - Various objects to denote special meanings in Python

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875766

Fedora Update System  changed:

   What|Removed |Added

 Status|POST|MODIFIED



--- Comment #4 from Fedora Update System  ---
FEDORA-2020-7529263917 has been submitted as an update to Fedora 33.
https://bodhi.fedoraproject.org/updates/FEDORA-2020-7529263917


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875744] Review Request: python-schedule - Job scheduling for humans

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875744

Fedora Update System  changed:

   What|Removed |Added

 Status|POST|MODIFIED



--- Comment #4 from Fedora Update System  ---
FEDORA-2020-eb71ff25c2 has been submitted as an update to Fedora 33.
https://bodhi.fedoraproject.org/updates/FEDORA-2020-eb71ff25c2


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1876864] Review Request: kealib - KEA is an HDF5 Based Raster File Format as a GDAL plugin

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876864



--- Comment #2 from markusN  ---
Thanks for your review, Artur.

(In reply to Artur Frenszek-Iwicki from comment #1)
> >Group:   Sciences/Geosciences
> Not used in Fedora.
> https://docs.fedoraproject.org/en-US/packaging-guidelines/#_tags_and_sections

removed.

> >%description
> >KEALib is a project to provide an implementation of the GDAL specification 
> >within the the HDF5 file format. Specifically, the format will support...
> Whoa. The description should be wrapped so that all lines are 80 characters
> max.
> https://docs.fedoraproject.org/en-US/packaging-guidelines/
> #_summary_and_description

shunk and line wrapping fixed.

> >mkdir -p %{_target_platform}
> >pushd %{_target_platform}
> Not needed. CMake out-of-source builds are now the default.

removed.

> >%cmake \
> >-DLIBDIR:PATH=/usr/lib64 \
> >-DGDAL_LIB_PATH:PATH=/usr/lib64 \
> Fedora still builds packages for some 32-bit architectures (i686 and
> armv7hl, to be precise) - use "%{_libdir}" here.

removed as being ignored anyway by KEA.

> >make %{?_smp_mflags} -C %{_target_platform}
> Use "%cmake_build" instead.
> https://docs.fedoraproject.org/en-US/packaging-guidelines/CMake/

updated.

> >make DESTDIR=%{buildroot} install
> Try "%cmake_install" instead.

updated.

> >mkdir -p %{buildroot}%{_libdir}/ %{buildroot}%{_libdir}/gdalplugins/
> >mv %{buildroot}%{_prefix}/lib/libkea* %{buildroot}%{_libdir}/
> >mv %{buildroot}%{_prefix}/lib/gdalplugins/* 
> >%{buildroot}%{_libdir}/gdalplugins/
> Add some check whether "%{_prefix}/lib" is different than "%{_libdir}" so
> that this doesn't fail on 32-bit architectures. Alternatively, try patching
> the CMakeLists.

I tried both to no avail. I must admit that I am not really familiar with
cmake.

This trick is also ignored by KEA:

# fix wrong lib entry
sed -i 's+set (PROJECT_LIBRARY_DIR lib)+set (PROJECT_LIBRARY_DIR %{_lib})+g'
%{_builddir}/%{name}-%{version}/CMakeLists.txt


> >%files
> >%{_libdir}/libkea.so*
> >%{_includedir}/libkea
> Un-versioned .so files and C/C++ headers should go in a -devel package.
> https://docs.fedoraproject.org/en-US/packaging-guidelines/#_devel_packages

fixed.

Now it also builds on F33 and rawhide:

https://copr.fedorainfracloud.org/coprs/neteler/kealib/build/1653821/

Updated SPEC file: https://data.neteler.org/tmp/kealib.spec


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1873302] Review Request: IP2Location - IP2location library

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1873302



--- Comment #12 from Peter Bieringer  ---
will push next to updates-testing, had to run initial tests first.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1873302] Review Request: IP2Location - IP2location library

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1873302



--- Comment #11 from Michael C  ---
Do we need to update the repository manually? I can only see f34 stable
release.

https://src.fedoraproject.org/rpms/IP2Location


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1877215] New: Review Request: python-aiounifi - Python library for communicating with Unifi Controller API

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1877215

Bug ID: 1877215
   Summary: Review Request: python-aiounifi - Python library for
communicating with Unifi Controller API
   Product: Fedora
   Version: rawhide
  Hardware: All
OS: Linux
Status: NEW
 Component: Package Review
  Severity: medium
  Priority: medium
  Assignee: nob...@fedoraproject.org
  Reporter: m...@fabian-affolter.ch
QA Contact: extras...@fedoraproject.org
CC: package-review@lists.fedoraproject.org
  Target Milestone: ---
Classification: Fedora



Spec URL: https://fab.fedorapeople.org/packages/SRPMS/python-aiounifi.spec
SRPM URL:
https://fab.fedorapeople.org/packages/SRPMS/python-aiounifi-23-1.fc32.src.rpm

Project URL: https://github.com/Kane610/aiounifi

Description:
Asynchronous library to communicate with the Unifi Controller API.

Koji scratch build:
https://koji.fedoraproject.org/koji/taskinfo?taskID=51038811

rpmlint output:
$ rpmlint python-aiounifi-23-1.fc32.src.rpm 
1 packages and 0 specfiles checked; 0 errors, 0 warnings.

$ rpmlint python3-aiounifi-23-1.fc32.noarch.rpm 
1 packages and 0 specfiles checked; 0 errors, 0 warnings.

Fedora Account System Username: fab


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1873302] Review Request: IP2Location - IP2location library

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1873302



--- Comment #10 from Peter Bieringer  ---
initial packages for f31...34 and el7..8 are now available, feel free to test,
if any issues found, send e-mail or create a ticket:
https://koji.fedoraproject.org/koji/packageinfo?packageID=32132


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875834] Review Request: python-brother - Python wrapper for getting data from Brother printers

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875834



--- Comment #6 from Fedora Update System  ---
FEDORA-2020-93e1adf872 has been submitted as an update to Fedora 32.
https://bodhi.fedoraproject.org/updates/FEDORA-2020-93e1adf872


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875328] Review Request: python-aiocurrencylayer - Python wrapper for interacting with the currencylayer API

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875328

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #5 from Fedora Update System  ---
FEDORA-2020-b6a8b2a1b6 has been pushed to the Fedora 33 testing repository.
In short time you'll be able to install the update with the following command:
`sudo dnf install --enablerepo=updates-testing
--advisory=FEDORA-2020-b6a8b2a1b6 \*`
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2020-b6a8b2a1b6

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information
on how to test updates.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875930] Review Request: python-asyncio-dgram - Higher level Datagram support for Asyncio

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875930

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #5 from Fedora Update System  ---
FEDORA-2020-7626e1b3af has been pushed to the Fedora 33 testing repository.
In short time you'll be able to install the update with the following command:
`sudo dnf install --enablerepo=updates-testing
--advisory=FEDORA-2020-7626e1b3af \*`
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2020-7626e1b3af

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information
on how to test updates.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875937] Review Request: python-aioguardian - Python library for Elexa Guardian devices

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875937

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #6 from Fedora Update System  ---
FEDORA-2020-5e2041ce67 has been pushed to the Fedora 33 testing repository.
In short time you'll be able to install the update with the following command:
`sudo dnf install --enablerepo=updates-testing
--advisory=FEDORA-2020-5e2041ce67 \*`
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2020-5e2041ce67

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information
on how to test updates.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1871813] Review Request: python-aioesphomeapi - Library to interact with devices flashed with esphome

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1871813

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #5 from Fedora Update System  ---
FEDORA-2020-23051376c9 has been pushed to the Fedora 33 testing repository.
In short time you'll be able to install the update with the following command:
`sudo dnf install --enablerepo=updates-testing
--advisory=FEDORA-2020-23051376c9 \*`
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2020-23051376c9

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information
on how to test updates.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875277] Review Request: python-shelly - Library for Shelly smart home devices

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875277

Fedora Update System  changed:

   What|Removed |Added

 Status|MODIFIED|ON_QA



--- Comment #5 from Fedora Update System  ---
FEDORA-2020-a6d49c1d3d has been pushed to the Fedora 33 testing repository.
In short time you'll be able to install the update with the following command:
`sudo dnf install --enablerepo=updates-testing
--advisory=FEDORA-2020-a6d49c1d3d \*`
You can provide feedback for this update here:
https://bodhi.fedoraproject.org/updates/FEDORA-2020-a6d49c1d3d

See also https://fedoraproject.org/wiki/QA:Updates_Testing for more information
on how to test updates.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1876864] Review Request: kealib - KEA is an HDF5 Based Raster File Format as a GDAL plugin

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876864

Artur Frenszek-Iwicki  changed:

   What|Removed |Added

 CC||fed...@svgames.pl
   Doc Type|--- |If docs needed, set a value



--- Comment #1 from Artur Frenszek-Iwicki  ---
>Group: Sciences/Geosciences
Not used in Fedora.
https://docs.fedoraproject.org/en-US/packaging-guidelines/#_tags_and_sections

>%description
>KEALib is a project to provide an implementation of the GDAL specification 
>within the the HDF5 file format. Specifically, the format will support...
Whoa. The description should be wrapped so that all lines are 80 characters
max.
https://docs.fedoraproject.org/en-US/packaging-guidelines/#_summary_and_description

>mkdir -p %{_target_platform}
>pushd %{_target_platform}
Not needed. CMake out-of-source builds are now the default.

>%cmake \
>-DLIBDIR:PATH=/usr/lib64 \
>-DGDAL_LIB_PATH:PATH=/usr/lib64 \
Fedora still builds packages for some 32-bit architectures (i686 and armv7hl,
to be precise) - use "%{_libdir}" here.

>make %{?_smp_mflags} -C %{_target_platform}
Use "%cmake_build" instead.
https://docs.fedoraproject.org/en-US/packaging-guidelines/CMake/

>make DESTDIR=%{buildroot} install
Try "%cmake_install" instead.

>mkdir -p %{buildroot}%{_libdir}/ %{buildroot}%{_libdir}/gdalplugins/
>mv %{buildroot}%{_prefix}/lib/libkea* %{buildroot}%{_libdir}/
>mv %{buildroot}%{_prefix}/lib/gdalplugins/* %{buildroot}%{_libdir}/gdalplugins/
Add some check whether "%{_prefix}/lib" is different than "%{_libdir}" so that
this doesn't fail on 32-bit architectures. Alternatively, try patching the
CMakeLists.

>%files
>%{_libdir}/libkea.so*
>%{_includedir}/libkea
Un-versioned .so files and C/C++ headers should go in a -devel package.
https://docs.fedoraproject.org/en-US/packaging-guidelines/#_devel_packages


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875834] Review Request: python-brother - Python wrapper for getting data from Brother printers

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875834

Fedora Update System  changed:

   What|Removed |Added

 Status|POST|MODIFIED



--- Comment #5 from Fedora Update System  ---
FEDORA-2020-8c2da0d18e has been submitted as an update to Fedora 33.
https://bodhi.fedoraproject.org/updates/FEDORA-2020-8c2da0d18e


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1877103] New: Review Request: python-gios - Python wrapper for GIOS air quality data

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1877103

Bug ID: 1877103
   Summary: Review Request: python-gios - Python wrapper for GIOS
air quality data
   Product: Fedora
   Version: rawhide
  Hardware: All
OS: Linux
Status: NEW
 Component: Package Review
  Severity: medium
  Priority: medium
  Assignee: nob...@fedoraproject.org
  Reporter: m...@fabian-affolter.ch
QA Contact: extras...@fedoraproject.org
CC: package-review@lists.fedoraproject.org
  Target Milestone: ---
Classification: Fedora



Spec URL: https://fab.fedorapeople.org/packages/SRPMS/python-gios.spec
SRPM URL:
https://fab.fedorapeople.org/packages/SRPMS/python-gios-0.1.4-1.fc34.src.rpm

Project URL: https://github.com/bieniu/gios

Description:
Python wrapper for getting air quality data from GIOS 
(Glowny Inspektorat Ochrony Srodowiska).

Koji scratch build:
https://koji.fedoraproject.org/koji/taskinfo?taskID=51022719

rpmlint output:
$ rpmlint python-gios-0.1.4-1.fc34.src.rpm 
1 packages and 0 specfiles checked; 0 errors, 0 warnings.

$ rpmlint python3-gios-0.1.4-1.fc34.noarch.rpm 
1 packages and 0 specfiles checked; 0 errors, 0 warnings.

Fedora Account System Username: fab


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1872373] Review Request: rust-prost-build - Protocol Buffers implementation for the Rust Language

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1872373



--- Comment #9 from Gwyn Ciesla  ---
(fedscm-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/rust-prost-build


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1871813] Review Request: python-aioesphomeapi - Library to interact with devices flashed with esphome

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1871813

Fedora Update System  changed:

   What|Removed |Added

 Status|POST|MODIFIED



--- Comment #4 from Fedora Update System  ---
FEDORA-2020-23051376c9 has been submitted as an update to Fedora 33.
https://bodhi.fedoraproject.org/updates/FEDORA-2020-23051376c9


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1862798] Review Request: rust-parsec-client - Parsec Client library for the Rust ecosystem

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1862798



--- Comment #3 from Peter Robinson  ---
SPEC: https://pbrobinson.fedorapeople.org/rust-parsec-client.spec
SRPM:
https://pbrobinson.fedorapeople.org/rust-parsec-client-0.9.0-1.fc32.src.rpm


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875517] [Fedora] Add intel-ipsec-mb package

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875517

Michel Alexandre Salim  changed:

   What|Removed |Added

  Flags||needinfo?(tomasz.kantecki@i
   ||ntel.com)




-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1876660] Review Request: flang - Flang is a Fortran language front-end designed for integration with LLVM

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876660



--- Comment #2 from Robert-André Mauchin 🐧  ---
 - License seems to be ASL 2.0 with exceptions:

https://github.com/llvm/llvm-project/blob/master/flang/LICENSE.txt

 - This compilation kills my old laptop :|


 - URL: http://flang.llvm.orgis 404

 - You need arch info here (isa)

%package devel
Summary: Flang header files
Requires: %{name}%{?_isa} = %{version}-%{release}

 - RPath bad:

flang.x86_64: E: binary-or-shlib-defines-rpath /usr/bin/f18
['$ORIGIN/../lib64']
flang.x86_64: E: binary-or-shlib-defines-rpath /usr/bin/tco
['$ORIGIN/../lib64']
flang.x86_64: E: binary-or-shlib-defines-rpath /usr/lib64/libFIROptimizer.so.11
['$ORIGIN/../lib64']
flang.x86_64: E: binary-or-shlib-defines-rpath
/usr/lib64/libFortranCommon.so.11 ['$ORIGIN/../lib64']
flang.x86_64: E: binary-or-shlib-defines-rpath
/usr/lib64/libFortranDecimal.so.11 ['$ORIGIN/../lib64']
flang.x86_64: E: binary-or-shlib-defines-rpath
/usr/lib64/libFortranEvaluate.so.11 ['$ORIGIN/../lib64']
flang.x86_64: W: shared-lib-calls-exit /usr/lib64/libFortranLower.so.11
exit@GLIBC_2.2.5
flang.x86_64: E: binary-or-shlib-defines-rpath /usr/lib64/libFortranLower.so.11
['$ORIGIN/../lib64']
flang.x86_64: E: binary-or-shlib-defines-rpath
/usr/lib64/libFortranParser.so.11 ['$ORIGIN/../lib64']
flang.x86_64: W: shared-lib-calls-exit /usr/lib64/libFortranRuntime.so.11
exit@GLIBC_2.2.5
flang.x86_64: E: binary-or-shlib-defines-rpath
/usr/lib64/libFortranRuntime.so.11 ['$ORIGIN/../lib64']
flang.x86_64: E: binary-or-shlib-defines-rpath
/usr/lib64/libFortranSemantics.so.11 ['$ORIGIN/../lib64']

With Cmake it should be as easy as passing:
-DCMAKE_SKIP_RPATH:BOOL=YES -DCMAKE_SKIP_INSTALL_RPATH:BOOL=YES

 - Don't repeat the name in the Summary:

flang.x86_64: W: name-repeated-in-summary C Flang

 - Remove trailing tab here:

URL: http://flang.llvm.org  

(flang.src:78: W: mixed-use-of-spaces-and-tabs (spaces: line 78, tab: line 14)
)

 - Permissions should be 0755:

flang.x86_64: E: non-readable /usr/bin/flang 700
flang.x86_64: E: non-standard-executable-perm /usr/bin/flang 700

 - Own %{_pkgdocdir}

[!]: Package requires other packages for directories it uses.
 Note: No known owner of /usr/share/doc/flang


Package Review
==

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


Issues:
===
- Permissions on files are set properly.
  Note: See rpmlint output
  See: https://docs.fedoraproject.org/en-US/packaging-
  guidelines/#_file_permissions


= MUST items =

C/C++:
[x]: Package does not contain kernel modules.
[x]: Package contains no static executables.
[!]: Rpath absent or only used for internal libs.
 Note: See rpmlint output
[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]: ldconfig not called in %post and %postun for Fedora 28 and later.
[x]: Package does not contain any libtool archives (.la)
[x]: Development (unversioned) .so files in -devel subpackage, if present.

Generic:
[x]: Package successfully compiles and builds into binary rpms on at least
 one supported primary architecture.
 Note: Using prebuilt packages
[x]: Package is licensed with an open-source compatible license and meets
 other legal requirements as defined in the legal section of Packaging
 Guidelines.
[!]: License field in the package spec file matches the actual license.
 Note: Checking patched sources after %prep for licenses. Licenses
 found: "Unknown or generated", "*No copyright* Apache License 2.0",
 "Apache License 2.0". 927 files have unknown license. Detailed output
 of licensecheck in /home/bob/packaging/review/flang/review-
 flang/licensecheck.txt
[x]: License file installed when any subpackage combination is installed.
[!]: Package requires other packages for directories it uses.
 Note: No known owner of /usr/share/doc/flang
[x]: %build honors applicable compiler flags or justifies otherwise.
[x]: Package contains no bundled libraries without FPC exception.
[x]: Changelog in prescribed format.
[x]: Sources contain only permissible code or content.
[-]: Package contains desktop file if it is a GUI application.
[x]: 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.
[x]: Requires correct, justified where necessary.
[x]: Spec file is legible and written in American English.
[-]: Package contains systemd file(s) if in need.
[x]: Useful -debuginfo package or justification otherwise.
[x]: Package is n

[Bug 1862796] Review Request: rust-parsec-interface - Parsec interface library to communicate using the wire protocol

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1862796



--- Comment #13 from Peter Robinson  ---
> You need to add a comment explaining what you have change with the
> fix-metadata patch, and add a link to n upstream PR adding these changes.

I'm working in parallel to get those fixed, eg the 0.20.2 no longer needs it


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1862796] Review Request: rust-parsec-interface - Parsec interface library to communicate using the wire protocol

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1862796



--- Comment #12 from Peter Robinson  ---
SPEC: https://pbrobinson.fedorapeople.org/rust-parsec-interface.spec
SRPM:
https://pbrobinson.fedorapeople.org/rust-parsec-interface-0.20.2-1.fc32.src.rpm


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875930] Review Request: python-asyncio-dgram - Higher level Datagram support for Asyncio

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875930

Fedora Update System  changed:

   What|Removed |Added

 Status|POST|MODIFIED



--- Comment #4 from Fedora Update System  ---
FEDORA-2020-7626e1b3af has been submitted as an update to Fedora 33.
https://bodhi.fedoraproject.org/updates/FEDORA-2020-7626e1b3af


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1872373] Review Request: rust-prost-build - Protocol Buffers implementation for the Rust Language

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1872373

Robert-André Mauchin 🐧  changed:

   What|Removed |Added

 Status|NEW |POST
  Flags|needinfo?(zebo...@gmail.com |fedora-review+
   |)   |



--- Comment #8 from Robert-André Mauchin 🐧  ---
 - always add a comment above patch to explain what changes you made:

# Fix 
Patch1: prost-build-fix-metadata.diff

Package approved.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1801519] Review Request: golang-github-google-licenseclassifier - A License Classifier

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1801519



--- Comment #7 from Robert-André Mauchin 🐧  ---
Thanks I will update as toon as I can.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875726] Review Request: golang-github-openprinting-ipp-usb - HTTP reverse proxy, backed by IPP-over-USB connection to device

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875726

Robert-André Mauchin 🐧  changed:

   What|Removed |Added

 Status|NEW |POST
   Assignee|nob...@fedoraproject.org|zebo...@gmail.com
  Flags|needinfo?(zebo...@gmail.com |fedora-review+
   |)   |



--- Comment #4 from Robert-André Mauchin 🐧  ---
> golang-github-openprinting-ipp-usb-devel.noarch: W: hidden-file-or-dir 
> /usr/share/gocode/src/github.com/OpenPrinting/ipp-usb/.goipath

Not a problem, it is a sideeffect of Go packaging macros.

> golang-github-openprinting-ipp-usb-debugsource.x86_64: E: 
> description-line-too-long C This package provides debug sources for package 
> golang-github-openprinting-ipp-usb.

You can't technically fix it cause these debug packages are auto generated.

LGTM, package approved.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1860647] Review Request: hexchat-autoaway - HexChat plugin that automatically mark you away

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1860647

Robert-André Mauchin 🐧  changed:

   What|Removed |Added

 Status|ASSIGNED|POST
 QA Contact|extras...@fedoraproject.org |zebo...@gmail.com
  Flags|fedora-review?  |fedora-review+



--- Comment #3 from Robert-André Mauchin 🐧  ---
>> - Consider adding a comment above the patch to explain what it is doing.
>  The patch is generated by GitHub pull request. Thus the filename is 
> .patch
>   To make up for it, I put the summary of the patch as comment in spec.

You can rename any file you like by adding #/ at the end:

## Upstream PR#3 "feat(away-nick-suffix): append away suffix to nickname"
Patch0:
https://patch-diff.githubusercontent.com/raw/andreyv/hexchat-autoaway/pull/3.patch#/0001-append-away-suffix-to-nickname.patch


Package approved.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1877006] New: Review Request: smf-spf - Mail filter for Sender Policy Framework verification

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1877006

Bug ID: 1877006
   Summary: Review Request: smf-spf - Mail filter for Sender
Policy Framework verification
   Product: Fedora
   Version: rawhide
  Hardware: All
OS: Linux
Status: NEW
 Component: Package Review
  Severity: medium
  Priority: medium
  Assignee: nob...@fedoraproject.org
  Reporter: jo...@fibranet.cat
QA Contact: extras...@fedoraproject.org
CC: package-review@lists.fedoraproject.org
  Target Milestone: ---
Classification: Fedora



Spec URL: http://ftp.fibranet.cat/smf-spf/smf-spf.spec
SRPM URL: http://ftp.fibranet.cat/smf-spf/smf-spf-2.4.3-1.el8.src.rpm
Description: smf-spf is a lightweight, fast and reliable Sendmail milter that
implements the Sender Policy Framework technology with the help of the libspf2
library. It checks SPF records to make sure that e-mail messages are authorized
by the domain that it is coming from. It's an alternative for the spfmilter,
spf-milter, and milter-spiff milters.
Fedora Account System Username: mikaku


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875937] Review Request: python-aioguardian - Python library for Elexa Guardian devices

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875937

Fedora Update System  changed:

   What|Removed |Added

 Status|POST|MODIFIED



--- Comment #5 from Fedora Update System  ---
FEDORA-2020-5e2041ce67 has been submitted as an update to Fedora 33.
https://bodhi.fedoraproject.org/updates/FEDORA-2020-5e2041ce67


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1873302] Review Request: IP2Location - IP2location library

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1873302

Peter Bieringer  changed:

   What|Removed |Added

 Resolution|NOTABUG |WORKSFORME




-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1873302] Review Request: IP2Location - IP2location library

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1873302

Peter Bieringer  changed:

   What|Removed |Added

 Status|POST|CLOSED
 Resolution|--- |NOTABUG
Last Closed||2020-09-08 16:36:43



--- Comment #9 from Peter Bieringer  ---
repo exists, will start working now on building packages, so this ticket can be
closed...but who is interest can keep watching
https://koji.fedoraproject.org/koji/packageinfo?packageID=32132


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1862798] Review Request: rust-parsec-client - Parsec Client library for the Rust ecosystem

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1862798

Jared Smith  changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
 CC||jsmith.fed...@gmail.com
   Assignee|nob...@fedoraproject.org|jsmith.fed...@gmail.com
  Flags||fedora-review?




-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1867329] Review Request: R-RcppDate - 'date' C++ Header Library for Date and Time Functionality

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1867329

Fedora Update System  changed:

   What|Removed |Added

 Status|ON_QA   |CLOSED
 Resolution|--- |ERRATA
Last Closed||2020-09-08 15:13:39



--- Comment #11 from Fedora Update System  ---
FEDORA-2020-b1843ef5d0 has been pushed to the Fedora 31 stable repository.
If problem still persists, please make note of it in this bug report.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1876958] New: Review Request: python-aioiotprov - Library/utility to help provision various IoT devices

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876958

Bug ID: 1876958
   Summary: Review Request: python-aioiotprov - Library/utility to
help provision various IoT devices
   Product: Fedora
   Version: rawhide
  Hardware: All
OS: Linux
Status: NEW
 Component: Package Review
  Severity: medium
  Priority: medium
  Assignee: nob...@fedoraproject.org
  Reporter: m...@fabian-affolter.ch
QA Contact: extras...@fedoraproject.org
CC: package-review@lists.fedoraproject.org
  Target Milestone: ---
Classification: Fedora



Spec URL: https://fab.fedorapeople.org/packages/SRPMS/python-aioiotprov.spec
SRPM URL:
https://fab.fedorapeople.org/packages/SRPMS/python-aioiotprov-0.0.7-1.fc32.src.rpm

Project URL: http://github.com/frawau/aioiotprov 

Description:
A library/utility to provision IoT devices. It can provision TP-Link
smartplugs,
Broadlink IR blasters, Sonoff switches running the Tasmota firmware, Shelly
devices
and E-Trix power monitors.

Koji scratch build:
https://koji.fedoraproject.org/koji/taskinfo?taskID=51007994

rpmlint output:
$ rpmlint python-aioiotprov-0.0.7-1.fc32.src.rpm 
python-aioiotprov.src: W: spelling-error %description -l en_US smartplugs ->
smart plugs, smart-plugs, smartphone
1 packages and 0 specfiles checked; 0 errors, 1 warnings.

$ rpmlint python3-aioiotprov-0.0.7-1.fc32.noarch.rpm 
python3-aioiotprov.noarch: W: spelling-error %description -l en_US smartplugs
-> smart plugs, smart-plugs, smartphone
python3-aioiotprov.noarch: W: no-manual-page-for-binary aioiotprov
1 packages and 0 specfiles checked; 0 errors, 2 warnings.

Fedora Account System Username: fab


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1876911] Review Request: python-sortedcollections - Python Sorted Collections

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876911



Spec URL:
https://fab.fedorapeople.org/packages/SRPMS/python-sortedcollections.spec
SRPM URL:
https://fab.fedorapeople.org/packages/SRPMS/python-sortedcollections-1.2.1-1.fc32.src.rpm

Project URL: http://www.grantjenks.com/docs/sortedcollections/

Description:
Python Sorted Collections Sorted Collections is an Apache2 licensed Python
sorted collections library.

Koji scratch build:
https://koji.fedoraproject.org/koji/taskinfo?taskID=51001589

rpmlint output:
$ rpmlint python-sortedcollections-1.2.1-1.fc32.src.rpm 
1 packages and 0 specfiles checked; 0 errors, 0 warnings.

$ rpmlint python3-sortedcollections-1.2.1-1.fc32.noarch.rpm 
1 packages and 0 specfiles checked; 0 errors, 0 warnings.

Fedora Account System Username: fab


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875795] Review Request: python-edimax - Interface with Edimax Smart Plugs

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875795



--- Comment #3 from Gwyn Ciesla  ---
(fedscm-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/python-edimax


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875994] Review Request: python-nptyping - Type hints for Numpy

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875994



--- Comment #3 from Gwyn Ciesla  ---
(fedscm-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/python-nptyping


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875782] Review Request: python-databay - Python interface for scheduled data transfer

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875782



--- Comment #5 from Gwyn Ciesla  ---
(fedscm-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/python-databay


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875766] Review Request: python-sentinels - Various objects to denote special meanings in Python

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875766



--- Comment #3 from Gwyn Ciesla  ---
(fedscm-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/python-sentinels


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875765] Review Request: python-mongomock - Module for testing MongoDB-dependent code

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875765



--- Comment #3 from Gwyn Ciesla  ---
(fedscm-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/python-mongomock


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875982] Review Request: python-regenmaschine - Python API for RainMachine sprinkler controllers

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875982



--- Comment #3 from Gwyn Ciesla  ---
(fedscm-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/python-regenmaschine


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875744] Review Request: python-schedule - Job scheduling for humans

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875744



--- Comment #3 from Gwyn Ciesla  ---
(fedscm-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/python-schedule


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1876901] Review Request: python-aiosasl - Protocol agnostic SASL Python library

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876901



Spec URL: https://fab.fedorapeople.org/packages/SRPMS/python-aiosasl.spec
SRPM URL:
https://fab.fedorapeople.org/packages/SRPMS/python-aiosasl-0.4.1-1.fc32.src.rpm

Project URL: https://github.com/horazont/aiosasl

Description:
aiosasl, pure Python generic asyncio SASL library aiosasl provides a generic,
asyncio-based SASL library. It can be used with any protocol, provided the
neccessary interface code is provided by the application or protocol
implementation.

Koji scratch build:
https://koji.fedoraproject.org/koji/taskinfo?taskID=50999686

rpmlint output:
$ rpmlint python-aiosasl-0.4.1-1.fc32.src.rpm 
python-aiosasl.src: W: spelling-error %description -l en_US asyncio ->
syncopation
python-aiosasl.src: W: spelling-error %description -l en_US neccessary ->
necessary, necessarily
1 packages and 0 specfiles checked; 0 errors, 2 warnings.

$ rpmlint python3-aiosasl-0.4.1-1.fc32.noarch.rpm 
python3-aiosasl.noarch: W: spelling-error %description -l en_US asyncio ->
syncopation
python3-aiosasl.noarch: W: spelling-error %description -l en_US neccessary ->
necessary, necessarily
1 packages and 0 specfiles checked; 0 errors, 2 warnings.

Fedora Account System Username: fab


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875849] Review Request: python-voluptuous-serialize - Convert voluptuous schemas to dictionaries

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875849



--- Comment #3 from Gwyn Ciesla  ---
(fedscm-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/python-voluptuous-serialize


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875930] Review Request: python-asyncio-dgram - Higher level Datagram support for Asyncio

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875930



--- Comment #3 from Gwyn Ciesla  ---
(fedscm-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/python-asyncio-dgram


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1876911] New: Review Request: python-sortedcollections - Python Sorted Collections

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876911

Bug ID: 1876911
   Summary: Review Request: python-sortedcollections - Python
Sorted Collections
   Product: Fedora
   Version: rawhide
  Hardware: All
OS: Linux
Status: NEW
 Component: Package Review
  Severity: medium
  Priority: medium
  Assignee: nob...@fedoraproject.org
  Reporter: m...@fabian-affolter.ch
QA Contact: extras...@fedoraproject.org
CC: package-review@lists.fedoraproject.org
  Target Milestone: ---
Classification: Fedora




-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875834] Review Request: python-brother - Python wrapper for getting data from Brother printers

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875834



--- Comment #4 from Gwyn Ciesla  ---
(fedscm-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/python-brother


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875860] Review Request: python-ciso8601 - Fast ISO8601 date time parser

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875860



--- Comment #5 from Gwyn Ciesla  ---
(fedscm-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/python-ciso8601


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875868] Review Request: python-aioflo - Python library for Flo by Moen Smart Water Detectors

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875868



--- Comment #3 from Gwyn Ciesla  ---
(fedscm-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/python-aioflo


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875906] Review Request: python-pyiqvia - Python API for IQVIA data

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875906



--- Comment #3 from Gwyn Ciesla  ---
(fedscm-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/python-pyiqvia


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875808] Review Request: python-hikvision - Python interface to interact with a Hikvision camera

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875808



--- Comment #3 from Gwyn Ciesla  ---
(fedscm-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/python-hikvision


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1871813] Review Request: python-aioesphomeapi - Library to interact with devices flashed with esphome

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1871813



--- Comment #3 from Gwyn Ciesla  ---
(fedscm-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/python-aioesphomeapi


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875722] Review Request: python-metno - Library to communicate with the met.no API

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875722



--- Comment #2 from Gwyn Ciesla  ---
(fedscm-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/python-metno


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1876906] New: Review Request: python-aioopenssl - TLS-capable transport using OpenSSL for asyncio

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876906

Bug ID: 1876906
   Summary: Review Request: python-aioopenssl - TLS-capable
transport using OpenSSL for asyncio
   Product: Fedora
   Version: rawhide
  Hardware: All
OS: Linux
Status: NEW
 Component: Package Review
  Severity: medium
  Priority: medium
  Assignee: nob...@fedoraproject.org
  Reporter: m...@fabian-affolter.ch
QA Contact: extras...@fedoraproject.org
CC: package-review@lists.fedoraproject.org
  Target Milestone: ---
Classification: Fedora



Spec URL: https://fab.fedorapeople.org/packages/SRPMS/python-aioopenssl.spec
SRPM URL:
https://fab.fedorapeople.org/packages/SRPMS/python-aioopenssl-0.5.1-1.fc32.src.rpm

Project URL: https://github.com/horazont/aioopenssl

Description:
aioopenssl provides a asyncio Transport which uses PyOpenSSL instead of
the built-in ssl module.

Koji scratch build:
https://koji.fedoraproject.org/koji/taskinfo?taskID=50999778

rpmlint output:
$ rpmlint python-aioopenssl-0.5.1-1.fc32.src.rpm 
python-aioopenssl.src: W: spelling-error Summary(en_US) asyncio -> syncopation
python-aioopenssl.src: W: spelling-error %description -l en_US asyncio ->
syncopation
python-aioopenssl.src: W: spelling-error %description -l en_US ssl -> isl, sol,
ssh
python-aioopenssl.src: W: spelling-error %description -l en_US starttlsTrue ->
starstruck
1 packages and 0 specfiles checked; 0 errors, 4 warnings.

$ rpmlint python3-aioopenssl-0.5.1-1.fc32.noarch.rpm 
python3-aioopenssl.noarch: W: spelling-error Summary(en_US) asyncio ->
syncopation
python3-aioopenssl.noarch: W: spelling-error %description -l en_US asyncio ->
syncopation
python3-aioopenssl.noarch: W: spelling-error %description -l en_US ssl -> isl,
sol, ssh
python3-aioopenssl.noarch: W: spelling-error %description -l en_US starttlsTrue
-> starstruck
1 packages and 0 specfiles checked; 0 errors, 4 warnings.

Fedora Account System Username: fab


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875937] Review Request: python-aioguardian - Python library for Elexa Guardian devices

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875937



--- Comment #4 from Gwyn Ciesla  ---
(fedscm-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/python-aioguardian


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1876901] New: Review Request: python-aiosasl - Protocol agnostic SASL Python library

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876901

Bug ID: 1876901
   Summary: Review Request: python-aiosasl - Protocol agnostic
SASL Python library
   Product: Fedora
   Version: rawhide
  Hardware: All
OS: Linux
Status: NEW
 Component: Package Review
  Severity: medium
  Priority: medium
  Assignee: nob...@fedoraproject.org
  Reporter: m...@fabian-affolter.ch
QA Contact: extras...@fedoraproject.org
CC: package-review@lists.fedoraproject.org
  Target Milestone: ---
Classification: Fedora




-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875996] Review Request: python-typish - Python library for additional control over types

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875996



--- Comment #6 from Gwyn Ciesla  ---
(fedscm-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/python-typish


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1876588] Review Request: python-spnego - Windows Negotiate Authentication Client and Server

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876588



--- Comment #1 from Mohamed El Morabity  ---
mock fails during tests, because of missing dependency on python3-cryptography.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1876864] New: Review Request: kealib - KEA is an HDF5 Based Raster File Format as a GDAL plugin

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876864

Bug ID: 1876864
   Summary: Review Request: kealib - KEA is an HDF5 Based Raster
File Format as a GDAL plugin
   Product: Fedora
   Version: rawhide
  Hardware: All
OS: Linux
Status: NEW
 Component: Package Review
  Severity: medium
  Priority: medium
  Assignee: nob...@fedoraproject.org
  Reporter: nete...@gmail.com
QA Contact: extras...@fedoraproject.org
CC: package-review@lists.fedoraproject.org
  Target Milestone: ---
Classification: Fedora



Spec URL: https://data.neteler.org/tmp/kealib.spec
SRPM URL:
https://download.copr.fedorainfracloud.org/results/neteler/kealib/fedora-32-x86_64/01652455-kealib/kealib-1.4.13-1.fc32.src.rpm
Description: KEALib is a project to provide an implementation of the GDAL
specification within the the HDF5 file format. Specifically, the format will
support raster attribute tables (commonly not included within other formats),
image pyramids, GDAL meta-data, in-built statistics while also providing large
file handling with compression used throughout the file. Being based on the
HDF5 standard, it will also provide a base from which other formats could be
derived and will be a good choice for long term data archiving. An independent
software library (KEALib) has been provided through which complete access to
the KEA image format is provided alongside a GDAL driver allowing KEA images to
be used through any GDAL supported software. Ref: Bunting, P., & Gillingham, S.
(2013). The KEA image file format. Computers and Geosciences, 57, 54-58.
Fedora Account System Username: neteler


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875277] Review Request: python-shelly - Library for Shelly smart home devices

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875277

Fedora Update System  changed:

   What|Removed |Added

 Status|POST|MODIFIED



--- Comment #4 from Fedora Update System  ---
FEDORA-2020-a6d49c1d3d has been submitted as an update to Fedora 33.
https://bodhi.fedoraproject.org/updates/FEDORA-2020-a6d49c1d3d


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875328] Review Request: python-aiocurrencylayer - Python wrapper for interacting with the currencylayer API

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875328

Fedora Update System  changed:

   What|Removed |Added

 Status|POST|MODIFIED



--- Comment #4 from Fedora Update System  ---
FEDORA-2020-b6a8b2a1b6 has been submitted as an update to Fedora 33.
https://bodhi.fedoraproject.org/updates/FEDORA-2020-b6a8b2a1b6


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1873199] Review Request: malcontent - Parental controls implementation

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1873199



--- Comment #11 from Kalev Lember  ---
Looks good to me now, thanks!


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 810049] Review Request: netbeans-ide - Netbeans Integrated Development Environment (IDE)

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=810049

Matthias Runge  changed:

   What|Removed |Added

 CC||mru...@redhat.com




-- 
You are receiving this mail because:
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1876006] Review Request: metrics2mqtt - Publish system performance metrics to a MQTT broker

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876006



--- Comment #5 from Igor Raits  ---
(fedscm-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/metrics2mqtt


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1873302] Review Request: IP2Location - IP2location library

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1873302



--- Comment #8 from Igor Raits  ---
(fedscm-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/IP2Location


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1876578] Review Request: python-kismet-rest - Python API for the Kismet REST interface

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876578



--- Comment #5 from Igor Raits  ---
(fedscm-admin):  The Pagure repository was created at
https://src.fedoraproject.org/rpms/python-kismet-rest


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1873199] Review Request: malcontent - Parental controls implementation

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1873199



--- Comment #10 from Bastien Nocera  ---
All done, same location.

Scratch build here:
https://koji.fedoraproject.org/koji/taskinfo?taskID=50989830


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1871765] Container Review Request: thoth-toolbox - This is a toolbox container image for Thoth tools

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1871765

Christoph Görn  changed:

   What|Removed |Added

Link ID||Github
   ||thoth-station/thoth-toolbox
   ||/issues/2




-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1871765] Container Review Request: thoth-toolbox - This is a toolbox container image for Thoth tools

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1871765

Christoph Görn  changed:

   What|Removed |Added

 Blocks||177841 (FE-NEEDSPONSOR)





Referenced Bugs:

https://bugzilla.redhat.com/show_bug.cgi?id=177841
[Bug 177841] Tracker: Review requests from new Fedora packagers who need a
sponsor
-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1871765] Container Review Request: thoth-toolbox - This is a toolbox container image for Thoth tools

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1871765



--- Comment #6 from Christoph Görn  ---
Hey all thanks for the review. I will work on the findings. I think I followed
https://docs.fedoraproject.org/en-US/containers/guidelines/contents/#_allowed_content
and interpreted "SHOULD NOT container" as... should not, rather than MUST NOT.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1875997] Review Request: python-jsons - Python library for (de)serializing objects to/from JSON

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1875997



--- Comment #3 from Fabian Affolter  ---
(In reply to Andy Mender from comment #1)
> > Koji scratch build:
> > fails due to missing dependency
> 
> Yes, the following needs to be added next to the existing BuildRequires:
> BuildRequires:python3dist(typish)

Added

%changelog
* Tue Sep 08 2020 Fabian Affolter  - 1.2.0-2
- Add missing BR (rhbz#1875997)

Updated files:
Spec URL: https://fab.fedorapeople.org/packages/SRPMS/python-jsons.spec
SRPM URL:
https://fab.fedorapeople.org/packages/SRPMS/python-jsons-1.2.0-2.fc32.src.rpm


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1876006] Review Request: metrics2mqtt - Publish system performance metrics to a MQTT broker

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876006



--- Comment #4 from Fabian Affolter  ---
(In reply to Andy Mender from comment #3)
> Yes, you are completely right, apologies!

No apologies needed for being thorough.

Thanks for the review and your support.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1872373] Review Request: rust-prost-build - Protocol Buffers implementation for the Rust Language

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1872373

Peter Robinson  changed:

   What|Removed |Added

  Flags||needinfo?(zebo...@gmail.com
   ||)



--- Comment #7 from Peter Robinson  ---
Robert I think the latest update fixes everything.


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 1876660] Review Request: flang - Flang is a Fortran language front-end designed for integration with LLVM

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1876660



--- Comment #1 from serge_sans_paille  ---
koji build: https://koji.fedoraproject.org/koji/taskinfo?taskID=50984165


-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org


[Bug 810049] Review Request: netbeans-ide - Netbeans Integrated Development Environment (IDE)

2020-09-08 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=810049

floor...@myhashpower.com changed:

   What|Removed |Added

 CC||floor...@myhashpower.com
  Flags|needinfo?(extras-qa@fedorap |
   |roject.org) |



--- Comment #175 from floor...@myhashpower.com ---


https://bestescortserviceindelhi.in
https://callgirlsindelhi.co.in


-- 
You are receiving this mail because:
You are always notified about changes to this product and component
___
package-review mailing list -- package-review@lists.fedoraproject.org
To unsubscribe send an email to package-review-le...@lists.fedoraproject.org
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/package-review@lists.fedoraproject.org