Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/html2text/files: html2text-noinstall-test.patch
Date: Fri, 30 May 2014 01:33:12
Message-Id: 20140530013305.6D25B2004E@flycatcher.gentoo.org
1 floppym 14/05/30 01:33:05
2
3 Added: html2text-noinstall-test.patch
4 Log:
5 Don't install test package, thanks to Arfrever.
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
8
9 Revision Changes Path
10 1.1 dev-python/html2text/files/html2text-noinstall-test.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/html2text/files/html2text-noinstall-test.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/html2text/files/html2text-noinstall-test.patch?rev=1.1&content-type=text/plain
14
15 Index: html2text-noinstall-test.patch
16 ===================================================================
17 From e4d46b478f78c4464c7b35058154948c928a013b Mon Sep 17 00:00:00 2001
18 From: Arfrever <arfrever@××××××.com>
19 Date: Thu, 29 May 2014 18:07:21 +0200
20 Subject: [PATCH] Don't install tests (but include them in PyPI package).
21
22 Fixes #9
23 ---
24 MANIFEST.in | 1 +
25 setup.py | 1 -
26 2 files changed, 1 insertion(+), 1 deletion(-)
27
28 diff --git a/MANIFEST.in b/MANIFEST.in
29 index 1845310..6217360 100644
30 --- a/MANIFEST.in
31 +++ b/MANIFEST.in
32 @@ -2,3 +2,4 @@ include COPYING
33 include README.md
34 include ChangeLog.rst
35 include AUTHORS.rst
36 +recursive-include test *.html *.md *.py
37 diff --git a/setup.py b/setup.py
38 index 3b7085d..0b2cf08 100644
39 --- a/setup.py
40 +++ b/setup.py
41 @@ -65,7 +65,6 @@ def run(self):
42 """,
43 license='GNU GPL 3',
44 requires=requires_list,
45 - packages=find_packages(),
46 py_modules=['html2text'],
47 include_package_data=True,
48 zip_safe=False,
49 --
50 1.9.3