r25253 - in /trunk/libclass-singleton-perl/debian: ./ changelog control packages rules watch

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Wed Sep 17 19:23:09 UTC 2008


Author: dmn
Date: Wed Sep 17 19:23:06 2008
New Revision: 25253

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=25253
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    trunk/libclass-singleton-perl/debian/
    trunk/libclass-singleton-perl/debian/changelog
    trunk/libclass-singleton-perl/debian/control
    trunk/libclass-singleton-perl/debian/packages
    trunk/libclass-singleton-perl/debian/rules   (with props)
    trunk/libclass-singleton-perl/debian/watch

Added: trunk/libclass-singleton-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-singleton-perl/debian/changelog?rev=25253&op=file
==============================================================================
--- trunk/libclass-singleton-perl/debian/changelog (added)
+++ trunk/libclass-singleton-perl/debian/changelog Wed Sep 17 19:23:06 2008
@@ -1,0 +1,49 @@
+libclass-singleton-perl (1.03-7) unstable; urgency=low
+
+  * New maintainer release.
+  * Source package converted to YADA.
+  * New standards.
+
+ -- Piotr Roszatycki <dexter at debian.org>  Tue, 19 Jul 2005 13:31:30 +0200
+
+libclass-singleton-perl (1.03-6) unstable; urgency=low
+
+  * Updated maintainer email address.
+  * Bumped up standards version to 3.5.8.
+
+ -- Brian Nelson <pyro at debian.org>  Wed, 19 Feb 2003 18:10:49 -0800
+
+libclass-singleton-perl (1.03-5) unstable; urgency=low
+
+  * Changed Build-Depends to Build-Depends-Indep to fix a lintian error
+
+ -- Brian Nelson <nelson at bignachos.com>  Fri,  1 Nov 2002 19:47:30 -0800
+
+libclass-singleton-perl (1.03-4) unstable; urgency=low
+
+  * Added "make test" to the build-stamp target in debian/rules
+  * Removed some unnecessary debhelper commands
+  * Removed unnecessary usr/lib directory
+
+ -- Brian Nelson <nelson at bignachos.com>  Fri, 25 Oct 2002 00:47:26 -0700
+
+libclass-singleton-perl (1.03-3) unstable; urgency=low
+
+  * Added pointer to '/usr/share/common-licenses/Artistic' license in
+    copyright file
+
+ -- Brian Nelson <nelson at bignachos.com>  Tue, 15 Oct 2002 10:58:56 -0700
+
+libclass-singleton-perl (1.03-2) unstable; urgency=low
+
+  * Packaged to use pristine upstream source
+  * Cleaned up copyright file
+
+ -- Brian Nelson <nelson at bignachos.com>  Sun, 13 Oct 2002 19:51:25 -0700
+
+libclass-singleton-perl (1.03-1) unstable; urgency=low
+
+  * Initial Release. (Closes: #165975)
+
+ -- Brian Nelson <nelson at bignachos.com>  Tue, 17 Sep 2002 15:04:08 -0700
+

Added: trunk/libclass-singleton-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-singleton-perl/debian/control?rev=25253&op=file
==============================================================================
--- trunk/libclass-singleton-perl/debian/control (added)
+++ trunk/libclass-singleton-perl/debian/control Wed Sep 17 19:23:06 2008
@@ -1,0 +1,23 @@
+Source: libclass-singleton-perl
+Maintainer: Piotr Roszatycki <dexter at debian.org>
+Section: perl
+Priority: optional
+Standards-Version: 3.6.2
+Build-Depends: yada (>= 0.54)
+Build-Depends-Indep: perl (>= 5.8)
+
+Package: libclass-singleton-perl
+Architecture: all
+Depends: ${libclass-singleton-perl:Depends}
+Description: perl Class::Singleton - Implementation of a "Singleton" class
+ This is the Class::Singleton module.  A Singleton describes an object class
+ that can have only one instance in any system.  An example of a Singleton
+ might be a print spooler or system registry.  This module implements a
+ Singleton class from which other classes can be derived.  By itself, the
+ Class::Singleton module does very little other than manage the instantiation
+ of a single object.  In deriving a class from Class::Singleton, your module
+ will inherit the Singleton instantiation method and can implement whatever
+ specific functionality is required.
+ .
+ For a description and discussion of the Singleton class, see
+ "Design Patterns", Gamma et al, Addison-Wesley, 1995, ISBN 0-201-63361-2.

Added: trunk/libclass-singleton-perl/debian/packages
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-singleton-perl/debian/packages?rev=25253&op=file
==============================================================================
--- trunk/libclass-singleton-perl/debian/packages (added)
+++ trunk/libclass-singleton-perl/debian/packages Wed Sep 17 19:23:06 2008
@@ -1,0 +1,55 @@
+# $Id: /trunk/debian/dists/libclass-singleton-perl/debian/packages 129 2005-07-19T11:57:34.613100Z dexter  $
+
+# If the debian/rules or debian/control file is missing, rebuild the file:
+#
+#   $ yada rebuild control
+#   $ yada rebuild rules
+
+
+# Environment variables:
+
+# don't run `make test'
+#   with_no_test=%{with_no_test}
+
+
+Source: libclass-singleton-perl
+Section: perl
+Priority: optional
+Maintainer: Piotr Roszatycki <dexter at debian.org>
+Standards-Version: 3.6.2
+Upstream-Source: <URL:http://www.cpan.org/modules/by-module/Class/Class-Singleton-([0-9.]*)\.tar.gz>
+Description: perl Class::Singleton - Implementation of a "Singleton" class
+Copyright: Artistic
+ Copyright (C) 1998 Canon Research Centre Europe Ltd.  All Rights Reserved.
+Build-Depends-Indep: perl (>= 5.8)
+Build: sh
+ PERL=${PERL:-/usr/bin/perl}
+ $PERL Makefile.PL INSTALLDIRS=vendor
+ make
+%if %{without_no_test}
+ make test
+%endif
+Clean: sh
+ test -f Makefile && touch Makefile && make distclean || true
+
+Package: libclass-singleton-perl
+Architecture: all
+Depends: []
+Description: perl Class::Singleton - Implementation of a "Singleton" class
+ This is the Class::Singleton module.  A Singleton describes an object class
+ that can have only one instance in any system.  An example of a Singleton
+ might be a print spooler or system registry.  This module implements a
+ Singleton class from which other classes can be derived.  By itself, the
+ Class::Singleton module does very little other than manage the instantiation
+ of a single object.  In deriving a class from Class::Singleton, your module 
+ will inherit the Singleton instantiation method and can implement whatever
+ specific functionality is required.
+ .
+ For a description and discussion of the Singleton class, see 
+ "Design Patterns", Gamma et al, Addison-Wesley, 1995, ISBN 0-201-63361-2.
+Install: sh
+ PERL=${PERL:-/usr/bin/perl}
+ make install PREFIX=$ROOT/usr
+ find $ROOT/usr/share -type f | xargs chmod -x 
+ yada install -doc README
+ yada install -doc -as changelog Changes

Added: trunk/libclass-singleton-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-singleton-perl/debian/rules?rev=25253&op=file
==============================================================================
--- trunk/libclass-singleton-perl/debian/rules (added)
+++ trunk/libclass-singleton-perl/debian/rules Wed Sep 17 19:23:06 2008
@@ -1,0 +1,244 @@
+#!/usr/bin/make -f
+# Generated automatically from debian/packages
+# by yada v0.54, of Sun, 28 Oct 2007
+
+DEB_HOST_ARCH        := $(shell dpkg-architecture -qDEB_HOST_ARCH 2>/dev/null)
+DEB_HOST_ARCH_OS     := $(shell dpkg-architecture -qDEB_HOST_ARCH_OS 2>/dev/null)
+DEB_HOST_ARCH_CPU    := $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU 2>/dev/null)
+DEB_HOST_GNU_CPU     := $(shell dpkg-architecture -qDEB_HOST_GNU_CPU 2>/dev/null)
+DEB_HOST_GNU_TYPE    := $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE 2>/dev/null)
+DEB_HOST_GNU_SYSTEM  := $(shell dpkg-architecture -qDEB_HOST_GNU_SYSTEM 2>/dev/null)
+
+DEB_BUILD_ARCH       := $(shell dpkg-architecture -qDEB_BUILD_ARCH 2>/dev/null)
+DEB_BUILD_ARCH_OS    := $(shell dpkg-architecture -qDEB_BUILD_ARCH_OS 2>/dev/null)
+DEB_BUILD_ARCH_CPU   := $(shell dpkg-architecture -qDEB_BUILD_ARCH_CPU 2>/dev/null)
+DEB_BUILD_GNU_CPU    := $(shell dpkg-architecture -qDEB_BUILD_GNU_CPU 2>/dev/null)
+DEB_BUILD_GNU_TYPE   := $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE 2>/dev/null)
+DEB_BUILD_GNU_SYSTEM := $(shell dpkg-architecture -qDEB_BUILD_GNU_SYSTEM 2>/dev/null)
+
+# Take account of old dpkg-architecture output.
+ifeq ($(DEB_HOST_ARCH_CPU),)
+  DEB_HOST_ARCH_CPU := $(DEB_HOST_GNU_CPU))
+  ifeq ($(DEB_HOST_ARCH_CPU),i486)
+    DEB_HOST_ARCH_OS := i386
+  else
+  ifeq ($(DEB_HOST_ARCH_CPU),x86_64)
+    DEB_HOST_ARCH_OS := amd64
+  endif
+  endif
+endif
+ifeq ($(DEB_HOST_ARCH_OS),)
+  DEB_HOST_ARCH_OS := $(subst -gnu,,$(DEB_HOST_GNU_SYSTEM))
+  ifeq ($(DEB_HOST_ARCH_OS),gnu)
+    DEB_HOST_ARCH_OS := hurd
+  endif
+endif
+ifeq ($(DEB_BUILD_ARCH_CPU),)
+  DEB_BUILD_ARCH_CPU := $(DEB_BUILD_GNU_CPU))
+  ifeq ($(DEB_BUILD_ARCH_CPU),i486)
+    DEB_BUILD_ARCH_OS := i386
+  else
+  ifeq ($(DEB_BUILD_ARCH_CPU),x86_64)
+    DEB_BUILD_ARCH_OS := amd64
+  endif
+  endif
+endif
+ifeq ($(DEB_BUILD_ARCH_OS),)
+  DEB_BUILD_ARCH_OS := $(subst -gnu,,$(DEB_BUILD_GNU_SYSTEM))
+  ifeq ($(DEB_BUILD_ARCH_OS),gnu)
+    DEB_BUILD_ARCH_OS := hurd
+  endif
+endif
+
+LEFT_PARENTHESIS:=(
+VERSION:=$(shell head -n1 debian/changelog | sed -e "s/^[0-9a-zA-Z.-]* $(LEFT_PARENTHESIS)//" -e "s/[^0-9a-zA-Z.:+~-].*//")
+
+SHELL=/bin/bash
+
+.PHONY: default
+default:
+	@echo "Specify a target:"; \
+	echo " build              compile the package"; \
+	echo " build-arch         compile the architecture-dependent package"; \
+	echo " build-indep        compile the architecture-independent package"; \
+	echo " binary             make all binary packages"; \
+	echo " binary-arch        make all architecture-dependent binary packages"; \
+	echo " binary-indep       make all architecture-independent binary packages"; \
+	echo " clean              clean up the source package"; \
+	echo; \
+	echo " clean-install-tree clean up only under debian/"; \
+	echo
+
+# Build the package and prepare the install tree
+
+.PHONY: build-only build
+build-only: debian/build-stamp
+build: build-only
+
+.PHONY: build-arch-only build-arch
+build-arch-only: debian/build-arch-stamp
+build-arch: build-arch-only
+
+.PHONY: build-indep-only build-indep
+build-indep-only: debian/build-indep-stamp
+build-indep: build-indep-only
+
+# Make sure these rules and the control file are up-to-date
+
+.PHONY: rules control templates
+rules: debian/rules
+debian/rules: $(shell which yada) debian/packages-tmp
+	yada rebuild rules
+
+control: debian/control
+debian/control: $(shell which yada) debian/packages-tmp
+	yada rebuild control
+
+templates: debian/templates debian/po/POTFILES.in
+debian/templates: $(shell which yada) debian/packages-tmp
+	yada rebuild templates
+debian/po/POTFILES.in: $(shell which yada) debian/packages-tmp
+	yada rebuild templates
+
+debian/build-stamp: debian/build-arch-stamp debian/build-indep-stamp
+	@[ -f $(shell which yada) -a -f debian/rules ]
+	@umask 022 \
+	  && export pwd="$$(pwd)" \
+	  && export TMPROOT="$$(pwd)/debian/tmp" \
+	  && export SOURCE="libclass-singleton-perl" \
+	  && export VERSION="$(VERSION)" \
+	  && export DEB_HOST_GNU_CPU="$(DEB_HOST_GNU_CPU)" \
+	  && export DEB_HOST_GNU_TYPE="$(DEB_HOST_GNU_TYPE)" \
+	  && export DEB_HOST_GNU_SYSTEM="$(DEB_HOST_GNU_SYSTEM)" \
+	  && export DEB_BUILD_GNU_CPU="$(DEB_BUILD_GNU_CPU)" \
+	  && export DEB_BUILD_GNU_TYPE="$(DEB_BUILD_GNU_TYPE)" \
+	  && export DEB_BUILD_GNU_SYSTEM="$(DEB_BUILD_GNU_SYSTEM)" && (\
+	echo -E 'eval "yada () { perl $$(which yada) \"\$$@\"; }"; set -e; set -v';\
+	echo -E 'PERL=$${PERL:-/usr/bin/perl}';\
+	echo -E '$$PERL Makefile.PL INSTALLDIRS=vendor';\
+	echo -E 'make';\
+	echo -E 'make test') | /bin/sh
+	touch debian/build-stamp
+
+debian/build-arch-stamp:
+	@[ -f $(shell which yada) -a -f debian/rules ]
+	touch debian/build-arch-stamp
+
+debian/build-indep-stamp: debian/build-arch-stamp
+	@[ -f $(shell which yada) -a -f debian/rules ]
+	touch debian/build-indep-stamp
+
+.PHONY: install-tree
+install-tree: install-tree-any
+install-tree-any: \
+	debian/tmp-libclass-singleton-perl/DEBIAN/control
+
+debian/tmp-libclass-singleton-perl/DEBIAN/control: debian/build-stamp debian/control
+	rm -rf debian/tmp-libclass-singleton-perl
+	umask 022 && install -d debian/tmp-libclass-singleton-perl/DEBIAN
+	install -d debian/tmp-libclass-singleton-perl/usr/share/doc/libclass-singleton-perl
+	umask 022; yada generate copyright libclass-singleton-perl \
+	  > debian/tmp-libclass-singleton-perl/usr/share/doc/libclass-singleton-perl/copyright
+	install -m 644 -p debian/changelog \
+	  debian/tmp-libclass-singleton-perl/usr/share/doc/libclass-singleton-perl/changelog.Debian
+	@umask 022 \
+	  && export pwd="$$(pwd)" \
+	  && export ROOT="$$(pwd)/debian/tmp-libclass-singleton-perl" \
+	  && export TMPROOT="$$(pwd)/debian/tmp" \
+	  && export CONTROL="$$(pwd)/debian/tmp-libclass-singleton-perl/DEBIAN" \
+	  && export PACKAGE="libclass-singleton-perl" \
+	  && export SOURCE="libclass-singleton-perl" \
+	  && export VERSION="$(VERSION)" \
+	  && export DEB_HOST_GNU_CPU="$(DEB_HOST_GNU_CPU)" \
+	  && export DEB_HOST_GNU_TYPE="$(DEB_HOST_GNU_TYPE)" \
+	  && export DEB_HOST_GNU_SYSTEM="$(DEB_HOST_GNU_SYSTEM)" \
+	  && export DEB_BUILD_GNU_CPU="$(DEB_BUILD_GNU_CPU)" \
+	  && export DEB_BUILD_GNU_TYPE="$(DEB_BUILD_GNU_TYPE)" \
+	  && export DEB_BUILD_GNU_SYSTEM="$(DEB_BUILD_GNU_SYSTEM)" && (\
+	echo -E 'eval "yada () { perl $$(which yada) \"\$$@\"; }"; set -e; set -v';\
+	echo -E 'PERL=$${PERL:-/usr/bin/perl}';\
+	echo -E 'make install PREFIX=$$ROOT/usr';\
+	echo -E 'find $$ROOT/usr/share -type f | xargs chmod -x';\
+	echo -E 'yada install -doc README';\
+	echo -E 'yada install -doc -as changelog Changes') | /bin/sh
+	@umask 022 \
+	  && export pwd="$$(pwd)" \
+	  && export ROOT="$$(pwd)/debian/tmp-libclass-singleton-perl" \
+	  && export TMPROOT="$$(pwd)/debian/tmp" \
+	  && export CONTROL="$$(pwd)/debian/tmp-libclass-singleton-perl/DEBIAN" \
+	  && export PACKAGE="libclass-singleton-perl" \
+	  && export SOURCE="libclass-singleton-perl" \
+	  && export VERSION="$(VERSION)" && (\
+	echo -E 'eval "yada () { perl $$(which yada) \"\$$@\"; }"; set -e; set -v';\
+	echo -E 'yada perl';\
+	echo -E 'yada python';\
+	echo -E 'yada strip';\
+	echo -E 'yada shlibdeps') | /bin/sh
+	yada compress libclass-singleton-perl
+	yada generate maintscripts libclass-singleton-perl
+	find debian/tmp-libclass-singleton-perl -type f -print \
+	  | sed -n 's/^debian\/tmp-libclass-singleton-perl\(\/etc\/.*\)$$/\1/p' \
+	  > debian/tmp-libclass-singleton-perl/DEBIAN/conffiles
+	test -s debian/tmp-libclass-singleton-perl/DEBIAN/conffiles || rm -f debian/tmp-libclass-singleton-perl/DEBIAN/conffiles
+	yada rebuild control
+	yada generate substvars libclass-singleton-perl
+	umask 022 && dpkg-gencontrol -isp -plibclass-singleton-perl -Pdebian/tmp-libclass-singleton-perl
+
+# Build package files
+
+.PHONY: binary binary-arch binary-indep
+binary: binary-arch binary-indep
+binary-arch: binary-arch-any
+
+.PHONY: binary-arch-any
+binary-arch-any:
+binary-indep: \
+	binary-package-libclass-singleton-perl
+
+.PHONY: binary-package-libclass-singleton-perl
+binary-package-libclass-singleton-perl: check-root debian/tmp-libclass-singleton-perl/DEBIAN/control
+	@[ -f $(shell which yada) -a -f debian/rules ]
+	chown -R 0.0 debian/tmp-libclass-singleton-perl
+	chmod -R u=rwX,go=rX debian/tmp-libclass-singleton-perl
+	@if [ -d debian/tmp-libclass-singleton-perl/usr/doc/libclass-singleton-perl ]; then \
+	  echo "*** Yada warning: /usr/doc/libclass-singleton-perl should be /usr/share/doc/libclass-singleton-perl";\
+	fi
+	dpkg-deb --build debian/tmp-libclass-singleton-perl ..
+
+.PHONY: check-root
+check-root:
+	@[ `id -u` = 0 ] || (echo "You must be root to do this!"; false)
+
+debian/packages-tmp: debian/packages 
+	yada rebuild packages
+
+## Clean up afterwards
+
+.PHONY: clean clean-install-tree clean-build
+
+clean: clean-install-tree clean-build debian/control debian/rules
+	rm -f debian/packages-tmp debian/packages-tmp-new debian/packages-tmp-include
+
+clean-build:
+	@[ -f $(shell which yada) -a -f debian/rules ]
+	rm -f debian/build-stamp debian/build-arch-stamp debian/build-indep-stamp
+	@umask 022 \
+	  && export pwd="$$(pwd)" \
+	  && export TMPROOT="$$(pwd)/debian/tmp" \
+	  && export SOURCE="libclass-singleton-perl" \
+	  && export VERSION="$(VERSION)" \
+	  && export DEB_HOST_GNU_CPU="$(DEB_HOST_GNU_CPU)" \
+	  && export DEB_HOST_GNU_TYPE="$(DEB_HOST_GNU_TYPE)" \
+	  && export DEB_HOST_GNU_SYSTEM="$(DEB_HOST_GNU_SYSTEM)" \
+	  && export DEB_BUILD_GNU_CPU="$(DEB_BUILD_GNU_CPU)" \
+	  && export DEB_BUILD_GNU_TYPE="$(DEB_BUILD_GNU_TYPE)" \
+	  && export DEB_BUILD_GNU_SYSTEM="$(DEB_BUILD_GNU_SYSTEM)" && (\
+	echo -E 'eval "yada () { perl $$(which yada) \"\$$@\"; }"; set -e; set -v';\
+	echo -E 'test -f Makefile && touch Makefile && make distclean || true') | /bin/sh
+	yada unpatch
+	rm -rf debian/tmp
+
+clean-install-tree: debian/rules
+	@[ -f $(shell which yada) -a -f debian/rules ]
+	rm -f debian/install-tree-stamp
+	rm -rf debian/tmp-* debian/files* debian/substvars debian/shlibs.local debian/ucf

Propchange: trunk/libclass-singleton-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Added: trunk/libclass-singleton-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclass-singleton-perl/debian/watch?rev=25253&op=file
==============================================================================
--- trunk/libclass-singleton-perl/debian/watch (added)
+++ trunk/libclass-singleton-perl/debian/watch Wed Sep 17 19:23:06 2008
@@ -1,0 +1,5 @@
+# format version number, currently 2; this line is compulsory!
+version=2
+
+# Automatically generated by cvsdebuscan at Tue, 19 Jul 2005 13:31:10 +0200
+http://www.cpan.org/modules/by-module/Class/Class-Singleton-([0-9.]*)\.tar.gz




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