1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753 | diff -Nru python-requests-unixsocket-0.1.5/AUTHORS python-requests-unixsocket-0.1.5/AUTHORS
--- python-requests-unixsocket-0.1.5/AUTHORS 2016-01-20 10:09:49.000000000 -0500
+++ python-requests-unixsocket-0.1.5/AUTHORS 1969-12-31 19:00:00.000000000 -0500
@@ -1,6 +0,0 @@
-Ben Jackson <puremourning@gmail.com>
-Esben Haabendal <esben@haabendal.dk>
-Marc Abramowitz <marc@marc-abramowitz.com>
-Tomaz Solc <tomaz.solc@tablix.org>
-Will Rouesnel <w.rouesnel@gmail.com>
-William Rouesnel <William.Rouesnel@netregistry.com.au>
diff -Nru python-requests-unixsocket-0.1.5/ChangeLog python-requests-unixsocket-0.1.5/ChangeLog
--- python-requests-unixsocket-0.1.5/ChangeLog 2016-01-20 10:09:49.000000000 -0500
+++ python-requests-unixsocket-0.1.5/ChangeLog 1969-12-31 19:00:00.000000000 -0500
@@ -1,67 +0,0 @@
-CHANGES
-=======
-
-0.1.5
------
-
-* Fix test_unix_domain_adapter_connection_proxies_error
-* .travis.yml tweaks
-* Remove py32; Add py35
-* Only reject proxies if they are relevant (which should be never)
-* Add urllib3 requirement
-* Add basic tests for all supported methods
-* More PEP8 compliance refactoring
-* Fix up some oversights in method parsing
-* Tweak a few things in PR 12
-* Make PEP8 compliant with autopep8
-* Improve the monkey-patching library to replicate requests more closely
-
-0.1.4
------
-
-* README.rst: Add PyPI badge
-* Monkeypatch requests.request
-
-0.1.3
------
-
-* Fix #6 ("GET parameters stripped from URL")
-* GH-7: Fallback to import from urllib3
-
-0.1.2
------
-
-* Tweak monkeypatch code
-* Move/expose testutils like UnixSocketServerThread
-* Make monkeypatch url_scheme arg optional
-
-0.1.1
------
-
-* Remove :class: role from README.rst
-
-0.1.0
------
-
-* Doc tweaks
-* Expose Session and monkeypatch
-* Add Travis CI build badge
-* Test Python 3.2 with tox and Travis CI
-* Use threading.Event to less chance of race cond
-* Add .travis.yml for Travis CI
-* Change process => thread for test UnixSocketServer
-* Make WSGIApp use server attribute for shutdown
-* Use WSGIApp callable instead of closure
-* In tests, try to gracefully kill waitress server
-* Display text coverage report in tox coverage env
-* Add test for proxies error
-* Use b literal in test; fix py3 test failures
-* tox.ini: Correct name of env pep8 => flake8
-* tox.ini: Rename pep8 => flake8
-* .gitignore: Add AUTHORS and ChangeLog
-* Add pytest-pep8
-* Improve tests
-* Yay, tests are passing
-* .gitignore: Add .eggs/ for setuptools==7.0
-* Rename README.md -> README.rst
-* Initial commit
diff -Nru python-requests-unixsocket-0.1.5/debian/changelog python-requests-unixsocket-0.1.5/debian/changelog
--- python-requests-unixsocket-0.1.5/debian/changelog 2016-03-09 10:14:06.000000000 -0500
+++ python-requests-unixsocket-0.1.5/debian/changelog 2016-12-19 09:00:29.000000000 -0500
@@ -1,25 +1,27 @@
-python-requests-unixsocket (0.1.5-0ubuntu4) xenial; urgency=medium
+python-requests-unixsocket (0.1.5-3) unstable; urgency=medium
- * debian/rules: Fix python3 install.
+ * Team upload.
- -- Chuck Short <zulcss@ubuntu.com> Wed, 09 Mar 2016 10:13:41 -0500
+ [ Ondřej Nový ]
+ * Bumped debhelper compat version to 10
-python-requests-unixsocket (0.1.5-0ubuntu3) xenial; urgency=medium
+ [ Ondřej Kobližek ]
+ * Non case sensitive url comparison in tests (Closes: #848654)
- * debian/rules: Remove __pycache__
+ -- Ondřej Kobližek <koblizeko@gmail.com> Mon, 19 Dec 2016 15:00:29 +0100
- -- Chuck Short <zulcss@ubuntu.com> Wed, 09 Mar 2016 08:50:28 -0500
+python-requests-unixsocket (0.1.5-2) unstable; urgency=medium
-python-requests-unixsocket (0.1.5-0ubuntu2) xenial; urgency=medium
+ * Standards-Version is 3.9.8 now (no change)
+ * d/rules: Changed UPSTREAM_GIT protocol to https
+ * d/copyright: Changed source URL to https protocol
+ * d/s/options: extend-diff-ignore of .gitreview
+ * d/control: Using OpenStack's Gerrit as VCS URLs.
- * debian/rules: Enable tests
- * debian/watch: Fix watch file
+ -- Ondřej Nový <novy@ondrej.org> Sat, 09 Apr 2016 19:31:04 +0200
+python-requests-unixsocket (0.1.5-1) unstable; urgency=medium
- -- Chuck Short <zulcss@ubuntu.com> Thu, 03 Mar 2016 15:28:08 -0500
+ * Initial release. (Closes: #817052)
-python-requests-unixsocket (0.1.5-0ubuntu1) xenial; urgency=medium
-
- * Initial release.
-
- -- Chuck Short <zulcss@gmail.com> Tue, 16 Feb 2016 12:54:36 -0500
+ -- Thomas Goirand <zigo@debian.org> Mon, 07 Mar 2016 23:31:15 +0800
diff -Nru python-requests-unixsocket-0.1.5/debian/compat python-requests-unixsocket-0.1.5/debian/compat
--- python-requests-unixsocket-0.1.5/debian/compat 2016-02-16 12:54:38.000000000 -0500
+++ python-requests-unixsocket-0.1.5/debian/compat 2016-12-19 09:00:29.000000000 -0500
@@ -1 +1 @@
-9
+10
diff -Nru python-requests-unixsocket-0.1.5/debian/control python-requests-unixsocket-0.1.5/debian/control
--- python-requests-unixsocket-0.1.5/debian/control 2016-03-03 16:27:39.000000000 -0500
+++ python-requests-unixsocket-0.1.5/debian/control 2016-12-19 09:00:29.000000000 -0500
@@ -1,44 +1,60 @@
Source: python-requests-unixsocket
Section: python
Priority: optional
-Maintainer: Chuck Short <zulcss@buntu.com>
-Build-Depends: debhelper (>=9),
- dh-python,
- python-all (>= 2.6.6-3~),
+Maintainer: PKG OpenStack <openstack-devel@lists.alioth.debian.org>
+Uploaders: Thomas Goirand <zigo@debian.org>,
+Build-Depends: debhelper (>= 10),
+ dh-python,
+ openstack-pkg-tools,
+ python-all,
+ python-pbr,
python-setuptools,
python3-all,
+ python3-pbr,
python3-setuptools,
- python-pbr,
- python3-pbr
-Build-Depends-Indep: python-requests,
+Build-Depends-Indep: python-pytest,
+ python-requests,
python-urllib3,
+ python-waitress,
+ python3-pytest,
python3-requests,
python3-urllib3,
- python-waitress,
python3-waitress,
- python-pytest,
- python3-pytest
-Standards-Version: 3.9.6
+Standards-Version: 3.9.8
+Vcs-Browser: https://git.openstack.org/cgit/openstack/deb-python-requests-unixsocket?h=debian%2Fnewton
+Vcs-Git: https://git.openstack.org/openstack/deb-python-requests-unixsocket -b debian/newton
Homepage: https://github.com/msabramo/requests-unixsocket
-X-Python-Version: >= 2.6
-X-Python3-Version: >= 3.2
Package: python-requests-unixsocket
Architecture: all
-Depends: python-requests, ${python:Depends}, ${misc:Depends}
-Description: use requests to talk HTTP via a UNIX domain socket (Python 2)
- Requests is an HTTP library, written in Python, for human beings. This
- library adds optional support for requests to talk to HTTP via a UNIX
- socket.
+Depends: python-requests,
+ ${misc:Depends},
+ ${python:Depends},
+Description: use requests to talk HTTP via a UNIX domain socket - Python 2.7
+ The requests-unixsocket makes it possible to talk using the HTTP protocol via
+ a UNIX domain socket. Internally, requests-unixsocket uses monkeypatching to
+ use the functionality of requests while making minimal changes.
+ .
+ Requests allow you to send HTTP/1.1 requests. You can add headers, form data,
+ multipart files, and parameters with simple Python dictionaries, and access
+ the response data in the same way. It's powered by httplib and urllib3, but
+ it does all the hard work and crazy hacks for you.
.
- This package installs the library for Python 2.
+ This package contains the Python 2.7 module.
Package: python3-requests-unixsocket
Architecture: all
-Depends: python-requests, ${python3:Depends}, ${misc:Depends}
-Description: use requests to talk HTTP via a UNIX domain socket (Python 3)
- Requests is an HTTP library, written in Python, for human beings. This
- library adds optional support for requests to talk to HTTP via a UNIX
- socket.
+Depends: python3-requests,
+ ${misc:Depends},
+ ${python3:Depends},
+Description: Use requests to talk HTTP via a UNIX domain socket - Python 3.x
+ The requests-unixsocket makes it possible to talk using the HTTP protocol via
+ a UNIX domain socket. Internally, requests-unixsocket uses monkeypatching to
+ use the functionality of requests while making minimal changes.
+ .
+ Requests allow you to send HTTP/1.1 requests. You can add headers, form data,
+ multipart files, and parameters with simple Python dictionaries, and access
+ the response data in the same way. It's powered by httplib and urllib3, but
+ it does all the hard work and crazy hacks for you.
.
- This package installs the library for Python 3.
+ This package contains the Python 3.x module.
diff -Nru python-requests-unixsocket-0.1.5/debian/copyright python-requests-unixsocket-0.1.5/debian/copyright
--- python-requests-unixsocket-0.1.5/debian/copyright 2016-02-16 13:50:58.000000000 -0500
+++ python-requests-unixsocket-0.1.5/debian/copyright 2016-12-19 09:00:29.000000000 -0500
@@ -1,13 +1,13 @@
-Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: requests-unixsocket
Source: https://github.com/msabramo/requests-unixsocket
Files: *
-Copyright: (c) 2016 Marc Abramowitz
+Copyright: (c) 2014-2016, Marc Abramowitz <marc@marc-abramowitz.com>
License: Apache-2
Files: debian/*
-Copyright: 2016 Canonical Ltd
+Copyright: (c) 2016, Thomas Goirand <zigo@debian.org>
License: Apache-2
License: Apache-2
@@ -22,4 +22,6 @@
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-
+ .
+ On Debian-based systems the full text of the Apache version 2.0 license
+ can be found in /usr/share/common-licenses/Apache-2.0.
diff -Nru python-requests-unixsocket-0.1.5/debian/gbp.conf python-requests-unixsocket-0.1.5/debian/gbp.conf
--- python-requests-unixsocket-0.1.5/debian/gbp.conf 1969-12-31 19:00:00.000000000 -0500
+++ python-requests-unixsocket-0.1.5/debian/gbp.conf 2016-12-19 09:00:29.000000000 -0500
@@ -0,0 +1,9 @@
+[DEFAULT]
+upstream-branch = master
+debian-branch = debian/newton
+upstream-tag = %(version)s
+compression = xz
+
+[buildpackage]
+export-dir = ../build-area/
+
diff -Nru python-requests-unixsocket-0.1.5/debian/patches/do-not-run-tests-with--pep8.patch python-requests-unixsocket-0.1.5/debian/patches/do-not-run-tests-with--pep8.patch
--- python-requests-unixsocket-0.1.5/debian/patches/do-not-run-tests-with--pep8.patch 1969-12-31 19:00:00.000000000 -0500
+++ python-requests-unixsocket-0.1.5/debian/patches/do-not-run-tests-with--pep8.patch 2016-12-19 09:00:29.000000000 -0500
@@ -0,0 +1,11 @@
+Description: Do not run tests with --pep8
+Author: Thomas Goirand <zigo@debian.org>
+Forwarded: not-needed
+Last-Update: 2016-03-07
+
+--- python-requests-unixsocket-0.1.5.orig/pytest.ini
++++ python-requests-unixsocket-0.1.5/pytest.ini
+@@ -1,2 +1,2 @@
+ [pytest]
+-addopts = --tb=short --pep8
++addopts = --tb=short
diff -Nru python-requests-unixsocket-0.1.5/debian/patches/fix-pytest.patch python-requests-unixsocket-0.1.5/debian/patches/fix-pytest.patch
--- python-requests-unixsocket-0.1.5/debian/patches/fix-pytest.patch 2016-02-17 09:11:22.000000000 -0500
+++ python-requests-unixsocket-0.1.5/debian/patches/fix-pytest.patch 1969-12-31 19:00:00.000000000 -0500
@@ -1,7 +0,0 @@
-diff -Naurp python-requests-unixsocket-0.1.5.orig/pytest.ini python-requests-unixsocket-0.1.5/pytest.ini
---- python-requests-unixsocket-0.1.5.orig/pytest.ini 2014-11-25 12:18:22.000000000 -0500
-+++ python-requests-unixsocket-0.1.5/pytest.ini 2016-02-17 09:10:40.939362559 -0500
-@@ -1,2 +1,2 @@
- [pytest]
--addopts = --tb=short --pep8
-+addopts = --tb=short
diff -Nru python-requests-unixsocket-0.1.5/debian/patches/non-case-sensitive-url-cmp.patch python-requests-unixsocket-0.1.5/debian/patches/non-case-sensitive-url-cmp.patch
--- python-requests-unixsocket-0.1.5/debian/patches/non-case-sensitive-url-cmp.patch 1969-12-31 19:00:00.000000000 -0500
+++ python-requests-unixsocket-0.1.5/debian/patches/non-case-sensitive-url-cmp.patch 2016-12-19 09:00:29.000000000 -0500
@@ -0,0 +1,33 @@
+Description: non case sensitive url comparison in tests
+Forwarded: not-needed
+Author: Ondřej Kobližek <koblizeko@gmail.com>
+
+--- a/requests_unixsocket/tests/test_requests_unixsocket.py
++++ b/requests_unixsocket/tests/test_requests_unixsocket.py
+@@ -34,7 +34,7 @@
+ assert r.headers['X-Requested-Path'] == '/path/to/page'
+ assert r.headers['X-Socket-Path'] == usock_thread.usock
+ assert isinstance(r.connection, requests_unixsocket.UnixAdapter)
+- assert r.url == url
++ assert r.url.lower() == url.lower()
+ if method == 'head':
+ assert r.text == ''
+ else:
+@@ -62,7 +62,7 @@
+ assert r.headers['X-Requested-Query-String'] == 'timestamp=true'
+ assert r.headers['X-Socket-Path'] == usock_thread.usock
+ assert isinstance(r.connection, requests_unixsocket.UnixAdapter)
+- assert r.url == url
++ assert r.url.lower() == url.lower()
+ if method == 'head':
+ assert r.text == ''
+ else:
+@@ -110,7 +110,7 @@
+ assert r.headers['X-Socket-Path'] == usock_thread.usock
+ assert isinstance(r.connection,
+ requests_unixsocket.UnixAdapter)
+- assert r.url == url
++ assert r.url.lower() == url.lower()
+ if method == 'head':
+ assert r.text == ''
+ else:
diff -Nru python-requests-unixsocket-0.1.5/debian/patches/series python-requests-unixsocket-0.1.5/debian/patches/series
--- python-requests-unixsocket-0.1.5/debian/patches/series 2016-02-17 09:11:26.000000000 -0500
+++ python-requests-unixsocket-0.1.5/debian/patches/series 2016-12-19 09:00:29.000000000 -0500
@@ -1 +1,2 @@
-fix-pytest.patch
+do-not-run-tests-with--pep8.patch
+non-case-sensitive-url-cmp.patch
diff -Nru python-requests-unixsocket-0.1.5/debian/rules python-requests-unixsocket-0.1.5/debian/rules
--- python-requests-unixsocket-0.1.5/debian/rules 2016-03-09 10:09:22.000000000 -0500
+++ python-requests-unixsocket-0.1.5/debian/rules 2016-12-19 09:00:29.000000000 -0500
@@ -1,33 +1,44 @@
#!/usr/bin/make -f
-# See debhelper(7) (uncomment to enable)
-# output every command that modifies files on the build system.
-#export DH_VERBOSE = 1
-
PYTHONS:=$(shell pyversions -vr)
PYTHON3S:=$(shell py3versions -vr)
+UPSTREAM_GIT := https://github.com/msabramo/requests-unixsocket.git
+include /usr/share/openstack-pkg-tools/pkgos.make
+
+export OSLO_PACKAGE_VERSION=$(VERSION)
+
%:
- dh $@ --with python2,python3 --buildsystem=pybuild
+ dh $@ --buildsystem=python_distutils --with python2,python3
-override_dh_install:
- set -ex && for pyvers in $(PYTHONS); do \
- python$$pyvers setup.py install --install-layout=deb \
- --root $(CURDIR)/debian/python-requests-unixsocket; \
+override_dh_auto_install:
+ set -e ; for pyvers in $(PYTHONS); do \
+ python$$pyvers setup.py install --install-layout=deb \
+ --root $(CURDIR)/debian/python-requests-unixsocket; \
done
- set -ex && for pyvers in $(PYTHON3S); do \
- python$$pyvers setup.py install --install-layout=deb \
- --root $(CURDIR)/debian/python3-requests-unixsocket; \
+ set -e ; for pyvers in $(PYTHON3S); do \
+ python$$pyvers setup.py install --install-layout=deb \
+ --root $(CURDIR)/debian/python3-requests-unixsocket; \
done
+ rm -rf $(CURDIR)/debian/python*-requests-unixsocket/usr/lib/python*/dist-packages/*.pth
override_dh_auto_test:
ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
- set -e && set -x && \
- for i in 2.7 $(PYTHON3S) ; do \
- echo "===> Testing for python$$i" ; \
- PYTHONPATH=$(CURDIR) py.test-$$i requests_unixsocket/tests ;\
+ set -e ; set -x ; for pyvers in $(PYTHONS) $(PYTHON3S); do \
+ PYTHONPATH=$(CURDIR) python$$pyvers -m pytest requests_unixsocket/tests ; \
done
endif
-override_dh_auto_clean:
- rm -rf __pycache__
+override_dh_clean:
+ dh_clean -O--buildsystem=python_distutils
+ rm -rf build
+
+# Commands not to run
+override_dh_installcatalogs:
+override_dh_installemacsen override_dh_installifupdown:
+override_dh_installinfo override_dh_installmenu override_dh_installmime:
+override_dh_installmodules override_dh_installlogcheck:
+override_dh_installpam override_dh_installppp override_dh_installudev override_dh_installwm:
+override_dh_installxfonts override_dh_gconf override_dh_icons override_dh_perl override_dh_usrlocal:
+override_dh_installcron override_dh_installdebconf:
+override_dh_installlogrotate override_dh_installgsettings:
diff -Nru python-requests-unixsocket-0.1.5/debian/source/options python-requests-unixsocket-0.1.5/debian/source/options
--- python-requests-unixsocket-0.1.5/debian/source/options 1969-12-31 19:00:00.000000000 -0500
+++ python-requests-unixsocket-0.1.5/debian/source/options 2016-12-19 09:00:29.000000000 -0500
@@ -0,0 +1,2 @@
+extend-diff-ignore = "^[^/]*[.]egg-info/"
+extend-diff-ignore = "^[.]gitreview$"
diff -Nru python-requests-unixsocket-0.1.5/debian/watch python-requests-unixsocket-0.1.5/debian/watch
--- python-requests-unixsocket-0.1.5/debian/watch 2016-03-03 16:42:30.000000000 -0500
+++ python-requests-unixsocket-0.1.5/debian/watch 2016-12-19 09:00:29.000000000 -0500
@@ -1,3 +1,3 @@
version=3
-opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
-http://pypi.debian.net/requests-unixsocket/requests-unixsocket-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
+http://pypi.python.org/packages/source/r/requests-unixsocket requests-unixsocket-(.*).tar.gz
+
diff -Nru python-requests-unixsocket-0.1.5/.gitignore python-requests-unixsocket-0.1.5/.gitignore
--- python-requests-unixsocket-0.1.5/.gitignore 1969-12-31 19:00:00.000000000 -0500
+++ python-requests-unixsocket-0.1.5/.gitignore 2016-01-20 03:07:18.000000000 -0500
@@ -0,0 +1,60 @@
+# Byte-compiled / optimized / DLL files
+__pycache__/
+*.py[cod]
+
+# C extensions
+*.so
+
+# Distribution / packaging
+.Python
+env/
+build/
+develop-eggs/
+dist/
+downloads/
+eggs/
+.eggs/
+lib/
+lib64/
+parts/
+sdist/
+var/
+*.egg-info/
+.installed.cfg
+*.egg
+
+# PyInstaller
+# Usually these files are written by a python script from a template
+# before PyInstaller builds the exe, so as to inject date/other infos into it.
+*.manifest
+*.spec
+
+# Installer logs
+pip-log.txt
+pip-delete-this-directory.txt
+
+# Unit test / coverage reports
+htmlcov/
+.tox/
+.coverage
+.cache
+nosetests.xml
+coverage.xml
+
+# Translations
+*.mo
+*.pot
+
+# Django stuff:
+*.log
+
+# Sphinx documentation
+docs/_build/
+
+# PyBuilder
+target/
+
+# pbr
+# These are auto-generated by pbr (http://docs.openstack.org/developer/pbr/#authors-and-changelog)
+AUTHORS
+ChangeLog
diff -Nru python-requests-unixsocket-0.1.5/PKG-INFO python-requests-unixsocket-0.1.5/PKG-INFO
--- python-requests-unixsocket-0.1.5/PKG-INFO 2016-01-20 10:09:50.000000000 -0500
+++ python-requests-unixsocket-0.1.5/PKG-INFO 1969-12-31 19:00:00.000000000 -0500
@@ -1,84 +0,0 @@
-Metadata-Version: 1.1
-Name: requests-unixsocket
-Version: 0.1.5
-Summary: Use requests to talk HTTP via a UNIX domain socket
-Home-page: https://github.com/msabramo/requests-unixsocket
-Author: Marc Abramowitz
-Author-email: marc@marc-abramowitz.com
-License: Apache-2
-Description: requests-unixsocket
- ===================
-
- .. image:: https://pypip.in/version/requests-unixsocket/badge.svg?style=flat
- :target: https://pypi.python.org/pypi/requests-unixsocket/
- :alt: Latest Version
-
- .. image:: https://travis-ci.org/msabramo/requests-unixsocket.svg?branch=master
- :target: https://travis-ci.org/msabramo/requests-unixsocket
-
- Use `requests <http://docs.python-requests.org/>`_ to talk HTTP via a UNIX domain socket
-
- Usage
- -----
-
- Explicit
- ++++++++
-
- You can use it by instantiating a special ``Session`` object:
-
- .. code-block:: python
-
- import requests_unixsocket
-
- session = requests_unixsocket.Session()
-
- # Access /path/to/page from /tmp/profilesvc.sock
- r = session.get('http+unix://%2Ftmp%2Fprofilesvc.sock/path/to/page')
- assert r.status_code == 200
-
- Implicit (monkeypatching)
- +++++++++++++++++++++++++
-
- Monkeypatching allows you to use the functionality in this module, while making
- minimal changes to your code. Note that in the above example we had to
- instantiate a special ``requests_unixsocket.Session`` object and call the
- ``get`` method on that object. Calling ``requests.get(url)`` (the easiest way
- to use requests and probably very common), would not work. But we can make it
- work by doing monkeypatching.
-
- You can monkeypatch globally:
-
- .. code-block:: python
-
- import requests_unixsocket
-
- requests_unixsocket.monkeypatch()
-
- # Access /path/to/page from /tmp/profilesvc.sock
- r = requests.get('http+unix://%2Ftmp%2Fprofilesvc.sock/path/to/page')
- assert r.status_code == 200
-
- or you can do it temporarily using a context manager:
-
- .. code-block:: python
-
- import requests_unixsocket
-
- with requests_unixsocket.monkeypatch():
- # Access /path/to/page from /tmp/profilesvc.sock
- r = requests.get('http+unix://%2Ftmp%2Fprofilesvc.sock/path/to/page')
- assert r.status_code == 200
-
-
-Platform: UNKNOWN
-Classifier: Development Status :: 3 - Alpha
-Classifier: Intended Audience :: Developers
-Classifier: Intended Audience :: Information Technology
-Classifier: License :: OSI Approved :: Apache Software License
-Classifier: Operating System :: OS Independent
-Classifier: Programming Language :: Python
-Classifier: Programming Language :: Python :: 2
-Classifier: Programming Language :: Python :: 2.7
-Classifier: Programming Language :: Python :: 2.6
-Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.3
diff -Nru python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/dependency_links.txt python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/dependency_links.txt
--- python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/dependency_links.txt 2016-01-20 10:09:49.000000000 -0500
+++ python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/dependency_links.txt 1969-12-31 19:00:00.000000000 -0500
@@ -1 +0,0 @@
-
diff -Nru python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/not-zip-safe python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/not-zip-safe
--- python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/not-zip-safe 2016-01-20 10:09:30.000000000 -0500
+++ python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/not-zip-safe 1969-12-31 19:00:00.000000000 -0500
@@ -1 +0,0 @@
-
diff -Nru python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/pbr.json python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/pbr.json
--- python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/pbr.json 2016-01-20 10:09:49.000000000 -0500
+++ python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/pbr.json 1969-12-31 19:00:00.000000000 -0500
@@ -1 +0,0 @@
-{"is_release": false, "git_version": "0c1c7e0"}
\ No newline at end of file
diff -Nru python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/PKG-INFO python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/PKG-INFO
--- python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/PKG-INFO 2016-01-20 10:09:49.000000000 -0500
+++ python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/PKG-INFO 1969-12-31 19:00:00.000000000 -0500
@@ -1,84 +0,0 @@
-Metadata-Version: 1.1
-Name: requests-unixsocket
-Version: 0.1.5
-Summary: Use requests to talk HTTP via a UNIX domain socket
-Home-page: https://github.com/msabramo/requests-unixsocket
-Author: Marc Abramowitz
-Author-email: marc@marc-abramowitz.com
-License: Apache-2
-Description: requests-unixsocket
- ===================
-
- .. image:: https://pypip.in/version/requests-unixsocket/badge.svg?style=flat
- :target: https://pypi.python.org/pypi/requests-unixsocket/
- :alt: Latest Version
-
- .. image:: https://travis-ci.org/msabramo/requests-unixsocket.svg?branch=master
- :target: https://travis-ci.org/msabramo/requests-unixsocket
-
- Use `requests <http://docs.python-requests.org/>`_ to talk HTTP via a UNIX domain socket
-
- Usage
- -----
-
- Explicit
- ++++++++
-
- You can use it by instantiating a special ``Session`` object:
-
- .. code-block:: python
-
- import requests_unixsocket
-
- session = requests_unixsocket.Session()
-
- # Access /path/to/page from /tmp/profilesvc.sock
- r = session.get('http+unix://%2Ftmp%2Fprofilesvc.sock/path/to/page')
- assert r.status_code == 200
-
- Implicit (monkeypatching)
- +++++++++++++++++++++++++
-
- Monkeypatching allows you to use the functionality in this module, while making
- minimal changes to your code. Note that in the above example we had to
- instantiate a special ``requests_unixsocket.Session`` object and call the
- ``get`` method on that object. Calling ``requests.get(url)`` (the easiest way
- to use requests and probably very common), would not work. But we can make it
- work by doing monkeypatching.
-
- You can monkeypatch globally:
-
- .. code-block:: python
-
- import requests_unixsocket
-
- requests_unixsocket.monkeypatch()
-
- # Access /path/to/page from /tmp/profilesvc.sock
- r = requests.get('http+unix://%2Ftmp%2Fprofilesvc.sock/path/to/page')
- assert r.status_code == 200
-
- or you can do it temporarily using a context manager:
-
- .. code-block:: python
-
- import requests_unixsocket
-
- with requests_unixsocket.monkeypatch():
- # Access /path/to/page from /tmp/profilesvc.sock
- r = requests.get('http+unix://%2Ftmp%2Fprofilesvc.sock/path/to/page')
- assert r.status_code == 200
-
-
-Platform: UNKNOWN
-Classifier: Development Status :: 3 - Alpha
-Classifier: Intended Audience :: Developers
-Classifier: Intended Audience :: Information Technology
-Classifier: License :: OSI Approved :: Apache Software License
-Classifier: Operating System :: OS Independent
-Classifier: Programming Language :: Python
-Classifier: Programming Language :: Python :: 2
-Classifier: Programming Language :: Python :: 2.7
-Classifier: Programming Language :: Python :: 2.6
-Classifier: Programming Language :: Python :: 3
-Classifier: Programming Language :: Python :: 3.3
diff -Nru python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/requires.txt python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/requires.txt
--- python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/requires.txt 2016-01-20 10:09:49.000000000 -0500
+++ python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/requires.txt 1969-12-31 19:00:00.000000000 -0500
@@ -1,2 +0,0 @@
-requests>=1.1
-urllib3>=1.8
diff -Nru python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/SOURCES.txt python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/SOURCES.txt
--- python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/SOURCES.txt 2016-01-20 10:09:50.000000000 -0500
+++ python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/SOURCES.txt 1969-12-31 19:00:00.000000000 -0500
@@ -1,22 +0,0 @@
-.travis.yml
-AUTHORS
-ChangeLog
-LICENSE
-README.rst
-pytest.ini
-requirements.txt
-setup.cfg
-setup.py
-test-requirements.txt
-tox.ini
-requests_unixsocket/__init__.py
-requests_unixsocket/adapters.py
-requests_unixsocket/testutils.py
-requests_unixsocket.egg-info/PKG-INFO
-requests_unixsocket.egg-info/SOURCES.txt
-requests_unixsocket.egg-info/dependency_links.txt
-requests_unixsocket.egg-info/not-zip-safe
-requests_unixsocket.egg-info/pbr.json
-requests_unixsocket.egg-info/requires.txt
-requests_unixsocket.egg-info/top_level.txt
-requests_unixsocket/tests/test_requests_unixsocket.py
\ No newline at end of file
diff -Nru python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/top_level.txt python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/top_level.txt
--- python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/top_level.txt 2016-01-20 10:09:49.000000000 -0500
+++ python-requests-unixsocket-0.1.5/requests_unixsocket.egg-info/top_level.txt 1969-12-31 19:00:00.000000000 -0500
@@ -1 +0,0 @@
-requests_unixsocket
diff -Nru python-requests-unixsocket-0.1.5/setup.cfg python-requests-unixsocket-0.1.5/setup.cfg
--- python-requests-unixsocket-0.1.5/setup.cfg 2016-01-20 10:09:50.000000000 -0500
+++ python-requests-unixsocket-0.1.5/setup.cfg 2016-01-20 03:07:18.000000000 -0500
@@ -6,18 +6,19 @@
description-file = README.rst
license = Apache-2
home-page = https://github.com/msabramo/requests-unixsocket
-classifier =
- Development Status :: 3 - Alpha
- Intended Audience :: Developers
- Intended Audience :: Information Technology
- License :: OSI Approved :: Apache Software License
- Operating System :: OS Independent
- Programming Language :: Python
- Programming Language :: Python :: 2
- Programming Language :: Python :: 2.7
- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 3
- Programming Language :: Python :: 3.3
+# home-page = https://requests-unixsocket.readthedocs.org/
+classifier =
+ Development Status :: 3 - Alpha
+ Intended Audience :: Developers
+ Intended Audience :: Information Technology
+ License :: OSI Approved :: Apache Software License
+ Operating System :: OS Independent
+ Programming Language :: Python
+ Programming Language :: Python :: 2
+ Programming Language :: Python :: 2.7
+ Programming Language :: Python :: 2.6
+ Programming Language :: Python :: 3
+ Programming Language :: Python :: 3.3
test_suite = requests_unixsocket.tests
[files]
@@ -25,9 +26,3 @@
[wheel]
universal = 1
-
-[egg_info]
-tag_build =
-tag_date = 0
-tag_svn_revision = 0
-
|