<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pkgsrc/lang/py-psyco, branch pkgsrc_2005Q2</title>
<subtitle>[no description]</subtitle>
<id>https://git.osdyson.ru/mirror/pkgsrc/atom?h=pkgsrc_2005Q2</id>
<link rel='self' href='https://git.osdyson.ru/mirror/pkgsrc/atom?h=pkgsrc_2005Q2'/>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/'/>
<updated>2005-05-23T08:26:03Z</updated>
<entry>
<title>Removed trailing white-space.</title>
<updated>2005-05-23T08:26:03Z</updated>
<author>
<name>rillig</name>
<email>rillig</email>
</author>
<published>2005-05-23T08:26:03Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=88fbe0b4f045070c1d74e80e2ff7448527e556e4'/>
<id>urn:sha1:88fbe0b4f045070c1d74e80e2ff7448527e556e4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.</title>
<updated>2005-04-11T21:44:48Z</updated>
<author>
<name>tv</name>
<email>tv</email>
</author>
<published>2005-04-11T21:44:48Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=2560f48b2f5afa9fcb23e0718a2e2727ca7824cc'/>
<id>urn:sha1:2560f48b2f5afa9fcb23e0718a2e2727ca7824cc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add RMD160 digests</title>
<updated>2005-02-24T09:03:05Z</updated>
<author>
<name>agc</name>
<email>agc</email>
</author>
<published>2005-02-24T09:03:05Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=6228209cdf7c2171878655ed12067f6c0cdec797'/>
<id>urn:sha1:6228209cdf7c2171878655ed12067f6c0cdec797</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Build Python with thread support by default and turn the existing</title>
<updated>2005-01-23T20:41:45Z</updated>
<author>
<name>recht</name>
<email>recht</email>
</author>
<published>2005-01-23T20:41:45Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=afb6c634cf36bd0b8ca88bdb63f886e1d081aada'/>
<id>urn:sha1:afb6c634cf36bd0b8ca88bdb63f886e1d081aada</id>
<content type='text'>
python*-pth packages into meta-packages which will install the non-pth
packages. Bump PKGREVISIONs on the non-pth versions to propagate the
thread change, but leave the *-pth versions untouched to not affect
existing installations.
Sync all PYTHON_VERSIONS_AFFECTED lines in package Makefiles.
</content>
</entry>
<entry>
<title>add python as category</title>
<updated>2004-07-22T09:15:59Z</updated>
<author>
<name>recht</name>
<email>recht</email>
</author>
<published>2004-07-22T09:15:59Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=7e0557702b6d438187125c40c0516561917b79d2'/>
<id>urn:sha1:7e0557702b6d438187125c40c0516561917b79d2</id>
<content type='text'>
ok'd a while back at pkgsrcCon by agc and wiz
</content>
</entry>
<entry>
<title>update to 1.2</title>
<updated>2004-03-04T14:33:55Z</updated>
<author>
<name>recht</name>
<email>recht</email>
</author>
<published>2004-03-04T14:33:55Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=71bc27b878f3a1c3b144af588a6ee00b80131de1'/>
<id>urn:sha1:71bc27b878f3a1c3b144af588a6ee00b80131de1</id>
<content type='text'>
Includes support for Fedora, plus a number of smaller bug fixes.
</content>
</entry>
<entry>
<title>Move WRKSRC definition away from the first paragraph in a Makefile.</title>
<updated>2004-01-20T12:18:15Z</updated>
<author>
<name>agc</name>
<email>agc</email>
</author>
<published>2004-01-20T12:18:15Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=1e53090cc228edde244c3b79950271b8ca469b1f'/>
<id>urn:sha1:1e53090cc228edde244c3b79950271b8ca469b1f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Intial import of py-psyco 1.1.1</title>
<updated>2003-10-01T22:39:06Z</updated>
<author>
<name>recht</name>
<email>recht</email>
</author>
<published>2003-10-01T22:39:06Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=ef509d1c34851e1fd93877e8511cacbc8769c2ea'/>
<id>urn:sha1:ef509d1c34851e1fd93877e8511cacbc8769c2ea</id>
<content type='text'>
from the pkgsrc-wip pkg by Michal Pasternak

Psyco is a specializing compiler. In a few words let us first see:

What you can do with it

In short: run your existing Python software much faster, with no change in
your source.
Think of Psyco as a kind of just-in-time (JIT) compiler, a little bit like 
Java's, that emit machine code on the fly instead of interpreting your Python
program step by step. The result is that your unmodified Python programs run
faster.

Benefits
2x to 100x speed-ups, typically 4x, with an unmodified Python interpreter and
unmodified source code, just a dynamically loadable C extension module.

Drawbacks
Psyco currently uses quite a lot of memory. It only runs on Intel 
386-compatible processors (under any OS) right now. There are some subtle
semantic differences (i.e. bugs) with the way Python works; they should not be
apparent in most programs.
</content>
</entry>
</feed>
