mirror of
https://abf.rosa.ru/djam/git.git
synced 2025-02-23 04:02:47 +00:00
LOG New version 1.7.11.3 (sync with Cooker), minor cleanups
This commit is contained in:
parent
875be18291
commit
d316ef7305
4 changed files with 38 additions and 25 deletions
2
.abf.yml
2
.abf.yml
|
@ -1,2 +1,2 @@
|
||||||
sources:
|
sources:
|
||||||
"git-1.7.9.tar.gz": ed51ef5ef250daaa6e98515cf2641820cd268d4c
|
"git-1.7.11.3.tar.gz": a10c420e4d9152d6059f41825904cfac3062b135
|
||||||
|
|
0
93git-branch.sh
Executable file → Normal file
0
93git-branch.sh
Executable file → Normal file
0
93git-env.sh
Executable file → Normal file
0
93git-env.sh
Executable file → Normal file
61
git.spec
61
git.spec
|
@ -4,23 +4,23 @@
|
||||||
|
|
||||||
Name: git
|
Name: git
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
Version: 1.7.9
|
Version: 1.7.11.3
|
||||||
# 1.7.8 still builds fine in 2010.2 so keep mkrel for backports sake
|
Release: 2
|
||||||
Release: %mkrel 1
|
|
||||||
Summary: Global Information Tracker
|
Summary: Global Information Tracker
|
||||||
License: GPLv2
|
License: GPLv2
|
||||||
Group: Development/Other
|
Group: Development/Other
|
||||||
Url: http://git-scm.com/
|
Url: http://git-scm.com/
|
||||||
Source0: http://www.kernel.org/pub/software/scm/git/git-%{version}.tar.gz
|
Source0: http://git-core.googlecode.com/files/git-%version.tar.gz
|
||||||
Source2: gitweb.conf
|
Source2: gitweb.conf
|
||||||
Source3: %{profile_branch}
|
Source3: %{profile_branch}
|
||||||
# Do we really need it? It's not used anyway
|
# Do we really need it? It's not used anyway
|
||||||
Source4: %{profile_env}
|
Source4: %{profile_env}
|
||||||
BuildRequires: asciidoc
|
BuildRequires: asciidoc
|
||||||
BuildRequires: curl-devel
|
BuildRequires: pkgconfig(libcurl)
|
||||||
BuildRequires: expat-devel
|
BuildRequires: expat-devel
|
||||||
BuildRequires: openssl-devel
|
BuildRequires: pkgconfig(openssl)
|
||||||
BuildRequires: perl-CGI
|
BuildRequires: perl-CGI
|
||||||
|
BuildRequires: perl-devel
|
||||||
BuildRequires: python-devel
|
BuildRequires: python-devel
|
||||||
BuildRequires: xmlto
|
BuildRequires: xmlto
|
||||||
BuildRequires: zlib-devel
|
BuildRequires: zlib-devel
|
||||||
|
@ -52,8 +52,6 @@ Requires: rsync
|
||||||
Requires: less
|
Requires: less
|
||||||
Requires: openssh-clients
|
Requires: openssh-clients
|
||||||
Suggests: git-prompt
|
Suggests: git-prompt
|
||||||
Conflicts: git < 4.3.20-15
|
|
||||||
Obsoletes: gitcompletion
|
|
||||||
Provides: gitcompletion
|
Provides: gitcompletion
|
||||||
|
|
||||||
%description -n git-core
|
%description -n git-core
|
||||||
|
@ -201,9 +199,13 @@ cd Documentation/RelNotes \
|
||||||
%__mkdir_p %{buildroot}%{_bindir}
|
%__mkdir_p %{buildroot}%{_bindir}
|
||||||
%makeinstall_std prefix=%{_prefix} gitexecdir=%{_libdir}/git-core CFLAGS="%{optflags}"
|
%makeinstall_std prefix=%{_prefix} gitexecdir=%{_libdir}/git-core CFLAGS="%{optflags}"
|
||||||
make install-doc prefix=%{_prefix} gitexecdir=%{_libdir}/git-core DESTDIR=%{buildroot}
|
make install-doc prefix=%{_prefix} gitexecdir=%{_libdir}/git-core DESTDIR=%{buildroot}
|
||||||
|
|
||||||
|
# Avoid dependencies on obscure perl modules
|
||||||
|
chmod -x contrib/mw-to-git/git-remote-mediawiki
|
||||||
|
|
||||||
# (cg) Copy the whole contrib dir as docs. It contains useful scripts.
|
# (cg) Copy the whole contrib dir as docs. It contains useful scripts.
|
||||||
%__mkdir_p %{buildroot}%{_datadir}/doc/git-core
|
%__mkdir_p %{buildroot}%{_datadir}/doc/git-core
|
||||||
%__cp -ar contrib %{buildroot}%{_datadir}/doc/git-core
|
cp -ar contrib %{buildroot}%{_datadir}/doc/git-core
|
||||||
# (cg) Even tho' we copy the whole contrib dir, copy this rather than symlink incase the user is excluding docs
|
# (cg) Even tho' we copy the whole contrib dir, copy this rather than symlink incase the user is excluding docs
|
||||||
%__install -m 755 contrib/gitview/gitview %{buildroot}%{_bindir}
|
%__install -m 755 contrib/gitview/gitview %{buildroot}%{_bindir}
|
||||||
|
|
||||||
|
@ -253,13 +255,17 @@ EOF
|
||||||
|
|
||||||
# And the prompt manipulation file
|
# And the prompt manipulation file
|
||||||
%__install -D -m 0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/profile.d/%{profile_branch}
|
%__install -D -m 0644 %{SOURCE3} %{buildroot}%{_sysconfdir}/profile.d/%{profile_branch}
|
||||||
|
|
||||||
# exposes a bug in less, as reported by coling
|
# exposes a bug in less, as reported by coling
|
||||||
#install -D -m 0644 %SOURCE4 %{buildroot}%{_sysconfdir}/profile.d/%{profile_env}
|
#install -D -m 0644 %SOURCE4 %{buildroot}%{_sysconfdir}/profile.d/%{profile_env}
|
||||||
|
|
||||||
%find_lang %{name}
|
%find_lang %{name}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
LC_ALL=C %make %{git_make_params} test
|
# We do NO_SVN_TESTS because git's tests hardcode
|
||||||
|
# replies from svn versions older than the one
|
||||||
|
# we're shipping -- and they have changed since
|
||||||
|
LC_ALL=C %make %{git_make_params} test NO_SVN_TESTS=true
|
||||||
|
|
||||||
%files
|
%files
|
||||||
# no file in the main package
|
# no file in the main package
|
||||||
|
@ -352,6 +358,27 @@ LC_ALL=C %make %{git_make_params} test
|
||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Jul 24 2012 Bernhard Rosenkraenzer <bero@bero.eu> 1:1.7.11.3-1mdv2012.0
|
||||||
|
+ Revision: 810878
|
||||||
|
- Update to 1.7.11.3
|
||||||
|
|
||||||
|
* Thu Jul 12 2012 Bernhard Rosenkraenzer <bero@bero.eu> 1:1.7.11.2-1
|
||||||
|
+ Revision: 808970
|
||||||
|
- Update to 1.7.11.2
|
||||||
|
|
||||||
|
* Tue Jun 26 2012 Bernhard Rosenkraenzer <bero@bero.eu> 1:1.7.11-2
|
||||||
|
+ Revision: 806977
|
||||||
|
- Split git-mediawiki into its own package to avoid various perl dependencies
|
||||||
|
|
||||||
|
* Fri Jun 22 2012 Bernhard Rosenkraenzer <bero@bero.eu> 1:1.7.11-1
|
||||||
|
+ Revision: 806699
|
||||||
|
- Update to 1.7.11
|
||||||
|
|
||||||
|
* Sun Feb 26 2012 Bernhard Rosenkraenzer <bero@bero.eu> 1:1.7.9.2-1
|
||||||
|
+ Revision: 780885
|
||||||
|
- Add perl-devel build dependency
|
||||||
|
- Update to 1.7.9.2
|
||||||
|
|
||||||
* Sun Jan 29 2012 Andrey Bondrov <abondrov@mandriva.org> 1:1.7.9-1
|
* Sun Jan 29 2012 Andrey Bondrov <abondrov@mandriva.org> 1:1.7.9-1
|
||||||
+ Revision: 769574
|
+ Revision: 769574
|
||||||
- New version 1.7.9, update file list
|
- New version 1.7.9, update file list
|
||||||
|
@ -868,17 +895,3 @@ LC_ALL=C %make %{git_make_params} test
|
||||||
+ Revision: 18240
|
+ Revision: 18240
|
||||||
- Release 1.5.1
|
- Release 1.5.1
|
||||||
|
|
||||||
|
|
||||||
* Sat Nov 04 2006 Stefan van der Eijk <stefan@mandriva.org> 4.3.20-13mdv2007.0
|
|
||||||
+ Revision: 76519
|
|
||||||
- rebuild for signature
|
|
||||||
- rebuild
|
|
||||||
- Import git
|
|
||||||
|
|
||||||
* Wed Sep 20 2006 Nicolas Lécureuil <neoclust@mandriva.org> 4.3.20-14mdv2007.0
|
|
||||||
- Use mkrel
|
|
||||||
- Rebuild
|
|
||||||
|
|
||||||
* Sat Dec 31 2005 Mandriva Linux Team <http://www.mandrivaexpert.com/> 4.3.20-10mdk
|
|
||||||
- Rebuild
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue