From: Dennis S. <sy...@yo...> - 2004-06-27 12:00:10
|
Duilio, >From a fresh checkout after doing: ./autogen.sh ; ./configure ; make dist Then extracting the package and running there ./configure ; make I'am having the following failures: bromodimethoxy:/usr/src/libvis-newcvs/test-packages/libvisual-0.1.5# make cd . && /bin/sh ./config.status config.h config.status: creating config.h make all-recursive make[1]: Entering directory `/usr/src/libvis-newcvs/test-packages/libvisual-0.1.5' Making all in libvisual make[2]: Entering directory `/usr/src/libvis-newcvs/test-packages/libvisual-0.1.5/libvisual' Makefile:288: .deps/lv_actor.Plo: No such file or directory Makefile:289: .deps/lv_audio.Plo: No such file or directory Makefile:290: .deps/lv_bin.Plo: No such file or directory Makefile:291: .deps/lv_bmp.Plo: No such file or directory Makefile:292: .deps/lv_event.Plo: No such file or directory Makefile:293: .deps/lv_fft.Plo: No such file or directory Makefile:294: .deps/lv_input.Plo: No such file or directory Makefile:295: .deps/lv_keysym.Plo: No such file or directory Makefile:296: .deps/lv_libvisual.Plo: No such file or directory Makefile:297: .deps/lv_list.Plo: No such file or directory Makefile:298: .deps/lv_log.Plo: No such file or directory Makefile:299: .deps/lv_morph.Plo: No such file or directory Makefile:300: .deps/lv_palette.Plo: No such file or directory Makefile:301: .deps/lv_plugin.Plo: No such file or directory Makefile:302: .deps/lv_songinfo.Plo: No such file or directory Makefile:303: .deps/lv_video.Plo: No such file or directory make[2]: *** No rule to make target `.deps/lv_video.Plo'. Stop. make[2]: Leaving directory `/usr/src/libvis-newcvs/test-packages/libvisual-0.1.5/libvisual' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory `/usr/src/libvis-newcvs/test-packages/libvisual-0.1.5' make: *** [all] Error 2 Do you have any idea what is going wrong ? |
From: Duilio J. P. <dp...@fc...> - 2004-06-27 15:24:57
|
> From a fresh checkout after doing: > > ./autogen.sh ; ./configure ; make dist > > Then extracting the package and running there ./configure ; make > > I'am having the following failures: > > bromodimethoxy:/usr/src/libvis-newcvs/test-packages/libvisual-0.1.5# > make > cd . && /bin/sh ./config.status config.h > config.status: creating config.h > make all-recursive > make[1]: Entering directory > `/usr/src/libvis-newcvs/test-packages/libvisual-0.1.5' > Making all in libvisual > make[2]: Entering directory > `/usr/src/libvis-newcvs/test-packages/libvisual-0.1.5/libvisual' > Makefile:288: .deps/lv_actor.Plo: No such file or directory > Makefile:289: .deps/lv_audio.Plo: No such file or directory > Makefile:290: .deps/lv_bin.Plo: No such file or directory > Makefile:291: .deps/lv_bmp.Plo: No such file or directory > Makefile:292: .deps/lv_event.Plo: No such file or directory > Makefile:293: .deps/lv_fft.Plo: No such file or directory > Makefile:294: .deps/lv_input.Plo: No such file or directory > Makefile:295: .deps/lv_keysym.Plo: No such file or directory > Makefile:296: .deps/lv_libvisual.Plo: No such file or directory > Makefile:297: .deps/lv_list.Plo: No such file or directory > Makefile:298: .deps/lv_log.Plo: No such file or directory > Makefile:299: .deps/lv_morph.Plo: No such file or directory > Makefile:300: .deps/lv_palette.Plo: No such file or directory > Makefile:301: .deps/lv_plugin.Plo: No such file or directory > Makefile:302: .deps/lv_songinfo.Plo: No such file or directory > Makefile:303: .deps/lv_video.Plo: No such file or directory > make[2]: *** No rule to make target `.deps/lv_video.Plo'. Stop. > make[2]: Leaving directory > `/usr/src/libvis-newcvs/test-packages/libvisual-0.1.5/libvisual' > make[1]: *** [all-recursive] Error 1 > make[1]: Leaving directory > `/usr/src/libvis-newcvs/test-packages/libvisual-0.1.5' > make: *** [all] Error 2 > > > Do you have any idea what is going wrong ? Yes, I known about this problem. The .deps directory must be removed from the CVS, because it contains cached files. We must remove every of the *.Plo files and after that we must update and checkout with the -P option (prune option, this remove directories that are empty after being updated). I have this on my ~/.cvsrc: -z3 update -dP rdiff -u diff -ubBwpN checkout -P This makes life better :-) If you want to make the release, don't worry about the CVS for now, just 'make dist' on your working copy, then untarred, then configure/compile/install the fresh directory, and if everything works well the release is ready. I have checked this way and it works. Duilio. |
From: Dennis S. <sy...@yo...> - 2004-06-27 15:52:26
|
Any other things I should keep in mind while releasing? --enable-examples and for libvisual-plugins enabling the disabled plugins right ? Cheers, Dennis On Sun, 2004-06-27 at 12:27 -0300, Duilio Javier Protti wrote: > -z3 > update -dP > rdiff -u > diff -ubBwpN > checkout -P |
From: Dennis S. <sy...@yo...> - 2004-06-27 16:09:51
|
Well this was after doing make dist, untarring etc. As in this is the package that should be in the release... On Sun, 2004-06-27 at 12:27 -0300, Duilio Javier Protti wrote: > > From a fresh checkout after doing: > > > > ./autogen.sh ; ./configure ; make dist > > > > Then extracting the package and running there ./configure ; make > > > > I'am having the following failures: > > > > bromodimethoxy:/usr/src/libvis-newcvs/test-packages/libvisual-0.1.5# > > make > > cd . && /bin/sh ./config.status config.h > > config.status: creating config.h > > make all-recursive > > make[1]: Entering directory > > `/usr/src/libvis-newcvs/test-packages/libvisual-0.1.5' > > Making all in libvisual > > make[2]: Entering directory > > `/usr/src/libvis-newcvs/test-packages/libvisual-0.1.5/libvisual' > > Makefile:288: .deps/lv_actor.Plo: No such file or directory > > Makefile:289: .deps/lv_audio.Plo: No such file or directory > > Makefile:290: .deps/lv_bin.Plo: No such file or directory > > Makefile:291: .deps/lv_bmp.Plo: No such file or directory > > Makefile:292: .deps/lv_event.Plo: No such file or directory > > Makefile:293: .deps/lv_fft.Plo: No such file or directory > > Makefile:294: .deps/lv_input.Plo: No such file or directory > > Makefile:295: .deps/lv_keysym.Plo: No such file or directory > > Makefile:296: .deps/lv_libvisual.Plo: No such file or directory > > Makefile:297: .deps/lv_list.Plo: No such file or directory > > Makefile:298: .deps/lv_log.Plo: No such file or directory > > Makefile:299: .deps/lv_morph.Plo: No such file or directory > > Makefile:300: .deps/lv_palette.Plo: No such file or directory > > Makefile:301: .deps/lv_plugin.Plo: No such file or directory > > Makefile:302: .deps/lv_songinfo.Plo: No such file or directory > > Makefile:303: .deps/lv_video.Plo: No such file or directory > > make[2]: *** No rule to make target `.deps/lv_video.Plo'. Stop. > > make[2]: Leaving directory > > `/usr/src/libvis-newcvs/test-packages/libvisual-0.1.5/libvisual' > > make[1]: *** [all-recursive] Error 1 > > make[1]: Leaving directory > > `/usr/src/libvis-newcvs/test-packages/libvisual-0.1.5' > > make: *** [all] Error 2 > > > > > > Do you have any idea what is going wrong ? > > Yes, I known about this problem. The .deps directory must be > removed from the CVS, because it contains cached files. We must > remove every of the *.Plo files and after that we must update > and checkout with the -P option (prune option, this remove > directories that are empty after being updated). I have this on > my ~/.cvsrc: > > -z3 > update -dP > rdiff -u > diff -ubBwpN > checkout -P > > This makes life better :-) > > If you want to make the release, don't worry about the CVS for > now, just 'make dist' on your working copy, then untarred, then > configure/compile/install the fresh directory, and if everything > works well the release is ready. I have checked this way and > it works. > > > Duilio. > > > > > ------------------------------------------------------- > This SF.Net email sponsored by Black Hat Briefings & Training. > Attend Black Hat Briefings & Training, Las Vegas July 24-29 - > digital self defense, top technical experts, no vendor pitches, > unmatched networking opportunities. Visit www.blackhat.com > _______________________________________________ > Libvisual-devel mailing list > Lib...@li... > https://lists.sourceforge.net/lists/listinfo/libvisual-devel |
From: Duilio J. P. <dp...@fc...> - 2004-06-27 18:23:13
|
> Well this was after doing make dist, untarring etc. As in this is the > package that should be in the release... Oh, but you the people must not run autogen.sh! autogen.sh script must not be on the distro package at all. End users must only run ./configure. Duilio. |
From: Dennis S. <sy...@yo...> - 2004-06-27 20:28:19
|
I know i know, you're not understanding me! :) 1. Within the CVS directory I ran make dist. The resulting package I unpacked and did ./configure ; make in This is where i get errors regarding the .deps directory. Thus I can't release tonight :) It would be good if we could solve this tomorrow. Cheers, Dennis On Sun, 2004-06-27 at 15:25 -0300, Duilio Javier Protti wrote: > > Well this was after doing make dist, untarring etc. As in this is the > > package that should be in the release... > > Oh, but you the people must not run autogen.sh! > autogen.sh script must not be on the distro package > at all. End users must only run ./configure. > > > Duilio. > > > > > ------------------------------------------------------- > This SF.Net email sponsored by Black Hat Briefings & Training. > Attend Black Hat Briefings & Training, Las Vegas July 24-29 - > digital self defense, top technical experts, no vendor pitches, > unmatched networking opportunities. Visit www.blackhat.com > _______________________________________________ > Libvisual-devel mailing list > Lib...@li... > https://lists.sourceforge.net/lists/listinfo/libvisual-devel |
From: Duilio J. P. <dp...@fc...> - 2004-06-28 02:36:22
|
> I know i know, you're not understanding me! :) > > 1. Within the CVS directory I ran make dist. > > The resulting package I unpacked and did ./configure ; make in > This is where i get errors regarding the .deps directory. Thus I can't > release tonight :) It would be good if we could solve this tomorrow. > > Cheers, > Dennis You make 'cvs co' or 'cvs update'? Because I have heard somewhere that CVS on sf.net doesn't actualize things well, and is different to make co or update (for a week!). I suggest you try this (within your working directory): make distclean cvs update mkdir BUILD cd BUILD ../configure make make install I have take a look at the CVS, and the ./deps/* files are not there. I have tried the above and it works well. However, if you have any problem, I can send you a distro package for to make the release. Then we can keep trying to resolve the problem, even online as we did the other day, if you like. Duilio. |
From: Gustavo S. B. <gu...@gs...> - 2004-06-29 00:18:48
|
Em Sunday 27 June 2004 23:38, Duilio Javier Protti escreveu: > > I know i know, you're not understanding me! :) > > > > 1. Within the CVS directory I ran make dist. > > > > The resulting package I unpacked and did ./configure ; make in > > This is where i get errors regarding the .deps directory. Thus I can't > > release tonight :) It would be good if we could solve this tomorrow. > > > > Cheers, > > Dennis > > You make 'cvs co' or 'cvs update'? Because I have heard > somewhere that CVS on sf.net doesn't actualize things > well, and is different to make co or update (for a week!). > I always use the SSH version (-d:ext:...). It's always up2date. The other methods (pserver) are against backups, so older. - Gustavo Sverzut Barbieri --------------------------------------- Engenharia de Computacao 2001 - UNICAMP GPSL - Grupo Pro Software Livre Cell..: +55 (19) 9165 8010 Jabber: gsb...@ja... ICQ#: 17249123 GPG: 0xB640E1A2 @ wwwkeys.pgp.net |
From: Dennis S. <sy...@yo...> - 2004-06-29 04:55:30
|
On Mon, 2004-06-28 at 21:36 -0300, Gustavo Sverzut Barbieri wrote: > Em Sunday 27 June 2004 23:38, Duilio Javier Protti escreveu: > > > I know i know, you're not understanding me! :) > > > > > > 1. Within the CVS directory I ran make dist. > > > > > > The resulting package I unpacked and did ./configure ; make in > > > This is where i get errors regarding the .deps directory. Thus I can't > > > release tonight :) It would be good if we could solve this tomorrow. > > > > > > Cheers, > > > Dennis > > > > You make 'cvs co' or 'cvs update'? Because I have heard > > somewhere that CVS on sf.net doesn't actualize things > > well, and is different to make co or update (for a week!). > > > > I always use the SSH version (-d:ext:...). It's always up2date. The other > methods (pserver) are against backups, so older. I'm also using the SSH version. I've developed a serious flu so I'll be taking it easy for the day, we have to look at it asap tho. Thanks, Dennis |
From: Dennis S. <sy...@yo...> - 2004-06-29 09:04:41
|
On Sun, 2004-06-27 at 23:38 -0300, Duilio Javier Protti wrote: > However, if you have any problem, I can send you a > distro package for to make the release. Then we can > keep trying to resolve the problem, even online as > we did the other day, if you like. I've fixed it, a complete clean checkout helped it. I'm preparing to do a release ! Thanks and cheers, Dennis |