From owner-freebsd-python@FreeBSD.ORG Sun Feb 22 20:36:53 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 7FCF7A36; Sun, 22 Feb 2015 20:36:53 +0000 (UTC) Received: from d2ux.org (static.140.151.9.5.clients.your-server.de [5.9.151.140]) by mx1.freebsd.org (Postfix) with ESMTP id 3C623F1; Sun, 22 Feb 2015 20:36:52 +0000 (UTC) Received: from d2ux.org (unknown [10.0.0.4]) by d2ux.org (Postfix) with ESMTP id 6BEDD1FE144; Sun, 22 Feb 2015 21:36:45 +0100 (CET) Received: from d2ux.org ([10.0.0.4]) by d2ux.org (d2ux.org [10.0.0.4]) (amavisd-new, port 10024) with ESMTP id 3ADTp41ACQZh; Sun, 22 Feb 2015 21:36:42 +0100 (CET) Received: from [192.168.2.5] (p54B466AE.dip0.t-ipconnect.de [84.180.102.174]) by d2ux.org (Postfix) with ESMTPSA id 887E61FDC4D; Sun, 22 Feb 2015 21:36:42 +0100 (CET) Message-ID: <54EA3DC6.8090406@petermann-it.de> Date: Sun, 22 Feb 2015 21:36:22 +0100 From: Matthias Petermann User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Icedove/31.4.0 MIME-Version: 1.0 To: freebsd-python@freebsd.org, freebsd-questions@freebsd.org Subject: Re: Questions about packaging Python modules in Ports Collection References: <3c81f98fe02d3047ca3ddf3ced1dcf1f@mail.d2ux.org> <20150220142701.GA1033@medusa.sysfault.org> In-Reply-To: <20150220142701.GA1033@medusa.sysfault.org> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit 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: Sun, 22 Feb 2015 20:36:53 -0000 Hallo Marcus, many thanks for sharing your recommendations and advice. I fully agree and will definitely engage with the meta ports. This appears very handy to me, too. Best regards, Matthias Am 20.02.2015 um 15:27 schrieb Marcus von Appen: > On, Fri Feb 20, 2015, Matthias Petermann wrote: > >> Hello, >> >> I am maintaining the Tryton ports for FreeBSD and am about to prepare >> the update from 2.8 to 3.4. Because I think there is some potential to >> improve, I would like to address some questions and ask for advice from >> the FreeBSD Python community. >> >> First, please allow me to give you some background. Tryton consists of a >> framework (client and server component), as well as a large number (67) >> of functional modules that add business domain functionality to the >> framework. All this modules together make up a comprehensive ERP >> solution. If one wants to use only a subset from them, the framework >> allows to enable / disable them on the fly, even if they all are >> installed. >> >> The framework components are located in: >> >> /usr/ports/finance/tryton28 (client) >> /usr/ports/finance/trytond28 (server) >> >> and most of the functional modules in: >> >> /usr/ports/finance/trytond28_* >> >> For each of the functional modules there is a separate port provided, >> utilizing distutils and autoplist. >> >> This works good, but I think of the following potential issues: >> >> I) Looking on this with a users eye, it doesn't make too much sense to >> install only a subset of the modules. Some don't even provide standalone >> functionality but only provide dependencies to other modules. So most >> users likely want to install the complete set of Tryton modules and turn >> them on / off in the frameworks configuration later. >> >> II) Supporting multiple Tryton versions at the same time. The Tryton >> project does a very good job in providing security fixes for legacy >> releases for a quite long period. From a users point of view it is >> desirable to have the versions introduced to Ports Collection supported >> until their upstream EOL. This is required to not force anyone to >> upgrade to the newest version each, because this is not always possible >> when running this in production. On the other hand, having at least the >> newest version available in the ports is required to keep FreeBSD >> attractive as the platform for new Tryton users. >> >> What do you think on the following? >> >> 1) Is the large number of separate modules in the sense of the >> principles of the ports collection? My observations is that this blows >> up the directory pretty much. > They do not violate the principles. I do not know enough about tryton, > but if a single module contains some critical issue, it may come in > handy to only update that seperate module, especially, if this is > according to how the upstream vendor provides updates and fixes. > >> 2) Is the statement II) valid or do I overestimate the needs of the >> typical FreeBSD user base? > You do not. FreeBSD is a typical server operating system. Continuity as > well as providing long-term support for mission-critical software is > fairly common. The python bits (speaking for lang/pythonXX) are usually > offered as ports for as long as upstream offers updates and patches > (until the EOL). The same goes for other software. > >> 3) Is it technically possible to bundle multiple distutils python >> modules into one port? Is there a good example you know? > In your specific case, the tryton modules are offered as seperate > distutils packages, if I understand it correctly. In my opinion, > meta-ports, which pull in the modules as run dependencies and bundle > them into useful groups, would ease the setup of an ERP system for the > user base. There are similar ports around for other software, > e.g. x11/xorg, x11/xorg-apps, etc., which pull in relevant X.org bits > and pieces to provide users a far easier way to install a fully > functional X.org environment (or parts of it). > >> 4) With regards to I), is it suggested to keep the functional modules as >> separate ports, or should I apply 3) if technically possible? > See my first comment. If upstram provides them as seperate modules, > which might be updated individually within the EOL of a major release, > it would make sense to keep them as seperate ports and use meta-ports to > bundle functional parts. > >> 5) In ports collection, is it allowed in a port to reference a (common) >> Makefile of another port? I have seen in NetBSDs pkgsrc for the Tryton >> port, they source common stuff like the version number of Tryton from a >> common Makefile: >> >> For example, this modules Makefile: >> http://ftp.netbsd.org/pub/pkgsrc/current/pkgsrc/finance/py-trytond-account/Makefile >> uses this: >> http://ftp.netbsd.org/pub/pkgsrc/current/pkgsrc/devel/py-trytond/Makefile.common > Yes. This is heavily used by e.g. the OpenGL and Mesa ports, PostgreSQL > and others. You should keep in mind that this also bears certain risks > (breaking all ports using that common Makefile on updates, keeping the > include order in mind, etc.). I'd rather recommend to create a tryton > Uses to be included, especially if your functional meta-ports require > bits of other functional parts. That way, you could provide functional > parts for users (meta-ports) and provide logical/technical parts > internally for all the consumers. Something like: > > finance/tryton-debitor > # Provide debit functionality > USES= tryton:base,accounts,sale > > > finance/tryton-accounts > # Pull in all relevant accounting bits > USES= tryton:base > # Do not use USES=tryton:accounts, since this port provides it > RUN_DEPENDS= finance/tryton-account finance/tryton-account_asset ... > > Mk/Uses/tryton.mk > # Similar to e.g. Uses/twisted.mk or bsd.sdl.mk, etc.pp., depending > # on the granularity. > > Additionally, the Uses can be easily used by consumer ports of Tryton, > which are not maintained by yourself, providing a sort of standard > approach for other maintainers. > > Cheers > Marcus From owner-freebsd-python@FreeBSD.ORG Sun Feb 22 21:00:27 2015 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 44767F6 for ; Sun, 22 Feb 2015 21:00: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 32ED233F for ; Sun, 22 Feb 2015 21:00: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 t1ML0RwX028473 for ; Sun, 22 Feb 2015 21:00:27 GMT (envelope-from bugzilla-noreply@FreeBSD.org) Message-Id: <201502222100.t1ML0RwX028473@kenobi.freebsd.org> From: bugzilla-noreply@FreeBSD.org To: python@FreeBSD.org Subject: Problem reports for python@FreeBSD.org that need special attention X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 Date: Sun, 22 Feb 2015 21:00:27 +0000 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: Sun, 22 Feb 2015 21:00:27 -0000 To view an individual PR, use: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id). The following is a listing of current problems submitted by FreeBSD users, which need special attention. These represent problem reports covering all versions including experimental development code and obsolete releases. Status | Bug Id | Description ------------+-----------+--------------------------------------------------- Open | 185884 | Miscellaneous ports fixes for Python 3 Open | 186316 | [NEW PORT] devel/spyder: Scientific PYthon Develo Open | 196049 | [NEW PORT] net/py-pysocks: Python SOCKS module Open | 196336 | security/py-fail2ban: Support Python 3 Open | 197226 | lang/python27: fix pyport.h _PY_PORT_CTYPE_UTF8_I 5 problems total for which you should take action. From owner-freebsd-python@FreeBSD.ORG Mon Feb 23 00:08:14 2015 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 8216C958 for ; Mon, 23 Feb 2015 00:08:14 +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 67A06A81 for ; Mon, 23 Feb 2015 00:08:14 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1N08EIL037482 for ; Mon, 23 Feb 2015 00:08:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 186316] [NEW PORT] devel/spyder: Scientific PYthon Development EnviRonment Date: Mon, 23 Feb 2015 00:08:14 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: patch, patch-ready X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: lightside@gmx.com X-Bugzilla-Status: Open X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: python@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback+ X-Bugzilla-Changed-Fields: attachments.isobsolete 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: Mon, 23 Feb 2015 00:08:14 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=186316 lightside changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #152302|0 |1 is obsolete| | --- Comment #43 from lightside --- Created attachment 153345 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=153345&action=edit The port in shar format (v2.3.2) According to BitBucket Wiki and Google Code pages, the site and source code "has moved to GitHub": https://bitbucket.org/spyder-ide/spyderlib/wiki/Home https://code.google.com/p/spyderlib/ - Adapted to USE_GITHUB=yes - Changed WWW of pkg-descr file to GitHub site -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-python@FreeBSD.ORG Mon Feb 23 00:50:00 2015 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 BCD28FA0 for ; Mon, 23 Feb 2015 00:50:00 +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 A268DE89 for ; Mon, 23 Feb 2015 00:50:00 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1N0o0EJ017453 for ; Mon, 23 Feb 2015 00:50:00 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 186316] [NEW PORT] devel/spyder: Scientific PYthon Development EnviRonment Date: Mon, 23 Feb 2015 00:50:00 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: patch, patch-ready X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: lightside@gmx.com X-Bugzilla-Status: Open X-Bugzilla-Priority: Normal X-Bugzilla-Assigned-To: python@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback+ X-Bugzilla-Changed-Fields: attachments.isobsolete 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: Mon, 23 Feb 2015 00:50:00 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=186316 lightside changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #153345|0 |1 is obsolete| | --- Comment #44 from lightside --- Created attachment 153348 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=153348&action=edit The port in shar format (v2.3.2) There is a possibility to use GHR (or GITHUB_RELEASE) for MASTER_SITES. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-python@FreeBSD.ORG Mon Feb 23 08:36:29 2015 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 E6A97CD2 for ; Mon, 23 Feb 2015 08:36:29 +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 CC4BDF10 for ; Mon, 23 Feb 2015 08:36:29 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1N8aTSI003599 for ; Mon, 23 Feb 2015 08:36:29 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 197523] [MAINTAINER] devel/py-robotframework-selenium2library: Update to 1.6.0 Date: Mon, 23 Feb 2015 08:36:29 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: patch, patch-ready X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: vladimir.chukharev@gmail.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: flagtypes.name 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: Mon, 23 Feb 2015 08:36:30 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197523 vladimir.chukharev@gmail.com changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #152848| |maintainer-approval+ Flags| | -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-python@FreeBSD.ORG Mon Feb 23 10:28:15 2015 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 06821727 for ; Mon, 23 Feb 2015 10:28:15 +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 E0A03DF0 for ; Mon, 23 Feb 2015 10:28:14 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1NASEQd008285 for ; Mon, 23 Feb 2015 10:28:14 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 197523] [MAINTAINER] devel/py-robotframework-selenium2library: Update to 1.6.0 Date: Mon, 23 Feb 2015 10:28:15 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: patch, patch-ready X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: rm@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: rm@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: assigned_to cc 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: Mon, 23 Feb 2015 10:28:15 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197523 Ruslan Makhmatkhanov changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|python@FreeBSD.org |rm@FreeBSD.org CC| |rm@FreeBSD.org Status|Open |In Progress --- Comment #3 from Ruslan Makhmatkhanov --- Take -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-python@FreeBSD.ORG Mon Feb 23 21:50:43 2015 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 7EDB8457 for ; Mon, 23 Feb 2015 21:50:43 +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 6412D3BA for ; Mon, 23 Feb 2015 21:50:43 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1NLohn0032728 for ; Mon, 23 Feb 2015 21:50:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 197972] lang/python27 fails due to error "./libpython2.7.so: undefined reference to `sincos'" Date: Mon, 23 Feb 2015 21:50:43 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: krichter@posteo.de X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: python@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: bug_id short_desc product version rep_platform op_sys bug_status bug_severity priority component assigned_to reporter flagtypes.name 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: Mon, 23 Feb 2015 21:50:43 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197972 Bug ID: 197972 Summary: lang/python27 fails due to error "./libpython2.7.so: undefined reference to `sincos'" Product: Ports & Packages Version: Latest Hardware: amd64 OS: Any Status: New Severity: Affects Only Me Priority: --- Component: Individual Port(s) Assignee: python@FreeBSD.org Reporter: krichter@posteo.de Assignee: python@FreeBSD.org Flags: maintainer-feedback?(python@FreeBSD.org) Created attachment 153396 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=153396&action=edit the relevant terminal output `env MAKE_JOBS_UNSAFE=yes make reinstall` doesn't help. See attached build log for details. --- Comment #1 from Bugzilla Automation --- Auto-assigned to maintainer python@FreeBSD.org -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-python@FreeBSD.ORG Mon Feb 23 21:50:43 2015 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 4E60B456 for ; Mon, 23 Feb 2015 21:50:43 +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 392CB3B9 for ; Mon, 23 Feb 2015 21:50:43 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1NLohT0032725 for ; Mon, 23 Feb 2015 21:50:43 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: maintainer-feedback requested: [Bug 197972] lang/python27 fails due to error "./libpython2.7.so: undefined reference to `sincos'" Date: Mon, 23 Feb 2015 21:50:43 +0000 X-Bugzilla-Type: request Message-ID: In-Reply-To: References: X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 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, 23 Feb 2015 21:50:43 -0000 Kalle Richter has reassigned Bugzilla Automation 's request for maintainer-feedback to python@FreeBSD.org: Bug 197972: lang/python27 fails due to error "./libpython2.7.so: undefined reference to `sincos'" https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197972 --- Description --- Created attachment 153396 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=153396&action=edit the relevant terminal output `env MAKE_JOBS_UNSAFE=yes make reinstall` doesn't help. See attached build log for details. --- Comment #1 from Bugzilla Automation --- Auto-assigned to maintainer python@FreeBSD.org From owner-freebsd-python@FreeBSD.ORG Tue Feb 24 04:53:11 2015 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 E0F02220 for ; Tue, 24 Feb 2015 04:53: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 C6248969 for ; Tue, 24 Feb 2015 04:53: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 t1O4rBgn062479 for ; Tue, 24 Feb 2015 04:53:11 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 197972] lang/python27 fails due to error "./libpython2.7.so: undefined reference to `sincos'" Date: Tue, 24 Feb 2015 04:53:11 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: needs-qa 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: maintainer-feedback+ X-Bugzilla-Changed-Fields: 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: Tue, 24 Feb 2015 04:53:12 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197972 Kubilay Kocak changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |needs-qa Flags|maintainer-feedback?(python |maintainer-feedback+ |@FreeBSD.org) | Status|New |Open --- Comment #2 from Kubilay Kocak --- Kalle, Are you using ccache? If so, can you reproduce this issue without ccache? Please attach contents of /etc/make.conf (sanitized if necessary) and include output of uname -a. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-python@FreeBSD.ORG Thu Feb 26 10:24:01 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 601A223D for ; Thu, 26 Feb 2015 10:24:01 +0000 (UTC) Received: from d2ux.org (static.140.151.9.5.clients.your-server.de [5.9.151.140]) by mx1.freebsd.org (Postfix) with ESMTP id 20A49D7D for ; Thu, 26 Feb 2015 10:24:00 +0000 (UTC) Received: from d2ux.org (unknown [10.0.0.4]) by d2ux.org (Postfix) with ESMTP id 396E31FE1C5 for ; Thu, 26 Feb 2015 11:23:53 +0100 (CET) Received: from d2ux.org ([10.0.0.4]) by d2ux.org (d2ux.org [10.0.0.4]) (amavisd-new, port 10024) with ESMTP id gsH4J3zNe2u1 for ; Thu, 26 Feb 2015 11:23:53 +0100 (CET) Received: from mail.d2ux.org (unknown [10.0.0.7]) by d2ux.org (Postfix) with ESMTP id E2FBB1FD74B for ; Thu, 26 Feb 2015 11:23:52 +0100 (CET) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Thu, 26 Feb 2015 11:23:52 +0100 From: Matthias Petermann To: freebsd-python@freebsd.org Subject: Ports that need committing Message-ID: X-Sender: matthias@petermann-it.de User-Agent: Roundcube Webmail/1.0.5 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, 26 Feb 2015 10:24:01 -0000 Hello, is there anyone in the FreeBSD python community able to commit this patches? https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197870 ([PATCH] Update Tryton 2.8 modules to latest versions (finance/tryton* etc.)) https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197935 ([PATCH] Update Tryton 2.4 ports to latest patch level and add DEPRECATED / EXPIRATION_DATE) Thanks & best regards, Matthias From owner-freebsd-python@FreeBSD.ORG Thu Feb 26 11:16:11 2015 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 246C6C27 for ; Thu, 26 Feb 2015 11:16: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 E3C1D304 for ; Thu, 26 Feb 2015 11:16:10 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1QBGAN3045759 for ; Thu, 26 Feb 2015 11:16:10 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 198049] net-im/jabber-pyicq: can't build with WITH_TWISTED, won't run without Date: Thu, 26 Feb 2015 11:16:10 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: needs-qa 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: maintainer-feedback+ X-Bugzilla-Changed-Fields: cc keywords flagtypes.name assigned_to 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: Thu, 26 Feb 2015 11:16:11 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198049 Kubilay Kocak changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |sunpoet@FreeBSD.org Keywords| |needs-qa Flags| |maintainer-feedback+ Assignee|freebsd-ports-bugs@FreeBSD. |python@FreeBSD.org |org | Status|New |Open --- Comment #2 from Kubilay Kocak --- A couple of things to note: - This port has no maintainer, which likely means you'll need to provide as much of the investigation effort as possible to make progress. - Upstream source code has not changed since ~2009 - Twisted was recently updated to version 15.0 in the ports tree Having said that, - The port does appear to have a TWISTED option. Have you tried to `make config`, disable that option and retry the build? - Are you running an up to date version of the ports tree? If not, please portsnap fetch update OR svn update, the try to reproduce the issue again. - When was the last time this port worked for you? Did it stop working recently? If so, when? Please add a log of the failed build as an attachment to this issue, which may provide additional clues. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-python@FreeBSD.ORG Thu Feb 26 12:12:24 2015 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 7570E96E for ; Thu, 26 Feb 2015 12:12:24 +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 5B28BB57 for ; Thu, 26 Feb 2015 12:12:24 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1QCCOgT069691 for ; Thu, 26 Feb 2015 12:12:24 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 198049] net-im/jabber-pyicq: can't build with WITH_TWISTED, won't run without Date: Thu, 26 Feb 2015 12:12:24 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: commit-hook@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: 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, 26 Feb 2015 12:12:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198049 --- Comment #3 from commit-hook@freebsd.org --- A commit references this bug: Author: sunpoet Date: Thu Feb 26 12:12:20 UTC 2015 New revision: 379991 URL: https://svnweb.freebsd.org/changeset/ports/379991 Log: - Fix USES=twisted: we do not support/need twisted:core PR: 198049 Submitted by: Changes: head/net-im/jabber-pyicq/Makefile -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-python@FreeBSD.ORG Thu Feb 26 12:13:54 2015 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 B7DE59A8 for ; Thu, 26 Feb 2015 12:13:54 +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 9DBBDB6D for ; Thu, 26 Feb 2015 12:13:54 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1QCDsbp034616 for ; Thu, 26 Feb 2015 12:13:54 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 198049] net-im/jabber-pyicq: can't build with WITH_TWISTED, won't run without Date: Thu, 26 Feb 2015 12:13:54 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: sunpoet@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: 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, 26 Feb 2015 12:13:54 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198049 --- Comment #4 from Sunpoet Po-Chuan Hsieh --- I've removed core from USES=twisted in r379991. Please update your ports tree and try again. Thanks. -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-python@FreeBSD.ORG Thu Feb 26 13:00:31 2015 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 50497AC5 for ; Thu, 26 Feb 2015 13:00:31 +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 33BFDFC5 for ; Thu, 26 Feb 2015 13:00:31 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1QD0Vc8093494 for ; Thu, 26 Feb 2015 13:00:31 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 198049] net-im/jabber-pyicq: can't build with WITH_TWISTED, won't run without Date: Thu, 26 Feb 2015 13:00:31 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: needs-qa X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: michal@hanu.la X-Bugzilla-Status: Closed X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: python@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback+ X-Bugzilla-Changed-Fields: resolution 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: Thu, 26 Feb 2015 13:00:31 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198049 michal@hanu.la changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Status|Open |Closed --- Comment #5 from michal@hanu.la --- Thanks a lot (that's what I did to build it before reporting the bug and it did indeed help). -- You are receiving this mail because: You are the assignee for the bug. From owner-freebsd-python@FreeBSD.ORG Thu Feb 26 14:02:51 2015 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 2997F8BB for ; Thu, 26 Feb 2015 14:02:51 +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 0EF989E1 for ; Thu, 26 Feb 2015 14:02:51 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1QE2oUa012700 for ; Thu, 26 Feb 2015 14:02:50 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 198034] [patch] devel/py-zope.deprecation: Update to 4.1.2 Date: Thu, 26 Feb 2015 14:02:50 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: 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: zope@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: flagtypes.name 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, 26 Feb 2015 14:02:51 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198034 Kubilay Kocak changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #153523| |maintainer-approval?(zope@F Flags| |reeBSD.org) -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-python@FreeBSD.ORG Thu Feb 26 14:02:42 2015 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 31FD28AF for ; Thu, 26 Feb 2015 14:02:42 +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 16E239DB for ; Thu, 26 Feb 2015 14:02:42 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1QE2fGr012618 for ; Thu, 26 Feb 2015 14:02:41 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 198034] [patch] devel/py-zope.deprecation: Update to 4.1.2 Date: Thu, 26 Feb 2015 14:02:41 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: 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: zope@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: short_desc assigned_to flagtypes.name bug_status cc keywords 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, 26 Feb 2015 14:02:42 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198034 Kubilay Kocak changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|[patch] |[patch] |devel/py-zope.deprecation |devel/py-zope.deprecation: |update to 4.1.2 |Update to 4.1.2 Assignee|freebsd-ports-bugs@FreeBSD. |zope@FreeBSD.org |org | Flags| |maintainer-feedback?(zope@F | |reeBSD.org) Status|New |Open CC| |python@FreeBSD.org, | |zope@FreeBSD.org Keywords| |needs-qa, patch -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-python@FreeBSD.ORG Thu Feb 26 14:03:56 2015 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 D4BC6960 for ; Thu, 26 Feb 2015 14:03:56 +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 B9EF49FC for ; Thu, 26 Feb 2015 14:03:56 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1QE3uCa013547 for ; Thu, 26 Feb 2015 14:03:56 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 198033] [patch] www/py-pastedeploy: update to 1.5.2 Date: Thu, 26 Feb 2015 14:03:57 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages 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: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ports-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: cc keywords 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, 26 Feb 2015 14:03:56 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198033 Kubilay Kocak changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |python@FreeBSD.org Keywords| |easy, needs-qa, patch -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-python@FreeBSD.ORG Thu Feb 26 14:04:07 2015 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 7B5759AC for ; Thu, 26 Feb 2015 14:04:07 +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 60C0AA03 for ; Thu, 26 Feb 2015 14:04:07 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1QE47Rv013752 for ; Thu, 26 Feb 2015 14:04:07 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 198033] [patch] www/py-pastedeploy: update to 1.5.2 Date: Thu, 26 Feb 2015 14:04:07 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages 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: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ports-bugs@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: flagtypes.name 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, 26 Feb 2015 14:04:07 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198033 Kubilay Kocak changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #153522| |maintainer-approval?(wenhep Flags| |ing@gmail.com) -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-python@FreeBSD.ORG Thu Feb 26 14:41:35 2015 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 266EB963 for ; Thu, 26 Feb 2015 14:41:35 +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 0BA99E85 for ; Thu, 26 Feb 2015 14:41:35 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1QEfYiC053396 for ; Thu, 26 Feb 2015 14:41:34 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 198034] [patch] devel/py-zope.deprecation: Update to 4.1.2 Date: Thu, 26 Feb 2015 14:41:35 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: needs-qa, patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: rm@FreeBSD.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: rm@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: cc 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, 26 Feb 2015 14:41:35 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198034 Ruslan Makhmatkhanov changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |rm@FreeBSD.org Status|Open |In Progress Assignee|zope@FreeBSD.org |rm@FreeBSD.org --- Comment #1 from Ruslan Makhmatkhanov --- Take -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-python@FreeBSD.ORG Fri Feb 27 09:51:56 2015 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 C2CFD18C for ; Fri, 27 Feb 2015 09:51:56 +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 A8BF5E7 for ; Fri, 27 Feb 2015 09:51:56 +0000 (UTC) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.14.9/8.14.9) with ESMTP id t1R9pu3i089908 for ; Fri, 27 Feb 2015 09:51:56 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 198033] [patch] www/py-pastedeploy: update to 1.5.2 Date: Fri, 27 Feb 2015 09:51:55 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages 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: arved@FreeBSD.org X-Bugzilla-Status: New X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: wen@FreeBSD.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback? X-Bugzilla-Changed-Fields: assigned_to cc 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, 27 Feb 2015 09:51:56 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=198033 Tilman Keskinoz changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-ports-bugs@FreeBSD. |wen@FreeBSD.org |org | CC| |arved@FreeBSD.org --- Comment #2 from Tilman Keskinoz --- over to maintainer -- You are receiving this mail because: You are on the CC list for the bug. From owner-freebsd-python@FreeBSD.ORG Fri Feb 27 15:21:08 2015 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 5C4B23B9 for ; Fri, 27 Feb 2015 15:21:08 +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 3FEFAA55 for ; Fri, 27 Feb 2015 15:21: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 t1RFL87w060733 for ; Fri, 27 Feb 2015 15:21:08 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: python@FreeBSD.org Subject: [Bug 197410] net/py-pyzmq: Update to 14.5.0 Date: Fri, 27 Feb 2015 15:21:07 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: easy, needs-qa, patch, patch-ready X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: robak@freebsd.org X-Bugzilla-Status: In Progress X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: robak@freebsd.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: maintainer-feedback+ X-Bugzilla-Changed-Fields: assigned_to cc 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, 27 Feb 2015 15:21:08 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=197410 Bartek Rutkowski changed: What |Removed |Added ---------------------------------------------------------------------------- Assignee|freebsd-ports-bugs@FreeBSD. |robak@freebsd.org |org | CC| |robak@freebsd.org Status|Open |In Progress --- Comment #3 from Bartek Rutkowski --- The patch fails to apply to the port in revision 380096. Could you please upload updated patch that applies cleanly to the current port version so I could test it and commit if everything will be OK? -- You are receiving this mail because: You are on the CC list for the bug.