quicklisp-projects
quicklisp-projects copied to clipboard
Please add cl-unac
Bindings for unac(3).
unac(3) is a library that helps removing accents from strings.
Author: Bruno Dias License: unlicense Source: https://github.com/diasbruno/cl-unac.git
Failure log here: http://report.quicklisp.org/2023-04-24/failure-report/cl-unac.html
@quicklisp this package will require libunac to be available.
for ubuntu: apt install libunac1-dev
I did that. No luck.
$ sudo apt-get install libunac1-dev Reading package lists... Done Building dependency tree... Done Reading state information... Done libunac1-dev is already the newest version (1.8.0-8). 0 upgraded, 0 newly installed, 0 to remove and 3 not upgraded.
$ ldconfig -v | grep libunac
libunac.so.1 -> libunac.so.1.0.8
On Mon, Apr 24, 2023 at 7:53 PM Bruno Dias @.***> wrote:
@quicklisp https://github.com/quicklisp this package will require libunac to be available.
for ubuntu: apt install libunac1-dev
— Reply to this email directly, view it on GitHub https://github.com/quicklisp/quicklisp-projects/issues/2287#issuecomment-1520963812, or unsubscribe https://github.com/notifications/unsubscribe-auth/AACPNLKJBLO4FYR5PEWWSMTXC4HBJANCNFSM6AAAAAAXIA5IPU . You are receiving this because you were mentioned.Message ID: @.***>
ubuntu is pretty weird sometimes...it'll install under /usr/lib/x86_64-linux-gnu/
and it is not reachable for some reason.
this is what I use here...
(quicklisp:quickload :cl-unac.config)
(cl-unac.config:load-from-custom-path "/usr/lib/x86_64-linux-gnu/libunac")
If it can't be loaded with a single ASDF:LOAD-SYSTEM (without extra configuration), I can't easily add it.
On Mon, Apr 24, 2023 at 8:11 PM Bruno Dias @.***> wrote:
ubuntu is pretty weird sometimes...it'll install under /usr/lib/x86_64-linux-gnu/ and it not reachable for some reason.
this is what I use here...
(quicklisp:quickload :cl-unac.config) (cl-unac.config:load-from-custom-path "/usr/lib/x86_64-linux-gnu/libunac")
— Reply to this email directly, view it on GitHub https://github.com/quicklisp/quicklisp-projects/issues/2287#issuecomment-1520978977, or unsubscribe https://github.com/notifications/unsubscribe-auth/AACPNLMWZSGJYP34WFCVR7TXC4JBNANCNFSM6AAAAAAXIA5IPU . You are receiving this because you were mentioned.Message ID: @.***>
No problem. I'll try to find an easy way. Thanks.
Ok. Fixed the build.
It also runs on github action without loading from a custom location.
cc @quicklisp just to say that the fix is available. no urgency.
Also, is it possible for collaborators help with the acceptance/reviewing process? Like running testes or whatever...