FreeBSD Bugzilla – Attachment 179875 Details for
Bug 216999
mail/libvmime: Update to v0.9.2
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
svn diff for mail/libvmime
patch-mail_libvmime-v0.9.2 (text/plain), 6.58 KB, created by
Bernard Spil
on 2017-02-11 12:21:36 UTC
(
hide
)
Description:
svn diff for mail/libvmime
Filename:
MIME Type:
Creator:
Bernard Spil
Created:
2017-02-11 12:21:36 UTC
Size:
6.58 KB
patch
obsolete
>Index: mail/libvmime/Makefile >=================================================================== >--- mail/libvmime/Makefile (revision 433387) >+++ mail/libvmime/Makefile (working copy) >@@ -2,8 +2,8 @@ > # $FreeBSD$ > > PORTNAME= libvmime >-PORTVERSION= 0.9.2.s20140721 >-PORTREVISION= 3 >+PORTVERSION= 0.9.2 >+DISTVERSIONPREFIX= v > CATEGORIES= mail > > MAINTAINER= ports@FreeBSD.org >@@ -18,7 +18,6 @@ > USE_GITHUB= yes > GH_ACCOUNT= kisli > GH_PROJECT= vmime >-GH_TAGNAME= 03a0e36 > > USES= cmake:outsource compiler:c++11-lib iconv pkgconfig > USE_LDCONFIG= yes >@@ -28,8 +27,13 @@ > -DVMIME_SHARED_PTR_USE_BOOST:BOOL=NO \ > -DVMIME_SHARED_PTR_USE_CXX:BOOL=YES > >+INSTALL_TARGET= install >+ > post-patch: > @${REINPLACE_CMD} 's,$${VMIME_INSTALL_LIBDIR}/pkgconfig,${PREFIX}/libdata/pkgconfig,' \ > ${WRKSRC}/CMakeLists.txt > >+post-stage: >+ ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libvmime.so.1.0.0 >+ > .include <bsd.port.mk> >Index: mail/libvmime/distinfo >=================================================================== >--- mail/libvmime/distinfo (revision 433387) >+++ mail/libvmime/distinfo (working copy) >@@ -1,2 +1,3 @@ >-SHA256 (kisli-vmime-0.9.2.s20140721-03a0e36_GH0.tar.gz) = 92afe8da9c9af3fc3cac46c4a2c5008ce3d3cedc392c381f21fd514fb1dddc49 >-SIZE (kisli-vmime-0.9.2.s20140721-03a0e36_GH0.tar.gz) = 527227 >+TIMESTAMP = 1486813232 >+SHA256 (kisli-vmime-v0.9.2_GH0.tar.gz) = 9874bf911a7dbc257297ab00f7541875da221ee8251a4218cc65abff6e362399 >+SIZE (kisli-vmime-v0.9.2_GH0.tar.gz) = 528830 >Index: mail/libvmime/files/patch-src__vmime__platforms__posix__posixHandler.cpp >=================================================================== >--- mail/libvmime/files/patch-src__vmime__platforms__posix__posixHandler.cpp (revision 433387) >+++ mail/libvmime/files/patch-src__vmime__platforms__posix__posixHandler.cpp (nonexistent) >@@ -1,21 +0,0 @@ >---- src/vmime/platforms/posix/posixHandler.cpp.orig 2014-07-22 15:24:26.000000000 +0200 >-+++ src/vmime/platforms/posix/posixHandler.cpp 2014-07-22 15:59:33.000000000 +0200 >-@@ -41,6 +41,7 @@ >- #include <errno.h> >- >- #include <sys/types.h> >-+#include <sys/socket.h> >- #include <sys/stat.h> >- >- #if VMIME_HAVE_SYSCALL >-@@ -238,7 +239,9 @@ >- #elif VMIME_HAVE_SYSCALL && VMIME_HAVE_SYSCALL_GETTID >- return static_cast <unsigned int>(::syscall(SYS_gettid)); >- #else >-- #error We have no implementation of getThreadId() for this platform! >-+ long id; >-+ ::syscall(SYS_thr_self, &id); >-+ return static_cast <unsigned int>(id); >- #endif >- } >- > >Property changes on: mail/libvmime/files/patch-src__vmime__platforms__posix__posixHandler.cpp >___________________________________________________________________ >Deleted: fbsd:nokeywords >## -1 +0,0 ## >-yes >\ No newline at end of property >Deleted: svn:eol-style >## -1 +0,0 ## >-native >\ No newline at end of property >Deleted: svn:mime-type >## -1 +0,0 ## >-text/plain >\ No newline at end of property >Index: mail/libvmime/files/patch-src_vmime_platforms_posix_posixHandler.cpp >=================================================================== >--- mail/libvmime/files/patch-src_vmime_platforms_posix_posixHandler.cpp (revision 433387) >+++ mail/libvmime/files/patch-src_vmime_platforms_posix_posixHandler.cpp (working copy) >@@ -1,5 +1,5 @@ >---- src/vmime/platforms/posix/posixHandler.cpp.orig 2014-07-22 15:24:26.000000000 +0200 >-+++ src/vmime/platforms/posix/posixHandler.cpp 2014-07-22 15:59:33.000000000 +0200 >+--- src/vmime/platforms/posix/posixHandler.cpp.orig 2017-01-03 20:00:08 UTC >++++ src/vmime/platforms/posix/posixHandler.cpp > @@ -41,6 +41,7 @@ > #include <errno.h> > >@@ -8,7 +8,7 @@ > #include <sys/stat.h> > > #if VMIME_HAVE_SYSCALL >-@@ -238,7 +239,9 @@ >+@@ -240,7 +241,9 @@ unsigned int posixHandler::getThreadId() > #elif VMIME_HAVE_SYSCALL && VMIME_HAVE_SYSCALL_GETTID > return static_cast <unsigned int>(::syscall(SYS_gettid)); > #else >Index: mail/libvmime/files/patch-src_vmime_platforms_posix_posixSocket.cpp >=================================================================== >--- mail/libvmime/files/patch-src_vmime_platforms_posix_posixSocket.cpp (nonexistent) >+++ mail/libvmime/files/patch-src_vmime_platforms_posix_posixSocket.cpp (working copy) >@@ -0,0 +1,11 @@ >+--- src/vmime/platforms/posix/posixSocket.cpp.orig 2017-01-03 20:00:08 UTC >++++ src/vmime/platforms/posix/posixSocket.cpp >+@@ -873,7 +873,7 @@ void posixSocket::throwSocketError(const >+ >+ char errbuf[512]; >+ >+- #if (_POSIX_C_SOURCE >= 200112L || _XOPEN_SOURCE >= 600) && ! _GNU_SOURCE >++ #if 1 >+ >+ // XSI-compliant strerror_r() >+ strerror_r(err, errbuf, sizeof(errbuf)); > >Property changes on: mail/libvmime/files/patch-src_vmime_platforms_posix_posixSocket.cpp >___________________________________________________________________ >Added: fbsd:nokeywords >## -0,0 +1 ## >+yes >\ No newline at end of property >Added: svn:eol-style >## -0,0 +1 ## >+native >\ No newline at end of property >Added: svn:mime-type >## -0,0 +1 ## >+text/plain >\ No newline at end of property >Index: mail/libvmime/pkg-plist >=================================================================== >--- mail/libvmime/pkg-plist (revision 433387) >+++ mail/libvmime/pkg-plist (working copy) >@@ -163,10 +163,17 @@ > include/vmime/security/cert/X509Certificate.hpp > include/vmime/security/cert/certificate.hpp > include/vmime/security/cert/certificateChain.hpp >+include/vmime/security/cert/certificateException.hpp >+include/vmime/security/cert/certificateExpiredException.hpp >+include/vmime/security/cert/certificateIssuerVerificationException.hpp >+include/vmime/security/cert/certificateNotTrustedException.hpp >+include/vmime/security/cert/certificateNotYetValidException.hpp > include/vmime/security/cert/certificateVerifier.hpp > include/vmime/security/cert/defaultCertificateVerifier.hpp > include/vmime/security/cert/gnutls/X509Certificate_GnuTLS.hpp > include/vmime/security/cert/openssl/X509Certificate_OpenSSL.hpp >+include/vmime/security/cert/serverIdentityException.hpp >+include/vmime/security/cert/unsupportedCertificateTypeException.hpp > include/vmime/security/defaultAuthenticator.hpp > include/vmime/security/digest/md5/md5MessageDigest.hpp > include/vmime/security/digest/messageDigest.hpp >@@ -178,6 +185,8 @@ > include/vmime/security/sasl/SASLMechanismFactory.hpp > include/vmime/security/sasl/SASLSession.hpp > include/vmime/security/sasl/SASLSocket.hpp >+include/vmime/security/sasl/XOAuth2SASLAuthenticator.hpp >+include/vmime/security/sasl/XOAuth2SASLMechanism.hpp > include/vmime/security/sasl/builtinSASLMechanism.hpp > include/vmime/security/sasl/defaultSASLAuthenticator.hpp > include/vmime/streamContentHandler.hpp >@@ -230,6 +239,6 @@ > include/vmime/wordEncoder.hpp > lib/libvmime.a > lib/libvmime.so >-lib/libvmime.so.0 >-lib/libvmime.so.0.0.0 >+lib/libvmime.so.1 >+lib/libvmime.so.1.0.0 > libdata/pkgconfig/vmime.pc
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 216999
: 179875