[med-svn] [Git][med-team/btk-core][master] 13 commits: routine-update: Standards-Version: 4.5.0
Andreas Tille
gitlab at salsa.debian.org
Tue May 12 14:39:35 BST 2020
Andreas Tille pushed to branch master at Debian Med / btk-core
Commits:
50d9dcce by Andreas Tille at 2020-05-12T15:36:50+02:00
routine-update: Standards-Version: 4.5.0
- - - - -
78fc8aab by Andreas Tille at 2020-05-12T15:36:50+02:00
routine-update: debhelper-compat 12
- - - - -
bf9d596b by Andreas Tille at 2020-05-12T15:37:03+02:00
routine-update: Point Vcs fields to salsa.debian.org
- - - - -
5120e8bf by Andreas Tille at 2020-05-12T15:37:03+02:00
R-U: Trailing whitespace in debian/changelog
- - - - -
7a1f01e3 by Andreas Tille at 2020-05-12T15:37:03+02:00
R-U: Trailing whitespace in debian/control
- - - - -
6e0d71e0 by Andreas Tille at 2020-05-12T15:37:03+02:00
R-U: Trailing whitespace in debian/copyright
- - - - -
57263b0c by Andreas Tille at 2020-05-12T15:37:04+02:00
R-U: Trailing whitespace in debian/rules
- - - - -
d0540e8f by Andreas Tille at 2020-05-12T15:37:04+02:00
routine-update: Add salsa-ci file
- - - - -
fff6f380 by Andreas Tille at 2020-05-12T15:37:04+02:00
routine-update: Rules-Requires-Root: no
- - - - -
fae64f1a by Andreas Tille at 2020-05-12T15:37:05+02:00
debian/copyright: Replace commas with whitespace to separate items in Files paragraph.
Fixes: lintian: comma-separated-files-in-dep5-copyright
See-also: https://lintian.debian.org/tags/comma-separated-files-in-dep5-copyright.html
- - - - -
c6835917 by Andreas Tille at 2020-05-12T15:37:25+02:00
Set upstream metadata fields: Contact, Name (from ./configure).
Fixes: lintian: upstream-metadata-file-is-missing
See-also: https://lintian.debian.org/tags/upstream-metadata-file-is-missing.html
- - - - -
a78cd6d5 by Andreas Tille at 2020-05-12T15:37:26+02:00
Rely on pre-initialized dpkg-architecture variables.
Fixes: lintian: debian-rules-sets-dpkg-architecture-variable
See-also: https://lintian.debian.org/tags/debian-rules-sets-dpkg-architecture-variable.html
- - - - -
f4c71fd9 by Andreas Tille at 2020-05-12T15:39:17+02:00
Cleanup changelog
- - - - -
7 changed files:
- debian/changelog
- − debian/compat
- debian/control
- debian/copyright
- debian/rules
- + debian/salsa-ci.yml
- + debian/upstream/metadata
Changes:
=====================================
debian/changelog
=====================================
@@ -3,20 +3,18 @@ btk-core (0.8.1-1) UNRELEASED; urgency=low
[ Morten Kjeldgaard ]
* Modified for upload to Debian (Closes #459753)
* Use standards versions 3.7.3
-
+
[ Andreas Tille ]
* Maintainer: Debian-Med Packaging Team
Uploaders: Morten Kjeldgaard <mok at bioxray.dk>
- * XS-DM-Upload-Allowed: Yes
- * Vcs-Browser, Vcs-Svn
- * Moved packaging from SVN to Git
+ TODO: patch/unpatch targets are broken and should be removed
-- Morten Kjeldgaard <mok at bioxray.dk> Tue, 08 Jan 2008 15:22:01 +0100
btk-core (0.8.1-0ubuntu1) gutsy; urgency=low
- * Initial release.
- * Authored man pages rmsd.1 and transform_structure.1; these
+ * Initial release.
+ * Authored man pages rmsd.1 and transform_structure.1; these
can be found along with the code examples.
* Patched automake files to install in $(DESTDIR) and to disable
install-hooks that would delete files in /usr. Therefore,
=====================================
debian/compat deleted
=====================================
@@ -1 +0,0 @@
-10
=====================================
debian/control
=====================================
@@ -3,12 +3,13 @@ Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.
Uploaders: Morten Kjeldgaard <mok at bioxray.dk>
Section: science
Priority: optional
-Build-Depends: debhelper (>= 10),
+Build-Depends: debhelper-compat (= 12),
libboost-dev
-Standards-Version: 4.1.2
-Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/btk-core.git
-Vcs-Git: https://anonscm.debian.org/git/debian-med/btk-core.git
+Standards-Version: 4.5.0
+Vcs-Browser: https://salsa.debian.org/med-team/btk-core
+Vcs-Git: https://salsa.debian.org/med-team/btk-core.git
Homepage: http://btk.sourceforge.net/
+Rules-Requires-Root: no
Package: libbtk-core-dev
Architecture: any
@@ -19,5 +20,5 @@ Description: Biomolecule Toolkit C++ library
for common tasks in structural biology to facilitate the development of
molecular modeling, design and analysis tools.
.
- This package contains header files and libraries necessary to develop
+ This package contains header files and libraries necessary to develop
programs using the Biomolecular Toolkit.
=====================================
debian/copyright
=====================================
@@ -3,8 +3,11 @@ Upstream-Contact: Tim Robertson <kid50 at users.sourceforge.net>,
Chris Saunders <ctsa at users.sourceforge.net>
Source: http://sourceforge.net/projects/btk/
-Files: btk/*, examples/*, tests/*
-Copyright: 2006 Tim Robertson, Chris Saunders, Alex Morozov, Eric Alm
+Files:
+ btk/*
+ examples/*
+ tests/*
+Copyright: 2006 Tim Robertson, Chris Saunders, Alex Morozov, Eric Alm
& Jeff Gray
License: LGPL-2.1+
This package is free software; you can redistribute it and/or
=====================================
debian/rules
=====================================
@@ -8,8 +8,7 @@ export DH_OPTIONS
# These are used for cross-compiling and for saving the configure script
# from having to guess our platform (since we know it already)
-DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
-DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+include /usr/share/dpkg/architecture.mk
CFLAGS = -Wall -g
@@ -30,14 +29,14 @@ configure: configure.ac
automake
autoconf
-#Architecture
-build: build-arch
+#Architecture
+build: build-arch
build-arch: build-arch-stamp
build-arch-stamp: config.status
# Compile the arch part of the package
- $(MAKE)
+ $(MAKE)
touch $@
clean: unpatch
@@ -49,18 +48,18 @@ clean: unpatch
[ ! -f Makefile ] || $(MAKE) distclean
rm -rf autom4te.cache
rm -f aclocal.m4 configure _configs.sed
- rm -f Makefile.in btk/Makefile.in btk/core/Makefile.in
- rm -f examples/Makefile.in
+ rm -f Makefile.in btk/Makefile.in btk/core/Makefile.in
+ rm -f examples/Makefile.in
rm -f tests/Makefile.in tests/output_test.pdb
rm -f btk/core/config/btk_core_config.h
rm -f config.sub config.guess
- dh_clean
+ dh_clean
-install:
+install:
dh_testdir
dh_testroot
- dh_clean -k -s
+ dh_clean -k -s
dh_installdirs -s
# Install the arch part of the package into debian/tmp
@@ -77,7 +76,7 @@ binary-common:
dh_installman
dh_link
dh_strip
- dh_compress
+ dh_compress
dh_fixperms
dh_makeshlibs
dh_installdeb
@@ -91,4 +90,4 @@ binary-arch: build-arch install
$(MAKE) -f debian/rules DH_OPTIONS=-s binary-common
binary: binary-arch
-.PHONY: build clean binary-arch binary install install-arch
+.PHONY: build clean binary-arch binary install install-arch
=====================================
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/upstream/metadata
=====================================
@@ -0,0 +1,3 @@
+---
+Name: btk_core
+Contact: Tim Robertson <kid50 at users.sourceforge.net>,,Chris Saunders <ctsa at users.sourceforge.net>
View it on GitLab: https://salsa.debian.org/med-team/btk-core/-/compare/0db7385c986a94454d1b38c03b96d1eeee2fd592...f4c71fd995f97a3a92faaae9306b8f90fef988d0
--
View it on GitLab: https://salsa.debian.org/med-team/btk-core/-/compare/0db7385c986a94454d1b38c03b96d1eeee2fd592...f4c71fd995f97a3a92faaae9306b8f90fef988d0
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/20200512/a6c2f01b/attachment-0001.html>
More information about the debian-med-commit
mailing list