16
0
Christophe Marin
2025-11-22 12:43:50 +00:00
committed by Git OBS Bridge
commit 7632dc6ffb
14 changed files with 1097 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.osc

BIN
applications.keyring Normal file

Binary file not shown.

54
fix-for-python3.6.patch Normal file
View File

@@ -0,0 +1,54 @@
Allow building kdev-python with older python versions
Author: Antonio Larrosa
Index: kdev-python-22.12.3/parser/python_grammar.h
===================================================================
--- kdev-python-22.12.3.orig/parser/python_grammar.h
+++ kdev-python-22.12.3/parser/python_grammar.h
@@ -78,6 +78,14 @@ public:
PyObject* ast_List;
PyObject* ast_Tuple;
PyObject* ast_Slice;
+#if PYTHON_VERSION < QT_VERSION_CHECK(3, 8, 0)
+ PyObject* ast_Ellipsis;
+ PyObject* ast_NameConstant;
+#endif
+#if PYTHON_VERSION < QT_VERSION_CHECK(3, 9, 0)
+ PyObject* ast_ExtSlice;
+ PyObject* ast_Index;
+#endif
// expr_context
PyObject* ast_expr_context;
@@ -250,6 +258,16 @@ public:
Py_GRAMMAR_GET(mod, List);
Py_GRAMMAR_GET(mod, Tuple);
Py_GRAMMAR_GET(mod, Slice);
+#if PYTHON_VERSION < QT_VERSION_CHECK(3, 8, 0)
+ Py_GRAMMAR_GET(mod, Ellipsis);
+ Py_GRAMMAR_GET(mod, NameConstant);
+#endif
+#if PYTHON_VERSION < QT_VERSION_CHECK(3, 9, 0)
+ Py_GRAMMAR_GET(mod, ExtSlice);
+ Py_GRAMMAR_GET(mod, Index);
+#endif
+
+
Py_GRAMMAR_GET(mod, expr_context);
Py_GRAMMAR_GET(mod, Load);
@@ -397,6 +415,14 @@ public:
Py_XDECREF(ast_List);
Py_XDECREF(ast_Tuple);
Py_XDECREF(ast_Slice);
+#if PYTHON_VERSION < QT_VERSION_CHECK(3, 8, 0)
+ Py_XDECREF(ast_Ellipsis);
+ Py_XDECREF(ast_NameConstant);
+#endif
+#if PYTHON_VERSION < QT_VERSION_CHECK(3, 9, 0)
+ Py_XDECREF(ast_ExtSlice);
+ Py_XDECREF(ast_Index);
+#endif
Py_XDECREF(ast_expr_context);
Py_XDECREF(ast_Load);

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:65abb0adf6456cfd191ac0569bb9988c7b41a89bd372269377a2ed9dd6fafe7b
size 1110180

View File

@@ -0,0 +1,16 @@
-----BEGIN PGP SIGNATURE-----
iQIzBAABCgAdFiEE2BwMs463Je9mkcOFu0YzUNbvMe8FAmi/vawACgkQu0YzUNbv
Me+RvA//ecHjcnPvwX+APYogqIrIs1LOmRUX6wBmgj8OQ85qC4L5Ta1JAUlmF+LU
mQ02V1A4Z07gpHnXC7XjlqtzrVfMOT78HnFrJh1UTsLxo2gOCNDy2PDP0LAdkrQ/
D8nQ5porBys7GNKh+qgrFImEYs4c/l6WENQpr1ZLUYx0NKMxO7wpvduzYXmdQZyT
J2vj2UydQgBwtdl14ekBdS4RgSlJFLSCQimqBvKP513NCQCN+pEMQ4/M2MW+mZGv
f8dIdtjqxRi3s233gyUj/wCZ0/ajsETTQMsD/DmltW3TZpYEdTuOpIf2952/jIOf
CbTZiI9c14FnjrahdUEsYlRSEu2VtHef4qkfAu/RVFB+Zx7tAU7GEoszng4pvhcf
EJHyfNG4HzdMb1/OJ46XwVYUlwTCH9y0Y2cjGpbWg+Dy3WzWAfCveVpRkz2r0HEs
MRD+slvd5p6fjW56z1ncOJkdaxwXMdYau2MmcgWpCzdzVCIq61RsrnHzfGgCSTu/
Sdh+GYMe7x9jQG9i1l6bl5RM/DaQK6cU/OGhRErVB7nE70h+F5J7YqYVE28vinPv
yLlo62L77ZWNIAW5PXihe9d5XksXCN2uh3ZNUuCLnH6bBRHgiSIXqO7sIuEppeVI
9WS/loEPIIu2H6IkrTzli+jz+nrkOc+XqmpcbXll2ealIfck4Kw=
=OBlL
-----END PGP SIGNATURE-----

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:11297d05c417f9e7108ed3a1f205436e759ba9459c3c6f4f947359d6765142c5
size 1113212

View File

