getting:
Validating source files with sha1sums...
ddd-3.4.1.tar.gz ... FAILED
Git Clone URL: | https://aur.archlinux.org/ddd.git (read-only, click to copy) |
---|---|
Package Base: | ddd |
Description: | A graphical front-end for command-line debuggers such as GDB, JDB, pydb, perl debugger... |
Upstream URL: | http://www.gnu.org/software/ddd/ |
Keywords: | debugging gdb |
Licenses: | GPL-3.0-or-later, LGPL-3.0-or-later |
Submitter: | arojas |
Maintainer: | matthewq337 |
Last Packager: | matthewq337 |
Votes: | 25 |
Popularity: | 1.10 |
First Submitted: | 2017-11-23 07:10 (UTC) |
Last Updated: | 2024-08-25 17:53 (UTC) |
getting:
Validating source files with sha1sums...
ddd-3.4.1.tar.gz ... FAILED
I personally think that package maintainers must check for wrong signatures more often ... Since august we receive messages
-> Found ddd-3.4.1.tar.gz ==> Validating source files with sha1sums... ddd-3.4.1.tar.gz ... FAILED ==> ERROR: One or more files did not pass the validity check! -> error making: ddd-exit status 1
So when is that going to be solved?
@HurricanePootis @Dominiquini fixed, thanks
The signature for the source appears to be incorrect!
Hello, I have some recommendations for this package:
license()
namcap
Here is the patch file:
diff --git a/PKGBUILD b/PKGBUILD
index bcbd94b..fbc6007 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,13 +7,13 @@ pkgrel=1
pkgdesc="A graphical front-end for command-line debuggers such as GDB, JDB, pydb, perl debugger..."
arch=('x86_64')
url="http://www.gnu.org/software/ddd/"
-license=('GPL3' 'LGPL3')
-depends=('gcc-libs' 'openmotif' 'libxaw')
+license=('GPL-3.0-or-later' 'LGPL-3.0-or-later')
+depends=('gcc-libs' 'openmotif' 'libxaw' 'libxt' 'libxft' 'libxmu' 'fontconfig' 'glibc' 'libx11' 'libxpm' 'ncurses')
optdepends=('gdb: to use the Gnu debugger'
'java-runtime-openjdk: to use the Java debugger'
'perl: to use the Perl debugger')
source=(http://ftp.gnu.org/gnu/ddd/${pkgname}-${pkgver}.tar.gz)
-sha1sums=('0bcb90b8ded114b3953eb2c5f77f3c636f317cdd')
+sha1sums=('0e9271aeeded16f0414b3877a25f3a15acb40fb4')
prepare() {
cd ${pkgname}-${pkgver}
@@ -29,4 +29,5 @@ package() {
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
install -D -m644 icons/ddd.xpm "${pkgdir}/usr/share/pixmaps/ddd.xpm"
+ install -D -m644 ddd/ddd.desktop "${pkgdir}/usr/share/applications/ddd.desktop"
}
it fails sha1sums check
It seems that the sha1sum in PKGBUILD is incorrect for version 3.4.1.
Shouldn't this be unflagged for out of date? 3.4.0 is the latest, as far as I can tell.
For the future, you should reset pkgrel to 1 when bumping pkgver.
Pinned Comments
DrLarck commented on 2021-03-27 12:00 (UTC)
@codazoa I had the same problem.
After running ddd using the terminal (
$ ddd
) I had multiple warning messages saying something like : "Cannot convert string "...." to type FontStruct"After a couple of research and spending hours to find a fix, I've finally found this : "Some programs only work with bitmap fonts. Two major packages with bitmap fonts are available, xorg-fonts-75dpi and xorg-fonts-100dpi." (From the AUR : https://wiki.archlinux.org/index.php/xorg)
So basically, you need to run this command :
And get the xorg-fonts-XXdpi (with XX = 75 or 100) that is closer to the output value of the command above.
You can install a xorg-fonts package using pacman :
Once you've done that, run :
Then reboot and everything should work.