python-minijinja_2.5.0-1_amd64.changes (click to toggle) | |
---|---|
Format: | 1.8 |
Date: | Sun, 26 Jan 2025 20:09:33 +0200 |
Source: | python-minijinja |
Binary: | python3-minijinja python3-minijinja-dbgsym |
Architecture: | source amd64 |
Version: | 2.5.0-1 |
Distribution: | unstable |
Urgency: | medium |
Maintainer: | Debian Python Team <team+python@tracker.debian.org> |
Changed-By: | Carsten Schoenert <c.schoenert@t-online.de> |
Description: | python3-minijinja - Experimental Python binding of the Rust MiniJinja template engine |
Closes: | 1094172 |
Changes: | python-minijinja (2.5.0-1) unstable; urgency=medium * [1f36dee] New upstream version 2.5.0 * [c3ea116] First and Basic Debianization (Closes: 1094172) |
Files: | 0f4387ba9d42f681fe6d6d6f7e76bb04 2371 python optional python-minijinja_2.5.0-1.dsc 0f2a16001597db47fa8fbab5f407ddba 21489 python optional python-minijinja_2.5.0.orig.tar.gz 3469b75cf18d13934d440c5e47afcccb 5364 python optional python-minijinja_2.5.0-1.debian.tar.xz 886644000a91ddbf86b66f825257d991 23991 python optional python-minijinja_2.5.0-1_amd64.buildinfo 89f540eb87104a0f1b89f84abb24fd93 8168412 debug optional python3-minijinja-dbgsym_2.5.0-1_amd64.deb eba9fe9a1973312513552db79dda1eec 691836 python optional python3-minijinja_2.5.0-1_amd64.deb |
python-minijinja_2.5.0-1.dsc (click to toggle) | |
---|---|
Format: | 3.0 (quilt) |
Source: | python-minijinja |
Binary: | python3-minijinja |
Architecture: | any |
Version: | 2.5.0-1 |
Maintainer: | Debian Python Team <team+python@tracker.debian.org> |
Uploaders: | Carsten Schoenert <c.schoenert@t-online.de>, Kathara Sasikumar <katharasasikumar007@gmail.com>, |
Homepage: | https://github.com/mitsuhiko/minijinja |
Standards-Version: | 4.7.0 |
Vcs-Browser: | https://salsa.debian.org/python-team/packages/python-minijinja |
Vcs-Git: | https://salsa.debian.org/python-team/packages/python-minijinja.git |
Testsuite: | autopkgtest, autopkgtest-pkg-python |
Testsuite-Triggers: | python3-all, python3-pytest |
Build-Depends: | cargo, debhelper-compat (=13), dh-sequence-python3, librust-minijinja-dev (>=2.5.0), librust-pyo3-dev (>=0.22.6), pybuild-plugin-pyproject, python3-all, python3-maturin, python3-pytest<!nocheck> |
Package-List: | python3-minijinja deb python optional arch=any |
Files: | 0f2a16001597db47fa8fbab5f407ddba 21489 python-minijinja_2.5.0.orig.tar.gz 3469b75cf18d13934d440c5e47afcccb 5364 python-minijinja_2.5.0-1.debian.tar.xz |
README.source for python-minijinja_2.5.0-1.dsc (click to toggle) | |
---|---|
This package is maintained with git-buildpackage(1). It follows DEP-14 for branch naming (e.g. using debian/master for the current version in Debian unstable due Debian Python team policy). It uses pristine-tar(1) to store enough information in git to generate bit identical tarballs when building the package without having downloaded an upstream tarball first. When working with patches it is recommended to use "gbp pq import" to import the patches, modify the source and then use "gbp pq export --commit" to commit the modifications. The changelog is generated using "gbp dch" so if you submit any changes don't bother to add changelog entries but rather provide a nice git commit message that can then end up in the changelog. It is recommended to build the package with pbuilder using: gbp buildpackage --git-pbuilder For information on how to set up a pbuilder environment see the git-pbuilder(1) manpage. In short: DIST=sid git-pbuilder create gbp clone https://salsa.debian.org/python-team/packages/python-minijinja.git cd python-minijinja gbp buildpackage --git-pbuilder Repacked source code tarball ---------------------------- The upstream source code for the Python library is included in the tarball for all MiniJinja components and available on the home of the project on GitHub. https://github.com/mitsuhiko/minijinja/tags As we are not interessted in all parts of the upstream source we do a clean out of all files and folders we don't need for building the binary package. This is done in the section [import-orig] by the postunpack hook of git-buildpackage. Have a look at the small helper script debian/repack-minijinja-py.sh for details. Basically every file in the top folder of the archive is gonna through away as also every folder except a folder named 'minijinja-py'. Finally the content of the folder 'minijinja-py' is moved into the top folder and the folder is also getting removed. -- Carsten Schoenert <c.schoenert@t-online.de> Sat, 25 Jan 2025 14:55:00 +0200 |
control file for python3-minijinja_2.5.0-1_amd64.deb (click to toggle) | |
---|---|
Package: | python3-minijinja |
Source: | python-minijinja |
Version: | 2.5.0-1 |
Architecture: | amd64 |
Maintainer: | Debian Python Team <team+python@tracker.debian.org> |
Installed-Size: | 2177 |
Depends: | python3 (>=3~), python3:any, libc6 (>=2.38), libgcc-s1 (>=4.2) |
Section: | python |
Priority: | optional |
Homepage: | https://github.com/mitsuhiko/minijinja |
Description: | Experimental Python binding of the Rust MiniJinja template engine MiniJinja is a powerful but minimal dependency template engine for Rust which is based on the syntax and behavior of the Jinja2 template engine for Python. It’s implemented on top of serde. The goal is to be able to render a large chunk of the Jinja2 template ecosystem from Rust with a minimal engine and to leverage an already existing ecosystem of editor integrations. minijinja-py (packaged as python3-minijinja) is an experimental binding of MiniJinja (https://github.com/mitsuhiko/minijinja) to Python. It has somewhat limited functionality compared to the Rust version. These bindings use maturin (https://www.maturin.rs/) and pyo3 (https://pyo3.rs/). . You might want to use MiniJinja instead of Jinja2 when the full feature set of Jinja2 is not required and you want to have the same rendering experience of a data set between Rust and Python. . With these bindings MiniJinja can render some Python objects and values that are passed to templates, but there are clear limitations with regards to what can be done. . This package provides Python bindings for the Rust MiniJinja template engine. |
contents of python3-minijinja_2.5.0-1_amd64.deb (click to toggle) | |
---|---|
drwxr-xr-x root/root 0 2025-01-26 18:09 ./ drwxr-xr-x root/root 0 2025-01-26 18:09 ./usr/ drwxr-xr-x root/root 0 2025-01-26 18:09 ./usr/lib/ drwxr-xr-x root/root 0 2025-01-26 18:09 ./usr/lib/python3/ drwxr-xr-x root/root 0 2025-01-26 18:09 ./usr/lib/python3/dist-packages/ drwxr-xr-x root/root 0 2025-01-26 18:09 ./usr/lib/python3/dist-packages/minijinja/ -rw-r--r-- root/root 5380 2025-01-26 18:09 ./usr/lib/python3/dist-packages/minijinja/__init__.py -rw-r--r-- root/root 5196 2025-01-26 18:09 ./usr/lib/python3/dist-packages/minijinja/__init__.pyi -rw-r--r-- root/root 558 2025-01-26 18:09 ./usr/lib/python3/dist-packages/minijinja/_internal.py -rw-r--r-- root/root 2186048 2025-01-26 18:09 ./usr/lib/python3/dist-packages/minijinja/_lowlevel.abi3.so -rw-r--r-- root/root 238 2025-01-26 18:09 ./usr/lib/python3/dist-packages/minijinja/_lowlevel.pyi drwxr-xr-x root/root 0 2025-01-26 18:09 ./usr/lib/python3/dist-packages/minijinja-2.5.0.dist-info/ -rw-r--r-- root/root 7 2025-01-26 18:09 ./usr/lib/python3/dist-packages/minijinja-2.5.0.dist-info/INSTALLER -rw-r--r-- root/root 8792 2025-01-26 18:09 ./usr/lib/python3/dist-packages/minijinja-2.5.0.dist-info/METADATA -rw-r--r-- root/root 97 2025-01-26 18:09 ./usr/lib/python3/dist-packages/minijinja-2.5.0.dist-info/WHEEL drwxr-xr-x root/root 0 2025-01-26 18:09 ./usr/share/ drwxr-xr-x root/root 0 2025-01-26 18:09 ./usr/share/doc/ drwxr-xr-x root/root 0 2025-01-26 18:09 ./usr/share/doc/python3-minijinja/ -rw-r--r-- root/root 216 2025-01-26 18:09 ./usr/share/doc/python3-minijinja/changelog.Debian.gz -rw-r--r-- root/root 2344 2025-01-25 14:28 ./usr/share/doc/python3-minijinja/copyright |
copyright of python3-minijinja_2.5.0-1_amd64.deb (click to toggle) | |
---|---|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: minijinja Upstream-Contact: Armin Ronacher <armin.ronacher@active-4.com> Source: https://github.com/mitsuhiko/minijinja Comment: The upstream source is cleaned out about all non relevant parts so only the content of the subfolder minijinja-py is beeing left over. The Rust specific binary package librust-minijinja-dev is build up from the same source, but done in the way the Debian Rust Team usually do their packaging so the Python library can't be build from that. Files: * Copyright: Armin Ronacher <armin.ronacher@active-4.com> License: Apache-2.0 Files: debian/* Copyright: 2025 Carsten Schoenert <c.schoenert@t-online.de> License: BSD-3-clause License: Apache-2.0 On Debian systems the full text of the Apache-2.0 license can be found in /usr/share/common-licenses/Apache-2.0. License: BSD-3-clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the owner nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
control file for python3-minijinja-dbgsym_2.5.0-1_amd64.deb (click to toggle) | |
---|---|
Package: | python3-minijinja-dbgsym |
Source: | python-minijinja |
Version: | 2.5.0-1 |
Auto-Built-Package: | debug-symbols |
Architecture: | amd64 |
Maintainer: | Debian Python Team <team+python@tracker.debian.org> |
Installed-Size: | 8495 |
Depends: | python3-minijinja (=2.5.0-1) |
Section: | debug |
Priority: | optional |
Description: | debug symbols for python3-minijinja |
Build-Ids: | ad55ce678754ea7a5d9e064ef98807a887d6347e |
contents of python3-minijinja-dbgsym_2.5.0-1_amd64.deb (click to toggle) | |
---|---|
drwxr-xr-x root/root 0 2025-01-26 18:09 ./ drwxr-xr-x root/root 0 2025-01-26 18:09 ./usr/ drwxr-xr-x root/root 0 2025-01-26 18:09 ./usr/lib/ drwxr-xr-x root/root 0 2025-01-26 18:09 ./usr/lib/debug/ drwxr-xr-x root/root 0 2025-01-26 18:09 ./usr/lib/debug/.build-id/ drwxr-xr-x root/root 0 2025-01-26 18:09 ./usr/lib/debug/.build-id/ad/ -rw-r--r-- root/root 8687664 2025-01-26 18:09 ./usr/lib/debug/.build-id/ad/55ce678754ea7a5d9e064ef98807a887d6347e.debug drwxr-xr-x root/root 0 2025-01-26 18:09 ./usr/share/ drwxr-xr-x root/root 0 2025-01-26 18:09 ./usr/share/doc/ lrwxrwxrwx root/root 0 2025-01-26 18:09 ./usr/share/doc/python3-minijinja-dbgsym -> python3-minijinja |
copyright of python3-minijinja-dbgsym_2.5.0-1_amd64.deb (click to toggle) | |
---|---|
WARNING: No copyright found, please check package manually. |
Timestamp: 26.01.2025 / 19:03:07 (UTC)