Changeset 7526
Legend:
- Unmodified
- Added
- Removed
-
debian/changelog
r7441 r7526 2 2 3 3 * New upstream release. 4 * Build-Depend on libyaml-perl, libtest-tap-model-perl, 5 libtest-tap-htmlmatrix-perl, libcompress-bzip2-perl. They are needed for 6 smoking. 7 * Use smoke-pugs instead of a simple Harness test. 8 * Removed environment hook for not sending smoke results from debian/rules. 9 PUGS_BUILD_OPTS can handle that now. 10 * Suggest perl and spidermonkey-bin needed by -BJS and -BPerl5. 4 11 5 12 -- Florian Ragwitz <rafl@debianforum.de> Sat, 8 Oct 2005 15:33:45 +0200 -
debian/pugs-modules.lintian-overrides
r6981 r7526 1 pugs-modules: unusual-interpreter ./usr/share/perl6/5.8/FA/t/DFA.t #!/usr/bin/pugs 1 2 pugs-modules: unusual-interpreter ./usr/share/perl6/5.8/HTTP/Status.pm #!/usr/bin/pugs 2 3 pugs-modules: unusual-interpreter ./usr/share/perl6/5.8/HTTP/Date.pm #!/usr/bin/pugs … … 8 9 pugs-modules: unusual-interpreter ./usr/share/perl6/5.8/Locale/KeyedText.pm #!/usr/bin/pugs 9 10 pugs-modules: unusual-interpreter ./usr/share/perl6/5.8/URI/Escape.pm #!/usr/bin/pugs 11 pugs-modules: script-not-executable ./usr/share/perl6/5.8/auto/pugs/perl5/lib/jspugs.pl 12 pugs-modules: script-not-executable ./usr/share/perl6/5.8/auto/pugs/perl5/lib/pil2js.pl 13 pugs-modules: script-not-executable ./usr/share/perl6/5.8/auto/pugs/perl5/lib/pugs-smokejs.pl 14 pugs-modules: script-not-executable ./usr/share/perl6/5.8/auto/pugs/perl5/lib/runjs.pl 15 pugs-modules: script-not-executable ./usr/share/perl6/5.8/auto/pugs/perl5/lib/PIL/pugs-p5.pl -
debian/rules
r7524 r7526 9 9 endif 10 10 11 PUGS_BUILD_OPT IONS = $(DEB_BUILD_OPTIONS)11 PUGS_BUILD_OPTS = $(DEB_BUILD_OPTIONS) 12 12 13 13 TESTS='smoke-pugs' … … 26 26 -test $$SKIP_TESTS || $(MAKE) $(TESTS) 27 27 # use DEB_BUILD_OPTIONS="smoke_upload=0" to avoid uploading the smoke file automatically 28 for html in $(CURDIR)/smoke*.html; do \28 -for html in $(CURDIR)/smoke*.html; do \ 29 29 ./util/smokeserv/smokeserv-client.pl $$html; \ 30 30 done; … … 40 40 dh_testdir 41 41 dh_testroot 42 rm -f build-arch-stamp build-indep-stamp configure-stamp debian/pugs.1 debian/pugscc.1 src/Pugs/CodeGen/PIR/Prelude.hi src/Pugs/CodeGen/PIR/Prelude.o ext/Test-Builder/destroy_test.p6 smoke*.html config.yml42 rm -f build-arch-stamp build-indep-stamp configure-stamp install-stamp 43 43 -$(MAKE) realclean 44 rm -f debian/pugscc.1 src/Pugs/CodeGen/PIR/Prelude.hi src/Pugs/CodeGen/PIR/Prelude.o ext/Test-Builder/destroy_test.p6 smoke*.html config.yml tests.yml src/gen_prelude.hi src/gen_prelude.o src/Main.hi src/Main.o 45 find -name Makefile.old -exec rm -f {} \; 44 46 dh_clean 45 47 … … 50 52 $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp 51 53 find $(CURDIR) -exec chmod u+rw {} \; 54 rm -rfv ./usr/share/perl6/5.8/FA/t/ 52 55 dh_installdirs 53 56 dh_install --sourcedir=$(CURDIR)/debian/tmp --list-missing
