ftp.delorie.com/archives/browse.cgi   search  
Mail Archives: geda-user/2019/11/30/04:53:33

X-Authentication-Warning: delorie.com: mail set sender to geda-user-bounces using -f
X-Recipient: geda-user AT delorie DOT com
X-Original-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=gmail.com; s=20161025;
h=date:from:to:subject:message-id:mail-followup-to:references
:mime-version:content-disposition:content-transfer-encoding
:in-reply-to:user-agent;
bh=up4e5HNsIanJTn7wLiHK6lhZaPJOLRMTLNyAJ+LX5AM=;
b=jzpxKJkTDq116e72uVawVxTmo7jLfN8D9lZvYccBqf3zGXgdglE6a7T31kxOvX1PbW
gC77OVpPmJztSHDr7hwiF/1rJ4nrYIQE7hQmRmlTBNs/HQyCTdf4iA6tR6OrpV753X6P
hfnHxRaP5Er3Z+SwF/dI04CHS9t23izVLrwn6RT8zGhwOZFjWh4iLVli7YG1wKSuZ/1w
Tr1yIX1hYXKAn5V5oGm5drU23p9QWaMr+YzhJ3Oo46c0LarUIIsLI8ZrWjX1RRnZagka
2BnU73pUZT22Y2V4EWAi7rr3tiuT+V3cCsWiDe6ATqGXEJtdOfUD5k0MkzBMmmL6wGx6
ZA/g==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
d=1e100.net; s=20161025;
h=x-gm-message-state:date:from:to:subject:message-id:mail-followup-to
:references:mime-version:content-disposition
:content-transfer-encoding:in-reply-to:user-agent;
bh=up4e5HNsIanJTn7wLiHK6lhZaPJOLRMTLNyAJ+LX5AM=;
b=p6osR/+cdgV9GwkiLU1VpmnymR9dyGDlLa70PNAh71AIETj4pTotK2b/g0RV2uCU0T
3nO1q5gm8jEAGYrqeLyCUk+eMzjCTsXYn0J8fUv8GoJN8vsjWJ9AuoXZCc3cyf6r2nSs
yobZcehDTjAcXxrBa+KHVmGXXh79ka7Ud+Fx2C8zd7CSIsiibX3nVngNJSa7WeeGw7nr
bavqqzt/BZGLMsAyIzIIL6pI/tHL7UZITGb5k9Rs4i2ZUuZGRqT9OWolGIKqryC9BIlZ
Lg2GQsukfhXWhS4k8EVRn431+o1jLqBQWpHMZL2iSfbbIEonYB5ekUdKLrP1+KYMde+R
6eEg==
X-Gm-Message-State: APjAAAW8d7PlNHQcR2NDZYYfx0S35YIoqMcZCvGWyRaprXICd/yQrRsQ
d8wvGUjyQUvoysrM8d3JT4MQVM1B
X-Google-Smtp-Source: APXvYqzDaUauc4PS0KSgNl1uw2GK+AK0GxuRtB07Npe+0ntJAk/rsT1OJmAcfik1uy4eQTELfY4DVA==
X-Received: by 2002:a19:7610:: with SMTP id c16mr35208385lff.120.1575106279679;
Sat, 30 Nov 2019 01:31:19 -0800 (PST)
Date: Sat, 30 Nov 2019 12:31:17 +0300
From: "Vladimir Zhbanov (vzhbanov AT gmail DOT com) [via geda-user AT delorie DOT com]" <geda-user AT delorie DOT com>
To: geda-user AT delorie DOT com
Subject: Re: [geda-user] lepton: gnetlist: is there a name conflict with geda
?
Message-ID: <20191130093117.GA1181@newvzh.lokolhoz>
Mail-Followup-To: geda-user AT delorie DOT com
References: <20191129165855 DOT ED0F28038A57 AT turkos DOT aspodata DOT se>
<20191129233141 DOT 7ce7eacc AT demon>
MIME-Version: 1.0
In-Reply-To: <20191129233141.7ce7eacc@demon>
User-Agent: Mutt/1.10.1 (2018-07-13)
Note-from-DJ: This may be spam
Reply-To: geda-user AT delorie DOT com
Errors-To: nobody AT delorie DOT com
X-Mailing-List: geda-user AT delorie DOT com
X-Unsubscribes-To: listserv AT delorie DOT com

On Fri, Nov 29, 2019 at 11:31:41PM +0300, dmn (graahnul DOT grom AT gmail DOT com) [via geda-user AT delorie DOT com] wrote:
> The attached patch fixes netlist -q option processing when working
> with hierarchical schematics and, consequently, the errors you've got
> with lepton-sch2pcb. Apply to the latest git sources.
> I'll open a pull request [1] with these changes soon.
> 
> [1] https://github.com/lepton-eda/lepton-eda/pulls
> 
> Regards,
> Dmitry.

> diff --git a/netlist/scheme/netlist/traverse.scm b/netlist/scheme/netlist/traverse.scm
> index 97c512a1c..e8db41b3f 100644
> --- a/netlist/scheme/netlist/traverse.scm
> +++ b/netlist/scheme/netlist/traverse.scm
> @@ -245,8 +245,8 @@
>  
>    (let ((filename (get-source-library-file name)))
>      (if filename
> -        (unless quiet-mode
> -          (log! 'message (_ "Loading subcircuit ~S.") filename)
> +        (begin (unless quiet-mode
> +          (log! 'message (_ "Loading subcircuit ~S.") filename))
>            (file->page filename 'new-page))
>          (log! 'error (_ "Failed to load subcircuit ~S.") name))))
>  

I am sorry for me being so slow :-(

I have already solved the issue a while ago, and the patches are
now in

#514

Karl, Dmitry, please check if they work.

This is a subset from my refactoring branch which I'm trying to
apply step by step. (Probably, I have to publish it...)

-- 
  Vladimir

(λ)επτόν EDA — https://github.com/lepton-eda

- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019