summaryrefslogtreecommitdiff
path: root/dev-db/sqlitebrowser/files
diff options
context:
space:
mode:
authorMattéo Rossillol‑‑Laruelle <beatussum@protonmail.com>2024-10-02 11:02:52 +0200
committerEli Schwartz <eschwartz@gentoo.org>2024-10-06 23:23:57 -0400
commitc15c11e6b83c6e140047c1647510370099be70f7 (patch)
tree7f99feb8d5f056ee5fb43e41ca1279e85fa6c709 /dev-db/sqlitebrowser/files
parentdfe1b1aab8e4ac6baf473ef0dc8a38c0ec813b67 (diff)
downloadgentoo-c15c11e6b83c6e140047c1647510370099be70f7.tar.gz
gentoo-c15c11e6b83c6e140047c1647510370099be70f7.tar.bz2
gentoo-c15c11e6b83c6e140047c1647510370099be70f7.zip
dev-db/sqlitebrowser: drop 3.12.2-r2
Signed-off-by: Mattéo Rossillol‑‑Laruelle <beatussum@protonmail.com> Closes: https://github.com/gentoo/gentoo/pull/38848 Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
Diffstat (limited to 'dev-db/sqlitebrowser/files')
-rw-r--r--dev-db/sqlitebrowser/files/sqlitebrowser-3.12.2-str-conflict-fix.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/dev-db/sqlitebrowser/files/sqlitebrowser-3.12.2-str-conflict-fix.patch b/dev-db/sqlitebrowser/files/sqlitebrowser-3.12.2-str-conflict-fix.patch
deleted file mode 100644
index 07284ca8ba0c..000000000000
--- a/dev-db/sqlitebrowser/files/sqlitebrowser-3.12.2-str-conflict-fix.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- a/src/version.h
-+++ b/src/version.h
-@@ -4,8 +4,8 @@
- #define MINOR_VERSION 12
- #define PATCH_VERSION 2
-
--#define str(s) #s
--#define xstr(s) str(s)
-+#define stringize(s) #s
-+#define xstr(s) stringize(s)
- #define APP_VERSION xstr(MAJOR_VERSION) "." xstr(MINOR_VERSION) "." xstr(PATCH_VERSION)
-
- // If it is defined by the compiler, then it is a nightly build, and in the YYYYMMDD format.