14 Commits
v1.5 ... v1.7

Author SHA1 Message Date
5268f23fcd node.sh
+rename npm.sh to node.sh
+custom npm list colors
2021-01-01 07:30:04 +01:00
2adb0f1064 pip.sh
Replace \033[1m by ${bold}.
Idem for others styles
2020-12-30 08:26:20 +01:00
9f6cb2e72e New installer
Features:
+when update, disabled plugins stay disabled
+if new install, choice to disable some plugins
2020-12-30 08:21:46 +01:00
c390f22b0f pip.sh
use pip3
2020-12-27 16:58:22 +01:00
8e15aa05a0 homebrew.sh
-bugfix
2020-12-27 16:57:56 +01:00
e5e2aa5d60 02-12-2020
-homebrew.sh: brew info --cask remplace brew cask info
-pip.sh: suppression de features 2020-resolver
2020-12-02 08:03:03 +01:00
ae8a356f1a homebrew.sh
-brew upgrade —formula
-brew upgrade —cask
-brew list --formulae --pinned
2020-11-06 17:17:26 +01:00
f77903f01d option —latest
homebrew.sh & kymsu2.sh:
-ajout d’une option —latest pour afficher les casks ‘latest’
2020-10-30 11:42:01 +01:00
d368c37788 pecl.sh
-bugfix
2020-10-16 06:22:44 +02:00
e4db3040d2 homebrew.sh
-bugfix
2020-10-16 06:22:25 +02:00
2947d9e7c6 pip.sh
-bugfix
-compatibilité Python 3.9
2020-10-16 06:21:27 +02:00
81c8ad34aa antibody.sh
1 seule notification même si plusieurs màj
2020-10-02 15:06:38 +02:00
731142630b 27-09-2020
-homebrew.sh
-pip.sh
-README.md
2020-09-27 18:51:29 +02:00
380967c8d4 homebrew.sh
-cleaning code
2020-09-20 07:55:10 +02:00
13 changed files with 561 additions and 126 deletions

View File

@@ -11,9 +11,10 @@ homebrew and pecl plugins notifie you if apache/php configuration files have bee
## Plug-ins:
- **atom** (plug-ins)
- **antibody** (zsh plug-ins)
- **homebrew** (brew and cask)
- **installed** (create a list of all your brew, pip, npm... stuffs and a Brewfile).
- **npm** (javascript package) (local or global packages)
- **npm** (javascript package) (local or global packages) (can update nvm script)
- **mas** (Mac Appstore)
- **pip** (Python Package index) (pip or pip3)
- **PECL** (PHP modules)

View File

@@ -1,14 +1,70 @@
#!/usr/bin/env bash
italic="\033[3m"
underline="\033[4m"
bold="\033[1m"
reset="\033[0m"
KYMSU_PATH=`pwd`
# Make Kymsu accessible in PATH
echo -e "Installing ${bold}kymsu2${reset} in ${bold}/usr/local/bin${reset} ..."
ln -fs "${KYMSU_PATH}"/kymsu2.sh /usr/local/bin/kymsu2
# Store Kymsu stuff in home directory
mkdir -p ~/.kymsu && echo "${KYMSU_PATH}" > ~/.kymsu/path
cp -R "${KYMSU_PATH}/plugins.d" ~/.kymsu
mkdir -p $HOME/.kymsu && echo "${KYMSU_PATH}" > $HOME/.kymsu/path
echo "altKYMSU has been installed. Run kymsu2 command!"
echo "It's a fork from https://github.com/welcoMattic/kymsu"
echo "All credits to welcoMattic"
pluginpath=$HOME/.kymsu/plugins.d/
if [ ! -d $pluginpath ]; then new_install=true; fi
# Backup disabled plugins
disabled=$(ls $pluginpath | grep ^_ | sed 's/^_//')
# Delete plugins folder
rm -rf $pluginpath
# Install new plugins
echo -e "Copying plugins in ${bold}$pluginpath${reset} ..."
cp -R "${KYMSU_PATH}/plugins.d" $HOME/.kymsu
if [ -n "$disabled" ]; then
echo -e "Disabling previous disabled plugins ..."
# Disable previous disabled plugins
for i in $(ls $pluginpath)
do
[[ $disabled =~ $i ]] && mv "$pluginpath$i" "$pluginpath"_"$i"
done
fi
echo -e "\n${bold}altKYMSU${reset} has been installed. Run ${bold}kymsu2${reset} command!"
echo -e "It's a fork from ${italic}https://github.com/welcoMattic/kymsu${reset}"
echo -e "All credits to ${underline}welcoMattic${reset}\n"
# If NEW install, we choose to desactivate some plugins
if [ "$new_install" = true ]; then
read -p "Do you want to activate / deactivate some plugins ? [y/n]" deactivate
echo ""
if [[ "$deactivate" == "y" || "$deactivate" == "Y" ]]; then
for i in $(ls $pluginpath)
do
if [[ ${i: -3} == ".sh" ]] && [[ ! ${i:0:2} == "00" ]] && [[ ! ${i:0:1} == "_" ]]; then
a=$(echo -e "Do you want to deactivate ${bold}$i${reset} plugins ? [y/n]")
read -p "$a" rep
if [[ "$rep" == "y" || "$rep" == "Y" ]]; then
mv "$pluginpath$i" "$pluginpath"_"$i" && echo -e "${bold}$i${reset} deactivated !"
fi
fi
done
fi
fi

View File

@@ -103,9 +103,13 @@ if [ -n "$updated" ]; then
echo "Last commit: "$url"/commits/"$last_commit
# https://github.com/zsh-users/zsh-completions/commits/
notif="$module has been updated"
notification "$notif"
#notif="$module has been updated"
#notification "$notif"
modules+="$module "
done
notif="$modules has been updated"
notification "$notif"
else
echo -e "\033[4mNo Antibody modules to update.\033[0m"
echo ""

69
plugins.d/conda.sh Executable file
View File

@@ -0,0 +1,69 @@
#!/usr/bin/env bash
# conda plugin for KYMSU
# https://github.com/welcoMattic/kymsu
# If you'd prefer that conda's base environment not be activated on startup, set the auto_activate_base parameter to false:
# conda config --set auto_activate_base false
# In order to initialize after the installation process is done,
# first run source <path to conda>/bin/activate and then run conda init.
# Update conda
echo -e "\033[1m🦎 conda \033[0m"
path_to_conda=$(conda config --show | grep 'root_prefix' | awk '{print $2}')
cd $path_to_conda
#conda update conda
# conda update -n base -c defaults conda
#upd=$(conda update --all)
#echo $upd
#avail_update=$(echo $upd | grep '$ conda update -n base -c defaults conda')
#avail_update=$(conda update --all | grep '$ conda update -n base -c defaults conda')
#avail_update=$(conda update --all)
conda update --all
avail_update="$(conda update --all 2>&1 > /dev/null)"
# Proceed ([y]/n)? n
echo "---"
if echo "$avail_update" | grep -q "$ conda update -n base -c defaults conda"
then
echo "need update"
fi
echo ""
# If you want to update to a newer version of Anaconda, type:
#
# $ conda update --prefix /Users/bruno/miniconda3 anaconda
# Initialisation
# source $HOME/miniconda3/bin/activate
# source $path_to_conda/bin/activate
# conda init
# Configuration
#conda config --help
#conda config --set auto_update_conda False
# Packages installés dans l'environnement conda
echo -e "\033[4mInstalled packages in conda environment:\033[0m"
echo ""
conda list

42
plugins.d/gem.sh Executable file
View File

@@ -0,0 +1,42 @@
#!/usr/bin/env bash
# gem plugin for KYMSU (install local package)
# https://github.com/welcoMattic/kymsu
# https://guides.rubygems.org/what-is-a-gem/
# No distract mode
no_distract=false
if [[ $1 == "--nodistract" ]]; then
no_distract=true
fi
echo -e "\033[1m 💍 Gem (Ruby) \033[0m"
echo ""
gem_outdated=$(gem outdated --local)
upd=$(echo "$gem_outdated" | awk '{print $1}')
if [ -n "$upd" ]; then
nb=$(echo "$upd" | wc -w | xargs)
echo -e "\\033[1;41m $nb \033[0m \033[4mavailables updates:\033[0m"
echo "$gem_outdated"
echo ""
for i in $upd
do
if [ "$no_distract" = false ]; then
echo "$i" | xargs -n 1 gem info
echo "$i" | xargs -p -n 1 gem update
echo -e "\n"
else
echo "$i" | xargs -n 1 gem update
echo -e "\n"
fi
done
else
echo -e "\033[4mNo gem updates.\033[0m"
fi

View File

@@ -18,10 +18,13 @@ display_info=true
# Casks don't have pinned cask. So add Cask to the do_not_update array for prevent to update.
# Also add package for prevent to update whitout pin it.
declare -a do_not_update=("xnconvert" "yate")
# declare -a do_not_update=("xnconvert" "yate")
declare -a do_not_update=()
# No distract mode (no user interaction)(Casks with 'latest' version number won't be updated)
no_distract=false
latest=false
#
###############################################################################################
#
@@ -48,11 +51,16 @@ if [[ $1 == "--nodistract" ]]; then
no_distract=true
fi
if [[ $1 == "--latest" ]]; then
latest=true
fi
echo -e "\033[1m🍺 Homebrew \033[0m"
echo ""
brew update
echo ""
echo "Search for packages update..."
echo ""
@@ -86,17 +94,9 @@ if [ -x "$(command -v jq)" ]; then
upd_pkg=$(echo "$upd_pkg" | sed 's/.$//')
upd_pkg_pinned=$(echo "$upd_pkg_pinned" | sed 's/.$//')
pkg_pinned=$(brew list --pinned | xargs)
#pkg_pinned=$(brew list --pinned | xargs)
pkg_pinned=$(brew list --formulae --pinned | xargs)
<<COMMENT
for row2 in $(jq -c '{casks} | .[] | .[]' <<< "$upd_json");
do
name=$(echo "$row2" | jq -j '.name')
upd_casks+="$name "
done
upd_casks=$(echo "$upd_casks" | sed 's/.$//')
echo "$upd_casks"
COMMENT
### Recherche des infos sur les paquets ###
@@ -141,9 +141,6 @@ else
fi
fi
#echo "$upd_pkg"
#echo "$upd_pkg_pinned"
### Display pinned packages ##
@@ -261,11 +258,6 @@ if [ -n "$upd_pkg" ]; then
a=$(echo -e "Do you wanna run \033[1mbrew upgrade "$not_pinned"\033[0m ? (y/n/a)")
# yes/no/all
read -p "$a" choice
#case "$choice" in
# y|Y ) echo "$brew_outdated" | awk '{print $1}' | xargs -p -n 1 brew upgrade ;;
# n|N ) echo "Ok, let's continue";;
# * ) echo "invalid";;
#esac
if [ "$choice" == "y" ] || [ "$choice" == "Y" ] || [ "$choice" == "a" ] || [ "$choice" == "A" ]; then
@@ -274,10 +266,10 @@ if [ -n "$upd_pkg" ]; then
FOUND=`echo ${do_not_update[*]} | grep "$i"`
if [ "${FOUND}" = "" ]; then
if [ "$choice" == "y" ] || [ "$choice" == "Y" ]; then
echo "$i" | awk '{print $1}' | xargs -p -n 1 brew upgrade
echo "$i" | awk '{print $1}' | xargs -p -n 1 brew upgrade --formula
echo ""
elif [ "$choice" == "a" ] || [ "$choice" == "A" ]; then
echo "$i" | awk '{print $1}' | xargs -n 1 brew upgrade
echo "$i" | awk '{print $1}' | xargs -n 1 brew upgrade --formula
echo ""
fi
fi
@@ -290,7 +282,7 @@ if [ -n "$upd_pkg" ]; then
else # no distract = true
if [ -n "$not_pinned" ]; then
echo "$not_pinned" | awk '{print $1}' | xargs -n 1 brew upgrade
echo "$not_pinned" | awk '{print $1}' | xargs -n 1 brew upgrade --formula
echo ""
fi
@@ -312,6 +304,17 @@ echo ""
echo -e "\033[1m🍺 Casks upgrade \033[0m"
echo ""
if (( ${#do_not_update[@]} )); then
nbp=${#do_not_update[*]}
echo -e "\033[4mList of\033[0m \033[1;41m $nbp \033[0m \033[4m'do not update' packages:\033[0m"
echo -e "\033[1;31m${do_not_update[*]}\033[0m"
echo "To remove package from this list, you need to edit the do_not_update array."
echo ""
fi
echo "Search for Casks update..."
echo ""
@@ -350,19 +353,18 @@ else
if [ -n "$upd_casks" ]; then
echo -e "\033[1;41m $nb_upd_casks \033[0m \033[4mAvailables Casks updates:\033[0m"
#echo "upd_casks: $upd_casks"
# Display info on outdated packages
if [ "$display_info" = true ]; then
info_cask=$(brew cask info $upd_casks)
#info_cask=$(brew cask info $upd_casks)
info_cask=$(brew info --cask $upd_casks)
for i in $upd_casks
do
b=$(grep -A 1 "$i:" <<< "$info_cask")
bb=$(echo "$b" | tail -n 1)
#echo "b: $b - bb: $bb"
array_info_cask["$i"]="$bb"
done
@@ -376,7 +378,6 @@ else
url=${array_info_cask[$name]}
if [[ ! " ${do_not_update[@]} " =~ " ${name} " ]]; then
#echo "$name est à updater"
l1+="\033[1;37m$name: installed: $installed_versions current: $current_version\033[0m\n"
else
l1+="\033[1;31m$name: installed: $installed_versions current: $current_version [Do not update]\033[0m\n"
@@ -385,14 +386,24 @@ else
fi
done
echo -e "$l1" | sed ':a;N;$!ba;s/\n//g'
echo -e "$l1"
#echo -e "$l1" | sed ':a;N;$!ba;s/\n//g' # supprimer les sauts de ligne
#echo -e "$l1" | tr -d '\n' # supprimer les sauts de ligne
fi
echo ""
#brew cask info betterzip
##########
if [ "$no_distract" = false ]; then
a=$(echo -e "Do you wanna run \033[1;37mbrew upgrade $upd_casks\033[0m ? (y/n/a)")
# yes/no/all
read -p "$a" choice
if [ "$choice" == "y" ] || [ "$choice" == "Y" ] || [ "$choice" == "a" ] || [ "$choice" == "A" ]; then
# boucle for: don't stop multiples updates if one block (bad checksum, not compatible with OS version (Onyx))
for i in $upd_casks
@@ -404,30 +415,48 @@ else
#echo "$i" | xargs -p -n 1 brew reinstall
#echo "$i" | xargs -p -n 1 brew upgrade --cask
b=$(echo -e "Do you wanna run \033[1;37mbrew upgrade homebrew/cask/$i\033[0m ? (y/n)")
read -p "$b" choice
#read -p "\033[1;37mbrew upgrade homebrew/cask/$i\033[0m ? (y/n)" choice
if [ "$choice" == "y" ]; then
brew upgrade homebrew/cask/$i
#b=$(echo -e "Do you wanna run \033[1;37mbrew upgrade homebrew/cask/$i\033[0m ? (y/n)")
#read -p "$b" choice
if [ "$choice" == "y" ] || [ "$choice" == "Y" ]; then
#echo "$i" | awk '{print $1}' | xargs -p -n 1 brew upgrade homebrew/cask/$i
echo "$i" | awk '{print $1}' | xargs -p -n 1 brew upgrade --cask
retCode=$?
echo "code retour: $retCode"
echo ""
elif [ "$choice" == "a" ] || [ "$choice" == "A" ]; then
#brew upgrade homebrew/cask/$i
brew upgrade --cask $i
retCode=$?
echo "code retour: $retCode"
echo ""
fi
fi
done
else
echo "Ok, let's continue"
fi
else # no distract = true
echo "no distract"
fi
#########
fi
echo ""
if [ -n "$upd_casks_latest" ] && [ "$no_distract" = false ]; then
if [ -n "$upd_casks_latest" ] && [ "$latest" == true ]; then
echo -e "\033[1;41m $nb_upd_casks_latest \033[0m \033[4mCasks (latest) updates:\033[0m"
#echo "upd_casks_latest: $upd_casks_latest"
# Display info on outdated packages
if [ "$display_info" = true ]; then
info_cask_latest=$(brew cask info $upd_casks_latest)
#info_cask_latest=$(brew cask info $upd_casks_latest)
info_cask_latest=$(brew info --cask $upd_casks_latest)
for i in $upd_casks_latest
do
@@ -446,7 +475,6 @@ else
url=${array_info_cask[$name]}
if [[ ! " ${do_not_update[@]} " =~ " ${name} " ]]; then
#echo "$name est à updater"
l2+="\033[1;37m$name: installed: $installed_versions current: $current_version\033[0m\n"
else
l2+="\033[1;31m$name: installed: $installed_versions current: $current_version [Do not update]\033[0m\n"
@@ -461,19 +489,23 @@ else
echo ""
q=$(echo -e "Do you wanna run \033[1;37mbrew upgrade --cask --greedy <cask>\033[0m ? (y/n)")
q=$(echo -e "Do you wanna run \033[1;37mbrew upgrade --cask --greedy <cask>\033[0m ? (y/n/a)")
read -p "$q" choice
#read -p "Do you wanna run Casks (latest) upgrade? (y/n)" choice
if [ "$choice" == "y" ]; then
if [ "$choice" == "y" ] || [ "$choice" == "Y" ] || [ "$choice" == "a" ] || [ "$choice" == "A" ]; then
for i in $upd_casks_latest
do
FOUND=`echo ${do_not_update[*]} | grep "$i"`
if [ "${FOUND}" == "" ]; then
#echo "$i" | awk '{print $1}' | xargs -p -n 1 brew cask upgrade --greedy
if [ "$choice" == "y" ] || [ "$choice" == "Y" ]; then
echo "$i" | xargs -p -n 1 brew upgrade --cask --greedy
echo ""
elif [ "$choice" == "a" ] || [ "$choice" == "A" ]; then
echo "$i" | xargs -n 1 brew upgrade --cask --greedy
echo ""
fi
fi
done
else
@@ -526,30 +558,28 @@ done
echo ""
##############
### Doctor ###
##############
echo "🍺 The Doc is checking that everything is ok."
echo ""
brew doctor
brew missing
status=$?
if [ $status -ne 0 ]; then brew missing --verbose; fi
echo ""
<<COMMENT2
COMMENT2
# Homebrew 2.0.0+ run a cleanup every 30 days
if [[ $1 == "--cleanup" ]]; then
echo "🍺 Cleaning brewery"
##brew cleanup -s
# keep 30 days
#HOMEBREW_NO_INSTALL_CLEANUP
brew cleanup --prune=30
##brew cask cleanup: deprecated - merged with brew cleanup
#brew cask cleanup --outdated
echo ""
fi

View File

@@ -8,12 +8,17 @@
# npm local install
local_path=/Users/bruno/Sites/node_modules/
chemin=$(pwd)
# folder contains Brewfile and Installer.md
#chemin=$(pwd)
chemin=$HOME/Documents/kymsu
#version: pip ou pip3
pip_version=pip3
#
#########################################
#if [ ! -d chemin ]; then mkdir $chemin; fi
mkdir -p $chemin
now=$(date +"%d-%m-%Y_%T")
mac=$(hostname -s)
file=$mac"@"$now
@@ -23,19 +28,19 @@ echo -e "\033[1m🛠 Installed \033[0m"
echo ''
Installed=$(find . -name 'Installed*.md' -maxdepth 1)
Installed=$(find $chemin -name 'Installed*.md' -maxdepth 1)
if [ -n "$Installed" ]; then
echo -e "A file \033[93mInstalled*.md\033[0m already exist! We remove it."
a=$(echo "$Installed" | xargs rm)
fi
if [ -f Brewfile ]; then
if [ -f $chemin/Brewfile ]; then
echo -e "The \033[93mBrewfile\033[0m already exist! We rename it."
find . -name 'Brewfile_*' -maxdepth 1 -print0 | xargs rm
d=$(date -r Brewfile "+%d-%m-%Y_%H:%M:%S")
find $chemin -name 'Brewfile_*' -maxdepth 1 -print0 | xargs rm
d=$(date -r $chemin/Brewfile "+%d-%m-%Y_%H:%M:%S")
mv Brewfile "Brewfile_$mac@$d"
mv "$chemin/Brewfile" "$chemin/Brewfile_$mac@$d"
fi
{
@@ -50,11 +55,11 @@ echo ''
echo '## 🍺 Homebrew'
echo ''
} >> Installed.md
} >> $chemin/Installed.md
echo -e "🍺 Get Homebrew \033[3m\033[93mtap\033[0m list"
echo '### Tap:' >> Installed.md
echo '### Tap:' >> $chemin/Installed.md
tap=$(brew tap)
{
echo "\`\`\`bash"
@@ -62,49 +67,49 @@ echo "$tap"
echo "\`\`\`"
echo ""
echo ''
} >> Installed.md
} >> $chemin/Installed.md
echo -e "🍺 Get Homebrew \033[3m\033[93mpackages\033[0m installed list"
echo '### Packages:' >> Installed.md
brew=$(brew list)
echo '### Packages:' >> $chemin/Installed.md
brew=$(brew list --formula)
{
echo "\`\`\`bash"
echo "$brew"
echo "\`\`\`"
echo ""
echo ''
} >> Installed.md
} >> $chemin/Installed.md
echo -e "🍺 Get Homebrew \033[3m\033[93mCask\033[0m installed list"
echo '### Casks:' >> Installed.md
cask=$(brew cask list)
echo '### Casks:' >> $chemin/Installed.md
cask=$(brew list --cask)
{
echo "\`\`\`bash"
echo "$cask"
echo "\`\`\`"
echo ""
echo ''
} >> Installed.md
} >> $chemin/Installed.md
# liste des apps de l'Appstore installées (nom & numéro)
echo -e "🍏 Get mas \033[3m\033[93mApp Store applications\033[0m list"
echo '## 🍏 mas (Mac App Store)' >> Installed.md
echo '' >> Installed.md
echo '## 🍏 mas (Mac App Store)' >> $chemin/Installed.md
echo '' >> $chemin/Installed.md
appfrommas=$(mas list | sort -k2)
#echo "$appfrommas"
#declare -a appstore
echo "\`\`\`bash" >> Installed.md
echo "\`\`\`bash" >> $chemin/Installed.md
# todo: trier la liste par nom
while read -r line; do
number=$(echo "$line" | awk '{print $1}')
#name=$(echo "$line" | awk -F "(" '{print $1}' | awk {'first = $1; $1=""; print $0'} | sed 's/^ //g')
name=$(echo "$line" | awk -F "(" '{print $1}' | awk '{first = $1; $1=""; print $0}' | sed 's/^ //g')
echo "$name ($number)" >> Installed.md
echo "$name ($number)" >> $chemin/Installed.md
#echo " " >> Installed.md
#appstore["$name"]="${number}"
done <<< "$appfrommas"
@@ -112,14 +117,14 @@ done <<< "$appfrommas"
echo "\`\`\`"
echo ""
echo ''
} >> Installed.md
} >> $chemin/Installed.md
# Extensions PHP PECL
echo -e "🐘 Get PECL \033[3m\033[93mPHP extensions\033[0m list"
echo '## 🐘 PECL extensions' >> Installed.md
echo '' >> Installed.md
echo '## 🐘 PECL extensions' >> $chemin/Installed.md
echo '' >> $chemin/Installed.md
ext_pecl=$(pecl list | sed '1,3d' | awk '{print $1}')
{
@@ -128,13 +133,13 @@ echo "$ext_pecl"
echo "\`\`\`"
echo ""
echo ''
} >> Installed.md
} >> $chemin/Installed.md
# Python packages (pip)
echo -e "🐍 Get pip \033[3m\033[93mPython 3 packages\033[0m installed list"
echo '## 🐍 Python packages' >> Installed.md
echo '' >> Installed.md
echo '## 🐍 Python packages' >> $chemin/Installed.md
echo '' >> $chemin/Installed.md
pip_packages=$($pip_version list | sed '1,2d' | awk '{print $1}')
{
@@ -143,7 +148,7 @@ echo "$pip_packages"
echo "\`\`\`"
echo ""
echo ''
} >> Installed.md
} >> $chemin/Installed.md
# atom
@@ -163,7 +168,7 @@ done <<< "$atom"
echo "\`\`\`"
echo ""
echo ''
} >> Installed.md
} >> $chemin/Installed.md
# Node.js packages (npm)
@@ -179,7 +184,7 @@ echo '### Global:'
echo "\`\`\`bash"
echo "$pkg_global_npm"
echo "\`\`\`"
} >> Installed.md
} >> $chemin/Installed.md
if [ -d "$local_path" ]; then
cd "$local_path" || exit
@@ -202,7 +207,26 @@ if [ -d "$local_path" ]; then
cd "$chemin" || exit
fi
echo "" >> Installed.md
echo "" >> $chemin/Installed.md
# gem
echo -e "💍 Get \033[3m\033[93mgem\033[0m installed list"
gems=$(gem list --no-versions)
{
echo '## 💍 Gem packages'
echo ''
echo "\`\`\`bash"
while read -r line; do
a=$(echo "$line")
echo "$a"
done <<< "$gems"
echo "\`\`\`"
echo ""
echo ''
} >> $chemin/Installed.md
echo ''
@@ -215,10 +239,12 @@ echo ''
echo -e "To restore everything listed in that file, run \033[3m\033[93m'$ brew bundle'\033[0m in folder that contains the Brewfile."
echo ''
mv Brewfile "$chemin/Brewfile"
#iconv -f macroman -t utf-8 Installed.md > Installed-utf8.md
#mv Installed-utf8.md "$filename".md
#rm Installed.md
mv Installed.md "$filename".md
mv $chemin/Installed.md "$chemin/$filename".md
open "$filename".md
open "$chemin/$filename".md

