Advertisement
Guest User

EngohWeath

a guest
Feb 12th, 2018
340
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.63 KB | None | 0 0
  1. #
  2. # When I ran makepkg -s or makepkg -c I got key errors
  3. #
  4. makepkg --clean
  5. ==> Making package: pithos 1.4.1-1 (Sun Feb 11 23:20:49 EST 2018)
  6. ==> Checking runtime dependencies...
  7. ==> Checking buildtime dependencies...
  8. ==> Retrieving sources...
  9.   -> Found pithos-1.4.1.tar.xz
  10.   -> Found pithos-1.4.1.tar.xz.asc
  11.   -> Found systemd.service
  12. ==> Validating source files with sha256sums...
  13.     pithos-1.4.1.tar.xz ... Passed
  14.     pithos-1.4.1.tar.xz.asc ... Skipped
  15.     systemd.service ... Passed
  16. ==> Verifying source file signatures with gpg...
  17.     pithos-1.4.1.tar.xz ... FAILED (unknown public key B3C7CE210DE76DFC)
  18. ==> ERROR: One or more PGP signatures could not be verified!
  19. #
  20. # I had to manually do to import the public key.
  21. #
  22. gpg --recv-key 108BF2212A051F4A72B18448B3C7CE210DE76DFC
  23. #
  24. # I then re-ran and it completed building the package.
  25. #
  26. makepkg -s
  27. #
  28. # I basically just did
  29. #
  30. wget https://github.com/pithos/pithos/releases/download/1.4.1/pithos-1.4.1.tar.xz.sha256sum
  31. sha256sum -c pithos-1.4.1.tar.xz.sha256sum
  32. #
  33. # STDOUT: pithos-1.4.1.tar.xz: OK
  34. # The build process seemed to run fine afterwards.
  35. #
  36. ==> Tidying install...
  37.   -> Removing libtool files...
  38.   -> Purging unwanted files...
  39.   -> Removing static library files...
  40.   -> Stripping unneeded symbols from binaries and libraries...
  41.   -> Compressing man and info pages...
  42. ==> Checking for packaging issue...
  43. ==> Creating package "pithos"...
  44.   -> Generating .PKGINFO file...
  45.   -> Generating .BUILDINFO file...
  46.   -> Generating .MTREE file...
  47.   -> Compressing package...
  48. ==> Leaving fakeroot environment.
  49. ==> Finished making: pithos 1.4.1-1 (Mon Feb 12 01:16:28 EST 2018)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement