[med-svn] [Git][med-team/axpcoords][master] 7 commits: Add fake watch file

Andreas Tille gitlab at salsa.debian.org
Mon Apr 8 08:14:44 BST 2019



Andreas Tille pushed to branch master at Debian Med / axpcoords


Commits:
54ab2643 by Andreas Tille at 2019-04-08T07:07:34Z
Add fake watch file

- - - - -
6c3d0bbd by Andreas Tille at 2019-04-08T07:07:48Z
debhelper 12

- - - - -
2e9242b7 by Andreas Tille at 2019-04-08T07:07:51Z
Point Vcs fields to salsa.debian.org

- - - - -
89179692 by Andreas Tille at 2019-04-08T07:07:51Z
Standards-Version: 4.3.0

- - - - -
869c5084 by Andreas Tille at 2019-04-08T07:07:51Z
Remove trailing whitespace in debian/copyright

- - - - -
356becaf by Andreas Tille at 2019-04-08T07:07:52Z
Remove trailing whitespace in debian/rules

- - - - -
9f108c46 by Andreas Tille at 2019-04-08T07:10:55Z
Cleanup automatic changes, dh7 rules file

- - - - -


8 changed files:

- debian/changelog
- debian/compat
- debian/control
- debian/copyright
- + debian/install
- + debian/manpages
- debian/rules
- + debian/watch


Changes:

=====================================
debian/changelog
=====================================
@@ -1,9 +1,5 @@
 axpcoords (1.0-1) UNRELEASED; urgency=low
 
-  [ David Paleino ]
   * Initial release (Closes: #464323)
 
-  [ Andreas Tille ]
-  * Moved packaging from SVN to Git
-
- -- David Paleino <d.paleino at gmail.com>  Wed, 06 Feb 2008 09:29:46 +0100
+ -- Andreas Tille <tille at debian.org>  Mon, 08 Apr 2019 09:07:52 +0200


=====================================
debian/compat
=====================================
@@ -1 +1 @@
-10
+12


=====================================
debian/control
=====================================
@@ -3,11 +3,11 @@ Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.
 Uploaders: David Paleino <d.paleino at gmail.com>
 Section: science
 Priority: optional
-Build-Depends: debhelper (>= 10),
+Build-Depends: debhelper (>= 12~),
                libgsl-dev
-Standards-Version: 3.9.8
-Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/axpcoords.git
-Vcs-Git: https://anonscm.debian.org/git/debian-med/axpcoords.git
+Standards-Version: 4.3.0
+Vcs-Browser: https://salsa.debian.org/med-team/axpcoords
+Vcs-Git: https://salsa.debian.org/med-team/axpcoords.git
 Homepage: https://github.com/stamatak/AxPcoords.dist
 
 Package: axpcoords


=====================================
debian/copyright
=====================================
@@ -23,7 +23,7 @@ Comment:
  The thread is available at [2], but here's the relevant part (re-arranging
  as he top-quoted my reply):
  .
- ---BEGIN--- 
+ ---BEGIN---
  From: Alexandros Stamatakis <Alexandros.Stamatakis at epfl.ch>
  To: David Paleino <d.paleino at gmail.com>
  Cc: Debian-Med <debian-med at lists.debian.org>
@@ -36,32 +36,32 @@ Comment:
  > Hi,
  > I'm a member of the Debian-Med Group, which aim is to provide medical,
  > biological and scientific software into the Debian distribution.
- > 
+ >
  > I was going to package AxPcoords, but the copyright statement in the source
  > file says:
- > 
+ >
  > ---8<---
  > /*  This code may be used and modified for non-commercial purposes           */
- > /*  but redistribution in any form requires written permission.              */  
- > --->8---  
- > 
+ > /*  but redistribution in any form requires written permission.              */
+ > --->8---
+ >
  > This means that your software, according to the Debian Free Software Guidelines
  > (DFSG) [1], is non-free.
- > 
+ >
  > Moreover, with that statement, Debian can't even distribute this software in
  > the non-free "branch".
- > 
+ >
  > Would you please consider relicensing it under a free (i.e. DFSG-free) license,
  > such as the GNU General Public License (possibly v3+), BSD or Artistic?
- > 
+ >
  > Thank you.
- > 
+ >
  > Kind regards,
  > David Paleino
  > Debian-Med Group
- > 
+ >
  > [1] http://www.debian.org/social_contract#guidelines
- >   
+ >
  .
  Hi David,
  .


=====================================
debian/install
=====================================
@@ -0,0 +1 @@
+AxPcoordsGSL	usr/bin


=====================================
debian/manpages
=====================================
@@ -0,0 +1 @@
+debian/axpcoords.1


=====================================
debian/rules
=====================================
@@ -12,46 +12,14 @@ manpages: axpcoords.1
 axpcoords.1: debian/axpcoords.1.xml
 	$(XP) $<
 
-build: build-stamp
-build-stamp: patch
-	dh_testdir
-	$(MAKE) AxPcoordsGSL
-	touch $@
-
-clean: unpatch
-	dh_testdir
-	dh_testroot
-	dh_clean build-stamp
-	$(MAKE) clean
 
-install: build
-	dh_testdir
-	dh_testroot
-	dh_clean -k 
-	dh_installdirs usr/bin
-	dh_install AxPcoordsGSL usr/bin
+%:
+	dh $@
 
-binary-indep: build install
-binary-arch: build install
-	dh_testdir
-	dh_testroot
-	dh_installchangelogs 
-	dh_installdocs
-	dh_installman debian/axpcoords.1
-	dh_link
-	dh_strip
-	dh_compress
-	dh_fixperms
-	dh_installdeb
-	dh_shlibdeps
-	dh_gencontrol
-	dh_md5sums
-	dh_builddeb
+override_dh_auto_build:
+	$(MAKE) AxPcoordsGSL
 
 get-orig-source:
 	[ -d ../tarballs ] || mkdir ../tarballs
 	wget "http://icwww.epfl.ch/%7Estamatak/index-Dateien/countSourceAxPcoords.php" \
 		-O ../tarballs/axpcoords_1.0.orig.tar.gz
-
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install


=====================================
debian/watch
=====================================
@@ -0,0 +1,3 @@
+version=4
+opts=dversionmangle=s/.*/0.No-Release/ \
+ https://people.debian.org/~eriberto/ FakeWatchNoUpstreamReleaseForThisPackage-(\d\S+)\.gz



View it on GitLab: https://salsa.debian.org/med-team/axpcoords/compare/9d9016ea07d265a62861321ec4d1138da86c5999...9f108c46b3598ac5eb999056e1abdae513275a6d

-- 
View it on GitLab: https://salsa.debian.org/med-team/axpcoords/compare/9d9016ea07d265a62861321ec4d1138da86c5999...9f108c46b3598ac5eb999056e1abdae513275a6d
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/20190408/5db22b95/attachment-0001.html>


More information about the debian-med-commit mailing list