From unknown Sat Sep 13 12:46:11 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#49147 <49147@debbugs.gnu.org> To: bug#49147 <49147@debbugs.gnu.org> Subject: Status: [PATCH] gnu: tmux-themepack: Update to 1.1.0. Reply-To: bug#49147 <49147@debbugs.gnu.org> Date: Sat, 13 Sep 2025 19:46:11 +0000 retitle 49147 [PATCH] gnu: tmux-themepack: Update to 1.1.0. reassign 49147 guix-patches submitter 49147 Matthew James Kraai severity 49147 normal tag 49147 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Sun Jun 20 19:15:16 2021 Received: (at submit) by debbugs.gnu.org; 20 Jun 2021 23:15:16 +0000 Received: from localhost ([127.0.0.1]:34990 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lv6eq-00048H-Ek for submit@debbugs.gnu.org; Sun, 20 Jun 2021 19:15:16 -0400 Received: from lists.gnu.org ([209.51.188.17]:39800) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lv6ep-000489-Ew for submit@debbugs.gnu.org; Sun, 20 Jun 2021 19:15:15 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:54218) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lv6ep-0006I7-6v for guix-patches@gnu.org; Sun, 20 Jun 2021 19:15:15 -0400 Received: from mail.ftbfs.org ([52.8.68.13]:43634 helo=aws.ftbfs.org) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lv6en-0007qA-Fq for guix-patches@gnu.org; Sun, 20 Jun 2021 19:15:14 -0400 Received: from ip68-228-72-85.oc.oc.cox.net ([68.228.72.85] helo=localhost.localdomain) by aws.ftbfs.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lv6el-0001GM-Ui; Sun, 20 Jun 2021 23:15:12 +0000 From: Matthew James Kraai To: guix-patches@gnu.org Subject: [PATCH] gnu: tmux-themepack: Update to 1.1.0. Date: Sun, 20 Jun 2021 16:15:09 -0700 Message-Id: <20210620231509.5882-1-kraai@ftbfs.org> X-Mailer: git-send-email 2.32.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No (score -1.0): ALL_TRUSTED=-1 Received-SPF: pass client-ip=52.8.68.13; envelope-from=kraai@ftbfs.org; helo=aws.ftbfs.org 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_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-Debbugs-Envelope-To: submit Cc: Matthew James Kraai 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.4 (--) * gnu/packages/tmux.scm (tmux-themepack): Update to 1.1.0. --- gnu/packages/tmux.scm | 58 +++++++++++++++++++++---------------------- 1 file changed, 28 insertions(+), 30 deletions(-) diff --git a/gnu/packages/tmux.scm b/gnu/packages/tmux.scm index f208fbfd93..aa409d316c 100644 --- a/gnu/packages/tmux.scm +++ b/gnu/packages/tmux.scm @@ -66,36 +66,34 @@ continue running in the background, then later reattached.") (license license:isc))) (define-public tmux-themepack - (let ((commit "03a372866f7677f7fe63bcee140b48b9fd372c48") - (revision "1")) - (package - (name "tmux-themepack") - (version (git-version "0.0.0" revision commit)) ; no version tags - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jimeh/tmux-themepack") - (commit commit))) - (sha256 - (base32 - "1d3k87mq5lca042jbap5kxskjy3kg79wjhhpnm6jacbn3anc67zl")) - (file-name (git-file-name name version)))) - (build-system gnu-build-system) - (arguments - `(#:tests? #f ; no test suite - #:phases (modify-phases %standard-phases - (delete 'configure) - (delete 'build) - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (string-append - (assoc-ref outputs "out") - "/share/" ,name "-" ,version))) - (copy-recursively "." out))))))) - (home-page "https://github.com/jimeh/tmux-themepack") - (synopsis "Collection of themes for Tmux") - (description "A collection of various themes for Tmux.") - (license license:wtfpl2)))) + (package + (name "tmux-themepack") + (version "1.1.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jimeh/tmux-themepack") + (commit version))) + (sha256 + (base32 + "00dmd16ngyag3n46rbnl9vy82ih6g0y02yfwkid32a1c8vdbvb3z")) + (file-name (git-file-name name version)))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no test suite + #:phases (modify-phases %standard-phases + (delete 'configure) + (delete 'build) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (string-append + (assoc-ref outputs "out") + "/share/" ,name "-" ,version))) + (copy-recursively "." out))))))) + (home-page "https://github.com/jimeh/tmux-themepack") + (synopsis "Collection of themes for Tmux") + (description "A collection of various themes for Tmux.") + (license license:wtfpl2))) (define-public tmuxifier (package -- 2.32.0 From debbugs-submit-bounces@debbugs.gnu.org Sun Jun 20 20:12:49 2021 Received: (at 49147) by debbugs.gnu.org; 21 Jun 2021 00:12:49 +0000 Received: from localhost ([127.0.0.1]:35005 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lv7YX-0005aY-FX for submit@debbugs.gnu.org; Sun, 20 Jun 2021 20:12:49 -0400 Received: from mail.ftbfs.org ([52.8.68.13]:63048 helo=aws.ftbfs.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lv7YV-0005aM-Sp for 49147@debbugs.gnu.org; Sun, 20 Jun 2021 20:12:48 -0400 Received: from ip68-228-72-85.oc.oc.cox.net ([68.228.72.85] helo=localhost.localdomain) by aws.ftbfs.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1lv7YQ-0001Ya-Be; Mon, 21 Jun 2021 00:12:42 +0000 From: Matthew James Kraai To: 49147@debbugs.gnu.org Subject: [PATCH] gnu: tmux-themepack: Update to 1.1.0. Date: Sun, 20 Jun 2021 17:12:41 -0700 Message-Id: <20210621001241.8732-1-kraai@ftbfs.org> X-Mailer: git-send-email 2.32.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Spam-Status: No (score -1.0): ALL_TRUSTED=-1 X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 49147 Cc: Matthew James Kraai 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/tmux.scm (tmux-themepack): Update to 1.1.0. --- gnu/packages/tmux.scm | 59 +++++++++++++++++++++---------------------- 1 file changed, 29 insertions(+), 30 deletions(-) diff --git a/gnu/packages/tmux.scm b/gnu/packages/tmux.scm index f208fbfd93..41f8b948ca 100644 --- a/gnu/packages/tmux.scm +++ b/gnu/packages/tmux.scm @@ -8,6 +8,7 @@ ;;; Copyright © 2019 Oleg Pykhalov ;;; Copyright © 2020 Brice Waegeneire ;;; Copyright © 2020 Edouard Klein +;;; Copyright © 2021 Matthew James Kraai ;;; ;;; This file is part of GNU Guix. ;;; @@ -66,36 +67,34 @@ continue running in the background, then later reattached.") (license license:isc))) (define-public tmux-themepack - (let ((commit "03a372866f7677f7fe63bcee140b48b9fd372c48") - (revision "1")) - (package - (name "tmux-themepack") - (version (git-version "0.0.0" revision commit)) ; no version tags - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jimeh/tmux-themepack") - (commit commit))) - (sha256 - (base32 - "1d3k87mq5lca042jbap5kxskjy3kg79wjhhpnm6jacbn3anc67zl")) - (file-name (git-file-name name version)))) - (build-system gnu-build-system) - (arguments - `(#:tests? #f ; no test suite - #:phases (modify-phases %standard-phases - (delete 'configure) - (delete 'build) - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (string-append - (assoc-ref outputs "out") - "/share/" ,name "-" ,version))) - (copy-recursively "." out))))))) - (home-page "https://github.com/jimeh/tmux-themepack") - (synopsis "Collection of themes for Tmux") - (description "A collection of various themes for Tmux.") - (license license:wtfpl2)))) + (package + (name "tmux-themepack") + (version "1.1.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jimeh/tmux-themepack") + (commit version))) + (sha256 + (base32 + "00dmd16ngyag3n46rbnl9vy82ih6g0y02yfwkid32a1c8vdbvb3z")) + (file-name (git-file-name name version)))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no test suite + #:phases (modify-phases %standard-phases + (delete 'configure) + (delete 'build) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (string-append + (assoc-ref outputs "out") + "/share/" ,name "-" ,version))) + (copy-recursively "." out))))))) + (home-page "https://github.com/jimeh/tmux-themepack") + (synopsis "Collection of themes for Tmux") + (description "A collection of various themes for Tmux.") + (license license:wtfpl2))) (define-public tmuxifier (package -- 2.32.0 From debbugs-submit-bounces@debbugs.gnu.org Tue Jun 22 03:02:22 2021 Received: (at 49147) by debbugs.gnu.org; 22 Jun 2021 07:02:22 +0000 Received: from localhost ([127.0.0.1]:37645 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lvaQP-0004M0-SF for submit@debbugs.gnu.org; Tue, 22 Jun 2021 03:02:22 -0400 Received: from relay12.mail.gandi.net ([217.70.178.232]:43401) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lvaQO-0004Fw-C9 for 49147@debbugs.gnu.org; Tue, 22 Jun 2021 03:02:20 -0400 Received: (Authenticated sender: brice@waegenei.re) by relay12.mail.gandi.net (Postfix) with ESMTPSA id 1FA4B20001B; Tue, 22 Jun 2021 07:02:13 +0000 (UTC) From: Brice Waegeneire To: Matthew James Kraai Subject: Re: bug#49147: [PATCH] gnu: tmux-themepack: Update to 1.1.0. References: <20210620231509.5882-1-kraai@ftbfs.org> <20210621001241.8732-1-kraai@ftbfs.org> Date: Tue, 22 Jun 2021 09:02:11 +0200 In-Reply-To: <20210621001241.8732-1-kraai@ftbfs.org> (Matthew James Kraai's message of "Sun, 20 Jun 2021 17:12:41 -0700") Message-ID: <878s32wff0.fsf_-_@waegenei.re> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 49147 Cc: 49147@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.7 (-) Hello Matthew, Matthew James Kraai writes: > * gnu/packages/tmux.scm (tmux-themepack): Update to 1.1.0. Thank you for your patch. Comparing the output with the previous version shows additional files which shouldn't be in a package such as "share/tmux-themepack-1.1.0/Makefile" or "share/tmux-themepack-1.1.0/.github/workflows/ci.yml". Can you remove such files from the output? Cheers, - Brice From debbugs-submit-bounces@debbugs.gnu.org Mon Jul 05 06:22:44 2021 Received: (at 49147) by debbugs.gnu.org; 5 Jul 2021 10:22:44 +0000 Received: from localhost ([127.0.0.1]:44142 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m0LkR-0004lH-Ur for submit@debbugs.gnu.org; Mon, 05 Jul 2021 06:22:44 -0400 Received: from mail.ftbfs.org ([52.8.68.13]:16742 helo=aws.ftbfs.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m0LkO-0004kx-0w for 49147@debbugs.gnu.org; Mon, 05 Jul 2021 06:22:42 -0400 Received: from ip68-228-72-85.oc.oc.cox.net ([68.228.72.85] helo=localhost.localdomain) by aws.ftbfs.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1m0LkI-0006Tu-76; Mon, 05 Jul 2021 10:22:34 +0000 From: Matthew James Kraai To: 49147@debbugs.gnu.org Subject: [PATCH] gnu: tmux-themepack: Update to 1.1.0. Date: Mon, 5 Jul 2021 03:22:32 -0700 Message-Id: <20210705102232.21532-1-kraai@ftbfs.org> X-Mailer: git-send-email 2.32.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No (score -1.0): ALL_TRUSTED=-1 X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 49147 Cc: Matthew James Kraai 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/tmux.scm (tmux-themepack): Update to 1.1.0. [arguments]: Install only selected files. --- gnu/packages/tmux.scm | 62 ++++++++++++++++++++++--------------------- 1 file changed, 32 insertions(+), 30 deletions(-) diff --git a/gnu/packages/tmux.scm b/gnu/packages/tmux.scm index 09040e106d..7dc977d820 100644 --- a/gnu/packages/tmux.scm +++ b/gnu/packages/tmux.scm @@ -67,36 +67,38 @@ continue running in the background, then later reattached.") (license license:isc))) (define-public tmux-themepack - (let ((commit "03a372866f7677f7fe63bcee140b48b9fd372c48") - (revision "1")) - (package - (name "tmux-themepack") - (version (git-version "0.0.0" revision commit)) ; no version tags - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/jimeh/tmux-themepack") - (commit commit))) - (sha256 - (base32 - "1d3k87mq5lca042jbap5kxskjy3kg79wjhhpnm6jacbn3anc67zl")) - (file-name (git-file-name name version)))) - (build-system gnu-build-system) - (arguments - `(#:tests? #f ; no test suite - #:phases (modify-phases %standard-phases - (delete 'configure) - (delete 'build) - (replace 'install - (lambda* (#:key outputs #:allow-other-keys) - (let* ((out (string-append - (assoc-ref outputs "out") - "/share/" ,name "-" ,version))) - (copy-recursively "." out))))))) - (home-page "https://github.com/jimeh/tmux-themepack") - (synopsis "Collection of themes for Tmux") - (description "A collection of various themes for Tmux.") - (license license:wtfpl2)))) + (package + (name "tmux-themepack") + (version "1.1.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/jimeh/tmux-themepack") + (commit version))) + (sha256 + (base32 + "00dmd16ngyag3n46rbnl9vy82ih6g0y02yfwkid32a1c8vdbvb3z")) + (file-name (git-file-name name version)))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no test suite + #:phases (modify-phases %standard-phases + (delete 'configure) + (delete 'build) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (string-append + (assoc-ref outputs "out") + "/share/" ,name))) + (copy-recursively "powerline" (string-append out "/powerline")) + (for-each (lambda (file) (copy-file file (string-append out "/" file))) + '("basic.tmuxtheme" + "default.tmuxtheme" + "themepack.tmux")))))))) + (home-page "https://github.com/jimeh/tmux-themepack") + (synopsis "Collection of themes for Tmux") + (description "A collection of various themes for Tmux.") + (license license:wtfpl2))) (define-public tmuxifier (package -- 2.32.0 From debbugs-submit-bounces@debbugs.gnu.org Fri Jul 23 10:40:36 2021 Received: (at 49147-done) by debbugs.gnu.org; 23 Jul 2021 14:40:36 +0000 Received: from localhost ([127.0.0.1]:44212 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m6wLs-00036N-Ld for submit@debbugs.gnu.org; Fri, 23 Jul 2021 10:40:36 -0400 Received: from eggs.gnu.org ([209.51.188.92]:54460) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1m6wLn-000367-Mc for 49147-done@debbugs.gnu.org; Fri, 23 Jul 2021 10:40:35 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:56992) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1m6wLi-0003DX-9x; Fri, 23 Jul 2021 10:40:26 -0400 Received: from [2001:660:6102:320:e120:2c8f:8909:cdfe] (port=42908 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m6wLP-0008RA-LP; Fri, 23 Jul 2021 10:40:18 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Matthew James Kraai Subject: Re: bug#49147: [PATCH] gnu: tmux-themepack: Update to 1.1.0. References: <20210620231509.5882-1-kraai@ftbfs.org> <20210705102232.21532-1-kraai@ftbfs.org> Date: Fri, 23 Jul 2021 16:40:03 +0200 In-Reply-To: <20210705102232.21532-1-kraai@ftbfs.org> (Matthew James Kraai's message of "Mon, 5 Jul 2021 03:22:32 -0700") Message-ID: <87pmv9aybg.fsf_-_@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 49147-done Cc: 49147-done@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: -3.3 (---) Hi, Matthew James Kraai skribis: > * gnu/packages/tmux.scm (tmux-themepack): Update to 1.1.0. > [arguments]: Install only selected files. Looks like it fell through the cracks. Now applied, thanks! Ludo=E2=80=99. From unknown Sat Sep 13 12:46:11 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 21 Aug 2021 11:24:06 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator