From mschmidt at ucar.edu Tue May 9 19:40:54 2017 From: mschmidt at ucar.edu (Mike Schmidt) Date: Tue, 9 May 2017 11:40:54 -0600 Subject: Missing signatures on catalog Message-ID: The catalog at https://mirror.opencsw.org/opencsw/unstable/i386/5.10/catalog created on May 5 2017 is missing its signature. I searched the archives and can't see this is a known issue. mike -------------- next part -------------- An HTML attachment was scrubbed... URL: From dam at opencsw.org Tue May 9 20:07:19 2017 From: dam at opencsw.org (Dagobert Michelsen) Date: Tue, 9 May 2017 20:07:19 +0200 Subject: Missing signatures on catalog In-Reply-To: References: Message-ID: <2719FBF7-D923-4C2F-BA62-081F916E72BC@opencsw.org> Hi Mike, Am 09.05.2017 um 19:40 schrieb Mike Schmidt via users : > The catalog at https://mirror.opencsw.org/opencsw/unstable/i386/5.10/catalog created on May 5 2017 is missing its signature. I searched the archives and can't see this is a known issue. I can confirm the issue. We had some problems with the catalog generation lately and I pushed the catalog manually to resolve the issue without noticing that the catalog has not been signed because it contains a cyclic dependency :-/ I am looking into the issue right now. Best regards ? Dago -- "You don't become great by trying to be great, you become great by wanting to do something, and then doing it so hard that you become great in the process." - xkcd #896 -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 841 bytes Desc: Message signed with OpenPGP URL: From dam at opencsw.org Wed May 10 15:46:29 2017 From: dam at opencsw.org (Dagobert Michelsen) Date: Wed, 10 May 2017 15:46:29 +0200 Subject: Missing signatures on catalog In-Reply-To: <2719FBF7-D923-4C2F-BA62-081F916E72BC@opencsw.org> References: <2719FBF7-D923-4C2F-BA62-081F916E72BC@opencsw.org> Message-ID: <147814DD-C921-464F-BF14-B5929A03C594@opencsw.org> Hi, Am 09.05.2017 um 20:07 schrieb Dagobert Michelsen via users : > Am 09.05.2017 um 19:40 schrieb Mike Schmidt via users : >> The catalog at https://mirror.opencsw.org/opencsw/unstable/i386/5.10/catalog created on May 5 2017 is missing its signature. I searched the archives and can't see this is a known issue. > > I can confirm the issue. We had some problems with the catalog generation lately > and I pushed the catalog manually to resolve the issue without noticing that the > catalog has not been signed because it contains a cyclic dependency :-/ > I am looking into the issue right now. The issue is resolved now and the updated catalogs have been pushed to the primary mirror. It may take a while until the downstream mirrors pick up the updates. If you encounter any issues please let me know. Best regards ? Dago -- "You don't become great by trying to be great, you become great by wanting to do something, and then doing it so hard that you become great in the process." - xkcd #896 -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 841 bytes Desc: Message signed with OpenPGP URL: From djwalters at gmail.com Wed May 17 22:08:15 2017 From: djwalters at gmail.com (Don Walters) Date: Wed, 17 May 2017 13:08:15 -0700 Subject: Python, Solaris 10, pip install complains about absent pkg_resources Message-ID: I want to use openpyxl for writing excel files via python. I've got 25 years unix shell scripting, but am green at python. I did: pip install openpyxl and received: Traceback (most recent call last): File "/usr/bin/pip", line 8, in from pkg_resources import load_entry_point ImportError: No module named pkg_resources Oddly, I notice there _is_ a directory called "pkg_resources" located at: /opt/csw/lib/python2.6/site-packages ?I'm sure there's a "python.cfg" file or something I need to edit to tell python where to look. Can someone please give me the hint? Thanks a lot, Don W. -- See my website at: http://www.korndon.com See me on LinkedIn: https://www.linkedin.com/in/korndon Small Website Repair: http://www.smallwebsiterepair.com *Business is like a man rowing a boat upstream. He has no choice; he must go ahead or he will go back.* ?Lewis E. Pierson *Money demands that you sell, not your weakness to men?s stupidity, but your talent to their reason.* ?Ayn Rand -------------- next part -------------- An HTML attachment was scrubbed... URL: From grzemba at contac-dt.de Thu May 18 09:14:12 2017 From: grzemba at contac-dt.de (Carsten Grzemba) Date: Thu, 18 May 2017 09:14:12 +0200 Subject: Python, Solaris 10, pip install complains about absent pkg_resources In-Reply-To: References: Message-ID: On 17.05.17 22:09, Don Walters via users wrote: > > > > I want to use openpyxl for writing excel files via python. > > > > I've got 25 years unix shell scripting, but am green at python. > > > > I did: > > pip install openpyxl > > and received: > > Traceback (most recent call last): > > File "/usr/bin/pip", line 8, in > > from pkg_resources import load_entry_point > > ImportError: No module named pkg_resources > > > Oddly, I notice there _is_ a directory called "pkg_resources" located at: > > /opt/csw/lib/python2.6/site-packages > > > > ?I'm sure there's a "python.cfg" file or something I need to edit to tell python where to look. > > > > Can someone please give me the hint? > > > > > First of all check which Python you use! If you run /usr/bin/pip than probably you use OS system Python at /usr not OpenCSW Python, so it can only use modules in /usr/lib/python* -------------- next part -------------- An HTML attachment was scrubbed... URL: From djwalters at gmail.com Thu May 18 19:26:25 2017 From: djwalters at gmail.com (Don Walters) Date: Thu, 18 May 2017 10:26:25 -0700 Subject: Python, Solaris 10, pip install complains about absent pkg_resources In-Reply-To: References: Message-ID: Thanks; I installed CSW python2.7, and now pip works. Next, I'll give openpyxl a try :-) ?donw On Wed, May 17, 2017 at 1:08 PM, Don Walters wrote: > I want to use openpyxl for writing excel files via python. > > I've got 25 years unix shell scripting, but am green at python. > > I did: > pip install openpyxl > and received: > Traceback (most recent call last): > File "/usr/bin/pip", line 8, in > from pkg_resources import load_entry_point > ImportError: No module named pkg_resources > > Oddly, I notice there _is_ a directory called "pkg_resources" located at: > /opt/csw/lib/python2.6/site-packages > > ?I'm sure there's a "python.cfg" file or something I need to edit to tell > python where to look. > > Can someone please give me the hint? > > Thanks a lot, > > Don W. > > > -- > > See my website at: http://www.korndon.com > See me on LinkedIn: https://www.linkedin.com/in/korndon > Small Website Repair: http://www.smallwebsiterepair.com > > *Business is like a man rowing a boat upstream. He has no choice; he must > go ahead or he will go back.* > ?Lewis E. Pierson > > > *Money demands that you sell, not your weakness to men?s stupidity, but > your talent to their reason.* ?Ayn Rand > > -- See my website at: http://www.korndon.com See me on LinkedIn: https://www.linkedin.com/in/korndon Small Website Repair: http://www.smallwebsiterepair.com *Business is like a man rowing a boat upstream. He has no choice; he must go ahead or he will go back.* ?Lewis E. Pierson *Money demands that you sell, not your weakness to men?s stupidity, but your talent to their reason.* ?Ayn Rand -------------- next part -------------- An HTML attachment was scrubbed... URL: