Skip to content

Commit a8900d9

Browse files
committed
Use projects.txt for special-case OME projects
I forgot projects.txt existed. Using it for the non-conforming OME projects is cleaner than writing complex shell script logic.
1 parent 1f677e0 commit a8900d9

File tree

2 files changed

+10
-28
lines changed

2 files changed

+10
-28
lines changed

project-url.sh

Lines changed: 1 addition & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -22,34 +22,7 @@ processGA() {
2222
test "$g" = "io.scif" && url=https://github.com/scifio/$a
2323
test "$g" = "net.imagej" && url=https://github.com/imagej/$a
2424
test "$g" = "net.imglib2" && url=https://github.com/imglib/$a
25-
if [ "$g" = "ome" ]
26-
then
27-
case "$a" in
28-
bio-formats_plugins|formats-*)
29-
url=https://github.com/ome/bioformats
30-
;;
31-
esac
32-
fi
33-
if [ "$g" = "org.openmicroscopy" ]
34-
then
35-
case "$a" in
36-
ome-common)
37-
url=https://github.com/ome/ome-common-java
38-
;;
39-
metakit)
40-
url=https://github.com/ome/ome-metakit
41-
;;
42-
ome-xml|specification)
43-
url=https://github.com/ome/ome-model
44-
;;
45-
omero-gateway)
46-
url=https://github.com/ome/omero-gateway-java
47-
;;
48-
*)
49-
url=https://github.com/ome/$a
50-
;;
51-
esac
52-
fi
25+
test "$g" = "org.openmicroscopy" && url=https://github.com/ome/$a
5326
test "$g" = "org.scijava" && url=https://github.com/scijava/$a
5427
if [ "$g" = "sc.fiji" ]
5528
then

projects.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,16 @@ ca.mcgill:Sholl_Analysis https://github.com/tferr/ASA
22
mpicbg:mpicbg https://github.com/axtimwalde/mpicbg
33
mpicbg:mpicbg_ https://github.com/axtimwalde/mpicbg
44
net.imagej:ij https://github.com/imagej/ImageJA
5+
ome:bio-formats_plugins https://github.com/ome/bioformats
6+
ome:formats-api https://github.com/ome/bioformats
7+
ome:formats-bsd https://github.com/ome/bioformats
8+
ome:formats-gpl https://github.com/ome/bioformats
59
org.janelia:H5J_Loader_Plugin https://github.com/fiji/H5J_Loader_Plugin
10+
org.openmicroscopy:metakit https://github.com/ome/ome-metakit
11+
org.openmicroscopy:ome-common https://github.com/ome/ome-common-java
12+
org.openmicroscopy:ome-xml https://github.com/ome/ome-model
13+
org.openmicroscopy:omero-gateway https://github.com/ome/omero-gateway-java
14+
org.openmicroscopy:specification https://github.com/ome/ome-model
615
org.scijava:j3dcore https://github.com/scijava/java3d-core
716
org.scijava:j3dutils https://github.com/scijava/java3d-utils
817
sc.fiji:Differentials https://github.com/fiji-BIG/Differentials

0 commit comments

Comments
 (0)