django-sass-processor 1.2.2+repack-1 source package in Ubuntu

Changelog

django-sass-processor (1.2.2+repack-1) unstable; urgency=medium

  * Team upload.
  * New upstream version 1.2.2+repack (Closes: #1030810)
  * Use dh-sequence-python3
  * Switch to autopkgtest-pkg-pybuild
  * Add R³

 -- Jochen Sprickerhof <email address hidden>  Tue, 14 Feb 2023 15:43:30 +0100

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
Oracular release universe misc
Noble release universe misc
Mantic release universe misc
Lunar release universe misc

Builds

Lunar: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
django-sass-processor_1.2.2+repack-1.dsc 2.3 KiB 5218452ef6735a4e199d101cf1b12f1cef74d9e565ba28dd5b5ef7b6c431e6ee
django-sass-processor_1.2.2+repack.orig.tar.gz 21.0 KiB 522bea170c985013e3d12e926fa9e26436aab01ab63c921154710c632e483c72
django-sass-processor_1.2.2+repack-1.debian.tar.xz 3.3 KiB d6331cfcb16c8c8cf65b58f4599a4785744b53ad1cf01fa3aafeae417211a918

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 when any of the imported SASS/SCSS files is younger than
 the corresponding generated CSS file.
 .
 This Django app provides a templatetag "sass_src",
 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 is generated alongside 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.