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

Giovanni Scafora giovanni at archlinux.org
Sun Jan 11 16:44:29 UTC 2015


    Date: Sunday, January 11, 2015 @ 17:44:28
  Author: giovanni
Revision: 228924

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

Added:
  weechat/repos/extra-i686/PKGBUILD
    (from rev 228923, weechat/trunk/PKGBUILD)
  weechat/repos/extra-x86_64/PKGBUILD
    (from rev 228923, weechat/trunk/PKGBUILD)
Deleted:
  weechat/repos/extra-i686/PKGBUILD
  weechat/repos/extra-i686/fix_cmake31_shared_lib_compilation.patch
  weechat/repos/extra-x86_64/PKGBUILD
  weechat/repos/extra-x86_64/fix_cmake31_shared_lib_compilation.patch

-------------------------------------------------------+
 /PKGBUILD                                             |   76 ++++++++++++++++
 extra-i686/PKGBUILD                                   |   45 ---------
 extra-i686/fix_cmake31_shared_lib_compilation.patch   |   22 ----
 extra-x86_64/PKGBUILD                                 |   45 ---------
 extra-x86_64/fix_cmake31_shared_lib_compilation.patch |   22 ----
 5 files changed, 76 insertions(+), 134 deletions(-)

Deleted: extra-i686/PKGBUILD
===================================================================
--- extra-i686/PKGBUILD	2015-01-11 16:44:11 UTC (rev 228923)
+++ extra-i686/PKGBUILD	2015-01-11 16:44:28 UTC (rev 228924)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora <giovanni at archlinux.org>
-# Contributor: lucke <lucke at o2 dot pl>
-
-pkgname=weechat
-pkgver=1.0.1
-pkgrel=3
-pkgdesc="Fast, light and extensible IRC client (curses UI)"
-arch=('i686' 'x86_64')
-url="http://www.weechat.org/"
-license=('GPL')
-depends=('gnutls' 'curl' 'libgcrypt')
-makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
-optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
-source=("http://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.bz2"{,.asc}
-        fix_cmake31_shared_lib_compilation.patch)
-md5sums=('597b50e1340cfa7734f4ce72c3883705'
-         'SKIP'
-         '3d0fb4bf0d622ee507bacf95878d614d')
-validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8') # WeeChat (signing key) <webmaster at weechat.org>
-
-prepare() {
-  mkdir build
-
-  cd ${pkgname}-${pkgver}
-  patch -p1 < ../fix_cmake31_shared_lib_compilation.patch
-}
-
-build() {
-  cd build
-
-  cmake -Wno-dev ../${pkgname}-${pkgver} -DPREFIX=/usr \
-        -DPYTHON_EXECUTABLE=/usr/bin/python2 \
-        -DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
-        -DENABLE_MAN=ON \
-        -DENABLE_DOC=ON
-
-  make
-}
-
-package() {
-  cd build
-
-  make DESTDIR="${pkgdir}/" install
-}

Copied: weechat/repos/extra-i686/PKGBUILD (from rev 228923, weechat/trunk/PKGBUILD)
===================================================================
--- extra-i686/PKGBUILD	                        (rev 0)
+++ extra-i686/PKGBUILD	2015-01-11 16:44:28 UTC (rev 228924)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Giovanni Scafora <giovanni at archlinux.org>
+# Contributor: lucke <lucke at o2 dot pl>
+
+pkgname=weechat
+pkgver=1.1
+pkgrel=1
+pkgdesc="Fast, light and extensible IRC client (curses UI)"
+arch=('i686' 'x86_64')
+url="http://www.weechat.org/"
+license=('GPL')
+depends=('gnutls' 'curl' 'libgcrypt')
+makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
+optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
+source=("http://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.bz2")
+md5sums=('5985f29ec2750aff4b89df1832d36b6f')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+
+  cmake -Wno-dev ../${pkgname}-${pkgver} -DPREFIX=/usr \
+        -DPYTHON_EXECUTABLE=/usr/bin/python2 \
+        -DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
+        -DENABLE_MAN=ON \
+        -DENABLE_DOC=ON
+
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR="${pkgdir}/" install
+}

Deleted: extra-i686/fix_cmake31_shared_lib_compilation.patch
===================================================================
--- extra-i686/fix_cmake31_shared_lib_compilation.patch	2015-01-11 16:44:11 UTC (rev 228923)
+++ extra-i686/fix_cmake31_shared_lib_compilation.patch	2015-01-11 16:44:28 UTC (rev 228924)
@@ -1,22 +0,0 @@
-commit 00ba2e8c4d07f9b580723df7c5823f0e413dc5f2
-Author: Sébastien Helleu <flashcode at flashtux.org>
-Date:   Thu Jan 1 13:23:57 2015 +0100
-
-    core: fix compilation of plugins with cmake >= 3.1 (closes #287)
-    
-    The flag -fPIC is now forced for compilation of plugins.
-    It should fix compilation problems when cmake doesn't add this flag.
-
-diff --git a/src/plugins/CMakeLists.txt b/src/plugins/CMakeLists.txt
-index 95c457b..58193e3 100644
---- a/src/plugins/CMakeLists.txt
-+++ b/src/plugins/CMakeLists.txt
-@@ -32,7 +32,7 @@ plugin-script-callback.c plugin-script-callback.h)
- include_directories(${CMAKE_BINARY_DIR})
- add_library(weechat_plugins STATIC ${LIB_PLUGINS_SRC})
- 
--add_definitions(${CMAKE_SHARED_LIBRARY_C_FLAGS})
-+add_definitions(${CMAKE_SHARED_LIBRARY_C_FLAGS} -fPIC)
- add_library(weechat_plugins_scripts STATIC ${LIB_PLUGINS_SCRIPTS_SRC})
- 
- include(CheckIncludeFiles)

