Skip to content
Snippets Groups Projects
Commit 37204253 authored by Eric S. Raymond's avatar Eric S. Raymond Committed by Vijver, van de, Bob (UT-GUEST)
Browse files

Ubuntu has removed /usr/bin/python, change all shebangs to python3.

parent c6e9ebde
No related branches found
No related tags found
No related merge requests found
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
Package: irker Package: irker
Description: An IRC client that runs as a daemon accepting notification requests. Description: An IRC client that runs as a daemon accepting notification requests.
You preesnt them JSON objects presented to a listening socket. It is You present them JSON objects presented to a listening socket. It is
meant to be used by hook scripts in version-control repositories, meant to be used by hook scripts in version-control repositories,
allowing them to send commit notifications to project IRC channels. allowing them to send commit notifications to project IRC channels.
A hook script that works with git, hg, and svn is included in the A hook script that works with git, hg, and svn is included in the
......
#!/usr/bin/env python #!/usr/bin/env python3
# This is a trivial example of a metadata filter. # This is a trivial example of a metadata filter.
# All it does is change the name of the commit's author. # All it does is change the name of the commit's author.
# It could do other things, including modifying the # It could do other things, including modifying the
......
#!/usr/bin/env python #!/usr/bin/env python3
# #
# Test hook to launch an irker instance (if it doesn't already exist) # Test hook to launch an irker instance (if it doesn't already exist)
# just before shipping the notification. We start it in in another terminal # just before shipping the notification. We start it in in another terminal
......
#!/usr/bin/env python #!/usr/bin/env python3
# Illustrates how to test irkerd. # Illustrates how to test irkerd.
# #
# First argument must be a channel URL. If it does not begin with "irc", # First argument must be a channel URL. If it does not begin with "irc",
......
#!/usr/bin/env python #!/usr/bin/env python3
""" """
irkerd - a simple IRC multiplexer daemon irkerd - a simple IRC multiplexer daemon
......
#!/usr/bin/env python #!/usr/bin/env python3
# Copyright (c) 2012 Eric S. Raymond <esr@thyrsus.com> # Copyright (c) 2012 Eric S. Raymond <esr@thyrsus.com>
# SPDX-License-Identifier: BSD-2-Clause # SPDX-License-Identifier: BSD-2-Clause
# #
......
...@@ -360,7 +360,7 @@ representation of (possibly altered) metadata.</para> ...@@ -360,7 +360,7 @@ representation of (possibly altered) metadata.</para>
<para>Below is an example filter:</para> <para>Below is an example filter:</para>
<programlisting> <programlisting>
#!/usr/bin/env python #!/usr/bin/env python3
# This is a trivial example of a metadata filter. # This is a trivial example of a metadata filter.
# All it does is change the name of the commit's author. # All it does is change the name of the commit's author.
# #
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment