head	1.2;
access;
symbols
	pkgsrc-2026Q1:1.2.0.22
	pkgsrc-2026Q1-base:1.2
	pkgsrc-2025Q4:1.2.0.20
	pkgsrc-2025Q4-base:1.2
	pkgsrc-2025Q3:1.2.0.18
	pkgsrc-2025Q3-base:1.2
	pkgsrc-2025Q2:1.2.0.16
	pkgsrc-2025Q2-base:1.2
	pkgsrc-2025Q1:1.2.0.14
	pkgsrc-2025Q1-base:1.2
	pkgsrc-2024Q4:1.2.0.12
	pkgsrc-2024Q4-base:1.2
	pkgsrc-2024Q3:1.2.0.10
	pkgsrc-2024Q3-base:1.2
	pkgsrc-2024Q2:1.2.0.8
	pkgsrc-2024Q2-base:1.2
	pkgsrc-2024Q1:1.2.0.6
	pkgsrc-2024Q1-base:1.2
	pkgsrc-2023Q4:1.2.0.4
	pkgsrc-2023Q4-base:1.2
	pkgsrc-2023Q3:1.2.0.2
	pkgsrc-2023Q3-base:1.2
	pkgsrc-2023Q2:1.1.0.2
	pkgsrc-2023Q2-base:1.1;
locks; strict;
comment	@# @;


1.2
date	2023.07.24.04.55.34;	author adam;	state Exp;
branches;
next	1.1;
commitid	dSK6sid096H3Q0yE;

1.1
date	2023.05.29.08.44.23;	author adam;	state Exp;
branches;
next	;
commitid	0Xhlg031LP9jUPqE;


desc
@@


1.2
log
@py-versioneer: updated to 0.29

0.29

This release allows for pyproject.toml-only build systems to allow versioneer to find
the project root, despite an absense of a setup.py. Provides some error message support
when the pyproject.toml is malformed. Finally we added basic type-hinting to the project,
which should help users of type-checking systems ensure correct code when vendoring.

What's Changed

FIX: Add error output when pyproject.toml is malformed.
FIX: Add name to setup.py to work around a github dependency graph bug.
ENH: Add basic type information throughout project.
ENH: Detect pyproject.toml as project root (to support PDM).
MNT: Overwrite version file instead of delete/unlink.
MNT: Use https for the unlicense url.
MNT: Removal of CJM as maintainer.
MNT: Prepare release 0.29.
CI: Use 3.11 release (not rc).
@
text
@# $NetBSD: Makefile,v 1.1 2023/05/29 08:44:23 adam Exp $

DISTNAME=	versioneer-0.29
PKGNAME=	${PYPKGPREFIX}-${DISTNAME}
CATEGORIES=	devel python
MASTER_SITES=	${MASTER_SITE_PYPI:=v/versioneer/}

MAINTAINER=	pkgsrc-users@@NetBSD.org
HOMEPAGE=	https://github.com/python-versioneer/python-versioneer
COMMENT=	Version-string management for VCS-controlled trees
LICENSE=	unlicense

USE_LANGUAGES=	# none

USE_PKG_RESOURCES=	yes

PYTHON_VERSIONS_INCOMPATIBLE=	27

.include "../../lang/python/pyversion.mk"
.if ${PYTHON_VERSION} < 311
DEPENDS+=	${PYPKGPREFIX}-tomli-[0-9]*:../../textproc/py-tomli
.endif

post-install:
	cd ${DESTDIR}${PREFIX}/bin && \
	${MV} versioneer versioneer-${PYVERSSUFFIX} || ${TRUE}

.include "../../lang/python/egg.mk"
.include "../../mk/bsd.pkg.mk"
@


1.1
log
@py-versioneer: added version 0.28

This is a tool for managing a recorded version number in setuptools-based
python projects. The goal is to remove the tedious and error-prone "update
the embedded version string" step from your release process. Making a new
release should be as easy as recording a new tag in your version-control
system, and maybe making new tarballs.
@
text
@d1 1
a1 1
# $NetBSD$
d3 1
a3 1
DISTNAME=	versioneer-0.28
d15 2
@

