Re: [Distutils] make-like develop

2011-11-02 Thread Jorge Vargas
On Wed, Nov 2, 2011 at 11:49 AM, Andrea Crotti wrote: > On 11/02/2011 02:02 PM, Jorge Vargas wrote: >> >> Hi, >> >> What you are describing seems a lot like the task/way of operation of >> Buildout. http://pypi.python.org/pypi/zc.buildout Perhaps you should >

Re: [Distutils] make-like develop

2011-11-02 Thread Jorge Vargas
Hi, What you are describing seems a lot like the task/way of operation of Buildout. http://pypi.python.org/pypi/zc.buildout Perhaps you should take a look at it as it's mode of operation is to maintain a collection of "eggs" either from sources or repos. Personally I like the virtualenv approach

[Distutils] Should pip support extras? Was: [venv] question about future pip capabilities

2009-12-14 Thread Jorge Vargas
On Thu, Dec 10, 2009 at 3:58 PM, Darren Dale wrote: > On Thu, Dec 10, 2009 at 2:30 PM, Ian Bicking wrote: >> On Thu, Dec 10, 2009 at 11:18 AM, Darren Dale wrote: >> There isn't really; extras would be nice, but there hasn't been much >> demand for them.  pip requirement files serve a similar pu

Re: [Distutils] including an empty directory

2009-01-25 Thread Jorge Vargas
FYI, this is a know bug/limitation I never bother to look much into it as we simply add a placeholder file. On Sat, Jan 24, 2009 at 7:39 PM, Domen Kožar wrote: > Usage is to dispatch Paste templates > http://pythonpaste.org/script/developer.html#templates. > > And the dir must be empty, for some

[Distutils] using 'python setup.py test' with an index?

2009-01-11 Thread Jorge Vargas
Hi, I got the following situation. I have a big package which depends on several others projects just for unit tests, the package is a maskup of several others. Therefore I'm adding those dependencies to tests_require, and everything is working great. Now I have stumble upon a package that has no

Re: [Distutils] setuptools Windows installer for Python 2.6

2008-11-18 Thread Jorge Vargas
2008/11/11 Abhigyan Agrawal1 <[EMAIL PROTECTED]>: > > Hi, > I am wondering if there is any plan to release a windows installer > for setuptools setup for Python 2.6? > if you build it yourself. $ python setup.py bdist_egg and make sure everything runs fine, then post it. it should be done f

[Distutils] setup.py develop for extras?

2007-07-01 Thread Jorge Vargas
Hi how could I trigger installing extras with develop? for example easy_install somePackage equals cd somePackage python setup.py develop easy_install somePackage[someExtras] equals??? ___ Distutils-SIG maillist - Distutils-SIG@python.org http://mail

Re: [Distutils] setuptools, how to read metadata programatically?

2007-06-30 Thread Jorge Vargas
On 6/30/07, Phillip J. Eby <[EMAIL PROTECTED]> wrote: > At 02:02 PM 6/30/2007 -0400, Jorge Vargas wrote: > >hi > > > >I'm building a plugin manager on top of setuptools and I'll like to > >know how could I read the package metadata if I got it's

[Distutils] setuptools, how to read metadata programatically?

2007-06-30 Thread Jorge Vargas
hi I'm building a plugin manager on top of setuptools and I'll like to know how could I read the package metadata if I got it's EntryPoint. basically what I need is get the author, version,etc. I found a pkg_resources.EggMetadata but i'm not sure how to instantiate it because I don't know what a

[Distutils] converting a distutil command to setuptools

2007-06-30 Thread Jorge Vargas
hi I'm porting a distutils package to setuptools they have a Command that takes the po files and compiles them and then they are feeding a cmd Class to distutils, I read in the docs that the way of doing this in setuptools is with an entry point and that the entry point should be provided by a pre

Re: [Distutils] Compiler support for VC++ 2005

2007-02-12 Thread Jorge Vargas
On 2/8/07, Paul Moore <[EMAIL PROTECTED]> wrote: > On 07/02/07, Jorge Vargas <[EMAIL PROTECTED]> wrote: > > yes that's true the problem comes when you need windows.h or other > > file that the mingw people can't distribute. > > Um, windows.h comes with m

