From owner-freebsd-python@FreeBSD.ORG Tue Dec 9 00:15:08 2014 Return-Path: Delivered-To: python@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 93ED44DE for ; Tue, 9 Dec 2014 00:15:08 +0000 (UTC) Received: from mail-ie0-f178.google.com (mail-ie0-f178.google.com [209.85.223.178]) (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 627FE816 for ; Tue, 9 Dec 2014 00:15:08 +0000 (UTC) Received: by mail-ie0-f178.google.com with SMTP id tp5so5609457ieb.37 for ; Mon, 08 Dec 2014 16:15:01 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:message-id:date:from:user-agent:mime-version:to :subject:content-type:content-transfer-encoding; bh=igGu5bOFvJv+qdd7IHlan3JQeu1BTFL8cUcdQqTinuM=; b=O3lzTfiKMGZhDOsb33YdWo3p0eWHh2/gJD7Z0Ur567HX5Tdq+Vfp/N+0oWgUHBMXRU XuclzfqmHMkYX6DyoZ0hmGFtBPFBcGSJ0AS60ck1gdrNhbb9JjCryhOo6un6QbQVTf3+ CDy5h5Su9TCgdYY5z8/VzCAi1I3tNMrHlOSBSjjW0W3IBBuUo1kletYv86o4UH/SDwKz 1+TnAytbPhWAwdhgMdDH6Wq04G+bs3FT8dy04/yHk6FsYrcf+gmd8Gad0RvVTAhdb3m8 yDCwX17g87fLIfjeuYMP+KmluXmGZARQkFqqMHxzkMvsHHbCdIMP1m7uZ54J5Y4hIVcv tXBQ== X-Gm-Message-State: ALoCoQlx7YprRnUHw9vQEF9zauwk8dsNRZyYmmH5q6w5ZOSfniF8MDAdrpMSmZgzb/raxYshBEPn X-Received: by 10.51.17.2 with SMTP id ga2mr120656igd.39.1418084100910; Mon, 08 Dec 2014 16:15:00 -0800 (PST) Received: from workstation.closedbox.com (207-179-239-177.mtco.com. [207.179.239.177]) by mx.google.com with ESMTPSA id w8sm44817igb.7.2014.12.08.16.15.00 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 08 Dec 2014 16:15:00 -0800 (PST) Message-ID: <54863F03.2020607@closedbox.com> Date: Mon, 08 Dec 2014 18:14:59 -0600 From: Mike Bush User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.2.0 MIME-Version: 1.0 To: python@FreeBSD.org Subject: numpy/gnuradio issue Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit 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: Tue, 09 Dec 2014 00:15:08 -0000 I believe there is a problem with the numpy port which I've run across while attempting to play with gnuradio. Gnuradio/numpy was installed via pkg install (not built via ports) Issue 1: I believe 'gcc46' needs to be flagged as a dependency (see error below) so it's installed along with numpy? Issue 2: After manually installing gcc46 I still got the same error (below). I needed to manually set LD_LIBRARY_PATH to the new gcc46 path was needed. ---------------------------------- [mike@workstation ~]$ grcc Traceback (most recent call last): File "/usr/local/bin/grcc", line 30, in from gnuradio.grc.python.Platform import Platform File "/usr/local/lib/python2.7/site-packages/gnuradio/grc/python/Platform.py", line 22, in from gnuradio import gr File "/usr/local/lib/python2.7/site-packages/gnuradio/gr/__init__.py", line 45, in from hier_block2 import * File "/usr/local/lib/python2.7/site-packages/gnuradio/gr/hier_block2.py", line 23, in import pmt File "/usr/local/lib/python2.7/site-packages/pmt/__init__.py", line 55, in from pmt_to_python import pmt_to_python as to_python File "/usr/local/lib/python2.7/site-packages/pmt/pmt_to_python.py", line 22, in import numpy File "/usr/local/lib/python2.7/site-packages/numpy/__init__.py", line 170, in from . import add_newdocs File "/usr/local/lib/python2.7/site-packages/numpy/add_newdocs.py", line 13, in from numpy.lib import add_newdoc File "/usr/local/lib/python2.7/site-packages/numpy/lib/__init__.py", line 18, in from .polynomial import * File "/usr/local/lib/python2.7/site-packages/numpy/lib/polynomial.py", line 19, in from numpy.linalg import eigvals, lstsq, inv File "/usr/local/lib/python2.7/site-packages/numpy/linalg/__init__.py", line 51, in from .linalg import * File "/usr/local/lib/python2.7/site-packages/numpy/linalg/linalg.py", line 29, in from numpy.linalg import lapack_lite, _umath_linalg ImportError: /lib/libgcc_s.so.1: version GCC_4.6.0 required by /usr/local/lib/gcc48/libgfortran.so.3 not found ---------------------------------- My workaround: Install gcc46 (pkg install) manually and set LD_LIBRARY_PATH ---------------------------------- [mike@workstation ~]$ export LD_LIBRARY_PATH=/usr/local/lib/gcc46/ [mike@workstation ~]$ grcc Please specify a GRC file name to compile. ---------------------------------- Thanks, Mike From owner-freebsd-python@FreeBSD.ORG Wed Dec 10 15:47:01 2014 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 C630B4FC for ; Wed, 10 Dec 2014 15:47:01 +0000 (UTC) Received: from smtprelay01.ispgateway.de (smtprelay01.ispgateway.de [80.67.18.13]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 569B6326 for ; Wed, 10 Dec 2014 15:47:01 +0000 (UTC) Received: from [80.67.16.118] (helo=webmailfront01.ispgateway.de) by smtprelay01.ispgateway.de with esmtpsa (TLSv1:DHE-RSA-AES256-SHA:256) (Exim 4.84) (envelope-from ) id 1XyjSB-0004X6-Qf; Wed, 10 Dec 2014 16:45:27 +0100 Received: from his1.his.de (his1.his.de [192.124.237.237]) by webmail.df.eu (Horde Framework) with HTTP; Wed, 10 Dec 2014 16:45:26 +0100 Date: Wed, 10 Dec 2014 16:45:26 +0100 Message-ID: <20141210164526.Horde.96kKvnQaWqjOxEZCASzlZQ1@webmail.df.eu> From: Marcus von Appen To: "John W. O'Brien" Subject: Re: PYTHON_VERSION=python3.4 and USES=python:2,build References: <547A9656.9030602@saltant.com> <547A9FA8.9070909@my.hennepintech.edu> <547B2879.7070000@saltant.com> <547BAF2B.3000300@my.hennepintech.edu> <20141201100156.Horde.FhtmPbuL51LvEw9E5pwFpg2@webmail.df.eu> <547CF4FC.70603@saltant.com> In-Reply-To: <547CF4FC.70603@saltant.com> Reply-to: mva@freebsd.org User-Agent: Internet Messaging Program (IMP) H5 (6.0.4) Content-Type: text/plain; charset=UTF-8; format=flowed; DelSp=Yes MIME-Version: 1.0 Content-Disposition: inline X-Df-Sender: ZnJlZWJzZEBzeXNmYXVsdC5vcmc= Cc: Andrew Berg , FreeBSD Python List 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: Wed, 10 Dec 2014 15:47:01 -0000 "John W. O'Brien" : > On 12/1/14 4:01 AM, Marcus von Appen wrote: >> >> Zitat von Andrew Berg : >> >>> On 2014.11.30 08:23, John W. O'Brien wrote: >>>> On 11/29/14 11:40 PM, Andrew Berg wrote: >>>>> On 2014.11.29 22:00, John W. O'Brien wrote: >>>>>> Let's say that I want to build net/py-pyzmq with >>>>>> PYTHON_VERSION=python3.4. >>>>> Why this instead of using DEFAULT_VERSIONS? >>>> >>>> I was following this advice: >>>> >>>> https://lists.freebsd.org/pipermail/freebsd-python/2014-October/007606.html >>>> >>> Then I am interested in why Marcus is suggesting PYTHON_VERSION rather >>> than >>> DEFAULT_VERSIONS. I am currently doing a build run for a separate set >>> to do >>> Python 2.7 as the default version for the few ports I need that >>> require it, but I am using DEFAULT_VERSIONS. >> >> I think, you are misinterpreting something or I am not getting what you >> both are up to. >> >> The advice from the mail in October handles the following situation: >> >> 1) Joe User uses Python X as default >> 2) Joe User wants to install a port PP for Python Q >> 3) To avoid conflicts, Joe User has to >> a) install PP with PYTHON_VERSION=Q - or - >> b) set up a poudriere with with Python X as default >> (DEFAULT_VERSIONS=...) >> and a make.conf entry setting PYTHON_VERSION=Q > > This sounds like my situation where X=2.7 and Q=3.4. Also, I'm using > poudriere per 3b. > >> This is necessary to avoid build and installation conflicts for >> packages, which support different Python versions (X and Q) at the >> same time, packages, which can be installed concurrently, etc. > > Yes, this is what I'm after. Am I doing it wrong, or am I tripping over > real problems/limitations of the ports machinery? Well, you are tripping over the b2) issue, you already outlined. Its scope is a bit stretched, though, since I did not consider the PYTHON_MAJOR_VER stuff, I think. I'll have a look at that the next days and think of something terribly complex that apparently will fix your issue, but really will only make the problem less easy to reveal and occur more randomly based on the daytime and last command executed :-). Cheers Marcus From owner-freebsd-python@FreeBSD.ORG Thu Dec 11 22:35:02 2014 Return-Path: Delivered-To: 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 51C1C134 for ; Thu, 11 Dec 2014 22:35:02 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1FF7AE0F for ; Thu, 11 Dec 2014 22:35:02 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBBMZ12V038156 for ; Thu, 11 Dec 2014 22:35:01 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 195896] devel/py-gitpython: Resurrect previously deleted port Date: Thu, 11 Dec 2014 22:35:01 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: easy, needs-qa, patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: koobs@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: python@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc keywords bug_status assigned_to Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 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: Thu, 11 Dec 2014 22:35:02 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195896 Kubilay Kocak changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|[revive port] |devel/py-gitpython: |devel/py-gitpython |Resurrect previously | |deleted port Keywords| |easy, needs-qa, patch Status|New |Open Assignee|freebsd-ports-bugs@FreeBSD. |python@FreeBSD.org |org | --- Comment #2 from Kubilay Kocak --- Thanks for your submission Mike! On first review of the attached patch, the following changes are needed: * Lowercase PORTNAME * New or resurrected ports require a MAINTAINER (not ports@freebsd.org) * Add LICENSE and LICENSE_FILE * GitPython wants ['gitdb >= 0.6.0'], update RUN_DEPENDS to match [1] * USE_PYDISTUTILS and PYDISTUTILS_AUTOPLIST have been deprecated. Instead use: USES=python[:version] and USE_PYTHON= feature1 feature2 See other Python ports for example usage. For reference, the port was originally removed in this changeset: https://svnweb.freebsd.org/ports?view=revision&revision=347472 [1] https://github.com/gitpython-developers/GitPython/blob/0.3/setup.py#L69 -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-python@FreeBSD.ORG Thu Dec 11 23:12:37 2014 Return-Path: Delivered-To: python@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 BB4AAD90 for ; Thu, 11 Dec 2014 23:12:37 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id A2773306 for ; Thu, 11 Dec 2014 23:12:37 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBBNCbD8056680 for ; Thu, 11 Dec 2014 23:12:37 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 195896] [revive port] devel/py-gitpython: Resurrect previously deleted port Date: Thu, 11 Dec 2014 23:12:37 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: easy, needs-qa, patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: linimon@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: python@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: short_desc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 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: Thu, 11 Dec 2014 23:12:37 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195896 Mark Linimon changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|devel/py-gitpython: |[revive port] |Resurrect previously |devel/py-gitpython: |deleted port |Resurrect previously | |deleted port -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-python@FreeBSD.ORG Fri Dec 12 00:18:52 2014 Return-Path: Delivered-To: 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 720E6D6C for ; Fri, 12 Dec 2014 00:18:52 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 5931BBFD for ; Fri, 12 Dec 2014 00:18:52 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBC0IqQ3083862 for ; Fri, 12 Dec 2014 00:18:52 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 195896] [revive port] devel/py-gitpython: Resurrect previously deleted port Date: Fri, 12 Dec 2014 00:18:52 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: easy, needs-qa, patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: mike@bayphoto.com X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: python@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 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: Fri, 12 Dec 2014 00:18:52 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195896 --- Comment #3 from mike@bayphoto.com --- Is there a port maintainer I can use, besides ports@freebsd.org? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-python@FreeBSD.ORG Fri Dec 12 02:03:37 2014 Return-Path: Delivered-To: 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 09FE7F04 for ; Fri, 12 Dec 2014 02:03:37 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E54CD8A2 for ; Fri, 12 Dec 2014 02:03:36 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBC23aBH098460 for ; Fri, 12 Dec 2014 02:03:36 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 195896] [revive port] devel/py-gitpython: Resurrect previously deleted port Date: Fri, 12 Dec 2014 02:03:37 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: easy, needs-qa, patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: koobs@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: python@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 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: Fri, 12 Dec 2014 02:03:37 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195896 --- Comment #4 from Kubilay Kocak --- It's normal and expected that a submitter of a new or revived port nominate themselves as maintainer. You can find more info about port maintainership here: https://www.freebsd.org/doc/en_US.ISO8859-1/articles/contributing-ports/maintain-port.html Hope you take up the challenge! :) -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-python@FreeBSD.ORG Fri Dec 12 02:13:17 2014 Return-Path: Delivered-To: python@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 A3BC2CA for ; Fri, 12 Dec 2014 02:13:17 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8AD1B990 for ; Fri, 12 Dec 2014 02:13:17 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBC2DHjb080902 for ; Fri, 12 Dec 2014 02:13:17 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 195515] lang/python: Unstable and fails its own test suite Date: Fri, 12 Dec 2014 02:13:17 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: needs-qa X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: koobs@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: python@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback+ X-Bugzilla-Changed-Fields: short_desc keywords flagtypes.name bug_status Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 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: Fri, 12 Dec 2014 02:13:17 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195515 Kubilay Kocak changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|[arm] lang/python unstable |lang/python: Unstable and |and fails its own test |fails its own test suite |suite | Keywords| |needs-qa Flags|maintainer-feedback?(python |maintainer-feedback+ |@FreeBSD.org) | Status|New |Open --- Comment #2 from Kubilay Kocak --- Might be first worth ping'ing upstream Python developers at #python-dev on freenode for initial clues and direction. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-python@FreeBSD.ORG Sat Dec 13 01:04:21 2014 Return-Path: Delivered-To: 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 282D0465 for ; Sat, 13 Dec 2014 01:04:21 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 0F06ECA8 for ; Sat, 13 Dec 2014 01:04:21 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBD14KJE071769 for ; Sat, 13 Dec 2014 01:04:20 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 195896] [revive port] devel/py-gitpython: Resurrect previously deleted port Date: Sat, 13 Dec 2014 01:04:21 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: easy, needs-qa, patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: mike@bayphoto.com X-Bugzilla-Status: Open X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: python@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 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: Sat, 13 Dec 2014 01:04:21 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195896 --- Comment #5 from mike@bayphoto.com --- Created attachment 150519 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=150519&action=edit updated patches for py-gitpython Thanks Kubilay! I'm up for the challenge :) Here is the updated shar with your recommendations. I ended up switched to CHEESESHOP as well. Consequentially, I had to create a port-bump for py-gitdb. Should I file that as a separate bug report? -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-python@FreeBSD.ORG Sat Dec 13 18:01:11 2014 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 B0EDBFB1 for ; Sat, 13 Dec 2014 18:01:11 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 986891F7 for ; Sat, 13 Dec 2014 18:01:11 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBDI1B6N073320 for ; Sat, 13 Dec 2014 18:01:11 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-python@FreeBSD.org Subject: [Bug 195948] New: [MAINTAINER] math/py-pandas: Update to 0.15.2 Date: Sat, 13 Dec 2014 18:01:11 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: john@saltant.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ports-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter cc attachments.created Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 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: Sat, 13 Dec 2014 18:01:11 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195948 Bug ID: 195948 Summary: [MAINTAINER] math/py-pandas: Update to 0.15.2 Product: Ports Tree Version: Latest Hardware: Any OS: Any Status: New Severity: Affects Some People Priority: --- Component: Individual Port(s) Assignee: freebsd-ports-bugs@FreeBSD.org Reporter: john@saltant.com CC: freebsd-python@FreeBSD.org Created attachment 150545 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=150545&action=edit Update math/py-pandas to 0.15.2 Changelog ========= * Update to 0.15.2 QA == * portlint % portlint -AC WARN: Makefile: for new port, make $FreeBSD$ tag in comment section empty, to make SVN happy. WARN: Consider to set DEVELOPER=yes in /etc/make.conf 0 fatal errors and 2 warnings found. * nosetests Ran 8073 tests in 1297.626s FAILED (SKIP=357, errors=1) ERROR: test_pytables_native_read (pandas.io.tests.test_pytables.TestHDFStore) This is a an error in devel/py-tables. -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-python@FreeBSD.ORG Sat Dec 13 18:02:27 2014 Return-Path: Delivered-To: freebsd-python@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 7DDEA97 for ; Sat, 13 Dec 2014 18:02:27 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6500D29F for ; Sat, 13 Dec 2014 18:02:27 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBDI2Rgb092645 for ; Sat, 13 Dec 2014 18:02:27 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-python@FreeBSD.org Subject: [Bug 195948] [MAINTAINER] math/py-pandas: Update to 0.15.2 Date: Sat, 13 Dec 2014 18:02:27 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: john@saltant.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ports-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 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: Sat, 13 Dec 2014 18:02:27 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195948 --- Comment #1 from John W. O'Brien --- Created attachment 150546 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=150546&action=edit Build log with python 2.7 -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-python@FreeBSD.ORG Sat Dec 13 18:02:44 2014 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 B5F1FDA for ; Sat, 13 Dec 2014 18:02:44 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 9D32B2A6 for ; Sat, 13 Dec 2014 18:02:44 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBDI2iws092713 for ; Sat, 13 Dec 2014 18:02:44 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-python@FreeBSD.org Subject: [Bug 195948] [MAINTAINER] math/py-pandas: Update to 0.15.2 Date: Sat, 13 Dec 2014 18:02:44 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: john@saltant.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ports-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 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: Sat, 13 Dec 2014 18:02:44 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195948 --- Comment #2 from John W. O'Brien --- Created attachment 150547 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=150547&action=edit Build log with python 3.4 -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-python@FreeBSD.ORG Sat Dec 13 18:03:09 2014 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 0ECE7123 for ; Sat, 13 Dec 2014 18:03:09 +0000 (UTC) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id EA0A62AD for ; Sat, 13 Dec 2014 18:03:08 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id sBDI38L7092814 for ; Sat, 13 Dec 2014 18:03:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-python@FreeBSD.org Subject: [Bug 195948] [MAINTAINER] math/py-pandas: Update to 0.15.2 Date: Sat, 13 Dec 2014 18:03:08 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports Tree X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: john@saltant.com X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ports-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: attachments.created Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 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: Sat, 13 Dec 2014 18:03:09 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=195948 --- Comment #3 from John W. O'Brien --- Created attachment 150548 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=150548&action=edit Nosetests output (w/python2.7 and all options enabled) -- You are receiving this mail because: You are on the CC list for the bug.