[med-svn] r11703 - in trunk/packages/librg-liu-bundle-perl/trunk: . debian debian/source

Daniel Bader baderd-guest at alioth.debian.org
Tue Jul 10 14:42:53 UTC 2012


Author: baderd-guest
Date: 2012-07-10 14:42:53 +0000 (Tue, 10 Jul 2012)
New Revision: 11703

Added:
   trunk/packages/librg-liu-bundle-perl/trunk/debian/
   trunk/packages/librg-liu-bundle-perl/trunk/debian/changelog
   trunk/packages/librg-liu-bundle-perl/trunk/debian/compat
   trunk/packages/librg-liu-bundle-perl/trunk/debian/control
   trunk/packages/librg-liu-bundle-perl/trunk/debian/copyright
   trunk/packages/librg-liu-bundle-perl/trunk/debian/rules
   trunk/packages/librg-liu-bundle-perl/trunk/debian/source/
   trunk/packages/librg-liu-bundle-perl/trunk/debian/source/format
   trunk/packages/librg-liu-bundle-perl/trunk/debian/upstream
   trunk/packages/librg-liu-bundle-perl/trunk/debian/watch
Log:
first fixes done in debian subfolder, not sure about upstream file, will now try to build


Property changes on: trunk/packages/librg-liu-bundle-perl/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: trunk/packages/librg-liu-bundle-perl/trunk/debian/changelog
===================================================================
--- trunk/packages/librg-liu-bundle-perl/trunk/debian/changelog	                        (rev 0)
+++ trunk/packages/librg-liu-bundle-perl/trunk/debian/changelog	2012-07-10 14:42:53 UTC (rev 11703)
@@ -0,0 +1,12 @@
+librg-liu-bundle-perl (1.0.2) unstable; urgency=low
+
+  * Now Module::Build
+
+ -- Laszlo Kajan <lkajan at rostlab.org>  Sat, 18 Jun 2011 22:06:48 +0200
+
+librg-liu-bundle-perl (1.0.1) unstable; urgency=low
+
+  * Simpler repository organization
+
+ -- Laszlo Kajan <lkajan at rostlab.org>  Wed, 13 Jan 2010 17:35:50 +0100
+

Added: trunk/packages/librg-liu-bundle-perl/trunk/debian/compat
===================================================================
--- trunk/packages/librg-liu-bundle-perl/trunk/debian/compat	                        (rev 0)
+++ trunk/packages/librg-liu-bundle-perl/trunk/debian/compat	2012-07-10 14:42:53 UTC (rev 11703)
@@ -0,0 +1 @@
+8

Added: trunk/packages/librg-liu-bundle-perl/trunk/debian/control
===================================================================
--- trunk/packages/librg-liu-bundle-perl/trunk/debian/control	                        (rev 0)
+++ trunk/packages/librg-liu-bundle-perl/trunk/debian/control	2012-07-10 14:42:53 UTC (rev 11703)
@@ -0,0 +1,15 @@
+Source: librg-liu-bundle-perl
+Section: perl
+Priority: extra
+Maintainer: Guy Yachdav <gyachdav at rostlab.org>
+Uploaders: Laszlo Kajan <lkajan at rostlab.org>
+Build-Depends: debhelper (>= 7), perl (>= 5.8.0-7)
+Standards-Version: 3.9.1
+Homepage: https://rostlab.informatik.tu-muenchen.de/wiki/index.php/Slashdata:Liu-softwares
+
+Package: librg-liu-bundle-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libxml-dom-perl
+Description: a bundle of bioinfo helper perl modules
+ Minimally documnted perl libraries to be used to access and manipulate
+ bioinformatics libraries.

Added: trunk/packages/librg-liu-bundle-perl/trunk/debian/copyright
===================================================================
--- trunk/packages/librg-liu-bundle-perl/trunk/debian/copyright	                        (rev 0)
+++ trunk/packages/librg-liu-bundle-perl/trunk/debian/copyright	2012-07-10 14:42:53 UTC (rev 11703)
@@ -0,0 +1,24 @@
+Format:http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+
+Files:*
+Copyright: 2009 Jinfeng Liu <liu at rostlab.org>
+License: GPL-3.0+
+
+Files:debian/*
+Copyright: 2012 Daniel Bader <bader.daniel at mytum.de>
+License: GPL-3.0+
+
+License: GPL-3.0+
+    This package is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation; either version 2 of the License, or
+    (at your option) any later version.
+    This package is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+    You should have received a copy of the GNU General Public License
+    along with this package; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+	On Debian systems, the complete text of the GNU General
+	Public License can be found in `/usr/share/common-licenses/GPL'.

Added: trunk/packages/librg-liu-bundle-perl/trunk/debian/rules
===================================================================
--- trunk/packages/librg-liu-bundle-perl/trunk/debian/rules	                        (rev 0)
+++ trunk/packages/librg-liu-bundle-perl/trunk/debian/rules	2012-07-10 14:42:53 UTC (rev 11703)
@@ -0,0 +1,63 @@
+#!/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.
+#
+# It was later modified by Jason Kohles <email at jasonkohles.com>
+# http://www.jasonkohles.com/ to support Module::Build installed modules
+
+# 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
+
+PERL   ?= /usr/bin/perl
+PACKAGE = $(shell dh_listpackages)
+TMP     = $(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	# Add commands to compile the package here
+	$(PERL) Build.PL installdirs=vendor
+	$(PERL) Build
+	$(PERL) Build test
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	dh_clean build-stamp install-stamp
+	# Add commands to clean up after the build process here
+	[ ! -f Build ] || $(PERL) Build --allow_mb_mismatch 1 distclean
+
+install: install-stamp
+install-stamp: build-stamp
+	dh_testdir
+	dh_testroot
+	dh_prep
+	# Add commands to install the package into $(TMP) here
+	$(PERL) Build install destdir=$(TMP) create_packlist=0
+	touch $@
+
+binary-arch:
+# We have nothing to do here for an architecture-independent package
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs 
+	dh_installchangelogs 
+	dh_perl
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install


Property changes on: trunk/packages/librg-liu-bundle-perl/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: trunk/packages/librg-liu-bundle-perl/trunk/debian/source/format
===================================================================
--- trunk/packages/librg-liu-bundle-perl/trunk/debian/source/format	                        (rev 0)
+++ trunk/packages/librg-liu-bundle-perl/trunk/debian/source/format	2012-07-10 14:42:53 UTC (rev 11703)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: trunk/packages/librg-liu-bundle-perl/trunk/debian/upstream
===================================================================
--- trunk/packages/librg-liu-bundle-perl/trunk/debian/upstream	                        (rev 0)
+++ trunk/packages/librg-liu-bundle-perl/trunk/debian/upstream	2012-07-10 14:42:53 UTC (rev 11703)
@@ -0,0 +1,12 @@
+Reference:
+  Author: 
+  Title:
+  Journal:
+  Year:
+  Volume:
+  Number:
+  Pages:
+  DOI:
+  PMID:
+  URL:
+  eprint:

Added: trunk/packages/librg-liu-bundle-perl/trunk/debian/watch
===================================================================
--- trunk/packages/librg-liu-bundle-perl/trunk/debian/watch	                        (rev 0)
+++ trunk/packages/librg-liu-bundle-perl/trunk/debian/watch	2012-07-10 14:42:53 UTC (rev 11703)
@@ -0,0 +1,2 @@
+version=3
+ftp://rostlab.org/free/librg-liu-bundle-perl-(.+).tar.gz




More information about the debian-med-commit mailing list