public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Conrad Kostecki" <conikost@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-db/sqlite/files/
Date: Fri, 22 Nov 2024 23:22:16 +0000 (UTC)	[thread overview]
Message-ID: <1732317718.05065f46e1522d9e5e096f58212aee9ed5771b61.conikost@gentoo> (raw)

commit:     05065f46e1522d9e5e096f58212aee9ed5771b61
Author:     Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
AuthorDate: Wed Nov 20 16:47:45 2024 +0000
Commit:     Conrad Kostecki <conikost <AT> gentoo <DOT> org>
CommitDate: Fri Nov 22 23:21:58 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05065f46

dev-db/sqlite: remove unused patch

Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>

 dev-db/sqlite/files/sqlite-3.45.2-tests-x86.patch | 112 ----------------------
 1 file changed, 112 deletions(-)

diff --git a/dev-db/sqlite/files/sqlite-3.45.2-tests-x86.patch b/dev-db/sqlite/files/sqlite-3.45.2-tests-x86.patch
deleted file mode 100644
index 153dd82c1e19..000000000000
--- a/dev-db/sqlite/files/sqlite-3.45.2-tests-x86.patch
+++ /dev/null
@@ -1,112 +0,0 @@
-https://sqlite.org/forum/forumpost/7dfd585ce1
-https://sqlite.org/src/info/d0fbe779bc2460e1
-
-Index: test/func4.test
-==================================================================
---- a/test/func4.test
-+++ b/test/func4.test
-@@ -1,6 +1,6 @@
--# 2013 March 10
-+# 2023-03-10
- #
- # The author disclaims copyright to this source code.  In place of
- # a legal notice, here is a blessing:
- #
- #    May you do good and not evil.
-@@ -7,11 +7,14 @@
- #    May you find forgiveness for yourself and forgive others.
- #    May you share freely, never taking more than you give.
- #
- #***********************************************************************
- # This file implements regression tests for SQLite library. The focus of
--# this file is testing the tointeger() and toreal() functions.
-+# this file is testing the tointeger() and toreal() functions that are
-+# part of the "totype.c" extension.  This file does not test the core
-+# SQLite library.  Failures of tests in this file are related to the
-+# ext/misc/totype.c extension.
- #
- # Several of the toreal() tests are disabled on platforms where floating
- # point precision is not high enough to represent their constant integer
- # expression arguments as double precision floating point values.
- #
-@@ -21,10 +24,24 @@
- set tcl_precision 0
- load_static_extension db totype
- 
- set highPrecision(1) [expr \
-     {[db eval {SELECT tointeger(9223372036854775807 + 1);}] eq {{}}}]
-+set highPrecision(2) [expr \
-+    {[db eval {SELECT toreal(-9223372036854775808 + 1);}] eq {{}}}]
-+
-+# highPrecision(3) is only known to be false on i586 with gcc-13 and -O2.
-+# It is true on the exact same platform with -O0.  Both results seem
-+# reasonable, so we'll just very the expectation accordingly.
-+#
-+set highPrecision(3) [expr \
-+    {[db eval {SELECT toreal(9007199254740992 + 1);}] eq {{}}}]
-+
-+if {!$highPrecision(1) || !$highPrecision(2) || !$highPrecision(3)} {
-+  puts "NOTICE: use_long_double: [use_long_double] \
-+        highPrecision: $highPrecision(1) $highPrecision(2) $highPrecision(3)"
-+}
- 
- do_execsql_test func4-1.1 {
-   SELECT tointeger(NULL);
- } {{}}
- do_execsql_test func4-1.2 {
-@@ -193,12 +210,10 @@
- do_execsql_test func4-1.55 {
-   SELECT tointeger(18446744073709551616 + 1);
- } {{}}
- 
- ifcapable floatingpoint {
--  set highPrecision(2) [expr \
--      {[db eval {SELECT toreal(-9223372036854775808 + 1);}] eq {{}}}]
- 
-   do_execsql_test func4-2.1 {
-     SELECT toreal(NULL);
-   } {{}}
-   do_execsql_test func4-2.2 {
-@@ -339,14 +354,18 @@
-     SELECT toreal(9007199254740992 - 1);
-   } {9007199254740991.0}
-   do_execsql_test func4-2.45 {
-     SELECT toreal(9007199254740992);
-   } {9007199254740992.0}
--  if {$highPrecision(2)} {
-+  if {$highPrecision(3)} {
-+    do_execsql_test func4-2.46 {
-+      SELECT toreal(9007199254740992 + 1);
-+    } {{}}
-+  } else {
-     do_execsql_test func4-2.46 {
-       SELECT toreal(9007199254740992 + 1);
--    } {{}}
-+    } {9007199254740992.0}
-   }
-   do_execsql_test func4-2.47 {
-     SELECT toreal(9007199254740992 + 2);
-   } {9007199254740994.0}
-   do_execsql_test func4-2.48 {
-@@ -624,14 +643,18 @@
-     SELECT tointeger(toreal(9007199254740992 - 1));
-   } {9007199254740991}
-   do_execsql_test func4-5.22 {
-     SELECT tointeger(toreal(9007199254740992));
-   } {9007199254740992}
--  if {$highPrecision(2)} {
-+  if {$highPrecision(3)} {
-     do_execsql_test func4-5.23 {
-       SELECT tointeger(toreal(9007199254740992 + 1));
-     } {{}}
-+  } else {
-+    do_execsql_test func4-5.23 {
-+      SELECT tointeger(toreal(9007199254740992 + 1));
-+    } {9007199254740992}
-   }
-   do_execsql_test func4-5.24 {
-     SELECT tointeger(toreal(9007199254740992 + 2));
-   } {9007199254740994}
-   if {$highPrecision(1)} {
-
-


             reply	other threads:[~2024-11-22 23:22 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-22 23:22 Conrad Kostecki [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-02-27  9:31 [gentoo-commits] repo/gentoo:master commit in: dev-db/sqlite/files/ Ionen Wolkens
2025-01-25 13:00 Sam James
2024-06-27 15:40 Conrad Kostecki
2024-06-17 22:36 Conrad Kostecki
2023-07-02  1:43 Conrad Kostecki
2023-03-23 23:13 Sam James
2022-02-11  0:53 Conrad Kostecki
2018-05-27 16:11 Aaron Bauman
2018-04-30 15:58 Mike Gilbert
2016-07-29  2:00 Mike Gilbert

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1732317718.05065f46e1522d9e5e096f58212aee9ed5771b61.conikost@gentoo \
    --to=conikost@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox