[aur-general] Fwd: Re: Linux Manga Downloader

2012-05-08 Thread Jorge Barroso
Thanks Jesse :) I've already installed it on my PC and it works, so I've started making the PKGBUILD with your help and the steps I did. I've wrote all the information, and by now that's what I have: # Maintainer: Jorge pkgname=linux-manga-downloader pkgver=0.2.0.1-5 pkgrel=1 pkgdesc="A manga do

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-05-08 Thread Chris Sakalis
Hello, first of all, is should be something like "cp zerochan $pkgdir/usr/local/bin/zerochan". Otherwise the build will fail. Second, I think install is better than cp in this occasion, since you can set the permission bits while copying. For example install -m755 zerochan $pkgdir/usr/local/bin/ze

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-05-08 Thread Jesse Juhani Jaara
ti, 2012-05-08 kello 18:16 +0200, Jorge Barroso kirjoitti: >pkgver=0.2.0.1-5 If I'm not completely mistaken '-' is not allowed in the version string. set the version to 0.2.0.1_5Beta. And then add another variable. _rawversion=0.2.0.1-5 > pkgdesc="A manga downloader for linux, it allows fownloads f

Re: [aur-general] Fwd: :Re Linux Manga Downloader

2012-05-08 Thread Jorge Barroso
Thanks to both you two Jesse and Chris, I won't copy the both replies here to make the message shorter. I did at first what Chris told me about the install option, I liked it, but, at least BY NOW, I'll use the chmod/copy combination, because I'm not new, but I know less things than that I thought,

Re: [aur-general] Fwd: :Re Linux Manga Downloader

2012-05-08 Thread Chris Sakalis
On Tue, May 8, 2012 at 10:03 PM, Jorge Barroso wrote: > Thanks to both you two Jesse and Chris, I won't copy the both replies here > to make the message shorter. I did at first what Chris told me about the > install option, I liked it, but, at least BY NOW, I'll use the chmod/copy > combination, b

Re: [aur-general] Fwd: :Re Linux Manga Downloader

