Re: creating an orig.tar.gz from a CVS

2012-02-09 Thread Xavier Grave
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Le 09/02/2012 02:50, Jerome BENOIT a écrit : Hello List On 06/02/12 15:00, Xavier Grave wrote: Le 02/02/2012 22:43, Jerome BENOIT a écrit : In short, I have to do it by hand. You can still add a target in your debian/rules file to avoid doing

Re: creating an orig.tar.gz from a CVS

2012-02-08 Thread Jerome BENOIT
Hello List On 06/02/12 15:00, Xavier Grave wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Le 02/02/2012 22:43, Jerome BENOIT a écrit : In short, I have to do it by hand. You can still add a target in your debian/rules file to avoid doing it too many times :). See [1] for explanation

Re: creating an orig.tar.gz from a CVS

2012-02-08 Thread Boris Pek
Hi Jerome, does someone know Debian packages using get-orig-source in d/rules ? For example you can look at my package: https://github.com/tehnick/libterm-shellui-perl-debian/blob/master/debian/rules Nothing difficult. You can add any script or list of commands to get-orig-source section of

Re: creating an orig.tar.gz from a CVS

2012-02-06 Thread Xavier Grave
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Le 02/02/2012 22:43, Jerome BENOIT a écrit : In short, I have to do it by hand. You can still add a target in your debian/rules file to avoid doing it too many times :). See [1] for explanation for example about get-orig-source target. xavier [1]

Re: creating an orig.tar.gz from a CVS

2012-02-06 Thread Jerome BENOIT
Hello List: Thanks Xavier for the trick. After getting information from the upstream maintainer, it appears that the CVS have a dedicated Makefile to build the upstream package. Of course, this Makefile is not distributed within the upstream package, as other part of the CVS tree: the

Re: creating an orig.tar.gz from a CVS

2012-02-03 Thread Thibaut Paumard
Le 02/02/12 22:43, Jerome BENOIT a écrit : In short, I have to do it by hand. In short, yes, that has been my understanding so far :-) But it's so simple that adding a dpkg-cvs-makeorigtgz script on top of that would just be confusing for no real benefit. Just make sure you exclude the CVS

creating an orig.tar.gz from a CVS

2012-02-02 Thread Jerome BENOIT
Hello List: what is the best Debian way to create a package orig.tar.gz from a CVS ? Thanks in advance. Best, Jerome -- To UNSUBSCRIBE, email to debian-mentors-requ...@lists.debian.org with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org Archive:

Re: creating an orig.tar.gz from a CVS

2012-02-02 Thread Björn Esser
Hello! Checkout from CVS. Run ./configure or equal. Run 'make tar' or 'make package' or 'make rpm' or 'make dist' or whatever the corresponding target in makefile is named. Then rename the produced tar.gz / bz2 to orig.tar.gz / bz2 Cheers, Björn. 2012/2/2 Jerome BENOIT g62993...@rezozer.net:

Re: creating an orig.tar.gz from a CVS

2012-02-02 Thread Jerome BENOIT
Hello List: Let assume that the make target dist is not implemented :-) Cheers, Jerome On 02/02/12 19:14, Björn Esser wrote: Hello! Checkout from CVS. Run ./configure or equal. Run 'make tar' or 'make package' or 'make rpm' or 'make dist' or whatever the corresponding target in makefile is

Re: creating an orig.tar.gz from a CVS

2012-02-02 Thread Thibaut Paumard
Le 02/02/12 18:56, Jerome BENOIT a écrit : Hello List: what is the best Debian way to create a package orig.tar.gz from a CVS ? Thanks in advance. Best, Jerome cvs export -d directory module ... tar cvf - directory | gzip -9 package_version.orig.tar.gz -- To UNSUBSCRIBE, email

Re: creating an orig.tar.gz from a CVS

2012-02-02 Thread Jerome BENOIT
In short, I have to do it by hand. Jerome On 02/02/12 20:51, Thibaut Paumard wrote: Le 02/02/12 18:56, Jerome BENOIT a écrit : Hello List: what is the best Debian way to create a package orig.tar.gz from a CVS ? Thanks in advance. Best, Jerome cvs export -ddirectory module ... tar

Re: creating an orig.tar.gz from a CVS

2012-02-02 Thread Andrea Bolognani
On Thu, Feb 02, 2012 at 10:43:34PM +0100, Jerome BENOIT wrote: In short, I have to do it by hand. Tarballs are usually created by upstream when making a release. There are a variety of build system (autotools, CMake, etc) that provide a standard way to prepare a release tarball: if your