We have moved to Git. This repository is only provided for compatibility with old installations. Learn how to migrate your installation here.

changeset 13:7d56754e9644

copied description texts from official ebuilds, modified dependencies and download methods
author Daniel Neugebauer <dneuge@energiequant.de>
date Sun, 29 Jul 2012 23:12:08 +0200
parents c3acf66affe4
children 95f211776038
files dev-python/celery/Manifest dev-python/celery/celery-2.2.10.ebuild dev-python/kombu/Manifest dev-python/kombu/kombu-1.5.1.ebuild dev-python/py-bcrypt/Manifest dev-python/py-bcrypt/py-bcrypt-0.2.ebuild dev-vcs/rhodecode/Manifest dev-vcs/rhodecode/rhodecode-1.3.6.ebuild
diffstat 8 files changed, 43 insertions(+), 37 deletions(-) [+]
line wrap: on
line diff
--- a/dev-python/celery/Manifest	Tue Jul 24 23:20:53 2012 +0200
+++ b/dev-python/celery/Manifest	Sun Jul 29 23:12:08 2012 +0200
@@ -1,1 +1,2 @@
-EBUILD celery-2.2.10.ebuild 662 RMD160 7478959a0211704890771df887a3716e72ab1eb1 SHA1 d9478aee039926273e674001b8e0e9e964a3b664 SHA256 6cd989178911fed50f139ffa8bfba48082bd435dfab0fbfdacfc2e0a5bd1c9d3
+DIST celery-2.2.10.tar.gz 1502041 RMD160 86b71987a524f8dd80925df793dc78536752a030 SHA1 17b2f27915c581e60264706ec12e1926aadec99d SHA256 dc6379c9bd0d799ed44e6a905d54b29fc0c7a514152e366bb3ef939e03291ab6
+EBUILD celery-2.2.10.ebuild 1091 RMD160 01fe1cf50860c2cf1a3acebc4f3804166f679860 SHA1 a02d13c74011288b58105d5dd9aaeed1990bd982 SHA256 92b632276e78a95817efcf638813508d38018c71891b7cff09e520dd2a2d6962
--- a/dev-python/celery/celery-2.2.10.ebuild	Tue Jul 24 23:20:53 2012 +0200
+++ b/dev-python/celery/celery-2.2.10.ebuild	Sun Jul 29 23:12:08 2012 +0200
@@ -6,17 +6,20 @@
 SUPPORT_PYTHON_ABIS="1"
 
 inherit distutils
-inherit git-2
 
-DESCRIPTION="a task queue implementation"
-HOMEPAGE="http://www.celeryproject.org/"
+DESCRIPTION="Celery is an open source asynchronous task queue/job queue based on distributed message passing."
+HOMEPAGE="http://www.celeryproject.org/ http://pypi.python.org/pypi/celery"
+
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
-# tarball exists (kind of...) but we get a messy filename from it
-# so instead we pull the github repository (not ideal but works)
-#SRC_URI="https://github.com/celery/celery/tarball/v2.2.10"
-
-EGIT_REPO_URI="https://github.com/celery/celery.git"
-EGIT_COMMIT="c4f068483bb2600c36d31da352f43f6dc3ea3dc7"
+# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+# dependencies are likely to be incomplete or not restrictive enough
+# this library ebuild has been added for rhodecode which may have restricted them in
+# another way, you are encouraged to submit corrections to gentoo-overlay@megacoffee.net
+# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+DEPEND=">=dev-python/kombu-1.1.2
+	<dev-python/kombu-2.0.0
+	dev-python/setuptools"
 
 LICENSE="BSD-3"
 SLOT="0"
@@ -24,3 +27,5 @@
 IUSE=""
 
 RESTRICT_PYTHON_ABIS="3.*"
+
+# NOTE: the official ebuilds for later versions of Celery contain some more steps
--- a/dev-python/kombu/Manifest	Tue Jul 24 23:20:53 2012 +0200
+++ b/dev-python/kombu/Manifest	Sun Jul 29 23:12:08 2012 +0200
@@ -1,1 +1,2 @@
-EBUILD kombu-1.5.1.ebuild 658 RMD160 cd0f01a0ffb551ee4698105441dcd91e63d96920 SHA1 6e28b88e61667dcf0fe6bba2e9c5e6503e13630a SHA256 5e855316d75c42b7a314ed773f12d009587c6be5fd6debfc797482e331a68693
+DIST kombu-1.5.1.tar.gz 243413 RMD160 c1001faf00b68772b3c6695ba671d0e5aa020f0d SHA1 fb17dffd1aa85a7a825a11e53851e20a659a1cc3 SHA256 ae526adae2dd89c07f4f63fe3c4312d62c7c4a79b3aaeb32d5bf944cb0ac6e6f
+EBUILD kombu-1.5.1.ebuild 978 RMD160 0dd41a4cd2a8cf5bf8f238dd4742694de93f0d32 SHA1 8461fdd82da333bf4f747d033e01a7040d8c3648 SHA256 5158cafa425d98c2b292fada631ccbba9dd7f7e892a18725e98f3e45e7eb68ff
--- a/dev-python/kombu/kombu-1.5.1.ebuild	Tue Jul 24 23:20:53 2012 +0200
+++ b/dev-python/kombu/kombu-1.5.1.ebuild	Sun Jul 29 23:12:08 2012 +0200
@@ -6,17 +6,18 @@
 SUPPORT_PYTHON_ABIS="1"
 
 inherit distutils
-inherit git-2
 
-DESCRIPTION="an AMQP interface for python"
-HOMEPAGE="http://kombu.readthedocs.org/"
+DESCRIPTION="AMQP Messaging Framework for Python"
+HOMEPAGE="http://kombu.readthedocs.org/ https://github.com/ask/kombu"
+
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
-# tarball exists (kind of...) but we get a messy filename from it
-# so instead we pull the github repository (not ideal but works)
-#SRC_URI="https://github.com/celery/kombu/tarball/v1.5.1"
-
-EGIT_REPO_URI="https://github.com/celery/kombu.git"
-EGIT_COMMIT="63284ce01fef6e644e0f4679dbd0376975e5d17f"
+# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!  
+# dependencies are likely to be incomplete or not restrictive enough
+# this library ebuild has been added for rhodecode which may have restricted them in    
+# another way, you are encouraged to submit corrections to gentoo-overlay@megacoffee.net
+# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+DEPEND="dev-python/setuptools"
 
 LICENSE="BSD"
 SLOT="0"
@@ -24,3 +25,6 @@
 IUSE=""
 
 RESTRICT_PYTHON_ABIS="3.*"
+
+# NOTE: the official ebuilds for later versions of Celery contain some more steps
+
--- a/dev-python/py-bcrypt/Manifest	Tue Jul 24 23:20:53 2012 +0200
+++ b/dev-python/py-bcrypt/Manifest	Sun Jul 29 23:12:08 2012 +0200
@@ -1,2 +1,2 @@
 DIST py-bcrypt-0.2.tar.gz 16804 RMD160 c04c6d623dbbd633b57aa76271a5cc93fb2f2426 SHA1 8fbcf01794557c6f9b37ce3a9c296fb8d2d24650 SHA256 86a798053e41620e64c41b9d6cfd820ac4a564ed4030a5fb177b9daef6bbacba
-EBUILD py-bcrypt-0.2.ebuild 420 RMD160 30f36eebf16e983848fbcf5790208077494bc5b4 SHA1 4f16da3582202210013c6a46101e9fab40a04f28 SHA256 e4004c10161762a6d2d4a0c393ce14f698a403b6b5a34d425afb39faf925cedb
+EBUILD py-bcrypt-0.2.ebuild 452 RMD160 7eaa0a4651b3a8b0e8c6351d52979e0093809c29 SHA1 20d794a215cf1bb174396ec9a6cd92a3f3b0a240 SHA256 9beb8d2c08fdf4ed4f39acb766933ad626107ce0fe8c6802fb792ec799b796bf
--- a/dev-python/py-bcrypt/py-bcrypt-0.2.ebuild	Tue Jul 24 23:20:53 2012 +0200
+++ b/dev-python/py-bcrypt/py-bcrypt-0.2.ebuild	Sun Jul 29 23:12:08 2012 +0200
@@ -12,6 +12,8 @@
 
 SRC_URI="http://py-bcrypt.googlecode.com/files/py-bcrypt-0.2.tar.gz"
 