2012-05-08 Thread Jesse Juhani Jaara
ti, 2012-05-08 kello 21:03 +0200, Jorge Barroso kirjoitti: > source= > http://code.google.com/${pkgname}/downloads/detail?name=${pkgname}_${pkgver}_all.deb > ) there is the starting ( missing in there ^_^ > tar -xfzv data.tar.gz Nothing seroius but 'xf' is enought - is not needed, nor is z, tar i

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-05-08 Thread Jorge Barroso
No problem. >*From the man page: "sed - stream editor for filtering and transforming >text".*Basically it's a non-interactive text editor. sed 's|usr/local|usr|' -i "${pkgdir}/usr/bin"/* changes every occurrence of "usr/local" with "usr" in all the files in ${pkgdir}/usr/bin. But only the first o

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-05-08 Thread Jesse Juhani Jaara
ti, 2012-05-08 kello 23:14 +0200, Jorge Barroso kirjoitti: > Ok, I got it!! And it works making sudo pacman -U etc. > This is the final PKGBUILD: > # Maintainer: Jorge > pkgname=linux-manga-downloader > pkgver=('0.2.0.1') > _rawversion=('0.2.0.1') > pkgrel='5Beta' pkgrel is kidn of like == the ver

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-05-08 Thread Jorge Barroso
Glad to be help. ^_^ Here have a *cookie* you've done great. A small note about mails... as Chris alredy mentioned. Your mails work well in gmail it seems. Atleast my Android phones regular gmail app puts all of these under same thread, but my dekstop mail client gets them as individual mails, br

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-05-08 Thread Jesse Juhani Jaara
ti, 2012-05-08 kello 23:55 +0200, Jorge Barroso kirjoitti: > I submitted the package and it can already be installed from aur. You forgot to fix the pkgrel and _rawversion. Please fix those and reupload with pkgrel=2. > Talking about the mails, I'm using the desktop version aswell I take this

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-05-08 Thread Jorge Barroso
> > Message: 7 > Date: Wed, 09 May 2012 01:05:47 +0300 > From: Jesse Juhani Jaara > To: aur-general@archlinux.org > Subject: Re: [aur-general] Fwd: Re: Linux Manga Downloader > Message-ID: <1336514747.28432.66.camel@localhost.localdomain> > Content-Type: text/plain;

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-05-08 Thread Jesse Juhani Jaara
ke, 2012-05-09 kello 00:24 +0200, Jorge Barroso kirjoitti: > Ok, I'm trying now with the method you have said :) I took the digest, > clicked on the arrow and answered your message. My mail client (Evolution) still isn't happy with this BUT1 Fix the pkgrel, it should only contain numb

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-05-09 Thread Jorge Barroso
> My mail client (Evolution) still isn't happy with this >Fix the pkgrel, it should only contain numbers. It is the version of the PKGBUILD file, and has nothing to do with the application version. pkgver is there for that. -

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-05-09 Thread Chris Sakalis
On Wed, May 9, 2012 at 1:11 PM, Jorge Barroso wrote: >> My mail client (Evolution) still isn't happy with this > >>Fix the pkgrel, it should only contain numbers. > It is the version of the PKGBUILD file, and has nothing > to do with the application version. pkgver is there > for that. > >

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-05-09 Thread Jorge Barroso
Actually, $pkgver can contain letters. So you can set it as "0.2.0.1.5Beta" or "0.2.0.1Beta5" or something similar without the dash. And then set the proper $pkgrel for your PKGBUILD. -- Ok, I

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-05-09 Thread Chris Sakalis
On Wed, May 9, 2012 at 1:38 PM, Jorge Barroso wrote: > Actually, $pkgver can contain letters. So you can set it as > "0.2.0.1.5Beta" or "0.2.0.1Beta5" or something similar without the > dash. And then set the proper $pkgrel for your PKGBUILD. > > ---

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-05-09 Thread Jorge Barroso
2012/5/9 Chris Sakalis > On Wed, May 9, 2012 at 1:38 PM, Jorge Barroso > wrote: > > Actually, $pkgver can contain letters. So you can set it as > > "0.2.0.1.5Beta" or "0.2.0.1Beta5" or something similar without the > > dash. And then set the proper $pkgrel for your PKGBUILD. > > > > > --

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-05-09 Thread José Valecillos
Hi Jorge, First af all, Thanks for submit linux-manga-downloader, I think it's a nice app. But, I wonder: Why about contact app's developer?. May be he would share the source code of LMD, the app has GPL licence after all. In this way, it would be easier make a package. Best Regards, 2012/5/9 Jo

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-05-09 Thread Jorge Barroso
Yeah jaja, I'be already sent him a mail to correct some bugs, help with the English translation and to ask him for the source code, so, I'm waiting an answer pal, thanks for your greetings and hope you like it, if you have an issue, feedback, problem, comment, or whatever contact me or the develope

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-06-06 Thread Hugo Osvaldo Barrera
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 2012-05-08 14:42, Jesse Juhani Jaara wrote: > ti, 2012-05-08 kello 18:16 +0200, Jorge Barroso kirjoitti: > All that could be simplified into > --- 1. cd "${srcdir}" 2. tar xf > data.tar.gz 3. mkdir -p "${pkgdir

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-06-06 Thread Jorge Barroso
2012/6/6 Hugo Osvaldo Barrera > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 2012-05-08 14:42, Jesse Juhani Jaara wrote: > > ti, 2012-05-08 kello 18:16 +0200, Jorge Barroso kirjoitti: > > All that could be simplified into > > --- 1. cd "${srcdir}" 2.

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-06-06 Thread rafael ff1
2012/6/6 Jorge Barroso : > 2012/6/6 Hugo Osvaldo Barrera > >> -BEGIN PGP SIGNED MESSAGE- >> Hash: SHA1 >> >> On 2012-05-08 14:42, Jesse Juhani Jaara wrote: >> > ti, 2012-05-08 kello 18:16 +0200, Jorge Barroso kirjoitti: >> > All that could be simplified into >> > -

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-06-06 Thread Jorge Barroso
2012/6/6 rafael ff1 > >option: '-o' or '--owner=OWNER' > > >See this and more in the man page > Ok, thanks, but the problem is that I can't set an specific username, because it has to be the installer username and trying with $USER it equally sets root as user... I think (y tried with chown in

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-06-06 Thread rafael ff1
2012/6/6 Jorge Barroso : > 2012/6/6 rafael ff1 > >> >option: '-o' or '--owner=OWNER' >> >> >See this and more in the man page >> > > Ok, thanks, but the problem is that I can't set an specific username, > because it has to be  the installer username and trying with $USER it > equally sets root as

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-06-06 Thread Jorge Barroso
2012/6/6 rafael ff1 > 2012/6/6 Jorge Barroso : > > 2012/6/6 rafael ff1 > > > >> >option: '-o' or '--owner=OWNER' > >> > >> >See this and more in the man page > >> > > > > Ok, thanks, but the problem is that I can't set an specific username, > > because it has to be the installer username and tr

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-06-07 Thread rafael ff1
2012/6/6 Jorge Barroso : > 2012/6/6 rafael ff1 > >> 2012/6/6 Jorge Barroso : >> > 2012/6/6 rafael ff1 >> > >> >> >option: '-o' or '--owner=OWNER' >> >> >> >> >See this and more in the man page >> >> >> > >> > Ok, thanks, but the problem is that I can't set an specific username, >> > because it ha

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-06-07 Thread Jorge Barroso
2012/6/7 rafael ff1 > >I was debugging your PKGBUILD and how the behavior of LDM, and I was > >not able to find any problem related to user permissions. Maybe you > >can enlighten me. > > >Only problem I figure out is that when the ~/.LMD do not exists, > >running /usr/bin/lmd will report errors

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-06-07 Thread rafael ff1
2012/6/7 Jorge Barroso : > 2012/6/7 rafael ff1 > > >> >I was debugging your PKGBUILD and how the behavior of LDM, and I was >> >not able to find any problem related to user permissions. Maybe you >> >can enlighten me. >> >> >Only problem I figure out is that when the ~/.LMD do not exists, >> >runn

Re: [aur-general] Fwd: Re: Linux Manga Downloader

2012-06-07 Thread Jorge Barroso
2012/6/7 rafael ff1 > >yeah, I gave you this idea. ;) It has some problems, as LMD tried to > >source ~/.LMD/options (in line 5) before this piece of source. Also, > >why call "lmd -reconf" instead "lmd -reconf"? - not one of my > >brightest idea. > * Jajaja, don't worry, it's a better idea than