Date: Friday, January 24, 2014 @ 15:36:49
  Author: tomegun
Revision: 204649

archrelease: copy trunk to testing-x86_64, testing-i686

Added:
  gummiboot/repos/testing-i686/
  gummiboot/repos/testing-i686/PKGBUILD
    (from rev 204648, gummiboot/trunk/PKGBUILD)
  gummiboot/repos/testing-i686/arch.conf
    (from rev 204648, gummiboot/trunk/arch.conf)
  gummiboot/repos/testing-i686/gummiboot.install
    (from rev 204648, gummiboot/trunk/gummiboot.install)
  gummiboot/repos/testing-i686/loader.conf
    (from rev 204648, gummiboot/trunk/loader.conf)
  gummiboot/repos/testing-i686/splash-arch.bmp
    (from rev 204648, gummiboot/trunk/splash-arch.bmp)
  gummiboot/repos/testing-x86_64/
  gummiboot/repos/testing-x86_64/PKGBUILD
    (from rev 204648, gummiboot/trunk/PKGBUILD)
  gummiboot/repos/testing-x86_64/arch.conf
    (from rev 204648, gummiboot/trunk/arch.conf)
  gummiboot/repos/testing-x86_64/gummiboot.install
    (from rev 204648, gummiboot/trunk/gummiboot.install)
  gummiboot/repos/testing-x86_64/loader.conf
    (from rev 204648, gummiboot/trunk/loader.conf)
  gummiboot/repos/testing-x86_64/splash-arch.bmp
    (from rev 204648, gummiboot/trunk/splash-arch.bmp)

----------------------------------+
 testing-i686/PKGBUILD            |   50 +++++++++++++++++++++++++++++++++++++
 testing-i686/arch.conf           |    7 +++++
 testing-i686/gummiboot.install   |   13 +++++++++
 testing-i686/loader.conf         |    2 +
 testing-x86_64/PKGBUILD          |   50 +++++++++++++++++++++++++++++++++++++
 testing-x86_64/arch.conf         |    7 +++++
 testing-x86_64/gummiboot.install |   13 +++++++++
 testing-x86_64/loader.conf       |    2 +
 8 files changed, 144 insertions(+)

Copied: gummiboot/repos/testing-i686/PKGBUILD (from rev 204648, 
gummiboot/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD                               (rev 0)
+++ testing-i686/PKGBUILD       2014-01-24 14:36:49 UTC (rev 204649)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Tom Gundersen <[email protected]>
+# Contributor: Tobias Powalowski <[email protected]>
+# Contributor: Keshav P R <(the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) 
(ccoomm)>
+# Contributor:  Mantas Mikulėnas <[email protected]>
+
+pkgname="gummiboot"
+pkgver="43"
+pkgrel="1"
+pkgdesc="Simple text-mode UEFI Boot Manager"
+url="http://freedesktop.org/wiki/Software/gummiboot";
+arch=('x86_64' 'i686')
+license=('LGPL2.1')
+makedepends=('gnu-efi-libs' 'docbook-xsl' 'git')
+depends=('util-linux')
+conflicts=('gummiboot-efi')
+provides=('gummiboot-efi')
+replaces=('gummiboot-efi')
+options=('!strip' '!makeflags')
+source=("git://anongit.freedesktop.org/${pkgname}#commit=51950f"
+        'loader.conf'
+        'arch.conf'
+       'splash-arch.bmp')
+install="gummiboot.install"
+md5sums=('SKIP'
+         '6ea803e5179d623716e3be0b636de658'
+         '82bda9612e3a361a74cf8de2a0134b15'
+         '1e2f9a8b0fa32022bf0a8f39123e5f4e')
+
+build() {
+       cd ${srcdir}/${pkgname}
+
+       ./autogen.sh
+       ./configure --sysconfdir=/etc  --with-efi-ldsdir=/usr/lib 
--libexecdir=/usr/lib --libdir=/usr/lib
+       
+       make
+}
+
+package() {
+       ## Install gummiboot example configuration files (can go away with 
systemd's kernel-install)
+       install -D -m0644 "${srcdir}/loader.conf" 
"${pkgdir}/usr/lib/gummiboot/loader/loader.conf"
+       install -D -m0644 "${srcdir}/arch.conf" 
"${pkgdir}/usr/lib/gummiboot/loader/entries/arch.conf"
+
+       ## ship an Arch Linux boot splash (still has to be dropped in manually 
to take effect)
+       install -D -m0644 "${srcdir}/splash-arch.bmp" 
"${pkgdir}/usr/lib/gummiboot/splash-arch.bmp"
+
+       cd ${srcdir}/${pkgname}
+
+       make DESTDIR="${pkgdir}" install
+}

Copied: gummiboot/repos/testing-i686/arch.conf (from rev 204648, 
gummiboot/trunk/arch.conf)
===================================================================
--- testing-i686/arch.conf                              (rev 0)
+++ testing-i686/arch.conf      2014-01-24 14:36:49 UTC (rev 204649)
@@ -0,0 +1,7 @@
+## This is just an exmaple config file.
+## Please edit the paths and kernel parameters according to your system.
+
+title   Arch Linux
+linux   /vmlinuz-linux
+initrd  /initramfs-linux.img
+options root=PARTUUID=XXXX rootfstype=XXXX add_efi_memmap

Copied: gummiboot/repos/testing-i686/gummiboot.install (from rev 204648, 
gummiboot/trunk/gummiboot.install)
===================================================================
--- testing-i686/gummiboot.install                              (rev 0)
+++ testing-i686/gummiboot.install      2014-01-24 14:36:49 UTC (rev 204649)
@@ -0,0 +1,13 @@
+post_install() {
+       mkdir -p /boot/EFI/gummiboot
+       /usr/bin/gummiboot update
+       echo ":: Run '/usr/bin/gummiboot install' to make gummiboot your 
default bootloader"
+}
+
+post_upgrade() {
+       /usr/bin/gummiboot update
+}
+
+pre_remove() {
+       /usr/bin/gummiboot remove
+}

Copied: gummiboot/repos/testing-i686/loader.conf (from rev 204648, 
gummiboot/trunk/loader.conf)
===================================================================
--- testing-i686/loader.conf                            (rev 0)
+++ testing-i686/loader.conf    2014-01-24 14:36:49 UTC (rev 204649)
@@ -0,0 +1,2 @@
+timeout 10
+default arch

Copied: gummiboot/repos/testing-i686/splash-arch.bmp (from rev 204648, 
gummiboot/trunk/splash-arch.bmp)
===================================================================
(Binary files differ)

Copied: gummiboot/repos/testing-x86_64/PKGBUILD (from rev 204648, 
gummiboot/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD                             (rev 0)
+++ testing-x86_64/PKGBUILD     2014-01-24 14:36:49 UTC (rev 204649)
@@ -0,0 +1,50 @@
+# $Id$
+# Maintainer: Tom Gundersen <[email protected]>
+# Contributor: Tobias Powalowski <[email protected]>
+# Contributor: Keshav P R <(the.ridikulus.rat) (aatt) (gemmaeiil) (ddoott) 
(ccoomm)>
+# Contributor:  Mantas Mikulėnas <[email protected]>
+
+pkgname="gummiboot"
+pkgver="43"
+pkgrel="1"
+pkgdesc="Simple text-mode UEFI Boot Manager"
+url="http://freedesktop.org/wiki/Software/gummiboot";
+arch=('x86_64' 'i686')
+license=('LGPL2.1')
+makedepends=('gnu-efi-libs' 'docbook-xsl' 'git')
+depends=('util-linux')
+conflicts=('gummiboot-efi')
+provides=('gummiboot-efi')
+replaces=('gummiboot-efi')
+options=('!strip' '!makeflags')
+source=("git://anongit.freedesktop.org/${pkgname}#commit=51950f"
+        'loader.conf'
+        'arch.conf'
+       'splash-arch.bmp')
+install="gummiboot.install"
+md5sums=('SKIP'
+         '6ea803e5179d623716e3be0b636de658'
+         '82bda9612e3a361a74cf8de2a0134b15'
+         '1e2f9a8b0fa32022bf0a8f39123e5f4e')
+
+build() {
+       cd ${srcdir}/${pkgname}
+
+       ./autogen.sh
+       ./configure --sysconfdir=/etc  --with-efi-ldsdir=/usr/lib 
--libexecdir=/usr/lib --libdir=/usr/lib
+       
+       make
+}
+
+package() {
+       ## Install gummiboot example configuration files (can go away with 
systemd's kernel-install)
+       install -D -m0644 "${srcdir}/loader.conf" 
"${pkgdir}/usr/lib/gummiboot/loader/loader.conf"
+       install -D -m0644 "${srcdir}/arch.conf" 
"${pkgdir}/usr/lib/gummiboot/loader/entries/arch.conf"
+
+       ## ship an Arch Linux boot splash (still has to be dropped in manually 
to take effect)
+       install -D -m0644 "${srcdir}/splash-arch.bmp" 
"${pkgdir}/usr/lib/gummiboot/splash-arch.bmp"
+
+       cd ${srcdir}/${pkgname}
+
+       make DESTDIR="${pkgdir}" install
+}

Copied: gummiboot/repos/testing-x86_64/arch.conf (from rev 204648, 
gummiboot/trunk/arch.conf)
===================================================================
--- testing-x86_64/arch.conf                            (rev 0)
+++ testing-x86_64/arch.conf    2014-01-24 14:36:49 UTC (rev 204649)
@@ -0,0 +1,7 @@
+## This is just an exmaple config file.
+## Please edit the paths and kernel parameters according to your system.
+
+title   Arch Linux
+linux   /vmlinuz-linux
+initrd  /initramfs-linux.img
+options root=PARTUUID=XXXX rootfstype=XXXX add_efi_memmap

Copied: gummiboot/repos/testing-x86_64/gummiboot.install (from rev 204648, 
gummiboot/trunk/gummiboot.install)
===================================================================
--- testing-x86_64/gummiboot.install                            (rev 0)
+++ testing-x86_64/gummiboot.install    2014-01-24 14:36:49 UTC (rev 204649)
@@ -0,0 +1,13 @@
+post_install() {
+       mkdir -p /boot/EFI/gummiboot
+       /usr/bin/gummiboot update
+       echo ":: Run '/usr/bin/gummiboot install' to make gummiboot your 
default bootloader"
+}
+
+post_upgrade() {
+       /usr/bin/gummiboot update
+}
+
+pre_remove() {
+       /usr/bin/gummiboot remove
+}

Copied: gummiboot/repos/testing-x86_64/loader.conf (from rev 204648, 
gummiboot/trunk/loader.conf)
===================================================================
--- testing-x86_64/loader.conf                          (rev 0)
+++ testing-x86_64/loader.conf  2014-01-24 14:36:49 UTC (rev 204649)
@@ -0,0 +1,2 @@
+timeout 10
+default arch

Copied: gummiboot/repos/testing-x86_64/splash-arch.bmp (from rev 204648, 
gummiboot/trunk/splash-arch.bmp)
===================================================================
(Binary files differ)

Reply via email to