Date: Saturday, December 5, 2015 @ 09:06:42
  Author: lfleischer
Revision: 252373

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

Added:
  libbsd/repos/extra-i686/PKGBUILD
    (from rev 252372, libbsd/trunk/PKGBUILD)
  libbsd/repos/extra-x86_64/PKGBUILD
    (from rev 252372, libbsd/trunk/PKGBUILD)
Deleted:
  libbsd/repos/extra-i686/PKGBUILD
  libbsd/repos/extra-i686/spt.patch
  libbsd/repos/extra-x86_64/PKGBUILD
  libbsd/repos/extra-x86_64/spt.patch

------------------------+
 /PKGBUILD              |   74 +++++++++++++++++++++++++++++++++++++++++++++++
 extra-i686/PKGBUILD    |   39 ------------------------
 extra-i686/spt.patch   |   50 -------------------------------
 extra-x86_64/PKGBUILD  |   39 ------------------------
 extra-x86_64/spt.patch |   50 -------------------------------
 5 files changed, 74 insertions(+), 178 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD 2015-12-05 08:06:13 UTC (rev 252372)
+++ extra-i686/PKGBUILD 2015-12-05 08:06:42 UTC (rev 252373)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase <[email protected]>
-# Contributor: Gerardo Exequiel Pozzi <[email protected]>
-
-pkgname=libbsd
-pkgver=0.7.0
-pkgrel=1
-pkgdesc="Provides useful functions commonly found on BSD systems like 
strlcpy()"
-arch=('i686' 'x86_64')
-url="http://libbsd.freedesktop.org";
-license=('custom')
-depends=('glibc')
-options=('staticlibs')
-source=("http://libbsd.freedesktop.org/releases/$pkgname-$pkgver.tar.xz"{,.asc})
-md5sums=('fcceb4e66fd448ca4ed42ba22a8babb0'
-         'SKIP')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-
-  make check
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-  rm "${pkgdir}"/usr/lib/libbsd.a
-  install -D -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: libbsd/repos/extra-i686/PKGBUILD (from rev 252372, 
libbsd/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD                         (rev 0)
+++ extra-i686/PKGBUILD 2015-12-05 08:06:42 UTC (rev 252373)
@@ -0,0 +1,37 @@
+# Maintainer: Lukas Fleischer <[email protected]>
+# Contributor: Sven-Hendrik Haase <[email protected]>
+# Contributor: Gerardo Exequiel Pozzi <[email protected]>
+
+pkgname=libbsd
+pkgver=0.8.0
+pkgrel=1
+pkgdesc='Provides useful functions commonly found on BSD systems like 
strlcpy()'
+arch=('i686' 'x86_64')
+url="http://libbsd.freedesktop.org";
+license=('custom')
+depends=('glibc')
+options=('staticlibs')
+source=("http://libbsd.freedesktop.org/releases/$pkgname-$pkgver.tar.xz"{,.asc})
+md5sums=('262bdd1aa3bee6066a8c9cb49bb6c584'
+         'SKIP')
+validpgpkeys=('4F3E74F436050C10F5696574B972BF3EA4AE57A3') # Guillem Jover
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  make check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  rm "${pkgdir}"/usr/lib/libbsd.a
+  install -D -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: extra-i686/spt.patch
===================================================================
--- extra-i686/spt.patch        2015-12-05 08:06:13 UTC (rev 252372)
+++ extra-i686/spt.patch        2015-12-05 08:06:42 UTC (rev 252373)
@@ -1,50 +0,0 @@
-diff -u -r libbsd-0.5.2-orig/src/setproctitle.c libbsd-0.5.2/src/setproctitle.c
---- libbsd-0.5.2-orig/src/setproctitle.c       2013-06-08 18:26:04.000000000 
+0200
-+++ libbsd-0.5.2/src/setproctitle.c    2013-06-18 02:35:59.441393418 +0200
-@@ -86,7 +86,7 @@
-       if (environ != envp)
-               return 0;
- 
--      /* Make a copy of the old environ array of pointers, in case
-+      /* Make a deep copy of the old environ array of pointers, in case
-        * clearenv() or setenv() is implemented to free the internal
-        * environ array, because we will need to access the old environ
-        * contents to make the new copy. */
-@@ -94,11 +94,13 @@
-       envcopy = malloc(envsize);
-       if (envcopy == NULL)
-               return errno;
--      memcpy(envcopy, envp, envsize);
-+      for (i = 0; envp[i]; i++) envcopy[i] = strdup(envp[i]);
-+      envcopy[i] = NULL;
- 
-       error = spt_clearenv();
-       if (error) {
-               environ = envp;
-+              for(i = 0; envcopy[i]; i++) free(envcopy[i]);
-               free(envcopy);
-               return error;
-       }
-@@ -116,18 +118,20 @@
-               if (error) {
- #ifdef HAVE_CLEARENV
-                       /* Because the old environ might not be available
--                       * anymore we will make do with the shallow copy. */
-+                       * anymore we will make do with the deep copy. */
-                       environ = envcopy;
- #else
-                       environ = envp;
-+                      for(i = 0; envcopy[i]; i++) free(envcopy[i]);
-                       free(envcopy);
- #endif
-                       return error;
-               }
-       }
- 
--      /* Dispose of the shallow copy, now that we've finished transfering
-+      /* Dispose of the deep copy, now that we've finished transfering
-        * the old environment. */
-+      for(i = 0; envcopy[i]; i++) free(envcopy[i]);
-       free(envcopy);
- 
-       return 0;

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD       2015-12-05 08:06:13 UTC (rev 252372)
+++ extra-x86_64/PKGBUILD       2015-12-05 08:06:42 UTC (rev 252373)
@@ -1,39 +0,0 @@
-# $Id$
-# Maintainer: Sven-Hendrik Haase <[email protected]>
-# Contributor: Gerardo Exequiel Pozzi <[email protected]>
-
-pkgname=libbsd
-pkgver=0.7.0
-pkgrel=1
-pkgdesc="Provides useful functions commonly found on BSD systems like 
strlcpy()"
-arch=('i686' 'x86_64')
-url="http://libbsd.freedesktop.org";
-license=('custom')
-depends=('glibc')
-options=('staticlibs')
-source=("http://libbsd.freedesktop.org/releases/$pkgname-$pkgver.tar.xz"{,.asc})
-md5sums=('fcceb4e66fd448ca4ed42ba22a8babb0'
-         'SKIP')
-
-build() {
-  cd "$pkgname-$pkgver"
-
-  ./configure --prefix=/usr
-  make
-}
-
-check() {
-  cd "$pkgname-$pkgver"
-
-  make check
-}
-
-package() {
-  cd "$pkgname-$pkgver"
-
-  make DESTDIR="$pkgdir" install
-  rm "${pkgdir}"/usr/lib/libbsd.a
-  install -D -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
-
-# vim:set ts=2 sw=2 et:

Copied: libbsd/repos/extra-x86_64/PKGBUILD (from rev 252372, 
libbsd/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD                               (rev 0)
+++ extra-x86_64/PKGBUILD       2015-12-05 08:06:42 UTC (rev 252373)
@@ -0,0 +1,37 @@
+# Maintainer: Lukas Fleischer <[email protected]>
+# Contributor: Sven-Hendrik Haase <[email protected]>
+# Contributor: Gerardo Exequiel Pozzi <[email protected]>
+
+pkgname=libbsd
+pkgver=0.8.0
+pkgrel=1
+pkgdesc='Provides useful functions commonly found on BSD systems like 
strlcpy()'
+arch=('i686' 'x86_64')
+url="http://libbsd.freedesktop.org";
+license=('custom')
+depends=('glibc')
+options=('staticlibs')
+source=("http://libbsd.freedesktop.org/releases/$pkgname-$pkgver.tar.xz"{,.asc})
+md5sums=('262bdd1aa3bee6066a8c9cb49bb6c584'
+         'SKIP')
+validpgpkeys=('4F3E74F436050C10F5696574B972BF3EA4AE57A3') # Guillem Jover
+
+build() {
+  cd "$pkgname-$pkgver"
+
+  ./configure --prefix=/usr
+  make
+}
+
+check() {
+  cd "$pkgname-$pkgver"
+  make check
+}
+
+package() {
+  cd "$pkgname-$pkgver"
+
+  make DESTDIR="$pkgdir" install
+  rm "${pkgdir}"/usr/lib/libbsd.a
+  install -D -m644 COPYING "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}

Deleted: extra-x86_64/spt.patch
===================================================================
--- extra-x86_64/spt.patch      2015-12-05 08:06:13 UTC (rev 252372)
+++ extra-x86_64/spt.patch      2015-12-05 08:06:42 UTC (rev 252373)
@@ -1,50 +0,0 @@
-diff -u -r libbsd-0.5.2-orig/src/setproctitle.c libbsd-0.5.2/src/setproctitle.c
---- libbsd-0.5.2-orig/src/setproctitle.c       2013-06-08 18:26:04.000000000 
+0200
-+++ libbsd-0.5.2/src/setproctitle.c    2013-06-18 02:35:59.441393418 +0200
-@@ -86,7 +86,7 @@
-       if (environ != envp)
-               return 0;
- 
--      /* Make a copy of the old environ array of pointers, in case
-+      /* Make a deep copy of the old environ array of pointers, in case
-        * clearenv() or setenv() is implemented to free the internal
-        * environ array, because we will need to access the old environ
-        * contents to make the new copy. */
-@@ -94,11 +94,13 @@
-       envcopy = malloc(envsize);
-       if (envcopy == NULL)
-               return errno;
--      memcpy(envcopy, envp, envsize);
-+      for (i = 0; envp[i]; i++) envcopy[i] = strdup(envp[i]);
-+      envcopy[i] = NULL;
- 
-       error = spt_clearenv();
-       if (error) {
-               environ = envp;
-+              for(i = 0; envcopy[i]; i++) free(envcopy[i]);
-               free(envcopy);
-               return error;
-       }
-@@ -116,18 +118,20 @@
-               if (error) {
- #ifdef HAVE_CLEARENV
-                       /* Because the old environ might not be available
--                       * anymore we will make do with the shallow copy. */
-+                       * anymore we will make do with the deep copy. */
-                       environ = envcopy;
- #else
-                       environ = envp;
-+                      for(i = 0; envcopy[i]; i++) free(envcopy[i]);
-                       free(envcopy);
- #endif
-                       return error;
-               }
-       }
- 
--      /* Dispose of the shallow copy, now that we've finished transfering
-+      /* Dispose of the deep copy, now that we've finished transfering
-        * the old environment. */
-+      for(i = 0; envcopy[i]; i++) free(envcopy[i]);
-       free(envcopy);
- 
-       return 0;

Reply via email to