-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rm libev dependency #229
Rm libev dependency #229
Conversation
It has been added to Slackware <https://git.slackware.nl/current/commit/?id=25d8b003ae67298d8fb5e2151a76877a5e7b6e56>. I used the following one-liner to find all packages that require libev: $ find . -name '*.info' -print0 | xargs -0 grep --color -P '(?:^REQUIRES=.*\K)libev\b' And the following one-liner to automatically remove libev dependency from all *.info files: $ find . -name '*.info' -type f -print0 | xargs -0 gawk -i inplace '/^REQUIRES=.+libev/ {gsub(/ ?\<libev\> ?/, " "); gsub(/" /, "\""); gsub(/ "/, "\"")} 1'
reverse dependencies - desktop/i3-gapsNone |
reverse dependencies - multimedia/dvblastNone |
reverse dependencies - desktop/i3
|
reverse dependencies - desktop/i3lockNone |
reverse dependencies - accessibility/unclutter-xfixesNone |
reverse dependencies - audio/musikcubeNone |
reverse dependencies - network/ocservNone |
reverse dependencies - network/shadowsocks-libevNone |
reverse dependencies - libraries/ngtcp2
|
reverse dependencies - desktop/picomNone |
reverse dependencies - perl/perl-EV
|
✅ sbolint - multimedia/dvblast ✅
|
✅ sbolint - desktop/i3 ✅
|
✅ sbolint - network/ocserv ✅
|
✅ sbolint - audio/musikcube ✅
|
✅ sbolint - libraries/ngtcp2 ✅
|
✅ sbolint - accessibility/unclutter-xfixes ✅
|
✅ sbolint - desktop/i3lock ✅
|
✅ sbolint - desktop/picom ✅
|
✅ sbolint - desktop/i3-gaps ✅
|
✅ sbolint - network/shadowsocks-libev ✅
|
✅ sbolint - perl/perl-EV ✅
|
ok, I read wiki:
So this PR can be removed. |
I don't know if this PR is expected. I was building i3 and I found libev listed in the requirements but no slackbuild for it so I fixed it and all other packages. When are changes like that supposed to be added after a package is removed from SlackBuilds?