View File

@@ -27,8 +27,10 @@ if [[ $1 == "--nodistract" ]]; then
no_distract=true
fi
# Set ls_color to '' for output nvm list in colors, else '--no-colors'
ls_color='--no-colors'
# Set ls_color to '' for output nvm list in default colors, else '--no-colors'
# ls_color='--no-colors'
# ls_color='BrGcm' for custom colors
# export NVM_COLORS='BrGcm' in .zshrc for persistant custom colors
# Set doctor=true to run 'npm doctor' and 'npm cache verify' each time
doctor=true

View File

@@ -38,7 +38,25 @@ echo ""
echo -e "\033[1m❗ plugin en test (beta) \033[0m"
echo ""
pecl_upgrade=$(pecl list-upgrades)
# /usr/local/Cellar/php/7.4.11/bin/pecl
# /usr/local/Cellar/php@7.3/7.3.23/bin/pecl
# /usr/local/Cellar/php@7.2/7.2.33/bin/pecl
#pecl_upgrade=$(pecl list-upgrades)
version=$(php --info | grep 'PHP Version' | sed -n '1p' | awk -F" " '{print $NF}')
v=${version:0:3}
if [ "$v" = "7.3" ]; then
php_path=$(brew --prefix)/opt/php@7.3/bin
elif [ "$v" = "7.2" ]; then
php_path=$(brew --prefix)/opt/php@7.2/bin
elif [ "$v" = "7.4" ]; then
php_path=$(brew --prefix)/opt/php/bin
fi
pecl_upgrade=$($php_path/pecl list-upgrades)
if [ -n "$pecl_upgrade" ]; then
@@ -58,22 +76,27 @@ if [ -n "$pecl_upgrade" ]; then
# Channel pear.php.net
a=$(echo "$ligne" | grep "pear")
if [ -n "$a" ]; then
pecl channel-update pear.php.net
#pecl channel-update pear.php.net
$php_path/pecl channel-update pear.php.net
fi
# Channel pecl.php.net
b=$(echo "$ligne" | grep "pecl")
if [ -n "$b" ]; then
pecl channel-update pecl.php.net
#pecl channel-update pecl.php.net
$php_path/pecl channel-update pecl.php.net
#(pecl or doc) update available
b=$(echo "$ligne" | awk '{print $2}')
pecl info "$b"
#pecl info "$b"
$php_path/pecl info "$b"
echo ""
if [ "$no_distract" = false ]; then
echo "$b" | xargs -p -n 1 pecl upgrade
#echo "$b" | xargs -p -n 1 pecl upgrade
echo "$b" | xargs -p -n 1 $php_path/pecl upgrade
else
echo "$b" | xargs -n 1 pecl upgrade
#echo "$b" | xargs -n 1 pecl upgrade
echo "$b" | xargs -n 1 $php_path/pecl upgrade
fi
fi
echo ""

