[arch-commits] Commit in parcellite/repos (8 files)

Sergej Pupykin spupykin at archlinux.org
Mon Jan 30 11:46:04 UTC 2017


    Date: Monday, January 30, 2017 @ 11:46:03
  Author: spupykin
Revision: 209479

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

Added:
  parcellite/repos/community-i686/PKGBUILD
    (from rev 209478, parcellite/trunk/PKGBUILD)
  parcellite/repos/community-i686/fix-crash.patch
    (from rev 209478, parcellite/trunk/fix-crash.patch)
  parcellite/repos/community-x86_64/PKGBUILD
    (from rev 209478, parcellite/trunk/PKGBUILD)
  parcellite/repos/community-x86_64/fix-crash.patch
    (from rev 209478, parcellite/trunk/fix-crash.patch)
Deleted:
  parcellite/repos/community-i686/PKGBUILD
  parcellite/repos/community-i686/fix-crash.patch
  parcellite/repos/community-x86_64/PKGBUILD
  parcellite/repos/community-x86_64/fix-crash.patch

----------------------------------+
 /PKGBUILD                        |   68 +++++++++++++++++++++++++++++++++++++
 /fix-crash.patch                 |   22 +++++++++++
 community-i686/PKGBUILD          |   34 ------------------
 community-i686/fix-crash.patch   |   11 -----
 community-x86_64/PKGBUILD        |   34 ------------------
 community-x86_64/fix-crash.patch |   11 -----
 6 files changed, 90 insertions(+), 90 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2017-01-30 11:45:48 UTC (rev 209478)
