50 lines
1.2 KiB
RPMSpec
50 lines
1.2 KiB
RPMSpec
%bcond_with bootstrap
|
|
|
|
Name: git-tools
|
|
Version: 2020.09
|
|
Release: 1
|
|
Summary: Assorted git-related scripts
|
|
License: GPL-3.0
|
|
URL: https://github.com/MestreLion/git-tools
|
|
Source0: https://github.com/MestreLion/%{name}/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
|
|
BuildArch: noarch
|
|
|
|
BuildRequires: python3-devel python3-setuptools
|
|
|
|
%description
|
|
Assorted git-related scripts and tools
|
|
|
|
%prep
|
|
%autosetup -n %{name}-%{version}
|
|
|
|
%build
|
|
|
|
%install
|
|
install -d %{buildroot}%{_bindir}
|
|
install -m0755 git-branches-rename %{buildroot}%{_bindir}/
|
|
install -m0755 git-clone-subset %{buildroot}%{_bindir}/
|
|
install -m0755 git-find-uncommitted-repos %{buildroot}%{_bindir}/
|
|
install -m0755 git-rebase-theirs %{buildroot}%{_bindir}/
|
|
install -m0755 git-restore-mtime %{buildroot}%{_bindir}/
|
|
install -m0755 git-strip-merge %{buildroot}%{_bindir}/
|
|
|
|
install -d %{buildroot}%{_mandir}/man1
|
|
install -m644 man1/git-* %{buildroot}%{_mandir}/man1/
|
|
|
|
%check
|
|
|
|
%files
|
|
%license LICENSE.txt
|
|
%doc README.md
|
|
%{_bindir}/*
|
|
%{_mandir}/*
|
|
|
|
|
|
%changelog
|
|
* Thu Jun 23 2022 liukuo <liukuo@kylinos.cn> - 2020.09-1
|
|
- Upgrade git-tools to 2020.09
|
|
|
|
* Tue Apr 28 2020 Wei Xiong <myeuler@163.com>
|
|
- init package
|