Spec URL: https://omajid.fedorapeople.org/package-review/dotnet3.1/dotnet3.1.spec SRPM URL: https://omajid.fedorapeople.org/package-review/dotnet3.1/dotnet3.1-3.1.101-1.fc33.src.rpm Description: .NET Core is a fast, lightweight and modular platform for creating cross platform applications that work on Linux, macOS and Windows. It particularly focuses on creating console applications, web applications and micro-services. .NET Core contains a runtime conforming to .NET Standards a set of framework libraries, an SDK containing compilers and a 'dotnet' application to drive everything. Fedora Account System Username: omajid A couple of things to note: - The SRPM is gigantic, around 2.5GB in size. Building it in mock will need around 50 GBs of disk size - This needs a bootstrap exception: https://pagure.io/packaging-committee/issue/946 - Building without bootstrap will require dotnet-build-reference-packages - The subpackages are named a bit non-standard to stay as close to the upstream recommendations as possible: https://docs.microsoft.com/en-us/dotnet/core/distribution-packaging as possible.
The SRPM is malformed. ################################# [100%] error: unpacking of archive failed on file /home/michael/rpmbuild/SOURCES/dotnet-v3.1.101-SDK.tar.gz;5e46a445: cpio: read failed - No such file or directory error: ./dotnet3.1-3.1.101-1.fc33.src.rpm cannot be installed
Sorry about that. I think I hit the disk quota and the server silently truncated the file. Here's a link that should work: https://spideroak.com/share/N5WWC2TJMQ/fedora/home/omajid/dotnet3.1/dotnet3.1.spec https://spideroak.com/share/N5WWC2TJMQ/fedora/home/omajid/dotnet3.1/dotnet3.1-3.1.101-1.fc33.src.rpm
I've performed an initial review and found the following issues. - /usr/lib64/dotnet is not owned. This package should own it if the package 'dotnet-build-reference-packages' is not required. If 'dotnet-build-reference-packages' is required then add a Requires: dotnet-build-reference-packages instead. - nethost.h is installed. Is it required for the runtime to run? It should go into a -devel subpackage, ideally. - /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Security.Cryptography.Native.OpenSsl.a - is this static library necessary for the runtime to run? It needs to either be removed or go into a -static subpackage if it is not necessary.
(In reply to Michael Cronenworth from comment #3) > I've performed an initial review and found the following issues. Thanks! > - /usr/lib64/dotnet is not owned. This package should own it if the package > 'dotnet-build-reference-packages' is not required. If > 'dotnet-build-reference-packages' is required then add a Requires: > dotnet-build-reference-packages instead. `dotnet-build-reference-packages` is a build-time-only dependency, so `/usr/lib64/dotnet` should be owned by some package/subpackage here. The spec file contains: %files -n dotnet-host %dir %{_libdir}/dotnet And dotnet-host needs to be installed for any other subpackage in this package to be installed. Can you help me figure out what other subpackage needs to own /usr/lib64/dotnet? > - nethost.h is installed. Is it required for the runtime to run? It should > go into a -devel subpackage, ideally. Supposedly, it's part of the runtime, since it is placed under `/usr/lib64/dotnet/shared/`, and `shared` is just a short form of "Shared Framework" aka "Runtime". I dont think the runtime itself requires it. It sounds like this is a way to host the .NET Core runtime (https://docs.microsoft.com/en-us/dotnet/core/tutorials/netcore-hosting) in a native application. If this is the only file, does it still make sense to put it in a separate -devel package? > - > /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Security. > Cryptography.Native.OpenSsl.a - is this static library necessary for the > runtime to run? It needs to either be removed or go into a -static > subpackage if it is not necessary. This is a bit complicated and even upstream doesn't have a very good handle on it: https://github.com/dotnet/runtime/issues/3447. As I understand it, some types of .NET applications require (or will require) the static libraries (at build-time?). Perhaps I should create a dotnet-runtime-3.1-devel subpackage and put the .h and .a files in it? I wonder what impact that might have if the files are not present and the user tries to build applications...
(In reply to Omair Majid from comment #4) > %files -n dotnet-host > %dir %{_libdir}/dotnet > > And dotnet-host needs to be installed for any other subpackage in this > package to be installed. Can you help me figure out what other subpackage > needs to own /usr/lib64/dotnet? You're right. I missed that %files line. No need to fix anything here. fedora-review didn't catch it. > > - nethost.h is installed. Is it required for the runtime to run? It should > > go into a -devel subpackage, ideally. > > Supposedly, it's part of the runtime, since it is placed under > `/usr/lib64/dotnet/shared/`, and `shared` is just a short form of "Shared > Framework" aka "Runtime". I dont think the runtime itself requires it. It > sounds like this is a way to host the .NET Core runtime > (https://docs.microsoft.com/en-us/dotnet/core/tutorials/netcore-hosting) in > a native application. If this is the only file, does it still make sense to > put it in a separate -devel package? If it is not in use by the runtime then yes a -devel package is required by the guidelines. > > - > > /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Security. > > Cryptography.Native.OpenSsl.a - is this static library necessary for the > > runtime to run? It needs to either be removed or go into a -static > > subpackage if it is not necessary. > > This is a bit complicated and even upstream doesn't have a very good handle > on it: https://github.com/dotnet/runtime/issues/3447. As I understand it, > some types of .NET applications require (or will require) the static > libraries (at build-time?). > > Perhaps I should create a dotnet-runtime-3.1-devel subpackage and put the .h > and .a files in it? I wonder what impact that might have if the files are > not present and the user tries to build applications... Looks like they are leaning to remove static libs. Would a C header and a static library be necessary to build a C# app?
(In reply to Michael Cronenworth from comment #5) > Looks like they are leaning to remove static libs. > > Would a C header and a static library be necessary to build a C# app? As far as I can tell, the C header is not required for C# applications. But the static library *may* be required depending on the build configuration (and release version). For example, this may work: dotnet publish -r linux-x64 -c Release But this *may* blow up: dotnet publish -r linux-x64 -c Release /p:PublishSingleFile=true And it wont be obvious that it's because of the missing static library since other .NET Core installations will include the static library and will appear to Just Work.
From the github issue (https://github.com/dotnet/runtime/issues/3447#issuecomment-461640228), I think PublishSingleFile cannot yet leverage the static libraries in 3.1. So it should be safe to remove them.
As this is a compiler and not a 'runtime' package as the name implies I don't have reservations any more. If it is safe to drop the .a and .h files then go ahead, but I no longer think they block the review. One minor issue is that your patches don't provide comments or context for their existance. I do see the git comments inside of them but a comment in the spec is always nice. Could you include a comment around them? This review will PASS. Thanks! Package Review ============== Legend: [x] = Pass, [!] = Fail, [-] = Not applicable, [?] = Not evaluated [ ] = Manual review needed ===== MUST items ===== C/C++: [x]: Package does not contain kernel modules. [x]: Package contains no static executables. [x]: Rpath absent or only used for internal libs. Note: See rpmlint output [x]: Development (unversioned) .so files in -devel subpackage, if present. Note: Unversioned so-files in private %_libdir subdirectory (see attachment). Verify they are not in ld path. [x]: If your application is a C or C++ application you must list a BuildRequires against gcc, gcc-c++ or clang. [x]: Package does not contain any libtool archives (.la) Generic: [x]: Package is licensed with an open-source compatible license and meets other legal requirements as defined in the legal section of Packaging Guidelines. [x]: License field in the package spec file matches the actual license. Note: Checking patched sources after %prep for licenses. Licenses found: "Unknown or generated", "*No copyright* Expat License", "Expat License", "*No copyright* Apache License (v2.0)", "*No copyright* Apache License (v2.0) GNU Lesser General Public License", "Apache License (v2.0)", "Public domain Apache License (v2.0)", "Expat License Apache License (v2.0)", "GNU Lesser General Public License", "Expat License BSD 3-clause "New" or "Revised" License", "*No copyright* Creative Commons Attribution Public License (v4.0)", "GPL (v2.0)", "zlib/libpng license Expat License", "BSD (unspecified)", "Expat License BSD 2-clause "Simplified" License", "BSD 3-clause "New" or "Revised" License", "*No copyright* Apache License GNU Lesser General Public License", "*No copyright* Apache License", "*No copyright* Expat License Public domain", "*No copyright* Public domain", "ISC License", "zlib/libpng license", "*No copyright* Creative Commons CC0 Public License (v3)", "Microsoft Public License", "Apache License (v9.0)", "GNU General Public License", "Expat License GNU General Public License", "*No copyright* Microsoft Public License", "SIL Open Font License (v1.1)", "Expat License Eclipse Public License (v1.0)", "BSD 2-clause "Simplified" License", "*No copyright* Creative Commons CC0 Public License (v9)". 60081 files have unknown license. Detailed output of licensecheck in /home/michael/Projects/fedora/review/1802803-dotnet3.1/licensecheck.txt [x]: License file installed when any subpackage combination is installed. [x]: If the package is under multiple licenses, the licensing breakdown must be documented in the spec. [x]: Package must own all directories that it creates. Note: Directories without known owners: /etc/profile.d, /usr/lib64/dotnet [x]: Package does not own files or directories owned by other packages. [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 not known to require an ExcludeArch tag. [x]: Package complies to the Packaging Guidelines [x]: Package successfully compiles and builds into binary rpms on at least one supported primary architecture. [x]: Package installs properly. [x]: Rpmlint is run on all rpms the build produces. Note: There are rpmlint messages (see attachment). [x]: If (and only if) the source package includes the text of the license(s) in its own file, then that file, containing the text of the license(s) for the package is included in %license. [x]: Package requires other packages for directories it uses. [x]: Package uses either %{buildroot} or $RPM_BUILD_ROOT [x]: Package does not run rm -rf %{buildroot} (or $RPM_BUILD_ROOT) at the beginning of %install. [x]: Macros in Summary, %description expandable at SRPM build time. [x]: Dist tag is present. [x]: Package does not contain duplicates in %files. [x]: Permissions on files are set properly. [x]: Package must not depend on deprecated() packages. [x]: Package use %makeinstall only when make install DESTDIR=... doesn't work. [x]: Package is named using only allowed ASCII characters. [x]: Package does not use a name that already exists. [x]: Package is not relocatable. [x]: Sources used to build the package match the upstream source, as provided in the spec URL. [x]: Spec file name must match the spec package %{name}, in the format %{name}.spec. [x]: File names are valid UTF-8. [x]: Large documentation must go in a -doc subpackage. Large could be size (~1MB) or number of files. Note: Documentation size is 0 bytes in 0 files. [x]: Packages must not store files under /srv, /opt or /usr/local ===== SHOULD items ===== Generic: [x]: If the source package does not include license text(s) as a separate file from upstream, the packager SHOULD query upstream to include it. [x]: Final provides and requires are sane (see attachments). [x]: Fully versioned dependency in subpackages if applicable. [x]: Package functions as described. [x]: Latest version is packaged. [x]: Package does not include license text files separate from upstream. [!]: Patches link to upstream bugs/comments/lists or are otherwise justified. [x]: SourceX tarball generation or download is documented. Note: Package contains tarball without URL, check comments [-]: Sources are verified with gpgverify first in %prep if upstream publishes signatures. Note: gpgverify is not used. [-]: Description and summary sections in the package spec file contains translations for supported Non-English languages, if available. [x]: %check is present and all tests pass. [x]: Packages should try to preserve timestamps of original installed files. [x]: Reviewer should test that the package builds in mock. [x]: Buildroot is not present [x]: Package has no %clean section with rm -rf %{buildroot} (or $RPM_BUILD_ROOT) [x]: No file requires outside of /etc, /bin, /sbin, /usr/bin, /usr/sbin. [x]: Packager, Vendor, PreReq, Copyright tags should not be in spec file [x]: SourceX is a working URL. [x]: Package should compile and build into binary rpms on all supported architectures. [x]: Spec use %global instead of %define unless justified. ===== EXTRA items ===== Generic: [x]: Rpmlint is run on debuginfo package(s). Note: No rpmlint messages. [x]: Rpmlint is run on all installed packages. Note: There are rpmlint messages (see attachment). [x]: Large data in /usr/share should live in a noarch subpackage if package is arched. [x]: Spec file according to URL is the same as in SRPM. Rpmlint ------- Checking: dotnet-3.1.101-1.fc31~bootstrap.x86_64.rpm dotnet-host-3.1.1-1.fc31~bootstrap.x86_64.rpm dotnet-hostfxr-3.1-3.1.1-1.fc31~bootstrap.x86_64.rpm dotnet-runtime-3.1-3.1.1-1.fc31~bootstrap.x86_64.rpm aspnetcore-runtime-3.1-3.1.1-1.fc31~bootstrap.x86_64.rpm dotnet-templates-3.1-3.1.101-1.fc31~bootstrap.x86_64.rpm dotnet-sdk-3.1-3.1.101-1.fc31~bootstrap.x86_64.rpm dotnet-apphost-pack-3.1-3.1.1-1.fc31~bootstrap.x86_64.rpm dotnet-targeting-pack-3.1-3.1.1-1.fc31~bootstrap.x86_64.rpm aspnetcore-targeting-pack-3.1-3.1.1-1.fc31~bootstrap.x86_64.rpm netstandard-targeting-pack-2.1-3.1.101-1.fc31~bootstrap.x86_64.rpm dotnet-sdk-3.1-source-built-artifacts-3.1.101-1.fc31~bootstrap.x86_64.rpm dotnet3.1-debuginfo-3.1.101-1.fc31~bootstrap.x86_64.rpm dotnet3.1-debugsource-3.1.101-1.fc31~bootstrap.x86_64.rpm dotnet3.1-3.1.101-1.fc31~bootstrap.src.rpm dotnet.x86_64: W: spelling-error %description -l en_US macOS -> ma Cos, mac OS, mac-OS dotnet.x86_64: W: no-documentation dotnet-host.x86_64: W: non-conffile-in-etc /etc/dotnet/install_location dotnet-host.x86_64: W: non-conffile-in-etc /etc/profile.d/dotnet.sh dotnet-hostfxr-3.1.x86_64: W: no-documentation dotnet-runtime-3.1.x86_64: E: explicit-lib-dependency libicu(x86-64) dotnet-runtime-3.1.x86_64: W: crypto-policy-non-compliance-openssl /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Security.Cryptography.Native.OpenSsl.so SSL_CTX_set_cipher_list dotnet-runtime-3.1.x86_64: E: binary-or-shlib-defines-rpath /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/createdump ['$ORIGIN'] dotnet-runtime-3.1.x86_64: E: binary-or-shlib-defines-rpath /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/libmscordbi.so ['$ORIGIN'] dotnet-runtime-3.1.x86_64: W: no-documentation dotnet-runtime-3.1.x86_64: W: hidden-file-or-dir /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/.version dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/Microsoft.VisualBasic.ni.{96aead4f-45e9-4cc2-a9df-c5d48b5dbe39}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.AppContext.ni.{5585bb87-96ef-4c33-8858-a9bb83bb15c8}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.ComponentModel.DataAnnotations.ni.{f155b7ed-6d74-43c3-98cb-055367a549b8}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Configuration.ni.{9c74abbe-6b51-4284-944f-5220561bd7e3}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Core.ni.{373b7dde-07ad-4d7f-91b0-910feed5038f}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Data.DataSetExtensions.ni.{8c09e62a-4bfd-47ba-8fd9-544dce76caf2}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Data.ni.{4b789185-9fe6-40f1-b69e-21a13034474e}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Diagnostics.Contracts.ni.{17d2c169-7d0f-455e-88bf-3b4fc7e4f7c9}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Diagnostics.Debug.ni.{0d29ebb2-1f03-4200-9ac1-4c819af922aa}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Diagnostics.Tracing.ni.{4fa2774c-3a23-419f-99a2-ec8aeecb977c}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Drawing.ni.{bef1b60e-23a3-4250-ba0f-549eb195bbab}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Dynamic.Runtime.ni.{44cf56dc-0ef5-4fb7-8ea9-809dd8efce92}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Globalization.Calendars.ni.{d92d46b4-9e10-4e0f-89ea-c52f01523a7f}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Globalization.Extensions.ni.{45ca8113-ce5e-4a9b-85af-3fb6507c1b7b}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Globalization.ni.{59f90dc1-98f5-4963-b55c-2372435f983e}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.IO.Compression.FileSystem.ni.{e5068d2e-346e-475a-b1d3-a1829df3a480}.map dotnet-runtime-3.1.x86_64: W: devel-file-in-non-devel-package /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.IO.Compression.Native.a dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.IO.FileSystem.Primitives.ni.{fdf953cf-468b-422b-8440-a11af2dbb186}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.IO.UnmanagedMemoryStream.ni.{72fbbe79-4e36-4089-a6e6-3e02e8c8751d}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.IO.ni.{0eaa2ef0-0d16-43b0-adcf-b1142a1105b6}.map dotnet-runtime-3.1.x86_64: W: devel-file-in-non-devel-package /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Native.a dotnet-runtime-3.1.x86_64: W: devel-file-in-non-devel-package /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Net.Http.Native.a dotnet-runtime-3.1.x86_64: W: devel-file-in-non-devel-package /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Net.Security.Native.a dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Net.ni.{7f6a3ca7-7561-422e-bc9f-8a0c7c53e275}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Numerics.ni.{0dd5afb3-8644-4dd9-bc6e-f8382c92e6d9}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Reflection.Emit.ILGeneration.ni.{7db3d9bc-a21d-491d-aacd-01c0c62c9bc5}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Reflection.Emit.Lightweight.ni.{2ff04277-8e85-4525-844c-ab85ca64c714}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Reflection.Emit.ni.{5e93ee79-27b8-47ce-a076-500c57b42229}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Reflection.Extensions.ni.{bfbb0e5c-0136-45a8-9121-5b859581a96f}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Reflection.Primitives.ni.{7f66a772-0b6e-4ce6-bfbe-fe01585128dd}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Reflection.ni.{5c4f0535-2712-4c57-a138-1c06d7cee644}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Resources.Reader.ni.{2770163f-cf3c-4b83-ac01-7657bafb6a0d}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Resources.ResourceManager.ni.{288fd683-dccf-43d4-9652-91d4fd1cda21}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Runtime.Handles.ni.{f948576f-33b3-4d59-817c-329e549b1121}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Runtime.Intrinsics.ni.{6066fed5-a4f0-4f47-82ff-fba8bcf93b88}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Runtime.Loader.ni.{93669e57-e743-45ee-b8f4-6699bf9384bb}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Runtime.Serialization.Json.ni.{83727c48-cd20-43d7-8725-1e5d8ee09abd}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Runtime.Serialization.Xml.ni.{b20a018c-c4d1-430d-8df1-1443d0406f04}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Runtime.Serialization.ni.{1bb62cb7-fb99-4298-b6b8-0b7cd3f0d328}.map dotnet-runtime-3.1.x86_64: W: devel-file-in-non-devel-package /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Security.Cryptography.Native.OpenSsl.a dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Security.Principal.ni.{c5234057-ed91-4f7b-9ba2-d9ece7a6964f}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Security.SecureString.ni.{9714957b-ba35-48da-bff4-4dd2a6c2a408}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Security.ni.{117a623d-6ee4-4ba2-b2fc-d45adfdd81d5}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.ServiceModel.Web.ni.{da022df5-83e3-456d-aae4-a7908673b52b}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.ServiceProcess.ni.{59b1a8d4-357d-4b06-b10e-8c0ebb536817}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Text.Encoding.Extensions.ni.{0ef9992f-fea1-44fa-9475-f4b1fd2a3a48}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Text.Encoding.ni.{961507e6-086f-4b79-97c9-8067c2e66731}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Threading.Tasks.Extensions.ni.{8091617d-728c-488e-987a-9193ded6913b}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Threading.Tasks.ni.{65211ec1-23b4-4a65-8648-f6f50a0946dd}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Threading.ThreadPool.ni.{1f609cb6-0601-4564-880c-ff93907c9653}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Threading.Timer.ni.{d5606a47-6414-4a8b-8615-989d0904b4bd}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Transactions.ni.{9bddf67a-8056-4ba2-9d64-60346abf5a44}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.ValueTuple.ni.{13022b74-ce8a-4eda-81f1-e06d82f1cbec}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Web.ni.{8ac3ef9b-b706-4a79-a074-f00dde1113a2}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Windows.ni.{2ab937e8-0a6e-4143-bc03-1da4d434c560}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Xml.Linq.ni.{93626d11-db2e-4459-abbf-036b6b67b2a3}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Xml.ReaderWriter.ni.{851ea3ad-a027-41c4-8a64-c683037309aa}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Xml.Serialization.ni.{82fef3ed-82c1-43fd-9111-d57f56e64e4c}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Xml.XDocument.ni.{77858dfd-c21b-4956-b17a-b3e351e8ccf3}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Xml.XPath.ni.{369cbd5c-e4b5-4a1d-b55b-f6007d99f31b}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Xml.XmlDocument.ni.{2bcce0ba-e797-4386-b584-c6a92d951474}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Xml.XmlSerializer.ni.{600bc6ac-228e-44a4-9232-f0a096af270d}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Xml.ni.{70d92f22-81ac-40df-9f11-016316cc52e7}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.ni.{ff88056b-fa33-4d37-b119-a81b8bc2dc1c}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/WindowsBase.ni.{dd94d808-9265-4ab5-bdf3-6e7bb581106f}.map dotnet-runtime-3.1.x86_64: W: devel-file-in-non-devel-package /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/nethost.h dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/netstandard.ni.{33b4a89e-6cdb-4570-8c0f-9639f9b24275}.map aspnetcore-runtime-3.1.x86_64: W: only-non-binary-in-usr-lib aspnetcore-runtime-3.1.x86_64: W: no-documentation aspnetcore-runtime-3.1.x86_64: W: hidden-file-or-dir /usr/lib64/dotnet/shared/Microsoft.AspNetCore.App/3.1.1/.version dotnet-templates-3.1.x86_64: W: only-non-binary-in-usr-lib dotnet-templates-3.1.x86_64: W: no-documentation dotnet-sdk-3.1.x86_64: E: binary-or-shlib-defines-rpath /usr/lib64/dotnet/sdk/3.1.101/AppHostTemplate/apphost ['$ORIGIN/netcoredeps'] dotnet-sdk-3.1.x86_64: W: no-documentation dotnet-sdk-3.1.x86_64: W: hidden-file-or-dir /usr/lib64/dotnet/sdk/3.1.101/.toolsetversion dotnet-sdk-3.1.x86_64: W: hidden-file-or-dir /usr/lib64/dotnet/sdk/3.1.101/.version dotnet-sdk-3.1.x86_64: E: zero-length /usr/lib64/dotnet/sdk/3.1.101/Sdks/Microsoft.NET.Sdk.Razor/lib/netstandard2.0/_._ dotnet-apphost-pack-3.1.x86_64: W: spelling-error Summary(en_US) NETCore -> Net Core, Net-core, Coronet dotnet-apphost-pack-3.1.x86_64: W: spelling-error %description -l en_US NETCore -> Net Core, Net-core, Coronet dotnet-apphost-pack-3.1.x86_64: E: binary-or-shlib-defines-rpath /usr/lib64/dotnet/packs/Microsoft.NETCore.App.Host.fedora.31-x64/3.1.1/runtimes/fedora.31-x64/native/apphost ['$ORIGIN/netcoredeps'] dotnet-apphost-pack-3.1.x86_64: W: no-documentation dotnet-apphost-pack-3.1.x86_64: W: devel-file-in-non-devel-package /usr/lib64/dotnet/packs/Microsoft.NETCore.App.Host.fedora.31-x64/3.1.1/runtimes/fedora.31-x64/native/nethost.h dotnet-targeting-pack-3.1.x86_64: W: spelling-error Summary(en_US) NETCore -> Net Core, Net-core, Coronet dotnet-targeting-pack-3.1.x86_64: W: spelling-error %description -l en_US NETCore -> Net Core, Net-core, Coronet dotnet-targeting-pack-3.1.x86_64: W: only-non-binary-in-usr-lib dotnet-targeting-pack-3.1.x86_64: W: no-documentation aspnetcore-targeting-pack-3.1.x86_64: E: description-line-too-long C that allows developers to compile against and target Microsoft.AspNetCore.App 3.1 aspnetcore-targeting-pack-3.1.x86_64: W: only-non-binary-in-usr-lib aspnetcore-targeting-pack-3.1.x86_64: W: no-documentation netstandard-targeting-pack-2.1.x86_64: W: only-non-binary-in-usr-lib netstandard-targeting-pack-2.1.x86_64: W: no-documentation dotnet-sdk-3.1-source-built-artifacts.x86_64: W: only-non-binary-in-usr-lib dotnet-sdk-3.1-source-built-artifacts.x86_64: W: no-documentation dotnet-sdk-3.1-source-built-artifacts.x86_64: W: spurious-executable-perm /usr/lib64/dotnet/source-built-artifacts/Private.SourceBuilt.Artifacts.0.1.0-.tar.gz dotnet3.1.src: W: spelling-error %description -l en_US macOS -> ma Cos, mac OS, mac-OS dotnet3.1.src: W: spelling-error %description -l en_US dotnet -> botnet, dot net, dot-net dotnet3.1.src: W: strange-permission check-debug-symbols.py 755 dotnet3.1.src:247: W: unversioned-explicit-provides bundled(js-jquery) dotnet3.1.src:248: W: unversioned-explicit-provides bundled(npm) dotnet3.1.src: W: invalid-url Source0: dotnet-v3.1.101-SDK.tar.gz 15 packages and 0 specfiles checked; 68 errors, 43 warnings. Rpmlint (debuginfo) ------------------- Checking: dotnet3.1-debuginfo-3.1.101-1.fc31~bootstrap.x86_64.rpm 1 packages and 0 specfiles checked; 0 errors, 0 warnings. Rpmlint (installed packages) ---------------------------- perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = (unset), LC_ALL = (unset), LC_CTYPE = "C.UTF-8", LANG = "en_US.utf8" are supported and installed on your system. perl: warning: Falling back to the standard locale ("C"). perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = (unset), LC_ALL = (unset), LC_CTYPE = "C.UTF-8", LANG = "en_US.utf8" are supported and installed on your system. perl: warning: Falling back to the standard locale ("C"). dotnet-apphost-pack-3.1.x86_64: W: spelling-error Summary(en_US) NETCore -> Net Core, Net-core, Coronet dotnet-apphost-pack-3.1.x86_64: W: spelling-error %description -l en_US NETCore -> Net Core, Net-core, Coronet dotnet-apphost-pack-3.1.x86_64: W: invalid-url URL: https://github.com/dotnet/ <urlopen error [Errno -2] Name or service not known> dotnet-apphost-pack-3.1.x86_64: E: binary-or-shlib-defines-rpath /usr/lib64/dotnet/packs/Microsoft.NETCore.App.Host.fedora.31-x64/3.1.1/runtimes/fedora.31-x64/native/apphost ['$ORIGIN/netcoredeps'] dotnet-apphost-pack-3.1.x86_64: W: no-documentation dotnet-apphost-pack-3.1.x86_64: W: devel-file-in-non-devel-package /usr/lib64/dotnet/packs/Microsoft.NETCore.App.Host.fedora.31-x64/3.1.1/runtimes/fedora.31-x64/native/nethost.h dotnet3.1-debuginfo.x86_64: W: invalid-url URL: https://github.com/dotnet/ <urlopen error [Errno -2] Name or service not known> dotnet-hostfxr-3.1.x86_64: W: invalid-url URL: https://github.com/dotnet/ <urlopen error [Errno -2] Name or service not known> dotnet-hostfxr-3.1.x86_64: W: no-documentation dotnet3.1-debugsource.x86_64: W: invalid-url URL: https://github.com/dotnet/ <urlopen error [Errno -2] Name or service not known> dotnet-runtime-3.1.x86_64: E: explicit-lib-dependency libicu(x86-64) dotnet-runtime-3.1.x86_64: W: invalid-url URL: https://github.com/dotnet/ <urlopen error [Errno -2] Name or service not known> dotnet-runtime-3.1.x86_64: W: crypto-policy-non-compliance-openssl /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Security.Cryptography.Native.OpenSsl.so SSL_CTX_set_cipher_list dotnet-runtime-3.1.x86_64: E: binary-or-shlib-defines-rpath /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/createdump ['$ORIGIN'] dotnet-runtime-3.1.x86_64: E: binary-or-shlib-defines-rpath /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/libmscordbi.so ['$ORIGIN'] dotnet-runtime-3.1.x86_64: W: no-documentation dotnet-runtime-3.1.x86_64: W: hidden-file-or-dir /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/.version dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/Microsoft.VisualBasic.ni.{96aead4f-45e9-4cc2-a9df-c5d48b5dbe39}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.AppContext.ni.{5585bb87-96ef-4c33-8858-a9bb83bb15c8}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.ComponentModel.DataAnnotations.ni.{f155b7ed-6d74-43c3-98cb-055367a549b8}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Configuration.ni.{9c74abbe-6b51-4284-944f-5220561bd7e3}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Core.ni.{373b7dde-07ad-4d7f-91b0-910feed5038f}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Data.DataSetExtensions.ni.{8c09e62a-4bfd-47ba-8fd9-544dce76caf2}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Data.ni.{4b789185-9fe6-40f1-b69e-21a13034474e}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Diagnostics.Contracts.ni.{17d2c169-7d0f-455e-88bf-3b4fc7e4f7c9}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Diagnostics.Debug.ni.{0d29ebb2-1f03-4200-9ac1-4c819af922aa}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Diagnostics.Tracing.ni.{4fa2774c-3a23-419f-99a2-ec8aeecb977c}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Drawing.ni.{bef1b60e-23a3-4250-ba0f-549eb195bbab}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Dynamic.Runtime.ni.{44cf56dc-0ef5-4fb7-8ea9-809dd8efce92}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Globalization.Calendars.ni.{d92d46b4-9e10-4e0f-89ea-c52f01523a7f}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Globalization.Extensions.ni.{45ca8113-ce5e-4a9b-85af-3fb6507c1b7b}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Globalization.ni.{59f90dc1-98f5-4963-b55c-2372435f983e}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.IO.Compression.FileSystem.ni.{e5068d2e-346e-475a-b1d3-a1829df3a480}.map dotnet-runtime-3.1.x86_64: W: devel-file-in-non-devel-package /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.IO.Compression.Native.a dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.IO.FileSystem.Primitives.ni.{fdf953cf-468b-422b-8440-a11af2dbb186}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.IO.UnmanagedMemoryStream.ni.{72fbbe79-4e36-4089-a6e6-3e02e8c8751d}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.IO.ni.{0eaa2ef0-0d16-43b0-adcf-b1142a1105b6}.map dotnet-runtime-3.1.x86_64: W: devel-file-in-non-devel-package /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Native.a dotnet-runtime-3.1.x86_64: W: devel-file-in-non-devel-package /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Net.Http.Native.a dotnet-runtime-3.1.x86_64: W: devel-file-in-non-devel-package /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Net.Security.Native.a dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Net.ni.{7f6a3ca7-7561-422e-bc9f-8a0c7c53e275}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Numerics.ni.{0dd5afb3-8644-4dd9-bc6e-f8382c92e6d9}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Reflection.Emit.ILGeneration.ni.{7db3d9bc-a21d-491d-aacd-01c0c62c9bc5}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Reflection.Emit.Lightweight.ni.{2ff04277-8e85-4525-844c-ab85ca64c714}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Reflection.Emit.ni.{5e93ee79-27b8-47ce-a076-500c57b42229}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Reflection.Extensions.ni.{bfbb0e5c-0136-45a8-9121-5b859581a96f}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Reflection.Primitives.ni.{7f66a772-0b6e-4ce6-bfbe-fe01585128dd}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Reflection.ni.{5c4f0535-2712-4c57-a138-1c06d7cee644}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Resources.Reader.ni.{2770163f-cf3c-4b83-ac01-7657bafb6a0d}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Resources.ResourceManager.ni.{288fd683-dccf-43d4-9652-91d4fd1cda21}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Runtime.Handles.ni.{f948576f-33b3-4d59-817c-329e549b1121}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Runtime.Intrinsics.ni.{6066fed5-a4f0-4f47-82ff-fba8bcf93b88}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Runtime.Loader.ni.{93669e57-e743-45ee-b8f4-6699bf9384bb}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Runtime.Serialization.Json.ni.{83727c48-cd20-43d7-8725-1e5d8ee09abd}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Runtime.Serialization.Xml.ni.{b20a018c-c4d1-430d-8df1-1443d0406f04}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Runtime.Serialization.ni.{1bb62cb7-fb99-4298-b6b8-0b7cd3f0d328}.map dotnet-runtime-3.1.x86_64: W: devel-file-in-non-devel-package /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Security.Cryptography.Native.OpenSsl.a dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Security.Principal.ni.{c5234057-ed91-4f7b-9ba2-d9ece7a6964f}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Security.SecureString.ni.{9714957b-ba35-48da-bff4-4dd2a6c2a408}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Security.ni.{117a623d-6ee4-4ba2-b2fc-d45adfdd81d5}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.ServiceModel.Web.ni.{da022df5-83e3-456d-aae4-a7908673b52b}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.ServiceProcess.ni.{59b1a8d4-357d-4b06-b10e-8c0ebb536817}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Text.Encoding.Extensions.ni.{0ef9992f-fea1-44fa-9475-f4b1fd2a3a48}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Text.Encoding.ni.{961507e6-086f-4b79-97c9-8067c2e66731}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Threading.Tasks.Extensions.ni.{8091617d-728c-488e-987a-9193ded6913b}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Threading.Tasks.ni.{65211ec1-23b4-4a65-8648-f6f50a0946dd}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Threading.ThreadPool.ni.{1f609cb6-0601-4564-880c-ff93907c9653}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Threading.Timer.ni.{d5606a47-6414-4a8b-8615-989d0904b4bd}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Transactions.ni.{9bddf67a-8056-4ba2-9d64-60346abf5a44}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.ValueTuple.ni.{13022b74-ce8a-4eda-81f1-e06d82f1cbec}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Web.ni.{8ac3ef9b-b706-4a79-a074-f00dde1113a2}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Windows.ni.{2ab937e8-0a6e-4143-bc03-1da4d434c560}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Xml.Linq.ni.{93626d11-db2e-4459-abbf-036b6b67b2a3}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Xml.ReaderWriter.ni.{851ea3ad-a027-41c4-8a64-c683037309aa}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Xml.Serialization.ni.{82fef3ed-82c1-43fd-9111-d57f56e64e4c}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Xml.XDocument.ni.{77858dfd-c21b-4956-b17a-b3e351e8ccf3}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Xml.XPath.ni.{369cbd5c-e4b5-4a1d-b55b-f6007d99f31b}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Xml.XmlDocument.ni.{2bcce0ba-e797-4386-b584-c6a92d951474}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Xml.XmlSerializer.ni.{600bc6ac-228e-44a4-9232-f0a096af270d}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Xml.ni.{70d92f22-81ac-40df-9f11-016316cc52e7}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.ni.{ff88056b-fa33-4d37-b119-a81b8bc2dc1c}.map dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/WindowsBase.ni.{dd94d808-9265-4ab5-bdf3-6e7bb581106f}.map dotnet-runtime-3.1.x86_64: W: devel-file-in-non-devel-package /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/nethost.h dotnet-runtime-3.1.x86_64: E: zero-length /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/netstandard.ni.{33b4a89e-6cdb-4570-8c0f-9639f9b24275}.map dotnet-templates-3.1.x86_64: W: invalid-url URL: https://github.com/dotnet/ <urlopen error [Errno -2] Name or service not known> dotnet-templates-3.1.x86_64: W: only-non-binary-in-usr-lib dotnet-templates-3.1.x86_64: W: no-documentation aspnetcore-runtime-3.1.x86_64: W: invalid-url URL: https://github.com/dotnet/ <urlopen error [Errno -2] Name or service not known> aspnetcore-runtime-3.1.x86_64: W: only-non-binary-in-usr-lib aspnetcore-runtime-3.1.x86_64: W: no-documentation aspnetcore-runtime-3.1.x86_64: W: hidden-file-or-dir /usr/lib64/dotnet/shared/Microsoft.AspNetCore.App/3.1.1/.version dotnet-targeting-pack-3.1.x86_64: W: spelling-error Summary(en_US) NETCore -> Net Core, Net-core, Coronet dotnet-targeting-pack-3.1.x86_64: W: spelling-error %description -l en_US NETCore -> Net Core, Net-core, Coronet dotnet-targeting-pack-3.1.x86_64: W: invalid-url URL: https://github.com/dotnet/ <urlopen error [Errno -2] Name or service not known> dotnet-targeting-pack-3.1.x86_64: W: only-non-binary-in-usr-lib dotnet-targeting-pack-3.1.x86_64: W: no-documentation dotnet-sdk-3.1-source-built-artifacts.x86_64: W: invalid-url URL: https://github.com/dotnet/ <urlopen error [Errno -2] Name or service not known> dotnet-sdk-3.1-source-built-artifacts.x86_64: W: only-non-binary-in-usr-lib dotnet-sdk-3.1-source-built-artifacts.x86_64: W: no-documentation dotnet-sdk-3.1-source-built-artifacts.x86_64: W: spurious-executable-perm /usr/lib64/dotnet/source-built-artifacts/Private.SourceBuilt.Artifacts.0.1.0-.tar.gz dotnet-sdk-3.1.x86_64: W: invalid-url URL: https://github.com/dotnet/ <urlopen error [Errno -2] Name or service not known> dotnet-sdk-3.1.x86_64: E: binary-or-shlib-defines-rpath /usr/lib64/dotnet/sdk/3.1.101/AppHostTemplate/apphost ['$ORIGIN/netcoredeps'] dotnet-sdk-3.1.x86_64: W: no-documentation dotnet-sdk-3.1.x86_64: W: hidden-file-or-dir /usr/lib64/dotnet/sdk/3.1.101/.toolsetversion dotnet-sdk-3.1.x86_64: W: hidden-file-or-dir /usr/lib64/dotnet/sdk/3.1.101/.version dotnet-sdk-3.1.x86_64: E: zero-length /usr/lib64/dotnet/sdk/3.1.101/Sdks/Microsoft.NET.Sdk.Razor/lib/netstandard2.0/_._ netstandard-targeting-pack-2.1.x86_64: W: invalid-url URL: https://github.com/dotnet/ <urlopen error [Errno -2] Name or service not known> netstandard-targeting-pack-2.1.x86_64: W: only-non-binary-in-usr-lib netstandard-targeting-pack-2.1.x86_64: W: no-documentation aspnetcore-targeting-pack-3.1.x86_64: E: description-line-too-long C that allows developers to compile against and target Microsoft.AspNetCore.App 3.1 aspnetcore-targeting-pack-3.1.x86_64: W: invalid-url URL: https://github.com/dotnet/ <urlopen error [Errno -2] Name or service not known> aspnetcore-targeting-pack-3.1.x86_64: W: only-non-binary-in-usr-lib aspnetcore-targeting-pack-3.1.x86_64: W: no-documentation dotnet-host.x86_64: W: invalid-url URL: https://github.com/dotnet/ <urlopen error [Errno -2] Name or service not known> dotnet-host.x86_64: W: non-conffile-in-etc /etc/dotnet/install_location dotnet-host.x86_64: W: non-conffile-in-etc /etc/profile.d/dotnet.sh dotnet.x86_64: W: spelling-error %description -l en_US macOS -> ma Cos, mac OS, mac-OS dotnet.x86_64: W: invalid-url URL: https://github.com/dotnet/ <urlopen error [Errno -2] Name or service not known> dotnet.x86_64: W: no-documentation 14 packages and 0 specfiles checked; 68 errors, 51 warnings. Unversioned so-files -------------------- dotnet-hostfxr-3.1: /usr/lib64/dotnet/host/fxr/3.1.1/libhostfxr.so dotnet-runtime-3.1: /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Globalization.Native.so dotnet-runtime-3.1: /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.IO.Compression.Native.so dotnet-runtime-3.1: /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Native.so dotnet-runtime-3.1: /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Net.Http.Native.so dotnet-runtime-3.1: /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Net.Security.Native.so dotnet-runtime-3.1: /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/System.Security.Cryptography.Native.OpenSsl.so dotnet-runtime-3.1: /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/libclrjit.so dotnet-runtime-3.1: /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/libcoreclr.so dotnet-runtime-3.1: /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/libcoreclrtraceptprovider.so dotnet-runtime-3.1: /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/libdbgshim.so dotnet-runtime-3.1: /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/libhostpolicy.so dotnet-runtime-3.1: /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/libmscordaccore.so dotnet-runtime-3.1: /usr/lib64/dotnet/shared/Microsoft.NETCore.App/3.1.1/libmscordbi.so dotnet-apphost-pack-3.1: /usr/lib64/dotnet/packs/Microsoft.NETCore.App.Host.fedora.31-x64/3.1.1/runtimes/fedora.31-x64/native/libnethost.so Requires -------- dotnet (rpmlib, GLIBC filtered): dotnet-sdk-3.1(x86-64) dotnet-host (rpmlib, GLIBC filtered): ld-linux-x86-64.so.2()(64bit) libc.so.6()(64bit) libdl.so.2()(64bit) libgcc_s.so.1()(64bit) libgcc_s.so.1(GCC_3.0)(64bit) libpthread.so.0()(64bit) libstdc++.so.6()(64bit) libstdc++.so.6(CXXABI_1.3)(64bit) rtld(GNU_HASH) dotnet-hostfxr-3.1 (rpmlib, GLIBC filtered): dotnet-host(x86-64) ld-linux-x86-64.so.2()(64bit) libc.so.6()(64bit) libgcc_s.so.1()(64bit) libgcc_s.so.1(GCC_3.0)(64bit) libstdc++.so.6()(64bit) libstdc++.so.6(CXXABI_1.3)(64bit) libstdc++.so.6(CXXABI_1.3.5)(64bit) rtld(GNU_HASH) dotnet-runtime-3.1 (rpmlib, GLIBC filtered): dotnet-hostfxr-3.1(x86-64) ld-linux-x86-64.so.2()(64bit) libc.so.6()(64bit) libcrypto.so.1.1()(64bit) libcrypto.so.1.1(OPENSSL_1_1_0)(64bit) libcurl.so.4()(64bit) libdl.so.2()(64bit) libgcc_s.so.1()(64bit) libgcc_s.so.1(GCC_3.0)(64bit) libgssapi_krb5.so.2()(64bit) libgssapi_krb5.so.2(gssapi_krb5_2_MIT)(64bit) libicu(x86-64) liblttng-ust.so.0()(64bit) libm.so.6()(64bit) libpthread.so.0()(64bit) librt.so.1()(64bit) libssl.so.1.1()(64bit) libssl.so.1.1(OPENSSL_1_1_0)(64bit) libssl.so.1.1(OPENSSL_1_1_1)(64bit) libstdc++.so.6()(64bit) libstdc++.so.6(CXXABI_1.3)(64bit) libstdc++.so.6(CXXABI_1.3.5)(64bit) libstdc++.so.6(CXXABI_1.3.7)(64bit) libunwind-x86_64.so.8()(64bit) libunwind.so.8()(64bit) libz.so.1()(64bit) rtld(GNU_HASH) aspnetcore-runtime-3.1 (rpmlib, GLIBC filtered): dotnet-runtime-3.1(x86-64) dotnet-templates-3.1 (rpmlib, GLIBC filtered): dotnet-host(x86-64) dotnet-sdk-3.1 (rpmlib, GLIBC filtered): aspnetcore-runtime-3.1(x86-64) aspnetcore-targeting-pack-3.1(x86-64) dotnet-apphost-pack-3.1(x86-64) dotnet-runtime-3.1(x86-64) dotnet-targeting-pack-3.1(x86-64) dotnet-templates-3.1(x86-64) ld-linux-x86-64.so.2()(64bit) libc.so.6()(64bit) libdl.so.2()(64bit) libgcc_s.so.1()(64bit) libgcc_s.so.1(GCC_3.0)(64bit) libpthread.so.0()(64bit) libstdc++.so.6()(64bit) libstdc++.so.6(CXXABI_1.3)(64bit) netstandard-targeting-pack-2.1(x86-64) rtld(GNU_HASH) dotnet-apphost-pack-3.1 (rpmlib, GLIBC filtered): dotnet-host(x86-64) ld-linux-x86-64.so.2()(64bit) libc.so.6()(64bit) libdl.so.2()(64bit) libgcc_s.so.1()(64bit) libgcc_s.so.1(GCC_3.0)(64bit) libpthread.so.0()(64bit) libstdc++.so.6()(64bit) libstdc++.so.6(CXXABI_1.3)(64bit) rtld(GNU_HASH) dotnet-targeting-pack-3.1 (rpmlib, GLIBC filtered): dotnet-host(x86-64) aspnetcore-targeting-pack-3.1 (rpmlib, GLIBC filtered): dotnet-host(x86-64) netstandard-targeting-pack-2.1 (rpmlib, GLIBC filtered): dotnet-host(x86-64) dotnet-sdk-3.1-source-built-artifacts (rpmlib, GLIBC filtered): dotnet3.1-debuginfo (rpmlib, GLIBC filtered): dotnet3.1-debugsource (rpmlib, GLIBC filtered): Provides -------- dotnet: dotnet dotnet(x86-64) dotnet-host: dotnet-host dotnet-host(x86-64) dotnet-hostfxr-3.1: dotnet-hostfxr-3.1 dotnet-hostfxr-3.1(x86-64) dotnet-runtime-3.1: dotnet-runtime-3.1 dotnet-runtime-3.1(x86-64) aspnetcore-runtime-3.1: aspnetcore-runtime-3.1 aspnetcore-runtime-3.1(x86-64) dotnet-templates-3.1: dotnet-templates-3.1 dotnet-templates-3.1(x86-64) dotnet-sdk-3.1: bundled(js-jquery) bundled(npm) dotnet-sdk-3.1 dotnet-sdk-3.1(x86-64) dotnet-apphost-pack-3.1: dotnet-apphost-pack-3.1 dotnet-apphost-pack-3.1(x86-64) libnethost.so()(64bit) dotnet-targeting-pack-3.1: dotnet-targeting-pack-3.1 dotnet-targeting-pack-3.1(x86-64) aspnetcore-targeting-pack-3.1: aspnetcore-targeting-pack-3.1 aspnetcore-targeting-pack-3.1(x86-64) netstandard-targeting-pack-2.1: netstandard-targeting-pack-2.1 netstandard-targeting-pack-2.1(x86-64) dotnet-sdk-3.1-source-built-artifacts: dotnet-sdk-3.1-source-built-artifacts dotnet-sdk-3.1-source-built-artifacts(x86-64) dotnet3.1-debuginfo: dotnet3.1-debuginfo dotnet3.1-debuginfo(x86-64) dotnet3.1-debugsource: dotnet3.1-debugsource dotnet3.1-debugsource(x86-64) Generated by fedora-review 0.7.5 (5fa5b7e) last change: 2020-02-16
(In reply to Michael Cronenworth from comment #8) > As this is a compiler and not a 'runtime' package as the name implies I > don't have reservations any more. If it is safe to drop the .a and .h files > then go ahead, but I no longer think they block the review. I tested this out. It's not safe to remove them. The runtime fails to start if the files are missing. The `dotnet --info` at the end of the build fails: + /home/omajid/rpmbuild/BUILDROOT/dotnet3.1-3.1.101-2.fc31.x86_64/usr/lib64/dotnet/dotnet --info Error: An assembly specified in the application dependencies manifest (Microsoft.NETCore.App.deps.json) was not found: package: 'runtime.fedora.31-x64.Microsoft.NETCore.App', version: '3.1.1-servicing.19608.4' path: 'runtimes/fedora.31-x64/native/System.IO.Compression.Native.a' > One minor issue is that your patches don't provide comments or context for > their existance. I do see the git comments inside of them but a comment in > the spec is always nice. Could you include a comment around them? Sure! > This review will PASS. Thanks! Wow, that's a plesant surprise. Thanks for the insanely prompt review!
(fedscm-admin): The Pagure repository was created at https://src.fedoraproject.org/rpms/dotnet3.1
Built in rawhide: https://bodhi.fedoraproject.org/updates/FEDORA-2020-18534af280