[arch-commits] Commit in pidgin-xmpp-receipts/repos (6 files)

Levente Polyak anthraxx at archlinux.org
Tue Feb 2 00:44:26 UTC 2016


    Date: Tuesday, February 2, 2016 @ 01:44:26
  Author: anthraxx
Revision: 159840

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

Added:
  pidgin-xmpp-receipts/repos/community-i686/PKGBUILD
    (from rev 159839, pidgin-xmpp-receipts/trunk/PKGBUILD)
  pidgin-xmpp-receipts/repos/community-x86_64/PKGBUILD
    (from rev 159839, pidgin-xmpp-receipts/trunk/PKGBUILD)
Deleted:
  pidgin-xmpp-receipts/repos/community-i686/PKGBUILD
  pidgin-xmpp-receipts/repos/community-i686/makefile.patch
  pidgin-xmpp-receipts/repos/community-x86_64/PKGBUILD
  pidgin-xmpp-receipts/repos/community-x86_64/makefile.patch

---------------------------------+
 /PKGBUILD                       |   52 ++++++++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD         |   32 -----------------------
 community-i686/makefile.patch   |   45 --------------------------------
 community-x86_64/PKGBUILD       |   32 -----------------------
 community-x86_64/makefile.patch |   45 --------------------------------
 5 files changed, 52 insertions(+), 154 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2016-02-02 00:44:15 UTC (rev 159839)
