r1682 - in packages/libpar-perl/trunk: . debian myldr script

Krzysztof Krzyzaniak eloy at costa.debian.org
Sat Dec 17 17:40:24 UTC 2005


Author: eloy
Date: 2005-12-17 17:40:23 +0000 (Sat, 17 Dec 2005)
New Revision: 1682

Added:
   packages/libpar-perl/trunk/debian/
   packages/libpar-perl/trunk/debian/changelog
   packages/libpar-perl/trunk/debian/compat
   packages/libpar-perl/trunk/debian/control
   packages/libpar-perl/trunk/debian/copyright
   packages/libpar-perl/trunk/debian/rules
   packages/libpar-perl/trunk/debian/watch
   packages/libpar-perl/trunk/myldr/Makefile.old
Modified:
   packages/libpar-perl/trunk/script/par.pl
   packages/libpar-perl/trunk/script/parl.pod
   packages/libpar-perl/trunk/script/pp
   packages/libpar-perl/trunk/script/tkpp
Log:
Load libpar-perl-0.90 into packages/libpar-perl/trunk.


Added: packages/libpar-perl/trunk/debian/changelog
===================================================================
--- packages/libpar-perl/trunk/debian/changelog	2005-12-17 17:40:10 UTC (rev 1681)
+++ packages/libpar-perl/trunk/debian/changelog	2005-12-17 17:40:23 UTC (rev 1682)
@@ -0,0 +1,11 @@
+libpar-perl (0.90-1) unstable; urgency=low
+
+  * New upstream release
+
+ -- Krzysztof Krzyzaniak (eloy) <eloy at debian.org>  Sat, 17 Dec 2005 18:36:20 +0100
+
+libpar-perl (0.89-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Krzysztof Krzyzaniak (eloy) <eloy at debian.org>  Mon, 21 Nov 2005 09:38:51 +0100

Added: packages/libpar-perl/trunk/debian/compat
===================================================================
--- packages/libpar-perl/trunk/debian/compat	2005-12-17 17:40:10 UTC (rev 1681)
+++ packages/libpar-perl/trunk/debian/compat	2005-12-17 17:40:23 UTC (rev 1682)
@@ -0,0 +1 @@
+4

Added: packages/libpar-perl/trunk/debian/control
===================================================================
--- packages/libpar-perl/trunk/debian/control	2005-12-17 17:40:10 UTC (rev 1681)
+++ packages/libpar-perl/trunk/debian/control	2005-12-17 17:40:23 UTC (rev 1682)
@@ -0,0 +1,18 @@
+Source: libpar-perl
+Section: perl
+Priority: optional
+Build-Depends: perl (>= 5.8.0-7), libperl-dev, debhelper (>= 4.0.2), libmodule-install-perl, libmodule-scandeps-perl, libarchive-zip-perl, libpar-dist-perl, libdigest-sha1-perl, libmodule-signature-perl, gnupg
+Maintainer: Debian Catalyst Maintainers <pkg-catalyst-maintainers at lists.alioth.debian.org>
+Uploaders: Florian Ragwitz <rafl at debian.org>, Krzysztof Krzyzaniak (eloy) <eloy at debian.org>
+Standards-Version: 3.6.2
+
+Package: libpar-perl
+Architecture: any
+Depends: ${perl:Depends}, ${misc:Depends}, ${shlib:Depends}, libmodule-scandeps-perl, libarchive-zip-perl, libpar-dist-perl, libdigest-sha1-perl, libmodule-signature-perl
+Recommends: gnupg
+Description: Perl Archive Toolkit
+ This module lets you easily bundle a typical blib/ tree into a zip file, 
+ called a Perl Archive, or PAR.
+ .
+ It supports loading XS modules by overriding DynaLoader bootstrapping methods; 
+ it writes shared object file to a temporary file at the time it is needed.

Added: packages/libpar-perl/trunk/debian/copyright
===================================================================
--- packages/libpar-perl/trunk/debian/copyright	2005-12-17 17:40:10 UTC (rev 1681)
+++ packages/libpar-perl/trunk/debian/copyright	2005-12-17 17:40:23 UTC (rev 1682)
@@ -0,0 +1,23 @@
+This package was debianized by Krzysztof Krzyzaniak (eloy) <eloy at debian.org> on
+Mon, 21 Nov 2005 12:12:19 +0200.
+
+It was downloaded from: http://search.cpan.org/dist/PAR/
+
+The upstream author is: Autrijus Tang <autrijus at autrijus.org>
+
+Copyright 2002, 2003, 2004, 2005 by Autrijus Tang <autrijus at autrijus.org>.
+
+This program is free software, you can redistribute it and/or modify it under
+the same terms as Perl itself.
+
+Perl is distributed under licenses:
+
+    a) the GNU General Public License as published by the Free Software
+       Foundation; either version 1, or (at your option) any later
+       version, or
+  
+    b) the "Artistic License" which comes with Perl.
+  
+    On Debian GNU/Linux systems, the complete text of the GNU General
+    Public License can be found in /usr/share/common-licenses/GPL' and
+    the Artistic Licence in /usr/share/common-licenses/Artistic'.

