quicklisp / quicklisp-projects

Metadata for projects tracked by Quicklisp.
http://www.quicklisp.org/
413 stars 47 forks source link

Please add cl-unac #2287

Open diasbruno opened 1 year ago

diasbruno commented 1 year ago

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

quicklisp commented 1 year ago

Failure log here: http://report.quicklisp.org/2023-04-24/failure-report/cl-unac.html

diasbruno commented 1 year ago

@quicklisp this package will require libunac to be available.

for ubuntu: apt install libunac1-dev

quicklisp commented 1 year ago

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: @.***>

diasbruno commented 1 year ago

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") 
quicklisp commented 1 year ago

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: @.***>

diasbruno commented 1 year ago

No problem. I'll try to find an easy way. Thanks.

diasbruno commented 1 year ago

Ok. Fixed the build.

It also runs on github action without loading from a custom location.

diasbruno commented 1 year ago

cc @quicklisp just to say that the fix is available. no urgency.

diasbruno commented 1 year ago

Also, is it possible for collaborators help with the acceptance/reviewing process? Like running testes or whatever...