Re: [Distutils] SetupTools: Forcefully Ignoring Dependencies

2007-02-07 Thread Jorge Vargas
On 2/6/07, Alexander Michael <[EMAIL PROTECTED]> wrote: > How can I force easy_install to not worry about (i.e. ignore) > dependencies? I tried --no-deps, but easy_install (from setuptools > 0.6c5) still attempts to find dependencies and then errors out. > --single-version-externally-managed ? > T

Re: [Distutils] setuptools-0.6c5-py2.5.egg in cheeseshop seems to be broken

2007-02-07 Thread Jorge Vargas
On 2/3/07, Phillip J. Eby <[EMAIL PROTECTED]> wrote: > At 05:18 PM 2/3/2007 -0500, Matt Good wrote: > >On Sat, 2007-02-03 at 17:09 -0400, Jorge Vargas wrote: > > > [EMAIL PROTECTED]:~$ sh setuptools-0.6c5-py2.5.egg > > > setuptools-0.6c5-py2.5.egg: 8: [[: not found

Re: [Distutils] Compiler support for VC++ 2005

2007-02-07 Thread Jorge Vargas
On 2/5/07, Paul Moore <[EMAIL PROTECTED]> wrote: > On 03/02/07, Jorge Vargas <[EMAIL PROTECTED]> wrote: > > yes indeed I had a huge fight with mysqldb driver because of this. Since the > > windows version of mysql is compile with VS2003 and python too getting those &g

[Distutils] setuptools-0.6c5-py2.5.egg in cheeseshop seems to be broken

2007-02-03 Thread Jorge Vargas
[EMAIL PROTECTED]:~$ sh setuptools-0.6c5-py2.5.egg setuptools-0.6c5-py2.5.egg: 8: [[: not found setuptools-0.6c5-py2.5.egg is not the correct name for this egg file. Please rename it back to setuptools-0.6c5-py2.5.egg and try again. ___ Distutils-SIG mai

Re: [Distutils] Compiler support for VC++ 2005

2007-02-02 Thread Jorge Vargas
On 2/2/07, Michael Foord <[EMAIL PROTECTED]> wrote: Paul Moore wrote: > On 02/02/07, Michael Foord <[EMAIL PROTECTED]> wrote: >> Paul Moore wrote: >> But, IIUC there can still be issues with using gcc for extensions - >> because you are still using a different CRT layer and this can cause >> pro

Re: [Distutils] setuptools extras_require

2006-12-12 Thread Jorge Vargas
On 12/12/06, Elvelind Grandin <[EMAIL PROTECTED]> wrote: > Or use a magic extra name like "default" which is used if no other > extra is selected. umm if we make that a list then it could work, it could even be used to get template engines. > > On 12/11/06, Elvelind Grandin <[EMAIL PROTECTED]> wrot

Re: [Distutils] SETUPTOOLS - Loading Eggs which do not have an egg_info

2006-12-12 Thread Jorge Vargas
hi troll PS: just making sure other people in this list know about it PSS: please do not reply On 12/8/06, Ilias Lazaridis <[EMAIL PROTECTED]> wrote: > Ilias Lazaridis wrote: ___ Distutils-SIG maillist - Distutils-SIG@python.org http://mail.python.org

Re: [Distutils] setuptools extras_require

2006-12-12 Thread Jorge Vargas
On 12/10/06, Phillip J. Eby <[EMAIL PROTECTED]> wrote: > At 08:28 PM 12/10/2006 +0100, Elvelind Grandin wrote: > >Is there any way to exclude packages in extras_require as opposed to > >just include them. In Turbogears we have Sqlobject in by default. but > >if the extra "future" is used it should

[Distutils] zc.buildout vr make Was: should I use distutils for a gnome-applet?

2006-11-13 Thread Jorge Vargas
On 11/13/06, Eric S. Johansson <[EMAIL PROTECTED]> wrote: this just got a bit out of topic > Jim Fulton wrote: > > zc.buildout's main improvement over > > make is the use of Python as it's scripting language. > > speaking as someone who has detested make from the minute I encountered > itsome 30 ye

Re: [Distutils] should I use distutils for a gnome-applet?

2006-11-13 Thread Jorge Vargas
On 11/13/06, Nathan R. Yergler <[EMAIL PROTECTED]> wrote: > On Mon, 2006-11-13 at 10:08 +0000, Jorge Vargas wrote: > > [snip] > > > > > > I though zc goal was to build zope apps, on the other hand how much of > > a footprint do you actually need for

Re: [Distutils] should I use distutils for a gnome-applet?

2006-11-13 Thread Jorge Vargas
On 11/10/06, Tres Seaver <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Phillip J. Eby wrote: > > At 01:53 AM 11/10/2006 +, Jorge Vargas wrote: > >> so my question is will I really win from hoping over to distutils or > >

[Distutils] should I use distutils for a gnome-applet?

2006-11-09 Thread Jorge Vargas
Hi I'm writting a small gnome applet that I'll like to distribute currently I have a small handmade Makefile that will just copy all the files (3) to their destinations. but it depends on gnome-python (gconf,gnomeapplet) and pygtk, so I'll like to have some of the advantages of distutils/setupto

Re: [Distutils] YAGNI extras and tests_require

2006-10-22 Thread Jorge Vargas
On 10/22/06, Jim Fulton <[EMAIL PROTECTED]> wrote: > > I'd like to call "Ya aint gonna need it" on the extras feature of setuptools. > actually I find it as a very interesting way of implementing a plugin architecture. in fact I was thinking of trying it out with a project I'm working on like an h

Re: [Distutils] Draft of new setuptools installation instructions

2006-10-04 Thread Jorge Vargas
On 10/3/06, Phillip J. Eby <[EMAIL PROTECTED]> wrote: > At 10:43 PM 10/3/2006 +0100, Paul Moore wrote: > >On 10/3/06, Phillip J. Eby <[EMAIL PROTECTED]> wrote: > >>Should we make more effort to create a usable command-line experience on > >>Windows? Perhaps use a post-install script to register ea

Re: [Distutils] a patch for distutils + gcc + linux, that was never apply, yet will solve many problems.

2006-07-24 Thread Jorge Vargas
sorry for not replying earlier I have been busy at work.On 7/14/06, Ronald Oussoren <[EMAIL PROTECTED]> wrote: On Jul 14, 2006, at 3:35 PM, Jorge Vargas wrote:> On 7/11/06, Ronald Oussoren < [EMAIL PROTECTED]> wrote:>> On Jul 11, 2006, at 5:17 PM, Jorge Vargas wrote:>&g

Re: [Distutils] a patch for distutils + gcc + linux, that was never apply, yet will solve many problems.

2006-07-11 Thread Jorge Vargas
noone cares about this? it's a bug so simple to fixOn 6/30/06, Jorge Vargas <[EMAIL PROTECTED]> wrote: Hello everyone I did a package for gentoo (ebuild) a while ago and it has a C/C++ extension, to compile agains a gecko-compliant mozilla product. Long story short our solution (b

[Distutils] a patch for distutils + gcc + linux, that was never apply, yet will solve many problems.

2006-06-30 Thread Jorge Vargas
Hello everyone I did a package for gentoo (ebuild) a while ago and it has a C/C++ extension, to compile agains a gecko-compliant mozilla product.Long story short our solution (build agains mozilla) seem to had nothing to do with the real bug which someone posted today. It seems there is a bug in di

[Distutils] conditional external packages dependancies with setuptools

2006-06-24 Thread Jorge Vargas
sorry forgot to send this to the list.-- Forwarded message --From: Jorge Vargas <[EMAIL PROTECTED] >Date: Jun 24, 2006 4:13 PMSubject: Re: [Distutils] conditional external packages dependancies with setuptoolsTo: "Phillip J. Eby" <[EMAIL PROTECTED] >On 6

[Distutils] conditional external packages dependancies with setuptools

2006-06-24 Thread Jorge Vargas
hi all I'm new to creating my own setuptools projects, although I have work with other people projects before, so I'm not that lost here.but What I want to accomplish is having dependancies on some packages. for example my project will have diferent database backends so I want to depend on pysqlite