--- getdata-0.2.orig/debian/README.Debian +++ getdata-0.2/debian/README.Debian @@ -0,0 +1,13 @@ +getdata for Debian +------------------ + +Some very first steps into the dark. + +The Debian package does not build yet. One of the first bits to address: + + * getData.pl -> getData + * /etc/default/getdata -> /etc/default/getData .. or not? + I think that /etc/default is for configuring initscripts, therefore + I moved the file to /etc/getData.conf -- Charles + + -- Steffen Moeller Mon, 11 Feb 2008 09:58:30 +0100 --- getdata-0.2.orig/debian/changelog +++ getdata-0.2/debian/changelog @@ -0,0 +1,37 @@ +getdata (0.2-1) unstable; urgency=low + + [ Steffen Moeller ] + * Update of DE405 (URL changed) + + [ Andreas Tille ] + * debian/control + - Fixed VCS fields + + [ Charles Plessy ] + * Normalised with config-model-edit. + * Conforms with Policy 3.9.5. + * Using Debhelper 9. + * Switch back to source format 1.0. (Closes: #725526). + * Machine-readable Debian copyright file. + * Use canonical VCS URLs. + + -- Charles Plessy Mon, 28 Oct 2013 18:57:31 +0900 + +getdata (0.1-1) unstable; urgency=low + + [ Steffen Moeller ] + * Initial release (Closes: #514984) + * source format 3.0 (quilt) + * Suggesting biomaj + + [ Charles Plessy ] + * Renamed getData.pl getData (.pl extensions are unwelcome in /usr/bin) + * Moved /etc/defaults/getdata to /etc/getData.conf (I think that + /etc/defaults is for initscript configuration). + * fixed debian/rules. + * deleted debian/compat (CDBS does not need it). + * Defautl mirror directory is /var/lib/getdata instead of + /local/databases/mirrored. + * Recommends perl-doc as getData --help needs it. + + -- Steffen Moeller Wed, 03 Aug 2011 16:00:22 +0200 --- getdata-0.2.orig/debian/compat +++ getdata-0.2/debian/compat @@ -0,0 +1 @@ +9 --- getdata-0.2.orig/debian/control +++ getdata-0.2/debian/control @@ -0,0 +1,34 @@ +Source: getdata +Maintainer: Steffen Moeller +Uploaders: Charles Plessy +Section: science +Priority: optional +Build-Depends: cdbs, + debhelper (>= 9) +Standards-Version: 3.9.5 +Vcs-Browser: http://anonscm.debian.org/viewvc/debian-med/trunk/community/infrastructure/getData/ +Vcs-Svn: svn://anonscm.debian.org/debian-med/trunk/community/infrastructure/getData +Homepage: http://debian-med.alioth.debian.org + +Package: getdata +Architecture: all +Depends: ${shlibs:Depends}, + ${misc:Depends}, + perl +# perl-doc is needed for getData --help. +Recommends: perl-doc +Suggests: biomaj +Description: management of external databases + Many scientific communities share the problem of regularly updating + external databases. With every update, also various tasks need to + be performed for the update of indices that need to be recreated. + This work depends on the tools that are available locally and is + not always completely simple. + . + This package provides the getData Perl script, which in some not + so complicated manner performs the invocation to wget to download + data and then knows how to perform the indexing. There is only + a hash table to be filled with the commands to be executed. + Maintainers of scientific packages that are strongly coupled to + public datasets are invited to add a runtime dependency to this + package and add instructions for getData to follow. --- getdata-0.2.orig/debian/copyright +++ getdata-0.2/debian/copyright @@ -0,0 +1,29 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Source: svn://svn.debian.org/svn/debian-med/trunk/community/infrastructure/getData + +Files: * +Copyright: © 2008-2010 University of Luebeck, Germany + © 2010-2011 University Clinics Schleswig-Holstein, Germany + © 2008-2011 Charles Plessy +License: GPL-2+ + +License: GPL-2+ + 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 +Comment: On Debian systems, the complete text of the GNU General Public License + version 2 can be found in ‘/usr/share/common-licenses/GPL-2’. + +Files: debian/* +Copyright: © 2008, Steffen Moeller +License: GPL-2+ --- getdata-0.2.orig/debian/dirs +++ getdata-0.2/debian/dirs @@ -0,0 +1,7 @@ +etc +etc/data.conf.d +usr +usr/bin +var +var/lib +var/lib/getdata --- getdata-0.2.orig/debian/getData.conf +++ getdata-0.2/debian/getData.conf @@ -0,0 +1,2 @@ +# Directory under which to expect the previously downloaded files. +mirrordir="/var/lib/getdata" --- getdata-0.2.orig/debian/install +++ getdata-0.2/debian/install @@ -0,0 +1,3 @@ +getData /usr/bin +debian/getData.conf /etc +getData.conf.d/* /etc/getData.conf.d --- getdata-0.2.orig/debian/manpages +++ getdata-0.2/debian/manpages @@ -0,0 +1 @@ +getData.1 --- getdata-0.2.orig/debian/rules +++ getdata-0.2/debian/rules @@ -0,0 +1,14 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/makefile.mk + +getData.1: getData + $(MAKE) getData.1 + +install:: getData.1 + +UPSTREAMVERSION=$(shell dpkg-parsechangelog | grep ^Version|cut -f2 -d\ | cut -f1 -d-) +get-orig-source: + cd .. ; \ + tar --exclude=debian --exclude-vcs -czvf getdata_$(UPSTREAMVERSION).orig.tar.gz getData