From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: "pelzflorian (Florian Pelz)" Newsgroups: gmane.lisp.guile.user Subject: Re: [ANN] nyacc version 0.99.0 released Date: Sat, 20 Jul 2019 19:21:14 +0200 Message-ID: <20190720172114.hb5rw722vj5s2q5p@pelzflorian.localdomain> References: <986e2c09-fed6-2371-2fc2-59479e3e453a@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="64221"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: NeoMutt/20180716 Cc: guile-user@gnu.org To: Matt Wette Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Sat Jul 20 19:21:26 2019 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([209.51.188.17]) by blaine.gmane.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1hot2z-000GPY-Qw for guile-user@m.gmane.org; Sat, 20 Jul 2019 19:21:26 +0200 Original-Received: from localhost ([::1]:52236 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hot2y-00042y-BV for guile-user@m.gmane.org; Sat, 20 Jul 2019 13:21:24 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:37374) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hot2t-00042s-Dd for guile-user@gnu.org; Sat, 20 Jul 2019 13:21:20 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hot2s-0003bz-9O for guile-user@gnu.org; Sat, 20 Jul 2019 13:21:19 -0400 Original-Received: from pelzflorian.de ([5.45.111.108]:41774 helo=mail.pelzflorian.de) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hot2r-0003aM-Qb for guile-user@gnu.org; Sat, 20 Jul 2019 13:21:18 -0400 Original-Received: from pelzflorian.localdomain (unknown [5.45.111.108]) by mail.pelzflorian.de (Postfix) with ESMTPSA id 537E8360035; Sat, 20 Jul 2019 19:21:15 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=pelzflorian.de; s=mail; t=1563643275; bh=pVLB7RukU7wfxtGwG3ThdrljC1/WzZgOE8AGwPH284c=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=E1CNZTLBLYw9Mwy6iboxVO0Zi3GRX8rDlUaBvtDJuwkfxk4MYS/LX0EfzmZfLt5wh AzXMJkLusPb7XIyhvnk3XgtduTkebq+lHVEtAFHaI86iTrKbX7Zke4sUTmgANE1hbx GuP0/mEKQlJceAXMgqV1RI3KnV5yAKyk0wQ/cC/A= Content-Disposition: inline In-Reply-To: <986e2c09-fed6-2371-2fc2-59479e3e453a@gmail.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 5.45.111.108 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Original-Sender: "guile-user" Xref: news.gmane.org gmane.lisp.guile.user:15647 Archived-At: On Sat, Jul 20, 2019 at 07:54:21AM -0700, Matt Wette wrote: > The next major release will be 1.0. If you are currently using nyacc > please give this a try. I want to have a clean, working 1.0 release. Thank you for your work! I never used the other parts of nyacc directly, but I think your ffi-helper () can be very useful. I tested libgettextpo via ffi-helper ( from back in ) in my old website source code from when it was still using libgettextpo and it still works with current nyacc 0.99. LD_LIBRARY_PATH=/gnu/store/jpxqw86l1gxkfrp66h5mc747xf881hjm-gettext-0.19.8.1/lib guild compile-ffi gettext-po.ffi -I /gnu/store/jpxqw86l1gxkfrp66h5mc747xf881hjm-gettext-0.19.8.1/include -I /gnu/store/c43rbmzv1laxgbnkvf76hx4305n4206a-glibc-2.28/include -I /gnu/store/xzpnb5jga3njysdphha95q0hbhahmm9b-gcc-9.1.0-lib/lib/gcc/x86_64-unknown-linux-gnu/9.1.0/include GUILE_LOAD_PATH=$HOME/git/pelzfloriande-website:$HOME/build/nyacc/module:$GUILE_LOAD_PATH LD_LIBRARY_PATH=/gnu/store/jpxqw86l1gxkfrp66h5mc747xf881hjm-gettext-0.19.8.1/lib haunt build (Using a distro with the Filesystem Hierarchy Standard or would have made ffi-helper easier to use, I think.) Regards, Florian