From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E6AD1138334 for ; Sat, 14 Sep 2019 21:00:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 37FACE0877; Sat, 14 Sep 2019 21:00:26 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 15DD6E0877 for ; Sat, 14 Sep 2019 21:00:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CBFE634B1A0 for ; Sat, 14 Sep 2019 21:00:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4F6B176A for ; Sat, 14 Sep 2019 21:00:22 +0000 (UTC) From: "Sobhan Mohammadpour" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sobhan Mohammadpour" Message-ID: <1568494805.8e70712c5f69e4270a77c83c0d0ba8a92af93615.sobhan@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: gnome-base/gnome-desktop/, gnome-base/gnome-desktop/files/ X-VCS-Repository: proj/gnome X-VCS-Files: gnome-base/gnome-desktop/files/3.34.0-make-seccomp-optional.patch gnome-base/gnome-desktop/gnome-desktop-3.34.0.ebuild gnome-base/gnome-desktop/metadata.xml X-VCS-Directories: gnome-base/gnome-desktop/ gnome-base/gnome-desktop/files/ X-VCS-Committer: sobhan X-VCS-Committer-Name: Sobhan Mohammadpour X-VCS-Revision: 8e70712c5f69e4270a77c83c0d0ba8a92af93615 X-VCS-Branch: master Date: Sat, 14 Sep 2019 21:00:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 9d023f76-5f60-4d9f-bf7b-15221b589b05 X-Archives-Hash: 7777a1db49abe265a355d497dadffc3e commit: 8e70712c5f69e4270a77c83c0d0ba8a92af93615 Author: Sobhan Mohammadpour gentoo org> AuthorDate: Sat Sep 14 21:00:05 2019 +0000 Commit: Sobhan Mohammadpour gentoo org> CommitDate: Sat Sep 14 21:00:05 2019 +0000 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=8e70712c gnome-base/gnome-desktop: add 3.34 Package-Manager: Portage-2.3.76, Repoman-2.3.17 .../files/3.34.0-make-seccomp-optional.patch | 39 ++++++++++++++ .../gnome-desktop/gnome-desktop-3.34.0.ebuild | 62 ++++++++++++++++++++++ gnome-base/gnome-desktop/metadata.xml | 8 +++ 3 files changed, 109 insertions(+) diff --git a/gnome-base/gnome-desktop/files/3.34.0-make-seccomp-optional.patch b/gnome-base/gnome-desktop/files/3.34.0-make-seccomp-optional.patch new file mode 100644 index 00000000..9112e36c --- /dev/null +++ b/gnome-base/gnome-desktop/files/3.34.0-make-seccomp-optional.patch @@ -0,0 +1,39 @@ +From ecaf36f478d160618c1b9a23ed1c17f09a716c6f Mon Sep 17 00:00:00 2001 +From: Sobhan Mohammadpour +Date: Sat, 14 Sep 2019 16:21:18 -0400 +Subject: [PATCH] make seccomp optional + +--- + meson.build | 2 +- + meson_options.txt | 5 +++++ + 2 files changed, 6 insertions(+), 1 deletion(-) + +diff --git a/meson.build b/meson.build +index 6781ca7..9361f26 100644 +--- a/meson.build ++++ b/meson.build +@@ -57,7 +57,7 @@ host_os = host_machine.system() + host_cpu = host_machine.cpu() + supported_os = ['linux'] + unsupported_cpus = ['alpha', 'ia64', 'm68k', 'sh4', 'sparc', 'sparc64'] +-if supported_os.contains(host_os) and not unsupported_cpus.contains(host_cpu) ++if supported_os.contains(host_os) and not unsupported_cpus.contains(host_cpu) and get_option('seccomp') + seccomp_dep = dependency('libseccomp') + else + seccomp_dep = dependency('', required: false) +diff --git a/meson_options.txt b/meson_options.txt +index e3402a1..a7e7f2e 100644 +--- a/meson_options.txt ++++ b/meson_options.txt +@@ -28,3 +28,8 @@ option('gtk_doc', + option('installed_tests', + type: 'boolean', value: false, description: 'Enable installed tests' + ) ++ ++option('seccomp', ++ type: 'boolean', value: true, ++ description: 'add seccomp support' ++) +-- +2.23.0 + diff --git a/gnome-base/gnome-desktop/gnome-desktop-3.34.0.ebuild b/gnome-base/gnome-desktop/gnome-desktop-3.34.0.ebuild new file mode 100644 index 00000000..259eb8f2 --- /dev/null +++ b/gnome-base/gnome-desktop/gnome-desktop-3.34.0.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit gnome.org gnome2-utils meson virtualx xdg + +DESCRIPTION="Library with common API for various GNOME modules" +HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-desktop/" + +LICENSE="GPL-2+ FDL-1.1+ LGPL-2+" +SLOT="3/17" # subslot = libgnome-desktop-3 soname version +IUSE="debug doc +introspection gtk-doc seccomp udev" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris" + +# cairo[X] needed for gnome-bg +COMMON_DEPEND=" + app-text/iso-codes + >=dev-libs/glib-2.53.0:2 + >=x11-libs/gdk-pixbuf-2.36.5:2[introspection?] + >=x11-libs/gtk+-3.3.6:3[X,introspection?] + x11-libs/cairo:=[X] + x11-libs/libX11 + x11-misc/xkeyboard-config + >=gnome-base/gsettings-desktop-schemas-3.27.0 + introspection? ( >=dev-libs/gobject-introspection-0.9.7:= ) + seccomp? ( sys-libs/libseccomp ) + udev? ( + sys-apps/hwids + virtual/libudev:= ) +" +RDEPEND="${COMMON_DEPEND} + ! + + + + gnome@gentoo.org + Gentoo GNOME Desktop + +