From a6747d8231cafaa52f4e746b72013f7e16c67e6b Mon Sep 17 00:00:00 2001 From: Amir MOHAMMADI <amir.mohammadi@idiap.ch> Date: Sat, 24 Feb 2018 21:49:43 +0100 Subject: [PATCH] Delete batch-update-conda-forge.sh --- conda/batch-update-conda-forge.sh | 40 ------------------------------- 1 file changed, 40 deletions(-) delete mode 100755 conda/batch-update-conda-forge.sh diff --git a/conda/batch-update-conda-forge.sh b/conda/batch-update-conda-forge.sh deleted file mode 100755 index 6e9c349..0000000 --- a/conda/batch-update-conda-forge.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/bash - -# you need (hub)[https://github.com/github/hub] and (gh)[https://github.com/node-gh/gh] - - -set -ex - -case $1 in - 1) - packages=("bob.extension") - ;; - 2) - packages=("bob.blitz") - ;; - 3) - packages=("bob.core" "bob.ip.draw") - ;; - 4) - packages=("bob.io.base" "bob.sp" "bob.math") - ;; - 5) - packages=("bob.ap" "bob.measure" "bob.db.base" "bob.io.image" "bob.io.video" "bob.io.matlab" "bob.ip.base" "bob.ip.color" "bob.ip.gabor" "bob.learn.activation" "bob.learn.libsvm" "bob.learn.boosting") - ;; - 6) - packages=("bob.io.audio" "bob.learn.linear" "bob.learn.mlp" "bob.db.wine" "bob.db.mnist" "bob.db.atnt" "bob.ip.flandmark" "bob.ip.facedetect" "bob.ip.optflow.hornschunck" "bob.ip.optflow.liu") - ;; - 7) - packages=("bob.learn.em" "bob.db.iris") - ;; - 8) - packages=("bob") - ;; -esac - - -for pkg in "${packages[@]}" -do - gh re --fork $pkg-feedstock --user conda-forge --organization bioidiap || true - python ../gitlab/update_feedstock.py $pkg -done -- GitLab