[arch-commits] Commit in lxc/repos (10 files)

Bartłomiej Piotrowski bpiotrowski at archlinux.org
Sat Dec 24 15:21:30 UTC 2016


    Date: Saturday, December 24, 2016 @ 15:21:29
  Author: bpiotrowski
Revision: 201525

archrelease: copy trunk to community-staging-i686, community-staging-x86_64

Added:
  lxc/repos/community-staging-i686/
  lxc/repos/community-staging-i686/PKGBUILD
    (from rev 201524, lxc/trunk/PKGBUILD)
  lxc/repos/community-staging-i686/lxc-auto.service
    (from rev 201524, lxc/trunk/lxc-auto.service)
  lxc/repos/community-staging-i686/lxc.service
    (from rev 201524, lxc/trunk/lxc.service)
  lxc/repos/community-staging-i686/lxc.tmpfiles.d
    (from rev 201524, lxc/trunk/lxc.tmpfiles.d)
  lxc/repos/community-staging-x86_64/
  lxc/repos/community-staging-x86_64/PKGBUILD
    (from rev 201524, lxc/trunk/PKGBUILD)
  lxc/repos/community-staging-x86_64/lxc-auto.service
    (from rev 201524, lxc/trunk/lxc-auto.service)
  lxc/repos/community-staging-x86_64/lxc.service
    (from rev 201524, lxc/trunk/lxc.service)
  lxc/repos/community-staging-x86_64/lxc.tmpfiles.d
    (from rev 201524, lxc/trunk/lxc.tmpfiles.d)

-------------------------------------------+
 community-staging-i686/PKGBUILD           |   87 ++++++++++++++++++++++++++++
 community-staging-i686/lxc-auto.service   |   13 ++++
 community-staging-i686/lxc.service        |   13 ++++
 community-staging-i686/lxc.tmpfiles.d     |    1 
 community-staging-x86_64/PKGBUILD         |   87 ++++++++++++++++++++++++++++
 community-staging-x86_64/lxc-auto.service |   13 ++++
 community-staging-x86_64/lxc.service      |   13 ++++
 community-staging-x86_64/lxc.tmpfiles.d   |    1 
 8 files changed, 228 insertions(+)

Copied: lxc/repos/community-staging-i686/PKGBUILD (from rev 201524, lxc/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD	                        (rev 0)
+++ community-staging-i686/PKGBUILD	2016-12-24 15:21:29 UTC (rev 201525)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Andrea Zucchelli <zukka77 at gmail.com>
+# Contributor: Daniel Micay <danielmicay at gmail.com>
+# Contributor: Jonathan Liu <net147 at gmail.com>
+# Contributor: Jon Nordby <jononor at gmail.com>
+
+pkgname=lxc
+epoch=1
+pkgver=2.0.6
+pkgrel=3
+pkgdesc="Linux Containers"
+arch=('i686' 'x86_64')
+url="http://linuxcontainers.org"
+depends=('bash' 'perl' 'libseccomp' 'libcap' 'python' 'cgmanager' 'rsync')
+makedepends=('docbook2x' 'lua')
+optdepends=('arch-install-scripts: for archlinux template'
+	    'dnsmasq: lxc-net.service'
+	    'lua'
+	    'lua-filesystem: lxc-top'
+	    'lua-alt-getopt: lxc-top')
+license=('LGPL')
+options=('emptydirs')
+backup=('etc/lxc/default.conf'
+	'etc/default/lxc')
+validpgpkeys=('602F567663E593BCBD14F338C638974D64792D67')
+source=("https://linuxcontainers.org/downloads/$pkgname-${pkgver}.tar.gz"{,.asc}
+	"lxc.tmpfiles.d"
+	"lxc.service"
+	"lxc-auto.service")
+sha256sums=('7c292cd0055dac1a0e6fbb6a7740fd12b6ffb204603c198faf37c11c9d6dcd7a'
+            'SKIP'
+            '10e4f661872f773bf3122a2f9f2cb13344fea86a4ab72beecb4213be4325c479'
+            '711fb84c87b143cb0098e095fdebb040b15f553a854efbe846a00100bdb9ae88'
+            '4174fcc0a664108f1884920930a3dbec0aeceed1fc24f00c200a583c06d447d0')
+
+prepare() {
+  cd "$srcdir/$pkgname-${pkgver/_/-}"
+  sed -i \
+    -e 's|"\\"-//Davenport//DTD DocBook V3.0//EN\\""|"\\"-//OASIS//DTD DocBook XML\\" \\"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd\\""|' \
+    configure.ac
+  sed -i \
+    -e 's|$(sysconfdir)/bash_completion.d/|/usr/share/bash-completion/completions/|g' \
+    config/bash/Makefile.am
+  sed -i \
+    -e 's|\${prefix}/||g' \
+    lxc.pc.in
+  sed -i \
+    -e "s|name='_lxc'|name='lxc'|" \
+    src/python-lxc/setup.py.in
+}
+
+build() {
+  cd "$srcdir/$pkgname-${pkgver/_/-}"
+  ./autogen.sh
+  ./configure \
+    --prefix=/usr \
+    --sbindir=/usr/bin \
+    --localstatedir=/var \
+    --libexecdir=/usr/lib \
+    --libdir=/usr/lib \
+    --sysconfdir=/etc \
+    --disable-apparmor \
+    --enable-seccomp \
+    --enable-cgmanager \
+    --enable-capabilities \
+    --enable-lua \
+    --with-init-script=systemd \
+    --with-systemdsystemunitdir=/usr/lib/systemd/system
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-${pkgver/_/-}"
+
+  make DESTDIR="$pkgdir" install
+  install -d -m755 "$pkgdir/var/lib/lxc"
+  install -d -m755 "$pkgdir/usr/lib/lxc/rootfs/dev"
+  install -D -m644 "$srcdir"/lxc.service "$pkgdir"/usr/lib/systemd/system/lxc at .service
+  install -D -m644 "$srcdir"/lxc-auto.service "$pkgdir"/usr/lib/systemd/system/lxc-auto.service
+  install -D -m644 "$srcdir"/lxc.tmpfiles.d "$pkgdir"/usr/lib/tmpfiles.d/lxc.conf
+
+  cd doc
+  find . -type f -name '*.1' -exec install -D -m644 "{}" "$pkgdir/usr/share/man/man1/{}" \;
+  find . -type f -name '*.5' -exec install -D -m644 "{}" "$pkgdir/usr/share/man/man5/{}" \;
+  find . -type f -name '*.7' -exec install -D -m644 "{}" "$pkgdir/usr/share/man/man7/{}" \;
+}

Copied: lxc/repos/community-staging-i686/lxc-auto.service (from rev 201524, lxc/trunk/lxc-auto.service)
===================================================================
--- community-staging-i686/lxc-auto.service	                        (rev 0)
+++ community-staging-i686/lxc-auto.service	2016-12-24 15:21:29 UTC (rev 201525)
@@ -0,0 +1,13 @@
+[Unit]
+Description=Autostart LXC Container
+After=network.target
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/lxc-autostart
+ExecStop=/usr/bin/lxc-autostart -s
+Delegate=true
+TasksMax=32768
+
+[Install]
+WantedBy=multi-user.target

Copied: lxc/repos/community-staging-i686/lxc.service (from rev 201524, lxc/trunk/lxc.service)
===================================================================
--- community-staging-i686/lxc.service	                        (rev 0)
+++ community-staging-i686/lxc.service	2016-12-24 15:21:29 UTC (rev 201525)
@@ -0,0 +1,13 @@
+[Unit]
+Description=%i LXC
+After=network.target
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/lxc-start -d -n %i
+ExecStop=/usr/bin/lxc-stop -n %i
+Delegate=true
+TasksMax=32768
+
+[Install]
+WantedBy=multi-user.target

Copied: lxc/repos/community-staging-i686/lxc.tmpfiles.d (from rev 201524, lxc/trunk/lxc.tmpfiles.d)
===================================================================
--- community-staging-i686/lxc.tmpfiles.d	                        (rev 0)
+++ community-staging-i686/lxc.tmpfiles.d	2016-12-24 15:21:29 UTC (rev 201525)
@@ -0,0 +1 @@
+w /sys/fs/cgroup/memory/memory.use_hierarchy - - - - 1

Copied: lxc/repos/community-staging-x86_64/PKGBUILD (from rev 201524, lxc/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2016-12-24 15:21:29 UTC (rev 201525)
@@ -0,0 +1,87 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Contributor: Andrea Zucchelli <zukka77 at gmail.com>
+# Contributor: Daniel Micay <danielmicay at gmail.com>
+# Contributor: Jonathan Liu <net147 at gmail.com>
+# Contributor: Jon Nordby <jononor at gmail.com>
+
+pkgname=lxc
+epoch=1
+pkgver=2.0.6
+pkgrel=3
+pkgdesc="Linux Containers"
+arch=('i686' 'x86_64')
+url="http://linuxcontainers.org"
+depends=('bash' 'perl' 'libseccomp' 'libcap' 'python' 'cgmanager' 'rsync')
+makedepends=('docbook2x' 'lua')
+optdepends=('arch-install-scripts: for archlinux template'
+	    'dnsmasq: lxc-net.service'
+	    'lua'
+	    'lua-filesystem: lxc-top'
+	    'lua-alt-getopt: lxc-top')
+license=('LGPL')
+options=('emptydirs')
+backup=('etc/lxc/default.conf'
+	'etc/default/lxc')
+validpgpkeys=('602F567663E593BCBD14F338C638974D64792D67')
+source=("https://linuxcontainers.org/downloads/$pkgname-${pkgver}.tar.gz"{,.asc}
+	"lxc.tmpfiles.d"
+	"lxc.service"
+	"lxc-auto.service")
+sha256sums=('7c292cd0055dac1a0e6fbb6a7740fd12b6ffb204603c198faf37c11c9d6dcd7a'
+            'SKIP'
+            '10e4f661872f773bf3122a2f9f2cb13344fea86a4ab72beecb4213be4325c479'
+            '711fb84c87b143cb0098e095fdebb040b15f553a854efbe846a00100bdb9ae88'
+            '4174fcc0a664108f1884920930a3dbec0aeceed1fc24f00c200a583c06d447d0')
+
+prepare() {
+  cd "$srcdir/$pkgname-${pkgver/_/-}"
+  sed -i \
+    -e 's|"\\"-//Davenport//DTD DocBook V3.0//EN\\""|"\\"-//OASIS//DTD DocBook XML\\" \\"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd\\""|' \
+    configure.ac
+  sed -i \
+    -e 's|$(sysconfdir)/bash_completion.d/|/usr/share/bash-completion/completions/|g' \
+    config/bash/Makefile.am
+  sed -i \
+    -e 's|\${prefix}/||g' \
+    lxc.pc.in
+  sed -i \
+    -e "s|name='_lxc'|name='lxc'|" \
+    src/python-lxc/setup.py.in
+}
+
+build() {
+  cd "$srcdir/$pkgname-${pkgver/_/-}"
+  ./autogen.sh
+  ./configure \
+    --prefix=/usr \
+    --sbindir=/usr/bin \
+    --localstatedir=/var \
+    --libexecdir=/usr/lib \
+    --libdir=/usr/lib \
+    --sysconfdir=/etc \
+    --disable-apparmor \
+    --enable-seccomp \
+    --enable-cgmanager \
+    --enable-capabilities \
+    --enable-lua \
+    --with-init-script=systemd \
+    --with-systemdsystemunitdir=/usr/lib/systemd/system
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-${pkgver/_/-}"
+
+  make DESTDIR="$pkgdir" install
+  install -d -m755 "$pkgdir/var/lib/lxc"
+  install -d -m755 "$pkgdir/usr/lib/lxc/rootfs/dev"
+  install -D -m644 "$srcdir"/lxc.service "$pkgdir"/usr/lib/systemd/system/lxc at .service
+  install -D -m644 "$srcdir"/lxc-auto.service "$pkgdir"/usr/lib/systemd/system/lxc-auto.service
+  install -D -m644 "$srcdir"/lxc.tmpfiles.d "$pkgdir"/usr/lib/tmpfiles.d/lxc.conf
+
+  cd doc
+  find . -type f -name '*.1' -exec install -D -m644 "{}" "$pkgdir/usr/share/man/man1/{}" \;
+  find . -type f -name '*.5' -exec install -D -m644 "{}" "$pkgdir/usr/share/man/man5/{}" \;
+  find . -type f -name '*.7' -exec install -D -m644 "{}" "$pkgdir/usr/share/man/man7/{}" \;
+}

Copied: lxc/repos/community-staging-x86_64/lxc-auto.service (from rev 201524, lxc/trunk/lxc-auto.service)
===================================================================
--- community-staging-x86_64/lxc-auto.service	                        (rev 0)
+++ community-staging-x86_64/lxc-auto.service	2016-12-24 15:21:29 UTC (rev 201525)
@@ -0,0 +1,13 @@
+[Unit]
+Description=Autostart LXC Container
+After=network.target
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/lxc-autostart
+ExecStop=/usr/bin/lxc-autostart -s
+Delegate=true
+TasksMax=32768
+
+[Install]
+WantedBy=multi-user.target

Copied: lxc/repos/community-staging-x86_64/lxc.service (from rev 201524, lxc/trunk/lxc.service)
===================================================================
--- community-staging-x86_64/lxc.service	                        (rev 0)
+++ community-staging-x86_64/lxc.service	2016-12-24 15:21:29 UTC (rev 201525)
@@ -0,0 +1,13 @@
+[Unit]
+Description=%i LXC
+After=network.target
+
+[Service]
+Type=forking
+ExecStart=/usr/bin/lxc-start -d -n %i
+ExecStop=/usr/bin/lxc-stop -n %i
+Delegate=true
+TasksMax=32768
+
+[Install]
+WantedBy=multi-user.target

Copied: lxc/repos/community-staging-x86_64/lxc.tmpfiles.d (from rev 201524, lxc/trunk/lxc.tmpfiles.d)
===================================================================
--- community-staging-x86_64/lxc.tmpfiles.d	                        (rev 0)
+++ community-staging-x86_64/lxc.tmpfiles.d	2016-12-24 15:21:29 UTC (rev 201525)
@@ -0,0 +1 @@
+w /sys/fs/cgroup/memory/memory.use_hierarchy - - - - 1



More information about the arch-commits mailing list