Skip to content

Commit

Permalink
release datakit 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
samoht committed Jun 7, 2017
1 parent 79046b8 commit f651222
Show file tree
Hide file tree
Showing 60 changed files with 770 additions and 0 deletions.
@@ -0,0 +1,8 @@
A bi-directional bridge between the GitHub API and Datakit

The package provides a bi-directional bridge between the GitHub API
and Datakit, so you can talk to the GitHub API using filesystem and
Git-like commands only. The `datakit-github` programs can start a
webhook server to listen for GitHub events in real time, and project
it into a Git repository. It also monitors that Git repository for
user-provided changes, and translate them into GitHub API calls.
@@ -0,0 +1,34 @@
opam-version: "1.2"
maintainer: "thomas@gazagnaire.org"
authors: ["Thomas Leonard" "Magnus Skjegstad"
"David Scott" "Thomas Gazagnaire"]
license: "Apache"
homepage: "https://github.com/moby/datakit"
bug-reports: "https://github.com/moby/datakit/issues"
dev-repo: "https://github.com/moby/datakit.git"
doc: "https://docker.github.io/datakit/"

build: ["jbuilder" "build" "-p" name "-j" jobs]
build-test: ["jbuilder" "runtest" "tests/%{name}%"]

depends: [
"jbuilder" {build}
"cmdliner"
"lwt" {>= "3.0.0"}
"datakit-github" {>= "0.11.0"}
"datakit-client-9p" {>= "0.11.0"}
"datakit-client-git"
"logs" "fmt"
"mtime" {>= "1.0.0"}
"asl" "win-eventlog"
"uri" {>= "1.8.0"}
"hvsock" {>= "0.8.1"}
"hex" "nocrypto" "conduit"
"prometheus-app"
"protocol-9p-unix" {>= "0.11.0"}
"datakit-client" {>= "0.10.0"}
"github-hooks" {>= "0.1.1"}
"github" {>= "2.1.0"}
"alcotest" {test}
"datakit" {test & >= "0.11.0"}
]
@@ -0,0 +1,2 @@
archive: "https://github.com/moby/datakit/releases/download/0.11.0-2-g1c112f9/datakit-0.11.0-2-g1c112f9.tbz"
checksum: "1b07a7f0a40fdc87fe6ce4de63c503ed"
@@ -0,0 +1,8 @@
A bi-directional bridge between the GitHub API and Datakit

The package provides a bi-directional bridge between the GitHub API
and Datakit, so you can talk to the GitHub API using filesystem and
Git-like commands only. The `datakit-github` programs can start a
webhook server to listen for GitHub events in real time, and project
it into a Git repository. It also monitors that Git repository for
user-provided changes, and translate them into GitHub API calls.
34 changes: 34 additions & 0 deletions packages/datakit-bridge-github/datakit-bridge-github.0.11.0/opam
@@ -0,0 +1,34 @@
opam-version: "1.2"
maintainer: "thomas@gazagnaire.org"
authors: ["Thomas Leonard" "Magnus Skjegstad"
"David Scott" "Thomas Gazagnaire"]
license: "Apache"
homepage: "https://github.com/moby/datakit"
bug-reports: "https://github.com/moby/datakit/issues"
dev-repo: "https://github.com/moby/datakit.git"
doc: "https://docker.github.io/datakit/"

build: ["jbuilder" "build" "-p" name "-j" jobs]
build-test: ["jbuilder" "runtest" "tests/%{name}%"]

depends: [
"jbuilder" {build}
"cmdliner"
"lwt" {>= "3.0.0"}
"datakit-github" {>= "0.11.0"}
"datakit-client-9p" {>= "0.11.0"}
"datakit-client-git"
"logs" "fmt"
"mtime" {>= "1.0.0"}
"asl" "win-eventlog"
"uri" {>= "1.8.0"}
"hvsock" {>= "0.8.1"}
"hex" "nocrypto" "conduit"
"prometheus-app"
"protocol-9p-unix" {>= "0.11.0"}
"datakit-client" {>= "0.10.0"}
"github-hooks" {>= "0.1.1"}
"github" {>= "2.1.0"}
"alcotest" {test}
"datakit" {test & >= "0.11.0"}
]
@@ -0,0 +1,2 @@
archive: "https://github.com/moby/datakit/releases/download/0.11.0/datakit-0.11.0.tbz"
checksum: "b1b7bb4d727d5c7e61f34045be96f178"
@@ -0,0 +1,21 @@
DataKit Local-Git bridge

