Skip to content
Commits on Source (8)
epcr (2.3.12-1-7) unstable; urgency=medium
[ Do Thanh Trung ]
* Enable cross building
Closes: #922192
[ Andreas Tille ]
* Secure URI for homepage
* debhelper 12
* Standards-Version: 4.3.0
* Remove trailing whitespace in debian/changelog
* Remove trailing whitespace in debian/copyright
* Drop non-functional autopkgtest template
-- Andreas Tille <tille@debian.org> Wed, 13 Feb 2019 08:19:01 +0100
epcr (2.3.12-1-6) unstable; urgency=medium
[ Andreas Tille ]
......@@ -6,9 +22,9 @@ epcr (2.3.12-1-6) unstable; urgency=medium
- remove wrong and redundat information
[ Manas Kashyap ]
* VCS updated
* VCS updated
* Debhelper bumped
* Standard version updated
* Standard version updated
[ Andreas Tille ]
* Versioned Build-Depends: debhelper (>= 11~) to enable easy backports
......@@ -49,7 +65,7 @@ epcr (2.3.12-1-2) unstable; urgency=low
[ Charles Plessy ]
* Normalised debian/control with ‘config-model-edit‘.
This also removed the obsolete DM-Upload-Allowed field.
This also removed the obsolete DM-Upload-Allowed field.
* Conforms with Policy 3.9.4.
[ Andreas Tille ]
......@@ -77,8 +93,8 @@ epcr (2.3.12-3) unstable; urgency=low
[ A. Costa ]
* Corrected typos in manpages (Closes: #650476).
[ Charles Plessy ]
[ Charles Plessy ]
* Lifted debian/copyright to latest DEP 5 draft.
[ Andreas Tille ]
......@@ -113,7 +129,7 @@ epcr (2.3.12-1) unstable; urgency=low
* New upstream release buildable with GCC 4.4 (Closes: #504849)
* Version number updated in debian/rules.
* debian/copyright refreshed to my latest exploration of the
machine-readable format.
machine-readable format.
* Added a BibTeX reference in debian/reference.
-- Charles Plessy <plessy@debian.org> Thu, 02 Jul 2009 09:31:29 +0900
......@@ -131,7 +147,7 @@ epcr (2.3.11-1) unstable; urgency=low
[ Charles Plessy ]
* debian/control:
- Added myself to the Uploaders.
- Using Debhelper 7 (also in debian/compat).
- Using Debhelper 7 (also in debian/compat).
- Removed patch system (also in debian/rules).
-- Charles Plessy <plessy@debian.org> Thu, 18 Jun 2009 17:39:15 +0900
......@@ -179,7 +195,7 @@ epcr (2.3.9-1) unstable; urgency=low
* Just use (and fix) the docbook-to-man output rather than live with
the broken output
* Wrote man pages for re-PCR and fahash
*
*
-- Andreas Tille <tille@debian.org> Wed, 16 Apr 2008 14:38:00 +0200
......
......@@ -5,11 +5,11 @@ Uploaders: Steffen Moeller <moeller@debian.org>,
Charles Plessy <plessy@debian.org>
Section: science
Priority: optional
Build-Depends: debhelper (>= 11~)
Standards-Version: 4.2.1
Build-Depends: debhelper (>= 12~)
Standards-Version: 4.3.0
Vcs-Browser: https://salsa.debian.org/med-team/epcr
Vcs-Git: https://salsa.debian.org/med-team/epcr.git
Homepage: http://www.ncbi.nlm.nih.gov/tools/epcr/
Homepage: https://www.ncbi.nlm.nih.gov/tools/epcr/
Package: ncbi-epcr
Architecture: any
......
......@@ -8,7 +8,7 @@ Copyright: nobody
License: public-domain
PUBLIC DOMAIN NOTICE
National Center for Biotechnology Information
.
.
This software/database is a "United States Government Work" under the
terms of the United States Copyright Act. It was written as part of
the author's official duties as a United States Government employee and
......@@ -36,7 +36,7 @@ License: GPL-2+
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 program 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
......
......@@ -23,7 +23,7 @@ override_dh_auto_clean:
rm -f e-PCR famap fahash re-PCR
override_dh_auto_build:
$(MAKE) links depend all OPTIMIZE=6
dh_auto_build -- links depend all OPTIMIZE=6
override_dh_auto_install:
# do nothing
Tests: run-unit-test
Depends: @
Restrictions: allow-stderr
#!/bin/bash
set -e
pkg=epcr
if [ "$AUTOPKGTEST_TMP" = "" ] ; then
AUTOPKGTEST_TMP=`mktemp -d /tmp/${pkg}-test.XXXXXX`
trap "rm -rf $AUTOPKGTEST_TMP" 0 INT QUIT ABRT PIPE TERM
fi
cp -a /usr/share/doc/${pkg}/examples/* $AUTOPKGTEST_TMP
cd $AUTOPKGTEST_TMP
#do_stuff_to_test_package#