Merge checkbox-support:release into checkbox-support:master

Proposed by Pierre Equoy
Status: Merged
Approved by: Pierre Equoy
Approved revision: 88e43618c2d9ac149d2a60c0b01b5d7ce87941b3
Merged at revision: 8bcca1c99e6bcb3f05f8496742825bdb619ae946
Proposed branch: checkbox-support:release
Merge into: checkbox-support:master
Diff against target: 277 lines (+208/-2)
9 files modified
.bumpversion.cfg (+1/-1)
checkbox_support.egg-info/PKG-INFO (+16/-0)
checkbox_support.egg-info/SOURCES.txt (+156/-0)
checkbox_support.egg-info/dependency_links.txt (+1/-0)
checkbox_support.egg-info/entry_points.txt (+13/-0)
checkbox_support.egg-info/requires.txt (+2/-0)
checkbox_support.egg-info/top_level.txt (+1/-0)
dist/checkbox-support-0.29.0.tar.gz.asc (+17/-0)
setup.py (+1/-1)
Reviewer Review Type Date Requested Status
Pierre Equoy Approve
Review via email: mp+313088@code.launchpad.net

Commit message

Release_2016_Week50

Description of the change

Release_2016_Week50

To post a comment you must log in.
Revision history for this message
Pierre Equoy (pieq) wrote :

