Re: question on spec file for building rpm with source file that includes python and C code

2019-03-10 Thread Globe Trotter
Thanks very much! I will rewrite my spec as per your suggestions and the guidelines. Thanks again! On Sunday, March 10, 2019, 12:56:37 PM CDT, Todd Zullinger wrote: Hi, Globe Trotter wrote: > Thanks, and that takes care of it. Glad that helped. > Thanks also for letting me know of

Re: question on spec file for building rpm with source file that includes python and C code

2019-03-10 Thread Todd Zullinger
Hi, Globe Trotter wrote: > Thanks, and that takes care of it. Glad that helped. > Thanks also for letting me know of preferred options. I am > quite new to this and so any advice is always helpful. > > I will see if the copr maintainer wants to host my build. > fetchmail 7.0.0 alpha has suppo

Re: question on spec file for building rpm with source file that includes python and C code

2019-03-10 Thread Globe Trotter
On Sunday, March 10, 2019, 12:11:28 PM CDT, Todd Zullinger wrote: Hi, > You want "PYTHON=:", not "PYTHON-:".  The goal is to set the PYTHON variable.  > I tend to put such definitions before the configure call, e.g.: >    %build  >   autoreconf -if  >   export PYTHON=:  >  %configu

Re: question on spec file for building rpm with source file that includes python and C code

2019-03-10 Thread Todd Zullinger
Hi, Globe Trotter wrote: > Here is my fetchmail.spec: [...] > %build > autoreconf -if > %configure PYTHON-: --enable-POP3 --enable-IMAP [...] You want "PYTHON=:", not "PYTHON-:". The goal is to set the PYTHON variable. I tend to put such definitions before the configure call, e.g.: %build

Re: question on spec file for building rpm with source file that includes python and C code

2019-03-10 Thread Globe Trotter
Hi, thanks for this! I am sorry I should get out of Yahoo! Mail: they do not allow general setting for quotes of replies, from what I can find out, so I will include things manually from now on. >On Sunday, March 10, 2019, 10:34:34 AM CDT, Todd Zullinger >wrote: >  Hi, > [BTW, somethin

Re: question on spec file for building rpm with source file that includes python and C code

2019-03-10 Thread Todd Zullinger
Hi, [BTW, something is wrong with your mail client's quoting. It is very hard to read your replies when your reply and the text to which you are replying to are at the same quote level.] Globe Trotter wrote: > Thanks! I see. Actually, I am not that keen on packaging > fetchmailconf. I think that

Re: question on spec file for building rpm with source file that includes python and C code

2019-03-10 Thread Globe Trotter
On Sunday, March 10, 2019, 9:09:57 AM CDT, Samuel Sieb wrote: On 3/10/19 6:24 AM, Globe Trotter wrote: >    Debian -- Details of package fetchmailconf in jessie > > fetchmail configurator > > > > Thank you. Can you please tell me w

Re: question on spec file for building rpm with source file that includes python and C code

2019-03-10 Thread Samuel Sieb
On 3/10/19 6:24 AM, Globe Trotter wrote: Debian -- Details of package fetchmailconf in jessie fetchmail configurator Thank you. Can you please tell me what to do here? Sorry I did not get it. Thanks! I was just suggesting that you could

Re: question on spec file for building rpm with source file that includes python and C code

2019-03-10 Thread Samuel Sieb
On 3/10/19 6:39 AM, Globe Trotter wrote: Looking at the details from the past (in the %changelog), in the past Fedora has not packaged it (since 2012). Anyway, why does not the following exclude it? rm -f $RPM_BUILD_ROOT%{_bindir}/fetchmailconf* rm -f $RPM_BUILD_ROOT%{_mandir}/man1/fetchmailco

Re: question on spec file for building rpm with source file that includes python and C code

2019-03-10 Thread Globe Trotter
On Sunday, March 10, 2019, 1:35:59 AM CST, Samuel Sieb wrote: On 3/9/19 8:35 PM, Globe Trotter wrote: > Here is the eror message I am getting (expected since I do not know how > to handle separate python code). > > error: Installed (but unpackaged) file(s) found: >     /usr/lib/pyth

Re: question on spec file for building rpm with source file that includes python and C code

2019-03-10 Thread Globe Trotter
On Sunday, March 10, 2019, 1:35:59 AM CST, Samuel Sieb wrote: On 3/9/19 8:35 PM, Globe Trotter wrote: > Here is the eror message I am getting (expected since I do not know how > to handle separate python code). > > error: Installed (but unpackaged) file(s) found: >     /usr/lib/pyth

Re: question on spec file for building rpm with source file that includes python and C code

2019-03-09 Thread Samuel Sieb
On 3/9/19 8:35 PM, Globe Trotter wrote: Here is the eror message I am getting (expected since I do not know how to handle separate python code). error: Installed (but unpackaged) file(s) found:    /usr/lib/python2.7/site-packages/fetchmailconf.py    /usr/lib/python2.7/site-packages/fetchmailc

question on spec file for building rpm with source file that includes python and C code

2019-03-09 Thread Globe Trotter
Hello, I am a modest Fedora contributor and have packaged both C and python code separately. I would like to package the fetchmail 7.0.0 alpha6 code so I was working off the existing spec file. However, I am not sure how to handle the python files which have been included. I was wondering if I c