From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 14 11:38:42 2019 Received: (at submit) by debbugs.gnu.org; 14 Aug 2019 15:38:43 +0000 Received: from localhost ([127.0.0.1]:49596 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hxvMD-00082e-Bj for submit@debbugs.gnu.org; Wed, 14 Aug 2019 11:38:42 -0400 Received: from lists.gnu.org ([209.51.188.17]:56617) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hxvMA-00082W-EB for submit@debbugs.gnu.org; Wed, 14 Aug 2019 11:38:35 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:42730) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1hxvM9-0001tT-4O for guix-patches@gnu.org; Wed, 14 Aug 2019 11:38:34 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.1 required=5.0 tests=BAYES_50,RCVD_IN_DNSWL_LOW, URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hxvM7-00009I-I8 for guix-patches@gnu.org; Wed, 14 Aug 2019 11:38:32 -0400 Received: from relay1-d.mail.gandi.net ([217.70.183.193]:59931) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hxvM7-00006V-B4 for guix-patches@gnu.org; Wed, 14 Aug 2019 11:38:31 -0400 X-Originating-IP: 185.131.40.67 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 D6090240009 for ; Wed, 14 Aug 2019 15:38:27 +0000 (UTC) From: Nicolas Goaziou To: guix-patches@gnu.org Subject: [PATCH] Add fet Date: Wed, 14 Aug 2019 17:38:26 +0200 Message-ID: <87pnl7g3kd.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 217.70.183.193 X-Spam-Score: -1.6 (-) 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.3 (/) --=-=-= Content-Type: text/plain Hello, The following patch adds FET. Feedback welcome. Regards, -- Nicolas Goaziou --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-gnu-Add-fet.patch Content-Description: Add FET >From c77ce398324f2fc90332e19820d638ed7b055c50 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 14 Aug 2019 17:35:47 +0200 Subject: [PATCH] gnu: Add fet. * gnu/packages/education.scm (fet): New variable. --- gnu/packages/education.scm | 40 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm index 0bb9c099fb..440746a28c 100644 --- a/gnu/packages/education.scm +++ b/gnu/packages/education.scm @@ -480,3 +480,43 @@ use the computer and at the same time teach them a little math, letters of the alphabet, spelling, eye-hand coordination, etc.") (home-page "http://www.schoolsplay.org") (license license:gpl3+))) + +(define-public fet + (package + (name "fet") + (version "5.39.0") + (source (origin + (method url-fetch) + (uri (string-append "https://www.lalescu.ro/liviu/fet/download/" + "fet-" version ".tar.bz2")) + (sha256 + (base32 + "100bmggkychqs2cavqxy7015lr4icw6k99qb03im0v4jasqqmyix")))) + (build-system gnu-build-system) + (arguments + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'fix-hardcoded-directories + (lambda* (#:key outputs #:allow-other-keys) + (substitute* (list "fet.pro" + "src/src.pro" + "src/src-cl.pro" + "src/interface/fet.cpp") + (("/usr") (assoc-ref outputs "out"))) + #t)) + (replace 'configure + (lambda _ (invoke "qmake" "fet.pro")))))) + (inputs + `(("qtbase" ,qtbase))) + (home-page "https://www.lalescu.ro/liviu/fet/") + (synopsis "Timetabling software") + (description "FET is a program for automatically scheduling the +timetable of a school, high-school or university. It uses a fast and +efficient timetabling algorithm. + +Usually, FET is able to solve a complicated timetable in maximum 5-20 +minutes. For simpler timetables, it may take a shorter time, under +5 minutes (in some cases, a matter of seconds). For extremely +difficult timetables, it may take a longer time, a matter of hours.") + (license license:agpl3+))) + -- 2.22.0 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 23 17:34:12 2019 Received: (at 37029) by debbugs.gnu.org; 23 Aug 2019 21:34:12 +0000 Received: from localhost ([127.0.0.1]:41349 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1i1HCF-000448-Kb for submit@debbugs.gnu.org; Fri, 23 Aug 2019 17:34:11 -0400 Received: from eggs.gnu.org ([209.51.188.92]:55463) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1i1HCE-00043t-SU for 37029@debbugs.gnu.org; Fri, 23 Aug 2019 17:34:11 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:51463) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1i1HC9-00071g-Oj; Fri, 23 Aug 2019 17:34:05 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=53164 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1i1HC8-0001hH-Sz; Fri, 23 Aug 2019 17:34:05 -0400 From: =?utf-8?Q?Ludovic_Court=C3=A8s?= To: Nicolas Goaziou Subject: Re: [bug#37029] [PATCH] Add fet References: <87pnl7g3kd.fsf@nicolasgoaziou.fr> Date: Fri, 23 Aug 2019 23:34:03 +0200 In-Reply-To: <87pnl7g3kd.fsf@nicolasgoaziou.fr> (Nicolas Goaziou's message of "Wed, 14 Aug 2019 17:38:26 +0200") Message-ID: <87imqnzhv8.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 37029 Cc: 37029@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 Nicolas, Nicolas Goaziou skribis: >>>From c77ce398324f2fc90332e19820d638ed7b055c50 Mon Sep 17 00:00:00 2001 > From: Nicolas Goaziou > Date: Wed, 14 Aug 2019 17:35:47 +0200 > Subject: [PATCH] gnu: Add fet. > > * gnu/packages/education.scm (fet): New variable. LGTM, thanks! Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Sat Aug 24 10:54:35 2019 Received: (at 37029-done) by debbugs.gnu.org; 24 Aug 2019 14:54:35 +0000 Received: from localhost ([127.0.0.1]:43204 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1i1XR4-0005Eb-R7 for submit@debbugs.gnu.org; Sat, 24 Aug 2019 10:54:35 -0400 Received: from relay3-d.mail.gandi.net ([217.70.183.195]:50021) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1i1XR2-0005ER-64 for 37029-done@debbugs.gnu.org; Sat, 24 Aug 2019 10:54:32 -0400 X-Originating-IP: 185.131.40.67 Received: from localhost (40-67.ipv4.commingeshautdebit.fr [185.131.40.67]) (Authenticated sender: admin@nicolasgoaziou.fr) by relay3-d.mail.gandi.net (Postfix) with ESMTPSA id A1C6F60005; Sat, 24 Aug 2019 14:54:28 +0000 (UTC) From: Nicolas Goaziou To: Ludovic =?utf-8?Q?Court=C3=A8s?= Subject: Re: [bug#37029] [PATCH] Add fet References: <87pnl7g3kd.fsf@nicolasgoaziou.fr> <87imqnzhv8.fsf@gnu.org> Date: Sat, 24 Aug 2019 16:54:27 +0200 In-Reply-To: <87imqnzhv8.fsf@gnu.org> ("Ludovic =?utf-8?Q?Court=C3=A8s=22'?= =?utf-8?Q?s?= message of "Fri, 23 Aug 2019 23:34:03 +0200") Message-ID: <8736hqzk9o.fsf@nicolasgoaziou.fr> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 37029-done Cc: 37029-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.7 (-) Hello, Ludovic Court=C3=A8s writes: >> From: Nicolas Goaziou >> Date: Wed, 14 Aug 2019 17:35:47 +0200 >> Subject: [PATCH] gnu: Add fet. >> >> * gnu/packages/education.scm (fet): New variable. > > LGTM, thanks! > Applied. Thank you. Regards, --=20 Nicolas Goaziou From unknown Sun Jun 15 10:54:47 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 22 Sep 2019 11:24:05 +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