[Bug 1854729] Review Request: nispor - API for network state query written in rust

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

Robert-André Mauchin 🐧  changed:

   What|Removed |Added

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



--- Comment #16 from Robert-André Mauchin 🐧  ---
 - Add comments explaining why patches are needed

Patch1: 0001-varlink-Upgrade-to-rust-varlink-11.patch
Patch2: 0002-Makefile-Better-handling-on-libdir.patch

 - Please justify why you disabled the tests:

%bcond_with check

 -

env SKIP_PYTHON_INSTALL=1 DESTDIR=%{buildroot} PREFIX=/usr \
LIBDIR=%{_libdir} make install

→ 

env SKIP_PYTHON_INSTALL=1 PREFIX=%{_prefix} \
LIBDIR=%{_libdir} %make_install

 - Add license in these packages as well

%files -n   python3-%{name}
%license LICENSE
%{python3_sitelib}/nispor*

%files -n   rust-%{name}-devel
%license LICENSE
%{cargo_registry}/%{name}-%{version_no_tilde}/

 - In order to avoid unintentional soname bump, we recommend not globbing the
major soname version:

%{_libdir}/libnispor.so.0*

 - Add arch specific info for your Requires

%packagedevel
Summary:%{summary}
Requires:   nispor%{?_isa} = %{?epoch:%{epoch}:}%{version}-%{release}

 -Error while installing

DEBUG util.py:621:   Problem: conflicting requests
DEBUG util.py:621:- nothing provides libnispor.so()(64bit) needed by
nispor-devel-0.3.0-1.fc34.x86_64 

Not sure what's causing this:

rpm -q --provides -p nispor-devel-0.3.0-1.fc34.x86_64.rpm | sort -f | uniq -c  
21:19:36
  1 nispor-devel = 0.3.0-1.fc34
  1 nispor-devel(x86-64) = 0.3.0-1.fc34

rpm -q --requires -p nispor-devel-0.3.0-1.fc34.x86_64.rpm | sort -f | uniq -c  
  21:20:01
  1 libnispor.so()(64bit)
  1 nispor(x86-64) = 0.3.0-1.fc34
  1 rpmlib(CompressedFileNames) <= 3.0.4-1
  1 rpmlib(FileDigests) <= 4.6.0-1
  1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
  1 rpmlib(PayloadIsZstd) <= 5.4.18-1

It seems to me the library is badly compiled as it doesn't have a soname:

objdump -p libnispor.so.0.3.0  | grep SONAME

Could be why it isn't requiring libnispor.so()(64bit) instead of
libnispor.so.0.3.0()(64bit)

 - libnispor.so.0.3.0 is not marked as 0755:

-rw-r--r--. 1 bob bob 14M Aug 25 21:16 libnispor.so.0.3.0

Use:

chmod 0755 %{buildroot}%{_libdir}/libnispor.so.0.3.0

in install, but or use the patch I sent upstream to fix the Makefile, line 87:

install -v -D -m644 $(CLIB_SO_DEV_RELEASE) \
$(DESTDIR)$(LIBDIR)/$(CLIB_SO_FULL)

Should be 0755: https://github.com/nispor/nispor/pull/13

On a side note this allow you to reenable the debuginfo, now that the library
is executable, debuginfo will be correctly generated.

 - Also you should fix the Makefile to use "install -p" for files to keep the
timestamps.


-- 
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 1854729] Review Request: nispor - API for network state query written in rust

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



--- Comment #17 from Gris Ge  ---
Hi Robert-André Mauchin,

Thanks for the review.

Still fixing `libnispor.so()(64bit)` issue, the `SONAME` does not helps.


-- 
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 1854729] Review Request: nispor - API for network state query written in rust

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

Gris Ge  changed:

   What|Removed |Added

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



--- Comment #18 from Gris Ge  ---
New rpm SPEC uploaded: https://fedorapeople.org/~cathay4t/nispor/nispor.spec
New srpm:
https://download.copr.fedorainfracloud.org/results/cathay4t/nispor/fedora-rawhide-x86_64/01635398-nispor/nispor-0.4.0-1.fc34.src.rpm

Changes:
 * Upgrade to 0.4.0
 * Add license file to `nispor-devel`, `python3-nispor` and
`rust-nispor-devel`.
 * Fixed the SONAME which impact on the `nispor-devel` requirements. The root
cause is %cargo_prep override upstream `.cargo/config.toml`. Workaround by
merged upstream rustflags into %cargo_prep.


Thank you!


-- 
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 1854729] Review Request: nispor - API for network state query written in rust

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

Robert-André Mauchin 🐧  changed:

   What|Removed |Added

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



--- Comment #19 from Robert-André Mauchin 🐧  ---
nispor.src:124: W: libdir-macro-in-noarch-package (main package)
%{_libdir}/libnispor.so.*
nispor.src:134: W: libdir-macro-in-noarch-package devel %{_libdir}/libnispor.so

These packages should be noarch since you shipping arched binary code in it.



python3-nispor.noarch: E: useless-provides python3dist(nispor)
rust-nispor-devel.noarch: E: useless-provides crate(nispor)
rust-nispor+default-devel.noarch: E: useless-provides crate(nispor/default)

Not exactly sure what is causing that error to show up, but in all cases, 

Provides:   python3dist(%{name}) = %{version}
Provides:   crate(%{name}) = %{version}
Provides:   crate(%{name}/default) = %{version}

this shouldn't be necessary, they should be autodetected.


-- 
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 1854729] Review Request: nispor - API for network state query written in rust

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



--- Comment #20 from Gris Ge  ---
Thanks for the review.

I have updated the rpm SPEC:
https://fedorapeople.org/~cathay4t/nispor/nispor.spec
Source rpm:
https://fedorapeople.org/~cathay4t/nispor/nispor-0.4.0-2.fc34.src.rpm

Copr repo for testing: https://copr.fedorainfracloud.org/coprs/cathay4t/nispor/


-- 
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 1854729] Review Request: nispor - API for network state query written in rust

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

Robert-André Mauchin 🐧  changed:

   What|Removed |Added

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



--- Comment #21 from Robert-André Mauchin 🐧  ---
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 1854729] Review Request: nispor - API for network state query written in rust

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



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


-- 
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 1854729] Review Request: nispor - API for network state query written in rust

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

Gris Ge  changed:

   What|Removed |Added

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



--- Comment #23 from Gris Ge  ---
Hi Robert-André Mauchin,

Do you know how to include package into Fedora 33?

The rawhide build is named as f34.


-- 
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 1854729] Review Request: nispor - API for network state query written in rust

2020-09-07 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1854729
Bug 1854729 depends on bug 1860790, which changed state.

Bug 1860790 Summary: Review Request: rust-netlink-sys - The system 
tools(sockets, aync, etc) for rust binding
https://bugzilla.redhat.com/show_bug.cgi?id=1860790

   What|Removed |Added

 Status|POST|CLOSED
 Resolution|--- |CURRENTRELEASE




-- 
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 1854729] Review Request: nispor - API for network state query written in rust

2020-09-07 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1854729
Bug 1854729 depends on bug 1860787, which changed state.

Bug 1860787 Summary: Review Request: rust-netlink-proto - Netlink protocol 
constants for rust netlink binding
https://bugzilla.redhat.com/show_bug.cgi?id=1860787

   What|Removed |Added

 Status|POST|CLOSED
 Resolution|--- |CURRENTRELEASE




-- 
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 1854729] Review Request: nispor - API for network state query written in rust

2020-09-07 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1854729
Bug 1854729 depends on bug 1860785, which changed state.

Bug 1860785 Summary: Review Request: rust-netlink-packet-utils - Utils of rust 
netlink binding
https://bugzilla.redhat.com/show_bug.cgi?id=1860785

   What|Removed |Added

 Status|POST|CLOSED
 Resolution|--- |CURRENTRELEASE




-- 
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 1854729] Review Request: nispor - API for network state query written in rust

2020-09-07 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1854729
Bug 1854729 depends on bug 1860784, which changed state.

Bug 1860784 Summary: Review Request: rust-netlink-packet-route - rust binding 
for netlink route protocol
https://bugzilla.redhat.com/show_bug.cgi?id=1860784

   What|Removed |Added

 Status|POST|CLOSED
 Resolution|--- |CURRENTRELEASE




-- 
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 1854729] Review Request: nispor - API for network state query written in rust

2020-09-07 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1854729
Bug 1854729 depends on bug 1860781, which changed state.

Bug 1860781 Summary: Review Request: rust-netlink-packet-core - core package 
for netlink rust binding
https://bugzilla.redhat.com/show_bug.cgi?id=1860781

   What|Removed |Added

 Status|POST|CLOSED
 Resolution|--- |CURRENTRELEASE




-- 
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 1854729] Review Request: nispor - API for network state query written in rust

2020-09-07 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1854729
Bug 1854729 depends on bug 1860792, which changed state.

Bug 1860792 Summary: Review Request: rust-rtnetlink - The rtnetlink interface 
for rust netlink binding
https://bugzilla.redhat.com/show_bug.cgi?id=1860792

   What|Removed |Added

 Status|POST|CLOSED
 Resolution|--- |CURRENTRELEASE




-- 
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 1854729] Review Request: nispor - API for network state query written in rust

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

Gris Ge  changed:

   What|Removed |Added

 Status|POST|CLOSED
   Fixed In Version||nispor-0.5.0-2.fc34
 Resolution|--- |CURRENTRELEASE
  Flags|needinfo?(zebo...@gmail.com |
   |)   |
Last Closed||2020-09-07 07:52:19



--- Comment #24 from Gris Ge  ---
Never mind. I missed the deadline of Fedora 33.


-- 
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 1854729] Review Request: nispor - API for network state query written in rust

2020-07-27 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1854729

Gris Ge  changed:

   What|Removed |Added

Summary|Review Request: nispor -|Review Request: nispor -
   |API for network state query |API for network state query
   |writtent in rust|written in rust




