Skip to content
Commits on Source (8)
Please see /usr/share/doc/quilt/README.source on Debian systems for more
information on quilt.
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 <tille@debian.org> Mon, 29 Oct 2018 09:54:43 +0100
nut-nutrition (20.1-2) unstable; urgency=medium
* Split data into architecture independent package
......
......@@ -3,17 +3,17 @@ Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.
Uploaders: Iain R. Learmonth <irl@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
......
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 <jozwiak@gmail.com>
Source: http://sourceforge.net/projects/nut/
......
#! /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
#! /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