From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:41200) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hXBoH-00071E-UE for guix-patches@gnu.org; Sat, 01 Jun 2019 17:45:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hXBoF-0007o2-PS for guix-patches@gnu.org; Sat, 01 Jun 2019 17:45:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:53496) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hXBoE-0007nV-P8 for guix-patches@gnu.org; Sat, 01 Jun 2019 17:45:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hXBoE-0006hi-M8 for guix-patches@gnu.org; Sat, 01 Jun 2019 17:45:02 -0400 Subject: [bug#36043] [PATCH] Add Geany Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:40808) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hXBn6-0006gJ-6m for guix-patches@gnu.org; Sat, 01 Jun 2019 17:43:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hXBiA-0003tX-0R for guix-patches@gnu.org; Sat, 01 Jun 2019 17:38:47 -0400 Received: from relay1-d.mail.gandi.net ([217.70.183.193]:49969) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hXBi9-0003sG-PO for guix-patches@gnu.org; Sat, 01 Jun 2019 17:38:45 -0400 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay1-d.mail.gandi.net (Postfix) with ESMTPSA id E3D94240002 for ; Sat, 1 Jun 2019 21:38:41 +0000 (UTC) From: Nicolas Goaziou Date: Sat, 01 Jun 2019 23:38:39 +0200 Message-ID: <87muj1vvds.fsf@nicolasgoaziou.fr> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 36043@debbugs.gnu.org --=-=-= Content-Type: text/plain Hello, The following patch adds Geany text editor. Regards, -- Nicolas Goaziou --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-Add-geany.patch Content-Description: Add geany >From e626c1e11d0f181690e2d2a716a5d40fd85e874b Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 1 Jun 2019 23:37:24 +0200 Subject: [PATCH] gnu: Add geany. * gnu/packages/text-editors.scm (geany): New variable. --- gnu/packages/text-editors.scm | 44 +++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm index 534934dfd1..617e61ea27 100644 --- a/gnu/packages/text-editors.scm +++ b/gnu/packages/text-editors.scm @@ -389,3 +389,47 @@ projects. The EditorConfig project maintains a file format and plugins for various text editors which allow this file format to be read and used by those editors.") (license license:bsd-2))) + +(define-public geany + (package + (name "geany") + (version "1.35") + (source (origin + (method url-fetch) + (uri (string-append "https://download.geany.org/" + "geany-" version ".tar.bz2")) + (sha256 + (base32 + "179xfnvhcxsv54v2mlrhykqv2j7klniln5sffvqqpjmdvwyivvim")))) + (build-system gnu-build-system) + (native-inputs + `(("intltool" ,intltool) + ("pkg-config" ,pkg-config))) + (inputs + `(("gtk2" ,gtk+-2))) + (home-page "https://www.geany.org") + (synopsis "Small and lightweight IDE") + (description "Geany is a small and lightweight Integrated +Development Environment. It was developed to provide a small and fast +IDE, which has only a few dependencies from other packages. Another +goal was to be as independent as possible from a special Desktop +Environment like KDE or GNOME. Geany only requires the GTK2 runtime +libraries. + +Some basic features of Geany: +@itemize +@item Syntax highlighting +@item Code folding +@item Symbol name auto-completion +@item Construct completion/snippets +@item Auto-closing of XML and HTML tags +@item Call tips +@item Many supported filetypes including C, Java, PHP, HTML, Python, + Perl, Pascal (full list) +@item Symbol lists +@item Code navigation +@item Build system to compile and execute your code +@item Simple project management +@item Plugin interface +@end itemize") + (license license:gpl2+))) -- 2.21.0 --=-=-=--