- Update to release 3.45.1
* Details will follow... - Abort build when %version and %tarversion don't match. OBS-URL: https://build.opensuse.org/package/show/server:database/sqlite3?expand=0&rev=328
This commit is contained in:
parent
b8b8403bee
commit
f5416321bb
BIN
sqlite-doc-3440200.zip
(Stored with Git LFS)
BIN
sqlite-doc-3440200.zip
(Stored with Git LFS)
Binary file not shown.
3
sqlite-doc-3450100.zip
Normal file
3
sqlite-doc-3450100.zip
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:bbe376fdd36884a00f4dd93bcd6e80470d66408d4957cb23ba22931fa579206a
|
||||||
|
size 10746925
|
BIN
sqlite-src-3440200.zip
(Stored with Git LFS)
BIN
sqlite-src-3440200.zip
(Stored with Git LFS)
Binary file not shown.
3
sqlite-src-3450100.zip
Normal file
3
sqlite-src-3450100.zip
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:7f7b14a68edbcd4a57df3a8c4dbd56d2d3546a6e7cdd50de40ceb03af33d34ba
|
||||||
|
size 14152147
|
@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jan 30 18:05:28 UTC 2024 - Reinhard Max <max@suse.com>
|
||||||
|
|
||||||
|
- Update to release 3.45.1
|
||||||
|
* Details will follow...
|
||||||
|
|
||||||
|
- Abort build when %version and %tarversion don't match.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Dec 7 13:38:59 UTC 2023 - Dominique Leuenberger <dimstar@opensuse.org>
|
Thu Dec 7 13:38:59 UTC 2023 - Dominique Leuenberger <dimstar@opensuse.org>
|
||||||
|
|
||||||
|
16
sqlite3.spec
16
sqlite3.spec
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package sqlite3
|
# spec file for package sqlite3
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,12 +17,12 @@
|
|||||||
|
|
||||||
|
|
||||||
%define oname sqlite
|
%define oname sqlite
|
||||||
%define tarversion 3440200
|
%define tarversion 3450100
|
||||||
%define docversion 3440200
|
%define docversion 3450100
|
||||||
%bcond_with icu
|
%bcond_with icu
|
||||||
%bcond_without check
|
%bcond_without check
|
||||||
Name: sqlite3
|
Name: sqlite3
|
||||||
Version: 3.44.2
|
Version: 3.45.1
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Embeddable SQL Database Engine
|
Summary: Embeddable SQL Database Engine
|
||||||
License: SUSE-Public-Domain
|
License: SUSE-Public-Domain
|
||||||
@ -129,6 +129,14 @@ other documentation found on sqlite.org. The files can be found in
|
|||||||
%{_docdir}/%{name}-doc.
|
%{_docdir}/%{name}-doc.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
|
# Version and %tarversion need to match, but %docversion might be different,
|
||||||
|
IFS=. read a b c d <<< "%version"
|
||||||
|
if [ "%tarversion" != $(printf "%1d%02d%02d%02d" $a $b $c $d) ]
|
||||||
|
then
|
||||||
|
echo "Version %version does not match tarversion %tarversion."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
%autosetup -p1 -n sqlite-src-%{tarversion} -a2
|
%autosetup -p1 -n sqlite-src-%{tarversion} -a2
|
||||||
|
|
||||||
rm -v sqlite-doc-%{docversion}/releaselog/current.html
|
rm -v sqlite-doc-%{docversion}/releaselog/current.html
|
||||||
|
Loading…
Reference in New Issue
Block a user