Re: updating alpine port to new version (as a maintainer)

2015-01-20 Thread Marco Beishuizen
On Sun, 18 Jan 2015, the wise Kurt Jaeger wrote: Hi, Still trying to make the new alpine port work. There is one error message left: === Checking for items in pkg-plist which are not in STAGEDIR Error: Missing: %%DOCSDIR%%/tech-notes/tech-notes.txt === Error: Plist issues found. *** Error

Re: updating alpine port to new version (as a maintainer)

2015-01-20 Thread Kurt Jaeger
Hi! === Checking for items in pkg-plist which are not in STAGEDIR Error: Missing: %%DOCSDIR%%/tech-notes/tech-notes.txt === Error: Plist issues found. *** Error code 1 [...] Have you tried removing the right line from the plist file ? The remaining plist file: [...] The last line

Re: updating alpine port to new version (as a maintainer)

2015-01-20 Thread Kurt Jaeger
Hi! Still trying to make the new alpine port work. There is one error message left: === Checking for items in pkg-plist which are not in STAGEDIR Error: Missing: %%DOCSDIR%%/tech-notes/tech-notes.txt === Error: Plist issues found. *** Error code 1 So, the install did not put one file

Re: updating alpine port to new version (as a maintainer)

2015-01-20 Thread Marco Beishuizen
On Tue, 20 Jan 2015, the wise Kurt Jaeger wrote: Hi! Still trying to make the new alpine port work. There is one error message left: === Checking for items in pkg-plist which are not in STAGEDIR Error: Missing: %%DOCSDIR%%/tech-notes/tech-notes.txt === Error: Plist issues found. *** Error

Re: updating alpine port to new version (as a maintainer)

2015-01-18 Thread Kurt Jaeger
Hi! Compressing man pages (compress-man) Running Q/A tests (stage-qa) Checking for pkg-plist issues (check-plist) === Parsing plist === Checking for items in STAGEDIR missing from pkg-plist Error: Orphaned: %%PORTDOCSDOCSDIR%%/tech-notes.txt === Checking for items in

Re: updating alpine port to new version (as a maintainer)

2015-01-17 Thread Kurt Jaeger
Hi! # then I check the build and stuff on my test system (10.1-amd64) rm -rf work make check-plist [ some iterations later ] When I do the make check-plist I get an error: === License APACHE20 accepted by the user === Found saved configuration for alpine-2.11_2 === alpine-2.20

Re: updating alpine port to new version (as a maintainer)

2015-01-17 Thread Scot Hetzel
On Sat, Jan 17, 2015 at 1:48 PM, Marco Beishuizen mb...@xs4all.nl wrote: On Sat, 17 Jan 2015, the wise Kurt Jaeger wrote: I normally proceed by moving all non-applying patches into a seperate directory and try if the build works: cd ~/myp/mail/alpine mkdir OLD mv files/patch-alpine__alpine.c

Re: updating alpine port to new version (as a maintainer)

2015-01-17 Thread Marco Beishuizen
On Sat, 17 Jan 2015, the wise Kurt Jaeger wrote: I normally proceed by moving all non-applying patches into a seperate directory and try if the build works: cd ~/myp/mail/alpine mkdir OLD mv files/patch-alpine__alpine.c OLD/ # and retry rm -rf work make check-plist If the patch is required

Re: updating alpine port to new version (as a maintainer)

2015-01-17 Thread Scot Hetzel
On Sat, Jan 17, 2015 at 2:54 PM, Marco Beishuizen mb...@xs4all.nl wrote: On Sat, 17 Jan 2015, the wise Scot Hetzel wrote: On line 41 of the current ports Makefile, it shows tech-notes.txt: 41 PORTDOCSdoc= brochure.txt tech-notes.txt Then on lines 163-164 in the post-install stage it tries

Re: updating alpine port to new version (as a maintainer)

2015-01-17 Thread Ben Woods
Good news - that means the port is now compiling fine, and the last thing you need to do is fix the pkg-plist file to ensure it accurately reflects all the files the port will install: # cd PORTDIR # make clean # make # make makeplist That will dump the new plist to the console standard output,

Re: updating alpine port to new version (as a maintainer)

2015-01-17 Thread Marco Beishuizen
On Sat, 17 Jan 2015, the wise Scot Hetzel wrote: Are you using the correct version of the maildir.patch.gz. If you look on line 116 of the original Makefile, it shows: 116 PATCH_SITES= http://patches.freeiz.com/alpine/patches/alpine-2.11/ 117 PATCHFILES+= maildir.patch.gz You should change

Re: updating alpine port to new version (as a maintainer)

2015-01-17 Thread Marco Beishuizen
On Sat, 17 Jan 2015, the wise Scot Hetzel wrote: Well, problems with the maildir patch seem to have dissappeared, but I'm not there yet. Alpine compiles, but the problems with the plist remain. I'll look further into the Makefile and see if I can solve this. The current error is:

Re: updating alpine port to new version (as a maintainer)

2015-01-17 Thread Marco Beishuizen
On Sat, 17 Jan 2015, the wise Scot Hetzel wrote: On line 41 of the current ports Makefile, it shows tech-notes.txt: 41 PORTDOCSdoc= brochure.txt tech-notes.txt Then on lines 163-164 in the post-install stage it tries to install them: 163 .for f in ${PORTDOCSdoc} 164 ${INSTALL_MAN}

updating alpine port to new version (as a maintainer)

2015-01-17 Thread Marco Beishuizen
Hi, I am the port maintainer of the alpine port, nevertheless not a very experienced one. The alpine mailer has recently been updated from 2.11 to 2.20 and I as a maintainer would like to update the port to the new version. According to the porter's handbook I have to use diff to create a

Re: updating alpine port to new version (as a maintainer)

2015-01-17 Thread Kurt Jaeger
Hi! I am the port maintainer of the alpine port, nevertheless not a very experienced one. The alpine mailer has recently been updated from 2.11 to 2.20 and I as a maintainer would like to update the port to the new version. According to the porter's handbook I have to use diff to

Re: updating alpine port to new version (as a maintainer)

2015-01-17 Thread Marco Beishuizen
On Sat, 17 Jan 2015, the wise Kurt Jaeger wrote: Hi Kurt, Thanks for helping. Unfortunately not all things went as planned. # fix distinfo, make makesum does this for mw make makesum This looked fine. # then I check the build and stuff on my test system (10.1-amd64) rm -rf work make