django-sass-processor 1.1-1 source package in Ubuntu

Changelog

django-sass-processor (1.1-1) unstable; urgency=medium

  [ Ondřej Nový ]
  * d/control: Update Maintainer field with new Debian Python Team
    contact address.
  * d/control: Update Vcs-* fields with new Debian Python Team Salsa
    layout.

  [ Dominik George ]
  * New upstream version.
    + Drop patches as they were applied upstream.
    + Update d/copyright years and authors.
  * Add myself as Uploader to track in DMD (I am also upstream now).
  * Bump Standards-Version (no changes needed).
  * Depend on python3-libsass.
  * Suggest python3-jinja2.

 -- Dominik George <email address hidden>  Thu, 30 Sep 2021 11:06:22 +0200

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Jammy release universe misc

Builds

Jammy: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
django-sass-processor_1.1-1.dsc 1.8 KiB e97ea2728ba218670613e054b87f4f896d80e3cf2ddd7c8a24f5af0075f31e4c
django-sass-processor_1.1.orig.tar.gz 20.6 KiB 03c8c46766fa3e48c0f2e385e81793013068775a10159b63e6a9913f2c1e3fb9
django-sass-processor_1.1-1.debian.tar.xz 3.2 KiB e045e7cefa768e90c8cd10c7f8efebae2e09d7e348ea1cbf6f5326d24c68d0b1

Available diffs

No changes file available.

Binary packages built by this source

python3-django-sass-processor: compile files from markup languages such as SASS/SCSS

 django-sass-processor converts *.scss or *.sass files into *.css
 while rendering templates. For performance reasons this is done only
 once, since the preprocessor keeps track on the timestamps and only
 recompiles, if any of the imported SASS/SCSS files is younger than
 the corresponding generated CSS file.
 .
 This Django app provides a templatetag {% sass_src
 'path/to/file.scss' %}, which can be used instead of the built-in
 templatetag static. Since version 0.3.4 this also works for Jinja2
 templates.
 .
 If SASS/SCSS files shall be referenced through the Media class, or
 media property, the SASS processor can be used directly.
 .
 Additionally, django-sass-processor is shipped with a management
 command, which can convert the content of all occurrences inside the
 templatetag sass_src as an offline operation. Hence the libsass
 compiler is not required in a production environment.
 .
 During development, a `sourcemap <https://developer.chrome.com=""
 devtools="" docs="" css-preprocessors="">`__ is generated along side
 with the compiled *.css file. This allows one to debug style sheet
 errors much easier.
 .
 With this tool, you can safely remove your Ruby installations
 "Compass" and "SASS" from your Django projects. You neither need any
 directory "watching" daemons based on node.js.