blob: 771fb487b6c42c37cd1a984361ea93ee082fa80f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
|
# Contributor: Łukasz Jendrysik <scadu@yandex.com>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=git
pkgver=2.11.3
pkgrel=2
pkgdesc="A distributed version control system"
url="https://www.git-scm.com/"
arch="all"
license="GPL2+"
depends=
replaces="git-perl"
# note that order matters
subpackages="$pkgname-doc
$pkgname-bash-completion:completion:noarch
perl-$pkgname-svn:_perl_git_svn:noarch
perl-$pkgname:_perl_git:noarch
$pkgname-svn::noarch
$pkgname-email::noarch
$pkgname-cvs::noarch
$pkgname-p4::noarch
$pkgname-daemon
$pkgname-gitweb::noarch
$pkgname-subtree::noarch
$pkgname-subtree-doc:subtree_doc:noarch
$pkgname-perl:_git_perl:noarch
$pkgname-gui::noarch
$pkgname-gitk::noarch
"
# we need tcl and tk to be built before git due to git-gui and gitk
makedepends="zlib-dev libressl-dev curl-dev expat-dev perl-dev python2-dev
pcre-dev asciidoc xmlto perl-error tcl tk"
source="https://www.kernel.org/pub/software/scm/git/git-$pkgver.tar.xz
bb-tar.patch
git-daemon.initd
git-daemon.confd
CVE-2018-11233.patch
CVE-2018-11235.patch
CVE-2018-17456.patch
"
_makeopts="
NO_GETTEXT=YesPlease
NO_NSEC=YesPlease
NO_SVN_TESTS=YesPlease
NO_REGEX=YesPlease
USE_LIBPCRE=1"
_gitcoredir=/usr/libexec/git-core
_builddir="$srcdir"/$pkgname-$pkgver
# secfixes:
# 2.11.3-r2:
# - CVE-2018-17456
# 2.11.3-r1:
# - CVE-2018-11233
# - CVE-2018-11235
# 2.11.3-r0:
# - CVE-2017-1000117
build() {
cd "$_builddir"
make -j1 prefix=/usr DESTDIR="$pkgdir" $_makeopts perl/perl.mak || return 1
make prefix=/usr DESTDIR="$pkgdir" $_makeopts || return 1
}
package() {
cd "$_builddir"
make -j1 prefix=/usr \
DESTDIR="$pkgdir" \
INSTALLDIRS=vendor \
$_makeopts install || return 1
mkdir -p "$pkgdir"/var/git
install -Dm755 "$srcdir"/git-daemon.initd \
"$pkgdir"/etc/init.d/git-daemon || return 1
install -Dm644 "$srcdir"/git-daemon.confd \
"$pkgdir"/etc/conf.d/git-daemon || return 1
make prefix=/usr DESTDIR="$pkgdir" install-man || return 1
}
_perl_git_svn() {
pkgdesc="Perl interface to Git::SVN"
depends="git=$pkgver-r$pkgrel"
replaces="git-perl"
eval local `perl -V:vendorlib`
mkdir -p "$subpkgdir"/$vendorlib/Git
mv "$pkgdir"/$vendorlib/Git/SVN* "$subpkgdir"/$vendorlib/Git/
}
_perl_git() {
pkgdesc="Perl interface to Git"
depends="git=$pkgver-r$pkgrel perl-error"
replaces="git-perl"
eval local `perl -V:vendorlib`
eval local `perl -V:vendorarch`
for i in $vendorlib $vendorarch; do
mkdir -p "$subpkgdir"/${i%/*} || return 1
mv "$pkgdir"/$i "$subpkgdir"/$i || return 1
done
}
email() {
depends="perl perl-git=$pkgver-r$pkgrel perl-net-smtp-ssl
perl-authen-sasl"
pkgdesc="Git tools for sending email"
replaces="git"
mkdir -p "$subpkgdir"/$_gitcoredir
mv "$pkgdir"/$_gitcoredir/*email* "$subpkgdir"/$_gitcoredir
}
svn() {
depends="perl perl-git-svn=$pkgver-r$pkgrel perl-subversion
perl-term-readkey"
pkgdesc="Subversion support for git"
replaces=""
mkdir -p "$subpkgdir"/$_gitcoredir
mv "$pkgdir"/$_gitcoredir/git-svn "$subpkgdir"/$_gitcoredir/
}
cvs() {
pkgdesc="Git tools for importing CVS repositories"
depends="perl perl-git=$pkgver-r$pkgrel cvs perl-dbd-sqlite"
replaces="git-perl"
mkdir -p "$subpkgdir"/usr/bin "$subpkgdir"/$_gitcoredir
mv "$pkgdir"/usr/bin/git-cvs* "$subpkgdir"/usr/bin/ || return 1
mv "$pkgdir"/$_gitcoredir/*cvs* "$subpkgdir"/$_gitcoredir \
|| return 1
}
p4() {
pkgdesc="Git tools for working with Perforce depots"
depends="git=$pkgver-r$pkgrel"
replaces="git"
mkdir -p "$subpkgdir"/$_gitcoredir/mergetools
mv "$pkgdir"/$_gitcoredir/*p4* "$subpkgdir"/$_gitcoredir/ || return 1
mv "$pkgdir"/$_gitcoredir/mergetools/*p4* \
"$subpkgdir"/$_gitcoredir/mergetools/ || return 1
}
daemon() {
pkgdesc="Git protocol daemon"
depends="git=$pkgver-r$pkgrel"
replaces="git"
mkdir -p "$subpkgdir"/$_gitcoredir
mv "$pkgdir"/$_gitcoredir/git-daemon "$subpkgdir"/$_gitcoredir \
|| return 1
mv "$pkgdir"/etc "$subpkgdir"/ || return 1
}
gitweb() {
pkgdesc="Simple web interface to git repositories"
depends="git=$pkgver-r$pkgrel perl"
replaces="git"
mkdir -p "$subpkgdir"/usr/share
mv "$pkgdir"/usr/share/gitweb "$subpkgdir"/usr/share/
}
completion() {
pkgdesc="Bash completion for $pkgname"
depends=""
replaces=""
install_if="$pkgname=$pkgver-r$pkgrel bash-completion"
install -Dm644 "$_builddir"/contrib/completion/git-completion.bash \
"$subpkgdir"/usr/share/bash-completion/completions/git
}
subtree() {
depends="git=$pkgver-r$pkgrel"
pkgdesc="Split git repository into subtrees"
replaces=""
cd "$_builddir"/contrib/subtree
make prefix=/usr DESTDIR="$pkgdir" || return 1
make install prefix=/usr DESTDIR="$subpkgdir"
}
subtree_doc() {
depends=""
pkgdesc="Split git repository into subtrees (documentation)"
replaces=""
cd "$_builddir"/contrib/subtree
make install-man prefix=/usr DESTDIR="$subpkgdir" || return 1
gzip -9 "$subpkgdir"/usr/share/man/man1/git-subtree.1
}
gui() {
depends="git=$pkgver-r$pkgrel tcl tk"
pkgdesc="GUI interface for git"
replaces=""
mkdir -p "$subpkgdir"/usr/share "$subpkgdir"/usr/libexec/git-core
mv "$pkgdir"/usr/share/git-gui "$subpkgdir"/usr/share/
mv "$pkgdir"/usr/libexec/git-core/git-citool \
"$pkgdir"/usr/libexec/git-core/git-gui \
"$pkgdir"/usr/libexec/git-core/git-gui--askpass \
"$subpkgdir"/usr/libexec/git-core/
}
gitk() {
depends="git=$pkgver-r$pkgrel tcl tk"
pkgdesc="Gitk interface for git"
replaces=""
mkdir -p "$subpkgdir"/usr/share "$subpkgdir"/usr/bin
mv "$pkgdir"/usr/share/gitk "$subpkgdir"/usr/share/
mv "$pkgdir"/usr/bin/gitk "$subpkgdir"/usr/bin/
}
# catch-the-rest of stuff that needs perl
_git_perl() {
depends="git=$pkgver-r$pkgrel perl-git=$pkgver-r$pkgrel perl"
pkgdesc="Additional Git commands that requires perl"
replaces=""
mkdir -p "$subpkgdir"/usr/lib
mv "$pkgdir"/usr/lib/perl* "$subpkgdir"/usr/lib/
cd "$pkgdir"
find -type f | xargs file --mime-type | grep perl | cut -d: -f1| while read f; do
mkdir -p "$subpkgdir"/${f%/*}
mv "$f" "$subpkgdir"/${f%/*}
done
find "$subpkgdir" -name perllocal.pod -delete
}
md5sums="1e961079c5a38eb6a79f4a479550aade git-2.11.3.tar.xz
0549894076c2081d886fa5ee44c20e23 bb-tar.patch
8bb51e7742a171891a51967b84c8088e git-daemon.initd
33427921f86acc26d1578d8b308e5baa git-daemon.confd
c46121013e7329a583c1d0d885b4a5bd CVE-2018-11233.patch
af7b89141594387b0d05c13cfbb43e5b CVE-2018-11235.patch
b9a35c4795f69c280ab56e47dcfc8282 CVE-2018-17456.patch"
sha256sums="7343bbd489f59531d66bc086393f0d5f530b5175927c29fb97b07f9d2cbc31ac git-2.11.3.tar.xz
968e996a306dab643970c5ce1ac40926146b01b9c38a8fe81c74340a0302dbc7 bb-tar.patch
ff9b5beefbe55ba6340f1c4acced195515002d0ccb431a8fcd5b1078eacd2e59 git-daemon.initd
4703ba2372c661fb674a29fea7f64983f8b1b3136d971663509249655bca6e21 git-daemon.confd
93d9e1f4df65da8237fa1c93e544ad3a807a9dcabaf167644893b02465ff0080 CVE-2018-11233.patch
7c0171e4258901bf154be43ba357888a27b1f7e618477704c413e60b1c0e15d5 CVE-2018-11235.patch
e551997905ef35ef91e8c77101e900056d15dfd466e108acebd42dd9a3e85ff9 CVE-2018-17456.patch"
sha512sums="13f7dc80031c4376839debc0d900d1a6e79c1fe9d7cd4abe045ddac73bab059222abeb4ab6b9ccb06f11d6dc3ea4a219b653b679fb8142b75f4a4f820ecb4df4 git-2.11.3.tar.xz
85767b5e03137008d6a96199e769e3979f75d83603ac8cb13a3481a915005637409a4fd94e0720da2ec6cd1124f35eba7cf20109a94816c4b4898a81fbc46bd2 bb-tar.patch
89528cdd14c51fd568aa61cf6c5eae08ea0844e59f9af9292da5fc6c268261f4166017d002d494400945e248df6b844e2f9f9cd2d9345d516983f5a110e4c42a git-daemon.initd
fbf1f425206a76e2a8f82342537ed939ff7e623d644c086ca2ced5f69b36734695f9f80ebda1728f75a94d6cd2fcb71bf845b64239368caab418e4d368c141ec git-daemon.confd
5201ff46b774a4f88fe8c4162394311ed85f4f507ebae1bce71e4dc199bb5ffc60f38c718bb6343c660560b93e648778fc6c4ad3917f95f0f44e31aecc6a6e38 CVE-2018-11233.patch
b09b988ecf6cd2814b44120509cb455f1c2694641d50b62762861708d27e8bf5dc7af5fcb2e5acf589e005b98b9ba04d7bdef5c1e02bd66470eb3faab16cbf3d CVE-2018-11235.patch
bb17113ac695c0976dea7046e3267ea8328dbb3b14a543934f15e50de9e238a0c88cc1f91b15f37006534cf67076b27e9be1642f242dabac743d896a446d3bba CVE-2018-17456.patch"
|