From debbugs-submit-bounces@debbugs.gnu.org Wed May 21 05:08:02 2025 Received: (at submit) by debbugs.gnu.org; 21 May 2025 09:08:02 +0000 Received: from localhost ([127.0.0.1]:44945 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1uHfQf-00021W-2N for submit@debbugs.gnu.org; Wed, 21 May 2025 05:08:01 -0400 Received: from lists.gnu.org ([2001:470:142::17]:52056) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1uHfQc-00020a-6D for submit@debbugs.gnu.org; Wed, 21 May 2025 05:07:59 -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 1uHfQV-0007kB-Ty for guix-patches@gnu.org; Wed, 21 May 2025 05:07:52 -0400 Received: from mout-p-102.mailbox.org ([2001:67c:2050:0:465::102]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_CHACHA20_POLY1305:256) (Exim 4.90_1) (envelope-from ) id 1uHfQR-0006FZ-QS for guix-patches@gnu.org; Wed, 21 May 2025 05:07:51 -0400 Received: from smtp2.mailbox.org (smtp2.mailbox.org [IPv6:2001:67c:2050:b231:465::2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-102.mailbox.org (Postfix) with ESMTPS id 4b2QYR4J8rz9tY5 for ; Wed, 21 May 2025 11:07:39 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=junkeria.club; s=MBO0001; t=1747818459; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=0vR2xZmoJPYCRlYXh2Rgq3R7eZK+o9ZchkQQmR684HQ=; b=AsZORzRY8mqA8lrA8tTVtNz22k9beMz6LAmICf4WZyNZRAwq+nngnEI6zJAyVGzdmX47QI OkTBYa1lVQrqaDa+x/JedXJU3C5wjXI6glpJ2toBzPeZHNcvj7SxQOK7ibxknC/CV4AX7V 7Iy4TePKusK+5je3A5it147+eKfiolVF93cQZxXTfDRquYbsspT4bSXlLyu0fTcLoQRobr r7Jp+/OH8m5070ABGrDlGEr8NvXqVoK1vu1v0piZ1ZLkHqWuzIgfjaCTfU4TiqLv6CZjVS TO0r7xzDSGLk2FSzp2zKalNEM81OA7rlRjUp14hS0rhIUNA1r5SFvWgGtxX45A== Date: Wed, 21 May 2025 16:07:25 +0700 From: Junker To: guix-patches@gnu.org Subject: [PATCH] gnu: Add featherpad. Message-ID: <61a3a8eacc88c5e4309d1084c14933d64e3361a9.1747818391.git.dk@junkeria.club> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 4b2QYR4J8rz9tY5 Received-SPF: pass client-ip=2001:67c:2050:0:465::102; envelope-from=dk@junkeria.club; helo=mout-p-102.mailbox.org X-Spam_score_int: -27 X-Spam_score: -2.8 X-Spam_bar: -- X-Spam_report: (-2.8 / 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_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) 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: -0.1 (/) * gnu/packages/text-editors.scm (featherpad): New variable. Change-Id: I329b6ba354caa8f1646735c2646b05dd00d2aa2f --- gnu/packages/text-editors.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm index a32d740616..164faa4725 100644 --- a/gnu/packages/text-editors.scm +++ b/gnu/packages/text-editors.scm @@ -38,6 +38,7 @@ ;;; Copyright © 2025 Ashvith Shetty ;;; Copyright © 2025 Sharlatan Hellseher ;;; Copyright © 2025 Ashish SHUKLA +;;; Copyright © 2025 Junker ;;; ;;; This file is part of GNU Guix. ;;; @@ -102,6 +103,7 @@ (define-module (gnu packages text-editors) #:use-module (gnu packages gtk) #:use-module (gnu packages guile) #:use-module (gnu packages haskell-xyz) + #:use-module (gnu packages hunspell) #:use-module (gnu packages image) #:use-module (gnu packages lesstif) #:use-module (gnu packages libbsd) @@ -1983,3 +1985,27 @@ (define-public dte syntax highlighting, customizable color scheme (including support for 24-bit true colours), kitty keyboard protocol, editorconfig support, amongst other features.") (license license:gpl2))) + +(define-public featherpad + (package + (name "featherpad") + (version "1.6.2") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/tsujan/FeatherPad") + (commit (string-append "V" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0dg99d17hlffmpcm9l1dbwkw5ympbxxa2mmi6qzljd5jx2sfb3hv")))) + (build-system cmake-build-system) + (arguments '(#:tests? #f)) ;no tests + (inputs (list qtbase + qtsvg + hunspell)) + (native-inputs (list pkg-config)) + (home-page "https://github.com/tsujan/FeatherPad") + (synopsis "Lightweight Qt5 plain-text editor") + (description "FeatherPad is a lightweight text editor based on Qt5.") + (license license:expat))) base-commit: 11bc17c409d77cd1af91e30b5b9f6a73f873a152 -- 2.49.0 From debbugs-submit-bounces@debbugs.gnu.org Mon Jun 02 11:31:07 2025 Received: (at 78533) by debbugs.gnu.org; 2 Jun 2025 15:31:07 +0000 Received: from localhost ([127.0.0.1]:53040 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1uM77y-0003dI-U1 for submit@debbugs.gnu.org; Mon, 02 Jun 2025 11:31:07 -0400 Received: from hera.aquilenet.fr ([185.233.100.1]:33230) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1uM77v-0003cd-2m for 78533@debbugs.gnu.org; Mon, 02 Jun 2025 11:31:05 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 38A8FC3C; Mon, 2 Jun 2025 17:30:56 +0200 (CEST) Authentication-Results: hera.aquilenet.fr; none X-Virus-Scanned: Debian amavis at hera.aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavis, port 10024) with ESMTP id KSH5yu323063; Mon, 2 Jun 2025 17:30:55 +0200 (CEST) Received: from jurong (176-179-191-150.abo.bbox.fr [176.179.191.150]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 1572B1AF; Mon, 2 Jun 2025 17:30:54 +0200 (CEST) Date: Mon, 2 Jun 2025 17:30:53 +0200 From: Andreas Enge To: Junker Subject: Re: [PATCH] gnu: Add featherpad. Message-ID: References: <61a3a8eacc88c5e4309d1084c14933d64e3361a9.1747818391.git.dk@junkeria.club> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <61a3a8eacc88c5e4309d1084c14933d64e3361a9.1747818391.git.dk@junkeria.club> X-Rspamd-Server: hera X-Rspamd-Queue-Id: 38A8FC3C X-Spamd-Result: default: False [-5.30 / 15.00]; NEURAL_HAM(-3.00)[-1.000]; BAYES_HAM(-2.70)[98.69%]; MID_RHS_NOT_FQDN(0.50)[]; MIME_GOOD(-0.10)[text/plain]; RCVD_COUNT_TWO(0.00)[2]; FROM_EQ_ENVFROM(0.00)[]; MIME_TRACE(0.00)[0:+]; RCPT_COUNT_TWO(0.00)[2]; TO_MATCH_ENVRCPT_ALL(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; RCVD_TLS_ALL(0.00)[]; FROM_HAS_DN(0.00)[]; TO_DN_SOME(0.00)[]; ARC_NA(0.00)[] X-Rspamd-Action: no action X-Spamd-Bar: ----- X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 78533 Cc: 78533@debbugs.gnu.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: -1.0 (-) Hello! I tried to apply the patch with "git am", but this does not work anymore, probably due to surrounding changes. The license should be gpl3+ according to the source code. Could you maybe expand the description a bit? Thanks for sending a new patch (and cc-ing me in doing so), Andreas