[pypy-svn] r71638 - in pypy/build/ubuntu/debian: . manpages

getxsick at codespeak.net getxsick at codespeak.net
Tue Mar 2 15:16:08 CET 2010


Author: getxsick
Date: Tue Mar  2 15:16:07 2010
New Revision: 71638

Removed:
   pypy/build/ubuntu/debian/manpages/pypy-stackless.1
   pypy/build/ubuntu/debian/pypy-stackless.install
   pypy/build/ubuntu/debian/pypy-stackless.manpages
Modified:
   pypy/build/ubuntu/debian/Makefile.in
   pypy/build/ubuntu/debian/configure.py
   pypy/build/ubuntu/debian/control
Log:
remove pypy-stackless package


Modified: pypy/build/ubuntu/debian/Makefile.in
==============================================================================
--- pypy/build/ubuntu/debian/Makefile.in	(original)
+++ pypy/build/ubuntu/debian/Makefile.in	Tue Mar  2 15:16:07 2010
@@ -3,13 +3,11 @@
 TRANSLATE=pypy/translator/goal/translate.py
 TRANSLATEOPTS=--text --batch -b c --source --thread
 TARGETOPTS=%(TARGETOPTS)s
-TARGETOPTS_STACKLESS=%(TARGETOPTS_STACKLESS)s
 PREFIX=%(PREFIX)s
 OUTPUTDIR=debian/tmp/usr/bin
-STACKLESS=--stackless
 LOGIC=-o logic
 
-BINARIES=bin/pypy bin/pypy-stackless
+BINARIES=bin/pypy
 
 all: $(BINARIES)
 
@@ -23,14 +21,6 @@
 	make -C $(TMPDIR)/debian-pypy-usession-0/testing_1
 	install -D $(TMPDIR)/debian-pypy-usession-0/testing_1/testing_1 $@
 
-bin/pypy-stackless: export TMPDIR = $(CURDIR)/build-stackless
-bin/pypy-stackless:
-	@rm -rf $(TMPDIR)
-	mkdir $(TMPDIR)
-	$(TRANSLATE) $(TRANSLATEOPTS) $(STACKLESS) $(TARGET) $(TARGETOPTS_STACKLESS)
-	make -C $(TMPDIR)/debian-pypy-usession-0/testing_1
-	install -D $(TMPDIR)/debian-pypy-usession-0/testing_1/testing_1 $@
-
 clean:
 	rm -rf bin
 	rm -rf build-*

Modified: pypy/build/ubuntu/debian/configure.py
==============================================================================
--- pypy/build/ubuntu/debian/configure.py	(original)
+++ pypy/build/ubuntu/debian/configure.py	Tue Mar  2 15:16:07 2010
@@ -25,17 +25,14 @@
 
 def gen_make(make_in, build_arch, host_arch, prefix):
     options = {'default': {'TARGETOPTS': '--allworkingmodules',
-                           'TARGETOPTS_STACKLESS': '--allworkingmodules',
                            'TARGETOPTS_LOGIC': '--allworkingmodules',
                            },
 
                'i386': {'TARGETOPTS': '--allworkingmodules --faassen',
-                           'TARGETOPTS_STACKLESS': '--allworkingmodules --faassen',
                            'TARGETOPTS_LOGIC': '--allworkingmodules',
                            },
 
                'amd64':{'TARGETOPTS': '--allworkingmodules --faassen',
-                        'TARGETOPTS_STACKLESS': '--allworkingmodules',
                         'TARGETOPTS_LOGIC': '--allworkingmodules',
                         },
                }

Modified: pypy/build/ubuntu/debian/control
==============================================================================
--- pypy/build/ubuntu/debian/control	(original)
+++ pypy/build/ubuntu/debian/control	Tue Mar  2 15:16:07 2010
@@ -34,18 +34,7 @@
  .
  This package provides the PyPy interpreter compiled using the C backend
  and no special additionnal functionality. As such it can be used as another
- implementation of the Python language. See pypy-stackless for an enhanced
- version.
-
-Package: pypy-stackless
-Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, pypy-lib
-Description: the python in python interpreter, C backend translation
- The PyPy project aims to provide a Python implementation of the Python
- interpreter.
- .
- This package provides the PyPy interpreter compiled using the C backend, with
- stackless functionality.
+ implementation of the Python language.
 
 Package: pypy-doc
 Architecture: all



More information about the Pypy-commit mailing list