Added: packages/libpar-perl/trunk/debian/rules
===================================================================
--- packages/libpar-perl/trunk/debian/rules	2005-12-17 17:40:10 UTC (rev 1681)
+++ packages/libpar-perl/trunk/debian/rules	2005-12-17 17:40:23 UTC (rev 1682)
@@ -0,0 +1,64 @@
+#!/usr/bin/make -f
+
+# If set to a true value then MakeMaker's prompt function will
+# always return the default without waiting for user input.
+export PERL_MM_USE_DEFAULT=1
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-Wall -O2 -g"
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	-$(MAKE) distclean
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	-(TEST_POD=1 $(MAKE) test)
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	mv $(TMP)/usr/share/man/man1/parl.1 $(TMP)/usr/share/man/man1/parl.1p
+	mv $(TMP)/usr/share/man/man1/par.pl.1 $(TMP)/usr/share/man/man1/par.pl.1p
+	mv $(TMP)/usr/share/man/man1/pp.1 $(TMP)/usr/share/man/man1/pp.1p
+	mv $(TMP)/usr/share/man/man1/tkpp.1 $(TMP)/usr/share/man/man1/tkpp.1p
+	touch install-stamp
+
+binary-arch:
+# We have nothing to do by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+#	dh_installexamples
+	dh_installdocs README
+	dh_installchangelogs ChangeLog
+	dh_perl
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+source diff:                                                                  
+	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary


Property changes on: packages/libpar-perl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages/libpar-perl/trunk/debian/watch
===================================================================
--- packages/libpar-perl/trunk/debian/watch	2005-12-17 17:40:10 UTC (rev 1681)
+++ packages/libpar-perl/trunk/debian/watch	2005-12-17 17:40:23 UTC (rev 1682)
@@ -0,0 +1,3 @@
+# format version number, currently 2; this line is compulsory!
+version=2
+ftp://ftp.icm.edu.pl/mirrors/ftp.cpan.org/pub/CPAN/modules/by-module/PAR/PAR-([\.\d]+).tar.gz

