public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/kde:master commit in: kde-plasma/kwin/files/
@ 2015-06-30 20:54 Johannes Huber
  0 siblings, 0 replies; 5+ messages in thread
From: Johannes Huber @ 2015-06-30 20:54 UTC (permalink / raw
  To: gentoo-commits

commit:     3b7bcc11b396a8b520e61a99aaaec3d35366e819
Author:     Johannes Huber <johu <AT> gentoo <DOT> org>
AuthorDate: Tue Jun 30 20:53:35 2015 +0000
Commit:     Johannes Huber <johu <AT> gentoo <DOT> org>
CommitDate: Tue Jun 30 20:53:35 2015 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=3b7bcc11

[de-plasma/kwin] Remove unused patch

Package-Manager: portage-2.2.20

 kde-plasma/kwin/files/kwin-5.3.1-gles2.patch | 47 ----------------------------
 1 file changed, 47 deletions(-)

diff --git a/kde-plasma/kwin/files/kwin-5.3.1-gles2.patch b/kde-plasma/kwin/files/kwin-5.3.1-gles2.patch
deleted file mode 100644
index cf4d859..0000000
--- a/kde-plasma/kwin/files/kwin-5.3.1-gles2.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-commit 713c6b25dce2fc60184ddc7b618b0b1195ab9870
-Author: Martin Gräßlin <mgraesslin@kde.org>
-Date:   Fri May 8 08:53:34 2015 +0200
-
-    [kwinglutils] Init glVersion on gles
-    
-    The glVersion was not set at all for gles causing any code doing a
-    hasGLVersion check to fail which means that the compositor doesn't
-    start at all, because it has a hasGLVersion(2, 0) check.
-    
-    The complete ifdef is no longer needed. The used additional glGetStringi
-    is also available in gles 3.0, thus epoxy can handle it quite well
-    without a need for ifdef.
-    
-    Unfortunately the version string can be "strange" on GLES. On desktop
-    it looks like: "3.0 some driver foo", on GLES it could also be:
-    "OpenGL ES 3.0 some driver bar". Thus to make the logic work we are
-    first removing any leading "OpenGL ES " and hope that then the version
-    is encoded just like on GL.
-
-diff --git a/libkwineffects/kwinglutils.cpp b/libkwineffects/kwinglutils.cpp
-index 8830c44..fd2e217 100644
---- a/libkwineffects/kwinglutils.cpp
-+++ b/libkwineffects/kwinglutils.cpp
-@@ -106,11 +106,12 @@ void initGL(OpenGLPlatformInterface platformInterface)
- {
-     // Get OpenGL version
-     QString glversionstring = QString::fromUtf8((const char*)glGetString(GL_VERSION));
-+    if (glversionstring.startsWith(QLatin1String("OpenGL ES "))) {
-+        glversionstring = glversionstring.mid(10);
-+    }
-     QStringList glversioninfo = glversionstring.left(glversionstring.indexOf(QStringLiteral(" "))).split(QStringLiteral("."));
-     while (glversioninfo.count() < 3)
-         glversioninfo << QStringLiteral("0");
--
--#ifndef KWIN_HAVE_OPENGLES
-     glVersion = MAKE_GL_VERSION(glversioninfo[0].toInt(), glversioninfo[1].toInt(), glversioninfo[2].toInt());
- 
-     // Get list of supported OpenGL extensions
-@@ -123,7 +124,6 @@ void initGL(OpenGLPlatformInterface platformInterface)
-             glExtensions << name;
-         }
-     } else
--#endif
-         glExtensions = QByteArray((const char*)glGetString(GL_EXTENSIONS)).split(' ');
- 
-     // handle OpenGL extensions functions


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] proj/kde:master commit in: kde-plasma/kwin/files/
@ 2017-09-02  9:40 Andreas Sturmlechner
  0 siblings, 0 replies; 5+ messages in thread
From: Andreas Sturmlechner @ 2017-09-02  9:40 UTC (permalink / raw
  To: gentoo-commits

commit:     e01076c2fd989f6ca44448b68e3b715fceb12d75
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Sep  2 09:29:43 2017 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Sep  2 09:39:58 2017 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=e01076c2

kde-plasma/kwin: Drop unused patch

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 .../kwin/files/kwin-5.8.7-glibc-sysmacros.patch    | 38 ----------------------
 1 file changed, 38 deletions(-)

diff --git a/kde-plasma/kwin/files/kwin-5.8.7-glibc-sysmacros.patch b/kde-plasma/kwin/files/kwin-5.8.7-glibc-sysmacros.patch
deleted file mode 100644
index 61c07feaee..0000000000
--- a/kde-plasma/kwin/files/kwin-5.8.7-glibc-sysmacros.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-commit 8efef12eeb377e9087551e333d65631968c80e5f
-Author: Andreas Sturmlechner <andreas.sturmlechner@gmail.com>
-Date:   Sat Jun 10 17:00:25 2017 +0200
-
-    Fix build with future glibc (major/minor macros), BSD compatible
-    
-    Summary:
-    Also adding sys/types.h which is not implicitly included from all over.
-    
-    Thanks-to: [ade] in #kde-devel
-    
-    See also:
-    https://sourceware.org/ml/libc-alpha/2015-11/msg00452.html
-    https://git.reviewboard.kde.org/r/127662/
-    
-    Reviewers: #plasma
-    
-    Subscribers: plasma-devel, kwin, #kwin, adridg
-    
-    Tags: #kwin
-    
-    Differential Revision: https://phabricator.kde.org/D6175
-
-diff --git a/logind.cpp b/logind.cpp
-index fee0f2ff4..bb84af4f9 100644
---- a/logind.cpp
-+++ b/logind.cpp
-@@ -29,6 +29,10 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
- #include <QDBusMetaType>
- 
- #include <sys/stat.h>
-+#include <sys/types.h>
-+#ifndef major
-+#include <sys/sysmacros.h>
-+#endif
- #include <unistd.h>
- #include "utils.h"
- 


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] proj/kde:master commit in: kde-plasma/kwin/files/
@ 2019-05-15 16:56 Andreas Sturmlechner
  0 siblings, 0 replies; 5+ messages in thread
