python2-storm-django-0.20-bp153.1.15 >  A `Bٜ!M@eeeϊ\|I@3$;EG@laInƩy¦g^ۺsd=- E0HHWWD OdTtGk FR7-_v>bJY K!N=^3CLmbUz~bUr\[8u@Qvw,iŀeњP,4V \y>D\F Q=5~ϕ]*aO]0yߌ]jN?fښڭ0229e3b676a722acf77c41a6bf4b037cb612d8ed6ad6b9f8d05d197ae23736a21e04b09b846758139dd731b3caaf73ae1ecaec00@`Bٜ!M@eeey'ϤK&7W['B"pA'?'d ' H 39@      4H|(89: ?B!F!G"H"TI"X"Y"Z"[#\#]#T^$b$c%Od%e%f%l%u%v&w&xx&y'z'<'L'P'V'Cpython2-storm-django0.20bp153.1.15Django support for the Storm ORMThe python-storm-django package contains the Django support for the Storm ORM.`Bs390p22iSUSE Linux Enterprise 15 SP3openSUSELGPL-2.0-or-laterhttps://bugs.opensuse.orgDevelopment/Languages/Pythonhttps://storm.canonical.comlinuxs390x # ,33A큤A큤`BP/`B`B`BP/`B`BP/`B`BP/`B`BP/`B`Bf0ac0c000bd7d4ec5ba6bc57f929095e83b1582c81bbf639f4f26f8cdf21796fe4cefa5a1551572bcf39240ece9d9c662a297e1b943251dff1abe2cbf26ef60ce4cefa5a1551572bcf39240ece9d9c662a297e1b943251dff1abe2cbf26ef60ce3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855217ecf225dbc605868862b35018a1f13cd3dd41765fe822ff259299ce3b3f005217ecf225dbc605868862b35018a1f13cd3dd41765fe822ff259299ce3b3f0057ccf981b78301e62d1985b9c0724c2a69b0dacdcf180b5d6ee9adb0b9d164a166ec73fd733b8b1ef004d9c75552c02dbc21d394185715a4194b9e8b91fb30bd68928003162076fc16cf6f9cf26a3e69e90d3d8e65b187ddbc9abf753a26862cf937dd6ac5cf7e128fa23a62f1938e3c1c91aef4222bd0cd0fbfd1f17e72aa29a938fb30cdc8d7a151d0a032f64f1ac22aeda0496c0d02981d5f90c0320e15897938fb30cdc8d7a151d0a032f64f1ac22aeda0496c0d02981d5f90c0320e158972dfeed351691f485a73e051922af5bb59a6419d432b1d707c552d10eb0aa3f43caf4a3f4858f93bb38c4bd79c7704d0d08a686d840dd6f8ce8bc397ccef2dac8caf4a3f4858f93bb38c4bd79c7704d0d08a686d840dd6f8ce8bc397ccef2dac8rootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootrootpython-storm-0.20-bp153.1.15.src.rpmpython-storm-djangopython2-djangopython2-storm-backendpython2-storm-djangopython2-storm-django(s390-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-djangos390p22 1615000270 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-stormcpioxz5s390x-suse-linuxdirectoryASCII textpython 2.7 byte-compiledemptyPython script, ASCII text executable RRRRRRRRRRRRRRRejYҢ(6Impw~utf-8b9d564bda0f135bd29bbd0fb3ee7af57edb13bb20b47130c08dfb1593d1d7ca7?7zXZ !t/v] crt:bLL*mGRogJ]bcMBM:Ù*B Mcv~HY:EO%Ng-S3X (pH;vND;|AQ;)ٙP{ @C`%iT=G`@axbz~C؏Pjث;6UGrYf* !I|g 5j!:=iӬ}.AU]g@%8 'LYӰ薐Ĕe iT Cvn1;g]&ȟm3dFBwk)u:I AcKܔiI1=Ib}sL Ynn-C56/f.ާ:[mBة_7iIXg쭋m]A5`(bM.ƦA>ǘv}B8GЍUBr<0Õ#؟ÞkG3 fk|zw+Łϴ2p7=sFr9/> nmyippgw RY&+z pwNxSKcDh][(!ዄ]bI\@9Ngnm|5P|;s%zl\qwCI˚kf&?Xޗ |tH}[x7fwӨfjK!X47;(BA n5=~3 Kߵ "kJ|X@ znt1[|ۚ'v%sԐtVp;әGW(h~cu_iDz7tmqޒi^:kZ40@=j?m T}zc6+ؕˎ2VxsB[G,agtJKBQiqAc0MxhJ}*SrGlX`|ol`Yv{4irN$B9xE`;Po(iî{_\vj'@pk |Ȭ>QaV}D׀GJlޠU,.|&tYj@`iRA9'}XsRp,h; "Ey)#O>zCV\a[Xp!6[A﹆J|D \7Y=yuIAk Cgm5w﫚^~m'Ice{ŝT"c AW`ORBc !.qb=J܈A iR9MMO1-!{[Q`e9Sadd/p.ژ&Sd[iun=^_H>%vfE:(q{[߷i &*|Mw2\۷<\{: [_"LNАR sۋu#*JͰ;X BH,<56`+S2N_Q'z+A\=FxXwͤeBaʴ$r>g%}j!ܹ:)ͮf"@SxZ)+{;x!!Ҋ)=ZEQXd{AY6C6yiA .[*ֈ6yub'ᨐEü3BmY;56UFé xEpu]]bnڲ W4 W8܄~ġnK[UGFm :IpAGif'#ۭޅXgLhK&u@W= kLL\NaG7xKWv lQKBf^WBK8zƾ;uyeęRFi!&V ^ TN xNgpGs&s2`[ؚ 5tQt-JFxizʄs<"g߉3L 7]fXTu44Ƌ#3 v'vיu4Ur'%A@-kGl *4w,xUHjcɁ9 d*PMJ ŘH`шw2F;21Dza&K}p78hJrڹK%*T=B*9aB ~/fqIgo?>m]|x Вڐ5qn:PV_.e%)}$|fz8=t5)3$2Q d\lvcǣTsrar)!hƩ=r>P}wNwKzN bf\d-VĔVya]}uj݆ Ρ[ c~NT#!E;{<4Rbu+/P1rz(\( &O@j Kޛ~cr@9ݼƢ4)J#ed^~a%xǔgƚ7)gJUU2hiEN43'JJ{AU_ nNQF]P0Ƙȥ[xʹ o0>QzF.+;^ Y! {Rnct$$g?]"xto by14WQȟpi4=ev<_:xQ˪.2L"wKGl$MlM#:%c-lJj#cL՞ljG'}ԅ\\ }iSVad ,!GIn ߔY ?񾥾X^ <{շ0G]ukC9pPa7fS$'+?HZ@~XKcYs,n)kX4# %T"8=92FBj+i%vG C lV#ؐ܃+1 ^789N5zd-nTᜓUQMB0hBN䢛@Jt"ԴC` :˖!6~kA@ Oj.+ç!9 TuPR3AMftlyQ=W\D6ۣus;4nћ@?ΘS/9&S[w rz0PŷOIH$m3gŜroNr9SڴIz9V >~ΞnSjF H'&iրL$Dj( j!N|9GmIʬrd^ {3!ZD; |xU;DOTӄ ?@\hh{H*Fr" 5@FaѸ\eewdF=SGۿ=0?gZ&&E:pN,*hHӈ6h@V5TJu%6ki]W/PX:H,"Ez~1X?wG',Iʚd L71S$UEQiNHvǿ4L+x+4}~J;aX5⻜* /`śc6t$1Y^q,4~yW8.AJ/j [-j3uHY3s%]C-"NaX3Ή 2K%C.?^"+Dx = |@?(y6?ZзA.Hfeml9(yq(8x_ut#sqGejtBG㧶AU!S"]!<4SpOau9%CNu:~u(C3iC[jf) $g$qB-5[:#;&"ı>vm@ '%PEXyJYA0ވ* YZ