1
0
forked from pool/python-pyScss

13 Commits

Author SHA256 Message Date
c7aaba9329 Accepting request 1068000 from devel:languages:python
- Add python-311.patch to support python 3.11
  gh#Kronuz/pyScss#426

OBS-URL: https://build.opensuse.org/request/show/1068000
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyScss?expand=0&rev=6
2023-02-28 11:48:37 +00:00
f6d367436d - Add python-311.patch to support python 3.11
gh#Kronuz/pyScss#426

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyScss?expand=0&rev=13
2023-02-21 11:42:03 +00:00
deb29aeb9e Accepting request 1007522 from devel:languages:python
- update to 1.4.0:
  * Add selector-append function support 
  * Fix FutureWarning
  * Fix collections deprecation warning
  * use pathlib2 instead of pathlib
- drop merged_pr_408.patch, pr_411.patch (upstream)

OBS-URL: https://build.opensuse.org/request/show/1007522
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyScss?expand=0&rev=5
2022-10-03 11:46:13 +00:00
78c2153cc7 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyScss?expand=0&rev=11 2022-10-02 09:29:52 +00:00
06fb1b593c - update to 1.4.0:
* Add selector-append function support 
  * Fix FutureWarning
  * Fix collections deprecation warning
  * use pathlib2 instead of pathlib
- drop merged_pr_408.patch, pr_411.patch (upstream)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyScss?expand=0&rev=10
2022-10-01 17:31:34 +00:00
5d8b8046e5 Accepting request 945620 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/945620
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyScss?expand=0&rev=4
2022-01-11 20:20:23 +00:00
3681f2b2f9 Accepting request 945599 from home:jayvdb:branches:devel:languages:python:django
- Activate tests
- Add missing build dependency six
- Add pr_411.patch for Python 3.10 support
- Add merged_pr_408.patch for pytest 6 support
- Disable Python 2 builds due to incompatibility

OBS-URL: https://build.opensuse.org/request/show/945599
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyScss?expand=0&rev=9
2022-01-11 16:29:50 +00:00
e4d35da836 Accepting request 798863 from devel:languages:python
- update to 1.3.7:
  * fix setup.py compatibility with newer setuptools

OBS-URL: https://build.opensuse.org/request/show/798863
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyScss?expand=0&rev=3
2020-04-29 18:52:57 +00:00
ea8fcd3fb4 - update to 1.3.7:
* fix setup.py compatibility with newer setuptools

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyScss?expand=0&rev=7
2020-04-29 10:36:05 +00:00
f0b85719e1 Accepting request 787686 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/787686
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyScss?expand=0&rev=2
2020-03-24 21:35:35 +00:00
Tomáš Chvátal
6487da5fea Accepting request 787530 from home:pgajdos:python
- version update to 1.3.6
  * no upstream changelog

OBS-URL: https://build.opensuse.org/request/show/787530
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyScss?expand=0&rev=5
2020-03-24 07:36:54 +00:00
523402af3c Accepting request 603515 from devel:languages:python
Cloud stuff

- convert to singlespec
- update to 1.3.5
  * The new less2scss module attempts to convert Less syntax to SCSS.
  * The *-exists functions from Sass 3.3 are now supported.
  * The contents of a file @import-ed in the middle of an input file
    now appears in the expected place, not at the end of the output.
  * Double-slashes within URLs, as often happens with base64-encoded
    data URLs, are no longer stripped as comments.
  * Nesting selectors that end with a combinator, e.g. div > { p {
    ... } }, now works correctly.
  * invert() is now left alone when the argument is a number,
    indicating the CSS filter rather than the Sass function.
  * if() now evaluates its arguments lazily.
  * str-slice() now silently corrects out-of-bounds indices.
  * append() now defaults to returning a space-delimited list, when
    the given list has fewer than two elements.
  * -moz-calc and -webkit-calc are recognized as variants of the
     calc() CSS function.
  * Filenames containing dots can now be imported.
  * Properties with a computed value of null are now omitted from the
    output.
  * The opacity token in IE's strange alpha(opacity=N) construct is
    now recognized case-insensitively.
  * The Compass gradient functions now recognize currentColor as a
    color.
  * The fonts extension should now work under Python 3.
  * Escaped astral plane characters no longer crash narrow Python 2
    builds.
  * The alpha value in rgba(...) is no longer truncated to only two
    decimal places.
  * Some edge cases with float precision were fixed, so 742px - 40px
    is no longer 701.99999999px.
- add missing dependency on python-enum34 
- update to 1.3.4:
  * no changelog available
- install README/LICENSE 
- Add python-six requirement; new dependency
- update to 1.2.1:
  * Bootstrap 3.2 compatibility fixes
- update to 1.2.0post3:
  * This is a significant release that greatly increases 
  compatibility with the reference compiler; in particular,
  the Sass port of Bootstrap now compiles.
  * There are a lot of changes here, so please feel free to
  report any bugs you see! The goal is 100% compatibility
   with the Ruby project.
  * Python 3 support. As a result, Python 2.5 no longer works;
  whether this is a bug or a feature is not yet clear.
  * It's possible to write custom Sass functions in Python,
  though the API for this is not final.
  * Experimental support for the map type and destructuring
  @each, both unreleased additions to the Ruby project.
  * Support for the new string and list functions in Sass 3.3.
  * Added background-brushed.
  Backwards-incompatible changes
  * Configuration via monkeypatching the scss module no
  longer works. Monkeypatch scss.config instead.
  * em and px are no longer compatible.
  * Unrecognized variable names are now a fatal error.
- version 1.1.5: initial build

OBS-URL: https://build.opensuse.org/request/show/603515
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pyScss?expand=0&rev=1
2018-05-15 08:06:16 +00:00
Tomáš Chvátal
d720b791c4 Accepting request 603233 from Cloud:OpenStack:Master
OBS-URL: https://build.opensuse.org/request/show/603233
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyScss?expand=0&rev=1
2018-05-03 06:48:49 +00:00