https://bugzilla.redhat.com/show_bug.cgi?id=1267468 Robert-André Mauchin <zebob.m@xxxxxxxxx> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |ASSIGNED CC| |zebob.m@xxxxxxxxx Assignee|nobody@xxxxxxxxxxxxxxxxx |zebob.m@xxxxxxxxx Flags| |fedora-review? --- Comment #11 from Robert-André Mauchin <zebob.m@xxxxxxxxx> --- - Group: is not needed anymore - The package fails to install: DEBUG util.py:479: Error: DEBUG util.py:479: Problem 1: conflicting requests DEBUG util.py:479: - nothing provides rubygem(simplecov) <= 0.13 needed by rubygem-codeclimate-test-reporter-1.0.8-1.fc28.noarch DEBUG util.py:479: Problem 2: package rubygem-codeclimate-test-reporter-doc-1.0.8-1.fc28.noarch requires rubygem-codeclimate-test-reporter = 1.0.8-1.fc28, but none of the providers can be installed DEBUG util.py:479: - conflicting requests DEBUG util.py:479: - nothing provides rubygem(simplecov) <= 0.13 needed by rubygem-codeclimate-test-reporter-1.0.8-1.fc28.noarch DEBUG util.py:617: Child return code was: 1 It seems the version of simplecov in Koji is indeed 0.13.0, but the dependency resolution fails with "<= 0.13". You should relax the dependency in the gemspec to be 0.13.0. I've successfully used the following patch to do it: diff -up ./codeclimate-test-reporter.gemspec.fix_require ./codeclimate-test-reporter.gemspec --- ./codeclimate-test-reporter.gemspec.fix_require 2018-01-08 17:47:53.000000000 +0100 +++ ./codeclimate-test-reporter.gemspec 2018-01-08 17:48:48.523257739 +0100 @@ -23,7 +23,7 @@ Gem::Specification.new do |s| s.specification_version = 4 if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then - s.add_runtime_dependency(%q<simplecov>.freeze, ["<= 0.13"]) + s.add_runtime_dependency(%q<simplecov>.freeze, ["<= 0.13.0"]) s.add_development_dependency(%q<bundler>.freeze, [">= 0"]) s.add_development_dependency(%q<pry>.freeze, [">= 0"]) s.add_development_dependency(%q<rake>.freeze, [">= 0"]) Package Review ============== Legend: [x] = Pass, [!] = Fail, [-] = Not applicable, [?] = Not evaluated [ ] = Manual review needed Issues: ======= - Package installs properly. Note: Installation errors (see attachment) See: https://fedoraproject.org/wiki/Packaging:Guidelines ===== MUST items ===== 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: There is no build directory. Running licensecheck on vanilla upstream sources. No licenses found. Please check the source files for licenses manually. [x]: License file installed when any subpackage combination is installed. [x]: Package must own all directories that it creates. Note: Directories without known owners: /usr/share/gems, /usr/share/gems/doc [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. [-]: 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]: 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]: 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 does not own files or directories owned by other packages. [x]: Package uses either %{buildroot} or $RPM_BUILD_ROOT [x]: Package does not run rm -rf %{buildroot} (or $RPM_BUILD_ROOT) at the beginning of %install. [x]: 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 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 Ruby: [x]: Platform dependent files must all go under %{gem_extdir_mri}, platform independent under %{gem_dir}. [x]: Gem package must not define a non-gem subpackage [x]: Macro %{gem_extdir} is deprecated. [x]: Gem package is named rubygem-%{gem_name} [x]: Package contains BuildRequires: rubygems-devel. [x]: Gem package must define %{gem_name} macro. [x]: Pure Ruby package must be built as noarch [x]: Package does not contain Requires: ruby(abi). ===== SHOULD items ===== Generic: [-]: Avoid bundling fonts in non-fonts packages. Note: Package contains font files [-]: 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). [?]: Package functions as described. [x]: Latest version is packaged. [x]: Package does not include license text files separate from upstream. [-]: Description and summary sections in the package spec file contains translations for supported Non-English languages, if available. [x]: Package should compile and build into binary rpms on all supported architectures. [-]: %check is present and all tests pass. [x]: Packages should try to preserve timestamps of original installed files. [x]: Reviewer should test that the package builds in mock. [x]: Buildroot is not present [x]: Package has no %clean section with rm -rf %{buildroot} (or $RPM_BUILD_ROOT) [x]: No file requires outside of /etc, /bin, /sbin, /usr/bin, /usr/sbin. [x]: Fully versioned dependency in subpackages if applicable. [x]: Packager, Vendor, PreReq, Copyright tags should not be in spec file [x]: Sources can be downloaded from URI in Source: tag [x]: SourceX is a working URL. [x]: Spec use %global instead of %define unless justified. Ruby: [!]: Gem should use %gem_install macro. [x]: Gem package should exclude cached Gem. [x]: gems should not require rubygems package [x]: Specfile should use macros from rubygem-devel package. [x]: Test suite should not be run by rake. [x]: Test suite of the library should be run. ===== EXTRA items ===== Generic: [!]: Rpmlint is run on all installed packages. Note: Mock build failed See: http://fedoraproject.org/wiki/Packaging/Guidelines#rpmlint [x]: Spec file according to URL is the same as in SRPM. Installation errors ------------------- INFO: mock.py version 1.4.8 starting (python version = 3.6.3)... Start: init plugins INFO: selinux disabled Finish: init plugins Start: run Start: chroot init INFO: calling preinit hooks INFO: enabled HW Info plugin Mock Version: 1.4.8 INFO: Mock Version: 1.4.8 Finish: chroot init INFO: installing package(s): /home/bob/packaging/review/rubygem-codeclimate-test-reporter/review-rubygem-codeclimate-test-reporter/results/rubygem-codeclimate-test-reporter-doc-1.0.8-1.fc28.noarch.rpm /home/bob/packaging/review/rubygem-codeclimate-test-reporter/review-rubygem-codeclimate-test-reporter/results/rubygem-codeclimate-test-reporter-1.0.8-1.fc28.noarch.rpm ERROR: Command failed: # /usr/bin/dnf --installroot /var/lib/mock/f28-candidate-x86_64/root/ --disableplugin=local --setopt=deltarpm=False install /home/bob/packaging/review/rubygem-codeclimate-test-reporter/review-rubygem-codeclimate-test-reporter/results/rubygem-codeclimate-test-reporter-doc-1.0.8-1.fc28.noarch.rpm /home/bob/packaging/review/rubygem-codeclimate-test-reporter/review-rubygem-codeclimate-test-reporter/results/rubygem-codeclimate-test-reporter-1.0.8-1.fc28.noarch.rpm Rpmlint ------- Checking: rubygem-codeclimate-test-reporter-1.0.8-1.fc28.noarch.rpm rubygem-codeclimate-test-reporter-doc-1.0.8-1.fc28.noarch.rpm rubygem-codeclimate-test-reporter-1.0.8-1.fc28.src.rpm rubygem-codeclimate-test-reporter.noarch: W: no-manual-page-for-binary cc-tddium-post-worker rubygem-codeclimate-test-reporter.noarch: W: no-manual-page-for-binary codeclimate-test-reporter rubygem-codeclimate-test-reporter.src: W: invalid-url Source1: codeclimate-test-reporter-1.0.8-specs.tar.gz 3 packages and 0 specfiles checked; 0 errors, 3 warnings. -- 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@xxxxxxxxxxxxxxxxxxxxxxx To unsubscribe send an email to package-review-leave@xxxxxxxxxxxxxxxxxxxxxxx