git-vl.spec 29 KB

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