summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-04-03 11:02:03 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-04-04 13:09:30 +0900
commit09716ffc0e1fc2256d7adb56f1f7a0934c64efbb (patch)
treec843335e6c454d1495b353a6dc555e9d5d95205c
parent81ede64e3e69aca75676fec6a312ac1df5fada47 (diff)
downloadextra-dependencies-09716ffc0e1fc2256d7adb56f1f7a0934c64efbb.tar.gz
extra-dependencies-09716ffc0e1fc2256d7adb56f1f7a0934c64efbb.zip
pinentry-tqt: update to ensure rebuild against latest tqt3 version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--debian/pinentry-tqt/pinentry-tqt-1.2.1/debian/changelog6
-rw-r--r--debian/pinentry-tqt/pinentry-tqt-1.2.1/debian/patches/0004-tqt-updates-202404.diff81
-rw-r--r--debian/pinentry-tqt/pinentry-tqt-1.2.1/debian/patches/series1
3 files changed, 88 insertions, 0 deletions
diff --git a/debian/pinentry-tqt/pinentry-tqt-1.2.1/debian/changelog b/debian/pinentry-tqt/pinentry-tqt-1.2.1/debian/changelog
index 78af3ae9..02254c83 100644
--- a/debian/pinentry-tqt/pinentry-tqt-1.2.1/debian/changelog
+++ b/debian/pinentry-tqt/pinentry-tqt-1.2.1/debian/changelog
@@ -1,3 +1,9 @@
+pinentry-tqt (1.2.1-1~3) unstable; urgency=medium
+
+ * updates-2024/04: ensure compliance with r14.1.x branch.
+
+ -- Michele Calgaro <michele.calgaro@yahoo.it> Tue, 03 Apr 2024 19:20:00 +0900
+
pinentry-tqt (1.2.1-1~2) unstable; urgency=medium
[ Emanoil Kotsev ]
diff --git a/debian/pinentry-tqt/pinentry-tqt-1.2.1/debian/patches/0004-tqt-updates-202404.diff b/debian/pinentry-tqt/pinentry-tqt-1.2.1/debian/patches/0004-tqt-updates-202404.diff
new file mode 100644
index 00000000..a650d6b7
--- /dev/null
+++ b/debian/pinentry-tqt/pinentry-tqt-1.2.1/debian/patches/0004-tqt-updates-202404.diff
@@ -0,0 +1,81 @@
+--- a/tqt/pinentrydialog.cpp
++++ b/tqt/pinentrydialog.cpp
+@@ -84,18 +84,18 @@
+
+ _ok->setDefault(true);
+
+- connect( _ok, SIGNAL( clicked() ),
+- this, SIGNAL( accepted() ) );
+- connect( _cancel, SIGNAL( clicked() ),
+- this, SIGNAL( rejected() ) );
+- connect( _edit, SIGNAL( textModified(const SecTQString&) ),
+- this, SLOT( updateQuality(const SecTQString&) ) );
+- connect (_edit, SIGNAL (backspacePressed()),
+- this, SLOT (onBackspace ()));
+- connect (this, SIGNAL (accepted ()),
+- this, SLOT (accept ()));
+- connect (this, SIGNAL (rejected ()),
+- this, SLOT (reject ()));
++ connect( _ok, TQ_SIGNAL( clicked() ),
++ this, TQ_SIGNAL( accepted() ) );
++ connect( _cancel, TQ_SIGNAL( clicked() ),
++ this, TQ_SIGNAL( rejected() ) );
++ connect( _edit, TQ_SIGNAL( textModified(const SecTQString&) ),
++ this, TQ_SLOT( updateQuality(const SecTQString&) ) );
++ connect (_edit, TQ_SIGNAL (backspacePressed()),
++ this, TQ_SLOT (onBackspace ()));
++ connect (this, TQ_SIGNAL (accepted ()),
++ this, TQ_SLOT (accept ()));
++ connect (this, TQ_SIGNAL (rejected ()),
++ this, TQ_SLOT (reject ()));
+ _edit->setFocus();
+ }
+
+--- a/tqt/secqlineedit.cpp
++++ b/tqt/secqlineedit.cpp
+@@ -1073,10 +1073,10 @@
+ #ifndef SECURE
+ TQString t = q->selectedText();
+ if ( !t.isEmpty() && echoMode == SecTQLineEdit::Normal ) {
+- q->disconnect( TQApplication::clipboard(), SIGNAL(selectionChanged()), q, 0);
++ q->disconnect( TQApplication::clipboard(), TQ_SIGNAL(selectionChanged()), q, 0);
+ TQApplication::clipboard()->setText( t, clipboard ? TQClipboard::Clipboard : TQClipboard::Selection );
+- q->connect( TQApplication::clipboard(), SIGNAL(selectionChanged()),
+- q, SLOT(clipboardChanged()) );
++ q->connect( TQApplication::clipboard(), TQ_SIGNAL(selectionChanged()),
++ q, TQ_SLOT(clipboardChanged()) );
+ }
+ #endif
+ }
+--- a/tqt/secqstring.cpp
++++ b/tqt/secqstring.cpp
+@@ -189,12 +189,12 @@
+ */
+
+ TQ_EXPORT SecTQStringData *SecTQString::shared_null = 0;
+-QT_STATIC_CONST_IMPL SecTQString SecTQString::null;
+-QT_STATIC_CONST_IMPL TQChar TQChar::null;
+-QT_STATIC_CONST_IMPL TQChar TQChar::replacement((ushort)0xfffd);
+-QT_STATIC_CONST_IMPL TQChar TQChar::byteOrderMark((ushort)0xfeff);
+-QT_STATIC_CONST_IMPL TQChar TQChar::byteOrderSwapped((ushort)0xfffe);
+-QT_STATIC_CONST_IMPL TQChar TQChar::nbsp((ushort)0x00a0);
++const SecTQString SecTQString::null;
++const TQChar TQChar::null;
++const TQChar TQChar::replacement((ushort)0xfffd);
++const TQChar TQChar::byteOrderMark((ushort)0xfeff);
++const TQChar TQChar::byteOrderSwapped((ushort)0xfffe);
++const TQChar TQChar::nbsp((ushort)0x00a0);
+
+ SecTQStringData* SecTQString::makeSharedNull()
+ {
+--- a/tqt/secqstring.h
++++ b/tqt/secqstring.h
+@@ -125,7 +125,7 @@
+
+ SecTQString &operator=( const SecTQString & ); // impl-shared copy
+
+- QT_STATIC_CONST SecTQString null;
++ static const SecTQString null;
+
+ bool isNull() const;
+ bool isEmpty() const;
diff --git a/debian/pinentry-tqt/pinentry-tqt-1.2.1/debian/patches/series b/debian/pinentry-tqt/pinentry-tqt-1.2.1/debian/patches/series
index cc46497d..22f5f293 100644
--- a/debian/pinentry-tqt/pinentry-tqt-1.2.1/debian/patches/series
+++ b/debian/pinentry-tqt/pinentry-tqt-1.2.1/debian/patches/series
@@ -1,3 +1,4 @@
0001-avoid-self-describing-as-a-beta.patch
0002-gtk2-When-X11-input-grabbing-fails-try-again-over-0..patch
0003-tqt-updates-2023.diff
+0004-tqt-updates-202404.diff