From owner-freebsd-ports@freebsd.org Sun Mar 13 08:54:33 2016 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id EBC9BACDF9A for ; Sun, 13 Mar 2016 08:54:33 +0000 (UTC) (envelope-from woodsb02@gmail.com) Received: from mail-wm0-x230.google.com (mail-wm0-x230.google.com [IPv6:2a00:1450:400c:c09::230]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 86D41A83 for ; Sun, 13 Mar 2016 08:54:33 +0000 (UTC) (envelope-from woodsb02@gmail.com) Received: by mail-wm0-x230.google.com with SMTP id p65so66451760wmp.0 for ; Sun, 13 Mar 2016 00:54:33 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc; bh=O51OShcfnhMw9oeWD6SamPDbT/jZBR8l1fSt8a9vm08=; b=FQZIylYPF+8+eXuj0x6qr4tKygrlwcQc1hWficL0bHoP/52AklYvTYXh8UGF+n4ILc c9ANlurS1bfZWPotbZxKrOKJrBzLmJLWdTR+DwhAqT/bVwwsIvLcKyNZkjbkb4RifUSu vbjXqqhMuRUtvBqoI1XUd9ZsAIFay0hVVksI2E+K9wq7s0wLfm0eEZjB6YLAvtxaDyj9 B206ndboLeJcAEEBxwFjrdlrbXVKNaaTzCQw8lV63oddFxVnX+NuyCSmYvOdPrS7cpm1 RHHHyOb+VChgw00WX0m6dFxlMefbROPQrT4HsPO2XXyobhPVxXjmGrE1SSZJJZhnidVh NV5Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc; bh=O51OShcfnhMw9oeWD6SamPDbT/jZBR8l1fSt8a9vm08=; b=BiJ/N4zUlnE5LGm5mqUIs46BQ43xKmJMfDX1THd6JbGTC7yNhZ/Q94i6iaYef77zFx TPJqMzAsfSZtoRB5n1ZM2dKmtoRsFbdWT0C9TqXs4+CJdBk8coeTgll8IcFFsi5wLi/g upvJKQhpgYtsnNcTQdIaPZP9vDeWn27u2dmAIWlE3HSwZJZyVUMUtu3N2hhYIPnMhW/3 q4oX46PDw4q8vNDvYIYQAAzrlEm4ph5/pumGKZizqUeqZHKVThid1tORjPVpJrE41v8L HLZvxUnvQndAwpqSJra3l1YG95oat2HBXXVNPtFJPn4YaKaY2Q3hS/V5BiQDwzzAns2G SBiA== X-Gm-Message-State: AD7BkJJCxoxf3p0Fa2wf0j0KzffX/4sMNZxNdgt3cpQxi2AjyOLIQCrZxw7RpRVtOMsDt5nwqp1Yy6Iz4QpP/Q== MIME-Version: 1.0 X-Received: by 10.28.238.210 with SMTP id j79mr12026185wmi.23.1457859270992; Sun, 13 Mar 2016 00:54:30 -0800 (PST) Received: by 10.194.23.104 with HTTP; Sun, 13 Mar 2016 00:54:30 -0800 (PST) In-Reply-To: <56E52072.5020806@jochen-neumeister.de> References: <56E52072.5020806@jochen-neumeister.de> Date: Sun, 13 Mar 2016 09:54:30 +0100 Message-ID: Subject: Re: great a diff with a new patch From: Ben Woods To: Jochen Neumeister Cc: "freebsd-ports@freebsd.org" Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.21 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Mar 2016 08:54:34 -0000 On Sunday, 13 March 2016, Jochen Neumeister wrote: > Hi there, > > how can I great a diff with a new patch? > > I run make makepatch, and then I move the new patch in the /file folder. > > Now I run svn diff > ~/dev/patches/foo.diff, but the new patch is not > into diff. > > someone has a tip for me? > > Cheers > Jochen > Hi Jochen, Small correction: your patches should be in the "files/" directory, not the "file/" directory. To check the status of which files have changed from the upstream svn repository, you can run "svn status" in the ports directory. Files which have been modified show an "M" next to their name. Files which have been added but svn is not aware of them show an "?" next to their name. To tell svn to add a file, use: $ svn add Then you can run "svn status" again to see the files now have an "A" next to their name. Now when you run "svn diff" it will include your additional patches. Good luck! -Ben -- -- From: Benjamin Woods woodsb02@gmail.com