[med-svn] [Git][med-team/emboss-explorer][master] 11 commits: routine-update: Standards-Version: 4.5.1
Andreas Tille
gitlab at salsa.debian.org
Wed Nov 25 09:05:22 GMT 2020
Andreas Tille pushed to branch master at Debian Med / emboss-explorer
Commits:
4211d8bd by Andreas Tille at 2020-11-24T15:49:05+01:00
routine-update: Standards-Version: 4.5.1
- - - - -
6935ca08 by Andreas Tille at 2020-11-24T15:49:05+01:00
routine-update: debhelper-compat 13
- - - - -
f4e7976c by Andreas Tille at 2020-11-24T15:57:43+01:00
routine-update: Respect DEB_BUILD_OPTIONS in override_dh_auto_test target
- - - - -
4d6cdefd by Andreas Tille at 2020-11-24T15:57:43+01:00
routine-update: Add salsa-ci file
- - - - -
4e097979 by Andreas Tille at 2020-11-24T15:57:43+01:00
routine-update: Rules-Requires-Root: no
- - - - -
c6ad698f by Andreas Tille at 2020-11-24T15:57:44+01:00
Trim trailing whitespace.
Changes-By: lintian-brush
Fixes: lintian: trailing-whitespace
See-also: https://lintian.debian.org/tags/trailing-whitespace.html
- - - - -
fc8a136b by Andreas Tille at 2020-11-24T15:58:08+01:00
routine-update: watch file standard 4
- - - - -
6e3ff790 by Andreas Tille at 2020-11-25T09:12:51+01:00
Create /var/lib/emboss-explorer in postinst instead of rules since in rules the final user www-data is not known
- - - - -
185f83f6 by Andreas Tille at 2020-11-25T09:52:13+01:00
Hack around strange permission error in dh_installman
- - - - -
f5f82950 by Andreas Tille at 2020-11-25T09:53:24+01:00
fix cut-n-pasto
- - - - -
b05c959f by Andreas Tille at 2020-11-25T09:59:33+01:00
Upload to unstable
- - - - -
10 changed files:
- debian/changelog
- − debian/compat
- debian/control
- debian/emboss-explorer.install
- + debian/emboss-explorer.manpages
- + debian/emboss-explorer.postinst
- + debian/emboss-explorer.postrm
- debian/rules
- + debian/salsa-ci.yml
- debian/watch
Changes:
=====================================
debian/changelog
=====================================
@@ -1,9 +1,25 @@
-emboss-explorer (2.2.0-11) UNRELEASED; urgency=medium
+emboss-explorer (2.2.0-11) unstable; urgency=medium
+ * Team upload.
+
+ [ Jelmer Vernooij ]
* Trim trailing whitespace.
* Use secure copyright file specification URI.
- -- Jelmer Vernooij <jelmer at debian.org> Sat, 20 Oct 2018 20:38:26 +0000
+ [ Andreas Tille ]
+ * Standards-Version: 4.5.1 (routine-update)
+ * debhelper-compat 13 (routine-update)
+ * Respect DEB_BUILD_OPTIONS in override_dh_auto_test target (routine-
+ update)
+ * Add salsa-ci file (routine-update)
+ * Rules-Requires-Root: no (routine-update)
+ * Trim trailing whitespace.
+ * watch file standard 4 (routine-update)
+ * Create /var/lib/emboss-explorer in postinst instead of rules since
+ in rules the final user www-data is not known
+ * Hack around strange permission error in dh_installman
+
+ -- Andreas Tille <tille at debian.org> Wed, 25 Nov 2020 09:58:31 +0100
emboss-explorer (2.2.0-10) unstable; urgency=medium
@@ -189,4 +205,3 @@ emboss-explorer (2.2.0-1) experimental; urgency=low
* Initial release (Closes: #423548)
-- David Paleino <d.paleino at gmail.com> Sat, 12 May 2007 17:52:59 +0200
-
=====================================
debian/compat deleted
=====================================
@@ -1 +0,0 @@
-11
=====================================
debian/control
=====================================
@@ -3,14 +3,15 @@ Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.
Uploaders: Charles Plessy <plessy at debian.org>
Section: science
Priority: optional
-Build-Depends: debhelper (>= 11~),
+Build-Depends: debhelper-compat (= 13),
apache2-dev
Build-Depends-Indep: libparse-recdescent-perl,
libmailtools-perl
-Standards-Version: 4.2.1
+Standards-Version: 4.5.1
Vcs-Browser: https://salsa.debian.org/med-team/emboss-explorer
Vcs-Git: https://salsa.debian.org/med-team/emboss-explorer.git
Homepage: http://embossgui.sourceforge.net/
+Rules-Requires-Root: no
Package: emboss-explorer
Architecture: all
=====================================
debian/emboss-explorer.install
=====================================
@@ -4,3 +4,5 @@ debian/emboss-explorer.conf etc/emboss-explorer/
debian/index.html usr/share/emboss-explorer/html
html/images/* usr/share/emboss-explorer/images
debian/emboss-explorer.desktop usr/share/applications
+usr/bin
+usr/share/perl5
=====================================
debian/emboss-explorer.manpages
=====================================
@@ -0,0 +1 @@
+usr/share/man/man*/*
=====================================
debian/emboss-explorer.postinst
=====================================
@@ -0,0 +1,24 @@
+#!/bin/bash
+
+set -e
+
+case "$1" in
+ configure)
+ if [ ! -d /var/lib/emboss-explorer/output ] ; then
+ mkdir -p /var/lib/emboss-explorer/output
+ fi
+
+ chown -R www-data:www-data /var/lib/emboss-explorer/output
+ chmod -R 755 /var/lib/emboss-explorer/output
+ ;;
+
+ abort-upgrade|abort-remove|abort-deconfigure)
+ ;;
+
+ *)
+ echo "postinst called with unknown argument \`$1'" >&2
+ exit 1
+ ;;
+esac
+
+#DEBHELPER#
=====================================
debian/emboss-explorer.postrm
=====================================
@@ -0,0 +1,17 @@
+#!/bin/bash
+
+set -e
+
+case "$1" in
+ purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
+ rm -rf /var/lib/emboss-explorer/output
+ ;;
+
+ *)
+ echo "postrm called with unknown argument \`$1'" >&2
+ exit 1
+ ;;
+esac
+
+#DEBHELPER#
+
=====================================
debian/rules
=====================================
@@ -6,7 +6,9 @@ export DH_VERBOSE=1
dh $@ --with apache2
override_dh_auto_test:
-# disabled because of http://sourceforge.net/tracker/index.php?func=detail&aid=1994385&group_id=124389&atid=699414
+ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
+ echo 'Test disabled because of http://sourceforge.net/tracker/index.php?func=detail&aid=1994385&group_id=124389&atid=699414'
+endif
override_dh_install:
dh_install
@@ -17,6 +19,6 @@ override_dh_install:
mv $(CURDIR)/debian/emboss-explorer/usr/share/perl5/EMBOSS/ACD.pm $(CURDIR)/debian/libemboss-acd-perl/usr/share/perl5/EMBOSS/
mv $(CURDIR)/debian/emboss-explorer/usr/share/man/man3/EMBOSS::ACD.3pm $(CURDIR)/debian/libemboss-acd-perl/usr/share/man/man3/
-override_dh_fixperms:
- dh_fixperms
- install -m 755 -o www-data -g www-data -d $(CURDIR)/debian/emboss-explorer/var/lib/emboss-explorer/output
+override_dh_installman:
+ # FIXME: strange "Permission denied" error - no idea why
+ dh_installman || true
=====================================
debian/salsa-ci.yml
=====================================
@@ -0,0 +1,4 @@
+---
+include:
+ - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml
+ - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml
=====================================
debian/watch
=====================================
@@ -1,2 +1,2 @@
-version=3
+version=4
http://sf.net/embossgui/emboss-explorer-(.*)\.tar\.gz
View it on GitLab: https://salsa.debian.org/med-team/emboss-explorer/-/compare/93c1bcb1a91f5220b1c7f5bd3966eb9ca64d957d...b05c959f00d63b5822e4581a6b2d96d0a6a1f701
--
View it on GitLab: https://salsa.debian.org/med-team/emboss-explorer/-/compare/93c1bcb1a91f5220b1c7f5bd3966eb9ca64d957d...b05c959f00d63b5822e4581a6b2d96d0a6a1f701
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20201125/d7893d27/attachment-0001.html>
More information about the debian-med-commit
mailing list