From owner-freebsd-ports@FreeBSD.ORG Thu Feb 19 22:37:38 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 F0C6CC81; Thu, 19 Feb 2015 22:37:38 +0000 (UTC) Received: from mail-wg0-x22a.google.com (mail-wg0-x22a.google.com [IPv6:2a00:1450:400c:c00::22a]) (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 7DB4DE3A; Thu, 19 Feb 2015 22:37:38 +0000 (UTC) Received: by mail-wg0-f42.google.com with SMTP id n12so10068891wgh.1; Thu, 19 Feb 2015 14:37:37 -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=sC08KJpiEcHQbQe+t1Vy+KhgniwEeENqw+vh8qPwmiI=; b=eIgA4AR/jfbQ+1vwhMxC3YG2FxrYsVeFJTllsRKGyQ1esjR1Z4Sl0zBM8mSSVrGzsu p7+9LaL0fxRlv/psgMu8Hk3u0uXsfKqRfRZuMyMoT3nAT9lc9U/7IqNUOmy6SmH5gGlp /B8p1kw4fBlg+zHJV+JoFN0CJQtGgXre8EdhEFmBfFcIaF1v81sOQ+PFwRl3ZfAZzdQT 0wU93vribaTYCGoiBcR6NGBQcwYAqkLiwA36ZhycQOX4KkFVVyBbfV97v4S/rNRrRf/U 76Ykj7rf3bP9/CAMsUVx+RdVX7AbXK3Jpkn8kR9nTosb+Ti4MAcVJXNDrRTvqQRHt/YH 3GDA== MIME-Version: 1.0 X-Received: by 10.180.184.230 with SMTP id ex6mr7989018wic.73.1424385456919; Thu, 19 Feb 2015 14:37:36 -0800 (PST) Received: by 10.194.241.132 with HTTP; Thu, 19 Feb 2015 14:37:36 -0800 (PST) In-Reply-To: References: <45e7ef4a3e74c7623fdc453ca88bb7e9@sdf.org> Date: Fri, 20 Feb 2015 06:37:36 +0800 Message-ID: Subject: Re: plist problems upgrading alpine port From: Ben Woods To: Marco Beishuizen Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 Cc: cpet , "freebsd-ports@freebsd.org" , "owner-freebsd-ports@freebsd.org" 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: Thu, 19 Feb 2015 22:37:39 -0000 It's the opposite actually. That line was already in pkg-plist, but needed to be removed. You have now added it a second time, meaning you get the error twice. You need to now delete both instances of that line from pkg-plist. Regards, Ben On Friday, February 20, 2015, Marco Beishuizen wrote: > On Thu, 19 Feb 2015, the wise cpet wrote: > > On 2015-02-19 14:48, Marco Beishuizen wrote: >> >>> Hi, >>> >>> I'm trying to upgrade the alpine port to 2.20 but I'm having problems >>> with plist and staging. The error is: >>> >>> ... >>> install -o root -g wheel -m 444 >>> /home/marco/tmp/alpine/work/alpine-2.20/doc/tech-notes/low-level.html >>> /home/marco/tmp/alpine/work/stage/usr/local/share/doc/alpine/tech-notes >>> ====> 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 >>> ===> 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 >>> ... >>> >>> I guess the Makefile should be changed somewhere but I've no idea where. >>> >>> Does anyone have a clue how to solve this? >>> >>> Regards, >>> >>> Marco >>> >> >> Copy and paste that to pkg-plist problem solved. >> > > This makes it worse: > > ... > install -o root -g wheel -m 444 /home/marco/tmp/alpine/work/ > alpine-2.20/doc/tech-notes/low-level.html /home/marco/tmp/alpine/work/ > stage/usr/local/share/doc/alpine/tech-notes > ====> 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 > ===> Checking for items in pkg-plist which are not in STAGEDIR > Error: Missing: %%DOCSDIR%%/tech-notes/tech-notes.txt > Error: Missing: %%DOCSDIR%%/tech-notes/tech-notes.txt > ===> Error: Plist issues found. > *** Error code 1 > ... > > Regards, > Marco > > -- > Mr. Rockford, this is the Thomas Crown School of Dance and Contemporary > Etiquette. We aren't going to call again! Now you want these free > lessons or what? > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > -- -- From: Benjamin Woods woodsb02@gmail.com