From owner-freebsd-python@FreeBSD.ORG  Sun Mar  2 15:33:03 2014
Return-Path: <owner-freebsd-python@FreeBSD.ORG>
Delivered-To: python@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id DB90D1D9
 for <python@freebsd.org>; Sun,  2 Mar 2014 15:33:03 +0000 (UTC)
Received: from mail-lb0-x231.google.com (mail-lb0-x231.google.com
 [IPv6:2a00:1450:4010:c04::231])
 (using TLSv1 with cipher ECDHE-RSA-RC4-SHA (128/128 bits))
 (No client certificate requested)
 by mx1.freebsd.org (Postfix) with ESMTPS id 6318D1B7F
 for <python@freebsd.org>; Sun,  2 Mar 2014 15:33:03 +0000 (UTC)
Received: by mail-lb0-f177.google.com with SMTP id z11so3886579lbi.8
 for <python@freebsd.org>; Sun, 02 Mar 2014 07:33:01 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113;
 h=sender:from:content-type:content-transfer-encoding:subject
 :message-id:date:to:mime-version;
 bh=drJ2BNvuZs9hoE+xtJfO9IgXsPMGjPMoRUELjrUGSAA=;
 b=Kokx0I6lD3wgZVd620+IYdUkT+IQ6TEI4P2Fci+7KDGhi5FYBOH205uJtizj4ie1aF
 UerAGibHN0M2GIOXrQqTPa8UmNutScmKHiwqaF2mIghVeyVd3TEn2GRMLGbkZCppJiEn
 caGVp+mMa+5b8IoNE8NCdPBsHLGf4RT66gUa41C6A8uIQvbHSQdGIgSS7nFqs3WE71xG
 zKJUVAceYOZgthYMnJIU542qQCMamkgjMvTOCwhYHH5L558t8KcO9zr2H2+ZAvIZw9II
 WkzWlxNJVwfaEVPa/0OjUXG0F9czHGUy+nBwXgq0ZfuvYvJlVZASoYmTXvdwuUMJ4x8o
 ez6Q==
X-Received: by 10.152.9.1 with SMTP id v1mr7204782laa.31.1393774381368;
 Sun, 02 Mar 2014 07:33:01 -0800 (PST)
Received: from [10.0.1.20] (ip-95-220-130-123.bb.netbynet.ru. [95.220.130.123])
 by mx.google.com with ESMTPSA id q6sm25220537lal.3.2014.03.02.07.33.00
 for <python@freebsd.org>
 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128);
 Sun, 02 Mar 2014 07:33:00 -0800 (PST)
Sender: Dmitry Sivachenko <trtrmitya@gmail.com>
From: Dmitry Sivachenko <demon@FreeBSD.org>
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: quoted-printable
Subject: python33: incorrect pkg-plist
Message-Id: <10C25A62-97F4-47FF-987D-6331189F4104@FreeBSD.org>
Date: Sun, 2 Mar 2014 19:32:58 +0400
To: python@freebsd.org
Mime-Version: 1.0 (Mac OS X Mail 7.2 \(1874\))
X-Mailer: Apple Mail (2.1874)
X-BeenThere: freebsd-python@freebsd.org
X-Mailman-Version: 2.1.17
Precedence: list
List-Id: FreeBSD-specific Python issues <freebsd-python.freebsd.org>
List-Unsubscribe: <http://lists.freebsd.org/mailman/options/freebsd-python>,
 <mailto:freebsd-python-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-python/>
List-Post: <mailto:freebsd-python@freebsd.org>
List-Help: <mailto:freebsd-python-request@freebsd.org?subject=help>
List-Subscribe: <http://lists.freebsd.org/mailman/listinfo/freebsd-python>,
 <mailto:freebsd-python-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 02 Mar 2014 15:33:03 -0000

Hello!

Right now, python's include files are listed as follows:

%%PYTHON_INCLUDEDIR%%%%PYABIVER%%/accu.h

But both PYTHON_INCLUDEDIR and PYABIVER contain trailing "m":

# make -V PLIST_SUB
PYVER=3D3.3  PYMAJOR=3D3  PYVER_WITHPAT=3D3.3.3  PYABIVER=3Dm =
PYTHON_INCLUDEDIR=3Dinclude/python3.3m  <...>

Thus this line in pkg-plist becomes
include/python3.3mm/accu.h
(double "m").

So both "make package" and "make check-orphans" report these files.

I am not sure how did this work earlier, but now it seems broken.