[Pkg-ocaml-maint-commits] [otags] branch master updated (5a4d6bf -> 0730768)

2016-01-05 Thread Mehdi Dogguy
This is an automated email from the git hooks/post-receive script.

mehdi pushed a change to branch master
in repository otags.

  from  5a4d6bf   Release to unstable
   new  9fcffef   Add patch to port to OCaml 4.02.3, patch from Hendrik 
Tews (Closes: #802166).
   new  0730768   Release to unstable

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog   |   7 +
 debian/patches/0001-Port-to-OCaml-4.02.3.patch | 224 +
 .../0001-Set-required-version-to-4.02.patch|  22 --
 debian/patches/series  |   2 +-
 4 files changed, 232 insertions(+), 23 deletions(-)
 create mode 100644 debian/patches/0001-Port-to-OCaml-4.02.3.patch
 delete mode 100644 debian/patches/0001-Set-required-version-to-4.02.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/otags.git

___
Pkg-ocaml-maint-commits mailing list
Pkg-ocaml-maint-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ocaml-maint-commits


[Pkg-ocaml-maint-commits] [otags] 01/02: Add patch to port to OCaml 4.02.3, patch from Hendrik Tews (Closes: #802166).

2016-01-05 Thread Mehdi Dogguy
This is an automated email from the git hooks/post-receive script.

mehdi pushed a commit to branch master
in repository otags.

commit 9fcffef4744be772225e37569386256b57a5dca1
Author: Mehdi Dogguy 
Date:   Tue Jan 5 23:29:45 2016 +0100

Add patch to port to OCaml 4.02.3, patch from Hendrik Tews (Closes: 
#802166).
---
 debian/changelog   |   7 +
 debian/patches/0001-Port-to-OCaml-4.02.3.patch | 224 +
 .../0001-Set-required-version-to-4.02.patch|  22 --
 debian/patches/series  |   2 +-
 4 files changed, 232 insertions(+), 23 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index e5c64a6..7fe3d8c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+otags (4.01.1-3) UNRELEASED; urgency=medium
+
+  * Add patch to port to OCaml 4.02.3, patch from Hendrik Tews
+(Closes: #802166).
+
+ -- Mehdi Dogguy   Tue, 05 Jan 2016 23:27:59 +0100
+
 otags (4.01.1-2) unstable; urgency=medium
 
   * Set OCaml 4.02 as required version
diff --git a/debian/patches/0001-Port-to-OCaml-4.02.3.patch 
b/debian/patches/0001-Port-to-OCaml-4.02.3.patch
new file mode 100644
index 000..e2c3d05
--- /dev/null
+++ b/debian/patches/0001-Port-to-OCaml-4.02.3.patch
@@ -0,0 +1,224 @@
+From: Mehdi Dogguy 
+Date: Tue, 5 Jan 2016 23:24:22 +0100
+Subject: Port to OCaml 4.02.3
+
+Patch from upstream
+---
+ ChangeLog |  5 
+ configure |  2 +-
+ tags.ml   | 84 ---
+ 3 files changed, 86 insertions(+), 5 deletions(-)
+
+diff --git a/ChangeLog b/ChangeLog
+index 50e1c68..21bf6ca 100644
+--- a/ChangeLog
 b/ChangeLog
+@@ -1,3 +1,8 @@
++2016-01-05  Hendrik Tews  
++
++  * adapt to ocaml 4.02: module aliases, attributes,
++  exception patterns, extensible variants
++
+ 2013-09-25  Hendrik Tews 
+ 
+   * prepare doc/changes.html for release
+diff --git a/configure b/configure
+index d0e1bd3..e9e0c60 100755
+--- a/configure
 b/configure
+@@ -29,7 +29,7 @@
+ 
+ set -e
+ 
+-REQUIRED_OCAML_VERSION=4.01
++REQUIRED_OCAML_VERSION=4.02
+ OTAGS_VERSION=1
+ 
+ root=/usr/local
+diff --git a/tags.ml b/tags.ml
+index 18cb14b..493488f 100644
+--- a/tags.ml
 b/tags.ml
+@@ -40,6 +40,25 @@ let empty_str_ast = Struct_ast(<:str_item@no_loc< >>)
+ 
+ 
(**
+  *
++ **   utility functions   
*
++ *
++ 
**)
++
++
++(** returns the first string of ident, return something arbitrary if
++the first element of the ident is an antiquotation.
++*)
++let rec first_string_of_ident = function
++  | <:ident< $x$ . $_$ >>
++  | <:ident< $x$ $_$ >> -> first_string_of_ident x
++  | <:ident< $lid:x$ >> -> x
++  | <:ident< $uid:x$ >> -> x
++  | <:ident< $anti:_$ >> -> "xxx"
++
++
++
++(**
++ *
+  **   tagging functions   
*
+  *
+  
**)
+@@ -101,6 +120,13 @@ let rec tag_type write_tag typ = match typ with
+   | _ -> assert false
+ );
+ tag_type write_tag type_def
++  | Ast.TyExt(_loc, id, _param_list, type_def) ->
++ (* For wellformed input, id is just a lowercase ident. I make
++  * this work even if id is something else (and the input is invalid).
++  *)
++ write_tag (translate_loc (Ast.loc_of_ident id))
++   (first_string_of_ident id);
++ tag_type write_tag type_def
+   | <:ctyp< $_t1$ == $t2$ >> -> 
+ (* don't tag t1, its the abbreviation *)
+ tag_type write_tag t2
+@@ -113,6 +139,14 @@ let rec tag_type write_tag typ = match typ with
+ List.iter
+   (tag_record_label_decl write_tag)
+   (Ast.list_of_ctyp t [])
++  | Ast.TyAtt(_loc, _attr, _payload, t) ->
++ (* In 4.02 camlp4 does not parse item attributes "[@@foo]" that can be
++  * attachted to whole type definitions. In the future they may appear in
++  * t as TyAtt node wrapped around a variant type. Therefore I recurse
++  * here. In 4.02 t may contain a TyAtt, but only for type equations
++  * (type a = int [@foo]), for which recursion would not be necessary.
++  *)
++ tag_type write_tag t
+ 
+   | <:ctyp< $tup:_$ >>(* tuple *)
+   | <:ctyp< [= $_$ ] >>   (* exact variant type *)
+@@ -134,6 +168,7 @@ let rec tag_type write_tag typ = match typ with
+   | <:ctyp< $_$ -> $_$ >>
+   | <:ctyp< $_$ $_$ >>(* type constructor application 
*)
+   | <:ctyp< $_$ as $_$ >>
++  | <:ctyp< .. >> (* empty extensible type *)
+   | <:ctyp< >>
+ -> ()
+ 
+@@ -254,6 +289,12 @@ and tag_class_type write_tag = function
+ List.iter
+   (tag_class_sig_item write

[Pkg-ocaml-maint-commits] [otags] 02/02: Release to unstable

2016-01-05 Thread Mehdi Dogguy
This is an automated email from the git hooks/post-receive script.

mehdi pushed a commit to branch master
in repository otags.

commit 0730768777cc51df4cfcc81583a97ead33034a1b
Author: Mehdi Dogguy 
Date:   Tue Jan 5 23:30:20 2016 +0100

Release to unstable
---
 debian/changelog | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 7fe3d8c..0fe2f40 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,9 @@
-otags (4.01.1-3) UNRELEASED; urgency=medium
+otags (4.01.1-3) unstable; urgency=medium
 
   * Add patch to port to OCaml 4.02.3, patch from Hendrik Tews
 (Closes: #802166).
 
- -- Mehdi Dogguy   Tue, 05 Jan 2016 23:27:59 +0100
+ -- Mehdi Dogguy   Tue, 05 Jan 2016 23:30:20 +0100
 
 otags (4.01.1-2) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/otags.git

___
Pkg-ocaml-maint-commits mailing list
Pkg-ocaml-maint-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ocaml-maint-commits


[Pkg-ocaml-maint-commits] [otags] annotated tag debian/4.01.1-3 created (now 7a93559)

2016-01-05 Thread Mehdi Dogguy
This is an automated email from the git hooks/post-receive script.

mehdi pushed a change to annotated tag debian/4.01.1-3
in repository otags.

at  7a93559   (tag)
   tagging  0730768777cc51df4cfcc81583a97ead33034a1b (commit)
  replaces  debian/4.01.1-2
 tagged by  Mehdi Dogguy
on  Tue Jan 5 23:30:42 2016 +0100

- Log -
otags Debian release 4.01.1-3
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJWjEQSAAoJEDO+GgqMLtj/xKcP/A+C72jt8CITxVgeMHy/Sikz
PHYn0qDn5TfHd7P6K1vIWVazjMhdAZfGH6D2yPyNH1CaNLXB7EFKHQkcO6Kp9BO0
GHt2etasxvZrKoypofga4cocvM9ZKGqlK5DEDsmHTsxuEJ7NSXD4EzL8uxzuGjyr
hpN9zPk0bbjf5jlF4DTXDi1smqdf1r1Vpdh5jJ8WFZaa1FQTDlBloNKYprER9h5b
pQoUelC3B7+3t8Sj9td2/d4NiYRA5p3hBZRK/ozYbqlmateEY5fYRfeTB9six2bI
GC2QPuDC3CDRkN9nQPyjDMyQMA2gerRSWohRkzT3Ra/gNhYFqC5/dSTzoK2SIw9X
bQTiS9AGqO9P1YVCMQ4s+IAvlk/cVG4QKIh9C98D1DsUkzk7MRgcRRYbpeZF+XbJ
cMyfPSO6eG3aXz28ghSp8TAzoPLQJpHdDrbkEPASkaDku6BaXocrK9T1Gcd4WKnC
7W7RiS820TakK/oUPBaXx4NmN+vCaRtEMQT9J0FSc1S3faX7coapzlTZdK0xYPLn
z2yZzeXzynCNmnk3DByWGU+zBeOph63kyiA4w/yDhcxb3cR0pCuFIAPPg0vpbBtm
s01NIkN+35WvIunG/nDmkMQaBB0kvJAE1sf7qrGwlIJaNRx9Ay0IqEygYd7suXGH
ZjEcvAPAeTWwvkyjeL1Q
=yWqc
-END PGP SIGNATURE-

Mehdi Dogguy (2):
  Add patch to port to OCaml 4.02.3, patch from Hendrik Tews (Closes: 
#802166).
  Release to unstable

---

No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/otags.git

___
Pkg-ocaml-maint-commits mailing list
Pkg-ocaml-maint-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ocaml-maint-commits


[Pkg-ocaml-maint-commits] [nss-passwords] annotated tag debian/0.2-2 created (now c140685)

2016-01-05 Thread Mehdi Dogguy
This is an automated email from the git hooks/post-receive script.

mehdi pushed a change to annotated tag debian/0.2-2
in repository nss-passwords.

at  c140685   (tag)
   tagging  632d3e520af4c2a966d317260c6a1dab9f8a26f7 (commit)
  replaces  debian/0.2-1
 tagged by  Mehdi Dogguy
on  Tue Jan 5 22:59:18 2016 +0100

- Log -
nss-passwords Debian release 0.2-2
-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAABCAAGBQJWjDy2AAoJEDO+GgqMLtj/0tcQAJkZ53Wb2bBjGyFQaAb/qBbw
SqfyzUSSuyC5EdQIBFvvVvvhEj2aeRrOFWHdYjVRPYSeBeT0J5QmEd5776FuTaf4
ZaLgi/VQhQLRolQ7Vr1uuDOVpaAWSJM+Pn2WybQD0yMVmjpYplALdyVqQ9ly0h5E
CkqYyzu7tTzDp5XqFBu7hdGqHfqr4kb1HPNiVSFIzcorKgX+y8Uqy2JKiu7/8c1z
3cB5KkcimL0nHzvvBq/SUCFJyf4LJoUkNBsVEaYqYoJzCF9bIi0f6uts1EASCLga
sZv/WIwzd2wV1OWzfpR1Czsr4PxSGz5kLcQc602Dw6H5VLdAz3pA1k3vgrijeYBw
QqsrSRPz9O9/qrDKmH2gGQlTY8GMficTgTFUuuhURpTl0Svkd2f8OaXvSMcHxULl
eU4nKt+iqm5RDa1tTHiVHMZLEhUtp2bk0PmUB/worZ52HyYfZBkbYPhVxdF+HW8q
siAHoo73XmCCnFIMu3sQ1qic2Zwu/UD5+GAaidsYSoKDz6V18hQtjcQpNb7Xno19
D377LkD1oc/dvWAykZDXxhGaPGUIOW0fRT/Wc+4P9AHYCEZGtfbeYF1Rpieu1nLs
P5aaSSKFz62Wblkb+bjwVx38/w85BYz4nAIlVJPD7VghLyBaelagp/n1N0VuYa5D
2z0tjV/84/dAhA6AW/vz
=RP1p
-END PGP SIGNATURE-

Mehdi Dogguy (1):
  Release to unstable

Stephane Glondu (1):
  Fix compilation with OCaml 4.02.2

---

No new revisions were added by this update.

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/nss-passwords.git

___
Pkg-ocaml-maint-commits mailing list
Pkg-ocaml-maint-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ocaml-maint-commits


[Pkg-ocaml-maint-commits] [nss-passwords] branch master updated (6794f9a -> 632d3e5)

2016-01-05 Thread Mehdi Dogguy
This is an automated email from the git hooks/post-receive script.

mehdi pushed a change to branch master
in repository nss-passwords.

  from  6794f9a   Fix compilation with OCaml 4.02.2
   new  632d3e5   Release to unstable

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog | 9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/nss-passwords.git

___
Pkg-ocaml-maint-commits mailing list
Pkg-ocaml-maint-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ocaml-maint-commits


[Pkg-ocaml-maint-commits] [nss-passwords] 01/01: Release to unstable

2016-01-05 Thread Mehdi Dogguy
This is an automated email from the git hooks/post-receive script.

mehdi pushed a commit to branch master
in repository nss-passwords.

commit 632d3e520af4c2a966d317260c6a1dab9f8a26f7
Author: Mehdi Dogguy 
Date:   Tue Jan 5 22:54:38 2016 +0100

Release to unstable
---
 debian/changelog | 9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index cc988a2..dfe246c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,11 @@
-nss-passwords (0.2-2) UNRELEASED; urgency=medium
+nss-passwords (0.2-2) unstable; urgency=medium
 
-  * Fix compilation with OCaml 4.02.2
+  * Team upload.
 
- -- Stéphane Glondu   Fri, 26 Jun 2015 15:46:12 +0200
+  [ Stéphane Glondu ]
+  * Fix compilation with OCaml 4.02.2 (Closes: #802865).
+
+ -- Mehdi Dogguy   Tue, 05 Jan 2016 22:54:38 +0100
 
 nss-passwords (0.2-1) unstable; urgency=medium
 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/nss-passwords.git

___
Pkg-ocaml-maint-commits mailing list
Pkg-ocaml-maint-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ocaml-maint-commits

[Pkg-ocaml-maint-commits] [janest-core-kernel] branch master updated (76f7840 -> 85f766e)

2016-01-05 Thread Hilko Bengen
This is an automated email from the git hooks/post-receive script.

bengen pushed a change to branch master
in repository janest-core-kernel.

  from  76f7840   113.00.00-1
   new  18b656b   Generate API documentation using dh_ocamldoc(1)
   new  85f766e   113.00.00-2

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog |  6 ++
 debian/libcore-kernel-ocaml-dev.ocamldoc | 30 ++
 2 files changed, 36 insertions(+)
 create mode 100644 debian/libcore-kernel-ocaml-dev.ocamldoc

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/janest-core-kernel.git

___
Pkg-ocaml-maint-commits mailing list
Pkg-ocaml-maint-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ocaml-maint-commits


[Pkg-ocaml-maint-commits] [janest-core-kernel] 01/02: Generate API documentation using dh_ocamldoc(1)

2016-01-05 Thread Hilko Bengen
This is an automated email from the git hooks/post-receive script.

bengen pushed a commit to branch master
in repository janest-core-kernel.

commit 18b656b4973ad805315bb1cca22a3c4fd1637bc1
Author: Hilko Bengen 
Date:   Tue Jan 5 17:50:05 2016 +0100

Generate API documentation using dh_ocamldoc(1)
---
 debian/libcore-kernel-ocaml-dev.ocamldoc | 30 ++
 1 file changed, 30 insertions(+)

diff --git a/debian/libcore-kernel-ocaml-dev.ocamldoc 
b/debian/libcore-kernel-ocaml-dev.ocamldoc
new file mode 100644
index 000..48cafac
--- /dev/null
+++ b/debian/libcore-kernel-ocaml-dev.ocamldoc
@@ -0,0 +1,30 @@
+-I _build/src
+-syntax camlp4o
+-package variantslib.syntax
+-package variantslib
+-package unix
+-package typerep_lib.syntax
+-package typerep_lib
+-package sexplib.syntax
+-package sexplib
+-package pa_test.syntax
+-package pa_test
+-package pa_pipebang
+-package pa_ounit.syntax
+-package pa_ounit
+-package pa_bench.syntax
+-package pa_bench
+-package herelib.syntax
+-package herelib
+-package fieldslib.syntax
+-package fieldslib
+-package enumerate.syntax
+-package enumerate
+-package custom_printf.syntax
+-package custom_printf
+-package comparelib.syntax
+-package bin_prot.syntax
+-package bin_prot
+-package bigarray
+-package camlp4.macro
+-ppopt -pa-ounit-lib -ppopt core_kernel -ppopt -Isrc

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/janest-core-kernel.git

___
Pkg-ocaml-maint-commits mailing list
Pkg-ocaml-maint-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ocaml-maint-commits


[Pkg-ocaml-maint-commits] [janest-core-kernel] 02/02: 113.00.00-2

2016-01-05 Thread Hilko Bengen
This is an automated email from the git hooks/post-receive script.

bengen pushed a commit to branch master
in repository janest-core-kernel.

commit 85f766ec3b3b8448366ea201214a723c94dd71f9
Author: Hilko Bengen 
Date:   Tue Jan 5 18:06:04 2016 +0100

113.00.00-2
---
 debian/changelog | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index 317e26d..6cceffd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+janest-core-kernel (113.00.00-2) unstable; urgency=medium
+
+  * Generate API documentation using dh_ocamldoc(1)
+
+ -- Hilko Bengen   Tue, 05 Jan 2016 17:56:47 +0100
+
 janest-core-kernel (113.00.00-1) unstable; urgency=low
 
   * Initial release (Closes: #717760)

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/janest-core-kernel.git

___
Pkg-ocaml-maint-commits mailing list
Pkg-ocaml-maint-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ocaml-maint-commits


[Pkg-ocaml-maint-commits] [janest-core-kernel] annotated tag debian/113.00.00-2 created (now 774cf9f)

2016-01-05 Thread Hilko Bengen
This is an automated email from the git hooks/post-receive script.

bengen pushed a change to annotated tag debian/113.00.00-2
in repository janest-core-kernel.

at  774cf9f   (tag)
   tagging  85f766ec3b3b8448366ea201214a723c94dd71f9 (commit)
  replaces  debian/113.00.00-1
 tagged by  Hilko Bengen
on  Tue Jan 5 18:06:40 2016 +0100

- Log -
janest-core-kernel Debian release 113.00.00-2

Hilko Bengen (2):
  Generate API documentation using dh_ocamldoc(1)
  113.00.00-2

---

This annotated tag includes the following new commits:

   new  18b656b   Generate API documentation using dh_ocamldoc(1)
   new  85f766e   113.00.00-2

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/janest-core-kernel.git

___
Pkg-ocaml-maint-commits mailing list
Pkg-ocaml-maint-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ocaml-maint-commits


[Pkg-ocaml-maint-commits] [nss-passwords] 01/01: Fix compilation with OCaml 4.02.2

2016-01-05 Thread Stéphane Glondu
This is an automated email from the git hooks/post-receive script.

glondu pushed a commit to branch master
in repository nss-passwords.

commit 6794f9a0e8c43f6d134c8c3ed5a774bc803c0616
Author: Stephane Glondu 
Date:   Fri Jun 26 15:45:46 2015 +0200

Fix compilation with OCaml 4.02.2
---
 debian/changelog   |  6 ++
 .../0001-Fix-compilation-with-OCaml-4.02.2.patch   | 24 ++
 debian/patches/series  |  1 +
 3 files changed, 31 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index c2bc018..cc988a2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+nss-passwords (0.2-2) UNRELEASED; urgency=medium
+
+  * Fix compilation with OCaml 4.02.2
+
+ -- Stéphane Glondu   Fri, 26 Jun 2015 15:46:12 +0200
+
 nss-passwords (0.2-1) unstable; urgency=medium
 
   * New upstream release
diff --git a/debian/patches/0001-Fix-compilation-with-OCaml-4.02.2.patch 
b/debian/patches/0001-Fix-compilation-with-OCaml-4.02.2.patch
new file mode 100644
index 000..6d5f5b1
--- /dev/null
+++ b/debian/patches/0001-Fix-compilation-with-OCaml-4.02.2.patch
@@ -0,0 +1,24 @@
+From: Stephane Glondu 
+Date: Fri, 26 Jun 2015 15:43:56 +0200
+Subject: Fix compilation with OCaml 4.02.2
+
+Define NO_NSPR_10_SUPPORT so that int64 and uint64 (declared by OCaml)
+are not declared by NSPR.
+---
+ nss_stubs.c | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/nss_stubs.c b/nss_stubs.c
+index 4cffa71..7494939 100644
+--- a/nss_stubs.c
 b/nss_stubs.c
+@@ -36,6 +36,8 @@
+  *
+  * * END LICENSE BLOCK * */
+ 
++#define NO_NSPR_10_SUPPORT
++
+ #include 
+ #include 
+ #include 
+-- 
diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 000..8784d45
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+0001-Fix-compilation-with-OCaml-4.02.2.patch

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/nss-passwords.git

___
Pkg-ocaml-maint-commits mailing list
Pkg-ocaml-maint-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ocaml-maint-commits

[Pkg-ocaml-maint-commits] [nss-passwords] branch master updated (6916129 -> 6794f9a)

2016-01-05 Thread Stéphane Glondu
This is an automated email from the git hooks/post-receive script.

glondu pushed a change to branch master
in repository nss-passwords.

  from  6916129   Update changelog and prepare upload to unstable
   new  6794f9a   Fix compilation with OCaml 4.02.2

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 debian/changelog   |  6 ++
 .../0001-Fix-compilation-with-OCaml-4.02.2.patch   | 24 ++
 debian/patches/series  |  1 +
 3 files changed, 31 insertions(+)
 create mode 100644 debian/patches/0001-Fix-compilation-with-OCaml-4.02.2.patch
 create mode 100644 debian/patches/series

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-ocaml-maint/packages/nss-passwords.git

___
Pkg-ocaml-maint-commits mailing list
Pkg-ocaml-maint-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-ocaml-maint-commits