├── .gitignore ├── .merlin ├── LICENSE ├── Makefile ├── README.md ├── _oasis ├── configure ├── data ├── in │ └── all.json ├── mirage_bot_to_dashboard.sh ├── out │ ├── all.json │ └── test.json └── test │ ├── repos_from_trove.json │ └── test.json └── src ├── branches.ml ├── branches.mli ├── dashboard_data.ml ├── dashboard_data.mli ├── events.ml ├── events.mli ├── github_wrapper.ml ├── github_wrapper.mli ├── mirage_dashboard.ml ├── releases.ml ├── releases.mli ├── repo_info.ml ├── repo_info.mli ├── stats.ml └── stats.mli /.gitignore: -------------------------------------------------------------------------------- 1 | *.annot 2 | *.cmo 3 | *.cma 4 | *.cmi 5 | *.a 6 | *.o 7 | *.cmx 8 | *.cmxs 9 | *.cmxa 10 | 11 | # ocamlbuild working directory 12 | _build/ 13 | 14 | # ocamlbuild targets 15 | *.byte 16 | *.native 17 | 18 | # oasis generated files 19 | setup.data 20 | setup.log 21 | _tags 22 | 23 | # vim stuff 24 | *.swp 25 | 26 | #osx stuff 27 | .DS_Store 28 | .DS_Store? 29 | ._* 30 | .Spotlight-V100 31 | .Trashes 32 | ehthumbs.db 33 | 34 | myocamlbuild.ml 35 | setup.ml 36 | -------------------------------------------------------------------------------- /.merlin: -------------------------------------------------------------------------------- 1 | PKG core 2 | PKG github 3 | PKG lwt 4 | PKG yojson 5 | 6 | EXT lwt 7 | 8 | S src 9 | B _build/** 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | {one line to give the program's name and a brief idea of what it does.} 635 | Copyright (C) {year} {name of author} 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | {project} Copyright (C) {year} {fullname} 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | # OASIS_START 2 | # DO NOT EDIT (digest: a3c674b4239234cbbe53afe090018954) 3 | 4 | SETUP = ocaml setup.ml 5 | 6 | build: setup.data 7 | $(SETUP) -build $(BUILDFLAGS) 8 | 9 | doc: setup.data build 10 | $(SETUP) -doc $(DOCFLAGS) 11 | 12 | test: setup.data build 13 | $(SETUP) -test $(TESTFLAGS) 14 | 15 | all: 16 | $(SETUP) -all $(ALLFLAGS) 17 | 18 | install: setup.data 19 | $(SETUP) -install $(INSTALLFLAGS) 20 | 21 | uninstall: setup.data 22 | $(SETUP) -uninstall $(UNINSTALLFLAGS) 23 | 24 | reinstall: setup.data 25 | $(SETUP) -reinstall $(REINSTALLFLAGS) 26 | 27 | clean: 28 | $(SETUP) -clean $(CLEANFLAGS) 29 | 30 | distclean: 31 | $(SETUP) -distclean $(DISTCLEANFLAGS) 32 | 33 | setup.data: 34 | $(SETUP) -configure $(CONFIGUREFLAGS) 35 | 36 | configure: 37 | $(SETUP) -configure $(CONFIGUREFLAGS) 38 | 39 | .PHONY: build doc test all install uninstall reinstall clean distclean configure 40 | 41 | # OASIS_STOP 42 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # mirage-dashboard 2 | 3 | A dashboard displaying useful data from 4 | [MirageOS](https://mirage.io/) project and its related 5 | repositories. 6 | 7 | View the [mirage-dashboard](http://rudenoise.github.io/mirage-dashboard/) 8 | 9 | ## Overview 10 | 11 | MirageOS is continually updating/improving, keeping track of these 12 | changes is tricky. 13 | 14 | As part of the [2016 MirageOS Hackathon](http://canopy.mirage.io), 15 | I'm starting this project as a learning exercise. 16 | 17 | ### What will the dashboard show? 18 | 19 | * A list of the core MirageOS libraries, on GitHub. 20 | * Data related to each library: 21 | * Name 22 | * License 23 | * Last release (version + date) 24 | * Commits to master since last release 25 | * Open issues (maybe more detailed numbers from labels) 26 | * Open PRs 27 | * Branches (maybe active only? Some mirage repos have way too many stale branches) 28 | * Top 3 contributors 29 | * CI status 30 | * Last activity: commit / issue 31 | 32 | ### How are the libraries chosen? 33 | 34 | To get things going there is a JSON file 35 | [repos.js](https://raw.githubusercontent.com/rudenoise/mirage-dashboard/master/data/in/all.json) 36 | that lists all relevant repositories. 37 | 38 | Each repo has tags to help categorise them. Tags could include: 39 | _depricated, core, network, build, etc..._ 40 | 41 | Please add/remove/update/edit/tag via pull requests. 42 | 43 | ## Work in progress: 44 | 45 | Build: 46 | ```sh 47 | opam install bin_prot camlp4 comparelib core herelib lwt 48 | // currently ocaml-github is dependent on ocaml < 4.02.3 49 | oasis setup 50 | ./configure 51 | make 52 | ``` 53 | 54 | Set up ocaml-github to list [Mirage repositories](https://github.com/mirage). 55 | 56 | Setup [git jar](https://github.com/mirage/ocaml-github#git-jar). 57 | 58 | ```sh 59 | # install ocaml-github from opam 60 | opam install ocaml-github 61 | # make an access token/cookie 62 | git-jar make {{your github username }} mirage-dashboard 63 | # list events for this repo 64 | git-list-events -c mirage-dashboard rudenoise/mirage-dashboard 65 | ``` 66 | 67 | Use the app (with its extremely limited form): 68 | 69 | ```sh 70 | ./mirage_dashboard.native -c mirage-dashboard -r data/in/all.json -o data/out/all.json 71 | # it'll take a while, hitting each repo in sequence to keep below the rate limit 72 | ``` 73 | 74 | ## TO DO: 75 | 76 | * remove all usage of _Core.Std_ 77 | * look at 78 | * [opam2web](https://github.com/ocaml/opam2web) 79 | * [opamfu](https://github.com/ocamllabs/opamfu) 80 | * improve contributors data (events may not be the best source) 81 | * cross-reference with [opam](https://github.com/ocaml/opam-repository) 82 | opamfu? 83 | * also look at [opam API 2.0](https://opam.ocaml.org/doc/2.0/api/) 84 | * break down event data 85 | * commits since release with dates 86 | * open PRs 87 | * open issues 88 | * get licence (opamfu?) 89 | * add filtering/sorting to web UI 90 | * recent activity 91 | * open issues 92 | * branch count 93 | * add filtering/sorting to CLI app 94 | * Get build status from 95 | [travis api](https://api.travis-ci.org/repositories/mirage/ocaml-cohttp.json?branch=master) 96 | use [ocaml-cohttp](https://github.com/mirage/ocaml-cohttp)? 97 | * Wrap in Mirage Unikernel 98 | * Serve publicly 99 | * Cache data (and/or background process github interrogation) to limit GitHub API calls 100 | 101 | ## Done: 102 | 103 | * README 104 | * Create web-accessible HTML/JS dashboard (static) 105 | * Start with CLI app 106 | * Dump data to JSON 107 | * Use [ocaml-github](https://github.com/mirage/ocaml-github) to 108 | gather basic data about the _MirageOS_ ecosystem. 109 | * Crawl dependencies 110 | * handle rate limit from API in OCaml app 111 | * tag repos with relevant meta-data for filtering in web-UI 112 | * add created_at field to data 113 | * get CI status, if any 114 | * add filtering/sorting to web UI 115 | * tags 116 | * improve releases data (straight to opam or use tags) 117 | * compare tag and release date, then choose most recent 118 | * include repo description 119 | 120 | ## Sources of inspiration/theft: 121 | 122 | * [The github gist program from the ocaml-github repo](https://github.com/mirage/ocaml-github/blob/master/gist/gist.ml) 123 | -------------------------------------------------------------------------------- /_oasis: -------------------------------------------------------------------------------- 1 | OASISFormat: 0.4 2 | Name: mirage-dashboard 3 | Version: 0.1 4 | Synopsis: A dashboard displaying useful data from Mirage OS project and its related repositories. 5 | Authors: Rudenoise 6 | License: GPL 7 | Plugins: META (0.4), DevFiles (0.4) 8 | BuildTools: ocamlbuild, ocamlopt 9 | BuildDepends: github.unix, str, core, 10 | lwt, 11 | yojson, 12 | threads, 13 | sexplib 14 | Executable "mirage_dashboard" 15 | Path: ./src 16 | MainIs: mirage_dashboard.ml 17 | CompiledObject: best 18 | -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # OASIS_START 4 | # DO NOT EDIT (digest: dc86c2ad450f91ca10c931b6045d0499) 5 | set -e 6 | 7 | FST=true 8 | for i in "$@"; do 9 | if $FST; then 10 | set -- 11 | FST=false 12 | fi 13 | 14 | case $i in 15 | --*=*) 16 | ARG=${i%%=*} 17 | VAL=${i##*=} 18 | set -- "$@" "$ARG" "$VAL" 19 | ;; 20 | *) 21 | set -- "$@" "$i" 22 | ;; 23 | esac 24 | done 25 | 26 | ocaml setup.ml -configure "$@" 27 | # OASIS_STOP 28 | -------------------------------------------------------------------------------- /data/in/all.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "repo": "mattgray/mirage-xen-virtualbox", 4 | "tags": [ 5 | "fromMirageBot", 6 | "xen" 7 | ] 8 | }, 9 | { 10 | "repo": "inhabitedtype/ocaml-webmachine", 11 | "tags": [ 12 | "fromMirageBot" 13 | ] 14 | }, 15 | { 16 | "repo": "oklm-wsh/MrMime", 17 | "tags": [ 18 | "fromMirageBot" 19 | ] 20 | }, 21 | { 22 | "repo": "inhabitedtype/ocaml-dispatch", 23 | "tags": [ 24 | "fromMirageBot" 25 | ] 26 | }, 27 | { 28 | "repo": "inhabitedtype/ocaml-session", 29 | "tags": [ 30 | "fromMirageBot" 31 | ] 32 | }, 33 | { 34 | "repo": "djwillia/solo5", 35 | "tags": [ 36 | "fromMirageBot" 37 | ] 38 | }, 39 | { 40 | "repo": "mattgray/devwinter2016", 41 | "tags": [ 42 | "fromMirageBot" 43 | ] 44 | }, 45 | { 46 | "repo": "mirage/ocaml-cohttp", 47 | "tags": [ 48 | "fromMirageBot" 49 | ] 50 | }, 51 | { 52 | "repo": "mirage/mirage", 53 | "tags": [ 54 | "fromMirageBot" 55 | ] 56 | }, 57 | { 58 | "repo": "mirage/ocaml-uri", 59 | "tags": [ 60 | "fromMirageBot" 61 | ] 62 | }, 63 | { 64 | "repo": "mirage/ocaml-github", 65 | "tags": [ 66 | "fromMirageBot" 67 | ] 68 | }, 69 | { 70 | "repo": "mirage/ocaml-cstruct", 71 | "tags": [ 72 | "fromMirageBot" 73 | ] 74 | }, 75 | { 76 | "repo": "mirage/mirage-platform", 77 | "tags": [ 78 | "fromMirageBot" 79 | ] 80 | }, 81 | { 82 | "repo": "mirage/mirage-tcpip", 83 | "tags": [ 84 | "fromMirageBot" 85 | ] 86 | }, 87 | { 88 | "repo": "mirage/mirage-dev", 89 | "tags": [ 90 | "fromMirageBot" 91 | ] 92 | }, 93 | { 94 | "repo": "mirage/mirage-www", 95 | "tags": [ 96 | "fromMirageBot" 97 | ] 98 | }, 99 | { 100 | "repo": "mirage/ocaml-pcap", 101 | "tags": [ 102 | "fromMirageBot" 103 | ] 104 | }, 105 | { 106 | "repo": "mirage/shared-memory-ring", 107 | "tags": [ 108 | "fromMirageBot" 109 | ] 110 | }, 111 | { 112 | "repo": "mirage/mirage-skeleton", 113 | "tags": [ 114 | "fromMirageBot" 115 | ] 116 | }, 117 | { 118 | "repo": "mirage/ocaml-git", 119 | "tags": [ 120 | "fromMirageBot" 121 | ] 122 | }, 123 | { 124 | "repo": "mirage/irmin", 125 | "tags": [ 126 | "fromMirageBot" 127 | ] 128 | }, 129 | { 130 | "repo": "mirage/mirage-block-xen", 131 | "tags": [ 132 | "fromMirageBot", 133 | "xen" 134 | ] 135 | }, 136 | { 137 | "repo": "mirage/ocaml-vchan", 138 | "tags": [ 139 | "fromMirageBot" 140 | ] 141 | }, 142 | { 143 | "repo": "mirage/mirage-block-unix", 144 | "tags": [ 145 | "fromMirageBot" 146 | ] 147 | }, 148 | { 149 | "repo": "mirage/mirage-net-xen", 150 | "tags": [ 151 | "fromMirageBot", 152 | "xen" 153 | ] 154 | }, 155 | { 156 | "repo": "mirage/alcotest", 157 | "tags": [ 158 | "fromMirageBot" 159 | ] 160 | }, 161 | { 162 | "repo": "mirage/mirage-fs-unix", 163 | "tags": [ 164 | "fromMirageBot" 165 | ] 166 | }, 167 | { 168 | "repo": "mirage/mirage-http", 169 | "tags": [ 170 | "fromMirageBot" 171 | ] 172 | }, 173 | { 174 | "repo": "mirage/ocaml-conduit", 175 | "tags": [ 176 | "fromMirageBot" 177 | ] 178 | }, 179 | { 180 | "repo": "mirage/xen-arm-builder", 181 | "tags": [ 182 | "fromMirageBot", 183 | "xen" 184 | ] 185 | }, 186 | { 187 | "repo": "mirage/mirage-profile", 188 | "tags": [ 189 | "fromMirageBot" 190 | ] 191 | }, 192 | { 193 | "repo": "mirage/ocaml-qcow", 194 | "tags": [ 195 | "fromMirageBot" 196 | ] 197 | }, 198 | { 199 | "repo": "mirage/ocaml-vmnet", 200 | "tags": [ 201 | "fromMirageBot" 202 | ] 203 | }, 204 | { 205 | "repo": "mirage/functoria", 206 | "tags": [ 207 | "fromMirageBot" 208 | ] 209 | }, 210 | { 211 | "repo": "mirage/ocaml-9p", 212 | "tags": [ 213 | "fromMirageBot" 214 | ] 215 | }, 216 | { 217 | "repo": "mirage/ocaml-asl", 218 | "tags": [ 219 | "fromMirageBot" 220 | ] 221 | }, 222 | { 223 | "repo": "mirage/mirage-block", 224 | "tags": [ 225 | "fromMirageBot" 226 | ] 227 | }, 228 | { 229 | "repo": "mirage/orm", 230 | "tags": [ 231 | "fromMirageBot" 232 | ] 233 | }, 234 | { 235 | "repo": "mirage/dyntype", 236 | "tags": [ 237 | "fromMirageBot" 238 | ] 239 | }, 240 | { 241 | "repo": "mirage/mirage-tutorial", 242 | "tags": [ 243 | "fromMirageBot" 244 | ] 245 | }, 246 | { 247 | "repo": "mirage/ocaml-dns", 248 | "tags": [ 249 | "fromMirageBot" 250 | ] 251 | }, 252 | { 253 | "repo": "mirage/ocaml-tar", 254 | "tags": [ 255 | "fromMirageBot" 256 | ] 257 | }, 258 | { 259 | "repo": "mirage/ocaml-cow", 260 | "tags": [ 261 | "fromMirageBot" 262 | ] 263 | }, 264 | { 265 | "repo": "mirage/ocaml-xenstore", 266 | "tags": [ 267 | "fromMirageBot", 268 | "xen" 269 | ] 270 | }, 271 | { 272 | "repo": "mirage/ocaml-crunch", 273 | "tags": [ 274 | "fromMirageBot" 275 | ] 276 | }, 277 | { 278 | "repo": "mirage/cowabloga", 279 | "tags": [ 280 | "fromMirageBot" 281 | ] 282 | }, 283 | { 284 | "repo": "mirage/ocaml-ipaddr", 285 | "tags": [ 286 | "fromMirageBot" 287 | ] 288 | }, 289 | { 290 | "repo": "mirage/mirage-decks", 291 | "tags": [ 292 | "fromMirageBot" 293 | ] 294 | }, 295 | { 296 | "repo": "mirage/io-page", 297 | "tags": [ 298 | "fromMirageBot" 299 | ] 300 | }, 301 | { 302 | "repo": "mirage/mirage-clock", 303 | "tags": [ 304 | "fromMirageBot" 305 | ] 306 | }, 307 | { 308 | "repo": "mirage/mirage-console", 309 | "tags": [ 310 | "fromMirageBot" 311 | ] 312 | }, 313 | { 314 | "repo": "mirage/shared-block-ring", 315 | "tags": [ 316 | "fromMirageBot" 317 | ] 318 | }, 319 | { 320 | "repo": "mirage/mirage-net-unix", 321 | "tags": [ 322 | "fromMirageBot" 323 | ] 324 | }, 325 | { 326 | "repo": "mirage/ezjsonm", 327 | "tags": [ 328 | "fromMirageBot" 329 | ] 330 | }, 331 | { 332 | "repo": "mirage/ocaml-gnt", 333 | "tags": [ 334 | "fromMirageBot" 335 | ] 336 | }, 337 | { 338 | "repo": "mirage/mirage-block-volume", 339 | "tags": [ 340 | "fromMirageBot" 341 | ] 342 | }, 343 | { 344 | "repo": "mirage/ocaml-xenstore-server", 345 | "tags": [ 346 | "fromMirageBot", 347 | "xen" 348 | ] 349 | }, 350 | { 351 | "repo": "mirage/jitsu", 352 | "tags": [ 353 | "fromMirageBot" 354 | ] 355 | }, 356 | { 357 | "repo": "mirage/ocaml-hex", 358 | "tags": [ 359 | "fromMirageBot" 360 | ] 361 | }, 362 | { 363 | "repo": "mirage/mirage-bootvar-xen", 364 | "tags": [ 365 | "fromMirageBot", 366 | "xen" 367 | ] 368 | }, 369 | { 370 | "repo": "mirage/mirage-flow", 371 | "tags": [ 372 | "fromMirageBot" 373 | ] 374 | }, 375 | { 376 | "repo": "mirage/mirage-seal", 377 | "tags": [ 378 | "fromMirageBot" 379 | ] 380 | }, 381 | { 382 | "repo": "mirage/mini-os", 383 | "tags": [ 384 | "fromMirageBot" 385 | ] 386 | }, 387 | { 388 | "repo": "mirage/irmin-chunk", 389 | "tags": [ 390 | "fromMirageBot" 391 | ] 392 | }, 393 | { 394 | "repo": "mirage/irmin-krypto", 395 | "tags": [ 396 | "fromMirageBot" 397 | ] 398 | }, 399 | { 400 | "repo": "mirage/ocaml-launchd", 401 | "tags": [ 402 | "fromMirageBot" 403 | ] 404 | }, 405 | { 406 | "repo": "mirage/mirage-block-ramdisk", 407 | "tags": [ 408 | "fromMirageBot" 409 | ] 410 | }, 411 | { 412 | "repo": "mirage/ocaml-rpc", 413 | "tags": [ 414 | "fromMirageBot" 415 | ] 416 | }, 417 | { 418 | "repo": "mirage/ocaml-fat", 419 | "tags": [ 420 | "fromMirageBot" 421 | ] 422 | }, 423 | { 424 | "repo": "mirage/mirage-fs", 425 | "tags": [ 426 | "fromMirageBot" 427 | ] 428 | }, 429 | { 430 | "repo": "mirage/xenbigarray", 431 | "tags": [ 432 | "fromMirageBot", 433 | "xen" 434 | ] 435 | }, 436 | { 437 | "repo": "mirage/ocaml-tuntap", 438 | "tags": [ 439 | "fromMirageBot" 440 | ] 441 | }, 442 | { 443 | "repo": "mirage/xen-disk", 444 | "tags": [ 445 | "fromMirageBot", 446 | "xen" 447 | ] 448 | }, 449 | { 450 | "repo": "mirage/ocaml-mbr", 451 | "tags": [ 452 | "fromMirageBot" 453 | ] 454 | }, 455 | { 456 | "repo": "mirage/ocaml-mstruct", 457 | "tags": [ 458 | "fromMirageBot" 459 | ] 460 | }, 461 | { 462 | "repo": "mirage/ocaml-lazy-trie", 463 | "tags": [ 464 | "fromMirageBot" 465 | ] 466 | }, 467 | { 468 | "repo": "mirage/ocaml-evtchn", 469 | "tags": [ 470 | "fromMirageBot" 471 | ] 472 | }, 473 | { 474 | "repo": "mirage/mirage-vagrant-vms", 475 | "tags": [ 476 | "fromMirageBot" 477 | ] 478 | }, 479 | { 480 | "repo": "mirage/merge-queues", 481 | "tags": [ 482 | "fromMirageBot" 483 | ] 484 | }, 485 | { 486 | "repo": "mirage/ocaml-bloom-filters", 487 | "tags": [ 488 | "fromMirageBot" 489 | ] 490 | }, 491 | { 492 | "repo": "mirage/mirage-entropy", 493 | "tags": [ 494 | "fromMirageBot" 495 | ] 496 | }, 497 | { 498 | "repo": "mirage/mirage-xen-minios", 499 | "tags": [ 500 | "fromMirageBot", 501 | "xen" 502 | ] 503 | }, 504 | { 505 | "repo": "mirage/ocaml-base64", 506 | "tags": [ 507 | "fromMirageBot" 508 | ] 509 | }, 510 | { 511 | "repo": "mirage/ocaml-openflow", 512 | "tags": [ 513 | "fromMirageBot" 514 | ] 515 | }, 516 | { 517 | "repo": "mirage/synjitsu", 518 | "tags": [ 519 | "fromMirageBot" 520 | ] 521 | }, 522 | { 523 | "repo": "mirage/merge-ropes", 524 | "tags": [ 525 | "fromMirageBot" 526 | ] 527 | }, 528 | { 529 | "repo": "mirage/mirage-tc", 530 | "tags": [ 531 | "fromMirageBot" 532 | ] 533 | }, 534 | { 535 | "repo": "mirage/mirage-net-macosx", 536 | "tags": [ 537 | "fromMirageBot" 538 | ] 539 | }, 540 | { 541 | "repo": "mirage/xentropyd", 542 | "tags": [ 543 | "fromMirageBot", 544 | "xen" 545 | ] 546 | }, 547 | { 548 | "repo": "mirage/ocaml-magic-mime", 549 | "tags": [ 550 | "fromMirageBot" 551 | ] 552 | }, 553 | { 554 | "repo": "talex5/cuekeeper", 555 | "tags": [ 556 | "fromMirageBot" 557 | ] 558 | }, 559 | { 560 | "repo": "mirage/mirage-perf", 561 | "tags": [ 562 | "fromMirageBot" 563 | ] 564 | }, 565 | { 566 | "repo": "mirage/mirage-channel", 567 | "tags": [ 568 | "fromMirageBot" 569 | ] 570 | }, 571 | { 572 | "repo": "mirage/mirage-logs", 573 | "tags": [ 574 | "fromMirageBot" 575 | ] 576 | }, 577 | { 578 | "repo": "talex5/mirage-qubes", 579 | "tags": [ 580 | "fromMirageBot" 581 | ] 582 | }, 583 | { 584 | "repo": "talex5/qubes-mirage-skeleton", 585 | "tags": [ 586 | "fromMirageBot" 587 | ] 588 | }, 589 | { 590 | "repo": "talex5/qubes-mirage-firewall", 591 | "tags": [ 592 | "fromMirageBot" 593 | ] 594 | }, 595 | { 596 | "repo": "djs55/ocaml-xenstore-clients", 597 | "tags": [ 598 | "fromMirageBot", 599 | "xen" 600 | ] 601 | }, 602 | { 603 | "repo": "djs55/xenopsd-previous", 604 | "tags": [ 605 | "fromMirageBot", 606 | "xen" 607 | ] 608 | }, 609 | { 610 | "repo": "djs55/message-switch", 611 | "tags": [ 612 | "fromMirageBot" 613 | ] 614 | }, 615 | { 616 | "repo": "djs55/xcp-idl", 617 | "tags": [ 618 | "fromMirageBot" 619 | ] 620 | }, 621 | { 622 | "repo": "djs55/ocaml-vhd", 623 | "tags": [ 624 | "fromMirageBot" 625 | ] 626 | }, 627 | { 628 | "repo": "dsheets/ocaml-sodium", 629 | "tags": [ 630 | "fromMirageBot" 631 | ] 632 | }, 633 | { 634 | "repo": "djs55/ocaml-vnc", 635 | "tags": [ 636 | "fromMirageBot" 637 | ] 638 | }, 639 | { 640 | "repo": "dsheets/profuse", 641 | "tags": [ 642 | "fromMirageBot" 643 | ] 644 | }, 645 | { 646 | "repo": "ocamllabs/opamfu", 647 | "tags": [ 648 | "fromMirageBot" 649 | ] 650 | }, 651 | { 652 | "repo": "djs55/cloudstack-dev-vms", 653 | "tags": [ 654 | "fromMirageBot" 655 | ] 656 | }, 657 | { 658 | "repo": "djs55/ocaml-cloudstack", 659 | "tags": [ 660 | "fromMirageBot" 661 | ] 662 | }, 663 | { 664 | "repo": "talex5/openlibm", 665 | "tags": [ 666 | "fromMirageBot" 667 | ] 668 | }, 669 | { 670 | "repo": "ocamllabs/2048-tutorial", 671 | "tags": [ 672 | "fromMirageBot" 673 | ] 674 | }, 675 | { 676 | "repo": "djs55/xe-unikernel-upload", 677 | "tags": [ 678 | "fromMirageBot" 679 | ] 680 | }, 681 | { 682 | "repo": "yomimono/example-unikernels", 683 | "tags": [ 684 | "fromMirageBot" 685 | ] 686 | }, 687 | { 688 | "repo": "djs55/xapi-database", 689 | "tags": [ 690 | "fromMirageBot" 691 | ] 692 | }, 693 | { 694 | "repo": "djs55/ocfs2-tools", 695 | "tags": [ 696 | "fromMirageBot" 697 | ] 698 | }, 699 | { 700 | "repo": "djs55/ocaml-gpt", 701 | "tags": [ 702 | "fromMirageBot" 703 | ] 704 | }, 705 | { 706 | "repo": "yomimono/simple-nat", 707 | "tags": [ 708 | "fromMirageBot" 709 | ] 710 | }, 711 | { 712 | "repo": "yomimono/mirage-nat", 713 | "tags": [ 714 | "fromMirageBot" 715 | ] 716 | }, 717 | { 718 | "repo": "yomimono/arbitrary-network", 719 | "tags": [ 720 | "fromMirageBot" 721 | ] 722 | }, 723 | { 724 | "repo": "yomimono/mirage-net-pcap", 725 | "tags": [ 726 | "fromMirageBot" 727 | ] 728 | }, 729 | { 730 | "repo": "yomimono/irmin-arp", 731 | "tags": [ 732 | "fromMirageBot" 733 | ] 734 | }, 735 | { 736 | "repo": "ocamllabs/ocaml-scry", 737 | "tags": [ 738 | "fromMirageBot" 739 | ] 740 | }, 741 | { 742 | "repo": "oklm-wsh/Decompress", 743 | "tags": [ 744 | "fromMirageBot" 745 | ] 746 | }, 747 | { 748 | "repo": "djs55/ocaml-c3", 749 | "tags": [ 750 | "fromMirageBot" 751 | ] 752 | }, 753 | { 754 | "repo": "yomimono/ocaml-certify", 755 | "tags": [ 756 | "fromMirageBot" 757 | ] 758 | }, 759 | { 760 | "repo": "qlai/ocaml-rand", 761 | "tags": [ 762 | "fromMirageBot" 763 | ] 764 | }, 765 | { 766 | "repo": "yomimono/irmin-network-datastores", 767 | "tags": [ 768 | "fromMirageBot" 769 | ] 770 | }, 771 | { 772 | "repo": "djs55/ocaml-btree", 773 | "tags": [ 774 | "fromMirageBot" 775 | ] 776 | }, 777 | { 778 | "repo": "djs55/ocaml-xenstore-xen", 779 | "tags": [ 780 | "fromMirageBot", 781 | "xen" 782 | ] 783 | }, 784 | { 785 | "repo": "dsheets/ocaml-dnssec", 786 | "tags": [ 787 | "fromMirageBot" 788 | ] 789 | }, 790 | { 791 | "repo": "xapi-project/ocaml-crc", 792 | "tags": [ 793 | "fromMirageBot" 794 | ] 795 | }, 796 | { 797 | "repo": "djs55/ocaml-device-mapper", 798 | "tags": [ 799 | "fromMirageBot" 800 | ] 801 | }, 802 | { 803 | "repo": "dbuenzli/topkg", 804 | "tags": [ 805 | "fromMirageBot" 806 | ] 807 | }, 808 | { 809 | "repo": "moonlightdrive/ocaml-ec2", 810 | "tags": [ 811 | "fromMirageBot" 812 | ] 813 | }, 814 | { 815 | "repo": "MagnusS/mirage-bench", 816 | "tags": [ 817 | "fromMirageBot" 818 | ] 819 | }, 820 | { 821 | "repo": "talex5/mirage-trace-viewer", 822 | "tags": [ 823 | "fromMirageBot" 824 | ] 825 | }, 826 | { 827 | "repo": "dsheets/ocaml-libmacaroons", 828 | "tags": [ 829 | "fromMirageBot" 830 | ] 831 | }, 832 | { 833 | "repo": "MagnusS/mirage-mimic", 834 | "tags": [ 835 | "fromMirageBot" 836 | ] 837 | }, 838 | { 839 | "repo": "dsheets/ocaml-ntp", 840 | "tags": [ 841 | "fromMirageBot" 842 | ] 843 | }, 844 | { 845 | "repo": "sagotch/ISO8601.ml", 846 | "tags": [ 847 | "fromMirageBot" 848 | ] 849 | }, 850 | { 851 | "repo": "heidi-ann/ocaml-dns-examples", 852 | "tags": [ 853 | "fromMirageBot" 854 | ] 855 | }, 856 | { 857 | "repo": "dsheets/tower", 858 | "tags": [ 859 | "fromMirageBot" 860 | ] 861 | }, 862 | { 863 | "repo": "MagnusS/mirage-vnetif", 864 | "tags": [ 865 | "fromMirageBot" 866 | ] 867 | }, 868 | { 869 | "repo": "dsheets/trails", 870 | "tags": [ 871 | "fromMirageBot" 872 | ] 873 | }, 874 | { 875 | "repo": "MagnusS/garpjitsu", 876 | "tags": [ 877 | "fromMirageBot" 878 | ] 879 | }, 880 | { 881 | "repo": "MagnusS/mirage-stats-demo", 882 | "tags": [ 883 | "fromMirageBot" 884 | ] 885 | }, 886 | { 887 | "repo": "dsheets/blueprint", 888 | "tags": [ 889 | "fromMirageBot" 890 | ] 891 | }, 892 | { 893 | "repo": "talex5/irmin-indexeddb", 894 | "tags": [ 895 | "fromMirageBot" 896 | ] 897 | }, 898 | { 899 | "repo": "dsheets/irminfs", 900 | "tags": [ 901 | "fromMirageBot" 902 | ] 903 | }, 904 | { 905 | "repo": "talex5/opam-bulk-build-ui", 906 | "tags": [ 907 | "fromMirageBot" 908 | ] 909 | }, 910 | { 911 | "repo": "talex5/qubes-test-mirage", 912 | "tags": [ 913 | "fromMirageBot" 914 | ] 915 | }, 916 | { 917 | "repo": "talex5/js-skeleton", 918 | "tags": [ 919 | "fromMirageBot" 920 | ] 921 | }, 922 | { 923 | "repo": "talex5/irmin-www", 924 | "tags": [ 925 | "fromMirageBot" 926 | ] 927 | }, 928 | { 929 | "repo": "talex5/irmin-js", 930 | "tags": [ 931 | "fromMirageBot" 932 | ] 933 | }, 934 | { 935 | "repo": "ruhatch/mirage-oram", 936 | "tags": [ 937 | "fromMirageBot" 938 | ] 939 | }, 940 | { 941 | "repo": "talex5/irmin-filer", 942 | "tags": [ 943 | "fromMirageBot" 944 | ] 945 | }, 946 | { 947 | "repo": "dbuenzli/fpath", 948 | "tags": [ 949 | "fromMirageBot" 950 | ] 951 | }, 952 | { 953 | "repo": "dbuenzli/carcass", 954 | "tags": [ 955 | "fromMirageBot" 956 | ] 957 | }, 958 | { 959 | "repo": "dbuenzli/cmdliner", 960 | "tags": [ 961 | "fromMirageBot" 962 | ] 963 | }, 964 | { 965 | "repo": "dbuenzli/react", 966 | "tags": [ 967 | "fromMirageBot" 968 | ] 969 | }, 970 | { 971 | "repo": "dbuenzli/jsonm", 972 | "tags": [ 973 | "fromMirageBot" 974 | ] 975 | }, 976 | { 977 | "repo": "dbuenzli/nbcodec", 978 | "tags": [ 979 | "fromMirageBot" 980 | ] 981 | }, 982 | { 983 | "repo": "dbuenzli/uunf", 984 | "tags": [ 985 | "fromMirageBot" 986 | ] 987 | }, 988 | { 989 | "repo": "dbuenzli/uutf", 990 | "tags": [ 991 | "fromMirageBot" 992 | ] 993 | }, 994 | { 995 | "repo": "dbuenzli/xmlm", 996 | "tags": [ 997 | "fromMirageBot" 998 | ] 999 | }, 1000 | { 1001 | "repo": "dbuenzli/webs", 1002 | "tags": [ 1003 | "fromMirageBot" 1004 | ] 1005 | }, 1006 | { 1007 | "repo": "dbuenzli/rpng", 1008 | "tags": [ 1009 | "fromMirageBot" 1010 | ] 1011 | }, 1012 | { 1013 | "repo": "dbuenzli/useri", 1014 | "tags": [ 1015 | "fromMirageBot" 1016 | ] 1017 | }, 1018 | { 1019 | "repo": "samoht/assemblage", 1020 | "tags": [ 1021 | "fromMirageBot" 1022 | ] 1023 | }, 1024 | { 1025 | "repo": "dbuenzli/uucp", 1026 | "tags": [ 1027 | "fromMirageBot" 1028 | ] 1029 | }, 1030 | { 1031 | "repo": "dbuenzli/jsont", 1032 | "tags": [ 1033 | "fromMirageBot" 1034 | ] 1035 | }, 1036 | { 1037 | "repo": "dbuenzli/uuseg", 1038 | "tags": [ 1039 | "fromMirageBot" 1040 | ] 1041 | }, 1042 | { 1043 | "repo": "samoht/dog", 1044 | "tags": [ 1045 | "fromMirageBot" 1046 | ] 1047 | }, 1048 | { 1049 | "repo": "dbuenzli/bos", 1050 | "tags": [ 1051 | "fromMirageBot" 1052 | ] 1053 | }, 1054 | { 1055 | "repo": "dbuenzli/rresult", 1056 | "tags": [ 1057 | "fromMirageBot" 1058 | ] 1059 | }, 1060 | { 1061 | "repo": "samoht/mirmin", 1062 | "tags": [ 1063 | "fromMirageBot" 1064 | ] 1065 | }, 1066 | { 1067 | "repo": "dbuenzli/mtime", 1068 | "tags": [ 1069 | "fromMirageBot" 1070 | ] 1071 | }, 1072 | { 1073 | "repo": "samoht/dockage", 1074 | "tags": [ 1075 | "fromMirageBot" 1076 | ] 1077 | }, 1078 | { 1079 | "repo": "samoht/ciso", 1080 | "tags": [ 1081 | "fromMirageBot" 1082 | ] 1083 | }, 1084 | { 1085 | "repo": "dbuenzli/ptime", 1086 | "tags": [ 1087 | "fromMirageBot" 1088 | ] 1089 | }, 1090 | { 1091 | "repo": "dbuenzli/astring", 1092 | "tags": [ 1093 | "fromMirageBot" 1094 | ] 1095 | }, 1096 | { 1097 | "repo": "dbuenzli/fmt", 1098 | "tags": [ 1099 | "fromMirageBot" 1100 | ] 1101 | }, 1102 | { 1103 | "repo": "dbuenzli/tick", 1104 | "tags": [ 1105 | "fromMirageBot" 1106 | ] 1107 | }, 1108 | { 1109 | "repo": "dbuenzli/rpi-boot-ocaml", 1110 | "tags": [ 1111 | "fromMirageBot" 1112 | ] 1113 | }, 1114 | { 1115 | "repo": "dbuenzli/logs", 1116 | "tags": [ 1117 | "fromMirageBot" 1118 | ] 1119 | }, 1120 | { 1121 | "repo": "samoht/loops-mirage", 1122 | "tags": [ 1123 | "fromMirageBot" 1124 | ] 1125 | }, 1126 | { 1127 | "repo": "dbuenzli/hmap", 1128 | "tags": [ 1129 | "fromMirageBot" 1130 | ] 1131 | }, 1132 | { 1133 | "repo": "samoht/opam-build", 1134 | "tags": [ 1135 | "fromMirageBot" 1136 | ] 1137 | }, 1138 | { 1139 | "repo": "avsm/melange", 1140 | "tags": [ 1141 | "fromMirageBot" 1142 | ] 1143 | }, 1144 | { 1145 | "repo": "mor1/ocaml-mrt", 1146 | "tags": [ 1147 | "fromMirageBot" 1148 | ] 1149 | }, 1150 | { 1151 | "repo": "avsm/ezxmlm", 1152 | "tags": [ 1153 | "fromMirageBot" 1154 | ] 1155 | }, 1156 | { 1157 | "repo": "avsm/vagrant-opam", 1158 | "tags": [ 1159 | "fromMirageBot" 1160 | ] 1161 | }, 1162 | { 1163 | "repo": "avsm/opam-sync-github-prs", 1164 | "tags": [ 1165 | "fromMirageBot" 1166 | ] 1167 | }, 1168 | { 1169 | "repo": "mirleft/ocaml-asn1-combinators", 1170 | "tags": [ 1171 | "fromMirageBot" 1172 | ] 1173 | }, 1174 | { 1175 | "repo": "mirleft/ocaml-tls", 1176 | "tags": [ 1177 | "fromMirageBot" 1178 | ] 1179 | }, 1180 | { 1181 | "repo": "mirleft/ocaml-nocrypto", 1182 | "tags": [ 1183 | "fromMirageBot" 1184 | ] 1185 | }, 1186 | { 1187 | "repo": "mirleft/tls-demo-server", 1188 | "tags": [ 1189 | "fromMirageBot" 1190 | ] 1191 | }, 1192 | { 1193 | "repo": "mirleft/ocaml-x509", 1194 | "tags": [ 1195 | "fromMirageBot" 1196 | ] 1197 | }, 1198 | { 1199 | "repo": "hannesm/jackline", 1200 | "tags": [ 1201 | "fromMirageBot" 1202 | ] 1203 | }, 1204 | { 1205 | "repo": "avsm/ocaml-dockerfile", 1206 | "tags": [ 1207 | "fromMirageBot" 1208 | ] 1209 | }, 1210 | { 1211 | "repo": "avsm/ocaml-docker-scripts", 1212 | "tags": [ 1213 | "fromMirageBot" 1214 | ] 1215 | }, 1216 | { 1217 | "repo": "mirleft/btc-pinata", 1218 | "tags": [ 1219 | "fromMirageBot" 1220 | ] 1221 | }, 1222 | { 1223 | "repo": "samoht/ocaml-huffman-code", 1224 | "tags": [ 1225 | "fromMirageBot" 1226 | ] 1227 | }, 1228 | { 1229 | "repo": "samoht/ocaml-lz77", 1230 | "tags": [ 1231 | "fromMirageBot" 1232 | ] 1233 | }, 1234 | { 1235 | "repo": "hannesm/tlstunnel", 1236 | "tags": [ 1237 | "fromMirageBot" 1238 | ] 1239 | }, 1240 | { 1241 | "repo": "hannesm/tlsclient", 1242 | "tags": [ 1243 | "fromMirageBot" 1244 | ] 1245 | }, 1246 | { 1247 | "repo": "mirleft/nqsb.io", 1248 | "tags": [ 1249 | "fromMirageBot" 1250 | ] 1251 | }, 1252 | { 1253 | "repo": "mor1/ocaml-tftp", 1254 | "tags": [ 1255 | "fromMirageBot" 1256 | ] 1257 | }, 1258 | { 1259 | "repo": "pqwy/notty", 1260 | "tags": [ 1261 | "fromMirageBot" 1262 | ] 1263 | }, 1264 | { 1265 | "repo": "pqwy/ocaml-signalfd", 1266 | "tags": [ 1267 | "fromMirageBot" 1268 | ] 1269 | }, 1270 | { 1271 | "repo": "pqwy/ocaml-pctrl", 1272 | "tags": [ 1273 | "fromMirageBot" 1274 | ] 1275 | }, 1276 | { 1277 | "repo": "mirleft/tlstools", 1278 | "tags": [ 1279 | "fromMirageBot" 1280 | ] 1281 | }, 1282 | { 1283 | "repo": "avsm/opam-solver-proxy", 1284 | "tags": [ 1285 | "fromMirageBot" 1286 | ] 1287 | }, 1288 | { 1289 | "repo": "avsm/ocaml-docker-infra", 1290 | "tags": [ 1291 | "fromMirageBot" 1292 | ] 1293 | }, 1294 | { 1295 | "repo": "pqwy/ocaml-sendmsg", 1296 | "tags": [ 1297 | "fromMirageBot" 1298 | ] 1299 | }, 1300 | { 1301 | "repo": "isakmp/ike", 1302 | "tags": [ 1303 | "fromMirageBot" 1304 | ] 1305 | }, 1306 | { 1307 | "repo": "hannesm/telnet", 1308 | "tags": [ 1309 | "fromMirageBot" 1310 | ] 1311 | }, 1312 | { 1313 | "repo": "avsm/dopam", 1314 | "tags": [ 1315 | "fromMirageBot" 1316 | ] 1317 | }, 1318 | { 1319 | "repo": "ocamllabs/ocaml-ctypes", 1320 | "tags": [ 1321 | "fromMirageBot" 1322 | ] 1323 | }, 1324 | { 1325 | "repo": "mirleft/tls-mvp-server", 1326 | "tags": [ 1327 | "fromMirageBot" 1328 | ] 1329 | }, 1330 | { 1331 | "repo": "hannesm/ocaml-otr", 1332 | "tags": [ 1333 | "fromMirageBot" 1334 | ] 1335 | }, 1336 | { 1337 | "repo": "yallop/ocaml-ctypes-tls", 1338 | "tags": [ 1339 | "fromMirageBot" 1340 | ] 1341 | }, 1342 | { 1343 | "repo": "haesbaert/charrua-core", 1344 | "tags": [ 1345 | "fromMirageBot" 1346 | ] 1347 | }, 1348 | { 1349 | "repo": "hannesm/trace-checker", 1350 | "tags": [ 1351 | "fromMirageBot" 1352 | ] 1353 | }, 1354 | { 1355 | "repo": "sg2342/ocaml-rfc6287", 1356 | "tags": [ 1357 | "fromMirageBot" 1358 | ] 1359 | }, 1360 | { 1361 | "repo": "haesbaert/rawlink", 1362 | "tags": [ 1363 | "fromMirageBot" 1364 | ] 1365 | }, 1366 | { 1367 | "repo": "sg2342/mirage-block-ccm", 1368 | "tags": [ 1369 | "fromMirageBot" 1370 | ] 1371 | }, 1372 | { 1373 | "repo": "haesbaert/charrua-unix", 1374 | "tags": [ 1375 | "fromMirageBot" 1376 | ] 1377 | }, 1378 | { 1379 | "repo": "verbosemode/syslog-message", 1380 | "tags": [ 1381 | "fromMirageBot" 1382 | ] 1383 | }, 1384 | { 1385 | "repo": "verbosemode/syslogd-mirage", 1386 | "tags": [ 1387 | "fromMirageBot" 1388 | ] 1389 | }, 1390 | { 1391 | "repo": "hannesm/conex", 1392 | "tags": [ 1393 | "fromMirageBot" 1394 | ] 1395 | }, 1396 | { 1397 | "repo": "hannesm/ocaml-hkdf", 1398 | "tags": [ 1399 | "fromMirageBot" 1400 | ] 1401 | }, 1402 | { 1403 | "repo": "jgjl/mirage-switch", 1404 | "tags": [ 1405 | "fromMirageBot" 1406 | ] 1407 | }, 1408 | { 1409 | "repo": "jgjl/ocaml-netaddr", 1410 | "tags": [ 1411 | "fromMirageBot" 1412 | ] 1413 | }, 1414 | { 1415 | "repo": "yallop/ocaml-safe-string-buffer", 1416 | "tags": [ 1417 | "fromMirageBot" 1418 | ] 1419 | }, 1420 | { 1421 | "repo": "Engil/Canopy", 1422 | "tags": [ 1423 | "fromMirageBot" 1424 | ] 1425 | }, 1426 | { 1427 | "repo": "Engil/Canopy-documentation", 1428 | "tags": [ 1429 | "fromMirageBot" 1430 | ] 1431 | }, 1432 | { 1433 | "repo": "abeaumont/ocaml-pbkdf", 1434 | "tags": [ 1435 | "fromMirageBot" 1436 | ] 1437 | }, 1438 | { 1439 | "repo": "rudenoise/mirage-dashboard", 1440 | "tags": [ 1441 | "fromMirageBot" 1442 | ] 1443 | }, 1444 | { 1445 | "repo": "Engil/irmin-playground", 1446 | "tags": [ 1447 | "fromMirageBot" 1448 | ] 1449 | }, 1450 | { 1451 | "repo": "andreas/mirage-swim", 1452 | "tags": [ 1453 | "fromMirageBot" 1454 | ] 1455 | }, 1456 | { 1457 | "repo": "cfcs/ocaml-socks", 1458 | "tags": [ 1459 | "fromMirageBot" 1460 | ] 1461 | }, 1462 | { 1463 | "repo": "abeaumont/ocaml-scrypt-kdf", 1464 | "tags": [ 1465 | "fromMirageBot" 1466 | ] 1467 | }, 1468 | { 1469 | "repo": "cfcs/ocaml-wildcard", 1470 | "tags": [ 1471 | "fromMirageBot" 1472 | ] 1473 | }, 1474 | { 1475 | "repo": "Engil/ctypes-playground", 1476 | "tags": [ 1477 | "fromMirageBot" 1478 | ] 1479 | }, 1480 | { 1481 | "repo": "jgjl/ocaml-packets", 1482 | "tags": [ 1483 | "fromMirageBot" 1484 | ] 1485 | }, 1486 | { 1487 | "repo": "Engil/ImaginaryFriend", 1488 | "tags": [ 1489 | "fromMirageBot" 1490 | ] 1491 | }, 1492 | { 1493 | "repo": "verbosemode/logs-syslog", 1494 | "tags": [ 1495 | "fromMirageBot" 1496 | ] 1497 | }, 1498 | { 1499 | "repo": "crotsos/ocaml-openflow", 1500 | "tags": [ 1501 | "fromMirageBot" 1502 | ] 1503 | }, 1504 | { 1505 | "repo": "crotsos/ocaml-crypto-keys", 1506 | "tags": [ 1507 | "fromMirageBot" 1508 | ] 1509 | }, 1510 | { 1511 | "repo": "crotsos/ocaml-pttcp", 1512 | "tags": [ 1513 | "fromMirageBot" 1514 | ] 1515 | }, 1516 | { 1517 | "repo": "crotsos/sdnsim-build", 1518 | "tags": [ 1519 | "fromMirageBot" 1520 | ] 1521 | }, 1522 | { 1523 | "repo": "vbmithr/ocaml-vcard", 1524 | "tags": [ 1525 | "fromMirageBot" 1526 | ] 1527 | }, 1528 | { 1529 | "repo": "crotsos/sdnsim", 1530 | "tags": [ 1531 | "fromMirageBot" 1532 | ] 1533 | }, 1534 | { 1535 | "repo": "vbmithr/ocaml-smtp", 1536 | "tags": [ 1537 | "fromMirageBot" 1538 | ] 1539 | }, 1540 | { 1541 | "repo": "vbmithr/ocaml-crypt", 1542 | "tags": [ 1543 | "fromMirageBot" 1544 | ] 1545 | }, 1546 | { 1547 | "repo": "heidi-ann/ocaml-raft", 1548 | "tags": [ 1549 | "fromMirageBot" 1550 | ] 1551 | }, 1552 | { 1553 | "repo": "nojb/ocaml-imap", 1554 | "tags": [ 1555 | "fromMirageBot" 1556 | ] 1557 | }, 1558 | { 1559 | "repo": "nojb/ocaml-bt", 1560 | "tags": [ 1561 | "fromMirageBot" 1562 | ] 1563 | }, 1564 | { 1565 | "repo": "amirmc/ocamlatom", 1566 | "tags": [ 1567 | "fromMirageBot" 1568 | ] 1569 | }, 1570 | { 1571 | "repo": "gregtatcam/imaplet", 1572 | "tags": [ 1573 | "fromMirageBot" 1574 | ] 1575 | }, 1576 | { 1577 | "repo": "amirmc/feedmerge", 1578 | "tags": [ 1579 | "fromMirageBot" 1580 | ] 1581 | }, 1582 | { 1583 | "repo": "gregtatcam/imaplet-lwt", 1584 | "tags": [ 1585 | "fromMirageBot" 1586 | ] 1587 | }, 1588 | { 1589 | "repo": "nojb/ocaml-ircd", 1590 | "tags": [ 1591 | "fromMirageBot" 1592 | ] 1593 | }, 1594 | { 1595 | "repo": "nojb/xen-urandom-proxy", 1596 | "tags": [ 1597 | "fromMirageBot", 1598 | "xen" 1599 | ] 1600 | }, 1601 | { 1602 | "repo": "amirmc/fosdemo", 1603 | "tags": [ 1604 | "fromMirageBot" 1605 | ] 1606 | }, 1607 | { 1608 | "repo": "nojb/ocaml-macaroons", 1609 | "tags": [ 1610 | "fromMirageBot" 1611 | ] 1612 | }, 1613 | { 1614 | "repo": "nojb/zarith-big-int", 1615 | "tags": [ 1616 | "fromMirageBot" 1617 | ] 1618 | }, 1619 | { 1620 | "repo": "heidi-ann/rwe-dns-server", 1621 | "tags": [ 1622 | "fromMirageBot" 1623 | ] 1624 | }, 1625 | { 1626 | "repo": "consensus-oracle/coracle", 1627 | "tags": [ 1628 | "fromMirageBot" 1629 | ] 1630 | }, 1631 | { 1632 | "repo": "vbmithr/ocaml-fix", 1633 | "tags": [ 1634 | "fromMirageBot" 1635 | ] 1636 | }, 1637 | { 1638 | "repo": "vbmithr/ocaml-dtc", 1639 | "tags": [ 1640 | "fromMirageBot" 1641 | ] 1642 | }, 1643 | { 1644 | "repo": "matildah/mirage-ntp", 1645 | "tags": [ 1646 | "fromMirageBot" 1647 | ] 1648 | }, 1649 | { 1650 | "repo": "ahf/ircd-scylla", 1651 | "tags": [ 1652 | "fromMirageBot" 1653 | ] 1654 | }, 1655 | { 1656 | "repo": "inhabitedtype/angstrom", 1657 | "tags": [ 1658 | "fromMirageBot" 1659 | ] 1660 | }, 1661 | { 1662 | "repo": "inhabitedtype/ocaml-aws", 1663 | "tags": [ 1664 | "fromMirageBot" 1665 | ] 1666 | }, 1667 | { 1668 | "repo": "ruhatch/mirage-btrees", 1669 | "tags": [ 1670 | "fromMirageBot" 1671 | ] 1672 | }, 1673 | { 1674 | "repo": "zoggy/ocaml-lru-cache", 1675 | "tags": [ 1676 | "fromMirageBot" 1677 | ] 1678 | }, 1679 | { 1680 | "repo": "dbuenzli/topkg", 1681 | "tags": [ 1682 | "packager" 1683 | ] 1684 | } 1685 | ] 1686 | -------------------------------------------------------------------------------- /data/mirage_bot_to_dashboard.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -e 4 | 5 | END=10 6 | 7 | for PAGE in $(seq 1 $END); do 8 | curl https://api.github.com/users/miragebot/subscriptions?page=$PAGE | jq '[.[] | { repo: .full_name, tags: ["fromMirageBot"] }]' > data/in/mirage_bot_page$PAGE.json; 9 | done 10 | 11 | jq -s add data/in/mirage_bot_page*.json > data/in/all.json 12 | -------------------------------------------------------------------------------- /data/out/all.json: -------------------------------------------------------------------------------- 1 | {"created_at":1463087606,"repos":[{"repo":"mirage-xen-virtualbox","user":"mattgray","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"mattgray":2,"rudenoise":2},"tags":["fromMirageBot","xen"]},{"repo":"ocaml-webmachine","user":"inhabitedtype","current_release_or_tag":{"name":"0.3.1","published_at":"2016-02-19T14:32:40Z","of_total":8,"type":"release"},"branches":["master","rd"],"events":{"seliopou":59,"tmcgilchrist":13,"brakmic":3,"pkel":2,"zoggy":2},"tags":["fromMirageBot"]},{"repo":"MrMime","user":"oklm-wsh","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["gh-pages","master"],"events":{"dinosaure":76},"tags":["fromMirageBot"]},{"repo":"ocaml-dispatch","user":"inhabitedtype","current_release_or_tag":{"name":"0.3.0","published_at":"2015-11-18T19:08:23Z","of_total":3,"type":"release"},"branches":["alcotest","master"],"events":{"seliopou":3,"ansiwen":2},"tags":["fromMirageBot"]},{"repo":"ocaml-session","user":"inhabitedtype","current_release_or_tag":{"name":"0.2.0","published_at":"2016-03-02T23:48:55Z","of_total":2,"type":"release"},"branches":["master"],"events":{"seliopou":26},"tags":["fromMirageBot"]},{"repo":"solo5","user":"djwillia","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["bare","master","mirage","solo5-kernel-ukvm","solo5-kernel-virtio","solo5-kernel","ukvm-mirage","use-opam-repo"],"events":{"djwillia":54,"mato":25,"ricarkol":23,"rudenoise":2,"sjfloat":2},"tags":["fromMirageBot"]},{"repo":"devwinter2016","user":"mattgray","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"mattgray":4,"mor1":4,"dbuenzli":3},"tags":["fromMirageBot"]},{"repo":"ocaml-cohttp","user":"mirage","current_release_or_tag":{"name":"v0.20.2","published_at":"2016-04-05T02:31:03Z","of_total":44,"type":"tag"},"branches":["async-108.07.00","cookie-max-age","fix-mirage-unix-and-xen","fix-pipelining","gh-pages","master","mutable-response","oasis","purge-mirage","rearrange-libs","rearrange-libs2","refactor-reqres-functors","refunctorise","rgrinberg-async_persistent_connections","use-fieldslib","use-uri-conduit","v2-interface"],"events":{"rgrinberg":76,"zoggy":15,"hannesm":8,"avsm":8,"edwintorok":7,"c-cube":5,"dsheets":3,"whitequark":3,"mmaker":2,"j0sh":2,"Chimrod":2,"samoht":2},"tags":["fromMirageBot"]},{"repo":"mirage","user":"mirage","current_release_or_tag":{"name":"v2.9.0","published_at":"2016-04-29T13:44:49Z","of_total":26,"type":"release"},"branches":["async-udp","bigarray-io","bitstring","blkif-hotplug","camlp4.opt","dead-code-elim","fs-probe","gh-pages","istring","iteratee-io","master-20131208","master","newlib_removal","ocamlbuild","ocamlclean","ocp_build","ofelia","old-master","one-build","os-bigarray","perf-experiments","slim","test-framework","v3-build","xen-blkif"],"events":{"samoht":78,"talex5":67,"hannesm":25,"yomimono":24,"Drup":22,"avsm":22,"djs55":6,"sprout42":6,"sgrove":4,"ansiwen":3,"amirmc":3,"dsheets":2,"carriercomm":2},"tags":["fromMirageBot"]},{"repo":"ocaml-uri","user":"mirage","current_release_or_tag":{"name":"v1.9.2","published_at":"2016-03-11T16:58:37Z","of_total":15,"type":"release"},"branches":["master","ppx_sexp"],"events":{"dsheets":21,"avsm":7,"c-cube":5,"mor1":4,"hannesm":4,"dbuenzli":2,"zbroyar":2},"tags":["fromMirageBot"]},{"repo":"ocaml-github","user":"mirage","current_release_or_tag":{"name":"v1.0.0","published_at":"2015-06-01T20:44:07Z","of_total":15,"type":"release"},"branches":["gh-pages","master","v2-interface"],"events":{"rgrinberg":22,"avsm":20,"dsheets":13,"samoht":10,"dbuenzli":5,"sevenEng":2,"rudenoise":2},"tags":["fromMirageBot"]},{"repo":"ocaml-cstruct","user":"mirage","current_release_or_tag":{"name":"v2.1.0","published_at":"2016-05-04T17:00:11Z","of_total":17,"type":"release"},"branches":["master","travis"],"events":{"djs55":44,"avsm":37,"hannesm":23,"samoht":6,"artemkin":6,"talex5":5,"nojb":5,"dsheets":4,"copy":3,"jgjl":3,"orbifx":3,"lpw25":2,"dbuenzli":2},"tags":["fromMirageBot"]},{"repo":"mirage-platform","user":"mirage","current_release_or_tag":{"name":"v2.6.0","published_at":"2016-05-05T17:00:05Z","of_total":27,"type":"release"},"branches":["master"],"events":{"djs55":35,"avsm":28,"talex5":12,"hannesm":5,"dbuenzli":4,"samoht":2,"yomimono":2,"carriercomm":2},"tags":["fromMirageBot"]},{"repo":"mirage-tcpip","user":"mirage","current_release_or_tag":{"name":"v2.8.0","published_at":"2016-04-06T12:16:15Z","of_total":32,"type":"release"},"branches":["2.3.1","master"],"events":{"yomimono":49,"hannesm":26,"avsm":15,"djs55":13,"talex5":11,"fxfactorial":5,"samoht":3,"chansuke":2,"carriercomm":2,"jgjl":2,"nojb":2,"anlaneg":2},"tags":["fromMirageBot"]},{"repo":"mirage-dev","user":"mirage","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["irmin","master"],"events":{"yallop":8,"yomimono":5,"talex5":3},"tags":["fromMirageBot"]},{"repo":"mirage-www","user":"mirage","current_release_or_tag":{"name":"1.1.0","published_at":"2014-07-10T21:34:10Z","of_total":4,"type":"tag"},"branches":["bootstrap","deploy-travis","master","revert-444-add-pgp-key","travis-senv","v2-interface"],"events":{"samoht":63,"hannesm":28,"yomimono":21,"avsm":15,"amirmc":14,"Drup":13,"yallop":9,"GemmaG":7,"djs55":6,"talex5":5,"mquinn":4,"mor1":4,"sgrove":4,"carriercomm":3,"MarkMat320768":2,"TWolverson":2,"mattgray":2,"ansiwen":2,"rudenoise":2},"tags":["fromMirageBot"]},{"repo":"ocaml-pcap","user":"mirage","current_release_or_tag":{"name":"v0.4.0","published_at":"2016-04-30T20:28:03Z","of_total":6,"type":"tag"},"branches":["master"],"events":{"djs55":21,"mor1":8,"hannesm":2},"tags":["fromMirageBot"]},{"repo":"shared-memory-ring","user":"mirage","current_release_or_tag":{"name":"v1.3.0","published_at":"2016-03-19T22:54:44Z","of_total":5,"type":"release"},"branches":["arm-fix","barrier-fix","better-diagnostics","bugfixes","fix-event-counters","manually-batch-updates","master","refactor-write-interface","unix-eventchn","workaround-arm-problem"],"events":{"djs55":30,"hannesm":7},"tags":["fromMirageBot"]},{"repo":"mirage-skeleton","user":"mirage","current_release_or_tag":{"name":"mirage-v2.6.1","published_at":"2016-01-05T13:48:54Z","of_total":1,"type":"tag"},"branches":["master","mirage-dev"],"events":{"samoht":41,"hannesm":29,"azul":25,"yomimono":24,"djs55":17,"talex5":16,"yallop":13,"Drup":11,"mmaker":6,"olivierpierre":6,"vitcozzolino":5,"mor1":3,"avsm":3,"fxfactorial":3,"Engil":2,"soapdog":2,"lindig":2},"tags":["fromMirageBot"]},{"repo":"ocaml-git","user":"mirage","current_release_or_tag":{"name":"1.8.0","published_at":"2016-05-04T08:15:03Z","of_total":33,"type":"release"},"branches":["gh-pages","master","pack"],"events":{"samoht":53,"talex5":11,"hannesm":9,"dbuenzli":5,"dinosaure":4,"rgrinberg":2,"sjfloat":2},"tags":["fromMirageBot"]},{"repo":"irmin","user":"mirage","current_release_or_tag":{"name":"0.11.0","published_at":"2016-05-04T11:07:16Z","of_total":24,"type":"release"},"branches":["gh-pages","master"],"events":{"samoht":54,"talex5":13,"hannesm":10,"Engil":8,"jameshfisher":5,"yomimono":2},"tags":["fromMirageBot"]},{"repo":"mirage-block-xen","user":"mirage","current_release_or_tag":{"name":"v1.4.0","published_at":"2016-03-13T21:58:03Z","of_total":13,"type":"release"},"branches":["master"],"events":{"djs55":35,"talex5":3},"tags":["fromMirageBot","xen"]},{"repo":"ocaml-vchan","user":"mirage","current_release_or_tag":{"name":"v2.1.0","published_at":"2016-04-07T09:54:27Z","of_total":11,"type":"release"},"branches":["cli","gh-pages","master"],"events":{"djs55":14},"tags":["fromMirageBot"]},{"repo":"mirage-block-unix","user":"mirage","current_release_or_tag":{"name":"v2.2.0","published_at":"2016-03-06T20:55:19Z","of_total":12,"type":"release"},"branches":["master"],"events":{"djs55":29,"talex5":6,"edwintorok":3},"tags":["fromMirageBot"]},{"repo":"mirage-net-xen","user":"mirage","current_release_or_tag":{"name":"v1.6.1","published_at":"2016-05-03T10:42:31Z","of_total":13,"type":"release"},"branches":["1.4","master"],"events":{"talex5":31,"hannesm":22,"djs55":16,"samoht":10,"avsm":10,"yomimono":5},"tags":["fromMirageBot","xen"]},{"repo":"alcotest","user":"mirage","current_release_or_tag":{"name":"0.4.11","published_at":"2016-05-11T13:47:38Z","of_total":18,"type":"release"},"branches":["gh-pages","master"],"events":{"samoht":66,"hannesm":9,"Drup":4,"ihodes":4,"darioteixeira":2,"avsm":2,"dariusf":2,"yallop":2},"tags":["fromMirageBot"]},{"repo":"mirage-fs-unix","user":"mirage","current_release_or_tag":{"name":"v1.2.0","published_at":"2015-07-22T16:45:33Z","of_total":7,"type":"release"},"branches":["master"],"events":{"hannesm":5,"yomimono":5,"samoht":3,"talex5":3},"tags":["fromMirageBot"]},{"repo":"mirage-http","user":"mirage","current_release_or_tag":{"name":"v2.5.2","published_at":"2016-04-13T15:19:05Z","of_total":10,"type":"release"},"branches":["master"],"events":{"hannesm":10,"avsm":6,"talex5":4},"tags":["fromMirageBot"]},{"repo":"ocaml-conduit","user":"mirage","current_release_or_tag":{"name":"v0.12.0","published_at":"2016-04-30T15:58:31Z","of_total":20,"type":"tag"},"branches":["gh-pages","master","v0.5.1"],"events":{"rgrinberg":49,"avsm":19,"edwintorok":8,"vbmithr":5,"gasche":3,"smondet":3,"hcarty":2,"ivg":2,"hverr":2},"tags":["fromMirageBot"]},{"repo":"xen-arm-builder","user":"mirage","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"samsunghoteltv":4,"samoht":3,"Hiradur":2,"fxfactorial":2,"vitcozzolino":2},"tags":["fromMirageBot","xen"]},{"repo":"mirage-profile","user":"mirage","current_release_or_tag":{"name":"v0.7.0","published_at":"2016-03-13T20:30:23Z","of_total":8,"type":"release"},"branches":["master"],"events":{"djs55":8,"talex5":6},"tags":["fromMirageBot"]},{"repo":"ocaml-qcow","user":"mirage","current_release_or_tag":{"name":"v0.2","published_at":"2016-01-15T11:45:01Z","of_total":2,"type":"release"},"branches":["add-sparse-support","gh-pages","master"],"events":{"djs55":9},"tags":["fromMirageBot"]},{"repo":"ocaml-vmnet","user":"mirage","current_release_or_tag":{"name":"v1.1.0","published_at":"2016-03-20T12:35:03Z","of_total":4,"type":"release"},"branches":["master"],"events":{"djs55":12},"tags":["fromMirageBot"]},{"repo":"functoria","user":"mirage","current_release_or_tag":{"name":"1.1.0","published_at":"2016-04-29T15:17:21Z","of_total":2,"type":"tag"},"branches":["gh-pages","master"],"events":{"samoht":24,"Drup":20,"talex5":10,"yallop":10},"tags":["fromMirageBot"]},{"repo":"ocaml-9p","user":"mirage","current_release_or_tag":{"name":"v0.5.2","published_at":"2016-05-06T14:03:58Z","of_total":9,"type":"tag"},"branches":["add-coverage","gh-pages","master"],"events":{"djs55":68,"talex5":7,"dsheets":5,"samoht":4,"sdiehl":2},"tags":["fromMirageBot"]},{"repo":"ocaml-asl","user":"mirage","current_release_or_tag":{"name":"v0.8","published_at":"2016-04-07T08:40:40Z","of_total":4,"type":"release"},"branches":["gh-pages","master","release.0.5"],"events":{"djs55":20,"fxfactorial":2},"tags":["fromMirageBot"]},{"repo":"mirage-block","user":"mirage","current_release_or_tag":{"name":"v0.2","published_at":"2015-11-09T22:16:30Z","of_total":2,"type":"release"},"branches":["gh-pages","master"],"events":{"djs55":8},"tags":["fromMirageBot"]},{"repo":"orm","user":"mirage","current_release_or_tag":{"name":"orm-0.7.0","published_at":"2012-10-01T17:55:59Z","of_total":8,"type":"tag"},"branches":["master"],"events":{"mvalle":2},"tags":["fromMirageBot"]},{"repo":"dyntype","user":"mirage","current_release_or_tag":{"name":"dyntype-0.9.0","published_at":"2012-10-01T17:18:29Z","of_total":11,"type":"tag"},"branches":["master"],"events":{"rgrinberg":2},"tags":["fromMirageBot"]},{"repo":"mirage-tutorial","user":"mirage","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-dns","user":"mirage","current_release_or_tag":{"name":"v0.18.1","published_at":"2016-04-17T18:43:27Z","of_total":19,"type":"release"},"branches":["heidi-ann-master","master"],"events":{"djs55":26,"avsm":10,"dsheets":3,"carriercomm":2,"patgithub":2},"tags":["fromMirageBot"]},{"repo":"ocaml-tar","user":"mirage","current_release_or_tag":{"name":"v0.5.0","published_at":"2016-04-24T16:55:19Z","of_total":5,"type":"release"},"branches":["master"],"events":{"djs55":15},"tags":["fromMirageBot"]},{"repo":"ocaml-cow","user":"mirage","current_release_or_tag":{"name":"v2.0.1","published_at":"2016-05-03T17:00:34Z","of_total":17,"type":"release"},"branches":["gh-pages","labeled-arg-antiquot","master"],"events":{"samoht":50,"tbrk":10,"avsm":9,"dsheets":8,"Drup":4,"chrismamo1":2},"tags":["fromMirageBot"]},{"repo":"ocaml-xenstore","user":"mirage","current_release_or_tag":{"name":"v1.3.0","published_at":"2016-03-14T22:21:51Z","of_total":2,"type":"release"},"branches":["1.2-experimental","experimental","master","ocplib-endian","pre-repo-transfer","xen-build"],"events":{"djs55":27,"euanh":9,"robhoes":3},"tags":["fromMirageBot","xen"]},{"repo":"ocaml-crunch","user":"mirage","current_release_or_tag":{"name":"v1.4.1","published_at":"2016-02-17T17:00:44Z","of_total":10,"type":"release"},"branches":["master"],"events":{"samoht":6,"talex5":3,"avsm":3},"tags":["fromMirageBot"]},{"repo":"cowabloga","user":"mirage","current_release_or_tag":{"name":"v0.2.0","published_at":"2016-03-13T23:48:06Z","of_total":11,"type":"tag"},"branches":["master"],"events":{"samoht":15},"tags":["fromMirageBot"]},{"repo":"ocaml-ipaddr","user":"mirage","current_release_or_tag":{"name":"2.7.0","published_at":"2016-02-14T17:36:14Z","of_total":17,"type":"tag"},"branches":["macaddr-local","master","netmask","safe-string","travis-4.02","travis-fix","travis","unix-support","v6_netmask","v6"],"events":{"dsheets":15},"tags":["fromMirageBot"]},{"repo":"mirage-decks","user":"mirage","current_release_or_tag":{"name":"v0.9.4","published_at":"2013-12-24T11:22:10Z","of_total":1,"type":"release"},"branches":["cl-mirage20","master","oscon14-presentation","qcon13","xensummit13"],"events":{},"tags":["fromMirageBot"]},{"repo":"io-page","user":"mirage","current_release_or_tag":{"name":"v1.6.0","published_at":"2016-03-03T11:07:34Z","of_total":10,"type":"release"},"branches":["master"],"events":{"djs55":8,"avsm":4,"hannesm":3,"samoht":2},"tags":["fromMirageBot"]},{"repo":"mirage-clock","user":"mirage","current_release_or_tag":{"name":"v1.1","published_at":"2016-01-05T16:20:34Z","of_total":3,"type":"release"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"mirage-console","user":"mirage","current_release_or_tag":{"name":"v2.1.3","published_at":"2015-03-08T23:00:54Z","of_total":9,"type":"release"},"branches":["master"],"events":{"talex5":5},"tags":["fromMirageBot"]},{"repo":"shared-block-ring","user":"mirage","current_release_or_tag":{"name":"v2.2.0","published_at":"2016-04-22T15:47:25Z","of_total":7,"type":"release"},"branches":["master","v1.1.1"],"events":{"jonludlam":6},"tags":["fromMirageBot"]},{"repo":"mirage-net-unix","user":"mirage","current_release_or_tag":{"name":"v2.2.2","published_at":"2015-06-08T01:11:31Z","of_total":7,"type":"release"},"branches":["master","v2-set-mac"],"events":{"talex5":3,"djs55":2},"tags":["fromMirageBot"]},{"repo":"ezjsonm","user":"mirage","current_release_or_tag":{"name":"0.4.3","published_at":"2015-11-30T19:59:52Z","of_total":8,"type":"tag"},"branches":["gh-pages","master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-gnt","user":"mirage","current_release_or_tag":{"name":"v2.2.2","published_at":"2016-01-28T13:57:18Z","of_total":10,"type":"release"},"branches":["master"],"events":{"talex5":2},"tags":["fromMirageBot"]},{"repo":"mirage-block-volume","user":"mirage","current_release_or_tag":{"name":"v0.12.0","published_at":"2015-07-23T15:37:09Z","of_total":6,"type":"release"},"branches":["master","release-0.9.2","release.0.10.0"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-xenstore-server","user":"mirage","current_release_or_tag":{"name":"blog/introducing-irmin-in-xenstore","published_at":"2014-07-18T15:07:46Z","of_total":1,"type":"tag"},"branches":["master"],"events":{},"tags":["fromMirageBot","xen"]},{"repo":"jitsu","user":"mirage","current_release_or_tag":{"name":"0.3.0","published_at":"2015-11-11T16:34:08Z","of_total":4,"type":"release"},"branches":["dev","master","sign","xenlight"],"events":{"jrelo":2,"daehyeok":2},"tags":["fromMirageBot"]},{"repo":"ocaml-hex","user":"mirage","current_release_or_tag":{"name":"1.0.0","published_at":"2015-10-14T16:31:56Z","of_total":3,"type":"release"},"branches":["gh-pages","master"],"events":{},"tags":["fromMirageBot"]},{"repo":"mirage-bootvar-xen","user":"mirage","current_release_or_tag":{"name":"0.3.1","published_at":"2016-02-07T21:23:06Z","of_total":4,"type":"release"},"branches":["master"],"events":{"MagnusS":7,"jonludlam":6,"talex5":2,"jsianes":2,"dbuenzli":2,"djs55":2},"tags":["fromMirageBot","xen"]},{"repo":"mirage-flow","user":"mirage","current_release_or_tag":{"name":"v1.1.0","published_at":"2016-01-27T14:32:26Z","of_total":5,"type":"release"},"branches":["gh-pages","master"],"events":{"samoht":6},"tags":["fromMirageBot"]},{"repo":"mirage-seal","user":"mirage","current_release_or_tag":{"name":"0.4.2","published_at":"2015-08-05T09:11:00Z","of_total":7,"type":"release"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"mini-os","user":"mirage","current_release_or_tag":{"name":"xen-4.7.0-rc1","published_at":"2016-05-03T11:32:11Z","of_total":147,"type":"tag"},"branches":["master","xen-stable-4.6"],"events":{"avsm":4,"carriercomm":2},"tags":["fromMirageBot"]},{"repo":"irmin-chunk","user":"mirage","current_release_or_tag":{"name":"1.0.0","published_at":"2015-10-01T09:26:18Z","of_total":1,"type":"release"},"branches":["gh-pages","master"],"events":{},"tags":["fromMirageBot"]},{"repo":"irmin-krypto","user":"mirage","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-launchd","user":"mirage","current_release_or_tag":{"name":"v1.2","published_at":"2016-01-14T11:56:36Z","of_total":3,"type":"release"},"branches":["gh-pages","master","release.1.0","release.1.2"],"events":{},"tags":["fromMirageBot"]},{"repo":"mirage-block-ramdisk","user":"mirage","current_release_or_tag":{"name":"v0.1","published_at":"2015-11-03T15:12:06Z","of_total":1,"type":"release"},"branches":["gh-pages","master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-rpc","user":"mirage","current_release_or_tag":{"name":"v1.5.5","published_at":"2015-07-23T20:23:34Z","of_total":4,"type":"release"},"branches":["experimental","master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-fat","user":"mirage","current_release_or_tag":{"name":"v0.10.3","published_at":"2015-03-10T10:14:55Z","of_total":12,"type":"release"},"branches":["improve-signatures","master","new-tests","refactor"],"events":{},"tags":["fromMirageBot"]},{"repo":"mirage-fs","user":"mirage","current_release_or_tag":{"name":"v0.6.0","published_at":"2013-07-09T12:10:06Z","of_total":1,"type":"release"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"xenbigarray","user":"mirage","current_release_or_tag":{"name":"xenbigarray-1.0.0","published_at":"2012-12-11T13:28:31Z","of_total":1,"type":"tag"},"branches":["master"],"events":{},"tags":["fromMirageBot","xen"]},{"repo":"ocaml-tuntap","user":"mirage","current_release_or_tag":{"name":"v1.3.0","published_at":"2015-06-07T19:51:04Z","of_total":3,"type":"release"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"xen-disk","user":"mirage","current_release_or_tag":{"name":"v1.2.1","published_at":"2014-02-01T16:09:02Z","of_total":4,"type":"release"},"branches":["master"],"events":{},"tags":["fromMirageBot","xen"]},{"repo":"ocaml-mbr","user":"mirage","current_release_or_tag":{"name":"v0.3","published_at":"2015-06-04T15:34:18Z","of_total":3,"type":"release"},"branches":["master","release.0.3"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-mstruct","user":"mirage","current_release_or_tag":{"name":"1.3.2","published_at":"2014-12-19T11:23:53Z","of_total":6,"type":"tag"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-lazy-trie","user":"mirage","current_release_or_tag":{"name":"1.1.0","published_at":"2014-06-18T11:42:05Z","of_total":2,"type":"release"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-evtchn","user":"mirage","current_release_or_tag":{"name":"v1.0.6","published_at":"2015-02-17T16:10:47Z","of_total":7,"type":"release"},"branches":["master"],"events":{"talex5":2},"tags":["fromMirageBot"]},{"repo":"mirage-vagrant-vms","user":"mirage","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"merge-queues","user":"mirage","current_release_or_tag":{"name":"0.2.0","published_at":"2015-03-24T09:48:42Z","of_total":2,"type":"tag"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-bloom-filters","user":"mirage","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"mirage-entropy","user":"mirage","current_release_or_tag":{"name":"0.3.0","published_at":"2015-05-02T18:05:02Z","of_total":8,"type":"release"},"branches":["master"],"events":{"hannesm":6},"tags":["fromMirageBot"]},{"repo":"mirage-xen-minios","user":"mirage","current_release_or_tag":{"name":"v0.8.0","published_at":"2015-07-28T09:42:22Z","of_total":9,"type":"release"},"branches":["master"],"events":{},"tags":["fromMirageBot","xen"]},{"repo":"ocaml-base64","user":"mirage","current_release_or_tag":{"name":"v2.0.0","published_at":"2014-12-24T17:50:21Z","of_total":3,"type":"release"},"branches":["gh-pages","master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-openflow","user":"mirage","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"synjitsu","user":"mirage","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"merge-ropes","user":"mirage","current_release_or_tag":{"name":"0.2.0","published_at":"2015-03-24T08:25:21Z","of_total":2,"type":"tag"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"mirage-tc","user":"mirage","current_release_or_tag":{"name":"0.3.0","published_at":"2014-12-18T14:50:28Z","of_total":4,"type":"tag"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"mirage-net-macosx","user":"mirage","current_release_or_tag":{"name":"v1.1.0","published_at":"2015-03-04T17:55:51Z","of_total":2,"type":"release"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"xentropyd","user":"mirage","current_release_or_tag":{"name":"v0.9.3","published_at":"2015-01-29T21:47:08Z","of_total":3,"type":"release"},"branches":["master"],"events":{"hannesm":6,"pqwy":5,"djs55":4,"adrelanos":4},"tags":["fromMirageBot","xen"]},{"repo":"ocaml-magic-mime","user":"mirage","current_release_or_tag":{"name":"v1.0.0","published_at":"2015-02-08T17:07:38Z","of_total":1,"type":"release"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"cuekeeper","user":"talex5","current_release_or_tag":{"name":"demo-may-27","published_at":"2015-05-24T17:42:16Z","of_total":2,"type":"tag"},"branches":["containers","debug","demo","fix-travis","lca-problem","libidb","master","objects","server","sync","travis","ucn-demo","upstream-git"],"events":{"talex5":7,"neolem":2},"tags":["fromMirageBot"]},{"repo":"mirage-perf","user":"mirage","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"mirage-channel","user":"mirage","current_release_or_tag":{"name":"1.0.0","published_at":"2015-07-03T16:57:03Z","of_total":1,"type":"tag"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"mirage-logs","user":"mirage","current_release_or_tag":{"name":"v0.2","published_at":"2016-04-28T17:55:58Z","of_total":2,"type":"tag"},"branches":["master"],"events":{"samoht":12,"talex5":8},"tags":["fromMirageBot"]},{"repo":"mirage-qubes","user":"talex5","current_release_or_tag":{"name":"v0.2","published_at":"2016-01-18T14:00:29Z","of_total":2,"type":"tag"},"branches":["buggy-db","master","travis"],"events":{"talex5":6},"tags":["fromMirageBot"]},{"repo":"qubes-mirage-skeleton","user":"talex5","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"talex5":2},"tags":["fromMirageBot"]},{"repo":"qubes-mirage-firewall","user":"talex5","current_release_or_tag":{"name":"0.1","published_at":"2016-01-01T15:21:28Z","of_total":1,"type":"tag"},"branches":["debug","master","travis"],"events":{"talex5":24,"cfcs":5},"tags":["fromMirageBot"]},{"repo":"ocaml-xenstore-clients","user":"djs55","current_release_or_tag":{"name":"0.9.4","published_at":"2014-06-16T21:33:27Z","of_total":1,"type":"release"},"branches":["fix-leak","master","unix","xenbus"],"events":{},"tags":["fromMirageBot","xen"]},{"repo":"xenopsd-previous","user":"djs55","current_release_or_tag":{"name":"0.9.30","published_at":"2013-10-20T14:31:40Z","of_total":31,"type":"tag"},"branches":["add-oasis","dom0-xenstore-tree","fix-empty-cdrom","forupstream/xenswitch","master","migration-channel","mmap-limit","obuild","upgrade-to-4.2","xenserver-core-fixes","xenswitch","xenswitch2"],"events":{},"tags":["fromMirageBot","xen"]},{"repo":"message-switch","user":"djs55","current_release_or_tag":{"name":"v0.12.0","published_at":"2015-07-16T13:45:12Z","of_total":6,"type":"release"},"branches":["add-missing-script","add-release","async","cohttp.0.12.0","cohttp.0.19.1","configure-script","fix-daemonize","fix-parsing","master","osx","release.0.10.4","release.0.10.5","release.0.11.0","release.0.12.0","remove-oclock"],"events":{},"tags":["fromMirageBot"]},{"repo":"xcp-idl","user":"djs55","current_release_or_tag":{"name":"0.9.14","published_at":"2013-09-26T16:28:27Z","of_total":15,"type":"tag"},"branches":["CP-13697","add-backtraces","add-cmdliner","add-floppy","add-storage-test","attach-info","ca-143836","channel-passing","cohttp.0.12.0","cohttp.0.15.0","domain-zero-policy","epoch-open","experimental-exceptions","first-release","fix-http-header-parsing","forupstream/sm-list","forupstream/xenswitch","master","migration-channel","new-version","release-0.9.18","release.0.9.20","remove-js","rename","resync-with-xapi","resync-with-xen-api","rrd-should-bypass-switch","sm-list","use-switch-true","xcp-rrd","xenswitch"],"events":{"euanh":2},"tags":["fromMirageBot"]},{"repo":"ocaml-vhd","user":"djs55","current_release_or_tag":{"name":"v0.7.3","published_at":"2015-09-11T12:25:31Z","of_total":12,"type":"release"},"branches":["add-tests","batmap","bugfixes","cross-product","hybrid","improve-cli","improve-delta-copy","make-nice-mli","master","mirage-block","not-sure-what","o-direct-experiment","openchain","optimise_writes","patterns","relative-paths","vhd-util","writing-experiment"],"events":{"lesserevil":8,"mxk":3},"tags":["fromMirageBot"]},{"repo":"ocaml-sodium","user":"dsheets","current_release_or_tag":{"name":"0.5.0","published_at":"2015-07-11T16:57:43Z","of_total":7,"type":"tag"},"branches":["bench","ed25519_to","generichash","master","sign","stream","yallop-bigarray"],"events":{"CMB":4,"dsheets":3},"tags":["fromMirageBot"]},{"repo":"ocaml-vnc","user":"djs55","current_release_or_tag":{"name":"0.0.1","published_at":"2013-07-25T20:28:55Z","of_total":1,"type":"tag"},"branches":["bigarray-marshalling","build-fixes","master","temp"],"events":{},"tags":["fromMirageBot"]},{"repo":"profuse","user":"dsheets","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["0.4.0-beta","0.4.0-delta","0.4.0-gamma","batch-forget","fuse-7.23","fusedump-read-error-fd-leak","master","nodes-rename","notify-description","notify-inval-entry","opam-deps","open-return-flags"],"events":{"dsheets":3},"tags":["fromMirageBot"]},{"repo":"opamfu","user":"ocamllabs","current_release_or_tag":{"name":"0.1.2","published_at":"2015-01-21T16:29:18Z","of_total":3,"type":"tag"},"branches":["master","oo","optional-date","with-opam-1.2.0"],"events":{},"tags":["fromMirageBot"]},{"repo":"cloudstack-dev-vms","user":"djs55","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-cloudstack","user":"djs55","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"openlibm","user":"talex5","current_release_or_tag":{"name":"dev","published_at":"2015-01-12T10:45:03Z","of_total":7,"type":"tag"},"branches":["arm-hacks","arm-hacks2","arm","cdefs","cpack","licenses","master","minios","minios2","pkg-config","sf/gamma_y_fix","sf/noinc","soname","travis","type_includes","whoopsies"],"events":{},"tags":["fromMirageBot"]},{"repo":"2048-tutorial","user":"ocamllabs","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["gh-pages","master","solved-notebook","solved"],"events":{},"tags":["fromMirageBot"]},{"repo":"xe-unikernel-upload","user":"djs55","current_release_or_tag":{"name":"v0.5","published_at":"2015-06-07T09:32:31Z","of_total":5,"type":"release"},"branches":["master","refactor","switch-to-isolinux"],"events":{},"tags":["fromMirageBot"]},{"repo":"example-unikernels","user":"yomimono","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["arp_tester_rev","master","show_via_web","store_in_irmin"],"events":{"yomimono":2},"tags":["fromMirageBot"]},{"repo":"xapi-database","user":"djs55","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocfs2-tools","user":"djs55","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["debian","master","xhad"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-gpt","user":"djs55","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"simple-nat","user":"yomimono","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["cleanup","master","redirect","single-iface","with_port_forward"],"events":{},"tags":["fromMirageBot"]},{"repo":"mirage-nat","user":"yomimono","current_release_or_tag":{"name":"0.4.0","published_at":"2015-08-10T14:58:21Z","of_total":3,"type":"release"},"branches":["depopt_irmin","keys_values","lift_irmin","master","rename"],"events":{"yomimono":3},"tags":["fromMirageBot"]},{"repo":"arbitrary-network","user":"yomimono","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"mirage-net-pcap","user":"yomimono","current_release_or_tag":{"name":"0.0.1","published_at":"2015-03-12T12:42:26Z","of_total":1,"type":"release"},"branches":["master","write_packets"],"events":{"yomimono":4},"tags":["fromMirageBot"]},{"repo":"irmin-arp","user":"yomimono","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["better_demo","demo_network","master","pull_others","split_data"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-scry","user":"ocamllabs","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"Decompress","user":"oklm-wsh","current_release_or_tag":{"name":"0.4","published_at":"2016-04-07T20:30:02Z","of_total":4,"type":"release"},"branches":["bigstring","gh-pages","master"],"events":{"dinosaure":84,"mmaker":3},"tags":["fromMirageBot"]},{"repo":"ocaml-c3","user":"djs55","current_release_or_tag":{"name":"v0.3.0","published_at":"2015-06-25T20:13:34Z","of_total":4,"type":"release"},"branches":["gh-pages","json","labels","master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-certify","user":"yomimono","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["alt_names","primary"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-rand","user":"qlai","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master","oasis"],"events":{},"tags":["fromMirageBot"]},{"repo":"irmin-network-datastores","user":"yomimono","current_release_or_tag":{"name":"0.0.1","published_at":"2015-08-10T14:51:46Z","of_total":1,"type":"release"},"branches":["keys_to_paths","master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-btree","user":"djs55","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["api-tweaks","master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-xenstore-xen","user":"djs55","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["cstruct","master"],"events":{},"tags":["fromMirageBot","xen"]},{"repo":"ocaml-dnssec","user":"dsheets","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-crc","user":"xapi-project","current_release_or_tag":{"name":"v1.0.0","published_at":"2016-04-28T14:18:59Z","of_total":2,"type":"release"},"branches":["master","release-0.9.9"],"events":{"johnelse":23,"hannesm":9,"coveralls":8,"simonjbeaumont":3,"euanh":2,"yomimono":2},"tags":["fromMirageBot"]},{"repo":"ocaml-device-mapper","user":"djs55","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"topkg","user":"dbuenzli","current_release_or_tag":{"name":"lib-script","published_at":"2016-05-07T12:20:46Z","of_total":4,"type":"tag"},"branches":["master"],"events":{"dbuenzli":68,"Khady":4,"mor1":3,"fdopen":2},"tags":["fromMirageBot"]},{"repo":"ocaml-ec2","user":"moonlightdrive","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master","s3"],"events":{},"tags":["fromMirageBot"]},{"repo":"mirage-bench","user":"MagnusS","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master","nsdi15-cr"],"events":{},"tags":["fromMirageBot"]},{"repo":"mirage-trace-viewer","user":"talex5","current_release_or_tag":{"name":"0.2","published_at":"2015-06-08T09:54:25Z","of_total":2,"type":"release"},"branches":["combined","gh-pages","master","signal"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-libmacaroons","user":"dsheets","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"mirage-mimic","user":"MagnusS","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["dev","master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-ntp","user":"dsheets","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["io-page.1.3+","master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ISO8601.ml","user":"sagotch","current_release_or_tag":{"name":"0.2.4","published_at":"2015-05-14T08:20:24Z","of_total":9,"type":"release"},"branches":["duration","gh-pages","master","test"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-dns-examples","user":"heidi-ann","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"tower","user":"dsheets","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"mirage-vnetif","user":"MagnusS","current_release_or_tag":{"name":"0.1","published_at":"2015-04-30T15:02:35Z","of_total":1,"type":"release"},"branches":["lwt-pause","master"],"events":{},"tags":["fromMirageBot"]},{"repo":"trails","user":"dsheets","current_release_or_tag":{"name":"annotated_tag","published_at":"2015-04-30T19:49:22Z","of_total":2,"type":"tag"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"garpjitsu","user":"MagnusS","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"mirage-stats-demo","user":"MagnusS","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"blueprint","user":"dsheets","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"irmin-indexeddb","user":"talex5","current_release_or_tag":{"name":"v0.3","published_at":"2015-10-15T09:03:25Z","of_total":3,"type":"release"},"branches":["b2","branch_id","demo","git-format","master","new-irmin-api"],"events":{"vasilisp":5,"talex5":4},"tags":["fromMirageBot"]},{"repo":"irminfs","user":"dsheets","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["branchname-bug","master"],"events":{},"tags":["fromMirageBot"]},{"repo":"opam-bulk-build-ui","user":"talex5","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["demo","master"],"events":{},"tags":["fromMirageBot"]},{"repo":"qubes-test-mirage","user":"talex5","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"js-skeleton","user":"talex5","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"Drup":2,"fxfactorial":2},"tags":["fromMirageBot"]},{"repo":"irmin-www","user":"talex5","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master","new-irmin-api","new_irmin_api"],"events":{},"tags":["fromMirageBot"]},{"repo":"irmin-js","user":"talex5","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master","new-irmin-api","travis"],"events":{},"tags":["fromMirageBot"]},{"repo":"mirage-oram","user":"ruhatch","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"ruhatch":76,"dsheets":3},"tags":["fromMirageBot"]},{"repo":"irmin-filer","user":"talex5","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"fpath","user":"dbuenzli","current_release_or_tag":{"name":"v0.0.0","published_at":"2015-12-08T16:45:20Z","of_total":1,"type":"tag"},"branches":["master"],"events":{"dbuenzli":31,"dsheets":2},"tags":["fromMirageBot"]},{"repo":"carcass","user":"dbuenzli","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"dbuenzli":12,"samoht":5},"tags":["fromMirageBot"]},{"repo":"cmdliner","user":"dbuenzli","current_release_or_tag":{"name":"v0.9.8","published_at":"2015-10-11T20:45:19Z","of_total":9,"type":"tag"},"branches":["master"],"events":{"dbuenzli":26,"rleonid":6,"armish":5,"infinity0":5,"hcarty":2,"rgrinberg":2},"tags":["fromMirageBot"]},{"repo":"react","user":"dbuenzli","current_release_or_tag":{"name":"v1.2.0","published_at":"2014-08-23T23:03:28Z","of_total":10,"type":"tag"},"branches":["master","react-id"],"events":{},"tags":["fromMirageBot"]},{"repo":"jsonm","user":"dbuenzli","current_release_or_tag":{"name":"v0.9.1","published_at":"2012-08-05T13:44:54Z","of_total":2,"type":"tag"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"nbcodec","user":"dbuenzli","current_release_or_tag":{"name":"v0.0.4","published_at":"2012-04-24T21:28:57Z","of_total":4,"type":"tag"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"uunf","user":"dbuenzli","current_release_or_tag":{"name":"v1.0.0","published_at":"2015-06-17T22:51:08Z","of_total":6,"type":"tag"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"uutf","user":"dbuenzli","current_release_or_tag":{"name":"v0.9.4","published_at":"2015-01-23T12:14:31Z","of_total":5,"type":"tag"},"branches":["assemblage","master"],"events":{},"tags":["fromMirageBot"]},{"repo":"xmlm","user":"dbuenzli","current_release_or_tag":{"name":"v1.2.0","published_at":"2013-09-06T16:28:44Z","of_total":8,"type":"tag"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"webs","user":"dbuenzli","current_release_or_tag":{"name":"v0.0.0","published_at":"2013-03-25T00:18:28Z","of_total":1,"type":"tag"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"rpng","user":"dbuenzli","current_release_or_tag":{"name":"Witness-api","published_at":"2013-03-02T17:43:19Z","of_total":1,"type":"tag"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"useri","user":"dbuenzli","current_release_or_tag":{"name":"v0.0.0","published_at":"2014-05-18T12:15:28Z","of_total":1,"type":"tag"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"assemblage","user":"samoht","current_release_or_tag":{"name":"0.4.0","published_at":"2014-11-30T23:44:04Z","of_total":4,"type":"release"},"branches":["gh-pages","master"],"events":{},"tags":["fromMirageBot"]},{"repo":"uucp","user":"dbuenzli","current_release_or_tag":{"name":"v1.1.0","published_at":"2015-11-20T18:22:11Z","of_total":6,"type":"tag"},"branches":["master"],"events":{"pqwy":5,"dbuenzli":3},"tags":["fromMirageBot"]},{"repo":"jsont","user":"dbuenzli","current_release_or_tag":{"name":"v0.0.0","published_at":"2014-12-09T21:49:25Z","of_total":1,"type":"tag"},"branches":["master"],"events":{"mor1":2},"tags":["fromMirageBot"]},{"repo":"uuseg","user":"dbuenzli","current_release_or_tag":{"name":"v0.9.0","published_at":"2015-06-17T23:03:44Z","of_total":3,"type":"tag"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"dog","user":"samoht","current_release_or_tag":{"name":"0.2.0","published_at":"2015-06-11T21:37:24Z","of_total":2,"type":"tag"},"branches":["gh-pages","master"],"events":{"samoht":14},"tags":["fromMirageBot"]},{"repo":"bos","user":"dbuenzli","current_release_or_tag":{"name":"v0.0.0","published_at":"2015-02-27T19:37:15Z","of_total":1,"type":"tag"},"branches":["master"],"events":{"dbuenzli":44,"jpdeplaix":2},"tags":["fromMirageBot"]},{"repo":"rresult","user":"dbuenzli","current_release_or_tag":{"name":"v0.3.0","published_at":"2015-11-30T17:02:40Z","of_total":4,"type":"tag"},"branches":["master"],"events":{"dbuenzli":7},"tags":["fromMirageBot"]},{"repo":"mirmin","user":"samoht","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master","new"],"events":{},"tags":["fromMirageBot"]},{"repo":"mtime","user":"dbuenzli","current_release_or_tag":{"name":"v0.8.3","published_at":"2015-12-22T19:48:58Z","of_total":5,"type":"tag"},"branches":["master"],"events":{"dbuenzli":6,"dsheets":6},"tags":["fromMirageBot"]},{"repo":"dockage","user":"samoht","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ciso","user":"samoht","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["gh-pages","master","scheduler","web_interface","worker_multiprocess"],"events":{"samoht":7},"tags":["fromMirageBot"]},{"repo":"ptime","user":"dbuenzli","current_release_or_tag":{"name":"v0.8.0","published_at":"2015-12-24T22:15:48Z","of_total":3,"type":"tag"},"branches":["master"],"events":{"dbuenzli":4,"seliopou":3,"dinosaure":3,"Chris00":2},"tags":["fromMirageBot"]},{"repo":"astring","user":"dbuenzli","current_release_or_tag":{"name":"v0.8.1","published_at":"2016-02-22T20:14:22Z","of_total":3,"type":"tag"},"branches":["master"],"events":{"dbuenzli":2},"tags":["fromMirageBot"]},{"repo":"fmt","user":"dbuenzli","current_release_or_tag":{"name":"v0.7.1","published_at":"2015-12-03T10:30:03Z","of_total":3,"type":"tag"},"branches":["master"],"events":{"dbuenzli":9},"tags":["fromMirageBot"]},{"repo":"tick","user":"dbuenzli","current_release_or_tag":{"name":"v0.0.0","published_at":"2015-08-13T02:00:28Z","of_total":1,"type":"tag"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"rpi-boot-ocaml","user":"dbuenzli","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"logs","user":"dbuenzli","current_release_or_tag":{"name":"v0.5.0","published_at":"2016-01-07T21:25:58Z","of_total":3,"type":"tag"},"branches":["master"],"events":{"dbuenzli":5},"tags":["fromMirageBot"]},{"repo":"loops-mirage","user":"samoht","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"hmap","user":"dbuenzli","current_release_or_tag":{"name":"v0.8.0","published_at":"2016-03-08T08:53:40Z","of_total":2,"type":"tag"},"branches":["master"],"events":{"dbuenzli":14,"rgrinberg":2},"tags":["fromMirageBot"]},{"repo":"opam-build","user":"samoht","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"yunxing":2,"dbuenzli":2,"samoht":2},"tags":["fromMirageBot"]},{"repo":"melange","user":"avsm","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["make-it-build","master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-mrt","user":"mor1","current_release_or_tag":{"name":"0.1.1","published_at":"2015-11-21T16:38:40Z","of_total":2,"type":"tag"},"branches":["gh-pages","master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ezxmlm","user":"avsm","current_release_or_tag":{"name":"v1.0.1","published_at":"2014-06-03T09:40:33Z","of_total":2,"type":"release"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"vagrant-opam","user":"avsm","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"opam-sync-github-prs","user":"avsm","current_release_or_tag":{"name":"v1.1.0","published_at":"2015-08-06T11:21:43Z","of_total":2,"type":"release"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-asn1-combinators","user":"mirleft","current_release_or_tag":{"name":"0.1.2","published_at":"2015-05-02T17:48:13Z","of_total":1,"type":"release"},"branches":["master","new-parser"],"events":{"hannesm":7},"tags":["fromMirageBot"]},{"repo":"ocaml-tls","user":"mirleft","current_release_or_tag":{"name":"0.7.1","published_at":"2016-03-21T12:04:21Z","of_total":8,"type":"release"},"branches":["demo-random","demo","fixes","gh-pages","master","nondeterministic-tls","pinata","tls13","tracing"],"events":{"hannesm":103,"pqwy":17,"dinosaure":4,"azul":3,"fxfactorial":2},"tags":["fromMirageBot"]},{"repo":"ocaml-nocrypto","user":"mirleft","current_release_or_tag":{"name":"v0.5.3","published_at":"2016-03-21T01:01:41Z","of_total":7,"type":"release"},"branches":["dsa-masking","gh-pages","master"],"events":{"pqwy":44,"hannesm":15,"mmaker":7,"dbuenzli":6,"Leonidas-from-XIV":4,"cfcs":4,"ivg":2,"fxfactorial":2},"tags":["fromMirageBot"]},{"repo":"tls-demo-server","user":"mirleft","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-x509","user":"mirleft","current_release_or_tag":{"name":"0.5.2","published_at":"2016-04-13T10:41:24Z","of_total":9,"type":"release"},"branches":["expose-der-csr","gh-pages","master","pinata","pinata2","tracing"],"events":{"hannesm":34,"pqwy":13},"tags":["fromMirageBot"]},{"repo":"jackline","user":"hannesm","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master","slack"],"events":{"hannesm":144,"infinity0":21,"cfcs":9,"murinicanor":5,"posiputt":2},"tags":["fromMirageBot"]},{"repo":"ocaml-dockerfile","user":"avsm","current_release_or_tag":{"name":"v1.6.0","published_at":"2016-05-04T16:52:14Z","of_total":8,"type":"release"},"branches":["gh-pages","master","test"],"events":{"avsm":58},"tags":["fromMirageBot"]},{"repo":"ocaml-docker-scripts","user":"avsm","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["alpine-3.3_ocaml-4.00.1_core","alpine-3.3_ocaml-4.01.0_core","alpine-3.3_ocaml-4.02.3_core","alpine-3.3_ocaml-4.03.0_trunk_core","centos-6_ocaml-4.00.1_core","centos-6_ocaml-4.01.0_core","centos-6_ocaml-4.02.3_core","centos-6_ocaml-4.03.0_trunk_core","centos-7_ocaml-4.00.1_core","centos-7_ocaml-4.01.0_core","centos-7_ocaml-4.02.3_core","centos-7_ocaml-4.03.0_trunk_core","debian-7_ocaml-4.00.1_core","debian-7_ocaml-4.01.0_core","debian-7_ocaml-4.02.3_core","master"],"events":{"avsm":15},"tags":["fromMirageBot"]},{"repo":"btc-pinata","user":"mirleft","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["another","master"],"events":{"hannesm":3},"tags":["fromMirageBot"]},{"repo":"ocaml-huffman-code","user":"samoht","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-lz77","user":"samoht","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"tlstunnel","user":"hannesm","current_release_or_tag":{"name":"0.1.3","published_at":"2016-03-22T13:12:11Z","of_total":4,"type":"release"},"branches":["master"],"events":{"hannesm":36,"cfcs":12,"avsm":3,"nagymo":2},"tags":["fromMirageBot"]},{"repo":"tlsclient","user":"hannesm","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"hannesm":8},"tags":["fromMirageBot"]},{"repo":"nqsb.io","user":"mirleft","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"hannesm":15},"tags":["fromMirageBot"]},{"repo":"ocaml-tftp","user":"mor1","current_release_or_tag":{"name":"0.1.4","published_at":"2015-08-12T14:49:27Z","of_total":5,"type":"tag"},"branches":["gh-pages","master"],"events":{"mor1":8,"talex5":4},"tags":["fromMirageBot"]},{"repo":"notty","user":"pqwy","current_release_or_tag":{"name":"v0.1.1","published_at":"2016-02-09T15:10:38Z","of_total":2,"type":"tag"},"branches":["blob","gh-pages","master","mirage"],"events":{"pqwy":51,"rneswold":7,"hannesm":6,"Drup":5,"c-cube":3,"fxfactorial":2,"dbuenzli":2,"samoht":2},"tags":["fromMirageBot"]},{"repo":"ocaml-signalfd","user":"pqwy","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"pqwy":2},"tags":["fromMirageBot"]},{"repo":"ocaml-pctrl","user":"pqwy","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"pqwy":7},"tags":["fromMirageBot"]},{"repo":"tlstools","user":"mirleft","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"hannesm":12},"tags":["fromMirageBot"]},{"repo":"opam-solver-proxy","user":"avsm","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"avsm":5},"tags":["fromMirageBot"]},{"repo":"ocaml-docker-infra","user":"avsm","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"avsm":21},"tags":["fromMirageBot"]},{"repo":"ocaml-sendmsg","user":"pqwy","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"pqwy":5},"tags":["fromMirageBot"]},{"repo":"ike","user":"isakmp","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"hannesm":55,"sg2342":22},"tags":["fromMirageBot"]},{"repo":"telnet","user":"hannesm","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"hannesm":4,"samoht":2},"tags":["fromMirageBot"]},{"repo":"dopam","user":"avsm","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"avsm":20,"mor1":6},"tags":["fromMirageBot"]},{"repo":"ocaml-ctypes","user":"ocamllabs","current_release_or_tag":{"name":"0.5.1","published_at":"2016-05-02T08:38:24Z","of_total":13,"type":"release"},"branches":["0.2-fixes","0.3-fixes","0.4-fixes","gh-pages","master"],"events":{"yallop":152,"coveralls":29,"whitequark":17,"orbitz":8,"rleonid":6,"drbo":4,"seliopou":3,"simonjbeaumont":2},"tags":["fromMirageBot"]},{"repo":"tls-mvp-server","user":"mirleft","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-otr","user":"hannesm","current_release_or_tag":{"name":"0.3.2","published_at":"2016-05-09T16:12:26Z","of_total":5,"type":"release"},"branches":["gh-pages","master"],"events":{"hannesm":25},"tags":["fromMirageBot"]},{"repo":"ocaml-ctypes-tls","user":"yallop","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"charrua-core","user":"haesbaert","current_release_or_tag":{"name":"v0.3","published_at":"2016-04-02T10:04:20Z","of_total":3,"type":"tag"},"branches":["gh-pages","master","splitlease"],"events":{"haesbaert":36,"yomimono":4,"djs55":4,"wiredsister":3,"talex5":2},"tags":["fromMirageBot"]},{"repo":"trace-checker","user":"hannesm","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-rfc6287","user":"sg2342","current_release_or_tag":{"name":"1.0.1","published_at":"2016-02-23T10:47:15Z","of_total":2,"type":"tag"},"branches":["astring","master"],"events":{"sg2342":4},"tags":["fromMirageBot"]},{"repo":"rawlink","user":"haesbaert","current_release_or_tag":{"name":"v0.3","published_at":"2015-08-30T21:45:31Z","of_total":3,"type":"tag"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"mirage-block-ccm","user":"sg2342","current_release_or_tag":{"name":"1.0.1","published_at":"2016-02-22T10:32:52Z","of_total":2,"type":"tag"},"branches":["master"],"events":{"sg2342":12},"tags":["fromMirageBot"]},{"repo":"charrua-unix","user":"haesbaert","current_release_or_tag":{"name":"v0.3","published_at":"2016-04-02T10:05:24Z","of_total":3,"type":"tag"},"branches":["master","splitlease"],"events":{"haesbaert":11},"tags":["fromMirageBot"]},{"repo":"syslog-message","user":"verbosemode","current_release_or_tag":{"name":"0.0.1","published_at":"2016-03-24T00:01:54Z","of_total":1,"type":"tag"},"branches":["gh-pages","marrakech/valid-data-test","master"],"events":{"verbosemode":20,"Leonidas-from-XIV":19},"tags":["fromMirageBot"]},{"repo":"syslogd-mirage","user":"verbosemode","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"verbosemode":21,"wiredsister":15,"Leonidas-from-XIV":3,"Engil":2},"tags":["fromMirageBot"]},{"repo":"conex","user":"hannesm","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"hannesm":12},"tags":["fromMirageBot"]},{"repo":"ocaml-hkdf","user":"hannesm","current_release_or_tag":{"name":"1.0.1","published_at":"2015-12-20T17:03:13Z","of_total":2,"type":"release"},"branches":["gh-pages","master"],"events":{"hannesm":7},"tags":["fromMirageBot"]},{"repo":"mirage-switch","user":"jgjl","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-netaddr","user":"jgjl","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-safe-string-buffer","user":"yallop","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"yallop":4},"tags":["fromMirageBot"]},{"repo":"Canopy","user":"Engil","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master","new-css","new-last-updated","shell-config"],"events":{"Engil":116,"hannesm":102,"voila":48,"dbuenzli":10,"reynir":7,"wiredsister":3,"Drup":2,"dinosaure":2,"avsm":2},"tags":["fromMirageBot"]},{"repo":"Canopy-documentation","user":"Engil","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"Engil":9,"mmaker":2},"tags":["fromMirageBot"]},{"repo":"ocaml-pbkdf","user":"abeaumont","current_release_or_tag":{"name":"0.1.0","published_at":"2016-03-14T13:54:01Z","of_total":1,"type":"tag"},"branches":["gh-pages","master"],"events":{"abeaumont":53,"smeruelo":7,"hannesm":3},"tags":["fromMirageBot"]},{"repo":"mirage-dashboard","user":"rudenoise","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["gh-pages","master"],"events":{"rudenoise":196,"hannesm":11,"dsheets":7,"avsm":3,"amirmc":3,"samoht":2},"tags":["fromMirageBot"]},{"repo":"irmin-playground","user":"Engil","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"Engil":3},"tags":["fromMirageBot"]},{"repo":"mirage-swim","user":"andreas","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"andreas":3},"tags":["fromMirageBot"]},{"repo":"ocaml-socks","user":"cfcs","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"cfcs":8,"hannesm":2},"tags":["fromMirageBot"]},{"repo":"ocaml-scrypt-kdf","user":"abeaumont","current_release_or_tag":{"name":"0.1.0","published_at":"2016-03-18T16:31:35Z","of_total":1,"type":"tag"},"branches":["gh-pages","master"],"events":{"abeaumont":34,"hannesm":3,"smeruelo":2},"tags":["fromMirageBot"]},{"repo":"ocaml-wildcard","user":"cfcs","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"cfcs":5},"tags":["fromMirageBot"]},{"repo":"ctypes-playground","user":"Engil","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"Engil":4},"tags":["fromMirageBot"]},{"repo":"ocaml-packets","user":"jgjl","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"jgjl":14},"tags":["fromMirageBot"]},{"repo":"ImaginaryFriend","user":"Engil","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"Engil":10},"tags":["fromMirageBot"]},{"repo":"logs-syslog","user":"verbosemode","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master","playground"],"events":{"verbosemode":7},"tags":["fromMirageBot"]},{"repo":"ocaml-openflow","user":"crotsos","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["cstruct","develop","feature/fix-unix-direct","feature/floodlight-flowvisor","feature/xen-backend","master","mirage-synch","release/0.2","signpostd","xen-test"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-crypto-keys","user":"crotsos","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-pttcp","user":"crotsos","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["hadoop_model","master"],"events":{},"tags":["fromMirageBot"]},{"repo":"sdnsim-build","user":"crotsos","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-vcard","user":"vbmithr","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"sdnsim","user":"crotsos","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master","testing"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-smtp","user":"vbmithr","current_release_or_tag":{"name":"0.2","published_at":"2014-04-25T11:42:57Z","of_total":2,"type":"tag"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-crypt","user":"vbmithr","current_release_or_tag":{"name":"1.3","published_at":"2014-05-08T20:43:34Z","of_total":4,"type":"tag"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-raft","user":"heidi-ann","current_release_or_tag":{"name":"v1.0","published_at":"2014-11-14T14:13:48Z","of_total":1,"type":"release"},"branches":["attempt1","attempt2","attempt3","iter-dev","master","old_master_backup","simulator"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-imap","user":"nojb","current_release_or_tag":{"name":"1.1.1","published_at":"2015-06-24T03:45:00Z","of_total":7,"type":"tag"},"branches":["WIP","cps-parser","delete-command","err_context","fix-body-sec-parse","fix-empty-outbuf","fix-fetch-cmd-trailing-space","fix-literal-read-off-by-one","fix-mime-docs","gh-pages","master","mixed-style-parser","mutable-state"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-bt","user":"nojb","current_release_or_tag":{"name":"v0.2","published_at":"2014-05-10T23:59:14Z","of_total":2,"type":"release"},"branches":["WIP","WIP2","kadem-rewrite","master","refactor","rewrite","test-refactor"],"events":{"nojb":8,"frr149":2},"tags":["fromMirageBot"]},{"repo":"ocamlatom","user":"amirmc","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"imaplet","user":"gregtatcam","current_release_or_tag":{"name":"storage-intf-mbox","published_at":"2014-04-26T17:08:53Z","of_total":1,"type":"tag"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"feedmerge","user":"amirmc","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"imaplet-lwt","user":"gregtatcam","current_release_or_tag":{"name":"lightparsemail","published_at":"2016-01-14T21:12:33Z","of_total":21,"type":"tag"},"branches":["master"],"events":{"gregtatcam":7},"tags":["fromMirageBot"]},{"repo":"ocaml-ircd","user":"nojb","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"xen-urandom-proxy","user":"nojb","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot","xen"]},{"repo":"fosdemo","user":"amirmc","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-macaroons","user":"nojb","current_release_or_tag":{"name":"v0.1.1","published_at":"2015-02-16T15:14:35Z","of_total":2,"type":"tag"},"branches":["gh-pages","master"],"events":{},"tags":["fromMirageBot"]},{"repo":"zarith-big-int","user":"nojb","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"nojb":2},"tags":["fromMirageBot"]},{"repo":"rwe-dns-server","user":"heidi-ann","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"coracle","user":"consensus-oracle","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["gh-pages","master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-fix","user":"vbmithr","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{},"tags":["fromMirageBot"]},{"repo":"ocaml-dtc","user":"vbmithr","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"vbmithr":11},"tags":["fromMirageBot"]},{"repo":"mirage-ntp","user":"matildah","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["master"],"events":{"matildah":59},"tags":["fromMirageBot"]},{"repo":"ircd-scylla","user":"ahf","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["develop"],"events":{},"tags":["fromMirageBot"]},{"repo":"angstrom","user":"inhabitedtype","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["cmt","master","zero-copy"],"events":{"seliopou":69,"latticetower":11,"yallop":4,"dsheets":3,"rgrinberg":3},"tags":["fromMirageBot"]},{"repo":"ocaml-aws","user":"inhabitedtype","current_release_or_tag":{"name":"aws-1.0.2","published_at":"2016-03-27T21:54:33Z","of_total":4,"type":"release"},"branches":["master"],"events":{"seliopou":119,"fxfactorial":5,"hcarty":3,"michipili":2,"sgrove":2,"pwbs":2,"samoht":2},"tags":["fromMirageBot"]},{"repo":"mirage-btrees","user":"ruhatch","current_release_or_tag":{"name":"0.1.0","published_at":"2016-02-19T16:53:35Z","of_total":1,"type":"tag"},"branches":["master"],"events":{"ruhatch":19},"tags":["fromMirageBot"]},{"repo":"ocaml-lru-cache","user":"zoggy","current_release_or_tag":{"name":"0.2.0","published_at":"2016-04-06T08:18:45Z","of_total":2,"type":"tag"},"branches":["master"],"events":{"zoggy":20,"hannesm":10,"samoht":2},"tags":["fromMirageBot"]}]} -------------------------------------------------------------------------------- /data/out/test.json: -------------------------------------------------------------------------------- 1 | {"created_at":1473158222,"repos":[{"repo":"ocaml-ipaddr","user":"mirage","current_release_or_tag":{"name":"2.7.0","published_at":"2016-02-14T17:36:14Z","of_total":17,"type":"tag"},"branches":["macaddr-local","master","netmask","safe-string","travis-4.02","travis-fix","travis","unix-support","v6_netmask","v6"],"events":{"samoht":3,"waldyrious":2},"tags":["test-tag"],"info":"A library for manipulation of IP (and MAC) address representations"},{"repo":"mirage","user":"mirage","current_release_or_tag":{"name":"v2.9.1","published_at":"2016-07-22T11:13:07Z","of_total":27,"type":"release"},"branches":["async-udp","bigarray-io","bitstring","blkif-hotplug","camlp4.opt","dead-code-elim","fs-probe","gh-pages","istring","iteratee-io","master-20131208","master","newlib_removal","ocamlbuild","ocamlclean","ocp_build","ofelia","old-master","one-build","os-bigarray","perf-experiments","slim","test-framework","v2.9.1","v3-build","xen-blkif"],"events":{"yomimono":108,"hannesm":41,"Drup":24,"mato":18,"avsm":17,"talex5":15,"samoht":13,"mattgray":8,"mor1":4,"boloutaredoubeni":2,"kpashka":2,"pqwy":2,"nojb":2},"tags":["test-tag"],"info":"MirageOS is a library operating system that constructs unikernels"},{"repo":"mirage-dashboard","user":"rudenoise","current_release_or_tag":{"name":"No tag or release, yet...","published_at":"","of_total":0,"type":"releases or tags"},"branches":["gh-pages","master"],"events":{"rudenoise":12},"tags":["test-tag"],"info":"A dashboard displaying useful data from MirageOS project and its related repositories."}]} -------------------------------------------------------------------------------- /data/test/repos_from_trove.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "repo": "avsm/ezxmlm", 4 | "tags": ["fromTROVE"] 5 | }, 6 | { 7 | "repo": "djs55/ocaml-xenstore-clients", 8 | "tags": ["fromTROVE"] 9 | }, 10 | { 11 | "repo": "magnuss/mirage-mimic", 12 | "tags": ["fromTROVE"] 13 | }, 14 | { 15 | "repo": "mirage/alcotest", 16 | "tags": ["fromTROVE"] 17 | }, 18 | { 19 | "repo": "mirage/cowabloga", 20 | "tags": ["fromTROVE"] 21 | }, 22 | { 23 | "repo": "mirage/dyntype", 24 | "tags": ["fromTROVE"] 25 | }, 26 | { 27 | "repo": "mirage/ezjsonm", 28 | "tags": ["fromTROVE"] 29 | }, 30 | { 31 | "repo": "mirage/functoria", 32 | "tags": ["fromTROVE"] 33 | }, 34 | { 35 | "repo": "mirage/io-page", 36 | "tags": ["fromTROVE"] 37 | }, 38 | { 39 | "repo": "mirage/irmin", 40 | "tags": ["fromTROVE"] 41 | }, 42 | { 43 | "repo": "mirage/irmin-chunk", 44 | "tags": ["fromTROVE"] 45 | }, 46 | { 47 | "repo": "mirage/jitsu", 48 | "tags": ["fromTROVE"] 49 | }, 50 | { 51 | "repo": "mirage/merge-queues", 52 | "tags": ["fromTROVE"] 53 | }, 54 | { 55 | "repo": "mirage/merge-ropes", 56 | "tags": ["fromTROVE"] 57 | }, 58 | { 59 | "repo": "mirage/mirage", 60 | "tags": ["fromTROVE"] 61 | }, 62 | { 63 | "repo": "mirage/mirage-block-unix", 64 | "tags": ["fromTROVE"] 65 | }, 66 | { 67 | "repo": "mirage/mirage-block-volume", 68 | "tags": ["fromTROVE"] 69 | }, 70 | { 71 | "repo": "mirage/mirage-block-xen", 72 | "tags": ["fromTROVE"] 73 | }, 74 | { 75 | "repo": "mirage/mirage-bootvar-xen", 76 | "tags": ["fromTROVE"] 77 | }, 78 | { 79 | "repo": "mirage/mirage-channel", 80 | "tags": ["fromTROVE"] 81 | }, 82 | { 83 | "repo": "mirage/mirage-clock", 84 | "tags": ["fromTROVE"] 85 | }, 86 | { 87 | "repo": "mirage/mirage-console", 88 | "tags": ["fromTROVE"] 89 | }, 90 | { 91 | "repo": "mirage/mirage-decks", 92 | "tags": ["fromTROVE"] 93 | }, 94 | { 95 | "repo": "mirage/mirage-entropy", 96 | "tags": ["fromTROVE"] 97 | }, 98 | { 99 | "repo": "mirage/mirage-flow", 100 | "tags": ["fromTROVE"] 101 | }, 102 | { 103 | "repo": "mirage/mirage-fs-unix", 104 | "tags": ["fromTROVE"] 105 | }, 106 | { 107 | "repo": "mirage/mirage-http", 108 | "tags": ["fromTROVE"] 109 | }, 110 | { 111 | "repo": "mirage/mirage-net-macosx", 112 | "tags": ["fromTROVE"] 113 | }, 114 | { 115 | "repo": "mirage/mirage-net-unix", 116 | "tags": ["fromTROVE"] 117 | }, 118 | { 119 | "repo": "mirage/mirage-net-xen", 120 | "tags": ["fromTROVE"] 121 | }, 122 | { 123 | "repo": "mirage/mirage-platform", 124 | "tags": ["fromTROVE"] 125 | }, 126 | { 127 | "repo": "mirage/mirage-profile", 128 | "tags": ["fromTROVE"] 129 | }, 130 | { 131 | "repo": "mirage/mirage-seal", 132 | "tags": ["fromTROVE"] 133 | }, 134 | { 135 | "repo": "mirage/mirage-skeleton", 136 | "tags": ["fromTROVE"] 137 | }, 138 | { 139 | "repo": "mirage/mirage-tc", 140 | "tags": ["fromTROVE"] 141 | }, 142 | { 143 | "repo": "mirage/mirage-tcpip", 144 | "tags": ["fromTROVE"] 145 | }, 146 | { 147 | "repo": "mirage/mirage-vagrant-vms", 148 | "tags": ["fromTROVE"] 149 | }, 150 | { 151 | "repo": "MagnusS/mirage-vnetif", 152 | "tags": ["fromTROVE"] 153 | }, 154 | { 155 | "repo": "mirage/mirage-www", 156 | "tags": ["fromTROVE"] 157 | }, 158 | { 159 | "repo": "mirage/mirage-xen-minios", 160 | "tags": ["fromTROVE"] 161 | }, 162 | { 163 | "repo": "mirage/ocaml-cohttp", 164 | "tags": ["fromTROVE"] 165 | }, 166 | { 167 | "repo": "mirage/ocaml-conduit", 168 | "tags": ["fromTROVE"] 169 | }, 170 | { 171 | "repo": "mirage/ocaml-cow", 172 | "tags": ["fromTROVE"] 173 | }, 174 | { 175 | "repo": "mirage/ocaml-crunch", 176 | "tags": ["fromTROVE"] 177 | }, 178 | { 179 | "repo": "mirage/ocaml-cstruct", 180 | "tags": ["fromTROVE"] 181 | }, 182 | { 183 | "repo": "mirage/ocaml-dns", 184 | "tags": ["fromTROVE"] 185 | }, 186 | { 187 | "repo": "mirage/ocaml-fat", 188 | "tags": ["fromTROVE"] 189 | }, 190 | { 191 | "repo": "mirage/ocaml-git", 192 | "tags": ["fromTROVE"] 193 | }, 194 | { 195 | "repo": "mirage/ocaml-github", 196 | "tags": ["fromTROVE"] 197 | }, 198 | { 199 | "repo": "mirage/ocaml-hex", 200 | "tags": ["fromTROVE"] 201 | }, 202 | { 203 | "repo": "mirage/ocaml-ipaddr", 204 | "tags": ["fromTROVE"] 205 | }, 206 | { 207 | "repo": "mirage/ocaml-lazy-trie", 208 | "tags": ["fromTROVE"] 209 | }, 210 | { 211 | "repo": "mirage/ocaml-magic-mime", 212 | "tags": ["fromTROVE"] 213 | }, 214 | { 215 | "repo": "mirage/ocaml-mbr", 216 | "tags": ["fromTROVE"] 217 | }, 218 | { 219 | "repo": "mirage/ocaml-mstruct", 220 | "tags": ["fromTROVE"] 221 | }, 222 | { 223 | "repo": "mirage/ocaml-pcap", 224 | "tags": ["fromTROVE"] 225 | }, 226 | { 227 | "repo": "mirage/ocaml-tar", 228 | "tags": ["fromTROVE"] 229 | }, 230 | { 231 | "repo": "mirage/ocaml-tuntap", 232 | "tags": ["fromTROVE"] 233 | }, 234 | { 235 | "repo": "mirage/ocaml-uri", 236 | "tags": ["fromTROVE"] 237 | }, 238 | { 239 | "repo": "mirage/ocaml-vchan", 240 | "tags": ["fromTROVE"] 241 | }, 242 | { 243 | "repo": "mirage/ocaml-vmnet", 244 | "tags": ["fromTROVE"] 245 | }, 246 | { 247 | "repo": "mirage/ocaml-xenstore", 248 | "tags": ["fromTROVE"] 249 | }, 250 | { 251 | "repo": "mirage/shared-memory-ring", 252 | "tags": ["fromTROVE"] 253 | }, 254 | { 255 | "repo": "mirage/synjitsu", 256 | "tags": ["fromTROVE"] 257 | }, 258 | { 259 | "repo": "mirage/xen-disk", 260 | "tags": ["fromTROVE"] 261 | }, 262 | { 263 | "repo": "mirleft/ocaml-asn1-combinators", 264 | "tags": ["fromTROVE"] 265 | }, 266 | { 267 | "repo": "mirleft/ocaml-nocrypto", 268 | "tags": ["fromTROVE"] 269 | }, 270 | { 271 | "repo": "mirleft/ocaml-tls", 272 | "tags": ["fromTROVE"] 273 | }, 274 | { 275 | "repo": "mirleft/ocaml-x509", 276 | "tags": ["fromTROVE"] 277 | }, 278 | { 279 | "repo": "mor1/ocaml-tftp", 280 | "tags": ["fromTROVE"] 281 | }, 282 | { 283 | "repo": "ocamllabs/ocaml-ctypes", 284 | "tags": ["fromTROVE"] 285 | }, 286 | { 287 | "repo": "talex5/mirage-trace-viewer", 288 | "tags": ["fromTROVE"] 289 | }, 290 | { 291 | "repo": "yomimono/mirage-nat", 292 | "tags": ["fromTROVE"] 293 | } 294 | ] 295 | -------------------------------------------------------------------------------- /data/test/test.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "repo": "mirage/ocaml-ipaddr", 4 | "tags": [ 5 | "test-tag" 6 | ] 7 | }, 8 | { 9 | "repo": "mirage/mirage", 10 | "tags": [ 11 | "test-tag" 12 | ] 13 | }, 14 | { 15 | "repo": "rudenoise/mirage-dashboard", 16 | "tags": [ 17 | "test-tag" 18 | ] 19 | } 20 | ] 21 | 22 | -------------------------------------------------------------------------------- /src/branches.ml: -------------------------------------------------------------------------------- 1 | open Lwt 2 | 3 | (** 4 | * example branch values 5 | * name :str 6 | * commit : { sha: str, url: str} 7 | *) 8 | 9 | module G = Github 10 | 11 | let get_branches_for_repo (repo_with_token:Github_wrapper.repo_with_token) = 12 | let (token, user, repo) = repo_with_token in 13 | return (G.Repo.branches ~token ~user ~repo ()) 14 | 15 | let extract_branch_name branch_str = 16 | let branch_data = Yojson.Safe.from_string branch_str in 17 | let name = ( 18 | Yojson.Safe.Util.member 19 | "name" 20 | branch_data 21 | ) in ( 22 | `String (Github_wrapper.strip_quotes (Yojson.Safe.to_string name)) 23 | ) 24 | 25 | let get_branches (repo_with_token:Github_wrapper.repo_with_token) = 26 | get_branches_for_repo repo_with_token 27 | >>= fun stream -> 28 | Github_wrapper.stream_to_list stream 29 | >>= fun branches_list -> 30 | return ( 31 | `List ( 32 | List.map 33 | ( 34 | fun branch -> 35 | extract_branch_name 36 | (Github_j.string_of_repo_branch branch) 37 | ) 38 | branches_list 39 | ) 40 | ) 41 | -------------------------------------------------------------------------------- /src/branches.mli: -------------------------------------------------------------------------------- 1 | val get_branches : 2 | Github_wrapper.repo_with_token -> 3 | Yojson.json Lwt.t 4 | -------------------------------------------------------------------------------- /src/dashboard_data.ml: -------------------------------------------------------------------------------- 1 | open Core.Std 2 | 3 | (* 4 | * utop example 5 | * * #require "yojson";; 6 | *) 7 | 8 | let repo_list_from_json file_path = 9 | let repos_data = Yojson.Safe.from_file file_path in 10 | let repo_list = repos_data |> Yojson.Safe.Util.to_list in 11 | ( 12 | List.map 13 | ~f: (fun item -> ( 14 | ( 15 | let repo_path = ( 16 | Yojson.Safe.Util.member 17 | "repo" 18 | item 19 | ) in 20 | let repo_path_string_with_quote = Yojson.Safe.to_string repo_path in 21 | let repo_path_string = (Str.global_replace (Str.regexp "\"") "" repo_path_string_with_quote) in 22 | let parts = (String.split ~on:'/' repo_path_string) in 23 | match parts with 24 | | user :: repo :: tl -> (user, repo) 25 | | _ -> ("mirage", "mirage") 26 | ), 27 | ( 28 | ( 29 | Yojson.Safe.Util.member 30 | "tags" 31 | item 32 | ) |> 33 | Yojson.Safe.Util.to_list |> 34 | List.map ~f:( 35 | fun item -> 36 | `String (Yojson.Safe.Util.to_string item) 37 | ) 38 | ) 39 | ) 40 | ) 41 | repo_list 42 | ) 43 | 44 | let all_repos ~repos_json_path = 45 | repo_list_from_json repos_json_path 46 | |> (fun repo_list -> 47 | List.map 48 | ~f:( 49 | fun ((user, repo), tags) -> 50 | (user, repo, `List tags) 51 | ) 52 | repo_list 53 | ) 54 | -------------------------------------------------------------------------------- /src/dashboard_data.mli: -------------------------------------------------------------------------------- 1 | (* read the local json file describing repos of interest *) 2 | 3 | val all_repos : 4 | repos_json_path:string -> 5 | (Core.Std.String.t * Core.Std.String.t * Yojson.json) list 6 | -------------------------------------------------------------------------------- /src/events.ml: -------------------------------------------------------------------------------- 1 | open Lwt 2 | open Core.Std 3 | 4 | (* 5 | * example data 6 | * https://api.github.com/repos/mirage/mirage/events 7 | * 8 | *) 9 | 10 | let clean_str json_str = 11 | Github_wrapper.strip_quotes (Yojson.Safe.to_string json_str) 12 | 13 | 14 | let extract_type_and_user_name event_str = 15 | let event_data = Yojson.Safe.from_string event_str in 16 | let event_date = ( 17 | Yojson.Safe.Util.member 18 | "created_at" 19 | event_data 20 | ) in 21 | let event_type = ( 22 | Yojson.Safe.Util.member 23 | "type" 24 | event_data 25 | ) in 26 | let actor = (Yojson.Safe.Util.member "actor" event_data) in 27 | let user_name = (Yojson.Safe.Util.member "login" actor) in ( 28 | `Assoc [ 29 | ("type", `String (clean_str event_type)); 30 | ("user", `String (clean_str user_name)); 31 | ("date", `String (clean_str event_date)) 32 | ] 33 | ) 34 | 35 | let extract_user event_str = 36 | let event_data = Yojson.Safe.from_string event_str in 37 | let actor = (Yojson.Safe.Util.member "actor" event_data) in 38 | let user_name = (Yojson.Safe.Util.member "login" actor) in ( 39 | clean_str user_name 40 | ) 41 | 42 | 43 | let rec count_user user_list user_name = 44 | match user_list with 45 | | [] -> [(user_name, 1)] 46 | | (u_name, i) :: tl -> 47 | if u_name = user_name 48 | then 49 | (u_name, i + 1) :: tl 50 | else 51 | (u_name, i) :: count_user tl user_name 52 | 53 | let count_users all_users = 54 | List.fold 55 | ~init: [] 56 | ~f:( 57 | fun accum user -> 58 | count_user accum user 59 | ) 60 | all_users 61 | 62 | let user_counts_to_json user_list = 63 | `Assoc ( 64 | List.map 65 | ~f:( 66 | fun user_tuple -> 67 | let (name, count) = user_tuple in 68 | (name, `Int count) 69 | ) 70 | user_list 71 | ) 72 | 73 | let sort_desc events_per_user = 74 | List.sort 75 | ~cmp:( 76 | fun a b -> 77 | let (_, a_count) = a in 78 | let (_, b_count) = b in 79 | if a_count < b_count then 1 else 0 80 | ) 81 | events_per_user 82 | 83 | let remove_watchers events_per_user = 84 | List.filter 85 | ~f:( 86 | fun user_event_count -> 87 | let (_, count) = user_event_count in 88 | count > 1 89 | ) 90 | events_per_user 91 | 92 | let get_events_per_user (repo_with_token:Github_wrapper.repo_with_token) = 93 | let (token, user, repo) = repo_with_token in 94 | Github.Event.for_repo ~token ~user ~repo () 95 | |> fun stream -> 96 | Github_wrapper.stream_to_list stream 97 | >>= fun events_list -> 98 | return ( 99 | List.map 100 | ~f:( 101 | fun event -> 102 | extract_user (Github_j.string_of_event event) 103 | ) 104 | events_list 105 | |> count_users 106 | |> remove_watchers 107 | |> sort_desc 108 | |> user_counts_to_json 109 | ) 110 | -------------------------------------------------------------------------------- /src/events.mli: -------------------------------------------------------------------------------- 1 | val get_events_per_user : 2 | Github_wrapper.repo_with_token -> 3 | Yojson.json Lwt.t 4 | -------------------------------------------------------------------------------- /src/github_wrapper.ml: -------------------------------------------------------------------------------- 1 | open Lwt 2 | open Github_t 3 | 4 | module G = Github 5 | module M = Github.Monad 6 | 7 | exception Auth_token_not_found of string 8 | 9 | type cookie_name = string 10 | type user = string 11 | type repo = string 12 | type repo_with_cookie_name = (cookie_name * user * repo) 13 | type repo_with_token = (G.Token.t * user * repo) 14 | 15 | let get_auth_token_from_jar auth_id = 16 | Github_cookie_jar.init () 17 | >>= fun jar -> 18 | Github_cookie_jar.get jar auth_id 19 | >>= function 20 | | Some(x) -> return x 21 | | None -> Lwt.fail (Auth_token_not_found "given id not in cookie jar") 22 | 23 | let login ~cookie_name = 24 | match cookie_name with 25 | | "" -> Lwt.fail (Auth_token_not_found "must specify jar token id/cookie_name") 26 | | _ -> get_auth_token_from_jar cookie_name 27 | 28 | let get_token ~cookie_name = 29 | login ~cookie_name 30 | >>= fun code -> 31 | return (G.Token.of_auth code) 32 | 33 | let stream_to_list stream = 34 | G.( 35 | M.( 36 | run ( 37 | Stream.to_list stream 38 | ) 39 | ) 40 | ) 41 | 42 | let strip_quotes str = 43 | Str.global_replace (Str.regexp "\"") "" str 44 | -------------------------------------------------------------------------------- /src/github_wrapper.mli: -------------------------------------------------------------------------------- 1 | (* use a cookie from git jar and retrieve release info from github api *) 2 | 3 | type cookie_name = string 4 | type user = string 5 | type repo = string 6 | type repo_with_cookie_name = (cookie_name * user * repo) 7 | type repo_with_token = (Github.Token.t * user * repo) 8 | 9 | val get_token : 10 | cookie_name:string -> 11 | Github.Token.t Lwt.t 12 | 13 | val stream_to_list : 14 | 'a Github.Stream.t -> 15 | 'a list Lwt.t 16 | 17 | val strip_quotes : 18 | string -> 19 | string 20 | -------------------------------------------------------------------------------- /src/mirage_dashboard.ml: -------------------------------------------------------------------------------- 1 | open Core.Std 2 | open Lwt 3 | 4 | let get_item_at_index json_list index = 5 | match List.nth json_list index with 6 | | Some item -> item 7 | | None -> `String "not found" 8 | 9 | let spec = 10 | let open Command.Spec in 11 | empty 12 | +> flag "-c" (required string) ~doc:"cookie github auth cookie, from git-jar" 13 | +> flag "-r" (required string) ~doc:"path to json file describing repositories" 14 | +> flag "-o" (required string) ~doc:"path to write json file output" 15 | 16 | let command = 17 | Command.basic 18 | ~summary: "A dashboard displaying useful data from the Mirage OS project and its related repositories." 19 | ~readme: (fun () -> "More detailed info") 20 | spec 21 | (fun cookie_name repos_json_path write_to_path () -> 22 | Lwt_main.run ( 23 | ( 24 | Github_wrapper.get_token cookie_name 25 | >>= fun token -> 26 | Lwt_list.map_s 27 | ( 28 | fun (user, repo, tags) -> 29 | ( 30 | let repo_with_token = (token, user, repo) in 31 | Lwt_list.map_p 32 | ( 33 | fun closure -> 34 | closure 35 | ) 36 | [ 37 | (Stats.Releases.get_current_release_or_tag repo_with_token); 38 | (Stats.Branches.get_branches repo_with_token); 39 | (Stats.Events.get_events_per_user repo_with_token); 40 | (Stats.Repo_info.get_info repo_with_token) 41 | ] 42 | ) >>= 43 | fun json_list -> 44 | let current_release_or_tag = get_item_at_index json_list 0 in 45 | let branches = get_item_at_index json_list 1 in 46 | let events = get_item_at_index json_list 2 in 47 | let info = get_item_at_index json_list 3 in 48 | return ( 49 | `Assoc [ 50 | ("repo", `String repo); 51 | ("user", `String user); 52 | ("current_release_or_tag", current_release_or_tag); 53 | ("branches", branches); 54 | ("events", events); 55 | ("tags", tags); 56 | ("info", info) 57 | ] 58 | ) 59 | 60 | ) 61 | (Dashboard_data.all_repos ~repos_json_path) 62 | ) >>= 63 | fun r_list -> 64 | Yojson.to_file 65 | write_to_path 66 | ( 67 | `Assoc [ 68 | ("created_at", `Int (int_of_float (Unix.time()))); 69 | ("repos", `List r_list) 70 | ] 71 | ) 72 | |> fun () -> 73 | Lwt_io.printf "%s\n" "DONE!" 74 | ) 75 | ) 76 | 77 | let () = 78 | Command.run ~version:"0.1" ~build_info:"https://github.com/rudenoise/mirage-dashboard" command 79 | -------------------------------------------------------------------------------- /src/releases.ml: -------------------------------------------------------------------------------- 1 | open Lwt 2 | 3 | (** 4 | * example github release values 5 | * "id": 3009723, 6 | * "tag_name": "", 7 | * "target_commitish": "", 8 | * "name": "", 9 | * "body": "", 10 | * "draft": false, 11 | * "prerelease": false, 12 | * "created_at": "2016-04-13T10:39:07Z", 13 | * "published_at": "2016-04-13T10:41:24Z", 14 | * "url": "https://api.github.com/...", 15 | * "html_url": "https://github.com/...", 16 | * "assets_url": "https://api.github.com/...", 17 | * "upload_url": "https://uploads.github.com/..." 18 | *) 19 | 20 | module G = Github 21 | 22 | let release_to_json detail = 23 | let (name, published_at, total, release_type) = detail in 24 | `Assoc [ 25 | ("name", `String (name)); 26 | ("published_at", `String published_at); 27 | ("of_total", `Int total); 28 | ("type", `String release_type) 29 | ] 30 | 31 | (* RELEASES:*) 32 | 33 | let get_releases_for_repo (repo_with_token:Github_wrapper.repo_with_token) = 34 | let (token, user, repo) = repo_with_token in 35 | return (G.Release.for_repo ~token ~user ~repo ()) 36 | 37 | let release_values release total = 38 | let release_str = Github_j.string_of_release release in 39 | let release_data = Yojson.Safe.from_string release_str in 40 | let name = ( 41 | Yojson.Safe.Util.member 42 | "tag_name" 43 | release_data 44 | ) in 45 | let published = ( 46 | Yojson.Safe.Util.member 47 | "published_at" 48 | release_data 49 | ) in 50 | ( 51 | (Github_wrapper.strip_quotes (Yojson.Safe.to_string name)), 52 | (Github_wrapper.strip_quotes (Yojson.Safe.to_string published)), 53 | total, 54 | "release" 55 | ) 56 | 57 | let latest_relese releases total = 58 | release_values (List.hd releases) total 59 | 60 | let get_latest_release (repo_with_token:Github_wrapper.repo_with_token) = 61 | get_releases_for_repo repo_with_token 62 | >>= fun releases -> 63 | Github_wrapper.stream_to_list releases 64 | >>= fun releases_list -> 65 | let total = List.length releases_list in 66 | if total > 0 67 | then return (latest_relese releases_list total) 68 | else return ("No releases, yet...", "", 0, "release") 69 | 70 | (* TAGS: *) 71 | 72 | let get_tags_for_repo (repo_with_token:Github_wrapper.repo_with_token) = 73 | let (token, user, repo) = repo_with_token in 74 | return (G.Repo.get_tags_and_times ~token ~user ~repo ()) 75 | 76 | let sort_tags tags = 77 | List.sort 78 | ( 79 | fun a b -> 80 | let (_, created_a) = a in 81 | let (_, created_b) = b in 82 | if created_a < created_b then 1 else 0 83 | ) 84 | tags 85 | 86 | let latest_tag tags = 87 | let total = List.length tags in 88 | if total > 0 89 | then 90 | let sorted_tags = sort_tags tags in 91 | let (tag_name, created_at) = (List.hd sorted_tags) in 92 | ( 93 | tag_name, 94 | created_at, 95 | total, 96 | "tag" 97 | ) 98 | else ("No tag or release, yet...", "", 0, "releases or tags") 99 | 100 | let get_latest_tag (repo_with_token:Github_wrapper.repo_with_token) = 101 | get_tags_for_repo repo_with_token 102 | >>= fun tags -> 103 | Github_wrapper.stream_to_list tags 104 | >>= fun tags_list -> 105 | return (latest_tag tags_list) 106 | 107 | (* combine the two, returning release if there is one, then tag, or none/default *) 108 | 109 | let get_current_release_or_tag (repo_with_token:Github_wrapper.repo_with_token) = 110 | Lwt_list.map_p 111 | ( 112 | fun closure -> 113 | closure 114 | ) 115 | [ 116 | (get_latest_release repo_with_token); 117 | (get_latest_tag repo_with_token) 118 | ] 119 | >>= fun rel_list -> 120 | let release = List.nth rel_list 0 in 121 | let tag = List.nth rel_list 1 in 122 | let (_, release_date, _, _) = release in 123 | let (_, tag_date, _, _) = tag in 124 | if release_date > tag_date 125 | then return (release_to_json release) 126 | else return (release_to_json tag) 127 | -------------------------------------------------------------------------------- /src/releases.mli: -------------------------------------------------------------------------------- 1 | val get_current_release_or_tag : 2 | Github_wrapper.repo_with_token -> 3 | Yojson.json Lwt.t 4 | 5 | -------------------------------------------------------------------------------- /src/repo_info.ml: -------------------------------------------------------------------------------- 1 | open Lwt 2 | 3 | let get_info (repo_with_token:Github_wrapper.repo_with_token) = 4 | let open Github.Monad in 5 | let (token, user, repo) = repo_with_token in 6 | run ( 7 | Github.Repo.info ~token ~user ~repo () 8 | >>~ fun info -> 9 | let descr = match info.Github_t.repository_description with 10 | | Some descr -> descr 11 | | None -> "" 12 | in return (`String descr) 13 | ) 14 | -------------------------------------------------------------------------------- /src/repo_info.mli: -------------------------------------------------------------------------------- 1 | val get_info : 2 | Github_wrapper.repo_with_token -> 3 | Yojson.json Lwt.t 4 | -------------------------------------------------------------------------------- /src/stats.ml: -------------------------------------------------------------------------------- 1 | module Branches = Branches 2 | module Events = Events 3 | module Releases = Releases 4 | module Repo_info = Repo_info 5 | 6 | let test name = 7 | "hello " ^ name 8 | -------------------------------------------------------------------------------- /src/stats.mli: -------------------------------------------------------------------------------- 1 | module Branches : (module type of Branches) 2 | module Events : (module type of Events) 3 | module Releases : (module type of Releases) 4 | module Repo_info : (module type of Repo_info) 5 | 6 | val test : 7 | string -> 8 | string 9 | --------------------------------------------------------------------------------