diff --git a/PKG-INFO b/PKG-INFO index c023f34..44b8497 100644 --- a/PKG-INFO +++ b/PKG-INFO @@ -3,8 +3,8 @@ Version: 0.2 Summary: Python functions to pass file descriptors across UNIX domain sockets Home-page: http://code.google.com/p/python-passfd/ -Author: Martin Ferrari -Author-email: martin.ferrari@gmail.com +Author: Martina Ferrari +Author-email: tina@tina.pm License: GPLv2 Description: This simple extension provides two functions to pass and receive file descriptors across UNIX domain sockets, using the BSD-4.3+ sendmsg() and @@ -17,10 +17,10 @@ passing, and was only tested on Linux. Patches are welcomed! For more information, see one of the R. Stevens' books: - - Richard Stevens: Unix Network Programming, Prentice Hall, 1990; - chapter 6.10 + - Richard Stevens: Unix Network Programming, Prentice Hall, 1990; + chapter 6.10 - - Richard Stevens: Advanced Programming in the UNIX Environment, - Addison-Wesley, 1993; chapter 15.3 + - Richard Stevens: Advanced Programming in the UNIX Environment, + Addison-Wesley, 1993; chapter 15.3 Platform: Linux diff --git a/debian/changelog b/debian/changelog index 87fe4b9..c370070 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +python-passfd (0.2+git20210810.1.e800b4d-1) UNRELEASED; urgency=low + + * New upstream snapshot. + + -- Debian Janitor Wed, 18 Aug 2021 14:24:57 -0000 + python-passfd (0.2-3) unstable; urgency=medium * Update Standards-Version (no changes). diff --git a/setup.py b/setup.py index c86a110..933660e 100755 --- a/setup.py +++ b/setup.py @@ -14,8 +14,8 @@ description = 'Python functions to pass file descriptors across ' + 'UNIX domain sockets', long_description = passfd.__doc__, - author = 'Martin Ferrari', - author_email = 'martin.ferrari@gmail.com', + author = 'Martina Ferrari', + author_email = 'tina@tina.pm', url = 'http://code.google.com/p/python-passfd/', license = 'GPLv2', platforms = 'Linux', diff --git a/src/passfd.c b/src/passfd.c index de62781..04e23e6 100644 --- a/src/passfd.c +++ b/src/passfd.c @@ -5,7 +5,7 @@ * Please note that this only supports BSD-4.3+ style file descriptor passing, * and was only tested on Linux. Patches are welcomed! * - * Copyright © 2010 Martín Ferrari + * Copyright © 2010 Martina Ferrari * * Inspired by Socket::PassAccessRights, which is: * Copyright (c) 2000 Sampo Kellomaki diff --git a/src/passfd.py b/src/passfd.py index 391e0fc..98d5451 100644 --- a/src/passfd.py +++ b/src/passfd.py @@ -25,7 +25,7 @@ # Please note that this only supports BSD-4.3+ style file descriptor passing, # and was only tested on Linux. Patches are welcomed! # -# Copyright © 2010 Martín Ferrari +# Copyright © 2010 Martina Ferrari # # Inspired by Socket::PassAccessRights, which is: # Copyright (c) 2000 Sampo Kellomaki diff --git a/t/test_passfd.py b/t/test_passfd.py index cdc2da9..4d83b6a 100755 --- a/t/test_passfd.py +++ b/t/test_passfd.py @@ -2,7 +2,7 @@ # vim: set fileencoding=utf-8 # vim: ts=4:sw=4:et:ai:sts=4 -# Copyright © 2010 Martín Ferrari +# Copyright © 2010 Martina Ferrari # # This program is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by the Free