From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:46107) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dK0g6-0006KN-OO for guix-patches@gnu.org; Sun, 11 Jun 2017 07:05:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dK0g2-0007sM-HZ for guix-patches@gnu.org; Sun, 11 Jun 2017 07:05:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:37122) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dK0g2-0007sF-DA for guix-patches@gnu.org; Sun, 11 Jun 2017 07:05:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dK0g2-0000Rg-5s for guix-patches@gnu.org; Sun, 11 Jun 2017 07:05:02 -0400 Subject: bug#27328: [PATCH] gnu: Add five-or-more. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46066) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dK0fE-0006If-5q for guix-patches@gnu.org; Sun, 11 Jun 2017 07:04:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dK0fC-0007d3-Sb for guix-patches@gnu.org; Sun, 11 Jun 2017 07:04:12 -0400 Received: from cock.li ([2a06:1700:0:b::c0cc]:49597) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dK0fC-0007b7-Fi for guix-patches@gnu.org; Sun, 11 Jun 2017 07:04:10 -0400 From: nee Message-ID: <7d5cc957-1e57-69e4-d8b3-1d6adc86069f@cock.li> Date: Sun, 11 Jun 2017 13:04:02 +0200 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------6ED5D2A5D37B10D3BB631599" Content-Language: en-GB 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: 27328@debbugs.gnu.org This is a multi-part message in MIME format. --------------6ED5D2A5D37B10D3BB631599 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit simple & fun game --------------6ED5D2A5D37B10D3BB631599 Content-Type: text/x-patch; name="0001-gnu-Add-five-or-more.patch" Content-Disposition: attachment; filename="0001-gnu-Add-five-or-more.patch" Content-Transfer-Encoding: quoted-printable >From b0903b2fd78040f02694082f73ce5c9ed26fc693 Mon Sep 17 00:00:00 2001 From: nee Date: Sat, 10 Jun 2017 16:22:43 +0200 Subject: [PATCH] gnu: Add five-or-more. * gnu/packages/gnome.scm (five-or-more): New variable. --- gnu/packages/gnome.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index d3f734450..2b7f37649 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -24,6 +24,7 @@ ;;; Copyright =C2=A9 2016, 2017 Tobias Geerinckx-Rice ;;; Copyright =C2=A9 2017 Thomas Danckaert ;;; Copyright =C2=A9 2017 Hartmut Goebel +;;; Copyright =C2=A9 2017 nee ;;; ;;; This file is part of GNU Guix. ;;; @@ -2449,6 +2450,38 @@ and the GLib main loop, to integrate well with GNO= ME applications.") and other secrets. It communicates with the \"Secret Service\" using DB= us.") (license license:lgpl2.1+))) =20 +(define-public five-or-more + (package + (name "five-or-more") + (version "3.22.2") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "1b26afyjr26wqy5j008gzsi3hpblbmabh0192lx6414lml1qxkxs")))) + (build-system glib-or-gtk-build-system) + (native-inputs + `(("pkg-config" ,pkg-config) + ("desktop-file-utils" ,desktop-file-utils) + ("intltool" ,intltool) + ("itstool" ,itstool) + ("xmllint" ,libxml2))) + (inputs + `(("gtk+" ,gtk+) + ("libgnome-games-support" ,libgnome-games-support) + ("librsvg" ,librsvg))) + (home-page "https://wiki.gnome.org/Apps/Five%20or%20more") + (synopsis "Logic puzzle game") + (description "Five or More is a game where you try to align + five or more objects of the same color and shape causing them to disapp= ear. + On every turn more objects will appear, until the board is full. + Try to last as long as possible.") + (license license:gpl2+))) + (define-public gnome-mines (package (name "gnome-mines") --=20 2.13.1 --------------6ED5D2A5D37B10D3BB631599--