public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2016-03-03 13:33 Alexis Ballier
  0 siblings, 0 replies; 27+ messages in thread
From: Alexis Ballier @ 2016-03-03 13:33 UTC (permalink / raw
  To: gentoo-commits

commit:     86ad5a0e551a7299c4eee12a5a5848024584d958
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Mar  3 13:32:45 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Mar  3 13:32:52 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86ad5a0e

dev-ml/camlzip: make ocaml 4.03 patch conditional as it breaks older ocaml

Package-Manager: portage-2.2.27
Signed-off-by: Alexis Ballier <aballier <AT> gentoo.org>

 dev-ml/camlzip/camlzip-1.05.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/camlzip/camlzip-1.05.ebuild b/dev-ml/camlzip/camlzip-1.05.ebuild
index bbd81fc..f95082e 100644
--- a/dev-ml/camlzip/camlzip-1.05.ebuild
+++ b/dev-ml/camlzip/camlzip-1.05.ebuild
@@ -21,7 +21,7 @@ RDEPEND=">=dev-lang/ocaml-3.10.2:=[ocamlopt?]
 DEPEND="${RDEPEND}"
 
 src_prepare() {
-	epatch "${FILESDIR}/ocaml-4.03.patch"
+	has_version '>=dev-lang/ocaml-4.03.0_beta1' && epatch "${FILESDIR}/ocaml-4.03.patch"
 }
 
 src_compile() {


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2016-09-05 12:12 Alexis Ballier
  0 siblings, 0 replies; 27+ messages in thread
From: Alexis Ballier @ 2016-09-05 12:12 UTC (permalink / raw
  To: gentoo-commits

commit:     48d6b8383c1261fb6c1b3d15fbe311eb4b14f865
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Mon Sep  5 12:12:34 2016 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Mon Sep  5 12:12:39 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48d6b838

dev-ml/camlzip: bump to 1.06

Package-Manager: portage-2.3.0

 dev-ml/camlzip/Manifest            |  1 +
 dev-ml/camlzip/camlzip-1.06.ebuild | 35 +++++++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/dev-ml/camlzip/Manifest b/dev-ml/camlzip/Manifest
index bb47bb4..2ba048a 100644
--- a/dev-ml/camlzip/Manifest
+++ b/dev-ml/camlzip/Manifest
@@ -1 +1,2 @@
 DIST camlzip-1.05.tar.gz 25817 SHA256 930b70c736ab5a7ed1b05220102310a0a2241564786657abe418e834a538d06b SHA512 5128243fc7528e5ec6cbb7d9b121e8cb0b6d486a95a82161cd74cafe05454602c9952ed6fee3d38a53614e5ecdc20ef88437681107c5952bf85b8f8c78bf042d WHIRLPOOL 26d2bf8d08a425b2297a913ec140fdfff78a31eb9a09e3641b38face44994c2f322354fddd9b96c003df74479e3d40dd12b5d9243160eeadd466b66e896b1acd
+DIST camlzip-1.06.tar.gz 26499 SHA256 c83877f9972943e6f2e147cf9715a785da2fc8531e7bed3ab4787043b8f4cf54 SHA512 5ef0172927106589620678897f12f054533503a5cf13df71bf4deda43f223d0cd6acce118977e87bce53afe289f367b851f192a8e693274c2bd13549121019dd WHIRLPOOL a83ad24836d64adc00324f44ce5f3877c8d912afe14dcb0ad5b8788a52dfe777b2b582e240e74ed24bda950ca0202505792e62f9c205f0a5f39c33918e70217a

diff --git a/dev-ml/camlzip/camlzip-1.06.ebuild b/dev-ml/camlzip/camlzip-1.06.ebuild
new file mode 100644
index 00000000..750167f
--- /dev/null
+++ b/dev-ml/camlzip/camlzip-1.06.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit findlib eutils
+
+IUSE="+ocamlopt"
+
+DESCRIPTION="Compressed file access ML library (ZIP, GZIP and JAR)"
+HOMEPAGE="http://forge.ocamlcore.org/projects/camlzip/"
+SRC_URI="http://forge.ocamlcore.org/frs/download.php/1616/${P}.tar.gz"
+
+SLOT="1/${PV}"
+LICENSE="LGPL-2.1"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+
+RDEPEND=">=dev-lang/ocaml-4.02:=[ocamlopt?]
+		>=sys-libs/zlib-1.1.3"
+DEPEND="${RDEPEND}"
+
+src_compile() {
+	emake all
+	if use ocamlopt; then
+		emake allopt
+	fi
+}
+
+src_install() {
+	findlib_src_preinst
+	emake DESTDIR="${D}" install-findlib
+
+	dodoc README Changes
+}


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2017-01-25 10:58 Agostino Sarubbo
  0 siblings, 0 replies; 27+ messages in thread
From: Agostino Sarubbo @ 2017-01-25 10:58 UTC (permalink / raw
  To: gentoo-commits

commit:     409a2eae6f5efa4afcd57e2310cfd72db960667c
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 25 10:57:41 2017 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Jan 25 10:57:41 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=409a2eae

dev-ml/camlzip: x86 stable wrt bug #607028

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-ml/camlzip/camlzip-1.06.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/camlzip/camlzip-1.06.ebuild b/dev-ml/camlzip/camlzip-1.06.ebuild
index 750167f..7d22051 100644
--- a/dev-ml/camlzip/camlzip-1.06.ebuild
+++ b/dev-ml/camlzip/camlzip-1.06.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -14,7 +14,7 @@ SRC_URI="http://forge.ocamlcore.org/frs/download.php/1616/${P}.tar.gz"
 
 SLOT="1/${PV}"
 LICENSE="LGPL-2.1"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+KEYWORDS="~amd64 ~ppc x86 ~x86-fbsd"
 
 RDEPEND=">=dev-lang/ocaml-4.02:=[ocamlopt?]
 		>=sys-libs/zlib-1.1.3"


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2017-01-25 14:29 Agostino Sarubbo
  0 siblings, 0 replies; 27+ messages in thread
From: Agostino Sarubbo @ 2017-01-25 14:29 UTC (permalink / raw
  To: gentoo-commits

commit:     f468b6381c3430f540cc28d17a36611676a8af48
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 25 14:28:22 2017 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Wed Jan 25 14:28:22 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f468b638

dev-ml/camlzip: amd64 stable wrt bug #607028

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-ml/camlzip/camlzip-1.06.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/camlzip/camlzip-1.06.ebuild b/dev-ml/camlzip/camlzip-1.06.ebuild
index 7d22051..5d53eaf 100644
--- a/dev-ml/camlzip/camlzip-1.06.ebuild
+++ b/dev-ml/camlzip/camlzip-1.06.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://forge.ocamlcore.org/frs/download.php/1616/${P}.tar.gz"
 
 SLOT="1/${PV}"
 LICENSE="LGPL-2.1"
-KEYWORDS="~amd64 ~ppc x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ppc x86 ~x86-fbsd"
 
 RDEPEND=">=dev-lang/ocaml-4.02:=[ocamlopt?]
 		>=sys-libs/zlib-1.1.3"


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2017-01-26 11:00 Agostino Sarubbo
  0 siblings, 0 replies; 27+ messages in thread
From: Agostino Sarubbo @ 2017-01-26 11:00 UTC (permalink / raw
  To: gentoo-commits

commit:     ed82ab588070abe0e00bd4285b4afbde6ee7b03a
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 26 10:58:02 2017 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Jan 26 11:00:35 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed82ab58

dev-ml/camlzip: ppc stable wrt bug #607028

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-ml/camlzip/camlzip-1.06.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/camlzip/camlzip-1.06.ebuild b/dev-ml/camlzip/camlzip-1.06.ebuild
index 5d53eaf..173b3e6 100644
--- a/dev-ml/camlzip/camlzip-1.06.ebuild
+++ b/dev-ml/camlzip/camlzip-1.06.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://forge.ocamlcore.org/frs/download.php/1616/${P}.tar.gz"
 
 SLOT="1/${PV}"
 LICENSE="LGPL-2.1"
-KEYWORDS="amd64 ~ppc x86 ~x86-fbsd"
+KEYWORDS="amd64 ppc x86 ~x86-fbsd"
 
 RDEPEND=">=dev-lang/ocaml-4.02:=[ocamlopt?]
 		>=sys-libs/zlib-1.1.3"


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2017-02-07 13:19 Alexis Ballier
  0 siblings, 0 replies; 27+ messages in thread
From: Alexis Ballier @ 2017-02-07 13:19 UTC (permalink / raw
  To: gentoo-commits

commit:     0113fd6c739fa174f5fb802fc442b77ec6583565
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Tue Feb  7 13:19:03 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Tue Feb  7 13:19:13 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0113fd6c

dev-ml/camlzip: Bump to 1.07

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-ml/camlzip/Manifest            |  1 +
 dev-ml/camlzip/camlzip-1.07.ebuild | 37 +++++++++++++++++++++++++++++++++++++
 2 files changed, 38 insertions(+)

diff --git a/dev-ml/camlzip/Manifest b/dev-ml/camlzip/Manifest
index 8311173..6839239 100644
--- a/dev-ml/camlzip/Manifest
+++ b/dev-ml/camlzip/Manifest
@@ -1 +1,2 @@
 DIST camlzip-1.06.tar.gz 26499 SHA256 c83877f9972943e6f2e147cf9715a785da2fc8531e7bed3ab4787043b8f4cf54 SHA512 5ef0172927106589620678897f12f054533503a5cf13df71bf4deda43f223d0cd6acce118977e87bce53afe289f367b851f192a8e693274c2bd13549121019dd WHIRLPOOL a83ad24836d64adc00324f44ce5f3877c8d912afe14dcb0ad5b8788a52dfe777b2b582e240e74ed24bda950ca0202505792e62f9c205f0a5f39c33918e70217a
+DIST camlzip-1.07.tar.gz 26652 SHA256 2f4df4df258b8bca89176a5c4200a6920eccb3134f3df70d61a67e16fd1fbfdd SHA512 b92e9db002b9b398fd132c6ecd8098fac4cc7ddb3f770cc412990dcdf4bd62ba358c762d31fb0b5cd6b32f20d3bf4b3410ca6e86c511a438b92ece940f9831bd WHIRLPOOL 94e6a8cb2f70104f864b2dc4e52efd0c93082315b2dc32a7d32f4d7f5398811af1ac992021310a6ad9a4850347e4cc73acb240ac2551d33d45a7eb4f28bdd30e

diff --git a/dev-ml/camlzip/camlzip-1.07.ebuild b/dev-ml/camlzip/camlzip-1.07.ebuild
new file mode 100644
index 00000000..447007f
--- /dev/null
+++ b/dev-ml/camlzip/camlzip-1.07.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit findlib eutils versionator
+
+IUSE="+ocamlopt"
+
+DESCRIPTION="Compressed file access ML library (ZIP, GZIP and JAR)"
+HOMEPAGE="https://github.com/xavierleroy/camlzip"
+SRC_URI="https://github.com/xavierleroy/camlzip/archive/rel$(delete_all_version_separators ${PV}).tar.gz -> ${P}.tar.gz"
+
+SLOT="1/${PV}"
+LICENSE="LGPL-2.1"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+
+RDEPEND=">=dev-lang/ocaml-4.02:=[ocamlopt?]
+		>=sys-libs/zlib-1.1.3"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${PN}-rel$(delete_all_version_separators ${PV})"
+
+src_compile() {
+	emake all
+	if use ocamlopt; then
+		emake allopt
+	fi
+}
+
+src_install() {
+	findlib_src_preinst
+	emake DESTDIR="${D}" install-findlib
+
+	dodoc README Changes
+}


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2017-03-09 21:31 Alexis Ballier
  0 siblings, 0 replies; 27+ messages in thread
From: Alexis Ballier @ 2017-03-09 21:31 UTC (permalink / raw
  To: gentoo-commits

commit:     3fec2a7acddbbdec357028f1d89eea52050ffbb4
Author:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
AuthorDate: Thu Mar  9 20:43:41 2017 +0000
Commit:     Alexis Ballier <aballier <AT> gentoo <DOT> org>
CommitDate: Thu Mar  9 21:31:39 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fec2a7a

dev-ml/camlzip: keyword ~arm

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 dev-ml/camlzip/camlzip-1.07.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/camlzip/camlzip-1.07.ebuild b/dev-ml/camlzip/camlzip-1.07.ebuild
index 28dfe886021..78c91d3151d 100644
--- a/dev-ml/camlzip/camlzip-1.07.ebuild
+++ b/dev-ml/camlzip/camlzip-1.07.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/xavierleroy/camlzip/archive/rel$(delete_all_version_
 
 SLOT="1/${PV}"
 LICENSE="LGPL-2.1"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+KEYWORDS="~amd64 ~arm ~ppc ~x86 ~x86-fbsd"
 
 RDEPEND=">=dev-lang/ocaml-4.02:=[ocamlopt?]
 		>=sys-libs/zlib-1.1.3"


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2018-12-15  9:19 Mikle Kolyada
  0 siblings, 0 replies; 27+ messages in thread
From: Mikle Kolyada @ 2018-12-15  9:19 UTC (permalink / raw
  To: gentoo-commits

commit:     e6348ab3cb80f78eaf975229c28da7560650f5a4
Author:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 15 09:18:16 2018 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Sat Dec 15 09:19:07 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6348ab3

dev-ml/camlzip: amd64 stable wrt bug #672444

Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 dev-ml/camlzip/camlzip-1.07.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/camlzip/camlzip-1.07.ebuild b/dev-ml/camlzip/camlzip-1.07.ebuild
index 23881c07e55..1300c18945f 100644
--- a/dev-ml/camlzip/camlzip-1.07.ebuild
+++ b/dev-ml/camlzip/camlzip-1.07.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/xavierleroy/camlzip/archive/rel$(delete_all_version_
 
 SLOT="1/${PV}"
 LICENSE="LGPL-2.1"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~x86 ~x86-fbsd"
 
 RDEPEND=">=dev-lang/ocaml-4.02:=[ocamlopt?]
 		>=sys-libs/zlib-1.1.3"


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2020-02-17  7:35 Alfredo Tupone
  0 siblings, 0 replies; 27+ messages in thread
From: Alfredo Tupone @ 2020-02-17  7:35 UTC (permalink / raw
  To: gentoo-commits

commit:     1fc431bc2806da596754fb525faab6b9f7690116
Author:     Tupone Alfredo <tupone <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 17 07:34:56 2020 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Mon Feb 17 07:34:56 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fc431bc

dev-ml/camlzip: Version bump to 1.10

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-ml/camlzip/Manifest            |  1 +
 dev-ml/camlzip/camlzip-1.10.ebuild | 37 +++++++++++++++++++++++++++++++++++++
 dev-ml/camlzip/metadata.xml        |  5 ++++-
 3 files changed, 42 insertions(+), 1 deletion(-)

diff --git a/dev-ml/camlzip/Manifest b/dev-ml/camlzip/Manifest
index 7f733dd0ac0..8b3dab8a648 100644
--- a/dev-ml/camlzip/Manifest
+++ b/dev-ml/camlzip/Manifest
@@ -1,2 +1,3 @@
 DIST camlzip-1.06.tar.gz 26499 BLAKE2B a7a1dbe157c0dcb9847bcd6324bbb7cbaf39342d0fdbaed51d2c004ae7b03f8d655fb15da50dae6190b976675e405e28fa2d4fa35a2f4372c50519564d58f981 SHA512 5ef0172927106589620678897f12f054533503a5cf13df71bf4deda43f223d0cd6acce118977e87bce53afe289f367b851f192a8e693274c2bd13549121019dd
 DIST camlzip-1.07.tar.gz 26652 BLAKE2B f373ac0427faa9b6a846e9db8f3e48c00ec6885b8a11cc09fae96b5a7656908f172fda73dbea8ddd1b3dbfd98bcfa3e2e67ce9faf2942d1e260fc0a804813a05 SHA512 b92e9db002b9b398fd132c6ecd8098fac4cc7ddb3f770cc412990dcdf4bd62ba358c762d31fb0b5cd6b32f20d3bf4b3410ca6e86c511a438b92ece940f9831bd
+DIST camlzip-1.10.tar.gz 27335 BLAKE2B bbf24953634278589395dd9fcedf1e3becce8dad1f380393dc3ac59589143e1685dc14085ef566e12fb751c6f1a333dd368795a5083b94a43b71e058e86489f3 SHA512 5c42e0d808230e3820b2e7ef34b544ca51a7bf0a484ce4e1c8b1e4966133196bb3ff7c3ca85b9c50050aca389316eb52f0335f6e2ad60c000594a33171b9a9a9

diff --git a/dev-ml/camlzip/camlzip-1.10.ebuild b/dev-ml/camlzip/camlzip-1.10.ebuild
new file mode 100644
index 00000000000..3c6a128e841
--- /dev/null
+++ b/dev-ml/camlzip/camlzip-1.10.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit findlib
+
+IUSE="+ocamlopt"
+
+DESCRIPTION="Compressed file access ML library (ZIP, GZIP and JAR)"
+HOMEPAGE="https://github.com/xavierleroy/camlzip"
+SRC_URI="https://github.com/xavierleroy/camlzip/archive/rel$(ver_rs 1- '').tar.gz -> ${P}.tar.gz"
+
+SLOT="1/${PV}"
+LICENSE="LGPL-2.1"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
+
+RDEPEND=">=dev-lang/ocaml-4.02:=[ocamlopt?]
+		>=sys-libs/zlib-1.1.3"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${PN}-rel$(ver_rs 1- '')"
+
+src_compile() {
+	emake all
+	if use ocamlopt; then
+		emake allopt
+	fi
+}
+
+src_install() {
+	findlib_src_preinst
+	emake DESTDIR="${D}" install-findlib
+	dosym zip/libcamlzip.a /usr/$(get_libdir)/ocaml/libcamlzip.a
+
+	dodoc README Changes
+}

diff --git a/dev-ml/camlzip/metadata.xml b/dev-ml/camlzip/metadata.xml
index 57e9234a0ba..e9aafd4d014 100644
--- a/dev-ml/camlzip/metadata.xml
+++ b/dev-ml/camlzip/metadata.xml
@@ -1,7 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<!-- maintainer-needed -->
+	<maintainer type="person">
+		<email>tupone@gentoo.org</email>
+		<name>Tupone Alfredo</name>
+	</maintainer>
 	<upstream>
 		<remote-id type="github">xavierleroy/camlzip</remote-id>
 	</upstream>


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2020-03-27 12:41 Alfredo Tupone
  0 siblings, 0 replies; 27+ messages in thread
From: Alfredo Tupone @ 2020-03-27 12:41 UTC (permalink / raw
  To: gentoo-commits

commit:     6ab24eb543fb1f294859c09422935c0a47bc96ed
Author:     Tupone Alfredo <tupone <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 27 12:40:55 2020 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Fri Mar 27 12:40:55 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ab24eb5

dev-ml/camlzip: requires a newer version of ocaml

Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-ml/camlzip/camlzip-1.06.ebuild | 4 ++--
 dev-ml/camlzip/camlzip-1.07.ebuild | 4 ++--
 dev-ml/camlzip/camlzip-1.10.ebuild | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-ml/camlzip/camlzip-1.06.ebuild b/dev-ml/camlzip/camlzip-1.06.ebuild
index 8a4ec3d9cb7..4fed4a00664 100644
--- a/dev-ml/camlzip/camlzip-1.06.ebuild
+++ b/dev-ml/camlzip/camlzip-1.06.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -15,7 +15,7 @@ SLOT="1/${PV}"
 LICENSE="LGPL-2.1"
 KEYWORDS="amd64 ppc x86"
 
-RDEPEND=">=dev-lang/ocaml-4.02:=[ocamlopt?]
+RDEPEND=">=dev-lang/ocaml-4.05:=[ocamlopt?]
 		>=sys-libs/zlib-1.1.3"
 DEPEND="${RDEPEND}"
 

diff --git a/dev-ml/camlzip/camlzip-1.07.ebuild b/dev-ml/camlzip/camlzip-1.07.ebuild
index b2c4551b079..547fe00d0c8 100644
--- a/dev-ml/camlzip/camlzip-1.07.ebuild
+++ b/dev-ml/camlzip/camlzip-1.07.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -15,7 +15,7 @@ SLOT="1/${PV}"
 LICENSE="LGPL-2.1"
 KEYWORDS="amd64 ~arm ~arm64 ~ppc ~x86"
 
-RDEPEND=">=dev-lang/ocaml-4.02:=[ocamlopt?]
+RDEPEND=">=dev-lang/ocaml-4.05:=[ocamlopt?]
 		>=sys-libs/zlib-1.1.3"
 DEPEND="${RDEPEND}"
 

diff --git a/dev-ml/camlzip/camlzip-1.10.ebuild b/dev-ml/camlzip/camlzip-1.10.ebuild
index 3c6a128e841..8158861f609 100644
--- a/dev-ml/camlzip/camlzip-1.10.ebuild
+++ b/dev-ml/camlzip/camlzip-1.10.ebuild
@@ -15,7 +15,7 @@ SLOT="1/${PV}"
 LICENSE="LGPL-2.1"
 KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
 
-RDEPEND=">=dev-lang/ocaml-4.02:=[ocamlopt?]
+RDEPEND=">=dev-lang/ocaml-4.05:=[ocamlopt?]
 		>=sys-libs/zlib-1.1.3"
 DEPEND="${RDEPEND}"
 


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2020-06-14 11:35 Alfredo Tupone
  0 siblings, 0 replies; 27+ messages in thread
From: Alfredo Tupone @ 2020-06-14 11:35 UTC (permalink / raw
  To: gentoo-commits

commit:     28e3cdd8fa79e284c5be3ac72bdab084d516e7b8
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 14 11:35:01 2020 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sun Jun 14 11:35:01 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28e3cdd8

dev-ml/camlzip: Remove QA warning

Closes: https://bugs.gentoo.org/728036
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-ml/camlzip/camlzip-1.10.ebuild | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/dev-ml/camlzip/camlzip-1.10.ebuild b/dev-ml/camlzip/camlzip-1.10.ebuild
index 8158861f609..3596e887407 100644
--- a/dev-ml/camlzip/camlzip-1.10.ebuild
+++ b/dev-ml/camlzip/camlzip-1.10.ebuild
@@ -19,6 +19,11 @@ RDEPEND=">=dev-lang/ocaml-4.05:=[ocamlopt?]
 		>=sys-libs/zlib-1.1.3"
 DEPEND="${RDEPEND}"
 
+QA_FLAGS_IGNORED=(
+	"/usr/lib.*/ocaml/stublibs/dllcamlzip.so"
+	"/usr/lib.*/ocaml/zip/zip.cmxs"
+)
+
 S="${WORKDIR}/${PN}-rel$(ver_rs 1- '')"
 
 src_compile() {


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2020-10-25 23:19 Thomas Deutschmann
  0 siblings, 0 replies; 27+ messages in thread
From: Thomas Deutschmann @ 2020-10-25 23:19 UTC (permalink / raw
  To: gentoo-commits

commit:     2d5b5270f55a8ac79f7471af17281af1d62ba2de
Author:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
AuthorDate: Sun Oct 25 23:18:46 2020 +0000
Commit:     Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
CommitDate: Sun Oct 25 23:19:49 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d5b5270

dev-ml/camlzip: x86 stable (bug #750287)

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>

 dev-ml/camlzip/camlzip-1.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/camlzip/camlzip-1.10.ebuild b/dev-ml/camlzip/camlzip-1.10.ebuild
index 3596e887407..0b82886922a 100644
--- a/dev-ml/camlzip/camlzip-1.10.ebuild
+++ b/dev-ml/camlzip/camlzip-1.10.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/xavierleroy/camlzip/archive/rel$(ver_rs 1- '').tar.g
 
 SLOT="1/${PV}"
 LICENSE="LGPL-2.1"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc x86"
 
 RDEPEND=">=dev-lang/ocaml-4.05:=[ocamlopt?]
 		>=sys-libs/zlib-1.1.3"


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2020-10-26 21:18 Sam James
  0 siblings, 0 replies; 27+ messages in thread
From: Sam James @ 2020-10-26 21:18 UTC (permalink / raw
  To: gentoo-commits

commit:     08a664c87139b709f4848e7e8843422563cf5eb3
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 26 21:17:22 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Oct 26 21:18:15 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08a664c8

dev-ml/camlzip: Stabilize 1.10 ppc, #750287

Tested-by: ernsteiswuerfel <erhard_f <AT> mailbox.org>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ml/camlzip/camlzip-1.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/camlzip/camlzip-1.10.ebuild b/dev-ml/camlzip/camlzip-1.10.ebuild
index 0b82886922a..3c2f0370141 100644
--- a/dev-ml/camlzip/camlzip-1.10.ebuild
+++ b/dev-ml/camlzip/camlzip-1.10.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/xavierleroy/camlzip/archive/rel$(ver_rs 1- '').tar.g
 
 SLOT="1/${PV}"
 LICENSE="LGPL-2.1"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc x86"
+KEYWORDS="~amd64 ~arm ~arm64 ppc x86"
 
 RDEPEND=">=dev-lang/ocaml-4.05:=[ocamlopt?]
 		>=sys-libs/zlib-1.1.3"


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2020-10-28  3:36 Sam James
  0 siblings, 0 replies; 27+ messages in thread
From: Sam James @ 2020-10-28  3:36 UTC (permalink / raw
  To: gentoo-commits

commit:     8a99f934893572d2a85b66d436c91c10ad695590
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 28 03:33:57 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Oct 28 03:33:57 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a99f934

dev-ml/camlzip: ppc64 keyworded (bug #748576)

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ml/camlzip/camlzip-1.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/camlzip/camlzip-1.10.ebuild b/dev-ml/camlzip/camlzip-1.10.ebuild
index 3c2f0370141..1a6a83c8639 100644
--- a/dev-ml/camlzip/camlzip-1.10.ebuild
+++ b/dev-ml/camlzip/camlzip-1.10.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/xavierleroy/camlzip/archive/rel$(ver_rs 1- '').tar.g
 
 SLOT="1/${PV}"
 LICENSE="LGPL-2.1"
-KEYWORDS="~amd64 ~arm ~arm64 ppc x86"
+KEYWORDS="~amd64 ~arm ~arm64 ppc ~ppc64 x86"
 
 RDEPEND=">=dev-lang/ocaml-4.05:=[ocamlopt?]
 		>=sys-libs/zlib-1.1.3"


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2020-11-01 12:11 Sam James
  0 siblings, 0 replies; 27+ messages in thread
From: Sam James @ 2020-11-01 12:11 UTC (permalink / raw
  To: gentoo-commits

commit:     6cfb5b5a6cfe9b366d3c38e1897e8dee15cdbaf8
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Nov  1 12:11:14 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Nov  1 12:11:36 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cfb5b5a

dev-ml/camlzip: Stabilize 1.10 amd64, #750287

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ml/camlzip/camlzip-1.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/camlzip/camlzip-1.10.ebuild b/dev-ml/camlzip/camlzip-1.10.ebuild
index 1a6a83c8639..181f9c64d19 100644
--- a/dev-ml/camlzip/camlzip-1.10.ebuild
+++ b/dev-ml/camlzip/camlzip-1.10.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://github.com/xavierleroy/camlzip/archive/rel$(ver_rs 1- '').tar.g
 
 SLOT="1/${PV}"
 LICENSE="LGPL-2.1"
-KEYWORDS="~amd64 ~arm ~arm64 ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 x86"
 
 RDEPEND=">=dev-lang/ocaml-4.05:=[ocamlopt?]
 		>=sys-libs/zlib-1.1.3"


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2021-01-14  6:40 Alfredo Tupone
  0 siblings, 0 replies; 27+ messages in thread
From: Alfredo Tupone @ 2021-01-14  6:40 UTC (permalink / raw
  To: gentoo-commits

commit:     36f856d122c095718936579d81c50ac519369353
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 14 06:40:33 2021 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Thu Jan 14 06:40:33 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36f856d1

dev-ml/camlzip: ml maintains it

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-ml/camlzip/metadata.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ml/camlzip/metadata.xml b/dev-ml/camlzip/metadata.xml
index e9aafd4d014..5bec2e3de61 100644
--- a/dev-ml/camlzip/metadata.xml
+++ b/dev-ml/camlzip/metadata.xml
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
-		<email>tupone@gentoo.org</email>
-		<name>Tupone Alfredo</name>
+	<maintainer type="project">
+		<email>ml@gentoo.org</email>
+		<name>ML</name>
 	</maintainer>
 	<upstream>
 		<remote-id type="github">xavierleroy/camlzip</remote-id>


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2021-01-24 17:48 Sam James
  0 siblings, 0 replies; 27+ messages in thread
From: Sam James @ 2021-01-24 17:48 UTC (permalink / raw
  To: gentoo-commits

commit:     1b2b94f4ecc6daa0e28a8d0d1dc12730e9d28527
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 24 17:48:20 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jan 24 17:48:20 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b2b94f4

dev-ml/camlzip: port to EAPI 7

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ml/camlzip/camlzip-1.06.ebuild | 16 +++++++++-------
 dev-ml/camlzip/camlzip-1.07.ebuild | 17 ++++++++---------
 dev-ml/camlzip/camlzip-1.10.ebuild |  9 ++++-----
 3 files changed, 21 insertions(+), 21 deletions(-)

diff --git a/dev-ml/camlzip/camlzip-1.06.ebuild b/dev-ml/camlzip/camlzip-1.06.ebuild
index 4fed4a00664..ea2362cc8b9 100644
--- a/dev-ml/camlzip/camlzip-1.06.ebuild
+++ b/dev-ml/camlzip/camlzip-1.06.ebuild
@@ -1,11 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="5"
+EAPI=7
 
-inherit findlib eutils
-
-IUSE="+ocamlopt"
+inherit findlib
 
 DESCRIPTION="Compressed file access ML library (ZIP, GZIP and JAR)"
 HOMEPAGE="http://forge.ocamlcore.org/projects/camlzip/"
@@ -14,9 +12,12 @@ SRC_URI="http://forge.ocamlcore.org/frs/download.php/1616/${P}.tar.gz"
 SLOT="1/${PV}"
 LICENSE="LGPL-2.1"
 KEYWORDS="amd64 ppc x86"
+IUSE="+ocamlopt"
 
-RDEPEND=">=dev-lang/ocaml-4.05:=[ocamlopt?]
-		>=sys-libs/zlib-1.1.3"
+RDEPEND="
+	>=dev-lang/ocaml-4.05:=[ocamlopt?]
+	>=sys-libs/zlib-1.1.3
+"
 DEPEND="${RDEPEND}"
 
 src_compile() {
@@ -28,6 +29,7 @@ src_compile() {
 
 src_install() {
 	findlib_src_preinst
+
 	emake DESTDIR="${D}" install-findlib
 
 	dodoc README Changes

diff --git a/dev-ml/camlzip/camlzip-1.07.ebuild b/dev-ml/camlzip/camlzip-1.07.ebuild
index 547fe00d0c8..448875803b1 100644
--- a/dev-ml/camlzip/camlzip-1.07.ebuild
+++ b/dev-ml/camlzip/camlzip-1.07.ebuild
@@ -1,26 +1,24 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="5"
+EAPI=7
 
-inherit findlib eutils versionator
-
-IUSE="+ocamlopt"
+inherit findlib
 
 DESCRIPTION="Compressed file access ML library (ZIP, GZIP and JAR)"
 HOMEPAGE="https://github.com/xavierleroy/camlzip"
-SRC_URI="https://github.com/xavierleroy/camlzip/archive/rel$(delete_all_version_separators ${PV}).tar.gz -> ${P}.tar.gz"
+SRC_URI="https://github.com/xavierleroy/camlzip/archive/rel$(ver_rs 1- '').tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-rel$(ver_rs 1- '')"
 
 SLOT="1/${PV}"
 LICENSE="LGPL-2.1"
 KEYWORDS="amd64 ~arm ~arm64 ~ppc ~x86"
+IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4.05:=[ocamlopt?]
-		>=sys-libs/zlib-1.1.3"
+	>=sys-libs/zlib-1.1.3"
 DEPEND="${RDEPEND}"
 
-S="${WORKDIR}/${PN}-rel$(delete_all_version_separators ${PV})"
-
 src_compile() {
 	emake all
 	if use ocamlopt; then
@@ -30,6 +28,7 @@ src_compile() {
 
 src_install() {
 	findlib_src_preinst
+
 	emake DESTDIR="${D}" install-findlib
 
 	dodoc README Changes

diff --git a/dev-ml/camlzip/camlzip-1.10.ebuild b/dev-ml/camlzip/camlzip-1.10.ebuild
index 181f9c64d19..244b689e332 100644
--- a/dev-ml/camlzip/camlzip-1.10.ebuild
+++ b/dev-ml/camlzip/camlzip-1.10.ebuild
@@ -1,19 +1,19 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
 inherit findlib
 
-IUSE="+ocamlopt"
-
 DESCRIPTION="Compressed file access ML library (ZIP, GZIP and JAR)"
 HOMEPAGE="https://github.com/xavierleroy/camlzip"
 SRC_URI="https://github.com/xavierleroy/camlzip/archive/rel$(ver_rs 1- '').tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-rel$(ver_rs 1- '')"
 
 SLOT="1/${PV}"
 LICENSE="LGPL-2.1"
 KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 x86"
+IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4.05:=[ocamlopt?]
 		>=sys-libs/zlib-1.1.3"
@@ -24,8 +24,6 @@ QA_FLAGS_IGNORED=(
 	"/usr/lib.*/ocaml/zip/zip.cmxs"
 )
 
-S="${WORKDIR}/${PN}-rel$(ver_rs 1- '')"
-
 src_compile() {
 	emake all
 	if use ocamlopt; then
@@ -35,6 +33,7 @@ src_compile() {
 
 src_install() {
 	findlib_src_preinst
+
 	emake DESTDIR="${D}" install-findlib
 	dosym zip/libcamlzip.a /usr/$(get_libdir)/ocaml/libcamlzip.a
 


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2021-02-10 16:33 Sam James
  0 siblings, 0 replies; 27+ messages in thread
From: Sam James @ 2021-02-10 16:33 UTC (permalink / raw
  To: gentoo-commits

commit:     71b348b0c6d98f4d3e5cbb161e57bdf25c9de9e1
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 10 16:32:50 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Feb 10 16:32:50 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71b348b0

dev-ml/camlzip: Stabilize 1.10 ppc64, #769317

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ml/camlzip/camlzip-1.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/camlzip/camlzip-1.10.ebuild b/dev-ml/camlzip/camlzip-1.10.ebuild
index 244b689e332..c4dffc0a9c0 100644
--- a/dev-ml/camlzip/camlzip-1.10.ebuild
+++ b/dev-ml/camlzip/camlzip-1.10.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/${PN}-rel$(ver_rs 1- '')"
 
 SLOT="1/${PV}"
 LICENSE="LGPL-2.1"
-KEYWORDS="amd64 ~arm ~arm64 ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 x86"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4.05:=[ocamlopt?]


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2021-03-14  0:48 Sam James
  0 siblings, 0 replies; 27+ messages in thread
From: Sam James @ 2021-03-14  0:48 UTC (permalink / raw
  To: gentoo-commits

commit:     32677ff84d60712f2eb44b0f124836b3e55d2ddb
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 14 00:44:43 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 14 00:47:50 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32677ff8

dev-ml/camlzip: Stabilize 1.10 arm64, #772833

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ml/camlzip/camlzip-1.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/camlzip/camlzip-1.10.ebuild b/dev-ml/camlzip/camlzip-1.10.ebuild
index 10629688ca7..d4658b1b6de 100644
--- a/dev-ml/camlzip/camlzip-1.10.ebuild
+++ b/dev-ml/camlzip/camlzip-1.10.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/${PN}-rel$(ver_rs 1- '')"
 
 SLOT="1/${PV}"
 LICENSE="LGPL-2.1"
-KEYWORDS="amd64 arm ~arm64 ppc ppc64 x86"
+KEYWORDS="amd64 arm arm64 ppc ppc64 x86"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4.05:=[ocamlopt?]


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2021-03-15  4:02 Sam James
  0 siblings, 0 replies; 27+ messages in thread
From: Sam James @ 2021-03-15  4:02 UTC (permalink / raw
  To: gentoo-commits

commit:     96716746045ff29b9219c6365746390f59780bb9
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 15 03:12:50 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Mar 15 04:01:49 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96716746

dev-ml/camlzip: drop 1.07

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ml/camlzip/Manifest            |  1 -
 dev-ml/camlzip/camlzip-1.07.ebuild | 35 -----------------------------------
 2 files changed, 36 deletions(-)

diff --git a/dev-ml/camlzip/Manifest b/dev-ml/camlzip/Manifest
index 263d292cb7a..2cb16e028b3 100644
--- a/dev-ml/camlzip/Manifest
+++ b/dev-ml/camlzip/Manifest
@@ -1,2 +1 @@
-DIST camlzip-1.07.tar.gz 26652 BLAKE2B f373ac0427faa9b6a846e9db8f3e48c00ec6885b8a11cc09fae96b5a7656908f172fda73dbea8ddd1b3dbfd98bcfa3e2e67ce9faf2942d1e260fc0a804813a05 SHA512 b92e9db002b9b398fd132c6ecd8098fac4cc7ddb3f770cc412990dcdf4bd62ba358c762d31fb0b5cd6b32f20d3bf4b3410ca6e86c511a438b92ece940f9831bd
 DIST camlzip-1.10.tar.gz 27335 BLAKE2B bbf24953634278589395dd9fcedf1e3becce8dad1f380393dc3ac59589143e1685dc14085ef566e12fb751c6f1a333dd368795a5083b94a43b71e058e86489f3 SHA512 5c42e0d808230e3820b2e7ef34b544ca51a7bf0a484ce4e1c8b1e4966133196bb3ff7c3ca85b9c50050aca389316eb52f0335f6e2ad60c000594a33171b9a9a9

diff --git a/dev-ml/camlzip/camlzip-1.07.ebuild b/dev-ml/camlzip/camlzip-1.07.ebuild
deleted file mode 100644
index 448875803b1..00000000000
--- a/dev-ml/camlzip/camlzip-1.07.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit findlib
-
-DESCRIPTION="Compressed file access ML library (ZIP, GZIP and JAR)"
-HOMEPAGE="https://github.com/xavierleroy/camlzip"
-SRC_URI="https://github.com/xavierleroy/camlzip/archive/rel$(ver_rs 1- '').tar.gz -> ${P}.tar.gz"
-S="${WORKDIR}/${PN}-rel$(ver_rs 1- '')"
-
-SLOT="1/${PV}"
-LICENSE="LGPL-2.1"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~x86"
-IUSE="+ocamlopt"
-
-RDEPEND=">=dev-lang/ocaml-4.05:=[ocamlopt?]
-	>=sys-libs/zlib-1.1.3"
-DEPEND="${RDEPEND}"
-
-src_compile() {
-	emake all
-	if use ocamlopt; then
-		emake allopt
-	fi
-}
-
-src_install() {
-	findlib_src_preinst
-
-	emake DESTDIR="${D}" install-findlib
-
-	dodoc README Changes
-}


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2021-10-06  1:02 Sam James
  0 siblings, 0 replies; 27+ messages in thread
From: Sam James @ 2021-10-06  1:02 UTC (permalink / raw
  To: gentoo-commits

commit:     15644176b54aadf106ddd2e9e765fe554da56e58
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Oct  6 00:53:59 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Oct  6 01:01:00 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15644176

dev-ml/camlzip: add 1.11

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ml/camlzip/Manifest            |  1 +
 dev-ml/camlzip/camlzip-1.11.ebuild | 42 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/dev-ml/camlzip/Manifest b/dev-ml/camlzip/Manifest
index 2cb16e028b3..d6e4ea7f08f 100644
--- a/dev-ml/camlzip/Manifest
+++ b/dev-ml/camlzip/Manifest
@@ -1 +1,2 @@
 DIST camlzip-1.10.tar.gz 27335 BLAKE2B bbf24953634278589395dd9fcedf1e3becce8dad1f380393dc3ac59589143e1685dc14085ef566e12fb751c6f1a333dd368795a5083b94a43b71e058e86489f3 SHA512 5c42e0d808230e3820b2e7ef34b544ca51a7bf0a484ce4e1c8b1e4966133196bb3ff7c3ca85b9c50050aca389316eb52f0335f6e2ad60c000594a33171b9a9a9
+DIST camlzip-1.11.tar.gz 28483 BLAKE2B b270e2a764547117d87a18f9ccca82891bc0dce182ea84f76b693acb34488ff25d8975154b843787554798bfd34c16dc6a25c431f8674c8c59eb2c195167c12b SHA512 4d69ef900437e66e00cd345497ec70f407f28cd8344ee5f2fad685d3bfe356924597d1854b752f2841b4007f96d6e0307cfae7e13cfb6f74951ae3eba5198a06

diff --git a/dev-ml/camlzip/camlzip-1.11.ebuild b/dev-ml/camlzip/camlzip-1.11.ebuild
new file mode 100644
index 00000000000..09d1e837bb6
--- /dev/null
+++ b/dev-ml/camlzip/camlzip-1.11.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit findlib
+
+DESCRIPTION="Compressed file access ML library (ZIP, GZIP and JAR)"
+HOMEPAGE="https://github.com/xavierleroy/camlzip"
+SRC_URI="https://github.com/xavierleroy/camlzip/archive/rel$(ver_rs 1- '').tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${PN}-rel$(ver_rs 1- '')"
+
+LICENSE="LGPL-2.1"
+SLOT="1/${PV}"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+IUSE="+ocamlopt"
+
+RDEPEND=">=dev-lang/ocaml-4.07:=[ocamlopt?]
+	>=sys-libs/zlib-1.1.3"
+DEPEND="${RDEPEND}"
+
+QA_FLAGS_IGNORED=(
+	"usr/lib.*/ocaml/stublibs/dllcamlzip.so"
+	"usr/lib.*/ocaml/zip/zip.cmxs"
+)
+
+src_compile() {
+	emake all
+
+	if use ocamlopt; then
+		emake allopt
+	fi
+}
+
+src_install() {
+	findlib_src_preinst
+
+	emake DESTDIR="${D}" install-findlib
+	dosym zip/libcamlzip.a /usr/$(get_libdir)/ocaml/libcamlzip.a
+
+	dodoc README.md Changes
+}


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2022-01-12 18:30 Alfredo Tupone
  0 siblings, 0 replies; 27+ messages in thread
From: Alfredo Tupone @ 2022-01-12 18:30 UTC (permalink / raw
  To: gentoo-commits

commit:     131f528dd90041d172942672cb2f3b72dcf8e626
Author:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 12 18:28:58 2022 +0000
Commit:     Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Wed Jan 12 18:29:52 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=131f528d

dev-ml/camlzip: respect ocamlopt

Closes: https://bugs.gentoo.org/822450
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>

 dev-ml/camlzip/camlzip-1.11.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/camlzip/camlzip-1.11.ebuild b/dev-ml/camlzip/camlzip-1.11.ebuild
index 09d1e837bb67..ea2b449e8b1a 100644
--- a/dev-ml/camlzip/camlzip-1.11.ebuild
+++ b/dev-ml/camlzip/camlzip-1.11.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -25,7 +25,7 @@ QA_FLAGS_IGNORED=(
 )
 
 src_compile() {
-	emake all
+	emake allbyt
 
 	if use ocamlopt; then
 		emake allopt


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2023-03-16 23:16 Sam James
  0 siblings, 0 replies; 27+ messages in thread
From: Sam James @ 2023-03-16 23:16 UTC (permalink / raw
  To: gentoo-commits

commit:     a4ccfdc9a28a77fb40603977db960095b0f58d8a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 16 23:15:06 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 16 23:15:06 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4ccfdc9

dev-ml/camlzip: Stabilize 1.11 arm64, #901671

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ml/camlzip/camlzip-1.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/camlzip/camlzip-1.11.ebuild b/dev-ml/camlzip/camlzip-1.11.ebuild
index a0bce6e1fbaa..08ab3ff0e9c8 100644
--- a/dev-ml/camlzip/camlzip-1.11.ebuild
+++ b/dev-ml/camlzip/camlzip-1.11.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/${PN}-rel$(ver_rs 1- '')"
 
 LICENSE="LGPL-2.1"
 SLOT="1/${PV}"
-KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 ~riscv ~x86"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4.07:=[ocamlopt?]


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2023-03-16 23:16 Sam James
  0 siblings, 0 replies; 27+ messages in thread
From: Sam James @ 2023-03-16 23:16 UTC (permalink / raw
  To: gentoo-commits

commit:     61848fa7a579e7d64d4ba5a98ff8a76b970f8b9a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 16 23:15:05 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Mar 16 23:15:05 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61848fa7

dev-ml/camlzip: Stabilize 1.11 arm, #901671

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ml/camlzip/camlzip-1.11.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/camlzip/camlzip-1.11.ebuild b/dev-ml/camlzip/camlzip-1.11.ebuild
index 066ec10209d4..a0bce6e1fbaa 100644
--- a/dev-ml/camlzip/camlzip-1.11.ebuild
+++ b/dev-ml/camlzip/camlzip-1.11.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ S="${WORKDIR}/${PN}-rel$(ver_rs 1- '')"
 
 LICENSE="LGPL-2.1"
 SLOT="1/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4.07:=[ocamlopt?]


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2023-03-17  2:29 Sam James
  0 siblings, 0 replies; 27+ messages in thread
From: Sam James @ 2023-03-17  2:29 UTC (permalink / raw
  To: gentoo-commits

commit:     d7e3d4f11a8353d4cd240fca30235a9197dec5e0
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 17 02:27:32 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 17 02:27:32 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7e3d4f1

dev-ml/camlzip: Stabilize 1.11 x86, #901671

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ml/camlzip/camlzip-1.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/camlzip/camlzip-1.11.ebuild b/dev-ml/camlzip/camlzip-1.11.ebuild
index 859a17171ca5..47c43d09721c 100644
--- a/dev-ml/camlzip/camlzip-1.11.ebuild
+++ b/dev-ml/camlzip/camlzip-1.11.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/${PN}-rel$(ver_rs 1- '')"
 
 LICENSE="LGPL-2.1"
 SLOT="1/${PV}"
-KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~riscv x86"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4.07:=[ocamlopt?]


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2023-03-17  2:29 Sam James
  0 siblings, 0 replies; 27+ messages in thread
From: Sam James @ 2023-03-17  2:29 UTC (permalink / raw
  To: gentoo-commits

commit:     63c0d3175240716ae85824875f8534b0d4523733
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 17 02:27:31 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 17 02:27:31 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63c0d317

dev-ml/camlzip: Stabilize 1.11 amd64, #901671

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-ml/camlzip/camlzip-1.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/camlzip/camlzip-1.11.ebuild b/dev-ml/camlzip/camlzip-1.11.ebuild
index 08ab3ff0e9c8..859a17171ca5 100644
--- a/dev-ml/camlzip/camlzip-1.11.ebuild
+++ b/dev-ml/camlzip/camlzip-1.11.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/${PN}-rel$(ver_rs 1- '')"
 
 LICENSE="LGPL-2.1"
 SLOT="1/${PV}"
-KEYWORDS="~amd64 arm arm64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~riscv ~x86"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4.07:=[ocamlopt?]


^ permalink raw reply related	[flat|nested] 27+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/
@ 2023-03-17 10:05 Arthur Zamarin
  0 siblings, 0 replies; 27+ messages in thread
From: Arthur Zamarin @ 2023-03-17 10:05 UTC (permalink / raw
  To: gentoo-commits

commit:     7353d586aefd30d9135ca4015a23412ab8dc2dd0
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 17 10:05:26 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 17 10:05:26 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7353d586

dev-ml/camlzip: Stabilize 1.11 ppc64, #901671

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-ml/camlzip/camlzip-1.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/camlzip/camlzip-1.11.ebuild b/dev-ml/camlzip/camlzip-1.11.ebuild
index 47c43d09721c..c1a9d1ed1304 100644
--- a/dev-ml/camlzip/camlzip-1.11.ebuild
+++ b/dev-ml/camlzip/camlzip-1.11.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/${PN}-rel$(ver_rs 1- '')"
 
 LICENSE="LGPL-2.1"
 SLOT="1/${PV}"
-KEYWORDS="amd64 arm arm64 ~ppc ~ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4.07:=[ocamlopt?]


^ permalink raw reply related	[flat|nested] 27+ messages in thread

end of thread, other threads:[~2023-03-17 10:05 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-16 23:16 [gentoo-commits] repo/gentoo:master commit in: dev-ml/camlzip/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2023-03-17 10:05 Arthur Zamarin
2023-03-17  2:29 Sam James
2023-03-17  2:29 Sam James
2023-03-16 23:16 Sam James
2022-01-12 18:30 Alfredo Tupone
2021-10-06  1:02 Sam James
2021-03-15  4:02 Sam James
2021-03-14  0:48 Sam James
2021-02-10 16:33 Sam James
2021-01-24 17:48 Sam James
2021-01-14  6:40 Alfredo Tupone
2020-11-01 12:11 Sam James
2020-10-28  3:36 Sam James
2020-10-26 21:18 Sam James
2020-10-25 23:19 Thomas Deutschmann
2020-06-14 11:35 Alfredo Tupone
2020-03-27 12:41 Alfredo Tupone
2020-02-17  7:35 Alfredo Tupone
2018-12-15  9:19 Mikle Kolyada
2017-03-09 21:31 Alexis Ballier
2017-02-07 13:19 Alexis Ballier
2017-01-26 11:00 Agostino Sarubbo
2017-01-25 14:29 Agostino Sarubbo
2017-01-25 10:58 Agostino Sarubbo
2016-09-05 12:12 Alexis Ballier
2016-03-03 13:33 Alexis Ballier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox