[arch-commits] Commit in at-spi2-atk/repos (6 files)
Jan Steffens
heftig at archlinux.org
Fri Sep 15 09:40:51 UTC 2017
Date: Friday, September 15, 2017 @ 09:40:50
Author: heftig
Revision: 305583
archrelease: copy trunk to gnome-unstable-i686, gnome-unstable-x86_64
Added:
at-spi2-atk/repos/gnome-unstable-i686/0001-meson-Ensure-paths-written-to-.pc-are-absolute.patch
(from rev 305582, at-spi2-atk/trunk/0001-meson-Ensure-paths-written-to-.pc-are-absolute.patch)
at-spi2-atk/repos/gnome-unstable-i686/PKGBUILD
(from rev 305582, at-spi2-atk/trunk/PKGBUILD)
at-spi2-atk/repos/gnome-unstable-x86_64/0001-meson-Ensure-paths-written-to-.pc-are-absolute.patch
(from rev 305582, at-spi2-atk/trunk/0001-meson-Ensure-paths-written-to-.pc-are-absolute.patch)
at-spi2-atk/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 305582, at-spi2-atk/trunk/PKGBUILD)
Deleted:
at-spi2-atk/repos/gnome-unstable-i686/PKGBUILD
at-spi2-atk/repos/gnome-unstable-x86_64/PKGBUILD
---------------------------------------------------------------------------------+
/PKGBUILD | 84 ++++++++++
gnome-unstable-i686/0001-meson-Ensure-paths-written-to-.pc-are-absolute.patch | 28 +++
gnome-unstable-i686/PKGBUILD | 39 ----
gnome-unstable-x86_64/0001-meson-Ensure-paths-written-to-.pc-are-absolute.patch | 28 +++
gnome-unstable-x86_64/PKGBUILD | 39 ----
5 files changed, 140 insertions(+), 78 deletions(-)
Copied: at-spi2-atk/repos/gnome-unstable-i686/0001-meson-Ensure-paths-written-to-.pc-are-absolute.patch (from rev 305582, at-spi2-atk/trunk/0001-meson-Ensure-paths-written-to-.pc-are-absolute.patch)
===================================================================
--- gnome-unstable-i686/0001-meson-Ensure-paths-written-to-.pc-are-absolute.patch (rev 0)
+++ gnome-unstable-i686/0001-meson-Ensure-paths-written-to-.pc-are-absolute.patch 2017-09-15 09:40:50 UTC (rev 305583)
@@ -0,0 +1,28 @@
+From 9c6451833b7550b594c4a3f8082275dfcc81e5ae Mon Sep 17 00:00:00 2001
+Message-Id: <9c6451833b7550b594c4a3f8082275dfcc81e5ae.1505468187.git.jan.steffens at gmail.com>
+From: "Jan Alexander Steffens (heftig)" <jan.steffens at gmail.com>
+Date: Fri, 15 Sep 2017 07:36:15 +0200
+Subject: [PATCH] meson: Ensure paths written to .pc are absolute
+
+---
+ meson.build | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/meson.build b/meson.build
+index a357a9798f89da3c..38d37019908376fa 100644
+--- a/meson.build
++++ b/meson.build
+@@ -53,8 +53,8 @@ import('gnome')
+ pkg_conf = configuration_data()
+ pkg_conf.set('prefix', get_option('prefix'))
+ pkg_conf.set('exec_prefix', get_option('prefix'))
+-pkg_conf.set('libdir', get_option('libdir'))
+-pkg_conf.set('includedir', get_option('includedir'))
++pkg_conf.set('libdir', join_paths(get_option('prefix'), get_option('libdir')))
++pkg_conf.set('includedir', join_paths(get_option('prefix'), get_option('includedir')))
+ pkg_conf.set('VERSION', meson.project_version())
+
+ configure_file(input: 'atk-bridge-2.0.pc.in',
+--
+2.14.1
+
Deleted: gnome-unstable-i686/PKGBUILD
===================================================================
--- gnome-unstable-i686/PKGBUILD 2017-09-15 09:40:05 UTC (rev 305582)
+++ gnome-unstable-i686/PKGBUILD 2017-09-15 09:40:50 UTC (rev 305583)
@@ -1,39 +0,0 @@
-# $Id$
-# Contributor: Ionut Biru <ibiru at archlinux.org>
-
-pkgname=at-spi2-atk
-pkgver=2.26.0
-pkgrel=1
-pkgdesc="A GTK+ module that bridges ATK to D-Bus at-spi"
-url="https://wiki.gnome.org/Accessibility"
-arch=(i686 x86_64)
-license=(GPL2)
-depends=(at-spi2-core libx11 libxml2 atk)
-makedepends=(git meson)
-_commit=6c1c9f343fda51780fc12ed1a1746832f070db85 # tags/AT_SPI2_ATK_2_26_0^0
-source=("git+https://git.gnome.org/browse/at-spi2-atk#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
- cd $pkgname
- git describe --tags | sed 's/^AT_SPI2_ATK_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
- mkdir build
- cd $pkgname
-}
-
-build() {
- cd build
- meson setup --prefix=/usr --buildtype=release ../$pkgname \
- --sysconfdir=/etc
- ninja
-}
-
-package() {
- cd build
- DESTDIR="$pkgdir" ninja install
-}
-
-# vim:set ts=2 sw=2 et:
Copied: at-spi2-atk/repos/gnome-unstable-i686/PKGBUILD (from rev 305582, at-spi2-atk/trunk/PKGBUILD)
===================================================================
--- gnome-unstable-i686/PKGBUILD (rev 0)
+++ gnome-unstable-i686/PKGBUILD 2017-09-15 09:40:50 UTC (rev 305583)
@@ -0,0 +1,42 @@
+# $Id$
+# Contributor: Ionut Biru <ibiru at archlinux.org>
+
+pkgname=at-spi2-atk
+pkgver=2.26.0
+pkgrel=2
+pkgdesc="A GTK+ module that bridges ATK to D-Bus at-spi"
+url="https://wiki.gnome.org/Accessibility"
+arch=(i686 x86_64)
+license=(GPL2)
+depends=(at-spi2-core libx11 libxml2 atk)
+makedepends=(git meson)
+_commit=6c1c9f343fda51780fc12ed1a1746832f070db85 # tags/AT_SPI2_ATK_2_26_0^0
+source=("git+https://git.gnome.org/browse/at-spi2-atk#commit=$_commit"
+ 0001-meson-Ensure-paths-written-to-.pc-are-absolute.patch)
+sha256sums=('SKIP'
+ 'a7aea6262a4159e5b50134171e52115688e4e2c90ff712f86031d9f9dab348be')
+
+pkgver() {
+ cd $pkgname
+ git describe --tags | sed 's/^AT_SPI2_ATK_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+ mkdir build
+ cd $pkgname
+ patch -Np1 -i ../0001-meson-Ensure-paths-written-to-.pc-are-absolute.patch
+}
+
+build() {
+ cd build
+ meson setup --prefix=/usr --buildtype=release ../$pkgname \
+ --sysconfdir=/etc
+ ninja
+}
+
+package() {
+ cd build
+ DESTDIR="$pkgdir" ninja install
+}
+
+# vim:set ts=2 sw=2 et:
Copied: at-spi2-atk/repos/gnome-unstable-x86_64/0001-meson-Ensure-paths-written-to-.pc-are-absolute.patch (from rev 305582, at-spi2-atk/trunk/0001-meson-Ensure-paths-written-to-.pc-are-absolute.patch)
===================================================================
--- gnome-unstable-x86_64/0001-meson-Ensure-paths-written-to-.pc-are-absolute.patch (rev 0)
+++ gnome-unstable-x86_64/0001-meson-Ensure-paths-written-to-.pc-are-absolute.patch 2017-09-15 09:40:50 UTC (rev 305583)
@@ -0,0 +1,28 @@
+From 9c6451833b7550b594c4a3f8082275dfcc81e5ae Mon Sep 17 00:00:00 2001
+Message-Id: <9c6451833b7550b594c4a3f8082275dfcc81e5ae.1505468187.git.jan.steffens at gmail.com>
+From: "Jan Alexander Steffens (heftig)" <jan.steffens at gmail.com>
+Date: Fri, 15 Sep 2017 07:36:15 +0200
+Subject: [PATCH] meson: Ensure paths written to .pc are absolute
+
+---
+ meson.build | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/meson.build b/meson.build
+index a357a9798f89da3c..38d37019908376fa 100644
+--- a/meson.build
++++ b/meson.build
+@@ -53,8 +53,8 @@ import('gnome')
+ pkg_conf = configuration_data()
+ pkg_conf.set('prefix', get_option('prefix'))
+ pkg_conf.set('exec_prefix', get_option('prefix'))
+-pkg_conf.set('libdir', get_option('libdir'))
+-pkg_conf.set('includedir', get_option('includedir'))
++pkg_conf.set('libdir', join_paths(get_option('prefix'), get_option('libdir')))
++pkg_conf.set('includedir', join_paths(get_option('prefix'), get_option('includedir')))
+ pkg_conf.set('VERSION', meson.project_version())
+
+ configure_file(input: 'atk-bridge-2.0.pc.in',
+--
+2.14.1
+
Deleted: gnome-unstable-x86_64/PKGBUILD
===================================================================
--- gnome-unstable-x86_64/PKGBUILD 2017-09-15 09:40:05 UTC (rev 305582)
+++ gnome-unstable-x86_64/PKGBUILD 2017-09-15 09:40:50 UTC (rev 305583)
@@ -1,39 +0,0 @@
-# $Id$
-# Contributor: Ionut Biru <ibiru at archlinux.org>
-
-pkgname=at-spi2-atk
-pkgver=2.26.0
-pkgrel=1
-pkgdesc="A GTK+ module that bridges ATK to D-Bus at-spi"
-url="https://wiki.gnome.org/Accessibility"
-arch=(i686 x86_64)
-license=(GPL2)
-depends=(at-spi2-core libx11 libxml2 atk)
-makedepends=(git meson)
-_commit=6c1c9f343fda51780fc12ed1a1746832f070db85 # tags/AT_SPI2_ATK_2_26_0^0
-source=("git+https://git.gnome.org/browse/at-spi2-atk#commit=$_commit")
-sha256sums=('SKIP')
-
-pkgver() {
- cd $pkgname
- git describe --tags | sed 's/^AT_SPI2_ATK_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
- mkdir build
- cd $pkgname
-}
-
-build() {
- cd build
- meson setup --prefix=/usr --buildtype=release ../$pkgname \
- --sysconfdir=/etc
- ninja
-}
-
-package() {
- cd build
- DESTDIR="$pkgdir" ninja install
-}
-
-# vim:set ts=2 sw=2 et:
Copied: at-spi2-atk/repos/gnome-unstable-x86_64/PKGBUILD (from rev 305582, at-spi2-atk/trunk/PKGBUILD)
===================================================================
--- gnome-unstable-x86_64/PKGBUILD (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD 2017-09-15 09:40:50 UTC (rev 305583)
@@ -0,0 +1,42 @@
+# $Id$
+# Contributor: Ionut Biru <ibiru at archlinux.org>
+
+pkgname=at-spi2-atk
+pkgver=2.26.0
+pkgrel=2
+pkgdesc="A GTK+ module that bridges ATK to D-Bus at-spi"
+url="https://wiki.gnome.org/Accessibility"
+arch=(i686 x86_64)
+license=(GPL2)
+depends=(at-spi2-core libx11 libxml2 atk)
+makedepends=(git meson)
+_commit=6c1c9f343fda51780fc12ed1a1746832f070db85 # tags/AT_SPI2_ATK_2_26_0^0
+source=("git+https://git.gnome.org/browse/at-spi2-atk#commit=$_commit"
+ 0001-meson-Ensure-paths-written-to-.pc-are-absolute.patch)
+sha256sums=('SKIP'
+ 'a7aea6262a4159e5b50134171e52115688e4e2c90ff712f86031d9f9dab348be')
+
+pkgver() {
+ cd $pkgname
+ git describe --tags | sed 's/^AT_SPI2_ATK_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+ mkdir build
+ cd $pkgname
+ patch -Np1 -i ../0001-meson-Ensure-paths-written-to-.pc-are-absolute.patch
+}
+
+build() {
+ cd build
+ meson setup --prefix=/usr --buildtype=release ../$pkgname \
+ --sysconfdir=/etc
+ ninja
+}
+
+package() {
+ cd build
+ DESTDIR="$pkgdir" ninja install
+}
+
+# vim:set ts=2 sw=2 et:
More information about the arch-commits
mailing list