This repository has been archived by the owner on Nov 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
81 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
Release 0.1: | ||
• [#8] Security: Fixed a typo that could in some circumstances lead to a | ||
crash after multiple failed authentication attempts. Thanks, | ||
Paul Lhussiez. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,19 @@ | |
'The X transparent screen lock rewritten in Python, using XCB and PAM.' | ||
) | ||
|
||
long_desc = """ | ||
pyxtrlock -- The leightweight screen locker rewritten in Python | ||
--------------------------------------------------------------- | ||
pyxtrlock is a very limited transparent X screen locker inspired by Ian | ||
Jackson’s great xtrlock program. pyxtrlock uses modern libraries, most | ||
importantly the obsolete direct passwd/shadow authentication has been replaced | ||
by today’s PAM authentication mechanism, hence it also works on Fedora. Also, | ||
it’s mostly written using XCB instead of Xlib. | ||
""" | ||
|
||
|
||
classifiers = [ | ||
'Development Status :: 3', | ||
'Environment :: X11 Applications', | ||
|
@@ -20,14 +33,16 @@ | |
] | ||
|
||
setup(name='pyxtrlock', | ||
version='0.1beta', | ||
version='0.1', | ||
author=authors, | ||
author_email='[email protected]', | ||
requires=['pam'], | ||
requires=['simplepam'], | ||
package_dir={'pyxtrlock': 'lib'}, | ||
packages=['pyxtrlock'], | ||
scripts=['pyxtrlock'], | ||
license='GPLv3+', | ||
url='https://github.com/leonnnn/pyxtrlock', | ||
url='https://zombofant.net/hacking/pyxtrlock', | ||
description=desc, | ||
long_description=long_desc, | ||
classifiers=classifiers | ||
) |