Skip to content

Commit

Permalink
Update GitHub repo location letsencrypt -> certbot (#9713)
Browse files Browse the repository at this point in the history
* Update GitHub repo location letsencrypt -> certbot

* Revert changes to CHANGELOG
  • Loading branch information
remram44 committed Jun 8, 2023
1 parent 468f474 commit ff8afe8
Show file tree
Hide file tree
Showing 10 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion acme/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
name='acme',
version=version,
description='ACME protocol implementation in Python',
url='https://github.com/letsencrypt/letsencrypt',
url='https://github.com/certbot/certbot',
author="Certbot Project",
author_email='certbot-dev@eff.org',
license='Apache License 2.0',
Expand Down
2 changes: 1 addition & 1 deletion certbot-apache/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
name='certbot-apache',
version=version,
description="Apache plugin for Certbot",
url='https://github.com/letsencrypt/letsencrypt',
url='https://github.com/certbot/certbot',
author="Certbot Project",
author_email='certbot-dev@eff.org',
license='Apache License 2.0',
Expand Down
2 changes: 1 addition & 1 deletion certbot-compatibility-test/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
name='certbot-compatibility-test',
version=version,
description="Compatibility tests for Certbot",
url='https://github.com/letsencrypt/letsencrypt',
url='https://github.com/certbot/certbot',
author="Certbot Project",
author_email='certbot-dev@eff.org',
license='Apache License 2.0',
Expand Down
2 changes: 1 addition & 1 deletion certbot-nginx/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
name='certbot-nginx',
version=version,
description="Nginx plugin for Certbot",
url='https://github.com/letsencrypt/letsencrypt',
url='https://github.com/certbot/certbot',
author="Certbot Project",
author_email='certbot-dev@eff.org',
license='Apache License 2.0',
Expand Down
2 changes: 1 addition & 1 deletion certbot/certbot/_internal/tests/main_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1110,7 +1110,7 @@ def test_configurator_selection(self, mock_exe_exists, _, __, ___):

# This needed two calls to find_all(), which we're avoiding for now
# 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:
# plugins.return_value = {"apache": True, "nginx": True}
# ret, _, _, _ = self._call(args)
Expand Down
1 change: 0 additions & 1 deletion certbot/certbot/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,6 @@ def new_key(self) -> bool:

def __deepcopy__(self, _memo: Any) -> 'NamespaceConfig':
# 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_config = type(self)(new_ns)
if self.set_argument_sources is not None:
Expand Down
2 changes: 1 addition & 1 deletion certbot/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def read_file(filename, encoding='utf8'):
version=version,
description="ACME client",
long_description=readme,
url='https://github.com/letsencrypt/letsencrypt',
url='https://github.com/certbot/certbot',
author="Certbot Project",
author_email='certbot-dev@eff.org',
license='Apache License 2.0',
Expand Down
2 changes: 1 addition & 1 deletion letstest/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,4 @@ See:
- https://docs.aws.amazon.com/cli/latest/userguide/cli-ec2-keypairs.html

Main repos:
- https://github.com/letsencrypt/letsencrypt
- https://github.com/certbot/certbot
6 changes: 3 additions & 3 deletions letstest/letstest/multitester.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,17 @@
default='test_apache2.sh',
help='path of bash script in to deploy and run')
parser.add_argument('--repo',
default='https://github.com/letsencrypt/letsencrypt.git',
default='https://github.com/certbot/certbot.git',
help='certbot git repo to use')
parser.add_argument('--branch',
default='~',
help='certbot git branch to trial')
parser.add_argument('--pull_request',
default='~',
help='letsencrypt/letsencrypt pull request to trial')
help='certbot/certbot pull request to trial')
parser.add_argument('--merge_master',
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',
action='store_true',
help="don't kill EC2 instances after run, useful for debugging")
Expand Down
2 changes: 1 addition & 1 deletion windows-installer/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
name='windows-installer',
version=version,
description='Environment to build the Certbot Windows installer',
url='https://github.com/letsencrypt/letsencrypt',
url='https://github.com/certbot/certbot',
author="Certbot Project",
author_email='certbot-dev@eff.org',
license='Apache License 2.0',
Expand Down

0 comments on commit ff8afe8

Please sign in to comment.