"Rename" gcp

Following Goffi's will, this commit renames Gcp (Goffi's CoPier) into
gcp (Gcp CoPier).
This commit is contained in:
Matteo Cypriani 2018-07-05 22:45:00 +02:00
parent 28e8089316
commit 007d04dd16
3 changed files with 7 additions and 6 deletions

View File

@ -1,7 +1,8 @@
gcp
===
gcp (Goffi's cp) is a file copier.
gcp is a user-friendly file copier written in Python. Its name used to stand
for "Goffi's CoPier", but was changed into a recursive acronym: Gcp CoPier.
License
@ -145,9 +146,9 @@ Big thanks to contributors and package maintainers.
Contributors
============
* Original author: Jérôme Poisson aka Goffi <goffi@goffi.org> 2010-2011.
* Original author: Jérôme Poisson a.k.a. Goffi <goffi@goffi.org> 2010-2011.
* Thomas Preud'homme <robotux@celest.fr> 2011: manpage, stat resolution fix.
* Jingbei Li aka petronny 2016: conversion to Python3.
* Jingbei Li a.k.a. petronny 2016: conversion to Python3.
* Matteo Cypriani <mcy@lm7.fr> 2018: `--fs-fix` option, Python3 fixes.

4
gcp
View File

@ -1,7 +1,7 @@
#!/usr/bin/env python3
"""
gcp: Goffi's CoPier
gcp: Gcp CoPier
Copyright (c) 2010, 2011 Jérôme Poisson <goffi@goffi.org>
(c) 2011 Thomas Preud'homme <robotux@celest.fr>
(c) 2016 Jingbei Li <i@jingbei.li>
@ -55,7 +55,7 @@ except ImportError as e:
info (_('Progress bar deactivated\n--\n'))
pbar_available=False
NAME = "gcp (Goffi's copier)"
NAME = "gcp (Gcp CoPier)"
NAME_SHORT = "gcp"
VERSION = '0.2.0'

View File

@ -1,7 +1,7 @@
#!/usr/bin/env python3
"""
gcp: Goffi's CoPier -- unit tests
gcp: Gcp CoPier -- unit tests
Copyright (c) 2010, 2011 Jérôme Poisson <goffi@goffi.org>
Copyright (c) 2018 Matteo Cypriani <mcy@lm7.fr>