Date: Friday, November 11, 2022 @ 14:05:07
Author: foutrelis
Revision: 1346702
archrelease: copy trunk to community-x86_64
Added:
avr-gdb/repos/community-x86_64/PKGBUILD
(from rev 1346701, avr-gdb/trunk/PKGBUILD)
avr-gdb/repos/community-x86_64/fix_python37.patch
(from rev 1346701, avr-gdb/trunk/fix_python37.patch)
avr-gdb/repos/community-x86_64/keys/
avr-gdb/repos/community-x86_64/readline8.patch
(from rev 1346701, avr-gdb/trunk/readline8.patch)
Deleted:
avr-gdb/repos/community-x86_64/PKGBUILD
avr-gdb/repos/community-x86_64/fix_python37.patch
avr-gdb/repos/community-x86_64/keys/
avr-gdb/repos/community-x86_64/readline8.patch
--------------------+
PKGBUILD | 110 +++++++++++++++++++++---------------------
fix_python37.patch | 132 +++++++++++++++++++++++++--------------------------
readline8.patch | 62 +++++++++++------------
3 files changed, 152 insertions(+), 152 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2022-11-11 14:05:02 UTC (rev 1346701)
+++ PKGBUILD 2022-11-11 14:05:07 UTC (rev 1346702)
@@ -1,55 +0,0 @@
-# Maintainer: schuay <[email protected]>
-# Contributor: Ivan Sichmann Freitas <ivansichfreitas at gmail dot com>
-# Contributor: Laszlo Papp <djszapi2 at gmail dot com>
-# Contributor: Gerardo Exequiel Pozzi <[email protected]>
-# Contributor: Vladimir Cerny <[email protected]>
-# Contributor: 4javier <4javieregATgmailDOTcom>
-
-_target=avr
-pkgname=$_target-gdb
-pkgver=12.1
-pkgrel=2
-pkgdesc='The GNU Debugger for AVR'
-arch=(x86_64)
-url='https://www.gnu.org/software/gdb/'
-license=(GPL3)
-depends=(xz ncurses expat python guile gdb-common mpfr libelf source-highlight
- boost)
-options=(!emptydirs)
-source=(https://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz{,.sig}
- readline8.patch)
-sha256sums=('0e1793bf8f2b54d53f46dea84ccfd446f48f81b297b28c4f7fc017b818d69fed'
- 'SKIP'
- '89efbd1275e5f1e33122fa8da146cb48733b9637d119e3819eeeec063ec70da8')
-validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker
<[email protected]>
-
-build() {
- cd gdb-$pkgver
- patch -Np1 -i ../readline8.patch
-
- mkdir -p build && cd build
- ../configure \
- --disable-nls \
- --enable-languages=c,c++ \
- --prefix=/usr \
- --target=$_target \
- --with-python=/usr/bin/python \
- --with-system-readline \
- --enable-source-highlight \
- --with-system-gdbinit=/etc/gdb/gdbinit
-
- make
-}
-
-package() {
- cd gdb-$pkgver/build
-
- make -C gdb DESTDIR="$pkgdir" install
-
- # Following files conflict with 'gdb'/'gdb-common' packages
- rm -r "$pkgdir"/usr/include/gdb/
- rm -r "$pkgdir"/usr/share/gdb/
- rm -r "$pkgdir"/usr/share/info/
- rm -r "$pkgdir"/usr/share/man/man5/
-
-}
Copied: avr-gdb/repos/community-x86_64/PKGBUILD (from rev 1346701,
avr-gdb/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2022-11-11 14:05:07 UTC (rev 1346702)
@@ -0,0 +1,55 @@
+# Maintainer: schuay <[email protected]>
+# Contributor: Ivan Sichmann Freitas <ivansichfreitas at gmail dot com>
+# Contributor: Laszlo Papp <djszapi2 at gmail dot com>
+# Contributor: Gerardo Exequiel Pozzi <[email protected]>
+# Contributor: Vladimir Cerny <[email protected]>
+# Contributor: 4javier <4javieregATgmailDOTcom>
+
+_target=avr
+pkgname=$_target-gdb
+pkgver=12.1
+pkgrel=3
+pkgdesc='The GNU Debugger for AVR'
+arch=(x86_64)
+url='https://www.gnu.org/software/gdb/'
+license=(GPL3)
+depends=(xz ncurses expat python guile gdb-common mpfr libelf source-highlight)
+makedepends=(boost)
+options=(!emptydirs)
+source=(https://ftp.gnu.org/gnu/gdb/gdb-$pkgver.tar.xz{,.sig}
+ readline8.patch)
+sha256sums=('0e1793bf8f2b54d53f46dea84ccfd446f48f81b297b28c4f7fc017b818d69fed'
+ 'SKIP'
+ '89efbd1275e5f1e33122fa8da146cb48733b9637d119e3819eeeec063ec70da8')
+validpgpkeys=('F40ADB902B24264AA42E50BF92EDB04BFF325CF3') # Joel Brobecker
<[email protected]>
+
+build() {
+ cd gdb-$pkgver
+ patch -Np1 -i ../readline8.patch
+
+ mkdir -p build && cd build
+ ../configure \
+ --disable-nls \
+ --enable-languages=c,c++ \
+ --prefix=/usr \
+ --target=$_target \
+ --with-python=/usr/bin/python \
+ --with-system-readline \
+ --enable-source-highlight \
+ --with-system-gdbinit=/etc/gdb/gdbinit
+
+ make
+}
+
+package() {
+ cd gdb-$pkgver/build
+
+ make -C gdb DESTDIR="$pkgdir" install
+
+ # Following files conflict with 'gdb'/'gdb-common' packages
+ rm -r "$pkgdir"/usr/include/gdb/
+ rm -r "$pkgdir"/usr/share/gdb/
+ rm -r "$pkgdir"/usr/share/info/
+ rm -r "$pkgdir"/usr/share/man/man5/
+
+}
Deleted: fix_python37.patch
===================================================================
--- fix_python37.patch 2022-11-11 14:05:02 UTC (rev 1346701)
+++ fix_python37.patch 2022-11-11 14:05:07 UTC (rev 1346702)
@@ -1,66 +0,0 @@
-From aeab512851bf6ed623d1c6c4305b6ce05e51a10c Mon Sep 17 00:00:00 2001
-From: Paul Koning <[email protected]>
-Date: Fri, 8 Jun 2018 13:26:36 -0400
-Subject: [PATCH] Fix build issue with Python 3.7
-
-Originally reported in
-https://bugzilla.redhat.com/show_bug.cgi?id=1577396 -- gdb build fails
-with Python 3.7 due to references to a Python internal function whose
-declaration changed in 3.7.
-
-gdb/ChangeLog
-2018-06-08 Paul Koning <[email protected]>
-
- PR gdb/23252
-
- * python/python.c (do_start_initialization):
- Avoid call to internal Python API.
- (init__gdb_module): New function.
----
- gdb/ChangeLog | 8 ++++++++
- gdb/python/python.c | 18 +++++++++++++++---
- 2 files changed, 23 insertions(+), 3 deletions(-)
-
-diff --git a/gdb/python/python.c b/gdb/python/python.c
-index 1805c906284..20fc674f20a 100644
---- a/gdb/python/python.c
-+++ b/gdb/python/python.c
-@@ -1667,6 +1667,17 @@ finalize_python (void *ignore)
- restore_active_ext_lang (previous_active);
- }
-
-+#ifdef IS_PY3K
-+/* This is called via the PyImport_AppendInittab mechanism called
-+ during initialization, to make the built-in _gdb module known to
-+ Python. */
-+PyMODINIT_FUNC
-+init__gdb_module (void)
-+{
-+ return PyModule_Create (&python_GdbModuleDef);
-+}
-+#endif
-+
- static bool
- do_start_initialization ()
- {
-@@ -1707,6 +1718,9 @@ do_start_initialization ()
- remain alive for the duration of the program's execution, so
- it is not freed after this call. */
- Py_SetProgramName (progname_copy);
-+
-+ /* Define _gdb as a built-in module. */
-+ PyImport_AppendInittab ("_gdb", init__gdb_module);
- #else
- Py_SetProgramName (progname.release ());
- #endif
-@@ -1716,9 +1730,7 @@ do_start_initialization ()
- PyEval_InitThreads ();
-
- #ifdef IS_PY3K
-- gdb_module = PyModule_Create (&python_GdbModuleDef);
-- /* Add _gdb module to the list of known built-in modules. */
-- _PyImport_FixupBuiltin (gdb_module, "_gdb");
-+ gdb_module = PyImport_ImportModule ("_gdb");
- #else
- gdb_module = Py_InitModule ("_gdb", python_GdbMethods);
- #endif
Copied: avr-gdb/repos/community-x86_64/fix_python37.patch (from rev 1346701,
avr-gdb/trunk/fix_python37.patch)
===================================================================
--- fix_python37.patch (rev 0)
+++ fix_python37.patch 2022-11-11 14:05:07 UTC (rev 1346702)
@@ -0,0 +1,66 @@
+From aeab512851bf6ed623d1c6c4305b6ce05e51a10c Mon Sep 17 00:00:00 2001
+From: Paul Koning <[email protected]>
+Date: Fri, 8 Jun 2018 13:26:36 -0400
+Subject: [PATCH] Fix build issue with Python 3.7
+
+Originally reported in
+https://bugzilla.redhat.com/show_bug.cgi?id=1577396 -- gdb build fails
+with Python 3.7 due to references to a Python internal function whose
+declaration changed in 3.7.
+
+gdb/ChangeLog
+2018-06-08 Paul Koning <[email protected]>
+
+ PR gdb/23252
+
+ * python/python.c (do_start_initialization):
+ Avoid call to internal Python API.
+ (init__gdb_module): New function.
+---
+ gdb/ChangeLog | 8 ++++++++
+ gdb/python/python.c | 18 +++++++++++++++---
+ 2 files changed, 23 insertions(+), 3 deletions(-)
+
+diff --git a/gdb/python/python.c b/gdb/python/python.c
+index 1805c906284..20fc674f20a 100644
+--- a/gdb/python/python.c
++++ b/gdb/python/python.c
+@@ -1667,6 +1667,17 @@ finalize_python (void *ignore)
+ restore_active_ext_lang (previous_active);
+ }
+
++#ifdef IS_PY3K
++/* This is called via the PyImport_AppendInittab mechanism called
++ during initialization, to make the built-in _gdb module known to
++ Python. */
++PyMODINIT_FUNC
++init__gdb_module (void)
++{
++ return PyModule_Create (&python_GdbModuleDef);
++}
++#endif
++
+ static bool
+ do_start_initialization ()
+ {
+@@ -1707,6 +1718,9 @@ do_start_initialization ()
+ remain alive for the duration of the program's execution, so
+ it is not freed after this call. */
+ Py_SetProgramName (progname_copy);
++
++ /* Define _gdb as a built-in module. */
++ PyImport_AppendInittab ("_gdb", init__gdb_module);
+ #else
+ Py_SetProgramName (progname.release ());
+ #endif
+@@ -1716,9 +1730,7 @@ do_start_initialization ()
+ PyEval_InitThreads ();
+
+ #ifdef IS_PY3K
+- gdb_module = PyModule_Create (&python_GdbModuleDef);
+- /* Add _gdb module to the list of known built-in modules. */
+- _PyImport_FixupBuiltin (gdb_module, "_gdb");
++ gdb_module = PyImport_ImportModule ("_gdb");
+ #else
+ gdb_module = Py_InitModule ("_gdb", python_GdbMethods);
+ #endif
Deleted: readline8.patch
===================================================================
--- readline8.patch 2022-11-11 14:05:02 UTC (rev 1346701)
+++ readline8.patch 2022-11-11 14:05:07 UTC (rev 1346702)
@@ -1,31 +0,0 @@
-commit 1add37b567a7dee39d99f37b37802034c3fce9c4
-Author: Andreas Schwab <[email protected]>
-Date: Sun Mar 20 14:01:54 2022 +0100
-
- Add support for readline 8.2
-
- In readline 8.2 the type of rl_completer_word_break_characters changed to
- include const.
-
-diff --git a/gdb/completer.c b/gdb/completer.c
-index d3900ae2014..a51c16ac7f8 100644
---- a/gdb/completer.c
-+++ b/gdb/completer.c
-@@ -36,7 +36,7 @@
- calling a hook instead so we eliminate the CLI dependency. */
- #include "gdbcmd.h"
-
--/* Needed for rl_completer_word_break_characters() and for
-+/* Needed for rl_completer_word_break_characters and for
- rl_filename_completion_function. */
- #include "readline/readline.h"
-
-@@ -2011,7 +2011,7 @@ gdb_completion_word_break_characters_throw ()
- rl_basic_quote_characters = NULL;
- }
-
-- return rl_completer_word_break_characters;
-+ return (char *) rl_completer_word_break_characters;
- }
-
- char *
Copied: avr-gdb/repos/community-x86_64/readline8.patch (from rev 1346701,
avr-gdb/trunk/readline8.patch)
===================================================================
--- readline8.patch (rev 0)
+++ readline8.patch 2022-11-11 14:05:07 UTC (rev 1346702)
@@ -0,0 +1,31 @@
+commit 1add37b567a7dee39d99f37b37802034c3fce9c4
+Author: Andreas Schwab <[email protected]>
+Date: Sun Mar 20 14:01:54 2022 +0100
+
+ Add support for readline 8.2
+
+ In readline 8.2 the type of rl_completer_word_break_characters changed to
+ include const.
+
+diff --git a/gdb/completer.c b/gdb/completer.c
+index d3900ae2014..a51c16ac7f8 100644
+--- a/gdb/completer.c
++++ b/gdb/completer.c
+@@ -36,7 +36,7 @@
+ calling a hook instead so we eliminate the CLI dependency. */
+ #include "gdbcmd.h"
+
+-/* Needed for rl_completer_word_break_characters() and for
++/* Needed for rl_completer_word_break_characters and for
+ rl_filename_completion_function. */
+ #include "readline/readline.h"
+
+@@ -2011,7 +2011,7 @@ gdb_completion_word_break_characters_throw ()
+ rl_basic_quote_characters = NULL;
+ }
+
+- return rl_completer_word_break_characters;
++ return (char *) rl_completer_word_break_characters;
+ }
+
+ char *