Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 174159 - media-video/cinelerra-cvs tarballs include pointless .svn dirs
Summary: media-video/cinelerra-cvs tarballs include pointless .svn dirs
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All All
: High trivial (vote)
Assignee: Gentoo Media-video project
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-04-11 13:57 UTC by gent_bz
Modified: 2007-06-11 19:26 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description gent_bz 2007-04-11 13:57:22 UTC
When the tarballs are created, .svn are left in place which contain the entire tree as it was when last checked out (essentially to be able to do local-diffs with svn).

This files are not needed and unnecessarily double the size of the tarball - please remove them in future.

$ tar jxf $DISTDIR/cinelerra-cvs-20070122.tar.bz2
$ find cinelerra-cvs/ -name .svn -exec rm -fr {} \;
$ tar jcf cinelerra-cvs-20070122-sans-svn.tar.bz2 cinelerra-cvs/
$ ls -l $DISTDIR/cinelerra-cvs-20070122.tar.bz2 cinelerra-cvs-20070122-sans-svn.tar.bz2
 46641387 $DISTDIR/cinelerra-cvs-20070122.tar.bz2
 23732161 cinelerra-cvs-20070122-sans-svn.tar.bz2


The size reduction saves time downloading and especially unpacking.

Reproducible: Always

Steps to Reproduce:
Comment 1 Alexis Ballier gentoo-dev 2007-06-11 19:26:55 UTC
--exclude .svn option added when taring the new snapshot, thanks for pointing that ;)