Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37730824
en ru br
ALT Linux repos
S:1.15.1-alt1

Group :: Development/Databases
RPM: libdqlite

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 

Patch: libdqlite-1.15.1.patch
Download


 .gear/libdqlite.spec   | 82 ++++++++++++++++++++++++++++++++++++++++++++++++++
 .gear/rules            |  3 ++
 .gear/tags/list        |  1 +
 .gear/upstream/remotes |  3 ++
 configure.ac           |  2 +-
 5 files changed, 90 insertions(+), 1 deletion(-)
diff --git a/.gear/libdqlite.spec b/.gear/libdqlite.spec
new file mode 100644
index 0000000..e43ed28
--- /dev/null
+++ b/.gear/libdqlite.spec
@@ -0,0 +1,82 @@
+%define _unpackaged_files_terminate_build 1
+
+Name: libdqlite
+Version: 1.15.1
+Release: alt1
+Summary: Library for distributed SQLite database
+License: Apache-2.0
+Group: Development/Databases
+URL: https://github.com/CanonicalLtd/dqlite
+
+Source: %name-%version.tar
+Patch: %name-%version.patch
+
+BuildRequires: libuv-devel
+BuildRequires: libraft-devel >= 0.17.1
+BuildRequires: libsqlite3-devel
+
+%description
+This package provides the `dqlite` C library (libdqlite), which can be used
+to expose a SQLite database over the network and replicate it across a cluster
+of peers, using the Raft algorithm.
+
+%package devel
+Summary: Library for distributed SQLite database (development files)
+Group: Development/Databases
+Requires: %name = %version-%release
+
+%description devel
+This package provides the `dqlite` C library (libdqlite), which can be used
+to expose a SQLite database over the network and replicate it across a cluster
+of peers, using the Raft algorithm.
+
+%prep
+%setup -q -n %name-%version
+%patch -p1
+
+%build
+%autoreconf
+%configure --enable-replication --disable-static
+
+%make_build all
+
+%install
+%make_install install DESTDIR=%buildroot
+
+%files
+%doc AUTHORS README.md LICENSE
+%_libdir/%name.so.*
+
+%files devel
+%_includedir/dqlite.h
+%_libdir/%name.so
+%_pkgconfigdir/dqlite.pc
+
+%changelog
+* Thu Aug 03 2023 Alexey Shabalin <shaba@altlinux.org> 1.15.1-alt1
+- new version 1.15.1
+
+* Wed Jan 26 2022 Alexey Shabalin <shaba@altlinux.org> 1.9.1-alt1
+- new version 1.9.1
+
+* Wed Dec 08 2021 Alexey Shabalin <shaba@altlinux.org> 1.9.0-alt1
+- new version 1.9.0
+
+* Fri Jan 15 2021 Alexey Shabalin <shaba@altlinux.org> 1.6.0-alt1
+- new version 1.6.0
+
+* Sun May 17 2020 Alexey Shabalin <shaba@altlinux.org> 1.4.1-alt1
+- Updated
+
+* Tue Apr 14 2020 Alexey Shabalin <shaba@altlinux.org> 1.4.0-alt1
+- Updated
+
+* Tue Nov 12 2019 Denis Pynkin <dans@altlinux.org> 1.1.0-alt1
+- Updated
+- Added new build/runtime requirements to libraft and libco
+
+* Sun Sep 29 2019 Denis Pynkin <dans@altlinux.org> 1.0.0-alt1
+- Version 1.0.0
+
+* Fri Jan 11 2019 Denis Pynkin <dans@altlinux.org> 0.2.5-alt1
+- Initial version for ALTLinux
diff --git a/.gear/rules b/.gear/rules
new file mode 100644
index 0000000..cd380e3
--- /dev/null
+++ b/.gear/rules
@@ -0,0 +1,3 @@
+tar: v@version@:. name=@name@-@version@
+diff: v@version@:. . name=@name@-@version@.patch
+spec: .gear/libdqlite.spec
diff --git a/.gear/tags/list b/.gear/tags/list
new file mode 100644
index 0000000..89dbcae
--- /dev/null
+++ b/.gear/tags/list
@@ -0,0 +1 @@
+c5af689dd17e2675c405a49cde682f5ff87e1290 v1.15.1
diff --git a/.gear/upstream/remotes b/.gear/upstream/remotes
new file mode 100644
index 0000000..544a8d7
--- /dev/null
+++ b/.gear/upstream/remotes
@@ -0,0 +1,3 @@
+[remote "upstream"]
+	url = https://github.com/canonical/dqlite.git
+	fetch = +refs/heads/*:refs/remotes/upstream/*
diff --git a/configure.ac b/configure.ac
index 0890fe1..3d746c9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,5 +1,5 @@
 AC_PREREQ(2.60)
-AC_INIT([libdqlite], [1.14.0], [https://github.com/canonical/dqlite])
+AC_INIT([libdqlite], [1.15.1], [https://github.com/canonical/dqlite])
 AC_CONFIG_MACRO_DIR([m4])
 AC_CONFIG_AUX_DIR([ac])
 
 
design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
current maintainer: Michael Shigorin