python2-storm-django-0.20-bp153.1.15 >  A `B썜!M@eeeq bZ`X/iѹxP>g85({ߪ*҄d}{`I^6@ǫPsP]Q IC8Ήyɠtz~XFZ؊0hG°gGڰpzٟIYCRHĘ wvq* ^vPtwr:7. %U*L-N.bO(ۢhzDz's+h_{YAZ W|'Z䴴Zo 20d89d57967a942ca31e64b523c19cd6afcc34fab563c582d45cb858d6dd6cec28568ea6263fbe13fbad9f748eb87063170a3d2fb5@`B썜!M@eee6<Tr"K @)9+#;, jd-}Buhmy42n93|Xf'i%+x+C#PޯQ鼨֛,Ł"ޅ8< j?a,4E1u:5XO&#^.e ƀ;s{ .!ꮲ{R`2BWVwQ-i:2&qlq!ױdHM;4{4^lD> MTv>pA'?'d ' H 39@      4H|(89: ?B!F!G"H"TI"X"Y"Z"[#\#]#T^$b$c%Od%e%f%l%u%v& w&|x&y'z'@'P'T'Z'Cpython2-storm-django0.20bp153.1.15Django support for the Storm ORMThe python-storm-django package contains the Django support for the Storm ORM.`Bsheep87iSUSE Linux Enterprise 15 SP3openSUSELGPL-2.0-or-laterhttps://bugs.opensuse.orgDevelopment/Languages/Pythonhttps://storm.canonical.comlinuxx86_64 # ,33A큤A큤`B}P/`B|`B|`B}P/`B|`B|P/`B|`B}P/`B|`B|P/`B|`B|f0ac0c000bd7d4ec5ba6bc57f929095e83b1582c81bbf639f4f26f8cdf21796fe4cefa5a1551572bcf39240ece9d9c662a297e1b943251dff1abe2cbf26ef60ce4cefa5a1551572bcf39240ece9d9c662a297e1b943251dff1abe2cbf26ef60ce3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855217ecf225dbc605868862b35018a1f13cd3dd41765fe822ff259299ce3b3f005217ecf225dbc605868862b35018a1f13cd3dd41765fe822ff259299ce3b3f0057ccf981b78301e62d1985b9c0724c2a69b0dacdcf180b5d6ee9adb0b9d164a166ec73fd733b8b1ef004d9c75552c02dbc21d394185715a4194b9e8b91fb30bd68928003162076fc16cf6f9cf26a3e69e90d3d8e65b187ddbc9abf753a26862cf937dd6ac5cf7e128fa23a62f1938e3c1c91aef4222bd0cd0fbfd1f17e72aa29a938fb30cdc8d7a151d0a032f64f1ac22aeda0496c0d02981d5f90c0320e15897938fb30cdc8d7a151d0a032f64f1ac22aeda0496c0d02981d5f90c0320e158972dfeed351691f485a73e051922af5bb59a6419d432b1d707c552d10eb0aa3f43caf4a3f4858f93bb38c4bd79c7704d0d08a686d840dd6f8ce8bc397ccef2dac8caf4a3f4858f93bb38c4bd79c7704d0d08a686d840dd6f8ce8bc397ccef2dac8rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpython-storm-0.20-bp153.1.15.src.rpmpython-storm-djangopython2-djangopython2-storm-backendpython2-storm-djangopython2-storm-django(x86-64)@     python(abi)python2-djangopython2-stormrpmlib(CompressedFileNames)rpmlib(FileDigests)rpmlib(PartialHardlinkSets)rpmlib(PayloadFilesHavePrefix)rpmlib(PayloadIsXz)2.70.203.0.4-14.6.0-14.0.4-14.0-15.2-14.14.1[@RRi O]@Ni@Jv@mcepl@suse.comp.drouand@gmail.comspeilicke@suse.comsaschpe@gmx.desaschpe@suse.dedominique-obs@leuenberger.net- Clean up SPEC file and converstion to the single spec (py3k switched off, though) - Don't package tests/ directory - New patch, storm-0.20-remove-ez_setup.patch ... ez_setup breaks py3k and it is unnecessary, so I just remove it from setup.py- Update to version 0.20 + A new CaptureTracer has been added to storm.testing, for capturing all SQL statements executed by Storm. It can be used like this: with CaptureTracer() as tracer: [#] Run queries pass print tracer.queries # Print all queries run in the context manager block You will need the python-fixtures package in order to use this feature. + Setuptools is now required to run setup.py. This makes it much easier to install the majority of the dependencies required to run the test suite in its entirety. + Disconnection errors arising from PostgreSQL are now more reliably detected, especially with regard to recent libpq updates in Ubuntu. There are also disconnection tests that simulate sudden termination of pgbouncer . + Insert expressions now support multi-row and subquery INSERT statements. + Support in the postgres backend to use the RETURNING extension for UPDATE statement, optionally specifying the columns to return. (PostgreSQL >= 8.2 only) + Add a new Distinct expression for pre-pending the 'DISTINCT' token to SQL expressions that support it (like columns). + Switch to REPEATABLE READ as isolation level for Postgres. If you use psycopg2 < 2.4, it doesn't change anything. For psycopg2 2.4 and newer, it will keep the same behavior on Postgres < 9 as it's equivalent to SERIALIZABLE, but it will be less strict on Postgres >= 9. + Add support for two-phase commits, using the DB API version 2.0, which is only supported by PostgreSQL. + ZStormResourceManager now has a schema_stamp_dir optional instance attribute that, if set, will be used to to save timestamps of the schema's patch packages, so schema upgrades will be performed only when needed. + When a SQLObjectResultSet object was sliced with slice.start and slice.end both zero (sqlobject[0:0]), the full, unsliced resultset was returned (bug #872086). + Fixes some test failures around Django disconnections from PostgreSQL stores. + Some of the proxy-less disconnection tests were causing segfaults, so they're now run in a subprocess via subunit's IsolatedTestCase, when it's available. + Fix a few non-uses of super() in TestHelper. + Abort the transaction and reset ZStorm at the end of tests/zope/README.txt. + Fix the ./test script to not import tests until after local eggs have been added to sys.path. This ensures that all possible features are available to the tests. + If transaction.commit() fails, call transaction.abort() to rollback everything and leave the transaction in a clean state when using Django's ZopeTransactionMiddleware and DatabaseWrapper. + It's now again possible to use the Desc() expression when passing an order_by parameter to a ReferenceSet (bug #620369). - Use sources tarball from Pypi- Require python-setuptools instead of distribute (upstreams merged)- Update to version 0.19: - A new Cast expressions compiles an input and the type to cast it to into a call the CAST function - The storm.zope.testing.ZStormResourceManager now supports applying database schemas using a custom URI, typically for connecting to the database using a different user with greater privileges than the user running the tests. Note that the format of the 'databases' parameter passed to the constructor of the ZStormResourceManager class has changed. - A new storm.twisted.transact module has been added with facilities to integrate Storm with twisted, by running transactions in a separate thread from the main one in order to not block the reactor. - ResultSet.config's "distinct" argument now also accepts a tuple of columns, which will be turned into a DISTINCT ON clause. - Provide wrapped cursor objects in the Django integration layer. Catch some disconnection errors that might otherwise be missed, leading to broken connections. - A new JSON property is available. It's similar to the existing Pickle property, except that it serializes data as JSON, and must back onto a text column rather than a byte column. - Cache the compilation of columns and tables - Add two new tracers extracted from the Launchpad codebase. BaseStatementTracer provides statements with parameters substituted to its subclasses. TimelineTracer records queries in a timeline (useful for OOPS reports). - New ROW constructor - Add support for Postgres DISTINCT ON queries. * See NEWS for more details - Split of Django and Twisted support packages- Update to version 0.18: * Include code to manage and migrate database schemas. See the storm.schema sub-package (bug #250412). * Added a storm.zope.testing.ZStormResourceManager class to manage a set of stores registered with ZStorm (bug #618704). * When a TimeoutError is raised it includes a description about why the exception was raised, to help make it easier to reason about timeout-related issues (bug #617973). * Improved the IResultSet interface to document the rationale of why some attributes are not included (bug #659883). * Make storm compatible with psycopg2 2.2 (bug #585704). * Fix bug #620615, which caused lazy expressions to cause subsequent loading of objects to explode if unflushed. * Fix bug #620508, which caused slicing a ResultSet to break subsequent count() calls. * Fix bug #659708, correcting the behavior of the sqlobject is_empty and __nonzero__ methods. * Fix bug #619017, which caused __storm_loaded__ to be called without its object's variables defined if the object were in the alive cache but disappeared. * See https://launchpad.net/storm for more changes... - Set license to LGPL-2.0+ (SPDX style) - BuildRequire python-distribute instead of python-setuptools - Use newer %{python_sitearch} macro instead of %{py_sitedir}- Package imported from PackMan, to be pushed to openSUSE:Factorypython-storm-djangosheep87 1614998656 0.20-bp153.1.150.200.200.20-bp153.1.150.20-bp153.1.150.20-bp153.1.15django__init__.py__init__.pyc__init__.pyobackend__init__.py__init__.pyc__init__.pyobase.pybase.pycbase.pyomiddleware.pymiddleware.pycmiddleware.pyostores.pystores.pycstores.pyo/usr/lib64/python2.7/site-packages/storm//usr/lib64/python2.7/site-packages/storm/django//usr/lib64/python2.7/site-packages/storm/django/backend/-fmessage-length=0 -grecord-gcc-switches -O2 -Wall -D_FORTIFY_SOURCE=2 -fstack-protector-strong -funwind-tables -fasynchronous-unwind-tables -fstack-clash-protectionobs://build.opensuse.org/openSUSE:Backports:SLE-15-SP3/standard/ffb69da99bf4c868ef9a1f6f51e74290-python-stormcpioxz5x86_64-suse-linuxdirectoryASCII textpython 2.7 byte-compiledemptyPython script, ASCII text executable RRRRRRRRRRRRRRRʺP?c\, 9/|4n '<8 Ε'QD9٫zؔ{p}6n~ KA4+ˌyZ*h1Rkp`'N/IFBiܭ_0U@xV uD:z9sY)&i \d,r2zA)h4ɵ=q/U¤B8E$jGwZjX%>H ib{#| |Eųrѯ \sr !\?4S3e)A"AmWMz)ϓ|-B/xWpWP+bN)x89{ewQp7d".ᬃ~ (C+kiʁF`5C5`Hz?y}DHaů_2mHaaUkX߀Wg+h3莕JcŁ؉橕m[72/_ {%@DxX7Msx$ *4=:[ǶWEĶ=Ca $# b~8_`GߘH=Βms~ݝ#6 -LNM÷䁸u^0:'3ǿws,~b34Xr|>QFFnM3}[J;(X;R+7e^mbsL[ѣabE ո9 sBllKi~@2Sn૩ª|L̡JDulܥfa˪`碆ʓ : p(;F+z^\RmŠI H:b*v@ ͳ[E$?~JugrzVzN=6me/u?TE\oM?e-f7˯e4dzxѝk y"YH'ȁA%&\vz [ )W=|r37zoDoީQl o,5 T3)lPLwtZI (jvη I+S6ԠCR3~ {7YqFq/>ۃBs#n)Trqhm`qzFD"Pd Kە'8d/ah8x},@f5"* ͣ(Bl0ٱp- nan\XPPy}m^P7 dQ Ly FG8Q;&ANYQQ1ޏ~: =}="XtcY$$RA\[0sg YTVzSPjv[3լk$}`m?ܤ9|z^#  Chu1ԅӫӞqlGˢ25R}`Kh1ödnu@ɹXh:)Pmغk"!Z1eŭ'Ńg$ +.X6E>=[.5ژ?>f?8Ê{sU6yz G-=Jf :K`f ( (>OdjiV-irnӞE8lģB6p٠,#!bqilR$0Mr!y#!#`g1 t_fS[OT~*oI`lmtzk=5MZ>6eImF:WgeTNtlՈtČY6D7AbpHi48uorI(ӭf&.=pB huUt%OEgBp^[OIyO(|oJBPiVG?0G;S7,(]8b8*p,pE\^fZxDm7ȹΠޫ!&>]Ęo=lW\@ub+OŽ_>vz^5+ˆ1NV9+r|wFȈ?=@k?WUa5(t>0@1;W8T H0vfkpϕۭw׷wuۢ`-F^lZEp% 4 ~ mؘN0c_;K0TH:WqҭJoYa"mw~.(ӱla "^ 1 7V2y;GV}*jP?;į>mJf17gP]IXЬVe8S_6:v1S%N n-H.LbԾ4m274ee.Q(3&McK"'3N&/hǀPEuD.BA{ AM=!dw!)5̪_6[$qq5~3B.-aV-☶eìvKW#ZA ǐD\Wab'n &sEd'OWtgDy+M1W_#Es+?i@,!ylX-D[cVaA 8g"2J:tf=lzA'GqvVj@".R@|İَ8W[ ^vX@Ë UNW35q>;115V T|||'K5\ъr B Wn|<-l'}?W8n>EIҺm3)*gu.tk4J"\ycv "EPL?nyŜY{4Is W9Pm|[O6۱wi9Zȫ\/[qT7?HhAY8mqѣ>25Bޙ3 iEԖ 2|3ނ#7yx ѵ{!(2'P7f;(W$fiwiCF {zH[4KX>f,D LD~q-\:Q\&s,hjj؜7]4q2>ڜH+{ S ȢC.ҕ0ȕ!;Z~Ňu^,5Ŏ)d9LbA3떦 ēt/B,pp9XkbQ#L"R,D:+~Fs DI$ t! u9Yb8BMnEw*۴ʉm4. w\:pB膒9BT]@C(kܶM/v.a_ehսL1/tp7 =o=*BW YZ