From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthew Jordan Subject: [PATCH 1/2] Feed2maildir: Add python-feedparser Date: Sun, 21 Aug 2016 12:10:23 -0400 Message-ID: <871t1igl1s.fsf@guixsd-mailerver.i-did-not-set--mail-host-address--so-tickle-me> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44706) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bbVKU-0002qr-BN for guix-devel@gnu.org; Sun, 21 Aug 2016 12:10:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bbVKO-0000Pe-WB for guix-devel@gnu.org; Sun, 21 Aug 2016 12:10:33 -0400 Received: from mail-ua0-x243.google.com ([2607:f8b0:400c:c08::243]:35057) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bbVKO-0000PX-Q4 for guix-devel@gnu.org; Sun, 21 Aug 2016 12:10:28 -0400 Received: by mail-ua0-x243.google.com with SMTP id 109so9004819uat.2 for ; Sun, 21 Aug 2016 09:10:28 -0700 (PDT) Received: from localhost ([204.212.245.29]) by smtp.gmail.com with ESMTPSA id a64sm3255674uaa.28.2016.08.21.09.10.26 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 21 Aug 2016 09:10:26 -0700 (PDT) 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" To: guix-devel --=-=-= Content-Type: text/plain Good Day, This patch is to add python-feedparser. Left me know if need to make any adjustments. --=-=-= Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-Add-python-feedparser.patch Content-Transfer-Encoding: 8bit Content-Description: patch to add feedparser. >From 41357ed77b80d7d151b341eef509685b45266546 Mon Sep 17 00:00:00 2001 From: "Matthew O'N.S Jordan" Date: Sun, 21 Aug 2016 11:45:52 -0400 Subject: [PATCH 1/2] gnu: Add python-feedparser * gnu/packages/python.scm (python-feedparser): New variable. --- gnu/packages/python.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 15c957e..a8a9857 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -25,6 +25,7 @@ ;;; Copyright © 2016 Troy Sankey ;;; Copyright © 2016 ng0 ;;; Copyright © 2016 Dylan Jeffers +;;; Copyright © 2016 Matthew Jordan ;;; ;;; This file is part of GNU Guix. ;;; @@ -9983,3 +9984,29 @@ hardware-accelerated multitouch applications.") (define-public python2-kivy-next (package-with-python2 python-kivy-next)) + +(define-public python-feedparser + (package + (name "python-feedparser") + (version "5.2.1") + (source + (origin + (method url-fetch) + (uri (string-append + "https://pypi.python.org/packages/91/d8/7d37fec71ff7c9dbcdd80d2b48bcdd86d6af502156fc93846fb0102cb2c4/feedparser-" + version ".tar.bz2")) + (sha256 + (base32 + "00hb4qg2am06g81mygfi1jsbx8830024jm45g6qp9g8fr6am91yf")))) + (build-system python-build-system) + (inputs + `(("python-setuptools" ,python-setuptools))) + (home-page "https://github.com/kurtmckee/feedparser") + (synopsis + "Universal feed parser, handles RSS 0.9x, RSS 1.0, RSS 2.0, CDF, +Atom 0.3, and Atom 1.0 feeds") + (description + "Universal feed parser, handles RSS 0.9x, RSS 1.0, RSS 2.0, CDF, +Atom 0.3, and Atom 1.0 feeds") + (license + (non-copyleft "https://github.com/kurtmckee/feedparser/blob/develop/LICENSE")))) -- 2.9.0 --=-=-= Content-Type: text/plain Sincerely, Matthew Jordan --=-=-=--