blob: ae61ca5feb917286814b775e6343fededa456a88 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
%global debug_package %{nil}
Name: guile-sqlite3
Version: 0.1.3
Release: 8%{?dist}
Summary: Guile bindings for the SQLite3 database engine
License: LGPLv3+
URL: https://notabug.org/guile-sqlite3/guile-sqlite3
Source0: https://notabug.org/guile-sqlite3/guile-sqlite3/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
%global guile_source_dir %{_datadir}/guile/site/3.0
%global guile_ccache_dir %{_libdir}/guile/3.0/site-ccache
BuildRequires: autoconf, automake, make
BuildRequires: pkgconfig(guile-3.0), pkgconfig(sqlite3)
Requires: guile30, sqlite-devel
%description
Guile-SQLite3: Guile bindings for the SQLite3 database engine.
%prep
%autosetup -n %{name} -p1
%build
autoreconf -fiv
%configure
%make_build
%check
%{__make} %{?_smp_mflags} check
%install
%make_install
%files
%license COPYING COPYING.LESSER
%doc AUTHORS ChangeLog NEWS README
%{guile_source_dir}/sqlite3.scm
%{guile_ccache_dir}/sqlite3.go
%changelog
* Sat Oct 05 2024 Ting-Wei Lan <lantw44@gmail.com> - 0.1.3-8
- Drop the brp-strip workaround
* Wed Apr 19 2023 Ting-Wei Lan <lantw44@gmail.com> - 0.1.3-7
- Rebuilt for Fedora 38 and 39
* Sun Feb 12 2023 Ting-Wei Lan <lantw44@gmail.com> - 0.1.3-6
- Switch to Guile 3.0
* Sat Oct 29 2022 Ting-Wei Lan <lantw44@gmail.com> - 0.1.3-5
- Rebuilt for Fedora 37 and 38
* Thu Apr 28 2022 Ting-Wei Lan <lantw44@gmail.com> - 0.1.3-4
- Rebuilt for Fedora 36 and 37
* Sat Sep 25 2021 Ting-Wei Lan <lantw44@gmail.com> - 0.1.3-3
- Disable brp-strip on Fedora 35 and later because it fails on Guile objects
* Sat Mar 13 2021 Ting-Wei Lan <lantw44@gmail.com> - 0.1.3-2
- Rebuilt for Fedora 34 and 35
* Sun Nov 1 2020 Ting-Wei Lan <lantw44@gmail.com> - 0.1.3-1
- Update to 0.1.3
* Sun Apr 26 2020 Ting-Wei Lan <lantw44@gmail.com> - 0.1.0-7
- Rebuilt for Fedora 32 and 33
* Tue Sep 17 2019 Ting-Wei Lan <lantw44@gmail.com> - 0.1.0-6
- Rebuilt for Fedora 31 and 32
* Wed May 15 2019 Ting-Wei Lan <lantw44@gmail.com> - 0.1.0-5
- Switch to Guile 2.2
- Add ChangeLog to doc
* Wed May 01 2019 Ting-Wei Lan <lantw44@gmail.com> - 0.1.0-4
- Rebuilt for Fedora 30 and 31
* Sun Dec 02 2018 Ting-Wei Lan <lantw44@gmail.com> - 0.1.0-3
- Update upstream website and source file URL
* Tue Oct 23 2018 Ting-Wei Lan <lantw44@gmail.com> - 0.1.0-2
- Rebuilt for Fedora 29 and 30
* Sun Jul 08 2018 Ting-Wei Lan <lantw44@gmail.com> - 0.1.0-1
- Initial packaging
|