diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2022-02-08 22:57:01 +1300 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2022-02-09 09:35:59 +0700 |
commit | e4ce7ac80644994598df6669624478e7768eb5e7 (patch) | |
tree | fbade64f6163da52dce5f0778d43227cb652c496 /desktop/xmonad | |
parent | 7955471af2edfc21822d37d095f201366341113f (diff) |
desktop/xmonad: Updated for version 0.17.0.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'desktop/xmonad')
-rw-r--r-- | desktop/xmonad/xmonad.SlackBuild | 6 | ||||
-rw-r--r-- | desktop/xmonad/xmonad.info | 6 | ||||
-rw-r--r-- | desktop/xmonad/xmonad_cabal.patch | 19 |
3 files changed, 6 insertions, 25 deletions
diff --git a/desktop/xmonad/xmonad.SlackBuild b/desktop/xmonad/xmonad.SlackBuild index 2dec5c7915f7a..847be19835785 100644 --- a/desktop/xmonad/xmonad.SlackBuild +++ b/desktop/xmonad/xmonad.SlackBuild @@ -26,8 +26,8 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=xmonad -VERSION=${VERSION:-0.15} -BUILD=${BUILD:-2} +VERSION=${VERSION:-0.17.0} +BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -131,7 +131,7 @@ find $PKG/usr/man -type f -exec gzip -9 {} \; for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done cp -a \ - CHANGES.md CONFIG LICENSE README.md STYLE \ + CHANGES.md CONTRIBUTING.md INSTALL.md LICENSE MAINTAINERS.md README.md TUTORIAL.md \ $PKG/usr/doc/$PRGNAM-$VERSION cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild diff --git a/desktop/xmonad/xmonad.info b/desktop/xmonad/xmonad.info index bb42e63aa264a..a36462cad1443 100644 --- a/desktop/xmonad/xmonad.info +++ b/desktop/xmonad/xmonad.info @@ -1,8 +1,8 @@ PRGNAM="xmonad" -VERSION="0.15" +VERSION="0.17.0" HOMEPAGE="https://xmonad.org/" -DOWNLOAD="https://hackage.haskell.org/packages/archive/xmonad/0.15/xmonad-0.15.tar.gz" -MD5SUM="3a45ffb3a46482da8d94873c48a79dfa" +DOWNLOAD="https://hackage.haskell.org/packages/archive/xmonad/0.17.0/xmonad-0.17.0.tar.gz" +MD5SUM="de60dc159159a1ed909fd22ff899d1eb" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="haskell-X11 haskell-data-default haskell-extensible-exceptions haskell-setlocale haskell-utf8-string" diff --git a/desktop/xmonad/xmonad_cabal.patch b/desktop/xmonad/xmonad_cabal.patch deleted file mode 100644 index b737064f45a22..0000000000000 --- a/desktop/xmonad/xmonad_cabal.patch +++ /dev/null @@ -1,19 +0,0 @@ ---- xmonad.cabal.orig 2012-05-16 01:04:06.426000004 +0300 -+++ xmonad.cabal 2012-05-16 01:04:39.336999960 +0300 -@@ -32,6 +32,10 @@ - description: Testing mode, only build minimal components - default: False - -+flag threaded -+ description: Use threaded runtime for xmonad binary -+ default: False -+ - library - exposed-modules: XMonad - XMonad.Main -@@ -88,3 +96,5 @@ - ghc-options: -Werror - if flag(testing) && flag(small_base) - build-depends: filepath, process, directory, mtl, unix, X11, base, containers, random, extensible-exceptions -+ if flag(threaded) -+ ghc-options: -threaded |