Update GitHub repo location letsencrypt -> certbot (#9713)

* Update GitHub repo location letsencrypt -> certbot

* Revert changes to CHANGELOG
This commit is contained in:
Remi Rampin
2023-06-08 10:27:28 +10:00
committed by GitHub
parent 468f4749b8
commit ff8afe827b
10 changed files with 11 additions and 12 deletions
+1 -1
View File
@@ -31,7 +31,7 @@ setup(
name='acme', name='acme',
version=version, version=version,
description='ACME protocol implementation in Python', description='ACME protocol implementation in Python',
url='https://github.com/letsencrypt/letsencrypt', url='https://github.com/certbot/certbot',
author="Certbot Project", author="Certbot Project",
author_email='certbot-dev@eff.org', author_email='certbot-dev@eff.org',
license='Apache License 2.0', license='Apache License 2.0',
+1 -1
View File
@@ -25,7 +25,7 @@ setup(
name='certbot-apache', name='certbot-apache',
version=version, version=version,
description="Apache plugin for Certbot", description="Apache plugin for Certbot",
url='https://github.com/letsencrypt/letsencrypt', url='https://github.com/certbot/certbot',
author="Certbot Project", author="Certbot Project",
author_email='certbot-dev@eff.org', author_email='certbot-dev@eff.org',
license='Apache License 2.0', license='Apache License 2.0',
+1 -1
View File
@@ -14,7 +14,7 @@ setup(
name='certbot-compatibility-test', name='certbot-compatibility-test',
version=version, version=version,
description="Compatibility tests for Certbot", description="Compatibility tests for Certbot",
url='https://github.com/letsencrypt/letsencrypt', url='https://github.com/certbot/certbot',
author="Certbot Project", author="Certbot Project",
author_email='certbot-dev@eff.org', author_email='certbot-dev@eff.org',
license='Apache License 2.0', license='Apache License 2.0',
+1 -1
View File
@@ -23,7 +23,7 @@ setup(
name='certbot-nginx', name='certbot-nginx',
version=version, version=version,
description="Nginx plugin for Certbot", description="Nginx plugin for Certbot",
url='https://github.com/letsencrypt/letsencrypt', url='https://github.com/certbot/certbot',
author="Certbot Project", author="Certbot Project",
author_email='certbot-dev@eff.org', author_email='certbot-dev@eff.org',
license='Apache License 2.0', license='Apache License 2.0',
+1 -1
View File
@@ -1110,7 +1110,7 @@ class MainTest(test_util.ConfigTestCase):
# This needed two calls to find_all(), which we're avoiding for now # This needed two calls to find_all(), which we're avoiding for now
# because of possible side effects: # because of possible side effects:
# https://github.com/letsencrypt/letsencrypt/commit/51ed2b681f87b1eb29088dd48718a54f401e4855 # https://github.com/certbot/certbot/commit/51ed2b681f87b1eb29088dd48718a54f401e4855
# with mock.patch('certbot._internal.cli.plugins_testable') as plugins: # with mock.patch('certbot._internal.cli.plugins_testable') as plugins:
# plugins.return_value = {"apache": True, "nginx": True} # plugins.return_value = {"apache": True, "nginx": True}
# ret, _, _, _ = self._call(args) # ret, _, _, _ = self._call(args)
-1
View File
@@ -423,7 +423,6 @@ class NamespaceConfig:
def __deepcopy__(self, _memo: Any) -> 'NamespaceConfig': def __deepcopy__(self, _memo: Any) -> 'NamespaceConfig':
# Work around https://bugs.python.org/issue1515 for py26 tests :( :( # Work around https://bugs.python.org/issue1515 for py26 tests :( :(
# https://travis-ci.org/letsencrypt/letsencrypt/jobs/106900743#L3276
new_ns = copy.deepcopy(self.namespace) new_ns = copy.deepcopy(self.namespace)
new_config = type(self)(new_ns) new_config = type(self)(new_ns)
if self.set_argument_sources is not None: if self.set_argument_sources is not None:
+1 -1
View File
@@ -117,7 +117,7 @@ setup(
version=version, version=version,
description="ACME client", description="ACME client",
long_description=readme, long_description=readme,
url='https://github.com/letsencrypt/letsencrypt', url='https://github.com/certbot/certbot',
author="Certbot Project", author="Certbot Project",
author_email='certbot-dev@eff.org', author_email='certbot-dev@eff.org',
license='Apache License 2.0', license='Apache License 2.0',
+1 -1
View File
@@ -50,4 +50,4 @@ See:
- https://docs.aws.amazon.com/cli/latest/userguide/cli-ec2-keypairs.html - https://docs.aws.amazon.com/cli/latest/userguide/cli-ec2-keypairs.html
Main repos: Main repos:
- https://github.com/letsencrypt/letsencrypt - https://github.com/certbot/certbot
+3 -3
View File
@@ -58,17 +58,17 @@ parser.add_argument('test_script',
default='test_apache2.sh', default='test_apache2.sh',
help='path of bash script in to deploy and run') help='path of bash script in to deploy and run')
parser.add_argument('--repo', parser.add_argument('--repo',
default='https://github.com/letsencrypt/letsencrypt.git', default='https://github.com/certbot/certbot.git',
help='certbot git repo to use') help='certbot git repo to use')
parser.add_argument('--branch', parser.add_argument('--branch',
default='~', default='~',
help='certbot git branch to trial') help='certbot git branch to trial')
parser.add_argument('--pull_request', parser.add_argument('--pull_request',
default='~', default='~',
help='letsencrypt/letsencrypt pull request to trial') help='certbot/certbot pull request to trial')
parser.add_argument('--merge_master', parser.add_argument('--merge_master',
action='store_true', action='store_true',
help="if set merges PR into master branch of letsencrypt/letsencrypt") help="if set merges PR into master branch of certbot/certbot")
parser.add_argument('--saveinstances', parser.add_argument('--saveinstances',
action='store_true', action='store_true',
help="don't kill EC2 instances after run, useful for debugging") help="don't kill EC2 instances after run, useful for debugging")
+1 -1
View File
@@ -7,7 +7,7 @@ setup(
name='windows-installer', name='windows-installer',
version=version, version=version,
description='Environment to build the Certbot Windows installer', description='Environment to build the Certbot Windows installer',
url='https://github.com/letsencrypt/letsencrypt', url='https://github.com/certbot/certbot',
author="Certbot Project", author="Certbot Project",
author_email='certbot-dev@eff.org', author_email='certbot-dev@eff.org',
license='Apache License 2.0', license='Apache License 2.0',