This service is a drop-in replacement for the DataKit-GitHub bridge
that instead just monitors a local Git repository. It is useful for
testing a new DataKitCI configuration without having to configure
GitHub integration first.

The local bridge monitors the state of one or more local Git
repositories, writing the current head of each branch to
DataKit. DataKitCI can be configured to run the CI tests against the
project each time a commit is made.

Once you are happy with the way the CI is working, you can replace
this service with the GitHub bridge service to have the CI test a
project hosted on GitHub instead.

Unlike the GitHub bridge, this service:

- only reports on branches, not tags or pull requests;
- does not report build statuses from other CI systems; and
- does not push the statuses set by the CI anywhere.
@@ -0,0 +1,23 @@
opam-version: "1.2"
maintainer: "thomas.leonard@docker.com"
authors: ["Thomas Leonard"]
license: "Apache"
homepage: "https://github.com/moby/datakit"
bug-reports: "https://github.com/moby/datakit/issues"
dev-repo: "https://github.com/moby/datakit.git"
doc: "https://docker.github.io/datakit/"

build: ["jbuilder" "build" "-p" name "-j" jobs]

depends: [
"jbuilder" {build}
"cmdliner"
"irmin-watcher"
"irmin" {>= "1.2.0"}
"irmin-unix" {>= "1.2.0"}
"lwt" {>= "3.0.0"}
"logs" "fmt"
"protocol-9p-unix" {>= "0.11.0"}
"datakit-client" {>= "0.11.0"}
"datakit-github" {>= "0.11.0"}
]
@@ -0,0 +1,2 @@
archive: "https://github.com/moby/datakit/releases/download/0.11.0-2-g1c112f9/datakit-0.11.0-2-g1c112f9.tbz"
checksum: "1b07a7f0a40fdc87fe6ce4de63c503ed"
@@ -0,0 +1,21 @@
DataKit Local-Git bridge

This service is a drop-in replacement for the DataKit-GitHub bridge
that instead just monitors a local Git repository. It is useful for
testing a new DataKitCI configuration without having to configure
GitHub integration first.

The local bridge monitors the state of one or more local Git
repositories, writing the current head of each branch to
DataKit. DataKitCI can be configured to run the CI tests against the
project each time a commit is made.

Once you are happy with the way the CI is working, you can replace
this service with the GitHub bridge service to have the CI test a
project hosted on GitHub instead.

Unlike the GitHub bridge, this service:

- only reports on branches, not tags or pull requests;
- does not report build statuses from other CI systems; and
- does not push the statuses set by the CI anywhere.
@@ -0,0 +1,23 @@
opam-version: "1.2"
maintainer: "thomas.leonard@docker.com"
authors: ["Thomas Leonard"]
license: "Apache"
homepage: "https://github.com/moby/datakit"
bug-reports: "https://github.com/moby/datakit/issues"
dev-repo: "https://github.com/moby/datakit.git"
doc: "https://docker.github.io/datakit/"

build: ["jbuilder" "build" "-p" name "-j" jobs]

depends: [
"jbuilder" {build}
"cmdliner"
"irmin-watcher"
"irmin" {>= "1.2.0"}
"irmin-unix" {>= "1.2.0"}
"lwt" {>= "3.0.0"}
"logs" "fmt"
"protocol-9p-unix" {>= "0.11.0"}
"datakit-client" {>= "0.11.0"}
"datakit-github" {>= "0.11.0"}
]
@@ -0,0 +1,2 @@
archive: "https://github.com/moby/datakit/releases/download/0.11.0/datakit-0.11.0.tbz"
checksum: "b1b7bb4d727d5c7e61f34045be96f178"
7 changes: 7 additions & 0 deletions packages/datakit-ci/datakit-ci.0.11.0-2-g1c112f9/descr
@@ -0,0 +1,7 @@
Continuous Integration service using DataKit

DataKitCI is a continuous integration service that monitors your
GitHub project and tests each branch, tag and pull request. It
displays the test results as status indicators in the GitHub UI. It
keeps all of its state and logs in DataKit, rather than a traditional
relational database, allowing review with the usual Git tools.
42 changes: 42 additions & 0 deletions packages/datakit-ci/datakit-ci.0.11.0-2-g1c112f9/opam
@@ -0,0 +1,42 @@
opam-version: "1.2"
maintainer: "datakit@docker.com"
authors: ["Thomas© Leonard" "Anil Madhavapeddy"
"Dave Tucker" "Thomas Gazagnaire" ]
license: "Apache"
homepage: "https://github.com/moby/datakit"
bug-reports: "https://github.com/moby/datakit/issues"
dev-repo: "https://github.com/moby/datakit.git"
doc: "https://docker.github.io/datakit/"

build: ["jbuilder" "build" "-p" name "-j" jobs]
build-test: ["jbuilder" "runtest" "ci/tests"]

depends: [
"jbuilder" {build}
"multipart-form-data"
"datakit-client" {>= "0.11.0"}
"datakit-github" {>= "0.11.0"}
"protocol-9p-unix" {>= "0.11.0"}
"astring"
"cmdliner"
"fmt"
"logs"
"tyxml" {>= "4.0.0"}
"tls"
"conduit"
"io-page"
"pbkdf"
"webmachine" {>= "0.4.0"}
"session" {>= "0.3.0"}
"redis-lwt"
"asetmap"
"github" {>= "2.2.0"}
"prometheus-app"
"lwt" {>= "3.0.0"}
"ppx_sexp_conv" {build}
"crunch" {build}
"datakit" {test & >= "0.11.0"}
"irmin-unix" {test & >= "1.2.0"}
"alcotest" {test}
]
available: [ocaml-version >= "4.03.0"]
2 changes: 2 additions & 0 deletions packages/datakit-ci/datakit-ci.0.11.0-2-g1c112f9/url
@@ -0,0 +1,2 @@
archive: "https://github.com/moby/datakit/releases/download/0.11.0-2-g1c112f9/datakit-0.11.0-2-g1c112f9.tbz"
checksum: "1b07a7f0a40fdc87fe6ce4de63c503ed"
7 changes: 7 additions & 0 deletions packages/datakit-ci/datakit-ci.0.11.0/descr
@@ -0,0 +1,7 @@
Continuous Integration service using DataKit

DataKitCI is a continuous integration service that monitors your
GitHub project and tests each branch, tag and pull request. It
displays the test results as status indicators in the GitHub UI. It
keeps all of its state and logs in DataKit, rather than a traditional
relational database, allowing review with the usual Git tools.
42 changes: 42 additions & 0 deletions packages/datakit-ci/datakit-ci.0.11.0/opam
@@ -0,0 +1,42 @@
opam-version: "1.2"
maintainer: "datakit@docker.com"
authors: ["Thomas© Leonard" "Anil Madhavapeddy"
"Dave Tucker" "Thomas Gazagnaire" ]
license: "Apache"
homepage: "https://github.com/moby/datakit"
bug-reports: "https://github.com/moby/datakit/issues"
dev-repo: "https://github.com/moby/datakit.git"
doc: "https://docker.github.io/datakit/"

build: ["jbuilder" "build" "-p" name "-j" jobs]
build-test: ["jbuilder" "runtest" "ci/tests"]

depends: [
"jbuilder" {build}
"multipart-form-data"
"datakit-client" {>= "0.11.0"}
"datakit-github" {>= "0.11.0"}
"protocol-9p-unix" {>= "0.11.0"}
"astring"
"cmdliner"
"fmt"
"logs"
"tyxml" {>= "4.0.0"}
"tls"
"conduit"
"io-page"
"pbkdf"
"webmachine" {>= "0.4.0"}
"session" {>= "0.3.0"}
"redis-lwt"
"asetmap"
"github" {>= "2.2.0"}
"prometheus-app"
"lwt" {>= "3.0.0"}
"ppx_sexp_conv" {build}
"crunch" {build}
"datakit" {test & >= "0.11.0"}
"irmin-unix" {test & >= "1.2.0"}
"alcotest" {test}
]
available: [ocaml-version >= "4.03.0"]
2 changes: 2 additions & 0 deletions packages/datakit-ci/datakit-ci.0.11.0/url
@@ -0,0 +1,2 @@
archive: "https://github.com/moby/datakit/releases/download/0.11.0/datakit-0.11.0.tbz"
checksum: "b1b7bb4d727d5c7e61f34045be96f178"
@@ -0,0 +1,12 @@
Orchestrate applications using a Git-like dataflow

*DataKit* is a tool to orchestrate applications using a Git-like dataflow. It
revisits the UNIX pipeline concept, with a modern twist: streams of
tree-structured data instead of raw text. DataKit allows you to define
complex build pipelines over version-controlled data.

DataKit is currently used as the coordination
layer for [HyperKit](http://github.com/docker/hyperkit), the
hypervisor component of
[Docker for Mac and Windows](https://blog.docker.com/2016/03/docker-for-mac-windows-beta/), and
for the [DataKitCI][] continuous integration system.
@@ -0,0 +1,22 @@
opam-version: "1.2"
maintainer: "thomas@gazagnaire.org"
authors: ["Thomas Leonard" "Magnus Skjegstad"
"David Scott" "Thomas Gazagnaire"]
license: "Apache"
homepage: "https://github.com/moby/datakit"
bug-reports: "https://github.com/moby/datakit/issues"
dev-repo: "https://github.com/moby/datakit.git"
doc: "https://docker.github.io/datakit/"

build: ["jbuilder" "build" "-p" name "-j" jobs]

depends: [
"jbuilder" {build}
"astring"
"logs"
"fmt"
"cstruct" {> "2.2.0"}
"datakit-client" {>= "0.11.0"}
"protocol-9p-unix" {>= "0.11.0"}
"cmdliner"
]
@@ -0,0 +1,2 @@
archive: "https://github.com/moby/datakit/releases/download/0.11.0-2-g1c112f9/datakit-0.11.0-2-g1c112f9.tbz"
checksum: "1b07a7f0a40fdc87fe6ce4de63c503ed"
12 changes: 12 additions & 0 deletions packages/datakit-client-9p/datakit-client-9p.0.11.0/descr
@@ -0,0 +1,12 @@
Orchestrate applications using a Git-like dataflow

*DataKit* is a tool to orchestrate applications using a Git-like dataflow. It
revisits the UNIX pipeline concept, with a modern twist: streams of
tree-structured data instead of raw text. DataKit allows you to define
complex build pipelines over version-controlled data.

DataKit is currently used as the coordination
layer for [HyperKit](http://github.com/docker/hyperkit), the
hypervisor component of
[Docker for Mac and Windows](https://blog.docker.com/2016/03/docker-for-mac-windows-beta/), and
for the [DataKitCI][] continuous integration system.
22 changes: 22 additions & 0 deletions packages/datakit-client-9p/datakit-client-9p.0.11.0/opam
@@ -0,0 +1,22 @@
opam-version: "1.2"
maintainer: "thomas@gazagnaire.org"
authors: ["Thomas Leonard" "Magnus Skjegstad"
"David Scott" "Thomas Gazagnaire"]
license: "Apache"
homepage: "https://github.com/moby/datakit"
bug-reports: "https://github.com/moby/datakit/issues"
dev-repo: "https://github.com/moby/datakit.git"
doc: "https://docker.github.io/datakit/"

build: ["jbuilder" "build" "-p" name "-j" jobs]

depends: [
"jbuilder" {build}
"astring"
"logs"
"fmt"
"cstruct" {> "2.2.0"}
"datakit-client" {>= "0.11.0"}
"protocol-9p-unix" {>= "0.11.0"}
"cmdliner"
]
2 changes: 2 additions & 0 deletions packages/datakit-client-9p/datakit-client-9p.0.11.0/url
@@ -0,0 +1,2 @@
archive: "https://github.com/moby/datakit/releases/download/0.11.0/datakit-0.11.0.tbz"
checksum: "b1b7bb4d727d5c7e61f34045be96f178"

0 comments on commit f651222

Please sign in to comment.