72
plugins.d/perl.sh Executable file
View File

@@ -0,0 +1,72 @@
#!/usr/bin/env bash
# Display info on updated pakages
display_info=true
# Also add module for prevent to update it.
declare -a do_not_update=('')
perl_app=$(which perl)
perl_v=$(perl -v | sed -n '2p')
echo -e "\033[4mPerl:\033[0m $perl_app"
echo -e "\033[4mVersion:\033[0m $perl_v"
echo ""
module="App::cpanoutdate"
if ! perl -M$module -e 1 2>/dev/null; then
echo -e "\033[4mRequierement:\033[0m module $module is not installed"
a=$(echo -e "Do you wanna run \033[1mcpan -i "$module"\033[0m ? (y/n)")
read -p "$a" choice
if [ "$choice" == "y" ]; then
#cpan -i $module
install_ok=true
else
echo "Bye"
exit
fi
else
echo "$module installed"
install_ok=true
fi
if [ "$install_ok" == "true" ]; then
echo "$module installed"
# install with cpan
# % cpan-outdated | xargs cpan -i
# install with cpanm
# % cpan-outdated | cpanm
# % cpan-outdated -p | cpanm
outdated=$(cpan-outdated -p)
nb=$(echo $outdated | wc -w)
a=$(echo -e "Do you wanna update\033[1m "$nb" outdated\033[0m modules ? (y/n)")
read -p "$a" choice
if [ "$choice" == "y" ]; then
for i in $outdated
do
FOUND=`echo ${do_not_update[*]} | grep "$i"`
if [ "${FOUND}" = "" ]; then
echo ""
if [ "$display_info" = true ]; then
cpan -D "$i"
fi
echo -e "\033[1m"
echo "$i" | awk '{print $1}' | xargs -p -n 1 cpan -i
echo -e "\033[0m"
#echo ""
fi
done
else
echo "Bye"
exit
fi
fi

