From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Subject: bug#29106: Build loop after changing pulseaudio and emacs-ido-completing-read+ Date: Fri, 24 Nov 2017 18:26:21 +0100 Message-ID: <877eufa8qq.fsf@gnu.org> References: <87fu9ycbaa.fsf@gmail.com> <87a806caym.fsf@gmail.com> <87d14wr9og.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60982) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eIHkp-0000Xz-Bj for bug-guix@gnu.org; Fri, 24 Nov 2017 12:27:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eIHkk-0001W6-Qk for bug-guix@gnu.org; Fri, 24 Nov 2017 12:27:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:47588) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eIHkk-0001VK-MB for bug-guix@gnu.org; Fri, 24 Nov 2017 12:27:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eIHkk-0004uB-G9 for bug-guix@gnu.org; Fri, 24 Nov 2017 12:27:02 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <87d14wr9og.fsf@gnu.org> ("Ludovic \=\?utf-8\?Q\?Court\=C3\=A8s\=22'\?\= \=\?utf-8\?Q\?s\?\= message of "Sun, 05 Nov 2017 17:07:27 +0100") List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: Oleg Pykhalov Cc: 29106@debbugs.gnu.org Ping! ludo@gnu.org (Ludovic Court=C3=A8s) skribis: > Oleg Pykhalov skribis: > >> From 9a012229f41d60610e37639363f3b513a3900465 Mon Sep 17 00:00:00 2001 >> From: Oleg Pykhalov >> Date: Wed, 1 Nov 2017 15:58:48 +0300 >> Subject: [PATCH] gnu: emacs-ido-completing-read+: Update to 4.5. >> >> * gnu/packages/emacs.scm (emacs-ido-completing-read+): Update to 4.5. > > Please also mention the =E2=80=98emacs-ido-ubiquitous=E2=80=99 changes. > > > [...] > >> (define-public emacs-ido-ubiquitous >> + ;; Preserve for people already uses `emacs-ido-ubiquitous' >> (package >> - (name "emacs-ido-ubiquitous") >> - (version "3.12") >> - (source (origin >> - (method url-fetch) >> - (uri (string-append "https://raw.githubusercontent.com" >> - "/DarwinAwardWinner/ido-ubiquitous/v" >> - version "/ido-ubiquitous.el")) >> - (file-name (string-append "ido-ubiquitous-" version ".el"= )) >> - (sha256 >> - (base32 >> - "197ypji0fb6jsdcq40rpnknwlh3imas6s6jbsvkfm0pz9988c3q2")= ))) >> - (build-system emacs-build-system) >> - (propagated-inputs >> - `(("emacs-ido-completing-read+" ,emacs-ido-completing-read+))) >> - (home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous") >> - (synopsis "Use ido (nearly) everywhere") >> - (description >> - "Ido-ubiquitous enables ido-style completion for almost every func= tion >> -that uses the standard completion function completing-read.") >> - (license license:gpl3+))) >> + (inherit emacs-ido-completing-read+) >> + (name "emacs-ido-ubiquitous"))) > > Should it be defined using =E2=80=98deprecated-package=E2=80=99 instead? > > Also, is the =E2=80=9Cbuild loop=E2=80=9D you mentioned fixed with this p= atch? > > Thanks, > Ludo=E2=80=99.