From debbugs-submit-bounces@debbugs.gnu.org Wed Feb 10 13:03:15 2021 Received: (at submit) by debbugs.gnu.org; 10 Feb 2021 18:03:15 +0000 Received: from localhost ([127.0.0.1]:57198 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l9tpa-0002ki-Qr for submit@debbugs.gnu.org; Wed, 10 Feb 2021 13:03:15 -0500 Received: from lists.gnu.org ([209.51.188.17]:53350) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l9tpZ-0002kZ-6I for submit@debbugs.gnu.org; Wed, 10 Feb 2021 13:03:13 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:33920) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1l9tpY-0004E6-VU for guix-patches@gnu.org; Wed, 10 Feb 2021 13:03:12 -0500 Received: from dd3624.kasserver.com ([85.13.130.11]:60462) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1l9tpV-0005SI-Ir for guix-patches@gnu.org; Wed, 10 Feb 2021 13:03:12 -0500 Received: from localhost (217-149-162-201.nat.highway.telekom.at [217.149.162.201]) by dd3624.kasserver.com (Postfix) with ESMTPA id 3ADB05D4018B; Wed, 10 Feb 2021 19:03:05 +0100 (CET) From: =?UTF-8?q?Stefan=20Reich=C3=B6r?= To: guix-patches@gnu.org Subject: [PATCH] gnu: Add tiramisu. Date: Wed, 10 Feb 2021 19:03:01 +0100 Message-Id: <20210210180301.32179-1-stefan@xsteve.at> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Received-SPF: none client-ip=85.13.130.11; envelope-from=stefan@xsteve.at; helo=dd3624.kasserver.com X-Spam_score_int: -25 X-Spam_score: -2.6 X-Spam_bar: -- X-Spam_report: (-2.6 / 5.0 requ) BAYES_00=-1.9, RCVD_IN_DNSWL_LOW=-0.7, SPF_HELO_NONE=0.001, SPF_NONE=0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: submit Cc: =?UTF-8?q?Stefan=20Reich=C3=B6r?= 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 (---) * gnu/packages/gnome-xyz.scm (tiramisu): New variable. --- gnu/packages/gnome-xyz.scm | 39 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/gnu/packages/gnome-xyz.scm b/gnu/packages/gnome-xyz.scm index eb99fda78e..5743f5999a 100644 --- a/gnu/packages/gnome-xyz.scm +++ b/gnu/packages/gnome-xyz.scm @@ -9,6 +9,7 @@ ;;; Copyright © 2020 Tobias Geerinckx-Rice ;;; Copyright © 2020 Ryan Prior ;;; Copyright © 2020 Ellis Kenyo +;;; Copyright © 2020 Stefan Reichör ;;; ;;; This file is part of GNU Guix. ;;; @@ -32,6 +33,7 @@ #:use-module (guix build-system meson) #:use-module (guix git-download) #:use-module (guix packages) + #:use-module (guix utils) #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages autotools) #:use-module (gnu packages base) @@ -888,3 +890,40 @@ feature-set for programming Vala effectively.") (description "Nordic is a Gtk3.20+ theme created using the Nord color pallete.") (license license:gpl3)))) + +(define-public tiramisu + (package + (name "tiramisu") + (version "1.0a") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/Sweets/tiramisu") + (commit "8eb946dae0e2f98d3850d89e1bb535640e8c3266"))) + (sha256 + (base32 + "0wz2r8369d40vnxswknx0zxzbs03gzv0nc8al4g0ffg972p15j25")) + (file-name (git-file-name name version)))) + (build-system gnu-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (delete 'configure) + (delete 'check) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let ((out (assoc-ref outputs "out"))) + (install-file "tiramisu" (string-append out "/bin")) + #t)))) + #:make-flags + (list (string-append "CC=" ,(cc-for-target))))) + (inputs + `(("glib" ,glib))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (home-page "https://github.com/Sweets/tiramisu") + (synopsis "Desktop notifications, the UNIX way") + (description "tiramisu is a notification daemon based on dunst that +outputs notifications to STDOUT in order to allow the user to process +notifications any way they prefer.") + (license license:expat))) -- 2.25.1 From debbugs-submit-bounces@debbugs.gnu.org Thu Feb 11 05:15:39 2021 Received: (at 46427-done) by debbugs.gnu.org; 11 Feb 2021 10:15:39 +0000 Received: from localhost ([127.0.0.1]:57851 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lA90c-0007F1-Mp for submit@debbugs.gnu.org; Thu, 11 Feb 2021 05:15:38 -0500 Received: from mail-oln040092254093.outbound.protection.outlook.com ([40.92.254.93]:43215 helo=APC01-PU1-obe.outbound.protection.outlook.com) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lA90a-0007Eo-2h for 46427-done@debbugs.gnu.org; Thu, 11 Feb 2021 05:15:37 -0500 ARC-Seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=AwIC266bzlxy+xAramt4rBpi/8ru8Hdmz105ZSPZZia1g18+in3mdGjAjH1rVB7ZennP3N024EDXk9uQXvm28t2UYugcR+61AEGdT4mTbHkFHCSEI3W943bukxyOVSFkGFNs2H/kwf52SnO5oWIBwmVRS/EkfDuBOsHk6Qmp61SonCKIHVGlMM70AOFWSRz+e3mEmmY0SSYOKmaLMNmZ94qseFhybwosTSv4RmpThAS3xUeS66oeDURClOYdlzbQ75pz4PeEa7bMcO7TxzPTGEsYg3w1A33gMTxI+rEFy6qCHjwoxKGnWtTduyz8DJ6ryRwflPJR7KZ0Qvv2TUX8Bw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=F9HVPe9G+XgNC6radkEae1r1KA7WZoRPYRCu8+WvsVM=; b=DtAq3zmZvl/Q5tKIHpdFpWciCYd6eRZgoDW1AoqLdUlVyC7/QVcVCzz13XqdAPC+CEhEtEK2t1kpePuQpLCnvZ4ZrymWqJOXQILK/P/oQ/gbbvvgPlJavg5K+kVqvzj3A5ewj6ymTMjUGD6YnuAF32tAK7CrkNA3jaNz3qLP39/aEIyUlz9PSpq65V/XNkTS0dOdnCQr3NPfKFu2lQ9Lx1+n46+9o/0sLY8xEja/x7AAgHEjzzWYLweg3eWa6KULjteo5fW/bMPvuST7DobBBzYr1LG/x2hVoWe4GmfHeDaDEPf3Fkcny//jKONYNkvsu28VpP+KWdpW3YB0Gq0vJw== ARC-Authentication-Results: i=1; mx.microsoft.com 1; spf=none; dmarc=none; dkim=none; arc=none DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=outlook.com; s=selector1; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=F9HVPe9G+XgNC6radkEae1r1KA7WZoRPYRCu8+WvsVM=; b=UazgtXMuQOZj39yfs1cBZZ7mrbE3RYnBr07Fvk68Mu4Hvl4glvFL7FmxEMNrZLmZGjGgKcAnZywEquE/AGl0qqSxAmT/2YT67TqlDVq/vmyDvmZqZLTOYbz8pogW2DTS5cVhC1Q8WVbQKjrK1I8i3dFnO77OcepOpe68oNHFPOskKAhtgSYqgZ4fmaGDdGsanfL+JI8zHFknF+/21weDogn6RwbZa3AR3ro+3OtytPrFIW17WpD3bAsGSqVqtrkJTC5BV2GCoXFxr3plZkcPIOwei/mgmeagtGJ9qIB1s1tu0Snf8X3beAP6kbar91lHlP1/RxpUemz7E1LZNVBB+w== Received: from PU1APC01FT043.eop-APC01.prod.protection.outlook.com (2a01:111:e400:7ebe::45) by PU1APC01HT027.eop-APC01.prod.protection.outlook.com (2a01:111:e400:7ebe::324) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.3846.25; Thu, 11 Feb 2021 10:15:27 +0000 Received: from OSZP286MB0664.JPNP286.PROD.OUTLOOK.COM (2a01:111:e400:7ebe::4a) by PU1APC01FT043.mail.protection.outlook.com (2a01:111:e400:7ebe::262) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.3846.25 via Frontend Transport; Thu, 11 Feb 2021 10:15:27 +0000 X-IncomingTopHeaderMarker: OriginalChecksum:462145A10C547A3DC75B2B19C9AC6DEAD202B376AAE102E3054E3E5B59B69BC3; UpperCasedChecksum:BB0B6701E312358110BE1FADDD40A5786FC15C4E5EEC62A6778DEDAE593C653B; SizeAsReceived:8753; Count:47 Received: from OSZP286MB0664.JPNP286.PROD.OUTLOOK.COM ([fe80::4987:bbf2:2bff:6b22]) by OSZP286MB0664.JPNP286.PROD.OUTLOOK.COM ([fe80::4987:bbf2:2bff:6b22%5]) with mapi id 15.20.3846.031; Thu, 11 Feb 2021 10:15:27 +0000 From: =?utf-8?B?5a6L5paH5q2m?= To: Stefan =?utf-8?Q?Reich=C3=B6r?= Subject: Re: [bug#46427] [PATCH] gnu: Add tiramisu. References: <20210210180301.32179-1-stefan@xsteve.at> Date: Thu, 11 Feb 2021 18:17:06 +0800 In-Reply-To: <20210210180301.32179-1-stefan@xsteve.at> ("Stefan =?utf-8?Q?Reich=C3=B6r=22's?= message of "Wed, 10 Feb 2021 19:03:01 +0100") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-TMN: [0nwU7WD6X/x3Sf3LgXv5V4p1nc4yZfxSCMuSxuBaRdyCRCiD9ihu7gPEKlsbYZV+] X-ClientProxiedBy: AM0PR01CA0149.eurprd01.prod.exchangelabs.com (2603:10a6:208:aa::18) To OSZP286MB0664.JPNP286.PROD.OUTLOOK.COM (2603:1096:604:ec::11) X-Microsoft-Original-Message-ID: <8735y2di3h.fsf@outlook.com> MIME-Version: 1.0 X-MS-Exchange-MessageSentRepresentingType: 1 Received: from localhost (2409:8a62:378:f4a0:2f1:f5ff:fe18:6bb) by AM0PR01CA0149.eurprd01.prod.exchangelabs.com (2603:10a6:208:aa::18) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.3846.25 via Frontend Transport; Thu, 11 Feb 2021 10:15:26 +0000 X-MS-PublicTrafficType: Email X-IncomingHeaderCount: 47 X-EOPAttributedMessage: 0 X-MS-Office365-Filtering-Correlation-Id: fd003c02-e00d-4bbb-d315-08d8ce75f415 X-MS-TrafficTypeDiagnostic: PU1APC01HT027: X-Microsoft-Antispam: BCL:0; X-Microsoft-Antispam-Message-Info: XRU/kkt+ZOrJn+RXYm1GPn6cUSSpsj0Q+Ss1C9rUhRIFIR/SLqejpNy0ssd80eIGYXk+/oJPyj84hB/U9wyllA37+gyZaBfn93TvLAQXMXq20OIGC6uxGHmgRhx3g5w1pEkldSogUEddCxcR0GEsEcY4SpMD0OJbwqx1KO+e1jnAh7oWutuyXCkDDt8E2rqgogFDMAdDKebHMsyAm/jDkScM3PtLS9vkskHfKdZq4ksPFIyavTrKltLfDWeZqBACt3mun/0qrCjh+9GrWSsVXLLMMZvfKFhTxqRT0bZZ/q1BqelbhLMR94y6ZM5U6pKUzl/L8PLQJqBqdLBwb8ntJ4BRS+OG2ECeYguriER1pFk4XPhdTIE7vK0D24eCQoCz7Np7PJ+ohCPBbD4RFepD9w== X-MS-Exchange-AntiSpam-MessageData: I/uEUASptJEkOeZ6VQNoP2WEKR2dx4OaRO92LonhENfZQXVvzDuNRmz6CrKW2RkARrTOMyFWbMTtPgz1VEeXflKeGHUEKRawlWibJGMB5QrJLDGRNHg34gy7VqxHQgCKKuuwjwwrJtSOQxbE5K1/lk1XoUiFL6gFniPnQ1odgUAKKdFLrsf6Ru5D84+1qiaLz61/SF9HezZ4V5YN8F6Oow== X-OriginatorOrg: outlook.com X-MS-Exchange-CrossTenant-Network-Message-Id: fd003c02-e00d-4bbb-d315-08d8ce75f415 X-MS-Exchange-CrossTenant-OriginalArrivalTime: 11 Feb 2021 10:15:27.6084 (UTC) X-MS-Exchange-CrossTenant-FromEntityHeader: Hosted X-MS-Exchange-CrossTenant-Id: 84df9e7f-e9f6-40af-b435-aaaaaaaaaaaa X-MS-Exchange-CrossTenant-AuthSource: PU1APC01FT043.eop-APC01.prod.protection.outlook.com X-MS-Exchange-CrossTenant-AuthAs: Anonymous X-MS-Exchange-CrossTenant-FromEntityHeader: Internet X-MS-Exchange-CrossTenant-RMS-PersistedConsumerOrg: 00000000-0000-0000-0000-000000000000 X-MS-Exchange-Transport-CrossTenantHeadersStamped: PU1APC01HT027 X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 46427-done Cc: 46427-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: -1.0 (-) Stefan Reich=C3=B6r writes: > * gnu/packages/gnome-xyz.scm (tiramisu): New variable. > --- > gnu/packages/gnome-xyz.scm | 39 ++++++++++++++++++++++++++++++++++++++ > 1 file changed, 39 insertions(+) > [...] > + > +(define-public tiramisu > + (package > + (name "tiramisu") > + (version "1.0a") I changed this "1.0a" to 'git-version'. Pushed, thank you! From unknown Fri Jun 20 07:18:55 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Thu, 11 Mar 2021 12: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