This is an automated email from the git hooks/post-receive script. tille pushed a commit to branch master in repository libbpp-phyl.
commit 338245b4fa9ab271de54dadfb59551b6a7bf818d Author: Andreas Tille <[email protected]> Date: Fri Jul 14 14:20:52 2017 +0200 Remove postinst, postrm and prerm --- debian/changelog | 4 ++++ debian/postinst | 57 ------------------------------------------------------ debian/postrm | 59 -------------------------------------------------------- debian/prerm | 41 --------------------------------------- 4 files changed, 4 insertions(+), 157 deletions(-) diff --git a/debian/changelog b/debian/changelog index 84ad501..d0b9bb3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,11 @@ libbpp-phyl (2.3.1-6) UNRELEASED; urgency=medium + [ Julien Dutheil ] * remove some deprecation warnings which might lead to timeouts in tests + [ Andreas Tille ] + * Remove postinst, postrm and prerm + -- Julien Dutheil <[email protected]> Fri, 14 Jul 2017 14:18:21 +0200 libbpp-phyl (2.3.1-5) unstable; urgency=medium diff --git a/debian/postinst b/debian/postinst deleted file mode 100755 index cff89b1..0000000 --- a/debian/postinst +++ /dev/null @@ -1,57 +0,0 @@ -#! /bin/bash - -# Abort if any command returns an error value -set -e - -createGeneric() { - echo "-- Creating generic include file: $1.all" - #Make sure we run into subdirectories first: - dirs=() - for file in "$1"/* - do - if [ -d "$file" ] - then - # Recursion: - dirs+=( "$file" ) - fi - done - for dir in ${dirs[@]} - do - createGeneric $dir - done - #Now list all files, including newly created .all files: - if [ -f $1.all ] - then - rm $1.all - fi - dir=`basename $1` - for file in "$1"/* - do - if [ -f "$file" ] && ( [ "${file##*.}" == "h" ] || [ "${file##*.}" == "all" ] ) - then - file=`basename $file` - echo "#include \"$dir/$file\"" >> $1.all - fi - done; -} - -case "$1" in - configure) - # Actualize .all files - createGeneric /usr/include/Bpp - ;; - abort-upgrade|abort-remove|abort-deconfigure) - echo "$1" - ;; - *) - echo "postinst called with unknown argument \`\$1'" >&2 - exit 0 - ;; -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 diff --git a/debian/postrm b/debian/postrm deleted file mode 100755 index 744f8b1..0000000 --- a/debian/postrm +++ /dev/null @@ -1,59 +0,0 @@ -#! /bin/bash - -# Abort if any command returns an error value -set -e - -createGeneric() { - echo "-- Creating generic include file: $1.all" - #Make sure we run into subdirectories first: - dirs=() - for file in "$1"/* - do - if [ -d "$file" ] - then - # Recursion: - dirs+=( "$file" ) - fi - done - for dir in ${dirs[@]} - do - createGeneric $dir - done - #Now list all files, including newly created .all files: - if [ -f $1.all ] - then - rm $1.all - fi - dir=`basename $1` - for file in "$1"/* - do - if [ -f "$file" ] && ( [ "${file##*.}" == "h" ] || [ "${file##*.}" == "all" ] ) - then - file=`basename $file` - echo "#include \"$dir/$file\"" >> $1.all - fi - done; -} - -case "$1" in - remove) - # Automatically added by dh_makeshlibs - ldconfig - # Actualize .all files - createGeneric /usr/include/Bpp - ;; - purge|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) - echo $1 - ;; - *) - echo "postrm called with unknown argument \`\$1'" >&2 - exit 0 - ;; -esac - -# dh_installdeb will replace this with shell code automatically -# generated by other debhelper scripts. - -#DEBHELPER# - -exit 0 diff --git a/debian/prerm b/debian/prerm deleted file mode 100755 index 8fab52e..0000000 --- a/debian/prerm +++ /dev/null @@ -1,41 +0,0 @@ -#! /bin/bash - -# Abort if any command returns an error value -set -e - -removeGeneric() { - if [ -f $1.all ] - then - echo "-- Remove generic include file: $1.all" - rm $1.all - fi - for file in "$1"/* - do - if [ -d "$file" ] - then - # Recursion: - removeGeneric $file - fi - done -} - -case "$1" in - remove|upgrade|deconfigure) - # Actualize .all files - removeGeneric /usr/include/Bpp - ;; - failed-upgrade) - echo "$1" - ;; - *) - echo "prerm 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 -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/libbpp-phyl.git _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
