From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Philip Kaludercic Newsgroups: gmane.emacs.devel Subject: Re: ELPA submission: show-conses.el Date: Wed, 23 Oct 2024 19:14:48 +0000 Message-ID: <87jzdyhbrr.fsf@posteo.net> References: Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="22090"; mail-complaints-to="usenet@ciao.gmane.io" Cc: Emacs developers To: Eduardo Ochs Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Wed Oct 23 21:15:49 2024 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1t3gpg-0005Wh-SS for ged-emacs-devel@m.gmane-mx.org; Wed, 23 Oct 2024 21:15:48 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1t3gow-00038f-V3; Wed, 23 Oct 2024 15:15:04 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t3gor-00038M-3j for emacs-devel@gnu.org; Wed, 23 Oct 2024 15:14:57 -0400 Original-Received: from mout02.posteo.de ([185.67.36.66]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1t3gol-00069R-Mm for emacs-devel@gnu.org; Wed, 23 Oct 2024 15:14:55 -0400 Original-Received: from submission (posteo.de [185.67.36.169]) by mout02.posteo.de (Postfix) with ESMTPS id 83C4D240101 for ; Wed, 23 Oct 2024 21:14:49 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1729710889; bh=scUGT824UKzudDLie3WUr/JldE0FI5H9ayJyUm5fxGg=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version:Content-Type: From; b=DVv6oXReMvn6qdRaLTQFoo/NWFkvASmf6hfDlyZZX5iT3pBdQ/SGApvMBLF+tjg4E XWzfvORtcGs78LQUNsfWV0NGw1E0HiftJZgjW8lh+hBZfRIbgrD4dgxdl4Wm87LzDC 8/Q4oDpoiMxl4ssfAk1s198UgsfQUCRpM1ptHkgUA9OoBZcO2pZfPRT2R0+nkLJrye PNp+mffNB0A6d0WsyjvIHGgjxpblPl5wigKO6XfRMQHyoTVRoP6dSVaRc/gZeDz/Yo nwKYZYMFhVVsQNwBEhBJj0erI5KcnJ4tlTBJaxngyI0538MiFxfwEYWTLqbgQZ1D02 V6yF+OeiZ/BHA== Original-Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4XYdyx0MhRz6tyy; Wed, 23 Oct 2024 21:14:49 +0200 (CEST) In-Reply-To: (Eduardo Ochs's message of "Sun, 20 Oct 2024 02:18:30 -0300") X-Hashcash: 1:20:241023:eduardoochs@gmail.com::lHU/zldPgz4I8y6w:0q53 X-Hashcash: 1:20:241023:emacs-devel@gnu.org::3NXYIXJ39qv60c+p:3fQc Received-SPF: pass client-ip=185.67.36.66; envelope-from=philipk@posteo.net; helo=mout02.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, RCVD_IN_VALIDITY_CERTIFIED_BLOCKED=0.001, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:324802 Archived-At: Eduardo Ochs writes: > Hi list, > > I just finished the first version of a package called > "show-conses.el", that at first sight is a tool that receives sexps > and draws their cons-cell diagrams in a format that looks like this, > > (1 (2 "3") . 4) > > .__._______4 > | | > 1 .__. > | | > 2 "3" > [...] > I would like to submit it to ELPA after lots of clean-ups. > Does it look like something that deserves to be put in ELPA? > Should I start to do these clean-ups following what I know about > the conventions for ELPA packages? Sounds like a neat idea that can certainly be added to {GNU,NonGNU} ELPA, my main wish is that it would be nice if the package could also operate stand-alone without too many dependencies. > Thanks in advance! > Eduardo Ochs > http://anggtwu.net/#eev > http://anggtwu.net/eepitch.html > > -- Philip Kaludercic on icterid