public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/vym] epel10: Unused patch removal, BZ 511290.
@ 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 : 677c9049b8fb823947fefe643846fe1fd792deb6
Author : Jon Ciesla <limb@fedoraproject.org>
Date : 2009-07-15T13:03:20+00:00
Stats : +0/-228 in 11 file(s)
URL : https://src.fedoraproject.org/rpms/vym/c/677c9049b8fb823947fefe643846fe1fd792deb6?branch=epel10
Log:
Unused patch removal, BZ 511290.
---
diff --git a/vym-0.10.0-editxlinkdialog-typeinfo.patch b/vym-0.10.0-editxlinkdialog-typeinfo.patch
deleted file mode 100644
index 1004117..0000000
--- a/vym-0.10.0-editxlinkdialog-typeinfo.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- 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
deleted file mode 100644
index a6c3cd9..0000000
--- a/vym-0.10.0-mainwindow-typeinfo.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- 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
deleted file mode 100644
index 12b9ccc..0000000
--- a/vym-0.10.0-selection-typeinfo.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- 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
deleted file mode 100644
index e993dd4..0000000
--- a/vym-0.10.0-xml-vym-typeinfo.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- 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-dir-vars.patch b/vym-1.10.0-dir-vars.patch
deleted file mode 100644
index 5b6d403..0000000
--- a/vym-1.10.0-dir-vars.patch
+++ /dev/null
@@ -1,60 +0,0 @@
-Author: Till Maas <opensource till name>
-License: same as vym
-
-Define more variables to make it easier to configure the path where
-the parts of vym should be installed, e.g. the prefix (PREFIX is imho
-more ofen used than INSTALLDIR) and DOCDIR.
-
-diff -up vym-1.10.0/vym.pro.dir-vars vym-1.10.0/vym.pro
---- vym.pro 2007-07-30 11:47:12.000000000 +0200
-+++ vym.pro 2007-10-18 21:55:44.000000000 +0200
-@@ -121,26 +121,42 @@ TRANSLATIONS += lang/vym_en.ts
- TRANSLATIONS += lang/vym_es.ts
- TRANSLATIONS += lang/vym_it.ts
-
--count( INSTALLDIR, 0 ) {
-- INSTALLDIR = /usr/local
-+isEmpty( PREFIX ) {
-+ PREFIX = /usr/local
-+ count( INSTALLDIR, 1 ) {
-+ PREFIX = $${INSTALLDIR}
-+ message( "Please use PREFIX instead of INSTALLDIR" )
-+ }
-+}
-+isEmpty( BINDIR ) {
-+ BINDIR = $${PREFIX}/bin
-+}
-+isEmpty( DATADIR ) {
-+ DATADIR = $${PREFIX}/share
-+}
-+isEmpty( DOCDIR ) {
-+ DOCDIR = $${DATADIR}/doc/packages/vym
-+}
-+isEmpty( DEMODIR ) {
-+ DEMODIR = $${DOCDIR}
- }
-
- message( "Installation directory" )
--message( $$INSTALLDIR )
-+message( $$PREFIX )
-
-
--target.path = $${INSTALLDIR}/bin
-+target.path = $${BINDIR}
- INSTALLS += target
-
- support.files = styles/ scripts/ icons/ flags/ lang/ macros/ exports/
--support.path = $${INSTALLDIR}/share/vym
-+support.path = $${DATADIR}/vym
- INSTALLS += support
-
- doc.files = tex/vym.pdf
--doc.path = $${INSTALLDIR}/share/doc/packages/vym
-+doc.path = $${DOCDIR}
- INSTALLS += doc
-
- demo.files = demos/
--demo.path = $${INSTALLDIR}/share/doc/packages/vym
-+demo.path = $${DEMODIR}
- INSTALLS += demo
-
diff --git a/vym-1.10.0-docdir-searchList.patch b/vym-1.10.0-docdir-searchList.patch
deleted file mode 100644
index 1a9a69e..0000000
--- a/vym-1.10.0-docdir-searchList.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-Author: Till Maas <opensource till name>
-License: same as vym
-
-Add the used DOCDIR when building vym to the searchList when searching the
-pdf with the documentation.
-
-diff -up vym-1.10.0/vym.pro.docdir-searchList vym-1.10.0/vym.pro
---- vym.pro 2007-10-18 23:43:25.000000000 +0200
-+++ vym.pro 2007-10-18 23:43:25.000000000 +0200
-@@ -152,9 +152,10 @@ support.files = styles/ scripts/ icons/
- support.path = $${DATADIR}/vym
- INSTALLS += support
-
--doc.files = tex/vym.pdf
-+doc.files = tex/vym.pdf
- doc.path = $${DOCDIR}
- INSTALLS += doc
-+DEFINES += VYM_DOCDIR=\\\"$${DOCDIR}\\\"
-
- demo.files = demos/
- demo.path = $${DEMODIR}
-diff -up vym-1.10.0/mainwindow.cpp.docdir-searchList vym-1.10.0/mainwindow.cpp
---- mainwindow.cpp 2007-09-04 15:53:33.000000000 +0200
-+++ mainwindow.cpp 2007-10-18 23:44:51.000000000 +0200
-@@ -3629,6 +3629,9 @@ void Main::helpDoc()
- #if defined(Q_OS_MACX)
- searchList << "./vym.app/Contents/Resources/doc";
- #else
-+ #if defined(VYM_DOCDIR)
-+ searchList << VYM_DOCDIR;
-+ #endif
- // default path in SUSE LINUX
- searchList <<"/usr/share/doc/packages/vym";
- #endif
diff --git a/vym-1.10.0-ornamentedobj-typeinfo.patch b/vym-1.10.0-ornamentedobj-typeinfo.patch
deleted file mode 100644
index 1806919..0000000
--- a/vym-1.10.0-ornamentedobj-typeinfo.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- 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-1.10.0-xdg-open.patch b/vym-1.10.0-xdg-open.patch
deleted file mode 100644
index 6cd599a..0000000
--- a/vym-1.10.0-xdg-open.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-Author: Till Maas <opensource till name>
-License: same as vym
-
-This makes vym use xdg-open instead of konqueror or acroread by default to
-open an URL or a PDF-document.
-
-diff -up vym-1.10.0/mainwindow.cpp.xdg-open vym-1.10.0/mainwindow.cpp
---- mainwindow.cpp 2007-10-18 23:36:22.000000000 +0200
-+++ mainwindow.cpp 2007-10-18 23:38:02.000000000 +0200
-@@ -135,7 +135,7 @@ Main::Main(QWidget* parent, const char*
- // application to open URLs
- p="/mainwindow/readerURL";
- #if defined(Q_OS_LINUX)
-- s=settings.value (p,"konqueror").toString();
-+ s=settings.value (p,"xdg-open").toString();
- #else
- #if defined(Q_OS_MACX)
- s=settings.value (p,"/usr/bin/open").toString();
-@@ -148,7 +148,7 @@ Main::Main(QWidget* parent, const char*
- // application to open PDFs
- p="/mainwindow/readerPDF";
- #if defined(Q_OS_LINUX)
-- s=settings.value (p,"acroread").toString();
-+ s=settings.value (p,"xdg-open").toString();
- #else
- #if defined(Q_OS_MACX)
- s=settings.value (p,"/usr/bin/open").toString();
diff --git a/vym-mainwindow.patch b/vym-mainwindow.patch
deleted file mode 100644
index f119c00..0000000
--- a/vym-mainwindow.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- mainwindow.cpp 2007-03-21 10:31:33.000000000 -0500
-+++ mainwindow.cpp 2007-03-21 10:36:12.000000000 -0500
-@@ -2764,7 +2764,7 @@
- docpath="./vym.app/Contents/vym.pdf";
- #else
- // default path in SUSE LINUX
-- docpath="/usr/share/doc/packages/vym/doc/vym.pdf";
-+ docpath="/usr/share/doc/vym-1.8.1/doc/vym.pdf";
- #endif
-
- if (!QFile (docpath).exists() )
-@@ -2778,7 +2778,7 @@
- if (!QFile (docpath).exists() )
- {
- // Try yet another one for Knoppix
-- docpath="/usr/share/doc/packages/vym/vym.pdf";
-+ docpath="/usr/share/doc/vym-1.8.1/vym.pdf";
- if (!QFile (docpath).exists() )
- {
- QMessageBox::critical(0,
diff --git a/vym-pro.patch b/vym-pro.patch
deleted file mode 100644
index 3af11f7..0000000
--- a/vym-pro.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- vym.pro 2007-03-21 10:31:33.000000000 -0500
-+++ vym.pro 2007-03-21 10:36:44.000000000 -0500
-@@ -101,11 +101,11 @@
- INSTALLS += support
-
- doc.files = tex/vym.pdf
--doc.path = $${INSTALLDIR}/share/doc/packages/vym
-+doc.path = $${INSTALLDIR}/share/doc/vym-1.8.1
- INSTALLS += doc
-
- demo.files = demos/
--demo.path = $${INSTALLDIR}/share/doc/packages/vym
-+demo.path = $${INSTALLDIR}/share/doc/vym-1.8.1
- INSTALLS += demo
-
- exports.files = exports/
diff --git a/vym-tex.patch b/vym-tex.patch
deleted file mode 100644
index 83c5da9..0000000
--- a/vym-tex.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- tex/vym.tex 2007-03-21 10:31:32.000000000 -0500
-+++ tex/vym.tex 2007-03-21 10:38:28.000000000 -0500
-@@ -500,7 +500,7 @@
- paste it from your browser). Examples for valid paths are:
- \begin{verbatim}
- http://www.insilmaril.de/vym/index.html
-- file:/usr/share/doc/packages/vym/doc/vym.pdf
-+ file:/usr/share/doc/vym-1.8.1/doc/vym.pdf
- \end{verbatim}
- If an URL was entered, a little globe will appear in the branch. By
- clicking on the globe in the toolbar or the context menu an external
-@@ -1117,7 +1117,7 @@
- Together with \vym you should have received a directory with several
- maps e.g. on SUSE~LINUX this is
- \begin{center}
-- {\tt /usr/share/doc/packages/vym/demos}
-+ {\tt /usr/share/doc/vym-1.8.1/demos}
- \end{center}
- where you find the map {\tt todo.vym}. It lists quite a lot of things to
- be done in future. If you have more ideas, contact the development team
^ 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: Unused patch removal, BZ 511290 Jon Ciesla
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox