[DRE-commits] r2941 - in packages-wip/redmine/trunk: . debian

rnhurt-guest at alioth.debian.org rnhurt-guest at alioth.debian.org
Mon Aug 11 19:11:36 UTC 2008


Author: rnhurt-guest
Date: 2008-08-11 19:11:35 +0000 (Mon, 11 Aug 2008)
New Revision: 2941

Added:
   packages-wip/redmine/trunk/debian/
   packages-wip/redmine/trunk/debian/README.Debian
   packages-wip/redmine/trunk/debian/apache2.conf
   packages-wip/redmine/trunk/debian/changelog
   packages-wip/redmine/trunk/debian/compat
   packages-wip/redmine/trunk/debian/control
   packages-wip/redmine/trunk/debian/control.good
   packages-wip/redmine/trunk/debian/copyright
   packages-wip/redmine/trunk/debian/copyright.full
   packages-wip/redmine/trunk/debian/redmine.dirs
   packages-wip/redmine/trunk/debian/redmine.install
   packages-wip/redmine/trunk/debian/redmine.links
   packages-wip/redmine/trunk/debian/redmine.lintian-overrides
   packages-wip/redmine/trunk/debian/rules
   packages-wip/redmine/trunk/debian/watch
Log:
[svn-inject] Applying Debian modifications to trunk


Property changes on: packages-wip/redmine/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: packages-wip/redmine/trunk/debian/README.Debian
===================================================================
--- packages-wip/redmine/trunk/debian/README.Debian	                        (rev 0)
+++ packages-wip/redmine/trunk/debian/README.Debian	2008-08-11 19:11:35 UTC (rev 2941)
@@ -0,0 +1,90 @@
+Redmine for Debian
+-------------------
+
+Introduction
+============
+Welcome to the Redmine project management package.  It is our goal to make
+installing and maintaining this package as easy as possible.  Since this is one
+of the very first Debian Ruby-on-Rails packages there are going to be some rough
+spots along the way.  Please read this document carefully as it contains
+valuable information for getting Redmine working on your system.
+
+
+Repackaging
+===========
+In order to successfully package Redmine for Debian some compromises had to be 
+made.  First off, it was deemed necessary to re-package the original tar.gz file in
+order to proceed with packaging.  The problem is that the current version of
+Redmine (0.7.3) is not compatible with Rails 2.1.x and Ruby 1.8.7 is not
+compatible with Rails 2.0.2.  Since I wanted to build the smallest package
+possible and fully depend on Debian packages for everything I could, I didn't
+want to package Rails 2.0.2 in the Redmine package.
+
+This is just a stop-gap measure until the upstream catches up.  Once upstream
+ships a Rails 2.1.x release the repackage will be removed and this package will
+go back to using the pristine source.
+
+
+Requirements
+============
+ - Ruby 1.8.x.  Tested with Ruby 1.8.7.22-2
+ - Rails 2.1.x.  Redmine 0.7.4 and later support Rails 2.1.x
+ - A CGI enabled web server.  Redmine has been tested with both Apache2 and Lighttpd.
+   An Apache2 sample config file is located at /etc/redmine/apache2.conf
+ - A SQL database.  MySQL, PostgreSQL, & SQLite3 are all supported.  You will
+   also need the Ruby drivers for your database.
+ - A FastCGI processor (i.e. libfcgi-ruby1.8) is recommended.
+
+
+Installation & Setup
+====================
+1) Copy /etc/redmine/apache2.conf to your Apache2 sites-available directory and
+edit it for your environment.  Enable the site (a2ensite) and restart Apache.
+You might also have to enable the Rewrite mod for Apache if you don't already
+have it enabled.
+
+2) Go to /var/lib/redmine/config/ and rename database.yml.example to
+database.yml and edit it for your environment.
+
+3) Go to /usr/share/redmine/public and rename one of the dispatch.*.example
+files to dispatch.*.  For example if you are using libfcgi-ruby1.8 then you
+would rename dispatch.fcgi.example to dispatch.fcgi.
+
+4) Follow steps 2-5 on the Redmine web site to build the database and
+insert default data.  http://www.redmine.org/wiki/redmine/RedmineInstall#3
+
+5) Point your browser to http://localhost (or whatever your IP address is).  You
+should now see the application web page.  The default administrator information
+is:
+  * login: admin
+  * password: admin
+
+
+Problems
+========
+This package has not been extensively tested with Redmine add-ons and is not
+known to work with them.  
+
+
+Future
+======
+
+- Passenger: With Ruby & RoR just getting started on Debian there are still a
+  lot of open questions about the best way to build and package applications.  I
+  think that Phusion Passenger will go a long way toward simplifying the whole
+  thing.  As Passenger becomes more stable we will look more closely at using it
+  for this and other packages.
+
+- Automatic Database & Web Server Setup: One thing I would like to see is the
+  automatic configuration of database servers and/or web servers.  Debian has
+  procedures in place to do both of these things, we just need to make it work
+  with RoR apps.
+
+- Migration: One of the strengths of RoR is the ability to migrate forwards &
+  backwards automatically.  Via the Rake command, database changes are easy and
+  automatic.  However, this capability is not yet in Debian and is therefor hard
+  to leverage in your RoR application.  Forward migrations, at least, is a must
+  for ongoing Debian package management.  These features will lower the barrier
+  to entry for users and allow the APT system to operate to its fullest
+  capability.
+

Added: packages-wip/redmine/trunk/debian/apache2.conf
===================================================================
--- packages-wip/redmine/trunk/debian/apache2.conf	                        (rev 0)
+++ packages-wip/redmine/trunk/debian/apache2.conf	2008-08-11 19:11:35 UTC (rev 2941)
@@ -0,0 +1,19 @@
+<VirtualHost *:80>
+
+        DocumentRoot /usr/share/redmine/public
+
+        Alias /redmine /usr/share/redmine/public
+
+        <Directory /usr/share/redmine/public>
+          Options FollowSymLinks
+          AllowOverride Limit Options FileInfo
+        </Directory>
+
+</VirtualHost>
+
+# some people prefer a simple URL like http://redmine.example.com
+#<VirtualHost 1.2.3.4>
+#  DocumentRoot /usr/share/redmine
+#  ServerName redmine.example.com
+#</VirtualHost>
+

Added: packages-wip/redmine/trunk/debian/changelog
===================================================================
--- packages-wip/redmine/trunk/debian/changelog	                        (rev 0)
+++ packages-wip/redmine/trunk/debian/changelog	2008-08-11 19:11:35 UTC (rev 2941)
@@ -0,0 +1,6 @@
+redmine (0.7.4~1-1) unstable; urgency=low
+
+  * Initial release (Closes: #478741)  
+
+ -- Richard Hurt <rnhurt at kangaroobox.com>  Mon, 21 Jul 2008 08:48:41 -0400
+

Added: packages-wip/redmine/trunk/debian/compat
===================================================================
--- packages-wip/redmine/trunk/debian/compat	                        (rev 0)
+++ packages-wip/redmine/trunk/debian/compat	2008-08-11 19:11:35 UTC (rev 2941)
@@ -0,0 +1 @@
+7

Added: packages-wip/redmine/trunk/debian/control
===================================================================
--- packages-wip/redmine/trunk/debian/control	                        (rev 0)
+++ packages-wip/redmine/trunk/debian/control	2008-08-11 19:11:35 UTC (rev 2941)
@@ -0,0 +1,35 @@
+Source: redmine
+Section: web
+Priority: optional
+Maintainer: Richard Hurt <rnhurt at kangaroobox.com>
+Build-Depends: debhelper (>= 7)
+Standards-Version: 3.8.0
+Vcs-Svn: svn://rubyforge.org/var/svn/redmine/trunk redmine
+Vcs-Browser: http://www.redmine.org/repositories/show/redmine
+Homepage: http://www.redmine.org
+
+Package: redmine
+Architecture: all
+Depends: ruby, rails, libjs-prototype (> 1.6), httpd-cgi, libdbd-pg-ruby | libdbd-mysql-ruby
+Recommends: libfcgi-ruby, libapache2-mod-fcgid, postgresql (>= 8) | mysql-server (>= 4) | sqlite (>= 3)
+Suggests: libsvn-ruby (>= 1.3) , librmagick-ruby
+Description: flexible project management web application
+ Redmine is a flexible project management web application. Written using Ruby
+ on Rails framework, it is cross-platform and cross-database.
+ .
+ Features
+    * Multiple projects support
+    * Flexible role based access control.
+    * Flexible issue tracking system
+    * Gantt chart and calendar
+    * News, documents & files management
+    * Feeds & email notifications.
+    * Per project wiki
+    * Per project forums
+    * Simple time tracking functionality
+    * Custom fields for issues, projects and users
+    * SCM integration (SVN, CVS, Mercurial, Bazaar and Darcs)
+    * Multiple LDAP authentication support
+    * User self-registration support
+    * Multilanguage support
+    * Multiple databases support

Added: packages-wip/redmine/trunk/debian/control.good
===================================================================
--- packages-wip/redmine/trunk/debian/control.good	                        (rev 0)
+++ packages-wip/redmine/trunk/debian/control.good	2008-08-11 19:11:35 UTC (rev 2941)
@@ -0,0 +1,35 @@
+Source: redmine
+Section: web
+Priority: optional
+Maintainer: Richard Hurt <rnhurt at kangaroobox.com>
+Build-Depends: debhelper (>= 7), cdbs
+Standards-Version: 3.8.0
+Vcs-Svn: svn://rubyforge.org/var/svn/redmine/trunk redmine
+Vcs-Browser: http://www.redmine.org/repositories/show/redmine
+Homepage: http://www.redmine.org
+
+Package: redmine
+Architecture: all
+Depends: ruby, rails (=2.0.2-2), libjs-prototype (= 1.6.0.2-4), httpd-cgi, libdbd-pg-ruby | libdbd-mysql-ruby
+Recommends: libfcgi-ruby, libapache2-mod-fcgid, postgresql (>= 8) | mysql-server (>= 4) | sqlite (>= 3)
+Suggests: libsvn-ruby (>= 1.3) , librmagick-ruby
+Description: flexible project management web application
+ Redmine is a flexible project management web application. Written using Ruby
+ on Rails framework, it is cross-platform and cross-database.
+ .
+ Features
+    * Multiple projects support
+    * Flexible role based access control.
+    * Flexible issue tracking system
+    * Gantt chart and calendar
+    * News, documents & files management
+    * Feeds & email notifications.
+    * Per project wiki
+    * Per project forums
+    * Simple time tracking functionality
+    * Custom fields for issues, projects and users
+    * SCM integration (SVN, CVS, Mercurial, Bazaar and Darcs)
+    * Multiple LDAP authentication support
+    * User self-registration support
+    * Multilanguage support
+    * Multiple databases support

Added: packages-wip/redmine/trunk/debian/copyright
===================================================================
--- packages-wip/redmine/trunk/debian/copyright	                        (rev 0)
+++ packages-wip/redmine/trunk/debian/copyright	2008-08-11 19:11:35 UTC (rev 2941)
@@ -0,0 +1,307 @@
+Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
+Upstream-Name: redmine
+Upstream-Maintainer: Jean-Philippe Lang <jp_lang at nospam@yahoo.fr>
+Upstream-Source: http://www.redmine.org
+
+
+Files: *
+Copyright: Copyright 2006-2008 Jean-Philippe Lang <jp_lang at nospam@yahoo.fr>
+License: GPL-2
+ On Debian systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL-2'.
+
+
+Files: app/models/repository/git.rb
+Copyright: Copyright 2006-2007 Jean-Philippe Lang <jp_lang at nospam@yahoo.fr>
+ Copyright 2007 Patrick Aljord <patcito@ŋmail.com>
+License: GPL-2+
+ On Debian systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'.
+
+
+Files: vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ber.rb, vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap/dataset.rb, vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap/entry.rb, vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap/filter.rb, vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap/pdu.rb, vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap/psw.rb, vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldif.rb 
+Copyright: Copyright 2006 by Francis Cianfrocca
+License: GPL-2+
+ On Debian systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'.
+
+
+Files: extra/svn/reposman.pl
+Copyright: none
+License: GPL-2+
+ On Debian systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'.
+
+
+Files: vendor/rails/actionmailer/lib/action_mailer/vendor/text-format-0.6.3/text/format.rb
+Copyright: Copyright 2002-2003 Austin Ziegler
+License: GPL-2+
+ On Debian systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'.
+
+
+Files: vendor/plugins/coderay-0.7.6.227/lib/coderay/helpers/file_type.rb, vendor/plugins/coderay-0.7.6.227/lib/coderay/helpers/word_list.rb
+Copyright: Copyright 2006 murphy (Kornelius Kalnbach) <murphy rubychan de>
+License: LGPL
+ On Debian systems, the complete text of the GNU Lesser General
+ Public License can be found in `/usr/share/common-licenses/LGPL'.
+
+
+Files: vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap.rb
+Copyright: Copyright 2006 by Francis Cianfrocca
+License: GPL
+ On Debian systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'.
+
+
+Files: lib/SVG/Graph/BarBase.rb, lib/SVG/Graph/BarHorizontal.rb lib/SVG/Graph/Graph.rb lib/SVG/Graph/Pie.rb 
+Copyright: Copyright 2004 Sean E. Russell <serATgermaneHYPHENsoftwareDOTcom>
+License: GPL
+ On Debian systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'.
+
+
+Files: vendor/rails/activesupport/lib/active_support/vendor/xml-simple-1.0.11/xmlsimple.rb
+Copyright: Copyright 2003-2006 Maik Schmidt <contact at maik-schmidt.de>
+License: GPL
+ On Debian systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'.
+
+
+Files: lib/redcloth.rb
+Copyright: Copyright 2004 why the lucky stiff (and his puppet organizations.)
+License: BSD
+ On Debian systems, the complete text of the BSD license
+ can be found in `/usr/share/common-licenses/BSD'.
+
+
+Files: vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/info.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/address.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/base64.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/config.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/encode.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/facade.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/header.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/interface.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/mailbox.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/mail.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/net.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/obsolete.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/port.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/scanner.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/scanner_r.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/stringio.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/utils.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/version.rb, vendor/plugins/actionwebservice/setup.rb
+Copyright: Copyright 1998-2003 Minero Aoki <aamine at loveruby.net> 
+License: MIT 
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+
+
+Files: vendor/rails/actionmailer/lib/action_mailer.rb, vendor/rails/actionpack/lib/action_controller.rb, vendor/rails/actionpack/lib/action_pack.rb, vendor/rails/actionpack/lib/action_view.rb, vendor/rails/activerecord/lib/active_record.rb, vendor/rails/railties/lib/dispatcher.rb, vendor/plugins/classic_pagination/init.rb, vendor/rails/activesupport/lib/active_support.rb, vendor/rails/activeresource/lib/active_resource.rb
+Copyright: Copyright 2004-2007 David Heinemeier Hansson 
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+
+
+Files: vendor/rails/railties/lib/rails_generator.rb
+Copyright: Copyright 2004 Jeremy Kemper 
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+
+
+Files: vendor/plugins/acts_as_versioned/lib/acts_as_versioned.rb
+Copyright: Copyright 2005 Rick Olson 
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+
+
+Files: vendor/plugins/actionwebservice/lib/action_web_service.rb
+Copyright: Copyright 2005 Leon Breedt
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+
+
+Files: vendor/rails/activerecord/lib/active_record/locking/pessimistic.rb
+Copyright: Copyright 2006 Shugo Maeda <shugo at ruby-lang.org>
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+
+
+Files: vendor/plugins/rfpdf/lib/rfpdf/chinese.rb, vendor/plugins/rfpdf/lib/rfpdf/japanese.rb, vendor/plugins/rfpdf/lib/rfpdf/korean.rb, vendor/plugins/rfpdf/lib/rfpdf.rb, vendor/plugins/rfpdf/lib/rfpdf/view.rb 
+Copyright: Copyright 2006 4ssoM LLC <www.4ssoM.com>
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+
+
+Files: vendor/rails/railties/lib/commands/plugin.rb
+Copyright: Copyright 2005 Ryan Tomayko <rtomayko at gmail.com>
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+
+
+Files: vendor/rails/actionpack/lib/action_controller/assertions/selector_assertions.rb, vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/selector.rb, vendor/rails/actionpack/test/controller/assert_select_test.rb, vendor/rails/actionpack/test/controller/selector_test.rb 
+Copyright: Copyright 2006 Assaf Arkin (http://labnotes.org)
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+
+
+Files: vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/css.rb
+Copyright: Copyright 2004-2005 Jim Weirich  <jim at weirichhouse.org>
+ Copyright 2005 by Scott Barron <scott at elitists.net>
+License: other
+ Permission is granted for use, copying, modification, distribution,
+ and distribution of modified versions of this work as long as the
+ above copyright notice is included.
+
+
+Files: vendor/rails/activerecord/lib/active_record/vendor/mysql.rb
+Copyright: Copyright 2003-2005 TOMITA Masahiro
+License: none
+
+
+Files: vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb, vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/blankslate.rb, vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb, vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder.rb, vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb
+Copyright: Copyright 2004-2005 Jim Weirich <jim at weirichhouse.org>
+License: none
+
+
+Files: vendor/plugins/gloc-1.1.0/init.rb, vendor/plugins/gloc-1.1.0/lib/gloc-config.rb, vendor/plugins/gloc-1.1.0/lib/gloc-dev.rb, vendor/plugins/gloc-1.1.0/lib/gloc-helpers.rb, vendor/plugins/gloc-1.1.0/lib/gloc-internal.rb, vendor/plugins/gloc-1.1.0/lib/gloc-rails.rb, vendor/plugins/gloc-1.1.0/lib/gloc-rails-text.rb, vendor/plugins/gloc-1.1.0/lib/gloc.rb, vendor/plugins/gloc-1.1.0/lib/gloc-ruby.rb, vendor/plugins/gloc-1.1.0/test/gloc_rails_test.rb, vendor/plugins/gloc-1.1.0/test/gloc_test.rb 
+Copyright: Copyright 2005-2006 David Barri
+License: none
+
+
+Files: vendor/plugins/rfpdf/lib/rfpdf/fpdf.rb
+Copyright: Copyright 2005 Brian Ollenberger
+License: none
+
+
+Files: lib/diff.rb
+Copyright: Copyright 2001 Lars Christensen
+License: none

Added: packages-wip/redmine/trunk/debian/copyright.full
===================================================================
--- packages-wip/redmine/trunk/debian/copyright.full	                        (rev 0)
+++ packages-wip/redmine/trunk/debian/copyright.full	2008-08-11 19:11:35 UTC (rev 2941)
@@ -0,0 +1,315 @@
+Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
+Upstream-Name: redmine
+Upstream-Maintainer: Jean-Philippe Lang <jp_lang @nospam@ yahoo.fr>
+Upstream-Source: http://www.redmine.org
+
+Files: *
+Copyright: Copyright 2006-08 Jean-Philippe Lang <jp_lang @nospam@ yahoo.fr>
+License: GPL-2
+ On Debian systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL-2'.
+
+Files: app/models/repository/git.rb
+Copyright: Copyright 2006-2007 Jean-Philippe Lang / 2007 Patrick Aljord patcito@ŋmail.com
+License: GPL-2+
+ On Debian systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'.
+
+Files:app/apis/sys_api.rb, app/controllers/account_controller.rb, app/controllers/application.rb, app/controllers/attachments_controller.rb, app/controllers/boards_controller.rb, app/controllers/documents_controller.rb, app/controllers/issue_relations_controller.rb, app/controllers/issues_controller.rb, app/controllers/messages_controller.rb, app/controllers/projects_controller.rb, app/controllers/queries_controller.rb, app/controllers/repositories_controller.rb, app/controllers/settings_controller.rb, app/controllers/sys_controller.rb, app/controllers/timelog_controller.rb, app/controllers/users_controller.rb, app/controllers/watchers_controller.rb, app/controllers/wiki_controller.rb, app/controllers/wikis_controller.rb, app/helpers/application_helper.rb, app/helpers/attachments_helper.rb, app/helpers/boards_helper.rb, app/helpers/issue_relations_helper.rb, app/helpers/messages_helper.rb, app/helpers/queries_helper.rb, app/helpers/search_helper.rb, app/helpers/settings_helper.rb, app/helpers/watchers_helper.rb, app/helpers/wiki_helper.rb, app/models/attachment.rb, app/models/board.rb, app/models/change.rb, app/models/changeset.rb, app/models/enabled_module.rb, app/models/issue.rb, app/models/issue_relation.rb, app/models/mailer.rb, app/models/mail_handler.rb, app/models/message_observer.rb, app/models/message.rb, app/models/query.rb, app/models/repository/bazaar.rb, app/models/repository/cvs.rb, app/models/repository/darcs.rb, app/models/repository/mercurial.rb, app/models/repository.rb, app/models/repository/subversion.rb, app/models/setting.rb, app/models/user.rb, app/models/watcher.rb, app/models/wiki_content.rb, app/models/wiki_page.rb, app/models/wiki.rb, app/models/wiki_redirect.rb, lib/redmine/access_control.rb, lib/redmine/default_data/loader.rb, lib/redmine/helpers/calendar.rb, lib/redmine/menu_manager.rb, lib/redmine/mime_type.rb, lib/redmine/plugin.rb, lib/redmine/scm/adapters/abstract_adapter.rb, lib/redmine/scm/adapters/bazaar_adapter.rb, lib/redmine/scm/adapters/cvs_adapter.rb, lib/redmine/scm/adapters/darcs_adapter.rb, lib/redmine/scm/adapters/git_adapter.rb, lib/redmine/scm/adapters/mercurial_adapter.rb, lib/redmine/scm/adapters/subversion_adapter.rb, lib/redmine/themes.rb, lib/redmine/wiki_formatting/macros.rb, lib/redmine/wiki_formatting.rb, lib/tabular_form_builder.rb, test/functional/account_controller_test.rb, test/functional/admin_controller_test.rb, test/functional/application_controller_test.rb, test/functional/boards_controller_test.rb, test/functional/documents_controller_test.rb, test/functional/issues_controller_test.rb, test/functional/messages_controller_test.rb, test/functional/my_controller_test.rb, test/functional/news_controller_test.rb, test/functional/projects_controller_test.rb, test/functional/repositories_controller_test.rb, test/functional/roles_controller_test.rb, test/functional/settings_controller_test.rb, test/functional/timelog_controller_test.rb, test/functional/users_controller_test.rb, test/functional/versions_controller_test.rb, test/functional/welcome_controller_test.rb, test/functional/wiki_controller_test.rb, test/functional/wikis_controller_test.rb, test/integration/account_test.rb, test/integration/projects_test.rb, test/unit/attachment_test.rb, test/unit/calendar_test.rb, test/unit/changeset_test.rb, test/unit/comment_test.rb, test/unit/custom_field_test.rb, test/unit/custom_value_test.rb, test/unit/helpers/application_helper_test.rb, test/unit/helpers/projects_helper_test.rb, test/unit/issue_category_test.rb, test/unit/issue_status_test.rb, test/unit/issue_test.rb, test/unit/journal_test.rb, test/unit/mailer_test.rb, test/unit/mail_handler_test.rb, test/unit/project_test.rb, test/unit/repository_bazaar_test.rb, test/unit/repository_cvs_test.rb, test/unit/repository_git_test.rb, test/unit/repository_mercurial_test.rb, test/unit/repository_subversion_test.rb, test/unit/repository_test.rb, test/unit/setting_test.rb, test/unit/token_test.rb, test/unit/user_preference_test.rb, test/unit/watcher_test.rb, test/unit/wiki_content_test.rb, test/unit/wiki_page_test.rb, test/unit/wiki_redirect_test.rb, test/unit/wiki_test.rb
+vendor/plugins/acts_as_event/lib/acts_as_event.rb, vendor/plugins/acts_as_searchable/lib/acts_as_searchable.rb, app/controllers/journals_controller.rb, app/helpers/journals_helper.rb, app/models/time_entry.rb, lib/ar_condition.rb, lib/redmine/access_keys.rb, test/functional/journals_controller_test.rb, test/functional/queries_controller_test.rb, test/functional/repositories_bazaar_controller_test.rb, test/functional/repositories_cvs_controller_test.rb, test/functional/repositories_darcs_controller_test.rb, test/functional/repositories_git_controller_test.rb, test/functional/repositories_mercurial_controller_test.rb, test/functional/repositories_subversion_controller_test.rb, test/integration/application_test.rb, test/unit/query_test.rb, test/unit/repository_darcs_test.rb, test/unit/role_test.rb, test/unit/time_entry_test.rb, test/unit/tracker_test.rb
+app/controllers/admin_controller.rb, app/controllers/auth_sources_controller.rb, app/controllers/custom_fields_controller.rb, app/controllers/enumerations_controller.rb, app/controllers/issue_categories_controller.rb, app/controllers/issue_statuses_controller.rb, app/controllers/members_controller.rb, app/controllers/my_controller.rb, app/controllers/news_controller.rb, app/controllers/reports_controller.rb, app/controllers/roles_controller.rb, app/controllers/search_controller.rb, app/controllers/trackers_controller.rb, app/controllers/versions_controller.rb, app/controllers/welcome_controller.rb, app/helpers/account_helper.rb, app/helpers/admin_helper.rb, app/helpers/auth_sources_helper.rb, app/helpers/custom_fields_helper.rb, app/helpers/documents_helper.rb, app/helpers/enumerations_helper.rb, app/helpers/ifpdf_helper.rb, app/helpers/issue_categories_helper.rb, app/helpers/issues_helper.rb, app/helpers/issue_statuses_helper.rb, app/helpers/members_helper.rb, app/helpers/my_helper.rb, app/helpers/news_helper.rb, app/helpers/projects_helper.rb, app/helpers/reports_helper.rb, app/helpers/repositories_helper.rb, app/helpers/roles_helper.rb, app/helpers/timelog_helper.rb, app/helpers/trackers_helper.rb, app/helpers/users_helper.rb, app/helpers/versions_helper.rb, app/helpers/welcome_helper.rb, app/models/auth_source_ldap.rb, app/models/auth_source.rb, app/models/comment.rb, app/models/custom_field.rb, app/models/custom_value.rb, app/models/document.rb, app/models/enumeration.rb, app/models/issue_category.rb, app/models/issue_custom_field.rb, app/models/issue_status.rb, app/models/journal_detail.rb, app/models/journal.rb, app/models/member.rb, app/models/news.rb, app/models/project_custom_field.rb, app/models/project.rb, app/models/role.rb, app/models/token.rb, app/models/tracker.rb, app/models/user_custom_field.rb, app/models/user_preference.rb, app/models/version.rb, app/models/workflow.rb, db/migrate/001_setup.rb, test/integration/admin_test.rb, test/test_helper.rb, test/unit/member_test.rb, test/unit/user_test.rb, lib/redmine/core_ext/string/conversions.rb
+Copyright: Copyright 2006-2008 Jean-Philippe Lang 
+License: GPL-2+ 
+ On Debian systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'.
+
+Files:vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ber.rb, vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap/dataset.rb, vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap/entry.rb, vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap/filter.rb, vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap/pdu.rb, vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap/psw.rb, vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldif.rb 
+Copyright: Copyright 2006 by Francis Cianfrocca
+License: GPL-2+
+ On Debian systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'.
+
+Files: extra/svn/reposman.pl
+Copyright: none
+License: GPL-2+
+ On Debian systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'.
+
+Files: vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/info.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/address.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/base64.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/config.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/encode.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/facade.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/header.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/interface.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/mailbox.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/mail.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/net.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/obsolete.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/port.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/scanner.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/scanner_r.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/stringio.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/utils.rb, vendor/rails/actionmailer/lib/action_mailer/vendor/tmail-1.1.0/tmail/version.rb
+Copyright: Copyright 1998-2003 Minero Aoki <aamine at loveruby.net> 
+License: MIT 
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+
+Files: vendor/rails/actionmailer/lib/action_mailer.rb, vendor/rails/actionpack/lib/action_controller.rb, vendor/rails/actionpack/lib/action_pack.rb, vendor/rails/actionpack/lib/action_view.rb, vendor/rails/activerecord/lib/active_record.rb, vendor/rails/railties/lib/dispatcher.rb, vendor/plugins/classic_pagination/init.rb, vendor/rails/activesupport/lib/active_support.rb, vendor/rails/activeresource/lib/active_resource.rb
+Copyright: Copyright 2004-2007 David Heinemeier Hansson 
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+
+Files: vendor/rails/railties/lib/rails_generator.rb
+Copyright: Copyright 2004 Jeremy Kemper 
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+
+Files: vendor/plugins/acts_as_versioned/lib/acts_as_versioned.rb
+Copyright: Copyright 2005 Rick Olson 
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+
+Files: vendor/plugins/actionwebservice/setup.rb
+Copyright: Copyright 2000-2004 Minero Aoki 
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+
+Files: vendor/plugins/actionwebservice/lib/action_web_service.rb
+Copyright: Copyright 2005 Leon Breedt
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+
+Files: vendor/rails/activerecord/lib/active_record/locking/pessimistic.rb
+Copyright: Copyright 2006 Shugo Maeda <shugo at ruby-lang.org>
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+
+Files: vendor/plugins/rfpdf/lib/rfpdf/chinese.rb, vendor/plugins/rfpdf/lib/rfpdf/japanese.rb, vendor/plugins/rfpdf/lib/rfpdf/korean.rb, vendor/plugins/rfpdf/lib/rfpdf.rb, vendor/plugins/rfpdf/lib/rfpdf/view.rb 
+Copyright: Copyright 2006 4ssoM LLC <www.4ssoM.com>
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+
+Files: vendor/rails/actionmailer/lib/action_mailer/vendor/text-format-0.6.3/text/format.rb
+Copyright: Copyright 2002-2003 Austin Ziegler
+License: GPL-2+
+ On Debian systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'.
+
+Files: vendor/rails/activerecord/lib/active_record/vendor/mysql.rb
+Copyright: Copyright 2003-2005 TOMITA Masahiro
+License: none
+
+Files: vendor/rails/activesupport/lib/active_support/vendor/xml-simple-1.0.11/xmlsimple.rb
+Copyright: Copyright 2003-2006 Maik Schmidt <contact at maik-schmidt.de>
+License: GPL
+ On Debian systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'.
+
+Files: vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlmarkup.rb, vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/blankslate.rb, vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/blankslate.rb
+Copyright: Copyright 2004, 2005 by Jim Weirich <jim at weirichhouse.org>
+License: none
+
+Files: vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder.rb, vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/xmlevents.rb
+Copyright: Copyright 2004 by Jim Weirich <jim at weirichhouse.org>
+License: none
+
+Files: lib/SVG/Graph/BarBase.rb, lib/SVG/Graph/BarHorizontal.rb lib/SVG/Graph/Graph.rb lib/SVG/Graph/Pie.rb 
+Copyright: Copyright 2004 Sean E. Russell <serATgermaneHYPHENsoftwareDOTcom>
+License: GPL
+ On Debian systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'.
+
+Files: vendor/plugins/gloc-1.1.0/init.rb, vendor/plugins/gloc-1.1.0/lib/gloc-config.rb, vendor/plugins/gloc-1.1.0/lib/gloc-dev.rb, vendor/plugins/gloc-1.1.0/lib/gloc-helpers.rb, vendor/plugins/gloc-1.1.0/lib/gloc-internal.rb, vendor/plugins/gloc-1.1.0/lib/gloc-rails.rb, vendor/plugins/gloc-1.1.0/lib/gloc-rails-text.rb, vendor/plugins/gloc-1.1.0/lib/gloc.rb, vendor/plugins/gloc-1.1.0/lib/gloc-ruby.rb, vendor/plugins/gloc-1.1.0/test/gloc_rails_test.rb, vendor/plugins/gloc-1.1.0/test/gloc_test.rb 
+Copyright: Copyright 2005-2006 David Barri
+License: none
+
+Files: vendor/plugins/rfpdf/lib/rfpdf/fpdf.rb
+Copyright: Copyright 2005 Brian Ollenberger
+License: none
+
+Files: vendor/rails/railties/lib/commands/plugin.rb
+Copyright: Copyright 2005 by Ryan Tomayko <rtomayko at gmail.com>
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+
+Files: vendor/rails/activesupport/lib/active_support/vendor/builder-2.1.2/builder/css.rb
+Copyright: Copyright 2004, 2005 by Jim Weirich  <jim at weirichhouse.org>
+ Copyright 2005 by Scott Barron <scott at elitists.net>
+License: other
+ Permission is granted for use, copying, modification, distribution,
+ and distribution of modified versions of this work as long as the
+ above copyright notice is included.
+
+Files: vendor/rails/actionpack/lib/action_controller/assertions/selector_assertions.rb, vendor/rails/actionpack/lib/action_controller/vendor/html-scanner/html/selector.rb, vendor/rails/actionpack/test/controller/assert_select_test.rb, vendor/rails/actionpack/test/controller/selector_test.rb 
+Copyright: Copyright 2006 Assaf Arkin (http://labnotes.org)
+License: MIT
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+
+
+Files: vendor/plugins/ruby-net-ldap-0.0.4/lib/net/ldap.rb
+Copyright: Copyright 2006 by Francis Cianfrocca
+License: GPL
+ On Debian systems, the complete text of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL'.
+
+Files: vendor/plugins/coderay-0.7.6.227/lib/coderay/helpers/file_type.rb, vendor/plugins/coderay-0.7.6.227/lib/coderay/helpers/word_list.rb
+Copyright: Copyright 2006 by murphy (Kornelius Kalnbach) <murphy rubychan de>
+License: LGPL
+ On Debian systems, the complete text of the GNU Lesser General
+ Public License can be found in `/usr/share/common-licenses/LGPL'.
+
+Files: lib/redcloth.rb
+Copyright: Copyright 2004 why the lucky stiff (and his puppet organizations.)
+License: BSD
+ On Debian systems, the complete text of the BSD license
+ can be found in `/usr/share/common-licenses/BSD'.
+
+Files: lib/diff.rb
+Copyright: Copyright 2001 Lars Christensen
+License: none

Added: packages-wip/redmine/trunk/debian/redmine.dirs
===================================================================
--- packages-wip/redmine/trunk/debian/redmine.dirs	                        (rev 0)
+++ packages-wip/redmine/trunk/debian/redmine.dirs	2008-08-11 19:11:35 UTC (rev 2941)
@@ -0,0 +1,6 @@
+var/log/redmine
+var/cache/redmine/
+var/lib/redmine/sessions
+var/run/redmine/sockets
+
+usr/share/redmine/tmp

Added: packages-wip/redmine/trunk/debian/redmine.install
===================================================================
--- packages-wip/redmine/trunk/debian/redmine.install	                        (rev 0)
+++ packages-wip/redmine/trunk/debian/redmine.install	2008-08-11 19:11:35 UTC (rev 2941)
@@ -0,0 +1,21 @@
+# Install the basic application files
+app usr/share/redmine
+config usr/share/redmine
+db usr/share/redmine
+doc usr/share/redmine
+extra usr/share/redmine
+files var/lib/redmine
+lang usr/share/redmine
+lib usr/share/redmine
+log var/log/redmine
+public usr/share/redmine
+Rakefile usr/share/redmine
+script usr/share/redmine
+#tmp/cache var/cache/redmine
+#tmp/sessions var/lib/redmine
+#tmp/sockets var/run/redmine
+vendor/plugins usr/share/redmine/vendor
+#vendor/rails usr/share/redmine/vendor
+
+# Install the configuration files
+debian/apache2.conf etc/redmine

Added: packages-wip/redmine/trunk/debian/redmine.links
===================================================================
--- packages-wip/redmine/trunk/debian/redmine.links	                        (rev 0)
+++ packages-wip/redmine/trunk/debian/redmine.links	2008-08-11 19:11:35 UTC (rev 2941)
@@ -0,0 +1,10 @@
+# Move r/w directories to /var
+var/cache/redmine		usr/share/redmine/tmp/cache
+var/lib/redmine/files		usr/share/redmine/files
+var/lib/redmine/sessions	usr/share/redmine/tmp/sessions
+var/log/redmine			usr/share/redmine/log
+var/run/redmine/sockets		usr/share/redmine/tmp/sockets
+
+# Link in other Debian packages
+usr/share/javascript/prototype/prototype.js	usr/share/redmine/public/javascripts/prototype.js
+usr/share/rails					usr/share/redmine/vendor/rails

Added: packages-wip/redmine/trunk/debian/redmine.lintian-overrides
===================================================================
--- packages-wip/redmine/trunk/debian/redmine.lintian-overrides	                        (rev 0)
+++ packages-wip/redmine/trunk/debian/redmine.lintian-overrides	2008-08-11 19:11:35 UTC (rev 2941)
@@ -0,0 +1,22 @@
+# This is being phased out in a future version of lintian
+debian-copyright-line-too-long
+
+# These files are not supposed to be externally executed
+redmine: script-not-executable ./usr/share/redmine/extra/svn/reposman.rb
+redmine: script-not-executable ./usr/share/redmine/extra/svn/svnserve.wrapper
+redmine: script-not-executable ./usr/share/redmine/vendor/plugins/coderay-0.7.6.227/bin/coderay
+redmine: script-not-executable ./usr/share/redmine/vendor/plugins/coderay-0.7.6.227/bin/coderay_stylesheet
+redmine: script-not-executable ./usr/share/redmine/vendor/plugins/rfpdf/lib/rfpdf/makefont.rb
+redmine: script-not-executable ./usr/share/redmine/vendor/plugins/rfpdf/test/test_helper.rb
+redmine: script-not-executable ./usr/share/redmine/extra/mail_handler/rdm-mailhandler.rb
+redmine: script-not-executable ./usr/share/redmine/script/dbconsole
+redmine: script-not-executable ./usr/share/redmine/script/performance/request
+redmine: script-not-executable ./usr/share/redmine/script/process/inspector
+
+
+# These directories hold temporary data
+redmine: package-contains-empty-directory usr/share/redmine/app/views/members/
+redmine: package-contains-empty-directory usr/share/redmine/app/sweepers/
+redmine: package-contains-empty-directory usr/share/redmine/lib/plugins/
+redmine: package-contains-empty-directory usr/share/redmine/vendor/plugins/gloc-1.1.0/lang/
+

Added: packages-wip/redmine/trunk/debian/rules
===================================================================
--- packages-wip/redmine/trunk/debian/rules	                        (rev 0)
+++ packages-wip/redmine/trunk/debian/rules	2008-08-11 19:11:35 UTC (rev 2941)
@@ -0,0 +1,93 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+clean: 
+	dh_testdir
+	dh_testroot
+	dh_clean 
+
+install: 
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+# Build architecture-independent files here.
+binary-indep: install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs 
+	dh_installdocs
+	dh_install
+
+	# Clean up the "extra" license files
+	rm -f debian/redmine/usr/share/redmine/doc/COPYING
+	rm -f debian/redmine/usr/share/redmine/lib/SVG/LICENSE.txt
+	rm -f debian/redmine/usr/share/redmine/vendor/plugins/engines/MIT-LICENSE
+	rm -f debian/redmine/usr/share/redmine/vendor/plugins/actionwebservice/MIT-LICENSE
+	rm -f debian/redmine/usr/share/redmine/vendor/plugins/acts_as_versioned/MIT-LICENSE
+	rm -f debian/redmine/usr/share/redmine/vendor/plugins/coderay-0.7.6.227/LICENSE
+	rm -f debian/redmine/usr/share/redmine/vendor/plugins/gloc-1.1.0/MIT-LICENSE
+	rm -f debian/redmine/usr/share/redmine/vendor/plugins/rfpdf/MIT-LICENSE
+	rm -f debian/redmine/usr/share/redmine/vendor/plugins/ruby-net-ldap-0.0.4/COPYING
+	rm -f debian/redmine/usr/share/redmine/vendor/plugins/ruby-net-ldap-0.0.4/LICENCE
+	#rm -f debian/redmine/usr/share/redmine/vendor/rails/actionmailer/MIT-LICENSE
+	#rm -f debian/redmine/usr/share/redmine/vendor/rails/actionpack/MIT-LICENSE
+	#rm -f debian/redmine/usr/sharm/redmine/vendor/rails/activerecord/MIT-LICENSE
+	#rm -f debian/redmine/usr/share/redmine/vendor/rails/activeresource/MIT-LICENSE
+	#rm -f debian/redmine/usr/share/redmine/vendor/rails/activesupport/MIT-LICENSE
+	#rm -f debian/redmine/usr/share/redmine/vendor/rails/railties/MIT-LICENSE
+	#rm -f debian/redmine/usr/share/redmine/vendor/rails/activerecord/MIT-LICENSE
+	#rm -f debian/redmine/usr/share/redmine/vendor/rails/railties/lib/rails_generator/generators/components/plugin/templates/MIT-LICENSE
+	# ...and other various files
+	rm -f debian/redmine/usr/share/redmine/vendor/plugins/engines/.gitignore
+
+	# Replace the built-in prototype.js with libjs-prototype
+	rm -f debian/redmine/usr/share/redmine/public/javascripts/prototype.js
+
+	# Remove old/unused files
+	rm -f debian/redmine/usr/share/redmine/extra/svn/reposman.pl
+	rm -rf debian/redmine/var/log/redmine/*
+
+	# Mark scripts as executable until upstream fixes their .tar.gz archive build
+	#chmod a+x debian/redmine/usr/share/redmine/public/dispatch.cgi.example
+	#chmod a+x debian/redmine/usr/share/redmine/public/dispatch.fcgi.example
+	#chmod a+x debian/redmine/usr/share/redmine/public/dispatch.rb.example
+	#chmod a+x debian/redmine/usr/share/redmine/script/about
+	#chmod a+x debian/redmine/usr/share/redmine/script/breakpointer
+	#chmod a+x debian/redmine/usr/share/redmine/script/console
+	#chmod a+x debian/redmine/usr/share/redmine/script/destroy
+	#chmod a+x debian/redmine/usr/share/redmine/script/generate
+	#chmod a+x debian/redmine/usr/share/redmine/script/performance/benchmarker
+	#chmod a+x debian/redmine/usr/share/redmine/script/performance/profiler
+	#chmod a+x debian/redmine/usr/share/redmine/script/plugin
+	#chmod a+x debian/redmine/usr/share/redmine/script/process/reaper
+	#chmod a+x debian/redmine/usr/share/redmine/script/process/spawner
+	#chmod a+x debian/redmine/usr/share/redmine/script/process/spinner
+	#chmod a+x debian/redmine/usr/share/redmine/script/runner
+	#chmod a+x debian/redmine/usr/share/redmine/script/server
+
+	dh_installdirs	
+	dh_lintian
+#	dh_installlogrotate
+#	dh_installcron
+	dh_link
+	dh_strip
+	dh_compress
+
+	# Correct some permissions
+	chown -R www-data:www-data debian/redmine/var/log/redmine
+	chown -R www-data:www-data debian/redmine/var/lib/redmine
+	chown -R www-data:www-data debian/redmine/var/cache/redmine
+
+	dh_fixperms -X debian/redmine/var/
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure


Property changes on: packages-wip/redmine/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages-wip/redmine/trunk/debian/watch
===================================================================
--- packages-wip/redmine/trunk/debian/watch	                        (rev 0)
+++ packages-wip/redmine/trunk/debian/watch	2008-08-11 19:11:35 UTC (rev 2941)
@@ -0,0 +1,2 @@
+version=3
+http://rubyforge.org/frs/?group_id=1850 .*/redmine-(.*)\.tar\.gz 




More information about the Pkg-ruby-extras-commits mailing list