Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
bob.admin
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
bob
bob.admin
Merge requests
!69
Delete update_feedstock.py
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Delete update_feedstock.py
p1
into
master
Overview
0
Commits
2
Pipelines
0
Changes
1
Merged
Amir MOHAMMADI
requested to merge
p1
into
master
7 years ago
Overview
0
Commits
2
Pipelines
0
Changes
1
Expand
Fixes
#70 (closed)
0
0
Merge request reports
Viewing commit
a6747d82
Prev
Next
Show latest version
1 file
+
0
−
40
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
a6747d82
Delete batch-update-conda-forge.sh
· a6747d82
Amir MOHAMMADI
authored
7 years ago
conda/batch-update-conda-forge.sh deleted
100755 → 0
+
0
−
40
Options
#!/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
Loading