Hello community, here is the log from the commit of package python-gnupg for openSUSE:Factory checked in at 2012-05-22 08:18:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-gnupg (Old) and /work/SRC/openSUSE:Factory/.python-gnupg.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-gnupg", Maintainer is "" Changes: -------- --- /work/SRC/openSUSE:Factory/python-gnupg/python-gnupg.changes 2012-04-17 07:48:51.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.python-gnupg.new/python-gnupg.changes 2012-05-22 08:18:19.000000000 +0200 @@ -1,0 +2,7 @@ +Sat May 12 20:22:55 UTC 2012 - alexan...@exatati.com.br + +- Update to 0.3.0: + - Fixed Issue #49 : Reinstated Yann Leboulanger's change to + support subkeys (accidentally left out in 0.2.7). + +------------------------------------------------------------------- Old: ---- python-gnupg-0.2.9.tar.bz2 New: ---- python-gnupg-0.3.0.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-gnupg.spec ++++++ --- /var/tmp/diff_new_pack.jokktD/_old 2012-05-22 08:18:20.000000000 +0200 +++ /var/tmp/diff_new_pack.jokktD/_new 2012-05-22 08:18:20.000000000 +0200 @@ -20,7 +20,7 @@ %{!?python_sitearch: %global python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")} Name: python-gnupg -Version: 0.2.9 +Version: 0.3.0 Release: 0 Url: http://code.google.com/p/python-gnupg/ Summary: A wrapper for the Gnu Privacy Guard (GPG or GnuPG) ++++++ python-gnupg-0.2.9.tar.bz2 -> python-gnupg-0.3.0.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-gnupg-0.2.9/PKG-INFO new/python-gnupg-0.3.0/PKG-INFO --- old/python-gnupg-0.2.9/PKG-INFO 2012-03-29 23:15:52.000000000 +0200 +++ new/python-gnupg-0.3.0/PKG-INFO 2012-05-12 11:54:20.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 1.0 Name: python-gnupg -Version: 0.2.9 +Version: 0.3.0 Summary: A wrapper for the Gnu Privacy Guard (GPG or GnuPG) Home-page: http://www.red-dove.com/python_gnupg.html Author: Vinay Sajip diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/python-gnupg-0.2.9/gnupg.py new/python-gnupg-0.3.0/gnupg.py --- old/python-gnupg-0.2.9/gnupg.py 2012-03-29 22:13:00.000000000 +0200 +++ new/python-gnupg-0.3.0/gnupg.py 2012-05-12 11:49:10.000000000 +0200 @@ -33,9 +33,9 @@ """ import locale -__version__ = "0.2.9" +__version__ = "0.3.0" __author__ = "Vinay Sajip" -__date__ = "$29-Mar-2012 21:12:58$" +__date__ = "$12-May-2012 10:49:10$" try: from io import StringIO @@ -287,7 +287,6 @@ crt = X.509 certificate crs = X.509 certificate and private key available - sub = subkey (secondary key) ssb = secret subkey (secondary key) uat = user attribute (same as user id except for field 10). sig = signature @@ -313,6 +312,7 @@ if self.curkey['uid']: self.curkey['uids'].append(self.curkey['uid']) del self.curkey['uid'] + self.curkey['subkeys'] = [] self.append(self.curkey) pub = sec = key @@ -325,6 +325,10 @@ self.curkey['uids'].append(args[9]) self.uids.append(args[9]) + def sub(self, args): + subkey = [args[4], args[11]] + self.curkey['subkeys'].append(subkey) + def handle_status(self, key, value): pass @@ -830,7 +834,7 @@ self._collect_output(p, result, stdin=p.stdin) lines = result.data.decode(self.encoding, self.decode_errors).splitlines() - valid_keywords = 'pub uid sec fpr'.split() + valid_keywords = 'pub uid sec fpr sub'.split() for line in lines: if self.verbose: print(line) -- To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org For additional commands, e-mail: opensuse-commit+h...@opensuse.org