mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-12 20:22:05 +01:00
Notes for anyone using ovs with lxc & updating from Alpine 3.1 --> 3.2 In LXC 1.1.2 the mount entries in container/config have changed a little & need to be modified (create a new container to find the new config format). Changing these & rebooting with the new ovs worked without issue. Not doing this broke the networking.
110 lines
4.9 KiB
Plaintext
110 lines
4.9 KiB
Plaintext
# Contributor: Stuart Cardall <developer@it-offshore.co.uk>
|
|
# Maintainer: Stuart Cardall <developer@it-offshore.co.uk>
|
|
pkgname=openvswitch
|
|
pkgver=2.3.2
|
|
pkgrel=0
|
|
pkgdesc="A production quality, multilayer virtual switch"
|
|
url="http://openvswitch.org/"
|
|
arch="all"
|
|
license="ASL 2.0"
|
|
depends=""
|
|
depends_dev="openssl-dev"
|
|
makedepends="$depends_dev perl python linux-headers"
|
|
install=""
|
|
subpackages="$pkgname-doc $pkgname-dbg $pkgname-monitor"
|
|
source="http://openvswitch.org/releases/$pkgname-$pkgver.tar.gz
|
|
ovsdb-server.initd
|
|
ovsdb-server.confd
|
|
ovs-vswitchd.initd
|
|
ovs-vswitchd.confd
|
|
ovs-modules.initd
|
|
musl-if_packet.patch
|
|
0001-ovs-thread-Set-stacksize-to-1M.patch
|
|
ifupdown-alpine.patch
|
|
"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
|
|
prepare() {
|
|
local i
|
|
cd "$_builddir"
|
|
|
|
for i in $source; do
|
|
case $i in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure --prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--infodir=/usr/share/info \
|
|
--localstatedir=/var \
|
|
--enable-ndebug \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
monitor() {
|
|
depends="openvswitch py-twisted py-twisted-web2 py-qt"
|
|
arch="noarch"
|
|
mkdir -p "$subpkgdir"/usr/share/openvswitch
|
|
mv "$pkgdir"/usr/share/openvswitch/python \
|
|
"$subpkgdir"/usr/share/openvswitch/python
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
rm -f "$pkgdir"/usr/lib/*.la
|
|
rm -f "$pkgdir"/usr/lib/*.a
|
|
install -Dm755 "$srcdir"/ovsdb-server.initd \
|
|
"$pkgdir"/etc/init.d/ovsdb-server || return 1
|
|
install -Dm755 "$srcdir"/ovs-vswitchd.initd \
|
|
"$pkgdir"/etc/init.d/ovs-vswitchd || return 1
|
|
install -Dm755 "$srcdir"/ovs-modules.initd \
|
|
"$pkgdir"/etc/init.d/ovs-modules || return 1
|
|
install -Dm644 "$srcdir"/ovsdb-server.confd \
|
|
"$pkgdir"/etc/conf.d/ovsdb-server || return 1
|
|
install -Dm644 "$srcdir"/ovs-vswitchd.confd \
|
|
"$pkgdir"/etc/conf.d/ovs-vswitchd
|
|
|
|
install -d "$pkgdir"/etc/network/if-pre-up.d \
|
|
"$pkgdir"/etc/network/if-post-down.d || return 1
|
|
install -m755 debian/ifupdown.sh \
|
|
"$pkgdir"/etc/network/if-pre-up.d/openvswitch || return 1
|
|
ln -s ../if-pre-up.d/openvswitch \
|
|
"$pkgdir"/etc/network/if-post-down.d/openvswitch || return 1
|
|
}
|
|
|
|
md5sums="5a5739ed82f1accac1c2d8d7553dc88f openvswitch-2.3.2.tar.gz
|
|
a2b05882127059f79a02d1c49b58e526 ovsdb-server.initd
|
|
f10a8ac784654bec359bda52779f16fe ovsdb-server.confd
|
|
384ad5bbe9dd788de78012864233a756 ovs-vswitchd.initd
|
|
2d1e0111ea62779f49e14d62678294b2 ovs-vswitchd.confd
|
|
45b381d434ccbc634a3224c5963edc66 ovs-modules.initd
|
|
6e17032bd6e7caf6e6e844b5a84d7080 musl-if_packet.patch
|
|
59fa9a6d293a25571562a5190ae559f2 0001-ovs-thread-Set-stacksize-to-1M.patch
|
|
efb3c073b7c475d9fb3999a38e4f92c0 ifupdown-alpine.patch"
|
|
sha256sums="386b11df94d06c68d391ee4091832360095bd3a14c72d454325fab284dad9887 openvswitch-2.3.2.tar.gz
|
|
737be74a4ce951cd49b9cd85696ff5cbdb54fa7ad52c831494fcf336487fc420 ovsdb-server.initd
|
|
d0d8a6a7256f4cc47ab1b9f9f7657202388133bcfff3668e7c1d4adbcc572261 ovsdb-server.confd
|
|
d2db312103d740fb9246ea218560995b969cb8356e3524d4c0ce79a06ccc65b8 ovs-vswitchd.initd
|
|
cc189d5ca24708ff775a4de312df3f611c65714724b8901ec6527c9e3f22e14a ovs-vswitchd.confd
|
|
06079771a94dd363218f2b3561efd0178a47d85bfd73c8b6cf24eef4ec82b0de ovs-modules.initd
|
|
d0e9e3e30b2943b10e7efa59c41c3bf8d5b599d55fc99198146bf4761df4d8ae musl-if_packet.patch
|
|
faf997814e89b0b5948c06050ef38051f0bc6b108958f76313263f77a724906c 0001-ovs-thread-Set-stacksize-to-1M.patch
|
|
d2284376febcdb465ef2f216be01be52dab2a9726624b12c5cc47fb0d955d1b1 ifupdown-alpine.patch"
|
|
sha512sums="dfbd9d5b16aeecdc880efb910e0ec2e474dcc02515f0033b1e9466735387b39f2855bec49936a261aea66badb35e09598dbb9fc4b506e9a9e0c18d3441fea691 openvswitch-2.3.2.tar.gz
|
|
097d4721a78fff749c534910d98543778474406bd61b469b88a0d981a2a380556444437ec44278cead6d8688c45a38b2acbf1551acb9ab38d048f413728e3b88 ovsdb-server.initd
|
|
b1588d076bbfc7ef2dd46fce8e46186f40cbbc4667697f7ac13ddc68e34568fdab315fde47838de7f6d32916853190336cfe3735f672ad7cb624ae14dbff55a5 ovsdb-server.confd
|
|
4bff37f8bed32d5327b4b0433984ab8ffdce77f618034aa6ffd1ad4a7caa00703ea2bef312876dce5aafa4c17fe06dddd75e5c05c10e13bf8f5c3805a0654a96 ovs-vswitchd.initd
|
|
346aea099f51707d2b4fc9fdc8c1502582723fb4e00c4d5d1624b0378c94dfb76674fa95e2af894f36169df52109dbe441ee6a45aa744584d9e4c74d15a46c1d ovs-vswitchd.confd
|
|
614c86eab826bb8f934cf4a98508fde9952a0b7211414e074510473af3455077a333729aa0e59f3634b9bf30d64847d0f7597246506c36a8f09d57573a2522fc ovs-modules.initd
|
|
1ebfb2629081cc0b34383e6c2f163f3c1d43da3a399b8ba8745871b77029d3b8fc21a287ff859a6a9cca2cb4885715458d4e4086cb6c17765ff7c898d4004850 musl-if_packet.patch
|
|
5fed04e68b58ab322154fa1cc4c4b63b08c22ed41f0b7713dbe8437f7cb4e9fd93c8aba524c2e5a46bba956da9439f5bfe5ba6fcdff2b98fa9bbcc748c5b64db 0001-ovs-thread-Set-stacksize-to-1M.patch
|
|
eb24886fd8110adde4a68f7ab0887af0cdf88e27d58f030208a0a9d7aef0065b8c5f7e2d489ff48c82ba386fbb9575c0273c5d4958e2638263ea78824242354e ifupdown-alpine.patch"
|