diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-04-14 20:28:12 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-04-14 20:28:12 +0000 |
commit | 8b1cd48e61084ebdd85e20fb715c9767f085e21f (patch) | |
tree | c52254c73a6824f073239b52a17ada45b8071474 /www-apps/viewvc | |
parent | Remove old. (diff) | |
download | gentoo-2-8b1cd48e61084ebdd85e20fb715c9767f085e21f.tar.gz gentoo-2-8b1cd48e61084ebdd85e20fb715c9767f085e21f.tar.bz2 gentoo-2-8b1cd48e61084ebdd85e20fb715c9767f085e21f.zip |
Remove old.
(Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'www-apps/viewvc')
-rw-r--r-- | www-apps/viewvc/ChangeLog | 7 | ||||
-rw-r--r-- | www-apps/viewvc/viewvc-1.1.17.ebuild | 107 |
2 files changed, 5 insertions, 109 deletions
diff --git a/www-apps/viewvc/ChangeLog b/www-apps/viewvc/ChangeLog index db317300bc21..c9a86b272a5d 100644 --- a/www-apps/viewvc/ChangeLog +++ b/www-apps/viewvc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for www-apps/viewvc -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/viewvc/ChangeLog,v 1.93 2014/03/03 23:52:58 pacho Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-apps/viewvc/ChangeLog,v 1.94 2015/04/14 20:28:12 mrueg Exp $ + + 14 Apr 2015; Manuel Rüger <mrueg@gentoo.org> -viewvc-1.1.17.ebuild: + Remove old. 03 Mar 2014; Pacho Ramos <pacho@gentoo.org> viewvc-1.1.20.ebuild: amd64 stable, bug #495972 diff --git a/www-apps/viewvc/viewvc-1.1.17.ebuild b/www-apps/viewvc/viewvc-1.1.17.ebuild deleted file mode 100644 index d69009a7d1c4..000000000000 --- a/www-apps/viewvc/viewvc-1.1.17.ebuild +++ /dev/null @@ -1,107 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/viewvc/viewvc-1.1.17.ebuild,v 1.4 2012/12/25 14:33:47 pacho Exp $ - -EAPI="3" -PYTHON_DEPEND="2" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="3.* *-jython" - -inherit confutils eutils python webapp - -WEBAPP_MANUAL_SLOT="yes" - -DESCRIPTION="ViewVC, a web interface to CVS and Subversion" -HOMEPAGE="http://viewvc.org/" -DOWNLOAD_NUMBER="49243" -SRC_URI="http://viewvc.tigris.org/files/documents/3330/${DOWNLOAD_NUMBER}/${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="amd64 ~ppc x86" -IUSE="cvs cvsgraph mod_wsgi mysql pygments +subversion" - -DEPEND="" -RDEPEND=" - cvs? ( dev-vcs/rcs ) - subversion? ( >=dev-vcs/subversion-1.3.1[python] ) - - mod_wsgi? ( www-apache/mod_wsgi ) - !mod_wsgi? ( virtual/httpd-cgi ) - - cvsgraph? ( >=dev-vcs/cvsgraph-1.5.0 ) - mysql? ( >=dev-python/mysql-python-0.9.0 ) - pygments? ( - dev-python/pygments - app-misc/mime-types - ) -" - -pkg_setup() { - python_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 - sed -i -e "s|^#mime_types_files =.*|mime_types_files = /etc/mime.types|" conf/viewvc.conf.dist - mv conf/viewvc.conf{.dist,} - mv conf/cvsgraph.conf{.dist,} - - python_convert_shebangs -r 2 . -} - -src_install() { - webapp_src_preinst - - newbin bin/standalone.py viewvc-standalone-server || die "newbin failed" - - dodoc CHANGES COMMITTERS INSTALL README || die "dodoc failed" - - installation() { - insinto $(python_get_sitedir)/${PN} - doins -r lib/* - } - python_execute_function installation - - insinto "${MY_APPDIR}" - doins -r templates/ || die "doins failed" - doins -r templates-contrib/ || die "doins failed" - - if use mysql; then - exeinto "${MY_HOSTROOTDIR}/bin" - doexe bin/{*dbadmin,make-database,loginfo-handler} || die "doexe failed" - fi - - insinto "${MY_HOSTROOTDIR}/conf" - doins conf/{viewvc,cvsgraph}.conf - - exeinto "${MY_CGIBINDIR}" - doexe bin/cgi/viewvc.cgi || die "doexe failed" - if use mysql; then - doexe bin/cgi/query.cgi || die "doexe failed" - fi - - webapp_configfile "${MY_HOSTROOTDIR}/conf/"{viewvc,cvsgraph}.conf - - webapp_src_install -} - -pkg_postinst() { - python_mod_optimize viewvc - webapp_pkg_postinst - elog "Now read INSTALL in /usr/share/doc/${PF} to configure ${PN}" -} - -pkg_postrm() { - python_mod_cleanup viewvc -} |