diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /www-apps/ownpaste | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'www-apps/ownpaste')
-rw-r--r-- | www-apps/ownpaste/Manifest | 1 | ||||
-rw-r--r-- | www-apps/ownpaste/metadata.xml | 15 | ||||
-rw-r--r-- | www-apps/ownpaste/ownpaste-0.2.2-r1.ebuild | 54 | ||||
-rw-r--r-- | www-apps/ownpaste/ownpaste-9999.ebuild | 54 |
4 files changed, 124 insertions, 0 deletions
diff --git a/www-apps/ownpaste/Manifest b/www-apps/ownpaste/Manifest new file mode 100644 index 000000000000..dc72ae136fca --- /dev/null +++ b/www-apps/ownpaste/Manifest @@ -0,0 +1 @@ +DIST ownpaste-0.2.2.tar.gz 22030 SHA256 98e6bb80ff395617ce037968a739f8f71c1d0fd140914317986a9cc68e8878df SHA512 2a55e89e00e7530aafab427e7e2e4015391a68a8c7b8843cdd5b1010f492a4ecb6f28f33b2a92812a7072a35f3437f08ac1635867b492903256e92dabcb9beaf WHIRLPOOL 1ee3e1a8ff2756c1062fdb0492d96d9ef17d30919227f67480fd7bc1e73e37ca723acecbdcd243e30f5e554a4c11e8bdaa55f804a29eb402acf9b1cd05848a00 diff --git a/www-apps/ownpaste/metadata.xml b/www-apps/ownpaste/metadata.xml new file mode 100644 index 000000000000..b452243522b4 --- /dev/null +++ b/www-apps/ownpaste/metadata.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer> + <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 new file mode 100644 index 000000000000..918d0f1a575c --- /dev/null +++ b/www-apps/ownpaste/ownpaste-0.2.2-r1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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/ http://pypi.python.org/pypi/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 new file mode 100644 index 000000000000..918d0f1a575c --- /dev/null +++ b/www-apps/ownpaste/ownpaste-9999.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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/ http://pypi.python.org/pypi/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 +} |