www-apps/polarblog: Package Removal
authorBrian Evans <grknight@gentoo.org>
Mon, 23 Jul 2018 14:05:34 +0000 (10:05 -0400)
committerBrian Evans <grknight@gentoo.org>
Mon, 23 Jul 2018 14:09:53 +0000 (10:09 -0400)
Closes: https://bugs.gentoo.org/651194

profiles/package.mask
www-apps/polarblog/Manifest [deleted file]
www-apps/polarblog/files/postinstall-en.txt [deleted file]
www-apps/polarblog/files/reconfig [deleted file]
www-apps/polarblog/metadata.xml [deleted file]
www-apps/polarblog/polarblog-1.11.1.ebuild [deleted file]

index 0c075d5eb5d95bdb7c07019e3751402c23886639..abe02409aff9c48feae17ea9202b2b18ba51cb1c 100644 (file)
@@ -322,10 +322,6 @@ www-apps/phprojekt
 # Doesn't run, cannot bump it (#651146). Removal in a month.
 games-emulation/hatari
 
-# Pacho Ramos <pacho@gentoo.org> (17 Jun 2018)
-# Doesn't work with PHP7, dead upstream (#651184, #651194), removal in a month.
-www-apps/polarblog
-
 # Pacho Ramos <pacho@gentoo.org> (17 Jun 2018)
 # Multiple bugs (#424383, #554944), upstream dead (#651340). Removal in a
 # month.
diff --git a/www-apps/polarblog/Manifest b/www-apps/polarblog/Manifest
deleted file mode 100644 (file)
index 3e2d427..0000000
+++ /dev/null
@@ -1 +0,0 @@
-DIST pb_v1111.tgz 284842 BLAKE2B 1f116995aa1989ef97127ae144d058f4fa9d94b326fb0a168c82eb94eaa0e41e666c33b61755de687333ad53cb08bba99bed41cddc63c1db01ec2584a78a09c5 SHA512 2024230ece57cfea10353d6f28c4d3e81c1d5713d069f2cf4a64539ee831eaba4d15483066ea57f29ad3dacaa5cba41e5e1f640be1481c4e07769877a9242605
diff --git a/www-apps/polarblog/files/postinstall-en.txt b/www-apps/polarblog/files/postinstall-en.txt
deleted file mode 100644 (file)
index 5764bcf..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-
-Now execute:
-
-cp ${MY_INSTALLDIR}/css/<one_of_css_files>.css.dist ${MY_INSTALLDIR}/css/<one_of_css_files>.css
-cp ${MY_INSTALLDIR}/config/config.php.dist ${MY_INSTALLDIR}/config/config.php
-and edit them. As a minimum, set LIB_PATH, DB_PREFIX, DB_HOST, DB_NAME,
-DB_USER, DB_PASSWORD, CSS.
-
-Then go to http://${VHOST_HOSTNAME}/${VHOST_APPDIR}/install.php to finish the installation.
-Don't forget to delete ${MY_INSTALLDIR}/install.php when you are done.
-
-Read the docs at http://polarblog.polarlava.com/docs/ , in particular the
-.htaccess section.
diff --git a/www-apps/polarblog/files/reconfig b/www-apps/polarblog/files/reconfig
deleted file mode 100644 (file)
index 89f55b4..0000000
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/bash
-
-die() {
-       echo "#####"
-       echo $1
-       echo "#####"
-       exit 1
-}
-
-if [ $1 = "install" ]; then
-       sed -e "s|/your/path/to/public_html/polarblog|${MY_INSTALLDIR}|" -i ${MY_INSTALLDIR}/config/config.php.dist || die "sed failed"
-fi
diff --git a/www-apps/polarblog/metadata.xml b/www-apps/polarblog/metadata.xml
deleted file mode 100644 (file)
index f2f2ba9..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<maintainer type="project">
-       <email>web-apps@gentoo.org</email>
-       <name>Gentoo Webapps</name>
-</maintainer>
-</pkgmetadata>
diff --git a/www-apps/polarblog/polarblog-1.11.1.ebuild b/www-apps/polarblog/polarblog-1.11.1.ebuild
deleted file mode 100644 (file)
index e894fa3..0000000
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit webapp
-
-MY_PV=${PV//./}
-S=${WORKDIR}/PB_v${MY_PV}
-
-IUSE=""
-
-DESCRIPTION="PolarBlog is an open source embedded weblog solution"
-HOMEPAGE="http://polarblog.polarlava.com"
-SRC_URI="http://polarblog.polarlava.com/releases/pb_v${MY_PV}.tgz"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
-
-LICENSE="GPL-2"
-
-RDEPEND="virtual/httpd-php"
-
-src_install() {
-       webapp_src_preinst
-
-       dodoc CHANGES INSTALL README
-
-       cp -R [[:lower:]][[:lower:]]* "${D}/${MY_HTDOCSDIR}"
-       webapp_serverowned "${MY_HTDOCSDIR}"
-       webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
-       webapp_hook_script "${FILESDIR}"/reconfig
-       webapp_src_install
-}