@@ -0,0 +1,16 @@
-----BEGIN PGP SIGNATURE-----
iQIzBAABCgAdFiEE2BwMs463Je9mkcOFu0YzUNbvMe8FAmjkz3QACgkQu0YzUNbv
Me+fKg//UbgCks5su/IaDmyJBGy6Dk32isEh40RErPmj1mbbWvEjMv0VBuElOI1N
5r2x8zJxKIGeHQxuZy3oaurDW0QeTJInP/i6HovEhhnxlPw7IIKV0OXnxX1dDBco
rVnCt9nA10/yKQkpO0P3Y9qoVdjzLLlNqzgI7J6Jd+ErejQG1z7+pmwiLlEvfV9V
NqEREhhLcODNCsX+1gjlFYyb6SlTUm/aVb1Bg8omVxGWEP3CRMNllE+Zz8t+GL+q
ePzXN33NqEN9mMLsDvcwuU9L9iAh1s9bwKjecapQ380cV0xkM37RZEI/V2ttxjWu
wHWfjjxDrggrV9MbJkSA1tuhBv5UeMN6A2YxEbz5BwRjiyHXPhU8/feMTqGO2wDk
L4fvLChC6mOLtg2iTGSDWu3dNsTfq5xNoBZCmZcORUROT/hP1KKnmxDd/fyQEkup
LJ+vqOL+0afGuCztqv1jzpcP+jUqABZq9AKoRcFLIc1SN9hZs5Z0SVgqncCkOyjr
A73VCLtq7iLRIV4DzTcrpT9Ql4O37JB5EEPLAfY74/oHQtirnWb9iZK4y2rUgDvM
Ah2KdEgc9qb2JsrT/3iv9NvCNT1vjvoj9dRjc4PQ75cSF6VsDzFYYesfP1g/svua
SzOS49ejVjIH6TTn3E6dWoCMXi7OSne8CyDurnUabvKPH6EgfKc=
=s7qp
-----END PGP SIGNATURE-----

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:56ba13a7e1721ae17a015138649ef6ef4970e99d7ff47322f296a69f1734fb3e
size 1113608

View File

@@ -0,0 +1,16 @@
-----BEGIN PGP SIGNATURE-----
iQIzBAABCgAdFiEE2BwMs463Je9mkcOFu0YzUNbvMe8FAmkJSkYACgkQu0YzUNbv
Me+jTRAAk34ELLqmHYWOqilEad8i2y13Ox3YFBOms88DkAZmf5Ehvwc1PHBIFJ7I
0C9RqW2LzxFZi7IWiDHa4vSuHRea5+H86xBh3++T0a3lce99aWrIL4/j1ZI4JeMV
3cvuAig5ygQaIvZ76++cnob7eW2LFK/znPbNmcQLskGFu8IT0sBBI9t4sU7Ggrcv
P8haQTMZzBO+iSeZk1mWdl8EMVD+jV+eNhsc7exwAMGYol5M1vWddDYiLnjc7JhO
HLByImwkjlQjWw/iboZovmTGlMxPz0ZNLFVXe1Yrw6Dq4AH9Wu7jDvLgnhKrIFDh
5WsWjcjbOA+1r2YTUVcDKdF6TXlIv82fMV6eHRQMiKjuCvZtmOerQj90tY86p4EE
YCS6esiqecZdZDOc+hEqXo1zcFp4U8e+uMvaw88a0M5vGbCY8Z4tB5e1CdqQTa9B
E82OxyLI6rhpuP91V7QAwZYUQ88BUbNE1SsPVS7lYDkZp3DPGgI5pERh3JKuO91V
BigILesqHDwZIGhLx5AeDMxCATpQnODXu0PI5lWo0qLrGkIXpbQWGqNbMvbHEiSS
LWXqEsKtt79TvIDs92NkGy/azrtrYNZgn+AbkzUCD1idWZLMCGfZ++V538T+ETed
dw2CoWtzBBvBjK0lCkUTFQovRerxrkmRt4VkNz06/8q2MBy6ZWo=
=Qr5B
-----END PGP SIGNATURE-----

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a7f4b79196b564de6495b94a31e8a1b9c838ee899d1e12e4bb64efb98df647c7
size 1139760

View File

