This is an automated email from the git hooks/post-receive script. ebourg-guest pushed a commit to branch master in repository maven-debian-helper.
commit 2512eb07d84c9b5180604e5f56731bcdcba749d3 Author: Emmanuel Bourg <[email protected]> Date: Wed Feb 5 15:38:03 2014 +0100 Minor fix for mh_make --- bin/mh_make | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bin/mh_make b/bin/mh_make index 3b16ed9..6cb62ee 100755 --- a/bin/mh_make +++ b/bin/mh_make @@ -34,7 +34,7 @@ syntax() echo -e "\tDEBEMAIL - your packager email address" echo -e "\tDEBLICENSE - the license for the files under the debian/ directory" echo -e "\t must be one of GPL2, GPL3, LGPL2.1, Apache-2.0, BSD or any license" - echo -e "\t short name defined in http://dep.debian.net/deps/dep5/" + echo -e "\t short name defined in http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/" exit 1 } @@ -82,8 +82,8 @@ if [ -z "$PACKAGE" ]; then PACKAGE=$(echo "$PACKAGE" | sed 's|.*/||' ) fi echo - echo "Enter the name of the new Debian source package. - read -p "[$PACKAGE] >" USER_PACKAGE + echo "Enter the name of the new Debian source package:" + read -p "[$PACKAGE] > " USER_PACKAGE if [ -n "$USER_PACKAGE" ]; then PACKAGE=$USER_PACKAGE fi @@ -97,8 +97,8 @@ if [ -z "$BIN_PACKAGE" ]; then BIN_PACKAGE="lib${PACKAGE}-java" fi echo - echo "Enter the name of the binary package." - read -p "[$BIN_PACKAGE] >" USER_PACKAGE + echo "Enter the name of the binary package:" + read -p "[$BIN_PACKAGE] > " USER_PACKAGE if [ -n "$USER_PACKAGE" ]; then BIN_PACKAGE=$USER_PACKAGE fi -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/maven-debian-helper.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

