@Artalus It's probably unreasonable to ask people to read all the comments given there are pages, but I mean... my comment was literally the latest comment.
@fryfrog Maybe pin a comment about this?
Git Clone URL: | https://aur.archlinux.org/tmuxinator.git (read-only, click to copy) |
---|---|
Package Base: | tmuxinator |
Description: | Manage complex tmux sessions easily |
Upstream URL: | https://github.com/aziz/tmuxinator |
Licenses: | MIT |
Submitter: | lucacesari |
Maintainer: | fryfrog (flipee) |
Last Packager: | fryfrog |
Votes: | 76 |
Popularity: | 0.005527 |
First Submitted: | 2013-06-26 07:49 (UTC) |
Last Updated: | 2024-12-02 20:56 (UTC) |
« First ‹ Previous 1 2 3 4 5 6 7 .. 10 Next › Last »
@Artalus It's probably unreasonable to ask people to read all the comments given there are pages, but I mean... my comment was literally the latest comment.
@fryfrog Maybe pin a comment about this?
After update I get the same problem @lewiji had:
$ tmuxinator doctor
/usr/lib/ruby/3.0.0/rubygems/specification.rb:1404:in `rescue in block in activate_dependencies': Could not find 'erubis' (~> 2.6) among 80 total gem(s) (Gem::MissingSpecError)
Apparently, erubis
package hasn't updated since 2019 and seems to be installed for ruby 2.6 instead of the 3.0 I got from main repos:
$ pacman -Ql ruby-erubis
ruby-erubis /usr/lib/ruby/gems/2.6.0/gems/erubis-2.7.0/
...
I tried clean reinstall of ruby and tmuxinator, but no success :(
@lewiji You need to rebuild AUR ruby gems after major ruby upgrades: paru -Qqo /usr/lib/ruby/gems/2.7.0 | paru -S -- -
A pacman update earlier today upgraded rubygems and some other gems[^1], which prevented tmuxinator from running with the error:
tmuxinator 'rescue in block in activate_dependencies': Could not find 'erubis' (~> 2.6) among 90 total gem(s) (Gem::MissingSpecError)
Doing yay -R tmuxinator && yay -Sc && yay -S tmuxinator
fixed it (ie clean build - there's probably a quicker way to do that)
Not familiar enough with ruby to say what exactly is to blame but maybe the info is helpful.
[1]:
[2021-04-15T11:17:19+0100] [ALPM] upgraded rubygems (3.2.13-1 -> 3.2.15-1)
[2021-04-15T11:17:19+0100] [ALPM] upgraded ruby-reline (0.2.4-1 -> 0.2.5-1)
[2021-04-15T11:17:19+0100] [ALPM] upgraded ruby-irb (1.3.4-1 -> 1.3.5-1)
[2021-04-15T11:17:19+0100] [ALPM] upgraded ruby (2.7.2-1 -> 3.0.1-1)
[2021-04-15T11:17:19+0100] [ALPM] upgraded ruby-dbus (0.15.0-3 -> 0.15.0-4)
[2021-04-15T11:17:19+0100] [ALPM] upgraded ruby-ffi (1.15.0-1 -> 1.15.0-2)
[2021-04-15T11:17:20+0100] [ALPM] upgraded ruby-maruku (0.7.3-5 -> 0.7.3-6)
[2021-04-15T11:17:20+0100] [ALPM] upgraded ruby-rake (13.0.3-1 -> 13.0.3-2)
[2021-04-15T11:17:20+0100] [ALPM] upgraded ruby-rb-fsevent (0.10.4-1 -> 0.10.4-2)
[2021-04-15T11:17:20+0100] [ALPM] upgraded ruby-rb-inotify (0.9.10-4 -> 0.9.10-5)
[2021-04-15T11:17:20+0100] [ALPM] upgraded ruby-rdoc (6.3.0-1 -> 6.3.0-3)
[2021-04-15T11:17:20+0100] [ALPM] upgraded ruby-sass-listen (4.0.0-8 -> 4.0.0-9)
[2021-04-15T11:17:20+0100] [ALPM] upgraded ruby-yard (0.9.26-1 -> 0.9.26-2)
[2021-04-15T11:17:20+0100] [ALPM] upgraded ruby-sass (3.7.4-2 -> 3.7.4-3)
[2021-04-15T11:17:20+0100] [ALPM] upgraded ruby-thor (1.1.0-1 -> 1.1.0-2)
thank you for quick update version!
can we make compatible tmuxinator with last tmux 3.2 version please?
It was unintentional, but let's pretend it was for the reason you said. It doesn't seem worth updating everyone's tmuxinator just for this.
Thanks, but you forgot to increase the pkgrel value. Or was that intended to be only pushed to people on the next update?
Hey @Segaja, it built cleanly in a CHROOT w/o ruby-rdoc so I went ahead and punted it from depends. Thanks for the suggestion.
Why is ruby-rdoc
a normal depends
here? It isn't listed on https://rubygems.org/gems/tmuxinator .
If it is needed for building of the package then it should be ok to list as a makedepends
.
Pinned Comments
FrederickZh commented on 2021-04-15 13:37 (UTC)
@lewiji You need to rebuild AUR ruby gems after major ruby upgrades:
paru -Qqo /usr/lib/ruby/gems/2.7.0 | paru -S -- -