@@ -0,0 +1,16 @@
-----BEGIN PGP SIGNATURE-----
iQIzBAABCgAdFiEEyiYsbIPeTS+yijMqOmpNuDnqptcFAmkWckcACgkQOmpNuDnq
ptf5jA//TMoTtV+es958PbflcW3bCB/c1bch/fnia20slJwx+PNh3UmbUa9Q9EW5
0SIKY6E2kywe9ChqcTBJX1zPlMuul6Lc1j+hsp7LS2lbehSu1oWNjxXKvyAz8H5z
n9tNi5vWmTgDrvkLyf5dYgtkeJobyek4/VUmgrYYyXzFO+sFdzIMNdoiB4MJckif
oJN2Bapm/tc1Dg0wTNP1z9BgkYsZlWAfZ0X0PLQDlVxLrip3LOzDVijBExSOlQKQ
K0MrBfcFnksjngWLKELTL3AhrSmQ1KgbyemBgdEMcoPyMhKXJW6kfOEehnyJtUGN
SItUGqZob0u+3JCB4Afm8RESDLTNj/BTuQW0OPCWx2XyCRdo2PZwyW/JAxyuYUTx
PxzcepF63C0NX3HYUzOZztmNh/59JOy8lvIo1ZZnVnoMMqGtCqJFijxTd4pPJZ/A
Rzul6FGxcDHGxUEfKQrisz75oKQ/3vrHvFzWKWq9/S7ZRzWIHcwZBYuKQSqSMtDw
gwS9V/UKwpflDhrAaLp0GAhtsg7pbWzH9z5B/B7axCyb42vfXfMTtPxtrjIU7MyN
wO1I3yH5zH44fPtRBacCdOMEHEQhWsWolbhPFFrdQXLmOctS/zp13hHPaWi5dP1E
AlkSFXhyEufV5biIwHQRMuH5cY2bndagm+C36e2iBRDxu03KHoA=
=BS0v
-----END PGP SIGNATURE-----

View File

