[csw-devel] SF.net SVN: gar:[14372] csw/mgar/pkg/sqlite3/trunk/Makefile

2011-04-21 Thread dmichelsen
Revision: 14372 http://gar.svn.sourceforge.net/gar/?rev=14372&view=rev Author: dmichelsen Date: 2011-04-21 07:38:14 + (Thu, 21 Apr 2011) Log Message: --- sqlite3: Match catalogname sqlite3_rt_stub to conform to existing prefix of package Modified Paths: --

Re: [csw-devel] SF.net SVN: gar:[14350] csw/mgar/pkg/bacula/trunk/Makefile

2011-04-21 Thread Ben Walton
Excerpts from Sebastian Kayser's message of Wed Apr 20 16:16:59 -0400 2011: Hi Sebastian, > you shouldn't need to explicitly install README.CSW. As long as it's > listed in DISTFILES, GAR will merge it automatically. Same goes for > changelog.CSW. Yes, I forgot about this. Thanks! -Ben -- Ben W

Re: [csw-devel] SF.net SVN: gar:[14350] csw/mgar/pkg/bacula/trunk/Makefile

2011-04-21 Thread Sebastian Kayser
* Ben Walton wrote: > Excerpts from Sebastian Kayser's message of Wed Apr 20 16:16:59 -0400 2011: > > you shouldn't need to explicitly install README.CSW. As long as it's > > listed in DISTFILES, GAR will merge it automatically. Same goes for > > changelog.CSW. > > Yes, I forgot about this. I wa

[csw-devel] SF.net SVN: gar:[14373] csw/mgar/pkg/cswclassutils/trunk

2011-04-21 Thread bonivart
Revision: 14373 http://gar.svn.sourceforge.net/gar/?rev=14373&view=rev Author: bonivart Date: 2011-04-21 17:15:46 + (Thu, 21 Apr 2011) Log Message: --- cswclassutils/trunk: Update initsmf Modified Paths: -- csw/mgar/pkg/cswclassutils/trunk/Makefile

[csw-devel] SF.net SVN: gar:[14374] csw/mgar/pkg

2011-04-21 Thread idogan23
Revision: 14374 http://gar.svn.sourceforge.net/gar/?rev=14374&view=rev Author: idogan23 Date: 2011-04-21 18:49:18 + (Thu, 21 Apr 2011) Log Message: --- cherokee: initial commit Added Paths: --- csw/mgar/pkg/cherokee/ csw/mgar/pkg/cherokee/Makefile c

[csw-devel] SF.net SVN: gar:[14375] csw/mgar/pkg/cpan/Net-UCP-Common/trunk/Makefile

2011-04-21 Thread idogan23
Revision: 14375 http://gar.svn.sourceforge.net/gar/?rev=14375&view=rev Author: idogan23 Date: 2011-04-21 18:53:06 + (Thu, 21 Apr 2011) Log Message: --- pm_netucpcommon: fixed package name Modified Paths: -- csw/mgar/pkg/cpan/Net-UCP-Common/trunk/Makefil

Re: [csw-devel] SF.net SVN: gar:[14374] csw/mgar/pkg

2011-04-21 Thread Sebastian Kayser
Hey Ihsan, * idoga...@users.sourceforge.net wrote: > cherokee: initial commit yes! Another entry to the bunch of alternative web servers. Do you intend to use this in production or for fooling around purposes? Lemme know how it goes, I'd be interested in what makes it special to you. Sebastian

Re: [csw-devel] SF.net SVN: gar:[14375] csw/mgar/pkg/cpan/Net-UCP-Common/trunk/Makefile

2011-04-21 Thread Peter Bonivart
On Thu, Apr 21, 2011 at 8:53 PM, wrote: > Log Message: > --- > pm_netucpcommon: fixed package name > > Modified: csw/mgar/pkg/cpan/Net-UCP-Common/trunk/Makefile > === > > -PACKAGES = CSWpmnetucpcommon > +PACKAGES = CSWpm-netu

[csw-devel] SF.net SVN: gar:[14376] csw/mgar/pkg/bacula/trunk/Makefile

2011-04-21 Thread bdwalton
Revision: 14376 http://gar.svn.sourceforge.net/gar/?rev=14376&view=rev Author: bdwalton Date: 2011-04-21 19:25:10 + (Thu, 21 Apr 2011) Log Message: --- bacula/trunk: make the storage daemon disabled by default too Modified Paths: -- csw/mgar/pkg/bacula/

[csw-devel] SF.net SVN: gar:[14377] csw/mgar/pkg/php5/trunk/Makefile

2011-04-21 Thread bdwalton
Revision: 14377 http://gar.svn.sourceforge.net/gar/?rev=14377&view=rev Author: bdwalton Date: 2011-04-22 00:56:37 + (Fri, 22 Apr 2011) Log Message: --- php5/trunk: make a few more xml options global for the cgi modulation Modified Paths: -- csw/mgar/pkg

[csw-devel] [PATCH] Add support for reading password from a file by default

2011-04-21 Thread Ben Walton
Before asking the user for a password to submit their package, look for it in /etc/opt/csw/releases/auth/$username. Fall back to getpass on any exception. Signed-off-by: Ben Walton --- gar/v2/lib/python/csw_upload_pkg.py | 10 +- 1 files changed, 9 insertions(+), 1 deletions(-) diff

Re: [csw-devel] [PATCH] Add support for reading password from a file by default

2011-04-21 Thread Maciej Bliziński
2011/4/22 Ben Walton : > +  try: > +    af = open(authfile, 'r') > +    password = af.readline().rstrip() Try using the 'with' syntax: try: with open(authfile, 'r') as af: password = af... To get the password, you can: password = af.read() # reads the whole file and with stripping: pass