www-apps/pyblosxom: Remove last-rited pkg, #360767

This commit is contained in:
Michał Górny
2017-07-05 15:41:19 +02:00
parent a0c33e44c3
commit f03faf2a7d
8 changed files with 0 additions and 116 deletions

View File

@@ -283,13 +283,6 @@ x11-libs/libxsettings-client
# Removal in 30 days. Bug #610454.
net-misc/ser
# Michał Górny <mgorny@gentoo.org> (05 Jun 2017)
# (on behalf of Treecleaner project)
# Unmaintained in Gentoo. Abandoned upstream before Gentoo got to
# bumping it.
# Removal in 30 days. Bug #360767.
www-apps/pyblosxom
# Michał Górny <mgorny@gentoo.org> (05 Jun 2017)
# (on behalf of Treecleaner project)
# Unmaintained in Gentoo. The current Gentoo version no longer builds.

View File

@@ -1 +0,0 @@
DIST pyblosxom-1.4.3.tar.gz 110908 SHA256 35af992168c773099c92a2572ce64b0ad765aa578af495845e92a346602fa8fd SHA512 8b51e4f304b194a9f0b957f055560f422868e3f7da8ca19f04185cc2ac05a80168fe98c7b71db986283c2634318fd98e549111728d52c429937e35ccbbac0507 WHIRLPOOL c508e9c0db0935b43a377818e5ad8e6c361783068ea582919ce147928e5ddae5b249813d133c06ae0bf7a61cb406c1850e8c764eebf80e3c9f0b6db71484c26f

View File

@@ -1,13 +0,0 @@
#!/bin/bash
case "$1" in
install)
chown ${VHOST_SERVER_UID} ${MY_INSTALLDIR}/log
sed -i -e "s#/path/to/blog#${MY_INSTALLDIR}/data/#" ${VHOST_CGIBINDIR}/pyblosxom/config.py || exit
sed -i -e "s#/path/to/logdir#${MY_INSTALLDIR}/log/#" ${VHOST_CGIBINDIR}/pyblosxom/config.py || exit
sed -i -e "s#^\#\(.*\)/path/to/my/plugins#\1/usr/share/pyblosxom-1.2.1/plugins/#" ${VHOST_CGIBINDIR}/pyblosxom/config.py || exit
;;
*)
# Nothing to do for clean up
;;
esac

View File

@@ -1,12 +0,0 @@
PyBlosxom setup:
1. Customize the config file
${VHOST_CGIBINDIR}/pyblosxom/config.py
2. Add any pyblosxom plugins you would like to use to the
/usr/share/${P}/plugins directory.
3. Add blog entries as normal text files to
${MY_INSTALLDIR}/data
-- Go to http://${VHOST_HOSTNAME}/cgi-bin/pyblosxom/pyblosxom.cgi

View File

@@ -1,10 +0,0 @@
pyblosxom-1.3 changes nearly nothing in the config file.
The only new variable you need to set is 'blog_rights'. It should
contain your name and will be added to the atom feed.
Anyway you only need to run etc-update on you config file as
suggested by webapp-config. Update the configuration following
standard procedures and you should be all set.
Enjoy pyblosxom!

View File

@@ -1,13 +0,0 @@
--- a/setup.py 2007-12-18 11:13:36.439046250 +0100
+++ b/setup.py 2007-12-18 11:14:05.216844750 +0100
@@ -73,9 +73,7 @@
# we want to move the web script files as well, so we sneak them
# in here.
pydf.append( [os.path.join('share', PVER, 'web'),
- [os.path.normpath("web/pyblosxom.cgi"),
- os.path.normpath("web/pyblosxom.tac"),
- os.path.normpath("web/config.py")]])
+ [os.path.normpath("web/pyblosxom.tac")]])
else:
# we don't know what platform they have, so we print out

View File

@@ -1,11 +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>
<upstream>
<remote-id type="sourceforge">pyblosxom</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -1,49 +0,0 @@
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1 webapp
DESCRIPTION="Lightweight weblog system"
HOMEPAGE="http://pyblosxom.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="MIT"
KEYWORDS="~amd64 ~arm ~x86"
# This installs python library files.
SLOT=0
WEBAPP_MANUAL_SLOT=yes
IUSE=""
DEPEND=""
RDEPEND=""
PATCHES=(
"${FILESDIR}/${PN}-1.4.2-gentoo.patch"
)
src_install() {
webapp_src_preinst
distutils-r1_src_install
keepdir /usr/share/${P}/plugins
keepdir "${MY_HTDOCSDIR}"/data
keepdir "${MY_HTDOCSDIR}"/log
insinto "${MY_CGIBINDIR}"/pyblosxom
doins web/{config.py,pyblosxom.cgi}
webapp_configfile "${MY_CGIBINDIR}"/pyblosxom/config.py
webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
webapp_postupgrade_txt en "${FILESDIR}"/postupgrade-en.txt
webapp_hook_script "${FILESDIR}"/config-hook.sh
webapp_src_install
}