Debian NEW package overview for python-minijinja
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
lintian 2.104.0 check for python-minijinja_2.5.0-1.dsc (click to toggle)
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.
lintian 2.104.0 check for python3-minijinja_2.5.0-1_amd64.deb (click to toggle)
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
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
lintian 2.104.0 check for python3-minijinja-dbgsym_2.5.0-1_amd64.deb (click to toggle)
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

Timestamp: 26.01.2025 / 19:03:07 (UTC)