From owner-freebsd-ports@FreeBSD.ORG Sun Feb 19 08:20:19 2012 Return-Path: Delivered-To: ports@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C8039106566B; Sun, 19 Feb 2012 08:20:19 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from forward16.mail.yandex.net (forward16.mail.yandex.net [IPv6:2a02:6b8:0:1402::1]) by mx1.freebsd.org (Postfix) with ESMTP id 376FE8FC14; Sun, 19 Feb 2012 08:20:19 +0000 (UTC) Received: from smtp16.mail.yandex.net (smtp16.mail.yandex.net [95.108.252.16]) by forward16.mail.yandex.net (Yandex) with ESMTP id 27C42D22D23; Sun, 19 Feb 2012 12:20:18 +0400 (MSK) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1329639618; bh=iuLkxx+sMIUH8aZhMlN0YMR7NqiNT8ZVuNk031sV0dk=; h=Message-ID:Date:From:MIME-Version:To:CC:Subject:References: In-Reply-To:Content-Type:Content-Transfer-Encoding; b=FV3JxlwTm6FhhGRt/S5cMu85RJquPJWayhusZ6TrR6uJO9Pclv/l0U2GI3kGdmySM z7e6jJtDfp8N8b2UeYpyxwN0jwl2oKMZW+xVTfHNtFllCpJbGjTvo+zsKAX/fYwxVz FKokjPoxapyCCOgk7MSy8FOwx6vfTWjnVtqtldvY= Received: from smtp16.mail.yandex.net (localhost [127.0.0.1]) by smtp16.mail.yandex.net (Yandex) with ESMTP id A8BF06A00F0; Sun, 19 Feb 2012 12:20:17 +0400 (MSK) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1329639617; bh=iuLkxx+sMIUH8aZhMlN0YMR7NqiNT8ZVuNk031sV0dk=; h=Message-ID:Date:From:MIME-Version:To:CC:Subject:References: In-Reply-To:Content-Type:Content-Transfer-Encoding; b=YJM+MjuZoG7llxUjMew8ke9eyiZhkF0eLvdqYnPfFyCUL/Si2gzjNXAhROdob/fl/ CnzMPVVGnrVlG1Z7ZZ2uAt/UpCLaeZNsU2uKFZryuXoDv2V6txMtoC9Po2xLJElXto HXPNR1ZDNU5JUgvLqI2WDOybZbCtcK7nHsx6p8iA= Received: from unknown (unknown [178.76.224.133]) by smtp16.mail.yandex.net (nwsmtp/Yandex) with ESMTP id KGrG6dK8-KHrGpZle; Sun, 19 Feb 2012 12:20:17 +0400 X-Yandex-Spam: 1 Message-ID: <4F40B091.3000108@yandex.ru> Date: Sun, 19 Feb 2012 12:19:29 +0400 From: Ruslan Mahmatkhanov User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:10.0.1) Gecko/20120214 Thunderbird/10.0.1 MIME-Version: 1.0 To: Brian McCann References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org, python@FreeBSD.org Subject: Re: FreeBSD Port: py27-dbutils-1.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Feb 2012 08:20:19 -0000 Hi. Brian McCann wrote on 08.12.2011 01:14: > Not sure who this is going to, so I'll say "To whom it may concern". > > I'm trying to "make package" for py-dbutils, and it's failing. It's > trying to tar up various files in > "/usr/local/lib/python2.7/site-packages/DBUtils", which doesn't exist > because the make install deleted them when it build the egg file. > Anyone have any ideas on how to make this work? > > --Brian It's because this port looking for setuptools first: """ try: from setuptools import setup except ImportError: from distutils.core import setup """ So the things will be broken if someone will try to package/install it in a system where setuptools is installed. Since nobody depends on this port, I just converted it to setuptools, so problem should be gone. -- Regards, Ruslan Tinderboxing kills... the drives.