mirror of
https://github.com/git/git.git
synced 2024-11-15 21:53:44 +01:00
Merge branch 'post1.5.1/p4'
* post1.5.1/p4: Added correct Python path to the RPM specfile. Remove unused WITH_OWN_SUBPROCESS_PY from RPM spec Added git-p4 package to the list of git RPMs. Add the WITH_P4IMPORT knob to the Makefile.
This commit is contained in:
commit
cb7e3aefa6
2 changed files with 53 additions and 7 deletions
26
Makefile
26
Makefile
|
@ -110,6 +110,8 @@ all::
|
||||||
# Define NO_PERL_MAKEMAKER if you cannot use Makefiles generated by perl's
|
# Define NO_PERL_MAKEMAKER if you cannot use Makefiles generated by perl's
|
||||||
# MakeMaker (e.g. using ActiveState under Cygwin).
|
# MakeMaker (e.g. using ActiveState under Cygwin).
|
||||||
#
|
#
|
||||||
|
# Define WITH_P4IMPORT to build and install Python git-p4import script.
|
||||||
|
#
|
||||||
|
|
||||||
GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
|
GIT-VERSION-FILE: .FORCE-GIT-VERSION-FILE
|
||||||
@$(SHELL_PATH) ./GIT-VERSION-GEN
|
@$(SHELL_PATH) ./GIT-VERSION-GEN
|
||||||
|
@ -196,9 +198,20 @@ SCRIPT_PERL = \
|
||||||
git-svnimport.perl git-cvsexportcommit.perl \
|
git-svnimport.perl git-cvsexportcommit.perl \
|
||||||
git-send-email.perl git-svn.perl
|
git-send-email.perl git-svn.perl
|
||||||
|
|
||||||
|
SCRIPT_PYTHON = \
|
||||||
|
git-p4import.py
|
||||||
|
|
||||||
|
ifdef WITH_P4IMPORT
|
||||||
|
SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \
|
||||||
|
$(patsubst %.perl,%,$(SCRIPT_PERL)) \
|
||||||
|
$(patsubst %.py,%,$(SCRIPT_PYTHON)) \
|
||||||
|
git-status git-instaweb
|
||||||
|
else
|
||||||
SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \
|
SCRIPTS = $(patsubst %.sh,%,$(SCRIPT_SH)) \
|
||||||
$(patsubst %.perl,%,$(SCRIPT_PERL)) \
|
$(patsubst %.perl,%,$(SCRIPT_PERL)) \
|
||||||
git-status git-instaweb
|
git-status git-instaweb
|
||||||
|
endif
|
||||||
|
|
||||||
|
|
||||||
# ... and all the rest that could be moved out of bindir to gitexecdir
|
# ... and all the rest that could be moved out of bindir to gitexecdir
|
||||||
PROGRAMS = \
|
PROGRAMS = \
|
||||||
|
@ -241,6 +254,9 @@ endif
|
||||||
ifndef PERL_PATH
|
ifndef PERL_PATH
|
||||||
PERL_PATH = /usr/bin/perl
|
PERL_PATH = /usr/bin/perl
|
||||||
endif
|
endif
|
||||||
|
ifndef PYTHON_PATH
|
||||||
|
PYTHON_PATH = /usr/local/bin/python
|
||||||
|
endif
|
||||||
|
|
||||||
export PERL_PATH
|
export PERL_PATH
|
||||||
|
|
||||||
|
@ -646,6 +662,7 @@ prefix_SQ = $(subst ','\'',$(prefix))
|
||||||
|
|
||||||
SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
|
SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))
|
||||||
PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH))
|
PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH))
|
||||||
|
PYTHON_PATH_SQ = $(subst ','\'',$(PYTHON_PATH))
|
||||||
|
|
||||||
LIBS = $(GITLIBS) $(EXTLIBS)
|
LIBS = $(GITLIBS) $(EXTLIBS)
|
||||||
|
|
||||||
|
@ -699,6 +716,15 @@ $(patsubst %.sh,%,$(SCRIPT_SH)) : % : %.sh
|
||||||
|
|
||||||
$(patsubst %.perl,%,$(SCRIPT_PERL)): perl/perl.mak
|
$(patsubst %.perl,%,$(SCRIPT_PERL)): perl/perl.mak
|
||||||
|
|
||||||
|
$(patsubst %.py,%,$(SCRIPT_PYTHON)) : % : %.py
|
||||||
|
rm -f $@ $@+
|
||||||
|
sed -e '1s|#!.*/python|#!$(PYTHON_PATH_SQ)|' \
|
||||||
|
-e 's/@@GIT_VERSION@@/$(GIT_VERSION)/g' \
|
||||||
|
-e 's/@@NO_CURL@@/$(NO_CURL)/g' \
|
||||||
|
$@.py >$@+
|
||||||
|
chmod +x $@+
|
||||||
|
mv $@+ $@
|
||||||
|
|
||||||
perl/perl.mak: GIT-CFLAGS
|
perl/perl.mak: GIT-CFLAGS
|
||||||
$(QUIET_SUBDIR0)perl $(QUIET_SUBDIR1) PERL_PATH='$(PERL_PATH_SQ)' prefix='$(prefix_SQ)' $(@F)
|
$(QUIET_SUBDIR0)perl $(QUIET_SUBDIR1) PERL_PATH='$(PERL_PATH_SQ)' prefix='$(prefix_SQ)' $(@F)
|
||||||
|
|
||||||
|
|
34
git.spec.in
34
git.spec.in
|
@ -1,4 +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
|
||||||
|
|
||||||
|
%define python_path /usr/bin/python
|
||||||
|
|
||||||
Name: git
|
Name: git
|
||||||
Version: @@VERSION@@
|
Version: @@VERSION@@
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
|
@ -50,6 +53,13 @@ Requires: git-core = %{version}-%{release}, tla
|
||||||
%description arch
|
%description arch
|
||||||
Git tools for importing Arch repositories.
|
Git tools for importing Arch repositories.
|
||||||
|
|
||||||
|
%package p4
|
||||||
|
Summary: Git tools for importing Perforce repositories
|
||||||
|
Group: Development/Tools
|
||||||
|
Requires: git-core = %{version}-%{release}, python
|
||||||
|
%description p4
|
||||||
|
Git tools for importing Perforce repositories.
|
||||||
|
|
||||||
%package email
|
%package email
|
||||||
Summary: Git tools for sending email
|
Summary: Git tools for sending email
|
||||||
Group: Development/Tools
|
Group: Development/Tools
|
||||||
|
@ -85,23 +95,23 @@ 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" WITH_P4IMPORT=YesPlease \
|
||||||
prefix=%{_prefix} all %{!?_without_docs: doc}
|
prefix=%{_prefix} PYTHON_PATH=%{python_path} 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 \
|
WITH_P4IMPORT=YesPlease prefix=%{_prefix} mandir=%{_mandir} \
|
||||||
prefix=%{_prefix} mandir=%{_mandir} INSTALLDIRS=vendor \
|
PYTHON_PATH=%{python_path} \
|
||||||
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 {} ';'
|
||||||
|
|
||||||
(find $RPM_BUILD_ROOT%{_bindir} -type f | grep -vE "archimport|svn|cvs|email|gitk|git-gui|git-citool" | sed -e s@^$RPM_BUILD_ROOT@@) > bin-man-doc-files
|
(find $RPM_BUILD_ROOT%{_bindir} -type f | grep -vE "p4import|archimport|svn|cvs|email|gitk|git-gui|git-citool" | sed -e s@^$RPM_BUILD_ROOT@@) > bin-man-doc-files
|
||||||
(find $RPM_BUILD_ROOT%{perl_vendorlib} -type f | sed -e s@^$RPM_BUILD_ROOT@@) >> perl-files
|
(find $RPM_BUILD_ROOT%{perl_vendorlib} -type f | sed -e s@^$RPM_BUILD_ROOT@@) >> perl-files
|
||||||
%if %{!?_without_docs:1}0
|
%if %{!?_without_docs:1}0
|
||||||
(find $RPM_BUILD_ROOT%{_mandir} $RPM_BUILD_ROOT/Documentation -type f | grep -vE "archimport|svn|git-cvs|email|gitk|git-gui|git-citool" | sed -e s@^$RPM_BUILD_ROOT@@ -e 's/$/*/' ) >> bin-man-doc-files
|
(find $RPM_BUILD_ROOT%{_mandir} $RPM_BUILD_ROOT/Documentation -type f | grep -vE "p4import|archimport|svn|git-cvs|email|gitk|git-gui|git-citool" | sed -e s@^$RPM_BUILD_ROOT@@ -e 's/$/*/' ) >> bin-man-doc-files
|
||||||
%else
|
%else
|
||||||
rm -rf $RPM_BUILD_ROOT%{_mandir}
|
rm -rf $RPM_BUILD_ROOT%{_mandir}
|
||||||
%endif
|
%endif
|
||||||
|
@ -133,6 +143,13 @@ rm -rf $RPM_BUILD_ROOT
|
||||||
%{!?_without_docs: %{_mandir}/man1/git-archimport.1*}
|
%{!?_without_docs: %{_mandir}/man1/git-archimport.1*}
|
||||||
%{!?_without_docs: %doc Documentation/git-archimport.html }
|
%{!?_without_docs: %doc Documentation/git-archimport.html }
|
||||||
|
|
||||||
|
%files p4
|
||||||
|
%defattr(-,root,root)
|
||||||
|
%doc Documentation/git-p4import.txt
|
||||||
|
%{_bindir}/git-p4import
|
||||||
|
%{!?_without_docs: %{_mandir}/man1/git-p4import.1*}
|
||||||
|
%{!?_without_docs: %doc Documentation/git-p4import.html }
|
||||||
|
|
||||||
%files email
|
%files email
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc Documentation/*email*.txt
|
%doc Documentation/*email*.txt
|
||||||
|
@ -167,6 +184,9 @@ rm -rf $RPM_BUILD_ROOT
|
||||||
%{!?_without_docs: %doc Documentation/*.html }
|
%{!?_without_docs: %doc Documentation/*.html }
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Mar 27 2007 Eygene Ryabinkin <rea-git@codelabs.ru>
|
||||||
|
- Added the git-p4 package: Perforce import stuff.
|
||||||
|
|
||||||
* Mon Feb 13 2007 Nicolas Pitre <nico@cam.org>
|
* Mon Feb 13 2007 Nicolas Pitre <nico@cam.org>
|
||||||
- Update core package description (Git isn't as stupid as it used to be)
|
- Update core package description (Git isn't as stupid as it used to be)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue