giddie (owner)

Revisions

gist: 80530 Download_button fork
public
Public Clone URL: git://gist.github.com/80530.git
Embed All Files: show embed
Text only #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
diff --git a/OMakefile b/OMakefile
index 92de085..dc34346 100644
--- a/OMakefile
+++ b/OMakefile
@@ -25,8 +25,8 @@ OCAML_CLIBS += ometastore_stub
 OCAML_OTHER_LIBS += unix str
 
 OCamlProgram(ometastore, folddir util ometastore)
-OCamlProgram(find-git-repos, folddir util find-git-repos)
-OCamlProgram(find-git-files, folddir util find-git-files)
+OCamlProgram(find-git-repos, folddir util findrepos)
+OCamlProgram(find-git-files, folddir util find)
 
 .DEFAULT: ometastore find-git-files find-git-repos
 
diff --git a/find-git-files.ml b/find-git-files.ml
deleted file mode 100644
index f2881aa..0000000
--- a/find-git-files.ml
+++ /dev/null
@@ -1,43 +0,0 @@
-(* Copyright (C) 2008 Mauricio Fernandez <mfp@acm.org> http//eigenclass.org
- * See README.txt and LICENSE for the redistribution and modification terms *)
-
-open Printf
-open Folddir
-open Util
-open Unix
-
-let debug = ref false
-
-module Find(F : Folddir.S) =
-struct
- let find ?(debug=false) ?(sorted=false) path =
- let aux l name stat =
- let dir = join path name in
- match stat.st_kind with
- | S_DIR -> begin
- try access (join dir ".git") [F_OK]; Prune (name :: l)
- with Unix_error _ -> Continue (name :: l)
- end
- | _ -> Continue (name :: l)
- in List.rev (F.fold_directory ~debug ~sorted aux [] path "")
-end
-
-module Gitignored = Find(Folddir.Make(Folddir.Gitignore))
-
-let main () =
- let usage = "Usage: find-git-files <options>" in
- let path = ref "." in
- let zerosep = ref false in
- let sorted = ref false in
- let specs = [
- "--path", Arg.Set_string path, "Set base path (default: .)";
- "-z", Arg.Set zerosep, "Use \\0 to separate filenames.";
- "-s", Arg.Set sorted, "Sort output.";
- "--debug", Arg.Set debug, "Debug mode"
- ]
- in
- Arg.parse specs ignore usage;
- let print = if !zerosep then printf "%s\000" else printf "%s\n" in
- List.iter print (Gitignored.find ~debug:!debug ~sorted:!sorted !path)
-
-let () = main ()
diff --git a/find-git-repos.ml b/find-git-repos.ml
deleted file mode 100644
index 6db674b..0000000
--- a/find-git-repos.ml
+++ /dev/null
@@ -1,47 +0,0 @@
-(* Copyright (C) 2008 Mauricio Fernandez <mfp@acm.org> http//eigenclass.org
- * See README.txt and LICENSE for the redistribution and modification terms *)
-
-open Printf
-open Folddir
-open Util
-open Unix
-
-let debug = ref false
-
-module Findrepos(F : Folddir.S) =
-struct
- let find_repositories ?(debug=false) path =
- let aux l name stat =
- let dir = join path name in
- match stat.st_kind with
- | S_DIR -> begin
- try access (join dir ".git") [F_OK]; Prune (name :: l)
- with Unix_error _ -> Continue l
- end
- | _ -> Continue l
- in List.sort compare (F.fold_directory ~debug aux [] path "")
-end
-
-module All = Findrepos(Folddir.Make(Folddir.Ignore_none))
-module Gitignored = Findrepos(Folddir.Make(Folddir.Gitignore))
-
-let main () =
- let usage = "Usage: find-git-repos <options>" in
- let path = ref "." in
- let find_repos = ref All.find_repositories in
- let zerosep = ref false in
- let sorted = ref false in
- let specs = [
- "--path", Arg.Set_string path, "Set base path (default: .)";
- "-i", Arg.Unit (fun () -> find_repos := Gitignored.find_repositories),
- "Mimic git semantics (honor .gitignore, don't scan git submodules)";
- "-z", Arg.Set zerosep, "Use \\0 to separate filenames.";
- "-s", Arg.Set sorted, "Sort output.";
- "--debug", Arg.Set debug, "Debug mode"
- ]
- in Arg.parse specs ignore usage;
- let print = if !zerosep then printf "%s\000" else printf "%s\n" in
- let l = !find_repos ~debug:!debug !path in
- List.iter print (if !sorted then List.sort compare l else l)
-
-let () = main ()
diff --git a/find.ml b/find.ml
new file mode 100644
index 0000000..f2881aa
--- /dev/null
+++ b/find.ml
@@ -0,0 +1,43 @@
+(* Copyright (C) 2008 Mauricio Fernandez <mfp@acm.org> http//eigenclass.org
+ * See README.txt and LICENSE for the redistribution and modification terms *)
+
+open Printf
+open Folddir
+open Util
+open Unix
+
+let debug = ref false
+
+module Find(F : Folddir.S) =
+struct
+ let find ?(debug=false) ?(sorted=false) path =
+ let aux l name stat =
+ let dir = join path name in
+ match stat.st_kind with
+ | S_DIR -> begin
+ try access (join dir ".git") [F_OK]; Prune (name :: l)
+ with Unix_error _ -> Continue (name :: l)
+ end
+ | _ -> Continue (name :: l)
+ in List.rev (F.fold_directory ~debug ~sorted aux [] path "")
+end
+
+module Gitignored = Find(Folddir.Make(Folddir.Gitignore))
+
+let main () =
+ let usage = "Usage: find-git-files <options>" in
+ let path = ref "." in
+ let zerosep = ref false in
+ let sorted = ref false in
+ let specs = [
+ "--path", Arg.Set_string path, "Set base path (default: .)";
+ "-z", Arg.Set zerosep, "Use \\0 to separate filenames.";
+ "-s", Arg.Set sorted, "Sort output.";
+ "--debug", Arg.Set debug, "Debug mode"
+ ]
+ in
+ Arg.parse specs ignore usage;
+ let print = if !zerosep then printf "%s\000" else printf "%s\n" in
+ List.iter print (Gitignored.find ~debug:!debug ~sorted:!sorted !path)
+
+let () = main ()
diff --git a/findrepos.ml b/findrepos.ml
new file mode 100644
index 0000000..6db674b
--- /dev/null
+++ b/findrepos.ml
@@ -0,0 +1,47 @@
+(* Copyright (C) 2008 Mauricio Fernandez <mfp@acm.org> http//eigenclass.org
+ * See README.txt and LICENSE for the redistribution and modification terms *)
+
+open Printf
+open Folddir
+open Util
+open Unix
+
+let debug = ref false
+
+module Findrepos(F : Folddir.S) =
+struct
+ let find_repositories ?(debug=false) path =
+ let aux l name stat =
+ let dir = join path name in
+ match stat.st_kind with
+ | S_DIR -> begin
+ try access (join dir ".git") [F_OK]; Prune (name :: l)
+ with Unix_error _ -> Continue l
+ end
+ | _ -> Continue l
+ in List.sort compare (F.fold_directory ~debug aux [] path "")
+end
+
+module All = Findrepos(Folddir.Make(Folddir.Ignore_none))
+module Gitignored = Findrepos(Folddir.Make(Folddir.Gitignore))
+
+let main () =
+ let usage = "Usage: find-git-repos <options>" in
+ let path = ref "." in
+ let find_repos = ref All.find_repositories in
+ let zerosep = ref false in
+ let sorted = ref false in
+ let specs = [
+ "--path", Arg.Set_string path, "Set base path (default: .)";
+ "-i", Arg.Unit (fun () -> find_repos := Gitignored.find_repositories),
+ "Mimic git semantics (honor .gitignore, don't scan git submodules)";
+ "-z", Arg.Set zerosep, "Use \\0 to separate filenames.";
+ "-s", Arg.Set sorted, "Sort output.";
+ "--debug", Arg.Set debug, "Debug mode"
+ ]
+ in Arg.parse specs ignore usage;
+ let print = if !zerosep then printf "%s\000" else printf "%s\n" in
+ let l = !find_repos ~debug:!debug !path in
+ List.iter print (if !sorted then List.sort compare l else l)
+
+let () = main ()
--
1.6.2