Changeset 593


Ignore:
Timestamp:
05/01/12 16:03:23 (12 years ago)
Author:
bas
Message:

Changed license to apache version 2.0

Location:
trunk
Files:
2 added
1 deleted
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r589 r593  
     12.6.0
     2  * License changed from GNU Public License to Apache License, Version 2.0.
     3    Now the software can be included in Apache projects like bloodhound
     4
     5    Requested by:  gary dot martin add wandisco dot com
     6
     7  * Catch an error when no valid trac installation can be found,
     8    closes #294
     9    Reported by: m dot frigui add cacom dot fr
     10    Fixed by: Bas van der Vlies
     11
     12   
    1132.5.0
    214  * BLOG improvements by Thomas Moschny, closes #287,#235,#175:
  • trunk/debian/control

    r350 r593  
    1111Depends: ${slibs:Depends}, python, cdbs
    1212Description: Converts email to a trac ticket
    13         Name says it All
     13    Name says it All
  • trunk/delete_spam.py.in

    r374 r593  
    55# This file is part of the email2trac utils
    66#
    7 # This program is free software; you can redistribute it and/or modify it
    8 # under the terms of the GNU General Public License as published by the
    9 # Free Software Foundation; either version 2, or (at your option) any
    10 # later version.
     7#       Licensed to the Apache Software Foundation (ASF) under one
     8#       or more contributor license agreements.  See the NOTICE file
     9#       distributed with this work for additional information
     10#       regarding copyright ownership.  The ASF licenses this file
     11#       to you under the Apache License, Version 2.0 (the
     12#       "License"); you may not use this file except in compliance
     13#       with the License.  You may obtain a copy of the License at
    1114#
    12 # This program is distributed in the hope that it will be useful,
    13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
    14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    15 # GNU General Public License for more details.
     15#         http://www.apache.org/licenses/LICENSE-2.0
    1616#
    17 # You should have received a copy of the GNU General Public License
    18 # along with this program; if not, write to the Free Software
    19 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA
     17#       Unless required by applicable law or agreed to in writing,
     18#       software distributed under the License is distributed on an
     19#       "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
     20#       KIND, either express or implied.  See the License for the
     21#       specific language governing permissions and limitations
     22#       under the License.
    2023#
    2124# vi:
  • trunk/email2trac.py.in

    r592 r593  
    11#!@PYTHON@
    2 # Copyright (C) 2002
     2# Copyright (C) 2002 
    33#
    44# This file is part of the email2trac utils
    55#
    6 # This program is free software; you can redistribute it and/or modify it
    7 # under the terms of the GNU General Public License as published by the
    8 # Free Software Foundation; either version 2, or (at your option) any
    9 # later version.
     6#       Licensed to the Apache Software Foundation (ASF) under one
     7#       or more contributor license agreements.  See the NOTICE file
     8#       distributed with this work for additional information
     9#       regarding copyright ownership.  The ASF licenses this file
     10#       to you under the Apache License, Version 2.0 (the
     11#       "License"); you may not use this file except in compliance
     12#       with the License.  You may obtain a copy of the License at
    1013#
    11 # This program is distributed in the hope that it will be useful,
    12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
    13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    14 # GNU General Public License for more details.
     14#         http://www.apache.org/licenses/LICENSE-2.0
    1515#
    16 # You should have received a copy of the GNU General Public License
    17 # along with this program; if not, write to the Free Software
    18 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA
     16#       Unless required by applicable law or agreed to in writing,
     17#       software distributed under the License is distributed on an
     18#       "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
     19#       KIND, either express or implied.  See the License for the
     20#       specific language governing permissions and limitations
     21#       under the License.
    1922#
    2023# For vi/emacs or other use tabstop=4 (vi: set ts=4)
     
    6972from stat import *
    7073
    71 
    72 from trac import __version__ as trac_version
    73 from trac import config as trac_config
     74try:
     75    from trac import __version__ as trac_version
     76    from trac import config as trac_config
     77
     78except ImportError, detail:
     79    print "Can not find a a valid trac installation, try setting PYTHONPATH"
     80    sys.exit(1)
    7481
    7582## Some global variables
  • trunk/email2trac.spec

    r589 r593  
    33Version: 2.5.0
    44Release: 1
    5 License: GPL
     5License: Apache License 2.0
    66Group: Applications/Internet
    77URL: https://subtrac.sara.nl/oss/email2trac
  • trunk/run_email2trac.c

    r574 r593  
    11/*
    2         run_email2trac.c
    3         Authors: Bas van der Vlies, Walter de Jong and Michel Jouvin
    4         SVN Info:
    5                 $Id$
     2    run_email2trac.c
     3    Authors: Bas van der Vlies, Walter de Jong and Michel Jouvin
     4    SVN Info:
     5        $Id$
    66
    7         Only nobody can become the user www-data. Postfix uses this
    8         user to start an program
     7    Only nobody can become the user www-data. Postfix uses this
     8    user to start an program
    99
    10 # Copyright (C) 2002
    11 #
    12 # This file is part of the email2trac utils
    13 #
    14 # This program is free software; you can redistribute it and/or modify it
    15 # under the terms of the GNU General Public License as published by the
    16 # Free Software Foundation; either version 2, or (at your option) any
    17 # later version.
    18 #
    19 # This program is distributed in the hope that it will be useful,
    20 # but WITHOUT ANY WARRANTY; without even the implied warranty of
    21 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    22 # GNU General Public License for more details.
    23 #
    24 # You should have received a copy of the GNU General Public License
    25 # along with this program; if not, write to the Free Software
    26 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA
    27 #
     10       Licensed to the Apache Software Foundation (ASF) under one
     11       or more contributor license agreements.  See the NOTICE file
     12       distributed with this work for additional information
     13       regarding copyright ownership.  The ASF licenses this file
     14       to you under the Apache License, Version 2.0 (the
     15       "License"); you may not use this file except in compliance
     16       with the License.  You may obtain a copy of the License at
     17
     18         http://www.apache.org/licenses/LICENSE-2.0
     19
     20       Unless required by applicable law or agreed to in writing,
     21       software distributed under the License is distributed on an
     22       "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
     23       KIND, either express or implied.  See the License for the
     24       specific language governing permissions and limitations
     25       under the License.
    2826*/
    2927#include "config.h"
  • trunk/run_email2trac.h

    r24 r593  
    11/*
    22
    3 AUTHOR: Michel Jouvin
    43SVN Info:
    5         $Id$
     4    $Id$
    65
    76Local site configuration
    87Value defined here are just default values than can be overriden at compile time
    98See Makefile.
     9
     10       Licensed to the Apache Software Foundation (ASF) under one
     11       or more contributor license agreements.  See the NOTICE file
     12       distributed with this work for additional information
     13       regarding copyright ownership.  The ASF licenses this file
     14       to you under the Apache License, Version 2.0 (the
     15       "License"); you may not use this file except in compliance
     16       with the License.  You may obtain a copy of the License at
     17
     18         http://www.apache.org/licenses/LICENSE-2.0
     19
     20       Unless required by applicable law or agreed to in writing,
     21       software distributed under the License is distributed on an
     22       "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
     23       KIND, either express or implied.  See the License for the
     24       specific language governing permissions and limitations
     25       under the License.
    1026*/
    1127
     
    2743#define TRAC_SCRIPT_PATH "/usr/bin"
    2844#endif
    29 
Note: See TracChangeset for help on using the changeset viewer.