From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 18 09:14:34 2017 Received: (at submit) by debbugs.gnu.org; 18 Aug 2017 13:14:34 +0000 Received: from localhost ([127.0.0.1]:43641 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dih6g-0003Ss-GH for submit@debbugs.gnu.org; Fri, 18 Aug 2017 09:14:34 -0400 Received: from eggs.gnu.org ([208.118.235.92]:49357) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dih6f-0003Sf-BP for submit@debbugs.gnu.org; Fri, 18 Aug 2017 09:14:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dih6Y-0002N0-SW for submit@debbugs.gnu.org; Fri, 18 Aug 2017 09:14:28 -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.8 required=5.0 tests=BAYES_50,T_DKIM_INVALID autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:44188) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dih6Y-0002Mw-P1 for submit@debbugs.gnu.org; Fri, 18 Aug 2017 09:14:26 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40327) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dih6X-0002kg-Cs for guix-patches@gnu.org; Fri, 18 Aug 2017 09:14:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dih6W-0002Mj-4d for guix-patches@gnu.org; Fri, 18 Aug 2017 09:14:25 -0400 Received: from tobias.gr ([2001:470:cc92::1]:43586) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dih6V-0002MV-Qj for guix-patches@gnu.org; Fri, 18 Aug 2017 09:14:24 -0400 Received: by tobias.gr (OpenSMTPD) with ESMTP id 0ff1908c for ; Fri, 18 Aug 2017 13:14:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=tobias.gr; h=from:to :subject:date:message-id:mime-version:content-transfer-encoding; s=201706; bh=T+V9l0C7NRJWIiUwLy7/m/SbbVm1LZ7bwawuZ8D0wrI=; b=sa WoFwkIdi6KwXr1PKR4rMyA10qqjLUYBe6yr9+aWrZwJwg+WJOZFS6egrQmy1Ks8B 1rTenlyXz9iZrrucUFOPUy7l2jGgko9JyhXBEPhUtbQGU/mqqrXGkrAAZj2uOeBU czZrEnomkfuaZedIZs2Q3/63M988zZuzss8l97nl8pOCiuDF1FatJrNOV0RyyMyu Xhi4EAT8J8nkoIhzgn89R6vRGkMgx2BXy21j6Eco6w0Jzr99TNvwWm8pbkn4TiAx OV1KdVxh8/kj8VSdoJSx8ngenexq1cTplfKob3F2giEcc12DdS7Ko/J0b/83109l yLiwGDIr36s4fuiKXk2A== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 6eab1266 (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128:NO) for ; Fri, 18 Aug 2017 13:14:19 +0000 (UTC) From: Tobias Geerinckx-Rice To: guix-patches@gnu.org Subject: [PATCH] gnu: Remove libgames-support. Date: Fri, 18 Aug 2017 15:16:01 +0200 Message-Id: <20170818131601.14070-1-me@tobias.gr> X-Mailer: git-send-email 2.13.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.1 (----) 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: -4.1 (----) It was simply the old name (and version) of libgnome-games-support. * gnu/packages/gnome.scm (libgames-support): Remove variable. Move the inherited fields... (libgnome-games-support): ...to here. --- gnu/packages/gnome.scm | 28 +++++++--------------------- 1 file changed, 7 insertions(+), 21 deletions(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index f17db8fe1..f14315593 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3335,10 +3335,10 @@ write applications that need to store structured data as well as make complex queries upon that data.") (license license:lgpl2.1+))) -(define-public libgames-support +(define-public libgnome-games-support (package - (name "libgames-support") - (version "1.0.2") + (name "libgnome-games-support") + (version "1.2.2") (source (origin (method url-fetch) (uri (string-append "mirror://gnome/sources/" name "/" @@ -3346,14 +3346,14 @@ queries upon that data.") name "-" version ".tar.xz")) (sha256 (base32 - "0rms2ksiv7j9944km7r87q22nh05si1fisn5xm3z4zy5vpcfi5mh")))) + "04qbgcgmc01sinhbqdljiny8q868l01nkdawj8wrnqnd1i8czvsg")))) (build-system gnu-build-system) (arguments '(#:phases (modify-phases %standard-phases (add-before 'check 'pre-check (lambda _ - ;; tests require a writable HOME. + ;; Tests require a writable HOME. (setenv "HOME" (getcwd)) #t))))) (native-inputs @@ -3361,30 +3361,16 @@ queries upon that data.") ("pkg-config" ,pkg-config) ("vala" ,vala))) (propagated-inputs - ;; Required by libgames-support-1.0.pc + ;; Required by libgnome-games-support-1.0.pc `(("gtk+" ,gtk+) ("libgee" ,libgee))) (home-page "https://www.gnome.org/") (synopsis "Useful functionality shared among GNOME games") (description - "libgames-support is a small library intended for internal use by + "libgnome-games-support is a small library intended for internal use by GNOME Games, but it may be used by others.") (license license:lgpl3+))) -(define-public libgnome-games-support - (package - (inherit libgames-support) - (name "libgnome-games-support") - (version "1.2.2") - (source (origin - (method url-fetch) - (uri (string-append "mirror://gnome/sources/" name "/" - (version-major+minor version) "/" - name "-" version ".tar.xz")) - (sha256 - (base32 - "04qbgcgmc01sinhbqdljiny8q868l01nkdawj8wrnqnd1i8czvsg")))))) - (define-public gnome-klotski (package (name "gnome-klotski") -- 2.13.1 From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 18 16:24:20 2017 Received: (at 28136) by debbugs.gnu.org; 18 Aug 2017 20:24:20 +0000 Received: from localhost ([127.0.0.1]:44672 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dinoZ-00059Z-RQ for submit@debbugs.gnu.org; Fri, 18 Aug 2017 16:24:20 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:36859) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dinoY-00059R-31 for 28136@debbugs.gnu.org; Fri, 18 Aug 2017 16:24:18 -0400 Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.nyi.internal (Postfix) with ESMTP id F0D14211C4; Fri, 18 Aug 2017 16:24:17 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute5.internal (MEProxy); Fri, 18 Aug 2017 16:24:17 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fastmail.com; h= content-type:date:from:in-reply-to:message-id:mime-version :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc :x-sasl-enc; s=fm1; bh=E4BmASgGF/f5e+h90r1ifZfL5/nCNJW324kvHJwLq iU=; b=FPHRqQtwV4bRiFTXHjnjeuLE/iQ7/TnY9k5TdQD5AA4dVZkk3OpJNJFJt 9nkN/Akl/GoN8UGe32D5jADqImOGnMWAzX0V+VyQUA/E34yLn5Nd3B8CaAEnQpoJ d+0ii50+Sc8GQA/mgiYiMFrwQtgOeUk6L1vyUDF2xbpvmEQb65N6Ca+XZWX3xcgH Fo7wecQd3353Z2Cta/pgDlBnnIJLs9LXelY43qL/IcswXvf0lOc6vldB9wZCyezB dc5pZeoIdeKEtrXwJAXoVxdDcofAA/ouJo4WgsOoA35JSFY3VQcbaZvYMXpO530+ ReyIWcZLvdBLIpwpcTGYNU420Y8Iw== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc:x-sasl-enc; s=fm1; bh=E4BmASgGF/f5e+h90r 1ifZfL5/nCNJW324kvHJwLqiU=; b=aIjM7xdAyOQ2gg/F2Lwvx1NZWWOvwNBI5h YXhC9oG+TKwT1khOBAs0BB15k+MQwvgh6hlqKVe9VRqmwey0AzFRnvI+ZC7gKlb/ PUuDrqBnVwxGD97kDB0ey5J6ymUBck98HKV7RfFdCdeqTDqqxtavCD0suTa0tYQi 4Ez35jX0x08eKZKGOCDIB7JhoRxGou6LuRAzQ5ntkci8DtTdfCcZGZPrHMRigTkv kIxvC5nMj9jwO45KEqtFUzUy51YWHPyhbbI32DiVzkSsdBancBv3iotLNK6gGQ9j ZjLnn7gws7mM9sWN1fY8cahRBcI+Ews3Fd2ky/h/LKGxBy3aW2FA== X-ME-Sender: X-Sasl-enc: PlXueBEZ7Vxd8WlLiSG0ZZeR81OOaZzI2etXpDNllGHf 1503087857 Received: from localhost (unknown [188.113.81.93]) by mail.messagingengine.com (Postfix) with ESMTPA id 80C6B24772; Fri, 18 Aug 2017 16:24:17 -0400 (EDT) From: Marius Bakke To: Tobias Geerinckx-Rice , 28136@debbugs.gnu.org Subject: Re: [bug#28136] [PATCH] gnu: Remove libgames-support. In-Reply-To: <20170818131601.14070-1-me@tobias.gr> References: <20170818131601.14070-1-me@tobias.gr> User-Agent: Notmuch/0.25 (https://notmuchmail.org) Emacs/25.2.1 (x86_64-unknown-linux-gnu) Date: Fri, 18 Aug 2017 22:23:49 +0200 Message-ID: <87o9rcy696.fsf@fastmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 28136 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.7 (/) --=-=-= Content-Type: text/plain Tobias Geerinckx-Rice writes: > It was simply the old name (and version) of libgnome-games-support. > > * gnu/packages/gnome.scm (libgames-support): Remove variable. Move the > inherited fields... > (libgnome-games-support): ...to here. LGTM. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAlmXTNUACgkQoqBt8qM6 VPpLPgf/TjZNXtQLuypxQGU35G+l8BG7CpYVrbj5CwSRB1BtOWP4hZgq4snaGw4U URXb84HSXs/pnH3Iv296H394E3doeYsS/JPZ3/OXP3vxHlfB99Bf0OVpAGgYFpa3 ZyI8KfZASImMd0t5Ez9z+/p09CaAD8dHVPIwYHKrW3QLMhxZcC6hX9sXYmOhq01n s3k7uEGr7gO8bc8S03OwdI6c7qHay5IpM2jGrR1ERJ3ZRcmXl5OjiqXiNHeCqSll FfY7+fDPUdB06VsVxV54kb1FIhLC4EDeDiDc9TOoLSvFna9QBwJfERXCa6rj0uFA 8+HUZGO/uXJjZz3eWPJ7hxr2AKfdgA== =FdN/ -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 18 20:17:08 2017 Received: (at 28136-done) by debbugs.gnu.org; 19 Aug 2017 00:17:08 +0000 Received: from localhost ([127.0.0.1]:44746 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dirRr-0003jz-R7 for submit@debbugs.gnu.org; Fri, 18 Aug 2017 20:17:07 -0400 Received: from tobias.gr ([51.15.135.5]:60190) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dirRp-0003jq-Hs for 28136-done@debbugs.gnu.org; Fri, 18 Aug 2017 20:17:06 -0400 Received: by tobias.gr (OpenSMTPD) with ESMTP id fb10e3db; Sat, 19 Aug 2017 00:17:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=tobias.gr; h=subject:to :references:from:message-id:date:mime-version:in-reply-to :content-type; s=201706; bh=BrehV0vxXD+2dq5JOC+V2K9Ir9tzC6rfAQqV UUzNo5o=; b=c6x6RTD993N/ZnNiR5g8OHimzwwaflef6UjnuJL/T6O8i2Bp5ZOT L4J3kkaspBXGyUJKiIWVCUzjWNp6RHVGYOG6kYRx4V1T+UZ69zQNlYH6x3A/XeMw SDuIsG0KppKTl+VbLGj5q70+TGngtBMNP3nz4HrO6FMVjB8turS8/jUwWJiB+TtI ufER96PgkluxLZskVSlmjuVZIdEkPXfQrB8n6dd0AVySwoIZ9EI7aFK9sEp5Pn4+ W+rf3rAo4vXB7BFIl0nxRd+Kgn5ZL0JIoBxRULrLgk0b7004EaLhMasvWyYuBPNa WTb2+tYh36XVOXq4Vu2BmAovDZs1+VyDMQ== Received: by submission.tobias.gr (OpenSMTPD) with ESMTPSA id 1acf777d (TLSv1.2:ECDHE-RSA-AES128-GCM-SHA256:128:NO); Sat, 19 Aug 2017 00:17:00 +0000 (UTC) Subject: Re: [bug#28136] [PATCH] gnu: Remove libgames-support. To: mbakke@fastmail.com, 28136-done@debbugs.gnu.org References: <20170818131601.14070-1-me@tobias.gr> <87o9rcy696.fsf@fastmail.com> From: Tobias Geerinckx-Rice Message-ID: <5066174b-81aa-7f49-adf8-bc320b1826dc@tobias.gr> Date: Sat, 19 Aug 2017 02:18:46 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <87o9rcy696.fsf@fastmail.com> Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="qAkplr6N0xDDMm0clRqIlPP6WmRbMmI4j" X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 28136-done 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.0 (/) This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --qAkplr6N0xDDMm0clRqIlPP6WmRbMmI4j Content-Type: multipart/mixed; boundary="tBNwHKXrelQehRD0Egb1rAbcoUjMPA8Au"; protected-headers="v1" From: Tobias Geerinckx-Rice To: mbakke@fastmail.com, 28136-done@debbugs.gnu.org Message-ID: <5066174b-81aa-7f49-adf8-bc320b1826dc@tobias.gr> Subject: Re: [bug#28136] [PATCH] gnu: Remove libgames-support. References: <20170818131601.14070-1-me@tobias.gr> <87o9rcy696.fsf@fastmail.com> In-Reply-To: <87o9rcy696.fsf@fastmail.com> --tBNwHKXrelQehRD0Egb1rAbcoUjMPA8Au Content-Type: text/plain; charset=utf-8 Content-Language: en-GB Content-Transfer-Encoding: quoted-printable Marius Bakke wrote on 18/08/17 at 22:23: > Tobias Geerinckx-Rice writes: >=20 >> It was simply the old name (and version) of libgnome-games-support. >> >> * gnu/packages/gnome.scm (libgames-support): Remove variable. Move th= e >> inherited fields... >> (libgnome-games-support): ...to here. >=20 > LGTM. Thanks! Pushed. Kind regards, T G-R --tBNwHKXrelQehRD0Egb1rAbcoUjMPA8Au-- --qAkplr6N0xDDMm0clRqIlPP6WmRbMmI4j Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- iIMEARYKACsWIQT12iAyS4c9C3o4dnINsP+IT1VteQUCWZeD5w0cbWVAdG9iaWFz LmdyAAoJEA2w/4hPVW15PYYA+gMfmAn3ZQuHVv349wfQw6wgHQebchmrFHA+JZ/5 XzktAPoDKUSYaQ03WhXG0d6skIRd+LdO4E/ovikGWThvFWrjCQ== =z+5j -----END PGP SIGNATURE----- --qAkplr6N0xDDMm0clRqIlPP6WmRbMmI4j-- From unknown Sat Sep 20 12:00:33 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 16 Sep 2017 11:24:04 +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