summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikle Kolyada <zlogene@gentoo.org>2020-04-09 11:12:03 +0300
committerMikle Kolyada <zlogene@gentoo.org>2020-04-09 11:12:03 +0300
commitbfabc357c699874f42293086ab1e58423dc9016f (patch)
treecb105b2af2c991514f1b8c79e8ca389adb2fca1d /www-apps
parentwww-apps/venus: remove last-rited pkg (diff)
downloadgentoo-bfabc357c699874f42293086ab1e58423dc9016f.tar.gz
gentoo-bfabc357c699874f42293086ab1e58423dc9016f.tar.bz2
gentoo-bfabc357c699874f42293086ab1e58423dc9016f.zip
www-apps/ownpaste: remove last-rited pkg
Closes: https://bugs.gentoo.org/708336 Signed-off-by: Mikle Kolyada <zlogene@gentoo.org>
Diffstat (limited to 'www-apps')
-rw-r--r--www-apps/ownpaste/Manifest1
-rw-r--r--www-apps/ownpaste/metadata.xml15
-rw-r--r--www-apps/ownpaste/ownpaste-0.2.2-r1.ebuild53
-rw-r--r--www-apps/ownpaste/ownpaste-9999.ebuild53
4 files changed, 0 insertions, 122 deletions
diff --git a/www-apps/ownpaste/Manifest b/www-apps/ownpaste/Manifest
deleted file mode 100644
index 332e38f1a0c1..000000000000
--- a/www-apps/ownpaste/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST ownpaste-0.2.2.tar.gz 22030 BLAKE2B ba8085f989399297acc5214cb81b22c574f30604fd60999cad6bec20041522ecb3dc576e3fe3efc6a8464979d5009a96fb0e9338f9a7a26266752d16a75c29ce SHA512 2a55e89e00e7530aafab427e7e2e4015391a68a8c7b8843cdd5b1010f492a4ecb6f28f33b2a92812a7072a35f3437f08ac1635867b492903256e92dabcb9beaf
diff --git a/www-apps/ownpaste/metadata.xml b/www-apps/ownpaste/metadata.xml
deleted file mode 100644
index e02a6833f99a..000000000000
--- a/www-apps/ownpaste/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>rafaelmartins@gentoo.org</email>
- <name>Rafael G. Martins</name>
- </maintainer>
- <upstream>
- <maintainer status="active">
- <email>rafaelmartins@gentoo.org</email>
- <name>Rafael G. Martins</name>
- </maintainer>
- <remote-id type="pypi">ownpaste</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/www-apps/ownpaste/ownpaste-0.2.2-r1.ebuild b/www-apps/ownpaste/ownpaste-0.2.2-r1.ebuild
deleted file mode 100644
index f1855793873e..000000000000
--- a/www-apps/ownpaste/ownpaste-0.2.2-r1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-HG_ECLASS=""
-if [[ ${PV} = *9999* ]]; then
- HG_ECLASS="mercurial"
- EHG_REPO_URI="http://hg.rafaelmartins.eng.br/ownpaste/"
-fi
-
-inherit distutils-r1 ${HG_ECLASS}
-
-DESCRIPTION="Private pastebin (server-side implementation)"
-HOMEPAGE="http://ownpaste.rtfd.org/ https://pypi.org/project/ownpaste/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-
-if [[ ${PV} = *9999* ]]; then
- SRC_URI=""
- KEYWORDS=""
-fi
-
-RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
- >=dev-python/flask-0.8[${PYTHON_USEDEP}]
- >=dev-python/flask-script-0.3.3[${PYTHON_USEDEP}]
- >=dev-python/flask-sqlalchemy-0.15[${PYTHON_USEDEP}]
- >=dev-python/jinja-2.6[${PYTHON_USEDEP}]
- >=dev-python/werkzeug-0.8[${PYTHON_USEDEP}]
- >=dev-python/sqlalchemy-migrate-0.7.2[${PYTHON_USEDEP}]
- dev-python/pygments[${PYTHON_USEDEP}]
- dev-python/pytz[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
- doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
-
-python_compile_all() {
- if use doc; then
- einfo 'building documentation'
- emake -C docs html
- fi
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/_build/html/. )
-
- distutils-r1_python_install_all
-}
diff --git a/www-apps/ownpaste/ownpaste-9999.ebuild b/www-apps/ownpaste/ownpaste-9999.ebuild
deleted file mode 100644
index f1855793873e..000000000000
--- a/www-apps/ownpaste/ownpaste-9999.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-HG_ECLASS=""
-if [[ ${PV} = *9999* ]]; then
- HG_ECLASS="mercurial"
- EHG_REPO_URI="http://hg.rafaelmartins.eng.br/ownpaste/"
-fi
-
-inherit distutils-r1 ${HG_ECLASS}
-
-DESCRIPTION="Private pastebin (server-side implementation)"
-HOMEPAGE="http://ownpaste.rtfd.org/ https://pypi.org/project/ownpaste/"
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="doc"
-
-if [[ ${PV} = *9999* ]]; then
- SRC_URI=""
- KEYWORDS=""
-fi
-
-RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
- >=dev-python/flask-0.8[${PYTHON_USEDEP}]
- >=dev-python/flask-script-0.3.3[${PYTHON_USEDEP}]
- >=dev-python/flask-sqlalchemy-0.15[${PYTHON_USEDEP}]
- >=dev-python/jinja-2.6[${PYTHON_USEDEP}]
- >=dev-python/werkzeug-0.8[${PYTHON_USEDEP}]
- >=dev-python/sqlalchemy-migrate-0.7.2[${PYTHON_USEDEP}]
- dev-python/pygments[${PYTHON_USEDEP}]
- dev-python/pytz[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
- doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
-
-python_compile_all() {
- if use doc; then
- einfo 'building documentation'
- emake -C docs html
- fi
-}
-
-python_install_all() {
- use doc && local HTML_DOCS=( docs/_build/html/. )
-
- distutils-r1_python_install_all
-}