public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Jakov Smolić" <jsmolic@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/rocketwiki-lqfb/files/, www-apps/rocketwiki-lqfb/, profiles/
Date: Fri, 15 Apr 2022 13:07:45 +0000 (UTC)	[thread overview]
Message-ID: <1650028027.4de9a8b84afd37701a280e86d2e1896ab57211d0.jsmolic@gentoo> (raw)

commit:     4de9a8b84afd37701a280e86d2e1896ab57211d0
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Fri Apr 15 12:59:16 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Fri Apr 15 13:07:07 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4de9a8b8

www-apps/rocketwiki-lqfb: treeclean

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 profiles/package.mask                              |  5 ---
 www-apps/rocketwiki-lqfb/Manifest                  |  1 -
 .../files/rocketwiki-lqfb-0.4-parsec1.patch        | 15 --------
 .../files/rocketwiki-lqfb-0.4-utf8.patch           | 44 ----------------------
 www-apps/rocketwiki-lqfb/metadata.xml              | 11 ------
 .../rocketwiki-lqfb/rocketwiki-lqfb-0.4.ebuild     | 31 ---------------
 6 files changed, 107 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index c1ac7f4ec8be..7be24c020532 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -332,11 +332,6 @@ dev-java/headius-options
 # necessity.
 net-p2p/arti
 
-# Alfredo Tupone <tupone@gentoo.org> (2022-03-13)
-# No revdeps, last update on 2011
-# Removal on 2022-04-13.
-www-apps/rocketwiki-lqfb
-
 # Stephan Hartmann <sultan@gentoo.org> (2022-04-01)
 # Dev channel releases are only for people who
 # are developers or want more experimental features

diff --git a/www-apps/rocketwiki-lqfb/Manifest b/www-apps/rocketwiki-lqfb/Manifest
deleted file mode 100644
index 2b42c5ab5bb7..000000000000
--- a/www-apps/rocketwiki-lqfb/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST rocketwiki-lqfb-v0.4.tar.gz 5274 BLAKE2B f26390e0c238a0c8453ca15417396d87e9a6c3da2bad9bd0d02061ccf083114e83713eed268541bb6f1d04587083cf8cc24454f4719700b34b1e046f8c42e006 SHA512 fa90b317007c42e2e6d36c79773948ab7ab68ee914bd20825e0d5acbb8bf0add2c0a48119440d8a5b4c991f2d1f59bc83a1835b02d9070ae67fca1d4ffb73caf

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

diff --git a/www-apps/rocketwiki-lqfb/metadata.xml b/www-apps/rocketwiki-lqfb/metadata.xml
deleted file mode 100644
index 8bd8463e5cf6..000000000000
--- a/www-apps/rocketwiki-lqfb/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="person">
-<email>tupone@gentoo.org</email>
-<name>Alfredo Tupone</name>
-</maintainer>
-<longdescription lang="en">
-RocketWiki is a small parser written in Haskell which translates a wiki dialect to HTML. It uses Parsec, a monadic parser combinator library. The compressed source code of RocketWiki has a size of only 5162 bytes.
-</longdescription>
-</pkgmetadata>

diff --git a/www-apps/rocketwiki-lqfb/rocketwiki-lqfb-0.4.ebuild b/www-apps/rocketwiki-lqfb/rocketwiki-lqfb-0.4.ebuild
deleted file mode 100644
index f3db79bdea5b..000000000000
--- a/www-apps/rocketwiki-lqfb/rocketwiki-lqfb-0.4.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_P=${PN}-v${PV}
-
-DESCRIPTION="Small parser which translates a wiki dialect to HTML"
-HOMEPAGE="https://www.public-software-group.org/rocketwiki"
-SRC_URI="https://www.public-software-group.org/pub/projects/rocketwiki/liquid_feedback_edition/v${PV}/${MY_P}.tar.gz"
-
-LICENSE="HPND"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="dev-libs/gmp"
-DEPEND="${RDEPEND}
-	dev-haskell/parsec
-	dev-lang/ghc"
-
-S=${WORKDIR}/${MY_P}
-
-PATCHES=(
-	"${FILESDIR}"/${P}-utf8.patch
-	"${FILESDIR}"/${P}-parsec1.patch
-)
-
-src_install() {
-	dobin ${PN}{,-compat}
-}


                 reply	other threads:[~2022-04-15 13:07 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1650028027.4de9a8b84afd37701a280e86d2e1896ab57211d0.jsmolic@gentoo \
    --to=jsmolic@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox