From owner-freebsd-python@FreeBSD.ORG Mon Mar 30 15:23:39 2015 Return-Path: Delivered-To: freebsd-python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 612C616B for ; Mon, 30 Mar 2015 15:23:39 +0000 (UTC) Received: from mail-ie0-x22c.google.com (mail-ie0-x22c.google.com [IPv6:2607:f8b0:4001:c03::22c]) (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 2A07D114 for ; Mon, 30 Mar 2015 15:23:39 +0000 (UTC) Received: by iecvj10 with SMTP id vj10so120443791iec.0 for ; Mon, 30 Mar 2015 08:23:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=BoKttOL6P/+2ACsVZPHN4DKXwl/5HgDbnpp+41cpbIw=; b=UQwTD/de4kJzMKGv86U39q+d4eBY+cf0MFW3LfsUvLtyqFHcSlLWsUGEIG58kRU8nm xKKXXoJVNyEWgkQEIAuUxsHKPGIueeiASyAq/jr/EDHQxvHlH1+bop3pwjlQpIbLmOpd cwP/eUAWrEzt+A4Rlm+K5e6INEw0MbHDqNF3xBeKB7lZtzFyQYpn8nBD5DrQEpIOPUfZ ny+KRDHEyHbOqON8lQDm/XqmwrHHWJwDYOyudqmUK9gb9B0osTKDM24YMxaB1eKCjz8g 2BSBOevjDFZURrQ9eO8wLP4YyEdyK6MZ35SsOzK3U9NJZgAtY+7GJCl3JEmWDyvMbfZI YUWA== MIME-Version: 1.0 X-Received: by 10.50.136.228 with SMTP id qd4mr18530144igb.13.1427729018417; Mon, 30 Mar 2015 08:23:38 -0700 (PDT) Received: by 10.36.121.87 with HTTP; Mon, 30 Mar 2015 08:23:38 -0700 (PDT) Date: Mon, 30 Mar 2015 11:23:38 -0400 Message-ID: Subject: databases/py-sqlite3 Install Failing From: Robert Simmons To: freebsd-python@freebsd.org Content-Type: text/plain; charset=UTF-8 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 30 Mar 2015 15:23:39 -0000 I'm getting an error on install of the databases/py-sqlite3: ===> Installing for py34-sqlite3-3.4.3_6 ===> Checking if py34-sqlite3 already installed ===> Registering installation for py34-sqlite3-3.4.3_6 pkg-static: Plist error, directory listed as a file: lib/python3.4/lib-dynload/_sqlite3-0.0.0-py3.4.egg-info *** Error code 74 According to the Makefile, this port uses autoplist: USE_PYTHON= autoplist I ran make makeplist myself, and got the following: %%PYTHON_LIBDIR%%/lib-dynload/_sqlite3-0.0.0-py%%PYTHON_VER%%.egg-info/PKG-INFO %%PYTHON_LIBDIR%%/lib-dynload/_sqlite3-0.0.0-py%%PYTHON_VER%%.egg-info/SOURCES.txt %%PYTHON_LIBDIR%%/lib-dynload/_sqlite3-0.0.0-py%%PYTHON_VER%%.egg-info/dependency_links.txt %%PYTHON_LIBDIR%%/lib-dynload/_sqlite3-0.0.0-py%%PYTHON_VER%%.egg-info/top_level.txt %%PYTHON_LIBDIR%%/lib-dynload/_sqlite3.so I installed the pkg-plist created by makeplist, and then removed the autoplist from the Makefile. Everything built and installed correctly. Is there a bug in autoplist?