Package Details: imaputils 20191107-1

Git Clone URL: https://aur.archlinux.org/imaputils.git (read-only, click to copy)
Package Base: imaputils
Description: perl script for managing/searching mail on an IMAP servers from the command line
Upstream URL: https://sourceforge.net/projects/imaputils/files/
Licenses: BSD
Submitter: sergej
Maintainer: sergej
Last Packager: sergej
Votes: 1
Popularity: 0.000000
First Submitted: 2016-04-07 13:03 (UTC)
Last Updated: 2020-07-24 21:51 (UTC)

Latest Comments

dreieck commented on 2024-04-16 10:56 (UTC)

Now, there is a fixed package that is correctly called imaputils-git.

dreieck commented on 2023-12-04 16:20 (UTC)

You download the latest state from a git repository.

So you must:

  • Rename your package to imaputils-git,
  • add git to the makedepends array,
  • add a proper pkgver() function (and if that makes the current $pkgver to be lower than what is card coded now increment $epoch (set to 1 if not defined yet),
  • add imaputils to the provides and conflicts arrays, optionally with =${pkgver} in the provides array if it resembles the release version scheme.

Regards and
thanks for maintaining!

wwinfrey commented on 2017-11-22 02:00 (UTC)

This patch will fix some issues with SSL, and adds a dependency for socat to support --socatexec & --tosocatexec: --- PKGBUILD | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 7a45550..ad10cce 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,13 +5,13 @@ pkgdesc="perl script for managing/searching mail on an IMAP servers from the com arch=(any) url="https://sourceforge.net/projects/imaputils/files/" license=('BSD') -depends=('perl-mail-imapclient' 'perl-datetime-format-mail' 'perl-datetime') +depends=('perl-mail-imapclient' 'perl-datetime-format-mail' 'perl-datetime' 'perl-io-socket-ssl' 'socat') source=("$pkgname::git://git.code.sf.net/p/imaputils/git") md5sums=('SKIP') package() { - cd "$pkgname" - install -Dm0755 imaputils.pl $pkgdir/usr/bin/imaputils.pl - install -Dm0644 README $pkgdir/usr/share/doc/$pkgname/README + cd "$pkgname" + sed -i 's|/etc/pki/ca-trust/extracted/pem|/etc/ca-certificates/extracted|g' imaputils.pl + install -Dm0755 imaputils.pl $pkgdir/usr/bin/imaputils.pl + install -Dm0644 README $pkgdir/usr/share/doc/$pkgname/README } --