+++ community-i686/PKGBUILD	2017-01-30 11:46:03 UTC (rev 209479)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Maintainer: Alexander Fehr <pizzapunk gmail com>
-
-pkgname=parcellite
-pkgver=1.2.1
-pkgrel=1
-pkgdesc="Lightweight GTK+ clipboard manager"
-arch=('i686' 'x86_64')
-url="http://parcellite.sourceforge.net/"
-license=('GPL3')
-depends=('gtk2')
-makedepends=('intltool')
-optdepends=('xdotool')
-source=(http://downloads.sourceforge.net/parcellite/parcellite-$pkgver.tar.gz
-	fix-crash.patch)
-sha256sums=('aba1c7c56c7607e219ce9855723eefa552c5376982891aefbfb5a2d3297ef046'
-            '8fe1e86958d371c9fa9474fe64b203ed483f636f3f98152237402ea84b2d2cbd')
-
-prepare() {
-  cd "$srcdir/parcellite-$pkgver"
-  patch -Np1 <"$srcdir"/fix-crash.patch
-}
-
-build() {
-  cd "$srcdir/parcellite-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "$srcdir/parcellite-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: parcellite/repos/community-i686/PKGBUILD (from rev 209478, parcellite/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2017-01-30 11:46:03 UTC (rev 209479)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Maintainer: Alexander Fehr <pizzapunk gmail com>
+
+pkgname=parcellite
+pkgver=1.2.1
+pkgrel=2
+pkgdesc="Lightweight GTK+ clipboard manager"
+arch=('i686' 'x86_64')
+url="http://parcellite.sourceforge.net/"
+license=('GPL3')
+depends=('gtk2' 'xdotool')
+makedepends=('intltool')
+optdepends=('xdotool')
+source=(http://downloads.sourceforge.net/parcellite/parcellite-$pkgver.tar.gz
+	fix-crash.patch)
+sha256sums=('aba1c7c56c7607e219ce9855723eefa552c5376982891aefbfb5a2d3297ef046'
+            '8fe1e86958d371c9fa9474fe64b203ed483f636f3f98152237402ea84b2d2cbd')
+
+prepare() {
+  cd "$srcdir/parcellite-$pkgver"
+  patch -Np1 <"$srcdir"/fix-crash.patch
+}
+
+build() {
+  cd "$srcdir/parcellite-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "$srcdir/parcellite-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-i686/fix-crash.patch
===================================================================
--- community-i686/fix-crash.patch	2017-01-30 11:45:48 UTC (rev 209478)
+++ community-i686/fix-crash.patch	2017-01-30 11:46:03 UTC (rev 209479)
@@ -1,11 +0,0 @@
---- a/src/preferences.c.orig	2013-11-11 14:39:32.000000000 +0400
-+++ b/src/preferences.c	2013-11-11 14:40:03.970776522 +0400
-@@ -381,7 +381,7 @@
- 	}	
- 	/**now go through and make sure we have no duplicates */
- 	for (i=0;NULL != keylist[i].name; ++i){
--		if(0 !=  keylist[i].keyval[0]){
-+		if(NULL != keylist[i].keyval && 0 != keylist[i].keyval[0]){
- 			/**see if it exists elsewhere  */
- 			for (l=0;NULL != keylist[l].name; ++l){
- 				if(l!=i && 0 != keylist[l].keyval[0]){

Copied: parcellite/repos/community-i686/fix-crash.patch (from rev 209478, parcellite/trunk/fix-crash.patch)
===================================================================
--- community-i686/fix-crash.patch	                        (rev 0)
+++ community-i686/fix-crash.patch	2017-01-30 11:46:03 UTC (rev 209479)
@@ -0,0 +1,11 @@
+--- a/src/preferences.c.orig	2013-11-11 14:39:32.000000000 +0400
++++ b/src/preferences.c	2013-11-11 14:40:03.970776522 +0400
+@@ -381,7 +381,7 @@
+ 	}	
+ 	/**now go through and make sure we have no duplicates */
+ 	for (i=0;NULL != keylist[i].name; ++i){
+-		if(0 !=  keylist[i].keyval[0]){
++		if(NULL != keylist[i].keyval && 0 != keylist[i].keyval[0]){
+ 			/**see if it exists elsewhere  */
+ 			for (l=0;NULL != keylist[l].name; ++l){
+ 				if(l!=i && 0 != keylist[l].keyval[0]){

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2017-01-30 11:45:48 UTC (rev 209478)
+++ community-x86_64/PKGBUILD	2017-01-30 11:46:03 UTC (rev 209479)
@@ -1,34 +0,0 @@
-# $Id$
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Maintainer: Alexander Fehr <pizzapunk gmail com>
-
-pkgname=parcellite
-pkgver=1.2.1
-pkgrel=1
-pkgdesc="Lightweight GTK+ clipboard manager"
-arch=('i686' 'x86_64')
-url="http://parcellite.sourceforge.net/"
-license=('GPL3')
-depends=('gtk2')
-makedepends=('intltool')
-optdepends=('xdotool')
-source=(http://downloads.sourceforge.net/parcellite/parcellite-$pkgver.tar.gz
-	fix-crash.patch)
-sha256sums=('aba1c7c56c7607e219ce9855723eefa552c5376982891aefbfb5a2d3297ef046'
-            '8fe1e86958d371c9fa9474fe64b203ed483f636f3f98152237402ea84b2d2cbd')
-
-prepare() {
-  cd "$srcdir/parcellite-$pkgver"
-  patch -Np1 <"$srcdir"/fix-crash.patch
-}
-
-build() {
-  cd "$srcdir/parcellite-$pkgver"
-  ./configure --prefix=/usr --sysconfdir=/etc
-  make
-}
-
-package() {
-  cd "$srcdir/parcellite-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: parcellite/repos/community-x86_64/PKGBUILD (from rev 209478, parcellite/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2017-01-30 11:46:03 UTC (rev 209479)
@@ -0,0 +1,34 @@
+# $Id$
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Maintainer: Alexander Fehr <pizzapunk gmail com>
+
+pkgname=parcellite
+pkgver=1.2.1
+pkgrel=2
+pkgdesc="Lightweight GTK+ clipboard manager"
+arch=('i686' 'x86_64')
+url="http://parcellite.sourceforge.net/"
+license=('GPL3')
+depends=('gtk2' 'xdotool')
+makedepends=('intltool')
+optdepends=('xdotool')
+source=(http://downloads.sourceforge.net/parcellite/parcellite-$pkgver.tar.gz
+	fix-crash.patch)
+sha256sums=('aba1c7c56c7607e219ce9855723eefa552c5376982891aefbfb5a2d3297ef046'
+            '8fe1e86958d371c9fa9474fe64b203ed483f636f3f98152237402ea84b2d2cbd')
+
+prepare() {
+  cd "$srcdir/parcellite-$pkgver"
+  patch -Np1 <"$srcdir"/fix-crash.patch
+}
+
+build() {
+  cd "$srcdir/parcellite-$pkgver"
+  ./configure --prefix=/usr --sysconfdir=/etc
+  make
+}
+
+package() {
+  cd "$srcdir/parcellite-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/fix-crash.patch
===================================================================
--- community-x86_64/fix-crash.patch	2017-01-30 11:45:48 UTC (rev 209478)
+++ community-x86_64/fix-crash.patch	2017-01-30 11:46:03 UTC (rev 209479)
@@ -1,11 +0,0 @@
---- a/src/preferences.c.orig	2013-11-11 14:39:32.000000000 +0400
-+++ b/src/preferences.c	2013-11-11 14:40:03.970776522 +0400
-@@ -381,7 +381,7 @@
- 	}	
- 	/**now go through and make sure we have no duplicates */
- 	for (i=0;NULL != keylist[i].name; ++i){
--		if(0 !=  keylist[i].keyval[0]){
-+		if(NULL != keylist[i].keyval && 0 != keylist[i].keyval[0]){
- 			/**see if it exists elsewhere  */
- 			for (l=0;NULL != keylist[l].name; ++l){
- 				if(l!=i && 0 != keylist[l].keyval[0]){

Copied: parcellite/repos/community-x86_64/fix-crash.patch (from rev 209478, parcellite/trunk/fix-crash.patch)
===================================================================
--- community-x86_64/fix-crash.patch	                        (rev 0)
+++ community-x86_64/fix-crash.patch	2017-01-30 11:46:03 UTC (rev 209479)
@@ -0,0 +1,11 @@
+--- a/src/preferences.c.orig	2013-11-11 14:39:32.000000000 +0400
++++ b/src/preferences.c	2013-11-11 14:40:03.970776522 +0400
+@@ -381,7 +381,7 @@
+ 	}	
+ 	/**now go through and make sure we have no duplicates */
+ 	for (i=0;NULL != keylist[i].name; ++i){
+-		if(0 !=  keylist[i].keyval[0]){
++		if(NULL != keylist[i].keyval && 0 != keylist[i].keyval[0]){
+ 			/**see if it exists elsewhere  */
+ 			for (l=0;NULL != keylist[l].name; ++l){
+ 				if(l!=i && 0 != keylist[l].keyval[0]){



More information about the arch-commits mailing list