[med-svn] r23509 - in trunk/packages/euler-sr/trunk/debian: . upstream
Andreas Tille
tille at moszumanska.debian.org
Wed Jan 4 13:08:25 UTC 2017
Author: tille
Date: 2017-01-04 13:08:24 +0000 (Wed, 04 Jan 2017)
New Revision: 23509
Added:
trunk/packages/euler-sr/trunk/debian/upstream/
trunk/packages/euler-sr/trunk/debian/upstream/metadata
trunk/packages/euler-sr/trunk/debian/watch
Modified:
trunk/packages/euler-sr/trunk/debian/compat
trunk/packages/euler-sr/trunk/debian/control
trunk/packages/euler-sr/trunk/debian/copyright
trunk/packages/euler-sr/trunk/debian/rules
Log:
Normalised packaging, citation, fake watch file
Modified: trunk/packages/euler-sr/trunk/debian/compat
===================================================================
--- trunk/packages/euler-sr/trunk/debian/compat 2017-01-04 12:52:32 UTC (rev 23508)
+++ trunk/packages/euler-sr/trunk/debian/compat 2017-01-04 13:08:24 UTC (rev 23509)
@@ -1 +1 @@
-5
+10
Modified: trunk/packages/euler-sr/trunk/debian/control
===================================================================
--- trunk/packages/euler-sr/trunk/debian/control 2017-01-04 12:52:32 UTC (rev 23508)
+++ trunk/packages/euler-sr/trunk/debian/control 2017-01-04 13:08:24 UTC (rev 23509)
@@ -1,18 +1,20 @@
Source: euler-sr
+Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
+Uploaders: Andreas Tille <tille at debian.org>
Section: science
Priority: optional
-Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
-DM-Upload-Allowed: yes
-Uploaders: Andreas Tille <tille at debian.org>
-Build-Depends: cdbs, debhelper, quilt
-Standards-Version: 3.8.0
-Homepage: http://nbcr.sdsc.edu/euler/document.htm
-Vcs-Browser: http://svn.debian.org/wsvn/debian-med/trunk/packages/euler-sr/trunk/
-Vcs-Svn: svn://svn.debian.org/debian-med/trunk/packages/euler-sr/trunk/
+Build-Depends: debhelper (>= 10)
+Standards-Version: 3.9.8
+Vcs-Browser: http://anonscm.debian.org/viewvc/debian-med/trunk/packages/euler-sr/trunk/
+Vcs-Svn: svn://anonscm.debian.org/debian-med/trunk/packages/euler-sr/trunk/
+Homepage: http://cseweb.ucsd.edu/~ppevzner/software.html#EULER-short
Package: euler-sr
Architecture: any
Section: science
-Depends: ${shlibs:Depends}, graphviz
-Description: short description
- long description
+Depends: ${shlibs:Depends},
+ graphviz
+Description: correcting errors in short gene sequence reads and assembling them
+ The EULER-SR assembly package contains a suite of programs for
+ correcting errors in short reads and assembling them. Our assembler may
+ take as input classical Sanger reads, 454 sequences, and Illumina reads.
Modified: trunk/packages/euler-sr/trunk/debian/copyright
===================================================================
--- trunk/packages/euler-sr/trunk/debian/copyright 2017-01-04 12:52:32 UTC (rev 23508)
+++ trunk/packages/euler-sr/trunk/debian/copyright 2017-01-04 13:08:24 UTC (rev 23509)
@@ -1,15 +1,12 @@
-X-Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat
-X-Debianized-By: Andreas Tille <tille at debian.org>
-X-Debinized-Date: Tue, 9 Dec 2008 14:19:29 +0100.
-X-Upstream-Author: Pavel A. Pevzner, Haixu Tang and Glenn Tesler
-X-Homepage: http://nbcr.sdsc.edu/euler/document.htm
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: EULER-SR
+Upstream-Contact: Hong−Wen Deng <hdeng2 at tulane.edu>
+Source: http://euler-assembler.ucsd.edu/
+Comment: Download path failed at 2017-01-04
Files: *
Copyright: (C) 2001-2004 The Regents of the University of California.
- EULER V2.0
- Copyright (c) 2001-2004 The Regents of the University of California
- All Rights Reserved
- .
+License: non_profit
Permission to use any part of this EULER V2.0 software for
educational, research and non-profit purposes, without fee, and
without a written agreement is hereby granted, provided that the above
@@ -38,7 +35,6 @@
PURPOSE, OR THAT THE USE OF THE EULER V2.0 SOFTWARE WILL NOT INFRINGE
ANY PATENT, TRADEMARK OR OTHER RIGHTS.
-
Files: debian/*
Copyright: 2008 Andreas Tille <tille at debian.org> on
License: GPL
Modified: trunk/packages/euler-sr/trunk/debian/rules
===================================================================
--- trunk/packages/euler-sr/trunk/debian/rules 2017-01-04 12:52:32 UTC (rev 23508)
+++ trunk/packages/euler-sr/trunk/debian/rules 2017-01-04 13:08:24 UTC (rev 23509)
@@ -1,31 +1,23 @@
#!/usr/bin/make -f
-# debian/rules for euler2 using cdbs
-# Andreas Tille <tille at debian.org>, GPL
-include /usr/share/cdbs/1/rules/patchsys-quilt.mk
-include /usr/share/cdbs/1/rules/debhelper.mk
-include /usr/share/cdbs/1/class/makefile.mk
-
-pkg=euler-sr
-
-# EUSRC ?= $(shell pwd)
MACHTYPE ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH | sed s/i386/i686/)
-DEB_MAKE_CLEAN_TARGET = clean MACHTYPE=$(MACHTYPE) EUSRC=`pwd`
-DEB_MAKE_BUILD_TARGET = all MACHTYPE=$(MACHTYPE) EUSRC=`pwd`
+%:
+ dh $@
-get-orig-source:
- echo "You have to gegister to obtain the upstream source"
-
-clean::
+override_dh_clean:
+ dh_clean
find . -type f -name "lib*.a" -exec rm -f \{\} \;
find . -type f -name ".exists" -exec rm -f \{\} \;
rm -f lib/make.[dfo][fie]*
rm -rf binary
-build/$(pkg)::
+override_dh_auto_build:
mkdir -p binary
# copy with exception of *.o and *.a
(cd assembly; tar -cf - --exclude *.[ao] --exclude .exists $(MACHTYPE)) | (cd binary; tar xfBp -)
mv binary/$(MACHTYPE)/* binary
rm -rf binary/$(MACHTYPE)
+
+get-orig-source:
+ echo "You have to gegister to obtain the upstream source"
Added: trunk/packages/euler-sr/trunk/debian/upstream/metadata
===================================================================
--- trunk/packages/euler-sr/trunk/debian/upstream/metadata (rev 0)
+++ trunk/packages/euler-sr/trunk/debian/upstream/metadata 2017-01-04 13:08:24 UTC (rev 23509)
@@ -0,0 +1,12 @@
+Reference:
+ Author: Mark J. Chaisson and Pavel A. Pevzner
+ Title: Short read fragment assembly of bacterial genomes
+ Journal: Genome Research
+ Year: 2008
+ Volume: 18
+ Number: 2
+ Pages: 324-30
+ DOI: 10.1101/gr.7088808
+ PMID: 18083777
+ URL: http://genome.cshlp.org/content/early/2007/12/01/gr.7088808.abstract
+ eprint: http://genome.cshlp.org/content/early/2007/12/01/gr.7088808.full.pdf+html
Added: trunk/packages/euler-sr/trunk/debian/watch
===================================================================
--- trunk/packages/euler-sr/trunk/debian/watch (rev 0)
+++ trunk/packages/euler-sr/trunk/debian/watch 2017-01-04 13:08:24 UTC (rev 23509)
@@ -0,0 +1,5 @@
+version=4
+
+opts=dversionmangle=s/.*/0.No-Release/ \
+ https://people.debian.org/~eriberto/ FakeWatchNoUpstreamReleaseForThisPackage-(\d\S+)\.gz
+
More information about the debian-med-commit
mailing list