Codebase list dtrx / d326f3e
7.1 release. Brett Smith 12 years ago
4 changed file(s) with 14 addition(s) and 18 deletion(s). Raw diff Collapse all Expand all
66 ----------------------------------
77
88 :Author: Brett Smith <brettcsmith@brettcsmith.org>
9 :Date: 2010-09-05
9 :Date: 2011-11-19
1010 :Copyright:
1111
12 dtrx 7.0 is copyright © 2006-2011 Brett Smith and others. Feel free to
12 dtrx 7.1 is copyright © 2006-2011 Brett Smith and others. Feel free to
1313 send comments, bug reports, patches, and so on. You can find the latest
1414 version of dtrx on its home page at
1515 <http://www.brettcsmith.org/2007/dtrx/>.
2727 You should have received a copy of the GNU General Public License along
2828 with this program; if not, see <http://www.gnu.org/licenses/>.
2929
30 :Version: 7.0
30 :Version: 7.1
3131 :Manual section: 1
3232
3333 SYNOPSIS
4444 except NameError:
4545 from sets import Set as set
4646
47 VERSION = "7.0"
47 VERSION = "7.1"
4848 VERSION_BANNER = """dtrx version %s
4949 Copyright © 2006-2011 Brett Smith <brettcsmith@brettcsmith.org>
5050 Copyright © 2008 Peter Kelemen <Peter.Kelemen@gmail.com>
22 from distutils.core import setup
33
44 setup(name="dtrx",
5 version = "7.0",
5 version = "7.1",
66 description = "Script to intelligently extract multiple archive types",
77 author = "Brett Smith",
88 author_email = "brettcsmith@brettcsmith.org",
1414 hassle out of extracting archives. Here's an example of how you use
1515 it:</p>
1616
17 <pre>$ dtrx linux-2.6.10.tar.bz2</pre>
17 <pre>$ dtrx linux-3.0.1.tar.bz2</pre>
1818
1919 <p>That's basically the same thing as:</p>
2020
21 <pre>$ tar -jxf linux-2.6.10.tar.bz2</pre>
21 <pre>$ tar -jxf linux-3.0.1.tar.bz2</pre>
2222
2323 <p>But there's more to it than that. You know those really annoying files
2424 that don't put everything in a dedicated directory, and have the
5959 <span class="pname">gem</span>,
6060 <span class="pname">7z</span>,
6161 <span class="pname">cab</span>,
62 <span class="pname">lzh</span>,
6263 <span class="pname">rar</span>,
6364 <span class="pname">gz</span>,
6465 <span class="pname">bz2</span>,
8788
8889 <h2>Download</h2>
8990
90 <p><a href="dtrx-7.0.tar.gz">Download <span class="pname">dtrx</span>
91 7.0</a>. The SHA1 checksum for this file
92 is <tt>7ebdd038ac25a8af3ab27d108b9427562f1e58fa</tt>. Improvements in this
91 <p><a href="dtrx-7.1.tar.gz">Download <span class="pname">dtrx</span>
92 7.1</a>. The SHA1 checksum for this file
93 is <tt>05cfe705a04a8b84571b0a5647cd2648720791a4</tt>. Improvements in this
9394 release include:</p>
9495
9596 <ul>
9697
97 <li>Automatically download and extract URLs given as arguments.</li>
98 <li>Extract <span class="pname">zip</span> files
99 with <span class="pname">7z</span> if <span class="pname">unzip</span>
100 does not succeed.</li>
101 <li>Remove more common extensions from filenames when extracting to a new
102 directory or file.</li>
103 <li>Don't offer to recurse through a archives if most of the included files
104 aren't archives.</li>
98 <li>Support for LZH archives.</li>
99 <li>Minor bug fixes in handling recursive extraction and empty
100 archives.</li>
105101
106102 </ul>
107103