Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37891218
en ru br
ALT Linux repos
S:2.16.0.0-alt3

Group :: Development/Python3
RPM: python3-module-vcversioner

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 

%define oname vcversioner

Name: python3-module-%oname
Version: 2.16.0.0
Release: alt3
Summary: Use version control tags to discover version numbers
License: ISCL
Group: Development/Python3
Url: https://pypi.python.org/pypi/vcversioner/

# https://github.com/habnabit/vcversioner.git

Source: %name-%version.tar
BuildArch: noarch

BuildRequires: git-core
BuildRequires(pre): rpm-build-python3
BuildRequires: python3-module-pytest

%py3_provides %oname

%description
Elevator pitch: you can write a setup.py with no version information
specified, and vcversioner will find a recent, properly-formatted VCS
tag and extract a version from it.

It's much more convenient to be able to use your version control
system's tagging mechanism to derive a version number than to have to
duplicate that information all over the place. I eventually ended up
copy-pasting the same code into a couple different setup.py files just
to avoid duplicating version information. But, copy-pasting is dumb and
unit testing setup.py files is hard. This code got factored out into
vcversioner.

%prep
%setup

git config --global user.email "real at altlinux.org"
git config --global user.name "REAl"
git init-db
git add . -A
git commit -a -m "%version"
git tag %version -m "%version"

%build
%python3_build_debug

%install
%python3_install

%check
%__python3 setup.py test
py.test3 -vv

%files
%doc COPYING *.rst docs/*.rst
%python3_sitelibdir/*

%changelog

Full changelog you can see here

 
design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
current maintainer: Michael Shigorin