Date: Wednesday, June 6, 2018 @ 17:35:30 Author: anatolik Revision: 341525
archrelease: copy trunk to community-x86_64 Added: ruby-glib2/repos/community-x86_64/0001-glib2-support-GLib-2.44.patch (from rev 341523, ruby-glib2/trunk/0001-glib2-support-GLib-2.44.patch) ruby-glib2/repos/community-x86_64/PKGBUILD (from rev 341523, ruby-glib2/trunk/PKGBUILD) Deleted: ruby-glib2/repos/community-x86_64/0001-glib2-support-GLib-2.44.patch ruby-glib2/repos/community-x86_64/PKGBUILD ------------------------------------+ 0001-glib2-support-GLib-2.44.patch | 76 +++++++++++++++++------------------ PKGBUILD | 44 ++++++++++---------- 2 files changed, 60 insertions(+), 60 deletions(-) Deleted: 0001-glib2-support-GLib-2.44.patch =================================================================== --- 0001-glib2-support-GLib-2.44.patch 2018-06-06 17:35:28 UTC (rev 341524) +++ 0001-glib2-support-GLib-2.44.patch 2018-06-06 17:35:30 UTC (rev 341525) @@ -1,38 +0,0 @@ -From c5cdb741a9eb72351739e48a38946b87c292c293 Mon Sep 17 00:00:00 2001 -From: Kouhei Sutou <k...@clear-code.com> -Date: Sat, 4 Apr 2015 15:00:14 +0900 -Subject: [PATCH] glib2: support GLib 2.44 - -gwin32.h includes an enum type that is available on Windows. - -GitHub: fix #361 - -Reported by Benjamin Maisano. Thanks!!! - -diff --git a/glib2/ext/glib2/extconf.rb b/glib2/ext/glib2/extconf.rb -index d88d971..1c5cd8d 100644 ---- a/glib2/ext/glib2/extconf.rb -+++ b/glib2/ext/glib2/extconf.rb -@@ -56,10 +56,18 @@ create_pkg_config_file("Ruby/GLib2", package_id) - - enum_types_prefix = "glib-enum-types" - include_paths = PKGConfig.cflags_only_I("glib-2.0") -+ignore_headers = [ -+ "giochannel.h", -+ "gmain.h", -+ "gscanner.h", -+] -+unless (/mingw|cygwin|mswin/ === RUBY_PLATFORM) -+ ignore_headers << "gwin32.h" -+end - headers = include_paths.split.inject([]) do |result, path| - result + Dir.glob(File.join(path.sub(/^-I/, ""), "glib", "*.h")) - end.reject do |file| -- /g(iochannel|main|scanner)\.h/ =~ file -+ ignore_headers.include?(File.basename(file)) - end - include_paths = PKGConfig.cflags_only_I("gobject-2.0") - headers = include_paths.split.inject(headers) do |result, path| --- -2.3.5 - Copied: ruby-glib2/repos/community-x86_64/0001-glib2-support-GLib-2.44.patch (from rev 341523, ruby-glib2/trunk/0001-glib2-support-GLib-2.44.patch) =================================================================== --- 0001-glib2-support-GLib-2.44.patch (rev 0) +++ 0001-glib2-support-GLib-2.44.patch 2018-06-06 17:35:30 UTC (rev 341525) @@ -0,0 +1,38 @@ +From c5cdb741a9eb72351739e48a38946b87c292c293 Mon Sep 17 00:00:00 2001 +From: Kouhei Sutou <k...@clear-code.com> +Date: Sat, 4 Apr 2015 15:00:14 +0900 +Subject: [PATCH] glib2: support GLib 2.44 + +gwin32.h includes an enum type that is available on Windows. + +GitHub: fix #361 + +Reported by Benjamin Maisano. Thanks!!! + +diff --git a/glib2/ext/glib2/extconf.rb b/glib2/ext/glib2/extconf.rb +index d88d971..1c5cd8d 100644 +--- a/glib2/ext/glib2/extconf.rb ++++ b/glib2/ext/glib2/extconf.rb +@@ -56,10 +56,18 @@ create_pkg_config_file("Ruby/GLib2", package_id) + + enum_types_prefix = "glib-enum-types" + include_paths = PKGConfig.cflags_only_I("glib-2.0") ++ignore_headers = [ ++ "giochannel.h", ++ "gmain.h", ++ "gscanner.h", ++] ++unless (/mingw|cygwin|mswin/ === RUBY_PLATFORM) ++ ignore_headers << "gwin32.h" ++end + headers = include_paths.split.inject([]) do |result, path| + result + Dir.glob(File.join(path.sub(/^-I/, ""), "glib", "*.h")) + end.reject do |file| +- /g(iochannel|main|scanner)\.h/ =~ file ++ ignore_headers.include?(File.basename(file)) + end + include_paths = PKGConfig.cflags_only_I("gobject-2.0") + headers = include_paths.split.inject(headers) do |result, path| +-- +2.3.5 + Deleted: PKGBUILD =================================================================== --- PKGBUILD 2018-06-06 17:35:28 UTC (rev 341524) +++ PKGBUILD 2018-06-06 17:35:30 UTC (rev 341525) @@ -1,22 +0,0 @@ -# Generated by gem2arch (https://github.com/anatol/gem2arch) -# Maintainer: Anatol Pomozov <anatol.pomo...@gmail.com> - -_gemname=glib2 -pkgname=ruby-$_gemname -pkgver=3.2.5 -pkgrel=1 -pkgdesc='Ruby/GLib2 is a Ruby binding of GLib-2.x.' -arch=(x86_64) -url='http://ruby-gnome2.sourceforge.jp/' -license=(LGPL2.1) -depends=(ruby glib2 ruby-pkg-config ruby-native-package-installer) -options=(!emptydirs) -source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem) -noextract=($_gemname-$pkgver.gem) -sha1sums=('c48e4b6e17635a6b403e1b98565d6994d7bf69ac') - -package() { - local _gemdir="$(ruby -e'puts Gem.default_dir')" - gem install --no-document --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n "$pkgdir/usr/bin" $_gemname-$pkgver.gem - rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem" -} Copied: ruby-glib2/repos/community-x86_64/PKGBUILD (from rev 341523, ruby-glib2/trunk/PKGBUILD) =================================================================== --- PKGBUILD (rev 0) +++ PKGBUILD 2018-06-06 17:35:30 UTC (rev 341525) @@ -0,0 +1,22 @@ +# Generated by gem2arch (https://github.com/anatol/gem2arch) +# Maintainer: Anatol Pomozov <anatol.pomo...@gmail.com> + +_gemname=glib2 +pkgname=ruby-$_gemname +pkgver=3.2.6 +pkgrel=1 +pkgdesc='Ruby/GLib2 is a Ruby binding of GLib-2.x.' +arch=(x86_64) +url='http://ruby-gnome2.sourceforge.jp/' +license=(LGPL2.1) +depends=(ruby glib2 ruby-pkg-config ruby-native-package-installer) +options=(!emptydirs) +source=(https://rubygems.org/downloads/$_gemname-$pkgver.gem) +noextract=($_gemname-$pkgver.gem) +sha1sums=('f36ec986b0aa3d2978759243d3f85f45e1d5d735') + +package() { + local _gemdir="$(ruby -e'puts Gem.default_dir')" + gem install --no-document --ignore-dependencies --no-user-install -i "$pkgdir/$_gemdir" -n "$pkgdir/usr/bin" $_gemname-$pkgver.gem + rm "$pkgdir/$_gemdir/cache/$_gemname-$pkgver.gem" +}