<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/python-magic.git/test, branch libmagic-compat</title>
<subtitle>github.com: ahupp/python-magic.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/python-magic.git/'/>
<entry>
<title>fix libmagic test</title>
<updated>2018-01-15T06:27:32+00:00</updated>
<author>
<name>Adam Hupp</name>
<email>adam@hupp.org</email>
</author>
<published>2018-01-15T06:27:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/python-magic.git/commit/?id=315cb4ceb556251bc6ee7d0cd1b9da11ab3285f9'/>
<id>315cb4ceb556251bc6ee7d0cd1b9da11ab3285f9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge in compatability mode with libmagic</title>
<updated>2018-01-15T03:25:06+00:00</updated>
<author>
<name>Adam Hupp</name>
<email>adam@hupp.org</email>
</author>
<published>2017-12-04T19:55:27+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/python-magic.git/commit/?id=6143dcea61e41578976817ae4908cbc341655d44'/>
<id>6143dcea61e41578976817ae4908cbc341655d44</id>
<content type='text'>
The libmagic distribution uses the same package name `magic` as
python-magic, but has an incompatible API.  This change merges in a
copy of libmagic's bindings, wrapped to give deprecation warnings.

This is intended to a) mitigate the short-term pain to users and
packagers who need to figure out which to use, and b) give us a path
to merging the two sets of bindings.

I'd be happy for libmagic to take over this package if we could find a
path to it.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The libmagic distribution uses the same package name `magic` as
python-magic, but has an incompatible API.  This change merges in a
copy of libmagic's bindings, wrapped to give deprecation warnings.

This is intended to a) mitigate the short-term pain to users and
packagers who need to figure out which to use, and b) give us a path
to merging the two sets of bindings.

I'd be happy for libmagic to take over this package if we could find a
path to it.
</pre>
</div>
</content>
</entry>
<entry>
<title>add from_open_file to match libmagic binding featureset</title>
<updated>2018-01-15T03:24:40+00:00</updated>
<author>
<name>Adam Hupp</name>
<email>adam@hupp.org</email>
</author>
<published>2017-12-04T18:50:31+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/python-magic.git/commit/?id=c49e8dbf1f77f0878de27dec65f343bfbcbcef5d'/>
<id>c49e8dbf1f77f0878de27dec65f343bfbcbcef5d</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>fix test for xenial since travis started enabling it</title>
<updated>2017-12-09T17:09:00+00:00</updated>
<author>
<name>Adam Hupp</name>
<email>adam@hupp.org</email>
</author>
<published>2017-12-09T17:09:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/python-magic.git/commit/?id=4bda684f8b461cc1f69593799efcf6afe8397756'/>
<id>4bda684f8b461cc1f69593799efcf6afe8397756</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge pull request #149 from hugovk/fix-ci</title>
<updated>2017-11-20T17:26:08+00:00</updated>
<author>
<name>Adam Hupp</name>
<email>adam@hupp.org</email>
</author>
<published>2017-11-20T17:26:08+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/python-magic.git/commit/?id=b8ab66995a41dc68007732051e45c8e2ff1c9fb2'/>
<id>b8ab66995a41dc68007732051e45c8e2ff1c9fb2</id>
<content type='text'>
Fix the CI</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix the CI</pre>
</div>
</content>
</entry>
<entry>
<title>python3 str handling</title>
<updated>2017-11-20T17:23:19+00:00</updated>
<author>
<name>Adam Hupp</name>
<email>adam@hupp.org</email>
</author>
<published>2017-11-20T17:21:00+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/python-magic.git/commit/?id=bec0d4428f6de11ffd90d19dfddb5af9c72d9c63'/>
<id>bec0d4428f6de11ffd90d19dfddb5af9c72d9c63</id>
<content type='text'>
In python3 ctypes, a str is passed to ctypes as wchar*.  This means
the layout of the string magic looks like [ascii, null, ascii, null,
etc].  For some reason, magic handles this just fine most of the time,
but it's clearly wrong and I'm amazed it worked at all.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In python3 ctypes, a str is passed to ctypes as wchar*.  This means
the layout of the string magic looks like [ascii, null, ascii, null,
etc].  For some reason, magic handles this just fine most of the time,
but it's clearly wrong and I'm amazed it worked at all.
</pre>
</div>
</content>
</entry>
<entry>
<title>Revert "update filetype reported by libmagic &gt;=5.23 for keep_going=true"</title>
<updated>2017-10-14T08:25:28+00:00</updated>
<author>
<name>Hugo</name>
<email>hugovk@users.noreply.github.com</email>
</author>
<published>2017-10-14T08:25:28+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/python-magic.git/commit/?id=c45ae3f04394dd190a97f12b350d97a50ec9a5ce'/>
<id>c45ae3f04394dd190a97f12b350d97a50ec9a5ce</id>
<content type='text'>
This reverts commit 9d127ceaab1da0632128422ffd6a2d340bd3e778.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This reverts commit 9d127ceaab1da0632128422ffd6a2d340bd3e778.
</pre>
</div>
</content>
</entry>
<entry>
<title>update filetype reported by libmagic &gt;=5.23 for keep_going=true</title>
<updated>2017-10-02T03:52:48+00:00</updated>
<author>
<name>Adam Hupp</name>
<email>adam@hupp.org</email>
</author>
<published>2017-10-02T03:52:48+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/python-magic.git/commit/?id=9d127ceaab1da0632128422ffd6a2d340bd3e778'/>
<id>9d127ceaab1da0632128422ffd6a2d340bd3e778</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>use my own photo to avoid licensing concerns</title>
<updated>2017-10-02T03:48:25+00:00</updated>
<author>
<name>Adam Hupp</name>
<email>adam@hupp.org</email>
</author>
<published>2017-10-02T03:48:25+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/python-magic.git/commit/?id=8be47895bc108394c76badd74c0f681f6d5da63e'/>
<id>8be47895bc108394c76badd74c0f681f6d5da63e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>rename magic.pyc to avoid cleaning during build step</title>
<updated>2017-09-15T03:36:35+00:00</updated>
<author>
<name>Adam Hupp</name>
<email>adam@hupp.org</email>
</author>
<published>2017-09-15T03:36:35+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/python-magic.git/commit/?id=cf029d7cb3786754d35194fbbdc870e8f54711cd'/>
<id>cf029d7cb3786754d35194fbbdc870e8f54711cd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
