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: Sun, 05 Nov 2017 17:07:27 +0100 Message-ID: <87d14wr9og.fsf@gnu.org> References: <87fu9ycbaa.fsf@gmail.com> <87a806caym.fsf@gmail.com> 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]:34665) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1eBNSv-00029Q-9F for bug-guix@gnu.org; Sun, 05 Nov 2017 11:08:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1eBNSs-0001KI-3c for bug-guix@gnu.org; Sun, 05 Nov 2017 11:08:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:43717) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1eBNSr-0001KE-Vv for bug-guix@gnu.org; Sun, 05 Nov 2017 11:08:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1eBNSr-0002cE-RX for bug-guix@gnu.org; Sun, 05 Nov 2017 11:08:01 -0500 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <87a806caym.fsf@gmail.com> (Oleg Pykhalov's message of "Wed, 01 Nov 2017 17:47:29 +0300") 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 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 funct= ion > -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 pat= ch? Thanks, Ludo=E2=80=99.