[packages/fossil] - updated to 2.16; use internal sqlite3 for now (no required FTS4 and JSON1 in system one currently)
qboosh
qboosh at pld-linux.org
Thu Feb 2 20:30:29 CET 2023
commit d0c99c0a836d9505373986aa577d5c64ed9b765b
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date: Thu Feb 2 20:31:54 2023 +0100
- updated to 2.16; use internal sqlite3 for now (no required FTS4 and JSON1 in system one currently)
fossil.spec | 29 ++++++++++++++++++-----------
1 file changed, 18 insertions(+), 11 deletions(-)
---
diff --git a/fossil.spec b/fossil.spec
index 794fb2a..04a01e9 100644
--- a/fossil.spec
+++ b/fossil.spec
@@ -1,18 +1,22 @@
+#
+# Conditional build:
+%bcond_with system_sqlite # system SQLite 3 (required features: FTS4, JSON1, DBSTAT_VTAB)
+
Summary: Simple, high-reliability, distributed software configuration management
Summary(pl.UTF-8): Proste, wiarygodne, rozproszone zarządzanie konfiguracją oprogramowania
Name: fossil
-Version: 2.7
-Release: 2
+Version: 2.16
+Release: 1
License: BSD
Group: Development/Version Control
# see URL below for mapping between Version and date
-#Source0Download: http://www.fossil-scm.org/download.html
-Source0: https://www.fossil-scm.org/index.html/uv/%{name}-src-%{version}.tar.gz
-# Source0-md5: b00819c45cb6518065540ce0704b0884
-URL: http://www.fossil-scm.org/
+#Source0Download: https://www.fossil-scm.org/home/uv/download.html
+Source0: https://www.fossil-scm.org/home/tarball/7aedd5675883d4412cf20917d340b6985e3ecb842e88a39f135df034b2d5f4d3/%{name}-src-%{version}.tar.gz
+# Source0-md5: 0872a4f1fa348b7d1736ed5d323aebec
+URL: https://www.fossil-scm.org/
BuildRequires: openssl-devel
BuildRequires: readline-devel
-BuildRequires: sqlite3-devel >= 3.25.0
+%{?with_system_sqlite:BuildRequires: sqlite3-devel >= 3.35.0}
BuildRequires: tcl >= 8.5
BuildRequires: zlib-devel
BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
@@ -51,9 +55,11 @@ stronie podającej szczegółową historię oraz informacje o stanie
projektu w postaci graficznej.
%prep
-%setup -q
+%setup -q -n %{name}-src-%{version}
-%{__rm} src/sqlite3.c
+%if %{with system_sqlite}
+%{__rm} src/sqlite3.[ch]
+%endif
%build
# some tcl-based strangeness, not autoconf configure
@@ -62,12 +68,13 @@ CFLAGS="%{rpmcflags}" \
CPPFLAGS="%{rpmcppflags}" \
LIBS="-lresolv" \
./configure \
- --disable-internal-sqlite \
+ %{?with_system_sqlite:--disable-internal-sqlite} \
--with-openssl=auto
%{__make}
%install
rm -rf $RPM_BUILD_ROOT
+
%{__make} install \
INSTALLDIR=$RPM_BUILD_ROOT%{_bindir}
@@ -76,5 +83,5 @@ rm -rf $RPM_BUILD_ROOT
%files
%defattr(644,root,root,755)
-%doc COPYRIGHT-BSD2.txt
+%doc COPYRIGHT-BSD2.txt README.md
%attr(755,root,root) %{_bindir}/fossil
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/fossil.git/commitdiff/d0c99c0a836d9505373986aa577d5c64ed9b765b
More information about the pld-cvs-commit
mailing list