80
plugins.d/perlbrew.sh Executable file
View File

@@ -0,0 +1,80 @@
#!/usr/bin/env bash
#Display useful information about the perlbrew installation.
#If a module is given the version and location of the module is displayed.
perlbrew info
<<COMMENT
Current perl:
Name: perl-5.30.1
Path: /Users/bruno/perl5/perlbrew/perls/perl-5.30.1/bin/perl
Config: -de -Dprefix=/Users/bruno/perl5/perlbrew/perls/perl-5.30.1 -Aeval:scriptdir=/Users/bruno/perl5/perlbrew/perls/perl-5.30.1/bin
Compiled at: Dec 16 2019 08:44:12
perlbrew:
version: 0.87
ENV:
PERLBREW_ROOT: /Users/bruno/perl5/perlbrew
PERLBREW_HOME: /Users/bruno/perl5/perlbrew
PERLBREW_PATH: /Users/bruno/perl5/perlbrew/bin:/Users/bruno/perl5/perlbrew/perls/perl-5.30.1/bin
PERLBREW_MANPATH: /Users/bruno/perl5/perlbrew/perls/perl-5.30.1/man
COMMENT
# List the recently available versions of perl on CPAN.
perlbrew available
# Removes all previously downloaded Perl tarballs and build directories.
perlbrew clean
# Show the version of perlbrew.
perlbrew version
<<COMMENT
# Build and install the given versions of perl.
perlbrew install [options] stable
perlbrew install [options] blead
perlbrew install [options] <version>
# https://github.com/perl11/cperl
perlbrew install [options] cperl-<version>
Options for "install" command:
-f --force Force installation
-j $n Parallel building and testing. ex. C<perlbrew install -j 5 perl-5.14.2>
-n --notest Skip testing
--switch Automatically switch to this Perl once successfully
installed, as if with `perlbrew switch <version>`
--as Install the given version of perl by a name.
ex. C<perlbrew install perl-5.6.2 --as legacy-perl>
--noman Skip installation of manpages
--thread Build perl with usethreads enabled
--multi Build perl with usemultiplicity enabled
--64int Build perl with use64bitint enabled
--64all Build perl with use64bitall enabled
--ld Build perl with uselongdouble enabled
--debug Build perl with DEBUGGING enabled
--clang Build perl using the clang compiler
--no-patchperl
Skip calling patchperl
-D,-U,-A Switches passed to perl Configure script.
ex. C<perlbrew install perl-5.10.1 -D usemymalloc -U versiononly>
--destdir $path
Install perl as per 'make install DESTDIR=$path'
--sitecustomize $filename
Specify a file to be installed as sitecustomize.pl
# Uninstalls the given perl installation.
perlbrew uninstall <name>
COMMENT

