From erenoglu at gmail.com Thu Jul 3 01:34:22 2008 From: erenoglu at gmail.com (Emre ERENOGLU) Date: Thu, 3 Jul 2008 00:34:22 +0200 Subject: [Pardus-devel] padevchooser pisi package Message-ID: Hi, I tried to build a pisi package for padevchooser and I think I got it right. However, none of its icons are correct. They seem to be non-existent or wrong. I'm sending the pspec.xml and actions.py files, nothing fancy inside. -- Emre -------------- next part -------------- An HTML attachment was scrubbed... URL: http://liste.pardus.org.tr/pardus-devel/attachments/20080703/bbd40c56/attachment.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: actions.py Type: text/x-python Size: 416 bytes Desc: not available Url : http://liste.pardus.org.tr/pardus-devel/attachments/20080703/bbd40c56/attachment.py -------------- next part -------------- A non-text attachment was scrubbed... Name: pspec.xml Type: text/xml Size: 2072 bytes Desc: not available Url : http://liste.pardus.org.tr/pardus-devel/attachments/20080703/bbd40c56/attachment.bin From caglar at pardus.org.tr Thu Jul 3 01:49:47 2008 From: caglar at pardus.org.tr (=?utf-8?q?S=2E=C3=87a=C4=9Flar?= Onur) Date: Thu, 3 Jul 2008 01:49:47 +0300 Subject: [Pardus-devel] padevchooser pisi package In-Reply-To: References: Message-ID: <200807030149.48333.caglar@pardus.org.tr> Hi Emre; 03 Tem 2008 Per tarihinde, Emre ERENOGLU ??unlar?? yazm????t??: > I tried to build a pisi package for padevchooser and I think I got it right. > However, none of its icons are correct. They seem to be non-existent or > wrong. You have to patch the padevchooser's glade files like as we did with [1] cause it's uses GNOME icon naming scheme which a pure KDE distro didn't provide :( > I'm sending the pspec.xml and actions.py files, nothing fancy inside. Some comments; * use "autotools.configure("--disable-lynx")" instead of "autotools.rawConfigure("--prefix=/usr --disable-lynx")" * indentation seems wrong in build() function * use autotools.rawInstall("DESTDIR=%s" % get.installDIR())" instead of "autotools.make("DESTDIR=%s install" % get.installDIR())" * The history tag of pspec.xml's has "Lennart Poettering" but these field are reserved for packager not for upstream, so please fill with your information :) * GPL-2 is wrong, correct one is GPLv2 * tag is not neccesary as it will automatically determined by PiSi * Internalization of pspec.xml belongs to translations.xml, you can find lots of examples in our repos * tag is empty, so you can remove it. [1] https://svn.pardus.org.tr/pardus/devel/applications/multimedia/paprefs/files/icons.patch Cheers -- S.??a??lar Onur http://cekirdek.pardus.org.tr/~caglar/ Linux is like living in a teepee. No Windows, no Gates and an Apache in house! -------------- sonraki b?l?m -------------- Yaz??? olmayan bir eklenti temizlendi... ???sim: kullan???lam???yor T???r: application/pgp-signature Boyut: 197 bayt Tan???m: This is a digitally signed message part. Url: http://liste.pardus.org.tr/pardus-devel/attachments/20080703/842f1e82/attachment.pgp From erenoglu at gmail.com Thu Jul 3 02:00:46 2008 From: erenoglu at gmail.com (Emre ERENOGLU) Date: Thu, 3 Jul 2008 01:00:46 +0200 Subject: [Pardus-devel] padevchooser pisi package In-Reply-To: <200807030149.48333.caglar@pardus.org.tr> References: <200807030149.48333.caglar@pardus.org.tr> Message-ID: Thanks Caglar, very good package building lesson :) On Thu, Jul 3, 2008 at 12:49 AM, S.?a?lar Onur wrote: > You have to patch the padevchooser's glade files like as we did with [1] > cause it's uses GNOME icon naming scheme which a pure KDE distro didn't > provide :( > Too bad. Nevertheless, I'll try to have a look at the patch that you pointed. > > Some comments; > > * use "autotools.configure("--disable-lynx")" instead of > "autotools.rawConfigure("--prefix=/usr --disable-lynx")" got that. > * indentation seems wrong in build() function easy to fix :) > * use autotools.rawInstall("DESTDIR=%s" % get.installDIR())" instead of > "autotools.make("DESTDIR=%s install" % get.installDIR())" Thanks :) anyway I understood nothing from this rawInstall command, so just copied and pasted from another actions.py without really understanding what it does. This function needs a lot of time to understand. For example, I don't get it why it just doesn't install when I say autotools.rawInstall(), why do I have to give those parameters? I don't give any parameter when I build it and install it myself anyway ??? > > * The history tag of pspec.xml's has "Lennart Poettering" but these field > are reserved for packager not for upstream, so please fill with your > information :) > * GPL-2 is wrong, correct one is > GPLv2 > * tag is not neccesary as it will automatically determined by PiSi > * Internalization of pspec.xml belongs to translations.xml, you can find > lots of examples in our repos > * tag is empty, so you can remove it. These are OK, I'll have a look. I kept there just not to forget this possibility in it :) Best Regards, -- Emre -------------- next part -------------- An HTML attachment was scrubbed... URL: http://liste.pardus.org.tr/pardus-devel/attachments/20080703/2990243c/attachment.htm From caglar at pardus.org.tr Thu Jul 3 02:16:08 2008 From: caglar at pardus.org.tr (=?utf-8?q?S=2E=C3=87a=C4=9Flar?= Onur) Date: Thu, 3 Jul 2008 02:16:08 +0300 Subject: [Pardus-devel] padevchooser pisi package In-Reply-To: References: <200807030149.48333.caglar@pardus.org.tr> Message-ID: <200807030216.09693.caglar@pardus.org.tr> 03 Tem 2008 Per tarihinde, Emre ERENOGLU ?unlar? yazm??t?: > > * use autotools.rawInstall("DESTDIR=%s" % get.installDIR())" instead of > > "autotools.make("DESTDIR=%s install" % get.installDIR())" > > Thanks :) anyway I understood nothing from this rawInstall command, so just > copied and pasted from another actions.py without really understanding what > it does. This function needs a lot of time to understand. For example, I > don't get it why it just doesn't install when I say autotools.rawInstall(), > why do I have to give those parameters? I don't give any parameter when I > build it and install it myself anyway ??? *.configure and *.install functions passes lots of predefined values to packages's build system (like MANDIR, DESTDIR etc.) but raw ones are only passes the arguments given to these functions. But lots of package failed with these defaults, so we introduced raw* ones :) For example if you are try to configure qemu with our defaults qemu will quit saying somethin like "MANDIR is not an configure option" so one must have to use rawConfigure, or if you use autotools.install with sqllite, it will try to install its files under / instead of /var/pisi/package/install and ends up with sandbox violation etc. In an ideal world autotools.configure and autotools.install must just work (tm) as expected but if you grep these in our repo you will easily see only ~50 package conforms these and all others uses raw* ones, autocrap... PiSi builds the source package in /var/pisi/package/build/package-version directory and installs its files into /var/pisi/package/install directory. But while installing it must behave like a chrooted env. cause lots of package's build system does lots of things in install phase (like changing and replacing some config files according to install path etc.). But while you were compiling for yourself, a simple series of "./configure --prefix=somewhereOverTheRainbow", "make" and "make install" can make the job, but with PiSi, they installed under /var/pisi/package/install (else sandbox violation occurs) and behaved like they are installed to / (so they will work without a problem when a user installed this package into his/her system) > Best Regards, Cheers -- S.?a?lar Onur http://cekirdek.pardus.org.tr/~caglar/ Linux is like living in a teepee. No Windows, no Gates and an Apache in house! From erenoglu at gmail.com Thu Jul 3 03:20:11 2008 From: erenoglu at gmail.com (Emre ERENOGLU) Date: Thu, 3 Jul 2008 02:20:11 +0200 Subject: [Pardus-devel] padevchooser pisi package In-Reply-To: <200807030216.09693.caglar@pardus.org.tr> References: <200807030149.48333.caglar@pardus.org.tr> <200807030216.09693.caglar@pardus.org.tr> Message-ID: Thanks for the tips. I tried to rebuild the package according to your guidance, got the KDE Menu icon right, however, not the trayicon. Whatever I tried, couldn't get it to work. On the last try, I changed all icon_name statements but no change again... Emre -------------- next part -------------- An HTML attachment was scrubbed... URL: http://liste.pardus.org.tr/pardus-devel/attachments/20080703/ef1958ec/attachment-0001.htm -------------- next part -------------- A non-text attachment was scrubbed... Name: actions.py Type: text/x-python Size: 392 bytes Desc: not available Url : http://liste.pardus.org.tr/pardus-devel/attachments/20080703/ef1958ec/attachment-0001.py -------------- next part -------------- A non-text attachment was scrubbed... Name: pspec.xml Type: text/xml Size: 1846 bytes Desc: not available Url : http://liste.pardus.org.tr/pardus-devel/attachments/20080703/ef1958ec/attachment-0003.bin -------------- next part -------------- A non-text attachment was scrubbed... Name: translations.xml Type: text/xml Size: 399 bytes Desc: not available Url : http://liste.pardus.org.tr/pardus-devel/attachments/20080703/ef1958ec/attachment-0004.bin -------------- next part -------------- A non-text attachment was scrubbed... Name: icons.patch Type: text/x-diff Size: 2065 bytes Desc: not available Url : http://liste.pardus.org.tr/pardus-devel/attachments/20080703/ef1958ec/attachment-0005.bin From dfisek at fisek.com.tr Fri Jul 4 19:29:48 2008 From: dfisek at fisek.com.tr (Doruk Fisek) Date: Fri, 4 Jul 2008 19:29:48 +0300 Subject: [Pardus-devel] [Contrib-commits] r7809 - 2008/desktop/kde/kuftp In-Reply-To: <20080703214305.24E9813840D2@liste.pardus.org.tr> References: <20080703214305.24E9813840D2@liste.pardus.org.tr> Message-ID: <20080704192948.d9418238.dfisek@fisek.com.tr> Fri, 4 Jul 2008 00:43:05 +0300 (EEST), contrib-commits at pardus.org.tr : > Added: > 2008/desktop/kde/kuftp/actions.py > 2008/desktop/kde/kuftp/pspec.xml > 2008/desktop/kde/kuftp/translations.xml > Log: > merge for 2008 If you use svn cp, rather than svn add, you'll also be merging the svn history of the package. Here's an example of it : svn cp https://svn.pardus.org.tr/contrib/devel/desktop/kde/kuftp/ \ https://svn.pardus.org.tr/contrib/2008/desktop/kde/kuftp/ That's all :) Doruk -- FISEK INSTITUTE - http://www.fisek.org.tr From erenoglu at gmail.com Mon Jul 7 03:23:13 2008 From: erenoglu at gmail.com (Emre ERENOGLU) Date: Mon, 7 Jul 2008 02:23:13 +0200 Subject: [Pardus-devel] is there a def uninstall(): section in actions.py? Message-ID: Hi, I'm trying to make a pisi package. The application in question needs to run a script before starting its operation but after it's installation. Therefore, after making the necessary builds and copies, I intend to use shelltools.system() function to run its script, such as: /usr/share/program_name/scripts/setup --install Up to this, it seems OK. However, the script mentioned above creates some system user for itself, "appends" some line so some file in /etc, makes some other changes, etc. Thus, when user removes this package with "pisi remove" command, pisi needs to run another script, such as: /usr/program_name/scripts/setup --remove so that all changes by --install command are taken back, the lines appended are removed, etc. then pisi can continue removing the rest. Unfortunately, whereever I looked, I couldn't see any def uninstall(): or def remove(): section in actions.py files and/or definitions. Could you please guide me on this? Thanks and Best Regards, Emre -------------- next part -------------- An HTML attachment was scrubbed... URL: http://liste.pardus.org.tr/pardus-devel/attachments/20080707/57b71c59/attachment.htm From dfisek at fisek.com.tr Mon Jul 7 03:31:08 2008 From: dfisek at fisek.com.tr (Doruk Fisek) Date: Mon, 7 Jul 2008 03:31:08 +0300 Subject: [Pardus-devel] is there a def uninstall(): section in actions.py? In-Reply-To: References: Message-ID: <20080707033108.ccc616b9.dfisek@fisek.com.tr> Mon, 7 Jul 2008 02:23:13 +0200, "Emre ERENOGLU" : > I'm trying to make a pisi package. The application in question needs > to run a script before starting its operation but after it's > installation. Therefore, after making the necessary builds and ... You can/should use comar scripts for pre/post install and remove operations. I don't know if there's documentation about them but you can find many package examples in the repo (search for ones with comar folders in them). > However, the script mentioned above creates some system user for System users aren't created in individual packages in Pardus. Instead, if a new system user is needed, it's added to the baselayout package with a specific uid. Doruk -- FISEK INSTITUTE - http://www.fisek.org.tr From erenoglu at gmail.com Mon Jul 7 03:44:26 2008 From: erenoglu at gmail.com (Emre ERENOGLU) Date: Mon, 7 Jul 2008 02:44:26 +0200 Subject: [Pardus-devel] is there a def uninstall(): section in actions.py? In-Reply-To: <20080707033108.ccc616b9.dfisek@fisek.com.tr> References: <20080707033108.ccc616b9.dfisek@fisek.com.tr> Message-ID: Hi, On 7/7/08, Doruk Fisek wrote: > > Mon, 7 Jul 2008 02:23:13 +0200, "Emre ERENOGLU" : > > > I'm trying to make a pisi package. The application in question needs > > to run a script before starting its operation but after it's > > installation. Therefore, after making the necessary builds and > > ... > You can/should use comar scripts for pre/post install and remove > operations. I don't know if there's documentation about them but you > can find many package examples in the repo (search for ones with comar > folders in them). OK, I'll check it, please let me know if you have some good example package :), of course, other than just installing/removing a service. This i know already :) > However, the script mentioned above creates some system user for > > System users aren't created in individual packages in Pardus. Instead, > if a new system user is needed, it's added to the baselayout package > with a specific uid. > This is not good. Why there is such limitation? The package I'm trying to make is the nxserver package, which absolutely creates a new user "nx" and does some other nasty things within its install script. Is there any "hack"? Worst case will be that package will install/uninstall, but other stuff will remain somewhere in /etc... -- Emre -------------- next part -------------- An HTML attachment was scrubbed... URL: http://liste.pardus.org.tr/pardus-devel/attachments/20080707/e9050c31/attachment.htm From erenoglu at gmail.com Mon Jul 7 13:36:22 2008 From: erenoglu at gmail.com (Emre ERENOGLU) Date: Mon, 7 Jul 2008 12:36:22 +0200 Subject: [Pardus-devel] is there a def uninstall(): section in actions.py? In-Reply-To: References: <20080707033108.ccc616b9.dfisek@fisek.com.tr> Message-ID: I guess I found a solution: This is an example package.py file in the comar folder: #!/usr/bin/python import os def postInstall(): os.system('wall "Installation complete!"') def preRemove(): os.system('wall "Removing Package"') I guess I can use this preRemove() function to issue the command that I want. Emre On Mon, Jul 7, 2008 at 2:44 AM, Emre ERENOGLU wrote: > Hi, > On 7/7/08, Doruk Fisek wrote: >> >> Mon, 7 Jul 2008 02:23:13 +0200, "Emre ERENOGLU" : >> >> > I'm trying to make a pisi package. The application in question needs >> > to run a script before starting its operation but after it's >> > installation. Therefore, after making the necessary builds and >> >> ... >> You can/should use comar scripts for pre/post install and remove >> operations. I don't know if there's documentation about them but you >> can find many package examples in the repo (search for ones with comar >> folders in them). > > > OK, I'll check it, please let me know if you have some good example package > :), of course, other than just installing/removing a service. This i know > already :) > > > However, the script mentioned above creates some system user for >> >> System users aren't created in individual packages in Pardus. Instead, >> if a new system user is needed, it's added to the baselayout package >> with a specific uid. >> > This is not good. Why there is such limitation? The package I'm trying to > make is the nxserver package, which absolutely creates a new user "nx" and > does some other nasty things within its install script. Is there any > "hack"? Worst case will be that package will install/uninstall, but other > stuff will remain somewhere in /etc... > > -- > Emre -- Emre -------------- next part -------------- An HTML attachment was scrubbed... URL: http://liste.pardus.org.tr/pardus-devel/attachments/20080707/b657dc6e/attachment.htm From jerome.schneider at gmail.com Fri Jul 11 16:26:45 2008 From: jerome.schneider at gmail.com (Jerome Schneider) Date: Fri, 11 Jul 2008 15:26:45 +0200 Subject: [Pardus-devel] Contrib repository doesn't like wxWinLL-3 license Message-ID: <200807111526.45392.jerome.schneider@gmail.com> Hi, I want to commit a package under the winWinLL-3 on the contrib repository but I'm lock by a pre-commit hook : /tmp/svnValidator_contrib:12: element License: Relax-NG validity error : Element License failed to validate content I think it's a contrib specific problem because the winWinLL-3 is already used by the wxGTK package : http://svn.pardus.org.tr/pardus/2008/programming/libs/wxGTK/pspec.xml Someone could fix this issue please. Regards -- J?r?me Schneider From dfisek at fisek.com.tr Fri Jul 11 16:43:30 2008 From: dfisek at fisek.com.tr (Doruk Fisek) Date: Fri, 11 Jul 2008 16:43:30 +0300 Subject: [Pardus-devel] Contrib repository doesn't like wxWinLL-3 license In-Reply-To: <200807111526.45392.jerome.schneider@gmail.com> References: <200807111526.45392.jerome.schneider@gmail.com> Message-ID: <20080711164330.e61d38df.dfisek@fisek.com.tr> Fri, 11 Jul 2008 15:26:45 +0200, Jerome Schneider : > I want to commit a package under the winWinLL-3 on the contrib > repository but I'm lock by a pre-commit > hook : /tmp/svnValidator_contrib:12: element License: Relax-NG > validity error : Element License failed to validate content Here you try to commit the license as winWinLL, yet the example shows a wxWinLL license. Sure it's not a typo? That's why those relax-ng validity checks are in place :). Doruk -- FISEK INSTITUTE - http://www.fisek.org.tr From jerome.schneider at gmail.com Sat Jul 12 16:07:25 2008 From: jerome.schneider at gmail.com (Jerome Schneider) Date: Sat, 12 Jul 2008 15:07:25 +0200 Subject: [Pardus-devel] Contrib repository doesn't like wxWinLL-3 license In-Reply-To: <20080711164330.e61d38df.dfisek@fisek.com.tr> References: <200807111526.45392.jerome.schneider@gmail.com> <20080711164330.e61d38df.dfisek@fisek.com.tr> Message-ID: <200807121507.26203.jerome.schneider@gmail.com> On Friday 11 July 2008 15:43:30 Doruk Fisek wrote: > Fri, 11 Jul 2008 15:26:45 +0200, Jerome Schneider > > : > > I want to commit a package under the winWinLL-3 on the contrib s/winWinLL-3/wxWinLL-3/ > > repository but I'm lock by a pre-commit > > hook : /tmp/svnValidator_contrib:12: element License: Relax-NG > > validity error : Element License failed to validate content > > Here you try to commit the license as winWinLL, yet the example shows a > wxWinLL license. Sure it's not a typo? I try with this : wxWinLL-3 so exactly the same that in the wxGTK package. From dfisek at fisek.com.tr Sat Jul 12 16:09:46 2008 From: dfisek at fisek.com.tr (Doruk Fisek) Date: Sat, 12 Jul 2008 16:09:46 +0300 Subject: [Pardus-devel] Contrib repository doesn't like wxWinLL-3 license In-Reply-To: <200807121507.26203.jerome.schneider@gmail.com> References: <200807111526.45392.jerome.schneider@gmail.com> <20080711164330.e61d38df.dfisek@fisek.com.tr> <200807121507.26203.jerome.schneider@gmail.com> Message-ID: <20080712160946.e423d2de.dfisek@fisek.com.tr> Sat, 12 Jul 2008 15:07:25 +0200, Jerome Schneider : > > Here you try to commit the license as winWinLL, yet the example > > shows a wxWinLL license. Sure it's not a typo? > I try with this : wxWinLL-3 so exactly the same > that in the wxGTK package. That shouldn't happen. The script validates against the license list here (and wxWinLL is in that list) : http://svn.pardus.org.tr/uludag/trunk/pisi/licenses/ Doruk -- FISEK INSTITUTE - http://www.fisek.org.tr From jerome.schneider at gmail.com Sat Jul 12 16:33:04 2008 From: jerome.schneider at gmail.com (Jerome Schneider) Date: Sat, 12 Jul 2008 15:33:04 +0200 Subject: [Pardus-devel] Contrib repository doesn't like wxWinLL-3 license In-Reply-To: <20080712160946.e423d2de.dfisek@fisek.com.tr> References: <200807111526.45392.jerome.schneider@gmail.com> <200807121507.26203.jerome.schneider@gmail.com> <20080712160946.e423d2de.dfisek@fisek.com.tr> Message-ID: <200807121533.04150.jerome.schneider@gmail.com> On Saturday 12 July 2008 15:09:46 Doruk Fisek wrote: > Sat, 12 Jul 2008 15:07:25 +0200, Jerome Schneider > > : > > > Here you try to commit the license as winWinLL, yet the example > > > shows a wxWinLL license. Sure it's not a typo? > > > > I try with this : wxWinLL-3 so exactly the same > > that in the wxGTK package. > > That shouldn't happen. The script validates against the license list > here (and wxWinLL is in that list) : > > http://svn.pardus.org.tr/uludag/trunk/pisi/licenses/ Ok I find the problem : Relax-ng is call for a delete so I can't delete a file which had a bad license... From jerome.schneider at gmail.com Sat Jul 12 16:38:18 2008 From: jerome.schneider at gmail.com (Jerome Schneider) Date: Sat, 12 Jul 2008 15:38:18 +0200 Subject: [Pardus-devel] Contrib repository doesn't like wxWinLL-3 license In-Reply-To: <200807121533.04150.jerome.schneider@gmail.com> References: <200807111526.45392.jerome.schneider@gmail.com> <20080712160946.e423d2de.dfisek@fisek.com.tr> <200807121533.04150.jerome.schneider@gmail.com> Message-ID: <200807121538.18722.jerome.schneider@gmail.com> On Saturday 12 July 2008 15:33:04 Jerome Schneider wrote: > On Saturday 12 July 2008 15:09:46 Doruk Fisek wrote: > > Sat, 12 Jul 2008 15:07:25 +0200, Jerome Schneider > > > > : > > > > Here you try to commit the license as winWinLL, yet the example > > > > shows a wxWinLL license. Sure it's not a typo? > > > > > > I try with this : wxWinLL-3 so exactly the same > > > that in the wxGTK package. > > > > That shouldn't happen. The script validates against the license list > > here (and wxWinLL is in that list) : > > > > http://svn.pardus.org.tr/uludag/trunk/pisi/licenses/ > > Ok I find the problem : Relax-ng is call for a delete so I can't delete a > file which had a bad license... Sorry it's not that. An other package add bad licenses. It's my fault... From tuxedup at gmx.co.uk Thu Jul 17 11:54:13 2008 From: tuxedup at gmx.co.uk (Michael Austin) Date: Thu, 17 Jul 2008 10:54:13 +0200 Subject: [Pardus-devel] Auto-ndiswrapper inclusion Message-ID: <20080717085721.62060@gmx.com> Hello All / Merhaba Herkese, I am not sure whether anyone has spotted this yet but, I have come accross a utility to automatically setup ndiswrapper.? The utility disables any currently active wireless drivers, downloads the relevant driver for your wireless device and installs it into ndiswrapper. Wether this works in Pardus I have no idea, but I thought I would bring it to people attention anyway.? Perhaps it is something to consider for future releases. Links; https://launchpad.net/auto-ndiswrapprer http://easylinuxwifi.org/ Thanks :) -------------- Michael?Austin? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://liste.pardus.org.tr/pardus-devel/attachments/20080717/61ddb045/attachment.htm From giovanni.scalisi at gmail.com Thu Jul 17 17:16:16 2008 From: giovanni.scalisi at gmail.com (Giovanni Scalisi) Date: Thu, 17 Jul 2008 15:16:16 +0100 Subject: [Pardus-devel] Auto-ndiswrapper inclusion In-Reply-To: <20080717085721.62060@gmx.com> References: <20080717085721.62060@gmx.com> Message-ID: Hi I think it's a good idea but how ndswriper can download the good driver if the connection internet is not enable ? On 7/17/08, Michael Austin wrote: > Hello All / Merhaba Herkese, > > > > I am not sure whether anyone has spotted this yet but, I have come accross > a utility to automatically setup ndiswrapper. The utility disables any > currently active wireless drivers, downloads the relevant driver for your > wireless device and installs it into ndiswrapper. > > > > Wether this works in Pardus I have no idea, but I thought I would bring it > to people attention anyway. Perhaps it is something to consider for > future releases. > > > > Links; > > > > https://launchpad.net/auto-ndiswrapprer > > > > http://easylinuxwifi.org/ > > > > Thanks :) > > > -------------- > Michael Austin < tuxedup at gmx.co.uk > > -- Giovanni Scalisi, giovanni.scalisi at gmail.com http://www.primmo-blog.fr && http://www.pardus-fr.org From tuxedup at gmx.co.uk Thu Jul 17 17:32:46 2008 From: tuxedup at gmx.co.uk (Michael Austin) Date: Thu, 17 Jul 2008 16:32:46 +0200 Subject: [Pardus-devel] Auto-ndiswrapper inclusion In-Reply-To: References: <20080717085721.62060@gmx.com> Message-ID: <20080717143308.30230@gmx.com> Merhaba / Selam / Howdy I would assume this would have to be carried out using a wired connection (if one was available). > >Hi > > > >I think it's a good idea but how ndswriper can download the good > >driver if the connection internet is not enable ? > > > >On 7/17/08, Michael Austin wrote: > > Hello All / Merhaba Herkese, > > > > > > > > I am not sure whether anyone has spotted this yet but, I have come > accross > > a utility to automatically setup ndiswrapper. The utility disables any > > currently active wireless drivers, downloads the relevant driver for > your > > wireless device and installs it into ndiswrapper. > > > > > > > > Wether this works in Pardus I have no idea, but I thought I would bring > it > > to people attention anyway. Perhaps it is something to consider for > > future releases. > > > > > > > > Links; > > > > > > > > https://launchpad.net/auto-ndiswrapprer > > > > > > > > http://easylinuxwifi.org/ > > > > > > > > Thanks :) > > > > > > -------------- > > Michael Austin < tuxedup at gmx.co.uk > > > > -------------- Michael?Austin? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://liste.pardus.org.tr/pardus-devel/attachments/20080717/9cb41257/attachment.htm From erdinc at pardus.org.tr Mon Jul 21 15:05:07 2008 From: erdinc at pardus.org.tr (Ali =?UTF-8?B?RXJkaW7DpyBLw7Zyb8SfbHU=?=) Date: Mon, 21 Jul 2008 15:05:07 +0300 Subject: [Pardus-devel] Auto-ndiswrapper inclusion In-Reply-To: <20080717143308.30230@gmx.com> References: <20080717085721.62060@gmx.com> <20080717143308.30230@gmx.com> Message-ID: <20080721150507.b453085b.erdinc@pardus.org.tr> Hi On Thu, 17 Jul 2008 16:32:46 +0200 "Michael Austin" wrote: | Merhaba / Selam / Howdy | | I would assume this would have to be carried out using a wired connection | (if one was available). I'll search about it and let you know soon, thanx -- N = R* ? fp ? ne ? fl ? fi ? fc ? L Ali Erdin? K?ro?lu < erdinc ? pardus.org.tr > Key ID: 5FF05035 @ pgp.mit.edu Web: http://www.erdinc.info -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 197 bytes Desc: not available Url : http://liste.pardus.org.tr/pardus-devel/attachments/20080721/4467da56/attachment.pgp From tuxedup at gmx.co.uk Mon Jul 21 22:51:37 2008 From: tuxedup at gmx.co.uk (Michael Austin) Date: Mon, 21 Jul 2008 21:51:37 +0200 Subject: [Pardus-devel] package request Message-ID: <20080721195506.304360@gmx.com> Hello / Merhaba / Selam Firstly I appologise if this is the wrong list to post this message to. I would like to request a package that is currently not pressent within the repositories (well I cannot find it).? I am requesting a package for encfs [1] I would package this myself, but it is too advanced for my level and may be better to be packged by a Pardus developer given it involves fuse and file systems etc. [1]http://www.arg0.net/encfs Thanks in advance -------------- Michael?Austin? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://liste.pardus.org.tr/pardus-devel/attachments/20080721/76d75291/attachment.htm From dfisek at fisek.com.tr Mon Jul 21 22:56:01 2008 From: dfisek at fisek.com.tr (Doruk Fisek) Date: Mon, 21 Jul 2008 22:56:01 +0300 Subject: [Pardus-devel] package request In-Reply-To: <20080721195506.304360@gmx.com> References: <20080721195506.304360@gmx.com> Message-ID: <20080721225601.f8b6c540.dfisek@fisek.com.tr> Mon, 21 Jul 2008 21:51:37 +0200, "Michael Austin" : > I would like to request a package that is currently not pressent > within the repositories (well I cannot find it).? I am requesting a > package for encfs [1] It has been recently packaged, it's currently in the test repository, looking for testers on its way to stable repo :) http://paketler.pardus.org.tr/pardus-2008-test/encfs-1.3.2.1-3-1.pisi Doruk -- FISEK INSTITUTE - http://www.fisek.org.tr From tuxedup at gmx.co.uk Mon Jul 21 23:12:44 2008 From: tuxedup at gmx.co.uk (Michael Austin) Date: Mon, 21 Jul 2008 22:12:44 +0200 Subject: [Pardus-devel] package request In-Reply-To: <20080721225601.f8b6c540.dfisek@fisek.com.tr> References: <20080721195506.304360@gmx.com> <20080721225601.f8b6c540.dfisek@fisek.com.tr> Message-ID: <20080721201244.26380@gmx.com> I shall try the package now :) I will report any errors etc. > I would like to request a package that is currently not pressent> within the repositories (well I cannot find it).? I am >requesting a> package for encfs [1]It has been recently packaged, it's currently in the test repository,looking for >testers on its way to stable repo :)http://paketler.pardus.org.tr/pardus-2008-test/encfs-1.3.2.1-3-1.pisiDoruk--FISEK >INSTITUTE - http://www.fisek.org.tr_______________________________________________Pardus-devel mailing listPardus->devel at pardus.org.trhttp://liste.uludag.org.tr/mailman/listinfo/pardus-devel -------------- Michael?Austin? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://liste.pardus.org.tr/pardus-devel/attachments/20080721/90f79f8b/attachment.htm From tuxedup at gmx.co.uk Tue Jul 22 00:12:47 2008 From: tuxedup at gmx.co.uk (Michael Austin) Date: Mon, 21 Jul 2008 23:12:47 +0200 Subject: [Pardus-devel] package request In-Reply-To: <20080721225601.f8b6c540.dfisek@fisek.com.tr> References: <20080721195506.304360@gmx.com> <20080721225601.f8b6c540.dfisek@fisek.com.tr> Message-ID: <20080721211247.116420@gmx.com> The package seems to work fine.? I have used the following guide for setting up an encfs directory; http://www.debuntu.org/2006/06/04/62-how-to-use-encrypted-directories-with-encfs-and-fuse Everything seems to work I have not found any bugs yet. > > I would like to request a package that is currently not pressent > > within the repositories (well I cannot find it).? I am requesting a > > package for encfs [1] > It has been recently packaged, it's currently in the test repository, > looking for testers on its way to stable repo :) > > http://paketler.pardus.org.tr/pardus-2008-test/encfs-1.3.2.1-3-1.pisi > > Doruk > > -- > FISEK INSTITUTE - http://www.fisek.org.tr > _______________________________________________ > Pardus-devel mailing list > Pardus-devel at pardus.org.tr > http://liste.uludag.org.tr/mailman/listinfo/pardus-devel -------------- Michael?Austin? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://liste.pardus.org.tr/pardus-devel/attachments/20080721/b962396a/attachment.htm From muhuk at muhuk.com Sun Jul 27 16:28:09 2008 From: muhuk at muhuk.com (=?UTF-8?B?QXRhbWVydCDDlmzDp2dlbg==?=) Date: Sun, 27 Jul 2008 16:28:09 +0300 Subject: [Pardus-devel] Python Packages Message-ID: <488C77E9.1070504@muhuk.com> Hi All, I have packaged (and tested) the following python libraries; jinja, beaker, decorator and nose. I am trying to package pylons with its dependencies. I hope this is not the wrong list, but is there anything I can do to help include these packages to official repositories? Regards, -- Sayg?lar?mla, Atamert ?l?gen -+- --+ +++ www.muhuk.com muhuk.blogspot.com muhuk at jabber.org From dfisek at fisek.com.tr Sun Jul 27 16:31:44 2008 From: dfisek at fisek.com.tr (Doruk Fisek) Date: Sun, 27 Jul 2008 16:31:44 +0300 Subject: [Pardus-devel] Python Packages In-Reply-To: <488C77E9.1070504@muhuk.com> References: <488C77E9.1070504@muhuk.com> Message-ID: <20080727163144.18a3bd86.dfisek@fisek.com.tr> Sun, 27 Jul 2008 16:28:09 +0300, Atamert ?l?gen : > I hope this is not the wrong list, but is there anything I can do to > help include these packages to official repositories? There's a review process for inclusion of packages in official repositories. Packages are submitted to a special svn repository called playground and then a review request is sent to the paketler at pardus.org.tr mailing list. Other developers look at your packages and make suggestions. Once two other developers agree that the package is ready for inclusion, you merge it to the appropriate repository (pardus or contrib depending on the package). If you don't already have an svn account, you should get one. In the meantime you can ask another developer to commit the package to svn for you. See the new developer guide of Pardus : http://www.pardus.org.tr/eng/documents/developer/new_developer.html (Hint : There's a Turkish version of it too, if you prefer that one) Doruk -- FISEK INSTITUTE - http://www.fisek.org.tr From tuxedup at gmx.co.uk Wed Jul 30 02:42:41 2008 From: tuxedup at gmx.co.uk (Michael Austin) Date: Wed, 30 Jul 2008 01:42:41 +0200 Subject: [Pardus-devel] package request - imendio planner Message-ID: <20080729235216.139700@gmx.com> Hello, Would it be poosible to have Imendio Planner packaged.? It appears to be far superior to Koffice Kplato. I have been trying to package it my self, but it is extremely troublesome.? I cannot get past ./configure. http://live.gnome.org/Planner -------------- Michael?Austin? -------------- next part -------------- An HTML attachment was scrubbed... URL: http://liste.pardus.org.tr/pardus-devel/attachments/20080730/08710b55/attachment.htm From dfisek at fisek.com.tr Wed Jul 30 10:19:38 2008 From: dfisek at fisek.com.tr (Doruk Fisek) Date: Wed, 30 Jul 2008 10:19:38 +0300 Subject: [Pardus-devel] package request - imendio planner In-Reply-To: <20080729235216.139700@gmx.com> References: <20080729235216.139700@gmx.com> Message-ID: <20080730101938.269485af.dfisek@fisek.com.tr> Wed, 30 Jul 2008 01:42:41 +0200, "Michael Austin" : > Would it be poosible to have Imendio Planner packaged.? It appears to > be far superior to Koffice Kplato. Can you enter this as a bug request in Bugzilla? There's a section called "_new package" under the "Paketler" section. http://bugs.pardus.org.tr Doruk -- FISEK INSTITUTE - http://www.fisek.org.tr