From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Bavier Subject: [PATCH 00/13] Add gourmet (and dependent python packages) Date: Thu, 20 Nov 2014 23:40:55 -0600 Message-ID: <1416548468-28421-1-git-send-email-bavier@member.fsf.org> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:57732) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XrgxT-0000WT-7Q for guix-devel@gnu.org; Fri, 21 Nov 2014 00:40:46 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XrgxM-000227-73 for guix-devel@gnu.org; Fri, 21 Nov 2014 00:40:39 -0500 Received: from mail-ie0-x22d.google.com ([2607:f8b0:4001:c03::22d]:58533) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XrgxM-00021t-0E for guix-devel@gnu.org; Fri, 21 Nov 2014 00:40:32 -0500 Received: by mail-ie0-f173.google.com with SMTP id y20so4276088ier.18 for ; Thu, 20 Nov 2014 21:40:31 -0800 (PST) List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org Cc: Eric Bavier I've squatted on these patches for too long (since the hackathon :/), so I finally sat down to "polish" them out. A few may be non-controversial, but some may be of interest to others. The addition of sqlite to python will require a fair number of package rebuilds. I think I dealt with the introduced module circular dependencies in an acceptable manner. Eric Bavier (13): gnu: subversion: Propagate env variables to hooks. gnu: python: Add sqlite input. gnu: Add python-sqlalchemy. gnu: Export symbols in (gnu packages image) upfront. gnu: Export ghostscript module symbols up-front. gnu: Add python-pillow. gnu: Add python-distutils-extra. gnu: Add python-elib.intl. guix: Add MPL1.1 license. gnu: Add python-pycairo. gnu: Add python-pygobject. gnu: Add python2-pygtk. gnu: Add gourmet. gnu-system.am | 5 + gnu/packages/ghostscript.scm | 23 ++- gnu/packages/glib.scm | 84 ++++++++ gnu/packages/gtk.scm | 49 ++++- gnu/packages/image.scm | 38 ++-- gnu/packages/nutrition.scm | 68 ++++++ .../patches/python-sqlite-3.8.4-test-fix.patch | 15 ++ ...on2-pygobject-2-gi-info-type-error-domain.patch | 39 ++++ .../patches/python2-sqlite-3.8.4-test-fix.patch | 15 ++ .../subversion-propagate-env-to-hooks.patch | 14 ++ gnu/packages/python.scm | 216 +++++++++++++++++++- gnu/packages/version-control.scm | 8 +- guix/licenses.scm | 7 +- 13 files changed, 555 insertions(+), 26 deletions(-) create mode 100644 gnu/packages/nutrition.scm create mode 100644 gnu/packages/patches/python-sqlite-3.8.4-test-fix.patch create mode 100644 gnu/packages/patches/python2-pygobject-2-gi-info-type-error-domain.patch create mode 100644 gnu/packages/patches/python2-sqlite-3.8.4-test-fix.patch create mode 100644 gnu/packages/patches/subversion-propagate-env-to-hooks.patch -- 1.7.9.5