From unknown Fri Sep 05 14:42:29 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#72037] [PATCH] gnu: Add python-svgelements. Resent-From: Evgeny Pisemsky Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 10 Jul 2024 15:05:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 72037 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 72037@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.172062387520451 (code B ref -1); Wed, 10 Jul 2024 15:05:02 +0000 Received: (at submit) by debbugs.gnu.org; 10 Jul 2024 15:04:35 +0000 Received: from localhost ([127.0.0.1]:56918 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sRYry-0005Jn-I2 for submit@debbugs.gnu.org; Wed, 10 Jul 2024 11:04:34 -0400 Received: from lists.gnu.org ([209.51.188.17]:38476) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sRYrv-0005Je-0p for submit@debbugs.gnu.org; Wed, 10 Jul 2024 11:04:32 -0400 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 1sRYro-0005va-5Y for guix-patches@gnu.org; Wed, 10 Jul 2024 11:04:24 -0400 Received: from roxy-shared.hosting.energy ([137.74.182.160] helo=roxy.hosting.energy) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1sRYrm-0004oo-BG for guix-patches@gnu.org; Wed, 10 Jul 2024 11:04:23 -0400 Received: from [185.211.158.16] (helo=laptop) by roxy.hosting.energy with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.97.1) (envelope-from ) id 1sRYra-000000002Hk-3Ywj for guix-patches@gnu.org; Wed, 10 Jul 2024 18:04:11 +0300 From: Evgeny Pisemsky Date: Wed, 10 Jul 2024 18:04:06 +0300 Message-ID: <87v81d47bt.fsf@pisemsky.site> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-Add-python-svgelements.patch Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=137.74.182.160; envelope-from=mail@pisemsky.site; helo=roxy.hosting.energy X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_FAIL=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) 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.3 (--) >From 1a0dad5f3e21f1e1da09c0adeb6e645af252519c Mon Sep 17 00:00:00 2001 Message-ID: <1a0dad5f3e21f1e1da09c0adeb6e645af252519c.1720623721.git.mail@p= isemsky.site> From: Evgeny Pisemsky Date: Wed, 10 Jul 2024 18:00:06 +0300 Subject: [PATCH] gnu: Add python-svgelements. * gnu/packages/python-xyz.scm (python-svgelements): New variable. Change-Id: Ief5aa396d2073b1235f5bd742343e38a588bd086 --- gnu/packages/python-xyz.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 93eeab8ea9..49a9e98de4 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -153,6 +153,7 @@ ;;; Copyright =C2=A9 2024 Navid Afkhami ;;; Copyright =C2=A9 2024 TakeV ;;; Copyright =C2=A9 2024 David Elsing +;;; Copyright =C2=A9 2024 Evgeny Pisemsky ;;; ;;; This file is part of GNU Guix. ;;; @@ -31735,6 +31736,26 @@ (define-public python-jinxed "Jinxed is an implementation of a subset of the Python curses library= .") (license license:mpl2.0))) =20 +(define-public python-svgelements + (package + (name "python-svgelements") + (version "1.9.6") + (source + (origin + (method url-fetch) + (uri (pypi-uri "svgelements" version)) + (sha256 + (base32 "1xrp7yxg65dqdrmghriljf9hh2smq2zhzr2hzmqifgfd0ijas0kw")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-scipy python-numpy python-pillow)) + (home-page "https://github.com/meerk40t/svgelements") + (synopsis "SVG parsing for elements, paths, and other SVG objects") + (description + "This module does high fidelity SVG parsing and geometric rendering. +The goal is to successfully and correctly process SVG for use with any +scripts that may need or want to use SVG files as geometric data.") + (license license:expat))) + (define-public python-svgutils (package (name "python-svgutils") base-commit: 71694363f6cc79e44955acbd9f7ca108e658caca --=20 2.45.2 From unknown Fri Sep 05 14:42:29 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#72037: closed ([PATCH] gnu: Add python-svgelements.) Message-ID: References: <877c90jemm.fsf@gmail.com> <87v81d47bt.fsf@pisemsky.site> X-Gnu-PR-Message: they-closed 72037 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 72037@debbugs.gnu.org Date: Mon, 18 Nov 2024 23:41:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1731973262-5593-1" This is a multi-part message in MIME format... ------------=_1731973262-5593-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #72037: [PATCH] gnu: Add python-svgelements. 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 72037@debbugs.gnu.org. --=20 72037: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D72037 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1731973262-5593-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 72037-done) by debbugs.gnu.org; 18 Nov 2024 23:40:34 +0000 Received: from localhost ([127.0.0.1]:39714 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tDBM9-0001RJ-Mt for submit@debbugs.gnu.org; Mon, 18 Nov 2024 18:40:33 -0500 Received: from mail-wm1-f50.google.com ([209.85.128.50]:44102) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tDBM8-0001RB-7C for 72037-done@debbugs.gnu.org; Mon, 18 Nov 2024 18:40:32 -0500 Received: by mail-wm1-f50.google.com with SMTP id 5b1f17b1804b1-43169902057so39914055e9.0 for <72037-done@debbugs.gnu.org>; Mon, 18 Nov 2024 15:40:32 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1731973171; x=1732577971; darn=debbugs.gnu.org; h=mime-version:message-id:date:subject:to:from:from:to:cc:subject :date:message-id:reply-to; bh=uKTyEy4jACr3T3octdYLXw34DeHCYicwVd9vwcgTMHY=; b=DkNvyj+qKmErPvSTGSfLdALrlLGAlZ4ACkY/E+7/VqqRjcuKeSWH0R9s5rQIXgi+mo bsRBx+7N4oc5FJNq8SWWqi5OmiW/9B7ZbGWMNSLkGzXTcan0EYBwYitjnnDq2LimcjBe jRAX4rYsTqX71jRhdBZ9nig3rCfsRd7CW3/3fh21xetdvGXZGkWRppJuJIDwFaqnLGYL O0mEb+VPnIjF/v3uzke0tuLBd4WBjeXvA0MGaElMsdl8bm59dmXgxCOe5d5I+PTS0ywi FeId2wXLbHpzfSNQp9rZmgYLfNJEjvdS7b7oX0g/zswcmYACssdW3VplpjagfL9/uMP+ ukfA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1731973171; x=1732577971; h=mime-version:message-id:date:subject:to:from:x-gm-message-state :from:to:cc:subject:date:message-id:reply-to; bh=uKTyEy4jACr3T3octdYLXw34DeHCYicwVd9vwcgTMHY=; b=C2HXEv4oOR3avh9Qwu6armpI0LTj7LrMl4VFr31Dt3aubUFIKvykcWgkQkTKJeT+iS FMxSV4OscWNnqMpDqacnW9YzYzcW8rF6VeyjzvejIe/SXMKxQK2f93CXV39fyxbqn4DF VGpfpuLH4YiF5QTZt4rUOTr4nhzeJp/G4WZLRxA4CM8whV9cCQuxF85aRv+B1tQOhiXj NTcG7o0XZKgWHWA6lQcrHxQiohhhCX9woxwgVbPNLF9Petuq5Vf25rW2soXDebYG7rJ0 sAU9l1ZDy0SO2gL2twQzK2bYz+yCBtAJ0xhH9NvRcAAMJZjjaDhXT/C6KIUUuWvhZdmN WaqQ== X-Gm-Message-State: AOJu0Yyz0CiXfnMcRvxcYNhooF6ubTCx/ysIfoJ5mBiKGfjPpFa5BETH pdaiU8QrbOtyDGP5t92xL+lkarVuxtWq/E/m4Mx+hd7M2N0TH9nvuM9tLElgDqE= X-Google-Smtp-Source: AGHT+IFBaikK+gaiLxDmtuBgZEhRp1l4gLM5pLiZxuehVknEVLDhgdoG8D+IYVnncgihGbJEatwF7Q== X-Received: by 2002:a5d:5f94:0:b0:382:4b83:d4c0 with SMTP id ffacd0b85a97d-3824b83d615mr1876413f8f.3.1731973171316; Mon, 18 Nov 2024 15:39:31 -0800 (PST) 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-3823ec72942sm6944294f8f.18.2024.11.18.15.39.30 for <72037-done@debbugs.gnu.org> (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 18 Nov 2024 15:39:30 -0800 (PST) From: Sharlatan Hellseher To: 72037-done@debbugs.gnu.org Subject: [PATCH] gnu: Add python-svgelements. Date: Mon, 18 Nov 2024 23:39:29 +0000 Message-ID: <877c90jemm.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: 72037-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 Hi, Pushed as 4473f8ae90 to master with adjustments. -- Oleg --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCgAdFiEEmEeB3micIcJkGAhndtcnv/Ys0rUFAmc70DEACgkQdtcnv/Ys 0rUwlA//SZUkthYSX369z7MQPB1PKyZMTs9Ue/1nyZpn9HZvXf1u0/1EcPLEEmIM gmyvl1BDhBPyVYKXtTFRDlF5Pd9Nt+IxrwOmGOFpiRm//M0TdVpD/PxBl/bRdIDB Mv9QhR15xgf2052EskIwF43daUnkEdTP7sxGPMkUoNfNgfJJgVlJ6Aog7ZOqUCzs mESBj4Pk+PRR/ja04SbFhVlxPVslTSgfegI6CKoRbK9oSt0KpdNanKoGnNhVd+90 eJEGIb4+QwQSEF1Rv82LgEfHCa/HFPLoPoWMXTUzcbBDbLBh3OLhwO8DXPBz6KZP CRv0cwPoD19HpnxeQ55D95x62MCnH1om8afa2fsUDuJshU60W8LWuXURQla770Xp OiGPj4iOw35ahny9acAjNyp+4kVLW2VSNVQxANxOzhN/CY/6+6dZgXP5VVKvRV+y 53xkSmUHswMK8Ww57vwT0MeItFgQJzqSCYgEpW1HJ32a7HviNTKwHfgpGRrcxj4f DN3a+5wiiksMuuVhLXjV4J0OkUcSfZvpA4yTOLixSYlaog3pe5ro2eHRzXYgb3f8 rmuvk7FaggKhiCd4qe1lCK9EFSr4VCMf5UbhEwvvMDLy7gsAhMpTHLMD4JUVpU0G Js7T9SNMBwp+fe9MY9kal/+9bvvLKfxagGykoFWU0fbO59ZUsQE= =bCi2 -----END PGP SIGNATURE----- --=-=-=-- ------------=_1731973262-5593-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 10 Jul 2024 15:04:35 +0000 Received: from localhost ([127.0.0.1]:56918 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sRYry-0005Jn-I2 for submit@debbugs.gnu.org; Wed, 10 Jul 2024 11:04:34 -0400 Received: from lists.gnu.org ([209.51.188.17]:38476) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1sRYrv-0005Je-0p for submit@debbugs.gnu.org; Wed, 10 Jul 2024 11:04:32 -0400 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 1sRYro-0005va-5Y for guix-patches@gnu.org; Wed, 10 Jul 2024 11:04:24 -0400 Received: from roxy-shared.hosting.energy ([137.74.182.160] helo=roxy.hosting.energy) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1sRYrm-0004oo-BG for guix-patches@gnu.org; Wed, 10 Jul 2024 11:04:23 -0400 Received: from [185.211.158.16] (helo=laptop) by roxy.hosting.energy with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.97.1) (envelope-from ) id 1sRYra-000000002Hk-3Ywj for guix-patches@gnu.org; Wed, 10 Jul 2024 18:04:11 +0300 From: Evgeny Pisemsky To: guix-patches@gnu.org Subject: [PATCH] gnu: Add python-svgelements. Date: Wed, 10 Jul 2024 18:04:06 +0300 Message-ID: <87v81d47bt.fsf@pisemsky.site> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-Add-python-svgelements.patch Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=137.74.182.160; envelope-from=mail@pisemsky.site; helo=roxy.hosting.energy X-Spam_score_int: -18 X-Spam_score: -1.9 X-Spam_bar: - X-Spam_report: (-1.9 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_FAIL=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) 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: -2.3 (--) >From 1a0dad5f3e21f1e1da09c0adeb6e645af252519c Mon Sep 17 00:00:00 2001 Message-ID: <1a0dad5f3e21f1e1da09c0adeb6e645af252519c.1720623721.git.mail@p= isemsky.site> From: Evgeny Pisemsky Date: Wed, 10 Jul 2024 18:00:06 +0300 Subject: [PATCH] gnu: Add python-svgelements. * gnu/packages/python-xyz.scm (python-svgelements): New variable. Change-Id: Ief5aa396d2073b1235f5bd742343e38a588bd086 --- gnu/packages/python-xyz.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 93eeab8ea9..49a9e98de4 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -153,6 +153,7 @@ ;;; Copyright =C2=A9 2024 Navid Afkhami ;;; Copyright =C2=A9 2024 TakeV ;;; Copyright =C2=A9 2024 David Elsing +;;; Copyright =C2=A9 2024 Evgeny Pisemsky ;;; ;;; This file is part of GNU Guix. ;;; @@ -31735,6 +31736,26 @@ (define-public python-jinxed "Jinxed is an implementation of a subset of the Python curses library= .") (license license:mpl2.0))) =20 +(define-public python-svgelements + (package + (name "python-svgelements") + (version "1.9.6") + (source + (origin + (method url-fetch) + (uri (pypi-uri "svgelements" version)) + (sha256 + (base32 "1xrp7yxg65dqdrmghriljf9hh2smq2zhzr2hzmqifgfd0ijas0kw")))) + (build-system pyproject-build-system) + (propagated-inputs (list python-scipy python-numpy python-pillow)) + (home-page "https://github.com/meerk40t/svgelements") + (synopsis "SVG parsing for elements, paths, and other SVG objects") + (description + "This module does high fidelity SVG parsing and geometric rendering. +The goal is to successfully and correctly process SVG for use with any +scripts that may need or want to use SVG files as geometric data.") + (license license:expat))) + (define-public python-svgutils (package (name "python-svgutils") base-commit: 71694363f6cc79e44955acbd9f7ca108e658caca --=20 2.45.2 ------------=_1731973262-5593-1--