From owner-freebsd-ports@FreeBSD.ORG Sat Jan 17 23:07:59 2015 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4F56791D for ; Sat, 17 Jan 2015 23:07:59 +0000 (UTC) Received: from mail-we0-x235.google.com (mail-we0-x235.google.com [IPv6:2a00:1450:400c:c03::235]) (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id CEC576B2 for ; Sat, 17 Jan 2015 23:07:58 +0000 (UTC) Received: by mail-we0-f181.google.com with SMTP id q58so25756541wes.12 for ; Sat, 17 Jan 2015 15:07:57 -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:content-type; bh=yDChV2WrKErkA5W2QXa2Kc0L+CGjNfa9pXuHCmzwblY=; b=W24k1onTYIykZ4brIZaCDgwCF20im1aGyei9jcuInkJl1E/G0H9KWiCsLzY6k1D+dr UoTy7ID1B1MvyWHsJ4cO08YC6/dOJPS9NjV4yan8OdZntGkcV6XKPWv+TmwEbwEI+TUE Wi08i37lBjPbZza+q2rYhYQ+yKpk8RA1bxInfMDUw1vduPXmZFQmZQ8o6U/F4kXdUfNr 4d4iGQ0RH4S37luRIckyl/Ct5tekfzUSrFXDNDxkvmCF2f6lfpTj4an505S0gjmBGadg abb10pd+mhHavpgCdKiZaR0/xBYTTmzyuky8V/NdHkgtR386A1RKe/dhEZ5RJJW8XRo0 hiJA== MIME-Version: 1.0 X-Received: by 10.194.193.4 with SMTP id hk4mr43975526wjc.38.1421536077374; Sat, 17 Jan 2015 15:07:57 -0800 (PST) Received: by 10.194.241.132 with HTTP; Sat, 17 Jan 2015 15:07:57 -0800 (PST) In-Reply-To: References: <20150117165844.GS44537@home.opsec.eu> <20150117182525.GU44537@home.opsec.eu> Date: Sun, 18 Jan 2015 07:07:57 +0800 Message-ID: Subject: Re: updating alpine port to new version (as a maintainer) From: Ben Woods To: Marco Beishuizen Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: Scot Hetzel , Kurt Jaeger , FreeBSD Ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Jan 2015 23:07:59 -0000 Good news - that means the port is now compiling fine, and the last thing you need to do is fix the pkg-plist file to ensure it accurately reflects all the files the port will install: # cd PORTDIR # make clean # make # make makeplist That will dump the new plist to the console standard output, but doesn't actually update the pkg-plist for you (you have to do that by redirecting the output to the file). But note, you need to follow the instructions of the first line (delete the first line, and check the output of the rest of the file looks reasonable). I would redirect the output to a new plist file and compare the difference before overwriting the main plist file: # make makeplist > pkg-plist.new # diff -u pkg-plist pkg-plist.new Then you can make the necessary changes to the pkg-plist file and delete the pkg-plist.new file. On Sunday, January 18, 2015, Marco Beishuizen wrote: > On Sat, 17 Jan 2015, the wise Scot Hetzel wrote: > > Well, problems with the maildir patch seem to have dissappeared, but I'm > not there yet. Alpine compiles, but the problems with the plist remain. > I'll look further into the Makefile and see if I can solve this. > > The current error is: > > ====> Compressing man pages (compress-man) > ====> Running Q/A tests (stage-qa) > ====> Checking for pkg-plist issues (check-plist) > ===> Parsing plist > ===> Checking for items in STAGEDIR missing from pkg-plist > Error: Orphaned: %%PORTDOCS%%%%DOCSDIR%%/tech-notes.txt > ===> Checking for items in pkg-plist which are not in STAGEDIR > Error: Missing: %%DOCSDIR%%/tech-notes/tech-notes.txt > ===> Error: Plist issues found. > *** Error code 1 > > Regards, > Marco > > -- -- From: Benjamin Woods woodsb02@gmail.com