From: Andreas Sturmlechner @ 2019-05-15 16:56 UTC (permalink / raw
  To: gentoo-commits

commit:     fa33073a5f6bb4fe63bc660bfd01a4f6cfe4db48
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed May 15 16:49:03 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Wed May 15 16:49:03 2019 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=fa33073a

kde-plasma/kwin: Drop unused patch

Package-Manager: Portage-2.3.66, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 kde-plasma/kwin/files/kwin-gstreamer-optional.patch | 15 ---------------
 1 file changed, 15 deletions(-)

diff --git a/kde-plasma/kwin/files/kwin-gstreamer-optional.patch b/kde-plasma/kwin/files/kwin-gstreamer-optional.patch
deleted file mode 100644
index d9ace476f9..0000000000
--- a/kde-plasma/kwin/files/kwin-gstreamer-optional.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-Disable the effect video button if gstreamer is missing.
-
-diff --git a/kcmkwin/kwincompositing/qml/Effect.qml b/kcmkwin/kwincompositing/qml/Effect.qml
-index fcd5e8a..2331da2 100644
---- a/kcmkwin/kwincompositing/qml/Effect.qml
-+++ b/kcmkwin/kwincompositing/qml/Effect.qml
-@@ -144,7 +144,7 @@ Rectangle {
- 
-         Button {
-             id: videoButton
--            visible: model.VideoRole.toString() !== ""
-+            visible: false
-             iconName: "video"
-             onClicked: videoItem.showHide()
-         }


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] proj/kde:master commit in: kde-plasma/kwin/files/
@ 2019-09-17 15:40 Andreas Sturmlechner
  0 siblings, 0 replies; 5+ messages in thread
From: Andreas Sturmlechner @ 2019-09-17 15:40 UTC (permalink / raw
  To: gentoo-commits

commit:     bc0b3df24ca5c74ea7cdf3cbd25914a3d46a0423
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 17 15:39:13 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Tue Sep 17 15:39:13 2019 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=bc0b3df2

kde-plasma/kwin: Drop unused patch

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 kde-plasma/kwin/files/kwin-5.15.80-gstreamer-optional.patch | 13 -------------
 1 file changed, 13 deletions(-)

diff --git a/kde-plasma/kwin/files/kwin-5.15.80-gstreamer-optional.patch b/kde-plasma/kwin/files/kwin-5.15.80-gstreamer-optional.patch
deleted file mode 100644
index 81db399f6b..0000000000
--- a/kde-plasma/kwin/files/kwin-5.15.80-gstreamer-optional.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Disable the effect video button if gstreamer is missing.
-
---- a/kcmkwin/kwineffects/package/contents/ui/Effect.qml	2019-03-22 23:06:45.172699544 +0100
-+++ b/kcmkwin/kwineffects/package/contents/ui/Effect.qml	2019-03-22 23:07:30.435043637 +0100
-@@ -111,7 +111,7 @@
- 
-         QtControls.Button {
-             icon.name: "video"
--            visible: model.VideoRole.toString() !== ""
-+            visible: false
- 
-             onClicked: videoItem.showHide()
-         }


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] proj/kde:master commit in: kde-plasma/kwin/files/
@ 2023-02-25  9:25 Andreas Sturmlechner
  0 siblings, 0 replies; 5+ messages in thread
From: Andreas Sturmlechner @ 2023-02-25  9:25 UTC (permalink / raw
  To: gentoo-commits

commit:     b6165314763d7752c05eb0b4cc3b6bd0b3941fc9
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 25 08:39:48 2023 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Feb 25 08:39:48 2023 +0000
URL:        https://gitweb.gentoo.org/proj/kde.git/commit/?id=b6165314

kde-plasma/kwin: Drop obsolete patch

Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 .../files/kwin-5.21.80-gstreamer-optional.patch    | 25 ----------------------
 1 file changed, 25 deletions(-)

diff --git a/kde-plasma/kwin/files/kwin-5.21.80-gstreamer-optional.patch b/kde-plasma/kwin/files/kwin-5.21.80-gstreamer-optional.patch
deleted file mode 100644
index 15936e6dd3..0000000000
--- a/kde-plasma/kwin/files/kwin-5.21.80-gstreamer-optional.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From b5b277996322b0a37ed8a9443724183b82800e81 Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner <andreas.sturmlechner@gmail.com>
-Date: Tue, 6 Aug 2019 22:36:44 +0200
-Subject: [PATCH] Disable the effect video button if gstreamer is missing
-
----
- kcmkwin/kwineffects/package/contents/ui/Effect.qml | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/kcmkwin/kwineffects/package/contents/ui/Effect.qml b/kcmkwin/kwineffects/package/contents/ui/Effect.qml
-index 71dbc5935..86ddf40b3 100644
---- a/src/kcmkwin/kwineffects/package/contents/ui/Effect.qml
-+++ b/src/kcmkwin/kwineffects/package/contents/ui/Effect.qml
-@@ -112,7 +112,7 @@ Kirigami.SwipeListItem {
-     }
-     actions: [
-         Kirigami.Action {
--            visible: model.VideoRole.toString() !== ""
-+            visible: false
-             icon.name: "videoclip-amarok"
-             tooltip: i18nc("@info:tooltip", "Show/Hide Video")
-             onTriggered: videoItem.showHide()
--- 
-2.22.0
-


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-02-25  9:25 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-25  9:25 [gentoo-commits] proj/kde:master commit in: kde-plasma/kwin/files/ Andreas Sturmlechner
  -- strict thread matches above, loose matches on Subject: below --
2019-09-17 15:40 Andreas Sturmlechner
2019-05-15 16:56 Andreas Sturmlechner
2017-09-02  9:40 Andreas Sturmlechner
2015-06-30 20:54 Johannes Huber

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