[arch-commits] Commit in dosfstools/repos (6 files)

Tobias Powalowski tpowa at nymeria.archlinux.org
Wed Jun 12 07:10:04 UTC 2013


    Date: Wednesday, June 12, 2013 @ 09:10:04
  Author: tpowa
Revision: 188188

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

Added:
  dosfstools/repos/testing-i686/PKGBUILD
    (from rev 188187, dosfstools/trunk/PKGBUILD)
  dosfstools/repos/testing-x86_64/PKGBUILD
    (from rev 188187, dosfstools/trunk/PKGBUILD)
Deleted:
  dosfstools/repos/testing-i686/3.0.18-use-memcpy-instead-of-strcpy.patch
  dosfstools/repos/testing-i686/PKGBUILD
  dosfstools/repos/testing-x86_64/3.0.18-use-memcpy-instead-of-strcpy.patch
  dosfstools/repos/testing-x86_64/PKGBUILD

----------------------------------------------------------+
 /PKGBUILD                                                |   48 +++++++++++++
 testing-i686/3.0.18-use-memcpy-instead-of-strcpy.patch   |   15 ----
 testing-i686/PKGBUILD                                    |   30 --------
 testing-x86_64/3.0.18-use-memcpy-instead-of-strcpy.patch |   15 ----
 testing-x86_64/PKGBUILD                                  |   30 --------
 5 files changed, 48 insertions(+), 90 deletions(-)

Deleted: testing-i686/3.0.18-use-memcpy-instead-of-strcpy.patch
===================================================================
--- testing-i686/3.0.18-use-memcpy-instead-of-strcpy.patch	2013-06-12 07:09:49 UTC (rev 188187)
+++ testing-i686/3.0.18-use-memcpy-instead-of-strcpy.patch	2013-06-12 07:10:04 UTC (rev 188188)
@@ -1,15 +0,0 @@
---- src/mkfs.fat.c.old	2013-06-09 12:30:43.626408604 -0400
-+++ src/mkfs.fat.c	2013-06-09 12:30:28.306756934 -0400
-@@ -743,10 +743,10 @@
- 	 * differently: The jump code is only 2 bytes (and m68k machine code
- 	 * :-), then 6 bytes filler (ignored), then 3 byte serial number. */
- 	bs.boot_jump[2] = 'm';
--	strcpy((char *)bs.system_id, "kdosf");
-+	memcpy((char *)bs.system_id, "kdosf", strlen("kdosf"));
-     }
-     else
--	strcpy((char *)bs.system_id, "mkfs.fat");
-+	memcpy((char *)bs.system_id, "mkfs.fat", strlen("mkfs.fat"));
-     if (sectors_per_cluster)
- 	bs.cluster_size = (char)sectors_per_cluster;
-     if (size_fat == 32) {

Deleted: testing-i686/PKGBUILD
===================================================================
--- testing-i686/PKGBUILD	2013-06-12 07:09:49 UTC (rev 188187)
+++ testing-i686/PKGBUILD	2013-06-12 07:10:04 UTC (rev 188188)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: dorphell <dorphell at archlinux.org>
-# Committer: Judd Vinet <jvinet at zeroflux.org>
-pkgname=dosfstools
-pkgver=3.0.18
-pkgrel=2
-pkgdesc="DOS filesystem utilities"
-arch=(i686 x86_64)
-depends=('glibc')
-source=(http://www.daniel-baumann.ch/files/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig}
-        3.0.18-use-memcpy-instead-of-strcpy.patch)
-url="http://www.daniel-baumann.ch/software/dosfstools/"
-license=('GPL2')
-
-prepare() {
-   cd $srcdir/$pkgname-$pkgver
-   patch -Np0 -i ../3.0.18-use-memcpy-instead-of-strcpy.patch
-}
-build() {
-   cd $srcdir/$pkgname-$pkgver
-   make
-}
-
-package () {
-   cd $srcdir/$pkgname-$pkgver
-   make DESTDIR=$pkgdir PREFIX=/usr SBINDIR=/usr/bin MANDIR=/usr/share/man DOCDIR=/usr/share/doc install
-}
-md5sums=('a80aab6aac9e56e937b0392a85bfadb9'
-         'SKIP'
-         '771cf771aadce6ab0b1c9944bf535011')

Copied: dosfstools/repos/testing-i686/PKGBUILD (from rev 188187, dosfstools/trunk/PKGBUILD)
===================================================================
--- testing-i686/PKGBUILD	                        (rev 0)
+++ testing-i686/PKGBUILD	2013-06-12 07:10:04 UTC (rev 188188)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: dorphell <dorphell at archlinux.org>
+# Committer: Judd Vinet <jvinet at zeroflux.org>
+pkgname=dosfstools
+pkgver=3.0.19
+pkgrel=1
+pkgdesc="DOS filesystem utilities"
+arch=(i686 x86_64)
+depends=('glibc')
+source=(http://www.daniel-baumann.ch/files/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+url="http://www.daniel-baumann.ch/software/dosfstools/"
+license=('GPL2')
+md5sums=('a083ca4a2a937c8cec07c63176fb125f'
+         'SKIP')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+   make
+}
+
+package () {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir PREFIX=/usr SBINDIR=/usr/bin MANDIR=/usr/share/man DOCDIR=/usr/share/doc install
+}

Deleted: testing-x86_64/3.0.18-use-memcpy-instead-of-strcpy.patch
===================================================================
--- testing-x86_64/3.0.18-use-memcpy-instead-of-strcpy.patch	2013-06-12 07:09:49 UTC (rev 188187)
+++ testing-x86_64/3.0.18-use-memcpy-instead-of-strcpy.patch	2013-06-12 07:10:04 UTC (rev 188188)
@@ -1,15 +0,0 @@
---- src/mkfs.fat.c.old	2013-06-09 12:30:43.626408604 -0400
-+++ src/mkfs.fat.c	2013-06-09 12:30:28.306756934 -0400
-@@ -743,10 +743,10 @@
- 	 * differently: The jump code is only 2 bytes (and m68k machine code
- 	 * :-), then 6 bytes filler (ignored), then 3 byte serial number. */
- 	bs.boot_jump[2] = 'm';
--	strcpy((char *)bs.system_id, "kdosf");
-+	memcpy((char *)bs.system_id, "kdosf", strlen("kdosf"));
-     }
-     else
--	strcpy((char *)bs.system_id, "mkfs.fat");
-+	memcpy((char *)bs.system_id, "mkfs.fat", strlen("mkfs.fat"));
-     if (sectors_per_cluster)
- 	bs.cluster_size = (char)sectors_per_cluster;
-     if (size_fat == 32) {

Deleted: testing-x86_64/PKGBUILD
===================================================================
--- testing-x86_64/PKGBUILD	2013-06-12 07:09:49 UTC (rev 188187)
+++ testing-x86_64/PKGBUILD	2013-06-12 07:10:04 UTC (rev 188188)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: dorphell <dorphell at archlinux.org>
-# Committer: Judd Vinet <jvinet at zeroflux.org>
-pkgname=dosfstools
-pkgver=3.0.18
-pkgrel=2
-pkgdesc="DOS filesystem utilities"
-arch=(i686 x86_64)
-depends=('glibc')
-source=(http://www.daniel-baumann.ch/files/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig}
-        3.0.18-use-memcpy-instead-of-strcpy.patch)
-url="http://www.daniel-baumann.ch/software/dosfstools/"
-license=('GPL2')
-
-prepare() {
-   cd $srcdir/$pkgname-$pkgver
-   patch -Np0 -i ../3.0.18-use-memcpy-instead-of-strcpy.patch
-}
-build() {
-   cd $srcdir/$pkgname-$pkgver
-   make
-}
-
-package () {
-   cd $srcdir/$pkgname-$pkgver
-   make DESTDIR=$pkgdir PREFIX=/usr SBINDIR=/usr/bin MANDIR=/usr/share/man DOCDIR=/usr/share/doc install
-}
-md5sums=('a80aab6aac9e56e937b0392a85bfadb9'
-         'SKIP'
-         '771cf771aadce6ab0b1c9944bf535011')

Copied: dosfstools/repos/testing-x86_64/PKGBUILD (from rev 188187, dosfstools/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2013-06-12 07:10:04 UTC (rev 188188)
@@ -0,0 +1,24 @@
+# $Id$
+# Maintainer: dorphell <dorphell at archlinux.org>
+# Committer: Judd Vinet <jvinet at zeroflux.org>
+pkgname=dosfstools
+pkgver=3.0.19
+pkgrel=1
+pkgdesc="DOS filesystem utilities"
+arch=(i686 x86_64)
+depends=('glibc')
+source=(http://www.daniel-baumann.ch/files/software/$pkgname/$pkgname-$pkgver.tar.xz{,.sig})
+url="http://www.daniel-baumann.ch/software/dosfstools/"
+license=('GPL2')
+md5sums=('a083ca4a2a937c8cec07c63176fb125f'
+         'SKIP')
+
+build() {
+   cd $srcdir/$pkgname-$pkgver
+   make
+}
+
+package () {
+   cd $srcdir/$pkgname-$pkgver
+   make DESTDIR=$pkgdir PREFIX=/usr SBINDIR=/usr/bin MANDIR=/usr/share/man DOCDIR=/usr/share/doc install
+}




More information about the arch-commits mailing list