-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #87 from avsm/master
0.17.0
- Loading branch information
Showing
15 changed files
with
94 additions
and
397 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,22 @@ | ||
language: c | ||
install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-opam.sh | ||
script: bash -ex .travis-opam.sh | ||
sudo: false | ||
services: | ||
- docker | ||
install: wget https://raw.githubusercontent.com/ocaml/ocaml-travisci-skeleton/master/.travis-docker.sh | ||
script: bash ./.travis-docker.sh | ||
env: | ||
- PACKAGE="dns" OCAML_VERSION=4.02 REVDEPS=true | ||
- PACKAGE="dns" OCAML_VERSION=4.01 POST_INSTALL_HOOK="./.travis-ci-post.sh" | ||
- PACKAGE="dns" OCAML_VERSION=4.02 DEPOPTS="tcpip" POST_INSTALL_HOOK="./.travis-ci-post.sh" | ||
- PACKAGE="dns" OCAML_VERSION=4.02 DEPOPTS="async" | ||
- PACKAGE="dns" OCAML_VERSION=4.01 DEPOPTS="tcpip lwt" REVDEPS=true | ||
global: | ||
- PACKAGE="dns" | ||
- DEPOPTS="tcpip lwt async" | ||
- REVDEPS="true" | ||
matrix: | ||
- DISTRO=debian-stable OCAML_VERSION=4.02.3 | ||
- DISTRO=debian-testing OCAML_VERSION=4.02.3 | ||
- DISTRO=debian-unstable OCAML_VERSION=4.02.3 | ||
- DISTRO=ubuntu-12.04 OCAML_VERSION=4.02.3 | ||
- DISTRO=ubuntu-15.10 OCAML_VERSION=4.02.3 | ||
- DISTRO=ubuntu-16.04 OCAML_VERSION=4.02.3 | ||
- DISTRO=centos-6 OCAML_VERSION=4.02.3 | ||
- DISTRO=centos-7 OCAML_VERSION=4.02.3 | ||
- DISTRO=fedora-23 OCAML_VERSION=4.02.3 | ||
- DISTRO=alpine-3.3 OCAML_VERSION=4.02.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Copyright (c) 2015 Luke Dunstan <[email protected]> | ||
Copyright (c) 2015 Heidi Howard <[email protected]> | ||
Copyright (c) 2013-2015 David Sheets <[email protected]> | ||
Copyright (c) 2014 marklrh <[email protected]> | ||
Copyright (c) 2005-2014 Anil Madhavapeddy <[email protected]> | ||
Copyright (c) 2011-2012 Richard Mortier <[email protected]> | ||
Copyright (c) 2011-2014 Anil Madhavapeddy <[email protected]> | ||
Copyright (c) 2005-2006 Tim Deegan <[email protected]> | ||
Copyright (c) 2005 Fraser Research Inc. <[email protected]> | ||
|
||
Permission to use, copy, modify, and/or distribute this software for any | ||
purpose with or without fee is hereby granted, provided that the above | ||
copyright notice and this permission notice appear in all copies. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES | ||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF | ||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR | ||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES | ||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN | ||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF | ||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
OASISFormat: 0.4 | ||
Name: dns | ||
Version: 0.16.0 | ||
Authors: Anil Madhavapeddy, Tim Deegan, Richard Mortier, Haris Rotsos, David Sheets, Thomas Gazagnaire, Luke Dunstan | ||
Version: 0.17.0 | ||
Authors: Anil Madhavapeddy, Tim Deegan, Richard Mortier, Haris Rotsos, David Sheets, Thomas Gazagnaire, Luke Dunstan, David Scott | ||
Maintainers: Anil Madhavapeddy <[email protected]> | ||
License: ISC | ||
Synopsis: DNS client and server implementation | ||
|
@@ -33,11 +33,12 @@ Library dns | |
Findlibname: dns | ||
Pack: true | ||
Modules: | ||
Hashcons, Loader, Name, Operators, Packet, Query, RR, Trie, | ||
Loader, Name, Operators, Packet, Query, RR, Trie, | ||
Zone, Zone_lexer, Zone_parser, Resolvconf, Buf, Protocol, Dig, | ||
Probe | ||
BuildDepends: cstruct (>= 1.0.1), re, re.str, ipaddr (>= 2.6.0), | ||
base64 (>= 2.0.0), bytes, uri.services (>= 1.7.0) | ||
base64 (>= 2.0.0), bytes, uri.services (>= 1.7.0), | ||
hashcons | ||
|
||
Library "dns-lwt" | ||
Path: lwt | ||
|
@@ -92,7 +93,7 @@ Document dns | |
BuildTools+: ocamldoc | ||
XOCamlbuildPath: lib | ||
XOCamlbuildModules: | ||
Hashcons, Loader, Name, Operators, Packet, Query, RR, Trie, | ||
Loader, Name, Operators, Packet, Query, RR, Trie, | ||
Zone, Zone_lexer, Zone_parser, Resolvconf, Buf, Protocol, Probe | ||
|
||
Document dns_lwt | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.