Self-approved

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1diff --git a/.bumpversion.cfg b/.bumpversion.cfg
2index ac2cb01..87718c5 100644
3--- a/.bumpversion.cfg
4+++ b/.bumpversion.cfg
5@@ -1,5 +1,5 @@
6 [bumpversion]
7-current_version = 0.29.dev0
8+current_version = 0.30.0.dev0
9 parse = (?P<major>\d+)\.(?P<minor>\d+)(\.(?P<patch>\d+))?((?P<release>\.?[a-z]+)(?P<N>\d+))?
10 serialize =
11 {major}.{minor}.{patch}{release}{N}
12diff --git a/checkbox_support.egg-info/PKG-INFO b/checkbox_support.egg-info/PKG-INFO
13new file mode 100644
14index 0000000..fe8ea94
15--- /dev/null
16+++ b/checkbox_support.egg-info/PKG-INFO
17@@ -0,0 +1,16 @@
18+Metadata-Version: 1.0
19+Name: checkbox-support
20+Version: 0.29.0
21+Summary: CheckBox support library
22+Home-page: https://launchpad.net/checkbox/
23+Author: Sylvain Pineau
24+Author-email: sylvain.pineau@canonical.com
25+License: GPLv3
26+Description: CheckBox Support
27+ ================
28+
29+ CheckBox Support library is a collection of python modules used by PlainBox
30+ providers scripts.
31+ They were originally provided by the checkbox python package.
32+
33+Platform: UNKNOWN
34diff --git a/checkbox_support.egg-info/SOURCES.txt b/checkbox_support.egg-info/SOURCES.txt
35new file mode 100644
36index 0000000..1e10e21
37--- /dev/null
38+++ b/checkbox_support.egg-info/SOURCES.txt
39@@ -0,0 +1,156 @@
40+COPYING
41+MANIFEST.in
42+README.rst
43+setup.cfg
44+setup.py
45+checkbox_support/__init__.py
46+checkbox_support/udev.py
47+checkbox_support.egg-info/PKG-INFO
48+checkbox_support.egg-info/SOURCES.txt
49+checkbox_support.egg-info/dependency_links.txt
50+checkbox_support.egg-info/entry_points.txt
51+checkbox_support.egg-info/requires.txt
52+checkbox_support.egg-info/top_level.txt
53+checkbox_support/contrib/__init__.py
54+checkbox_support/contrib/xrandr.py
55+checkbox_support/dbus/__init__.py
56+checkbox_support/dbus/udisks2.py
57+checkbox_support/helpers/__init__.py
58+checkbox_support/helpers/human_readable_bytes.py
59+checkbox_support/heuristics/__init__.py
60+checkbox_support/heuristics/udev.py
61+checkbox_support/heuristics/udisks2.py
62+checkbox_support/heuristics/tests/__init__.py
63+checkbox_support/heuristics/tests/test_udisks2.py
64+checkbox_support/lib/__init__.py
65+checkbox_support/lib/bit.py
66+checkbox_support/lib/conversion.py
67+checkbox_support/lib/dmi.py
68+checkbox_support/lib/input.py
69+checkbox_support/lib/path.py
70+checkbox_support/lib/pci.py
71+checkbox_support/lib/template.py
72+checkbox_support/lib/tz.py
73+checkbox_support/lib/usb.py
74+checkbox_support/parsers/__init__.py
75+checkbox_support/parsers/cpuinfo.py
76+checkbox_support/parsers/cputable
77+checkbox_support/parsers/cputable.py
78+checkbox_support/parsers/dkms_info.py
79+checkbox_support/parsers/dmidecode.py
80+checkbox_support/parsers/efi.py
81+checkbox_support/parsers/image_info.py
82+checkbox_support/parsers/kernel_cmdline.py
83+checkbox_support/parsers/lshwjson.py
84+checkbox_support/parsers/meminfo.py
85+checkbox_support/parsers/modinfo.py
86+checkbox_support/parsers/modprobe.py
87+checkbox_support/parsers/pactl.py
88+checkbox_support/parsers/pci_config.py
89+checkbox_support/parsers/submission.py
90+checkbox_support/parsers/udevadm.py
91+checkbox_support/parsers/xinput.py
92+checkbox_support/parsers/tests/__init__.py
93+checkbox_support/parsers/tests/test_cpuinfo.py
94+checkbox_support/parsers/tests/test_cputable.py
95+checkbox_support/parsers/tests/test_dkms_info.py
96+checkbox_support/parsers/tests/test_dmi.py
97+checkbox_support/parsers/tests/test_dmidecode.py
98+checkbox_support/parsers/tests/test_efi.py
99+checkbox_support/parsers/tests/test_image_info.py
100+checkbox_support/parsers/tests/test_modinfo.py
101+checkbox_support/parsers/tests/test_modprobe.py
102+checkbox_support/parsers/tests/test_pactl.py
103+checkbox_support/parsers/tests/test_pci_config.py
104+checkbox_support/parsers/tests/test_submission.py
105+checkbox_support/parsers/tests/test_udevadm.py
106+checkbox_support/parsers/tests/test_version.py
107+checkbox_support/parsers/tests/test_xinput.py
108+checkbox_support/parsers/tests/cpuinfo_data/aarch64.txt
109+checkbox_support/parsers/tests/cpuinfo_data/amd64.txt
110+checkbox_support/parsers/tests/cpuinfo_data/ppc64el.txt
111+checkbox_support/parsers/tests/fixtures/submission_attachment.xml
112+checkbox_support/parsers/tests/fixtures/submission_info_cpuinfo.xml
113+checkbox_support/parsers/tests/fixtures/submission_info_dkms.xml
114+checkbox_support/parsers/tests/fixtures/submission_info_dmidecode.xml
115+checkbox_support/parsers/tests/fixtures/submission_info_image_info.xml
116+checkbox_support/parsers/tests/fixtures/submission_info_kernel_cmdline.xml
117+checkbox_support/parsers/tests/fixtures/submission_info_lspci_standard_config.xml
118+checkbox_support/parsers/tests/fixtures/submission_info_memory.xml
119+checkbox_support/parsers/tests/fixtures/submission_info_modinfo.xml
120+checkbox_support/parsers/tests/fixtures/submission_info_modprobe.xml
121+checkbox_support/parsers/tests/fixtures/submission_info_non_ascii.xml
122+checkbox_support/parsers/tests/fixtures/submission_info_udevadm.xml
123+checkbox_support/parsers/tests/fixtures/submission_lsbrelease.xml
124+checkbox_support/parsers/tests/fixtures/submission_packages.xml
125+checkbox_support/parsers/tests/fixtures/submission_packages_modaliases.xml
126+checkbox_support/parsers/tests/fixtures/submission_processors.xml
127+checkbox_support/parsers/tests/fixtures/submission_questions.xml
128+checkbox_support/parsers/tests/fixtures/submission_snap_packages.xml
129+checkbox_support/parsers/tests/fixtures/submission_snap_packages_with_date.xml
130+checkbox_support/parsers/tests/fixtures/submission_udev.xml
131+checkbox_support/parsers/tests/fixtures/submission_udev_armhf.xml
132+checkbox_support/parsers/tests/fixtures/submission_udev_without_lsblk.xml
133+checkbox_support/parsers/tests/fixtures/xinput_quantal.txt
134+checkbox_support/parsers/tests/fixtures/xinput_toshiba.txt
135+checkbox_support/parsers/tests/pactl_data/cards-desktop-precise-0.txt
136+checkbox_support/parsers/tests/pactl_data/cards-desktop-precise-1.txt
137+checkbox_support/parsers/tests/pactl_data/cards-desktop-precise-2.txt
138+checkbox_support/parsers/tests/pactl_data/cards-desktop-precise.txt
139+checkbox_support/parsers/tests/pactl_data/desktop-precise-radeon-hdmi-available.txt
140+checkbox_support/parsers/tests/pactl_data/desktop-precise-radeon.txt
141+checkbox_support/parsers/tests/pactl_data/desktop-precise-xps1340.txt
142+checkbox_support/parsers/tests/pactl_data/desktop-precise.txt
143+checkbox_support/parsers/tests/pactl_data/desktop-raring-t430s-dp-available.txt
144+checkbox_support/parsers/tests/pactl_data/desktop-raring-t430s.txt
145+checkbox_support/parsers/tests/pactl_data/desktop-trusty-bt-headset.txt
146+checkbox_support/parsers/tests/pactl_data/modules-desktop-precise-0.txt
147+checkbox_support/parsers/tests/pactl_data/modules-desktop-precise.txt
148+checkbox_support/parsers/tests/pactl_data/samples-desktop-precise.txt
149+checkbox_support/parsers/tests/pactl_data/sinks-desktop-precise-0.txt
150+checkbox_support/parsers/tests/pactl_data/sinks-desktop-precise-1.txt
151+checkbox_support/parsers/tests/pactl_data/sinks-desktop-precise.txt
152+checkbox_support/parsers/tests/udevadm_data/CALXEDA_HIGHBANK.txt
153+checkbox_support/parsers/tests/udevadm_data/DELL_IDRAC.txt
154+checkbox_support/parsers/tests/udevadm_data/DELL_INSPIRON3521_TOUCHSCREEN.txt
155+checkbox_support/parsers/tests/udevadm_data/DELL_INSPIRON_3048.txt
156+checkbox_support/parsers/tests/udevadm_data/DELL_INSPIRON_7737_NVIDIA.txt
157+checkbox_support/parsers/tests/udevadm_data/DELL_LATITUDEE4310.txt
158+checkbox_support/parsers/tests/udevadm_data/DELL_LATITUDEE6430.txt
159+checkbox_support/parsers/tests/udevadm_data/DELL_OPTIPLEX9020AIO.txt
160+checkbox_support/parsers/tests/udevadm_data/DELL_POWEREDGE_R820_NVME.txt
161+checkbox_support/parsers/tests/udevadm_data/DELL_VOSTRO3460_FINGERPRINT.txt
162+checkbox_support/parsers/tests/udevadm_data/DELL_VOSTROV131.txt
163+checkbox_support/parsers/tests/udevadm_data/DELL_VOSTRO_270.txt
164+checkbox_support/parsers/tests/udevadm_data/DELL_XPS1340.txt
165+checkbox_support/parsers/tests/udevadm_data/EMMC_AS_MAIN_DRIVE.txt
166+checkbox_support/parsers/tests/udevadm_data/HOME_MADE.txt
167+checkbox_support/parsers/tests/udevadm_data/HP_400_G2.txt
168+checkbox_support/parsers/tests/udevadm_data/HP_ENVY_15_MEDIATEK_BT.txt
169+checkbox_support/parsers/tests/udevadm_data/HP_PAVILION14_NOTEBOOK_MEDIATEK_BT.txt
170+checkbox_support/parsers/tests/udevadm_data/HP_PAVILIONSLEEKBOOK14_ACCELEROMETER.txt
171+checkbox_support/parsers/tests/udevadm_data/HP_PRO2110.txt
172+checkbox_support/parsers/tests/udevadm_data/HP_PROBOOK6550B_ACCELEROMETER.txt
173+checkbox_support/parsers/tests/udevadm_data/IBM_PSERIES_POWER7.txt
174+checkbox_support/parsers/tests/udevadm_data/INTEL_NUC_SNAPPY.txt
175+checkbox_support/parsers/tests/udevadm_data/LENOVO_E431.txt
176+checkbox_support/parsers/tests/udevadm_data/LENOVO_E445.txt
177+checkbox_support/parsers/tests/udevadm_data/LENOVO_T420.txt
178+checkbox_support/parsers/tests/udevadm_data/LENOVO_T430S.txt
179+checkbox_support/parsers/tests/udevadm_data/ONE_CDROM_ONLY.txt
180+checkbox_support/parsers/tests/udevadm_data/PANDABOARD.txt
181+checkbox_support/parsers/tests/udevadm_data/QEMU_KVM.txt
182+checkbox_support/parsers/tests/udevadm_data/REALTEK_CARD_READER_AND_NVME.txt
183+checkbox_support/parsers/tests/udevadm_data/SAMSUNG_N310.txt
184+checkbox_support/parsers/tests/udevadm_data/VM_WITH_FLOPPY.txt
185+checkbox_support/parsers/tests/udevadm_data/XEON.txt
186+checkbox_support/scripts/__init__.py
187+checkbox_support/scripts/audio_settings.py
188+checkbox_support/scripts/gputest_benchmark.py
189+checkbox_support/scripts/tests/__init__.py
190+checkbox_support/scripts/tests/test_audio_settings.py
191+checkbox_support/scripts/tests/test_gputest_benchmark.py
192+checkbox_support/tests/__init__.py
193+checkbox_support/tests/test_human_readable_bytes.py
194+checkbox_support/vendor/__init__.py
195+checkbox_support/vendor/mock.py
196\ No newline at end of file
197diff --git a/checkbox_support.egg-info/dependency_links.txt b/checkbox_support.egg-info/dependency_links.txt
198new file mode 100644
199index 0000000..8b13789
200--- /dev/null
201+++ b/checkbox_support.egg-info/dependency_links.txt
202@@ -0,0 +1 @@
203+
204diff --git a/checkbox_support.egg-info/entry_points.txt b/checkbox_support.egg-info/entry_points.txt
205new file mode 100644
206index 0000000..20c469e
207--- /dev/null
208+++ b/checkbox_support.egg-info/entry_points.txt
209@@ -0,0 +1,13 @@
210+[plainbox.parsers]
211+bto = checkbox_support.parsers.image_info:parse_bto_attachment_output
212+buildstamp = checkbox_support.parsers.image_info:parse_buildstamp_attachment_output
213+dkms-info = checkbox_support.parsers.dkms_info:parse_dkms_info
214+dmidecode = checkbox_support.parsers.dmidecode:parse_dmidecode_output
215+modinfo = checkbox_support.parsers.modinfo:parse_modinfo_attachment_output
216+modprobe = checkbox_support.parsers.modprobe:parse_modprobe_d_output
217+pactl-list = checkbox_support.parsers.pactl:parse_pactl_output
218+pci-subsys-id = checkbox_support.parsers.pci_config:parse_pci_subsys_id
219+recovery-info = checkbox_support.parsers.image_info:parse_recovery_info_attachment_output
220+submission = checkbox_support.parsers.submission:parse_submission_text
221+udevadm = checkbox_support.parsers.udevadm:parse_udevadm_output
222+
223diff --git a/checkbox_support.egg-info/requires.txt b/checkbox_support.egg-info/requires.txt
224new file mode 100644
225index 0000000..5d23867
226--- /dev/null
227+++ b/checkbox_support.egg-info/requires.txt
228@@ -0,0 +1,2 @@
229+lxml >= 2.3
230+pyparsing >= 2.0.0
231diff --git a/checkbox_support.egg-info/top_level.txt b/checkbox_support.egg-info/top_level.txt
232new file mode 100644
233index 0000000..404e57b
234--- /dev/null
235+++ b/checkbox_support.egg-info/top_level.txt
236@@ -0,0 +1 @@
237+checkbox_support
238diff --git a/dist/checkbox-support-0.29.0.tar.gz b/dist/checkbox-support-0.29.0.tar.gz
239new file mode 100644
240index 0000000..e4eef83
241Binary files /dev/null and b/dist/checkbox-support-0.29.0.tar.gz differ
242diff --git a/dist/checkbox-support-0.29.0.tar.gz.asc b/dist/checkbox-support-0.29.0.tar.gz.asc
243new file mode 100644
244index 0000000..3a074f5
245--- /dev/null
246+++ b/dist/checkbox-support-0.29.0.tar.gz.asc
247@@ -0,0 +1,17 @@
248+-----BEGIN PGP SIGNATURE-----
249+Version: GnuPG v1
250+
251+iQIcBAABAgAGBQJYT2UkAAoJEBhYaFAX72YCUnUP/3irv1SSvNy/atXg1Gb+KOCr
252+poOXiNv6LGRtY4iT5/bd4u4tjjFnMAbRmr2SQjN+9fSs6fIXouElf5CfCjWe6ywv
253+UGmE+d05sv9iLLl7UjazLPhmSWK5weIuAmrrUmgFVP8/DJAS+yQcXJPfrVq93P4d
254+U/+pcFvxf4D/QJZGV+0iny6SVa6kRcSnKdMvS43sKRFD4Lt9ZKi61vhI+i6uijBF
255+/WwJDsfNMa0zA1Qo+yGiWPcx0MZlZELFzLItENQPpCD6oTkC8th6iL5FxtUSxsgp
256++C9vCBxCmsK92bSpltXBZ1B3mi+hSYiExidjnF+nh4sEl8jJm8lkiA0DHUBGKNFo
257+AxZhOOsD76Bn2NnG2M1VvdPAhOHNUgl10MmsDlF9b2Cf6nwhT6sJK+abfEiyShSC
258+paIMQ+BPx1drKke+XtP0QpgfXDfzyNICtcz3ISCekpG3dyYsCZMIgr3UTlh5Gq9r
259+n5ms6wtYtcnQt9hsvHYyduqFpbL+WLMeyXNNxM0/qCo8FED3zBHk9tc29+Mh+CCE
260+X/pUACOiVe17MGhfKadOfm9dwlW7+AvBKnbd+wxZxgjkuffYGgsJUUwvpfJGToJh
261+djbFnMrKbzsDB8R6YtG99bjMGSZZ7LZKug4obUiOPNjMn+RA3wPzLDUPXWCzuW3U
262+2WByEVdUM0I6dXyuigxv
263+=NSLK
264+-----END PGP SIGNATURE-----
265diff --git a/setup.py b/setup.py
266index 078f2fd..e835917 100755
267--- a/setup.py
268+++ b/setup.py
269@@ -38,7 +38,7 @@ with open(os.path.join(base_dir, "README.rst"), encoding="UTF-8") as stream:
270
271 setup(
272 name="checkbox-support",
273- version="0.29.dev0",
274+ version="0.30.0.dev0",
275 url="https://launchpad.net/checkbox/",
276 packages=find_packages(),
277 test_suite='checkbox_support.tests.test_suite',

Subscribers

People subscribed via source and target branches

to all changes: