Index: head/mail/thunderbird/Makefile =================================================================== --- head/mail/thunderbird/Makefile (revision 560773) +++ head/mail/thunderbird/Makefile (revision 560774) @@ -1,81 +1,80 @@ # Created by: Joe Marcus Clarke # $FreeBSD$ PORTNAME= thunderbird -DISTVERSION= 78.6.0 -PORTREVISION= 2 +DISTVERSION= 78.6.1 CATEGORIES= mail news net-im MASTER_SITES= MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \ MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source DISTFILES= ${DISTNAME}.source${EXTRACT_SUFX} MAINTAINER= gecko@FreeBSD.org COMMENT= Mozilla Thunderbird is standalone mail and news that stands above BUILD_DEPENDS= nspr>=4.26:devel/nspr \ nss>=3.56:security/nss \ icu>=67.1,1:devel/icu \ libevent>=2.1.8:devel/libevent \ harfbuzz>=2.6.6:print/harfbuzz \ graphite2>=1.3.14:graphics/graphite2 \ png>=1.6.35:graphics/png \ libvpx>=1.8.2:multimedia/libvpx \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ v4l_compat>0:multimedia/v4l_compat \ autoconf-2.13:devel/autoconf213 \ nasm:devel/nasm \ yasm:devel/yasm \ zip:archivers/zip LIB_DEPENDS= libjson-c.so:devel/json-c \ libbotan-2.so:security/botan2 SSP_UNSAFE= yes USE_GECKO= gecko USE_MOZILLA= -sqlite CFLAGS_powerpc64le= -DSQLITE_BYTEORDER=1234 USES= tar:xz MOZ_OPTIONS= --enable-application=comm/mail --enable-official-branding MOZ_OPTIONS+= --with-system-bz2 --with-system-jsonc --with-system-botan MOZ_MK_OPTIONS= MOZ_THUNDERBIRD=1 MAIL_PKG_SHARED=1 MOZ_EXPORT= MOZ_THUNDERBIRD=1 MAIL_PKG_SHARED=1 PORTNAME_ICON= ${MOZILLA}.png PORTNAME_ICON_SRC= ${PREFIX}/lib/${MOZILLA}/chrome/icons/default/default48.png SYSTEM_PREFS= ${FAKEDIR}/lib/${PORTNAME}/defaults/pref/${PORTNAME}.js OPTIONS_DEFINE= LIGHTNING OPTIONS_DEFAULT=CANBERRA LIGHTNING .include "${.CURDIR}/../../www/firefox/Makefile.options" .include .if ${PORT_OPTIONS:MLIGHTNING} MOZ_OPTIONS+= --enable-calendar .else MOZ_OPTIONS+= --disable-calendar .endif post-extract: @${SED} -e 's|@PORTNAME_ICON@|${PORTNAME_ICON:R}|;s|@MOZILLA@|${MOZILLA}|' \ <${FILESDIR}/thunderbird.desktop.in >${WRKDIR}/${MOZILLA_EXEC_NAME}.desktop post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \ ${WRKSRC}/comm/mail/app/nsMailApp.cpp pre-configure: (cd ${WRKSRC} && ${LOCALBASE}/bin/autoconf-2.13) (cd ${MOZSRC} && ${LOCALBASE}/bin/autoconf-2.13) (cd ${MOZSRC}/js/src/ && ${LOCALBASE}/bin/autoconf-2.13) port-pre-install: ${MKDIR} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/defaults post-install: ${INSTALL_DATA} ${WRKDIR}/${MOZILLA_EXEC_NAME}.desktop ${STAGEDIR}${PREFIX}/share/applications ${LN} -sf ${PORTNAME_ICON_SRC} ${STAGEDIR}${PREFIX}/share/pixmaps/${PORTNAME_ICON} .include Index: head/mail/thunderbird/distinfo =================================================================== --- head/mail/thunderbird/distinfo (revision 560773) +++ head/mail/thunderbird/distinfo (revision 560774) @@ -1,3 +1,3 @@ -TIMESTAMP = 1607779864 -SHA256 (thunderbird-78.6.0.source.tar.xz) = 1dd6f9a4d88b4c3d0ec47bba60a891243ef95e105a9045b2d32e2b126779844b -SIZE (thunderbird-78.6.0.source.tar.xz) = 353496712 +TIMESTAMP = 1610105147 +SHA256 (thunderbird-78.6.1.source.tar.xz) = 870b544d26f5e52c187499d134e49eded2943a4a029269ae86aba6a69c53dcc6 +SIZE (thunderbird-78.6.1.source.tar.xz) = 351971732 Index: head/mail/thunderbird/files/patch-bug1684180 =================================================================== --- head/mail/thunderbird/files/patch-bug1684180 (revision 560773) +++ head/mail/thunderbird/files/patch-bug1684180 (nonexistent) @@ -1,34 +0,0 @@ -commit 383a82da4808 -Author: Emilio Cobos Álvarez -Date: Mon Dec 28 04:39:00 2020 -0800 - - Bug 1684180 - Fix ESR build with newer versions of cbindgen. r=kvark ---- - dom/webgpu/ipc/WebGPUParent.cpp | 8 +++----- - 1 file changed, 3 insertions(+), 5 deletions(-) - -diff --git dom/webgpu/ipc/WebGPUParent.cpp dom/webgpu/ipc/WebGPUParent.cpp -index ff93c0630d02..17c2ace6b4ae 100644 ---- dom/webgpu/ipc/WebGPUParent.cpp -+++ dom/webgpu/ipc/WebGPUParent.cpp -@@ -423,17 +423,15 @@ ipc::IPCResult WebGPUParent::RecvDeviceCreateBindGroup( - switch (entry.mType) { - case SerialBindGroupEntryType::Buffer: - bgb.resource.tag = ffi::WGPUBindingResource_Buffer; -- bgb.resource.buffer._0.buffer = entry.mValue; -- bgb.resource.buffer._0.offset = entry.mBufferOffset; -- bgb.resource.buffer._0.size = entry.mBufferSize; -+ bgb.resource.buffer = {entry.mValue, entry.mBufferOffset, entry.mBufferSize}; - break; - case SerialBindGroupEntryType::Texture: - bgb.resource.tag = ffi::WGPUBindingResource_TextureView; -- bgb.resource.texture_view._0 = entry.mValue; -+ bgb.resource.texture_view = {entry.mValue}; - break; - case SerialBindGroupEntryType::Sampler: - bgb.resource.tag = ffi::WGPUBindingResource_Sampler; -- bgb.resource.sampler._0 = entry.mValue; -+ bgb.resource.sampler = {entry.mValue}; - break; - default: - MOZ_CRASH("unreachable"); Property changes on: head/mail/thunderbird/files/patch-bug1684180 ___________________________________________________________________ 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