Github messages for voidlinux
 help / color / mirror / Atom feed
From: voidlinux-github@inbox.vuxu.org
To: ml@inbox.vuxu.org
Subject: Re: [PR PATCH] [Updated] dqlite: update to 0.9.1
Date: Wed, 17 Jul 2019 02:02:33 +0200	[thread overview]
Message-ID: <20190717000233.XJRl_RSjWiCa4XHUx8_asmwHSeJnBQmE7x8hdMDyCd8@z> (raw)
In-Reply-To: <gh-mailinglist-notifications-41a7ca26-5023-4802-975b-f1789d68868e-void-packages-13163@inbox.vuxu.org>

[-- Attachment #1: Type: text/plain, Size: 349 bytes --]

There is an updated pull request by julio641742 against master on the void-packages repository

https://github.com/julio641742/void-packages dqlite
https://github.com/void-linux/void-packages/pull/13163

dqlite: update to 0.9.1
merge #13161 and #13162 first

A patch file from https://github.com/void-linux/void-packages/pull/13163.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-dqlite-13163.patch --]
[-- Type: application/text/x-diff, Size: 6419 bytes --]

From d8212e54d321ee722d6c65241d70ef2f4b1a4f52 Mon Sep 17 00:00:00 2001
From: Julio Galvan <julio@epazote.net>
Date: Tue, 16 Jul 2019 16:48:32 -0700
Subject: [PATCH 1/3] New package: libco-1.0.1

---
 common/shlibs               |  1 +
 srcpkgs/libco-devel         |  1 +
 srcpkgs/libco/files/LICENSE |  5 +++++
 srcpkgs/libco/template      | 36 ++++++++++++++++++++++++++++++++++++
 4 files changed, 43 insertions(+)
 create mode 120000 srcpkgs/libco-devel
 create mode 100644 srcpkgs/libco/files/LICENSE
 create mode 100644 srcpkgs/libco/template

diff --git a/common/shlibs b/common/shlibs
index 2f146bbfa9d..e7771007e21 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -3493,3 +3493,4 @@ libkres.so.9 knot-resolver-4.0.0_1
 libnsl.so.2 libnsl-1.2.0_1
 libbcc.so.0 bcc-0.10.0_1
 libbcc_bpf.so.0 bcc-0.10.0_1
+libco.so libco-1.0.1_1
diff --git a/srcpkgs/libco-devel b/srcpkgs/libco-devel
new file mode 120000
index 00000000000..9cbee396adf
--- /dev/null
+++ b/srcpkgs/libco-devel
@@ -0,0 +1 @@
+libco
\ No newline at end of file
diff --git a/srcpkgs/libco/files/LICENSE b/srcpkgs/libco/files/LICENSE
new file mode 100644
index 00000000000..b3c66a9bc3a
--- /dev/null
+++ b/srcpkgs/libco/files/LICENSE
@@ -0,0 +1,5 @@
+Copyright 2019 Free Ekanayaka 
+
+Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
+
+THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
diff --git a/srcpkgs/libco/template b/srcpkgs/libco/template
new file mode 100644
index 00000000000..9e2b1a6be10
--- /dev/null
+++ b/srcpkgs/libco/template
@@ -0,0 +1,36 @@
+# Template file for 'libco'
+pkgname=libco
+version=1.0.1
+revision=1
+short_desc="Cooperative multithreading library written in C89"
+maintainer="Julio Galvan <julio@epazote.net>"
+license="ISC"
+homepage="https://github.com/freeekanayaka/libco"
+distfiles="https://github.com/freeekanayaka/libco/archive/v${version}.tar.gz"
+checksum=b5a49b0352e52edffc0046b592e4414945a2b637f7433f8c526b8cdaab9d24bd
+shlib_provides="libco.so"
+
+do_build() {
+	sed -i 's/gcc/$(CC)/g' Makefile
+	make
+}
+
+do_install() {
+	vinstall libco.so 0664 /usr/lib/ libco.so.${version}
+	ln -s libco.so.${version} ${DESTDIR}/usr/lib/libco.so.1
+	ln -s libco.so.${version} ${DESTDIR}/usr/lib/libco.so
+	vinstall libco.pc 0664 /usr/lib/pkgconfig
+	vinstall libco.a 0664 /usr/lib/
+	vinstall libco.h 0664 /usr/include/
+	vlicense ${FILESDIR}/LICENSE
+}
+
+libco-devel_package() {
+	depends="libco>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/pkgconfig
+		vmove "usr/lib/*.a"
+	}
+}

From 818a23ee366c02aaa8e6d672f00f905d015f8703 Mon Sep 17 00:00:00 2001
From: Julio Galvan <julio@epazote.net>
Date: Tue, 16 Jul 2019 16:59:54 -0700
Subject: [PATCH 2/3] New package: raft-0.9.1

---
 common/shlibs         |  1 +
 srcpkgs/raft-devel    |  1 +
 srcpkgs/raft/template | 36 ++++++++++++++++++++++++++++++++++++
 3 files changed, 38 insertions(+)
 create mode 120000 srcpkgs/raft-devel
 create mode 100644 srcpkgs/raft/template

diff --git a/common/shlibs b/common/shlibs
index e7771007e21..45d3e0f1b0f 100644
--- a/common/shlibs
+++ b/common/shlibs
@@ -3494,3 +3494,4 @@ libnsl.so.2 libnsl-1.2.0_1
 libbcc.so.0 bcc-0.10.0_1
 libbcc_bpf.so.0 bcc-0.10.0_1
 libco.so libco-1.0.1_1
