aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/git
diff options
context:
space:
mode:
authorEvgeni Golov <evgeni@debian.org>2015-06-22 18:52:20 +0200
committerGuido Günther <agx@sigxcpu.org>2015-06-22 18:52:20 +0200
commitb3341e5effe54b3f1bf9891857d537cb8501306b (patch)
treee581bc39ce6c851ce3236344d71bf84e02d608fd /gbp/git
parent64e6fff5be977ef6f22bfa4d6daf5379397a2ef4 (diff)
Fix FSF address - thanks rpmlint
use gnu.org/licences instead of a postal address, as suggested by Guido
Diffstat (limited to 'gbp/git')
-rw-r--r--gbp/git/__init__.py4
-rw-r--r--gbp/git/args.py4
-rw-r--r--gbp/git/commit.py4
-rw-r--r--gbp/git/errors.py4
-rw-r--r--gbp/git/fastimport.py4
-rw-r--r--gbp/git/modifier.py4
-rw-r--r--gbp/git/repository.py4
-rw-r--r--gbp/git/vfs.py4
8 files changed, 16 insertions, 16 deletions
diff --git a/gbp/git/__init__.py b/gbp/git/__init__.py
index 55dc3a82..81e1422d 100644
--- a/gbp/git/__init__.py
+++ b/gbp/git/__init__.py
@@ -12,8 +12,8 @@
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+# along with this program; if not, please see
+# <http://www.gnu.org/licenses/>
"""Accessing Git from python"""
import calendar
diff --git a/gbp/git/args.py b/gbp/git/args.py
index 6f3dfd0f..197097f4 100644
--- a/gbp/git/args.py
+++ b/gbp/git/args.py
@@ -12,8 +12,8 @@
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+# along with this program; if not, please see
+# <http://www.gnu.org/licenses/>
"""
Git command argument handling helpers
"""
diff --git a/gbp/git/commit.py b/gbp/git/commit.py
index 699f1a21..cfc5d0c7 100644
--- a/gbp/git/commit.py
+++ b/gbp/git/commit.py
@@ -12,8 +12,8 @@
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+# along with this program; if not, please see
+# <http://www.gnu.org/licenses/>
"""Git commit class and helpers"""
import re
diff --git a/gbp/git/errors.py b/gbp/git/errors.py
index d955a612..47122b8e 100644
--- a/gbp/git/errors.py
+++ b/gbp/git/errors.py
@@ -12,8 +12,8 @@
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+# along with this program; if not, please see
+# <http://www.gnu.org/licenses/>
"""Git base error exception"""
class GitError(Exception):
diff --git a/gbp/git/fastimport.py b/gbp/git/fastimport.py
index 435d5e0e..1195fee6 100644
--- a/gbp/git/fastimport.py
+++ b/gbp/git/fastimport.py
@@ -13,8 +13,8 @@
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+# along with this program; if not, please see
+# <http://www.gnu.org/licenses/>
"""Git fast import class"""
import subprocess
diff --git a/gbp/git/modifier.py b/gbp/git/modifier.py
index 7aede7a1..fd25d93d 100644
--- a/gbp/git/modifier.py
+++ b/gbp/git/modifier.py
@@ -12,8 +12,8 @@
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+# along with this program; if not, please see
+# <http://www.gnu.org/licenses/>
"""
Someone who modifiers something in git
diff --git a/gbp/git/repository.py b/gbp/git/repository.py
index f7cda80d..2fa4fdd6 100644
--- a/gbp/git/repository.py
+++ b/gbp/git/repository.py
@@ -12,8 +12,8 @@
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+# along with this program; if not, please see
+# <http://www.gnu.org/licenses/>
"""A Git repository"""
import six
diff --git a/gbp/git/vfs.py b/gbp/git/vfs.py
index b2c0f454..b34e5736 100644
--- a/gbp/git/vfs.py
+++ b/gbp/git/vfs.py
@@ -12,8 +12,8 @@
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+# along with this program; if not, please see
+# <http://www.gnu.org/licenses/>
"""Make blobs in a git repository accessible as file like objects"""
from six import StringIO