Deleted: extra-x86_64/PKGBUILD
===================================================================
--- extra-x86_64/PKGBUILD	2015-01-11 16:44:11 UTC (rev 228923)
+++ extra-x86_64/PKGBUILD	2015-01-11 16:44:28 UTC (rev 228924)
@@ -1,45 +0,0 @@
-# $Id$
-# Maintainer: Giovanni Scafora <giovanni at archlinux.org>
-# Contributor: lucke <lucke at o2 dot pl>
-
-pkgname=weechat
-pkgver=1.0.1
-pkgrel=3
-pkgdesc="Fast, light and extensible IRC client (curses UI)"
-arch=('i686' 'x86_64')
-url="http://www.weechat.org/"
-license=('GPL')
-depends=('gnutls' 'curl' 'libgcrypt')
-makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
-optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
-source=("http://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.bz2"{,.asc}
-        fix_cmake31_shared_lib_compilation.patch)
-md5sums=('597b50e1340cfa7734f4ce72c3883705'
-         'SKIP'
-         '3d0fb4bf0d622ee507bacf95878d614d')
-validpgpkeys=('A9AB5AB778FA5C3522FD0378F82F4B16DEC408F8') # WeeChat (signing key) <webmaster at weechat.org>
-
-prepare() {
-  mkdir build
-
-  cd ${pkgname}-${pkgver}
-  patch -p1 < ../fix_cmake31_shared_lib_compilation.patch
-}
-
-build() {
-  cd build
-
-  cmake -Wno-dev ../${pkgname}-${pkgver} -DPREFIX=/usr \
-        -DPYTHON_EXECUTABLE=/usr/bin/python2 \
-        -DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
-        -DENABLE_MAN=ON \
-        -DENABLE_DOC=ON
-
-  make
-}
-
-package() {
-  cd build
-
-  make DESTDIR="${pkgdir}/" install
-}

Copied: weechat/repos/extra-x86_64/PKGBUILD (from rev 228923, weechat/trunk/PKGBUILD)
===================================================================
--- extra-x86_64/PKGBUILD	                        (rev 0)
+++ extra-x86_64/PKGBUILD	2015-01-11 16:44:28 UTC (rev 228924)
@@ -0,0 +1,38 @@
+# $Id$
+# Maintainer: Giovanni Scafora <giovanni at archlinux.org>
+# Contributor: lucke <lucke at o2 dot pl>
+
+pkgname=weechat
+pkgver=1.1
+pkgrel=1
+pkgdesc="Fast, light and extensible IRC client (curses UI)"
+arch=('i686' 'x86_64')
+url="http://www.weechat.org/"
+license=('GPL')
+depends=('gnutls' 'curl' 'libgcrypt')
+makedepends=('asciidoc' 'source-highlight' 'cmake' 'pkg-config' 'perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
+optdepends=('perl' 'python2' 'lua' 'tcl' 'ruby' 'aspell' 'guile')
+source=("http://www.weechat.org/files/src/${pkgname}-${pkgver}.tar.bz2")
+md5sums=('5985f29ec2750aff4b89df1832d36b6f')
+
+prepare() {
+  mkdir build
+}
+
+build() {
+  cd build
+
+  cmake -Wno-dev ../${pkgname}-${pkgver} -DPREFIX=/usr \
+        -DPYTHON_EXECUTABLE=/usr/bin/python2 \
+        -DPYTHON_LIBRARY=/usr/lib/libpython2.7.so \
+        -DENABLE_MAN=ON \
+        -DENABLE_DOC=ON
+
+  make
+}
+
+package() {
+  cd build
+
+  make DESTDIR="${pkgdir}/" install
+}

Deleted: extra-x86_64/fix_cmake31_shared_lib_compilation.patch
===================================================================
--- extra-x86_64/fix_cmake31_shared_lib_compilation.patch	2015-01-11 16:44:11 UTC (rev 228923)
+++ extra-x86_64/fix_cmake31_shared_lib_compilation.patch	2015-01-11 16:44:28 UTC (rev 228924)
@@ -1,22 +0,0 @@
-commit 00ba2e8c4d07f9b580723df7c5823f0e413dc5f2
-Author: Sébastien Helleu <flashcode at flashtux.org>
-Date:   Thu Jan 1 13:23:57 2015 +0100
-
-    core: fix compilation of plugins with cmake >= 3.1 (closes #287)
-    
-    The flag -fPIC is now forced for compilation of plugins.
-    It should fix compilation problems when cmake doesn't add this flag.
-
-diff --git a/src/plugins/CMakeLists.txt b/src/plugins/CMakeLists.txt
-index 95c457b..58193e3 100644
---- a/src/plugins/CMakeLists.txt
-+++ b/src/plugins/CMakeLists.txt
-@@ -32,7 +32,7 @@ plugin-script-callback.c plugin-script-callback.h)
- include_directories(${CMAKE_BINARY_DIR})
- add_library(weechat_plugins STATIC ${LIB_PLUGINS_SRC})
- 
--add_definitions(${CMAKE_SHARED_LIBRARY_C_FLAGS})
-+add_definitions(${CMAKE_SHARED_LIBRARY_C_FLAGS} -fPIC)
- add_library(weechat_plugins_scripts STATIC ${LIB_PLUGINS_SCRIPTS_SRC})
- 
- include(CheckIncludeFiles)



More information about the arch-commits mailing list