View File

@@ -6,8 +6,7 @@
# upgrade pip:
# python -m pip install --upgrade pip
#export PIP_USE_FEATURE=2020-resolver
#export PIP_USE_FEATURE=fast-deps
# Configurer pip3:
# pip config edit
#########################################
@@ -15,16 +14,28 @@
# Settings:
#version: pip ou pip3
# pip: python3.8 - pip3: python3.9
pip_version=pip3
#user: "" or "--user"
user=""
# No distract mode
no_distract=false
#add module to do_not_update array
declare -a do_not_update=()
#declare -a do_not_update=()
#declare -a do_not_update=("parso" "asgiref")
declare -a do_not_update=("asgiref")
#
#########################################
italic="\033[3m"
underline="\033[4m"
bold="\033[1m"
redbox="\033[1;41m"
redbold="\033[1;31m"
red="\033[31m"
yellow="\033[33m"
reset="\033[0m"
if [[ $1 == "--nodistract" ]]; then
no_distract=true
fi
@@ -34,21 +45,36 @@ if ! [ -x "$(command -v $pip_version)" ]; then
exit 1
fi
echo -e "\033[1m🐍 $pip_version (Python 3) \033[0m"
echo -e "${bold}🐍 $pip_version (Python 3) ${reset}"
echo ""
echo -e "\033[31mpip use features 2020-resolver & fast-deps for testings. pip 20.3 (10/2020) pip definitively this features.\033[0m"
echo -e "Current ${underline}Python3${reset} version: $(python3 -V | awk '{print $2}')"
echo -e "Current ${underline}pip3${reset} version: $(pip3 -V)"
#$pip_version install --upgrade pip
$pip_version install --upgrade pip > /dev/null
echo ""
$pip_version install --upgrade pip
echo ""
if (( ${#do_not_update[@]} )); then
nbp=${#do_not_update[*]}
echo -e "${underline}List of${reset} ${redbox} $nbp ${reset} ${underline}'do not update' packages:${reset}"
echo -e "${redbold}${do_not_update[*]}${reset}"
echo "To remove package from this list, you need to edit the do_not_update array."
echo ""
fi
pip_outdated=$($pip_version list --outdated --format columns)
upd=$(echo "$pip_outdated" | sed '1,2d' | awk '{print $1}')
if [ -n "$upd" ]; then
echo -e "\033[4mAvailables updates:\033[0m"
nb=$(echo "$upd" | wc -w | xargs)
echo -e "${redbox} $nb ${reset} ${underline}availables updates:${reset}"
#echo $pip3_outdated_freeze | tr [:space:] '\n'
echo "$pip_outdated"
echo ""
@@ -56,16 +82,12 @@ if [ -n "$upd" ]; then
for i in $upd
do
info=$($pip_version show "$i")
#info=$($pip_version show $i | sed -n 4q)
#info=$($pip_version show $i | head -5)
#info=$($pip_version show $i | tail -n +5)
echo "$info" | head -4
echo ''
#echo "$i"
echo ""
done
if [ -x "$(command -v pipdeptree)" ]; then
echo -e "\033[4mCheck dependancies:\033[0m"
echo -e "${underline}Check dependancies:${reset}"
echo "Be carefull!! This updates can be a dependancie for some modules. Check for any incompatible version."
fi
echo ""
@@ -74,19 +96,28 @@ if [ -n "$upd" ]; then
if [ -x "$(command -v pipdeptree)" ]; then
dependencies=$(echo "$i" | xargs pipdeptree -r -p | grep "$upd")
#asgiref==3.2.10
# - Django==3.1.2 [requires: asgiref~=3.2.10]
#parso==0.7.1
# - jedi==0.17.2 [requires: parso>=0.7.0,<0.8.0]
z=0
while read -r line; do
if [[ $line = *"<"* ]]; then
echo -e "\033[31m$line\033[0m"
echo -e "${red}$line${reset}"
elif [[ $line = *"~="* ]]; then
echo -e "${yellow}$line${reset}"
else
if [ "$z" -eq 0 ]; then
echo -e "\033[3m$line\033[0m"
echo -e "${italic}$line${reset}"
else
echo "$line"
fi
z=$((z+1))
fi
done <<< "$dependencies"
echo ""
else
c=$(echo -e "Do you want to install pipdeptree to check dependancies ? (y/n)")
@@ -104,7 +135,7 @@ if [ -n "$upd" ]; then
FOUND=`echo ${do_not_update[*]} | grep "$i"`
if [ "${FOUND}" = "" ] && [ "$no_distract" = false ]; then
b=$(echo -e "Do you wanna run \033[1m$pip_version install $user --upgrade $i\033[0m ? (y/n)")
b=$(echo -e "Do you wanna run ${bold}$pip_version install $user --upgrade $i${reset} ? (y/n)")
read -p "$b" choice
case "$choice" in
y|Y|o ) echo "$i" | xargs $pip_version install $user --upgrade ;;
@@ -116,17 +147,16 @@ if [ -n "$upd" ]; then
elif [ "${FOUND}" = "" ]; then
echo "$i" | xargs $pip_version install $user --upgrade
#echo "$i" | xargs $pip_version install $user --use-feature=2020-resolver --upgrade
fi
done
else
echo -e "\033[4mNo availables updates.\033[0m"
echo -e "${underline}No availables updates.${reset}"
fi
echo -e "🐍 Running \033[1mpip check\033[0m for checking that everything is ok."
echo ""
echo -e "🐍 Running ${bold}pip check${reset} for checking that everything is ok."
$pip_version check