From mboxrd@z Thu Jan 1 00:00:00 1970 From: Leo Famulari Subject: Re: [PATCH] gnu: Add python-pypump Date: Sat, 13 Aug 2016 08:57:00 -0400 Message-ID: <20160813125700.GA12089@jasmine> References: <20160812183129.0f76b28a@openmailbox.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56902) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bYYVE-0008Nw-50 for guix-devel@gnu.org; Sat, 13 Aug 2016 08:57:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bYYV9-0004uL-Px for guix-devel@gnu.org; Sat, 13 Aug 2016 08:57:27 -0400 Received: from out2-smtp.messagingengine.com ([66.111.4.26]:54399) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bYYV7-0004sj-DW for guix-devel@gnu.org; Sat, 13 Aug 2016 08:57:23 -0400 Content-Disposition: inline In-Reply-To: <20160812183129.0f76b28a@openmailbox.org> 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: Dylan Jeffers Cc: guix-devel@gnu.org On Fri, Aug 12, 2016 at 06:31:29PM -0700, Dylan Jeffers wrote: > When submitting patches that require other patches I've submitted, > should I put them together in a single patch, or keep them separate > like this? For patches that depend on each other, sending them as a "patch series" will communicate the dependencies and ensure that they apply properly. If you've made your patches on a branch besides master, you can do: $ git format-patch -n master ... and attach those patches to an email. You can also use `git send-email`, which uses `git format-patch` but will also send the patch series if you set up SMTP and configure Git to use it. Can you resubmit these two patches using that method? Normally I wouldn't ask you to do that but, in this case, this patch does not apply cleanly after having applied the patch for python-requests-oauthlib; they both have the same leading context: > @@ -9852,3 +9853,34 @@ etc.") > (package > (inherit base) > (name "ptpython2")))) Thanks!