Andreas Rottmann | 6 Sep 00:21
Picon
Picon
Gravatar

Re: Debian bug 159367

Ed Sweetman <ed.sweetman <at> wmich.edu> writes:

> Andreas Rottmann wrote:
> > "Kristian G. Kvilekval" <kris <at> cs.ucsb.edu> writes:
> >
> >> This is fixed in CVS.
> > I'm thinking about basing the next zinf debian package on CVS. Is
> > this
> > a good idea? I also have a problem with CVS: how do i create a tarball
> > from the CVS source? 'make dist' doesn't work... :-/
> > Regards, Andy
> 
> distro binary packaging is one of the things on the "omg can someone
> fix this" list.  Both redhat and debian people scream and yell about
> how ugly it is but i've yet to see any cleanup patches submitted or
> clear directions on what needs to be fixed
> 
> 
I don't quite understand - I justed wanted to knwo how i can obtain a
*source* tarball from the checked out CVS sources. Packages using
automake have a make dist, which creates a source tarball.

Andy
--

-- 
Andreas Rottmann         | Dru <at> ICQ        | 118634484 <at> ICQ | a.rottmann <at> gmx.at
http://www.8ung.at/rotty | GnuPG Key: http://www.8ung.at/rotty/gpg.asc
Fingerprint              | DFB4 4EB4 78A4 5EEE 6219  F228 F92F CFC5 01FD 5B62

-------------------------------------------------------
This sf.net email is sponsored by: OSDN - Tired of that same old
(Continue reading)

Ed Sweetman | 6 Sep 00:38
Favicon

Re: Debian bug 159367

Andreas Rottmann wrote:
> Ed Sweetman <ed.sweetman <at> wmich.edu> writes:
> 
> 
>>Andreas Rottmann wrote:
>>
>>>"Kristian G. Kvilekval" <kris <at> cs.ucsb.edu> writes:
>>>
>>>
>>>>This is fixed in CVS.
>>>
>>>I'm thinking about basing the next zinf debian package on CVS. Is
>>>this
>>>a good idea? I also have a problem with CVS: how do i create a tarball
>>>from the CVS source? 'make dist' doesn't work... :-/
>>>Regards, Andy
>>
>>distro binary packaging is one of the things on the "omg can someone
>>fix this" list.  Both redhat and debian people scream and yell about
>>how ugly it is but i've yet to see any cleanup patches submitted or
>>clear directions on what needs to be fixed
>>
>>
> 
> I don't quite understand - I justed wanted to knwo how i can obtain a
> *source* tarball from the checked out CVS sources. Packages using
> automake have a make dist, which creates a source tarball.
> 
> Andy

(Continue reading)

Andreas Rottmann | 6 Sep 00:52
Picon
Picon
Gravatar

Re: Debian bug 159367

Ed Sweetman <ed.sweetman <at> wmich.edu> writes:

> Andreas Rottmann wrote:
> > Ed Sweetman <ed.sweetman <at> wmich.edu> writes:
> >
> >>Andreas Rottmann wrote:
> >>
> > I don't quite understand - I justed wanted to knwo how i can obtain a
> > *source* tarball from the checked out CVS sources. Packages using
> > automake have a make dist, which creates a source tarball.
> > Andy
> 
> 1. we dont use automake, we use autoconf...notice no .am files?   the
> .in's seem to be hand made.   What's wrong with tar -c ?
> 
I know you don't use automake. I was just pointing out you miss a IMHO
important feature that automake provides. 

Ad tar -c: It's not as convinient as 'make dist', since you'll have to
do a 'make distclean' before. However, it would be nice to have a
snapshot target like described by Kristian in the other reply to my
mail.

Regards, Andy
--

-- 
Andreas Rottmann         | Dru <at> ICQ        | 118634484 <at> ICQ | a.rottmann <at> gmx.at
http://www.8ung.at/rotty | GnuPG Key: http://www.8ung.at/rotty/gpg.asc
Fingerprint              | DFB4 4EB4 78A4 5EEE 6219  F228 F92F CFC5 01FD 5B62

-------------------------------------------------------
(Continue reading)

Picon
Gravatar

Re: Debian bug 159367

One way would be to use cvs export.  However, we would need to tag
all the files in CVS with a tag each time you wanted to create a 
snapshot.  Not necessarily bad, but annoying.

Another would be to the following patch to Makefile.in and
 run configure  again to regenerate the Makefile.  
Then just say "make snapshot"

===================================================================
RCS file: /cvsroot/zinf/zinf/Makefile.in,v
retrieving revision 1.3
diff -c -r1.3 Makefile.in
*** Makefile.in	25 Jun 2002 23:53:49 -0000	1.3
--- Makefile.in	5 Sep 2002 22:35:41 -0000
***************
*** 133,138 ****
--- 133,146 ----
  	-rm -f config.status Makefile config.cache config/config.h
  	-rm -f Makefile.header Makefile-plugins

+ 
+ snapshot: clean
+ 	-rm -f config.status config.cache config/config.h
+ 	(cd ..; tar -c -z -f zinf-snapshot-`date +"%Y-%m-%d"`.tgz zinf
--exclude=CVS )
+ 
+ 
+ 
+ 
  install: install-zinf install-themes install-plugins 
(Continue reading)

Andreas Rottmann | 6 Sep 00:53
Picon
Picon
Gravatar

Re: Debian bug 159367

"Kristian G. Kvilekval" <kris <at> cs.ucsb.edu> writes:

> One way would be to use cvs export.  However, we would need to tag
> all the files in CVS with a tag each time you wanted to create a 
> snapshot.  Not necessarily bad, but annoying.
> 
I already thought about that... I just was thinking of an easier way
(without re-downloading the same stuff). Do you really have to tag
every time anybody does a CVS export?

> Another would be to the following patch to Makefile.in and
>  run configure  again to regenerate the Makefile.  
> Then just say "make snapshot"
> 
> ===================================================================
> RCS file: /cvsroot/zinf/zinf/Makefile.in,v
> retrieving revision 1.3
> diff -c -r1.3 Makefile.in
> *** Makefile.in	25 Jun 2002 23:53:49 -0000	1.3
> --- Makefile.in	5 Sep 2002 22:35:41 -0000
> ***************
> *** 133,138 ****
> --- 133,146 ----
>   	-rm -f config.status Makefile config.cache config/config.h
>   	-rm -f Makefile.header Makefile-plugins
>   
> + 
> + snapshot: clean
> + 	-rm -f config.status config.cache config/config.h
> + 	(cd ..; tar -c -z -f zinf-snapshot-`date +"%Y-%m-%d"`.tgz zinf
(Continue reading)

Picon
Gravatar

Re: Debian bug 159367

It's in.

On Thu, 2002-09-05 at 15:53, Andreas Rottmann wrote:
> "Kristian G. Kvilekval" <kris <at> cs.ucsb.edu> writes:
> 
> > One way would be to use cvs export.  However, we would need to tag
> > all the files in CVS with a tag each time you wanted to create a 
> > snapshot.  Not necessarily bad, but annoying.
> > 
> I already thought about that... I just was thinking of an easier way
> (without re-downloading the same stuff). Do you really have to tag
> every time anybody does a CVS export?
> 
> > Another would be to the following patch to Makefile.in and
> >  run configure  again to regenerate the Makefile.  
> > Then just say "make snapshot"
> > 
> > ===================================================================
> > RCS file: /cvsroot/zinf/zinf/Makefile.in,v
> > retrieving revision 1.3
> > diff -c -r1.3 Makefile.in
> > *** Makefile.in	25 Jun 2002 23:53:49 -0000	1.3
> > --- Makefile.in	5 Sep 2002 22:35:41 -0000
> > ***************
> > *** 133,138 ****
> > --- 133,146 ----
> >   	-rm -f config.status Makefile config.cache config/config.h
> >   	-rm -f Makefile.header Makefile-plugins
> >   
> > + 
(Continue reading)


Gmane