summaryrefslogtreecommitdiff
path: root/lang/pypy-devel (follow)
Commit message (Collapse)AuthorAgeFilesLines
* lang/pypy: update to 2.5.1David Naylor2015-05-1816-4475/+0
| | | | | | | | | | | | | Changes: * Merge pypy-devel into pypy * Drop pypy-devel (was intended to track pypy-current but no automated process was implemented) * Drop upstreamed patches PR: 199790 Notes: svn path=/head/; revision=386702
* pypy-devel: update to 2.5David Naylor2015-02-106-10/+50
| | | | | | | | | | | | | Changes: * Improved warmup time. * Improved hitted code performance (+10% compared to v2.4). * Passing objects between C and PyPy has been improved. * Integrated numpy support gains GenericUfunc API. * Dictionaries are ordered by default. * More careful handling of errno. Notes: svn path=/head/; revision=378793
* Backport lang/pypy-devel to lang/pypy.David Naylor2015-01-141-12/+13
| | | | | | | | Changes: - Update memory requires (less for pypy, more for python). Notes: svn path=/head/; revision=377034
* Update lang/pypy-devel to 2.4.0.David Naylor2014-12-074-26/+56
| | | | | | | | | | | | | | | | | | | | | Release update for further testing by community. Change Log: - Reduced internal copying of bytearray operations - Tweak the internal structure of StringBuilder to speed up large string handling, which becomes advantageous on large programs at the cost of slightly slower small benchmark type programs. - Move to a mixed polling and mutex GIL model that make mutlithreaded jitted code run much faster - Remove ctypes pythonapi and ctypes.PyDLL, which never worked on PyPy - Fix performance regression on ufunc(<scalar>, <scalar>) in numpy - Classes in the ast module are now distinct from structures used by the compiler, which simplifies and speeds up translation of our source code to the PyPy binary interpreter - Upgrade stdlib from 2.7.5 to 2.7.8 Notes: svn path=/head/; revision=374218
* Cleanup plistBaptiste Daroussin2014-10-271-102/+0
| | | | Notes: svn path=/head/; revision=371587
* - Convert ports of irc/ and lang/ to new USES=pythonMarcus von Appen2014-10-201-1/+1
| | | | | | | Approved by: portmgr (implicit) Notes: svn path=/head/; revision=371288
* - Chase database/sqlite3 slib bumpMartin Wilke2014-06-271-0/+1
| | | | | | | Approved by: portmgr (myself) Notes: svn path=/head/; revision=359586
* Pet portlint and add local-distfiles for lang/pypy-devel.David Naylor2014-06-162-2/+2
| | | | | | | | PR: 190881 Submitted by: ports@robakdesign.com Notes: svn path=/head/; revision=357964
* Update lang/pypy-devel to 2.3.1.David Naylor2014-06-103-6/+10
| | | | | | | | | | | | ChangeLog: * The built-in struct module was renamed to _struct, solving issues with IDLE and other modules * Support for compilation with gcc-4.9 * A CFFI-based version of the gdbm module is now included in our binary bundle * Many issues were resolved since the 2.3 release on May 8 Notes: svn path=/head/; revision=357358
* Update lang/pypy-devel to 2.3.David Naylor2014-05-135-21/+102
| | | | | | | | | | | | | | | | Due to reported regressions, only 2.3.1 will be merged to stable lang/pypy. ChangeLog: This release updates the stdlib from 2.7.3, jumping directly to 2.7.6. This release also contains several bugfixes and performance improvements, many generated by real users finding corner cases. CFFI has made it easier than ever to use existing C code with both cpython and PyPy, easing the transition for packages like cryptography, Pillow(Python Imaging Library [Fork]), a basic port of pygame-cffi, and others. Notes: svn path=/head/; revision=353979
* Update my ports to be compliant with new USES framework and fix other issues.David Naylor2014-04-241-2/+1
| | | | | | | | | | | | | | Changes: * various: migrate USE_BZIP2 to USES=tar:bzip2 * various: migrate USE_XZ to USES=tar:xz * multimedia/py-ffmpeg: add and prefer github (GH) as master site * ports-mgmt/portbuilder: specify license as BSD2CLAUSE (instead of just BSD) Most ports are updated infrequently so a single batch commit is preferred over collating changes per port. Notes: svn path=/head/; revision=352062
* Do not violate stagedirAntoine Brodin2014-04-021-3/+0
| | | | | | | | Reported by: poudriere With hat: portmgr Notes: svn path=/head/; revision=349904
* Fix lang/pypy-devel's sysconfig.py file.David Naylor2014-03-112-3/+4
| | | | | | | | | In python the 'purelib' and 'platlib' paths should contain 'site-packages' however the original pypy code does not thus the patch did not either however this is not consistent with distutils/sysconfig.py. Notes: svn path=/head/; revision=347933
* Python cleanup:Rene Ladan2014-01-131-1/+1
| | | | | | | | | | - USE_PYTHON* = 2.X -> USE_PYTHON* = 2 - USE_PYTHON* = 2.X+ -> USE_PYTHON* = yes Reviewed by: python (mva, rm) Approved by: portmgr-lurkers (mat) Notes: svn path=/head/; revision=339634
* Update lang/pypy-devel to development snapshot at 16-Dec-'13.David Naylor2013-12-176-29/+60
| | | | | | | | | | | | | | | | | | | | Changes: 1) Fix installation with LOCALBASE!=/usr/local 2) Properly detect the number of CPUs for concurrent builds Notes: 1) The cffi based module _sqlite3.py needs to know where to find sqlite3.h, which is hard-coded into the file, however the '.so' created is based on the checksum of _sqlite3.py that changes when changing the hard-coded path. Change this by properly using the LOCALBASE environment variable. 2) This change does not modify the behaviour of the port as this port runs the compilation stage directly, and correctly, however this change will be upstreamed. Notes: svn path=/head/; revision=336767
* Remove LATEST_LINK from my ports and fix CONFLICTS for lang/pypy.David Naylor2013-12-101-1/+0
| | | | Notes: svn path=/head/; revision=336078
* Update lang/pypy-devel to 2.2.1.David Naylor2013-12-103-15/+15
| | | | | | | - Update the memory requirements, decreasing from previous version. Notes: svn path=/head/; revision=336049
* Update lang/pypy-devel to 2.2 (for wider testing).David Naylor2013-11-164-46/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes: * Strip cffi libraries Outstanding items: * Fix virtualenv bug (ports/183795) * Update memory and compiler times (Makefile, wiki) ChangeLog: * Our Garbage Collector is now "incremental". It should avoid almost all pauses due to a major collection taking place. Previously, it would pause the program (rarely) to walk all live objects, which could take arbitrarily long if your process is using a whole lot of RAM. Now the same work is done in steps. This should make PyPy more responsive, e.g. in games. There are still other pauses, from the GC and the JIT, but they should be on the order of 5 milliseconds each. * The JIT counters for hot code were never reset, which meant that a process running for long enough would eventually JIT-compile more and more rarely executed code. Not only is it useless to compile such code, but as more compiled code means more memory used, this gives the impression of a memory leak. This has been tentatively fixed by decreasing the counters from time to time. * NumPy has been split: now PyPy only contains the core module, called _numpypy. The numpy module itself has been moved to https://bitbucket.org/pypy/numpy and numpypy disappeared. You need to install NumPy separately with a virtualenv: pip install git+https://bitbucket.org/pypy/numpy.git; or directly: git clone https://bitbucket.org/pypy/numpy.git; cd numpy; pypy setup.py install. * non-inlined calls have less overhead * Things that use sys.set_trace are now JITted (like coverage) * JSON decoding is now very fast (JSON encoding was already very fast) * various buffer copying methods experience speedups (like list-of-ints to int[] buffer from cffi) * We finally wrote (hopefully) all the missing os.xxx() functions, including os.startfile() on Windows and a handful of rare ones on Posix. * numpy has a rudimentary C API that cooperates with cpyext Notes: svn path=/head/; revision=334004
* Add stage support to lang/pypy, lang/pypy-devel and lang/pypy3-devel.David Naylor2013-11-071-17/+8
| | | | | | | | | Also, require a modern compiler that can handle c11. Although this is not strictly required (just about any C compiler would do) the base GCC compiler has a memory bug and thus cannot reasonably compile the ports. Notes: svn path=/head/; revision=333113
* Add NO_STAGE all over the place in preparation for the staging support (cat: ↵Baptiste Daroussin2013-09-201-0/+1
| | | | | | | lang) Notes: svn path=/head/; revision=327741
* Fix the pypy ports.David Naylor2013-08-121-2/+3
| | | | | | | | | | | | | | | Be more aggresive in cleaning up temporary directories that pypy leaves behind in the copied directories (files and directories in __pycache__). Only .so and .pyc should be left behind in those __pycache__ directories and no subdirectories. Also remove the manual requirement for building lang/pypy. Redports successfully built lang/pypy3-devel (with leftovers) in 19 hours. Reported by: Redports Notes: svn path=/head/; revision=324639
* Backport and fix-up lang/pypy* ports.David Naylor2013-08-111-2/+2
| | | | | | | | | | | | | | | | | | pypy: - fix sysconfig.py's include path - bump PORTREVISION due to above fix pypy-devel: - remove duplicate '-e' when creating pkg-plist - ancillary port functionality (thus no PORTREVISION bump) pypy3-devel: - add missing patch - fix pkg-plist - build fails without above patch (thus no PORTREVISION bump) Notes: svn path=/head/; revision=324604
* Add lang/pypy-devel for non-stable releases of PyPy.David Naylor2013-08-1114-0/+4428
pypy-devel is intended as a staging ground for beta releases and - while no beta releases are available - snapshots of pypy default branch. While introducing pypy-devel to build logic has been reworked to better accomodate pypy3. The lib-python/2.7 and lib_pypy folders are not renamed after extraction (with only symbolic links used to emulate the structure). PyPy still expects the standard structure and the symbolic links satisfy this change. The devel port was requested by mva@ to better support commercial clients. Notes: svn path=/head/; revision=324601