SHA256
1
0
forked from pool/libvmime

Accepting request 983638 from server:mail

- Update to snapshot 0.9.2.175 (fc69321d)

OBS-URL: https://build.opensuse.org/request/show/983638
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libvmime?expand=0&rev=27
This commit is contained in:
Dominique Leuenberger 2022-06-19 19:11:08 +00:00 committed by Git OBS Bridge
commit 5e1bc67774
11 changed files with 26 additions and 14 deletions

View File

@ -2,7 +2,7 @@
<service name="tar_scm" mode="disabled"> <service name="tar_scm" mode="disabled">
<param name="scm">git</param> <param name="scm">git</param>
<param name="url">https://github.com/kisli/vmime</param> <param name="url">https://github.com/kisli/vmime</param>
<param name="revision">edcb4b4b1f1feb5d823d2eaba6aa6dda462d0b00</param> <param name="revision">fc69321d5304c73be685c890f3b30528aadcfeaf</param>
<param name="parent-tag">v0.9.2</param> <param name="parent-tag">v0.9.2</param>
<param name="versionformat">0.9.2.@TAG_OFFSET@</param> <param name="versionformat">0.9.2.@TAG_OFFSET@</param>
</service> </service>

View File

@ -1,4 +1,4 @@
libvmime (0.9.2.165-0) unstable; urgency=low libvmime (0.9.2.175-0) unstable; urgency=low
* Initial package. * Initial package.

View File

@ -5,7 +5,7 @@ Maintainer: openSUSE <opensuse@opensuse.org>
Standards-Version: 4.5.0 Standards-Version: 4.5.0
Build-Depends: debhelper-compat (= 12) Build-Depends: debhelper-compat (= 12)
Package: libvmime-suse4 Package: libvmime-suse5
Architecture: any Architecture: any
Depends: ${misc:Depends}, ${shlibs:Depends} Depends: ${misc:Depends}, ${shlibs:Depends}
Description: Library for working with MIME messages and IMAP/POP/SMTP Description: Library for working with MIME messages and IMAP/POP/SMTP
@ -13,6 +13,7 @@ Description: Library for working with MIME messages and IMAP/POP/SMTP
Package: libvmime-dev Package: libvmime-dev
Architecture: any Architecture: any
Depends: ${misc:Depends}, libvmime-suse4 (= ${binary:Version}) Depends: ${misc:Depends}, libvmime-suse5 (= ${binary:Version}),
libgsasl-dev | libgsasl7-dev, libgnutls28-dev
Description: Development files for vmime, an e-mail message library Description: Development files for vmime, an e-mail message library
. .

View File

@ -1 +1,3 @@
usr/include/* usr/include/*
usr/lib/*/*.so
usr/lib/*/pkgconfig/

View File

@ -19,7 +19,7 @@ Index: vmime-0.9.2.165/CMakeLists.txt
# . Interfaces added (upward-compatible changes): AGE++ # . Interfaces added (upward-compatible changes): AGE++
# . Interfaces removed: AGE=0 # . Interfaces removed: AGE=0
-SET(VMIME_API_VERSION_CURRENT 1) -SET(VMIME_API_VERSION_CURRENT 1)
+SET(VMIME_API_VERSION_CURRENT 4) +SET(VMIME_API_VERSION_CURRENT 5)
SET(VMIME_API_VERSION_REVISION 0) SET(VMIME_API_VERSION_REVISION 0)
SET(VMIME_API_VERSION_AGE 0) SET(VMIME_API_VERSION_AGE 0)

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Sat Jun 11 14:40:34 UTC 2022 - Jan Engelhardt <jengelh@inai.de>
- Update to snapshot 0.9.2.175 (fc69321d)
* Added utility function to convert byteArray to HEX string.
* Added support for digest algorithm SHA256 (in certificates).
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Jan 8 12:56:59 UTC 2022 - Jan Engelhardt <jengelh@inai.de> Sat Jan 8 12:56:59 UTC 2022 - Jan Engelhardt <jengelh@inai.de>

View File

@ -1,7 +1,7 @@
Format: 1.0 Format: 1.0
Source: libvmime Source: libvmime
Architecture: any Architecture: any
Version: 0.9.2.165 Version: 0.9.2.175
DEBTRANSFORM-RELEASE: 1 DEBTRANSFORM-RELEASE: 1
Maintainer: openSUSE <opensuse@opensuse.org> Maintainer: openSUSE <opensuse@opensuse.org>
Homepage: https://opensuse.org/ Homepage: https://opensuse.org/

View File

@ -17,8 +17,8 @@
Name: libvmime Name: libvmime
%define lname libvmime-suse4 %define lname libvmime-suse5
Version: 0.9.2.165 Version: 0.9.2.175
Release: 0 Release: 0
Summary: Library for working with RFC 5322, MIME messages and IMAP/POP/SMTP Summary: Library for working with RFC 5322, MIME messages and IMAP/POP/SMTP
License: GPL-3.0-or-later License: GPL-3.0-or-later
@ -98,6 +98,8 @@ make book_pdf
popd popd
%endif %endif
# for some reason I don't care researching in detail, CentOS8 dies with
# a PIC-related relocation error during cmake-configure. Hence forcing -fPIC.
%cmake \ %cmake \
-DCMAKE_INSTALL_PREFIX:PATH="%_prefix" \ -DCMAKE_INSTALL_PREFIX:PATH="%_prefix" \
-DINCLUDE_INSTALL_DIR:PATH="%_includedir" \ -DINCLUDE_INSTALL_DIR:PATH="%_includedir" \
@ -113,9 +115,9 @@ popd
-DVMIME_BUILD_STATIC_LIBRARY:BOOL=OFF \ -DVMIME_BUILD_STATIC_LIBRARY:BOOL=OFF \
-DCMAKE_BUILD_TYPE:STRING="RelWithDebInfo" \ -DCMAKE_BUILD_TYPE:STRING="RelWithDebInfo" \
-DCMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING="$cf" \ -DCMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING="$cf" \
-DCMAKE_CXX_FLAGS:STRING=" " \ -DCMAKE_CXX_FLAGS:STRING="%{?centos_version:-fPIC} " \
-DCMAKE_C_FLAGS_RELWITHDEBINFO:STRING="$cf" \ -DCMAKE_C_FLAGS_RELWITHDEBINFO:STRING="$cf" \
-DCMAKE_C_FLAGS:STRING=" " \ -DCMAKE_C_FLAGS:STRING="%{?centos_version:-fPIC} " \
-DVMIME_BUILD_DOCUMENTATION:BOOL=OFF -DVMIME_BUILD_DOCUMENTATION:BOOL=OFF
%cmake_build %cmake_build
@ -135,7 +137,7 @@ mkdir -p "$b/%_datadir"
%files -n %lname %files -n %lname
%license COPYING %license COPYING
%_libdir/libvmime-suse.so.4* %_libdir/libvmime-suse.so.5*
%files devel %files devel
%_includedir/vmime %_includedir/vmime

BIN
vmime-0.9.2.165.tar.xz (Stored with Git LFS)

Binary file not shown.

BIN
vmime-0.9.2.175.tar.xz (Stored with Git LFS) Normal file

Binary file not shown.