Package Details: gdb-frontend-bin 0.11.3.beta-2

Git Clone URL: https://aur.archlinux.org/gdb-frontend-bin.git (read-only, click to copy)
Package Base: gdb-frontend-bin
Description: An easy, flexible and extensionable GUI debugger
Upstream URL: https://github.com/rohanrhu/gdb-frontend
Keywords: c cpp debug debugger debugger-gdb debugging debugging-tool debugging-tools gdb gdb-extension gdb-frontend gdb-gui gdb-plugin gdb-ui
Licenses: GPL3
Provides: gdb-frontend, gdbfrontend
Submitter: ragouel
Maintainer: EvrenselKisilik
Last Packager: EvrenselKisilik
Votes: 4
Popularity: 0.000284
First Submitted: 2020-06-03 22:18 (UTC)
Last Updated: 2022-12-22 05:06 (UTC)

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

tam1m commented on 2022-02-18 13:34 (UTC)

Hi @EvrenselKisilik Yeah it works now. Problem is not the filename of the downloaded tar.gz, but its content. The directory inside does not have the -bin suffix.

But thanks anyways

EvrenselKisilik commented on 2022-02-18 11:42 (UTC)

Hiii, thank you @tam1m :)

It was like this in .SRCINFO source = gdb-frontend-0.10.3-beta.tar.gz::https://github.com/rohanrhu/gdb-frontend/archive/v0.10.3-beta.tar.gz

Sooo I think it should work buut I added changes is it working now?

tam1m commented on 2022-02-17 19:48 (UTC) (edited on 2022-02-17 19:52 (UTC) by tam1m)

@EvrenselKisilik The PKGBUILD needs a small patch to work. cd "${pkgname}-${_pkgver}" doesn't work since pkgname is gdb-frontend-bin but the extracted directory is gdb-frontend-${_pkgver} without the -bin suffix.

Here is a small patch that fixes this

--- PKGBUILD.org        2022-02-17 20:44:12.102707891 +0100
+++ PKGBUILD    2022-02-17 20:43:54.929521108 +0100
@@ -1,6 +1,7 @@
# Maintainer:  Oğuzhan Eroğlu <rohanrhu2@gmail.com>

pkgname=gdb-frontend-bin
+_pkgname=gdb-frontend
pkgver=0.10.3.beta
_pkgver=0.10.3-beta
pkgrel=2
@@ -15,11 +16,11 @@
sha256sums=('2c2486e527db6151c4848c80e176878aab098a731e684570846d6e38f928c4ea')

build() {
-    cd "${pkgname}-${_pkgver}"
+    cd "${_pkgname}-${_pkgver}"
python setup.py build
}

package() {
-    cd "${pkgname}-${_pkgver}"
+    cd "${_pkgname}-${_pkgver}"
python setup.py install --root="$pkgdir" --optimize=1
}

EvrenselKisilik commented on 2022-02-17 16:04 (UTC)

Hiiii @Lucki thank you for this :) I updated the package on the same version (pkgrel=2) can you try it? I don't use Arch :)

Lucki commented on 2022-02-14 20:29 (UTC)

Hi there, according to the documentation I should be able to call gdbfrontend --help but that only starts the application and doesn't give any further terminal output.

Also dumping everything in /opt/ seems a bit strange so I've quickly tested this properly packaged and surprisingly gdbfrontend --help works directly without any problems.

pkgname=gdb-frontend
pkgver=0.10.3.beta
_pkgver=0.10.3-beta
pkgrel=1
pkgdesc="An easy, flexible and extensionable GUI debugger"
arch=('x86_64')
url='https://oguzhaneroglu.com/projects/gdb-frontend'
license=('GPL3')
provides=('gdbfrontend')
depends=('gdb' 'python' 'tmux')
makedepends=('python-setuptools')
source=("${pkgname}-${_pkgver}.tar.gz::https://github.com/rohanrhu/gdb-frontend/archive/v${_pkgver}.tar.gz")
sha256sums=('2c2486e527db6151c4848c80e176878aab098a731e684570846d6e38f928c4ea')

build() {
    cd "${pkgname}-${_pkgver}"
    python setup.py build
}

package() {
    cd "${pkgname}-${_pkgver}"
    python setup.py install --root="$pkgdir" --optimize=1
}

EvrenselKisilik commented on 2021-11-24 09:50 (UTC)

Ah I fixed it. Thank you. Can I generate .SRCINFO on Debian?

wakamue commented on 2021-11-24 09:29 (UTC)

The PKGBUILD file still contains

pkgver=0.9.5.beta _pkgver=0.9.5-beta

instead of the announced 0.9.6.beta version.

EvrenselKisilik commented on 2021-10-11 11:13 (UTC)

Thank you too :)

Kr1ss commented on 2021-10-11 08:43 (UTC)

Thank you very much !

EvrenselKisilik commented on 2021-10-11 04:45 (UTC)

Hi, I updated the package with pkgrel. Thank you :)