summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiroslav Šulc <fordfrog@gentoo.org>2024-12-10 09:15:20 +0100
committerMiroslav Šulc <fordfrog@gentoo.org>2024-12-10 09:15:29 +0100
commit5a743e422ff735844fa7de4052f85d083aa9518f (patch)
tree5490697fc1659d5c91ff1f0a5b23fb901599b1df /media-gfx/valentina/files
parentnet-im/telegram-desktop: Drop 5.7.2 (diff)
downloadgentoo-5a743e422ff735844fa7de4052f85d083aa9518f.tar.gz
gentoo-5a743e422ff735844fa7de4052f85d083aa9518f.tar.bz2
gentoo-5a743e422ff735844fa7de4052f85d083aa9518f.zip
media-gfx/valentina: dropped obsolete 0.6.1-r1
Bug: https://bugs.gentoo.org/945638 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'media-gfx/valentina/files')
-rw-r--r--media-gfx/valentina/files/5823.patch50
-rw-r--r--media-gfx/valentina/files/valentina-0.6.1-disable-vcs-version.patch75
2 files changed, 0 insertions, 125 deletions
diff --git a/media-gfx/valentina/files/5823.patch b/media-gfx/valentina/files/5823.patch
deleted file mode 100644
index 79df9a74c5a6..000000000000
--- a/media-gfx/valentina/files/5823.patch
+++ /dev/null
@@ -1,50 +0,0 @@
-# HG changeset patch
-# User Roman Telezhynskyi <kroluku@gmail.com>
-# Date 1551441739 -7200
-# Fri Mar 01 14:02:19 2019 +0200
-# Branch release
-# Node ID 82e62ea2d785e093af68089e509b224f3f4f843f
-# Parent 0108ef767e2447e5b5f39378bcf245e25947a25d
-Don't use Qt OpenGL module since Q5.4.
-
-diff -r 0108ef767e24 -r 82e62ea2d785 src/app/valentina/valentina.pro
---- a/src/app/valentina/valentina.pro Sun Feb 24 17:29:12 2019 +0200
-+++ b/src/app/valentina/valentina.pro Fri Mar 01 14:02:19 2019 +0200
-@@ -297,7 +297,6 @@
- $$[QT_INSTALL_BINS]/icuuc*.dll \ # Different name for different Qt releases
- $$[QT_INSTALL_BINS]/Qt5Core.dll \
- $$[QT_INSTALL_BINS]/Qt5Concurrent.dll \
-- $$[QT_INSTALL_BINS]/Qt5OpenGL.dll \
- $$[QT_INSTALL_BINS]/Qt5Gui.dll \
- $$[QT_INSTALL_BINS]/Qt5Network.dll \
- $$[QT_INSTALL_BINS]/Qt5PrintSupport.dll \
-@@ -309,6 +308,11 @@
- $$[QT_INSTALL_BINS]/libstdc++-6.dll \
- $$[QT_INSTALL_BINS]/libwinpthread-1.dll
-
-+ # Don't use Qt OpenGL module since Q5.4
-+ equals(QT_MAJOR_VERSION, 5):lessThan(QT_MINOR_VERSION, 4) {
-+ package.files += $$[QT_INSTALL_BINS]/Qt5OpenGL.dll
-+ }
-+
- # For support Windows 7+
- greaterThan(QT_MAJOR_VERSION, 4):greaterThan(QT_MINOR_VERSION, 6) {
- package.files += $$[QT_INSTALL_BINS]/Qt5WinExtras.dll
-diff -r 0108ef767e24 -r 82e62ea2d785 src/libs/vwidgets/vwidgets.pro
---- a/src/libs/vwidgets/vwidgets.pro Sun Feb 24 17:29:12 2019 +0200
-+++ b/src/libs/vwidgets/vwidgets.pro Fri Mar 01 14:02:19 2019 +0200
-@@ -7,7 +7,12 @@
- # File with common stuff for whole project
- include(../../../common.pri)
-
--QT += widgets printsupport opengl
-+QT += widgets printsupport
-+
-+# Don't use Qt OpenGL module since Q5.4
-+equals(QT_MAJOR_VERSION, 5):lessThan(QT_MINOR_VERSION, 4) {
-+ QT += opengl
-+}
-
- # Name of the library
- TARGET = vwidgets
-
diff --git a/media-gfx/valentina/files/valentina-0.6.1-disable-vcs-version.patch b/media-gfx/valentina/files/valentina-0.6.1-disable-vcs-version.patch
deleted file mode 100644
index 471d7a85313c..000000000000
--- a/media-gfx/valentina/files/valentina-0.6.1-disable-vcs-version.patch
+++ /dev/null
@@ -1,75 +0,0 @@
-diff --git a/common.pri b/common.pri
-index 523aa7c..33be789 100644
---- a/common.pri
-+++ b/common.pri
-@@ -212,37 +212,7 @@ defineReplace(enable_ccache){
- }
-
- defineReplace(FindBuildRevision){
--CONFIG(debug, debug|release){
-- # Debug mode
-- return(\\\"unknown\\\")
--}else{
-- # Release mode
--
-- macx{
-- HG = /usr/local/bin/hg # Can't defeat PATH variable on Mac OS.
-- }else {
-- HG = hg # All other platforms are OK.
-- }
--
-- #build revision number for using in version
-- unix {
-- DVCS_HESH=$$system("$${HG} log -r. --template '{node|short}'")
-- } else {
-- # Use escape character before "|" on Windows
-- DVCS_HESH=$$system($${HG} log -r. --template "{node^|short}")
-- }
-- isEmpty(DVCS_HESH){
-- DVCS_HESH=$$system("git rev-parse --short HEAD")
-- isEmpty(DVCS_HESH){
-- DVCS_HESH = \\\"unknown\\\" # if we can't find build revision left unknown.
-- } else {
-- DVCS_HESH=\\\"Git:$${DVCS_HESH}\\\"
-- }
-- } else {
-- DVCS_HESH=\\\"Hg:$${DVCS_HESH}\\\"
-- }
-- return($${DVCS_HESH})
--}
-+return(\\\"unknown\\\")
- }
-
- # Default prefix. Use for creation install path.
-diff --git a/src/libs/vmisc/vmisc.pro b/src/libs/vmisc/vmisc.pro
-index cf8db51..fff1c0e 100644
---- a/src/libs/vmisc/vmisc.pro
-+++ b/src/libs/vmisc/vmisc.pro
-@@ -98,10 +98,7 @@ CONFIG(debug, debug|release){
- HG = hg # All other platforms all OK.
- }
- #latest tag distance number for using in version
-- HG_DISTANCE=$$system($${HG} log -r. --template '{latesttagdistance}')
-- isEmpty(HG_DISTANCE){
-- HG_DISTANCE = 0 # if we can't find local revision left 0.
-- }
-+ HG_DISTANCE = 0 # if we can't find local revision left 0.
- message("Latest tag distance:" $${HG_DISTANCE})
- DEFINES += "LATEST_TAG_DISTANCE=$${HG_DISTANCE}" # Make available latest tag distance number in sources.
- }
-diff --git a/src/libs/vtest/vtest.pro b/src/libs/vtest/vtest.pro
-index a336d48..c943fc5 100644
---- a/src/libs/vtest/vtest.pro
-+++ b/src/libs/vtest/vtest.pro
-@@ -92,10 +92,7 @@ CONFIG(debug, debug|release){
- HG = hg # All other platforms all OK.
- }
- #latest tag distance number for using in version
-- HG_DISTANCE=$$system($${HG} log -r. --template '{latesttagdistance}')
-- isEmpty(HG_DISTANCE){
-- HG_DISTANCE = 0 # if we can't find local revision left 0.
-- }
-+ HG_DISTANCE = 0 # if we can't find local revision left 0.
- message("Latest tag distance:" $${HG_DISTANCE})
- DEFINES += "LATEST_TAG_DISTANCE=$${HG_DISTANCE}" # Make available latest tag distance number in sources.
- }