[arch-commits] Commit in gloox/repos/community-x86_64 (4 files)
Sergej Pupykin
spupykin at archlinux.org
Tue Jul 28 18:02:18 UTC 2020
Date: Tuesday, July 28, 2020 @ 18:02:18
Author: spupykin
Revision: 665673
archrelease: copy trunk to community-x86_64
Added:
gloox/repos/community-x86_64/PKGBUILD
(from rev 665672, gloox/trunk/PKGBUILD)
gloox/repos/community-x86_64/build-fix.patch
(from rev 665672, gloox/trunk/build-fix.patch)
Deleted:
gloox/repos/community-x86_64/PKGBUILD
gloox/repos/community-x86_64/build-fix.patch
-----------------+
PKGBUILD | 48 ++++++++++++++++++++++++------------------------
build-fix.patch | 52 ++++++++++++++++++++++++++--------------------------
2 files changed, 50 insertions(+), 50 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2020-07-28 18:02:09 UTC (rev 665672)
+++ PKGBUILD 2020-07-28 18:02:18 UTC (rev 665673)
@@ -1,24 +0,0 @@
-# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
-# Maintainer: William Rea <sillywilly at gmail.com>
-
-pkgname=gloox
-pkgver=1.0.23
-pkgrel=1
-pkgdesc="C++ libraries for development of Jabber client/component/server"
-arch=(x86_64)
-url="https://camaya.net/gloox"
-license=("GPL")
-depends=('libidn' 'gnutls')
-source=(https://camaya.net/download/gloox-$pkgver.tar.bz2)
-sha256sums=('97cb6a0c07e320ffa4a7c66e8ab06b2361086271dc87ed2398befef4e8435f8a')
-
-build() {
- cd "$srcdir"/gloox-$pkgver
- ./configure --prefix=/usr
- make
-}
-
-package() {
- cd "$srcdir"/gloox-$pkgver
- make DESTDIR="$pkgdir" install
-}
Copied: gloox/repos/community-x86_64/PKGBUILD (from rev 665672, gloox/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2020-07-28 18:02:18 UTC (rev 665673)
@@ -0,0 +1,24 @@
+# Maintainer: Sergej Pupykin <pupykin.s+arch at gmail.com>
+# Maintainer: William Rea <sillywilly at gmail.com>
+
+pkgname=gloox
+pkgver=1.0.24
+pkgrel=1
+pkgdesc="C++ libraries for development of Jabber client/component/server"
+arch=(x86_64)
+url="https://camaya.net/gloox"
+license=("GPL")
+depends=('libidn' 'gnutls')
+source=(https://camaya.net/download/gloox-$pkgver.tar.bz2)
+sha256sums=('ae1462be2a2eb8fe5cd054825143617c53c2c9c7195606cb5a5ba68c0f68f9c9')
+
+build() {
+ cd "$srcdir"/gloox-$pkgver
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "$srcdir"/gloox-$pkgver
+ make DESTDIR="$pkgdir" install
+}
Deleted: build-fix.patch
===================================================================
--- build-fix.patch 2020-07-28 18:02:09 UTC (rev 665672)
+++ build-fix.patch 2020-07-28 18:02:18 UTC (rev 665673)
@@ -1,26 +0,0 @@
-diff -wbBur gloox-1.0.10/src/jinglesession.cpp gloox-1.0.10.q/src/jinglesession.cpp
---- gloox-1.0.10/src/jinglesession.cpp 2014-04-09 02:11:31.000000000 +0400
-+++ gloox-1.0.10.q/src/jinglesession.cpp 2014-05-30 14:56:02.793313436 +0400
-@@ -82,6 +82,10 @@
- {
- }
-
-+ Session::Reason::~Reason()
-+ {
-+ }
-+
- Session::Reason::Reason( const Tag* tag )
- : Plugin( PluginReason )
- {
-diff -wbBur gloox-1.0.10/src/jinglesession.h gloox-1.0.10.q/src/jinglesession.h
---- gloox-1.0.10/src/jinglesession.h 2014-04-09 02:11:31.000000000 +0400
-+++ gloox-1.0.10.q/src/jinglesession.h 2014-05-30 14:55:46.889980293 +0400
-@@ -147,7 +147,7 @@
- /**
- * Virtual destructor.
- */
-- virtual ~Reason() {}
-+ virtual ~Reason();
-
- /**
- * Returns the reason for the session termination.
Copied: gloox/repos/community-x86_64/build-fix.patch (from rev 665672, gloox/trunk/build-fix.patch)
===================================================================
--- build-fix.patch (rev 0)
+++ build-fix.patch 2020-07-28 18:02:18 UTC (rev 665673)
@@ -0,0 +1,26 @@
+diff -wbBur gloox-1.0.10/src/jinglesession.cpp gloox-1.0.10.q/src/jinglesession.cpp
+--- gloox-1.0.10/src/jinglesession.cpp 2014-04-09 02:11:31.000000000 +0400
++++ gloox-1.0.10.q/src/jinglesession.cpp 2014-05-30 14:56:02.793313436 +0400
+@@ -82,6 +82,10 @@
+ {
+ }
+
++ Session::Reason::~Reason()
++ {
++ }
++
+ Session::Reason::Reason( const Tag* tag )
+ : Plugin( PluginReason )
+ {
+diff -wbBur gloox-1.0.10/src/jinglesession.h gloox-1.0.10.q/src/jinglesession.h
+--- gloox-1.0.10/src/jinglesession.h 2014-04-09 02:11:31.000000000 +0400
++++ gloox-1.0.10.q/src/jinglesession.h 2014-05-30 14:55:46.889980293 +0400
+@@ -147,7 +147,7 @@
+ /**
+ * Virtual destructor.
+ */
+- virtual ~Reason() {}
++ virtual ~Reason();
+
+ /**
+ * Returns the reason for the session termination.
More information about the arch-commits
mailing list