summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-07-12 04:02:17 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2009-07-12 04:02:17 +0000
commitf8ed3228583f63b1b0aecaae647f24b9db8ca6b0 (patch)
treeeb274c2b686f22a4aa462b31dd306f6a22d7dab1
parentRespect PACKAGE_MANAGER environment variable. Bug #272979. (diff)
downloadpython-updater-f8ed3228583f63b1b0aecaae647f24b9db8ca6b0.tar.gz
python-updater-f8ed3228583f63b1b0aecaae647f24b9db8ca6b0.tar.bz2
python-updater-f8ed3228583f63b1b0aecaae647f24b9db8ca6b0.zip
Replace tabs with spaces.
-rw-r--r--ChangeLog70
-rwxr-xr-xpython-updater6
2 files changed, 37 insertions, 39 deletions
diff --git a/ChangeLog b/ChangeLog
index bc6b33a..e13a880 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,85 +5,83 @@ This file lists all changes except typo and formatting fixes.
2009-07-12 Arfrever Frehtes Taifersar Arahesis
- * python-updater: Respect PACKAGE_MANAGER environment variable. Bug #272979.
+ Tag version 0.7.
- * python-updater: Replace --ignore-versions option with
- --reinstall-identical-versions option.
+ * python-updater: Respect PACKAGE_MANAGER environment variable. Bug #272979.
- * man.include, Makefile: Update python-updater.1.
+ * python-updater: Replace --ignore-versions option with
+ --reinstall-identical-versions option.
- * python-updater: Allow to pass additional options to package manager.
- Bug #239174.
+ * man.include, Makefile: Update python-updater.1.
- * python-updater: Filter out --getbinpkg, --getbinpkgonly, --usepkg and
- --usepkgonly options in EMERGE_DEFAULT_OPTS environment variable. Bug #232304.
+ * python-updater: Allow to pass additional options to package manager. Bug #239174.
+
+ * python-updater: Filter out --getbinpkg, --getbinpkgonly, --usepkg and
+ --usepkgonly options in EMERGE_DEFAULT_OPTS environment variable. Bug #232304.
2009-07-11 Arfrever Frehtes Taifersar Arahesis
- * python-updater: Avoid problems when '/var/db/pkg' is a symlink.
- Bug #232313.
+ * python-updater: Avoid problems when '/var/db/pkg' is a symlink. Bug #232313.
- * python-updater: Check the version of '/usr/bin/python' instead of
- 'python'. Patch by Jeroen Roovers. Bug #256342.
+ * python-updater: Check the version of '/usr/bin/python' instead of 'python'.
+ Patch by Jeroen Roovers. Bug #256342.
- * python-updater: Update list of Python versions.
+ * python-updater: Update list of Python versions.
2008-10-27 Ali Polatel
- * man.include, python-updater: Add need_rebuild check.
+ * man.include, python-updater: Add need_rebuild check.
2008-08-25 Ali Polatel
- * python-updater: Tag version 0.6
+ Tag version 0.6.
- * python-updater: Echo the PMS command before running, #232860.
+ * python-updater: Echo the PMS command before running, #232860.
- * python-updater: Tell the user to use -o switch when no previous
- python versions are found, #232761.
+ * python-updater: Tell the user to use -o switch when no previous python versions
+ are found, #232761.
- * python-updater: Make check manual print reason without --verbose,
- #232467.
+ * python-updater: Make check manual print reason without --verbose, #232467.
2008-06-21 Ali Polatel
- * python-updater, man.include, Makefile: List checks in help output
- and make indenting a bit nicer. Man page cosmetics.
+ * python-updater, man.include, Makefile: List checks in help output
+ and make indenting a bit nicer. Man page cosmetics.
2008-06-20 Ali Polatel
- * python-updater: Fixed veinfo
+ * python-updater: Fixed veinfo
- * python-updater, +man.include, +Makefile: Splitted checks and added
- command line options for them. Added new tests eclass and soname.
- Respect PYUPDATER_OPTIONS environment variable for default command
- line options. Bashified tests. Added man page and Makefile to do
- common tasks. Fixed ChangeLog.
+ * python-updater, +man.include, +Makefile: Splitted checks and added command
+ line options for them. Added new tests eclass and soname. Respect
+ PYUPDATER_OPTIONS environment variable for default command line options.
+ Bashified tests. Added man page and Makefile to do common tasks. Fixed ChangeLog.
2008-01-04 Ali Polatel
- * +ChangeLog: Added ChangeLog
+ * +ChangeLog: Added ChangeLog
2008-01-04 Ali Polatel
- * +AUTHORS: Added AUTHORS
+ * +AUTHORS: Added AUTHORS
2007-12-13 Ali Polatel
- * python-updater: Don't ignore versions when SLOT doesn't exist,
- bug 201848
+ * python-updater: Don't ignore versions when SLOT doesn't exist,
+ bug 201848
2007-11-04 Ali Polatel
- * python-updater: be more specific when searching for package name
+ * python-updater: be more specific when searching for package name
2007-10-29 Ali Polatel
- * python-updater: added dev-libs/boost to PKGS_MANUAL
+ * python-updater: added dev-libs/boost to PKGS_MANUAL
2007-10-29 Ali Polatel
- * python-updater: imported python-updater from gentoo-python
+ * python-updater: imported python-updater from gentoo-python
2007-10-29 Ali Polatel
- * .: added projects/python-updater
+ * .: added projects/python-updater
diff --git a/python-updater b/python-updater
index 5b7e7f1..29feb24 100755
--- a/python-updater
+++ b/python-updater
@@ -78,7 +78,7 @@ Options:
Reinstall identical versions of packages
-P PM, --package-manager PM
Use package manager PM, where PM can be one of:
-$(for p in ${SUPPORTED_PMS} ; do
+$(for p in ${SUPPORTED_PMS}; do
echo -ne $'\t\t '\* ${p}
if [[ ${p} == portage ]]; then
echo ' (Default)'
@@ -181,8 +181,8 @@ fi
i=0
for pm in ${SUPPORTED_PMS}; do
if [[ "${pm}" == "${PACKAGE_MANAGER}" ]]; then
- PMS_INDEX="${i}"
- break
+ PMS_INDEX="${i}"
+ break
fi
((i++))
done