diff options
author | Renat Lumpau <rl03@gentoo.org> | 2006-01-26 21:10:33 +0000 |
---|---|---|
committer | Renat Lumpau <rl03@gentoo.org> | 2006-01-26 21:10:33 +0000 |
commit | 0823e10e08ec52e320b0ecadbabc9c5f75e62a76 (patch) | |
tree | 79eb1bc822e32d77a837ba3d98e91dbfb6a44d41 /www-apps/rt/files | |
parent | Remove old ebuilds, fix modular X depends (diff) | |
download | gentoo-2-0823e10e08ec52e320b0ecadbabc9c5f75e62a76.tar.gz gentoo-2-0823e10e08ec52e320b0ecadbabc9c5f75e62a76.tar.bz2 gentoo-2-0823e10e08ec52e320b0ecadbabc9c5f75e62a76.zip |
Cleanup in FILESDIR
(Portage version: 2.1_pre3-r1)
Diffstat (limited to 'www-apps/rt/files')
-rw-r--r-- | www-apps/rt/files/3.4.2/Callback.patch | 38 | ||||
-rw-r--r-- | www-apps/rt/files/3.4.2/reconfig | 38 | ||||
-rw-r--r-- | www-apps/rt/files/3.4.5/postinstall-en.txt (renamed from www-apps/rt/files/3.4.2/postinstall-en.txt) | 0 | ||||
-rw-r--r-- | www-apps/rt/files/3.4.5/reconfig (renamed from www-apps/rt/files/3.4.4/reconfig) | 0 | ||||
-rw-r--r-- | www-apps/rt/files/config.layout-gentoo (renamed from www-apps/rt/files/3.4.2/config.layout-gentoo) | 0 | ||||
-rw-r--r-- | www-apps/rt/files/digest-rt-3.4.3 | 1 | ||||
-rw-r--r-- | www-apps/rt/files/digest-rt-3.4.4 | 1 | ||||
-rw-r--r-- | www-apps/rt/files/rt.conf.d (renamed from www-apps/rt/files/3.4.2/rt.conf.d) | 6 | ||||
-rw-r--r--[-rwxr-xr-x] | www-apps/rt/files/rt.init.d (renamed from www-apps/rt/files/3.4.2/rt.init.d) | 4 | ||||
-rw-r--r-- | www-apps/rt/files/rt_apache.conf (renamed from www-apps/rt/files/3.4.2/rt_apache.conf) | 0 | ||||
-rw-r--r-- | www-apps/rt/files/rt_apache1_fcgi.conf (renamed from www-apps/rt/files/3.4.2/rt_apache1_fcgi.conf) | 0 | ||||
-rw-r--r-- | www-apps/rt/files/rt_apache2.conf (renamed from www-apps/rt/files/3.4.2/rt_apache2.conf) | 0 | ||||
-rw-r--r-- | www-apps/rt/files/rt_apache2_fcgi.conf (renamed from www-apps/rt/files/3.4.2/rt_apache2_fcgi.conf) | 0 |
13 files changed, 5 insertions, 83 deletions
diff --git a/www-apps/rt/files/3.4.2/Callback.patch b/www-apps/rt/files/3.4.2/Callback.patch deleted file mode 100644 index e3850e21cfb4..000000000000 --- a/www-apps/rt/files/3.4.2/Callback.patch +++ /dev/null @@ -1,38 +0,0 @@ -diff -upr rt-3.4.3/html/Elements/Callback rt-3.4.3_fixed/html/Elements/Callback ---- rt-3.4.3/html/Elements/Callback 2005-02-01 09:20:40.000000000 -0500 -+++ rt-3.4.3_fixed/html/Elements/Callback 2005-10-24 10:13:58.000000000 -0400 -@@ -53,14 +53,27 @@ my $CacheKey = "Callback--$Page--$_Callb - my $callbacks = $cache{$CacheKey} || $m->notes($CacheKey); - - if (!$callbacks) { -- my $path = "/Callbacks/*$Page/$_CallbackName"; -- -- $callbacks = [ -- # Skip backup files, and files without a leading package name -- grep { !/^\.|~$/ and $_ ne "/Callbacks/$Page/$_CallbackName" } -- $m->interp->resolver->glob_path($path) -- ]; -+ my $path = "/Callbacks/*$Page/$_CallbackName"; - -+ # Due to API changes after Mason 1.28, we have to check for which -+ # version we're running when getting the component roots -+ my @roots = map { $_->[1] } -+ $HTML::Mason::VERSION <= 1.28 -+ ? $m->interp->resolver->comp_root_array -+ : $m->interp->comp_root_array; -+ -+ my %seen; -+ -+ for my $root (@roots) { -+ push @$callbacks, -+ # Skip backup files, files without a leading package name, -+ # and files we've already seen -+ grep { !/^\.|~$/ -+ and $_ ne "/Callbacks/$Page/$_CallbackName" -+ and not $seen{$_}++ } -+ $m->interp->resolver->glob_path($path, $root); -+ } -+ - $m->notes($CacheKey => $callbacks); - $cache{$Page,$_CallbackName} = $callbacks if !$RT::DevelMode; - } diff --git a/www-apps/rt/files/3.4.2/reconfig b/www-apps/rt/files/3.4.2/reconfig deleted file mode 100644 index 4f69cd0998d4..000000000000 --- a/www-apps/rt/files/3.4.2/reconfig +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash -PF=${PN}-${PVR} - -die() { - echo "#####" - echo $1 - echo "#####" - exit 1 -} - -if [ $1 = "install" ]; then - # fix location - cd ${VHOST_ROOT}/${PF} - sed -e "s|${MY_HOSTROOTDIR}/${PF}|${VHOST_ROOT}/${PF}|g - s|${MY_HTDOCSDIR}|${MY_INSTALLDIR}|g" -i bin/* lib/RT.pm sbin/* etc/RT_Config.pm || die - - # don't fix Apache configs - breaks sandbox - # sed -e "s|RT_DIR|${VHOST_ROOT}/${PF}|g - # s|HTDOCS|${MY_INSTALLDIR}|g" -i ${MY_SERVERCONFIGDIR}/apache* || die - - # check for upgrades - cd ${VHOST_ROOT}/${PF}/upgrade - echo "You may need to update your database." - echo "For each item in the output below" - echo "whose name is greater than your previously installed RT version," - echo "rt-setup-database --action schema --datadir ${VHOST_ROOT}/${PF}/upgrade/<version>" - echo "rt-setup-database --action acl --datadir ${VHOST_ROOT}/${PF}/upgrade/<version>" - echo "rt-setup-database --action insert --datadir ${VHOST_ROOT}/${PF}/upgrade/<version>" - echo "Don't forget to read the online installation guide for more details" - ls - -elif [ $1 = "clean" ]; then - echo "Please examine the contents of the following directories" - echo "and delete anything that is no longer necessary" - echo - echo ${VHOST_ROOT}/${PF} - echo ${MY_INSTALLDIR} -fi diff --git a/www-apps/rt/files/3.4.2/postinstall-en.txt b/www-apps/rt/files/3.4.5/postinstall-en.txt index c77c0a11e922..c77c0a11e922 100644 --- a/www-apps/rt/files/3.4.2/postinstall-en.txt +++ b/www-apps/rt/files/3.4.5/postinstall-en.txt diff --git a/www-apps/rt/files/3.4.4/reconfig b/www-apps/rt/files/3.4.5/reconfig index 6830548da6e8..6830548da6e8 100644 --- a/www-apps/rt/files/3.4.4/reconfig +++ b/www-apps/rt/files/3.4.5/reconfig diff --git a/www-apps/rt/files/3.4.2/config.layout-gentoo b/www-apps/rt/files/config.layout-gentoo index d612b24d1cc7..d612b24d1cc7 100644 --- a/www-apps/rt/files/3.4.2/config.layout-gentoo +++ b/www-apps/rt/files/config.layout-gentoo diff --git a/www-apps/rt/files/digest-rt-3.4.3 b/www-apps/rt/files/digest-rt-3.4.3 deleted file mode 100644 index a713d483d3de..000000000000 --- a/www-apps/rt/files/digest-rt-3.4.3 +++ /dev/null @@ -1 +0,0 @@ -MD5 98650a74975bafb8ba952b1cc0a4e42b rt-3.4.3.tar.gz 1400633 diff --git a/www-apps/rt/files/digest-rt-3.4.4 b/www-apps/rt/files/digest-rt-3.4.4 deleted file mode 100644 index dbea74493d34..000000000000 --- a/www-apps/rt/files/digest-rt-3.4.4 +++ /dev/null @@ -1 +0,0 @@ -MD5 769d77eea39006be643cbd2db4820ba3 rt-3.4.4.tar.gz 1393950 diff --git a/www-apps/rt/files/3.4.2/rt.conf.d b/www-apps/rt/files/rt.conf.d index e43336fa8ecf..5fa292d2aefb 100644 --- a/www-apps/rt/files/3.4.2/rt.conf.d +++ b/www-apps/rt/files/rt.conf.d @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/rt/files/3.4.2/rt.conf.d,v 1.1 2005/06/21 02:12:38 rl03 Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/rt/files/rt.conf.d,v 1.1 2006/01/26 21:10:33 rl03 Exp $ # Config file for /etc/init.d/rt @@ -8,7 +8,7 @@ RTUSER=rt RTGROUP=lighttpd # set RTPATH to rt's root -RTPATH=/var/www/localhost/rt-3.4.2 +RTPATH=/var/www/localhost/rt-3.4.5 FCGI_SOCKET_PATH=${RTPATH}/var/appSocket PIDFILE=${RTPATH}/var/pid diff --git a/www-apps/rt/files/3.4.2/rt.init.d b/www-apps/rt/files/rt.init.d index 79fafd826bf1..eeaf79e4b4b7 100755..100644 --- a/www-apps/rt/files/3.4.2/rt.init.d +++ b/www-apps/rt/files/rt.init.d @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-apps/rt/files/3.4.2/rt.init.d,v 1.2 2005/06/21 11:09:49 rl03 Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-apps/rt/files/rt.init.d,v 1.1 2006/01/26 21:10:33 rl03 Exp $ depend() { use mysql postgresql lighttpd diff --git a/www-apps/rt/files/3.4.2/rt_apache.conf b/www-apps/rt/files/rt_apache.conf index 896f642c55af..896f642c55af 100644 --- a/www-apps/rt/files/3.4.2/rt_apache.conf +++ b/www-apps/rt/files/rt_apache.conf diff --git a/www-apps/rt/files/3.4.2/rt_apache1_fcgi.conf b/www-apps/rt/files/rt_apache1_fcgi.conf index 0bff8a0556f9..0bff8a0556f9 100644 --- a/www-apps/rt/files/3.4.2/rt_apache1_fcgi.conf +++ b/www-apps/rt/files/rt_apache1_fcgi.conf diff --git a/www-apps/rt/files/3.4.2/rt_apache2.conf b/www-apps/rt/files/rt_apache2.conf index 896f642c55af..896f642c55af 100644 --- a/www-apps/rt/files/3.4.2/rt_apache2.conf +++ b/www-apps/rt/files/rt_apache2.conf diff --git a/www-apps/rt/files/3.4.2/rt_apache2_fcgi.conf b/www-apps/rt/files/rt_apache2_fcgi.conf index aa6ccdc9a04e..aa6ccdc9a04e 100644 --- a/www-apps/rt/files/3.4.2/rt_apache2_fcgi.conf +++ b/www-apps/rt/files/rt_apache2_fcgi.conf |