diff options
author | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-07-18 14:41:21 +0000 |
---|---|---|
committer | Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> | 2010-07-18 14:41:21 +0000 |
commit | f41a736557c35e17b8328fd7f9c83ef3aae99eb5 (patch) | |
tree | 3f7a28022713d26eac72c01ce0308f7d554ef992 /www-apps/viewvc | |
parent | restrict tests because they are broken with gcc-4.4 (diff) | |
download | historical-f41a736557c35e17b8328fd7f9c83ef3aae99eb5.tar.gz historical-f41a736557c35e17b8328fd7f9c83ef3aae99eb5.tar.bz2 historical-f41a736557c35e17b8328fd7f9c83ef3aae99eb5.zip |
Delete older ebuild.
Diffstat (limited to 'www-apps/viewvc')
-rw-r--r-- | www-apps/viewvc/Manifest | 2 | ||||
-rw-r--r-- | www-apps/viewvc/viewvc-1.1.5.ebuild | 110 |
2 files changed, 0 insertions, 112 deletions
diff --git a/www-apps/viewvc/Manifest b/www-apps/viewvc/Manifest index a386b481f4d7..21e905475fa9 100644 --- a/www-apps/viewvc/Manifest +++ b/www-apps/viewvc/Manifest @@ -1,6 +1,4 @@ -DIST viewvc-1.1.5.tar.gz 593630 RMD160 2b83c28f369d4689cbf6a8e49d803c12ce428d2c SHA1 988d7b9e13af194696db9cba5446510367720b91 SHA256 32ce717330fc780e9c2341cca800079078e9935581d4dfd526e4a15fc1d94919 DIST viewvc-1.1.6.tar.gz 595029 RMD160 791c0f6220fb4c3c34fc309f3130967508be4189 SHA1 1aaae735bca316833d041473236baf680b39d864 SHA256 857a2685740ba2793753cccd1ce96ddeb7249692c0d0843d0f59e32423fbfd0c -EBUILD viewvc-1.1.5.ebuild 2557 RMD160 1d4ebf4acccf7605af6a5728097f18d8e75ceb4d SHA1 ded37460f39865fde355c9aae5ee8b3e79b52050 SHA256 4861bd6a659c921cbfe32307139e6086406e8cd47402455ee19b909e82aded7a EBUILD viewvc-1.1.6.ebuild 2671 RMD160 fac4990872aed76846161eb8d9aaa2f025b9149b SHA1 446d51ef4f44de0a0bbf3ab1062c8aaebbe44801 SHA256 2e8b277773fbc348f66de1c20695798e2c373911fe393375a4191c8e76853d50 MISC ChangeLog 7928 RMD160 42f963b13d7499bac55f145d99c2f4d444623a2e SHA1 a235c94edbb59c2b133a159cd8835ce8c5166e6a SHA256 8ae2a0e77d254a18e135183553c0b613a55a9e6e14a674676f188221269dd819 MISC metadata.xml 548 RMD160 ee15901cda630ea71795e4309b5bb1572758ae5d SHA1 8c80d2999238cc039d7fc3804fdb77dbdc3a56a9 SHA256 6a19b8afa2e811ee5e525127ef3a562e7085167e43df792ba171772516b44540 diff --git a/www-apps/viewvc/viewvc-1.1.5.ebuild b/www-apps/viewvc/viewvc-1.1.5.ebuild deleted file mode 100644 index db1aadfc4924..000000000000 --- a/www-apps/viewvc/viewvc-1.1.5.ebuild +++ /dev/null @@ -1,110 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/viewvc/viewvc-1.1.5.ebuild,v 1.7 2010/06/22 18:55:52 arfrever Exp $ - -EAPI="3" -SUPPORT_PYTHON_ABIS="1" - -inherit confutils eutils python webapp - -WEBAPP_MANUAL_SLOT="yes" - -DESCRIPTION="ViewVC, a web interface to CVS and Subversion" -HOMEPAGE="http://viewvc.org/" -SRC_URI="http://viewvc.tigris.org/files/documents/3330/47458/${P}.tar.gz" - -LICENSE="BSD-2" -KEYWORDS="amd64 ppc sparc x86" -IUSE="cvs cvsgraph mod_python mysql pygments +subversion" -SLOT="0" - -DEPEND="" -RDEPEND=" - cvs? ( - >=dev-lang/python-1.5.2 - dev-vcs/rcs - ) - - subversion? ( - >=dev-lang/python-2.0 - >=dev-vcs/subversion-1.3.1[python] - ) - - mod_python? ( www-apache/mod_python ) - !mod_python? ( virtual/httpd-cgi ) - - cvsgraph? ( >=dev-vcs/cvsgraph-1.5.0 ) - mysql? ( >=dev-python/mysql-python-0.9.0 ) - pygments? ( dev-python/pygments ) -" -RESTRICT_PYTHON_ABIS="3.*" - -pkg_setup() { - webapp_pkg_setup - - confutils_require_any cvs subversion -} - -src_prepare() { - find bin/ -type f -print0 | xargs -0 sed -i \ - -e "s|\(^LIBRARY_DIR\)\(.*\$\)|\1 = \"$(python_get_sitedir -f)/${PN}\"|g" \ - -e "s|\(^CONF_PATHNAME\)\(.*\$\)|\1 = \"../conf/viewvc.conf\"|g" - - sed -i -e "s|\(self\.options\.template_dir\)\(.*\$\)|\1 = \"${MY_APPDIR}/templates\"|" \ - lib/config.py - - sed -i -e "s|^template_dir.*|#&|" conf/viewvc.conf.dist - mv conf/viewvc.conf{.dist,} - mv conf/cvsgraph.conf{.dist,} - mv conf/mimetypes.conf{.dist,} -} - -src_install() { - webapp_src_preinst - - dodoc CHANGES COMMITTERS INSTALL README - - installation() { - insinto "$(python_get_sitedir)/${PN}" - doins -r lib/* - } - python_execute_function installation - - insinto "${MY_APPDIR}" - doins -r templates/ - doins -r templates-contrib/ - - if use mysql; then - exeinto "${MY_HOSTROOTDIR}"/bin - doexe bin/{*dbadmin,make-database,loginfo-handler} - fi - - insinto "${MY_HOSTROOTDIR}"/conf - doins conf/{viewvc,cvsgraph,mimetypes}.conf - - if use mod_python; then - insinto "${MY_HTDOCSDIR}" - doins bin/mod_python/viewvc.py - doins bin/mod_python/handler.py - doins bin/mod_python/.htaccess - use mysql && doins bin/mod_python/query.py - else - exeinto "${MY_CGIBINDIR}" - doexe bin/cgi/viewvc.cgi - use mysql && doexe bin/cgi/query.cgi - fi - - webapp_configfile "${MY_HOSTROOTDIR}"/conf/{viewvc,cvsgraph}.conf - - webapp_src_install -} - -pkg_postinst() { - webapp_pkg_postinst - python_mod_optimize viewvc - elog "Now read INSTALL in /usr/share/doc/${PF} to configure ${PN}" -} - -pkg_postrm() { - python_mod_cleanup viewvc -} |