Added: packages/libpar-perl/trunk/myldr/Makefile.old
===================================================================
--- packages/libpar-perl/trunk/myldr/Makefile.old	2005-12-17 17:40:10 UTC (rev 1681)
+++ packages/libpar-perl/trunk/myldr/Makefile.old	2005-12-17 17:40:23 UTC (rev 1682)
@@ -0,0 +1,78 @@
+# AUTOGENERATED, DO NOT EDIT, RERUN Makefile.PL
+
+RM=rm -f
+MV=mv
+PERL=/usr/bin/perl
+LD=cc
+CC=cc
+CFLAGS= -D_REENTRANT -D_GNU_SOURCE -DTHREADS_HAVE_PIDS -DDEBIAN -fno-strict-aliasing -pipe -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64  -I/usr/lib/perl/5.8/CORE 
+LDFLAGS= -L/usr/local/lib
+PERL_LDFLAGS=-s -Wl,-E  -L/usr/local/lib /usr/lib/perl/5.8.7/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -lperl -ldl -lm -lpthread -lc -lcrypt
+
+STATIC_LDFLAGS=-s -Wl,-E  -L/usr/local/lib /usr/lib/perl/5.8.7/auto/DynaLoader/DynaLoader.a -L/usr/lib/perl/5.8/CORE -ldl -lm -lpthread -lc -lcrypt
+
+NOOP=$(PERL) -e1
+
+OBJECTS=main.o my_par_pl.o 
+
+.c.o:
+	$(CC) -c $(CFLAGS) $<
+
+all: ../script/parl ../script/parldyn
+
+clean:
+	-$(RM) my_*.c
+	-$(RM) main.o my_par_pl.o static.o
+	-$(RM) sha1.o sha1.c
+	-$(RM) *.opt *.pdb perlxsi.c
+	$(MV) Makefile Makefile.old
+
+realclean: clean
+	-$(RM) ./par
+	-$(RM) ../script/parl
+	-$(RM) ./static
+	-$(RM) Makefile Makefile.old
+
+distclean: clean
+	-$(RM) ./par
+	-$(RM) ../script/parl
+	-$(RM) ./static
+	-$(RM) Makefile Makefile.old
+
+./par: sha1.o $(OBJECTS) my_par_pl.o
+	$(LD) $(OBJECTS) $(PERL_LDFLAGS) --output ./par
+
+my_par_pl.c: ../script/par.pl
+	$(PERL) ./file2c.pl ../script/par.pl $@ load_me_2 1
+
+../script/parl: ./static
+	./static -I"/home/eloy/src/perl/PAR-0.89/inc" -I"/etc/perl" -I"/usr/local/lib/perl/5.8.7" -I"/usr/local/share/perl/5.8.7" -I"/usr/lib/perl5" -I"/usr/share/perl5" -I"/usr/lib/perl/5.8.7" -I"/usr/share/perl/5.8.7" -I"/usr/local/lib/site_perl" -I"/home/eloy/src/perl/PAR-0.89" -I"." -I../myldr/.. -I../blib/lib -q -B -O$@
+
+disttest:
+	-$(NOOP)
+
+test:
+	-$(NOOP)
+
+.DEFAULT:
+	-$(NOOP)
+
+.SUFFIXES: .o
+
+
+../script/parldyn: ./par
+	./par -I../myldr/.. -I../blib/lib -I"/home/eloy/src/perl/PAR-0.89/inc" -I"/etc/perl" -I"/usr/local/lib/perl/5.8.7" -I"/usr/local/share/perl/5.8.7" -I"/usr/lib/perl5" -I"/usr/share/perl5" -I"/usr/lib/perl/5.8.7" -I"/usr/share/perl/5.8.7" -I"/usr/local/lib/site_perl" -I"/home/eloy/src/perl/PAR-0.89" -I"." -q -B -O$@
+
+./static: my_perl.c my_par.c static.o
+	$(LD) static.o $(STATIC_LDFLAGS)  --output ./static
+	$(PERL) parlsig.pl ./static ./par 1 30000
+
+my_perl.c:
+	$(PERL) ./file2c.pl /usr/lib/libperl.so.5.8 $@ load_me_0 1 30000
+
+my_par.c: ./par
+	$(PERL) ./file2c.pl ./par $@ load_me_1 1 30000
+
+sha1.c: sha1.c.PL
+	$(PERL) sha1.c.PL sha1.c
+


Property changes on: packages/libpar-perl/trunk/script/par.pl
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: packages/libpar-perl/trunk/script/parl.pod
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: packages/libpar-perl/trunk/script/pp
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: packages/libpar-perl/trunk/script/tkpp
___________________________________________________________________
Name: svn:executable
   - 
   + *




More information about the Pkg-perl-cvs-commits mailing list