diff --git a/aura/PKGBUILD b/aura/PKGBUILD deleted file mode 100644 index 94653e1fa..000000000 --- a/aura/PKGBUILD +++ /dev/null @@ -1,67 +0,0 @@ -# Maintainer: Colin Woodbury -_hkgname=aura -pkgname=aura -pkgver=1.3.6 -pkgrel=1 -pkgdesc="A secure package manager for Arch Linux and the AUR written in Haskell." -url="https://github.com/fosskers/aura" -license=('GPL-3') -arch=('i686' 'x86_64') -depends=('gmp' 'pacman' 'pcre' 'abs') -makedepends=('ghc' - 'haskell-aur>=5.0.1' - 'haskell-lens' - 'haskell-mtl' - 'haskell-parsec' - 'haskell-regex-base' - 'haskell-regex-pcre-builtin' - 'haskell-split' - 'haskell-temporary' - 'haskell-text' - 'haskell-transformers' - 'haskell-wreq>=0.4') -optdepends=('powerpill: For faster repository downloads.' - 'customizepkg: For auto-editing of PKGBUILDs.' - 'aur-git: AUR package completions for zsh.') -provides=('aura') -conflicts=('aura-git' 'aura-bin') -options=('strip') -source=(https://bitbucket.org/fosskers/aura/downloads/${_hkgname}-${pkgver}.tar.gz) -md5sums=('fefa59f35de72f6551779a233712a022') - - - - - - -build() { - cd ${srcdir}/${_hkgname}-${pkgver} - runhaskell Setup configure --prefix=/usr --docdir=/usr/share/doc/${pkgname} -O - runhaskell Setup build -} - -package() { - cd ${srcdir}/${_hkgname}-${pkgver} - runhaskell Setup copy --destdir=${pkgdir} - - # Installing man page - mkdir -p "$pkgdir/usr/share/man/man8/" - install -m 644 doc/aura.8 "$pkgdir/usr/share/man/man8/aura.8" - - # Installing bash completions - mkdir -p "$pkgdir/usr/share/bash-completion/completions/" - install -m 644 doc/completions/bashcompletion.sh "$pkgdir/usr/share/bash-completion/completions/aura" - - # Installing zsh completions - mkdir -p "$pkgdir/usr/share/zsh/site-functions/" - install -m 644 doc/completions/_aura "$pkgdir/usr/share/zsh/site-functions/_aura" - - # Directory for storing PKGBUILDs - mkdir -p "$pkgdir/var/cache/aura/pkgbuilds" - - # Directory for storing source packages - mkdir -p "$pkgdir/var/cache/aura/src" - - # Directory for storing installed package states - mkdir -p "$pkgdir/var/cache/aura/states" -} diff --git a/aura/aura.cabal b/aura/aura.cabal index 6c7dd2680..4b0687099 100644 --- a/aura/aura.cabal +++ b/aura/aura.cabal @@ -1,6 +1,6 @@ name: aura -version: 1.3.6 +version: 1.3.7 synopsis: A secure package manager for Arch Linux and the AUR, written in Haskell. @@ -87,23 +87,23 @@ executable aura , Bash.Simplify build-depends: aur >= 6 && < 7 - , mtl - , text - , time - , unix - , http-types >= 0.9 && < 0.10 + , array >= 0.5 && < 0.6 + , base >= 4.8 && < 4.10 + , bytestring + , containers + , directory + , filepath , http-client >= 0.5 && < 0.6 , http-client-tls >= 0.3 && < 0.4 - , split >= 0.2 && < 0.3 - , array - , parsec + , http-types >= 0.9 && < 0.10 + , mtl >= 2.2 && < 2.3 + , network-uri >= 2.6 && < 2.7 + , parsec >= 3.1 && < 3.2 , process - , filepath - , directory + , regex-pcre-builtin >= 0.94 && < 0.95 + , split >= 0.2 && < 0.3 , temporary - , containers - , bytestring - , transformers - , regex-pcre-builtin - , network-uri - , base >= 4.8 && < 4.10 + , text >= 1.2 && < 1.3 + , time + , transformers >= 0.5 && < 0.6 + , unix diff --git a/aura/src/aura.hs b/aura/src/aura.hs index 45a72f78e..5a931447f 100644 --- a/aura/src/aura.hs +++ b/aura/src/aura.hs @@ -63,7 +63,7 @@ import Aura.Commands.O as O type UserInput = ([Flag], [String], [String]) auraVersion :: String -auraVersion = "1.3.6" +auraVersion = "1.3.7" main :: IO a main = getArgs >>= prepSettings . processFlags >>= execute >>= exit