Hi, Is there a particular reason that searching for python ports produces: 51 % port search python gnome-bindings-python devel/gnome-bindings-python 2.12 The GNOME bindings for Python subversion-pythonbindings devel/subversion-pythonbindings 1.4.2 Python bindings for the subversion version control system. gnome-python-desktop gnome/gnome-python-desktop 2.14.0 Python modules for some GNOME Desktop libraries. python21 lang/python21 2.1.3 An interpreted, object-oriented programming language python22 lang/python22 2.2.3 An interpreted, object-oriented programming language python23 lang/python23 2.3.5 An interpreted, object-oriented programming language python24 lang/python24 2.4.3 An interpreted, object-oriented programming language python25 lang/python25 2.5 An interpreted, object-oriented programming language py-biopython python/py-biopython 1.41 python tools for computational molecular biology py-dnspython python/py-dnspython 1.3.5 DNS toolkit for Python py-ipython python/py-ipython 0.7.2 An enhanced Interactive Python shell py-pythoncad python/py-pythoncad DS1-R22 Python-based CAD package py-wxpython python/py-wxpython 2.6.3.2 Python interface to the wxWindows cross platform GUI mod_python www/mod_python 3.2.8 Apache2 module that embeds Python within the server. but that tkinter isn't included in this list? 52 % port search tkinter py-tkinter python/py-tkinter 2.4.3 Python bindings to the Tk widget set Thanks! --b
On 11.11.2006, at 08:28, belinda thom wrote:
Is there a particular reason that searching for python ports produces:
51 % port search python [...] but that tkinter isn't included in this list?
52 % port search tkinter py-tkinter python/py-tkinter 2.4.3 Python bindings to the Tk widget set
From the man page: "search: Search for an available port whose name matches a regular expression." The port name "py-tkinter" does not match the regular expression "python", so "port search python" will not output "py-tkinter". If what you're trying to do is produce a list of all ports whose name, category or description matches "python", the command would be port list | grep -i python Hope this helps, Marc
Hi Belinda, Something like 'port search long_description:foo' should do the trick. -- Pierre belinda thom wrote:
Hi,
Is there a particular reason that searching for python ports produces:
51 % port search python gnome-bindings-python devel/gnome-bindings-python 2.12 The GNOME bindings for Python subversion-pythonbindings devel/subversion-pythonbindings 1.4.2 Python bindings for the subversion version control system. gnome-python-desktop gnome/gnome-python-desktop 2.14.0 Python modules for some GNOME Desktop libraries. python21 lang/python21 2.1.3 An interpreted, object-oriented programming language python22 lang/python22 2.2.3 An interpreted, object-oriented programming language python23 lang/python23 2.3.5 An interpreted, object-oriented programming language python24 lang/python24 2.4.3 An interpreted, object-oriented programming language python25 lang/python25 2.5 An interpreted, object-oriented programming language py-biopython python/py-biopython 1.41 python tools for computational molecular biology py-dnspython python/py-dnspython 1.3.5 DNS toolkit for Python py-ipython python/py-ipython 0.7.2 An enhanced Interactive Python shell py-pythoncad python/py-pythoncad DS1-R22 Python-based CAD package py-wxpython python/py-wxpython 2.6.3.2 Python interface to the wxWindows cross platform GUI mod_python www/mod_python 3.2.8 Apache2 module that embeds Python within the server.
but that tkinter isn't included in this list?
52 % port search tkinter py-tkinter python/py-tkinter 2.4.3 Python bindings to the Tk widget set
Thanks!
--b _______________________________________________ macports-users mailing list macports-users@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo/macports-users
Can somebody on Tiger run the following perl program and post whether you get to "C"? My installation hangs at "A". Thank you. -- Sal smile. #!/usr/bin/env perl use strict; use warnings; require POSIX; print "A\n"; my $defaultZone = POSIX::strftime('%z',0,0,0,0,0,0,0); print "B\n"; my $defaultZoneName = POSIX::strftime('%Z',0,0,0,0,0,0,0); print "C\n"; -------------- Salvatore Domenick Desiano Doctoral Candidate Robotics Institute Carnegie Mellon University
On 11/13/06, Salvatore Domenick Desiano <sal@ri.cmu.edu> wrote:
Can somebody on Tiger run the following perl program and post whether you get to "C"? My installation hangs at "A".
Mine hangs at A as well. On the other hand, according to "perldoc POSIX" If you want your code to be portable, your format ("fmt") argument should use only the conversion specifiers defined by the ANSI C standard (C89, to play safe). These are "aAbBcdHIjmMpSUwWxXyYZ%". --dave -- David Glasser | glasser@mit.edu | http://www.davidglasser.net/
I also see the hang (both Tiger and Leopard) . It's hanging here: #0 0x90020d71 in __findenv () #1 0x900023dc in getenv () #2 0x900a4c24 in _st_tzset_basic () #3 0x90013723 in tzset () #4 0x9008c61c in strftime_l () #5 0x9008c875 in strftime () #6 0x0026c77a in Perl_my_strftime () #7 0x00033c44 in XS_POSIX_strftime () #8 0x002850bd in Perl_pp_entersub () #9 0x0027bc89 in Perl_runops_standard () #10 0x00208a10 in perl_run () Looks like you found a bug! A radar has been filed. - Jordan On Nov 12, 2006, at 10:18 PM, Salvatore Domenick Desiano wrote:
Can somebody on Tiger run the following perl program and post whether you get to "C"? My installation hangs at "A".
Thank you.
-- Sal smile.
#!/usr/bin/env perl
use strict; use warnings;
require POSIX;
print "A\n"; my $defaultZone = POSIX::strftime('%z',0,0,0,0,0,0,0); print "B\n"; my $defaultZoneName = POSIX::strftime('%Z',0,0,0,0,0,0,0); print "C\n";
-------------- Salvatore Domenick Desiano Doctoral Candidate Robotics Institute Carnegie Mellon University
_______________________________________________ macports-users mailing list macports-users@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo/macports-users
True, though "portable" for Perl usually means "consitent". If it hangs, it's a bug. I'll post a bug. Apple has fixed this on their version, so hopefully it won't be hard to track down. -- Sal smile. On Mon, 13 Nov 2006, David Glasser wrote: o On 11/13/06, Salvatore Domenick Desiano <sal@ri.cmu.edu> wrote: o > Can somebody on Tiger run the following perl program and post whether o > you get to "C"? My installation hangs at "A". o o Mine hangs at A as well. On the other hand, according to "perldoc POSIX" o o If you want your code to be portable, your format ("fmt") o argument should use only the conversion specifiers defined by o the ANSI C standard (C89, to play safe). These are o "aAbBcdHIjmMpSUwWxXyYZ%". o o --dave o o -- o David Glasser | glasser@mit.edu | http://www.davidglasser.net/ o o -------------- Salvatore Domenick Desiano Doctoral Candidate Robotics Institute Carnegie Mellon University
That's true, and it looks like %z should work in the OS. --dave On 11/13/06, Salvatore Domenick Desiano <sal@ri.cmu.edu> wrote:
True, though "portable" for Perl usually means "consitent". If it hangs, it's a bug.
I'll post a bug. Apple has fixed this on their version, so hopefully it won't be hard to track down.
-- Sal smile.
On Mon, 13 Nov 2006, David Glasser wrote:
o On 11/13/06, Salvatore Domenick Desiano <sal@ri.cmu.edu> wrote: o > Can somebody on Tiger run the following perl program and post whether o > you get to "C"? My installation hangs at "A". o o Mine hangs at A as well. On the other hand, according to "perldoc POSIX" o o If you want your code to be portable, your format ("fmt") o argument should use only the conversion specifiers defined by o the ANSI C standard (C89, to play safe). These are o "aAbBcdHIjmMpSUwWxXyYZ%". o o --dave o o -- o David Glasser | glasser@mit.edu | http://www.davidglasser.net/ o o
-------------- Salvatore Domenick Desiano Doctoral Candidate Robotics Institute Carnegie Mellon University
-- David Glasser | glasser@mit.edu | http://www.davidglasser.net/
participants (7)
-
belinda thom
-
David Glasser
-
John Labovitz
-
Jordan K. Hubbard
-
Marc André Selig
-
Pierre Queinnec
-
Salvatore Domenick Desiano