]> Pileus Git - ~andy/sunrise/commitdiff
dev-util/reviewboard: Version bump. Leaving older version until 1.5 is out of beta.
authorJames Broadhead (hangfire) <jamesbroadhead@gmail.com>
Mon, 5 Jul 2010 22:25:51 +0000 (22:25 +0000)
committerJames Broadhead (hangfire) <jamesbroadhead@gmail.com>
Mon, 5 Jul 2010 22:25:51 +0000 (22:25 +0000)
svn path=/sunrise/; revision=10919

dev-util/reviewboard/ChangeLog
dev-util/reviewboard/Manifest
dev-util/reviewboard/reviewboard-1.5_beta2.ebuild [new file with mode: 0644]

index 0bcda9e7dfcdc5d51fe70a1e9589eb5980226804..c6184ab33116c247dedd09102feb3ed1b0d4a80a 100644 (file)
@@ -2,6 +2,10 @@
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  05 Jul 2010; James Broadhead (hangfire) <jamesbroadhead@gmail.com>
+  +reviewboard-1.5_beta2.ebuild:
+  Version bump. Leaving older version until 1.5 is out of beta.
+
   13 Jun 2010; Michael Weber (xmw) <gentoo@xmw.de> reviewboard-1.0.8.ebuild:
   Added missing dep dev-python/django-evolution, thanks to Sean Harmer
   <sh@theharmers.co.uk> for the hint.
index 60abf363c91f4034b38fa6f8c99823ef1d784279..d0da5dc3dcde383612e95a9c55821b55a3bfaf6e 100644 (file)
@@ -1,4 +1,6 @@
 DIST ReviewBoard-1.0.8.tar.gz 504887 RMD160 cc01338d329ed3aa5aa8998c3a6df476dd593308 SHA1 1e35a7d826be6e69a9b671433823072b7f44fc3d SHA256 520c6e83d1ca244d331422c6ab6d47ef61f467d7ae29ba90b4166c62a351bdab
+DIST ReviewBoard-1.5beta2.tar.gz 622003 RMD160 c1add2c6f4bc4e49609ddcc6e8b4662931a40e36 SHA1 9a195f349bf72b0bf52b5d53239d305890772fa6 SHA256 97fb2007348c71b9297fab8dd2cb1d14341c5249e86ab32ce4684af19a1e40f3
 EBUILD reviewboard-1.0.8.ebuild 1158 RMD160 b967524a37bb3da626c04ab5a308eb54b1641e23 SHA1 2935183d4c9a6fcbb93087a2b39798249d2f5b6c SHA256 ce5cc937ff5388cb23db0485a5ecb135ad605edb54686a404de230e73bb2855d
-MISC ChangeLog 645 RMD160 7d88eef17dfd711d60844d00088515cec82848ce SHA1 f20ea6d39fb6fbe6827269e9b80f532351efaf63 SHA256 f8332d42db260774afe2bd10b5c3035d912ecd40390f276ea420420d43e7df80
+EBUILD reviewboard-1.5_beta2.ebuild 1448 RMD160 10f0516650561aeeccfd24a92d0c60376a4a2db6 SHA1 46334c9c078d1a1ce0cf47f3d7b5b04029121af8 SHA256 87c020e550604900cdfee99208f3cb698ab13fa65a36930681e54ef07db94922
+MISC ChangeLog 812 RMD160 efa3c1e22e15cc50dc03929156241e0b44304159 SHA1 ce8e508c2111f05a948b7d3d178a741e2250c1c4 SHA256 644db240f358f318873ac39a869394d06fa76dc4770667fcba6ed2265110f275
 MISC metadata.xml 229 RMD160 f0f6417bec31ce8baba6d476664f7210c8c84c98 SHA1 e5f94f5caadc6f843fc90bb7959570cd503676fd SHA256 3b08fca3c878bdfc4e7639f477dd542d55a4ab5dce39a475e82633071d13eb3f
diff --git a/dev-util/reviewboard/reviewboard-1.5_beta2.ebuild b/dev-util/reviewboard/reviewboard-1.5_beta2.ebuild
new file mode 100644 (file)
index 0000000..36b1f01
--- /dev/null
@@ -0,0 +1,49 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=2
+
+PYTHON_DEPEND="2"
+SUPPORT_PYTHON_ABIS="1"
+RESTRICT_PYTHON_ABIS="3.*"
+
+inherit distutils python versionator
+
+MY_PN=ReviewBoard
+MY_PV=$(replace_version_separator '_' '') # only needed for beta release
+MY_P=${MY_PN}-${MY_PV}
+
+DESCRIPTION="A web-based tool for tracking of pending code changes to help code reviews"
+HOMEPAGE="http://www.reviewboard.org/"
+SRC_URI="http://downloads.${PN}.org/releases/${MY_PN}/$(get_version_component_range 1-2)/${MY_P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-python/django-evolution
+       dev-python/djblets
+       dev-python/flup
+       dev-python/imaging
+       dev-python/paramiko
+       dev-python/pygments
+       dev-python/pytz
+       dev-python/recaptcha-client
+       || ( dev-python/django[sqlite] dev-python/django[mysql] dev-python/django[postgres] )
+       || ( ( www-apache/mod_python www-servers/apache ) virtual/httpd-fastcgi )"
+
+S=${WORKDIR}/${MY_P}
+
+pkg_postinst() {
+       distutils_pkg_postinst
+       elog "You must install any VCS tool you wish ${PN} to support."
+       elog "dev-util/cvs, dev-vcs/git, dev-vcs/mercurial or dev-util/subversion."
+       elog
+       elog "Enable the mysql, postgres or sqlite USEflag on dev-python/django"
+       elog "to use the corresponding database backend."
+       elog
+       elog "For speed and responsiveness, consider installing net-misc/memcached"
+       elog "and dev-python/python-memcached"
+}