+++ community-i686/PKGBUILD	2016-02-02 00:44:26 UTC (rev 159840)
@@ -1,32 +0,0 @@
-# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
-# Contributor: <development[at]kondorgulasch[dot]de>
-
-pkgname=pidgin-xmpp-receipts
-pkgver=0.6
-pkgrel=3
-pkgdesc="This pidgin-plugin implements xmpp message delivery receipts (XEP-0184)"
-url="http://devel.kondorgulasch.de/pidgin-xmpp-receipts/"
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('pidgin' 'libpurple')
-source=(http://devel.kondorgulasch.de/pidgin-xmpp-receipts/files/pidgin-xmpp-receipts-${pkgver}.tar.gz
-        makefile.patch)
-sha512sums=('160270206d0d6394bddaa15ca59896756ab3a546f7c74cc9e3d4ec634f70b829ae3b013ee6086a5d4a5376b7d2b81341c44c3ef0ecab2a66d612b96fd37dfeff'
-            '4dbc5dede45446339357908395ec8447c407c1c18af514cf67cb2b7cca372c95937c2a9c8edd032e20e8ab1cf5e74493f4f12c11af417d1b9af1aee4aae05859')
-
-prepare() {
-	cd ${pkgname}-${pkgver}
-  patch -p1 < "${srcdir}/makefile.patch"
-}
-
-build() {
-	cd ${pkgname}-${pkgver}
-	make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" PLUGINDIR="/usr/lib/pidgin" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: pidgin-xmpp-receipts/repos/community-i686/PKGBUILD (from rev 159839, pidgin-xmpp-receipts/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2016-02-02 00:44:26 UTC (rev 159840)
@@ -0,0 +1,26 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: <development[at]kondorgulasch[dot]de>
+
+#TODO
+pkgname=pidgin-xmpp-receipts
+pkgver=0.7
+pkgrel=1
+pkgdesc="This pidgin-plugin implements xmpp message delivery receipts (XEP-0184)"
+url="http://devel.kondorgulasch.de/pidgin-xmpp-receipts/"
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('pidgin' 'libpurple')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/noonien-d/pidgin-xmpp-receipts/archive/release_${pkgver}.tar.gz)
+sha512sums=('3aa9c8defaac784a05e9d2cd8a315c951e5f2d09a8471e16d7d50644d9bc94bd81ac2e64563b7e20ea2b98cd699310a6dbcb3e05b459f32bee43e45e60bc5c20')
+
+build() {
+	cd ${pkgname}-release_${pkgver}
+	make
+}
+
+package() {
+  cd ${pkgname}-release_${pkgver}
+  make DESTDIR="${pkgdir}" PLUGINDIR="/usr/lib/pidgin" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-i686/makefile.patch
===================================================================
--- community-i686/makefile.patch	2016-02-02 00:44:15 UTC (rev 159839)
+++ community-i686/makefile.patch	2016-02-02 00:44:26 UTC (rev 159840)
@@ -1,45 +0,0 @@
-From fbea49705cbac8554d4cdc99ef04a1c9288e7033 Mon Sep 17 00:00:00 2001
-From: anthraxx <levente at leventepolyak.net>
-Date: Mon, 14 Dec 2015 23:43:29 +0100
-Subject: [PATCH] improve Makefile with adaptive and overridable variables
-
----
- Makefile | 14 ++++++++------
- 1 file changed, 8 insertions(+), 6 deletions(-)
-
-diff --git a/Makefile b/Makefile
-index 1581be4..92dbeaa 100644
---- a/Makefile
-+++ b/Makefile
-@@ -1,20 +1,22 @@
- GTK_PIDGIN_INCLUDES= `pkg-config --cflags gtk+-2.0 pidgin`
- 
--CFLAGS= -O2 -Wall -fpic -g
--LDFLAGS= -shared
-+CC ?= gcc
-+CFLAGS += -O2 -Wall -fpic
-+LDFLAGS += -shared
-+DESTDIR =
-+PLUGINDIR = ~/.purple/plugins/
- 
- INCLUDES = \
-       $(GTK_PIDGIN_INCLUDES)
- 
- xmpp-receipts.so: xmpp-receipts.c
--	gcc xmpp-receipts.c $(CFLAGS) $(INCLUDES) $(LDFLAGS) -o xmpp-receipts.so
-+	$(CC) xmpp-receipts.c $(CFLAGS) $(INCLUDES) $(LDFLAGS) -o xmpp-receipts.so
- 
- install: xmpp-receipts.so
--	mkdir -p ~/.purple/plugins
--	cp xmpp-receipts.so ~/.purple/plugins/
-+	install -Dm755 xmpp-receipts.so -t $(DESTDIR)$(PLUGINDIR)
- 
- uninstall:
--	rm -f ~/.purple/plugins/xmpp-receipts.so
-+	rm -f $(DESTDIR)$(PLUGINDIR)/xmpp-receipts.so
- 
- clean:
- 	rm -f xmpp-receipts.so
--- 
-2.6.4
-

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2016-02-02 00:44:15 UTC (rev 159839)
+++ community-x86_64/PKGBUILD	2016-02-02 00:44:26 UTC (rev 159840)
@@ -1,32 +0,0 @@
-# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
-# Contributor: <development[at]kondorgulasch[dot]de>
-
-pkgname=pidgin-xmpp-receipts
-pkgver=0.6
-pkgrel=3
-pkgdesc="This pidgin-plugin implements xmpp message delivery receipts (XEP-0184)"
-url="http://devel.kondorgulasch.de/pidgin-xmpp-receipts/"
-arch=('i686' 'x86_64')
-license=('GPL3')
-depends=('pidgin' 'libpurple')
-source=(http://devel.kondorgulasch.de/pidgin-xmpp-receipts/files/pidgin-xmpp-receipts-${pkgver}.tar.gz
-        makefile.patch)
-sha512sums=('160270206d0d6394bddaa15ca59896756ab3a546f7c74cc9e3d4ec634f70b829ae3b013ee6086a5d4a5376b7d2b81341c44c3ef0ecab2a66d612b96fd37dfeff'
-            '4dbc5dede45446339357908395ec8447c407c1c18af514cf67cb2b7cca372c95937c2a9c8edd032e20e8ab1cf5e74493f4f12c11af417d1b9af1aee4aae05859')
-
-prepare() {
-	cd ${pkgname}-${pkgver}
-  patch -p1 < "${srcdir}/makefile.patch"
-}
-
-build() {
-	cd ${pkgname}-${pkgver}
-	make
-}
-
-package() {
-  cd ${pkgname}-${pkgver}
-  make DESTDIR="${pkgdir}" PLUGINDIR="/usr/lib/pidgin" install
-}
-
-# vim: ts=2 sw=2 et:

Copied: pidgin-xmpp-receipts/repos/community-x86_64/PKGBUILD (from rev 159839, pidgin-xmpp-receipts/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2016-02-02 00:44:26 UTC (rev 159840)
@@ -0,0 +1,26 @@
+# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
+# Contributor: <development[at]kondorgulasch[dot]de>
+
+#TODO
+pkgname=pidgin-xmpp-receipts
+pkgver=0.7
+pkgrel=1
+pkgdesc="This pidgin-plugin implements xmpp message delivery receipts (XEP-0184)"
+url="http://devel.kondorgulasch.de/pidgin-xmpp-receipts/"
+arch=('i686' 'x86_64')
+license=('GPL3')
+depends=('pidgin' 'libpurple')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/noonien-d/pidgin-xmpp-receipts/archive/release_${pkgver}.tar.gz)
+sha512sums=('3aa9c8defaac784a05e9d2cd8a315c951e5f2d09a8471e16d7d50644d9bc94bd81ac2e64563b7e20ea2b98cd699310a6dbcb3e05b459f32bee43e45e60bc5c20')
+
+build() {
+	cd ${pkgname}-release_${pkgver}
+	make
+}
+
+package() {
+  cd ${pkgname}-release_${pkgver}
+  make DESTDIR="${pkgdir}" PLUGINDIR="/usr/lib/pidgin" install
+}
+
+# vim: ts=2 sw=2 et:

Deleted: community-x86_64/makefile.patch
===================================================================
--- community-x86_64/makefile.patch	2016-02-02 00:44:15 UTC (rev 159839)
+++ community-x86_64/makefile.patch	2016-02-02 00:44:26 UTC (rev 159840)
@@ -1,45 +0,0 @@
-From fbea49705cbac8554d4cdc99ef04a1c9288e7033 Mon Sep 17 00:00:00 2001
-From: anthraxx <levente at leventepolyak.net>
-Date: Mon, 14 Dec 2015 23:43:29 +0100
-Subject: [PATCH] improve Makefile with adaptive and overridable variables
-
----
- Makefile | 14 ++++++++------
- 1 file changed, 8 insertions(+), 6 deletions(-)
-
-diff --git a/Makefile b/Makefile
-index 1581be4..92dbeaa 100644
---- a/Makefile
-+++ b/Makefile
-@@ -1,20 +1,22 @@
- GTK_PIDGIN_INCLUDES= `pkg-config --cflags gtk+-2.0 pidgin`
- 
--CFLAGS= -O2 -Wall -fpic -g
--LDFLAGS= -shared
-+CC ?= gcc
-+CFLAGS += -O2 -Wall -fpic
-+LDFLAGS += -shared
-+DESTDIR =
-+PLUGINDIR = ~/.purple/plugins/
- 
- INCLUDES = \
-       $(GTK_PIDGIN_INCLUDES)
- 
- xmpp-receipts.so: xmpp-receipts.c
--	gcc xmpp-receipts.c $(CFLAGS) $(INCLUDES) $(LDFLAGS) -o xmpp-receipts.so
-+	$(CC) xmpp-receipts.c $(CFLAGS) $(INCLUDES) $(LDFLAGS) -o xmpp-receipts.so
- 
- install: xmpp-receipts.so
--	mkdir -p ~/.purple/plugins
--	cp xmpp-receipts.so ~/.purple/plugins/
-+	install -Dm755 xmpp-receipts.so -t $(DESTDIR)$(PLUGINDIR)
- 
- uninstall:
--	rm -f ~/.purple/plugins/xmpp-receipts.so
-+	rm -f $(DESTDIR)$(PLUGINDIR)/xmpp-receipts.so
- 
- clean:
- 	rm -f xmpp-receipts.so
--- 
-2.6.4
-



More information about the arch-commits mailing list