summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolić <jsmolic@gentoo.org>2022-04-15 14:59:16 +0200
committerJakov Smolić <jsmolic@gentoo.org>2022-04-15 15:07:07 +0200
commit4de9a8b84afd37701a280e86d2e1896ab57211d0 (patch)
tree41fc9081ba53ba1b1440a6ab5edbef837e8251e8 /www-apps/rocketwiki-lqfb/files
parentsys-kernel/vanilla-sources: add 5.4.189, drop 5.4.188 (diff)
downloadgentoo-4de9a8b84afd37701a280e86d2e1896ab57211d0.tar.gz
gentoo-4de9a8b84afd37701a280e86d2e1896ab57211d0.tar.bz2
gentoo-4de9a8b84afd37701a280e86d2e1896ab57211d0.zip
www-apps/rocketwiki-lqfb: treeclean
Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'www-apps/rocketwiki-lqfb/files')
-rw-r--r--www-apps/rocketwiki-lqfb/files/rocketwiki-lqfb-0.4-parsec1.patch15
-rw-r--r--www-apps/rocketwiki-lqfb/files/rocketwiki-lqfb-0.4-utf8.patch44
2 files changed, 0 insertions, 59 deletions
diff --git a/www-apps/rocketwiki-lqfb/files/rocketwiki-lqfb-0.4-parsec1.patch b/www-apps/rocketwiki-lqfb/files/rocketwiki-lqfb-0.4-parsec1.patch
deleted file mode 100644
index d615aa86fcfb..000000000000
--- a/www-apps/rocketwiki-lqfb/files/rocketwiki-lqfb-0.4-parsec1.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- a/Makefile 2020-06-10 10:37:53.992504952 +0200
-+++ b/Makefile 2020-06-10 10:38:37.419801522 +0200
-@@ -1,10 +1,10 @@
- all:: rocketwiki-lqfb rocketwiki-lqfb-compat
-
- rocketwiki-lqfb: rocketwiki-lqfb.hs
-- ghc --make rocketwiki-lqfb
-+ ghc -ignore-package=parsec1 --make rocketwiki-lqfb
-
- rocketwiki-lqfb-compat: rocketwiki-lqfb-compat.hs
-- ghc --make rocketwiki-lqfb-compat
-+ ghc -ignore-package=parsec1 --make rocketwiki-lqfb-compat
-
- clean::
- rm -f rocketwiki-lqfb rocketwiki-lqfb.hi rocketwiki-lqfb.o
diff --git a/www-apps/rocketwiki-lqfb/files/rocketwiki-lqfb-0.4-utf8.patch b/www-apps/rocketwiki-lqfb/files/rocketwiki-lqfb-0.4-utf8.patch
deleted file mode 100644
index 52c08ee49bf3..000000000000
--- a/www-apps/rocketwiki-lqfb/files/rocketwiki-lqfb-0.4-utf8.patch
+++ /dev/null
@@ -1,44 +0,0 @@
---- a/rocketwiki-lqfb.hs 2013-04-25 21:41:34.044588280 +0200
-+++ b/rocketwiki-lqfb.hs 2013-04-25 21:42:33.108020316 +0200
-@@ -2,6 +2,7 @@
- import Text.ParserCombinators.Parsec
- import Control.Applicative ((<$>), (<*>))
- import Data.List (intercalate)
-+import System.IO (hSetEncoding, stdin, stdout, utf8)
-
-
- -----------------------------------------------------
-@@ -405,7 +406,10 @@
- return htmlEntity
-
-
--main = interact wikiParse
-+main = do
-+ hSetEncoding stdin utf8
-+ hSetEncoding stdout utf8
-+ interact wikiParse
-
- wikiParse str
- | success parseResult = html
---- a/rocketwiki-lqfb-compat.hs 2013-04-25 21:41:41.340518231 +0200
-+++ b/rocketwiki-lqfb-compat.hs 2013-04-25 21:43:21.299557312 +0200
-@@ -2,6 +2,7 @@
- import Text.ParserCombinators.Parsec
- import Control.Applicative ((<$>), (<*>))
- import Data.List (intercalate)
-+import System.IO (hSetEncoding, stdin, stdout, utf8)
-
-
- -----------------------------------------------------
-@@ -412,7 +413,10 @@
- return htmlEntity
-
-
--main = interact wikiParse
-+main = do
-+ hSetEncoding stdin utf8
-+ hSetEncoding stdout utf8
-+ interact wikiParse
-
- wikiParse str
- | success parseResult = html