+DEPEND="dev-python/setuptools"
+
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
--- a/dev-vcs/rhodecode/Manifest	Tue Jul 24 23:20:53 2012 +0200
+++ b/dev-vcs/rhodecode/Manifest	Sun Jul 29 23:12:08 2012 +0200
@@ -1,2 +1,2 @@
 DIST edfff9f37916389144d3a3644d0a7d7adfd79b11.zip 2240778 RMD160 5f6fb2737678b31b137b6c473bcf5f1916d75b98 SHA1 ddcc0d789cf55dbd11db3026ec1fd9f35e8b9ecb SHA256 c7203c1cb5a771acc7b89a5a1d06748db9619ce1b7fcfcb94107d0d712dc7961
-EBUILD rhodecode-1.3.6.ebuild 1849 RMD160 e88f2d83f0d240a2fd2c06c997f8132aa6d3ff0b SHA1 812f207a6ff7b4dfeb3fdbf0ac8be3d4f1b3d6ec SHA256 a9d69c54a5f4a3b53d9e5cc79db47354f9c4e759a674fe4709875efbae7d6c2f
+EBUILD rhodecode-1.3.6.ebuild 1681 RMD160 039e74406acdf38339dc288a8843278d65e2a983 SHA1 ba450d9a15ced38c095b4f3d455e92a85e2d8f62 SHA256 7132bae00fe888e517076d086b0b1d76baab29f4d1c6bf5dbb9aa276500bfb53
--- a/dev-vcs/rhodecode/rhodecode-1.3.6.ebuild	Tue Jul 24 23:20:53 2012 +0200
+++ b/dev-vcs/rhodecode/rhodecode-1.3.6.ebuild	Sun Jul 29 23:12:08 2012 +0200
@@ -6,7 +6,6 @@
 SUPPORT_PYTHON_ABIS="1"
 
 inherit distutils
-#inherit mercurial
 
 DESCRIPTION="a web-based frontend and middleware to Mercurial repositories"
 HOMEPAGE="http://rhodecode.org/"
@@ -14,16 +13,10 @@
 #SRC_URI="https://rhodecode.org/rhodecode/archive/edfff9f37916389144d3a3644d0a7d7adfd79b11.zip?subrepos=true"
 SRC_URI="https://rhodecode.org/rhodecode/archive/edfff9f37916389144d3a3644d0a7d7adfd79b11.zip"
 
-# removed from DEPEND for errors on emerge
-#	>=dev-python/python-dateutil-1.5
-#	!>=dev-python/python-dateutil-2.0
-#	>=dev-python/kombu-1.1.2
-#	!>=dev-python/kombu-2.0.0
-
-
 DEPEND=">=dev-vcs/mercurial-2.2.1
-        !>=dev-vcs/mercurial-2.3
+        <dev-vcs/mercurial-2.3
         dev-python/pastescript
+	dev-python/setuptools
 	
 	=dev-python/pylons-1.0
 	=dev-python/beaker-1.6.3
@@ -33,23 +26,23 @@
 	=dev-python/mako-0.7.0
 	>=dev-python/pygments-1.4
 	>=dev-python/whoosh-2.4.0
-	!>=dev-python/whoosh-2.5
+	<dev-python/whoosh-2.5
 	dev-python/Babel
-	=dev-python/python-dateutil-1.5
+	>=dev-python/python-dateutil-1.5
+	<dev-python/python-dateutil-2.0
 	>=dev-python/dulwich-0.8.5
-	!>=dev-python/dulwich-0.9.0
+	<dev-python/dulwich-0.9.0
 	=dev-python/webob-1.0.8
 	=dev-python/markdown-2.1.1
 	=dev-python/docutils-0.8.1
 	=dev-python/simplejson-2.5.2
 	
 	>=dev-python/pyparsing-1.5.0
-	!>=dev-python/pyparsing-2.0.0
+	<dev-python/pyparsing-2.0.0
 	
 	dev-python/py-bcrypt
 	=dev-python/celery-2.2.10
-	!>=dev-python/celery-3
-	=dev-python/kombu-1.5.1
+	<dev-python/celery-3
 	>=dev-python/anyjson-0.3.1
 	>=dev-python/amqplib-1.0
 "