Compare commits
10 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bcd28e3146 | ||
|
|
67d97ff5b9 | ||
|
|
3591bdebf6 | ||
|
|
cc7dcda865 | ||
|
|
6bd2c0a83e | ||
|
|
69337dc90e | ||
|
|
242fe402f6 | ||
|
|
3c3713b31d | ||
|
|
19b4a8650a | ||
|
|
8f77dff11b |
5 changed files with 41 additions and 35 deletions
|
|
@ -1 +0,0 @@
|
||||||
git-1.5.0.6.tar.gz
|
|
||||||
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
git-1.5.3.3.tar.gz
|
||||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
||||||
# Makefile for source rpm: git
|
|
||||||
# $Id$
|
|
||||||
NAME := git
|
|
||||||
SPECFILE = $(firstword $(wildcard *.spec))
|
|
||||||
|
|
||||||
define find-makefile-common
|
|
||||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
|
||||||
endef
|
|
||||||
|
|
||||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
|
||||||
|
|
||||||
ifeq ($(MAKEFILE_COMMON),)
|
|
||||||
# attept a checkout
|
|
||||||
define checkout-makefile-common
|
|
||||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
|
||||||
endef
|
|
||||||
|
|
||||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
|
||||||
endif
|
|
||||||
|
|
||||||
include $(MAKEFILE_COMMON)
|
|
||||||
51
git.spec
51
git.spec
|
|
@ -1,7 +1,7 @@
|
||||||
# Pass --without docs to rpmbuild if you don't want the documentation
|
# Pass --without docs to rpmbuild if you don't want the documentation
|
||||||
Name: git
|
Name: git
|
||||||
Version: 1.5.0.6
|
Version: 1.5.3.3
|
||||||
Release: 1%{?dist}
|
Release: 3%{?dist}
|
||||||
Summary: Git core and tools
|
Summary: Git core and tools
|
||||||
License: GPL
|
License: GPL
|
||||||
Group: Development/Tools
|
Group: Development/Tools
|
||||||
|
|
@ -85,15 +85,16 @@ Perl interface to Git
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
make %{_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" WITH_OWN_SUBPROCESS_PY=YesPlease \
|
make %{_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" \
|
||||||
|
ETC_GITCONFIG=/etc/gitconfig \
|
||||||
prefix=%{_prefix} all %{!?_without_docs: doc}
|
prefix=%{_prefix} all %{!?_without_docs: doc}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
make %{_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" DESTDIR=$RPM_BUILD_ROOT \
|
make %{_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" DESTDIR=$RPM_BUILD_ROOT \
|
||||||
WITH_OWN_SUBPROCESS_PY=YesPlease \
|
prefix=%{_prefix} mandir=%{_mandir} \
|
||||||
prefix=%{_prefix} mandir=%{_mandir} INSTALLDIRS=vendor \
|
ETC_GITCONFIG=/etc/gitconfig \
|
||||||
install %{!?_without_docs: install-doc}
|
INSTALLDIRS=vendor install %{!?_without_docs: install-doc}
|
||||||
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
|
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
|
||||||
find $RPM_BUILD_ROOT -type f -name '*.bs' -empty -exec rm -f {} ';'
|
find $RPM_BUILD_ROOT -type f -name '*.bs' -empty -exec rm -f {} ';'
|
||||||
find $RPM_BUILD_ROOT -type f -name perllocal.pod -exec rm -f {} ';'
|
find $RPM_BUILD_ROOT -type f -name perllocal.pod -exec rm -f {} ';'
|
||||||
|
|
@ -144,11 +145,11 @@ rm -rf $RPM_BUILD_ROOT
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_bindir}/git-gui
|
%{_bindir}/git-gui
|
||||||
%{_bindir}/git-citool
|
%{_bindir}/git-citool
|
||||||
# Not Yet...
|
%{_datadir}/git-gui/
|
||||||
# %{!?_without_docs: %{_mandir}/man1/git-gui.1}
|
%{!?_without_docs: %{_mandir}/man1/git-gui.1*}
|
||||||
# %{!?_without_docs: %doc Documentation/git-gui.html}
|
%{!?_without_docs: %doc Documentation/git-gui.html}
|
||||||
# %{!?_without_docs: %{_mandir}/man1/git-citool.1}
|
%{!?_without_docs: %{_mandir}/man1/git-citool.1*}
|
||||||
# %{!?_without_docs: %doc Documentation/git-citool.html}
|
%{!?_without_docs: %doc Documentation/git-citool.html}
|
||||||
|
|
||||||
%files -n gitk
|
%files -n gitk
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
|
|
@ -164,9 +165,35 @@ rm -rf $RPM_BUILD_ROOT
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_datadir}/git-core/
|
%{_datadir}/git-core/
|
||||||
%doc README COPYING Documentation/*.txt
|
%doc README COPYING Documentation/*.txt
|
||||||
%{!?_without_docs: %doc Documentation/*.html }
|
%{!?_without_docs: %doc Documentation/*.html Documentation/howto}
|
||||||
|
%{!?_without_docs: %doc Documentation/technical}
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Oct 09 2007 James Bowes <jbowes@redhat.com> 1.5.3.3-3
|
||||||
|
- Catch compressed man pages as well
|
||||||
|
|
||||||
|
* Tue Oct 09 2007 James Bowes <jbowes@redhat.com> 1.5.3.3-2
|
||||||
|
- Add git-gui and git-citool docs
|
||||||
|
|
||||||
|
* Tue Oct 09 2007 James Bowes <jbowes@redhat.com> 1.5.3.3-1
|
||||||
|
- git-1.5.3.3
|
||||||
|
|
||||||
|
* Sun Aug 05 2007 James Bowes <jbowes@redhat.com> 1.5.2.4-1
|
||||||
|
- git-1.5.2.4
|
||||||
|
|
||||||
|
* Mon Jun 18 2007 James Bowes <jbowes@redhat.com> 1.5.2.2-1
|
||||||
|
- git-1.5.2.2
|
||||||
|
|
||||||
|
* Fri Jun 08 2007 James Bowes <jbowes@redhat.com> 1.5.2.1-1
|
||||||
|
- git-1.5.2.1
|
||||||
|
|
||||||
|
* Tue May 13 2007 Quy Tonthat <qtonthat@gmail.com>
|
||||||
|
- Added lib files for git-gui
|
||||||
|
- Added Documentation/technical (As needed by Git Users Manual)
|
||||||
|
|
||||||
|
* Tue May 8 2007 Quy Tonthat <qtonthat@gmail.com>
|
||||||
|
- Added howto files
|
||||||
|
|
||||||
* Fri Mar 30 2007 Chris Wright <chrisw@redhat.com> 1.5.0.6-1
|
* Fri Mar 30 2007 Chris Wright <chrisw@redhat.com> 1.5.0.6-1
|
||||||
- git-1.5.0.6
|
- git-1.5.0.6
|
||||||
|
|
||||||
|
|
|
||||||
2
sources
2
sources
|
|
@ -1 +1 @@
|
||||||
d9564417eadc424d4dd7616339fa9b2f git-1.5.0.6.tar.gz
|
978bda72a636d805dd3058efec5e6f2e git-1.5.3.3.tar.gz
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue