[Checkins] SVN: cipher.googlepam/trunk/ Get ready for release.

Stephen Richter cvs-admin at zope.org
Tue Apr 24 17:38:09 UTC 2012


Log message for revision 125277:
  Get ready for release.

Changed:
  U   cipher.googlepam/trunk/CHANGES.txt
  U   cipher.googlepam/trunk/README.txt
  U   cipher.googlepam/trunk/setup.py

-=-
Modified: cipher.googlepam/trunk/CHANGES.txt
===================================================================
--- cipher.googlepam/trunk/CHANGES.txt	2012-04-24 17:26:49 UTC (rev 125276)
+++ cipher.googlepam/trunk/CHANGES.txt	2012-04-24 17:38:06 UTC (rev 125277)
@@ -1,4 +1,3 @@
-=======
 CHANGES
 =======
 

Modified: cipher.googlepam/trunk/README.txt
===================================================================
--- cipher.googlepam/trunk/README.txt	2012-04-24 17:26:49 UTC (rev 125276)
+++ cipher.googlepam/trunk/README.txt	2012-04-24 17:38:06 UTC (rev 125277)
@@ -1,4 +1,3 @@
-=================
 Google PAM Module
 =================
 
@@ -20,7 +19,7 @@
 
 
 Configuring Google PAM on Ubuntu 12.04 LTS
-==========================================
+------------------------------------------
 
 1. Install a few required packages::
 
@@ -90,11 +89,11 @@
 
 5. Hide contents of the config file from the curious users::
 
-     root# chmod 600 /etc/pam_google.conf
+     # chmod 600 /etc/pam_google.conf
 
 6. Put the Google PAM module in a sensible location::
 
-     root# ln -s /usr/local/lib/python2.7/dist-packages/cipher.googlepam-<version>-py2.7.egg/cipher/googlepam/pam_google.py /lib/security/pam_google.py
+     # ln -s /usr/local/lib/python2.7/dist-packages/cipher.googlepam-<version>-py2.7.egg/cipher/googlepam/pam_google.py /lib/security/pam_google.py
 
 7. Enable pam_google for all authentication. Add the following rule as the
    first rule in file ``/etc/pam.d/common-auth``::

Modified: cipher.googlepam/trunk/setup.py
===================================================================
--- cipher.googlepam/trunk/setup.py	2012-04-24 17:26:49 UTC (rev 125276)
+++ cipher.googlepam/trunk/setup.py	2012-04-24 17:38:06 UTC (rev 125277)
@@ -17,8 +17,7 @@
 from setuptools import setup, find_packages
 
 def read(*rnames):
-    text = open(os.path.join(os.path.dirname(__file__), *rnames)).read()
-    return unicode(text, 'utf-8').encode('ascii', 'xmlcharrefreplace')
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
 setup(
     name='cipher.googlepam',
@@ -27,7 +26,7 @@
     long_description=(
         read('README.txt')
         + '\n\n' +
-        + read('CHANGES.txt')),
+        read('CHANGES.txt')),
     classifiers=[
       "Development Status :: 4 - Beta",
       "Programming Language :: Python",



More information about the checkins mailing list