Spec URL: https://blackfile.fedorapeople.org/rust/rust-winapi-pcwg/rust-winapi-x86_64-pc-windows-gnu.spec SRPM URL: https://blackfile.fedorapeople.org/rust/rust-winapi-pcwg/rust-winapi-x86_64-pc-windows-gnu-0.4.0-1.fc29.src.rpm Description: Import libraries for the x86_64-pc-windows-gnu target. Fedora Account System Username:blackfile Koji build: https://koji.fedoraproject.org/koji/taskinfo?taskID=31020644
Update your rust2rpm to the very latest version (from Rawhide), your generated SPEC use the old format. Also I don't see the point of packaging this, it seems Windows only like Winapi, why do you need it?
Hello Robert, I would like include this Package "dutree" more info https://docs.rs/dutree/0.2.9/dutree/ this package need the follow Dependencies getopts ^0.2 regex ^0.2 terminal_size ^0.1.7 unicode-segmentation ^1.2.0 unicode-width ^0.1.1 now "terminal_size" it's not include yet on fedora this one requiere the follow Dependencies libc ^0.2 winapi ^0.3 "winapi" need the lib "winapi-x86_64-pc-windows-gnu" that I try to include referecen http://eminence.github.io/terminal-size/doc/terminal_size/index.html https://docs.rs/winapi/0.3.6/winapi/ I will be waiting your comments Thanks
This is not needed, when you package terminal_size, you need to patch the metadata (rust2rpm -p) to remove the windows only deps: [target.'cfg(windows)'.dependencies] winapi = { version = "0.3", features = ["winnt", "processenv", "wincon", "winbase"] }
Hi Robert, thanks for the suggestion that worked for me, I'll close this ticket regards