diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-12-30 16:03:33 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2009-12-30 16:03:33 +0000 |
commit | ce20ac8799cac9effb6c3d0416cfad08616f675d (patch) | |
tree | bc5713dd132b0049a34157c3a6fa5d9152091511 | |
parent | Rename soname check to shared_linking. Add static_linking check. (diff) | |
download | python-updater-ce20ac8799cac9effb6c3d0416cfad08616f675d.tar.gz python-updater-ce20ac8799cac9effb6c3d0416cfad08616f675d.tar.bz2 python-updater-ce20ac8799cac9effb6c3d0416cfad08616f675d.zip |
Don't support undocumented short options.
-rwxr-xr-x | python-updater | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/python-updater b/python-updater index 4ca247b..8e2a169 100755 --- a/python-updater +++ b/python-updater @@ -273,28 +273,28 @@ while [[ -n "$1" ]]; do shift PIPE_COMMAND="$1" ;; - -ee*|--enable-e*) + -eeclass|--enable-eclass) CHECK_ECLASS=1 ;; - -de*|--disable-e*) + -declass|--disable-eclass) CHECK_ECLASS=0 ;; - -em*|--enable-m*) + -emanual|--enable-manual) CHECK_MANUAL=1 ;; - -dm*|--disable-m*) + -dmanual|--disable-manual) CHECK_MANUAL=0 ;; - -eP*|--enable-P*) + -ePYTHON_ABIS|--enable-PYTHON_ABIS) CHECK_PYTHON_ABIS=1 ;; - -dP*|--disable-P*) + -dPYTHON_ABIS|--disable-PYTHON_ABIS) CHECK_PYTHON_ABIS=0 ;; - -ep*|--enable-p*) + -epylibdir|--enable-pylibdir) CHECK_PYLIBDIR=1 ;; - -dp*|--disable-p*) + -dpylibdir|--disable-pylibdir) CHECK_PYLIBDIR=0 ;; -eshared_linking|--enable-shared_linking) @@ -309,10 +309,10 @@ while [[ -n "$1" ]]; do -dstatic_linking|--disable-static_linking) CHECK_STATIC_LINKING=0 ;; - -en*|--enable-n*) + -eneed_rebuild|--enable-need_rebuild) CHECK_ECLASS_NEED_REBUILD=1 ;; - -dn*|--disable-n*) + -dneed_rebuild|--disable-need_rebuild) CHECK_ECLASS_NEED_REBUILD=0 ;; --) @@ -486,7 +486,7 @@ for content in $(find ${PKG_DBDIR}/ -name CONTENTS | sort); do eindent einfo "Adding to list: ${CATPKGVER}" eindent - veinfo 1 "check: PYTHON_ABIS [ Previous Python ABIs ${PYTHON_ABIS}, new Python ABIs ${new_PYTHON_ABIS} ]" + veinfo 1 "check: PYTHON_ABIS [ Previous Python ABIs: ${PYTHON_ABIS}, new Python ABIs: ${new_PYTHON_ABIS} ]" eoutdent && eoutdent continue fi |