1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-19 00:13:33 +00:00

devel/py-bump2version: Add py-bump2version 1.0.1

bump2version is a maintained fork of the excellent bumpversion project.

Version-bump your software with a single command!

A small command line tool to simplify releasing software by updating all version
strings in your source code by the correct increment. Also creates commits and
tags:
- version formats are highly configurable
- works without any VCS, but happily reads tag information from and writes
  commits and tags to Git and Mercurial if available
- just handles text files, so it's not specific to any programming language
- supports Python 3 and PyPy3
This commit is contained in:
Po-Chuan Hsieh 2023-09-22 11:11:06 +08:00
parent 974bc1624e
commit a0e9c8d867
No known key found for this signature in database
GPG Key ID: 9A4BD10F002DD04B
4 changed files with 35 additions and 0 deletions

View File

@ -4425,6 +4425,7 @@
SUBDIR += py-buildbot-worker
SUBDIR += py-buildbot-www
SUBDIR += py-bullet3
SUBDIR += py-bump2version
SUBDIR += py-bytecode
SUBDIR += py-cabby
SUBDIR += py-cached-property

View File

@ -0,0 +1,19 @@
PORTNAME= bump2version
PORTVERSION= 1.0.1
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Version-bump your software with a single command
WWW= https://github.com/c4urself/bump2version
LICENSE= MIT
LICENSE_FILE= ${WRKSRC}/LICENSE.rst
USES= python
USE_PYTHON= autoplist concurrent distutils
NO_ARCH= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1695143201
SHA256 (bump2version-1.0.1.tar.gz) = 762cb2bfad61f4ec8e2bdf452c7c267416f8c70dd9ecb1653fd0bbb01fa936e6
SIZE (bump2version-1.0.1.tar.gz) = 36236

View File

@ -0,0 +1,12 @@
bump2version is a maintained fork of the excellent bumpversion project.
Version-bump your software with a single command!
A small command line tool to simplify releasing software by updating all version
strings in your source code by the correct increment. Also creates commits and
tags:
- version formats are highly configurable
- works without any VCS, but happily reads tag information from and writes
commits and tags to Git and Mercurial if available
- just handles text files, so it's not specific to any programming language
- supports Python 3 and PyPy3