Codebase list grapefruit / f265f4e
Add breaks+replaces for doc Jonathan Carter 4 years ago
12 changed file(s) with 25 addition(s) and 228 deletion(s). Raw diff Collapse all Expand all
0 grapefruit (0.1~a3+dfsg-7) UNRELEASED; urgency=medium
0 grapefruit (0.1~a3+dfsg-8) unstable; urgency=medium
11
2 * Add Breaks+Replaces for python-grapefruit-doc
3 (Closes: #934599)
4 * Remove suggestion for python-grapefruit-doc
5
6 -- Jonathan Carter <jcc@debian.org> Tue, 20 Aug 2019 07:58:45 +0000
7
8 grapefruit (0.1~a3+dfsg-7) unstable; urgency=medium
9
10 [ Ondřej Nový ]
211 * Convert git repository from git-dpm to gbp layout.
312 * Use debhelper-compat instead of debian/compat.
413
5 -- Ondřej Nový <onovy@debian.org> Wed, 09 Jan 2019 13:54:40 +0100
14 [ Jonathan Carter ]
15 * Update standards version to 4.4.0
16 * Upgrade debhelper-compat to 12
17 * Drop python2 binary package
18 * Add dependency for python3-future (Closes: #926414)
19 * Drop separate python-grapefruit-doc package
20
21 -- Jonathan Carter <jcc@debian.org> Wed, 07 Aug 2019 11:59:18 +0200
622
723 grapefruit (0.1~a3+dfsg-6) unstable; urgency=medium
824
22 Priority: optional
33 Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
44 Uploaders: Jonathan Carter <jcc@debian.org>
5 Build-Depends: debhelper-compat (= 11),
5 Build-Depends: debhelper-compat (= 12),
66 dh-python,
7 python-all,
8 python-future,
9 python-pytest,
10 python-setuptools,
117 python3-all,
128 python3-future,
139 python3-pytest,
1410 python3-setuptools,
1511 python3-sphinx
16 Standards-Version: 4.2.1
12 Standards-Version: 4.4.0
1713 Homepage: https://github.com/xav/grapefruit
1814 Vcs-Git: https://salsa.debian.org/python-team/modules/grapefruit.git
1915 Vcs-Browser: https://salsa.debian.org/python-team/modules/grapefruit
2016 Testsuite: autopkgtest-pkg-python
2117
22 Package: python-grapefruit
23 Architecture: all
24 Depends: ${misc:Depends}, ${python:Depends}
25 Suggests: python-grapefruit-doc
26 Description: Python module to manipulate color information easily (Python 2)
27 GrapeFruit is a pure Python module that lets you easily manipulate and convert
28 color information. Its primary goal is to be natural and flexible.
29 .
30 The following color systems are supported by GrapeFruit:
31 * RGB (sRGB)
32 * HSL
33 * HSV
34 * YIQ
35 * YUV
36 * CIE-XYZ
37 * CIE-LAB (with the illuminant you want)
38 * CMY
39 * CMYK
40 * HTML/CSS color definition (#RRGGBB, #RGB or the X11 color name)
41 * RYB (artistic color wheel)
42 .
43 This package provides the Python2 version.
44
4518 Package: python3-grapefruit
4619 Architecture: all
47 Depends: ${misc:Depends}, ${python3:Depends}
48 Suggests: python-grapefruit-doc
20 Depends: ${misc:Depends}, ${python3:Depends}, ${sphinxdoc:Depends}, python3-future
21 Breaks: python-grapefruit-doc
22 Replaces: python-grapefruit-doc
4923 Description: Python module to manipulate color information easily (Python 3)
5024 GrapeFruit is a pure Python module that lets you easily manipulate and convert
5125 color information. Its primary goal is to be natural and flexible.
6438 * RYB (artistic color wheel)
6539 .
6640 This package provides the Python3 version.
67
68 Package: python-grapefruit-doc
69 Section: doc
70 Architecture: all
71 Depends: ${misc:Depends}, ${sphinxdoc:Depends}
72 Recommends: python-grapefruit
73 Description: Python module to manipulate color information easily - documentation
74 GrapeFruit is a pure Python module that let you easily manipulate and convert
75 color information. Its primary goal is to be natural and flexible.
76 .
77 This package provides the documentation for GrapeFruit.
0 grapefruit_0.1~a3+dfsg-6_source.buildinfo python optional
0 grapefruit_0.1~a3+dfsg-7_source.buildinfo python optional
+0
-9
debian/python-grapefruit-doc.doc-base less more
0 Document: grapefruit
1 Title: Grapefruit
2 Author: Xavier Basty
3 Abstract: Python module to manipulate color information easily
4 Section: Graphics
5
6 Format: HTML
7 Index: /usr/share/doc/python-grapefruit/html/index.html
8 Files: /usr/share/doc/python-grapefruit/html/*.html
+0
-1
debian/python-grapefruit-doc.docs less more
0 doc/_build/html
55 UPSTREAM = $(shell dpkg-parsechangelog | egrep '^Version: ' | cut -d ' ' -f 2- | sed 's/+dfsg.*//')
66
77 %:
8 dh $@ --with python2,python3,sphinxdoc --buildsystem=pybuild
8 dh $@ --with python3,sphinxdoc --buildsystem=pybuild
99
1010 override_dh_auto_build:
1111 dh_auto_build
+0
-149
grapefruit.egg-info/PKG-INFO less more
0 Metadata-Version: 1.0
1 Name: grapefruit
2 Version: 0.1a3
3 Summary: A module to manipulate color information easily.
4 Home-page: http://code.google.com/p/grapefruit/
5 Author: Xavier Basty
6 Author-email: xbasty@gmail.com
7 License: Apache License 2.0
8 Download-URL: http://grapefruit.googlecode.com/files/grapefruit-0.1a3.tar.gz
9 Description: =====================
10 README for GrapeFruit
11 =====================
12
13 Installing
14 ============
15
16 **From the sources:**
17
18 Download the latest grapefruit library from:
19
20 http://code.google.com/p/grapefruit/
21
22
23 Untar the source distribution and run::
24
25 $ python setup.py build
26 $ python setup.py install
27
28
29 Testing
30 =========
31
32 With setuptools installed::
33
34 $ python setup.py test
35
36 Without setuptools installed::
37
38 $ python grapefruit_test.py
39
40
41 Getting the code
42 ==================
43
44 View the trunk at:
45
46 http://grapefruit.googlecode.com/svn/trunk/
47
48 Check out the latest development version anonymously with::
49
50 $ svn checkout http://grapefruit.googlecode.com/svn/trunk/ GrapeFruit
51
52 Documentation
53 ===============
54
55 You can download a compiled version of the documentation at:
56
57 http://http://code.google.com/p/grapefruit/downloads/list?q=label:Type-Docs
58
59 The documentation is generated from reStructuredText sources by Sphinx.
60 If you need to build it, go into the doc folder and run::
61
62 make <builder>
63
64 Or, if you're running windows::
65
66 makedoc.cmd
67
68
69 License
70 =========
71
72 ::
73
74 Copyright (c) 2008, Xavier Basty
75
76 Licensed under the Apache License, Version 2.0 (the "License");
77 you may not use this file except in compliance with the License.
78 You may obtain a copy of the License at
79
80 http://www.apache.org/licenses/LICENSE-2.0
81
82 Unless required by applicable law or agreed to in writing, software
83 distributed under the License is distributed on an "AS IS" BASIS,
84 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
85 See the License for the specific language governing permissions and
86 limitations under the License.
87
88 2008-06-15
89 - Released 0.1a3
90 - Added Gradient
91
92 2008-06-01
93 - Fixed overflow in alpha blending.
94
95 2008-05-29
96 - Added Saturate/Desaturate.
97 - Added MonochromeScheme
98 - Added the mode parameter to the generation methods to choose the
99 color wheel use for the generation (ryb/rgb).
100
101 2008-05-28
102 - Added the RGB<->RYB hue conversion.
103 - Added an angle parameter to the tetrad scheme to control the shape of
104 the rectangle.
105
106 2008-05-27
107 - Released 0.1a2
108
109 2008-05-24
110
111 - Fixed the HSL->RGB conversion
112 (the modulo in the hue conversion was 60 instead of 6.0!)
113 Updated the unit tests (which were wrong!)
114
115 2008-05-24
116
117 Released 0.1a1
118 - Convert the documentation to Sphinx
119 - Completed the unit tests
120 - Fixed some stupid typos
121
122 2008-05-22
123
124 - Refactored pretty much everything to more standard "Python coding style".
125 - Replaced the global variables by Color properties.
126 - Moved the module functions to static methods of Color.
127 - Completed the CIE white point dictionary to include all the standard
128 illuminants.
129 - Added doctest for all the functions.
130 - Fixed the conversions factors to get better results (more exact and
131 more symmetric).
132 - Changed the range of the L component from [0~1] to [0~100] (as it should
133 have been).
134 - Added packaging data and setup.
135 - Changed the structure of the unit tests.
136
137 2008-05-08
138
139 Released 0.1a0
140 - Initial checkin of grapefruit
141
142 Keywords: color conversion
143 Platform: UNKNOWN
144 Classifier: Development Status :: 3 - Alpha
145 Classifier: Intended Audience :: Developers
146 Classifier: License :: OSI Approved :: Apache Software License
147 Classifier: Topic :: Software Development :: Libraries :: Python Modules
148 Classifier: Topic :: Multimedia :: Graphics
+0
-19
grapefruit.egg-info/SOURCES.txt less more
0 CHANGES
1 COPYING
2 LICENSE
3 README
4 TODO
5 grapefruit.py
6 grapefruit_test.py
7 setup.py
8 doc/Makefile
9 doc/conf.py
10 doc/index.rst
11 doc/makedoc.cmd
12 doc/_static/GrapeFruit.png
13 grapefruit.egg-info/PKG-INFO
14 grapefruit.egg-info/SOURCES.txt
15 grapefruit.egg-info/dependency_links.txt
16 grapefruit.egg-info/requires.txt
17 grapefruit.egg-info/top_level.txt
18 grapefruit.egg-info/zip-safe
+0
-1
grapefruit.egg-info/dependency_links.txt less more
0
+0
-1
grapefruit.egg-info/requires.txt less more
0 setuptools
+0
-1
grapefruit.egg-info/top_level.txt less more
0 grapefruit
+0
-1
grapefruit.egg-info/zip-safe less more
0