-- 
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 1854729] Review Request: nispor - API for network state query written in rust

2020-08-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1854729
Bug 1854729 depends on bug 1860794, which changed state.

Bug 1860794 Summary: Review Request: rust-ctor  - Module initialization/global 
constructor functions for Rust
https://bugzilla.redhat.com/show_bug.cgi?id=1860794

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |NOTABUG




-- 
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 1854729] Review Request: nispor - API for network state query written in rust

2020-08-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1854729
Bug 1854729 depends on bug 1860800, which changed state.

Bug 1860800 Summary: Review Request: rust-ghost  - Define your own PhantomData 
and similarly behaved unit types in rust
https://bugzilla.redhat.com/show_bug.cgi?id=1860800

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |WONTFIX




-- 
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 1854729] Review Request: nispor - API for network state query written in rust

2020-08-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1854729
Bug 1854729 depends on bug 1860801, which changed state.

Bug 1860801 Summary: Review Request: rust-indoc - procedural macro for indented 
string literals
https://bugzilla.redhat.com/show_bug.cgi?id=1860801

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |WONTFIX




-- 
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 1854729] Review Request: nispor - API for network state query written in rust

2020-08-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1854729
Bug 1854729 depends on bug 1860798, which changed state.

Bug 1860798 Summary: Review Request: rust-inventory-impl - Implementation of 
macros for the `inventory` crate
https://bugzilla.redhat.com/show_bug.cgi?id=1860798

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |WONTFIX




-- 
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 1854729] Review Request: nispor - API for network state query written in rust

2020-08-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1854729
Bug 1854729 depends on bug 1860797, which changed state.

Bug 1860797 Summary: Review Request: rust-indoc-impl -  procedural macro for 
indented string literals
https://bugzilla.redhat.com/show_bug.cgi?id=1860797

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |WONTFIX




-- 
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 1854729] Review Request: nispor - API for network state query written in rust

2020-08-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1854729
Bug 1854729 depends on bug 1860803, which changed state.

Bug 1860803 Summary: Review Request: rust-inventory  - Rust typed distributed 
plugin registration.
https://bugzilla.redhat.com/show_bug.cgi?id=1860803

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |WONTFIX




-- 
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 1854729] Review Request: nispor - API for network state query written in rust

2020-08-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1854729
Bug 1854729 depends on bug 1860802, which changed state.

Bug 1860802 Summary: Review Request: rust-pyo3-derive-backend - implementation 
of the proc macro attributes of pyo3
https://bugzilla.redhat.com/show_bug.cgi?id=1860802

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |WONTFIX




-- 
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 1854729] Review Request: nispor - API for network state query written in rust

2020-08-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1854729
Bug 1854729 depends on bug 1860796, which changed state.

Bug 1860796 Summary: Review Request: rust-unindent  -  Compile time tool for 
indoc's indentation
https://bugzilla.redhat.com/show_bug.cgi?id=1860796

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |WONTFIX




-- 
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 1854729] Review Request: nispor - API for network state query written in rust

2020-08-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1854729
Bug 1854729 depends on bug 1860805, which changed state.

Bug 1860805 Summary: Review Request:  rust-pyo3cls  - Proc macros for rust-pyo3 
package
https://bugzilla.redhat.com/show_bug.cgi?id=1860805

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |WONTFIX




-- 
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 1854729] Review Request: nispor - API for network state query written in rust

2020-08-15 Thread bugzilla
https://bugzilla.redhat.com/show_bug.cgi?id=1854729
Bug 1854729 depends on bug 1860806, which changed state.

Bug 1860806 Summary: Review Request: rust-pyo3 - Rust bindings for the Python 
interpreter
https://bugzilla.redhat.com/show_bug.cgi?id=1860806

   What|Removed |Added

 Status|NEW |CLOSED
 Resolution|--- |WONTFIX




-- 
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 1854729] Review Request: nispor - API for network state query written in rust

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

Gris Ge  changed:

   What|Removed |Added

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



--- Comment #15 from Gris Ge  ---
New rpm SPEC uploaded: https://fedorapeople.org/~cathay4t/nispor/nispor.spec
New srpm:
https://download.copr.fedorainfracloud.org/results/cathay4t/nispor/fedora-rawhide-x86_64/01612205-nispor/nispor-0.3.0-1.fc34.src.rpm

Changes:
 * Upgrade to 0.3.0
 * `python3-nmstate` now have egginfo files.
 * Removed the need of rust-pyo3. So currently, missing dependent rust-crates
is rust-netlink and its subpackages.

Please also review these dependent rust-crates:

 * Bug 1860781 Review Request: rust-netlink-packet-core
 * Bug 1860784 Review Request: rust-netlink-packet-route
 * Bug 1860785 Review Request: rust-netlink-packet-utils
 * Bug 1860787 Review Request: rust-netlink-proto
 * Bug 1860790 Review Request: rust-netlink-sys
 * Bug 1860792 Review Request: rust-rtnetlink

Since I am actively working with rust-netlink upstream, I will be the rpm
maintainer of above packages also.


-- 
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