public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/vym] epel10: Typeinfo patches.
@ 2026-07-20 18:58 Jon Ciesla
  0 siblings, 0 replies; only message in thread
From: Jon Ciesla @ 2026-07-20 18:58 UTC (permalink / raw)
  To: git-commits

A new commit has been pushed.

Repo   : rpms/vym
Branch : epel10
Commit : f96018f55c8429b217df40d36437c9b585670a0b
Author : Jon Ciesla <limb@fedoraproject.org>
Date   : 2008-01-09T20:03:14+00:00
Stats  : +66/-1 in 6 file(s)
URL    : https://src.fedoraproject.org/rpms/vym/c/f96018f55c8429b217df40d36437c9b585670a0b?branch=epel10

Log:
Typeinfo patches.

---
diff --git a/vym-0.10.0-editxlinkdialog-typeinfo.patch b/vym-0.10.0-editxlinkdialog-typeinfo.patch
new file mode 100644
index 0000000..1004117
--- /dev/null
+++ b/vym-0.10.0-editxlinkdialog-typeinfo.patch
@@ -0,0 +1,10 @@
+--- editxlinkdialog.cpp	2008-01-09 13:38:11.000000000 -0600
++++ editxlinkdialog.cpp	2008-01-09 13:38:11.000000000 -0600
+@@ -1,6 +1,7 @@
+ #include "editxlinkdialog.h"
+ 
+ #include <QColorDialog>
++#include <typeinfo>
+ 
+ EditXLinkDialog::EditXLinkDialog (QWidget *parent):QDialog (parent)
+ {

diff --git a/vym-0.10.0-mainwindow-typeinfo.patch b/vym-0.10.0-mainwindow-typeinfo.patch
new file mode 100644
index 0000000..a6c3cd9
--- /dev/null
+++ b/vym-0.10.0-mainwindow-typeinfo.patch
@@ -0,0 +1,10 @@
+--- mainwindow.cpp~	2008-01-09 13:40:12.000000000 -0600
++++ mainwindow.cpp	2008-01-09 13:40:12.000000000 -0600
+@@ -3,6 +3,7 @@
+ #include <QtGui>
+ 
+ #include <iostream>
++#include <typeinfo>
+ 
+ #include "aboutdialog.h"
+ #include "branchpropwindow.h"

diff --git a/vym-0.10.0-selection-typeinfo.patch b/vym-0.10.0-selection-typeinfo.patch
new file mode 100644
index 0000000..12b9ccc
--- /dev/null
+++ b/vym-0.10.0-selection-typeinfo.patch
@@ -0,0 +1,11 @@
+--- selection.cpp	2008-01-09 13:39:27.000000000 -0600
++++ selection.cpp	2008-01-09 13:39:27.000000000 -0600
+@@ -2,7 +2,7 @@
+ 
+ #include "mainwindow.h"
+ #include "mapeditor.h"
+-
++#include <typeinfo>
+ 
+ 
+ extern Main *mainWindow;

diff --git a/vym-0.10.0-xml-vym-typeinfo.patch b/vym-0.10.0-xml-vym-typeinfo.patch
new file mode 100644
index 0000000..e993dd4
--- /dev/null
+++ b/vym-0.10.0-xml-vym-typeinfo.patch
@@ -0,0 +1,10 @@
+--- xml-vym.cpp	2008-01-09 13:37:09.000000000 -0600
++++ xml-vym.cpp	2008-01-09 13:37:09.000000000 -0600
+@@ -4,6 +4,7 @@
+ #include <QColor>
+ #include <QTextStream>
+ #include <iostream>
++#include <typeinfo>
+ 
+ #include "misc.h"
+ #include "settings.h"

diff --git a/vym-1.10.0-ornamentedobj-typeinfo.patch b/vym-1.10.0-ornamentedobj-typeinfo.patch
new file mode 100644
index 0000000..1806919
--- /dev/null
+++ b/vym-1.10.0-ornamentedobj-typeinfo.patch
@@ -0,0 +1,10 @@
+--- ornamentedobj.cpp	2008-01-09 13:43:37.000000000 -0600
++++ ornamentedobj.cpp	2008-01-09 13:43:37.000000000 -0600
+@@ -2,6 +2,7 @@
+ #include "texteditor.h"
+ #include "mapeditor.h"
+ #include "linkablemapobj.h"
++#include <typeinfo>
+ 
+ extern TextEditor *textEditor;
+ extern FlagRowObj *systemFlagsDefault;

diff --git a/vym.spec b/vym.spec
index a46fbbc..219c0db 100644
--- a/vym.spec
+++ b/vym.spec
@@ -1,6 +1,6 @@
 Name:           vym
 Version:        1.10.0
-Release:        1%{?dist}
+Release:        2%{?dist}
 Summary:        View your mind
 
 Group:          Applications/Productivity
@@ -11,6 +11,12 @@ Source1:        %{name}.desktop
 Patch0:         vym-1.10.0-dir-vars.patch
 Patch1:         vym-1.10.0-docdir-searchList.patch
 Patch2:         vym-1.10.0-xdg-open.patch
+Patch3:         vym-0.10.0-editxlinkdialog-typeinfo.patch
+Patch4:         vym-0.10.0-selection-typeinfo.patch
+Patch5:         vym-0.10.0-mainwindow-typeinfo.patch
+Patch6:         vym-0.10.0-xml-vym-typeinfo.patch
+Patch7:         vym-1.10.0-ornamentedobj-typeinfo.patch
+
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
 BuildRequires:  qt4-devel libXext-devel desktop-file-utils
@@ -27,6 +33,11 @@ to organize tasks, to get an overview over complex contexts.
 %patch0
 %patch1
 %patch2
+%patch3 -p0
+%patch4 -p0
+%patch5 -p0
+%patch6 -p0
+%patch7 -p0
 
 %build
 
@@ -84,6 +95,9 @@ fi
 %{_datadir}/icons/hicolor/128x128/apps/%{name}.png
 
 %changelog
+* Wed Jan 09 2008 Jon Ciesla <limb@jcomserv.net> - 1.10.0-2
+- Added typeinfo patches.
+
 * Thu Oct 18 2007 Jon Ciesla <limb@jcomserv.net> - 1.10.0-1
 - Upgrade to 1.10.0.
 - Applied several patches from Till Maas, which he sent upstream.

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2026-07-20 18:58 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-20 18:58 [rpms/vym] epel10: Typeinfo patches Jon Ciesla

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox