From owner-freebsd-python@FreeBSD.ORG Sun Jan 26 07:45:14 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 23F2F472 for ; Sun, 26 Jan 2014 07:45:14 +0000 (UTC) Received: from forward2l.mail.yandex.net (forward2l.mail.yandex.net [84.201.143.145]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D09D6119A for ; Sun, 26 Jan 2014 07:45:13 +0000 (UTC) Received: from smtp13.mail.yandex.net (smtp13.mail.yandex.net [95.108.130.68]) by forward2l.mail.yandex.net (Yandex) with ESMTP id F263A1AC0BA6 for ; Sun, 26 Jan 2014 11:45:04 +0400 (MSK) Received: from smtp13.mail.yandex.net (localhost [127.0.0.1]) by smtp13.mail.yandex.net (Yandex) with ESMTP id B2AFCE40058 for ; Sun, 26 Jan 2014 11:45:04 +0400 (MSK) Received: from unknown (unknown [178.76.234.16]) by smtp13.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id KpV5xMySek-j4JWY9nb; Sun, 26 Jan 2014 11:45:04 +0400 (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (Client certificate not present) X-Yandex-Uniq: 44db1e0b-abe4-4b1b-9445-d1ce86918165 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1390722304; bh=pl29KDoqbDigIvIPm9KBSyPmqGWQH/X4QZp5h/zVJ24=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: Content-Type:Content-Transfer-Encoding; b=ttONM0iig0ocQg+41pzbeVG67ADpEW/npYTHlOm5lk9qTKfFy7fKEvDqtOAnEGkfz 23dOtP9XHwHHsl1BiF0xBiuNRWYsCwsbEopEMbJ7NtwcMibb6oO1cee4f4O/TXiiWD 1ACir9eM0v8KL00rxspcXaLJrQQbwZqXWkS5mV9c= Authentication-Results: smtp13.mail.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: <52E4BCF4.3070507@yandex.ru> Date: Sun, 26 Jan 2014 11:44:52 +0400 From: Ruslan Makhmatkhanov User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: python Subject: PYDISTUTILS_AUTOPLIST question Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Jan 2014 07:45:14 -0000 Hi, while PYDISTUTILS_AUTOPLIST works smoothly for majority of ports, there is the problem with some of them I come across yesterday. For example, there is the port devel/py-Products.PasswordResetTool. If I set there PYDISTUTILS_AUTOPLIST, and try to build, I got packaging error, because some of the files, that port provides, cannot be compiled (by design). While they are python code files, they are not supposed to be executed with python interpreter directly (they are kind of templates). So, is there any possibility to: a) Do not add compiled/optimized filenames to packing list, if the actual file fails to compile? b) Make a hook, that allows to list file, that should not have corresponding *.pyc/*.pyo entries in the packing list? Such thing is common for zope/plone-related ports, and I already asked upstream about this long time ago. They tell me to just ignore that and all was fine until such a tasty life-saver, which PYDISTUTILS_AUTOPLIST is, was introduced into the ports tree, that sadly cannot be used for this ports. -- Regards, Ruslan T.O.S. Of Reality From owner-freebsd-python@FreeBSD.ORG Sun Jan 26 10:20:08 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 846481D2; Sun, 26 Jan 2014 10:20:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 596EE1A49; Sun, 26 Jan 2014 10:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0QAK8pf044428; Sun, 26 Jan 2014 10:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0QAK8cF044427; Sun, 26 Jan 2014 10:20:08 GMT (envelope-from edwin) Date: Sun, 26 Jan 2014 10:20:08 GMT Message-Id: <201401261020.s0QAK8cF044427@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186122: [MAINTAINER-UPDATE] math/py-bottleneck: update to 0.8.0 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Jan 2014 10:20:08 -0000 Synopsis: [MAINTAINER-UPDATE] math/py-bottleneck: update to 0.8.0 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sun Jan 26 10:20:08 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186122 From owner-freebsd-python@FreeBSD.ORG Sun Jan 26 10:20:23 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 8995B253; Sun, 26 Jan 2014 10:20:23 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5EBA81A50; Sun, 26 Jan 2014 10:20:23 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0QAKNJv044588; Sun, 26 Jan 2014 10:20:23 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0QAKNDi044587; Sun, 26 Jan 2014 10:20:23 GMT (envelope-from edwin) Date: Sun, 26 Jan 2014 10:20:23 GMT Message-Id: <201401261020.s0QAKNDi044587@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186123: [PATCH] net/py-gspreadsheet: update to 0.4.0 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Jan 2014 10:20:23 -0000 Synopsis: [PATCH] net/py-gspreadsheet: update to 0.4.0 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sun Jan 26 10:20:23 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186123 From owner-freebsd-python@FreeBSD.ORG Sun Jan 26 11:30:29 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B603ABFB for ; Sun, 26 Jan 2014 11:30:29 +0000 (UTC) Received: from smtprelay06.ispgateway.de (smtprelay06.ispgateway.de [80.67.31.96]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 74F3C1EE7 for ; Sun, 26 Jan 2014 11:30:29 +0000 (UTC) Received: from [89.182.152.226] (helo=localhost) by smtprelay06.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1W7Nuu-0007pt-Rf for python@FreeBSD.org; Sun, 26 Jan 2014 12:30:21 +0100 Date: Sun, 26 Jan 2014 12:30:22 +0100 From: Marcus von Appen To: python Subject: Re: PYDISTUTILS_AUTOPLIST question Message-ID: <20140126113022.GA1394@medusa.sysfault.org> Mail-Followup-To: python References: <52E4BCF4.3070507@yandex.ru> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="7JfCtLOvnd9MIVvH" Content-Disposition: inline In-Reply-To: <52E4BCF4.3070507@yandex.ru> User-Agent: Mutt/1.5.22 (2013-10-16) X-Df-Sender: MTEyNTc0Mg== X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Marcus von Appen List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Jan 2014 11:30:29 -0000 --7JfCtLOvnd9MIVvH Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On, Sun Jan 26, 2014, Ruslan Makhmatkhanov wrote: > Hi, > > while PYDISTUTILS_AUTOPLIST works smoothly for majority of ports, there > is the problem with some of them I come across yesterday. For example, > there is the port devel/py-Products.PasswordResetTool. If I set there > PYDISTUTILS_AUTOPLIST, and try to build, I got packaging error, because > some of the files, that port provides, cannot be compiled (by design). > While they are python code files, they are not supposed to be executed > with python interpreter directly (they are kind of templates). > > So, is there any possibility to: > a) Do not add compiled/optimized filenames to packing list, if the > actual file fails to compile? > b) Make a hook, that allows to list file, that should not have > corresponding *.pyc/*.pyo entries in the packing list? If the port uses distutils, it should not matter, if you do not mess around in the post-install targets yourself, since the file list will be taken from what distutils records - we do not implement magic ourselves for distutils-aware ports (well, a bit :-). If this does not work properly for you, upstream might do something that breaks the intended behaviour of distutils. So, before fixing the symptom, I actually would like to find out, what exactly they do on installation. Are all files properly recorded in ${_PYTHONPKGLIST}? What errors do you get, what does the install target complain about, etc.etc.? Cheers Marcus --7JfCtLOvnd9MIVvH Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iEYEARECAAYFAlLk8c4ACgkQi68/ErJnpkeQMACdGcI5Mqm4u1deeM4aqO1/EQYF sGUAoNaNZsD2dMjh4WOF/AwUyr9wKJar =fe8/ -----END PGP SIGNATURE----- --7JfCtLOvnd9MIVvH-- From owner-freebsd-python@FreeBSD.ORG Sun Jan 26 12:33:16 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4BF2E876 for ; Sun, 26 Jan 2014 12:33:16 +0000 (UTC) Received: from forward10l.mail.yandex.net (forward10l.mail.yandex.net [IPv6:2a02:6b8:0:1819::a]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D1B3712BF for ; Sun, 26 Jan 2014 12:33:15 +0000 (UTC) Received: from smtp13.mail.yandex.net (smtp13.mail.yandex.net [95.108.130.68]) by forward10l.mail.yandex.net (Yandex) with ESMTP id 8FE5FBA0D4B for ; Sun, 26 Jan 2014 16:33:13 +0400 (MSK) Received: from smtp13.mail.yandex.net (localhost [127.0.0.1]) by smtp13.mail.yandex.net (Yandex) with ESMTP id 50F63E400CF for ; Sun, 26 Jan 2014 16:33:13 +0400 (MSK) Received: from unknown (unknown [178.76.234.16]) by smtp13.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id WmF1ARSZV1-XCJOq2dV; Sun, 26 Jan 2014 16:33:12 +0400 (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (Client certificate not present) X-Yandex-Uniq: 44db1e0b-abe4-4b1b-9445-d1ce86918165 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1390739592; bh=N3x7OiJMSbkQuEW27+8YP/eootkDBDS+Oau4waA4Zb4=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=O7+aLTBuLmqx91wMYSKfshS+zu/aQ3Q8kY+0irIBCEYNb376p2zB/JdD6luW8whJu M/Rg2P8mK4WSegLnmchSquHRybyqGtqJEUR5jxYQW1oK7F5U1uIooWCOb9Eisc3bWP pk/7r/EK/aWF2oyOXuqZtC+yfWUvyFxnK6d4nPJE= Authentication-Results: smtp13.mail.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: <52E5007C.8060805@yandex.ru> Date: Sun, 26 Jan 2014 16:33:00 +0400 From: Ruslan Makhmatkhanov User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: freebsd-python@freebsd.org Subject: Re: PYDISTUTILS_AUTOPLIST question References: <52E4BCF4.3070507@yandex.ru> <20140126113022.GA1394@medusa.sysfault.org> In-Reply-To: <20140126113022.GA1394@medusa.sysfault.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Jan 2014 12:33:16 -0000 Marcus von Appen wrote on 26.01.2014 15:30: > On, Sun Jan 26, 2014, Ruslan Makhmatkhanov wrote: > >> Hi, >> >> while PYDISTUTILS_AUTOPLIST works smoothly for majority of ports, there >> is the problem with some of them I come across yesterday. For example, >> there is the port devel/py-Products.PasswordResetTool. If I set there >> PYDISTUTILS_AUTOPLIST, and try to build, I got packaging error, because >> some of the files, that port provides, cannot be compiled (by design). >> While they are python code files, they are not supposed to be executed >> with python interpreter directly (they are kind of templates). >> >> So, is there any possibility to: >> a) Do not add compiled/optimized filenames to packing list, if the >> actual file fails to compile? >> b) Make a hook, that allows to list file, that should not have >> corresponding *.pyc/*.pyo entries in the packing list? > > If the port uses distutils, it should not matter, if you do not mess around in > the post-install targets yourself, since the file list will be taken from what > distutils records - we do not implement magic ourselves for distutils-aware > ports (well, a bit :-). > If this does not work properly for you, upstream might do something that > breaks the intended behaviour of distutils. > > So, before fixing the symptom, I actually would like to find out, what exactly > they do on installation. Are all files properly recorded in ${_PYTHONPKGLIST}? > What errors do you get, what does the install target complain about, etc.etc.? > > Cheers > Marcus For example at install stage it fails with pwreset_constructURL.py file: byte-compiling /usr/local/poudriere/ports/default/devel/py-Products.PasswordResetTool/work/stage/usr/local/lib/python2.7/site-packages/Products/PasswordResetTool/skins/PasswordReset/pwreset_constructURL.py to pwreset_constructURL.pyc File "/usr/local/lib/python2.7/site-packages/Products/PasswordResetTool/skins/PasswordReset/pwreset_constructURL.py", line 14 return "%s/passwordreset/%s" % (host, randomstring) SyntaxError: 'return' outside function writing byte-compilation script '/tmp/tmpqmG0z8.py' /usr/local/bin/python2.7 -O /tmp/tmpqmG0z8.py File "/usr/local/lib/python2.7/site-packages/Products/PasswordResetTool/skins/PasswordReset/pwreset_constructURL.py", line 14 return "%s/passwordreset/%s" % (host, randomstring) SyntaxError: 'return' outside function removing /tmp/tmpqmG0z8.py And here is what on package stage: ===> Building package for py27-Products.PasswordResetTool-2.0.15_1 pkg-static: lstat(/usr/local/poudriere/ports/default/devel/py-Products.PasswordResetTool/work/stage/usr/local/lib/python2.7/site-packages/Products/PasswordResetTool/skins/PasswordReset/pwreset_constructURL.pyc): No such file or directory pkg-static: lstat(/usr/local/poudriere/ports/default/devel/py-Products.PasswordResetTool/work/stage/usr/local/lib/python2.7/site-packages/Products/PasswordResetTool/skins/PasswordReset/pwreset_constructURL.pyo): No such file or directory *** Error code 1 Stop. make: stopped in /usr/local/poudriere/ports/default/devel/py-Products.PasswordResetTool As we can see *.pyc/*.pyo pkg-plist entries were generated for pwreset_constructURL.py despite the fact that byte-compiling had failed. -- Regards, Ruslan T.O.S. Of Reality From owner-freebsd-python@FreeBSD.ORG Sun Jan 26 14:22:53 2014 Return-Path: Delivered-To: freebsd-python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3C3FA301 for ; Sun, 26 Jan 2014 14:22:53 +0000 (UTC) Received: from smtprelay01.ispgateway.de (smtprelay01.ispgateway.de [80.67.31.35]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id BDE651ACA for ; Sun, 26 Jan 2014 14:22:52 +0000 (UTC) Received: from [89.182.152.226] (helo=localhost) by smtprelay01.ispgateway.de with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.68) (envelope-from ) id 1W7Qbk-0000m1-6P for freebsd-python@freebsd.org; Sun, 26 Jan 2014 15:22:44 +0100 Date: Sun, 26 Jan 2014 15:22:45 +0100 From: Marcus von Appen To: freebsd-python@freebsd.org Subject: Re: PYDISTUTILS_AUTOPLIST question Message-ID: <20140126142245.GB1394@medusa.sysfault.org> Mail-Followup-To: freebsd-python@freebsd.org References: <52E4BCF4.3070507@yandex.ru> <20140126113022.GA1394@medusa.sysfault.org> <52E5007C.8060805@yandex.ru> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="QKdGvSO+nmPlgiQ/" Content-Disposition: inline In-Reply-To: <52E5007C.8060805@yandex.ru> User-Agent: Mutt/1.5.22 (2013-10-16) X-Df-Sender: MTEyNTc0Mg== X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Marcus von Appen List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Jan 2014 14:22:53 -0000 --QKdGvSO+nmPlgiQ/ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On, Sun Jan 26, 2014, Ruslan Makhmatkhanov wrote: > Marcus von Appen wrote on 26.01.2014 15:30: > > On, Sun Jan 26, 2014, Ruslan Makhmatkhanov wrote: > > > >> Hi, > >> > >> while PYDISTUTILS_AUTOPLIST works smoothly for majority of ports, there > >> is the problem with some of them I come across yesterday. For example, > >> there is the port devel/py-Products.PasswordResetTool. If I set there > >> PYDISTUTILS_AUTOPLIST, and try to build, I got packaging error, because > >> some of the files, that port provides, cannot be compiled (by design). > >> While they are python code files, they are not supposed to be executed > >> with python interpreter directly (they are kind of templates). > >> > >> So, is there any possibility to: > >> a) Do not add compiled/optimized filenames to packing list, if the > >> actual file fails to compile? > >> b) Make a hook, that allows to list file, that should not have > >> corresponding *.pyc/*.pyo entries in the packing list? > > > > If the port uses distutils, it should not matter, if you do not mess around in > > the post-install targets yourself, since the file list will be taken from what > > distutils records - we do not implement magic ourselves for distutils-aware > > ports (well, a bit :-). > > If this does not work properly for you, upstream might do something that > > breaks the intended behaviour of distutils. > > > > So, before fixing the symptom, I actually would like to find out, what exactly > > they do on installation. Are all files properly recorded in ${_PYTHONPKGLIST}? > > What errors do you get, what does the install target complain about, etc.etc.? > > > > Cheers > > Marcus > > > For example at install stage it fails with pwreset_constructURL.py file: > > byte-compiling > /usr/local/poudriere/ports/default/devel/py-Products.PasswordResetTool/work/stage/usr/local/lib/python2.7/site-packages/Products/PasswordResetTool/skins/PasswordReset/pwreset_constructURL.py > to pwreset_constructURL.pyc > File > "/usr/local/lib/python2.7/site-packages/Products/PasswordResetTool/skins/PasswordReset/pwreset_constructURL.py", > line 14 > return "%s/passwordreset/%s" % (host, randomstring) > SyntaxError: 'return' outside function > > writing byte-compilation script '/tmp/tmpqmG0z8.py' > /usr/local/bin/python2.7 -O /tmp/tmpqmG0z8.py > File > "/usr/local/lib/python2.7/site-packages/Products/PasswordResetTool/skins/PasswordReset/pwreset_constructURL.py", > line 14 > return "%s/passwordreset/%s" % (host, randomstring) > SyntaxError: 'return' outside function > > removing /tmp/tmpqmG0z8.py > > And here is what on package stage: > ===> Building package for py27-Products.PasswordResetTool-2.0.15_1 > pkg-static: > lstat(/usr/local/poudriere/ports/default/devel/py-Products.PasswordResetTool/work/stage/usr/local/lib/python2.7/site-packages/Products/PasswordResetTool/skins/PasswordReset/pwreset_constructURL.pyc): > No such file or directory > pkg-static: > lstat(/usr/local/poudriere/ports/default/devel/py-Products.PasswordResetTool/work/stage/usr/local/lib/python2.7/site-packages/Products/PasswordResetTool/skins/PasswordReset/pwreset_constructURL.pyo): > No such file or directory > *** Error code 1 > > Stop. > make: stopped in > /usr/local/poudriere/ports/default/devel/py-Products.PasswordResetTool > > > As we can see *.pyc/*.pyo pkg-plist entries were generated for > pwreset_constructURL.py despite the fact that byte-compiling had failed. Thanks - I just checked, what exactly happens within the record magic for those cases. distutils (and thus setuptools, since it does not do anything special in that area) just picks up the .py files and adds entries for matching .pyc and .pyo files without actually checking, if those files could be compiled successfully. The code snippet (distutils/install_lib.py, _bytecode_filenames()) actually needs to verify, if .pyc/.pyo files exist, since the bytecode compiler function (distutils/util.py, byte_compile() in indirect mode) does not break on errors, but silently proceeds. Rather than adding a hack to bsd.python.mk to filter out such entries, I'd like to see that issue fixed upstream: http://bugs.python.org/issue20397. My current (quick'n'dirty) idea is to add a simple file existence verification check into our currently supported versions. Cheers Marcus --QKdGvSO+nmPlgiQ/ Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.22 (FreeBSD) iEYEARECAAYFAlLlGjUACgkQi68/ErJnpkeRkgCfZyLuwiVz+veGdRAkdemlconB y+UAniK72S8PTQaP8mrR8SDja2SNWyqX =EyGN -----END PGP SIGNATURE----- --QKdGvSO+nmPlgiQ/-- From owner-freebsd-python@FreeBSD.ORG Sun Jan 26 14:45:02 2014 Return-Path: Delivered-To: freebsd-python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 72E3276 for ; Sun, 26 Jan 2014 14:45:02 +0000 (UTC) Received: from forward2l.mail.yandex.net (forward2l.mail.yandex.net [84.201.143.145]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2805B1D2A for ; Sun, 26 Jan 2014 14:45:01 +0000 (UTC) Received: from smtp13.mail.yandex.net (smtp13.mail.yandex.net [95.108.130.68]) by forward2l.mail.yandex.net (Yandex) with ESMTP id AFC111AC0CA0 for ; Sun, 26 Jan 2014 18:44:58 +0400 (MSK) Received: from smtp13.mail.yandex.net (localhost [127.0.0.1]) by smtp13.mail.yandex.net (Yandex) with ESMTP id 7078BE400D0 for ; Sun, 26 Jan 2014 18:44:58 +0400 (MSK) Received: from unknown (unknown [178.76.234.16]) by smtp13.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id I5ha0i6xFz-ivJOGqD0; Sun, 26 Jan 2014 18:44:57 +0400 (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (Client certificate not present) X-Yandex-Uniq: b6703758-2834-4f91-89ca-cc7850874f26 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1390747498; bh=uETz9FLpCjsPSaYSOKOAughMCAQPqjjnAgEb74q+iuo=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=eBneUEN868li8OeAHWv+c8yolekzD2wKe+RIUs3eEtymzuljLJNBOu14/AHarYIMv LhPep0B75luueGmWPZzoiii2TySL8FMg+pp2M37xvkgbfVo6JGJxJ0+SN2Zk4ojMDY 2qJoaU00Zkish1aOXUsA5bbkslBEClLOsTFnp/mM= Authentication-Results: smtp13.mail.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: <52E51F5C.90804@yandex.ru> Date: Sun, 26 Jan 2014 18:44:44 +0400 From: Ruslan Makhmatkhanov User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: freebsd-python@freebsd.org Subject: Re: PYDISTUTILS_AUTOPLIST question References: <52E4BCF4.3070507@yandex.ru> <20140126113022.GA1394@medusa.sysfault.org> <52E5007C.8060805@yandex.ru> <20140126142245.GB1394@medusa.sysfault.org> In-Reply-To: <20140126142245.GB1394@medusa.sysfault.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Jan 2014 14:45:02 -0000 Marcus von Appen wrote on 26.01.2014 18:22: >> As we can see *.pyc/*.pyo pkg-plist entries were generated for >> pwreset_constructURL.py despite the fact that byte-compiling had failed. > > Thanks - I just checked, what exactly happens within the record magic for > those cases. distutils (and thus setuptools, since it does not do anything > special in that area) just picks up the .py files and adds entries for > matching .pyc and .pyo files without actually checking, if those files > could be compiled successfully. > The code snippet (distutils/install_lib.py, _bytecode_filenames()) actually > needs to verify, if .pyc/.pyo files exist, since the bytecode compiler > function (distutils/util.py, byte_compile() in indirect mode) > does not break on errors, but silently proceeds. > > Rather than adding a hack to bsd.python.mk to filter out such entries, I'd > like to see that issue fixed upstream: http://bugs.python.org/issue20397. > My current (quick'n'dirty) idea is to add a simple file existence verification > check into our currently supported versions. > > Cheers > Marcus Thank you for this. I though this is something under our control. Let's see what guys at python.org say. -- Regards, Ruslan T.O.S. Of Reality From owner-freebsd-python@FreeBSD.ORG Sun Jan 26 15:06:03 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 301D7693; Sun, 26 Jan 2014 15:06:03 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 011181E5E; Sun, 26 Jan 2014 15:06:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0QF62To012596; Sun, 26 Jan 2014 15:06:02 GMT (envelope-from nwhitehorn@freefall.freebsd.org) Received: (from nwhitehorn@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0QF62W0012595; Sun, 26 Jan 2014 15:06:02 GMT (envelope-from nwhitehorn) Date: Sun, 26 Jan 2014 15:06:02 GMT Message-Id: <201401261506.s0QF62W0012595@freefall.freebsd.org> To: nwhitehorn@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: nwhitehorn@FreeBSD.org Subject: Re: ports/185884: [patch] Miscellaneous ports fixes for python 3 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Jan 2014 15:06:03 -0000 Synopsis: [patch] Miscellaneous ports fixes for python 3 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: nwhitehorn Responsible-Changed-When: Sun Jan 26 15:05:24 UTC 2014 Responsible-Changed-Why: http://www.freebsd.org/cgi/query-pr.cgi?pr=185884 From owner-freebsd-python@FreeBSD.ORG Sun Jan 26 16:32:55 2014 Return-Path: Delivered-To: freebsd-python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2A10E643; Sun, 26 Jan 2014 16:32:55 +0000 (UTC) Received: from www6.pairlite.com (www6.pairlite.com [64.130.10.16]) by mx1.freebsd.org (Postfix) with ESMTP id 073CE1454; Sun, 26 Jan 2014 16:32:54 +0000 (UTC) Received: from [192.168.1.6] (c-71-60-224-178.hsd1.pa.comcast.net [71.60.224.178]) by www6.pairlite.com (Postfix) with ESMTPSA id 9118F67AEE; Sun, 26 Jan 2014 11:32:44 -0500 (EST) Message-ID: <52E538AB.8010801@rodperson.com> Date: Sun, 26 Jan 2014 11:32:43 -0500 From: Rod Person User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:26.0) Gecko/20100101 Firefox/26.0 SeaMonkey/2.23 MIME-Version: 1.0 To: FreeBSD Ports List , FreeBSD Python Subject: Spyder IDE port Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 26 Jan 2014 16:32:55 -0000 Hey All, I'm working on a port of Spyder IDE for python...before I completed it I wanted to no one was also working on the same port. -- Rod "How do u know they didn't run place at they that?" -- Herb From owner-freebsd-python@FreeBSD.ORG Mon Jan 27 01:00:08 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id DCD8554B; Mon, 27 Jan 2014 01:00:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id B1A5E1E30; Mon, 27 Jan 2014 01:00:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0R108Op061823; Mon, 27 Jan 2014 01:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0R1085d061822; Mon, 27 Jan 2014 01:00:08 GMT (envelope-from edwin) Date: Mon, 27 Jan 2014 01:00:08 GMT Message-Id: <201401270100.s0R1085d061822@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186149: maintainer update : sysutils/py-salt X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Jan 2014 01:00:08 -0000 Synopsis: maintainer update : sysutils/py-salt Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Mon Jan 27 01:00:08 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186149 From owner-freebsd-python@FreeBSD.ORG Mon Jan 27 03:30:58 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 45B10BDC; Mon, 27 Jan 2014 03:30:58 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1AA1518F8; Mon, 27 Jan 2014 03:30:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0R3Uv7u094706; Mon, 27 Jan 2014 03:30:57 GMT (envelope-from koobs@freefall.freebsd.org) Received: (from koobs@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0R3Uveu094705; Mon, 27 Jan 2014 03:30:57 GMT (envelope-from koobs) Date: Mon, 27 Jan 2014 03:30:57 GMT Message-Id: <201401270330.s0R3Uveu094705@freefall.freebsd.org> To: koobs@FreeBSD.org, freebsd-python@FreeBSD.org, koobs@FreeBSD.org From: koobs@FreeBSD.org Subject: Re: ports/185071: lang/python33 : python3-config --ldflags returning bad values (no -L/usr/local/lib) X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Jan 2014 03:30:58 -0000 Synopsis: lang/python33 : python3-config --ldflags returning bad values (no -L/usr/local/lib) Responsible-Changed-From-To: freebsd-python->koobs Responsible-Changed-By: koobs Responsible-Changed-When: Mon Jan 27 03:30:57 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=185071 From owner-freebsd-python@FreeBSD.ORG Mon Jan 27 04:17:55 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id F0406214; Mon, 27 Jan 2014 04:17:55 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C3F491C8E; Mon, 27 Jan 2014 04:17:55 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0R4HtoI006246; Mon, 27 Jan 2014 04:17:55 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0R4HtDP006245; Mon, 27 Jan 2014 04:17:55 GMT (envelope-from edwin) Date: Mon, 27 Jan 2014 04:17:55 GMT Message-Id: <201401270417.s0R4HtDP006245@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186034: devel/py-setuptools: pkg build for py31-setuptools-2.0.1 fails on re-install X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Jan 2014 04:17:56 -0000 Synopsis: devel/py-setuptools: pkg build for py31-setuptools-2.0.1 fails on re-install Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Mon Jan 27 04:17:55 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186034 From owner-freebsd-python@FreeBSD.ORG Mon Jan 27 06:00:09 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 36FFEE71; Mon, 27 Jan 2014 06:00:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 0D6CB1320; Mon, 27 Jan 2014 06:00:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0R608iR027334; Mon, 27 Jan 2014 06:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0R6086V027333; Mon, 27 Jan 2014 06:00:08 GMT (envelope-from edwin) Date: Mon, 27 Jan 2014 06:00:08 GMT Message-Id: <201401270600.s0R6086V027333@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186157: [NEW PORT] devel/py-yappi: Yet Another Python Profiler X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Jan 2014 06:00:09 -0000 Synopsis: [NEW PORT] devel/py-yappi: Yet Another Python Profiler Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Mon Jan 27 06:00:08 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186157 From owner-freebsd-python@FreeBSD.ORG Mon Jan 27 06:30:08 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3AFC2659; Mon, 27 Jan 2014 06:30:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 10BE0153E; Mon, 27 Jan 2014 06:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0R6U7wk037837; Mon, 27 Jan 2014 06:30:07 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0R6U7fQ037836; Mon, 27 Jan 2014 06:30:07 GMT (envelope-from edwin) Date: Mon, 27 Jan 2014 06:30:07 GMT Message-Id: <201401270630.s0R6U7fQ037836@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186158: [NEW PORT] www/py-django-crispy-forms: The best way to have Django DRY forms X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Jan 2014 06:30:08 -0000 Synopsis: [NEW PORT] www/py-django-crispy-forms: The best way to have Django DRY forms Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Mon Jan 27 06:30:07 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186158 From owner-freebsd-python@FreeBSD.ORG Mon Jan 27 06:40:09 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 13FC0873; Mon, 27 Jan 2014 06:40:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DCF0715FC; Mon, 27 Jan 2014 06:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0R6e8ka043871; Mon, 27 Jan 2014 06:40:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0R6e8hw043870; Mon, 27 Jan 2014 06:40:08 GMT (envelope-from edwin) Date: Mon, 27 Jan 2014 06:40:08 GMT Message-Id: <201401270640.s0R6e8hw043870@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186159: [NEW PORT] www/py-django-debug-toolbar: Configurable set of panels to display debug information X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Jan 2014 06:40:09 -0000 Synopsis: [NEW PORT] www/py-django-debug-toolbar: Configurable set of panels to display debug information Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Mon Jan 27 06:40:08 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186159 From owner-freebsd-python@FreeBSD.ORG Mon Jan 27 08:20:09 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 12D0AD1D; Mon, 27 Jan 2014 08:20:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DB2FF1D2E; Mon, 27 Jan 2014 08:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0R8K8XG075643; Mon, 27 Jan 2014 08:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0R8K8lc075642; Mon, 27 Jan 2014 08:20:08 GMT (envelope-from edwin) Date: Mon, 27 Jan 2014 08:20:08 GMT Message-Id: <201401270820.s0R8K8lc075642@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186162: [NEW PORT] www/py-django-ldapdb: Support for django models over LDAP X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Jan 2014 08:20:09 -0000 Synopsis: [NEW PORT] www/py-django-ldapdb: Support for django models over LDAP Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Mon Jan 27 08:20:08 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186162 From owner-freebsd-python@FreeBSD.ORG Mon Jan 27 11:06:53 2014 Return-Path: Delivered-To: freebsd-python@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 95123CCB for ; Mon, 27 Jan 2014 11:06:53 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 675951A93 for ; Mon, 27 Jan 2014 11:06:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0RB6rjG013125 for ; Mon, 27 Jan 2014 11:06:53 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0RB6qrj013123 for freebsd-python@FreeBSD.org; Mon, 27 Jan 2014 11:06:52 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 27 Jan 2014 11:06:52 GMT Message-Id: <201401271106.s0RB6qrj013123@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-python@FreeBSD.org Subject: Current problem reports assigned to freebsd-python@FreeBSD.org X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Jan 2014 11:06:53 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/186162 python [NEW PORT] www/py-django-ldapdb: Support for django mo o ports/186159 python [NEW PORT] www/py-django-debug-toolbar: Configurable s o ports/186158 python [NEW PORT] www/py-django-crispy-forms: The best way to o ports/186157 python [NEW PORT] devel/py-yappi: Yet Another Python Profiler o ports/186149 python maintainer update : sysutils/py-salt o ports/186123 python [PATCH] net/py-gspreadsheet: update to 0.4.0 o ports/186122 python [MAINTAINER-UPDATE] math/py-bottleneck: update to 0.8. o ports/186076 python databases/py-Pyrseas o ports/186034 python devel/py-setuptools: pkg build for py31-setuptools-2.0 o ports/186029 python New port: textproc/py-regex o ports/185884 python [patch] Miscellaneous ports fixes for python 3 o ports/185803 python [MAINTAINER] math/py-pandas: Update to 0.13.0 o ports/185753 python [maintainer update] Update devel/py-jira to version 0. f ports/185564 python [patch] devel/py-cfgparse: update to 1.3 o ports/185078 python maintainer update : sysutils/py-halite o ports/184954 python Installation checks prevent multiple python ports bein a ports/182951 python databases/py-sqlite3: compilation error with Clang o ports/178301 python [patch] lang/python2[67]: SEM option is inconsistent f ports/178242 python bsd.python.mk injection of @exec easy_install to PLIST o ports/170788 python lang/python27: PyQT applications crash Python 2.7 (cor f ports/170566 python update graphics/py-opengl depends on old version of gc o ports/168640 python [PATCH]: prevent checksum mismatches for compiled pyth o ports/167368 python [bsd.python.mk] [patch] Python version propagation bre f ports/154209 python [PATCH] lang/python: Install symlink for ptags 24 problems total. From owner-freebsd-python@FreeBSD.ORG Tue Jan 28 09:08:54 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 83CF4E37 for ; Tue, 28 Jan 2014 09:08:54 +0000 (UTC) Received: from portscout.freebsd.org (portscout.freebsd.org [IPv6:2001:1900:2254:206a::50:6]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 6EF8F17A8 for ; Tue, 28 Jan 2014 09:08:54 +0000 (UTC) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.14.7/8.14.7) with ESMTP id s0S98sk6034548 for ; Tue, 28 Jan 2014 09:08:54 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.14.7/8.14.7/Submit) id s0S98se4034546; Tue, 28 Jan 2014 09:08:54 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201401280908.s0S98se4034546@portscout.freebsd.org> X-Authentication-Warning: portscout.freebsd.org: portscout set sender to portscout@FreeBSD.org using -f Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain MIME-Version: 1.0 Date: Tue, 28 Jan 2014 09:08:54 +0000 From: portscout@FreeBSD.org To: python@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Jan 2014 09:08:54 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/python@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ www/xist | 3.25 | 5.5.1 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-python@FreeBSD.ORG Tue Jan 28 14:50:09 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 52F4C46E; Tue, 28 Jan 2014 14:50:09 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 27D261471; Tue, 28 Jan 2014 14:50:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0SEo8Mb017737; Tue, 28 Jan 2014 14:50:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0SEo8mb017736; Tue, 28 Jan 2014 14:50:08 GMT (envelope-from edwin) Date: Tue, 28 Jan 2014 14:50:08 GMT Message-Id: <201401281450.s0SEo8mb017736@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186201: [NEW PORT] www/py-calendarserver: Calendar and Contacts Server from Apple (RFC 4791, RFC 6352) X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Jan 2014 14:50:09 -0000 Synopsis: [NEW PORT] www/py-calendarserver: Calendar and Contacts Server from Apple (RFC 4791, RFC 6352) Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Tue Jan 28 14:50:08 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186201 From owner-freebsd-python@FreeBSD.ORG Tue Jan 28 17:42:31 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5B7A175 for ; Tue, 28 Jan 2014 17:42:31 +0000 (UTC) Received: from h88.hvosting.ua (h88.hvosting.ua [91.200.40.88]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E0EF2162A for ; Tue, 28 Jan 2014 17:42:28 +0000 (UTC) Received: by h88.hvosting.ua (Postfix, from userid 1486) id C7ECE644DA; Tue, 28 Jan 2014 19:42:24 +0200 (EET) To: python@freebsd.org Subject: =?utf-8?Q?=D0=92=D1=8B=D0=B3=D0=BE=D0=B4=D0=BD=D1=8B=D0=B5=20?= =?utf-8?Q?=D0=BF=D1=80=D0=B5=D0=B4=D0=BB=D0=BE=D0=B6=D0=B5=D0=BD=D0=B8=D1=8F*=20?= =?utf-8?Q?=D0=BD=D0=B0=20=D0=B2=D1=8B=D0=BB=D0=B5=D1=82=D1=8B=20?= =?utf-8?Q?=D0=B2=20=D0=A2=D1=83=D1=80=D1=86=D0=B8=D1=8E, =20?= =?utf-8?Q?=D0=98=D0=BD=D0=B4=D0=B8=D1=8E, =20?= =?utf-8?Q?=D0=95=D0=B3=D0=B8=D0=BF=D0=B5=D1=82, =20?= =?utf-8?Q?=D0=9E=D0=90=D0=AD=20=D0=B8=D0=B7=20?= =?utf-8?Q?=D0=9A=D0=B8=D0=B5=D0=B2=D0=B0=20=D0=BE=D1=82=2028.01.2014?= From: =?utf-8?Q?=D0=98=D0=B7=D0=BE=D0=B1=D0=B8=D0=BB=D0=B8=D0=B5=20=D0=A2=D1=83=D1=80?= Date: Tue, 28 Jan 2014 19:42:24 +0200 MIME-Version: 1.0 Message-Id: <20140128174224.C7ECE644DA@h88.hvosting.ua> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.17 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Jan 2014 17:42:31 -0000 =0D=0Abody {}=0D=0A.blocktitle{color:#1b1515; font-family: Arial; font-s= ize: 12px; margin:1px 0 0 28px;}=0D=0A.blocktitle div{color:#1b1515; fon= t-family: Arial; font-size: 12px;}=0D=0A.blocktitle a{color:#1b1515; fon= t-family: Arial; font-size: 12px; text-decoration:none;}=0D=0A.bc{displa= y:inline; margin:6px 5px 0 6px;}=0D=0A.mar1{padding:7px 32px 16px 32px;}= =0D=0A.prodtitle{color:#381b00; font-family: Arial; font-size: 11px; wid= th:124px; height:34px;}=0D=0A.prodtitle a{color:#381b00; font-family: Ar= ial; font-size: 11px; text-decoration:none;}=0D=0A.prodprice{width:124px= ; color:#b60009; font-family: Arial; font-size: 14px; font-weight:bold;}= =0D=0A =0D=0Abody {}=0D=0A.blocktitle{color:#1b1515; font-family: Arial= ; font-size: 12px; margin:1px 0 0 28px;}=0D=0A.blocktitle div{color:#1b1= 515; font-family: Arial; font-size: 12px;}=0D=0A.blocktitle a{color:#1b1= 515; font-family: Arial; font-size: 12px; text-decoration:none;}=0D=0A.b= c{display:inline; margin:6px 5px 0 6px;}=0D=0A.mar1{padding:7px 32px 16p= x 32px;}=0D=0A.prodtitle{color:#381b00; font-family: Arial; font-size: 1= 1px; width:124px; height:34px;}=0D=0A.prodtitle a{color:#381b00; font-fa= mily: Arial; font-size: 11px; text-decoration:none;}=0D=0A.prodprice{wid= th:124px; color:#b60009; font-family: Arial; font-size: 14px; font-weigh= t:bold;}=0D=0A=0D=0A=0D=0Abody {}=0D=0A.blocktitle{color:#1b1515; font-f= amily: Arial; font-size: 12px; margin:1px 0 0 28px;}=0D=0A.blocktitle di= v{color:#1b1515; font-family: Arial; font-size: 12px;}=0D=0A.blocktitle= a{color:#1b1515; font-family: Arial; font-size: 12px; text-decoration:n= one;}=0D=0A.bc{display:inline; margin:6px 5px 0 6px;}=0D=0A.mar1{padding= :7px 32px 16px 32px;}=0D=0A.prodtitle{color:#381b00; font-family: Arial;= font-size: 11px; width:124px; height:34px;}=0D=0A.prodtitle a{color:#38= 1b00; font-family: Arial; font-size: 11px; text-decoration:none;}=0D=0A.= prodprice{width:124px; color:#b60009; font-family: Arial; font-size: 14p= x; font-weight:bold;}=0D=0A=0D=0A=0D=0Abody {}=0D=0A.blocktitle{color:#1= b1515; font-family: Arial; font-size: 12px; margin:1px 0 0 28px;}=0D=0A.= blocktitle div{color:#1b1515; font-family: Arial; font-size: 12px;}=0D= =0A.blocktitle a{color:#1b1515; font-family: Arial; font-size: 12px; tex= t-decoration:none;}=0D=0A.bc{display:inline; margin:6px 5px 0 6px;}=0D= =0A.mar1{padding:7px 32px 16px 32px;}=0D=0A.prodtitle{color:#381b00; fon= t-family: Arial; font-size: 11px; width:124px; height:34px;}=0D=0A.prodt= itle a{color:#381b00; font-family: Arial; font-size: 11px; text-decorati= on:none;}=0D=0A.prodprice{width:124px; color:#b60009; font-family: Arial= ; font-size: 14px; font-weight:bold;}=0D=0A=0D=0A=0D=0Abody {}=0D=0A.blo= cktitle{color:#1b1515; font-family: Arial; font-size: 12px; margin:1px 0= 0 28px;}=0D=0A.blocktitle div{color:#1b1515; font-family: Arial; font-s= ize: 12px;}=0D=0A.blocktitle a{color:#1b1515; font-family: Arial; font-s= ize: 12px; text-decoration:none;}=0D=0A.bc{display:inline; margin:6px 5p= x 0 6px;}=0D=0A.mar1{padding:7px 32px 16px 32px;}=0D=0A.prodtitle{color:= #381b00; font-family: Arial; font-size: 11px; width:124px; height:34px;}= =0D=0A.prodtitle a{color:#381b00; font-family: Arial; font-size: 11px; t= ext-decoration:none;}=0D=0A.prodprice{width:124px; color:#b60009; font-f= amily: Arial; font-size: 14px; font-weight:bold;}=0D=0A=0D=0A=0D=0Abody= {}=0D=0A.blocktitle{color:#1b1515; font-family: Arial; font-size: 12px;= margin:1px 0 0 28px;}=0D=0A.blocktitle div{color:#1b1515; font-family:= Arial; font-size: 12px;}=0D=0A.blocktitle a{color:#1b1515; font-family:= Arial; font-size: 12px; text-decoration:none;}=0D=0A.bc{display:inline;= margin:6px 5px 0 6px;}=0D=0A.mar1{padding:7px 32px 16px 32px;}=0D=0A.pr= odtitle{color:#381b00; font-family: Arial; font-size: 11px; width:124px;= height:34px;}=0D=0A.prodtitle a{color:#381b00; font-family: Arial; font= -size: 11px; text-decoration:none;}=0D=0A.prodprice{width:124px; color:#= b60009; font-family: Arial; font-size: 14px; font-weight:bold;}=0D=0A=0D= =0A=0D=0Abody {}=0D=0A.blocktitle{color:#1b1515; font-family: Arial; fon= t-size: 12px; margin:1px 0 0 28px;}=0D=0A.blocktitle div{color:#1b1515;= font-family: Arial; font-size: 12px;}=0D=0A.blocktitle a{color:#1b1515;= font-family: Arial; font-size: 12px; text-decoration:none;}=0D=0A.bc{di= splay:inline; margin:6px 5px 0 6px;}=0D=0A.mar1{padding:7px 32px 16px 32= px;}=0D=0A.prodtitle{color:#381b00; font-family: Arial; font-size: 11px;= width:124px; height:34px;}=0D=0A.prodtitle a{color:#381b00; font-family= : Arial; font-size: 11px; text-decoration:none;}=0D=0A.prodprice{width:1= 24px; color:#b60009; font-family: Arial; font-size: 14px; font-weight:bo= ld;}=0D=0A=0D=0A=0D=0Abody {}=0D=0A.blocktitle{color:#1b1515; font-famil= y: Arial; font-size: 12px; margin:1px 0 0 28px;}=0D=0A.blocktitle div{co= lor:#1b1515; font-family: Arial; font-size: 12px;}=0D=0A.blocktitle a{co= lor:#1b1515; font-family: Arial; font-size: 12px; text-decoration:none;}= =0D=0A.bc{display:inline; margin:6px 5px 0 6px;}=0D=0A.mar1{padding:7px= 32px 16px 32px;}=0D=0A.prodtitle{color:#381b00; font-family: Arial; fon= t-size: 11px; width:124px; height:34px;}=0D=0A.prodtitle a{color:#381b00= ; font-family: Arial; font-size: 11px; text-decoration:none;}=0D=0A.prod= price{width:124px; color:#b60009; font-family: Arial; font-size: 14px; f= ont-weight:bold;}=0D=0A=0D=0A=0D=0Abody {}=0D=0A.blocktitle{color:#1b151= 5; font-family: Arial; font-size: 12px; margin:1px 0 0 28px;}=0D=0A.bloc= ktitle div{color:#1b1515; font-family: Arial; font-size: 12px;}=0D=0A.bl= ocktitle a{color:#1b1515; font-family: Arial; font-size: 12px; text-deco= ration:none;}=0D=0A.bc{display:inline; margin:6px 5px 0 6px;}=0D=0A.mar1= {padding:7px 32px 16px 32px;}=0D=0A.prodtitle{color:#381b00; font-family= : Arial; font-size: 11px; width:124px; height:34px;}=0D=0A.prodtitle a{c= olor:#381b00; font-family: Arial; font-size: 11px; text-decoration:none;= }=0D=0A.prodprice{width:124px; color:#b60009; font-family: Arial; font-s= ize: 14px; font-weight:bold;}=0D=0A=0D=0A=0D=0Abody {}=0D=0A.blocktitle{= color:#1b1515; font-family: Arial; font-size: 12px; margin:1px 0 0 28px;= }=0D=0A.blocktitle div{color:#1b1515; font-family: Arial; font-size: 12p= x;}=0D=0A.blocktitle a{color:#1b1515; font-family: Arial; font-size: 12p= x; text-decoration:none;}=0D=0A.bc{display:inline; margin:6px 5px 0 6px;= }=0D=0A.mar1{padding:7px 32px 16px 32px;}=0D=0A.prodtitle{color:#381b00;= font-family: Arial; font-size: 11px; width:124px; height:34px;}=0D=0A.p= rodtitle a{color:#381b00; font-family: Arial; font-size: 11px; text-deco= ration:none;}=0D=0A.prodprice{width:124px; color:#b60009; font-family: A= rial; font-size: 14px; font-weight:bold;}=0D=0A=0D=0A=0D=0Abody {}=0D=0A= .blocktitle{color:#1b1515; font-family: Arial; font-size: 12px; margin:1= px 0 0 28px;}=0D=0A.blocktitle div{color:#1b1515; font-family: Arial; fo= nt-size: 12px;}=0D=0A.blocktitle a{color:#1b1515; font-family: Arial; fo= nt-size: 12px; text-decoration:none;}=0D=0A.bc{display:inline; margin:6p= x 5px 0 6px;}=0D=0A.mar1{padding:7px 32px 16px 32px;}=0D=0A.prodtitle{co= lor:#381b00; font-family: Arial; font-size: 11px; width:124px; height:34= px;}=0D=0A.prodtitle a{color:#381b00; font-family: Arial; font-size: 11p= x; text-decoration:none;}=0D=0A.prodprice{width:124px; color:#b60009; fo= nt-family: Arial; font-size: 14px; font-weight:bold;}=0D=0A=0D=0A=0D=0Ab= ody {}=0D=0A.blocktitle{color:#1b1515; font-family: Arial; font-size: 12= px; margin:1px 0 0 28px;}=0D=0A.blocktitle div{color:#1b1515; font-famil= y: Arial; font-size: 12px;}=0D=0A.blocktitle a{color:#1b1515; font-famil= y: Arial; font-size: 12px; text-decoration:none;}=0D=0A.bc{display:inlin= e; margin:6px 5px 0 6px;}=0D=0A.mar1{padding:7px 32px 16px 32px;}=0D=0A.= prodtitle{color:#381b00; font-family: Arial; font-size: 11px; width:124p= x; height:34px;}=0D=0A.prodtitle a{color:#381b00; font-family: Arial; fo= nt-size: 11px; text-decoration:none;}=0D=0A.prodprice{width:124px; color= :#b60009; font-family: Arial; font-size: 14px; font-weight:bold;}=0D=0A= =0D=0A=0D=0Abody {}=0D=0A.blocktitle{color:#1b1515; font-family: Arial;= font-size: 12px; margin:1px 0 0 28px;}=0D=0A.blocktitle div{color:#1b15= 15; font-family: Arial; font-size: 12px;}=0D=0A.blocktitle a{color:#1b15= 15; font-family: Arial; font-size: 12px; text-decoration:none;}=0D=0A.bc= {display:inline; margin:6px 5px 0 6px;}=0D=0A.mar1{padding:7px 32px 16px= 32px;}=0D=0A.prodtitle{color:#381b00; font-family: Arial; font-size: 11= px; width:124px; height:34px;}=0D=0A.prodtitle a{color:#381b00; font-fam= ily: Arial; font-size: 11px; text-decoration:none;}=0D=0A.prodprice{widt= h:124px; color:#b60009; font-family: Arial; font-size: 14px; font-weight= :bold;}=0D=0A=0D=0A=0D=0Abody {}=0D=0A.blocktitle{color:#1b1515; font-fa= mily: Arial; font-size: 12px; margin:1px 0 0 28px;}=0D=0A.blocktitle div= {color:#1b1515; font-family: Arial; font-size: 12px;}=0D=0A.blocktitle a= {color:#1b1515; font-family: Arial; font-size: 12px; text-decoration:non= e;}=0D=0A.bc{display:inline; margin:6px 5px 0 6px;}=0D=0A.mar1{padding:7= px 32px 16px 32px;}=0D=0A.prodtitle{color:#381b00; font-family: Arial; f= ont-size: 11px; width:124px; height:34px;}=0D=0A.prodtitle a{color:#381b= 00; font-family: Arial; font-size: 11px; text-decoration:none;}=0D=0A.pr= odprice{width:124px; color:#b60009; font-family: Arial; font-size: 14px;= font-weight:bold;}=0D=0A=0D=0A=0D=0Abody {}=0D=0A.blocktitle{color:#1b1= 515; font-family: Arial; font-size: 12px; margin:1px 0 0 28px;}=0D=0A.bl= ocktitle div{color:#1b1515; font-family: Arial; font-size: 12px;}=0D=0A.= blocktitle a{color:#1b1515; font-family: Arial; font-size: 12px; text-de= coration:none;}=0D=0A.bc{display:inline; margin:6px 5px 0 6px;}=0D=0A.ma= r1{padding:7px 32px 16px 32px;}=0D=0A.prodtitle{color:#381b00; font-fami= ly: Arial; font-size: 11px; width:124px; height:34px;}=0D=0A.prodtitle a= {color:#381b00; font-family: Arial; font-size: 11px; text-decoration:non= e;}=0D=0A.prodprice{width:124px; color:#b60009; font-family: Arial; font= -size: 14px; font-weight:bold;}=0D=0A=0D=0A=0D=0Abody {}=0D=0A.blocktitl= e{color:#1b1515; font-family: Arial; font-size: 12px; margin:1px 0 0 28p= x;}=0D=0A.blocktitle div{color:#1b1515; font-family: Arial; font-size: 1= 2px;}=0D=0A.blocktitle a{color:#1b1515; font-family: Arial; font-size: 1= 2px; text-decoration:none;}=0D=0A.bc{display:inline; margin:6px 5px 0 6p= x;}=0D=0A.mar1{padding:7px 32px 16px 32px;}=0D=0A.prodtitle{color:#381b0= 0; font-family: Arial; font-size: 11px; width:124px; height:34px;}=0D=0A= .prodtitle a{color:#381b00; font-family: Arial; font-size: 11px; text-de= coration:none;}=0D=0A.prodprice{width:124px; color:#b60009; font-family:= Arial; font-size: 14px; font-weight:bold;}=0D=0A=0D=0A=0D=0Abody {}=0D= =0A.blocktitle{color:#1b1515; font-family: Arial; font-size: 12px; margi= n:1px 0 0 28px;}=0D=0A.blocktitle div{color:#1b1515; font-family: Arial;= font-size: 12px;}=0D=0A.blocktitle a{color:#1b1515; font-family: Arial;= font-size: 12px; text-decoration:none;}=0D=0A.bc{display:inline; margin= :6px 5px 0 6px;}=0D=0A.mar1{padding:7px 32px 16px 32px;}=0D=0A.prodtitle= {color:#381b00; font-family: Arial; font-size: 11px; width:124px; height= :34px;}=0D=0A.prodtitle a{color:#381b00; font-family: Arial; font-size:= 11px; text-decoration:none;}=0D=0A.prodprice{width:124px; color:#b60009= ; font-family: Arial; font-size: 14px; font-weight:bold;}=0D=0A=0D=0A=0D= =0Abody {}=0D=0A.blocktitle{color:#1b1515; font-family: Arial; font-size= : 12px; margin:1px 0 0 28px;}=0D=0A.blocktitle div{color:#1b1515; font-f= amily: Arial; font-size: 12px;}=0D=0A.blocktitle a{color:#1b1515; font-f= amily: Arial; font-size: 12px; text-decoration:none;}=0D=0A.bc{display:i= nline; margin:6px 5px 0 6px;}=0D=0A.mar1{padding:7px 32px 16px 32px;}=0D= =0A.prodtitle{color:#381b00; font-family: Arial; font-size: 11px; width:= 124px; height:34px;}=0D=0A.prodtitle a{color:#381b00; font-family: Arial= ; font-size: 11px; text-decoration:none;}=0D=0A.prodprice{width:124px; c= olor:#b60009; font-family: Arial; font-size: 14px; font-weight:bold;}=0D= =0A=0D=0A=0D=0Abody {}=0D=0A.blocktitle{color:#1b1515; font-family: Aria= l; font-size: 12px; margin:1px 0 0 28px;}=0D=0A.blocktitle div{color:#1b= 1515; font-family: Arial; font-size: 12px;}=0D=0A.blocktitle a{color:#1b= 1515; font-family: Arial; font-size: 12px; text-decoration:none;}=0D=0A.= bc{display:inline; margin:6px 5px 0 6px;}=0D=0A.mar1{padding:7px 32px 16= px 32px;}=0D=0A.prodtitle{color:#381b00; font-family: Arial; font-size:= 11px; width:124px; height:34px;}=0D=0A.prodtitle a{color:#381b00; font-= family: Arial; font-size: 11px; text-decoration:none;}=0D=0A.prodprice{w= idth:124px; color:#b60009; font-family: Arial; font-size: 14px; font-wei= ght:bold;}=0D=0A=0D=0A=0D=0Abody {}=0D=0A.blocktitle{color:#1b1515; font= -family: Arial; font-size: 12px; margin:1px 0 0 28px;}=0D=0A.blocktitle= div{color:#1b1515; font-family: Arial; font-size: 12px;}=0D=0A.blocktit= le a{color:#1b1515; font-family: Arial; font-size: 12px; text-decoration= :none;}=0D=0A.bc{display:inline; margin:6px 5px 0 6px;}=0D=0A.mar1{paddi= ng:7px 32px 16px 32px;}=0D=0A.prodtitle{color:#381b00; font-family: Aria= l; font-size: 11px; width:124px; height:34px;}=0D=0A.prodtitle a{color:#= 381b00; font-family: Arial; font-size: 11px; text-decoration:none;}=0D= =0A.prodprice{width:124px; color:#b60009; font-family: Arial; font-size:= 14px; font-weight:bold;}=0D=0A=0D=0A=0D=0Abody {}=0D=0A.blocktitle{colo= r:#1b1515; font-family: Arial; font-size: 12px; margin:1px 0 0 28px;}=0D= =0A.blocktitle div{color:#1b1515; font-family: Arial; font-size: 12px;}= =0D=0A.blocktitle a{color:#1b1515; font-family: Arial; font-size: 12px;= text-decoration:none;}=0D=0A.bc{display:inline; margin:6px 5px 0 6px;}= =0D=0A.mar1{padding:7px 32px 16px 32px;}=0D=0A.prodtitle{color:#381b00;= font-family: Arial; font-size: 11px; width:124px; height:34px;}=0D=0A.p= rodtitle a{color:#381b00; font-family: Arial; font-size: 11px; text-deco= ration:none;}=0D=0A.prodprice{width:124px; color:#b60009; font-family: A= rial; font-size: 14px; font-weight:bold;}=0D=0A=0D=0A=0D=0Abody {}=0D=0A= .blocktitle{color:#1b1515; font-family: Arial; font-size: 12px; margin:1= px 0 0 28px;}=0D=0A.blocktitle div{color:#1b1515; font-family: Arial; fo= nt-size: 12px;}=0D=0A.blocktitle a{color:#1b1515; font-family: Arial; fo= nt-size: 12px; text-decoration:none;}=0D=0A.bc{display:inline; margin:6p= x 5px 0 6px;}=0D=0A.mar1{padding:7px 32px 16px 32px;}=0D=0A.prodtitle{co= lor:#381b00; font-family: Arial; font-size: 11px; width:124px; height:34= px;}=0D=0A.prodtitle a{color:#381b00; font-family: Arial; font-size: 11p= x; text-decoration:none;}=0D=0A.prodprice{width:124px; color:#b60009; fo= nt-family: Arial; font-size: 14px; font-weight:bold;}=0D=0A=0D=0A=0D=0Ab= ody {}=0D=0A.blocktitle{color:#1b1515; font-family: Arial; font-size: 12= px; margin:1px 0 0 28px;}=0D=0A.blocktitle div{color:#1b1515; font-famil= y: Arial; font-size: 12px;}=0D=0A.blocktitle a{color:#1b1515; font-famil= y: Arial; font-size: 12px; text-decoration:none;}=0D=0A.bc{display:inlin= e; margin:6px 5px 0 6px;}=0D=0A.mar1{padding:7px 32px 16px 32px;}=0D=0A.= prodtitle{color:#381b00; font-family: Arial; font-size: 11px; width:124p= x; height:34px;}=0D=0A.prodtitle a{color:#381b00; font-family: Arial; fo= nt-size: 11px; text-decoration:none;}=0D=0A.prodprice{width:124px; color= :#b60009; font-family: Arial; font-size: 14px; font-weight:bold;}=0D=0A= =0D=0A=0D=0Abody {}=0D=0A.blocktitle{color:#1b1515; font-family: Arial;= font-size: 12px; margin:1px 0 0 28px;}=0D=0A.blocktitle div{color:#1b15= 15; font-family: Arial; font-size: 12px;}=0D=0A.blocktitle a{color:#1b15= 15; font-family: Arial; font-size: 12px; text-decoration:none;}=0D=0A.bc= {display:inline; margin:6px 5px 0 6px;}=0D=0A.mar1{padding:7px 32px 16px= 32px;}=0D=0A.prodtitle{color:#381b00; font-family: Arial; font-size: 11= px; width:124px; height:34px;}=0D=0A.prodtitle a{color:#381b00; font-fam= ily: Arial; font-size: 11px; text-decoration:none;}=0D=0A.prodprice{widt= h:124px; color:#b60009; font-family: Arial; font-size: 14px; font-weight= :bold;}=0D=0A=0D=0A=0D=0Abody {}=0D=0A.blocktitle{color:#1b1515; font-fa= mily: Arial; font-size: 12px; margin:1px 0 0 28px;}=0D=0A.blocktitle div= {color:#1b1515; font-family: Arial; font-size: 12px;}=0D=0A.blocktitle a= {color:#1b1515; font-family: Arial; font-size: 12px; text-decoration:non= e;}=0D=0A.bc{display:inline; margin:6px 5px 0 6px;}=0D=0A.mar1{padding:7= px 32px 16px 32px;}=0D=0A.prodtitle{color:#381b00; font-family: Arial; f= ont-size: 11px; width:124px; height:34px;}=0D=0A.prodtitle a{color:#381b= 00; font-family: Arial; font-size: 11px; text-decoration:none;}=0D=0A.pr= odprice{width:124px; color:#b60009; font-family: Arial; font-size: 14px;= font-weight:bold;}=0D=0A=0D=0A=0D=0A =0D=0A =0D=0A =0D= =0A =0D=0A =0D=0A =0D=0A =0D= =0A =0D=0A =0D=0A = =D0=A0=D0=B0=D1=81=D1=81=D1=8B=D0=BB=D0=BA=D0=B0 =D0=BE=D1= =82 28.01.2014=0D=0A =0D=0A =  =0D=0A  =0D=0A = =0D=0A =0D=0A =0D=0A = =D0=A2=D1=83=D1=80=D0=B8=D1=81=D1=82=D0=B8=D1=87=D0=B5= =D1=81=D0=BA=D0=B0=D1=8F =D0=BA=D0=BE=D0=BC=D0=BF=D0=B0=D0=BD=D0=B8=D1= =8F=0D=0A "=D0=98=D0=B7=D0=BE=D0=B1=D0=B8=D0= =BB=D0=B8=D0=B5 =D0=A2=D1=83=D1=80"=0D=0A = =D0=B3.=D0=A5=D0=B0=D1=80=D1=8C=D0=BA=D0=BE=D0=B2, =D1=83=D0=BB.=D0=9F= =D1=83=D1=88=D0=BA=D0=B8=D0=BD=D1=81=D0=BA=D0=B0=D1=8F 79/1, =D0=BE=D1= =84.2=0D=0A =0D=0A  = =0D=0A =0D=0A =E2=98=8E +3= 8 057 762 93 07=0D=0A =0D=0A = =0D=0A =0D=0A =0D=0A =0D=0A = =0D=0A =0D=0A =0D=0A =D0=93=D0=9E=D0=A0= =D0=AF=D0=A9=D0=98=D0=95 =D0=A6=D0=95=D0=9D=D0=AB=0D=0A =0D= =0A =0D=0A =0D=0A =0D=0A =D0=92=D1= =8B=D0=B3=D0=BE=D0=B4=D0=BD=D1=8B=D0=B5 =D0=BF=D1=80=D0=B5=D0=B4=D0=BB= =D0=BE=D0=B6=D0=B5=D0=BD=D0=B8=D1=8F* =D0=BD=D0=B0 =D0=B2=D1=8B=D0=BB=D0= =B5=D1=82=D1=8B =D0=B2 =D0=98=D0=BD=D0=B4=D0=B8=D1=8E, =D0=95=D0=B3=D0= =B8=D0=BF=D0=B5=D1=82,  =0D=0A =D0=9E=D0=90=D0=AD, =D0= =98=D1=81=D0=BF=D0=B0=D0=BD=D0=B8=D1=8E, =D0=A2=D0=B0=D0=B8=D0=BB=D0=B0= =D0=BD=D0=B4 =D0=B8=D0=B7 =D0=9A=D0=B8=D0=B5=D0=B2=D0=B0=0D=0A = =D0=9E=D0=90=D0=AD=0D=0A 5* Deluxe Rixos The Palm Dubai=0D= =0A =D0=9E=D1=82=D0=B5=D0=BB=D1=8C =D0=BD=D0=B0 «=D0=9F= =D0=B0=D0=BB=D1=8C=D0=BC=D0=BE=D0=B2=D0=BE=D0=BC» =D0=BE=D1=81=D1= =82=D1=80=D0=BE=D0=B2=D0=B5 =D1=81 =D0=BE=D1=88=D0=B5=D0=BB=D0=BE=D0= =BC=D0=B8=D1=82=D0=B5=D0=BB=D1=8C=D0=BD=D1=8B=D0=BC =D0=BF=D0=B5=D0=B9= =D0=B7=D0=B0=D0=B6=D0=B5=D0=BC =D0=B8 =D0=BE=D0=B1=D1=89=D0=B5=D0=B9 =D0= =BF=D0=BB=D0=BE=D1=89=D0=B0=D0=B4=D1=8C=D1=8E 40 500 =D0=BA=D0=B2. =D0= =BC. =D0=A1=D0=BE=D0=B1=D1=81=D1=82=D0=B2=D0=B5=D0=BD=D0=BD=D1=8B=D0=B9= =D0=BF=D0=B5=D1=81=D1=87=D0=B0=D0=BD=D1=8B=D0=B9 =D0=BF=D0=BB=D1=8F= =D0=B6, =D0=BD=D0=B0=D1=87=D0=B0=D0=BB=D1=8C=D0=BD=D0=B0=D1=8F =D0=BA=D0= =B0=D1=82=D0=B5=D0=B3=D0=BE=D1=80=D0=B8=D1=8F =D0=BD=D0=BE=D0=BC=D0=B5= =D1=80=D0=BE=D0=B2 – Deluxe room, =D0=B2=D1=8B=D1=81=D1=88=D0=B0= =D1=8F – Grand King Suite. =D0=9E=D1=82=D0=B4=D0=B5=D0=BB=D1=8C= =D0=BD=D0=B0=D1=8F VIP-=D0=B7=D0=BE=D0=BD=D0=B0 =D0=B4=D0=BB=D1=8F =D0= =BE=D1=82=D0=B4=D1=8B=D1=85=D0=B0. =D0=A2=D1=80=D0=B0=D0=BD=D1=81=D1=84= =D0=B5=D1=80 =D0=B4=D0=BE =D1=82=D0=BE=D1=80=D0=B3=D0=BE=D0=B2=D1=8B=D1= =85 =D1=86=D0=B5=D0=BD=D1=82=D1=80=D0=BE=D0=B2 =D0=94=D1=83=D0=B1=D0= =B0=D1=8F. =D0=9C=D0=BE=D1=80=D1=81=D0=BA=D0=BE=D0=B5 =D1=82=D0=B0=D0=BA= =D1=81=D0=B8 =D0=B4=D0=BB=D1=8F =D0=B3=D0=BE=D1=81=D1=82=D0=B5=D0=B9 =D0= =BE=D1=82=D0=B5=D0=BB=D1=8F. 9 =D1=84=D0=B5=D0=B2=D1=80=D0=B0=D0=BB=D1= =8F =D0=BE=D1=82 13 288 =D0=B3=D1=80=D0=BD=0D=0A Apart Crown= Palace Hotel Ajman 9 =D1=84=D0=B5=D0=B2=D1=80=D0=B0=D0=BB=D1=8F =D0=BE= =D1=82 3 521 =D0=B3=D1=80=D0=BD=0D=0A 3* Sun & Sands Hote= l 9 =D1=84=D0=B5=D0=B2=D1=80=D0=B0=D0=BB=D1=8F =D0=BE=D1=82 9 494 =D0=B3= =D1=80=D0=BD=0D=0A 3* Citymax Hotels Sharjah 9 =D1=84=D0=B5= =D0=B2=D1=80=D0=B0=D0=BB=D1=8F =D0=BE=D1=82 3 466 =D0=B3=D1=80=D0=BD=0D= =0A 5* Radisson Blu Resort Fujairah 9 =D1=84=D0=B5=D0=B2=D1= =80=D0=B0=D0=BB=D1=8F =D0=BE=D1=82 6 534 =D0=B3=D1=80=D0=BD=0D=0A = =0D=0A =D0=98=D0=9D=D0=94=D0=98=D0=AF=0D=0A = 2* The Orange House 7 =D1=84=D0=B5=D0=B2=D1=80=D0=B0=D0=BB=D1= =8F =D0=BE=D1=82 5 531 =D0=B3=D1=80=D0=BD=0D=0A 3* Sea Breeze= Sinquerim 7 =D1=84=D0=B5=D0=B2=D1=80=D0=B0=D0=BB=D1=8F =D0=BE=D1= =82 6 431 =D0=B3=D1=80=D0=BD=0D=0A 2* Silver Sands Beach Reso= rt 7 =D1=84=D0=B5=D0=B2=D1=80=D0=B0=D0=BB=D1=8F 7 124 =D0=B3=D1=80=D0=BD= =0D=0A 2* Renton Manor 7 =D1=84=D0=B5=D0=B2=D1=80=D0=B0=D0= =BB=D1=8F =D0=BE=D1=82 6 132 =D0=B3=D1=80=D0=BD=0D=0A =0D=0A= =D0=A2=D0=A3=D0=A0=D0=A6=D0=98=D0=AF=0D=0A 5*&nbs= p;First Class Hotel 9 =D1=84=D0=B5=D0=B2=D1=80=D0=B0=D0=BB=D1=8F= =D0=BE=D1=82 3 628  =D0=B3=D1=80=D0=BD=0D=0A 5*&nb= sp;Eftalia Aqua Resort 9 =D1=84=D0=B5=D0=B2=D1=80=D0=B0=D0=BB= =D1=8F =D0=BE=D1=82 3 841 =D0=B3=D1=80=D0=BD.=0D=0A = 5* Akka Alinda Hotel 9 =D1=84=D0=B5=D0=B2=D1=80=D0=B0=D0=BB= =D1=8F =D0=BE=D1=82 4 338 =D0=B3=D1=80=D0=BD.=0D=0A 5*&n= bsp;The Maxim Resort Hotel 9 =D1=84=D0=B5=D0=B2=D1=80=D0=B0=D0=BB= =D1=8F =D0=BE=D1=82 4 352 =D0=B3=D1=80=D0=BD.=0D=0A = =0D=0A =D0=95=D0=93=D0=98=D0=9F=D0=95=D0=A2=0D=0A = 5* Fortuna Ssh First Line Only 31 =D1=8F=D0=BD=D0=B2=D0=B0= =D1=80=D1=8F =D0=BE=D1=82 5 418 =D0=B3=D1=80=D0=BD=0D=0A 5*&n= bsp;Fortuna Hrg First Line Only 31 =D1=8F=D0=BD=D0=B2=D0=B0=D1=80= =D1=8F =D0=BE=D1=82 4 115 =D0=B3=D1=80=D0=BD=0D=0A 4* El= ysees Hurgada Hotel 31 =D1=8F=D0=BD=D0=B2=D0=B0=D1=80=D1=8F&nb= sp;=D0=BE=D1=82 3 918 =D0=B3=D1=80=D0=BD=0D=0A 4* Sharm= Inn Amarein 31 =D1=8F=D0=BD=D0=B2=D0=B0=D1=80=D1=8F =D0=BE=D1=82 4626= =D0=B3=D1=80=D0=BD=0D=0A =0D=0A =D0=A2=D0=90=D0= =98=D0=9B=D0=90=D0=9D=D0=94=0D=0A 3* Caesar Palace Hotel 1= =D1=84=D0=B5=D0=B2=D1=80=D0=B0=D0=BB=D1=8F =D0=BE=D1=82 7 901 =D0=B3=D1= =80=D0=BD=0D=0A 3* Camelot Hotel Pattaya 5 =D1=84=D0=B5=D0=B2= =D1=80=D0=B0=D0=BB=D1=8F =D0=BE=D1=82 6 995 =D0=B3=D1=80=D0=BD=0D=0A = 3* Welcome Jomtien Beach Hotel 1 =D1=84=D0=B5=D0=B2=D1=80=D0=B0= =D0=BB=D1=8F =D0=BE=D1=82 7 532 =D0=B3=D1=80=D0=BD=0D=0A 4* C= holchan Pattaya Resort 1 =D1=84=D0=B5=D0=B2=D1=80=D0=B0=D0=BB=D1=8F =D0= =BE=D1=82 7 852 =D0=B3=D1=80=D0=BD=0D=0A 4* Nova Platinum Hot= el 1 =D1=84=D0=B5=D0=B2=D1=80=D0=B0=D0=BB=D1=8F =D0=BE=D1=82 7 778 =D0= =B3=D1=80=D0=BD=0D=0A 5* Garden Cliff Resort&Spa Pattya 1= =D1=84=D0=B5=D0=B2=D1=80=D0=B0=D0=BB=D1=8F =D0=BE=D1=82 9 770 =D0=B3=D1= =80=D0=BD=0D=0A =0D=0A =D0=98=D0=A1=D0=9F=D0=90=D0= =9D=D0=98=D0=AF=0D=0A Special Category The Capital Of Mediter= ranean 15 =D1=84=D0=B5=D0=B2=D1=80=D0=B0=D0=BB=D1=8F =D0=BE=D1=82 6 557= =D0=B3=D1=80=D0=BD=0D=0A Special Category Classic Spain 15= =D1=84=D0=B5=D0=B2=D1=80=D0=B0=D0=BB=D1=8F =D0=BE=D1=82 8 959 =D0=B3=D1= =80=D0=BD=0D=0A Special Category Barcelona – Madrid Wit= h Ave 15 =D1=84=D0=B5=D0=B2=D1=80=D0=B0=D0=BB=D1=8F =D0=BE=D1=82 9 162= =D0=B3=D1=80=D0=BD=0D=0A Special Home Tour Barcelona Ju= st Along 15 =D1=84=D0=B5=D0=B2=D1=80=D0=B0=D0=BB=D1=8F =D0=BE=D1=82 7 71= 1 =D0=B3=D1=80=D0=BD=0D=0A Special Mediterranean Legend 15= =D1=84=D0=B5=D0=B2=D1=80=D0=B0=D0=BB=D1=8F =D0=BE=D1=82 8 592 =D0=B3=D1= =80=D0=BD=0D=0A 3* Home Tour Meet Barcelona 15 =D1=84=D0=B5= =D0=B2=D1=80=D0=B0=D0=BB=D1=8F =D0=BE=D1=82 8 661 =D0=B3=D1=80=D0=BD=0D= =0A 3* Barcelona For Children And Adult 15 =D1=84=D0=B5=D0=B2= =D1=80=D0=B0=D0=BB=D1=8F =D0=BE=D1=82 9 407 =D0=B3=D1=80=D0=BD=0D=0A = *=D0=A1=D1=82=D0=BE=D0=B8=D0=BC=D0=BE=D1=81=D1=82=D1=8C =D1=80= =D0=B0=D1=81=D1=81=D1=87=D0=B8=D1=82=D0=B0=D0=BD=D0=B0 =D0=BD=D0=B0 =D1= =87=D0=B5=D0=BB=D0=BE=D0=B2=D0=B5=D0=BA=D0=B0 =D0=BF=D1=80=D0=B8 =D1=80= =D0=B0=D0=B7=D0=BC=D0=B5=D1=89=D0=B5=D0=BD=D0=B8=D0=B8 =D0=B2 =D0=BD=D0= =BE=D0=BC=D0=B5=D1=80=D0=B5 DBL =D0=BD=D0=B0 =D0=BF=D0=BE=D0=BB=D0=BD=D1= =8B=D0=B9 =D1=82=D1=83=D1=80.=0D=0A =0D=0A =0D=0A= =0D=0A =0D=0A =0D=0A =D0=A1=D0=BE= =D0=BE=D0=B1=D1=89=D0=B0=D0=B5=D0=BC =D0=BE =D0=BD=D0=B0=D0=BB=D0=B8=D1= =87=D0=B8=D0=B8 =D0=B0=D0=B2=D0=B8=D0=B0=D0=B1=D0=B8=D0=BB=D0=B5=D1=82= =D0=BE=D0=B2 =D0=BF=D0=BE =D0=BC=D0=B0=D1=80=D1=88=D1=80=D1=83=D1=82=D0= =B0=D0=BC=0D=0A =0D=0A =0D=0A = =0D=0A =0D=0A =D0=9C= =D0=B0=D1=80=D1=88=D1=80=D1=83=D1=82=0D=0A =0D=0A= =0D=0A =D0=A2=D0=B8=D0=BF= =D0=B0=D0=B2=D0=B8=D0=B0=D0=B1=D0=B8=D0=BB=D0=B5=D1=82=D0=B0=0D=0A = =0D=0A =0D=0A = =D0=94=D0=B0=D1=82=D0=B0 =D0=B2=D1=8B=D0=BB=D0=B5=D1=82=D0=B0= =0D=0A =0D=0A =0D=0A = =D0=94=D0=B0=D1=82=D0=B0 =D0=B2=D0=BE=D0=B7=D0=B2=D1= =80=D0=B0=D1=82=D0=B0=0D=0A =0D=0A = =0D=0A =D0=A1=D1=82=D0=BE=D0=B8=D0=BC= =D0=BE=D1=81=D1=82=D1=8C,=D0=BE=D1=82…UAH=0D=0A = =0D=0A =0D=0A =0D=0A = =0D=0A =D0=9A=D0=B8=D0=B5=D0=B2= - =D0=91=D0=B0=D1=80=D1=81=D0=B5=D0=BB=D0=BE=D0=BD=D0=B0 - =D0=9A=D0=B8= =D0=B5=D0=B2=0D=0A =0D=0A = =0D=0A RT=0D=0A =0D=0A = =0D=0A 08.02.2014=0D=0A = =0D=0A =0D=0A = 15.02.2014=0D=0A =0D=0A = =0D=0A 3560=0D=0A = =0D=0A =0D=0A =0D=0A = =0D=0A =D0=9A=D0=B8=D0=B5=D0=B2 -= =D0=91=D0=B0=D1=80=D1=81=D0=B5=D0=BB=D0=BE=D0=BD=D0=B0 - =D0=9A=D0=B8= =D0=B5=D0=B2=0D=0A =0D=0A = =0D=0A RT=0D=0A =0D=0A = =0D=0A 15.02.2014=0D=0A = =0D=0A =0D=0A = 22.02.2014=0D=0A =0D=0A = =0D=0A 3560=0D=0A = =0D=0A =0D=0A =0D=0A = =0D=0A =D0=91=D0=B0=D1=80=D1=81=D0= =B5=D0=BB=D0=BE=D0=BD=D0=B0 - =D0=9A=D0=B8=D0=B5=D0=B2=0D=0A = =0D=0A =0D=0A = OW=0D=0A =0D=0A =0D=0A = 15.02.2014=0D=0A =0D=0A = =0D=0A  =0D=0A = =0D=0A =0D=0A = 1880=0D=0A =0D=0A =0D=0A= =0D=0A =0D=0A = =D0=9A=D0=B8=D0=B5=D0=B2 - =D0=91=D0=B0=D0=BD=D0=B3=D0=BA=D0=BE= =D0=BA - =D0=9A=D0=B8=D0=B5=D0=B2=0D=0A =0D=0A = =0D=0A RT=0D=0A = =0D=0A =0D=0A = 01.02.2014=0D=0A =0D=0A = =0D=0A 07.02.2014=0D=0A = =0D=0A =0D=0A 4775=0D=0A= =0D=0A =0D=0A = =0D=0A =0D=0A =D0=9A= =D0=B8=D0=B5=D0=B2 - =D0=91=D0=B0=D0=BD=D0=B3=D0=BA=D0=BE=D0=BA - =D0=9A= =D0=B8=D0=B5=D0=B2=0D=0A =0D=0A = =0D=0A RT=0D=0A =0D= =0A =0D=0A 01.02.2014=0D= =0A =0D=0A =0D=0A = 10.02.2014=0D=0A =0D=0A = =0D=0A 5215=0D=0A = =0D=0A =0D=0A =0D=0A = =0D=0A =D0=9A=D0=B8=D0=B5=D0= =B2 - =D0=91=D0=B0=D0=BD=D0=B3=D0=BA=D0=BE=D0=BA - =D0=9A=D0=B8=D0=B5=D0= =B2=0D=0A =0D=0A =0D=0A = RT=0D=0A =0D=0A = =0D=0A 01.02.2014=0D=0A = =0D=0A =0D=0A = 12.02.2014=0D=0A =0D=0A = =0D=0A 5650=0D=0A =0D=0A= =0D=0A =0D=0A = =0D=0A =D0=9A=D0=B8=D0=B5=D0=B2 - =D0=91=D0= =B0=D0=BD=D0=B3=D0=BA=D0=BE=D0=BA - =D0=9A=D0=B8=D0=B5=D0=B2=0D=0A = =0D=0A =0D=0A = RT=0D=0A =0D=0A = =0D=0A 03.02.2014=0D=0A = =0D=0A =0D=0A 10.02.2014= =0D=0A =0D=0A =0D=0A = 5650=0D=0A =0D=0A = =0D=0A =0D=0A =0D=0A = =D0=9A=D0=B8=D0=B5=D0=B2 - =D0=91=D0=B0=D0=BD=D0= =B3=D0=BA=D0=BE=D0=BA - =D0=9A=D0=B8=D0=B5=D0=B2=0D=0A = =0D=0A =0D=0A RT=0D= =0A =0D=0A =0D=0A = 03.02.2014=0D=0A =0D=0A = =0D=0A 12.02.2014=0D=0A = =0D=0A =0D=0A = 6090=0D=0A =0D=0A =0D=0A = =0D=0A =0D=0A = =D0=9A=D0=B8=D0=B5=D0=B2 - =D0=91=D0=B0=D0=BD=D0=B3=D0=BA=D0=BE= =D0=BA - =D0=9A=D0=B8=D0=B5=D0=B2=0D=0A =0D=0A = =0D=0A RT=0D=0A = =0D=0A =0D=0A = 05.02.2014=0D=0A =0D=0A = =0D=0A 14.02.2014=0D=0A = =0D=0A =0D=0A 6525=0D=0A= =0D=0A =0D=0A = =0D=0A =0D=0A =D0=9A= =D0=B8=D0=B5=D0=B2 - =D0=91=D0=B0=D0=BD=D0=B3=D0=BA=D0=BE=D0=BA - =D0=9A= =D0=B8=D0=B5=D0=B2=0D=0A =0D=0A = =0D=0A RT=0D=0A =0D= =0A =0D=0A 08.02.2014=0D= =0A =0D=0A =0D=0A = 17.02.2014=0D=0A =0D=0A = =0D=0A 7400=0D=0A = =0D=0A =0D=0A =0D=0A = =0D=0A =D0=9A=D0=B8=D0=B5=D0= =B2 - =D0=91=D0=B0=D0=BD=D0=B3=D0=BA=D0=BE=D0=BA - =D0=9A=D0=B8=D0=B5=D0= =B2=0D=0A =0D=0A =0D=0A = RT=0D=0A =0D=0A = =0D=0A 10.02.2014=0D=0A = =0D=0A =0D=0A = 19.02.2014=0D=0A =0D=0A = =0D=0A 7665=0D=0A =0D=0A= =0D=0A =0D=0A = =0D=0A =D0=9A=D0=B8=D0=B5=D0=B2 - =D0=91=D0= =B0=D0=BD=D0=B3=D0=BA=D0=BE=D0=BA - =D0=9A=D0=B8=D0=B5=D0=B2=0D=0A = =0D=0A =0D=0A = RT=0D=0A =0D=0A = =0D=0A 12.02.2014=0D=0A = =0D=0A =0D=0A 21.02.2014= =0D=0A =0D=0A =0D=0A = 7665=0D=0A =0D=0A = =0D=0A =0D=0A =0D=0A = =D0=9A=D0=B8=D0=B5=D0=B2 - =D0=94=D1=83=D0=B1=D0= =B0=D0=B8 - =D0=9A=D0=B8=D0=B5=D0=B2=0D=0A =0D=0A= =0D=0A RT=0D=0A = =0D=0A =0D=0A = 02.02.2014=0D=0A =0D=0A = =0D=0A 10.02.2014=0D=0A = =0D=0A =0D=0A 1555=0D=0A= =0D=0A =0D=0A = =0D=0A =0D=0A =D0=9A= =D0=B8=D0=B5=D0=B2 - =D0=94=D1=83=D0=B1=D0=B0=D0=B8 - =D0=9A=D0=B8=D0=B5= =D0=B2=0D=0A =0D=0A =0D=0A= RT=0D=0A =0D=0A = =0D=0A 02.02.2014=0D=0A = =0D=0A =0D=0A = 11.02.2014=0D=0A =0D=0A = =0D=0A 1555=0D=0A =0D=0A= =0D=0A =0D=0A = =0D=0A =D0=9A=D0=B8=D0=B5=D0=B2 - =D0=94=D1= =83=D0=B1=D0=B0=D0=B8 - =D0=9A=D0=B8=D0=B5=D0=B2=0D=0A = =0D=0A =0D=0A RT=0D= =0A =0D=0A =0D=0A = 02.02.2014=0D=0A =0D=0A = =0D=0A 13.02.2014=0D=0A = =0D=0A =0D=0A = 1645=0D=0A =0D=0A =0D=0A = =0D=0A =0D=0A = =D0=9A=D0=B8=D0=B5=D0=B2 - =D0=94=D1=83=D0=B1=D0=B0=D0=B8 - =D0= =9A=D0=B8=D0=B5=D0=B2=0D=0A =0D=0A = =0D=0A RT=0D=0A = =0D=0A =0D=0A 03.02.2014= =0D=0A =0D=0A =0D=0A = 10.02.2014=0D=0A =0D=0A = =0D=0A 1645=0D=0A = =0D=0A =0D=0A =0D=0A = =0D=0A =D0=9A=D0=B8=D0=B5= =D0=B2 - =D0=94=D1=83=D0=B1=D0=B0=D0=B8 - =D0=9A=D0=B8=D0=B5=D0=B2=0D=0A= =0D=0A =0D=0A = RT=0D=0A =0D=0A = =0D=0A 03.02.2014=0D=0A = =0D=0A =0D=0A 11.02.201= 4=0D=0A =0D=0A =0D=0A = 1645=0D=0A =0D=0A = =0D=0A =0D=0A =0D=0A= =D0=9A=D0=B8=D0=B5=D0=B2 - =D0=94=D1=83=D0=B1=D0= =B0=D0=B8 - =D0=9A=D0=B8=D0=B5=D0=B2=0D=0A =0D=0A= =0D=0A RT=0D=0A = =0D=0A =0D=0A = 04.02.2014=0D=0A =0D=0A = =0D=0A 11.02.2014=0D=0A = =0D=0A =0D=0A 1730=0D=0A= =0D=0A =0D=0A = =0D=0A =0D=0A =D0=9A= =D0=B8=D0=B5=D0=B2 - =D0=94=D1=83=D0=B1=D0=B0=D0=B8 - =D0=9A=D0=B8=D0=B5= =D0=B2=0D=0A =0D=0A =0D=0A= RT=0D=0A =0D=0A = =0D=0A 04.02.2014=0D=0A = =0D=0A =0D=0A = 13.02.2014=0D=0A =0D=0A = =0D=0A 1620=0D=0A =0D=0A= =0D=0A =0D=0A = =0D=0A =D0=9A=D0=B8=D0=B5=D0=B2 - =D0=94=D1= =83=D0=B1=D0=B0=D0=B8 - =D0=9A=D0=B8=D0=B5=D0=B2=0D=0A = =0D=0A =0D=0A RT=0D= =0A =0D=0A =0D=0A = 06.02.2014=0D=0A =0D=0A = =0D=0A 13.02.2014=0D=0A = =0D=0A =0D=0A = 1705=0D=0A =0D=0A =0D=0A = =0D=0A =0D=0A = =D0=9A=D0=B8=D0=B5=D0=B2 - =D0=94=D1=83=D0=B1=D0=B0=D0=B8 - =D0= =9A=D0=B8=D0=B5=D0=B2=0D=0A =0D=0A = =0D=0A RT=0D=0A = =0D=0A =0D=0A 09.02.2013= =0D=0A =0D=0A =0D=0A = 14.02.2014=0D=0A =0D=0A = =0D=0A 1970=0D=0A = =0D=0A =0D=0A =0D=0A = =0D=0A =D0=9A=D0=B8=D0=B5= =D0=B2 - =D0=94=D1=83=D0=B1=D0=B0=D0=B8 - =D0=9A=D0=B8=D0=B5=D0=B2=0D=0A= =0D=0A =0D=0A = RT=0D=0A =0D=0A = =0D=0A 09.02.2013=0D=0A = =0D=0A =0D=0A 16.02.201= 4=0D=0A =0D=0A =0D=0A = 2145=0D=0A =0D=0A = =0D=0A =0D=0A =0D=0A= =D0=9A=D0=B8=D0=B5=D0=B2 - =D0=94=D1=83=D0=B1=D0= =B0=D0=B8 - =D0=9A=D0=B8=D0=B5=D0=B2=0D=0A =0D=0A= =0D=0A RT=0D=0A = =0D=0A =0D=0A = 10.02.2013=0D=0A =0D=0A = =0D=0A 14.02.2014=0D=0A = =0D=0A =0D=0A 2145=0D=0A= =0D=0A =0D=0A = =0D=0A =0D=0A =D0=9A= =D0=B8=D0=B5=D0=B2 - =D0=94=D1=83=D0=B1=D0=B0=D0=B8 - =D0=9A=D0=B8=D0=B5= =D0=B2=0D=0A =0D=0A =0D=0A= RT=0D=0A =0D=0A = =0D=0A 10.02.2013=0D=0A = =0D=0A =0D=0A = 17.02.2014=0D=0A =0D=0A = =0D=0A 2590=0D=0A =0D=0A= =0D=0A =0D=0A = =0D=0A =D0=9A=D0=B8=D0=B5=D0=B2 - =D0=94=D1= =83=D0=B1=D0=B0=D0=B8 - =D0=9A=D0=B8=D0=B5=D0=B2=0D=0A = =0D=0A =0D=0A RT=0D= =0A =0D=0A =0D=0A = 11.02.2013=0D=0A =0D=0A = =0D=0A 18.02.2014=0D=0A = =0D=0A =0D=0A = 3020=0D=0A =0D=0A =0D=0A = =0D=0A =0D=0A =0D=0A =0D=0A = =0D=0A =0D=0A =0D=0A =0D=0A= =0D=0A =0D=0A = =D0=A2=D1=83=D1=80=D0=B8=D1=81=D1=82=D0=B8=D1=87=D0=B5=D1=81=D0= =BA=D0=B0=D1=8F =D0=BA=D0=BE=D0=BC=D0=BF=D0=B0=D0=BD=D0=B8=D1=8F=0D=0A = "=D0=98=D0=B7=D0=BE=D0=B1=D0=B8=D0=BB=D0=B8= =D0=B5 =D0=A2=D1=83=D1=80"=0D=0A =D0=B3.=D0= =A5=D0=B0=D1=80=D1=8C=D0=BA=D0=BE=D0=B2, =D1=83=D0=BB.=D0=9F=D1=83=D1=88= =D0=BA=D0=B8=D0=BD=D1=81=D0=BA=D0=B0=D1=8F 79/1, =D0=BE=D1=84.2=0D=0A = =0D=0A  =0D=0A = =0D=0A =E2=98=8E +38 063 641 53= 83=0D=0A =0D=0A =E2=98=8E= +38 095 943 00 87=0D=0A =E2=98=8E +38 067 840 67= 57=0D=0A =0D=0A =0D=0A = =0D=0A =0D=0A =0D=0A =0D=0A = =0D=0A=0D=0A=0D=0A=0D=0A=0D=0A=0D=0A=0D=0A=0D=0A=0D=0A=0D=0A=0D=0A =0A= =D0=95=D1=81=D0=BB=D0=B8 =D0=B2=D1=8B =D0=BD=D0=B5 =D1=85=D0=BE=D1=82=D0= =B8=D1=82=D0=B5 =D0=BF=D0=BE=D0=BB=D1=83=D1=87=D0=B0=D1=82=D1=8C =D0=B8= =D0=BD=D1=84=D0=BE=D1=80=D0=BC=D0=B0=D1=86=D0=B8=D0=BE=D0=BD=D0=BD=D1=83= =D1=8E =D1=80=D0=B0=D1=81=D1=81=D1=8B=D0=BB=D0=BA=D1=83 =D0=BE=D1=82 =D0= =A2=D0=90 "=D0=98=D0=B7=D0=BE=D0=B1=D0=B8=D0=BB=D0=B8=D0=B5 =D0=A2=D1=83= =D1=80", =D0=B2=D1=8B =D0=BC=D0=BE=D0=B6=D0=B5=D1=82=D0=B5 =D0=BE=D1=82= =D0=BA=D0=B0=D0=B7=D0=B0=D1=82=D1=8C=D1=81=D1=8F =D0=BE=D1=82 =D0=BD=D0= =B5=D0=B5 =D0=B2 =D0=BB=D1=8E=D0=B1=D0=BE=D0=B9 =D0=BC=D0=BE=D0=BC=D0=B5= =D0=BD=D1=82 =D0=BD=D0=B0=D0=B6=D0=B0=D0=B2 =D0=BD=D0=B0 =D1=8D=D1=82=D1= =83 =D1=81=D1=81=D1=8B=D0=BB=D0=BA=D1=83 From owner-freebsd-python@FreeBSD.ORG Tue Jan 28 19:03:42 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 268FEE96; Tue, 28 Jan 2014 19:03:42 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id ED2341D45; Tue, 28 Jan 2014 19:03:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0SJ3flE077965; Tue, 28 Jan 2014 19:03:41 GMT (envelope-from vg@freefall.freebsd.org) Received: (from vg@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0SJ3fGq077964; Tue, 28 Jan 2014 19:03:41 GMT (envelope-from vg) Date: Tue, 28 Jan 2014 19:03:41 GMT Message-Id: <201401281903.s0SJ3fGq077964@freefall.freebsd.org> To: vg@FreeBSD.org, freebsd-python@FreeBSD.org, vg@FreeBSD.org From: vg@FreeBSD.org Subject: Re: ports/186149: maintainer update : sysutils/py-salt X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Jan 2014 19:03:42 -0000 Synopsis: maintainer update : sysutils/py-salt Responsible-Changed-From-To: freebsd-python->vg Responsible-Changed-By: vg Responsible-Changed-When: Tue Jan 28 19:03:41 UTC 2014 Responsible-Changed-Why: I will take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186149 From owner-freebsd-python@FreeBSD.ORG Tue Jan 28 21:00:08 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 55DA9386; Tue, 28 Jan 2014 21:00:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2BAD518CF; Tue, 28 Jan 2014 21:00:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0SL08kt004146; Tue, 28 Jan 2014 21:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0SL086R004145; Tue, 28 Jan 2014 21:00:08 GMT (envelope-from edwin) Date: Tue, 28 Jan 2014 21:00:08 GMT Message-Id: <201401282100.s0SL086R004145@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186209: [PATCH] astro/py-astLib update to version 0.7.0 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Jan 2014 21:00:08 -0000 Synopsis: [PATCH] astro/py-astLib update to version 0.7.0 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Tue Jan 28 21:00:07 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186209 From owner-freebsd-python@FreeBSD.ORG Wed Jan 29 07:45:15 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 2AC8211E; Wed, 29 Jan 2014 07:45:15 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id F2FCD1A6D; Wed, 29 Jan 2014 07:45:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0T7jENq073443; Wed, 29 Jan 2014 07:45:14 GMT (envelope-from koobs@freefall.freebsd.org) Received: (from koobs@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0T7jEKx073442; Wed, 29 Jan 2014 07:45:14 GMT (envelope-from koobs) Date: Wed, 29 Jan 2014 07:45:14 GMT Message-Id: <201401290745.s0T7jEKx073442@freefall.freebsd.org> To: koobs@FreeBSD.org, freebsd-python@FreeBSD.org, koobs@FreeBSD.org From: koobs@FreeBSD.org Subject: Re: ports/185078: maintainer update : sysutils/py-halite X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Jan 2014 07:45:15 -0000 Synopsis: maintainer update : sysutils/py-halite Responsible-Changed-From-To: freebsd-python->koobs Responsible-Changed-By: koobs Responsible-Changed-When: Wed Jan 29 07:45:14 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=185078 From owner-freebsd-python@FreeBSD.ORG Wed Jan 29 09:03:24 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 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 95015D9B for ; Wed, 29 Jan 2014 09:03:24 +0000 (UTC) Received: from portscout.freebsd.org (portscout.freebsd.org [IPv6:2001:1900:2254:206a::50:6]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 809501145 for ; Wed, 29 Jan 2014 09:03:24 +0000 (UTC) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.14.7/8.14.7) with ESMTP id s0T93OUI035067 for ; Wed, 29 Jan 2014 09:03:24 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.14.7/8.14.7/Submit) id s0T93Osq035066; Wed, 29 Jan 2014 09:03:24 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201401290903.s0T93Osq035066@portscout.freebsd.org> X-Authentication-Warning: portscout.freebsd.org: portscout set sender to portscout@FreeBSD.org using -f Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain MIME-Version: 1.0 Date: Wed, 29 Jan 2014 09:03:24 +0000 From: portscout@FreeBSD.org To: python@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 29 Jan 2014 09:03:24 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/python@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ www/xist | 3.25 | 5.6 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-python@FreeBSD.ORG Thu Jan 30 18:00:08 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C666BC88; Thu, 30 Jan 2014 18:00:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 9A0C414F9; Thu, 30 Jan 2014 18:00:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0UI086L089590; Thu, 30 Jan 2014 18:00:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0UI08BJ089589; Thu, 30 Jan 2014 18:00:08 GMT (envelope-from edwin) Date: Thu, 30 Jan 2014 18:00:08 GMT Message-Id: <201401301800.s0UI08BJ089589@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186284: lang/python27: [PATCH] Several python ports fail after staging due to library that links itself X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Jan 2014 18:00:08 -0000 Synopsis: lang/python27: [PATCH] Several python ports fail after staging due to library that links itself Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Thu Jan 30 18:00:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186284 From owner-freebsd-python@FreeBSD.ORG Thu Jan 30 18:40:01 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 99382B63 for ; Thu, 30 Jan 2014 18:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 852D818AC for ; Thu, 30 Jan 2014 18:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0UIe1oD002503 for ; Thu, 30 Jan 2014 18:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0UIe1Zo002500; Thu, 30 Jan 2014 18:40:01 GMT (envelope-from gnats) Date: Thu, 30 Jan 2014 18:40:01 GMT Message-Id: <201401301840.s0UIe1Zo002500@freefall.freebsd.org> To: freebsd-python@FreeBSD.org Cc: From: John Marino Subject: Re: ports/186284: lang/python27: [PATCH] Several python ports fail after staging due to library that links itself X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: John Marino List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Jan 2014 18:40:01 -0000 The following reply was made to PR ports/186284; it has been noted by GNATS. From: John Marino To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/186284: lang/python27: [PATCH] Several python ports fail after staging due to library that links itself Date: Thu, 30 Jan 2014 19:39:07 +0100 This is a multi-part message in MIME format. --------------010101070104050105010506 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit python31 was similar to python27, but the fix for python32 was different. The pkg-plist has been wrong from the beginning. It looks like a copy-n-paste error because the directory is no longer "lib/python3.2/config" but rather "lib/python3.2/config-3.2mu". The attached patch not only fixes the linking issue, but also fixes related the long-standing pkg-plist bug. --------------010101070104050105010506 Content-Type: text/plain; charset=windows-1252; name="python32-Makefile.diff.txt" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="python32-Makefile.diff.txt" LS0tIE1ha2VmaWxlLm9yaWcJMjAxNC0wMS0zMCAxNzo1OTo1MC40MTM0MTEwMDAgKzAwMDAN CisrKyBNYWtlZmlsZQ0KQEAgLTEsNCArMSw0IEBADQotIyAkRnJlZUJTRDogbGFuZy9weXRo b24zMi9NYWtlZmlsZSAzNDExOTIgMjAxNC0wMS0yNiAxNDo0Nzo1NlogbXZhICQNCitcIyAk RnJlZUJTRDogbGFuZy9weXRob24zMi9NYWtlZmlsZSAzNDExOTIgMjAxNC0wMS0yNiAxNDo0 Nzo1NlogbXZhICQNCiANCiBQT1JUTkFNRT0JCXB5dGhvbjMyDQogUE9SVFZFUlNJT049CQkz LjIuNQ0KQEAgLTE5OCw4ICsxOTgsOCBAQCBwb3N0LWluc3RhbGw6DQogCQkke1NUQUdFRElS fSR7UFJFRklYfS9saWINCiAJKGNkICR7U1RBR0VESVJ9JHtQUkVGSVh9L2xpYjsgJHtMTn0g LXNmIGxpYiR7UFlUSE9OX1ZFUlNJT059JHtQWUFCSVZFUn0uc28uMSBcDQogCQlsaWIke1BZ VEhPTl9WRVJTSU9OfSR7UFlBQklWRVJ9LnNvKQ0KLQkke0xOfSAtc2YgbGliJHtQWVRIT05f VkVSU0lPTn0ke1BZQUJJVkVSfS5zbyBcDQotCQkke1NUQUdFRElSfSR7UFlUSE9OUFJFRklY X0xJQkRJUn0vY29uZmlnDQorCShjZCAke1NUQUdFRElSfSR7UFJFRklYfS9saWIvJHtQWVRI T05fVkVSU0lPTn0vY29uZmlnLSR7UFlUSE9OX1ZFUn0ke1BZQUJJVkVSfTsgXA0KKwkJJHtM Tn0gLXNmIC4uLy4uL2xpYiR7UFlUSE9OX1ZFUlNJT059JHtQWUFCSVZFUn0uc28pDQogCSR7 SU5TVEFMTF9QUk9HUkFNfSBcDQogCQkke1NIQVJFRF9XUktTUkN9LyR7UFlUSE9OX1ZFUlNJ T046Uy90aG9uL3Rob24tc2hhcmVkL30gXA0KIAkJJHtTVEFHRURJUn0ke1BSRUZJWH0vYmlu DQotLS0gcGtnLXBsaXN0Lm9yaWcJMjAxNC0wMS0zMCAxODoyMDo0NC45NzQ5ODIwMDAgKzAw MDANCisrKyBwa2ctcGxpc3QNCkBAIC00NTksNyArNDU5LDYgQEAgbWFuL21hbjEvcHl0aG9u My4yLjEuZ3oNCiAlJVBZVEhPTl9MSUJESVIlJS9jb25jdXJyZW50L2Z1dHVyZXMvX2Jhc2Uu cHkNCiAlJVBZVEhPTl9MSUJESVIlJS9jb25jdXJyZW50L2Z1dHVyZXMvcHJvY2Vzcy5weQ0K ICUlUFlUSE9OX0xJQkRJUiUlL2NvbmN1cnJlbnQvZnV0dXJlcy90aHJlYWQucHkNCi0lJVBZ VEhPTl9MSUJESVIlJS9jb25maWcNCiAlJVBZVEhPTl9MSUJESVIlJS9jb25maWctJSVQWVZF UiUlJSVQWUFCSVZFUiUlL01ha2VmaWxlDQogJSVQWVRIT05fTElCRElSJSUvY29uZmlnLSUl UFlWRVIlJSUlUFlBQklWRVIlJS9TZXR1cA0KICUlUFlUSE9OX0xJQkRJUiUlL2NvbmZpZy0l JVBZVkVSJSUlJVBZQUJJVkVSJSUvU2V0dXAuY29uZmlnDQpAQCAtNDY4LDYgKzQ2Nyw3IEBA IG1hbi9tYW4xL3B5dGhvbjMuMi4xLmd6DQogJSVQWVRIT05fTElCRElSJSUvY29uZmlnLSUl UFlWRVIlJSUlUFlBQklWRVIlJS9jb25maWcuYy5pbg0KICUlUFlUSE9OX0xJQkRJUiUlL2Nv bmZpZy0lJVBZVkVSJSUlJVBZQUJJVkVSJSUvaW5zdGFsbC1zaA0KICUlUFlUSE9OX0xJQkRJ UiUlL2NvbmZpZy0lJVBZVkVSJSUlJVBZQUJJVkVSJSUvbGliJSVQWVRIT05fVkVSU0lPTiUl JSVQWUFCSVZFUiUlLmENCislJVBZVEhPTl9MSUJESVIlJS9jb25maWctJSVQWVZFUiUlJSVQ WUFCSVZFUiUlL2xpYiUlUFlUSE9OX1ZFUlNJT04lJSUlUFlBQklWRVIlJS5zbw0KICUlUFlU SE9OX0xJQkRJUiUlL2NvbmZpZy0lJVBZVkVSJSUlJVBZQUJJVkVSJSUvbWFrZXNldHVwDQog JSVQWVRIT05fTElCRElSJSUvY29uZmlnLSUlUFlWRVIlJSUlUFlBQklWRVIlJS9weXRob24u bw0KICUlUFlUSE9OX0xJQkRJUiUlL2NvbmZpZ3BhcnNlci5weQ== --------------010101070104050105010506-- From owner-freebsd-python@FreeBSD.ORG Fri Jan 31 04:39:52 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 71AA2296; Fri, 31 Jan 2014 04:39:52 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 45CEC17AE; Fri, 31 Jan 2014 04:39:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0V4dqD6050182; Fri, 31 Jan 2014 04:39:52 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0V4dqvv050181; Fri, 31 Jan 2014 04:39:52 GMT (envelope-from edwin) Date: Fri, 31 Jan 2014 04:39:52 GMT Message-Id: <201401310439.s0V4dqvv050181@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186190: net-mgmt/py-snmp4: upgrade to 4.2.5 (with apps 0.3.4) X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Jan 2014 04:39:52 -0000 Synopsis: net-mgmt/py-snmp4: upgrade to 4.2.5 (with apps 0.3.4) Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jan 31 04:39:51 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186190 From owner-freebsd-python@FreeBSD.ORG Fri Jan 31 04:39:54 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 35B0429C; Fri, 31 Jan 2014 04:39:54 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 082E617AF; Fri, 31 Jan 2014 04:39:54 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0V4drNX050257; Fri, 31 Jan 2014 04:39:53 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0V4dr1Z050256; Fri, 31 Jan 2014 04:39:53 GMT (envelope-from edwin) Date: Fri, 31 Jan 2014 04:39:53 GMT Message-Id: <201401310439.s0V4dr1Z050256@freefall.freebsd.org> To: olgeni@FreeBSD.org, edwin@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186190: net-mgmt/py-snmp4: upgrade to 4.2.5 (with apps 0.3.4) X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Jan 2014 04:39:54 -0000 Synopsis: net-mgmt/py-snmp4: upgrade to 4.2.5 (with apps 0.3.4) State-Changed-From-To: open->feedback State-Changed-By: edwin State-Changed-When: Fri Jan 31 04:39:53 UTC 2014 State-Changed-Why: Awaiting maintainers feedback (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186190 From owner-freebsd-python@FreeBSD.ORG Fri Jan 31 04:40:01 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 333912B5 for ; Fri, 31 Jan 2014 04:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2006517B2 for ; Fri, 31 Jan 2014 04:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0V4e0wS050433 for ; Fri, 31 Jan 2014 04:40:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0V4e0LT050431; Fri, 31 Jan 2014 04:40:00 GMT (envelope-from gnats) Date: Fri, 31 Jan 2014 04:40:00 GMT Message-Id: <201401310440.s0V4e0LT050431@freefall.freebsd.org> To: freebsd-python@FreeBSD.org Cc: From: Edwin Groothuis Subject: Re: ports/186190: net-mgmt/py-snmp4: upgrade to 4.2.5 (with apps 0.3.4) X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Edwin Groothuis List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Jan 2014 04:40:01 -0000 The following reply was made to PR ports/186190; it has been noted by GNATS. From: Edwin Groothuis To: mhjacks@swbell.net Cc: bug-followup@FreeBSD.org Subject: Re: ports/186190: net-mgmt/py-snmp4: upgrade to 4.2.5 (with apps 0.3.4) Date: Fri, 31 Jan 2014 04:39:52 UT Maintainer of net-mgmt/py-snmp4, Please note that PR ports/186190 has just been submitted. If it contains a patch for an upgrade, an enhancement or a bug fix you agree on, reply to this email stating that you approve the patch and a committer will take care of it. The full text of the PR can be found at: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/186190 -- Edwin Groothuis via the GNATS Auto Assign Tool edwin@FreeBSD.org From owner-freebsd-python@FreeBSD.ORG Fri Jan 31 04:40:19 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id C021F330; Fri, 31 Jan 2014 04:40:19 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 94AE017BD; Fri, 31 Jan 2014 04:40:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0V4eJmi050562; Fri, 31 Jan 2014 04:40:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0V4eJc9050561; Fri, 31 Jan 2014 04:40:19 GMT (envelope-from edwin) Date: Fri, 31 Jan 2014 04:40:19 GMT Message-Id: <201401310440.s0V4eJc9050561@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186192: lang/python27: building python27-2.7.6_1 fails X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Jan 2014 04:40:19 -0000 Synopsis: lang/python27: building python27-2.7.6_1 fails Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jan 31 04:40:19 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186192 From owner-freebsd-python@FreeBSD.ORG Fri Jan 31 06:20:08 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 5D47CE63; Fri, 31 Jan 2014 06:20:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 2ED871E8A; Fri, 31 Jan 2014 06:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0V6K86b075853; Fri, 31 Jan 2014 06:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0V6K8xK075852; Fri, 31 Jan 2014 06:20:08 GMT (envelope-from edwin) Date: Fri, 31 Jan 2014 06:20:08 GMT Message-Id: <201401310620.s0V6K8xK075852@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186288: [UPDATE] net/py-gspreadsheet: update to 0.4.0 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Jan 2014 06:20:08 -0000 Synopsis: [UPDATE] net/py-gspreadsheet: update to 0.4.0 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jan 31 06:20:07 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186288 From owner-freebsd-python@FreeBSD.ORG Fri Jan 31 07:39:28 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7CED03CD; Fri, 31 Jan 2014 07:39:28 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4E3D6130E; Fri, 31 Jan 2014 07:39:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0V7dSxH003067; Fri, 31 Jan 2014 07:39:28 GMT (envelope-from koobs@freefall.freebsd.org) Received: (from koobs@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0V7dSUf003063; Fri, 31 Jan 2014 07:39:28 GMT (envelope-from koobs) Date: Fri, 31 Jan 2014 07:39:28 GMT Message-Id: <201401310739.s0V7dSUf003063@freefall.freebsd.org> To: koobs@FreeBSD.org, freebsd-python@FreeBSD.org, koobs@FreeBSD.org From: koobs@FreeBSD.org Subject: Re: ports/186159: [NEW PORT] www/py-django-debug-toolbar: Configurable set of panels to display debug information X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Jan 2014 07:39:28 -0000 Synopsis: [NEW PORT] www/py-django-debug-toolbar: Configurable set of panels to display debug information Responsible-Changed-From-To: freebsd-python->koobs Responsible-Changed-By: koobs Responsible-Changed-When: Fri Jan 31 07:39:28 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186159 From owner-freebsd-python@FreeBSD.ORG Fri Jan 31 07:39:45 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id BCA013E9; Fri, 31 Jan 2014 07:39:45 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 90D971311; Fri, 31 Jan 2014 07:39:45 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0V7djQm003241; Fri, 31 Jan 2014 07:39:45 GMT (envelope-from koobs@freefall.freebsd.org) Received: (from koobs@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0V7djgZ003240; Fri, 31 Jan 2014 07:39:45 GMT (envelope-from koobs) Date: Fri, 31 Jan 2014 07:39:45 GMT Message-Id: <201401310739.s0V7djgZ003240@freefall.freebsd.org> To: koobs@FreeBSD.org, freebsd-python@FreeBSD.org, koobs@FreeBSD.org From: koobs@FreeBSD.org Subject: Re: ports/186158: [NEW PORT] www/py-django-crispy-forms: The best way to have Django DRY forms X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Jan 2014 07:39:45 -0000 Synopsis: [NEW PORT] www/py-django-crispy-forms: The best way to have Django DRY forms Responsible-Changed-From-To: freebsd-python->koobs Responsible-Changed-By: koobs Responsible-Changed-When: Fri Jan 31 07:39:45 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186158 From owner-freebsd-python@FreeBSD.ORG Fri Jan 31 09:05:26 2014 Return-Path: Delivered-To: python@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 053254E0 for ; Fri, 31 Jan 2014 09:05:26 +0000 (UTC) Received: from portscout.freebsd.org (portscout.freebsd.org [IPv6:2001:1900:2254:206a::50:6]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id DA6B8194F for ; Fri, 31 Jan 2014 09:05:25 +0000 (UTC) Received: from portscout.freebsd.org ([127.0.1.123]) by portscout.freebsd.org (8.14.7/8.14.7) with ESMTP id s0V95PK8068844 for ; Fri, 31 Jan 2014 09:05:25 GMT (envelope-from portscout@FreeBSD.org) Received: (from portscout@localhost) by portscout.freebsd.org (8.14.7/8.14.7/Submit) id s0V95PnY068841; Fri, 31 Jan 2014 09:05:25 GMT (envelope-from portscout@FreeBSD.org) Message-Id: <201401310905.s0V95PnY068841@portscout.freebsd.org> X-Authentication-Warning: portscout.freebsd.org: portscout set sender to portscout@FreeBSD.org using -f Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain MIME-Version: 1.0 Date: Fri, 31 Jan 2014 09:05:25 +0000 From: portscout@FreeBSD.org To: python@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Jan 2014 09:05:26 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/python@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ www/xist | 3.25 | 5.7 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt Thanks. From owner-freebsd-python@FreeBSD.ORG Fri Jan 31 16:40:02 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1419172D for ; Fri, 31 Jan 2014 16:40:02 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E8A9C119E for ; Fri, 31 Jan 2014 16:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s0VGe1dv029852 for ; Fri, 31 Jan 2014 16:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s0VGe1TF029851; Fri, 31 Jan 2014 16:40:01 GMT (envelope-from gnats) Date: Fri, 31 Jan 2014 16:40:01 GMT Message-Id: <201401311640.s0VGe1TF029851@freefall.freebsd.org> To: freebsd-python@FreeBSD.org Cc: From: Martin Jackson Subject: Re: ports/186190: net-mgmt/py-snmp4: upgrade to 4.2.5 (with apps 0.3.4) X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Martin Jackson List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Jan 2014 16:40:02 -0000 The following reply was made to PR ports/186190; it has been noted by GNATS. From: Martin Jackson To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/186190: net-mgmt/py-snmp4: upgrade to 4.2.5 (with apps 0.3.4) Date: Fri, 31 Jan 2014 10:36:14 -0600 ----_com.android.email_24240799002786620 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: base64 QXBwcm92ZWQuIMKgIFRoYW5rcyEKCgpTZW50IHZpYSB0aGUgU2Ftc3VuZyBHQUxBWFkgU8KuNCwg YW4gQVQmVCA0RyBMVEUgc21hcnRwaG9uZQoKLS0tLS0tLS0gT3JpZ2luYWwgbWVzc2FnZSAtLS0t LS0tLQpGcm9tOiBFZHdpbiBHcm9vdGh1aXMgPGVkd2luQEZyZWVCU0Qub3JnPiAKRGF0ZTowMS8z MC8yMDE0ICAxMDozOSBQTSAgKEdNVC0wNjowMCkgClRvOiBtaGphY2tzQHN3YmVsbC5uZXQgCkNj OiBidWctZm9sbG93dXBARnJlZUJTRC5vcmcgClN1YmplY3Q6IFJlOiBwb3J0cy8xODYxOTA6IG5l dC1tZ210L3B5LXNubXA0OiB1cGdyYWRlIHRvIDQuMi41ICh3aXRoIGFwcHMgMC4zLjQpIAoKTWFp bnRhaW5lciBvZiBuZXQtbWdtdC9weS1zbm1wNCwKClBsZWFzZSBub3RlIHRoYXQgUFIgcG9ydHMv MTg2MTkwIGhhcyBqdXN0IGJlZW4gc3VibWl0dGVkLgoKSWYgaXQgY29udGFpbnMgYSBwYXRjaCBm b3IgYW4gdXBncmFkZSwgYW4gZW5oYW5jZW1lbnQgb3IgYSBidWcgZml4CnlvdSBhZ3JlZSBvbiwg cmVwbHkgdG8gdGhpcyBlbWFpbCBzdGF0aW5nIHRoYXQgeW91IGFwcHJvdmUgdGhlIHBhdGNoCmFu ZCBhIGNvbW1pdHRlciB3aWxsIHRha2UgY2FyZSBvZiBpdC4KClRoZSBmdWxsIHRleHQgb2YgdGhl IFBSIGNhbiBiZSBmb3VuZCBhdDoKwqDCoMKgIGh0dHA6Ly93d3cuZnJlZWJzZC5vcmcvY2dpL3F1 ZXJ5LXByLmNnaT9wcj1wb3J0cy8xODYxOTAKCi0tIApFZHdpbiBHcm9vdGh1aXMgdmlhIHRoZSBH TkFUUyBBdXRvIEFzc2lnbiBUb29sCmVkd2luQEZyZWVCU0Qub3JnCg== ----_com.android.email_24240799002786620 Content-Type: text/html; charset=utf-8 Content-Transfer-Encoding: base64 PGh0bWw+PGhlYWQ+PG1ldGEgaHR0cC1lcXVpdj0iQ29udGVudC1UeXBlIiBjb250ZW50PSJ0ZXh0 L2h0bWw7IGNoYXJzZXQ9VVRGLTgiPjwvaGVhZD48Ym9keSA+PGRpdj5BcHByb3ZlZC4gJm5ic3A7 IFRoYW5rcyE8L2Rpdj48ZGl2Pjxicj48L2Rpdj48ZGl2Pjxicj48L2Rpdj48ZGl2PjxkaXYgc3R5 bGU9ImZvbnQtc2l6ZTo5cHg7Y29sb3I6IzU3NTc1NyI+U2VudCB2aWEgdGhlIFNhbXN1bmcgR0FM QVhZIFPCrjQsIGFuIEFUJmFtcDtUIDRHIExURSBzbWFydHBob25lPC9kaXY+PC9kaXY+PGJyPjxi cj4tLS0tLS0tLSBPcmlnaW5hbCBtZXNzYWdlIC0tLS0tLS0tPGJyPkZyb206IEVkd2luIEdyb290 aHVpcyA8ZWR3aW5ARnJlZUJTRC5vcmc+IDxicj5EYXRlOjAxLzMwLzIwMTQgIDEwOjM5IFBNICAo R01ULTA2OjAwKSA8YnI+VG86IG1oamFja3NAc3diZWxsLm5ldCA8YnI+Q2M6IGJ1Zy1mb2xsb3d1 cEBGcmVlQlNELm9yZyA8YnI+U3ViamVjdDogUmU6IHBvcnRzLzE4NjE5MDogbmV0LW1nbXQvcHkt c25tcDQ6IHVwZ3JhZGUgdG8gNC4yLjUgKHdpdGggYXBwcyAwLjMuNCkgPGJyPjxicj5NYWludGFp bmVyIG9mIG5ldC1tZ210L3B5LXNubXA0LDxicj48YnI+UGxlYXNlIG5vdGUgdGhhdCBQUiBwb3J0 cy8xODYxOTAgaGFzIGp1c3QgYmVlbiBzdWJtaXR0ZWQuPGJyPjxicj5JZiBpdCBjb250YWlucyBh IHBhdGNoIGZvciBhbiB1cGdyYWRlLCBhbiBlbmhhbmNlbWVudCBvciBhIGJ1ZyBmaXg8YnI+eW91 IGFncmVlIG9uLCByZXBseSB0byB0aGlzIGVtYWlsIHN0YXRpbmcgdGhhdCB5b3UgYXBwcm92ZSB0 aGUgcGF0Y2g8YnI+YW5kIGEgY29tbWl0dGVyIHdpbGwgdGFrZSBjYXJlIG9mIGl0Ljxicj48YnI+ VGhlIGZ1bGwgdGV4dCBvZiB0aGUgUFIgY2FuIGJlIGZvdW5kIGF0Ojxicj4mbmJzcDsmbmJzcDsm bmJzcDsgaHR0cDovL3d3dy5mcmVlYnNkLm9yZy9jZ2kvcXVlcnktcHIuY2dpP3ByPXBvcnRzLzE4 NjE5MDxicj48YnI+LS0gPGJyPkVkd2luIEdyb290aHVpcyB2aWEgdGhlIEdOQVRTIEF1dG8gQXNz aWduIFRvb2w8YnI+ZWR3aW5ARnJlZUJTRC5vcmc8YnI+PC9ib2R5Pg== ----_com.android.email_24240799002786620-- From owner-freebsd-python@FreeBSD.ORG Sat Feb 1 08:51:50 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1E776D0B; Sat, 1 Feb 2014 08:51:50 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E75FE1C94; Sat, 1 Feb 2014 08:51:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s118pnwU082908; Sat, 1 Feb 2014 08:51:49 GMT (envelope-from mva@freefall.freebsd.org) Received: (from mva@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s118pnHE082907; Sat, 1 Feb 2014 08:51:49 GMT (envelope-from mva) Date: Sat, 1 Feb 2014 08:51:49 GMT Message-Id: <201402010851.s118pnHE082907@freefall.freebsd.org> To: mva@FreeBSD.org, freebsd-python@FreeBSD.org, mva@FreeBSD.org From: mva@FreeBSD.org Subject: Re: ports/186284: lang/python27: [PATCH] Several python ports fail after staging due to library that links itself X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Feb 2014 08:51:50 -0000 Synopsis: lang/python27: [PATCH] Several python ports fail after staging due to library that links itself Responsible-Changed-From-To: freebsd-python->mva Responsible-Changed-By: mva Responsible-Changed-When: Sat Feb 1 08:51:49 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186284 From owner-freebsd-python@FreeBSD.ORG Sat Feb 1 12:40:14 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1B8B7284; Sat, 1 Feb 2014 12:40:14 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E41821A54; Sat, 1 Feb 2014 12:40:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s11CeDlE035862; Sat, 1 Feb 2014 12:40:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s11CeDGc035861; Sat, 1 Feb 2014 12:40:13 GMT (envelope-from edwin) Date: Sat, 1 Feb 2014 12:40:13 GMT Message-Id: <201402011240.s11CeDGc035861@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186336: [UPDATE] devel/py-checkmanifest: update to 0.18 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Feb 2014 12:40:14 -0000 Synopsis: [UPDATE] devel/py-checkmanifest: update to 0.18 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sat Feb 1 12:40:13 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186336 From owner-freebsd-python@FreeBSD.ORG Sat Feb 1 13:40:08 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D3C6818C; Sat, 1 Feb 2014 13:40:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id A96151F31; Sat, 1 Feb 2014 13:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s11De8W7049829; Sat, 1 Feb 2014 13:40:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s11De8Lu049828; Sat, 1 Feb 2014 13:40:08 GMT (envelope-from edwin) Date: Sat, 1 Feb 2014 13:40:08 GMT Message-Id: <201402011340.s11De8Lu049828@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186342: [NEW PORT] devel/py-tapi: Framework for testing APIs X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Feb 2014 13:40:08 -0000 Synopsis: [NEW PORT] devel/py-tapi: Framework for testing APIs Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sat Feb 1 13:40:08 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186342 From owner-freebsd-python@FreeBSD.ORG Sat Feb 1 14:48:54 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1AFB1B45; Sat, 1 Feb 2014 14:48:54 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id E025A13C8; Sat, 1 Feb 2014 14:48:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s11EmrC9065000; Sat, 1 Feb 2014 14:48:53 GMT (envelope-from koobs@freefall.freebsd.org) Received: (from koobs@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s11Emrt9064999; Sat, 1 Feb 2014 14:48:53 GMT (envelope-from koobs) Date: Sat, 1 Feb 2014 14:48:53 GMT Message-Id: <201402011448.s11Emrt9064999@freefall.freebsd.org> To: koobs@FreeBSD.org, freebsd-python@FreeBSD.org, koobs@FreeBSD.org From: koobs@FreeBSD.org Subject: Re: ports/186342: [NEW PORT] devel/py-tapi: Framework for testing APIs X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Feb 2014 14:48:54 -0000 Synopsis: [NEW PORT] devel/py-tapi: Framework for testing APIs Responsible-Changed-From-To: freebsd-python->koobs Responsible-Changed-By: koobs Responsible-Changed-When: Sat Feb 1 14:48:53 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186342 From owner-freebsd-python@FreeBSD.ORG Sat Feb 1 14:50:21 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A42EBB69; Sat, 1 Feb 2014 14:50:21 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 77E791479; Sat, 1 Feb 2014 14:50:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s11EoLIo065209; Sat, 1 Feb 2014 14:50:21 GMT (envelope-from koobs@freefall.freebsd.org) Received: (from koobs@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s11EoLoU065208; Sat, 1 Feb 2014 14:50:21 GMT (envelope-from koobs) Date: Sat, 1 Feb 2014 14:50:21 GMT Message-Id: <201402011450.s11EoLoU065208@freefall.freebsd.org> To: koobs@FreeBSD.org, freebsd-python@FreeBSD.org, koobs@FreeBSD.org From: koobs@FreeBSD.org Subject: Re: ports/186336: [UPDATE] devel/py-checkmanifest: update to 0.18 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Feb 2014 14:50:21 -0000 Synopsis: [UPDATE] devel/py-checkmanifest: update to 0.18 Responsible-Changed-From-To: freebsd-python->koobs Responsible-Changed-By: koobs Responsible-Changed-When: Sat Feb 1 14:50:21 UTC 2014 Responsible-Changed-Why: I'll take it. http://www.freebsd.org/cgi/query-pr.cgi?pr=186336 From owner-freebsd-python@FreeBSD.ORG Sat Feb 1 17:30:08 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id EE952C5A; Sat, 1 Feb 2014 17:30:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id C2B3B1EE8; Sat, 1 Feb 2014 17:30:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s11HU8ix001202; Sat, 1 Feb 2014 17:30:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s11HU8tK001201; Sat, 1 Feb 2014 17:30:08 GMT (envelope-from edwin) Date: Sat, 1 Feb 2014 17:30:08 GMT Message-Id: <201402011730.s11HU8tK001201@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186351: lang/python27 does not install when WITHOUT_NIS=YES is used X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Feb 2014 17:30:09 -0000 Synopsis: lang/python27 does not install when WITHOUT_NIS=YES is used Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sat Feb 1 17:30:08 UTC 2014 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186351 From owner-freebsd-python@FreeBSD.ORG Sat Feb 1 18:40:01 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id A0990C6F for ; Sat, 1 Feb 2014 18:40:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 8D3701392 for ; Sat, 1 Feb 2014 18:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s11Ie1c7023356 for ; Sat, 1 Feb 2014 18:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s11Ie1BZ023355; Sat, 1 Feb 2014 18:40:01 GMT (envelope-from gnats) Date: Sat, 1 Feb 2014 18:40:01 GMT Message-Id: <201402011840.s11Ie1BZ023355@freefall.freebsd.org> To: freebsd-python@FreeBSD.org Cc: From: Garrett Cooper Subject: Re: ports/186351: lang/python27 does not install when WITHOUT_NIS=YES is used X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Garrett Cooper List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Feb 2014 18:40:01 -0000 The following reply was made to PR ports/186351; it has been noted by GNATS. From: Garrett Cooper To: bug-followup@FreeBSD.org, bsd@dino.sk Cc: Subject: Re: ports/186351: lang/python27 does not install when WITHOUT_NIS=YES is used Date: Sat, 1 Feb 2014 10:35:05 -0800 This is a dupe of ports/186192. There was another PR I filed a couple years ago where I noted = that this was an issue, but because pkg_install was not pedantic about = file manifest lists, it wasn=92t an issue (just noise when creating the = port). I=92ll either find my previous PR and update the patch, or add = an updated patch to ports/186192. Thanks! -Garrett= From owner-freebsd-python@FreeBSD.ORG Sat Feb 1 18:50:01 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7C760E60 for ; Sat, 1 Feb 2014 18:50:01 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 67830147D for ; Sat, 1 Feb 2014 18:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s11Io1wj025302 for ; Sat, 1 Feb 2014 18:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s11Io1O7025289; Sat, 1 Feb 2014 18:50:01 GMT (envelope-from gnats) Date: Sat, 1 Feb 2014 18:50:01 GMT Message-Id: <201402011850.s11Io1O7025289@freefall.freebsd.org> To: freebsd-python@FreeBSD.org Cc: From: Garrett Cooper Subject: Re: ports/186192: lang/python27: building python27-2.7.6_1 fails X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list Reply-To: Garrett Cooper List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Feb 2014 18:50:01 -0000 The following reply was made to PR ports/186192; it has been noted by GNATS. From: Garrett Cooper To: bug-followup@FreeBSD.org, oz42@oz42.eu Cc: Subject: Re: ports/186192: lang/python27: building python27-2.7.6_1 fails Date: Sat, 1 Feb 2014 10:49:10 -0800 This PR is similar ports/147291. The problem is that src.conf isn=92t sourced in the ports build = infrastructure, so any variables plugged into src.conf won=92t get = picked up when building ports. Adding WITHOUT_NIS=3Dyes to /etc/make.conf will work around the = issue though. I=92m not sure if looking for *_failed.so would be a good idea = when creating the plist, but it would at least avoid the install/package = creation issue. Thanks! -Garrett= From owner-freebsd-python@FreeBSD.ORG Sat Feb 1 22:50:08 2014 Return-Path: Delivered-To: freebsd-python@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 64E4DD0D; Sat, 1 Feb 2014 22:50:08 +0000 (UTC) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 39E5114A9; Sat, 1 Feb 2014 22:50:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id s11Mo814079559; Sat, 1 Feb 2014 22:50:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id s11Mo8qA079558; Sat, 1 Feb 2014 22:50:08 GMT (envelope-from edwin) Date: Sat, 1 Feb 2014 22:50:08 GMT Message-Id: <201402012250.s11Mo8qA079558@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-python@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/186357: [Maintainer Update] devel/py-robotframework-pabot 0.3 -> 0.4 X-BeenThere: freebsd-python@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: FreeBSD-specific Python issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Feb 2014 22:50:08 -0000 Synopsis: [Maintainer Update] devel/py-robotframework-pabot 0.3 -> 0.4 Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-python Responsible-Changed-By: edwin Responsible-Changed-When: Sat Feb 1 22:50:07 UTC 2014 Responsible-Changed-Why: freebsd-python@ wants this port PRs (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=186357