git-vl.spec 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936
  1. %bcond_with arch
  2. %define prereq_ge() %(LC_ALL="C" rpm -q --queryformat 'PreReq:%%{NAME} >= %%{VERSION}' %1| grep -v "is not")
  3. %define emacsen_pkgdir /usr/lib/emacsen-common/packages
  4. # Pass --without docs to rpmbuild if you don't want the documentation
  5. Name: git
  6. Version: 2.31.1
  7. Release: 1%{?_dist_release}
  8. Summary: Core git tools
  9. Summary(ja): Core git ツール
  10. Group: programming
  11. Vendor: Project Vine
  12. Distribution: Vine Linux
  13. Packager: iwaim
  14. License: GPLv2
  15. URL: http://git-scm.com/
  16. Source0: https://www.kernel.org/pub/software/scm/git/%{name}-%{version}.tar.xz
  17. Source1: vine-default-git.el
  18. Source2: git.xinetd
  19. Source3: git.conf.httpd
  20. Source4: gitweb.conf.in
  21. Source10: %{name}-install.sh
  22. Source11: %{name}-remove.sh
  23. Source12: git-init.el
  24. Patch0: git-1.5-gitweb-home-link.patch
  25. Patch1000: git-curl-disable-http2.patch
  26. # Security
  27. # none
  28. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  29. BuildRequires: zlib-devel >= 1.2, openssl-devel, curl-devel
  30. BuildRequires: expat-devel, gettext, asciidoc
  31. BuildRequires: pcre2-devel
  32. BuildRequires: xmlto
  33. # git-credential-gnome-keyring
  34. BuildRequires: glib2-devel libgnome-keyring-devel
  35. Requires: perl-Git = %{version}-%{release}
  36. Requires: zlib
  37. Provides: git-core = %{version}-%{release}
  38. Obsoletes: git-core <= 1.5.4.3
  39. %description
  40. Git is a fast, scalable, distributed revision control system with an
  41. unusually rich command set that provides both high-level operations
  42. and full access to internals.
  43. The git rpm installs the core tools with minimal dependencies. To
  44. install all git packages, including tools for integrating with other
  45. SCMs, install the git-all meta-package.
  46. %package all
  47. Summary: Meta-package to pull in all git tools
  48. Summary(ja): すべての git ツール
  49. Group: programming
  50. Requires: git = %{version}-%{release}
  51. Requires: git-svn = %{version}-%{release}
  52. Requires: git-cvs = %{version}-%{release}
  53. %if %{with arch}
  54. Requires: git-arch = %{version}-%{release}
  55. %endif
  56. Requires: git-email = %{version}-%{release}
  57. Requires: gitk = %{version}-%{release}
  58. Requires: git-gui = %{version}-%{release}
  59. Requires: perl-Git = %{version}-%{release}
  60. Requires: emacs-git = %{version}-%{release}
  61. Requires: git-contrib = %{version}-%{release}
  62. Obsoletes: git <= 1.5.4.3
  63. %description all
  64. Git is a fast, scalable, distributed revision control system with an
  65. unusually rich command set that provides both high-level operations
  66. and full access to internals.
  67. This is a dummy package which brings in all subpackages.
  68. %package daemon
  69. Summary: Git protocol daemon
  70. Summary(ja): Git プロトコルデーモン
  71. Group: programming,servers
  72. Requires: git = %{version}-%{release}
  73. %description daemon
  74. The git daemon for supporting git:// access to git repositories
  75. %package -n gitweb
  76. Summary: Simple web interface to git repositories
  77. Summary(ja): git リポジトリへのシンプルな Web インタフェース
  78. Group: programming,servers
  79. Requires: git = %{version}-%{release}
  80. %description -n gitweb
  81. Simple web interface to track changes in git repositories
  82. %package svn
  83. Summary: Git tools for importing Subversion repositories
  84. Summary(ja): Subversion リポジトリを git へインポートするためのツール
  85. Group: programming
  86. Requires: git = %{version}-%{release}, subversion, perl(Term::ReadKey)
  87. Requires: perl(SVN::Core)
  88. %description svn
  89. Git tools for importing Subversion repositories.
  90. %package cvs
  91. Summary: Git tools for importing CVS repositories
  92. Summary(ja): CVS リポジトリを git へインポートするためのツール
  93. Group: programming
  94. Requires: git = %{version}-%{release}, cvs, cvsps
  95. %description cvs
  96. Git tools for importing CVS repositories.
  97. %package contrib
  98. Summary: Git contrib tools
  99. Group: programming
  100. Requires: git = %{version}-%{release}
  101. %description contrib
  102. Git contrib tools
  103. %if %{with arch}
  104. %package arch
  105. Summary: Git tools for importing Arch repositories
  106. Summary(ja): Arch リポジトリを git へインポートするためのツール
  107. Group: programming
  108. Requires: git = %{version}-%{release}, tla
  109. %description arch
  110. Git tools for importing Arch repositories.
  111. %endif
  112. %package email
  113. Summary: Git tools for sending email
  114. Summary(ja): Eメールを送るための git ツール
  115. Group: programming
  116. Requires: git = %{version}-%{release}, perl-Git = %{version}-%{release}
  117. %description email
  118. Git tools for sending email.
  119. %package gui
  120. Summary: Git GUI tool
  121. Summary(ja): Git の GUI ツール
  122. Group: programming
  123. Requires: git = %{version}-%{release}, tk
  124. %description gui
  125. Git GUI tool.
  126. %package -n gitk
  127. Summary: Git revision tree visualiser
  128. Summary(ja): Git リビジョンツリー可視化ツール
  129. Group: programming
  130. Requires: git = %{version}-%{release}, tk
  131. %description -n gitk
  132. Git revision tree visualiser.
  133. %package -n perl-Git
  134. Summary: Perl interface to Git
  135. Summary(ja): Git の perl インタフェース
  136. Group: programming
  137. Requires: git = %{version}-%{release}, perl(Error), perl-MailTools
  138. Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
  139. #BuildRequires: perl(Error), perl(ExtUtils::MakeMaker)
  140. %description -n perl-Git
  141. Perl interface to Git.
  142. %package -n emacs-git
  143. Summary: Git version control system support for Emacs
  144. Summary(ja): Emacs の Git サポート
  145. Group: programming
  146. Requires: git = %{version}-%{release}, emacsen-common
  147. %description -n emacs-git
  148. %{summary}.
  149. %package devel
  150. Summary: Header files for git-core
  151. Summary(ja): git-core 用ヘッダファイル
  152. Group: programming
  153. %description devel
  154. Header files for git-core.
  155. %debug_package
  156. %prep
  157. %setup -q
  158. %patch0 -p1
  159. %patch1000 -p1
  160. %__mv contrib/diff-highlight/README contrib/diff-highlight/README.diff-highlight
  161. # Filter bogus perl requires
  162. cat << \EOF > %{name}-req
  163. #!/bin/sh
  164. %{__perl_requires} $* |\
  165. sed -e '/perl(packed-refs)/d'
  166. EOF
  167. %global __perl_requires %{_builddir}/%{name}-%{version}/%{name}-req
  168. chmod +x %{__perl_requires}
  169. %build
  170. make %{_smp_mflags} CFLAGS="$RPM_OPT_FLAGS -I%{_includedir/pcre}" \
  171. ETC_GITCONFIG=/etc/gitconfig \
  172. USE_LIBPCRE2=1 \
  173. GITWEB_PROJECTROOT=/var/lib/git \
  174. gitwebdir=/var/www/git \
  175. prefix=%{_prefix} all %{!?_without_docs: doc}
  176. pushd contrib/diff-highlight
  177. make diff-highlight
  178. popd
  179. %install
  180. rm -rf $RPM_BUILD_ROOT
  181. make %{_smp_mflags} CFLAGS="$RPM_OPT_FLAGS" DESTDIR=$RPM_BUILD_ROOT \
  182. prefix=%{_prefix} mandir=%{_mandir} \
  183. perllibdir=%{perl_vendorlib} \
  184. ETC_GITCONFIG=/etc/gitconfig \
  185. USE_LIBPCRE2=1 \
  186. NO_PYTHON=1 \
  187. GITWEB_PROJECTROOT=/var/lib/git \
  188. gitwebdir=/var/www/git \
  189. INSTALLDIRS=vendor install %{!?_without_docs: install-doc}
  190. pushd contrib/credential/gnome-keyring
  191. make %{_smp_mflags} CFLAGS="$RPM_OPT_FLAGS"
  192. popd
  193. # arch
  194. %if %{without arch}
  195. rm -f Documentation/git-archimport.txt
  196. rm -f %{buildroot}%{_libexecdir}/git-core/git-archimport
  197. rm -f %{buildroot}%{_mandir}/man1/git-archimport.1*
  198. rm -f %{buildroot}/Documentation/git-archimport.html
  199. %endif
  200. # perl-Git
  201. rm -rf $RPM_BUILD_ROOT%{perl_vendorlib}/FromCPAN
  202. # emacs-git
  203. mkdir -p $RPM_BUILD_ROOT%{_datadir}/emacs/site-lisp/git
  204. #mkdir -p $RPM_BUILD_ROOT%{_libdir}/emacsen-common/packages/install
  205. #mkdir -p $RPM_BUILD_ROOT%{_libdir}/emacsen-common/packages/remove
  206. mkdir -p $RPM_BUILD_ROOT%{emacsen_pkgdir}/install
  207. mkdir -p $RPM_BUILD_ROOT%{emacsen_pkgdir}/remove
  208. # install el files
  209. install -m644 contrib/emacs/*.el $RPM_BUILD_ROOT%{_datadir}/emacs/site-lisp/git/
  210. # install vine-default file
  211. install -m644 %{SOURCE1} %{SOURCE12} $RPM_BUILD_ROOT%{_datadir}/emacs/site-lisp/git/
  212. # install script( bytecompile el and install elc , remove )
  213. %_installemacsenscript git %{SOURCE10}
  214. %_removeemacsenscript git %{SOURCE11}
  215. mkdir -p $RPM_BUILD_ROOT/%{_var}/lib/git
  216. mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/xinetd.d
  217. install -m 644 %SOURCE2 $RPM_BUILD_ROOT/%{_sysconfdir}/xinetd.d/git
  218. perl -p \
  219. -e "s|\@GITCOREDIR\@|%{_libexecdir}/git-core|g;" \
  220. -e "s|\@BASE_PATH\@|%{_var}/lib/git|g;" \
  221. %{SOURCE3} > %{buildroot}%{_sysconfdir}/xinetd.d/git
  222. ## for gitweb sub package
  223. mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/httpd/conf.d
  224. install -m 0644 %SOURCE3 $RPM_BUILD_ROOT/%{_sysconfdir}/httpd/conf.d/git.conf
  225. sed "s|@PROJECTROOT@|%{_var}/lib/git|g" \
  226. %{SOURCE4} > %{buildroot}%{_sysconfdir}/gitweb.conf
  227. find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
  228. find $RPM_BUILD_ROOT -type f -name '*.bs' -empty -exec rm -f {} ';'
  229. find $RPM_BUILD_ROOT -type f -name perllocal.pod -exec rm -f {} ';'
  230. (find $RPM_BUILD_ROOT%{_libexecdir} -type f | grep -vE "archimport|svn|cvs|email|gitk|git-gui|git-citooli|git-daemon" | sed -e s@^$RPM_BUILD_ROOT@@) > bin-man-doc-files
  231. (find $RPM_BUILD_ROOT%{perl_vendorlib} -type f | sed -e s@^$RPM_BUILD_ROOT@@) >> perl-files
  232. %if %{!?_without_docs:1}0
  233. (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
  234. %else
  235. rm -rf $RPM_BUILD_ROOT%{_mandir}
  236. %endif
  237. mkdir -p $RPM_BUILD_ROOT/srv/git
  238. mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}/bash_completion.d
  239. install -m 644 -T contrib/completion/git-completion.bash $RPM_BUILD_ROOT%{_sysconfdir}/bash_completion.d/git
  240. install -m 755 contrib/diff-highlight/diff-highlight $RPM_BUILD_ROOT%{_bindir}/
  241. # header files and lib
  242. install -d $RPM_BUILD_ROOT%{_includedir}/%{name}/xdiff
  243. install *.h $RPM_BUILD_ROOT%{_includedir}/%{name}
  244. install xdiff/*.h $RPM_BUILD_ROOT%{_includedir}/%{name}/xdiff
  245. install -m0755 -d $RPM_BUILD_ROOT%{_libdir}
  246. install libgit.a $RPM_BUILD_ROOT%{_libdir}/
  247. install xdiff/lib.a $RPM_BUILD_ROOT%{_libdir}/libgit_xdiff.a
  248. # git-credential-gnome-keyring
  249. pushd contrib/credential/gnome-keyring
  250. %__install -m0755 git-credential-gnome-keyring $RPM_BUILD_ROOT%{_libexecdir}/git-core
  251. popd
  252. %find_lang %{name}
  253. %clean
  254. rm -rf $RPM_BUILD_ROOT
  255. %post -n emacs-git
  256. # bytecompile and install
  257. if [ "$1" = 2 ]; then
  258. %_emacsenPackageRemove git
  259. fi
  260. %_addemacsenlist git
  261. %_emacsenPackageInstall git
  262. %preun -n emacs-git
  263. if [ "$1" = 0 ]; then
  264. %_emacsenPackageRemove git
  265. %_removeemacsenlist git
  266. fi
  267. %files -f bin-man-doc-files -f %{name}.lang
  268. %defattr(-,root,root)
  269. %{_bindir}/git
  270. %{_bindir}/git-receive-pack
  271. %{_bindir}/git-upload-archive
  272. %{_bindir}/git-upload-pack
  273. %{_bindir}/git-shell
  274. %{_datadir}/git-core/
  275. %exclude %{_libexecdir}/git-core/git-credential-gnome-keyring
  276. %license COPYING
  277. %doc README.md Documentation/*.txt contrib/hooks
  278. %{!?_without_docs: %doc Documentation/*.html Documentation/docbook-xsl.css}
  279. %{!?_without_docs: %doc Documentation/howto Documentation/technical}
  280. %{_sysconfdir}/bash_completion.d
  281. %files svn
  282. %defattr(-,root,root)
  283. %{_libexecdir}/git-core/*svn*
  284. %doc Documentation/*svn*.txt
  285. %{!?_without_docs: %{_mandir}/man1/*svn*.1*}
  286. %{!?_without_docs: %doc Documentation/*svn*.html }
  287. %files cvs
  288. %defattr(-,root,root)
  289. %doc Documentation/*git-cvs*.txt
  290. %{_bindir}/git-cvsserver
  291. %{_libexecdir}/git-core/*cvs*
  292. %{!?_without_docs: %{_mandir}/man1/*cvs*.1*}
  293. %{!?_without_docs: %doc Documentation/*git-cvs*.html }
  294. %files contrib
  295. %defattr(-,root,root)
  296. %doc contrib/diff-highlight/README.diff-highlight
  297. %{_bindir}/diff-highlight
  298. %{_libexecdir}/git-core/git-credential-gnome-keyring
  299. %if %{with arch}
  300. %files arch
  301. %defattr(-,root,root)
  302. %doc Documentation/git-archimport.txt
  303. %{_libexecdir}/git-core/git-archimport
  304. %{!?_without_docs: %{_mandir}/man1/git-archimport.1*}
  305. %{!?_without_docs: %doc Documentation/git-archimport.html }
  306. %endif
  307. %files email
  308. %defattr(-,root,root)
  309. %doc Documentation/*email*.txt
  310. %{_libexecdir}/git-core/*email*
  311. %{!?_without_docs: %{_mandir}/man1/*email*.1*}
  312. %{!?_without_docs: %doc Documentation/*email*.html }
  313. %files gui
  314. %defattr(-,root,root)
  315. %{_libexecdir}/git-core/git-gui*
  316. %{_libexecdir}/git-core/git-citool
  317. %{_datadir}/git-gui/
  318. %{!?_without_docs: %{_mandir}/man1/git-gui.1*}
  319. %{!?_without_docs: %doc Documentation/git-gui.html}
  320. %{!?_without_docs: %{_mandir}/man1/git-citool.1*}
  321. %{!?_without_docs: %doc Documentation/git-citool.html}
  322. %files -n gitk
  323. %defattr(-,root,root)
  324. %doc Documentation/*gitk*.txt
  325. %{_bindir}/gitk
  326. %{_datadir}/gitk
  327. %{!?_without_docs: %{_mandir}/man1/*gitk*.1*}
  328. %{!?_without_docs: %doc Documentation/*gitk*.html }
  329. %files -n perl-Git -f perl-files
  330. %defattr(-,root,root)
  331. %files -n emacs-git
  332. %defattr(-,root,root)
  333. %{_datadir}/emacs/site-lisp/git
  334. #%{_libdir}/emacsen-common/packages/install/git
  335. #%{_libdir}/emacsen-common/packages/remove/git
  336. %{emacsen_pkgdir}/install/git
  337. %{emacsen_pkgdir}/remove/git
  338. %files daemon
  339. %defattr(-,root,root)
  340. %{_var}/lib/git
  341. %{_libexecdir}/git-core/git-daemon
  342. %config(noreplace)%{_sysconfdir}/xinetd.d/git
  343. /srv/git
  344. %files -n gitweb
  345. %defattr(-,root,root)
  346. %doc gitweb/README
  347. /var/www/git/
  348. %config(noreplace)%{_sysconfdir}/gitweb.conf
  349. %config(noreplace)%{_sysconfdir}/httpd/conf.d/git.conf
  350. %files devel
  351. %defattr(644,root,root,755)
  352. %{_includedir}/git
  353. %{_libdir}/libgit.a
  354. %{_libdir}/libgit_xdiff.a
  355. %files all
  356. # No files for you!
  357. %changelog
  358. * Wed Apr 21 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.31.1-1
  359. - updated to 2.31.1.
  360. * Mon Mar 01 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.30.1-1
  361. - updated to 2.30.1.
  362. * Fri May 01 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.26.2-1
  363. - updated to 2.26.2.
  364. * Mon Apr 20 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.26.1-1
  365. - updated to 2.26.1.
  366. * Mon Dec 16 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.24.1-1
  367. - updated to 2.24.1.
  368. * Sat May 18 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.21.0-1
  369. - updated to 2.21.0.
  370. - rebuilt with perl-5.26.
  371. * Mon Nov 12 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.19.1-2
  372. - added Patch1000 to disable HTTP/2.
  373. * Fri Nov 09 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.19.1-1
  374. - updated to 2.19.1.
  375. * Wed Jan 17 2018 IWAI, Masaharu <iwaim.sub@gmail.com> 2.15.1-1
  376. - update to 2.15.1
  377. * Tue Aug 15 2017 IWAI, Masaharu <iwaim.sub@gmail.com> 2.14.1-1
  378. - update to 2.14.1
  379. * Sun Jul 9 2017 IWAI, Masaharu <iwaim.sub@gmail.com> 2.13.2-1
  380. - update to 2.13.2
  381. * Thu May 18 2017 IWAI, Masaharu <iwaim.sub@gmail.com> 2.13.0-1
  382. - update to 2.13.0
  383. * Sun Mar 19 2017 IWAI, Masaharu <iwaim.sub@gmail.com> 2.12.0-1
  384. - update to 2.12.0
  385. * Sat Feb 25 2017 IWAI, Masaharu <iwaim.sub@gmail.com> 2.11.1-1
  386. - update to 2.11.1
  387. * Tue Dec 20 2016 IWAI, Masaharu <iwaim.sub@gmail.com> 2.11.0-1
  388. - update to 2.11.0
  389. * Fri Nov 18 2016 IWAI, Masaharu <iwaim.sub@gmail.com> 2.10.2-2
  390. - include git-credential-gnome-keyring in contrib subpackage
  391. * Mon Nov 14 2016 Toshiaki Ara <ara_t@384.jp> 2.10.2-1
  392. - update to 2.10.2
  393. - fix build error using pcre-8.12 (Vine6)
  394. * Sun May 8 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.8.2-1
  395. - update to 2.8.2.
  396. * Tue Apr 12 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 2.6.6-1
  397. - update to 2.6.6.
  398. * Thu Dec 31 2015 IWAI Masaharu <iwaim.sub@gmail.com> 2.6.4-1
  399. - update to 2.6.4
  400. - add locale files
  401. * Mon Dec 29 2014 IWAI Masaharu <iwaim.sub@gmail.com> 2.2.1-1
  402. - update to 2.2.1
  403. * Mon Jun 30 2014 IWAI, Masaharu <iwaim.sub@gmail.com> 2.0.1-2
  404. - build with Perl 5.16
  405. * Thu Jun 26 2014 IWAI, Masaharu <iwaim.sub@gmail.com> 2.0.1-1
  406. - update to 2.0.1
  407. - add "%%bcond_with arch": no create git-arch sub package by default
  408. * Fri Apr 18 2014 2014 Daisuke SUZUKI <daisuke@linux.or.jp> 1.9.2-1
  409. - update to 1.9.2
  410. * Sun Dec 29 2013 IWAI, Masaharu <iwaim.sub@gmail.com> 1.8.5.2-1
  411. - update to 1.8.5.2
  412. * Thu Nov 28 2013 IWAI, Masaharu <iwaim.sub@gmail.com> 1.8.4.4-1
  413. - update to 1.8.4.4
  414. - new sub package: contrib
  415. * Fri Feb 8 2013 IWAI, Masaharu <iwai@alib.jp> 1.8.1.3-1
  416. - new upstream release
  417. * Tue Jan 29 2013 IWAI, Masaharu <iwai@alib.jp> 1.8.1.2-1
  418. - new upstream release
  419. * Thu Jan 17 2013 IWAI, Masaharu <iwai@alib.jp> 1.8.1.1-1
  420. - new upstream release
  421. * Thu Jan 3 2013 IWAI, Masaharu <iwai@alib.jp> 1.8.1-1
  422. - new upstream release
  423. * Wed Dec 12 2012 IWAI, Masaharu <iwai@alib.jp> 1.8.0.2-1
  424. - new upstream release
  425. * Thu Nov 29 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.0.1-1
  426. - new upstream release
  427. * Mon Oct 29 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.8.0-1
  428. - new upstream release
  429. - enable libpcre support, add BR: pcre-devel
  430. - add /etc/gitweb.conf
  431. - add /var/lib/git for PROJECTROOT
  432. * Mon Sep 3 2012 IWAI, Masaharu <iwai@alib.jp> 1.7.12-1
  433. - new upstream release
  434. * Fri May 25 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.7.10.2-1
  435. - new upstream release
  436. * Sat May 05 2012 Daisuke SUZUKI <daisuke@linux.or.jp> 1.7.10.1-1
  437. - new upstream release
  438. * Wed Mar 30 2011 IWAI, Masaharu <iwai@alib.jp> 1.7.4.2-1
  439. - new upstream release
  440. * Sat Mar 26 2011 IWAI, Masaharu <iwai@alib.jp> 1.7.3.5-2vl6
  441. - build with perl 5.12.3
  442. * Mon Jan 10 2011 IWAI, Masaharu <iwai@alib.jp> 1.7.3.5-1
  443. - new upstream release
  444. - build with openssl 1.0.0c for VineSeed
  445. * Sat Jan 1 2011 IWAI, Masaharu <iwai@alib.jp> 1.7.3.4-1
  446. - new upstream release: include security fix: CVE-2010-3906
  447. * Fri Oct 1 2010 IWAI, Masaharu <iwai@alib.jp> 1.7.3.1-1
  448. - new upstream release
  449. - drop CVE-2010-2542 patch (Patch100): upstream fixed
  450. - apply vine-default
  451. - rename Source1: git-init.el -> vine-default-git.el
  452. - add new git-init.el file (Source12)
  453. - update git-install.sh
  454. - update %%build and %%install section for gitweb subpackage
  455. - add README in gitweb subpackage
  456. * Tue Sep 28 2010 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> 1.7.1-2
  457. - add Patch100 for fix CVE-2010-2542 (BOF in is_git_directory)
  458. * Wed Jun 9 2010 IWAI, Masaharu <iwai@alib.jp> 1.7.1-1
  459. - new upstream release
  460. - fix git-daemon path in git.xinetd: <BTS:VineLinux:919>
  461. - disable building of unused python remote helper libs
  462. * Mon Jun 22 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> - 1.6.3.3-1
  463. - new upstream release with security fix
  464. - drop patch10 (included in new release)
  465. * Tue Jun 16 2009 Satoshi IWAMOTO <satoshi.iwamoto@nifty.ne.jp> - 1.6.3.2-1
  466. - new upstream release
  467. - add patch10 git daemon extra arg parsing fix
  468. * Thu Apr 16 2009 IWAI, Masaharu <iwai@alib.jp> - 1.6.2.3-2
  469. - fix install script for Emacs Lisp: <BTS:VineLinux:685>
  470. - update git-install.sh (Source10) using contributed patch
  471. * Tue Apr 14 2009 IWAI, Masaharu <iwai@alib.jp> - 1.6.2.3-1
  472. - new upstream release
  473. * Sun Feb 22 2009 IWAI, Masaharu <iwai@alib.jp> - 1.6.1.2-3
  474. - delete arch sub package for Vine Linux 4.2: <BTS:VineLinux:667>
  475. - spec in EUC-JP for Vine Linux 4.2: <BTS:VineLinux:668>
  476. - fix summary and description in daemon sub package
  477. * Sun Feb 1 2009 IWAI, Masaharu <iwai@alib.jp> - 1.6.1.2-2
  478. - drop Error.pm: provide by perl-Error package
  479. * Thu Jan 29 2009 IWAI, Masaharu <iwai@alib.jp> - 1.6.1.2-1
  480. - new upstream relase
  481. - update URL tag
  482. - add Requires: perl(SVN::Core) for svn subpackage
  483. * Thu Jan 22 2009 IWAI, Masaharu <iwai@alib.jp> - 1.6.1-3
  484. - add git-shell in git package
  485. - do not require perl(:MODULE_COMPAT_x.y.z) on Vine Linux 4.x
  486. * Mon Jan 5 2009 Shu KONNO <owa@bg.wakwak.com> - 1.6.1-2
  487. - added BuildRequires: xmlto
  488. * Mon Jan 5 2009 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.6.1-1
  489. - new upstream release
  490. - add devel subpackage (see [wishes:0165])
  491. * Fri Oct 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.0.3-1
  492. - new upstream release
  493. * Mon Sep 15 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.0.2-1
  494. - new upstream release
  495. * Tue Aug 26 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.0.1-1
  496. - new upstream release
  497. * Mon Aug 25 2008 Shu KONNO <owa@bg.wakwak.com> 1.6.0-2
  498. - use %%emacsen_pkgdir macro
  499. * Sun Aug 24 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.6.0-1
  500. - new upstream release
  501. * Wed Aug 20 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 1.5.6.4-1
  502. - initial build for Vine Linux
  503. * Thu Jul 24 2008 James Bowes <jbowes@redhat.com> 1.5.6-4
  504. - git-1.5.6.4
  505. * Thu Jun 19 2008 James Bowes <jbowes@redhat.com> 1.5.6-1
  506. - git-1.5.6
  507. * Tue Jun 3 2008 Stepan Kasal <skasal@redhat.com> 1.5.5.3-2
  508. - use tar.bz2 instead of tar.gz
  509. * Wed May 28 2008 James Bowes <jbowes@redhat.com> 1.5.5.3-1
  510. - git-1.5.5.3
  511. * Mon May 26 2008 James Bowes <jbowes@redhat.com> 1.5.5.2-1
  512. - git-1.5.5.2
  513. * Mon Apr 21 2008 James Bowes <jbowes@redhat.com> 1.5.5.1-1
  514. - git-1.5.5.1
  515. * Wed Apr 09 2008 James Bowes <jbowes@redhat.com> 1.5.5-1
  516. - git-1.5.5
  517. * Fri Apr 04 2008 James Bowes <jbowes@redhat.com> 1.5.4.5-3
  518. - Remove the last two requires on git-core.
  519. * Wed Apr 02 2008 James Bowes <jbowes@redhat.com> 1.5.4.5-2
  520. - Remove a patch that's already upstream.
  521. * Fri Mar 28 2008 James Bowes <jbowes@redhat.com> 1.5.4.5-1
  522. - git-1.5.4.5
  523. * Wed Mar 26 2008 James Bowes <jbowes@redhat.com> 1.5.4.4-4
  524. - Own /etc/bash_completion.d in case bash-completion isn't installed.
  525. * Tue Mar 25 2008 James Bowes <jbowes@redhat.com> 1.5.4.4-3
  526. - Include the sample hooks from contrib/hooks as docs (bug 321151).
  527. - Install the bash completion script from contrib (bug 433255).
  528. - Include the html docs in the 'core' package again (bug 434271).
  529. * Wed Mar 19 2008 James Bowes 1.5.4.4-2
  530. - Obsolete git <= 1.5.4.3, to catch going from F8 to rawhide/F9
  531. * Thu Mar 13 2008 James Bowes <jbowes@redhat.com> 1.5.4.4-1
  532. - git-1.5.4.4
  533. * Mon Mar 3 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.5.4.3-3
  534. - rebuild for new perl (again)
  535. * Sun Feb 24 2008 Bernardo Innocenti <bernie@codewiz.org> 1.5.4.3-2
  536. - Do not silently overwrite /etc/httpd/conf.d/git.conf
  537. * Sat Feb 23 2008 James Bowes <jbowes@redhat.com> 1.5.4.3-1
  538. - git-1.5.4.3
  539. - Include Kristian Høgsberg's changes to rename git-core to
  540. git and git to git-all.
  541. * Sun Feb 17 2008 James Bowes <jbowes@redhat.com> 1.5.4.2-1
  542. - git-1.5.4.2
  543. * Mon Feb 11 2008 Jeremy Katz <katzj@redhat.com> - 1.5.4.1-2
  544. - Add upstream patch (e62a641de17b172ffc4d3a803085c8afbfbec3d1) to have
  545. gitweb rss feeds point be commitdiffs instead of commit
  546. * Sun Feb 10 2008 James Bowes <jbowes@redhat.com> 1.5.4.1-1
  547. - git-1.5.4.1
  548. * Tue Feb 05 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.5.4-3
  549. - rebuild for new perl
  550. * Sun Feb 03 2008 James Bowes <jbowes@redhat.com> 1.5.4-1
  551. - Add BuidRequires on gettext.
  552. * Sat Feb 02 2008 James Bowes <jbowes@redhat.com> 1.5.4-1
  553. - git-1.5.4
  554. * Tue Jan 08 2008 James Bowes <jbowes@redhat.com> 1.5.3.8-1
  555. - git-1.5.3.8
  556. * Fri Dec 21 2007 James Bowes <jbowes@redhat.com> 1.5.3.7-2
  557. - Have git metapackage require explicit versions (bug 247214)
  558. * Mon Dec 03 2007 Josh Boyer <jwboyer@gmail.com> 1.5.3.7-1
  559. - git-1.5.3.7
  560. * Tue Nov 27 2007 Josh Boyer <jwboyer@gmail.com> 1.5.3.6-1
  561. - git-1.5.3.6
  562. - git-core requires perl(Error) (bug 367861)
  563. - git-svn requires perl(Term:ReadKey) (bug 261361)
  564. - git-email requires perl-Git (bug 333061)
  565. * Wed Oct 24 2007 Lubomir Kundrak <lkundrak@redhat.com> 1.5.3.4-2
  566. - git-Perl requires Error package
  567. * Tue Oct 09 2007 James Bowes <jbowes@redhat.com> 1.5.3.4-1
  568. - git-1.5.3.4
  569. * Sun Sep 30 2007 James Bowes <jbowes@redhat.com> 1.5.3.3-1
  570. - git-1.5.3.3
  571. * Wed Sep 26 2007 James Bowes <jbowes@redhat.com> 1.5.3.2-1
  572. - git-1.5.3.2
  573. * Thu Sep 06 2007 Josh Boyer <jwboyer@jdub.homelinux.org> 1.5.3.1-2
  574. - Include git-gui and git-citool docs
  575. * Thu Sep 06 2007 Josh Boyer <jwboyer@jdub.homelinux.org> 1.5.3.1-1
  576. - git-1.5.3.1-1
  577. * Thu Aug 23 2007 James Bowes <jbowes@redhat.com> 1.5.2.5-1
  578. - git-1.5.2.5-1
  579. * Fri Aug 03 2007 Josh Boyer <jwboyer@jdub.homelinux.org> 1.5.2.4-1
  580. - git-1.5.2.4-1
  581. * Tue Jul 03 2007 Josh Boyer <jwboyer@jdub.homelinux.org> 1.5.2.2-3
  582. - Add git-daemon and gitweb packages
  583. * Thu Jun 21 2007 Josh Boyer <jwboyer@jdub.homelinux.org> 1.5.2.2-2
  584. - Add emacs-git package (#235431)
  585. * Mon Jun 18 2007 James Bowes <jbowes@redhat.com> 1.5.2.2-1
  586. - git-1.5.2.2
  587. * Fri Jun 08 2007 James Bowes <jbowes@redhat.com> 1.5.2.1-1
  588. - git-1.5.2.1
  589. * Sun May 13 2007 Quy Tonthat <qtonthat@gmail.com>
  590. - Added lib files for git-gui
  591. - Added Documentation/technical (As needed by Git Users Manual)
  592. * Tue May 8 2007 Quy Tonthat <qtonthat@gmail.com>
  593. - Added howto files
  594. * Fri Mar 30 2007 Chris Wright <chrisw@redhat.com> 1.5.0.6-1
  595. - git-1.5.0.6
  596. * Mon Mar 19 2007 Chris Wright <chrisw@redhat.com> 1.5.0.5-1
  597. - git-1.5.0.5
  598. * Tue Mar 13 2007 Chris Wright <chrisw@redhat.com> 1.5.0.3-1
  599. - git-1.5.0.3
  600. * Fri Mar 2 2007 Chris Wright <chrisw@redhat.com> 1.5.0.2-2
  601. - BuildRequires perl-devel as of perl-5.8.8-14 (bz 230680)
  602. * Mon Feb 26 2007 Chris Wright <chrisw@redhat.com> 1.5.0.2-1
  603. - git-1.5.0.2
  604. * Tue Feb 13 2007 Nicolas Pitre <nico@cam.org>
  605. - Update core package description (Git isn't as stupid as it used to be)
  606. * Mon Feb 12 2007 Junio C Hamano <junkio@cox.net>
  607. - Add git-gui and git-citool.
  608. * Sun Dec 10 2006 Chris Wright <chrisw@redhat.com> 1.4.4.2-2
  609. - no need to install manpages executable (bz 216790)
  610. - use bytes for git-cvsserver
  611. * Sun Dec 10 2006 Chris Wright <chrisw@redhat.com> 1.4.4.2-1
  612. - git-1.4.4.2
  613. * Mon Nov 6 2006 Jindrich Novy <jnovy@redhat.com> 1.4.2.4-2
  614. - rebuild against the new curl
  615. * Tue Oct 17 2006 Chris Wright <chrisw@redhat.com> 1.4.2.4-1
  616. - git-1.4.2.4
  617. * Wed Oct 4 2006 Chris Wright <chrisw@redhat.com> 1.4.2.3-1
  618. - git-1.4.2.3
  619. * Fri Sep 22 2006 Chris Wright <chrisw@redhat.com> 1.4.2.1-1
  620. - git-1.4.2.1
  621. * Mon Sep 11 2006 Chris Wright <chrisw@redhat.com> 1.4.2-1
  622. - git-1.4.2
  623. * Thu Jul 6 2006 Chris Wright <chrisw@redhat.com> 1.4.1-1
  624. - git-1.4.1
  625. * Tue Jun 13 2006 Chris Wright <chrisw@redhat.com> 1.4.0-1
  626. - git-1.4.0
  627. * Thu May 4 2006 Chris Wright <chrisw@redhat.com> 1.3.3-1
  628. - git-1.3.3
  629. - enable git-email building, prereqs have been relaxed
  630. * Thu May 4 2006 Chris Wright <chrisw@redhat.com> 1.3.2-1
  631. - git-1.3.2
  632. * Fri Apr 28 2006 Chris Wright <chrisw@redhat.com> 1.3.1-1
  633. - git-1.3.1
  634. * Wed Apr 19 2006 Chris Wright <chrisw@redhat.com> 1.3.0-1
  635. - git-1.3.0
  636. * Mon Apr 10 2006 Chris Wright <chrisw@redhat.com> 1.2.6-1
  637. - git-1.2.6
  638. * Wed Apr 5 2006 Chris Wright <chrisw@redhat.com> 1.2.5-1
  639. - git-1.2.5
  640. * Wed Mar 1 2006 Chris Wright <chrisw@redhat.com> 1.2.4-1
  641. - git-1.2.4
  642. * Wed Feb 22 2006 Chris Wright <chrisw@redhat.com> 1.2.3-1
  643. - git-1.2.3
  644. * Tue Feb 21 2006 Chris Wright <chrisw@redhat.com> 1.2.2-1
  645. - git-1.2.2
  646. * Thu Feb 16 2006 Chris Wright <chrisw@redhat.com> 1.2.1-1
  647. - git-1.2.1
  648. * Mon Feb 13 2006 Chris Wright <chrisw@redhat.com> 1.2.0-1
  649. - git-1.2.0
  650. * Wed Feb 1 2006 Chris Wright <chrisw@redhat.com> 1.1.6-1
  651. - git-1.1.6
  652. * Tue Jan 24 2006 Chris Wright <chrisw@redhat.com> 1.1.4-1
  653. - git-1.1.4
  654. * Sun Jan 15 2006 Chris Wright <chrisw@redhat.com> 1.1.2-1
  655. - git-1.1.2
  656. * Tue Jan 10 2006 Chris Wright <chrisw@redhat.com> 1.1.1-1
  657. - git-1.1.1
  658. * Tue Jan 10 2006 Chris Wright <chrisw@redhat.com> 1.1.0-1
  659. - Update to latest git-1.1.0 (drop git-email for now)
  660. - Now creates multiple packages:
  661. - git-core, git-svn, git-cvs, git-arch, gitk
  662. * Mon Nov 14 2005 H. Peter Anvin <hpa@zytor.com> 0.99.9j-1
  663. - Change subpackage names to git-<name> instead of git-core-<name>
  664. - Create empty root package which brings in all subpackages
  665. - Rename git-tk -> gitk
  666. * Thu Nov 10 2005 Chris Wright <chrisw@osdl.org> 0.99.9g-1
  667. - zlib dependency fix
  668. - Minor cleanups from split
  669. - Move arch import to separate package as well
  670. * Tue Sep 27 2005 Jim Radford <radford@blackbean.org>
  671. - Move programs with non-standard dependencies (svn, cvs, email)
  672. into separate packages
  673. * Tue Sep 27 2005 H. Peter Anvin <hpa@zytor.com>
  674. - parallelize build
  675. - COPTS -> CFLAGS
  676. * Fri Sep 16 2005 Chris Wright <chrisw@osdl.org> 0.99.6-1
  677. - update to 0.99.6
  678. * Fri Sep 16 2005 Horst H. von Brand <vonbrand@inf.utfsm.cl>
  679. - Linus noticed that less is required, added to the dependencies
  680. * Sun Sep 11 2005 Horst H. von Brand <vonbrand@inf.utfsm.cl>
  681. - Updated dependencies
  682. - Don't assume manpages are gzipped
  683. * Thu Aug 18 2005 Chris Wright <chrisw@osdl.org> 0.99.4-4
  684. - drop sh_utils, sh-utils, diffutils, mktemp, and openssl Requires
  685. - use RPM_OPT_FLAGS in spec file, drop patch0
  686. * Wed Aug 17 2005 Tom "spot" Callaway <tcallawa@redhat.com> 0.99.4-3
  687. - use dist tag to differentiate between branches
  688. - use rpm optflags by default (patch0)
  689. - own %{_datadir}/git-core/
  690. * Mon Aug 15 2005 Chris Wright <chrisw@osdl.org>
  691. - update spec file to fix Buildroot, Requires, and drop Vendor
  692. * Sun Aug 07 2005 Horst H. von Brand <vonbrand@inf.utfsm.cl>
  693. - Redid the description
  694. - Cut overlong make line, loosened changelog a bit
  695. - I think Junio (or perhaps OSDL?) should be vendor...
  696. * Thu Jul 14 2005 Eric Biederman <ebiederm@xmission.com>
  697. - Add the man pages, and the --without docs build option
  698. * Thu Jul 7 2005 Chris Wright <chris@osdl.org>
  699. - initial git spec file