+libraft.so.0 raft-0.9.1_1
diff --git a/srcpkgs/raft-devel b/srcpkgs/raft-devel
new file mode 120000
index 00000000000..d96c908578a
--- /dev/null
+++ b/srcpkgs/raft-devel
@@ -0,0 +1 @@
+raft
\ No newline at end of file
diff --git a/srcpkgs/raft/template b/srcpkgs/raft/template
new file mode 100644
index 00000000000..357ce06668f
--- /dev/null
+++ b/srcpkgs/raft/template
@@ -0,0 +1,36 @@
+# Template file for 'raft'
+pkgname=raft
+version=0.9.1
+revision=1
+build_style=gnu-configure
+configure_args="--enable-example=no"
+hostmakedepends="pkg-config autoconf automake libtool"
+makedepends="libuv-devel"
+short_desc="C implementation of the Raft consensus protocol"
+maintainer="Julio Galvan <julio@epazote.net>"
+license="Apache-2.0"
+homepage="https://github.com/CanonicalLtd/raft"
+distfiles="https://github.com/CanonicalLtd/raft/archive/v${version}.tar.gz"
+checksum=d2bc3c15db76a817802898ed0dba9d5608de12839a9d64b45ba3bd39c126eccf
+
+pre_configure() {
+	autoreconf -i
+}
+
+pre_build() {
+	case "$XBPS_TARGET_MACHINE" in
+		# fix musl missing error.h header
+		*-musl) sed -i '/error.h/d' src/replication.c;;
+	esac
+}
+
+raft-devel_package() {
+	depends="raft>=${version}_${revision}"
+	short_desc+=" - development files"
+	pkg_install() {
+		vmove usr/include
+		vmove usr/lib/pkgconfig
+		vmove "usr/lib/*.a"
+		vmove "usr/lib/*.so"
+	}
+}

From 3ecc3d15518c1b29b6e773ee6ead06b6452b6a70 Mon Sep 17 00:00:00 2001
From: Julio Galvan <julio@epazote.net>
Date: Tue, 16 Jul 2019 15:39:24 -0700
Subject: [PATCH 3/3] dqlite: update to 0.9.1

---
 srcpkgs/dqlite/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/dqlite/template b/srcpkgs/dqlite/template
index b11c2e93bd9..1818072b1e3 100644
--- a/srcpkgs/dqlite/template
+++ b/srcpkgs/dqlite/template
@@ -1,17 +1,17 @@
 # Template file for 'dqlite'
 pkgname=dqlite
-version=0.2.6
+version=0.9.1
 revision=1
 build_style=gnu-configure
 hostmakedepends="pkg-config autoconf automake libtool"
-makedepends="libuv-devel sqlite-replication-devel"
+makedepends="libuv-devel sqlite-replication-devel raft-devel libco-devel"
 depends="sqlite-replication"
 short_desc="Distributed SQLite database using the Raft algorithm"
 maintainer="Cameron Nemo <camerontnorman@gmail.com>"
 license="Apache-2.0"
 homepage="https://github.com/CanonicalLtd/dqlite"
 distfiles="${homepage}/archive/v${version}.tar.gz"
-checksum=47d31550d970a12d25101c331896cfb855128c110d912f5da3371062d9ece52b
+checksum=0d3f96343b1a0d5c2b717402c3a9f99b96452439af838cd64f6e07ae6899ef7b
 
 pre_configure() {
 	autoreconf -i

  parent reply	other threads:[~2019-07-17  0:02 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-07-16 22:40 [PR PATCH] " voidlinux-github
2019-07-16 22:58 ` voidlinux-github
2019-07-16 23:00 ` voidlinux-github
2019-07-17  0:02 ` [PR PATCH] [Updated] " voidlinux-github
2019-07-17  0:02 ` voidlinux-github [this message]
2019-07-17  0:06 ` voidlinux-github
2019-07-17 15:23 ` voidlinux-github
2019-07-17 22:53 ` [PR PATCH] [Updated] " voidlinux-github
2019-07-17 22:53 ` voidlinux-github
2019-07-17 22:56 ` voidlinux-github
2019-07-17 22:56 ` voidlinux-github
2019-07-17 23:09 ` voidlinux-github
2019-07-17 23:15 ` [PR PATCH] [Updated] " voidlinux-github
2019-07-17 23:15 ` voidlinux-github
2019-07-18  0:00 ` voidlinux-github
2019-07-22  5:07 ` [PR PATCH] [Updated] " voidlinux-github
2019-07-22  5:07 ` voidlinux-github
2019-07-22  5:08 ` voidlinux-github
2019-07-22  5:08 ` voidlinux-github
2019-07-28 21:10 ` voidlinux-github
2019-07-28 21:11 ` voidlinux-github
2019-09-12 15:09 ` [PR PATCH] [Updated] " voidlinux-github
2019-09-12 15:09 ` voidlinux-github
2019-09-12 15:14 ` [PR PATCH] [Updated] lxd: update to 3.17 voidlinux-github
2019-09-12 15:14 ` voidlinux-github
2019-09-13 20:23 ` voidlinux-github
2019-09-19 13:22 ` [PR PATCH] [Updated] " voidlinux-github
2019-09-19 13:22 ` voidlinux-github
2019-10-17  4:51 ` voidlinux-github
2020-02-12 13:51 ` voidlinux-github
2020-02-12 14:14 ` [PR PATCH] [Closed]: " voidlinux-github

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190717000233.XJRl_RSjWiCa4XHUx8_asmwHSeJnBQmE7x8hdMDyCd8@z \
    --to=voidlinux-github@inbox.vuxu.org \
    --cc=ml@inbox.vuxu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).