[arch-commits] Commit in ocaml-num/repos/community-x86_64 (4 files)

2020-08-29 Thread Jürgen Hötzel via arch-commits
Date: Saturday, August 29, 2020 @ 13:13:02
  Author: juergen
Revision: 692196

archrelease: copy trunk to community-x86_64

Added:
  ocaml-num/repos/community-x86_64/PKGBUILD
(from rev 692195, ocaml-num/trunk/PKGBUILD)
  ocaml-num/repos/community-x86_64/provide-findlib-install-target.patch
(from rev 692195, ocaml-num/trunk/provide-findlib-install-target.patch)
Deleted:
  ocaml-num/repos/community-x86_64/PKGBUILD
  ocaml-num/repos/community-x86_64/provide-findlib-install-target.patch

--+
 PKGBUILD |   60 -
 provide-findlib-install-target.patch |  214 -
 2 files changed, 137 insertions(+), 137 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-08-29 13:12:57 UTC (rev 692195)
+++ PKGBUILD2020-08-29 13:13:02 UTC (rev 692196)
@@ -1,30 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-
-pkgname=ocaml-num
-pkgver=1.3
-pkgrel=3
-pkgdesc="Library for arbitrary-precision integer and rational arithmetic that 
used to be part of the OCaml core distribution"
-arch=('x86_64')
-url="https://github.com/ocaml/num";
-license=('LGPL2.1')
-depends=('ocaml')
-makedepends=('ocaml-findlib')
-options=('!strip' '!makeflags')
-source=($pkgname-$pkgver.tar.gz::https://github.com/ocaml/num/archive/v$pkgver.tar.gz)
-sha256sums=('4f79c30e81ea9553c5b2c5b5b57bb19968ccad1e85256b3c446b5df58f33e94d')
-
-build() {
-  cd "$srcdir/num-$pkgver"
-  make
-}
-
-package() {
-  cd "$srcdir/num-$pkgver"
-
-  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
-  install -d "$_destdir/stublibs"
-
-  make OCAMLFIND_DESTDIR="$_destdir" findlib-install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ocaml-num/repos/community-x86_64/PKGBUILD (from rev 692195, 
ocaml-num/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-08-29 13:13:02 UTC (rev 692196)
@@ -0,0 +1,30 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=ocaml-num
+pkgver=1.3
+pkgrel=4
+pkgdesc="Library for arbitrary-precision integer and rational arithmetic that 
used to be part of the OCaml core distribution"
+arch=('x86_64')
+url="https://github.com/ocaml/num";
+license=('LGPL2.1')
+depends=('ocaml>=4.11.0')
+makedepends=('ocaml-findlib')
+options=('!strip' '!makeflags')
+source=($pkgname-$pkgver.tar.gz::https://github.com/ocaml/num/archive/v$pkgver.tar.gz)
+sha256sums=('4f79c30e81ea9553c5b2c5b5b57bb19968ccad1e85256b3c446b5df58f33e94d')
+
+build() {
+  cd "$srcdir/num-$pkgver"
+  make
+}
+
+package() {
+  cd "$srcdir/num-$pkgver"
+
+  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
+  install -d "$_destdir/stublibs"
+
+  make OCAMLFIND_DESTDIR="$_destdir" findlib-install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: provide-findlib-install-target.patch
===
--- provide-findlib-install-target.patch2020-08-29 13:12:57 UTC (rev 
692195)
+++ provide-findlib-install-target.patch2020-08-29 13:13:02 UTC (rev 
692196)
@@ -1,107 +0,0 @@
-From 12dff1ac0a8cacbda2969b560f021ebb73b16887 Mon Sep 17 00:00:00 2001
-From: David Allsopp 
-Date: Thu, 11 Jan 2018 08:10:10 +
-Subject: [PATCH] Provide findlib-install target (#6)
-
-Allows installing the entire library using ocamlfind, in an ocamlfind-managed 
directory.
-This differs from the `install` target which performs the old-style 
installation in the OCaml stdlib directory.

- .gitignore|  1 +
- Makefile  | 10 +-
- src/{META => META.in} |  4 +++-
- src/Makefile  | 17 +++--
- 4 files changed, 28 insertions(+), 4 deletions(-)
- rename src/{META => META.in} (72%)
-
-diff --git a/.gitignore b/.gitignore
-index 6acd3bc..172bf23 100644
 a/.gitignore
-+++ b/.gitignore
-@@ -8,3 +8,4 @@
- *.cmx[as]
- *.cmti
- *.annot
-+src/META
-diff --git a/Makefile b/Makefile
-index 6a5d08f..b40e588 100644
 a/Makefile
-+++ b/Makefile
-@@ -14,8 +14,16 @@ install:
-   $(MAKE) -C src install
-   $(MAKE) -C toplevel install
- 
-+findlib-install:
-+  $(MAKE) -C src findlib-install
-+  $(MAKE) -C toplevel install
-+
- uninstall:
-   $(MAKE) -C src uninstall
-   $(MAKE) -C toplevel uninstall
- 
--.PHONY: all test clean install uninstall
-+findlib-uninstall:
-+  $(MAKE) -C src findlib-uninstall
-+  $(MAKE) -C toplevel uninstall
-+
-+.PHONY: all test clean install uninstall findlib-install findlib-uninstall
-diff --git a/src/META b/src/META.in
-similarity index 72%
-rename from src/META
-rename to src/META.in
-index 66ac170..b5678b7 100644
 a/src/META
-+++ b/src/META.in
-@@ -1,6 +1,8 @@
- # This META is the one provided by findlib when the "num" library was
- # part of the core OCaml distribution.  For backward compatibility,
--# it installs into OCaml's standard library directory, not in a subdirectory
-+# it is installed into OCaml's s

[arch-commits] Commit in ocaml-num/repos/community-x86_64 (4 files)

2020-05-18 Thread Jürgen Hötzel via arch-commits
Date: Monday, May 18, 2020 @ 17:44:28
  Author: juergen
Revision: 629588

archrelease: copy trunk to community-x86_64

Added:
  ocaml-num/repos/community-x86_64/PKGBUILD
(from rev 629587, ocaml-num/trunk/PKGBUILD)
  ocaml-num/repos/community-x86_64/provide-findlib-install-target.patch
(from rev 629587, ocaml-num/trunk/provide-findlib-install-target.patch)
Deleted:
  ocaml-num/repos/community-x86_64/PKGBUILD
  ocaml-num/repos/community-x86_64/provide-findlib-install-target.patch

--+
 PKGBUILD |   60 -
 provide-findlib-install-target.patch |  214 -
 2 files changed, 137 insertions(+), 137 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-05-18 17:43:41 UTC (rev 629587)
+++ PKGBUILD2020-05-18 17:44:28 UTC (rev 629588)
@@ -1,30 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-
-pkgname=ocaml-num
-pkgver=1.3
-pkgrel=2
-pkgdesc="Library for arbitrary-precision integer and rational arithmetic that 
used to be part of the OCaml core distribution"
-arch=('x86_64')
-url="https://github.com/ocaml/num";
-license=('LGPL2.1')
-depends=('ocaml')
-makedepends=('ocaml-findlib')
-options=('!strip' '!makeflags')
-source=($pkgname-$pkgver.tar.gz::https://github.com/ocaml/num/archive/v$pkgver.tar.gz)
-sha256sums=('4f79c30e81ea9553c5b2c5b5b57bb19968ccad1e85256b3c446b5df58f33e94d')
-
-build() {
-  cd "$srcdir/num-$pkgver"
-  make
-}
-
-package() {
-  cd "$srcdir/num-$pkgver"
-
-  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
-  install -d "$_destdir/stublibs"
-
-  make OCAMLFIND_DESTDIR="$_destdir" findlib-install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ocaml-num/repos/community-x86_64/PKGBUILD (from rev 629587, 
ocaml-num/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-05-18 17:44:28 UTC (rev 629588)
@@ -0,0 +1,30 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=ocaml-num
+pkgver=1.3
+pkgrel=3
+pkgdesc="Library for arbitrary-precision integer and rational arithmetic that 
used to be part of the OCaml core distribution"
+arch=('x86_64')
+url="https://github.com/ocaml/num";
+license=('LGPL2.1')
+depends=('ocaml')
+makedepends=('ocaml-findlib')
+options=('!strip' '!makeflags')
+source=($pkgname-$pkgver.tar.gz::https://github.com/ocaml/num/archive/v$pkgver.tar.gz)
+sha256sums=('4f79c30e81ea9553c5b2c5b5b57bb19968ccad1e85256b3c446b5df58f33e94d')
+
+build() {
+  cd "$srcdir/num-$pkgver"
+  make
+}
+
+package() {
+  cd "$srcdir/num-$pkgver"
+
+  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
+  install -d "$_destdir/stublibs"
+
+  make OCAMLFIND_DESTDIR="$_destdir" findlib-install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: provide-findlib-install-target.patch
===
--- provide-findlib-install-target.patch2020-05-18 17:43:41 UTC (rev 
629587)
+++ provide-findlib-install-target.patch2020-05-18 17:44:28 UTC (rev 
629588)
@@ -1,107 +0,0 @@
-From 12dff1ac0a8cacbda2969b560f021ebb73b16887 Mon Sep 17 00:00:00 2001
-From: David Allsopp 
-Date: Thu, 11 Jan 2018 08:10:10 +
-Subject: [PATCH] Provide findlib-install target (#6)
-
-Allows installing the entire library using ocamlfind, in an ocamlfind-managed 
directory.
-This differs from the `install` target which performs the old-style 
installation in the OCaml stdlib directory.

- .gitignore|  1 +
- Makefile  | 10 +-
- src/{META => META.in} |  4 +++-
- src/Makefile  | 17 +++--
- 4 files changed, 28 insertions(+), 4 deletions(-)
- rename src/{META => META.in} (72%)
-
-diff --git a/.gitignore b/.gitignore
-index 6acd3bc..172bf23 100644
 a/.gitignore
-+++ b/.gitignore
-@@ -8,3 +8,4 @@
- *.cmx[as]
- *.cmti
- *.annot
-+src/META
-diff --git a/Makefile b/Makefile
-index 6a5d08f..b40e588 100644
 a/Makefile
-+++ b/Makefile
-@@ -14,8 +14,16 @@ install:
-   $(MAKE) -C src install
-   $(MAKE) -C toplevel install
- 
-+findlib-install:
-+  $(MAKE) -C src findlib-install
-+  $(MAKE) -C toplevel install
-+
- uninstall:
-   $(MAKE) -C src uninstall
-   $(MAKE) -C toplevel uninstall
- 
--.PHONY: all test clean install uninstall
-+findlib-uninstall:
-+  $(MAKE) -C src findlib-uninstall
-+  $(MAKE) -C toplevel uninstall
-+
-+.PHONY: all test clean install uninstall findlib-install findlib-uninstall
-diff --git a/src/META b/src/META.in
-similarity index 72%
-rename from src/META
-rename to src/META.in
-index 66ac170..b5678b7 100644
 a/src/META
-+++ b/src/META.in
-@@ -1,6 +1,8 @@
- # This META is the one provided by findlib when the "num" library was
- # part of the core OCaml distribution.  For backward compatibility,
--# it installs into OCaml's standard library directory, not in a subdirectory
-+# it is installed into OCaml's standard libra

[arch-commits] Commit in ocaml-num/repos/community-x86_64 (4 files)

2020-03-21 Thread Felix Yan via arch-commits
Date: Saturday, March 21, 2020 @ 18:29:53
  Author: felixonmars
Revision: 602974

archrelease: copy trunk to community-x86_64

Added:
  ocaml-num/repos/community-x86_64/PKGBUILD
(from rev 602973, ocaml-num/trunk/PKGBUILD)
  ocaml-num/repos/community-x86_64/provide-findlib-install-target.patch
(from rev 602973, ocaml-num/trunk/provide-findlib-install-target.patch)
Deleted:
  ocaml-num/repos/community-x86_64/PKGBUILD
  ocaml-num/repos/community-x86_64/provide-findlib-install-target.patch

--+
 PKGBUILD |   60 -
 provide-findlib-install-target.patch |  214 -
 2 files changed, 137 insertions(+), 137 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2020-03-21 18:29:35 UTC (rev 602973)
+++ PKGBUILD2020-03-21 18:29:53 UTC (rev 602974)
@@ -1,30 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-
-pkgname=ocaml-num
-pkgver=1.3
-pkgrel=1
-pkgdesc="Library for arbitrary-precision integer and rational arithmetic that 
used to be part of the OCaml core distribution"
-arch=('x86_64')
-url="https://github.com/ocaml/num";
-license=('LGPL2.1')
-depends=('ocaml')
-makedepends=('ocaml-findlib')
-options=('!strip' '!makeflags')
-source=($pkgname-$pkgver.tar.gz::https://github.com/ocaml/num/archive/v$pkgver.tar.gz)
-sha256sums=('4f79c30e81ea9553c5b2c5b5b57bb19968ccad1e85256b3c446b5df58f33e94d')
-
-build() {
-  cd "$srcdir/num-$pkgver"
-  make
-}
-
-package() {
-  cd "$srcdir/num-$pkgver"
-
-  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
-  install -d "$_destdir/stublibs"
-
-  make OCAMLFIND_DESTDIR="$_destdir" findlib-install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ocaml-num/repos/community-x86_64/PKGBUILD (from rev 602973, 
ocaml-num/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2020-03-21 18:29:53 UTC (rev 602974)
@@ -0,0 +1,30 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=ocaml-num
+pkgver=1.3
+pkgrel=2
+pkgdesc="Library for arbitrary-precision integer and rational arithmetic that 
used to be part of the OCaml core distribution"
+arch=('x86_64')
+url="https://github.com/ocaml/num";
+license=('LGPL2.1')
+depends=('ocaml')
+makedepends=('ocaml-findlib')
+options=('!strip' '!makeflags')
+source=($pkgname-$pkgver.tar.gz::https://github.com/ocaml/num/archive/v$pkgver.tar.gz)
+sha256sums=('4f79c30e81ea9553c5b2c5b5b57bb19968ccad1e85256b3c446b5df58f33e94d')
+
+build() {
+  cd "$srcdir/num-$pkgver"
+  make
+}
+
+package() {
+  cd "$srcdir/num-$pkgver"
+
+  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
+  install -d "$_destdir/stublibs"
+
+  make OCAMLFIND_DESTDIR="$_destdir" findlib-install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: provide-findlib-install-target.patch
===
--- provide-findlib-install-target.patch2020-03-21 18:29:35 UTC (rev 
602973)
+++ provide-findlib-install-target.patch2020-03-21 18:29:53 UTC (rev 
602974)
@@ -1,107 +0,0 @@
-From 12dff1ac0a8cacbda2969b560f021ebb73b16887 Mon Sep 17 00:00:00 2001
-From: David Allsopp 
-Date: Thu, 11 Jan 2018 08:10:10 +
-Subject: [PATCH] Provide findlib-install target (#6)
-
-Allows installing the entire library using ocamlfind, in an ocamlfind-managed 
directory.
-This differs from the `install` target which performs the old-style 
installation in the OCaml stdlib directory.

- .gitignore|  1 +
- Makefile  | 10 +-
- src/{META => META.in} |  4 +++-
- src/Makefile  | 17 +++--
- 4 files changed, 28 insertions(+), 4 deletions(-)
- rename src/{META => META.in} (72%)
-
-diff --git a/.gitignore b/.gitignore
-index 6acd3bc..172bf23 100644
 a/.gitignore
-+++ b/.gitignore
-@@ -8,3 +8,4 @@
- *.cmx[as]
- *.cmti
- *.annot
-+src/META
-diff --git a/Makefile b/Makefile
-index 6a5d08f..b40e588 100644
 a/Makefile
-+++ b/Makefile
-@@ -14,8 +14,16 @@ install:
-   $(MAKE) -C src install
-   $(MAKE) -C toplevel install
- 
-+findlib-install:
-+  $(MAKE) -C src findlib-install
-+  $(MAKE) -C toplevel install
-+
- uninstall:
-   $(MAKE) -C src uninstall
-   $(MAKE) -C toplevel uninstall
- 
--.PHONY: all test clean install uninstall
-+findlib-uninstall:
-+  $(MAKE) -C src findlib-uninstall
-+  $(MAKE) -C toplevel uninstall
-+
-+.PHONY: all test clean install uninstall findlib-install findlib-uninstall
-diff --git a/src/META b/src/META.in
-similarity index 72%
-rename from src/META
-rename to src/META.in
-index 66ac170..b5678b7 100644
 a/src/META
-+++ b/src/META.in
-@@ -1,6 +1,8 @@
- # This META is the one provided by findlib when the "num" library was
- # part of the core OCaml distribution.  For backward compatibility,
--# it installs into OCaml's standard library directory, not in a subdirectory
-+# it is installed into OCaml's standa

[arch-commits] Commit in ocaml-num/repos/community-x86_64 (4 files)

2019-12-06 Thread Baptiste Jonglez via arch-commits
Date: Friday, December 6, 2019 @ 21:38:48
  Author: zorun
Revision: 536112

archrelease: copy trunk to community-x86_64

Added:
  ocaml-num/repos/community-x86_64/PKGBUILD
(from rev 536111, ocaml-num/trunk/PKGBUILD)
  ocaml-num/repos/community-x86_64/provide-findlib-install-target.patch
(from rev 536111, ocaml-num/trunk/provide-findlib-install-target.patch)
Deleted:
  ocaml-num/repos/community-x86_64/PKGBUILD
  ocaml-num/repos/community-x86_64/provide-findlib-install-target.patch

--+
 PKGBUILD |   60 -
 provide-findlib-install-target.patch |  214 -
 2 files changed, 137 insertions(+), 137 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-12-06 21:38:38 UTC (rev 536111)
+++ PKGBUILD2019-12-06 21:38:48 UTC (rev 536112)
@@ -1,30 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-
-pkgname=ocaml-num
-pkgver=1.2
-pkgrel=4
-pkgdesc="Library for arbitrary-precision integer and rational arithmetic that 
used to be part of the OCaml core distribution"
-arch=('x86_64')
-url="https://github.com/ocaml/num";
-license=('LGPL2.1')
-depends=('ocaml')
-makedepends=('ocaml-findlib')
-options=('!strip' '!makeflags')
-source=($pkgname-$pkgver.tar.gz::https://github.com/ocaml/num/archive/v$pkgver.tar.gz)
-sha256sums=('c5023104925ff4a79746509d4d85294d8aafa98da6733e768ae53da0355453de')
-
-build() {
-  cd "$srcdir/num-$pkgver"
-  make
-}
-
-package() {
-  cd "$srcdir/num-$pkgver"
-
-  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
-  install -d "$_destdir/stublibs"
-
-  make OCAMLFIND_DESTDIR="$_destdir" findlib-install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ocaml-num/repos/community-x86_64/PKGBUILD (from rev 536111, 
ocaml-num/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-12-06 21:38:48 UTC (rev 536112)
@@ -0,0 +1,30 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=ocaml-num
+pkgver=1.3
+pkgrel=1
+pkgdesc="Library for arbitrary-precision integer and rational arithmetic that 
used to be part of the OCaml core distribution"
+arch=('x86_64')
+url="https://github.com/ocaml/num";
+license=('LGPL2.1')
+depends=('ocaml')
+makedepends=('ocaml-findlib')
+options=('!strip' '!makeflags')
+source=($pkgname-$pkgver.tar.gz::https://github.com/ocaml/num/archive/v$pkgver.tar.gz)
+sha256sums=('4f79c30e81ea9553c5b2c5b5b57bb19968ccad1e85256b3c446b5df58f33e94d')
+
+build() {
+  cd "$srcdir/num-$pkgver"
+  make
+}
+
+package() {
+  cd "$srcdir/num-$pkgver"
+
+  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
+  install -d "$_destdir/stublibs"
+
+  make OCAMLFIND_DESTDIR="$_destdir" findlib-install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: provide-findlib-install-target.patch
===
--- provide-findlib-install-target.patch2019-12-06 21:38:38 UTC (rev 
536111)
+++ provide-findlib-install-target.patch2019-12-06 21:38:48 UTC (rev 
536112)
@@ -1,107 +0,0 @@
-From 12dff1ac0a8cacbda2969b560f021ebb73b16887 Mon Sep 17 00:00:00 2001
-From: David Allsopp 
-Date: Thu, 11 Jan 2018 08:10:10 +
-Subject: [PATCH] Provide findlib-install target (#6)
-
-Allows installing the entire library using ocamlfind, in an ocamlfind-managed 
directory.
-This differs from the `install` target which performs the old-style 
installation in the OCaml stdlib directory.

- .gitignore|  1 +
- Makefile  | 10 +-
- src/{META => META.in} |  4 +++-
- src/Makefile  | 17 +++--
- 4 files changed, 28 insertions(+), 4 deletions(-)
- rename src/{META => META.in} (72%)
-
-diff --git a/.gitignore b/.gitignore
-index 6acd3bc..172bf23 100644
 a/.gitignore
-+++ b/.gitignore
-@@ -8,3 +8,4 @@
- *.cmx[as]
- *.cmti
- *.annot
-+src/META
-diff --git a/Makefile b/Makefile
-index 6a5d08f..b40e588 100644
 a/Makefile
-+++ b/Makefile
-@@ -14,8 +14,16 @@ install:
-   $(MAKE) -C src install
-   $(MAKE) -C toplevel install
- 
-+findlib-install:
-+  $(MAKE) -C src findlib-install
-+  $(MAKE) -C toplevel install
-+
- uninstall:
-   $(MAKE) -C src uninstall
-   $(MAKE) -C toplevel uninstall
- 
--.PHONY: all test clean install uninstall
-+findlib-uninstall:
-+  $(MAKE) -C src findlib-uninstall
-+  $(MAKE) -C toplevel uninstall
-+
-+.PHONY: all test clean install uninstall findlib-install findlib-uninstall
-diff --git a/src/META b/src/META.in
-similarity index 72%
-rename from src/META
-rename to src/META.in
-index 66ac170..b5678b7 100644
 a/src/META
-+++ b/src/META.in
-@@ -1,6 +1,8 @@
- # This META is the one provided by findlib when the "num" library was
- # part of the core OCaml distribution.  For backward compatibility,
--# it installs into OCaml's standard library directory, not in a subdirectory
-+# it is installed into OCaml's standard lib

[arch-commits] Commit in ocaml-num/repos/community-x86_64 (4 files)

2019-10-10 Thread Jürgen Hötzel via arch-commits
Date: Thursday, October 10, 2019 @ 12:02:07
  Author: juergen
Revision: 514448

archrelease: copy trunk to community-x86_64

Added:
  ocaml-num/repos/community-x86_64/PKGBUILD
(from rev 514447, ocaml-num/trunk/PKGBUILD)
  ocaml-num/repos/community-x86_64/provide-findlib-install-target.patch
(from rev 514447, ocaml-num/trunk/provide-findlib-install-target.patch)
Deleted:
  ocaml-num/repos/community-x86_64/PKGBUILD
  ocaml-num/repos/community-x86_64/provide-findlib-install-target.patch

--+
 PKGBUILD |   60 -
 provide-findlib-install-target.patch |  214 -
 2 files changed, 137 insertions(+), 137 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-10 12:01:46 UTC (rev 514447)
+++ PKGBUILD2019-10-10 12:02:07 UTC (rev 514448)
@@ -1,30 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-
-pkgname=ocaml-num
-pkgver=1.2
-pkgrel=4
-pkgdesc="Library for arbitrary-precision integer and rational arithmetic that 
used to be part of the OCaml core distribution"
-arch=('x86_64')
-url="https://github.com/ocaml/num";
-license=('LGPL2.1')
-depends=('ocaml')
-makedepends=('ocaml-findlib')
-options=('!strip' '!makeflags')
-source=($pkgname-$pkgver.tar.gz::https://github.com/ocaml/num/archive/v$pkgver.tar.gz)
-sha256sums=('c5023104925ff4a79746509d4d85294d8aafa98da6733e768ae53da0355453de')
-
-build() {
-  cd "$srcdir/num-$pkgver"
-  make
-}
-
-package() {
-  cd "$srcdir/num-$pkgver"
-
-  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
-  install -d "$_destdir/stublibs"
-
-  make OCAMLFIND_DESTDIR="$_destdir" findlib-install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ocaml-num/repos/community-x86_64/PKGBUILD (from rev 514447, 
ocaml-num/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-10 12:02:07 UTC (rev 514448)
@@ -0,0 +1,30 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=ocaml-num
+pkgver=1.2
+pkgrel=4
+pkgdesc="Library for arbitrary-precision integer and rational arithmetic that 
used to be part of the OCaml core distribution"
+arch=('x86_64')
+url="https://github.com/ocaml/num";
+license=('LGPL2.1')
+depends=('ocaml')
+makedepends=('ocaml-findlib')
+options=('!strip' '!makeflags')
+source=($pkgname-$pkgver.tar.gz::https://github.com/ocaml/num/archive/v$pkgver.tar.gz)
+sha256sums=('c5023104925ff4a79746509d4d85294d8aafa98da6733e768ae53da0355453de')
+
+build() {
+  cd "$srcdir/num-$pkgver"
+  make
+}
+
+package() {
+  cd "$srcdir/num-$pkgver"
+
+  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
+  install -d "$_destdir/stublibs"
+
+  make OCAMLFIND_DESTDIR="$_destdir" findlib-install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: provide-findlib-install-target.patch
===
--- provide-findlib-install-target.patch2019-10-10 12:01:46 UTC (rev 
514447)
+++ provide-findlib-install-target.patch2019-10-10 12:02:07 UTC (rev 
514448)
@@ -1,107 +0,0 @@
-From 12dff1ac0a8cacbda2969b560f021ebb73b16887 Mon Sep 17 00:00:00 2001
-From: David Allsopp 
-Date: Thu, 11 Jan 2018 08:10:10 +
-Subject: [PATCH] Provide findlib-install target (#6)
-
-Allows installing the entire library using ocamlfind, in an ocamlfind-managed 
directory.
-This differs from the `install` target which performs the old-style 
installation in the OCaml stdlib directory.

- .gitignore|  1 +
- Makefile  | 10 +-
- src/{META => META.in} |  4 +++-
- src/Makefile  | 17 +++--
- 4 files changed, 28 insertions(+), 4 deletions(-)
- rename src/{META => META.in} (72%)
-
-diff --git a/.gitignore b/.gitignore
-index 6acd3bc..172bf23 100644
 a/.gitignore
-+++ b/.gitignore
-@@ -8,3 +8,4 @@
- *.cmx[as]
- *.cmti
- *.annot
-+src/META
-diff --git a/Makefile b/Makefile
-index 6a5d08f..b40e588 100644
 a/Makefile
-+++ b/Makefile
-@@ -14,8 +14,16 @@ install:
-   $(MAKE) -C src install
-   $(MAKE) -C toplevel install
- 
-+findlib-install:
-+  $(MAKE) -C src findlib-install
-+  $(MAKE) -C toplevel install
-+
- uninstall:
-   $(MAKE) -C src uninstall
-   $(MAKE) -C toplevel uninstall
- 
--.PHONY: all test clean install uninstall
-+findlib-uninstall:
-+  $(MAKE) -C src findlib-uninstall
-+  $(MAKE) -C toplevel uninstall
-+
-+.PHONY: all test clean install uninstall findlib-install findlib-uninstall
-diff --git a/src/META b/src/META.in
-similarity index 72%
-rename from src/META
-rename to src/META.in
-index 66ac170..b5678b7 100644
 a/src/META
-+++ b/src/META.in
-@@ -1,6 +1,8 @@
- # This META is the one provided by findlib when the "num" library was
- # part of the core OCaml distribution.  For backward compatibility,
--# it installs into OCaml's standard library directory, not in a subdirectory
-+# it is installed into OCaml's standard

[arch-commits] Commit in ocaml-num/repos/community-x86_64 (4 files)

2019-10-10 Thread Jürgen Hötzel via arch-commits
Date: Thursday, October 10, 2019 @ 09:50:32
  Author: juergen
Revision: 514441

archrelease: copy trunk to community-x86_64

Added:
  ocaml-num/repos/community-x86_64/PKGBUILD
(from rev 514440, ocaml-num/trunk/PKGBUILD)
  ocaml-num/repos/community-x86_64/provide-findlib-install-target.patch
(from rev 514440, ocaml-num/trunk/provide-findlib-install-target.patch)
Deleted:
  ocaml-num/repos/community-x86_64/PKGBUILD
  ocaml-num/repos/community-x86_64/provide-findlib-install-target.patch

--+
 PKGBUILD |   60 -
 provide-findlib-install-target.patch |  214 -
 2 files changed, 137 insertions(+), 137 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-10-10 09:50:15 UTC (rev 514440)
+++ PKGBUILD2019-10-10 09:50:32 UTC (rev 514441)
@@ -1,30 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-
-pkgname=ocaml-num
-pkgver=1.2
-pkgrel=3
-pkgdesc="Library for arbitrary-precision integer and rational arithmetic that 
used to be part of the OCaml core distribution"
-arch=('x86_64')
-url="https://github.com/ocaml/num";
-license=('LGPL2.1')
-depends=('ocaml')
-makedepends=('ocaml-findlib')
-options=('!strip' '!makeflags')
-source=($pkgname-$pkgver.tar.gz::https://github.com/ocaml/num/archive/v$pkgver.tar.gz)
-sha256sums=('c5023104925ff4a79746509d4d85294d8aafa98da6733e768ae53da0355453de')
-
-build() {
-  cd "$srcdir/num-$pkgver"
-  make
-}
-
-package() {
-  cd "$srcdir/num-$pkgver"
-
-  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
-  install -d "$_destdir/stublibs"
-
-  make OCAMLFIND_DESTDIR="$_destdir" findlib-install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ocaml-num/repos/community-x86_64/PKGBUILD (from rev 514440, 
ocaml-num/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-10-10 09:50:32 UTC (rev 514441)
@@ -0,0 +1,30 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=ocaml-num
+pkgver=1.2
+pkgrel=4
+pkgdesc="Library for arbitrary-precision integer and rational arithmetic that 
used to be part of the OCaml core distribution"
+arch=('x86_64')
+url="https://github.com/ocaml/num";
+license=('LGPL2.1')
+depends=('ocaml')
+makedepends=('ocaml-findlib')
+options=('!strip' '!makeflags')
+source=($pkgname-$pkgver.tar.gz::https://github.com/ocaml/num/archive/v$pkgver.tar.gz)
+sha256sums=('c5023104925ff4a79746509d4d85294d8aafa98da6733e768ae53da0355453de')
+
+build() {
+  cd "$srcdir/num-$pkgver"
+  make
+}
+
+package() {
+  cd "$srcdir/num-$pkgver"
+
+  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
+  install -d "$_destdir/stublibs"
+
+  make OCAMLFIND_DESTDIR="$_destdir" findlib-install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: provide-findlib-install-target.patch
===
--- provide-findlib-install-target.patch2019-10-10 09:50:15 UTC (rev 
514440)
+++ provide-findlib-install-target.patch2019-10-10 09:50:32 UTC (rev 
514441)
@@ -1,107 +0,0 @@
-From 12dff1ac0a8cacbda2969b560f021ebb73b16887 Mon Sep 17 00:00:00 2001
-From: David Allsopp 
-Date: Thu, 11 Jan 2018 08:10:10 +
-Subject: [PATCH] Provide findlib-install target (#6)
-
-Allows installing the entire library using ocamlfind, in an ocamlfind-managed 
directory.
-This differs from the `install` target which performs the old-style 
installation in the OCaml stdlib directory.

- .gitignore|  1 +
- Makefile  | 10 +-
- src/{META => META.in} |  4 +++-
- src/Makefile  | 17 +++--
- 4 files changed, 28 insertions(+), 4 deletions(-)
- rename src/{META => META.in} (72%)
-
-diff --git a/.gitignore b/.gitignore
-index 6acd3bc..172bf23 100644
 a/.gitignore
-+++ b/.gitignore
-@@ -8,3 +8,4 @@
- *.cmx[as]
- *.cmti
- *.annot
-+src/META
-diff --git a/Makefile b/Makefile
-index 6a5d08f..b40e588 100644
 a/Makefile
-+++ b/Makefile
-@@ -14,8 +14,16 @@ install:
-   $(MAKE) -C src install
-   $(MAKE) -C toplevel install
- 
-+findlib-install:
-+  $(MAKE) -C src findlib-install
-+  $(MAKE) -C toplevel install
-+
- uninstall:
-   $(MAKE) -C src uninstall
-   $(MAKE) -C toplevel uninstall
- 
--.PHONY: all test clean install uninstall
-+findlib-uninstall:
-+  $(MAKE) -C src findlib-uninstall
-+  $(MAKE) -C toplevel uninstall
-+
-+.PHONY: all test clean install uninstall findlib-install findlib-uninstall
-diff --git a/src/META b/src/META.in
-similarity index 72%
-rename from src/META
-rename to src/META.in
-index 66ac170..b5678b7 100644
 a/src/META
-+++ b/src/META.in
-@@ -1,6 +1,8 @@
- # This META is the one provided by findlib when the "num" library was
- # part of the core OCaml distribution.  For backward compatibility,
--# it installs into OCaml's standard library directory, not in a subdirectory
-+# it is installed into OCaml's standard

[arch-commits] Commit in ocaml-num/repos/community-x86_64 (4 files)

2019-08-24 Thread Jürgen Hötzel via arch-commits
Date: Saturday, August 24, 2019 @ 12:49:53
  Author: juergen
Revision: 501498

archrelease: copy trunk to community-x86_64

Added:
  ocaml-num/repos/community-x86_64/PKGBUILD
(from rev 501497, ocaml-num/trunk/PKGBUILD)
  ocaml-num/repos/community-x86_64/provide-findlib-install-target.patch
(from rev 501497, ocaml-num/trunk/provide-findlib-install-target.patch)
Deleted:
  ocaml-num/repos/community-x86_64/PKGBUILD
  ocaml-num/repos/community-x86_64/provide-findlib-install-target.patch

--+
 PKGBUILD |   60 -
 provide-findlib-install-target.patch |  214 -
 2 files changed, 137 insertions(+), 137 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-24 12:49:41 UTC (rev 501497)
+++ PKGBUILD2019-08-24 12:49:53 UTC (rev 501498)
@@ -1,30 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-
-pkgname=ocaml-num
-pkgver=1.2
-pkgrel=2
-pkgdesc="Library for arbitrary-precision integer and rational arithmetic that 
used to be part of the OCaml core distribution"
-arch=('x86_64')
-url="https://github.com/ocaml/num";
-license=('LGPL2.1')
-depends=('ocaml')
-makedepends=('ocaml-findlib')
-options=('!strip' '!makeflags')
-source=($pkgname-$pkgver.tar.gz::https://github.com/ocaml/num/archive/v$pkgver.tar.gz)
-sha256sums=('c5023104925ff4a79746509d4d85294d8aafa98da6733e768ae53da0355453de')
-
-build() {
-  cd "$srcdir/num-$pkgver"
-  make
-}
-
-package() {
-  cd "$srcdir/num-$pkgver"
-
-  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
-  install -d "$_destdir/stublibs"
-
-  make OCAMLFIND_DESTDIR="$_destdir" findlib-install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ocaml-num/repos/community-x86_64/PKGBUILD (from rev 501497, 
ocaml-num/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-24 12:49:53 UTC (rev 501498)
@@ -0,0 +1,30 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=ocaml-num
+pkgver=1.2
+pkgrel=3
+pkgdesc="Library for arbitrary-precision integer and rational arithmetic that 
used to be part of the OCaml core distribution"
+arch=('x86_64')
+url="https://github.com/ocaml/num";
+license=('LGPL2.1')
+depends=('ocaml')
+makedepends=('ocaml-findlib')
+options=('!strip' '!makeflags')
+source=($pkgname-$pkgver.tar.gz::https://github.com/ocaml/num/archive/v$pkgver.tar.gz)
+sha256sums=('c5023104925ff4a79746509d4d85294d8aafa98da6733e768ae53da0355453de')
+
+build() {
+  cd "$srcdir/num-$pkgver"
+  make
+}
+
+package() {
+  cd "$srcdir/num-$pkgver"
+
+  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
+  install -d "$_destdir/stublibs"
+
+  make OCAMLFIND_DESTDIR="$_destdir" findlib-install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: provide-findlib-install-target.patch
===
--- provide-findlib-install-target.patch2019-08-24 12:49:41 UTC (rev 
501497)
+++ provide-findlib-install-target.patch2019-08-24 12:49:53 UTC (rev 
501498)
@@ -1,107 +0,0 @@
-From 12dff1ac0a8cacbda2969b560f021ebb73b16887 Mon Sep 17 00:00:00 2001
-From: David Allsopp 
-Date: Thu, 11 Jan 2018 08:10:10 +
-Subject: [PATCH] Provide findlib-install target (#6)
-
-Allows installing the entire library using ocamlfind, in an ocamlfind-managed 
directory.
-This differs from the `install` target which performs the old-style 
installation in the OCaml stdlib directory.

- .gitignore|  1 +
- Makefile  | 10 +-
- src/{META => META.in} |  4 +++-
- src/Makefile  | 17 +++--
- 4 files changed, 28 insertions(+), 4 deletions(-)
- rename src/{META => META.in} (72%)
-
-diff --git a/.gitignore b/.gitignore
-index 6acd3bc..172bf23 100644
 a/.gitignore
-+++ b/.gitignore
-@@ -8,3 +8,4 @@
- *.cmx[as]
- *.cmti
- *.annot
-+src/META
-diff --git a/Makefile b/Makefile
-index 6a5d08f..b40e588 100644
 a/Makefile
-+++ b/Makefile
-@@ -14,8 +14,16 @@ install:
-   $(MAKE) -C src install
-   $(MAKE) -C toplevel install
- 
-+findlib-install:
-+  $(MAKE) -C src findlib-install
-+  $(MAKE) -C toplevel install
-+
- uninstall:
-   $(MAKE) -C src uninstall
-   $(MAKE) -C toplevel uninstall
- 
--.PHONY: all test clean install uninstall
-+findlib-uninstall:
-+  $(MAKE) -C src findlib-uninstall
-+  $(MAKE) -C toplevel uninstall
-+
-+.PHONY: all test clean install uninstall findlib-install findlib-uninstall
-diff --git a/src/META b/src/META.in
-similarity index 72%
-rename from src/META
-rename to src/META.in
-index 66ac170..b5678b7 100644
 a/src/META
-+++ b/src/META.in
-@@ -1,6 +1,8 @@
- # This META is the one provided by findlib when the "num" library was
- # part of the core OCaml distribution.  For backward compatibility,
--# it installs into OCaml's standard library directory, not in a subdirectory
-+# it is installed into OCaml's standard 

[arch-commits] Commit in ocaml-num/repos/community-x86_64 (4 files)

2019-08-15 Thread Jürgen Hötzel via arch-commits
Date: Friday, August 16, 2019 @ 05:49:44
  Author: juergen
Revision: 499703

archrelease: copy trunk to community-x86_64

Added:
  ocaml-num/repos/community-x86_64/PKGBUILD
(from rev 499702, ocaml-num/trunk/PKGBUILD)
  ocaml-num/repos/community-x86_64/provide-findlib-install-target.patch
(from rev 499702, ocaml-num/trunk/provide-findlib-install-target.patch)
Deleted:
  ocaml-num/repos/community-x86_64/PKGBUILD
  ocaml-num/repos/community-x86_64/provide-findlib-install-target.patch

--+
 PKGBUILD |   60 -
 provide-findlib-install-target.patch |  214 -
 2 files changed, 137 insertions(+), 137 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-08-16 05:49:15 UTC (rev 499702)
+++ PKGBUILD2019-08-16 05:49:44 UTC (rev 499703)
@@ -1,30 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-
-pkgname=ocaml-num
-pkgver=1.2
-pkgrel=1
-pkgdesc="Library for arbitrary-precision integer and rational arithmetic that 
used to be part of the OCaml core distribution"
-arch=('x86_64')
-url="https://github.com/ocaml/num";
-license=('LGPL2.1')
-depends=('ocaml')
-makedepends=('ocaml-findlib')
-options=('!strip' '!makeflags')
-source=($pkgname-$pkgver.tar.gz::https://github.com/ocaml/num/archive/v$pkgver.tar.gz)
-sha256sums=('c5023104925ff4a79746509d4d85294d8aafa98da6733e768ae53da0355453de')
-
-build() {
-  cd "$srcdir/num-$pkgver"
-  make
-}
-
-package() {
-  cd "$srcdir/num-$pkgver"
-
-  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
-  install -d "$_destdir/stublibs"
-
-  make OCAMLFIND_DESTDIR="$_destdir" findlib-install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ocaml-num/repos/community-x86_64/PKGBUILD (from rev 499702, 
ocaml-num/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-08-16 05:49:44 UTC (rev 499703)
@@ -0,0 +1,30 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=ocaml-num
+pkgver=1.2
+pkgrel=2
+pkgdesc="Library for arbitrary-precision integer and rational arithmetic that 
used to be part of the OCaml core distribution"
+arch=('x86_64')
+url="https://github.com/ocaml/num";
+license=('LGPL2.1')
+depends=('ocaml')
+makedepends=('ocaml-findlib')
+options=('!strip' '!makeflags')
+source=($pkgname-$pkgver.tar.gz::https://github.com/ocaml/num/archive/v$pkgver.tar.gz)
+sha256sums=('c5023104925ff4a79746509d4d85294d8aafa98da6733e768ae53da0355453de')
+
+build() {
+  cd "$srcdir/num-$pkgver"
+  make
+}
+
+package() {
+  cd "$srcdir/num-$pkgver"
+
+  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
+  install -d "$_destdir/stublibs"
+
+  make OCAMLFIND_DESTDIR="$_destdir" findlib-install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: provide-findlib-install-target.patch
===
--- provide-findlib-install-target.patch2019-08-16 05:49:15 UTC (rev 
499702)
+++ provide-findlib-install-target.patch2019-08-16 05:49:44 UTC (rev 
499703)
@@ -1,107 +0,0 @@
-From 12dff1ac0a8cacbda2969b560f021ebb73b16887 Mon Sep 17 00:00:00 2001
-From: David Allsopp 
-Date: Thu, 11 Jan 2018 08:10:10 +
-Subject: [PATCH] Provide findlib-install target (#6)
-
-Allows installing the entire library using ocamlfind, in an ocamlfind-managed 
directory.
-This differs from the `install` target which performs the old-style 
installation in the OCaml stdlib directory.

- .gitignore|  1 +
- Makefile  | 10 +-
- src/{META => META.in} |  4 +++-
- src/Makefile  | 17 +++--
- 4 files changed, 28 insertions(+), 4 deletions(-)
- rename src/{META => META.in} (72%)
-
-diff --git a/.gitignore b/.gitignore
-index 6acd3bc..172bf23 100644
 a/.gitignore
-+++ b/.gitignore
-@@ -8,3 +8,4 @@
- *.cmx[as]
- *.cmti
- *.annot
-+src/META
-diff --git a/Makefile b/Makefile
-index 6a5d08f..b40e588 100644
 a/Makefile
-+++ b/Makefile
-@@ -14,8 +14,16 @@ install:
-   $(MAKE) -C src install
-   $(MAKE) -C toplevel install
- 
-+findlib-install:
-+  $(MAKE) -C src findlib-install
-+  $(MAKE) -C toplevel install
-+
- uninstall:
-   $(MAKE) -C src uninstall
-   $(MAKE) -C toplevel uninstall
- 
--.PHONY: all test clean install uninstall
-+findlib-uninstall:
-+  $(MAKE) -C src findlib-uninstall
-+  $(MAKE) -C toplevel uninstall
-+
-+.PHONY: all test clean install uninstall findlib-install findlib-uninstall
-diff --git a/src/META b/src/META.in
-similarity index 72%
-rename from src/META
-rename to src/META.in
-index 66ac170..b5678b7 100644
 a/src/META
-+++ b/src/META.in
-@@ -1,6 +1,8 @@
- # This META is the one provided by findlib when the "num" library was
- # part of the core OCaml distribution.  For backward compatibility,
--# it installs into OCaml's standard library directory, not in a subdirectory
-+# it is installed into OCaml's standard li

[arch-commits] Commit in ocaml-num/repos/community-x86_64 (4 files)

2019-07-07 Thread Baptiste Jonglez via arch-commits
Date: Sunday, July 7, 2019 @ 10:02:12
  Author: zorun
Revision: 487599

archrelease: copy trunk to community-x86_64

Added:
  ocaml-num/repos/community-x86_64/PKGBUILD
(from rev 487598, ocaml-num/trunk/PKGBUILD)
  ocaml-num/repos/community-x86_64/provide-findlib-install-target.patch
(from rev 487598, ocaml-num/trunk/provide-findlib-install-target.patch)
Deleted:
  ocaml-num/repos/community-x86_64/PKGBUILD
  ocaml-num/repos/community-x86_64/provide-findlib-install-target.patch

--+
 PKGBUILD |   67 --
 provide-findlib-install-target.patch |  214 -
 2 files changed, 137 insertions(+), 144 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-07-07 10:02:05 UTC (rev 487598)
+++ PKGBUILD2019-07-07 10:02:12 UTC (rev 487599)
@@ -1,37 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-
-pkgname=ocaml-num
-pkgver=1.1
-pkgrel=3
-pkgdesc="Library for arbitrary-precision integer and rational arithmetic that 
used to be part of the OCaml core distribution"
-arch=('x86_64')
-url="https://github.com/ocaml/num";
-license=('LGPL2.1')
-depends=('ocaml')
-makedepends=('ocaml-findlib')
-options=('!strip' '!makeflags')
-source=($pkgname-$pkgver.tar.gz::https://github.com/ocaml/num/archive/v$pkgver.tar.gz
-provide-findlib-install-target.patch)
-sha256sums=('04ac85f6465b9b2bf99e814ddc798a25bcadb3cca2667b74c1af02b6356893f6'
-'a5d6bcb0383e6246da26137d8306c767d9ea5877f67b39db9232d35b5406322d')
-
-prepare() {
-  cd "$srcdir/num-$pkgver"
-  patch -p1 < "$srcdir/provide-findlib-install-target.patch"
-}
-
-build() {
-  cd "$srcdir/num-$pkgver"
-  make
-}
-
-package() {
-  cd "$srcdir/num-$pkgver"
-
-  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
-  install -d "$_destdir/stublibs"
-
-  make OCAMLFIND_DESTDIR="$_destdir" findlib-install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ocaml-num/repos/community-x86_64/PKGBUILD (from rev 487598, 
ocaml-num/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2019-07-07 10:02:12 UTC (rev 487599)
@@ -0,0 +1,30 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=ocaml-num
+pkgver=1.2
+pkgrel=1
+pkgdesc="Library for arbitrary-precision integer and rational arithmetic that 
used to be part of the OCaml core distribution"
+arch=('x86_64')
+url="https://github.com/ocaml/num";
+license=('LGPL2.1')
+depends=('ocaml')
+makedepends=('ocaml-findlib')
+options=('!strip' '!makeflags')
+source=($pkgname-$pkgver.tar.gz::https://github.com/ocaml/num/archive/v$pkgver.tar.gz)
+sha256sums=('c5023104925ff4a79746509d4d85294d8aafa98da6733e768ae53da0355453de')
+
+build() {
+  cd "$srcdir/num-$pkgver"
+  make
+}
+
+package() {
+  cd "$srcdir/num-$pkgver"
+
+  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
+  install -d "$_destdir/stublibs"
+
+  make OCAMLFIND_DESTDIR="$_destdir" findlib-install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: provide-findlib-install-target.patch
===
--- provide-findlib-install-target.patch2019-07-07 10:02:05 UTC (rev 
487598)
+++ provide-findlib-install-target.patch2019-07-07 10:02:12 UTC (rev 
487599)
@@ -1,107 +0,0 @@
-From 12dff1ac0a8cacbda2969b560f021ebb73b16887 Mon Sep 17 00:00:00 2001
-From: David Allsopp 
-Date: Thu, 11 Jan 2018 08:10:10 +
-Subject: [PATCH] Provide findlib-install target (#6)
-
-Allows installing the entire library using ocamlfind, in an ocamlfind-managed 
directory.
-This differs from the `install` target which performs the old-style 
installation in the OCaml stdlib directory.

- .gitignore|  1 +
- Makefile  | 10 +-
- src/{META => META.in} |  4 +++-
- src/Makefile  | 17 +++--
- 4 files changed, 28 insertions(+), 4 deletions(-)
- rename src/{META => META.in} (72%)
-
-diff --git a/.gitignore b/.gitignore
-index 6acd3bc..172bf23 100644
 a/.gitignore
-+++ b/.gitignore
-@@ -8,3 +8,4 @@
- *.cmx[as]
- *.cmti
- *.annot
-+src/META
-diff --git a/Makefile b/Makefile
-index 6a5d08f..b40e588 100644
 a/Makefile
-+++ b/Makefile
-@@ -14,8 +14,16 @@ install:
-   $(MAKE) -C src install
-   $(MAKE) -C toplevel install
- 
-+findlib-install:
-+  $(MAKE) -C src findlib-install
-+  $(MAKE) -C toplevel install
-+
- uninstall:
-   $(MAKE) -C src uninstall
-   $(MAKE) -C toplevel uninstall
- 
--.PHONY: all test clean install uninstall
-+findlib-uninstall:
-+  $(MAKE) -C src findlib-uninstall
-+  $(MAKE) -C toplevel uninstall
-+
-+.PHONY: all test clean install uninstall findlib-install findlib-uninstall
-diff --git a/src/META b/src/META.in
-similarity index 72%
-rename from src/META
-rename to src/META.in
-index 66ac170..b5678b7 100644
 a/src/META
-+++ b/src/META.in
-@@ -1,6 +1,8 @@
- # This META is the one provided b

[arch-commits] Commit in ocaml-num/repos/community-x86_64 (4 files)

2018-11-28 Thread Jürgen Hötzel via arch-commits
Date: Thursday, November 29, 2018 @ 07:17:43
  Author: juergen
Revision: 410517

archrelease: copy trunk to community-x86_64

Added:
  ocaml-num/repos/community-x86_64/PKGBUILD
(from rev 410516, ocaml-num/trunk/PKGBUILD)
  ocaml-num/repos/community-x86_64/provide-findlib-install-target.patch
(from rev 410516, ocaml-num/trunk/provide-findlib-install-target.patch)
Deleted:
  ocaml-num/repos/community-x86_64/PKGBUILD
  ocaml-num/repos/community-x86_64/provide-findlib-install-target.patch

--+
 PKGBUILD |   74 +--
 provide-findlib-install-target.patch |  214 -
 2 files changed, 144 insertions(+), 144 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-11-29 07:17:35 UTC (rev 410516)
+++ PKGBUILD2018-11-29 07:17:43 UTC (rev 410517)
@@ -1,37 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-
-pkgname=ocaml-num
-pkgver=1.1
-pkgrel=2
-pkgdesc="Library for arbitrary-precision integer and rational arithmetic that 
used to be part of the OCaml core distribution"
-arch=('x86_64')
-url="https://github.com/ocaml/num";
-license=('LGPL2.1')
-depends=('ocaml')
-makedepends=('ocaml-findlib')
-options=('!strip' '!makeflags')
-source=($pkgname-$pkgver.tar.gz::https://github.com/ocaml/num/archive/v$pkgver.tar.gz
-provide-findlib-install-target.patch)
-sha256sums=('04ac85f6465b9b2bf99e814ddc798a25bcadb3cca2667b74c1af02b6356893f6'
-'a5d6bcb0383e6246da26137d8306c767d9ea5877f67b39db9232d35b5406322d')
-
-prepare() {
-  cd "$srcdir/num-$pkgver"
-  patch -p1 < "$srcdir/provide-findlib-install-target.patch"
-}
-
-build() {
-  cd "$srcdir/num-$pkgver"
-  make
-}
-
-package() {
-  cd "$srcdir/num-$pkgver"
-
-  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
-  install -d "$_destdir/stublibs"
-
-  make OCAMLFIND_DESTDIR="$_destdir" findlib-install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ocaml-num/repos/community-x86_64/PKGBUILD (from rev 410516, 
ocaml-num/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-11-29 07:17:43 UTC (rev 410517)
@@ -0,0 +1,37 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=ocaml-num
+pkgver=1.1
+pkgrel=3
+pkgdesc="Library for arbitrary-precision integer and rational arithmetic that 
used to be part of the OCaml core distribution"
+arch=('x86_64')
+url="https://github.com/ocaml/num";
+license=('LGPL2.1')
+depends=('ocaml')
+makedepends=('ocaml-findlib')
+options=('!strip' '!makeflags')
+source=($pkgname-$pkgver.tar.gz::https://github.com/ocaml/num/archive/v$pkgver.tar.gz
+provide-findlib-install-target.patch)
+sha256sums=('04ac85f6465b9b2bf99e814ddc798a25bcadb3cca2667b74c1af02b6356893f6'
+'a5d6bcb0383e6246da26137d8306c767d9ea5877f67b39db9232d35b5406322d')
+
+prepare() {
+  cd "$srcdir/num-$pkgver"
+  patch -p1 < "$srcdir/provide-findlib-install-target.patch"
+}
+
+build() {
+  cd "$srcdir/num-$pkgver"
+  make
+}
+
+package() {
+  cd "$srcdir/num-$pkgver"
+
+  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
+  install -d "$_destdir/stublibs"
+
+  make OCAMLFIND_DESTDIR="$_destdir" findlib-install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: provide-findlib-install-target.patch
===
--- provide-findlib-install-target.patch2018-11-29 07:17:35 UTC (rev 
410516)
+++ provide-findlib-install-target.patch2018-11-29 07:17:43 UTC (rev 
410517)
@@ -1,107 +0,0 @@
-From 12dff1ac0a8cacbda2969b560f021ebb73b16887 Mon Sep 17 00:00:00 2001
-From: David Allsopp 
-Date: Thu, 11 Jan 2018 08:10:10 +
-Subject: [PATCH] Provide findlib-install target (#6)
-
-Allows installing the entire library using ocamlfind, in an ocamlfind-managed 
directory.
-This differs from the `install` target which performs the old-style 
installation in the OCaml stdlib directory.

- .gitignore|  1 +
- Makefile  | 10 +-
- src/{META => META.in} |  4 +++-
- src/Makefile  | 17 +++--
- 4 files changed, 28 insertions(+), 4 deletions(-)
- rename src/{META => META.in} (72%)
-
-diff --git a/.gitignore b/.gitignore
-index 6acd3bc..172bf23 100644
 a/.gitignore
-+++ b/.gitignore
-@@ -8,3 +8,4 @@
- *.cmx[as]
- *.cmti
- *.annot
-+src/META
-diff --git a/Makefile b/Makefile
-index 6a5d08f..b40e588 100644
 a/Makefile
-+++ b/Makefile
-@@ -14,8 +14,16 @@ install:
-   $(MAKE) -C src install
-   $(MAKE) -C toplevel install
- 
-+findlib-install:
-+  $(MAKE) -C src findlib-install
-+  $(MAKE) -C toplevel install
-+
- uninstall:
-   $(MAKE) -C src uninstall
-   $(MAKE) -C toplevel uninstall
- 
--.PHONY: all test clean install uninstall
-+findlib-uninstall:
-+  $(MAKE) -C src findlib-uninstall
-+  $(MAKE) -C toplevel uninstall
-+
-+.PHONY: all test clean install uninstall findlib-inst

[arch-commits] Commit in ocaml-num/repos/community-x86_64 (4 files)

2018-08-14 Thread Jürgen Hötzel via arch-commits
Date: Tuesday, August 14, 2018 @ 15:30:01
  Author: juergen
Revision: 371523

archrelease: copy trunk to community-x86_64

Added:
  ocaml-num/repos/community-x86_64/PKGBUILD
(from rev 371522, ocaml-num/trunk/PKGBUILD)
  ocaml-num/repos/community-x86_64/provide-findlib-install-target.patch
(from rev 371522, ocaml-num/trunk/provide-findlib-install-target.patch)
Deleted:
  ocaml-num/repos/community-x86_64/PKGBUILD
  ocaml-num/repos/community-x86_64/provide-findlib-install-target.patch

--+
 PKGBUILD |   74 +--
 provide-findlib-install-target.patch |  214 -
 2 files changed, 144 insertions(+), 144 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-08-14 15:29:47 UTC (rev 371522)
+++ PKGBUILD2018-08-14 15:30:01 UTC (rev 371523)
@@ -1,37 +0,0 @@
-# Maintainer: Baptiste Jonglez 
-
-pkgname=ocaml-num
-pkgver=1.1
-pkgrel=1
-pkgdesc="Library for arbitrary-precision integer and rational arithmetic that 
used to be part of the OCaml core distribution"
-arch=('x86_64')
-url="https://github.com/ocaml/num";
-license=('LGPL2.1')
-depends=('ocaml')
-makedepends=('ocaml-findlib')
-options=('!strip' '!makeflags')
-source=($pkgname-$pkgver.tar.gz::https://github.com/ocaml/num/archive/v$pkgver.tar.gz
-provide-findlib-install-target.patch)
-sha256sums=('04ac85f6465b9b2bf99e814ddc798a25bcadb3cca2667b74c1af02b6356893f6'
-'a5d6bcb0383e6246da26137d8306c767d9ea5877f67b39db9232d35b5406322d')
-
-prepare() {
-  cd "$srcdir/num-$pkgver"
-  patch -p1 < "$srcdir/provide-findlib-install-target.patch"
-}
-
-build() {
-  cd "$srcdir/num-$pkgver"
-  make
-}
-
-package() {
-  cd "$srcdir/num-$pkgver"
-
-  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
-  install -d "$_destdir/stublibs"
-
-  make OCAMLFIND_DESTDIR="$_destdir" findlib-install
-}
-
-# vim:set ts=2 sw=2 et:

Copied: ocaml-num/repos/community-x86_64/PKGBUILD (from rev 371522, 
ocaml-num/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2018-08-14 15:30:01 UTC (rev 371523)
@@ -0,0 +1,37 @@
+# Maintainer: Baptiste Jonglez 
+
+pkgname=ocaml-num
+pkgver=1.1
+pkgrel=2
+pkgdesc="Library for arbitrary-precision integer and rational arithmetic that 
used to be part of the OCaml core distribution"
+arch=('x86_64')
+url="https://github.com/ocaml/num";
+license=('LGPL2.1')
+depends=('ocaml')
+makedepends=('ocaml-findlib')
+options=('!strip' '!makeflags')
+source=($pkgname-$pkgver.tar.gz::https://github.com/ocaml/num/archive/v$pkgver.tar.gz
+provide-findlib-install-target.patch)
+sha256sums=('04ac85f6465b9b2bf99e814ddc798a25bcadb3cca2667b74c1af02b6356893f6'
+'a5d6bcb0383e6246da26137d8306c767d9ea5877f67b39db9232d35b5406322d')
+
+prepare() {
+  cd "$srcdir/num-$pkgver"
+  patch -p1 < "$srcdir/provide-findlib-install-target.patch"
+}
+
+build() {
+  cd "$srcdir/num-$pkgver"
+  make
+}
+
+package() {
+  cd "$srcdir/num-$pkgver"
+
+  local _destdir="$pkgdir$(ocamlfind printconf destdir)"
+  install -d "$_destdir/stublibs"
+
+  make OCAMLFIND_DESTDIR="$_destdir" findlib-install
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: provide-findlib-install-target.patch
===
--- provide-findlib-install-target.patch2018-08-14 15:29:47 UTC (rev 
371522)
+++ provide-findlib-install-target.patch2018-08-14 15:30:01 UTC (rev 
371523)
@@ -1,107 +0,0 @@
-From 12dff1ac0a8cacbda2969b560f021ebb73b16887 Mon Sep 17 00:00:00 2001
-From: David Allsopp 
-Date: Thu, 11 Jan 2018 08:10:10 +
-Subject: [PATCH] Provide findlib-install target (#6)
-
-Allows installing the entire library using ocamlfind, in an ocamlfind-managed 
directory.
-This differs from the `install` target which performs the old-style 
installation in the OCaml stdlib directory.

- .gitignore|  1 +
- Makefile  | 10 +-
- src/{META => META.in} |  4 +++-
- src/Makefile  | 17 +++--
- 4 files changed, 28 insertions(+), 4 deletions(-)
- rename src/{META => META.in} (72%)
-
-diff --git a/.gitignore b/.gitignore
-index 6acd3bc..172bf23 100644
 a/.gitignore
-+++ b/.gitignore
-@@ -8,3 +8,4 @@
- *.cmx[as]
- *.cmti
- *.annot
-+src/META
-diff --git a/Makefile b/Makefile
-index 6a5d08f..b40e588 100644
 a/Makefile
-+++ b/Makefile
-@@ -14,8 +14,16 @@ install:
-   $(MAKE) -C src install
-   $(MAKE) -C toplevel install
- 
-+findlib-install:
-+  $(MAKE) -C src findlib-install
-+  $(MAKE) -C toplevel install
-+
- uninstall:
-   $(MAKE) -C src uninstall
-   $(MAKE) -C toplevel uninstall
- 
--.PHONY: all test clean install uninstall
-+findlib-uninstall:
-+  $(MAKE) -C src findlib-uninstall
-+  $(MAKE) -C toplevel uninstall
-+
-+.PHONY: all test clean install uninstall findlib-install