[arch-commits] Commit in syslinux/repos/testing-x86_64 (17 files)

2019-04-03 Thread Anatol Pomozov via arch-commits
Date: Wednesday, April 3, 2019 @ 18:42:43
  Author: anatolik
Revision: 349814

archrelease: copy trunk to testing-x86_64

Added:
  syslinux/repos/testing-x86_64/0002-gfxboot-menu-label.patch
(from rev 349813, syslinux/trunk/0002-gfxboot-menu-label.patch)
  syslinux/repos/testing-x86_64/0004-gnu-efi-from-arch.patch
(from rev 349813, syslinux/trunk/0004-gnu-efi-from-arch.patch)
  syslinux/repos/testing-x86_64/0005-gnu-efi-version-compatibility.patch
(from rev 349813, syslinux/trunk/0005-gnu-efi-version-compatibility.patch)
  syslinux/repos/testing-x86_64/0016-strip-gnu-property.patch
(from rev 349813, syslinux/trunk/0016-strip-gnu-property.patch)
  syslinux/repos/testing-x86_64/0017-single-load-segment.patch
(from rev 349813, syslinux/trunk/0017-single-load-segment.patch)
  syslinux/repos/testing-x86_64/0018-prevent-pow-optimization.patch
(from rev 349813, syslinux/trunk/0018-prevent-pow-optimization.patch)
  syslinux/repos/testing-x86_64/PKGBUILD
(from rev 349813, syslinux/trunk/PKGBUILD)
  syslinux/repos/testing-x86_64/syslinux-install_update
(from rev 349813, syslinux/trunk/syslinux-install_update)
  syslinux/repos/testing-x86_64/syslinux.cfg
(from rev 349813, syslinux/trunk/syslinux.cfg)
  syslinux/repos/testing-x86_64/syslinux.install
(from rev 349813, syslinux/trunk/syslinux.install)
Deleted:
  syslinux/repos/testing-x86_64/PKGBUILD
  syslinux/repos/testing-x86_64/prevent-pow-optimization.patch
  syslinux/repos/testing-x86_64/single-load-segment.patch
  syslinux/repos/testing-x86_64/strip_note_section.patch
  syslinux/repos/testing-x86_64/syslinux-install_update
  syslinux/repos/testing-x86_64/syslinux.cfg
  syslinux/repos/testing-x86_64/syslinux.install

--+
 0002-gfxboot-menu-label.patch|   53 +
 0004-gnu-efi-from-arch.patch |   36 +
 0005-gnu-efi-version-compatibility.patch |   25 
 0016-strip-gnu-property.patch|   43 +
 0017-single-load-segment.patch   |  306 +
 0018-prevent-pow-optimization.patch  |   36 +
 PKGBUILD |  202 +++---
 prevent-pow-optimization.patch   |   36 -
 single-load-segment.patch|  304 -
 strip_note_section.patch |   29 
 syslinux-install_update  |  930 ++---
 syslinux.cfg |  156 ++--
 syslinux.install |   64 -
 13 files changed, 1173 insertions(+), 1047 deletions(-)

Copied: syslinux/repos/testing-x86_64/0002-gfxboot-menu-label.patch (from rev 
349813, syslinux/trunk/0002-gfxboot-menu-label.patch)
===
--- 0002-gfxboot-menu-label.patch   (rev 0)
+++ 0002-gfxboot-menu-label.patch   2019-04-03 18:42:43 UTC (rev 349814)
@@ -0,0 +1,53 @@
+From: Colin Watson 
+Date: Wed, 2 Nov 2011 07:57:23 +0100
+Subject: Allow boot entry to start with label instead of menu_label.
+
+menu_ptr->menu_label is human-readable (perhaps even translatable!) text if
+the MENU LABEL command is used, which isn't very convenient at the start of
+a boot entry.  Allow the entry to start with menu_ptr->label (an
+identifier) as an alternative.
+---
+ com32/gfxboot/gfxboot.c | 16 ++--
+ 1 file changed, 10 insertions(+), 6 deletions(-)
+
+diff --git a/com32/gfxboot/gfxboot.c b/com32/gfxboot/gfxboot.c
+index f67132c..4c76a35 100644
+--- a/com32/gfxboot/gfxboot.c
 b/com32/gfxboot/gfxboot.c
+@@ -818,7 +818,7 @@ void boot(int index)
+ {
+   char *arg, *alt_kernel;
+   menu_t *menu_ptr;
+-  int i, label_len;
++  int i, label_len, menu_label_len;
+   unsigned ipapp;
+   const struct syslinux_ipappend_strings *ipappend;
+   char *gfxboot_cwd = (char *) gfx_config.gfxboot_cwd;
+@@ -836,18 +836,22 @@ void boot(int index)
+   if(!menu_ptr || !menu_ptr->menu_label) return;
+ 
+   arg = skipspace(cmdline);
+-  label_len = strlen(menu_ptr->menu_label);
++  label_len = strlen(menu_ptr->label);
++  menu_label_len = strlen(menu_ptr->menu_label);
+ 
+   // if it does not start with label string, assume first word is kernel name
+-  if(strncmp(arg, menu_ptr->menu_label, label_len)) {
++  if(!strncmp(arg, menu_ptr->label, label_len)) {
++arg += label_len;
++  }
++  else if(!strncmp(arg, menu_ptr->menu_label, menu_label_len)) {
++arg += menu_label_len;
++  }
++  else {
+ alt_kernel = arg;
+ arg = skip_nonspaces(arg);
+ if(*arg) *arg++ = 0;
+ if(*alt_kernel) menu_ptr->alt_kernel = alt_kernel;
+   }
+-  else {
+-arg += label_len;
+-  }
+ 
+   arg = skipspace(arg);
+ 

Copied: syslinux/repos/testing-x86_64/0004-gnu-efi-from-arch.patch (from rev 
349813, syslinux/trunk/0004-gnu-efi-from-arch.patch)
===
--- 0004-gnu-efi-from-arch.patch(rev 0)
+++ 0004-gnu-efi-from-arch.patch2019-04-03 18:42:43 

[arch-commits] Commit in syslinux/repos/testing-x86_64 (12 files)

2019-01-10 Thread Anatol Pomozov via arch-commits
Date: Thursday, January 10, 2019 @ 17:31:04
  Author: anatolik
Revision: 343519

archrelease: copy trunk to testing-x86_64

Added:
  syslinux/repos/testing-x86_64/PKGBUILD
(from rev 343518, syslinux/trunk/PKGBUILD)
  syslinux/repos/testing-x86_64/single-load-segment.patch
(from rev 343518, syslinux/trunk/single-load-segment.patch)
  syslinux/repos/testing-x86_64/strip_note_section.patch
(from rev 343518, syslinux/trunk/strip_note_section.patch)
  syslinux/repos/testing-x86_64/syslinux-install_update
(from rev 343518, syslinux/trunk/syslinux-install_update)
  syslinux/repos/testing-x86_64/syslinux.cfg
(from rev 343518, syslinux/trunk/syslinux.cfg)
  syslinux/repos/testing-x86_64/syslinux.install
(from rev 343518, syslinux/trunk/syslinux.install)
Deleted:
  syslinux/repos/testing-x86_64/PKGBUILD
  syslinux/repos/testing-x86_64/single-load-segment.patch
  syslinux/repos/testing-x86_64/strip_note_section.patch
  syslinux/repos/testing-x86_64/syslinux-install_update
  syslinux/repos/testing-x86_64/syslinux.cfg
  syslinux/repos/testing-x86_64/syslinux.install

---+
 PKGBUILD  |  191 -
 single-load-segment.patch |  608 ++--
 strip_note_section.patch  |   58 +-
 syslinux-install_update   |  930 ++--
 syslinux.cfg  |  156 +++
 syslinux.install  |   64 +--
 6 files changed, 1006 insertions(+), 1001 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2019-01-10 17:30:23 UTC (rev 343518)
+++ PKGBUILD2019-01-10 17:31:04 UTC (rev 343519)
@@ -1,93 +0,0 @@
-# Maintainer: Tobias Powalowski 
-# Maintainer: Thomas Bächler 
-# Maintainer: Anatol Pomozov 
-# Contributor: Keshav Amburay <(the ddoott ridikulus ddoott rat) (aatt) 
(gemmaeiil) (ddoott) (ccoomm)>
-
-pkgname=syslinux
-pkgver=6.04.alpha
-#_tag=syslinux-$pkgver
-_commit=5e426532210bb830d2d7426eb8d8c154d9dfcba6
-pkgrel=2
-pkgdesc='Collection of boot loaders that boot from FAT, ext2/3/4 and btrfs 
filesystems, from CDs and via PXE'
-url='http://www.syslinux.org/'
-arch=(x86_64)
-backup=(boot/syslinux/syslinux.cfg)
-install=syslinux.install
-license=(GPL2)
-# syslinux build system is a mess of submakes that does not work with -jN
-# efi32/com32 do not like Arch cflags/ldflags, though it would be nice to have 
the flags for userspace tools
-options=(!makeflags !buildflags)
-makedepends=(git python2 nasm upx asciidoc)
-makedepends_x86_64=(lib32-glibc) # efi32 needs it
-optdepends=('perl-crypt-passwdmd5: For md5pass'
-'perl-digest-sha1: For sha1pass'
-'mtools:   For mkdiskimage and syslinux support'
-'gptfdisk: For GPT support'
-'util-linux:   For isohybrid'
-'efibootmgr:   For EFI support'
-'dosfstools:   For EFI support')
-
-# The syslinux-install_update script is maintained at 
https://gist.github.com/pyther/772138
-# Script not yet updated for syslinux-efi
-source=(git+https://repo.or.cz/syslinux.git#commit=$_commit
-syslinux.cfg
-syslinux-install_update
-   strip_note_section.patch
-single-load-segment.patch
-)
-sha1sums=('SKIP'
-  '1145f454bd297d373ad123425f93620c3e92f585'
-  'df5160a138ca8c6502d67fe1a64fec78b50e82c2'
-  '11d928087764ca286af0327d40230f219348568c'
-  '830c88005fb6c9e759f67b91ab33a10b002385de')
-
-_targets='bios efi32'
-case "$CARCH" in
-  x86_64) _targets+=' efi64' ;;
-esac
-
-prepare() {
-  cd syslinux
-
-  # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=906414
-  patch -p1 < ../strip_note_section.patch
-
-  # https://bugs.archlinux.org/task/61059
-  patch -p1 < ../single-load-segment.patch
-
-  # do not swallow efi compilation output to make debugging easier
-  sed 's|> /dev/null 2>&1||' -i efi/check-gnu-efi.sh
-
-  # disable debug and development flags to reduce bootloader size
-  truncate --size 0 mk/devel.mk
-}
-
-build() {
-  cd syslinux
-  export LDFLAGS+=--no-dynamic-linker  # workaround for binutils 2.28 
http://www.syslinux.org/wiki/index.php?title=Building
-  export EXTRA_CFLAGS=-fno-PIE   # to fix gpxe build
-  make PYTHON=python2 $_targets
-}
-
-check() {
-  cd syslinux
-  # tests fail to compile
-  # make unittest
-  true
-}
-
-package() {
-  cd syslinux
-  make $_targets install INSTALLROOT="$pkgdir" SBINDIR=/usr/bin 
MANDIR=/usr/share/man AUXDIR=/usr/lib/syslinux
-
-  rm -r "$pkgdir"/usr/lib/syslinux/{com32,dosutil,syslinux.com}
-  install -D -m644 COPYING "$pkgdir"/usr/share/licenses/syslinux/COPYING
-  install -d "$pkgdir"/usr/share/doc
-  cp -ar doc "$pkgdir"/usr/share/doc/syslinux
-
-  install -d "$pkgdir"/usr/lib/syslinux/bios
-  mv "$pkgdir"/usr/lib/syslinux/{*.bin,*.c32,*.0,memdisk} 
"$pkgdir"/usr/lib/syslinux/bios 
-
-  install -D -m0644 ../syslinux.cfg "$pkgdir"/boot/syslinux/syslinux.cfg
-  install -D -m0755 

[arch-commits] Commit in syslinux/repos/testing-x86_64 (11 files)

2018-12-21 Thread Anatol Pomozov via arch-commits
Date: Friday, December 21, 2018 @ 17:05:23
  Author: anatolik
Revision: 342649

archrelease: copy trunk to testing-x86_64

Added:
  syslinux/repos/testing-x86_64/PKGBUILD
(from rev 342648, syslinux/trunk/PKGBUILD)
  syslinux/repos/testing-x86_64/single-load-segment.patch
(from rev 342648, syslinux/trunk/single-load-segment.patch)
  syslinux/repos/testing-x86_64/strip_note_section.patch
(from rev 342648, syslinux/trunk/strip_note_section.patch)
  syslinux/repos/testing-x86_64/syslinux-install_update
(from rev 342648, syslinux/trunk/syslinux-install_update)
  syslinux/repos/testing-x86_64/syslinux.cfg
(from rev 342648, syslinux/trunk/syslinux.cfg)
  syslinux/repos/testing-x86_64/syslinux.install
(from rev 342648, syslinux/trunk/syslinux.install)
Deleted:
  syslinux/repos/testing-x86_64/PKGBUILD
  syslinux/repos/testing-x86_64/strip_note_section.patch
  syslinux/repos/testing-x86_64/syslinux-install_update
  syslinux/repos/testing-x86_64/syslinux.cfg
  syslinux/repos/testing-x86_64/syslinux.install

---+
 PKGBUILD  |  181 
 single-load-segment.patch |  304 ++
 strip_note_section.patch  |   58 +-
 syslinux-install_update   |  930 ++--
 syslinux.cfg  |  156 +++
 syslinux.install  |   64 +--
 6 files changed, 1001 insertions(+), 692 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-12-21 17:04:38 UTC (rev 342648)
+++ PKGBUILD2018-12-21 17:05:23 UTC (rev 342649)
@@ -1,88 +0,0 @@
-# Maintainer: Tobias Powalowski 
-# Maintainer: Thomas Bächler 
-# Maintainer: Anatol Pomozov 
-# Contributor: Keshav Amburay <(the ddoott ridikulus ddoott rat) (aatt) 
(gemmaeiil) (ddoott) (ccoomm)>
-
-pkgname=syslinux
-pkgver=6.04.alpha
-#_tag=syslinux-$pkgver
-_commit=5e426532210bb830d2d7426eb8d8c154d9dfcba6
-pkgrel=1
-pkgdesc='Collection of boot loaders that boot from FAT, ext2/3/4 and btrfs 
filesystems, from CDs and via PXE'
-url='http://www.syslinux.org/'
-arch=(x86_64)
-backup=(boot/syslinux/syslinux.cfg)
-install=syslinux.install
-license=(GPL2)
-# syslinux build system is a mess of submakes that does not work with -jN
-# efi32/com32 do not like Arch cflags/ldflags, though it would be nice to have 
the flags for userspace tools
-options=(!makeflags !buildflags)
-makedepends=(git python2 nasm upx asciidoc)
-makedepends_x86_64=(lib32-glibc) # efi32 needs it
-optdepends=('perl-crypt-passwdmd5: For md5pass'
-'perl-digest-sha1: For sha1pass'
-'mtools:   For mkdiskimage and syslinux support'
-'gptfdisk: For GPT support'
-'util-linux:   For isohybrid'
-'efibootmgr:   For EFI support'
-'dosfstools:   For EFI support')
-
-# The syslinux-install_update script is maintained at 
https://gist.github.com/pyther/772138
-# Script not yet updated for syslinux-efi
-source=(git://repo.or.cz/syslinux.git#commit=$_commit
-syslinux.cfg
-syslinux-install_update
-   strip_note_section.patch
-)
-sha1sums=('SKIP'
-  '1145f454bd297d373ad123425f93620c3e92f585'
-  'df5160a138ca8c6502d67fe1a64fec78b50e82c2'
-  '11d928087764ca286af0327d40230f219348568c')
-
-_targets='bios efi32'
-case "$CARCH" in
-  x86_64) _targets+=' efi64' ;;
-esac
-
-prepare() {
-  cd syslinux
-
-  # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=906414
-  patch -p1 < ../strip_note_section.patch
-
-  # do not swallow efi compilation output to make debugging easier
-  sed 's|> /dev/null 2>&1||' -i efi/check-gnu-efi.sh
-
-  # disable debug and development flags to reduce bootloader size
-  truncate --size 0 mk/devel.mk
-}
-
-build() {
-  cd syslinux
-  export LDFLAGS+=--no-dynamic-linker  # workaround for binutils 2.28 
http://www.syslinux.org/wiki/index.php?title=Building
-  export EXTRA_CFLAGS=-fno-PIE   # to fix gpxe build
-  make PYTHON=python2 $_targets
-}
-
-check() {
-  cd syslinux
-  # tests fail to compile
-  # make unittest
-  true
-}
-
-package() {
-  cd syslinux
-  make $_targets install INSTALLROOT="$pkgdir" SBINDIR=/usr/bin 
MANDIR=/usr/share/man AUXDIR=/usr/lib/syslinux
-
-  rm -r "$pkgdir"/usr/lib/syslinux/{com32,dosutil,syslinux.com}
-  install -D -m644 COPYING "$pkgdir"/usr/share/licenses/syslinux/COPYING
-  install -d "$pkgdir"/usr/share/doc
-  cp -ar doc "$pkgdir"/usr/share/doc/syslinux
-
-  install -d "$pkgdir"/usr/lib/syslinux/bios
-  mv "$pkgdir"/usr/lib/syslinux/{*.bin,*.c32,*.0,memdisk} 
"$pkgdir"/usr/lib/syslinux/bios 
-
-  install -D -m0644 ../syslinux.cfg "$pkgdir"/boot/syslinux/syslinux.cfg
-  install -D -m0755 ../syslinux-install_update 
"$pkgdir"/usr/bin/syslinux-install_update
-}

Copied: syslinux/repos/testing-x86_64/PKGBUILD (from rev 342648, 
syslinux/trunk/PKGBUILD)
===
--- PKGBUILD

[arch-commits] Commit in syslinux/repos/testing-x86_64 (10 files)

2018-04-07 Thread Anatol Pomozov via arch-commits
Date: Saturday, April 7, 2018 @ 16:57:10
  Author: anatolik
Revision: 321305

archrelease: copy trunk to testing-x86_64

Added:
  syslinux/repos/testing-x86_64/PKGBUILD
(from rev 321304, syslinux/trunk/PKGBUILD)
  syslinux/repos/testing-x86_64/fix_infinite_loop_tests.patch
(from rev 321304, syslinux/trunk/fix_infinite_loop_tests.patch)
  syslinux/repos/testing-x86_64/syslinux-install_update
(from rev 321304, syslinux/trunk/syslinux-install_update)
  syslinux/repos/testing-x86_64/syslinux.cfg
(from rev 321304, syslinux/trunk/syslinux.cfg)
  syslinux/repos/testing-x86_64/syslinux.install
(from rev 321304, syslinux/trunk/syslinux.install)
Deleted:
  syslinux/repos/testing-x86_64/PKGBUILD
  syslinux/repos/testing-x86_64/fix_infinite_loop_tests.patch
  syslinux/repos/testing-x86_64/syslinux-install_update
  syslinux/repos/testing-x86_64/syslinux.cfg
  syslinux/repos/testing-x86_64/syslinux.install

---+
 PKGBUILD  |  242 +-
 fix_infinite_loop_tests.patch |   32 -
 syslinux-install_update   |  935 +++-
 syslinux.cfg  |  156 +++---
 syslinux.install  |   64 +-
 5 files changed, 712 insertions(+), 717 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2018-04-07 16:56:18 UTC (rev 321304)
+++ PKGBUILD2018-04-07 16:57:10 UTC (rev 321305)
@@ -1,121 +0,0 @@
-# Maintainer: Tobias Powalowski 
-# Maintainer: Thomas Bächler 
-# Maintainer: Anatol Pomozov 
-# Contributor: Keshav Amburay <(the ddoott ridikulus ddoott rat) (aatt) 
(gemmaeiil) (ddoott) (ccoomm)>
-
-pkgname=syslinux
-pkgver=6.03
-_tag=syslinux-$pkgver
-pkgrel=9
-pkgdesc='Collection of boot loaders that boot from FAT, ext2/3/4 and btrfs 
filesystems, from CDs and via PXE'
-url='http://www.syslinux.org/'
-arch=(x86_64)
-backup=(boot/syslinux/syslinux.cfg)
-install=syslinux.install
-license=(GPL2)
-# syslinux build system is a mess of submakes that does not work with -jN
-# efi32/com32 do not like Arch cflags/ldflags, though it would be nice to have 
the flags for userspace tools
-options=(!makeflags !buildflags)
-makedepends=(git python2 nasm upx asciidoc)
-makedepends_x86_64=(lib32-glibc) # efi32 needs it
-optdepends=('perl-crypt-passwdmd5: For md5pass'
-'perl-digest-sha1: For sha1pass'
-'mtools:   For mkdiskimage and syslinux support'
-'gptfdisk: For GPT support'
-'util-linux:   For isohybrid'
-'efibootmgr:   For EFI support'
-'dosfstools:   For EFI support')
-
-# The syslinux-install_update script is maintained at 
https://gist.github.com/pyther/772138
-# Script not yet updated for syslinux-efi
-source=(git://git.kernel.org/pub/scm/boot/syslinux/syslinux.git#tag=$_tag
-syslinux.cfg
-syslinux-install_update
-
btrfs-fix.patch::http://repo.or.cz/syslinux.git/patch/548386049cd41e887079cdb904d3954365eb28f3?hp=721a0af2f0ba111c31685c5f6c5481eb25346971
-
gcc-fix-alignment.patch::http://repo.or.cz/syslinux.git/patch/e5f2b577ded109291c9632dacb6eaa621d8a59fe?hp=8dc6d758b564a1ccc44c3ae11f265d43628219ce
-
dont-guess-alignment.patch::http://repo.or.cz/syslinux.git/patch/0cc9a99e560a2f52bcf052fd85b1efae35ee812f?hp=e5f2b577ded109291c9632dacb6eaa621d8a59fe
-
kdb-230.patch::http://repo.or.cz/syslinux.git/patch/138e850fab106b5235178848b3e0d33e25f4d3a2
-correct_base_type.patch::http://repo.or.cz/syslinux.git/patch/83aad4f
-set_mode_base.patch::http://repo.or.cz/syslinux.git/patch/0a2dbb3
-
fix_return_pointer.patch::http://repo.or.cz/syslinux.git/patch/8dc6d758b564a1ccc44c3ae11f265d43628219ce
-
support-ext4-64bit.patch::http://repo.or.cz/syslinux.git/patch/af7e95c32cea40c1e443ae301e64b27f068b4915
-fix_infinite_loop_tests.patch
-)
-sha1sums=('SKIP'
-  '1145f454bd297d373ad123425f93620c3e92f585'
-  '6bf38a8de1891ba3fbea27ef73cc4a8047c1b6c7'
-  '6ebf77bf028c928a6ef33dadeee7402b3113b6d3'
-  'eaa9f5cd82b501f076ece4812d2d37f49d02caae'
-  'c6a6e96e233b2f8105503725cd614abc1bac2845'
-  'f50e0a92c65536ef73a84614d489e52d9d1db329'
-  'e24bf5b1617bab4a3f46925c5a8ee6079f4686bf'
-  '500c174fce91133d40024b28f6f5cedb144b84c2'
-  'b3d2196aaec154749c5b796c6d9bfd605a918cf8'
-  'fe3ab41235aa57259bb6af8cc30c5877c1d8fb57'
-  '7ecb02550666dfafeb0b22a67dcc34caa4b79767')
-
-_targets='bios efi32'
-case "$CARCH" in
-  x86_64) _targets+=' efi64' ;;
-esac
-
-prepare() {
-  cd syslinux
-
-  # FS#48253
-  patch -p1 < ../gcc-fix-alignment.patch
-  patch -p1 < ../dont-guess-alignment.patch
-
-  # FS#48214
-  patch -p1 < ../btrfs-fix.patch
-
-  # FS#49046
-  patch -p1 < ../kdb-230.patch
-
-  # FS#53083
-  patch -p1 < 

[arch-commits] Commit in syslinux/repos (testing-x86_64)

2012-12-08 Thread Andrea Scarpino
Date: Saturday, December 8, 2012 @ 08:08:04
  Author: andrea
Revision: 173005

db-remove: syslinux removed by andrea

Deleted:
  syslinux/repos/testing-x86_64/



[arch-commits] Commit in syslinux/repos (testing-x86_64)

2012-08-08 Thread Evangelos Foutras
Date: Wednesday, August 8, 2012 @ 15:24:11
  Author: foutrelis
Revision: 165012

db-remove: syslinux removed by foutrelis

Deleted:
  syslinux/repos/testing-x86_64/



[arch-commits] Commit in syslinux/repos (testing-x86_64)

2011-08-02 Thread Ionut Biru
Date: Tuesday, August 2, 2011 @ 10:27:51
  Author: ibiru
Revision: 134208

archrelease: copy trunk to testing-x86_64

Added:
  syslinux/repos/testing-x86_64/



[arch-commits] Commit in syslinux/repos (testing-x86_64)

2011-03-06 Thread Thomas Bächler
Date: Sunday, March 6, 2011 @ 11:25:31
  Author: thomas
Revision: 112770

archrelease: remove testing-x86_64

Deleted:
  syslinux/repos/testing-x86_64/



[arch-commits] Commit in syslinux/repos (testing-x86_64)

2011-03-06 Thread Thomas Bächler
Date: Sunday, March 6, 2011 @ 11:25:40
  Author: thomas
Revision: 112771

archrelease: copy trunk to testing-x86_64

Added:
  syslinux/repos/testing-x86_64/



[arch-commits] Commit in syslinux/repos (testing-x86_64)

2011-02-27 Thread Thomas Bächler
Date: Sunday, February 27, 2011 @ 10:16:44
  Author: thomas
Revision: 111549

archrelease: remove testing-x86_64

Deleted:
  syslinux/repos/testing-x86_64/



[arch-commits] Commit in syslinux/repos (testing-x86_64)

2011-02-27 Thread Thomas Bächler
Date: Sunday, February 27, 2011 @ 10:16:54
  Author: thomas
Revision: 111550

archrelease: copy trunk to testing-x86_64

Added:
  syslinux/repos/testing-x86_64/



[arch-commits] Commit in syslinux/repos (testing-x86_64)

2011-01-09 Thread Thomas Bächler
Date: Sunday, January 9, 2011 @ 10:19:42
  Author: thomas
Revision: 105499

archrelease: copy trunk to testing-x86_64

Added:
  syslinux/repos/testing-x86_64/



[arch-commits] Commit in syslinux/repos (testing-x86_64)

2010-06-28 Thread Thomas Bächler
Date: Monday, June 28, 2010 @ 18:46:33
  Author: thomas
Revision: 84303

db-remove: syslinux removed by thomas

Deleted:
  syslinux/repos/testing-x86_64/



[arch-commits] Commit in syslinux/repos (testing-x86_64)

2010-06-26 Thread Thomas Bächler
Date: Saturday, June 26, 2010 @ 16:48:39
  Author: thomas
Revision: 84159

archrelease: remove testing-x86_64

Deleted:
  syslinux/repos/testing-x86_64/



[arch-commits] Commit in syslinux/repos (testing-x86_64)

2010-06-20 Thread Thomas Bächler
Date: Sunday, June 20, 2010 @ 11:44:04
  Author: thomas
Revision: 83006

archrelease: remove testing-x86_64

Deleted:
  syslinux/repos/testing-x86_64/



[arch-commits] Commit in syslinux/repos (testing-x86_64)

2010-06-20 Thread Thomas Bächler
Date: Sunday, June 20, 2010 @ 11:44:10
  Author: thomas
Revision: 83007

archrelease: copy trunk to testing-x86_64

Added:
  syslinux/repos/testing-x86_64/



[arch-commits] Commit in syslinux/repos (testing-x86_64)

2010-06-02 Thread Thomas Bächler
Date: Wednesday, June 2, 2010 @ 18:14:34
  Author: thomas
Revision: 81759

archrelease: copy trunk to testing-x86_64

Added:
  syslinux/repos/testing-x86_64/