Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 7 Jun 2024 18:26:17 GMT
From:      Christoph Moench-Tegeder <cmt@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: f461a60962ce - main - mail/thunderbird: update to 115.12.0 (rc1)
Message-ID:  <202406071826.457IQHQQ044833@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by cmt:

URL: https://cgit.FreeBSD.org/ports/commit/?id=f461a60962ceea9e4e0516bc8742a449ecd7f02e

commit f461a60962ceea9e4e0516bc8742a449ecd7f02e
Author:     Christoph Moench-Tegeder <cmt@FreeBSD.org>
AuthorDate: 2024-06-07 18:25:45 +0000
Commit:     Christoph Moench-Tegeder <cmt@FreeBSD.org>
CommitDate: 2024-06-07 18:25:45 +0000

    mail/thunderbird: update to 115.12.0 (rc1)
    
    Release Notes (soon):
      https://www.thunderbird.net/en-US/thunderbird/115.12.0/releasenotes/
---
 mail/thunderbird/Makefile                    |  2 +-
 mail/thunderbird/distinfo                    |  6 +--
 mail/thunderbird/files/patch-rust-1.78.0-arm | 64 ----------------------------
 3 files changed, 4 insertions(+), 68 deletions(-)

diff --git a/mail/thunderbird/Makefile b/mail/thunderbird/Makefile
index 5de5800ccb7f..cf2692dcc6f8 100644
--- a/mail/thunderbird/Makefile
+++ b/mail/thunderbird/Makefile
@@ -1,5 +1,5 @@
 PORTNAME=	thunderbird
-DISTVERSION=	115.11.2
+DISTVERSION=	115.12.0
 CATEGORIES=	mail news net-im wayland
 MASTER_SITES=	MOZILLA/${PORTNAME}/releases/${DISTVERSION}/source \
 		MOZILLA/${PORTNAME}/candidates/${DISTVERSION}-candidates/build1/source
diff --git a/mail/thunderbird/distinfo b/mail/thunderbird/distinfo
index a75e2544d70b..71b3f31157fb 100644
--- a/mail/thunderbird/distinfo
+++ b/mail/thunderbird/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1717189136
-SHA256 (thunderbird-115.11.2.source.tar.xz) = 6ccbea9a2f5daa7e64269fbfcc035d99a472c1704a9b7803c8444e5907f9b3ab
-SIZE (thunderbird-115.11.2.source.tar.xz) = 537376512
+TIMESTAMP = 1717781997
+SHA256 (thunderbird-115.12.0.source.tar.xz) = ed105c8d9298bcaee7c02e9325abd6a0d19926605bac34460de649628fdc67fb
+SIZE (thunderbird-115.12.0.source.tar.xz) = 536000896
diff --git a/mail/thunderbird/files/patch-rust-1.78.0-arm b/mail/thunderbird/files/patch-rust-1.78.0-arm
deleted file mode 100644
index 7db8038cfaeb..000000000000
--- a/mail/thunderbird/files/patch-rust-1.78.0-arm
+++ /dev/null
@@ -1,64 +0,0 @@
-Relevant bug report: https://bugzilla.mozilla.org/show_bug.cgi?id=1882291
-
-
-diff --git a/Cargo.lock b/Cargo.lock
---- Cargo.lock
-+++ Cargo.lock
-@@ -4274,10 +4274,11 @@
- [[package]]
- name = "qcms"
- version = "0.2.0"
- dependencies = [
-  "libc",
-+ "version_check",
- ]
- 
- [[package]]
- name = "qlog"
- version = "0.4.0"
-diff --git a/gfx/qcms/Cargo.toml b/gfx/qcms/Cargo.toml
---- gfx/qcms/Cargo.toml
-+++ gfx/qcms/Cargo.toml
-@@ -18,5 +18,8 @@
- iccv4-enabled = []
- cmyk = []
- 
- [dependencies]
- libc = {version = "0.2", optional = true }
-+
-+[build-dependencies]
-+version_check = "0.9"
-diff --git a/gfx/qcms/build.rs b/gfx/qcms/build.rs
-new file mode 100644
---- /dev/null
-+++ gfx/qcms/build.rs
-@@ -0,0 +1,7 @@
-+extern crate version_check as rustc;
-+
-+fn main() {
-+    if rustc::is_min_version("1.78.0").unwrap_or(false) {
-+        println!("cargo:rustc-cfg=stdsimd_split");
-+    }
-+}
-diff --git a/gfx/qcms/src/lib.rs b/gfx/qcms/src/lib.rs
---- gfx/qcms/src/lib.rs
-+++ gfx/qcms/src/lib.rs
-@@ -5,13 +5,15 @@
- #![allow(non_camel_case_types)]
- #![allow(non_snake_case)]
- #![allow(non_upper_case_globals)]
- // These are needed for the neon SIMD code and can be removed once the MSRV supports the
- // instrinsics we use
--#![cfg_attr(feature = "neon", feature(stdsimd))]
-+#![cfg_attr(all(stdsimd_split, target_arch = "arm", feature = "neon"), feature(stdarch_arm_neon_intrinsics))]
-+#![cfg_attr(all(stdsimd_split, target_arch = "arm", feature = "neon"), feature(stdarch_arm_feature_detection))]
-+#![cfg_attr(all(not(stdsimd_split), target_arch = "arm", feature = "neon"), feature(stdsimd))]
- #![cfg_attr(
--    feature = "neon",
-+    all(target_arch = "arm", feature = "neon"),
-     feature(arm_target_feature, raw_ref_op)
- 
- )]
- 
- /// These values match the Rendering Intent values from the ICC spec
-



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202406071826.457IQHQQ044833>