@@ -0,0 +1,830 @@
-------------------------------------------------------------------
Sat Nov 15 19:56:38 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 25.11.80
* New feature release
- Too many changes since 25.08.3, only listing bugfixes:
* fix crash when parsing match expression with placeholder (kde#507776)
-------------------------------------------------------------------
Thu Nov 6 18:37:35 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 25.08.3
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/25.08.3/
- No code change since 25.08.2
-------------------------------------------------------------------
Tue Oct 7 18:49:00 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 25.08.2
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/25.08.2/
- No code change since 25.08.1
-------------------------------------------------------------------
Wed Sep 10 09:23:42 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 25.08.1
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/25.08.1/
- No code change since 25.08.0
-------------------------------------------------------------------
Fri Aug 8 07:47:27 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 25.08.0
* New feature release
* For more details please see:
* https://kde.org/announcements/gear/25.08.0/
- No code change since 25.07.80
-------------------------------------------------------------------
Mon Jul 14 14:25:13 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 25.07.80
* New feature release
- Changes since 25.04.3:
* kdevpdb: simplify and optimize output connections
* kdevpdb: adapt to removal of IDebugSession::finished() signal
* kdevpdb: initialize DebugSession::m_state member
* DebugJob: predeclare DebugSession
* kdevpdb: decouple DebugSession and DebugJob
* kdevpdb: don't construct EnvironmentProfileList twice
* kdevpdb: cleanup buggy and duplicated code
* DebugJob: shorten title and set object name
* PdbLauncher: don't wrap DebugJob in ExecuteCompositeJob
* debugger: use a split interpreter command
* debugger: convert script URL to local file path once
* DebugJob: insert missing space in the job title
* DebugJob: don't remove filtering strategy right after setting it
* Copy .clang-format from the KDevelop repository
-------------------------------------------------------------------
Tue Jul 1 15:26:54 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 25.04.3
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/25.04.3/
- No code change since 25.04.2
-------------------------------------------------------------------
Tue Jun 3 21:12:18 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 25.04.2
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/25.04.2/
- No code change since 25.04.1
-------------------------------------------------------------------
Wed May 7 21:00:06 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 25.04.1
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/25.04.1/
- No code change since 25.04.0
-------------------------------------------------------------------
Mon Apr 14 07:06:42 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 25.04.0
* New feature release
* For more details please see:
* https://kde.org/announcements/gear/25.04.0/
- No code change since 25.03.90
-------------------------------------------------------------------
Sat Mar 29 08:42:25 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 25.03.90
* New feature release
- Changes since 24.12.3:
* Fix build with Python 3.13
-------------------------------------------------------------------
Tue Mar 4 13:00:58 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 24.12.3
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/24.12.3/
- No code change since 24.12.2
-------------------------------------------------------------------
Tue Feb 4 12:29:34 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 24.12.2
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/24.12.2/
- No code change since 24.12.1
-------------------------------------------------------------------
Tue Jan 7 18:52:55 UTC 2025 - Christophe Marin <christophe@krop.fr>
- Update to 24.12.1
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/24.12.1/
- No code change since 24.12.0
-------------------------------------------------------------------
Sun Dec 8 09:27:31 UTC 2024 - Christophe Marin <christophe@krop.fr>
- Update to 24.12.0
* New feature release
* For more details please see:
* https://kde.org/announcements/gear/24.12.0/
- No code change since 24.11.90
-------------------------------------------------------------------
Mon Dec 2 08:42:58 UTC 2024 - Christophe Marin <christophe@krop.fr>
- Update to 24.11.90
* New feature release
- Changes since 24.11.80:
* Fix build with Python 3.13
-------------------------------------------------------------------
Sat Nov 16 17:29:37 UTC 2024 - Christophe Marin <christophe@krop.fr>
- Update to 24.11.80
* New feature release
- Changes since 24.08.3:
* fix build on musl libc linuxes (header sys/types.h missing in asttransformer.cpp)
* cls is not only for __new__ methods a valid first argument.
* Fix a crash in CodeHelpers::expressionUnderCursor()
* kdevpdb: reduce clazy warnings in DebugSession implementation
* Fix unused QString
* Fix c++11 range-loop might detach Qt container
* Fix Don't use temporary for QRegularexpression
* Fix Wclazy-qmap-with-pointer-key
* Lock the DUChain when retrieving the declaration for a StructureType (kde#444055)
-------------------------------------------------------------------
Tue Nov 5 10:43:13 UTC 2024 - Christophe Marin <christophe@krop.fr>
- Update to 24.08.3
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/24.08.3/
- No code change since 24.08.2
-------------------------------------------------------------------
Tue Oct 8 12:01:26 UTC 2024 - Christophe Marin <christophe@krop.fr>
- Update to 24.08.2
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/24.08.2/
- No code change since 24.08.1
-------------------------------------------------------------------
Tue Sep 10 14:24:56 UTC 2024 - Christophe Marin <christophe@krop.fr>
- Update to 24.08.1
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/24.08.1/
- No code change since 24.08.0
-------------------------------------------------------------------
Tue Aug 27 06:48:24 UTC 2024 - Christophe Marin <christophe@krop.fr>
- Add version to 'Requires' and 'Obsoletes'
-------------------------------------------------------------------
Mon Aug 19 07:51:59 UTC 2024 - Christophe Marin <christophe@krop.fr>
- Update to 24.08.0
* New feature release
* For more details please see:
* https://kde.org/announcements/gear/24.08.0/
- Too many changes to list here.
-------------------------------------------------------------------
Fri Jul 19 12:05:39 UTC 2024 - Christophe Marin <christophe@krop.fr>
- Rename kdevelop5-plugin-python3 to kdevelop-plugin-python3
-------------------------------------------------------------------
Tue Jul 2 13:54:12 UTC 2024 - Christophe Marin <christophe@krop.fr>
- Update to 24.05.2
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/24.05.2/
- No code change since 24.05.1
-------------------------------------------------------------------
Wed Jun 12 07:33:03 UTC 2024 - Christophe Marin <christophe@krop.fr>
- Update to 24.05.1
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/24.05.1/
- No code change since 24.05.0
-------------------------------------------------------------------
Sun May 19 09:55:52 UTC 2024 - Christophe Marin <christophe@krop.fr>
- Update to 24.05.0
* New feature release
* For more details please see:
* https://kde.org/announcements/gear/24.05.0/
- No code change since 24.04.80
-------------------------------------------------------------------
Fri May 3 09:15:38 UTC 2024 - Christophe Marin <christophe@krop.fr>
- Update to 24.04.80
* New feature release
- Changes since 24.02.2:
* Use FindPython3 instead of FindPythonInterp and FindPythonLibs
-------------------------------------------------------------------
Tue Apr 9 18:08:01 UTC 2024 - Christophe Marin <christophe@krop.fr>
- Update to 24.02.2
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/24.02.2/
- No code change since 24.02.1
-------------------------------------------------------------------
Tue Mar 19 15:26:10 UTC 2024 - Christophe Marin <christophe@krop.fr>
- Update to 24.02.1
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/24.02.1/
- No code change since 24.02.0
-------------------------------------------------------------------
Fri Feb 23 13:59:08 UTC 2024 - Christophe Marin <christophe@krop.fr>
- Update to 24.02.0
* New feature release
- No code change since 24.01.95
-------------------------------------------------------------------
Fri Feb 9 16:08:15 UTC 2024 - Christophe Marin <christophe@krop.fr>
- Update to 24.01.95
* https://kde.org/announcements/megarelease/6/rc2/
-------------------------------------------------------------------
Tue Dec 5 14:19:31 UTC 2023 - Christophe Marin <christophe@krop.fr>
- Update to 23.08.4
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/23.08.4/
- No code change since 23.08.3
-------------------------------------------------------------------
Tue Nov 7 17:04:34 UTC 2023 - Christophe Marin <christophe@krop.fr>
- Update to 23.08.3
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/23.08.3/
- No code change since 23.08.2
-------------------------------------------------------------------
Tue Oct 10 18:27:21 UTC 2023 - Christophe Marin <christophe@krop.fr>
- Update to 23.08.2
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/23.08.2/
- No code change since 23.08.1
-------------------------------------------------------------------
Tue Sep 12 11:55:50 UTC 2023 - Christophe Marin <christophe@krop.fr>
- Update to 23.08.1
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/23.08.1/
- No code change since 23.08.0
-------------------------------------------------------------------
Sun Aug 20 13:59:24 UTC 2023 - Christophe Marin <christophe@krop.fr>
- Update to 23.08.0
* New feature release
* For more details please see:
* https://kde.org/announcements/gear/23.08.0/
- No code change since 23.07.90
-------------------------------------------------------------------
Mon Aug 14 08:02:41 UTC 2023 - Christophe Marin <christophe@krop.fr>
- Update to 23.07.90
* New feature release
- No code change since 23.07.80
-------------------------------------------------------------------
Tue Aug 1 10:13:43 UTC 2023 - Christophe Marin <christophe@krop.fr>
- Update to 23.07.80
* New feature release
- Changes since 23.04.3:
* Add explicit moc includes to sources for moc-covered headers
-------------------------------------------------------------------
Tue Jul 4 10:19:41 UTC 2023 - Christophe Marin <christophe@krop.fr>
- Update to 23.04.3
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/23.04.3/
- No code change since 23.04.2
-------------------------------------------------------------------
Fri Jun 23 07:57:12 UTC 2023 - Christophe Marin <christophe@krop.fr>
- Use the latest python version on Tumbleweed
-------------------------------------------------------------------
Tue Jun 6 20:00:58 UTC 2023 - Christophe Marin <christophe@krop.fr>
- Update to 23.04.2
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/23.04.2/
- No code change since 23.04.1
-------------------------------------------------------------------
Tue May 9 10:46:55 UTC 2023 - Christophe Marin <christophe@krop.fr>
- Update to 23.04.1
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/23.04.1/
- No code change since 23.04.0
-------------------------------------------------------------------
Sat Apr 15 08:45:42 UTC 2023 - Christophe Marin <christophe@krop.fr>
- Update to 23.04.0
* New feature release
* For more details please see:
* https://kde.org/announcements/gear/23.04.0/
-------------------------------------------------------------------
Fri Mar 31 16:41:57 UTC 2023 - Christophe Marin <christophe@krop.fr>
- Update to 23.03.90
* New feature release
-------------------------------------------------------------------
Fri Mar 17 20:43:25 UTC 2023 - Christophe Marin <christophe@krop.fr>
- Update to 23.03.80
* New feature release
-------------------------------------------------------------------
Thu Mar 16 13:22:29 UTC 2023 - Antonio Larrosa <alarrosa@suse.com>
- Add patch that fixes build with python < 3.9 as in SLE/Backports:
* fix-for-python3.6.patch
-------------------------------------------------------------------
Tue Feb 28 09:45:56 UTC 2023 - Christophe Marin <christophe@krop.fr>
- Update to 22.12.3
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/22.12.3/
-------------------------------------------------------------------
Tue Jan 31 10:33:36 UTC 2023 - Christophe Marin <christophe@krop.fr>
- Update to 22.12.2
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/22.12.2/
-------------------------------------------------------------------
Tue Jan 3 10:19:59 UTC 2023 - Christophe Marin <christophe@krop.fr>
- Update to 22.12.1
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/22.12.1/
-------------------------------------------------------------------
Fri Dec 2 12:25:14 UTC 2022 - Christophe Marin <christophe@krop.fr>
- Update to 22.12.0
* New feature release
* For more details please see:
* https://kde.org/announcements/gear/22.12.0/
-------------------------------------------------------------------
Sat Nov 26 16:44:55 UTC 2022 - Christophe Giboudeaux <christophe@krop.fr>
- Update to 22.11.90
* New feature release
-------------------------------------------------------------------
Sat Nov 12 08:54:02 UTC 2022 - Christophe Giboudeaux <christophe@krop.fr>
- Update to 22.11.80
* New feature release
-------------------------------------------------------------------
Tue Nov 1 11:20:23 UTC 2022 - Christophe Giboudeaux <christophe@krop.fr>
- Update to 22.08.3
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/22.08.3/
-------------------------------------------------------------------
Tue Oct 11 14:32:28 UTC 2022 - Christophe Giboudeaux <christophe@krop.fr>
- Update to 22.08.2
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/22.08.2/
-------------------------------------------------------------------
Tue Sep 6 15:19:38 UTC 2022 - Christophe Giboudeaux <christophe@krop.fr>
- Update to 22.08.1
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/22.08.1/
-------------------------------------------------------------------
Sun Aug 14 09:42:21 UTC 2022 - Christophe Giboudeaux <christophe@krop.fr>
- Update to 22.08.0
* New feature release
* For more details please see:
* https://kde.org/announcements/gear/22.08.0/
-------------------------------------------------------------------
Fri Aug 5 12:10:47 UTC 2022 - Christophe Giboudeaux <christophe@krop.fr>
- Update to 22.07.90
* New feature release
-------------------------------------------------------------------
Sat Jul 16 08:28:01 UTC 2022 - Christophe Giboudeaux <christophe@krop.fr>
- Update to 22.07.80
* New feature release
-------------------------------------------------------------------
Tue Jul 5 17:03:12 UTC 2022 - Christophe Giboudeaux <christophe@krop.fr>
- Update to 22.04.3
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/22.04.3/
-------------------------------------------------------------------
Mon Jun 20 08:52:27 UTC 2022 - Ben Greiner <code@bnavigator.de>
- Build for Python 3.9 instead of Python3.10
* https://invent.kde.org/kdevelop/kdev-python/-/issues/4
* bpo#40939
* rh#1898116
-------------------------------------------------------------------
Wed Jun 8 09:54:01 UTC 2022 - Christophe Giboudeaux <christophe@krop.fr>
- Update to 22.04.2
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/22.04.2/
-------------------------------------------------------------------
Tue May 10 16:29:56 UTC 2022 - Christophe Giboudeaux <christophe@krop.fr>
- Update to 22.04.1
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/22.04.1/
-------------------------------------------------------------------
Mon Apr 18 07:51:35 UTC 2022 - Christophe Giboudeaux <christophe@krop.fr>
- Update to 22.04.0
* New feature release
* For more details please see:
* https://kde.org/announcements/gear/22.04.0/
-------------------------------------------------------------------
Fri Apr 8 18:18:41 UTC 2022 - Christophe Giboudeaux <christophe@krop.fr>
- Update to 22.03.90
* New feature release
-------------------------------------------------------------------
Wed Mar 23 08:14:03 UTC 2022 - Christophe Giboudeaux <christophe@krop.fr>
- Update to 22.03.80
* New feature release
- Changes since 21.12.3:
* Add CI
-------------------------------------------------------------------
Tue Mar 1 09:57:06 UTC 2022 - Christophe Giboudeaux <christophe@krop.fr>
- Update to 21.12.3
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/21.12.3/
- No code change since 21.12.2
-------------------------------------------------------------------
Tue Feb 1 13:02:54 UTC 2022 - Christophe Giboudeaux <christophe@krop.fr>
- Update to 21.12.2
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/21.12.2/
- No code change since 21.12.1
-------------------------------------------------------------------
Tue Jan 4 10:25:33 UTC 2022 - Christophe Giboudeaux <christophe@krop.fr>
- Update to 21.12.1
* New bugfix release
* For more details please see:
* https://kde.org/announcements/gear/21.12.1/
- No code change since 21.12.0
-------------------------------------------------------------------
Fri Dec 3 19:21:55 UTC 2021 - Christophe Giboudeaux <christophe@krop.fr>
- Update to 21.12.0
* New feature release
* For more details please see:
* https://kde.org/announcements/gear/21.12.0/
- No code change since 21.11.90
-------------------------------------------------------------------
Sat Nov 27 17:47:46 UTC 2021 - Christophe Giboudeaux <christophe@krop.fr>
- Update to 21.11.90
* New feature release
- No code change since 21.11.80
-------------------------------------------------------------------
Sat Nov 13 18:07:45 UTC 2021 - Christophe Giboudeaux <christophe@krop.fr>
- Update to 21.11.80
* New feature release
-------------------------------------------------------------------
Wed Feb 3 10:33:42 UTC 2021 - wbauer@tmo.at
- Update to 5.6.2
* No code changes
-------------------------------------------------------------------
Wed Dec 9 20:39:59 UTC 2020 - wbauer@tmo.at
- Update to 5.6.1
* Fix an incompatibility with Python versions earlier than 3.9.0,
which led to instability (kde#426292)
* Change PEP8 max line length configuration single steps to 1
-------------------------------------------------------------------
Tue Sep 8 11:36:22 UTC 2020 - wbauer@tmo.at
- Update to 5.6.0
* Support for Python 3.9 (kde#419290)
+ Distro packages may be compiled against an earlier CPython
version, and thus not include this
* Set parser feature version correctly for Python 3.8+
* Fix highlighting range bugs with CPython 3.8.2+
-------------------------------------------------------------------
Thu Aug 27 09:24:37 UTC 2020 - Christophe Giboudeaux <christophe@krop.fr>
- Spec cleanup
-------------------------------------------------------------------
Tue Jun 2 14:13:25 UTC 2020 - wbauer@tmo.at
- Update to 5.5.2
* No code changes
-------------------------------------------------------------------
Tue May 5 20:54:16 UTC 2020 - wbauer@tmo.at
- Update to 5.5.1
* No code changes
-------------------------------------------------------------------
Mon Feb 3 06:48:13 UTC 2020 - wbauer@tmo.at
- Update to 5.5.0
* Initial Python 3.8 support (kde#411956)
-------------------------------------------------------------------
Tue Jan 7 13:55:56 UTC 2020 - wbauer@tmo.at
- Update to 5.4.6
* No code changes
-------------------------------------------------------------------
Mon Dec 2 17:33:21 UTC 2019 - wbauer@tmo.at
- Update to 5.4.5
* No code changes
-------------------------------------------------------------------
Tue Nov 5 10:12:25 UTC 2019 - wbauer@tmo.at
- Update to 5.4.4
* No code changes
-------------------------------------------------------------------
Tue Oct 22 10:55:35 UTC 2019 - wbauer@tmo.at
- Update to 5.4.3
* No code changes
-------------------------------------------------------------------
Tue Sep 3 12:10:51 UTC 2019 - wbauer@tmo.at
- Update to 5.4.2
* no code changes
-------------------------------------------------------------------
Tue Aug 13 08:14:54 UTC 2019 - Christophe Giboudeaux <christophe@krop.fr>
- Update to 5.4.1
* no code changes
-------------------------------------------------------------------
Tue Aug 6 11:46:22 UTC 2019 - wbauer@tmo.at
- New upstream release 5.4.0
* no code changes, just minor cleanups and adaptions to changes
in the kdevplatform API
-------------------------------------------------------------------
Thu Jul 18 08:08:27 UTC 2019 - wbauer@tmo.at
- New upstream release 5.3.3
* Use KDE_INSTALL_LOGGINGCATEGORIESDIR for kdebugsettings
.categories file
-------------------------------------------------------------------
Thu Mar 7 11:41:58 UTC 2019 - wbauer@tmo.at
- New upstream release 5.3.2
* Fix crash when finding context inside annotated assignments
(kde#403045)
-------------------------------------------------------------------
Sat Dec 22 19:18:50 UTC 2018 - wbauer@tmo.at
- New upstream release 5.3.1
* Remove two outdated methods from shipped built-in documentation
- Run spec-cleaner
-------------------------------------------------------------------
Wed Nov 14 10:28:19 UTC 2018 - wbauer@tmo.at
- New upstream release 5.3.0
* Inject environment profile variables into debug process
environment (kde#322477)
* Improve support for 'with' statements (kde#399533, kde#399534)
- Remove unnecessary build requirements
-------------------------------------------------------------------
Tue Aug 21 10:57:17 UTC 2018 - wbauer@tmo.at
- New upstream release 5.2.4
* no code changes
-------------------------------------------------------------------
Fri May 25 13:25:59 UTC 2018 - wbauer@tmo.at
- New upstream release 5.2.3 (5.2.2 has been skipped)
* Ensure that codestyle.py always returns something on stdout to
unlock m_mutex (kde#392031)
* Fix crash with contexts opened in the baseclass list of a class
definition (kde#389326)
* Fix appstream metadata filename and some content, and install
it
- New upstream release 5.2.1
* no code changes
- New upstream release 5.2.0
* For a list of changes, see:
https://www.kdevelop.org/news/kdevelop-520-released
* Fixed a false-positive warning when a name used in a closure
was defined later in the file
* Fixed highlighting of local variables in comprehensions and of
parameters in lambda definitions
* Infer the correct type when slicing a tuple with constant
integers
* Infer the correct type from 'and' or 'or' expressions
* Internal code cleanups
- Remove superfluous python-qt5 requirement
- Install license file
-------------------------------------------------------------------
Tue Aug 29 07:23:46 UTC 2017 - wbauer@tmo.at
- New upstream release 5.1.2
* no code changes
-------------------------------------------------------------------
Sat May 27 14:07:48 UTC 2017 - wbauer@tmo.at
- New upstream release 5.1.1
* Fix crash (kde#378827)
* Pep8: Make pep8 warnings less annoying
-------------------------------------------------------------------
Thu Mar 23 14:46:43 UTC 2017 - wbauer@tmo.at
- New upstream release 5.1.0
* For a list of changes, see:
https://www.kdevelop.org/news/kdevelop-510-released
- Drop build-with-py36.diff, included upstream
- Adjust minimum python3 version, 3.4.3 and higher is supported now
-------------------------------------------------------------------
Sun Mar 5 13:49:52 UTC 2017 - wbauer@tmo.at
- New upstream release 5.0.4
* Update version number to 5.0.4
* Fix crash when requesting raise items without the docfile being
parsed (kde#373349)
- Rebase build-with-py36.diff
-------------------------------------------------------------------
Wed Feb 22 15:13:52 UTC 2017 - lbeltrame@kde.org
- Add build-with-py36.diff: diff from upstream 50-python36 branch
to enable building with Python 3.6
-------------------------------------------------------------------
Fri Dec 2 14:55:35 UTC 2016 - wbauer@tmo.at
- New upstream release 5.0.3
* Fix some small issues in the standard library info
-------------------------------------------------------------------
Wed Nov 16 10:42:16 UTC 2016 - wbauer@tmo.at
- New upstream release 5.0.2
* no code changes
-------------------------------------------------------------------
Tue Oct 4 12:55:32 UTC 2016 - lbeltrame@kde.org
- Add QtConcurrent to BuildRequires
-------------------------------------------------------------------
Mon Oct 3 22:25:48 UTC 2016 - lbeltrame@kde.org
- New upstream release 5.0.1
* Fix imports sometimes not being found in kdev-python without
pressing F5 by hand
-------------------------------------------------------------------
Fri Sep 23 14:49:03 UTC 2016 - lbeltrame@kde.org
- Add conflicts with lang packages, to workaround a
submission bot bug
-------------------------------------------------------------------
Wed Aug 24 19:50:06 UTC 2016 - lbeltrame@kde.org
- Add Obsoletes/Provides for old kdevelop packages
-------------------------------------------------------------------
Wed Aug 24 15:20:26 UTC 2016 - cgiboudeaux@gmx.com
- Update to 5.0.0
-------------------------------------------------------------------
Sat Mar 19 15:19:28 UTC 2016 - fvogt@suse.com
- Fix build by removing wrong %file entry
-------------------------------------------------------------------
Thu Jan 28 10:45:07 UTC 2016 - tittiatcoke@gmail.com
- Initial package for Python3 plugin for KDevelop based on Frameworks
* KDevelop 5 Beta 3

View File

@@ -0,0 +1,113 @@
#
# spec file for package kdevelop-plugin-python3
#
# Copyright (c) 2025 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%define rname kdev-python
%define mypython python3
%define kf6_version 6.19.0
%define qt6_version 6.9.0
%bcond_without released
Name: kdevelop-plugin-python3
Version: 25.11.80
Release: 0
Summary: Python support for KDevelop
License: GPL-2.0-or-later
URL: https://www.kdevelop.org
Source0: https://download.kde.org/unstable/release-service/%{version}/src/%{rname}-%{version}.tar.xz
%if %{with released}
Source1: https://download.kde.org/unstable/release-service/%{version}/src/%{rname}-%{version}.tar.xz.sig
Source2: applications.keyring
%endif
# PATCH-FIX-OPENSUSE
Patch0: fix-for-python3.6.patch
BuildRequires: %{mypython} >= 3.4.3
BuildRequires: %{mypython}-devel >= 3.4.3
BuildRequires: fdupes
BuildRequires: kdevelop >= 6.0
BuildRequires: kf6-extra-cmake-modules >= %{kf6_version}
BuildRequires: cmake(KDevPlatform)
BuildRequires: cmake(KF6I18n) >= %{kf6_version}
BuildRequires: cmake(KF6TextEditor) >= %{kf6_version}
BuildRequires: cmake(KF6ThreadWeaver) >= %{kf6_version}
BuildRequires: cmake(Qt6Core) >= %{qt6_version}
BuildRequires: cmake(Qt6Test) >= %{qt6_version}
BuildRequires: cmake(Qt6Widgets) >= %{qt6_version}
# Package was renamed before 24.08 release
Requires: kdevelop >= 24.08.0
Recommends: %{mypython}-pep8
Provides: kdevelop4-plugin-python = %{version}
Obsoletes: kdevelop4-plugin-python < %{version}
Obsoletes: kdevelop5-plugin-python3 < %{version}
# Only build on archs where Qt6WebEngine is available
ExclusiveArch: aarch64 x86_64 %{x86_64} riscv64
%description
A KDevelop plugin which provides Python language support, including code
completion and debugging using PDB.
%package lang
Summary: Translations for package %{name}
Requires: %{name} = %{version}
Supplements: (bundle-lang-other and %{name})
Conflicts: kdevelop4-plugin-python-lang
Obsoletes: kdevelop5-plugin-python3-lang < %{version}
Provides: %{name}-lang-all = %{version}
BuildArch: noarch
%description lang
Provides translations to the package %{name}
%prep
%autosetup -p1 -n %{rname}-%{version}
%build
%cmake_kf6
%kf6_build
%install
%kf6_install
# Remove obsolete docs
rm -r %{buildroot}%{_kf6_sharedir}/kdevpythonsupport/documentation_files/{PyKDE4,PyQt4}
%find_lang kdevpython %{name}.lang
%fdupes %{buildroot}
%ldconfig_scriptlets
%files
%license LICENSES/*
%doc README
%{_kf6_appstreamdir}/org.kde.kdev-python.metainfo.xml
%{_kf6_debugdir}/kdevpythonsupport.categories
%{_kf6_libdir}/libkdevpythoncompletion.so
%{_kf6_libdir}/libkdevpythonduchain.so
%{_kf6_libdir}/libkdevpythonparser.so
%{_kf6_plugindir}/kdevplatform/
%dir %{_kf6_sharedir}/kdevappwizard
%dir %{_kf6_sharedir}/kdevappwizard/templates
%{_kf6_sharedir}/kdevappwizard/templates/django_project.tar.bz2
%{_kf6_sharedir}/kdevappwizard/templates/qtdesigner_app.tar.bz2
%{_kf6_sharedir}/kdevappwizard/templates/simple_pythonapp.tar.bz2
%{_kf6_sharedir}/kdevpythonsupport/
%files lang -f %{name}.lang
%changelog