debian/0000755000000000000000000000000012255574337007203 5ustar debian/source/0000755000000000000000000000000012255574337010503 5ustar debian/source/format0000644000000000000000000000001412255574337011711 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000644212255574337011063 0ustar nqp (2013.12.1-1) unstable; urgency=medium * New upstream release * Add 08_disable-failing-qregex-test.patch to fix FTBFS (Closes: #731697) * Bump Standards-Version to 3.9.5 (no changes needed) -- Alessandro Ghedini Sun, 22 Dec 2013 15:36:09 +0100 nqp (2013.11.1-1) unstable; urgency=low * New upstream release -- Alessandro Ghedini Sun, 24 Nov 2013 14:24:19 +0100 nqp (2013.10-1) unstable; urgency=low * New upstream release * Bump versioned (Build-)Depends on parrot * Update patches * Install new README.pod * Fix vcs-field-not-canonical * Do not install rubyish examples * Do not Depends on parrot-devel anymore * Add 07_disable-serialization-tests.patch -- Alessandro Ghedini Fri, 01 Nov 2013 12:09:18 +0100 nqp (2013.03-1) unstable; urgency=low * New upstream release * Bump versioned (Build-)Depends on parrot * Bump upstream copyright years * Add 06_disable-bigint-tests.patch * Add 07_fix-ppc-ftbfs.patch (Closes: #693901) Thanks to Roland Stigge * Update and refresh patches -- Alessandro Ghedini Thu, 04 Apr 2013 13:04:56 +0200 nqp (2012.10-1) unstable; urgency=low * New upstream release * Drop 07_fix-serialization-on-big-endian.patch (applied upstream) * Bump required parrot version * Bump Standards-Version to 3.9.4 (no changes needed) -- Alessandro Ghedini Sat, 20 Oct 2012 18:40:58 +0200 nqp (0.1~2012.04.1-3) unstable; urgency=low * Add 07_fix-serialization-on-big-endian.patch to fix FTBFS on big endian platforms -- Alessandro Ghedini Tue, 12 Jun 2012 10:34:27 +0200 nqp (0.1~2012.04.1-2) unstable; urgency=low * Fix typo in 04_use-dpkg-arch-in-dyncall-conf.patch to fix FTBFS on kfreebsd-* * Add 06_disable-bigint-div-test.patch to fix FTBFS on arm* and i386 -- Alessandro Ghedini Sun, 10 Jun 2012 13:01:50 +0200 nqp (0.1~2012.04.1-1) unstable; urgency=low * New upstream release * Bump required parrot version * Refresh patches * Bump upstream copyright years for dyncall * Use dh_parrot debhelper plugin -- Alessandro Ghedini Fri, 08 Jun 2012 14:57:52 +0200 nqp (0.1~2012.01-5) unstable; urgency=low * Add 05_fix-ftbfs-sparc.patch to fix a FTBFS on sparc -- Alessandro Ghedini Tue, 24 Apr 2012 08:57:14 +0200 nqp (0.1~2012.01-4) unstable; urgency=low * Manually depend on parrotapi-X.Y.Z * Use dpkg-architecture to guess build os and arch - Drop 04_fix-dyncall-armel-arch.patch - Add 04_use-dpkg-arch-in-dyncall-conf.patch -- Alessandro Ghedini Mon, 23 Apr 2012 20:28:30 +0200 nqp (0.1~2012.01-3) unstable; urgency=low * Add 04_fix-dyncall-armel-arch.patch (fix FTBFS on armel) * Explicitly set --with-parrot on configure (should fix FTBFS on mips) -- Alessandro Ghedini Thu, 19 Apr 2012 17:57:00 +0200 nqp (0.1~2012.01-2) unstable; urgency=low * Add disable-bigint-roundtrip-tests.patch to fix a FTBS on 32bit architectures (Closes: #668692) -- Alessandro Ghedini Thu, 19 Apr 2012 11:21:16 +0200 nqp (0.1~2012.01-1) unstable; urgency=low * Initial release (Closes: #643469) -- Alessandro Ghedini Tue, 10 Apr 2012 17:14:20 +0200 debian/examples0000644000000000000000000000015212255574337010742 0ustar examples/CallFromJava.java examples/fib.nqp examples/hello_world.nqp examples/json.nqp examples/loops.nqp debian/rules0000755000000000000000000000032612255574337010264 0ustar #!/usr/bin/make -f %: dh $@ --with=parrot override_dh_auto_configure: perl Configure.pl --with-parrot=/usr/bin/parrot override_dh_auto_build: dh_auto_build pod2man --name=nqp debian/running.pod debian/nqp.1 debian/clean0000644000000000000000000000001512255574337010204 0ustar debian/nqp.1 debian/docs0000644000000000000000000000002212255574337010050 0ustar README.pod docs/* debian/patches/0000755000000000000000000000000012255574337010632 5ustar debian/patches/02_fix-version.patch0000644000000000000000000000107312255574337014426 0ustar Description: Do not fetch upstream version from git Origin: vendor Forwarded: not-needed Author: Alessandro Ghedini Reviewed-by: Alessandro Ghedini Last-Update: 2013-10-24 --- a/tools/build/gen-version.pl +++ b/tools/build/gen-version.pl @@ -12,12 +12,6 @@ my $VERSION = <$fh>; close($fh); -# .git is a file and not a directory in submodule -if (-e '.git' && open(my $GIT, '-|', "git describe --tags")) { - $VERSION = <$GIT>; - close($GIT); -} - chomp $VERSION; my $builddate = strftime('%Y-%m-%dT%H:%M:%SZ', gmtime); debian/patches/07_disable-serialization-tests.patch0000644000000000000000000000052412255574337017600 0ustar Description: Disable serialization tests to avoid FTBFS on mipsel Origin: vendor Forwarded: not-needed Author: Alessandro Ghedini Last-Update: 2013-11-01 --- a/t/serialization/01-basic.t +++ b/t/serialization/01-basic.t @@ -1,5 +1,8 @@ #! nqp +plan(0); +nqp::exit(0); + plan(66); sub add_to_sc($sc, $idx, $obj) { debian/patches/series0000644000000000000000000000032212255574337012044 0ustar 01_fix-example-interpreter-not-absolute.patch 02_fix-version.patch 04_use-dpkg-arch-in-dyncall-conf.patch 06_disable-bigint-tests.patch 07_disable-serialization-tests.patch 08_disable-failing-qregex-test.patch debian/patches/01_fix-example-interpreter-not-absolute.patch0000644000000000000000000000151112255574337021343 0ustar Description: Use absolute interpreter in examples Origin: vendor Forwarded: not-needed Author: Alessandro Ghedini Reviewed-by: Alessandro Ghedini Last-Update: 2013-10-24 --- a/examples/fib.nqp +++ b/examples/fib.nqp @@ -1,4 +1,4 @@ -#! nqp +#!/usr/bin/nqp sub fib($n) { $n < 2 ?? $n !! fib($n-1) + fib($n - 2); --- a/examples/hello_world.nqp +++ b/examples/hello_world.nqp @@ -1,3 +1,3 @@ -#!nqp +#!/usr/bin/nqp say("Hello, awesome Not Quite Perl 6 World!"); --- a/examples/json.nqp +++ b/examples/json.nqp @@ -1,4 +1,4 @@ -#! nqp +#!/usr/bin/nqp # A JSON compiler written in NQP. To use this compiler, first # precompile the code to PIR, then run that: --- a/examples/loops.nqp +++ b/examples/loops.nqp @@ -1,4 +1,4 @@ -#! nqp +#!/usr/bin/nqp # Example of a while loop my $i := 0; debian/patches/04_use-dpkg-arch-in-dyncall-conf.patch0000644000000000000000000000446112255574337017570 0ustar Description: Use dpkg-architecture to guess the build OS and architecture This is to avoid misbuilding on e.g. chroots. Origin: vendor Forwarded: not-needed Author: Alessandro Ghedini Reviewed-by: Alessandro Ghedini Last-Update: 2012-04-23 --- a/3rdparty/dyncall/configure +++ b/3rdparty/dyncall/configure @@ -100,7 +100,7 @@ CONFIG_OS="" guess_os() { - OS=`uname -s` + OS=`dpkg-architecture -qDEB_BUILD_ARCH_OS` if [ "$OS" = "WindowsNT" ]; then CONFIG_OS="windows" elif [ "$OS" = "Darwin" ]; then @@ -116,14 +116,16 @@ [ "$OS" = "MINGW32_NT-5.1" ] || [ "$OS" = "MINGW32_NT-5.2" ]; then CONFIG_OS="msys" - elif [ "$OS" = "Linux" ]; then + elif [ "$OS" = "Linux" ] || + [ "$OS" = "linux" ]; then CONFIG_OS="linux" elif [ "$OS" = "SunOS" ]; then CONFIG_OS="sunos" elif [ "$OS" = "OpenBSD" ]; then CONFIG_OS="openbsd" elif [ "$OS" = "FreeBSD" ] || - [ "$OS" = "GNU/kFreeBSD" ]; then + [ "$OS" = "GNU/kFreeBSD" ] || + [ "$OS" = "kfreebsd" ]; then CONFIG_OS="freebsd" elif [ "$OS" = "NetBSD" ]; then CONFIG_OS="netbsd" @@ -178,7 +180,7 @@ CONFIG_ARCH="ppc32" fi else - ARCH=`uname -m` + ARCH=`dpkg-architecture -qDEB_BUILD_ARCH_CPU` if [ "$ARCH" = "Power Macintosh" ] || [ "$ARCH" = "ppc" ] || [ "$ARCH" = "macppc" ] || [ "$ARCH" = "powerpc" ]; then CONFIG_ARCH="ppc32" elif [ "$ARCH" = "ppc64" ]; then @@ -187,7 +189,7 @@ CONFIG_ARCH="x86" elif [ "$ARCH" = "amd64" ] || [ "$ARCH" = "x86_64" ] || [ "$ARCH" = "x64" ]; then CONFIG_ARCH="x64" - elif [ "$ARCH" = "acorn32" ] || [ "$ARCH" = "cats" ] || [ "$ARCH" = "shark" ] || [ "$ARCH" = "armv7l" ] || [ "$ARCH" = "armv5tejl" ]; then + elif [ "$ARCH" = "arm" ] || [ "$ARCH" = "acorn32" ] || [ "$ARCH" = "cats" ] || [ "$ARCH" = "shark" ] || [ "$ARCH" = "armv7l" ] || [ "$ARCH" = "armv5tejl" ]; then CONFIG_ARCH="arm32_arm" elif [ "$ARCH" = "BePC" ]; then CONFIG_ARCH="x86" @@ -197,7 +199,7 @@ CONFIG_ARCH="mips32el" elif [ "$ARCH" = "loongson" ]; then CONFIG_ARCH="mips64el" - elif [ "$ARCH" = "sparc64" ]; then + elif [ "$ARCH" = "sparc" ] || [ "$ARCH" = "sparc64" ]; then CONFIG_ARCH="sparc" elif [ "$ARCH" = "ia64" ]; then CONFIG_ARCH="ia64" debian/patches/99_use-system-libtommath.patch0000644000000000000000000000422212255574337016450 0ustar --- a/src/pmc/sixmodelobject.pmc +++ b/src/pmc/sixmodelobject.pmc @@ -28,7 +28,7 @@ /* We need to know how to boolify bigints. Really need something better, * but this will do for now. */ -#include "../../3rdparty/libtommath/tommath.h" +#include "tommath.h" #include "../6model/reprs/P6bigint.h" #define bigint_repr_id 7 --- a/tools/build/Makefile.in +++ b/tools/build/Makefile.in @@ -44,7 +44,7 @@ PMC2C = $(PERL) $(PARROT_TOOLS_DIR)/build/pmc2c.pl PMC2C_INCLUDES = --include src/pmc --include $(PARROT_SRC_DIR) --include $(PARROT_SRC_DIR)/pmc CINCLUDES = -I$(PARROT_INCLUDE_DIR) -I$(PARROT_INCLUDE_DIR)/pmc -LINKARGS = $(LDFLAGS) $(LD_LOAD_FLAGS) $(LIBPARROT) @libs@ @icu_shared@ +LINKARGS = $(LDFLAGS) $(LD_LOAD_FLAGS) $(LIBPARROT) @libs@ @icu_shared@ -ltommath # nqp directories DYNEXT_DIR = dynext @@ -942,11 +942,11 @@ 3rdparty/libtommath/bn_s_mp_sub$(O): 3rdparty/libtommath/bn_s_mp_sub.c $(LIBTOMMATH_H) cd 3rdparty/libtommath && $(CC) -c @cc_o_out@bn_s_mp_sub$(O) -I. $(CFLAGS) bn_s_mp_sub.c -$(OPS_DIR)/$(BIGINT_OPS)$(LOAD_EXT): $(OPS_DIR)/$(BIGINT_OPS_SOURCE) $(LIBTOMMATH_BIN) $(LIBTOMMATH_H) src/6model/reprs/P6bigint.h src/6model/reprs/P6bigint.c +$(OPS_DIR)/$(BIGINT_OPS)$(LOAD_EXT): $(OPS_DIR)/$(BIGINT_OPS_SOURCE) src/6model/reprs/P6bigint.h src/6model/reprs/P6bigint.c cd $(OPS_DIR) && $(OPS2C) C --dynamic $(BIGINT_OPS_SOURCE) - cd $(OPS_DIR) && $(CC) -c @cc_o_out@$(BIGINT_OPS)$(O) $(CINCLUDES) -I../../3rdparty/libtommath $(CFLAGS) $(BIGINT_OPS).c - cd src/6model/reprs && $(CC) -c @cc_o_out@P6bigint$(O) -I../../../$(PMC_DIR) -I../../../3rdparty/libtommath $(CINCLUDES) $(CFLAGS) P6bigint.c - cd $(OPS_DIR) && $(LD) @ld_out@$(BIGINT_OPS)$(LOAD_EXT) $(BIGINT_OPS)$(O) ../../3rdparty/libtommath/*$(O) ../6model/reprs/P6bigint$(O) $(LINKARGS) + cd $(OPS_DIR) && $(CC) -c @cc_o_out@$(BIGINT_OPS)$(O) $(CINCLUDES) $(CFLAGS) $(BIGINT_OPS).c + cd src/6model/reprs && $(CC) -c @cc_o_out@P6bigint$(O) -I../../../$(PMC_DIR) $(CINCLUDES) $(CFLAGS) P6bigint.c + cd $(OPS_DIR) && $(LD) @ld_out@$(BIGINT_OPS)$(LOAD_EXT) $(BIGINT_OPS)$(O) ../6model/reprs/P6bigint$(O) $(LINKARGS) $(DYNCALL_BIN): @dyncall_build@ debian/patches/06_disable-bigint-tests.patch0000644000000000000000000000061212255574337016174 0ustar Description: Disable failing bigint tests Origin: vendor Bug: https://github.com/perl6/nqp/issues/28 Bug-Debian: http://bugs.debian.org/668692 Forwarded: not-needed Author: Alessandro Ghedini Last-Update: 2013-10-24 --- a/t/nqp/60-bigint.t +++ b/t/nqp/60-bigint.t @@ -1,6 +1,9 @@ #! nqp use nqpmo; +plan(0); +nqp::exit(0); + plan(47); my $knowhow := nqp::knowhow(); debian/patches/08_disable-failing-qregex-test.patch0000644000000000000000000000201212255574337017435 0ustar Description: Disable failing qregex test (apparently due to ICU 51.2) Origin: vendor Bug-Debian: http://bugs.debian.org/731697 Forwarded: no Author: Alessandro Ghedini Last-Update: 2013-12-22 --- a/t/qregex/rx_metachars +++ b/t/qregex/rx_metachars @@ -155,7 +155,7 @@ ^ \h+ $ \x000a\x000b\x000c\x000d\x0085 n 0-255 horizontal whitespace (\h) ^ \v+ $ \x0009\x0020\x00a0 n 0-255 vertical whitespace (\v) # todo :pugs -^ \s+ $ \x1680\x180e\x2000\x2001\x2002\x2003\x2004\x2005\x2006\x2007\x2008\x2008\x2009\x200a\x202f\x205f\x3000 y unicode whitespace (\s) +^ \s+ $ \x1680\x180e\x2000\x2001\x2002\x2003\x2004\x2005\x2006\x2007\x2008\x2008\x2009\x200a\x202f\x205f\x3000 n unicode whitespace (\s) # todo :pugs ^ \h+ $ \x1680\x180e\x2000\x2001\x2002\x2003\x2004\x2005\x2006\x2007\x2008\x2008\x2009\x200a\x202f\x205f\x3000 y unicode whitespace (\h) ^ \V+ $ \x1680\x180e\x2000\x2001\x2002\x2003\x2004\x2005\x2006\x2007\x2008\x2008\x2009\x200a\x202f\x205f\x3000 y unicode whitespace (\V) debian/compat0000644000000000000000000000000212255574337010401 0ustar 9 debian/control0000644000000000000000000000225412255574337010611 0ustar Source: nqp Section: interpreters Priority: optional Maintainer: Debian Rakudo Maintainers Uploaders: Alessandro Ghedini , Dominique Dumont Build-Depends: debhelper (>= 9), perl, parrot-devel (>= 5.9.0), libicu-dev, libreadline-dev Standards-Version: 3.9.5 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-rakudo/nqp.git;a=summary Vcs-Git: git://anonscm.debian.org/pkg-rakudo/nqp.git Homepage: https://github.com/perl6/nqp Package: nqp Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, ${parrot:Depends} Description: Not Quite Perl compiler "Not Quite Perl" is a compiler for quickly generating PIR routines from Perl6-like code. The key feature of NQP is that it's designed to be a very small compiler (as compared with, say, perl6 or Rakudo) and is focused on being a high-level way to create compilers and libraries for virtual machines (such as the Parrot Virtual Machine). . Unlike a full-fledged implementation of Perl 6, NQP strives to have as small a runtime footprint as it can, while still providing a Perl 6 object model and regular expression engine for the virtual machine. debian/manpages0000644000000000000000000000001512255574337010715 0ustar debian/nqp.1 debian/watch0000644000000000000000000000010112255574337010224 0ustar version=3 http://rakudo.org/downloads/nqp/nqp-([\d+\.]*).tar.gz debian/copyright0000644000000000000000000002670412255574337011147 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: NQP Source: https://github.com/perl6/nqp Files: * Copyright: 2009-2013, The Perl Foundation License: Artistic-2.0 Files: tools/build/gen-bootstrap.pl Copyright: 2009, Patrick R. Michaud License: Artistic-2.0 Files: 3rdparty/dyncall/* Copyright: 2007-2012, Daniel Adler License: ISC Files: 3rdparty/dyncall/dyncall/dyncall_struct.* 3rdparty/dyncall/dynload/dynload_syms_mach-o.c 3rdparty/dyncall/dynload/dynload_darwin.c Copyright: 2007-2011 Olivier Chafik License: ISC Files: 3rdparty/dyncall/dynload/BSDmakefile Copyright: 2007-2011, Tassilo Philipp 2007-2009 Daniel Adler License: ISC Files: 3rdparty/libtommath/* Copyright: 2004, Sam Hocevar License: Dual LibTomMath is licensed under DUAL licensing terms. . Choose and use the license of your needs. . [LICENSE #1] . LibTomMath is public domain. As should all quality software be. . Tom St Denis . [/LICENSE #1] . [LICENSE #2] . DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE Version 2, December 2004 . Copyright (C) 2004 Sam Hocevar . Everyone is permitted to copy and distribute verbatim or modified copies of this license document, and changing it is allowed as long as the name is changed. . DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION . 0. You just DO WHAT THE FUCK YOU WANT TO. . [/LICENSE #2] Files: 3rdparty/sha1/* Copyright: Public Domain License: Public_Domain 100% Public Domain Files: debian/* Copyright: 2011, Alessandro Ghedini License: Artistic-2.0 License: Artistic-2.0 The Artistic License 2.0 . Copyright (c) 2000-2006, The Perl Foundation. . Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. . Preamble . This license establishes the terms under which a given free software Package may be copied, modified, distributed, and/or redistributed. The intent is that the Copyright Holder maintains some artistic control over the development of that Package while still keeping the Package available as open source and free software. . You are always permitted to make arrangements wholly outside of this license directly with the Copyright Holder of a given Package. If the terms of this license do not permit the full use that you propose to make of the Package, you should contact the Copyright Holder and seek a different licensing arrangement. . Definitions . "Copyright Holder" means the individual(s) or organization(s) named in the copyright notice for the entire Package. . "Contributor" means any party that has contributed code or other material to the Package, in accordance with the Copyright Holder's procedures. . "You" and "your" means any person who would like to copy, distribute, or modify the Package. . "Package" means the collection of files distributed by the Copyright Holder, and derivatives of that collection and/or of those files. A given Package may consist of either the Standard Version, or a Modified Version. . "Distribute" means providing a copy of the Package or making it accessible to anyone else, or in the case of a company or organization, to others outside of your company or organization. . "Distributor Fee" means any fee that you charge for Distributing this Package or providing support for this Package to another party. It does not mean licensing fees. . "Standard Version" refers to the Package if it has not been modified, or has been modified only in ways explicitly requested by the Copyright Holder. . "Modified Version" means the Package, if it has been changed, and such changes were not explicitly requested by the Copyright Holder. . "Original License" means this Artistic License as Distributed with the Standard Version of the Package, in its current version or as it may be modified by The Perl Foundation in the future. . "Source" form means the source code, documentation source, and configuration files for the Package. . "Compiled" form means the compiled bytecode, object code, binary, or any other form resulting from mechanical transformation or translation of the Source form. . Permission for Use and Modification Without Distribution . (1) You are permitted to use the Standard Version and create and use Modified Versions for any purpose without restriction, provided that you do not Distribute the Modified Version. . Permissions for Redistribution of the Standard Version . (2) You may Distribute verbatim copies of the Source form of the Standard Version of this Package in any medium without restriction, either gratis or for a Distributor Fee, provided that you duplicate all of the original copyright notices and associated disclaimers. At your discretion, such verbatim copies may or may not include a Compiled form of the Package. . (3) You may apply any bug fixes, portability changes, and other modifications made available from the Copyright Holder. The resulting Package will still be considered the Standard Version, and as such will be subject to the Original License. . Distribution of Modified Versions of the Package as Source . (4) You may Distribute your Modified Version as Source (either gratis or for a Distributor Fee, and with or without a Compiled form of the Modified Version) provided that you clearly document how it differs from the Standard Version, including, but not limited to, documenting any non-standard features, executables, or modules, and provided that you do at least ONE of the following: . (a) make the Modified Version available to the Copyright Holder of the Standard Version, under the Original License, so that the Copyright Holder may include your modifications in the Standard Version. . (b) ensure that installation of your Modified Version does not prevent the user installing or running the Standard Version. In addition, the Modified Version must bear a name that is different from the name of the Standard Version. . (c) allow anyone who receives a copy of the Modified Version to make the Source form of the Modified Version available to others under . (i) the Original License or . (ii) a license that permits the licensee to freely copy, modify and redistribute the Modified Version using the same licensing terms that apply to the copy that the licensee received, and requires that the Source form of the Modified Version, and of any works derived from it, be made freely available in that license fees are prohibited but Distributor Fees are allowed. . Distribution of Compiled Forms of the Standard Version or Modified Versions without the Source . (5) You may Distribute Compiled forms of the Standard Version without the Source, provided that you include complete instructions on how to get the Source of the Standard Version. Such instructions must be valid at the time of your distribution. If these instructions, at any time while you are carrying out such distribution, become invalid, you must provide new instructions on demand or cease further distribution. If you provide valid instructions or cease distribution within thirty days after you become aware that the instructions are invalid, then you do not forfeit any of your rights under this license. . (6) You may Distribute a Modified Version in Compiled form without the Source, provided that you comply with Section 4 with respect to the Source of the Modified Version. . Aggregating or Linking the Package . (7) You may aggregate the Package (either the Standard Version or Modified Version) with other packages and Distribute the resulting aggregation provided that you do not charge a licensing fee for the Package. Distributor Fees are permitted, and licensing fees for other components in the aggregation are permitted. The terms of this license apply to the use and Distribution of the Standard or Modified Versions as included in the aggregation. . (8) You are permitted to link Modified and Standard Versions with other works, to embed the Package in a larger work of your own, or to build stand-alone binary or bytecode versions of applications that include the Package, and Distribute the result without restriction, provided the result does not expose a direct interface to the Package. . Items That are Not Considered Part of a Modified Version . (9) Works (including, but not limited to, modules and scripts) that merely extend or make use of the Package, do not, by themselves, cause the Package to be a Modified Version. In addition, such works are not considered parts of the Package itself, and are not subject to the terms of this license. . General Provisions . (10) Any use, modification, and distribution of the Standard or Modified Versions is governed by this Artistic License. By using, modifying or distributing the Package, you accept this license. Do not use, modify, or distribute the Package, if you do not accept this license. . (11) If your Modified Version has been derived from a Modified Version made by someone other than you, you are nevertheless required to ensure that your Modified Version complies with the requirements of this license. . (12) This license does not grant you the right to use any trademark, service mark, tradename, or logo of the Copyright Holder. . (13) This license includes the non-exclusive, worldwide, free-of-charge patent license to make, have made, use, offer to sell, sell, import and otherwise transfer the Package with respect to any patent claims licensable by the Copyright Holder that are necessarily infringed by the Package. If you institute patent litigation (including a cross-claim or counterclaim) against any party alleging that the Package constitutes direct or contributory patent infringement, then this Artistic License to you shall terminate on the date that such litigation is filed. . (14) Disclaimer of Warranty: THE PACKAGE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS IS" AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES. THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT ARE DISCLAIMED TO THE EXTENT PERMITTED BY YOUR LOCAL LAW. UNLESS REQUIRED BY LAW, NO COPYRIGHT HOLDER OR CONTRIBUTOR WILL BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THE PACKAGE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. License: ISC Permission to use, copy, modify, and distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. . THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. debian/running.pod0000644000000000000000000000327312255574337011374 0ustar =head1 NAME nqp - Not Quite Perl Compiler =head1 SYNOPSIS nqp [switches] [--] [programfile] [arguments] =head1 DESCRIPTION With no arguments, enters a REPL. With a C<[programfile]> or the C<-e> option, compiles the given program and by default also executes the compiled code. -c check syntax only (runs BEGIN and CHECK blocks) -e program one line of program -h, --help display this help text --target=[stage] specify compilation stage to emit -t, --trace=[flags] enable trace flags, see 'parrot --help-debug' --encoding=[mode] specify string encoding mode -o, --output=[name] specify name of output file -v, --version display version information --stagestats display time spent in the compilation stages --ll-backtrace display a low level backtrace on errors Note that only boolean single-letter options may be bundled Supported stages for --target are: parse past post pir evalpmc where parse = a representation of the parse tree past = an intermediate format representing the parrot abstract syntax tree post = an intermediate format representing the parrot opcode syntax tree pir = the parrot intermediate representation =head1 PARROT OPTIONS To specify options to the underlying parrot VM, you must explicitly run parrot; you cannot specify these options by using the C executable. parrot [parrot switches] perl6.pbc [switches] [--] [programfile] [arguments] See C for a list of valid parrot options. =head1 AUTHORS Written by the NQP contributors, see the CREDITS file. This manual page was written by Alessandro Ghedini for the Debian project, and may be used by others. =cut