Package Details: ruby-digest-crc 0.7.0-2

Git Clone URL: https://aur.archlinux.org/ruby-digest-crc.git (read-only, click to copy)
Package Base: ruby-digest-crc
Description: A Cyclic Redundancy Check (CRC) library for Ruby
Upstream URL: https://github.com/postmodern/digest-crc
Licenses: MIT
Submitter: farwayer
Maintainer: supermario
Last Packager: supermario
Votes: 2
Popularity: 0.059906
First Submitted: 2019-01-12 11:28 (UTC)
Last Updated: 2025-09-26 07:28 (UTC)

Latest Comments

davispuh commented on 2026-01-07 12:25 (UTC)

Currently this fails to install due to Arch having newer Bundler (4.0). Fails in check() step from rake spec

Could not find compatible versions

Because the current Bundler version (4.0.3) does not satisfy bundler ~> 2.0
  and Gemfile depends on bundler ~> 2.0,
  version solving has failed.

Your bundle requires a different version of Bundler than the one you're running, and that version could not be found.

This patch allows it to build:

diff --git a/PKGBUILD b/PKGBUILD
index 464a051..588e95c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -24,6 +24,8 @@ prepare() {

   sed -i '/kramdown/d' Gemfile
   sed -i '/github-markup/d' Gemfile
+
+  sed -i 's/bundler: ~> 2\.0/bundler: ">= 2.0"/' gemspec.yml
 }

 build() {

I also submitted PR upstream https://github.com/postmodern/digest-crc/pull/49

davispuh commented on 2025-09-25 19:19 (UTC)

Looks like ruby-rake should be runtime dependency not just makedep because for some weird reason digest-crc fails at runtime if rake is not present.

micwoj92 commented on 2025-03-09 00:35 (UTC)

Package doesn't contain any elf files, it should have any architecture.

micwoj92 commented on 2023-06-26 23:24 (UTC)

==> Starting check()...
Could not find gem 'simplecov (~> 0.20)' in locally installed gems.
Run `bundle install` to install missing gems.
==> ERROR: A failure occurred in check().
    Aborting...

after installing ruby-simplecov runs and passes check