r13944 - in /trunk/libmath-bigint-gmp-perl/debian: ./ changelog compat control copyright rules
dmn at users.alioth.debian.org
dmn at users.alioth.debian.org
Fri Feb 1 08:04:53 UTC 2008
Author: dmn
Date: Fri Feb 1 08:04:52 2008
New Revision: 13944
URL: http://svn.debian.org/wsvn/?sc=1&rev=13944
Log:
[svn-inject] Applying Debian modifications to trunk
Added:
trunk/libmath-bigint-gmp-perl/debian/
trunk/libmath-bigint-gmp-perl/debian/changelog
trunk/libmath-bigint-gmp-perl/debian/compat
trunk/libmath-bigint-gmp-perl/debian/control
trunk/libmath-bigint-gmp-perl/debian/copyright
trunk/libmath-bigint-gmp-perl/debian/rules (with props)
Added: trunk/libmath-bigint-gmp-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libmath-bigint-gmp-perl/debian/changelog?rev=13944&op=file
==============================================================================
--- trunk/libmath-bigint-gmp-perl/debian/changelog (added)
+++ trunk/libmath-bigint-gmp-perl/debian/changelog Fri Feb 1 08:04:52 2008
@@ -1,0 +1,19 @@
+libmath-bigint-gmp-perl (1.18-2) unstable; urgency=low
+
+ * Updated Standards-Version to 3.6.2 (no change needed).
+ * Rebuild needed because of GMP C++ transition.
+
+ -- Laurent Fousse <laurent at komite.net> Mon, 5 Sep 2005 10:09:53 +0200
+
+libmath-bigint-gmp-perl (1.18-1) unstable; urgency=low
+
+ * New upstream release.
+
+ -- Laurent Fousse <laurent at komite.net> Mon, 27 Jun 2005 14:33:58 +0200
+
+libmath-bigint-gmp-perl (1.14-1) unstable; urgency=low
+
+ * Initial Release (closes: #252280).
+
+ -- Laurent Fousse <laurent at komite.net> Sat, 5 Jun 2004 19:08:45 +0200
+
Added: trunk/libmath-bigint-gmp-perl/debian/compat
URL: http://svn.debian.org/wsvn/trunk/libmath-bigint-gmp-perl/debian/compat?rev=13944&op=file
==============================================================================
--- trunk/libmath-bigint-gmp-perl/debian/compat (added)
+++ trunk/libmath-bigint-gmp-perl/debian/compat Fri Feb 1 08:04:52 2008
@@ -1,0 +1,1 @@
+4
Added: trunk/libmath-bigint-gmp-perl/debian/control
URL: http://svn.debian.org/wsvn/trunk/libmath-bigint-gmp-perl/debian/control?rev=13944&op=file
==============================================================================
--- trunk/libmath-bigint-gmp-perl/debian/control (added)
+++ trunk/libmath-bigint-gmp-perl/debian/control Fri Feb 1 08:04:52 2008
@@ -1,0 +1,14 @@
+Source: libmath-bigint-gmp-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2), libgmp3-dev, perl (>= 5.8.7-3), libyaml-perl
+Maintainer: Laurent Fousse <laurent at komite.net>
+Standards-Version: 3.6.2
+
+Package: libmath-bigint-gmp-perl
+Architecture: any
+Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends},
+Description: GMP library for Math::BigInt routines
+ The GNU MP is a library for arbitrary precision arithmetic. This
+ package offers efficient replacements to the Math::BigInt routines
+ using the GNU MP library.
Added: trunk/libmath-bigint-gmp-perl/debian/copyright
URL: http://svn.debian.org/wsvn/trunk/libmath-bigint-gmp-perl/debian/copyright?rev=13944&op=file
==============================================================================
--- trunk/libmath-bigint-gmp-perl/debian/copyright (added)
+++ trunk/libmath-bigint-gmp-perl/debian/copyright Fri Feb 1 08:04:52 2008
@@ -1,0 +1,17 @@
+This is the debian package for the Math-BigInt-GMP module.
+It was created by Laurent Fousse <laurent at komite.net> using dh-make-perl.
+
+The upstream author is:
+
+Tels <http://bloodgate.com/> in 2001-2005.
+
+Thanx to Chip Turner for providing Math::GMP, which was inspiring my work..
+This program is free software; you may redistribute it and/or modify it
+under the same terms as Perl itself.
+
+Tels <http://bloodgate.com/>
+
+Perl is distributed under your choice of the GNU General Public License or
+the Artistic License. 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: trunk/libmath-bigint-gmp-perl/debian/rules
URL: http://svn.debian.org/wsvn/trunk/libmath-bigint-gmp-perl/debian/rules?rev=13944&op=file
==============================================================================
--- trunk/libmath-bigint-gmp-perl/debian/rules (added)
+++ trunk/libmath-bigint-gmp-perl/debian/rules Fri Feb 1 08:04:52 2008
@@ -1,0 +1,99 @@
+#!/usr/bin/make -f
+# This debian/rules file is provided as a template for normal perl
+# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> for
+# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
+# be used freely wherever it is useful.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# 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)
+
+# Allow disabling build optimation by setting noopt in
+# $DEB_BUILD_OPTIONS
+CFLAGS = -Wall -g
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+ CFLAGS += -O0
+else
+ CFLAGS += -O2
+endif
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+
+ # Add commands to compile the package here
+ $(PERL) Makefile.PL INSTALLDIRS=vendor
+ $(MAKE) OPTIMIZE="$(CFLAGS)" LD_RUN_PATH=""
+
+ touch build-stamp
+
+clean:
+ dh_testdir
+ dh_testroot
+
+ # Add commands to clean up after the build process here
+ -$(MAKE) realclean
+
+ dh_clean build-stamp install-stamp
+
+install: install-stamp
+install-stamp:
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+
+ # Add here commands to install the package into debian/tmp.
+ $(MAKE) test
+ $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+
+ # As this is a architecture dependent package, we are not supposed to install
+ # stuff to /usr/share/perl5. MakeMaker creates the dirs, we delete them from
+ # the deb:
+ rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/share/perl5
+
+ touch install-stamp
+
+# Build architecture-independent files here.
+binary-indep: build install
+# We have nothing to do by default.
+
+# Build architecture-dependent files here.
+binary-arch: build install
+ dh_testdir
+ dh_testroot
+ dh_installdocs BUGS TODO README
+ dh_installexamples
+# dh_installmenu
+# dh_installcron
+# dh_installman
+ dh_installchangelogs CHANGES
+ dh_link
+ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
+ dh_strip
+endif
+ dh_compress
+ dh_fixperms
+ dh_makeshlibs
+ dh_installdeb
+ dh_perl
+ dh_shlibdeps
+ 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
Propchange: trunk/libmath-bigint-gmp-perl/debian/rules
------------------------------------------------------------------------------
svn:executable = *
More information about the Pkg-perl-cvs-commits
mailing list