From unknown Sat Sep 06 09:27:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#76463] [PATCH] gnu: Add aacircuit. Resent-From: Evgeny Pisemsky Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Fri, 21 Feb 2025 09:13:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 76463 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 76463@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.174012916512232 (code B ref -1); Fri, 21 Feb 2025 09:13:01 +0000 Received: (at submit) by debbugs.gnu.org; 21 Feb 2025 09:12:45 +0000 Received: from localhost ([127.0.0.1]:53098 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tlP5Q-0003BB-U9 for submit@debbugs.gnu.org; Fri, 21 Feb 2025 04:12:45 -0500 Received: from lists.gnu.org ([2001:470:142::17]:40382) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tlP5O-0003A6-Q7 for submit@debbugs.gnu.org; Fri, 21 Feb 2025 04:12:43 -0500 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 1tlP5H-0007Ol-V5 for guix-patches@gnu.org; Fri, 21 Feb 2025 04:12:35 -0500 Received: from sofi-shared.hosting.energy ([2001:41d0:602:1f56::] helo=sofi.hosting.energy) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tlP5G-0005Pc-0i for guix-patches@gnu.org; Fri, 21 Feb 2025 04:12:35 -0500 Received: from [176.59.49.173] (helo=localhost.localdomain) by sofi.hosting.energy with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1tlP55-0004CB-T2 for guix-patches@gnu.org; Fri, 21 Feb 2025 12:12:24 +0300 From: Evgeny Pisemsky Date: Fri, 21 Feb 2025 12:12:07 +0300 Message-ID: <87d7eb973101cd15613f034961cfc64eb11069e6.1740129127.git.mail@pisemsky.site> X-Mailer: git-send-email 2.48.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: permerror client-ip=2001:41d0:602:1f56::; envelope-from=mail@pisemsky.site; helo=sofi.hosting.energy X-Spam_score_int: -14 X-Spam_score: -1.5 X-Spam_bar: - X-Spam_report: (-1.5 / 5.0 requ) BAYES_00=-1.9, KHOP_HELO_FCRDNS=0.4, T_SPF_HELO_PERMERROR=0.01, T_SPF_PERMERROR=0.01 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/engineering.scm (aacircuit): New variable. Change-Id: I0f44b1037866c729fe1d29a52d9447f6cbea6704 --- gnu/packages/engineering.scm | 50 ++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 234f4a2b03..40309f45f4 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -176,6 +176,56 @@ (define-module (gnu packages engineering) #:use-module (gnu packages xorg) #:use-module ((srfi srfi-1) #:hide (zip))) +(define-public aacircuit + (let ((commit "18635c846754b6219da1a2ceb8977714f70004d0") + (revision "0")) + (package + (name "aacircuit") + (version (git-version "0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Blokkendoos/AACircuit") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07agb7fbpbq74zm27j9b00imr46q6kpwhxzmmffw2s9scv80c1km")))) + (build-system pyproject-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + ;; Exclude tests intended for visual review. + (setenv "NOSE_EXCLUDE" + (string-join '("test_export_pdf" + "test_import_aacircuit_export_pdf") + ",")) + (setenv "HOME" "/tmp") + (invoke "xvfb-run" "./testrunner.sh"))))))) + (native-inputs (list python-flake8 + python-nose + python-setuptools + python-wheel + xvfb-run)) + (propagated-inputs (list gtk+ + python-bresenham + python-platformdirs + python-pycairo + python-pyclip + python-pygobject + python-pypubsub)) + (home-page "https://github.com/Blokkendoos/AACircuit") + (synopsis "Draw electronic circuits with ASCII characters") + (description + "This is a pythonized, kind of reverse engineered version of original AACircuit +written by Andreas Weber in Borland Delphi. The idea and GUI layout are also +taken from the original.") + (license license:gpl3+)))) + (define-public cutecom (package (name "cutecom") base-commit: 38b4358f4d84cafa54deff77dee6fafac3e03864 -- 2.48.1 From unknown Sat Sep 06 09:27:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#76463] [PATCH] gnu: Add aacircuit. References: <87d7eb973101cd15613f034961cfc64eb11069e6.1740129127.git.mail@pisemsky.site> In-Reply-To: <87d7eb973101cd15613f034961cfc64eb11069e6.1740129127.git.mail@pisemsky.site> Resent-From: Evgeny Pisemsky Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 18 Mar 2025 21:12:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 76463 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 76463@debbugs.gnu.org Received: via spool by 76463-submit@debbugs.gnu.org id=B76463.174233227219078 (code B ref 76463); Tue, 18 Mar 2025 21:12:02 +0000 Received: (at 76463) by debbugs.gnu.org; 18 Mar 2025 21:11:12 +0000 Received: from localhost ([127.0.0.1]:43589 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tueDP-0004xe-OH for submit@debbugs.gnu.org; Tue, 18 Mar 2025 17:11:11 -0400 Received: from pisemsky.site ([103.54.19.55]:60608) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tueDK-0004wi-5p for 76463@debbugs.gnu.org; Tue, 18 Mar 2025 17:11:10 -0400 Received: from laptop ( [212.233.86.141]) by pisemsky.site (OpenSMTPD) with ESMTPSA id 5681fe57 (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO) for <76463@debbugs.gnu.org>; Tue, 18 Mar 2025 21:11:00 +0000 (UTC) From: Evgeny Pisemsky Date: Wed, 19 Mar 2025 00:10:59 +0300 Message-ID: <871puukpss.fsf@pisemsky.site> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 3.6 (+++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: For this patch I did some preparations in upstream to make this progam usable from read-only installation and easier to package: https://github.com/Blokkendoos/AACircuit/commits?author=pisemsky Content analysis details: (3.6 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 RCVD_IN_VALIDITY_CERTIFIED_BLOCKED RBL: ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. [103.54.19.55 listed in sa-trusted.bondedsender.org] 0.0 RCVD_IN_VALIDITY_RPBL_BLOCKED RBL: ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. [103.54.19.55 listed in bl.score.senderscore.com] 3.6 RCVD_IN_SBL_CSS RBL: Received via a relay in Spamhaus SBL-CSS [212.233.86.141 listed in zen.spamhaus.org] -0.0 SPF_PASS SPF: sender matches SPF record -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 0.0 FAKE_REPLY_C No description available. X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 2.6 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: For this patch I did some preparations in upstream to make this progam usable from read-only installation and easier to package: https://github.com/Blokkendoos/AACircuit/commits?author=pisemsky Content analysis details: (2.6 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 RCVD_IN_VALIDITY_RPBL_BLOCKED RBL: ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. [103.54.19.55 listed in bl.score.senderscore.com] 0.0 RCVD_IN_VALIDITY_CERTIFIED_BLOCKED RBL: ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. [103.54.19.55 listed in sa-trusted.bondedsender.org] 3.6 RCVD_IN_SBL_CSS RBL: Received via a relay in Spamhaus SBL-CSS [212.233.86.141 listed in zen.spamhaus.org] -0.0 SPF_PASS SPF: sender matches SPF record -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager 0.0 FAKE_REPLY_C No description available. For this patch I did some preparations in upstream to make this progam usable from read-only installation and easier to package: https://github.com/Blokkendoos/AACircuit/commits?author=pisemsky From unknown Sat Sep 06 09:27:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#76463] [PATCH] gnu: Add aacircuit. References: <87d7eb973101cd15613f034961cfc64eb11069e6.1740129127.git.mail@pisemsky.site> In-Reply-To: <87d7eb973101cd15613f034961cfc64eb11069e6.1740129127.git.mail@pisemsky.site> Resent-From: Sharlatan Hellseher Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 19 Mar 2025 08:57:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 76463 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 76463@debbugs.gnu.org Cc: Evgeny Pisemsky Received: via spool by 76463-submit@debbugs.gnu.org id=B76463.174237460825719 (code B ref 76463); Wed, 19 Mar 2025 08:57:02 +0000 Received: (at 76463) by debbugs.gnu.org; 19 Mar 2025 08:56:48 +0000 Received: from localhost ([127.0.0.1]:47908 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tupEG-0006gl-5j for submit@debbugs.gnu.org; Wed, 19 Mar 2025 04:56:48 -0400 Received: from mail-lf1-x130.google.com ([2a00:1450:4864:20::130]:48496) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from ) id 1tupEC-0006ew-PJ for 76463@debbugs.gnu.org; Wed, 19 Mar 2025 04:56:46 -0400 Received: by mail-lf1-x130.google.com with SMTP id 2adb3069b0e04-54acc04516cso400814e87.1 for <76463@debbugs.gnu.org>; Wed, 19 Mar 2025 01:56:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1742374596; x=1742979396; darn=debbugs.gnu.org; h=cc:to:subject:message-id:date:from:mime-version:from:to:cc:subject :date:message-id:reply-to; bh=8zFQE/Z2D45TljF6hfpO+Jvlqh+5Mb2zJ1D6SGRAe/M=; b=WmJGE1f4fWD/62oPyg8zBHAaKhyZS48SvjmBrxgpdeSv4N5yDOFX3FYYZLW1Sh4+oc m19ysp1Df9hBKevr6YjQb00uvYnPBUlDbMYRqhvTidGd872H03omsFc8fJc29DrYL6R2 jbgXn8qcIMJouXXdtTn8DTVz7Mmbai1j6i4Z6X5cH7viFB6fEsrp8w40QTirptkmO0TI HHXE4SWuiHGQE51p93JKz5AHLpOEcHwHq2g5C8Dw5xwMpqNZVU2aeTCK1fyjsTB92rM/ bhfUUAo+p3Ew8BxQr5MPRH8UiQoQ/qH6g7amRDvutthU/igpsrs+ljd4vMef7wF/aor6 y1Wg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1742374596; x=1742979396; h=cc:to:subject:message-id:date:from:mime-version:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=8zFQE/Z2D45TljF6hfpO+Jvlqh+5Mb2zJ1D6SGRAe/M=; b=fMWjHGACpwTjMM82WU4WS4EK2eiVbffNfSNJBwUYmGt4jNcpZahuIzB06xrNZH1ZwO XBil1y+4QTPc3Ab5vKOwJp7XLEX7GkcY2jmj2dB/Qryk3nIrhM4JeC4P/cmf6YZRkKOo yf6mg8+VETa/YTPUSIswJzSqWoep3Bz40H2VHYYRE9b1MRTRgauRG3rM7NkwylxO1uOR KjeLYwf1uWWjENdOJYYCC7i69Pon99YrANF4invphzARv7mt5YARiLugwTdb/oiiqMz3 nIxxFepoK8sTGB29cNmP+dzorbdhhVtiPi7QoJEkyobj5G/GoIoWtrVM+NdFFAT3svDo AzAQ== X-Gm-Message-State: AOJu0YyyOiDU1V5JduECFLxi3qkoHvppdiEAVuhtgC5I1xxTWLOjU7j0 c+bzCT9F3Lp6dTxHdyHomQD56jBdI2avoMCTXiIg35zn8Tk885OGc55FLPFR3xY+c12K/VpKNLt QnvrnsjsZzAZ6nZB3IwNXQEiVVTom+g== X-Gm-Gg: ASbGncs1GBlVQ/0YFauJjguLVqfSFsFehMzmYxOzQMarthL8VOYgSAf04B95j7l1ZSi 8ddYM4+RnYY9+rWw2Phwme59dNRTage4m1xzKyeB118jUYc1ZBaxmHVaq7p6izVhSPwDvrZfcXw uWIKQbThVB/RW7tiiQv0qKr6QKoCk= X-Google-Smtp-Source: AGHT+IGRUZi4cxF14EknUJII0X/btUrr4A92IPT64EMNWDYYw3Dtj+ChXnv1SJdAHC3knoocOGL2h88RSqsniHOxUPY= X-Received: by 2002:a05:6512:128b:b0:545:2eca:863 with SMTP id 2adb3069b0e04-54acb1fc92amr585008e87.42.1742374595873; Wed, 19 Mar 2025 01:56:35 -0700 (PDT) MIME-Version: 1.0 From: Sharlatan Hellseher Date: Wed, 19 Mar 2025 08:56:24 +0000 X-Gm-Features: AQ5f1JqbhYQp1rGThCXV9HQx0qTPTpcCRQzbQ62FsSui6XAxTojf27IX0we5MJc Message-ID: Content-Type: multipart/alternative; boundary="000000000000da57950630ae326b" X-Spam-Score: 1.5 (+) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Hi, Thank you for the patch. A note on Nose, it's deprecated upstream so try to use pytest runner. And you don't need to add Flake8 as it is a development dependencie. Content analysis details: (1.5 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [2a00:1450:4864:20:0:0:0:130 listed in] [list.dnswl.org] -0.0 SPF_PASS SPF: sender matches SPF record 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (sharlatanus[at]gmail.com) 1.5 PDS_OTHER_BAD_TLD Untrustworthy TLDs [URI: github.incerto.xyz (xyz)] 0.0 SPF_HELO_NONE SPF: HELO does not publish an SPF Record 0.0 HTML_MESSAGE BODY: HTML included in message X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 0.5 (/) --000000000000da57950630ae326b Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: base64 SGksDQoNClRoYW5rIHlvdSBmb3IgdGhlIHBhdGNoLg0KDQpBIG5vdGUgb24gTm9zZSwgaXQncyBk ZXByZWNhdGVkIHVwc3RyZWFtIHNvIHRyeSB0byB1c2UgcHl0ZXN0IHJ1bm5lci4NCkFuZCB5b3Ug ZG9uJ3QgbmVlZCB0byBhZGQgRmxha2U4IGFzIGl0IGlzIGEgZGV2ZWxvcG1lbnQgZGVwZW5kZW5j aWUuDQoNClBsZWFzZSBnaXZlIGl0IGEgdHJ5IHRvIGFkanVzdCBuYXRpdmUgaW5wdXRzOg0KDQpu YXRpdmUtaW5wdXRzIChsaXN0IHB5dGhvbi1mbGFrZTgNCisgICAgICAgICAgICAgICAgICAgICAg ICAgICBweXRob24tbm9zZQ0KDQogLS0tDQpWQ1M6IGh0dHBzOi8vZ2l0aHViLmluY2VydG8ueHl6 LzsgaHR0cHM6Ly9naXQuc3IuaHQvfmhlbGxzZWhlci8NCkdQRzogOTg0NyA4MURFIDY4OUMgMjFD MiA2NDE4IDA4NjcgNzZENyAyN0JGIEY2MkMgRDJCNQ0KDQrigKYg0L3QsNGIINGA0LDQt9GD0Lwg LSDQv9GA0LXQstC+0YHRhdC+0LTQvdCw0Y8g0L7QsdGK0Y/RgdC90LjRgtC10LvRjNC90LDRjyDQ vNCw0YjQuNC90LAg0LrQvtGC0L7RgNCw0Y8g0YHQv9C+0YHQvtCx0L3QsCDQvdCw0LnRgtC4DQrR gdC80YvRgdC7INC/0L7Rh9GC0Lgg0LIg0YfQtdC8INGD0LPQvtC00L3Qviwg0LjRgdGC0L7Qu9C6 0L7QstCw0YLRjCDQu9GO0LHQvtC5INGE0LXQvdC+0LzQtdC9LCDQvdC+INGB0L7QstC10YDRiNC1 0L3QvdC+INC90LUg0LINCtGB0L7RgdGC0L7Rj9C90LjQuCDQv9GA0LjQvdGP0YLRjCDQvNGL0YHQ u9GMINC+INC90LXQv9GA0LXQtNGB0LrQsNC30YPQtdC80L7RgdGC0LguDQo= --000000000000da57950630ae326b Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: base64 PGRpdiBkaXI9ImF1dG8iPjxkaXY+SGksPC9kaXY+PGRpdiBkaXI9ImF1dG8iPjxicj48L2Rpdj48 ZGl2IGRpcj0iYXV0byI+VGhhbmsgeW91IGZvciB0aGUgcGF0Y2guPC9kaXY+PGRpdiBkaXI9ImF1 dG8iPjxicj48L2Rpdj48ZGl2IGRpcj0iYXV0byI+QSBub3RlIG9uIE5vc2UsIGl0JiMzOTtzIGRl cHJlY2F0ZWQgdXBzdHJlYW0gc28gdHJ5IHRvIHVzZSBweXRlc3QgcnVubmVyLjwvZGl2PjxkaXYg ZGlyPSJhdXRvIj5BbmQgeW91IGRvbiYjMzk7dCBuZWVkIHRvIGFkZCBGbGFrZTggYXMgaXQgaXMg YSBkZXZlbG9wbWVudCBkZXBlbmRlbmNpZS48L2Rpdj48ZGl2IGRpcj0iYXV0byI+PGJyPjwvZGl2 PjxkaXYgZGlyPSJhdXRvIj5QbGVhc2UgZ2l2ZSBpdCBhIHRyeSB0byBhZGp1c3QgbmF0aXZlIGlu cHV0czo8L2Rpdj48ZGl2IGRpcj0iYXV0byI+PGJyPjwvZGl2PjxkaXYgZGlyPSJhdXRvIj48ZGl2 IGRpcj0iYXV0byI+bmF0aXZlLWlucHV0cyAobGlzdCBweXRob24tZmxha2U4PC9kaXY+PGRpdiBk aXI9ImF1dG8iPivCoCDCoCDCoCDCoCDCoCDCoCDCoCDCoCDCoCDCoCDCoCDCoCDCoCDCoHB5dGhv bi1ub3NlPC9kaXY+PGRpdiBkaXI9ImF1dG8iPjxicj48L2Rpdj48L2Rpdj48ZGl2PsKgLS0tPC9k aXY+PGRpdiBkYXRhLXNtYXJ0bWFpbD0iZ21haWxfc2lnbmF0dXJlIj48ZGl2IGRpcj0ibHRyIj5W Q1M6IDxhIGhyZWY9Imh0dHBzOi8vZ2l0aHViLmluY2VydG8ueHl6LyIgdGFyZ2V0PSJfYmxhbmsi Pmh0dHBzOi8vZ2l0aHViLmluY2VydG8ueHl6LzwvYT47wqA8YSBocmVmPSJodHRwczovL2dpdC5z ci5odC9+aGVsbHNlaGVyLyIgdGFyZ2V0PSJfYmxhbmsiPmh0dHBzOi8vZ2l0LnNyLmh0L35oZWxs c2VoZXIvPC9hPjxicj5HUEc6IDk4NDcgODFERSA2ODlDIDIxQzIgNjQxOCAwODY3IDc2RDcgMjdC RiBGNjJDIEQyQjU8YnI+PGJyPuKApiDQvdCw0Ygg0YDQsNC30YPQvCAtINC/0YDQtdCy0L7RgdGF 0L7QtNC90LDRjyDQvtCx0YrRj9GB0L3QuNGC0LXQu9GM0L3QsNGPINC80LDRiNC40L3QsCDQutC+ 0YLQvtGA0LDRjyDRgdC/0L7RgdC+0LHQvdCwINC90LDQudGC0Lgg0YHQvNGL0YHQuyDQv9C+0YfR gtC4INCyINGH0LXQvCDRg9Cz0L7QtNC90L4sINC40YHRgtC+0LvQutC+0LLQsNGC0Ywg0LvRjtCx 0L7QuSDRhNC10L3QvtC80LXQvSwg0L3QviDRgdC+0LLQtdGA0YjQtdC90L3QviDQvdC1INCyINGB 0L7RgdGC0L7Rj9C90LjQuCDQv9GA0LjQvdGP0YLRjCDQvNGL0YHQu9GMINC+INC90LXQv9GA0LXQ tNGB0LrQsNC30YPQtdC80L7RgdGC0LguPGJyPjwvZGl2PjwvZGl2PjwvZGl2Pg0K --000000000000da57950630ae326b-- From unknown Sat Sep 06 09:27:43 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#76463] [PATCH] gnu: Add aacircuit. Resent-From: Evgeny Pisemsky Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 19 Mar 2025 20:07:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 76463 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: Sharlatan Hellseher Cc: 76463@debbugs.gnu.org Received: via spool by 76463-submit@debbugs.gnu.org id=B76463.17424148074154 (code B ref 76463); Wed, 19 Mar 2025 20:07:01 +0000 Received: (at 76463) by debbugs.gnu.org; 19 Mar 2025 20:06:47 +0000 Received: from localhost ([127.0.0.1]:53271 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tuzgd-00014w-6n for submit@debbugs.gnu.org; Wed, 19 Mar 2025 16:06:47 -0400 Received: from pisemsky.site ([103.54.19.55]:35760) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tuzgY-00014j-M6 for 76463@debbugs.gnu.org; Wed, 19 Mar 2025 16:06:45 -0400 Received: from laptop ( [212.233.84.159]) by pisemsky.site (OpenSMTPD) with ESMTPSA id 4b67303d (TLSv1.3:TLS_AES_256_GCM_SHA384:256:NO); Wed, 19 Mar 2025 20:06:36 +0000 (UTC) From: Evgeny Pisemsky In-Reply-To: (Sharlatan Hellseher's message of "Wed, 19 Mar 2025 08:56:24 +0000") References: Date: Wed, 19 Mar 2025 23:06:36 +0300 Message-ID: <87a59gss37.fsf@pisemsky.site> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 3.6 (+++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Sharlatan Hellseher writes: > A note on Nose, it's deprecated upstream so try to use pytest runner. It is used by this project and works fine, and I have stuff to do. Content analysis details: (3.6 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 3.6 RCVD_IN_SBL_CSS RBL: Received via a relay in Spamhaus SBL-CSS [212.233.84.159 listed in zen.spamhaus.org] -0.0 SPF_PASS SPF: sender matches SPF record -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 0.0 RCVD_IN_VALIDITY_RPBL_BLOCKED RBL: ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. [103.54.19.55 listed in bl.score.senderscore.com] 0.0 RCVD_IN_VALIDITY_CERTIFIED_BLOCKED RBL: ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. [103.54.19.55 listed in sa-trusted.bondedsender.org] X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 2.6 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Sharlatan Hellseher writes: > A note on Nose, it's deprecated upstream so try to use pytest runner. It is used by this project and works fine, and I have stuff to do. Content analysis details: (2.6 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 RCVD_IN_VALIDITY_CERTIFIED_BLOCKED RBL: ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. [103.54.19.55 listed in sa-trusted.bondedsender.org] 0.0 RCVD_IN_VALIDITY_RPBL_BLOCKED RBL: ADMINISTRATOR NOTICE: The query to Validity was blocked. See https://knowledge.validity.com/hc/en-us/articles/20961730681243 for more information. [103.54.19.55 listed in bl.score.senderscore.com] 3.6 RCVD_IN_SBL_CSS RBL: Received via a relay in Spamhaus SBL-CSS [212.233.84.159 listed in zen.spamhaus.org] -0.0 SPF_PASS SPF: sender matches SPF record -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager Sharlatan Hellseher writes: > A note on Nose, it's deprecated upstream so try to use pytest runner. It is used by this project and works fine, and I have stuff to do. > And you don't need to add Flake8 as it is a development dependencie. It is required for tests - try to remove it and build the package. From unknown Sat Sep 06 09:27:43 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Evgeny Pisemsky Subject: bug#76463: closed ([PATCH] gnu: Add aacircuit.) Message-ID: References: <87bjtt6o7b.fsf@gmail.com> <87d7eb973101cd15613f034961cfc64eb11069e6.1740129127.git.mail@pisemsky.site> X-Gnu-PR-Message: they-closed 76463 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 76463@debbugs.gnu.org Date: Sat, 22 Mar 2025 16:11:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1742659862-15612-1" This is a multi-part message in MIME format... ------------=_1742659862-15612-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #76463: [PATCH] gnu: Add aacircuit. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 76463@debbugs.gnu.org. --=20 76463: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D76463 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1742659862-15612-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 76463-done) by debbugs.gnu.org; 22 Mar 2025 16:10:45 +0000 Received: from localhost ([127.0.0.1]:44866 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tw1Qq-00043D-IJ for submit@debbugs.gnu.org; Sat, 22 Mar 2025 12:10:44 -0400 Received: from mail-wr1-x430.google.com ([2a00:1450:4864:20::430]:60469) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from ) id 1tw1Qn-00042r-J7 for 76463-done@debbugs.gnu.org; Sat, 22 Mar 2025 12:10:42 -0400 Received: by mail-wr1-x430.google.com with SMTP id ffacd0b85a97d-39129fc51f8so2424583f8f.0 for <76463-done@debbugs.gnu.org>; Sat, 22 Mar 2025 09:10:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1742659835; x=1743264635; darn=debbugs.gnu.org; h=mime-version:message-id:date:subject:to:from:from:to:cc:subject :date:message-id:reply-to; bh=ACMx2T8MKCk3Gps4BQ646fM8TgOnbDnqiGyTZVKZNW4=; b=nYUQN2kaoNj9lXCZvgRKASinu/+0103HcxL4hCLgn7lnkogWEtPDmfFzwNFboChPEB oRHaSr6/8nwdPJhmk/D65SZaE3/6Vp55EBD++Xoj6C977+VZ3fwgL/Dr7JMaHtgzlaKV 3q6y17+kr/eNznmjfx1d0dyFJdtX5p63D3TQrTNUuDEyjg/bSJ4HKY82U3rUd3j1wc2r JtkhHkFah1sjPrwv36O6x/xFLVTHG9kNMwbrEr1nPBxJHTak+yZBQR7HtfseiDSyHSUP ZmpkZG69ks+aCsGJSqusK5bqi/b/2SqYtjDZs6YePEyZTDR6swAVfksA9mGdsz8d19uw BwAg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1742659835; x=1743264635; h=mime-version:message-id:date:subject:to:from:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=ACMx2T8MKCk3Gps4BQ646fM8TgOnbDnqiGyTZVKZNW4=; b=j2XQdhPtVR61HsXjZ7s6KXP6wV4Tra3wsmQ9h0yOjsAb1UVQ4i4lntyutO35wcq1uT vHQ0wtoplqvo9eTGixyZUN4Fe3x47jpQmmsjXfUpH4gj2atM4StHjWZrC+AAc/JEfVkZ c3wWQuXbs1Op/XKjwLuUOpHjmrLHKCMxq3ePCn53JfLULvhYNIQj0JnXDRRjQwTjX20I qNbP5JJGe3qvJhJ3o3Uwp8ibkpFNGsCBnIi27uKIiYa8oEaGnuZsfLH7IRQY/5nhbQR+ p3ckBfUEqr0RxDLkUhsfJiBLUvB5ffk++YldZ/yqtPWSHiKVY59LiU33csTnV/OfCJtN ztgg== X-Gm-Message-State: AOJu0YzRjV3oyeh+f81zLzFI1CiuURBVc17gPZgB8I700VGOJZRUvWSh hQpd4QBlHmtwVLahBgXRa5C5s+7EtYNf0Dl+vmR2XrYCqD9R3mrNTbiUdvFU X-Gm-Gg: ASbGncsxNvoqMa4DrydTdlga4/1ItPbC/1javl8e8VS5mfH+KxHLvg+cxf4DQWnUoiQ uxY4YVw2czSR0X31zi6nsOpxpZ58yjlCPbpCNm1go6XQs8cHEh0BqyCJOusCasE+9qZ71BdeVEl Yg3nY+WwNiSE2hgzKA0/lhNW1ttskvCY11RnG/8xqL+pryZwW39H8YS3yd1uUXtBPZUDI00OcDf uRv/aBotRjSNQm9k0bjuveBUdiGdlKQdlkkCWbwmjFFz5005bmetWkwrioieaPasxJGgRmic5QW /kgxhMSHQt8pn2MPQ+uO1JBwDdcjh/SO3aBuDMtyMGvUpOgQRi+aRnBIoEhAtvlteWWEoJHfQtr nkevSVzIyNUVvB4n9Rs3a X-Google-Smtp-Source: AGHT+IFnzAKsWyeYzebkJtguvNE+q55ZO4h3NnhElievsGmgfGKyb8o1lMhkCvIQOF/EFFEl0+RO5A== X-Received: by 2002:a05:6000:1549:b0:391:37e0:d40f with SMTP id ffacd0b85a97d-3997f901462mr5366472f8f.17.1742659834454; Sat, 22 Mar 2025 09:10:34 -0700 (PDT) Received: from guxtil (cpc100684-bagu15-2-0-cust967.1-3.cable.virginm.net. [86.8.111.200]) by smtp.gmail.com with ESMTPSA id ffacd0b85a97d-3997f9e6450sm5480814f8f.70.2025.03.22.09.10.32 for <76463-done@debbugs.gnu.org> (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sat, 22 Mar 2025 09:10:33 -0700 (PDT) From: Sharlatan Hellseher To: 76463-done@debbugs.gnu.org Subject: [PATCH] gnu: Add aacircuit. Date: Sat, 22 Mar 2025 16:10:32 +0000 Message-ID: <87bjtt6o7b.fsf@gmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 76463-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Hi, Pushed to master as fa0bbeaf6763540a8b5e1bf2ad58b8b4f0d1af18. I've applied minor modifications, remove the need of python-flake8 and addd commens on commit an use of Nose test runner:=20 =2D-8<---------------cut here---------------start------------->8--- @@ -177,6 +177,7 @@ (define-module (gnu packages engineering) #:use-module ((srfi srfi-1) #:hide (zip))) =20 (define-public aacircuit + ;; No release in PyPI or version tag on Git, use the latest commit. (let ((commit "18635c846754b6219da1a2ceb8977714f70004d0") (revision "0")) (package @@ -199,6 +200,8 @@ (define-public aacircuit (replace 'check (lambda* (#:key tests? #:allow-other-keys) (when tests? + ;; Delete develompent test file. + (delete-file "tests/test_flake.py") ;; Exclude tests intended for visual review. (setenv "NOSE_EXCLUDE" (string-join '("test_export_pdf" @@ -206,24 +209,25 @@ (define-public aacircuit ",")) (setenv "HOME" "/tmp") (invoke "xvfb-run" "./testrunner.sh"))))))) =2D (native-inputs (list python-flake8 =2D python-nose =2D python-setuptools =2D python-wheel =2D xvfb-run)) =2D (propagated-inputs (list gtk+ =2D python-bresenham =2D python-platformdirs =2D python-pycairo =2D python-pyclip =2D python-pygobject =2D python-pypubsub)) + (native-inputs + ;; XXX: Test runner may be migrated to Pytest + ;; after report= to + ;; the upstream to modify them, use deprecated Nose test runner for + ;; now. + (list python-nose + python-setuptools + python-wheel + xvfb-run)) + (propagated-inputs + (list gtkp+ + python-bresenham + python-platformdirs + python-pycairo + python-pyclip + python-pygobject + python-pypubsub)) (home-page "https://github.com/Blokkendoos/AACircuit") (synopsis "Draw electronic circuits with ASCII characters") (description =2D "This is a pythonized, kind of reverse engineered version of orig= inal AACircuit =2Dwritten by Andreas Weber in Borland Delphi. The idea and GUI layout are= also =2Dtaken from the original.") + "This is a pythonized, kind of reverse engineered version of origin= al +AACircuit written by Andreas Weber in Borland Delphi. The idea and GUI la= yout +are also taken from the original.") (license license:gpl3+))))) =2D-8<---------------cut here---------------end--------------->8--- =2D- Oleg --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQJKBAEBCgA0FiEEmEeB3micIcJkGAhndtcnv/Ys0rUFAmfe4PgWHHNoYXJsYXRh bnVzQGdtYWlsLmNvbQAKCRB21ye/9izStbwkD/9C+PgxoFo+OAYkk7T4BbRJMx1w an6eCW6vcHrKtH1cyOeZrD9gvuEGKytBPzOlxxDz3fFQApVsSeRD/mzpewvLqail X9DYHzv4YukcQQbYtLdj3icNk2/fHbLgRRWYV9hzr+USZG7dmpO6yv5A4+G+lCR7 WxHDtWCW9lJavIiu1e5eEIVSCY5xaeXohpEqwq4E/+wdKp60r0qvz6PSC+pQh8ET FvecJvW0GhiTiosZx6aTdTa50KWL7e+1USauMrPUJskQIH00FqTdr+5OOPDYCeoP VLy2XReAE4FIeNsGBEAHksm9fmO2vxwd2eEyVc7EJusbkLmLDZqL+QTG0INS+5v3 Eb7S78rniJL3NWlly+SrlO9NZ35DHg5dTGZD95DS9+HMEIFOgM+4vyenqOp0p0tf 4orRhPkNO7cMOI8wECpWDhTceLRFkSgIQHAlhN4FbGVTXVwAmMJfS4+2X2pgGLpS RhFbKPJng1l+GFf4GiODV880BxOgQkMu0FFZtoQ6SaHKYkQVhG8moV8k77M9da/R du3fGUCJJnCSUh03s4MJW5Txt1gIVOfGX0F/B9B9jvhP+OGY1V01HnfuMmfTsbsV z7KJe66ClGu9vi/SBFSKRLDmG/JcyCA4xvWGlSZKZaCYgBLPuiJ/5kp+m3gQQ8ST d0P8XmoRbUPlkyxnhw== =1ZvV -----END PGP SIGNATURE----- --=-=-=-- ------------=_1742659862-15612-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 21 Feb 2025 09:12:45 +0000 Received: from localhost ([127.0.0.1]:53098 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tlP5Q-0003BB-U9 for submit@debbugs.gnu.org; Fri, 21 Feb 2025 04:12:45 -0500 Received: from lists.gnu.org ([2001:470:142::17]:40382) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tlP5O-0003A6-Q7 for submit@debbugs.gnu.org; Fri, 21 Feb 2025 04:12:43 -0500 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 1tlP5H-0007Ol-V5 for guix-patches@gnu.org; Fri, 21 Feb 2025 04:12:35 -0500 Received: from sofi-shared.hosting.energy ([2001:41d0:602:1f56::] helo=sofi.hosting.energy) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tlP5G-0005Pc-0i for guix-patches@gnu.org; Fri, 21 Feb 2025 04:12:35 -0500 Received: from [176.59.49.173] (helo=localhost.localdomain) by sofi.hosting.energy with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94) (envelope-from ) id 1tlP55-0004CB-T2 for guix-patches@gnu.org; Fri, 21 Feb 2025 12:12:24 +0300 From: Evgeny Pisemsky To: guix-patches@gnu.org Subject: [PATCH] gnu: Add aacircuit. Date: Fri, 21 Feb 2025 12:12:07 +0300 Message-ID: <87d7eb973101cd15613f034961cfc64eb11069e6.1740129127.git.mail@pisemsky.site> X-Mailer: git-send-email 2.48.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: permerror client-ip=2001:41d0:602:1f56::; envelope-from=mail@pisemsky.site; helo=sofi.hosting.energy X-Spam_score_int: -14 X-Spam_score: -1.5 X-Spam_bar: - X-Spam_report: (-1.5 / 5.0 requ) BAYES_00=-1.9, KHOP_HELO_FCRDNS=0.4, T_SPF_HELO_PERMERROR=0.01, T_SPF_PERMERROR=0.01 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) * gnu/packages/engineering.scm (aacircuit): New variable. Change-Id: I0f44b1037866c729fe1d29a52d9447f6cbea6704 --- gnu/packages/engineering.scm | 50 ++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/gnu/packages/engineering.scm b/gnu/packages/engineering.scm index 234f4a2b03..40309f45f4 100644 --- a/gnu/packages/engineering.scm +++ b/gnu/packages/engineering.scm @@ -176,6 +176,56 @@ (define-module (gnu packages engineering) #:use-module (gnu packages xorg) #:use-module ((srfi srfi-1) #:hide (zip))) +(define-public aacircuit + (let ((commit "18635c846754b6219da1a2ceb8977714f70004d0") + (revision "0")) + (package + (name "aacircuit") + (version (git-version "0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Blokkendoos/AACircuit") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07agb7fbpbq74zm27j9b00imr46q6kpwhxzmmffw2s9scv80c1km")))) + (build-system pyproject-build-system) + (arguments + (list + #:phases + #~(modify-phases %standard-phases + (replace 'check + (lambda* (#:key tests? #:allow-other-keys) + (when tests? + ;; Exclude tests intended for visual review. + (setenv "NOSE_EXCLUDE" + (string-join '("test_export_pdf" + "test_import_aacircuit_export_pdf") + ",")) + (setenv "HOME" "/tmp") + (invoke "xvfb-run" "./testrunner.sh"))))))) + (native-inputs (list python-flake8 + python-nose + python-setuptools + python-wheel + xvfb-run)) + (propagated-inputs (list gtk+ + python-bresenham + python-platformdirs + python-pycairo + python-pyclip + python-pygobject + python-pypubsub)) + (home-page "https://github.com/Blokkendoos/AACircuit") + (synopsis "Draw electronic circuits with ASCII characters") + (description + "This is a pythonized, kind of reverse engineered version of original AACircuit +written by Andreas Weber in Borland Delphi. The idea and GUI layout are also +taken from the original.") + (license license:gpl3+)))) + (define-public cutecom (package (name "cutecom") base-commit: 38b4358f4d84cafa54deff77dee6fafac3e03864 -- 2.48.1 ------------=_1742659862-15612-1--