Package Details: oama-bin 0.22.0-2

Git Clone URL: https://aur.archlinux.org/oama-bin.git (read-only, click to copy)
Package Base: oama-bin
Description: Provide OAuth2 renewal and authorization capabilities
Upstream URL: https://github.com/pdobsan/oama
Licenses: BSD-3-Clause
Conflicts: mailctl-bin, oama, oama-git
Provides: oama
Replaces: mailctl-bin
Submitter: petrus7
Maintainer: petrus7
Last Packager: petrus7
Votes: 12
Popularity: 0.038895
First Submitted: 2024-05-12 23:57 (UTC)
Last Updated: 2025-08-29 16:55 (UTC)

Dependencies (13)

Required by (0)

Sources (2)

Pinned Comments

petrus7 commented on 2024-05-13 10:39 (UTC) (edited on 2024-11-20 08:56 (UTC) by petrus7)

Please, report oama related issues upstream and use this place for AUR related problems only.

Latest Comments

1 2 3 4 Next › Last »

petrus7 commented on 2025-08-29 16:57 (UTC)

Fixed.

jakka commented on 2025-08-29 16:47 (UTC)

==> Starting package()...
install: cannot stat 'Build-info.txt': No such file or directory
==> ERROR: A failure occurred in package().
    Aborting...
error: failed to build 'oama-bin-0.22.0-1':
error: packages failed to build: oama-bin-0.22.0-1

petrus7 commented on 2025-05-15 08:25 (UTC)

Fixed.

ArthurBorsboom commented on 2025-05-15 07:46 (UTC)

==> Entering fakeroot environment...
==> Starting package()...
install: cannot stat 'License': No such file or directory
==> ERROR: A failure occurred in package().
    Aborting...
 -> error making: oama-bin-exit status 4
 -> Failed to install the following packages. Manual intervention is required:
oama-bin - exit status 4

petrus7 commented on 2025-01-17 20:58 (UTC)

@ArthurBorsboom: added libsecret, libgirepository dependencies

@micwoj92: fixed spdx license id

micwoj92 commented on 2025-01-17 00:08 (UTC)

Please use spdx license identifier.

ArthurBorsboom commented on 2024-12-21 08:16 (UTC)

The package might be missing a (new?) dependency.

[root@web1 ~]# oama access support@xxxxxxxxxxx.com
oama: error while loading shared libraries: libgirepository-1.0.so.1: cannot open shared object file: No such file or directory
[root@web1 ~]#

After installing package gobject-introspection oama works again.

[root@web1 ~]# sudo pacman -Syu gobject-introspection

petrus7 commented on 2024-11-20 08:53 (UTC)

File renames mismatch has been fixed.

arunkhattri commented on 2024-11-20 04:56 (UTC) (edited on 2024-11-20 05:36 (UTC) by arunkhattri)

install: cannot stat 'LICENSE': No such file or directory
ERROR: A failure occured in package().
-> error making: oama-bin-exit status 4
-> Failed to istall the following packages. Manual intervention is required:
oama-bin - exit status 4

Solved by editing PKGBUILD...

License in place of LICENSE and Readme in place of README

quigybo commented on 2024-11-20 02:10 (UTC) (edited on 2024-11-20 02:12 (UTC) by quigybo)

PKGBUILD is broken since release 0.16-1 due to file renames upstream, see https://github.com/pdobsan/oama/commit/138d070.

Fix is quite simple:

diff --git a/PKGBUILD b/PKGBUILD
index 497ab37..3419146 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -39,8 +39,8 @@ package() {
   cd $release-$CARCH
   install -Dm755 ${_pkgname} ${pkgdir}/usr/bin/${_pkgname}

-  install -Dm644 LICENSE ${pkgdir}/usr/share/${_pkgname}/LICENSE
-  install -Dm644 README.md ${pkgdir}/usr/share/${_pkgname}
+  install -Dm644 License ${pkgdir}/usr/share/${_pkgname}/LICENSE
+  install -Dm644 Readme.md ${pkgdir}/usr/share/${_pkgname}
   install -Dm644 cabal.project.freeze ${pkgdir}/usr/share/${_pkgname}
   cp -r configs ${pkgdir}/usr/share/${_pkgname}