Andreas Tille pushed to branch master at Debian Med / nut-nutrition

Commits:
5043f31b by Andreas Tille at 2018-10-29T08:52:17Z
Remove unneeded manual postinst/postrm scripts

- - - - -
194663dd by Andreas Tille at 2018-10-29T08:52:56Z
Remove outdated debian/README.source

- - - - -
8b3d2053 by Andreas Tille at 2018-10-29T08:54:40Z
debhelper 11

- - - - -
2aa8a8d9 by Andreas Tille at 2018-10-29T08:54:43Z
Point Vcs fields to salsa.debian.org

- - - - -
d3e4f871 by Andreas Tille at 2018-10-29T08:54:43Z
Standards-Version: 4.2.1

- - - - -
d4c42b05 by Andreas Tille at 2018-10-29T08:54:43Z
Secure URI in copyright format

- - - - -
2c5bb4b1 by Andreas Tille at 2018-10-29T08:54:43Z
Remove trailing whitespace in debian/changelog

- - - - -
83dc4516 by Andreas Tille at 2018-10-29T08:55:45Z
Upload to unstable

- - - - -


7 changed files:

- − debian/README.source
- debian/changelog
- debian/compat
- debian/control
- debian/copyright
- − debian/postinst
- − debian/postrm


Changes:

=====================================
debian/README.source deleted
=====================================
@@ -1,4 +0,0 @@
-
-Please see /usr/share/doc/quilt/README.source on Debian systems for more
-information on quilt.
-


=====================================
debian/changelog
=====================================
@@ -1,3 +1,16 @@
+nut-nutrition (20.1-3) unstable; urgency=medium
+
+  * Team upload.
+  * Remove unneeded manual postinst/postrm scripts
+  * Remove outdated debian/README.source
+  * debhelper 11
+  * Point Vcs fields to salsa.debian.org
+  * Standards-Version: 4.2.1
+  * Secure URI in copyright format
+  * Remove trailing whitespace in debian/changelog
+
+ -- Andreas Tille <ti...@debian.org>  Mon, 29 Oct 2018 09:54:43 +0100
+
 nut-nutrition (20.1-2) unstable; urgency=medium
 
   * Split data into architecture independent package
@@ -53,7 +66,7 @@ nut-nutrition (14.4-1) unstable; urgency=low
   * Updated to debhelper 7
   * Updated and simplified description
   * Added Homepage field
-  * Updated and simplified copyright information 
+  * Updated and simplified copyright information
   * Updated menu entry to better match description
 
  -- Wesley J. Landaker <w...@icecavern.net>  Sun, 12 Apr 2009 12:50:16 -0600


=====================================
debian/compat
=====================================
@@ -1 +1 @@
-9
+11


=====================================
debian/control
=====================================
@@ -3,17 +3,17 @@ Maintainer: Debian Med Packaging Team 
<debian-med-packaging@lists.alioth.debian.
 Uploaders: Iain R. Learmonth <i...@fsfe.org>
 Section: misc
 Priority: optional
-Build-Depends: debhelper (>= 9)
-Standards-Version: 3.9.5
-Vcs-Browser: http://anonscm.debian.org/gitweb/?p=debian-med/nut-nutrition.git
-Vcs-Git: git://anonscm.debian.org/debian-med/nut-nutrition.git
+Build-Depends: debhelper (>= 11~)
+Standards-Version: 4.2.1
+Vcs-Browser: https://salsa.debian.org/med-team/nut-nutrition
+Vcs-Git: https://salsa.debian.org/med-team/nut-nutrition.git
 Homepage: http://nut.sourceforge.net/
 
 Package: nut-nutrition
 Architecture: any
 Depends: ${shlibs:Depends},
          ${misc:Depends},
-         nut-nutrition-data (>= 20.1-1)
+         nut-nutrition-data
 Description: dietary nutrition analysis software
  This software help you record what you eat and then analyzes your meals for
  nutrient levels in terms of the USDA "Daily Value" (the standard for food
@@ -21,8 +21,8 @@ Description: dietary nutrition analysis software
 
 Package: nut-nutrition-data
 Architecture: all
-Breaks: nut-nutrition (<< 20.1-1)
 Depends: ${misc:Depends}
+Breaks: nut-nutrition (<< 20.1-1)
 Description: dietary nutrition analysis software - common data
  This software help you record what you eat and then analyzes your meals for
  nutrient levels in terms of the USDA "Daily Value" (the standard for food


=====================================
debian/copyright
=====================================
@@ -1,4 +1,4 @@
-Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Upstream-Name: NUT nutrition software
 Upstream-Contact: Jim Jozwiak <jozw...@gmail.com>
 Source: http://sourceforge.net/projects/nut/


=====================================
debian/postinst deleted
=====================================
@@ -1,44 +0,0 @@
-#! /bin/sh
-# postinst script for #PACKAGE#
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-#        * <postinst> `configure' <most-recently-configured-version>
-#        * <old-postinst> `abort-upgrade' <new version>
-#        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
-#          <new-version>
-#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
-#          <failed-install-package> <version> `removing'
-#          <conflicting-package> <version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-#
-
-case "$1" in
-    configure)
-
-      if test -x /usr/bin/update-menus; then update-menus; fi
-
-    ;;
-
-    abort-upgrade|abort-remove|abort-deconfigure)
-
-    ;;
-
-    *)
-        echo "postinst called with unknown argument \`$1'" >&2
-        exit 1
-    ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0
-
-


=====================================
debian/postrm deleted
=====================================
@@ -1,39 +0,0 @@
-#! /bin/sh
-# postrm script for #PACKAGE#
-#
-# see: dh_installdeb(1)
-
-set -e
-
-# summary of how this script can be called:
-#        * <postrm> `remove'
-#        * <postrm> `purge'
-#        * <old-postrm> `upgrade' <new-version>
-#        * <new-postrm> `failed-upgrade' <old-version>
-#        * <new-postrm> `abort-install'
-#        * <new-postrm> `abort-install' <old-version>
-#        * <new-postrm> `abort-upgrade' <old-version>
-#        * <disappearer's-postrm> `disappear' <r>overwrit>r> <new-version>
-# for details, see http://www.debian.org/doc/debian-policy/ or
-# the debian-policy package
-
-
-case "$1" in
-       
purge|remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
-
-       if test -x /usr/bin/update-menus; then update-menus; fi
-
-        ;;
-
-    *)
-        echo "postrm called with unknown argument \`$1'" >&2
-        exit 1
-
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0



View it on GitLab: 
https://salsa.debian.org/med-team/nut-nutrition/compare/fae7d1425567ec396c1dd114d06263c763290baf...83dc451620fe032439f4f391139f938ca41f9486

-- 
View it on GitLab: 
https://salsa.debian.org/med-team/nut-nutrition/compare/fae7d1425567ec396c1dd114d06263c763290baf...83dc451620fe032439f4f391139f938ca41f9486
You're receiving this email because of your account on salsa.debian.org.
_______________________________________________
debian-med-commit mailing list
debian-med-com...@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/debian-med-commit

Reply via email to