[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/, x11-misc/xdg-utils/files/

2024-05-31 Thread Sam James
commit: 43a36b89fbd4f4a108e70381e80c6e261256f407
Author: Sam James  gentoo  org>
AuthorDate: Sat Jun  1 03:11:41 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jun  1 03:11:41 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43a36b89

x11-misc/xdg-utils: fix xdg-mime default regression

Closes: https://bugs.gentoo.org/931673
Signed-off-by: Sam James  gentoo.org>

 .../files/xdg-utils-1.2.1-xdg-mime-default.patch   | 143 +
 x11-misc/xdg-utils/xdg-utils-1.2.1-r2.ebuild   |  92 +
 2 files changed, 235 insertions(+)

diff --git a/x11-misc/xdg-utils/files/xdg-utils-1.2.1-xdg-mime-default.patch 
b/x11-misc/xdg-utils/files/xdg-utils-1.2.1-xdg-mime-default.patch
new file mode 100644
index ..8efcdca1cfef
--- /dev/null
+++ b/x11-misc/xdg-utils/files/xdg-utils-1.2.1-xdg-mime-default.patch
@@ -0,0 +1,143 @@
+https://gitlab.freedesktop.org/xdg/xdg-utils/-/issues/252
+https://gitlab.freedesktop.org/xdg/xdg-utils/-/commit/f113a8b997dcb9527b9694d31bddcfa05096aecf
+
+From f113a8b997dcb9527b9694d31bddcfa05096aecf Mon Sep 17 00:00:00 2001
+From: Slatian 
+Date: Tue, 21 May 2024 04:08:23 +
+Subject: [PATCH] Make the desktop_file_to_binary function less likely to fall
+ over and do something unexpected.
+
+* Uses a shell implementation ( !24) of `which` in the 
`desktop_file_to_binary` to avoid tripping over unexpected output from `command 
-v`
+* In addition it also makes the parsing a bit more standards compliant than it 
previously was.
+* Adds a developer script to easier test internal functions in the 
xdg-utils-common.in file
+
+Fixes: #252
+---
+ scripts/test-common-function | 13 
+ scripts/xdg-utils-common.in  | 64 +++-
+ 2 files changed, 68 insertions(+), 9 deletions(-)
+ create mode 100755 scripts/test-common-function
+
+diff --git a/scripts/test-common-function b/scripts/test-common-function
+new file mode 100755
+index 000..c8af98d
+--- /dev/null
 b/scripts/test-common-function
+@@ -0,0 +1,13 @@
++#!/bin/sh
++
++# This script is for testing internal functions of the xdg-utils-common.in 
file
++#
++# Example ./test-common-function xdg_which echo
++
++XDG_UTILS_DEBUG_LEVEL="${XDG_UTILS_DEBUG_LEVEL:-99}"
++
++. ./xdg-utils-common.in
++
++"$@"
++
++exit $?
+diff --git a/scripts/xdg-utils-common.in b/scripts/xdg-utils-common.in
+index f0a1aac..adab368 100644
+--- a/scripts/xdg-utils-common.in
 b/scripts/xdg-utils-common.in
+@@ -51,19 +51,24 @@ binary_to_desktop_file()
+ }
+ 
+ #-
+-# map a .desktop file to a binary
++# map a .desktop file name to its Exec binary
++# Returns the realpath resolved path to the binary or noting.
++
++# desktop_file_to_binary 
+ desktop_file_to_binary()
+ {
++DEBUG 1 "desktop_file_to_binary '$1'"
+ 
search="${XDG_DATA_HOME:-$HOME/.local/share}:${XDG_DATA_DIRS:-/usr/local/share:/usr/share}"
+ desktop="$(basename "$1")"
+ IFS=:
+ for dir in $search; do
++DEBUG 2 "Searching in '$dir/{applications,applnk}'"
+ unset IFS
+-[ "$dir" ] && [ -d "$dir/applications" ] || [ -d "$dir/applnk" ] || 
continue
++[ -n "$dir" ] && [ -d "$dir/applications" ] || [ -d "$dir/applnk" ] 
|| continue
+ # Check if desktop file contains -
+ if [ "${desktop#*-}" != "$desktop" ]; then
+-vendor=${desktop%-*}
+-app=${desktop#*-}
++vendor="${desktop%-*}"
++app="${desktop#*-}"
+ if [ -r "$dir/applications/$vendor/$app" ]; then
+ file_path="$dir/applications/$vendor/$app"
+ elif [ -r "$dir/applnk/$vendor/$app" ]; then
+@@ -72,18 +77,31 @@ desktop_file_to_binary()
+ fi
+ if test -z "$file_path" ; then
+ for indir in "$dir"/applications/ "$dir"/applications/*/ 
"$dir"/applnk/ "$dir"/applnk/*/; do
++  DEBUG 4 "Does file exist? '$indir/$desktop'"
+ file="$indir/$desktop"
+ if [ -r "$file" ]; then
+-file_path=$file
++file_path="$file"
+ break
+ fi
+ done
+ fi
+ if [ -r "$file_path" ]; then
+-# Remove any arguments (%F, %f, %U, %u, etc.).
+-command="$(grep -E "^Exec(\[[^]=]*])?=" "$file_path" | cut -d= -f 
2- | first_word)"
+-command="$(command -v "$command")"
+-xdg_realpath "$command"
++  DEBUG 2 "Checking desktop file '$file_path'"
++# Get the command name from the correct Exec
++# Note: Ignoring quoting and escape sequences here, see #253
++binary="$(awk -F '=' '
++  /^\[/{ in_entry=0 }
++  $0 == "[Desktop Entry]"{ in_entry=1 }
++  in_entry && /^Exec\s*=/ {
++  sub(/^\s+/,"",$2);
++  

[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2024-04-20 Thread Sam James
commit: d0d74a9678b1cc2e05d94007c8daa3a3de143523
Author: Sam James  gentoo  org>
AuthorDate: Sat Apr 20 23:53:13 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Apr 20 23:53:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0d74a96

x11-misc/xdg-utils: Stabilize 1.2.1-r1 arm64, #930333

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild
index 4870b68c84df..0513793f792f 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild
@@ -18,7 +18,7 @@ fi
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome X"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2024-04-20 Thread Sam James
commit: b1b8be716dc45594171a464ec1d0c0c5a33680b1
Author: Sam James  gentoo  org>
AuthorDate: Sat Apr 20 23:53:14 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Apr 20 23:53:14 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1b8be71

x11-misc/xdg-utils: Stabilize 1.2.1-r1 ppc64, #930333

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild
index 0513793f792f..74b50cca06a6 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild
@@ -18,7 +18,7 @@ fi
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome X"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2024-04-20 Thread Sam James
commit: 3af432fc733fc7a47fab2ec602ceac7065502edf
Author: Sam James  gentoo  org>
AuthorDate: Sat Apr 20 23:53:12 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Apr 20 23:53:12 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3af432fc

x11-misc/xdg-utils: Stabilize 1.2.1-r1 ppc, #930333

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild
index a15c91b25a4a..4870b68c84df 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild
@@ -18,7 +18,7 @@ fi
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome X"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2024-04-20 Thread Sam James
commit: ce3c7878cc98f7d77216f5d5d2904daf75c37fec
Author: Sam James  gentoo  org>
AuthorDate: Sat Apr 20 23:53:11 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Apr 20 23:53:11 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce3c7878

x11-misc/xdg-utils: Stabilize 1.2.1-r1 arm, #930333

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild
index 22400b0b32ab..a15c91b25a4a 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild
@@ -18,7 +18,7 @@ fi
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome X"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2024-04-20 Thread Sam James
commit: 817900fb9d75aa61dfe1600619226153b6767dfc
Author: Sam James  gentoo  org>
AuthorDate: Sat Apr 20 23:48:25 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Apr 20 23:48:25 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=817900fb

x11-misc/xdg-utils: Stabilize 1.2.1-r1 amd64, #930333

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild
index 71831feafa7e..6dd0f91d6746 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild
@@ -18,7 +18,7 @@ fi
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome X"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2024-04-20 Thread Sam James
commit: a5bb93b56bcf03102669782bb0e45b3a0934a984
Author: Sam James  gentoo  org>
AuthorDate: Sat Apr 20 23:48:26 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Apr 20 23:48:26 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5bb93b5

x11-misc/xdg-utils: Stabilize 1.2.1-r1 x86, #930333

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild
index 6dd0f91d6746..22400b0b32ab 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild
@@ -18,7 +18,7 @@ fi
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome X"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2024-04-20 Thread Arthur Zamarin
commit: 85da74c522b33222a7a6adba023775485f161b48
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sat Apr 20 17:38:41 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sat Apr 20 17:38:41 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85da74c5

x11-misc/xdg-utils: Stabilize 1.2.1-r1 sparc, #930333

Signed-off-by: Arthur Zamarin  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild
index ffa605d5f864..71831feafa7e 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild
@@ -18,7 +18,7 @@ fi
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome X"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2024-02-25 Thread Mike Gilbert
commit: f955680634efdc47b16d9e5049acdae902fb9b86
Author: Dale Showers  fictx  com>
AuthorDate: Sun Feb 18 14:38:12 2024 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Feb 25 16:54:18 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9556806

x11-misc/xdg-utils: X use flag for xprop,xset dependencies

Signed-off-by: Dale Showers  fictx.com>
Closes: https://github.com/gentoo/gentoo/pull/35411
Signed-off-by: Mike Gilbert  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild | 8 +---
 x11-misc/xdg-utils/xdg-utils-1.2.1.ebuild  | 8 +---
 2 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
index 561fb1c79f9c..3a49a042505a 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}"/xdg-utils-${MY_COMMIT}
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
-IUSE="dbus doc gnome"
+IUSE="dbus doc gnome X"
 REQUIRED_USE="gnome? ( dbus )"
 
 RDEPEND="
@@ -30,8 +30,10 @@ RDEPEND="
)
)
x11-misc/shared-mime-info
-   x11-apps/xprop
-   x11-apps/xset
+   X? (
+   x11-apps/xprop
+   x11-apps/xset
+   )
 "
 BDEPEND="
>=app-text/xmlto-0.0.28-r3[text(+)]

diff --git a/x11-misc/xdg-utils/xdg-utils-1.2.1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.2.1.ebuild
index 110d275dac9b..ffa605d5f864 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.2.1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.2.1.ebuild
@@ -19,7 +19,7 @@ fi
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
-IUSE="dbus doc gnome"
+IUSE="dbus doc gnome X"
 REQUIRED_USE="gnome? ( dbus )"
 
 RDEPEND="
@@ -33,8 +33,10 @@ RDEPEND="
)
)
x11-misc/shared-mime-info
-   x11-apps/xprop
-   x11-apps/xset
+   X? (
+   x11-apps/xprop
+   x11-apps/xset
+   )
 "
 BDEPEND="
>=app-text/xmlto-0.0.28-r3[text(+)]



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2024-02-25 Thread Mike Gilbert
commit: 2d109d48bad261d99d3253aa9d30934f7ee96e7a
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Feb 25 16:55:02 2024 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Feb 25 16:55:02 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d109d48

x11-misc/xdg-utils: revbump for previous change

Signed-off-by: Mike Gilbert  gentoo.org>

 ...ls-1.1.3_p20210805-r1.ebuild => xdg-utils-1.1.3_p20210805-r2.ebuild} | 2 +-
 .../xdg-utils/{xdg-utils-1.2.1.ebuild => xdg-utils-1.2.1-r1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r2.ebuild
similarity index 98%
rename from x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
rename to x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r2.ebuild
index 3a49a042505a..852bfc0c9eea 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8

diff --git a/x11-misc/xdg-utils/xdg-utils-1.2.1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild
similarity index 100%
rename from x11-misc/xdg-utils/xdg-utils-1.2.1.ebuild
rename to x11-misc/xdg-utils/xdg-utils-1.2.1-r1.ebuild



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2024-02-05 Thread Sam James
commit: b726baaa06035849738435866c21f44d207f832c
Author: Sam James  gentoo  org>
AuthorDate: Tue Feb  6 02:26:19 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Feb  6 02:26:19 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b726baaa

x11-misc/xdg-utils: add 1.2.1

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/Manifest   |  1 +
 x11-misc/xdg-utils/xdg-utils-1.2.1.ebuild | 86 +++
 2 files changed, 87 insertions(+)

diff --git a/x11-misc/xdg-utils/Manifest b/x11-misc/xdg-utils/Manifest
index cce0e8371457..12b264770be3 100644
--- a/x11-misc/xdg-utils/Manifest
+++ b/x11-misc/xdg-utils/Manifest
@@ -2,3 +2,4 @@ DIST xdg-utils-1.1.3_p20200220-no-which.patch.xz 5576 BLAKE2B 
cf8c3111689c355add
 DIST xdg-utils-1.1.3_p20210805.tar.bz2 287544 BLAKE2B 
ec3755e5e6f596c5787324ab254ba14938f35dda6df5a4ef88fb582c5df7704e706dee2f4362cc0597164cf2aeab5cf8f5f6db1b9d374355723e3d738e101264
 SHA512 
ec51e98e4c73ad7cb3c77051617a939c7956c7da6bcbbcda4e54121af247ce6978c8638c80bc644a49cfca14b18f06cb25747719bc20c97f7e60b9b4f3597a71
 DIST xdg-utils-1.2.0_beta1_p20231203.tar.bz2 291213 BLAKE2B 
65004e451f002175a1dd5c142f9be312e66b16917ea61e3e8a907c92c99aa7e8a0111951ef075830ac2b2a09e809778a91770c6021edd82174ff4eef2a72fca1
 SHA512 
a19750fa9b18dbad434134e7b336c622419a9e272d310e10cd711fca592ecd5b6ee4fe648222108ada463c18c103310d92b4ca209057ee0372414e9041f489de
 DIST xdg-utils-v1.2.0.tar.bz2 293400 BLAKE2B 
896678febecbb8dff8d272d0901b28692406fa11d97ab0c43c45d2097f18d95a38c44f4eacd7ce2b9e14bb52835009755d50232904958b57d260e8f9d84ce020
 SHA512 
6562d728c0eac50a650ed5917eab83259f340691d7e7b94e4a6c58f3068fd1b62cfabc38efd3e39a246001c689d2cb2f001cef93af8281e868a20a49282daf91
+DIST xdg-utils-v1.2.1.tar.bz2 293386 BLAKE2B 
9d6ce4be8c27ad5b8d0ae55ad0d8b4457b59cb1bd260884ca5bfd2cb8ed7ed68a2f5a8db6d660ceabab59cbb9880fd4f1a26cb71a8f759ec40c2f9f95bbc8a05
 SHA512 
d5436449fec2f4db952239ee910bfda203955c8df8cb92379f182dc36f9c82b6ceb092ccbebfd02ed00eb7ef5f6895ef745baca67906ae7490e425db27b1dbfc

diff --git a/x11-misc/xdg-utils/xdg-utils-1.2.1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.2.1.ebuild
new file mode 100644
index ..110d275dac9b
--- /dev/null
+++ b/x11-misc/xdg-utils/xdg-utils-1.2.1.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Portland utils for cross-platform/cross-toolkit/cross-desktop 
interoperability"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/xdg-utils/;
+if [[ ${PV} == *_p* ]] ; then
+   MY_COMMIT="d4f00e1d803038af4f245949d8c747a384117852"
+   
SRC_URI="https://gitlab.freedesktop.org/xdg/xdg-utils/-/archive/${MY_COMMIT}/${P}.tar.bz2;
+   S="${WORKDIR}"/xdg-utils-${MY_COMMIT}
+else
+   
SRC_URI="https://gitlab.freedesktop.org/xdg/xdg-utils/-/archive/v${PV}/${PN}-v${PV}.tar.bz2;
+   S="${WORKDIR}"/${PN}-v${PV}
+fi
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="dbus doc gnome"
+REQUIRED_USE="gnome? ( dbus )"
+
+RDEPEND="
+   dev-util/desktop-file-utils
+   dev-perl/File-MimeInfo
+   dbus? (
+   sys-apps/dbus
+   gnome? (
+   dev-perl/Net-DBus
+   dev-perl/X11-Protocol
+   )
+   )
+   x11-misc/shared-mime-info
+   x11-apps/xprop
+   x11-apps/xset
+"
+BDEPEND="
+   >=app-text/xmlto-0.0.28-r3[text(+)]
+   app-alternatives/awk
+"
+
+# Tests run random system programs, including interactive programs
+# that block forever
+RESTRICT="test"
+
+src_prepare() {
+   default
+
+   if [[ ${PV} == *_p* ]] ; then
+   # If you choose to do git snapshot instead of patchset, you 
need to remember
+   # to run `autoconf` in ./ and `make scripts-clean` in 
./scripts/ to refresh
+   # all the files
+   eautoreconf
+   fi
+}
+
+src_configure() {
+   export ac_cv_path_XMLTO="$(type -P xmlto) --skip-validation" #502166
+   default
+   emake -C scripts scripts-clean
+}
+
+src_install() {
+   default
+
+   dodoc RELEASE_NOTES
+
+   newdoc scripts/xsl/README README.xsl
+   use doc && dodoc -r scripts/html
+
+   # Install default XDG_DATA_DIRS, bug #264647
+   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/local/share\" > 30xdg-data-local || 
die
+   echo 'COLON_SEPARATED="XDG_DATA_DIRS XDG_CONFIG_DIRS"' >> 
30xdg-data-local || die
+   doenvd 30xdg-data-local
+
+   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/share\" > 90xdg-data-base || die
+   echo XDG_CONFIG_DIRS=\"${EPREFIX}/etc/xdg\" >> 90xdg-data-base || die
+   doenvd 90xdg-data-base
+}
+
+pkg_postinst() {
+   [[ -x $(type -P gtk-update-icon-cache) ]] \
+   || elog "Install dev-util/gtk-update-icon-cache for the 

[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/, x11-misc/xdg-utils/files/

2024-02-05 Thread Sam James
commit: d93c976e2edb91ef8a1524b81a224ae99e1cb036
Author: Sam James  gentoo  org>
AuthorDate: Tue Feb  6 02:26:41 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Feb  6 02:26:41 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d93c976e

x11-misc/xdg-utils: drop 1.2.0_beta1_p20231203, 1.2.0

1.2.1 is very similar, just use that.

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/Manifest|  2 -
 .../xdg-utils-1.2.0-xdg-icon-resource-syntax.patch | 21 -
 x11-misc/xdg-utils/xdg-utils-1.2.0.ebuild  | 90 --
 .../xdg-utils-1.2.0_beta1_p20231203.ebuild | 81 ---
 4 files changed, 194 deletions(-)

diff --git a/x11-misc/xdg-utils/Manifest b/x11-misc/xdg-utils/Manifest
index 12b264770be3..fcc0588cf220 100644
--- a/x11-misc/xdg-utils/Manifest
+++ b/x11-misc/xdg-utils/Manifest
@@ -1,5 +1,3 @@
 DIST xdg-utils-1.1.3_p20200220-no-which.patch.xz 5576 BLAKE2B 
cf8c3111689c355add2a0c16a887fd463dc2d00c267cac0561d4598430f043d19fea376859aa4ff521273ff788b4e8afdea5ef6e7b0ba51ffded23be2ad61335
 SHA512 
c30e512e8caae3f4d2282592722bc24e08cb33f5ec01d5504d2e49833c1598fe27807c095dc2226efca57dcbef4d2883fd9bfa46fb893c53f9880c050b51
 DIST xdg-utils-1.1.3_p20210805.tar.bz2 287544 BLAKE2B 
ec3755e5e6f596c5787324ab254ba14938f35dda6df5a4ef88fb582c5df7704e706dee2f4362cc0597164cf2aeab5cf8f5f6db1b9d374355723e3d738e101264
 SHA512 
ec51e98e4c73ad7cb3c77051617a939c7956c7da6bcbbcda4e54121af247ce6978c8638c80bc644a49cfca14b18f06cb25747719bc20c97f7e60b9b4f3597a71
-DIST xdg-utils-1.2.0_beta1_p20231203.tar.bz2 291213 BLAKE2B 
65004e451f002175a1dd5c142f9be312e66b16917ea61e3e8a907c92c99aa7e8a0111951ef075830ac2b2a09e809778a91770c6021edd82174ff4eef2a72fca1
 SHA512 
a19750fa9b18dbad434134e7b336c622419a9e272d310e10cd711fca592ecd5b6ee4fe648222108ada463c18c103310d92b4ca209057ee0372414e9041f489de
-DIST xdg-utils-v1.2.0.tar.bz2 293400 BLAKE2B 
896678febecbb8dff8d272d0901b28692406fa11d97ab0c43c45d2097f18d95a38c44f4eacd7ce2b9e14bb52835009755d50232904958b57d260e8f9d84ce020
 SHA512 
6562d728c0eac50a650ed5917eab83259f340691d7e7b94e4a6c58f3068fd1b62cfabc38efd3e39a246001c689d2cb2f001cef93af8281e868a20a49282daf91
 DIST xdg-utils-v1.2.1.tar.bz2 293386 BLAKE2B 
9d6ce4be8c27ad5b8d0ae55ad0d8b4457b59cb1bd260884ca5bfd2cb8ed7ed68a2f5a8db6d660ceabab59cbb9880fd4f1a26cb71a8f759ec40c2f9f95bbc8a05
 SHA512 
d5436449fec2f4db952239ee910bfda203955c8df8cb92379f182dc36f9c82b6ceb092ccbebfd02ed00eb7ef5f6895ef745baca67906ae7490e425db27b1dbfc

diff --git 
a/x11-misc/xdg-utils/files/xdg-utils-1.2.0-xdg-icon-resource-syntax.patch 
b/x11-misc/xdg-utils/files/xdg-utils-1.2.0-xdg-icon-resource-syntax.patch
deleted file mode 100644
index 272daad9073e..
--- a/x11-misc/xdg-utils/files/xdg-utils-1.2.0-xdg-icon-resource-syntax.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-https://gitlab.freedesktop.org/xdg/xdg-utils/-/commit/af2fe0d1dcbcd982d84ddf2bbd174afe90976ed9
-
-From af2fe0d1dcbcd982d84ddf2bbd174afe90976ed9 Mon Sep 17 00:00:00 2001
-From: Harald Sitter 
-Date: Tue, 30 Jan 2024 11:24:41 +0100
-Subject: [PATCH] xdg-icon-resource: unbreak syntax by removing stray grave
- accent
-
 a/scripts/xdg-icon-resource.in
-+++ b/scripts/xdg-icon-resource.in
-@@ -306,7 +306,7 @@ fi
- need_kde_icon_path()
- {
-   local path
--  path="$(xdg_realpath "$1")" 2> /dev/null` # Normalize path
-+  path="$(xdg_realpath "$1")" 2> /dev/null # Normalize path
-   DEBUG 2 "need_kde_icon_path $path"
-   if [ -z "$path" ] ; then
-  DEBUG 2 "need_kde_icon_path RETURN 1 (not needed, no xdg icon dir)"
--- 
-GitLab

diff --git a/x11-misc/xdg-utils/xdg-utils-1.2.0.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.2.0.ebuild
deleted file mode 100644
index 0332fe3c66b7..
--- a/x11-misc/xdg-utils/xdg-utils-1.2.0.ebuild
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="Portland utils for cross-platform/cross-toolkit/cross-desktop 
interoperability"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/xdg-utils/;
-if [[ ${PV} == *_p* ]] ; then
-   MY_COMMIT="d4f00e1d803038af4f245949d8c747a384117852"
-   
SRC_URI="https://gitlab.freedesktop.org/xdg/xdg-utils/-/archive/${MY_COMMIT}/${P}.tar.bz2;
-   S="${WORKDIR}"/xdg-utils-${MY_COMMIT}
-else
-   
SRC_URI="https://gitlab.freedesktop.org/xdg/xdg-utils/-/archive/v${PV}/${PN}-v${PV}.tar.bz2;
-   S="${WORKDIR}"/${PN}-v${PV}
-fi
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
-IUSE="dbus doc gnome"
-REQUIRED_USE="gnome? ( dbus )"
-
-RDEPEND="
-   dev-util/desktop-file-utils
-   dev-perl/File-MimeInfo
-   dbus? (
-   sys-apps/dbus
-   gnome? (
-   dev-perl/Net-DBus
-   dev-perl/X11-Protocol
-   )
- 

[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/files/, x11-misc/xdg-utils/

2024-01-30 Thread Sam James
commit: 0400d10e939ff3cc16cc7810df1cfe6daf7aff11
Author: Sam James  gentoo  org>
AuthorDate: Tue Jan 30 21:36:49 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jan 30 21:36:49 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0400d10e

x11-misc/xdg-utils: add 1.2.0

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/Manifest|  1 +
 .../xdg-utils-1.2.0-xdg-icon-resource-syntax.patch | 21 +
 x11-misc/xdg-utils/xdg-utils-1.2.0.ebuild  | 90 ++
 3 files changed, 112 insertions(+)

diff --git a/x11-misc/xdg-utils/Manifest b/x11-misc/xdg-utils/Manifest
index e81a7598b77a..cce0e8371457 100644
--- a/x11-misc/xdg-utils/Manifest
+++ b/x11-misc/xdg-utils/Manifest
@@ -1,3 +1,4 @@
 DIST xdg-utils-1.1.3_p20200220-no-which.patch.xz 5576 BLAKE2B 
cf8c3111689c355add2a0c16a887fd463dc2d00c267cac0561d4598430f043d19fea376859aa4ff521273ff788b4e8afdea5ef6e7b0ba51ffded23be2ad61335
 SHA512 
c30e512e8caae3f4d2282592722bc24e08cb33f5ec01d5504d2e49833c1598fe27807c095dc2226efca57dcbef4d2883fd9bfa46fb893c53f9880c050b51
 DIST xdg-utils-1.1.3_p20210805.tar.bz2 287544 BLAKE2B 
ec3755e5e6f596c5787324ab254ba14938f35dda6df5a4ef88fb582c5df7704e706dee2f4362cc0597164cf2aeab5cf8f5f6db1b9d374355723e3d738e101264
 SHA512 
ec51e98e4c73ad7cb3c77051617a939c7956c7da6bcbbcda4e54121af247ce6978c8638c80bc644a49cfca14b18f06cb25747719bc20c97f7e60b9b4f3597a71
 DIST xdg-utils-1.2.0_beta1_p20231203.tar.bz2 291213 BLAKE2B 
65004e451f002175a1dd5c142f9be312e66b16917ea61e3e8a907c92c99aa7e8a0111951ef075830ac2b2a09e809778a91770c6021edd82174ff4eef2a72fca1
 SHA512 
a19750fa9b18dbad434134e7b336c622419a9e272d310e10cd711fca592ecd5b6ee4fe648222108ada463c18c103310d92b4ca209057ee0372414e9041f489de
+DIST xdg-utils-v1.2.0.tar.bz2 293400 BLAKE2B 
896678febecbb8dff8d272d0901b28692406fa11d97ab0c43c45d2097f18d95a38c44f4eacd7ce2b9e14bb52835009755d50232904958b57d260e8f9d84ce020
 SHA512 
6562d728c0eac50a650ed5917eab83259f340691d7e7b94e4a6c58f3068fd1b62cfabc38efd3e39a246001c689d2cb2f001cef93af8281e868a20a49282daf91

diff --git 
a/x11-misc/xdg-utils/files/xdg-utils-1.2.0-xdg-icon-resource-syntax.patch 
b/x11-misc/xdg-utils/files/xdg-utils-1.2.0-xdg-icon-resource-syntax.patch
new file mode 100644
index ..272daad9073e
--- /dev/null
+++ b/x11-misc/xdg-utils/files/xdg-utils-1.2.0-xdg-icon-resource-syntax.patch
@@ -0,0 +1,21 @@
+https://gitlab.freedesktop.org/xdg/xdg-utils/-/commit/af2fe0d1dcbcd982d84ddf2bbd174afe90976ed9
+
+From af2fe0d1dcbcd982d84ddf2bbd174afe90976ed9 Mon Sep 17 00:00:00 2001
+From: Harald Sitter 
+Date: Tue, 30 Jan 2024 11:24:41 +0100
+Subject: [PATCH] xdg-icon-resource: unbreak syntax by removing stray grave
+ accent
+
+--- a/scripts/xdg-icon-resource.in
 b/scripts/xdg-icon-resource.in
+@@ -306,7 +306,7 @@ fi
+ need_kde_icon_path()
+ {
+   local path
+-  path="$(xdg_realpath "$1")" 2> /dev/null` # Normalize path
++  path="$(xdg_realpath "$1")" 2> /dev/null # Normalize path
+   DEBUG 2 "need_kde_icon_path $path"
+   if [ -z "$path" ] ; then
+  DEBUG 2 "need_kde_icon_path RETURN 1 (not needed, no xdg icon dir)"
+-- 
+GitLab

diff --git a/x11-misc/xdg-utils/xdg-utils-1.2.0.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.2.0.ebuild
new file mode 100644
index ..0332fe3c66b7
--- /dev/null
+++ b/x11-misc/xdg-utils/xdg-utils-1.2.0.ebuild
@@ -0,0 +1,90 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Portland utils for cross-platform/cross-toolkit/cross-desktop 
interoperability"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/xdg-utils/;
+if [[ ${PV} == *_p* ]] ; then
+   MY_COMMIT="d4f00e1d803038af4f245949d8c747a384117852"
+   
SRC_URI="https://gitlab.freedesktop.org/xdg/xdg-utils/-/archive/${MY_COMMIT}/${P}.tar.bz2;
+   S="${WORKDIR}"/xdg-utils-${MY_COMMIT}
+else
+   
SRC_URI="https://gitlab.freedesktop.org/xdg/xdg-utils/-/archive/v${PV}/${PN}-v${PV}.tar.bz2;
+   S="${WORKDIR}"/${PN}-v${PV}
+fi
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="dbus doc gnome"
+REQUIRED_USE="gnome? ( dbus )"
+
+RDEPEND="
+   dev-util/desktop-file-utils
+   dev-perl/File-MimeInfo
+   dbus? (
+   sys-apps/dbus
+   gnome? (
+   dev-perl/Net-DBus
+   dev-perl/X11-Protocol
+   )
+   )
+   x11-misc/shared-mime-info
+   x11-apps/xprop
+   x11-apps/xset
+"
+BDEPEND="
+   >=app-text/xmlto-0.0.28-r3[text(+)]
+   app-alternatives/awk
+"
+
+# Tests run random system programs, including interactive programs
+# that block forever
+RESTRICT="test"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-xdg-icon-resource-syntax.patch
+)
+
+src_prepare() {
+   default
+
+   if [[ ${PV} == *_p* ]] ; then
+   # If you 

[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2023-12-23 Thread Sam James
commit: 307f4623d8e7e05fd1c06ac4949f9dac7988cbb2
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 23 16:15:19 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 23 16:20:02 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=307f4623

x11-misc/xdg-utils: add 1.2.0_beta1_p20231203

Some of the fixes herein are needed for Plasma 6. It's currently recommended
that a snapshot be taken for preparedness as a release has not yet been made,
although progress is being made slowly.

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/Manifest|  1 +
 .../xdg-utils-1.2.0_beta1_p20231203.ebuild | 81 ++
 2 files changed, 82 insertions(+)

diff --git a/x11-misc/xdg-utils/Manifest b/x11-misc/xdg-utils/Manifest
index a362143699c1..e81a7598b77a 100644
--- a/x11-misc/xdg-utils/Manifest
+++ b/x11-misc/xdg-utils/Manifest
@@ -1,2 +1,3 @@
 DIST xdg-utils-1.1.3_p20200220-no-which.patch.xz 5576 BLAKE2B 
cf8c3111689c355add2a0c16a887fd463dc2d00c267cac0561d4598430f043d19fea376859aa4ff521273ff788b4e8afdea5ef6e7b0ba51ffded23be2ad61335
 SHA512 
c30e512e8caae3f4d2282592722bc24e08cb33f5ec01d5504d2e49833c1598fe27807c095dc2226efca57dcbef4d2883fd9bfa46fb893c53f9880c050b51
 DIST xdg-utils-1.1.3_p20210805.tar.bz2 287544 BLAKE2B 
ec3755e5e6f596c5787324ab254ba14938f35dda6df5a4ef88fb582c5df7704e706dee2f4362cc0597164cf2aeab5cf8f5f6db1b9d374355723e3d738e101264
 SHA512 
ec51e98e4c73ad7cb3c77051617a939c7956c7da6bcbbcda4e54121af247ce6978c8638c80bc644a49cfca14b18f06cb25747719bc20c97f7e60b9b4f3597a71
+DIST xdg-utils-1.2.0_beta1_p20231203.tar.bz2 291213 BLAKE2B 
65004e451f002175a1dd5c142f9be312e66b16917ea61e3e8a907c92c99aa7e8a0111951ef075830ac2b2a09e809778a91770c6021edd82174ff4eef2a72fca1
 SHA512 
a19750fa9b18dbad434134e7b336c622419a9e272d310e10cd711fca592ecd5b6ee4fe648222108ada463c18c103310d92b4ca209057ee0372414e9041f489de

diff --git a/x11-misc/xdg-utils/xdg-utils-1.2.0_beta1_p20231203.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.2.0_beta1_p20231203.ebuild
new file mode 100644
index ..2e2d0e72ceea
--- /dev/null
+++ b/x11-misc/xdg-utils/xdg-utils-1.2.0_beta1_p20231203.ebuild
@@ -0,0 +1,81 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+MY_COMMIT="d4f00e1d803038af4f245949d8c747a384117852"
+DESCRIPTION="Portland utils for cross-platform/cross-toolkit/cross-desktop 
interoperability"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/xdg-utils/;
+SRC_URI="https://gitlab.freedesktop.org/xdg/xdg-utils/-/archive/${MY_COMMIT}/${P}.tar.bz2;
+S="${WORKDIR}"/xdg-utils-${MY_COMMIT}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="dbus doc gnome"
+REQUIRED_USE="gnome? ( dbus )"
+
+RDEPEND="
+   dev-util/desktop-file-utils
+   dev-perl/File-MimeInfo
+   dbus? (
+   sys-apps/dbus
+   gnome? (
+   dev-perl/Net-DBus
+   dev-perl/X11-Protocol
+   )
+   )
+   x11-misc/shared-mime-info
+   x11-apps/xprop
+   x11-apps/xset
+"
+BDEPEND="
+   >=app-text/xmlto-0.0.28-r3[text(+)]
+   app-alternatives/awk
+"
+
+# Tests run random system programs, including interactive programs
+# that block forever
+RESTRICT="test"
+
+src_prepare() {
+   default
+
+   if [[ ${PV} == *_p* ]] ; then
+   # If you choose to do git snapshot instead of patchset, you 
need to remember
+   # to run `autoconf` in ./ and `make scripts-clean` in 
./scripts/ to refresh
+   # all the files
+   eautoreconf
+   fi
+}
+
+src_configure() {
+   export ac_cv_path_XMLTO="$(type -P xmlto) --skip-validation" #502166
+   default
+   emake -C scripts scripts-clean
+}
+
+src_install() {
+   default
+
+   dodoc RELEASE_NOTES
+
+   newdoc scripts/xsl/README README.xsl
+   use doc && dodoc -r scripts/html
+
+   # Install default XDG_DATA_DIRS, bug #264647
+   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/local/share\" > 30xdg-data-local || 
die
+   echo 'COLON_SEPARATED="XDG_DATA_DIRS XDG_CONFIG_DIRS"' >> 
30xdg-data-local || die
+   doenvd 30xdg-data-local
+
+   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/share\" > 90xdg-data-base || die
+   echo XDG_CONFIG_DIRS=\"${EPREFIX}/etc/xdg\" >> 90xdg-data-base || die
+   doenvd 90xdg-data-base
+}
+
+pkg_postinst() {
+   [[ -x $(type -P gtk-update-icon-cache) ]] \
+   || elog "Install dev-util/gtk-update-icon-cache for the 
gtk-update-icon-cache command."
+}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2022-12-24 Thread Sam James
commit: 6cecc89265e170d74d5d20da88f78d26c614daba
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 24 08:29:45 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 24 08:29:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cecc892

x11-misc/xdg-utils: drop 1.1.3_p20210805

Signed-off-by: Sam James  gentoo.org>

 .../xdg-utils/xdg-utils-1.1.3_p20210805.ebuild | 85 --
 1 file changed, 85 deletions(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
deleted file mode 100644
index 930cb3204f98..
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-MY_COMMIT="1a58bc28f6844898532daf9ee1bf6da7764955a9"
-DESCRIPTION="Portland utils for cross-platform/cross-toolkit/cross-desktop 
interoperability"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/xdg-utils/;
-SRC_URI="https://gitlab.freedesktop.org/xdg/xdg-utils/-/archive/${MY_COMMIT}/${P}.tar.bz2;
-# https://gitlab.freedesktop.org/xdg/xdg-utils/-/merge_requests/24
-SRC_URI+=" 
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${PN}-1.1.3_p20200220-no-which.patch.xz;
-S="${WORKDIR}"/xdg-utils-${MY_COMMIT}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
-IUSE="dbus doc gnome"
-REQUIRED_USE="gnome? ( dbus )"
-
-RDEPEND="
-   dev-util/desktop-file-utils
-   dev-perl/File-MimeInfo
-   dbus? (
-   sys-apps/dbus
-   gnome? (
-   dev-perl/Net-DBus
-   dev-perl/X11-Protocol
-   )
-   )
-   x11-misc/shared-mime-info
-   x11-apps/xprop
-   x11-apps/xset
-"
-BDEPEND="
-   >=app-text/xmlto-0.0.28-r3[text(+)]
-   app-alternatives/awk
-"
-
-DOCS=( ChangeLog README RELEASE_NOTES TODO )
-
-# Tests run random system programs, including interactive programs
-# that block forever
-RESTRICT="test"
-
-PATCHES=(
-   "${WORKDIR}"/${PN}-1.1.3_p20200220-no-which.patch
-)
-
-src_prepare() {
-   default
-
-   # If you choose to do git snapshot instead of patchset, you need to 
remember
-   # to run `autoconf` in ./ and `make scripts-clean` in ./scripts/ to 
refresh
-   # all the files
-   eautoreconf
-}
-
-src_configure() {
-   export ac_cv_path_XMLTO="$(type -P xmlto) --skip-validation" #502166
-   default
-   emake -C scripts scripts-clean
-}
-
-src_install() {
-   default
-
-   newdoc scripts/xsl/README README.xsl
-   use doc && dodoc -r scripts/html
-
-   # Install default XDG_DATA_DIRS, bug #264647
-   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/local/share\" > 30xdg-data-local
-   echo 'COLON_SEPARATED="XDG_DATA_DIRS XDG_CONFIG_DIRS"' >> 
30xdg-data-local
-   doenvd 30xdg-data-local
-
-   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/share\" > 90xdg-data-base
-   echo XDG_CONFIG_DIRS=\"${EPREFIX}/etc/xdg\" >> 90xdg-data-base
-   doenvd 90xdg-data-base
-}
-
-pkg_postinst() {
-   [[ -x $(type -P gtk-update-icon-cache) ]] \
-   || elog "Install dev-util/gtk-update-icon-cache for the 
gtk-update-icon-cache command."
-}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2022-12-24 Thread Sam James
commit: 5fd0dbd0e05de0962e83a969fc182add2a3b732f
Author: Sam James  gentoo  org>
AuthorDate: Sat Dec 24 08:30:02 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Dec 24 08:30:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fd0dbd0

x11-misc/xdg-utils: add freedesktop-gitlab upstream metadata

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/x11-misc/xdg-utils/metadata.xml b/x11-misc/xdg-utils/metadata.xml
index d4390c2eb58e..e44a98a0f124 100644
--- a/x11-misc/xdg-utils/metadata.xml
+++ b/x11-misc/xdg-utils/metadata.xml
@@ -4,4 +4,7 @@

freedesktop-b...@gentoo.org

+   
+   xdg/xdg-utils
+   
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2022-12-13 Thread Sam James
commit: 48d4f65c93c7bc713f43bcb4ffb4cb6a9930c48d
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 13 17:34:57 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 13 17:34:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48d4f65c

x11-misc/xdg-utils: Stabilize 1.1.3_p20210805-r1 ppc64, #885751

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
index 08e0c719ab07..25aae7a501af 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/xdg-utils-${MY_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2022-12-13 Thread Sam James
commit: 890827a2c4ff05410d26927e8f841074e5191a0d
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 13 17:35:01 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 13 17:35:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=890827a2

x11-misc/xdg-utils: Stabilize 1.1.3_p20210805-r1 sparc, #885751

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
index 27373c4b23c6..b377902c6ec0 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/xdg-utils-${MY_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2022-12-13 Thread Sam James
commit: 86cf56ba87c0c27ad300f7f1744c4ae5d1162093
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 13 17:35:00 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 13 17:35:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86cf56ba

x11-misc/xdg-utils: Stabilize 1.1.3_p20210805-r1 x86, #885751

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
index 9d4299943723..27373c4b23c6 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/xdg-utils-${MY_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2022-12-13 Thread Sam James
commit: c74571a442e98de9cd85052b6bd867ce53257df5
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 13 17:34:55 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 13 17:34:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c74571a4

x11-misc/xdg-utils: Stabilize 1.1.3_p20210805-r1 ppc, #885751

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
index 7aec38025c3e..08e0c719ab07 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/xdg-utils-${MY_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2022-12-13 Thread Sam James
commit: c16ed0daa0c5f7859359491411ae1762ee134397
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 13 17:35:02 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 13 17:35:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c16ed0da

x11-misc/xdg-utils: Stabilize 1.1.3_p20210805-r1 amd64, #885751

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
index b377902c6ec0..561fb1c79f9c 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/xdg-utils-${MY_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2022-12-13 Thread Sam James
commit: 54771455d3025f01ae708716d97c3d4c4ca6
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 13 17:34:58 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 13 17:34:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54771455

x11-misc/xdg-utils: Stabilize 1.1.3_p20210805-r1 arm, #885751

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
index 25aae7a501af..e1e396fb1d29 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/xdg-utils-${MY_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2022-12-13 Thread Sam James
commit: 5b4a30fbf23c0f0176c9785a8e20a134262897e7
Author: Sam James  gentoo  org>
AuthorDate: Tue Dec 13 17:34:59 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Dec 13 17:34:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b4a30fb

x11-misc/xdg-utils: Stabilize 1.1.3_p20210805-r1 arm64, #885751

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
index e1e396fb1d29..9d4299943723 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/xdg-utils-${MY_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/, x11-misc/xdg-utils/files/

2022-12-04 Thread Pacho Ramos
commit: 26c9331be2f01733984f7f46720bd517772df369
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Dec  4 14:41:16 2022 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Dec  4 14:49:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26c9331b

x11-misc/xdg-utils: Don't use egrep

Closes: https://bugs.gentoo.org/883589
Thanks-to: Hanno Böck
Signed-off-by: Pacho Ramos  gentoo.org>

 x11-misc/xdg-utils/files/xdg-utils-egrep.patch | 25 +++
 .../xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild  | 87 ++
 2 files changed, 112 insertions(+)

diff --git a/x11-misc/xdg-utils/files/xdg-utils-egrep.patch 
b/x11-misc/xdg-utils/files/xdg-utils-egrep.patch
new file mode 100644
index ..71608552a08b
--- /dev/null
+++ b/x11-misc/xdg-utils/files/xdg-utils-egrep.patch
@@ -0,0 +1,25 @@
+From 7538458c6c8999296a272c40bd4ec24132a51877 Mon Sep 17 00:00:00 2001
+From: E5ten 
+Date: Thu, 16 Jan 2020 02:06:09 +
+Subject: [PATCH] switch from non-standard "egrep" to POSIX "grep -E"
+
+---
+ scripts/xdg-open.in | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/scripts/xdg-open.in b/scripts/xdg-open.in
+index 202f3e3..35b0522 100644
+--- a/scripts/xdg-open.in
 b/scripts/xdg-open.in
+@@ -72,7 +72,7 @@ get_key()
+ is_file_url_or_path()
+ {
+ if echo "$1" | grep -q '^file://' \
+-|| ! echo "$1" | egrep -q 
'^[[:alpha:]][[:alpha:][:digit:]+\.\-]*:'; then
++|| ! echo "$1" | grep -Eq 
'^[[:alpha:]][[:alpha:][:digit:]+\.\-]*:'; then
+ return 0
+ else
+ return 1
+-- 
+GitLab
+

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
new file mode 100644
index ..7aec38025c3e
--- /dev/null
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805-r1.ebuild
@@ -0,0 +1,87 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+MY_COMMIT="1a58bc28f6844898532daf9ee1bf6da7764955a9"
+DESCRIPTION="Portland utils for cross-platform/cross-toolkit/cross-desktop 
interoperability"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/xdg-utils/;
+SRC_URI="https://gitlab.freedesktop.org/xdg/xdg-utils/-/archive/${MY_COMMIT}/${P}.tar.bz2;
+# https://gitlab.freedesktop.org/xdg/xdg-utils/-/merge_requests/24
+SRC_URI+=" 
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${PN}-1.1.3_p20200220-no-which.patch.xz;
+S="${WORKDIR}"/xdg-utils-${MY_COMMIT}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="dbus doc gnome"
+REQUIRED_USE="gnome? ( dbus )"
+
+RDEPEND="
+   dev-util/desktop-file-utils
+   dev-perl/File-MimeInfo
+   dbus? (
+   sys-apps/dbus
+   gnome? (
+   dev-perl/Net-DBus
+   dev-perl/X11-Protocol
+   )
+   )
+   x11-misc/shared-mime-info
+   x11-apps/xprop
+   x11-apps/xset
+"
+BDEPEND="
+   >=app-text/xmlto-0.0.28-r3[text(+)]
+   app-alternatives/awk
+"
+
+DOCS=( ChangeLog README RELEASE_NOTES TODO )
+
+# Tests run random system programs, including interactive programs
+# that block forever
+RESTRICT="test"
+
+PATCHES=(
+   "${WORKDIR}"/${PN}-1.1.3_p20200220-no-which.patch
+   # https://gitlab.freedesktop.org/xdg/xdg-utils/-/merge_requests/21
+   "${FILESDIR}"/${PN}-egrep.patch
+)
+
+src_prepare() {
+   default
+
+   # If you choose to do git snapshot instead of patchset, you need to 
remember
+   # to run `autoconf` in ./ and `make scripts-clean` in ./scripts/ to 
refresh
+   # all the files
+   eautoreconf
+}
+
+src_configure() {
+   export ac_cv_path_XMLTO="$(type -P xmlto) --skip-validation" #502166
+   default
+   emake -C scripts scripts-clean
+}
+
+src_install() {
+   default
+
+   newdoc scripts/xsl/README README.xsl
+   use doc && dodoc -r scripts/html
+
+   # Install default XDG_DATA_DIRS, bug #264647
+   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/local/share\" > 30xdg-data-local
+   echo 'COLON_SEPARATED="XDG_DATA_DIRS XDG_CONFIG_DIRS"' >> 
30xdg-data-local
+   doenvd 30xdg-data-local
+
+   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/share\" > 90xdg-data-base
+   echo XDG_CONFIG_DIRS=\"${EPREFIX}/etc/xdg\" >> 90xdg-data-base
+   doenvd 90xdg-data-base
+}
+
+pkg_postinst() {
+   [[ -x $(type -P gtk-update-icon-cache) ]] \
+   || elog "Install dev-util/gtk-update-icon-cache for the 
gtk-update-icon-cache command."
+}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2022-12-04 Thread Pacho Ramos
commit: e54377798ffe6c4370843fdcb162c2f29b7135e5
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Dec  4 14:41:57 2022 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Dec  4 14:49:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5437779

x11-misc/xdg-utils: drop 1.1.3_p20200220-r5

Signed-off-by: Pacho Ramos  gentoo.org>

 x11-misc/xdg-utils/Manifest|  1 -
 .../xdg-utils/xdg-utils-1.1.3_p20200220-r5.ebuild  | 78 --
 2 files changed, 79 deletions(-)

diff --git a/x11-misc/xdg-utils/Manifest b/x11-misc/xdg-utils/Manifest
index 4bcf0300d166..a362143699c1 100644
--- a/x11-misc/xdg-utils/Manifest
+++ b/x11-misc/xdg-utils/Manifest
@@ -1,3 +1,2 @@
 DIST xdg-utils-1.1.3_p20200220-no-which.patch.xz 5576 BLAKE2B 
cf8c3111689c355add2a0c16a887fd463dc2d00c267cac0561d4598430f043d19fea376859aa4ff521273ff788b4e8afdea5ef6e7b0ba51ffded23be2ad61335
 SHA512 
c30e512e8caae3f4d2282592722bc24e08cb33f5ec01d5504d2e49833c1598fe27807c095dc2226efca57dcbef4d2883fd9bfa46fb893c53f9880c050b51
-DIST xdg-utils-1.1.3_p20200220.tar.bz2 287080 BLAKE2B 
eb9067527d5073f290d10ad36bcda24d4b813f3c98776b57955a7f254956795c26f1536c858ac104259f68f755746976d2cfc3aeccb9b9b35eaca5ea5eb89806
 SHA512 
8445109e87fb9e92edeebbf6b07a41b79344bc5016eb7224f5f2b7e599c6d075363337c81dd2ddf8f3007c633debba7f814631188c02db3ae002f622b4c323ec
 DIST xdg-utils-1.1.3_p20210805.tar.bz2 287544 BLAKE2B 
ec3755e5e6f596c5787324ab254ba14938f35dda6df5a4ef88fb582c5df7704e706dee2f4362cc0597164cf2aeab5cf8f5f6db1b9d374355723e3d738e101264
 SHA512 
ec51e98e4c73ad7cb3c77051617a939c7956c7da6bcbbcda4e54121af247ce6978c8638c80bc644a49cfca14b18f06cb25747719bc20c97f7e60b9b4f3597a71

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r5.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r5.ebuild
deleted file mode 100644
index 1ec5697fd2d0..
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r5.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit autotools
-
-EGIT_COMMIT="9816ebb3e6fd9f23e993b8b7fcbd56f92d9c9197"
-DESCRIPTION="Portland utils for cross-platform/cross-toolkit/cross-desktop 
interoperability"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/xdg-utils/;
-SRC_URI="
-   
https://gitlab.freedesktop.org/xdg/xdg-utils/-/archive/${EGIT_COMMIT}/${P}.tar.bz2;
-S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
-IUSE="dbus doc gnome"
-REQUIRED_USE="gnome? ( dbus )"
-
-RDEPEND="
-   dev-util/desktop-file-utils
-   dev-perl/File-MimeInfo
-   dbus? (
-   sys-apps/dbus
-   gnome? (
-   dev-perl/Net-DBus
-   dev-perl/X11-Protocol
-   )
-   )
-   x11-misc/shared-mime-info
-   x11-apps/xprop
-   x11-apps/xset
-"
-BDEPEND="
-   >=app-text/xmlto-0.0.28-r3[text(+)]
-   app-alternatives/awk
-"
-
-DOCS=( ChangeLog README RELEASE_NOTES TODO )
-
-# Tests run random system programs, including interactive programs
-# that block forever
-RESTRICT="test"
-
-src_prepare() {
-   default
-   # If you choose to do git snapshot instead of patchset, you need to 
remember
-   # to run `autoconf` in ./ and `make scripts-clean` in ./scripts/ to 
refresh
-   # all the files
-   eautoreconf
-}
-
-src_configure() {
-   export ac_cv_path_XMLTO="$(type -P xmlto) --skip-validation" #502166
-   default
-   emake -C scripts scripts-clean
-}
-
-src_install() {
-   default
-
-   newdoc scripts/xsl/README README.xsl
-   use doc && dodoc -r scripts/html
-
-   # Install default XDG_DATA_DIRS, bug #264647
-   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/local/share\" > 30xdg-data-local
-   echo 'COLON_SEPARATED="XDG_DATA_DIRS XDG_CONFIG_DIRS"' >> 
30xdg-data-local
-   doenvd 30xdg-data-local
-
-   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/share\" > 90xdg-data-base
-   echo XDG_CONFIG_DIRS=\"${EPREFIX}/etc/xdg\" >> 90xdg-data-base
-   doenvd 90xdg-data-base
-}
-
-pkg_postinst() {
-   [[ -x $(type -P gtk-update-icon-cache) ]] \
-   || elog "Install dev-util/gtk-update-icon-cache for the 
gtk-update-icon-cache command."
-}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2022-08-31 Thread Jakov Smolić
commit: 9760cdc735a904fa609daa3b4f33a063b066a68c
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Aug 31 06:57:59 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Aug 31 06:57:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9760cdc7

x11-misc/xdg-utils: Stabilize 1.1.3_p20210805 ppc64, #867607

Signed-off-by: Jakov Smolić  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
index 76808930bf26..baa74ea8d11d 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/xdg-utils-${MY_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2022-08-31 Thread Jakov Smolić
commit: 60d9805ec158931f7e4add844d9e3fa25c423421
Author: Jakov Smolić  gentoo  org>
AuthorDate: Wed Aug 31 06:32:46 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Wed Aug 31 06:32:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60d9805e

x11-misc/xdg-utils: Stabilize 1.1.3_p20210805 ppc, #867607

Signed-off-by: Jakov Smolić  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
index 87c4b5487f19..76808930bf26 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/xdg-utils-${MY_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2022-08-30 Thread Arthur Zamarin
commit: ba028168678845fc30d34e3696b43199a3eb7682
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Wed Aug 31 05:12:28 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Wed Aug 31 05:12:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba028168

x11-misc/xdg-utils: Stabilize 1.1.3_p20210805 arm64, #867607

Signed-off-by: Arthur Zamarin  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
index 8dda4d7e4bfc..87c4b5487f19 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/xdg-utils-${MY_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2022-08-30 Thread Sam James
commit: 03708cc2644792696f2e373a1aa21ce754f92bff
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 31 02:50:31 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 31 02:50:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03708cc2

x11-misc/xdg-utils: Stabilize 1.1.3_p20210805 sparc, #867607

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
index 1662ad62ef1f..8dda4d7e4bfc 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/xdg-utils-${MY_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2022-08-30 Thread Sam James
commit: ec406ea2ab724c653b44b8bc20d32811f67e4b7c
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 31 02:49:41 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 31 02:49:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec406ea2

x11-misc/xdg-utils: Stabilize 1.1.3_p20210805 arm, #867607

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
index ef2a4712677c..1662ad62ef1f 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/xdg-utils-${MY_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2022-08-30 Thread Sam James
commit: 2aa0a449e4872ff794187857f8df5ebd0721e952
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 31 02:46:50 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 31 02:46:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2aa0a449

x11-misc/xdg-utils: Stabilize 1.1.3_p20210805 x86, #867607

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
index f942657e8390..ef2a4712677c 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/xdg-utils-${MY_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2022-08-30 Thread Sam James
commit: b39d02035bbba814f53cf568b770d244290b195b
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 31 02:46:04 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 31 02:46:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b39d0203

x11-misc/xdg-utils: Stabilize 1.1.3_p20210805 amd64, #867607

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
index db26c50443bd..f942657e8390 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/xdg-utils-${MY_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2022-05-16 Thread Sam James
commit: 2f48953defaec0a1e125e28372e30dadfe082130
Author: Sam James  gentoo  org>
AuthorDate: Mon May 16 23:31:41 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Mon May 16 23:38:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f48953d

x11-misc/xdg-utils: add 1.1.3_p20210805

Add patch to avoid needing sys-apps/which at runtime.

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/Manifest|  2 +
 .../xdg-utils/xdg-utils-1.1.3_p20210805.ebuild | 85 ++
 2 files changed, 87 insertions(+)

diff --git a/x11-misc/xdg-utils/Manifest b/x11-misc/xdg-utils/Manifest
index 5dc536bc22fe..4bcf0300d166 100644
--- a/x11-misc/xdg-utils/Manifest
+++ b/x11-misc/xdg-utils/Manifest
@@ -1 +1,3 @@
+DIST xdg-utils-1.1.3_p20200220-no-which.patch.xz 5576 BLAKE2B 
cf8c3111689c355add2a0c16a887fd463dc2d00c267cac0561d4598430f043d19fea376859aa4ff521273ff788b4e8afdea5ef6e7b0ba51ffded23be2ad61335
 SHA512 
c30e512e8caae3f4d2282592722bc24e08cb33f5ec01d5504d2e49833c1598fe27807c095dc2226efca57dcbef4d2883fd9bfa46fb893c53f9880c050b51
 DIST xdg-utils-1.1.3_p20200220.tar.bz2 287080 BLAKE2B 
eb9067527d5073f290d10ad36bcda24d4b813f3c98776b57955a7f254956795c26f1536c858ac104259f68f755746976d2cfc3aeccb9b9b35eaca5ea5eb89806
 SHA512 
8445109e87fb9e92edeebbf6b07a41b79344bc5016eb7224f5f2b7e599c6d075363337c81dd2ddf8f3007c633debba7f814631188c02db3ae002f622b4c323ec
+DIST xdg-utils-1.1.3_p20210805.tar.bz2 287544 BLAKE2B 
ec3755e5e6f596c5787324ab254ba14938f35dda6df5a4ef88fb582c5df7704e706dee2f4362cc0597164cf2aeab5cf8f5f6db1b9d374355723e3d738e101264
 SHA512 
ec51e98e4c73ad7cb3c77051617a939c7956c7da6bcbbcda4e54121af247ce6978c8638c80bc644a49cfca14b18f06cb25747719bc20c97f7e60b9b4f3597a71

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
new file mode 100644
index ..db26c50443bd
--- /dev/null
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20210805.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+MY_COMMIT="1a58bc28f6844898532daf9ee1bf6da7764955a9"
+DESCRIPTION="Portland utils for cross-platform/cross-toolkit/cross-desktop 
interoperability"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/xdg-utils/;
+SRC_URI="https://gitlab.freedesktop.org/xdg/xdg-utils/-/archive/${MY_COMMIT}/${P}.tar.bz2;
+# https://gitlab.freedesktop.org/xdg/xdg-utils/-/merge_requests/24
+SRC_URI+=" 
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${PN}-1.1.3_p20200220-no-which.patch.xz;
+S="${WORKDIR}"/xdg-utils-${MY_COMMIT}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="dbus doc gnome"
+REQUIRED_USE="gnome? ( dbus )"
+
+RDEPEND="
+   dev-util/desktop-file-utils
+   dev-perl/File-MimeInfo
+   dbus? (
+   sys-apps/dbus
+   gnome? (
+   dev-perl/Net-DBus
+   dev-perl/X11-Protocol
+   )
+   )
+   x11-misc/shared-mime-info
+   x11-apps/xprop
+   x11-apps/xset
+"
+BDEPEND="
+   >=app-text/xmlto-0.0.28-r3[text(+)]
+   virtual/awk
+"
+
+DOCS=( ChangeLog README RELEASE_NOTES TODO )
+
+# Tests run random system programs, including interactive programs
+# that block forever
+RESTRICT="test"
+
+PATCHES=(
+   "${WORKDIR}"/${PN}-1.1.3_p20200220-no-which.patch
+)
+
+src_prepare() {
+   default
+
+   # If you choose to do git snapshot instead of patchset, you need to 
remember
+   # to run `autoconf` in ./ and `make scripts-clean` in ./scripts/ to 
refresh
+   # all the files
+   eautoreconf
+}
+
+src_configure() {
+   export ac_cv_path_XMLTO="$(type -P xmlto) --skip-validation" #502166
+   default
+   emake -C scripts scripts-clean
+}
+
+src_install() {
+   default
+
+   newdoc scripts/xsl/README README.xsl
+   use doc && dodoc -r scripts/html
+
+   # Install default XDG_DATA_DIRS, bug #264647
+   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/local/share\" > 30xdg-data-local
+   echo 'COLON_SEPARATED="XDG_DATA_DIRS XDG_CONFIG_DIRS"' >> 
30xdg-data-local
+   doenvd 30xdg-data-local
+
+   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/share\" > 90xdg-data-base
+   echo XDG_CONFIG_DIRS=\"${EPREFIX}/etc/xdg\" >> 90xdg-data-base
+   doenvd 90xdg-data-base
+}
+
+pkg_postinst() {
+   [[ -x $(type -P gtk-update-icon-cache) ]] \
+   || elog "Install dev-util/gtk-update-icon-cache for the 
gtk-update-icon-cache command."
+}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2022-05-08 Thread WANG Xuerui
commit: 7f70d9255c8b6cc64758b8eafb5ab56a424a7f53
Author: WANG Xuerui  gentoo  org>
AuthorDate: Mon May  9 05:00:44 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Mon May  9 05:29:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f70d925

x11-misc/xdg-utils: keyword 1.1.3_p20200220-r5 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r5.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r5.ebuild
index 013d4ccde699..ee52ffb43458 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r5.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,7 @@ S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/files/, x11-misc/xdg-utils/

2021-09-07 Thread Pacho Ramos
commit: 7a6270d5aa31639e7a9c7defa608d76f4268fd95
Author: Pacho Ramos  gentoo  org>
AuthorDate: Tue Sep  7 14:07:46 2021 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Tue Sep  7 14:08:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a6270d5

x11-misc/xdg-utils: Drop old

Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Pacho Ramos  gentoo.org>

 x11-misc/xdg-utils/Manifest|  1 -
 .../files/xdg-utils-1.1.3-xdg-open-pcmanfm.patch   | 21 --
 x11-misc/xdg-utils/xdg-utils-1.1.3-r3.ebuild   | 81 --
 .../xdg-utils/xdg-utils-1.1.3_p20200220-r4.ebuild  | 73 ---
 4 files changed, 176 deletions(-)

diff --git a/x11-misc/xdg-utils/Manifest b/x11-misc/xdg-utils/Manifest
index 267f0faf07d..5dc536bc22f 100644
--- a/x11-misc/xdg-utils/Manifest
+++ b/x11-misc/xdg-utils/Manifest
@@ -1,2 +1 @@
-DIST xdg-utils-1.1.3.tar.gz 297170 BLAKE2B 
bd281df73d8c966d11b502dd7ec88d96dbc9683503f54b043ae4842f146b6847bd3dd6902cf993771848d9fcb55d26d67f032af2b8aa0795a6d9855535e57d5b
 SHA512 
d1f819a211eb4104a90dfdc6fedcb640fd46b15ccfc8762266f8f538c49d74cb00027b8c1af991fb2a200acb4379986ae375700e06a2aa08fb41a38f883acb3e
 DIST xdg-utils-1.1.3_p20200220.tar.bz2 287080 BLAKE2B 
eb9067527d5073f290d10ad36bcda24d4b813f3c98776b57955a7f254956795c26f1536c858ac104259f68f755746976d2cfc3aeccb9b9b35eaca5ea5eb89806
 SHA512 
8445109e87fb9e92edeebbf6b07a41b79344bc5016eb7224f5f2b7e599c6d075363337c81dd2ddf8f3007c633debba7f814631188c02db3ae002f622b4c323ec

diff --git a/x11-misc/xdg-utils/files/xdg-utils-1.1.3-xdg-open-pcmanfm.patch 
b/x11-misc/xdg-utils/files/xdg-utils-1.1.3-xdg-open-pcmanfm.patch
deleted file mode 100644
index 1f6cc29ab05..000
--- a/x11-misc/xdg-utils/files/xdg-utils-1.1.3-xdg-open-pcmanfm.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-From 31525d3855f876ddf2e29091b2e8d376f923e09e Mon Sep 17 00:00:00 2001
-From: Rex Dieter 
-Date: Thu, 24 May 2018 14:40:53 -0500
-Subject: xdg-open: better pcmanfm check (BR106636,BR106161)
-
-diff --git a/scripts/xdg-open.in b/scripts/xdg-open.in
-index 630e63e..bf9da4c 100644
 a/scripts/xdg-open.in
-+++ b/scripts/xdg-open.in
-@@ -451,7 +451,7 @@ open_lxde()
- {
- 
- # pcmanfm only knows how to handle file:// urls and filepaths, it seems.
--if pcmanfm --help >/dev/null 2>&1 -a is_file_url_or_path "$1"; then
-+if pcmanfm --help >/dev/null 2>&1 && is_file_url_or_path "$1"; then
- local file="$(file_url_to_path "$1")"
- 
- # handle relative paths
--- 
-cgit v1.1
-

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r3.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r3.ebuild
deleted file mode 100644
index 7409d598280..000
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r3.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools
-
-MY_P="${P/_/-}"
-
-DESCRIPTION="Portland utils for cross-platform/cross-toolkit/cross-desktop 
interoperability"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/xdg-utils/;
-#SRC_URI="https://dev.gentoo.org/~johu/distfiles/${P}.tar.xz;
-#SRC_URI="https://people.freedesktop.org/~rdieter/${PN}/${MY_P}.tar.gz
-#  https://dev.gentoo.org/~ssuominen/${P}-patchset-1.tar.xz;
-SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
-IUSE="doc"
-
-RDEPEND="
-   dev-util/desktop-file-utils
-   dev-perl/File-MimeInfo
-   dev-perl/Net-DBus
-   dev-perl/X11-Protocol
-   sys-apps/dbus
-   x11-misc/shared-mime-info
-   x11-apps/xprop
-   x11-apps/xset
-"
-DEPEND="
-   >=app-text/xmlto-0.0.28-r3[text(+)]
-   virtual/awk
-"
-
-DOCS=( ChangeLog README RELEASE_NOTES TODO )
-
-RESTRICT="test" # Disabled because of sandbox violation(s)
-
-PATCHES=(
-   "${FILESDIR}"/xdg-utils-1.1.3-xdg-open-pcmanfm.patch
-)
-
-#S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-   default
-   # If you choose to do git snapshot instead of patchset, you need to 
remember
-   # to run `autoconf` in ./ and `make scripts-clean` in ./scripts/ to 
refresh
-   # all the files
-   if [[ -d "${WORKDIR}/patch" ]]; then
-   eapply "${WORKDIR}/patch"
-   fi
-   eautoreconf
-}
-
-src_configure() {
-   export ac_cv_path_XMLTO="$(type -P xmlto) --skip-validation" #502166
-   default
-}
-
-src_install() {
-   default
-
-   newdoc scripts/xsl/README README.xsl
-   use doc && dodoc -r scripts/html
-
-   # Install default XDG_DATA_DIRS, bug #264647
-   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/local/share\" > 30xdg-data-local
-   echo 'COLON_SEPARATED="XDG_DATA_DIRS XDG_CONFIG_DIRS"' >> 
30xdg-data-local
-   doenvd 30xdg-data-local
-
-   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/share\" > 90xdg-data-base
-   echo 

[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2021-07-19 Thread Yixun Lan
commit: 336d3dc6c1881fabbcca923f55b83127c70c57a7
Author: Yixun Lan  gentoo  org>
AuthorDate: Sat Jul 17 03:32:09 2021 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Mon Jul 19 14:23:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=336d3dc6

x11-misc/xdg-utils: keyword ~riscv

Package-Manager: Portage-3.0.19, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r5.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r5.ebuild
index e5f2efaba8e..013d4ccde69 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r5.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r5.ebuild
@@ -13,7 +13,7 @@ S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2021-04-07 Thread Sam James
commit: 01b4a16129343d73efc27c98aa0dbd28eefae2a5
Author: Sam James  gentoo  org>
AuthorDate: Wed Apr  7 22:37:28 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Apr  7 22:39:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01b4a161

x11-misc/xdg-utils: loosen xmlto requirement again

Apologies for the noise. Dropping the newer xmlto
bound while we sort out the issues there (should be OK now),
but erring on the side of caution.

(We've dropped the new xmlto changes back to ~arch).

Signed-off-by: Sam James  gentoo.org>

 .../xdg-utils/{xdg-utils-1.1.3-r2.ebuild => xdg-utils-1.1.3-r3.ebuild}  | 2 +-
 ...ls-1.1.3_p20200220-r2.ebuild => xdg-utils-1.1.3_p20200220-r4.ebuild} | 2 +-
 ...ls-1.1.3_p20200220-r3.ebuild => xdg-utils-1.1.3_p20200220-r5.ebuild} | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r2.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r3.ebuild
similarity index 98%
rename from x11-misc/xdg-utils/xdg-utils-1.1.3-r2.ebuild
rename to x11-misc/xdg-utils/xdg-utils-1.1.3-r3.ebuild
index ba8167e9e06..7409d598280 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r2.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r3.ebuild
@@ -29,7 +29,7 @@ RDEPEND="
x11-apps/xset
 "
 DEPEND="
-   >=app-text/xmlto-0.0.28-r5[text(+)]
+   >=app-text/xmlto-0.0.28-r3[text(+)]
virtual/awk
 "
 

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r2.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r4.ebuild
similarity index 98%
rename from x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r2.ebuild
rename to x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r4.ebuild
index 6a3449b21a0..66d98814bdd 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r2.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r4.ebuild
@@ -27,7 +27,7 @@ RDEPEND="
x11-apps/xset
 "
 BDEPEND="
-   >=app-text/xmlto-0.0.28-r5[text(+)]
+   >=app-text/xmlto-0.0.28-r3[text(+)]
virtual/awk
 "
 

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r3.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r5.ebuild
similarity index 98%
rename from x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r3.ebuild
rename to x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r5.ebuild
index ebfab8c520b..e5f2efaba8e 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r3.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r5.ebuild
@@ -32,7 +32,7 @@ RDEPEND="
x11-apps/xset
 "
 BDEPEND="
-   >=app-text/xmlto-0.0.28-r5[text(+)]
+   >=app-text/xmlto-0.0.28-r3[text(+)]
virtual/awk
 "
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2021-04-06 Thread Sam James
commit: b7e316d067d355aaa4dd629d964220fca4ddae7e
Author: Sam James  gentoo  org>
AuthorDate: Wed Apr  7 00:52:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Apr  7 01:57:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7e316d0

x11-misc/xdg-utils: add virtual/awk BDEPEND

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3-r2.ebuild   | 5 -
 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r2.ebuild | 5 -
 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r3.ebuild | 5 -
 3 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r2.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r2.ebuild
index 0e07355c619..ba8167e9e06 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r2.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r2.ebuild
@@ -28,7 +28,10 @@ RDEPEND="
x11-apps/xprop
x11-apps/xset
 "
-DEPEND=">=app-text/xmlto-0.0.28-r5[text(+)]"
+DEPEND="
+   >=app-text/xmlto-0.0.28-r5[text(+)]
+   virtual/awk
+"
 
 DOCS=( ChangeLog README RELEASE_NOTES TODO )
 

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r2.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r2.ebuild
index fe2afe8f3b6..6a3449b21a0 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r2.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r2.ebuild
@@ -26,7 +26,10 @@ RDEPEND="
x11-apps/xprop
x11-apps/xset
 "
-BDEPEND=">=app-text/xmlto-0.0.28-r5[text(+)]"
+BDEPEND="
+   >=app-text/xmlto-0.0.28-r5[text(+)]
+   virtual/awk
+"
 
 DOCS=( ChangeLog README RELEASE_NOTES TODO )
 

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r3.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r3.ebuild
index 393df3a86e7..ebfab8c520b 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r3.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r3.ebuild
@@ -31,7 +31,10 @@ RDEPEND="
x11-apps/xprop
x11-apps/xset
 "
-BDEPEND=">=app-text/xmlto-0.0.28-r5[text(+)]"
+BDEPEND="
+   >=app-text/xmlto-0.0.28-r5[text(+)]
+   virtual/awk
+"
 
 DOCS=( ChangeLog README RELEASE_NOTES TODO )
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2021-04-06 Thread Sam James
commit: 7a3b04f5cc9df93fa7115c0c16d8bc3148951d5a
Author: Sam James  gentoo  org>
AuthorDate: Wed Apr  7 00:46:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Apr  7 01:57:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a3b04f5

x11-misc/xdg-utils: increase app-text/xmlto lower bound to nudge upgrades

We change the bound on app-text/xmlto to be >=app-text/xmlto-0.0.28-r5 to
ensure we have the fixed xmlto version for links.

Bug: https://bugs.gentoo.org/679626
Bug: https://bugs.gentoo.org/726156
Signed-off-by: Sam James  gentoo.org>

 .../xdg-utils/{xdg-utils-1.1.3-r1.ebuild => xdg-utils-1.1.3-r2.ebuild}  | 2 +-
 ...utils-1.1.3_p20200220.ebuild => xdg-utils-1.1.3_p20200220-r2.ebuild} | 2 +-
 ...ls-1.1.3_p20200220-r1.ebuild => xdg-utils-1.1.3_p20200220-r3.ebuild} | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r2.ebuild
similarity index 97%
rename from x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
rename to x11-misc/xdg-utils/xdg-utils-1.1.3-r2.ebuild
index 3d6f1b575d4..0e07355c619 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r2.ebuild
@@ -28,7 +28,7 @@ RDEPEND="
x11-apps/xprop
x11-apps/xset
 "
-DEPEND=">=app-text/xmlto-0.0.26-r1[text(+)]"
+DEPEND=">=app-text/xmlto-0.0.28-r5[text(+)]"
 
 DOCS=( ChangeLog README RELEASE_NOTES TODO )
 

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r2.ebuild
similarity index 97%
rename from x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
rename to x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r2.ebuild
index 00294847ef4..fe2afe8f3b6 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r2.ebuild
@@ -26,7 +26,7 @@ RDEPEND="
x11-apps/xprop
x11-apps/xset
 "
-BDEPEND=">=app-text/xmlto-0.0.26-r1[text(+)]"
+BDEPEND=">=app-text/xmlto-0.0.28-r5[text(+)]"
 
 DOCS=( ChangeLog README RELEASE_NOTES TODO )
 

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r3.ebuild
similarity index 97%
rename from x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
rename to x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r3.ebuild
index 8db71130ff2..393df3a86e7 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r3.ebuild
@@ -31,7 +31,7 @@ RDEPEND="
x11-apps/xprop
x11-apps/xset
 "
-BDEPEND=">=app-text/xmlto-0.0.26-r1[text(+)]"
+BDEPEND=">=app-text/xmlto-0.0.28-r5[text(+)]"
 
 DOCS=( ChangeLog README RELEASE_NOTES TODO )
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2021-04-05 Thread Sam James
commit: 9e978cfecd6a97af032edc7e6bca0bdd2378294e
Author: Sam James  gentoo  org>
AuthorDate: Mon Apr  5 20:51:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Apr  5 22:18:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e978cfe

x11-misc/xdg-utils: drop s390 to ~s390 (unstable)

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild   | 4 ++--
 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild | 4 ++--
 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild| 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index 53f333ca463..3d6f1b575d4 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,7 +15,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
 IUSE="doc"
 
 RDEPEND="

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
index 568c30765b8..8db71130ff2 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,7 @@ S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
index f3b6c3be037..00294847ef4 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,7 @@ S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2020-12-17 Thread Sam James
commit: 4de351d005513b410d3e6841de673002ab0595e7
Author: Sam James  gentoo  org>
AuthorDate: Thu Dec 17 07:59:28 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Dec 17 07:59:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4de351d0

x11-misc/xdg-utils: Stabilize 1.1.3_p20200220-r1 s390, #737622

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
index 2fc95ee7016..814cd4ad854 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
@@ -13,7 +13,7 @@ S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2020-10-31 Thread Mikle Kolyada
commit: 85165284c6c968861468d636b3b26cf51e01dbff
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Oct 31 11:03:40 2020 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Oct 31 11:03:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85165284

x11-misc/xdg-utils: Stabilize 1.1.3_p20200220-r1 amd64, #737622

Signed-off-by: Mikle Kolyada  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
index 82899423215..2fc95ee7016 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
@@ -13,7 +13,7 @@ S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2020-10-29 Thread Sergei Trofimovich
commit: aec54c842e4259ef72ffeb5a5ecb3c1dff4ede6e
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Oct 29 15:09:20 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 29 22:05:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aec54c84

x11-misc/xdg-utils: stable 1.1.3_p20200220-r1 for sparc, bug #737622

Package-Manager: Portage-3.0.8, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
index cfdf8b19a3b..82899423215 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
@@ -13,7 +13,7 @@ S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2020-10-28 Thread Sam James
commit: 58046a5b087c5ec392373fe6241d5d71dcf78554
Author: Sam James  gentoo  org>
AuthorDate: Wed Oct 28 16:13:43 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Oct 28 16:18:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58046a5b

x11-misc/xdg-utils: Stabilize 1.1.3_p20200220-r1 arm, #737622

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
index 921e408530d..cfdf8b19a3b 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
@@ -13,7 +13,7 @@ S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2020-10-27 Thread Sergei Trofimovich
commit: 9901b305ef982f6c132eea1a4af6ef33ea5f08b2
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Oct 27 08:19:14 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Oct 27 08:19:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9901b305

x11-misc/xdg-utils: stable 1.1.3_p20200220-r1 for ppc64

stable wrt bug #737622 (STABLEREQ)
Tested-by: ernsteiswuerfel
Package-Manager: Portage-3.0.8, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
index 35852fabbb0..921e408530d 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
@@ -13,7 +13,7 @@ S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2020-10-26 Thread Sergei Trofimovich
commit: 192a1d9a67cdcb92c752d9e27b05410a9817787b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Oct 26 23:46:37 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Oct 26 23:46:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=192a1d9a

x11-misc/xdg-utils: stable 1.1.3_p20200220-r1 for ppc

stable wrt bug #737622

Package-Manager: Portage-3.0.8, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
index aabb559b38e..35852fabbb0 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
@@ -13,7 +13,7 @@ S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2020-10-26 Thread Sergei Trofimovich
commit: d499649745b4479067aadafae0f6430c513bca72
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Mon Oct 26 23:42:00 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Oct 26 23:44:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4996497

x11-misc/xdg-utils: stable 1.1.3_p20200220-r1 for hppa

stable wrt bug #737622

Package-Manager: Portage-3.0.8, Repoman-3.0.2
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
index a139d5657db..aabb559b38e 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
@@ -13,7 +13,7 @@ S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2020-10-25 Thread Sam James
commit: a4ec83cf691866e41de9c3ffa0946ee54d29db1e
Author: Sam James  gentoo  org>
AuthorDate: Sun Oct 25 23:09:26 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Oct 25 23:09:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4ec83cf

x11-misc/xdg-utils: Stabilize 1.1.3_p20200220-r1 arm64, #737622

Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
index 28f6c7d672a..a139d5657db 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
@@ -13,7 +13,7 @@ S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2020-10-25 Thread Thomas Deutschmann
commit: c46f43c576b3cc617852df61846b67b6825b7b20
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Oct 25 23:03:46 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Oct 25 23:03:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c46f43c5

x11-misc/xdg-utils: x86 stable (bug #737622)

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
index 5b1faa46cb5..28f6c7d672a 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
@@ -13,7 +13,7 @@ S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux"
 IUSE="dbus doc gnome"
 REQUIRED_USE="gnome? ( dbus )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2020-08-05 Thread Agostino Sarubbo
commit: e900d9caff0d659b509ac13c600c2fa9bd2e1b0b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Wed Aug  5 14:06:13 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Wed Aug  5 14:06:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e900d9ca

x11-misc/xdg-utils: s390 stable wrt bug #733598

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="s390"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
index 92fa3be1e85..feb52234056 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
@@ -13,7 +13,7 @@ S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc ~x86 
~amd64-linux ~x86-linux"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2020-08-01 Thread Sergei Trofimovich
commit: 1a56dc0bfa296f8d23608b38e2aa54ec42b8cb78
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Aug  1 08:45:12 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Aug  1 08:45:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a56dc0b

x11-misc/xdg-utils: stable 1.1.3_p20200220 for ppc

stable wrt bug #733598

Package-Manager: Portage-3.0.1, Repoman-2.3.23
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
index 10923364b1b..92fa3be1e85 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
@@ -13,7 +13,7 @@ S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc ~x86 
~amd64-linux ~x86-linux"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2020-07-27 Thread Sergei Trofimovich
commit: e236c75045281f55994fa9a990a58373e1d5af33
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jul 27 18:31:07 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jul 27 18:36:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e236c750

x11-misc/xdg-utils: stable 1.1.3_p20200220 for hppa, bug #733598

Package-Manager: Portage-2.3.103, Repoman-2.3.23
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
index 37c717100c2..10923364b1b 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
@@ -13,7 +13,7 @@ S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 sparc ~x86 
~amd64-linux ~x86-linux"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2020-07-25 Thread Sam James
commit: be4a3a64c619e8bef96859c5065a8d17dc766dd1
Author: Sam James  gentoo  org>
AuthorDate: Sat Jul 25 15:29:42 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jul 25 19:33:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be4a3a64

x11-misc/xdg-utils: arm stable (bug #733598)

Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
index e743a255797..37c717100c2 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
@@ -13,7 +13,7 @@ S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 sparc ~x86 
~amd64-linux ~x86-linux"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2020-07-25 Thread Mike Gilbert
commit: 233397e2e14c07337bddcf0ed68007a240444d54
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Sat Jul 25 16:06:14 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Jul 25 17:53:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=233397e2

x11-misc/xdg-utils: dbus and gnome optional

Taking over changes from attachment
https://bugs.gentoo.org/attachment.cgi?id=555360

Closes: https://bugs.gentoo.org/668156
Closes: https://github.com/gentoo/gentoo/pull/16815
Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Signed-off-by: Mike Gilbert  gentoo.org>

 .../xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild  | 75 ++
 1 file changed, 75 insertions(+)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
new file mode 100644
index 000..5b1faa46cb5
--- /dev/null
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220-r1.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit autotools
+
+EGIT_COMMIT="9816ebb3e6fd9f23e993b8b7fcbd56f92d9c9197"
+DESCRIPTION="Portland utils for cross-platform/cross-toolkit/cross-desktop 
interoperability"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/xdg-utils/;
+SRC_URI="
+   
https://gitlab.freedesktop.org/xdg/xdg-utils/-/archive/${EGIT_COMMIT}/${P}.tar.bz2;
+S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux"
+IUSE="dbus doc gnome"
+REQUIRED_USE="gnome? ( dbus )"
+
+RDEPEND="
+   dev-util/desktop-file-utils
+   dev-perl/File-MimeInfo
+   dbus? (
+   sys-apps/dbus
+   gnome? (
+   dev-perl/Net-DBus
+   dev-perl/X11-Protocol
+   )
+   )
+   x11-misc/shared-mime-info
+   x11-apps/xprop
+   x11-apps/xset
+"
+BDEPEND=">=app-text/xmlto-0.0.26-r1[text(+)]"
+
+DOCS=( ChangeLog README RELEASE_NOTES TODO )
+
+# Tests run random system programs, including interactive programs
+# that block forever
+RESTRICT="test"
+
+src_prepare() {
+   default
+   # If you choose to do git snapshot instead of patchset, you need to 
remember
+   # to run `autoconf` in ./ and `make scripts-clean` in ./scripts/ to 
refresh
+   # all the files
+   eautoreconf
+}
+
+src_configure() {
+   export ac_cv_path_XMLTO="$(type -P xmlto) --skip-validation" #502166
+   default
+   emake -C scripts scripts-clean
+}
+
+src_install() {
+   default
+
+   newdoc scripts/xsl/README README.xsl
+   use doc && dodoc -r scripts/html
+
+   # Install default XDG_DATA_DIRS, bug #264647
+   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/local/share\" > 30xdg-data-local
+   echo 'COLON_SEPARATED="XDG_DATA_DIRS XDG_CONFIG_DIRS"' >> 
30xdg-data-local
+   doenvd 30xdg-data-local
+
+   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/share\" > 90xdg-data-base
+   echo XDG_CONFIG_DIRS=\"${EPREFIX}/etc/xdg\" >> 90xdg-data-base
+   doenvd 90xdg-data-base
+}
+
+pkg_postinst() {
+   [[ -x $(type -P gtk-update-icon-cache) ]] \
+   || elog "Install dev-util/gtk-update-icon-cache for the 
gtk-update-icon-cache command."
+}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2020-07-25 Thread Sam James
commit: 628d71c9c07775ff81970519516ce63116367d6b
Author: Sam James  gentoo  org>
AuthorDate: Sat Jul 25 14:56:24 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jul 25 14:56:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=628d71c9

x11-misc/xdg-utils: arm64 stable (bug #733598)

Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
index 85c5cbabdd4..e743a255797 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
@@ -13,7 +13,7 @@ S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2020-07-25 Thread Sergei Trofimovich
commit: 2cd8423c4ee6843d041346c411062447b5a34263
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sat Jul 25 08:27:22 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jul 25 08:42:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cd8423c

x11-misc/xdg-utils: stable 1.1.3_p20200220 for sparc, bug #733598

Package-Manager: Portage-2.3.103, Repoman-2.3.23
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
index 3f2440a8e9a..85c5cbabdd4 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
@@ -13,7 +13,7 @@ S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 sparc 
~x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2020-07-24 Thread Sam James
commit: 7a43bcae26da52154e16845d709e84c104b1c15f
Author: Sam James  gentoo  org>
AuthorDate: Sat Jul 25 01:46:29 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sat Jul 25 02:07:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a43bcae

x11-misc/xdg-utils: ppc64 stable (bug #733598)

Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
index bf90eb7a1d6..3f2440a8e9a 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
@@ -13,7 +13,7 @@ S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2020-07-24 Thread Agostino Sarubbo
commit: cc3732eb17b4a2995d720ae6e62cab4b76adb6da
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Jul 24 15:08:43 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Jul 24 15:08:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc3732eb

x11-misc/xdg-utils: amd64 stable wrt bug #733598

Package-Manager: Portage-2.3.99, Repoman-2.3.22
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
index 231265be201..bf90eb7a1d6 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
@@ -13,7 +13,7 @@ S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2020-07-23 Thread Kent Fredric
commit: c64bcfa0286851caf6cead9e4e34e200c4776cdc
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Jul 23 07:35:58 2020 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Jul 23 08:03:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c64bcfa0

x11-misc/xdg-utils: Drop x86-{macos,solaris} re bug #690140

Depends:
- dev-perl/Net-DBus
 - dev-perl/XML-Twig
  - dev-perl/libwww-perl
   - dev-perl/LWP-Protocol-https
- dev-perl/IO-Socket-SSL

Bug: https://bugs.gentoo.org/690140
Package-Manager: Portage-2.3.103, Repoman-2.3.22
Signed-off-by: Kent Fredric  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild| 2 +-
 x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index 49d9abfce9e..5b30aeb094d 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux ~x86-macos ~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux"
 IUSE="doc"
 
 RDEPEND="

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
index 2df4bb6913b..231265be201 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
@@ -13,7 +13,7 @@ S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~x86-macos ~x64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2020-05-03 Thread Michał Górny
commit: 70b1cd5eaed04bd9972ca1d0c640fefc75c52a8c
Author: Michał Górny  gentoo  org>
AuthorDate: Sun May  3 05:54:17 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun May  3 06:28:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70b1cd5e

x11-misc/xdg-utils: Make a 1.1.3_p20200220 snap

Signed-off-by: Michał Górny  gentoo.org>

 x11-misc/xdg-utils/Manifest|  1 +
 .../xdg-utils/xdg-utils-1.1.3_p20200220.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/x11-misc/xdg-utils/Manifest b/x11-misc/xdg-utils/Manifest
index d1b2a495141..267f0faf07d 100644
--- a/x11-misc/xdg-utils/Manifest
+++ b/x11-misc/xdg-utils/Manifest
@@ -1 +1,2 @@
 DIST xdg-utils-1.1.3.tar.gz 297170 BLAKE2B 
bd281df73d8c966d11b502dd7ec88d96dbc9683503f54b043ae4842f146b6847bd3dd6902cf993771848d9fcb55d26d67f032af2b8aa0795a6d9855535e57d5b
 SHA512 
d1f819a211eb4104a90dfdc6fedcb640fd46b15ccfc8762266f8f538c49d74cb00027b8c1af991fb2a200acb4379986ae375700e06a2aa08fb41a38f883acb3e
+DIST xdg-utils-1.1.3_p20200220.tar.bz2 287080 BLAKE2B 
eb9067527d5073f290d10ad36bcda24d4b813f3c98776b57955a7f254956795c26f1536c858ac104259f68f755746976d2cfc3aeccb9b9b35eaca5ea5eb89806
 SHA512 
8445109e87fb9e92edeebbf6b07a41b79344bc5016eb7224f5f2b7e599c6d075363337c81dd2ddf8f3007c633debba7f814631188c02db3ae002f622b4c323ec

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
new file mode 100644
index 000..2df4bb6913b
--- /dev/null
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3_p20200220.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit autotools
+
+EGIT_COMMIT="9816ebb3e6fd9f23e993b8b7fcbd56f92d9c9197"
+DESCRIPTION="Portland utils for cross-platform/cross-toolkit/cross-desktop 
interoperability"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/xdg-utils/;
+SRC_URI="
+   
https://gitlab.freedesktop.org/xdg/xdg-utils/-/archive/${EGIT_COMMIT}/${P}.tar.bz2;
+S=${WORKDIR}/xdg-utils-${EGIT_COMMIT}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~x86-macos ~x64-solaris"
+IUSE="doc"
+
+RDEPEND="
+   dev-util/desktop-file-utils
+   dev-perl/File-MimeInfo
+   dev-perl/Net-DBus
+   dev-perl/X11-Protocol
+   sys-apps/dbus
+   x11-misc/shared-mime-info
+   x11-apps/xprop
+   x11-apps/xset
+"
+BDEPEND=">=app-text/xmlto-0.0.26-r1[text(+)]"
+
+DOCS=( ChangeLog README RELEASE_NOTES TODO )
+
+# Tests run random system programs, including interactive programs
+# that block forever
+RESTRICT="test"
+
+src_prepare() {
+   default
+   # If you choose to do git snapshot instead of patchset, you need to 
remember
+   # to run `autoconf` in ./ and `make scripts-clean` in ./scripts/ to 
refresh
+   # all the files
+   eautoreconf
+}
+
+src_configure() {
+   export ac_cv_path_XMLTO="$(type -P xmlto) --skip-validation" #502166
+   default
+   emake -C scripts scripts-clean
+}
+
+src_install() {
+   default
+
+   newdoc scripts/xsl/README README.xsl
+   use doc && dodoc -r scripts/html
+
+   # Install default XDG_DATA_DIRS, bug #264647
+   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/local/share\" > 30xdg-data-local
+   echo 'COLON_SEPARATED="XDG_DATA_DIRS XDG_CONFIG_DIRS"' >> 
30xdg-data-local
+   doenvd 30xdg-data-local
+
+   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/share\" > 90xdg-data-base
+   echo XDG_CONFIG_DIRS=\"${EPREFIX}/etc/xdg\" >> 90xdg-data-base
+   doenvd 90xdg-data-base
+}
+
+pkg_postinst() {
+   [[ -x $(type -P gtk-update-icon-cache) ]] \
+   || elog "Install dev-util/gtk-update-icon-cache for the 
gtk-update-icon-cache command."
+}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/, x11-misc/xdg-utils/files/

2019-10-21 Thread Pacho Ramos
commit: ddfe3525c46f04a9c3b12a1a04ca42adfc529c98
Author: Pacho Ramos  gentoo  org>
AuthorDate: Mon Oct 21 20:27:43 2019 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Mon Oct 21 20:27:43 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ddfe3525

x11-misc/xdg-utils: Drop old

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Pacho Ramos  gentoo.org>

 x11-misc/xdg-utils/Manifest|  1 -
 .../files/xdg-utils-1.1.1-ktraderclient5.patch | 43 -
 x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild   | 71 --
 3 files changed, 115 deletions(-)

diff --git a/x11-misc/xdg-utils/Manifest b/x11-misc/xdg-utils/Manifest
index c480c1765e7..d1b2a495141 100644
--- a/x11-misc/xdg-utils/Manifest
+++ b/x11-misc/xdg-utils/Manifest
@@ -1,2 +1 @@
-DIST xdg-utils-1.1.1.tar.gz 295213 BLAKE2B 
c52bf6bb4d5e2cd2848b17dc4f478debe1d9d399a02f014d0507ed26330ce47ac77c047919fab06c3cc773fab6bd4744bcdd9338e0726aca8e690bb76c0a
 SHA512 
6641b17daea7eecfee0d395e621dc42481582e505bff90a6df5eb0299ed2dca7a76520f000d9545a8424f06d41590382156a2e50f3d68d5c1ab825c268e90edb
 DIST xdg-utils-1.1.3.tar.gz 297170 BLAKE2B 
bd281df73d8c966d11b502dd7ec88d96dbc9683503f54b043ae4842f146b6847bd3dd6902cf993771848d9fcb55d26d67f032af2b8aa0795a6d9855535e57d5b
 SHA512 
d1f819a211eb4104a90dfdc6fedcb640fd46b15ccfc8762266f8f538c49d74cb00027b8c1af991fb2a200acb4379986ae375700e06a2aa08fb41a38f883acb3e

diff --git a/x11-misc/xdg-utils/files/xdg-utils-1.1.1-ktraderclient5.patch 
b/x11-misc/xdg-utils/files/xdg-utils-1.1.1-ktraderclient5.patch
deleted file mode 100644
index eee4684c17c..000
--- a/x11-misc/xdg-utils/files/xdg-utils-1.1.1-ktraderclient5.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From 31db8136bdf61e7f9cb866f9d47c99c63343558d Mon Sep 17 00:00:00 2001
-From: Massimiliano Torromeo 
-Date: Fri, 15 Apr 2016 11:17:37 +0200
-Subject: xdg-mime: support for KDE Frameworks 5.6
-
-
-diff --git a/scripts/xdg-mime.in b/scripts/xdg-mime.in
-index 129850f..63b8a82 100644
 a/scripts/xdg-mime.in
-+++ b/scripts/xdg-mime.in
-@@ -428,13 +428,9 @@ defapp_kde()
-   case "${KDE_SESSION_VERSION}" in
- 4)
-   KTRADER=`which ktraderclient 2> /dev/null`
--  MIMETYPE="--mimetype"
--  SERVICETYPE="--servicetype"
- ;;
- 5)
-   KTRADER=`which ktraderclient${KDE_SESSION_VERSION} 2> /dev/null`
--  MIMETYPE="--mimetype"
--  SERVICETYPE="--servicetype"
- ;;
-   esac
- else
-@@ -442,8 +438,8 @@ defapp_kde()
- fi
- if [ -n "$KTRADER" ] ; then
- DEBUG 1 "Running KDE trader query \"$MIME\" mimetype and 
\"Application\" servicetype"
--trader_result=`$KTRADER $MIMETYPE "$MIME" $SERVICETYPE Application 
2>/dev/null \
--| grep DesktopEntryPath | head -n 1 | cut -d ':' -f 2 | cut -d \' 
-f 2`
-+trader_result=`$KTRADER --mimetype "$MIME" --servicetype Application 
2>/dev/null \
-+| grep -E "^DesktopEntryPath : |\.desktop$" | head -n1 | sed 
"s/^DesktopEntryPath : '\(.*\.desktop\)'\$/\1/"`
- if [ -n "$trader_result" ] ; then
- basename "$trader_result"
- exit_success
-@@ -954,4 +950,3 @@ esac
- update_mime_database $xdg_base_dir
- 
- exit_success
--
--- 
-cgit v0.10.2
-

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
deleted file mode 100644
index ddf9215344f..000
--- a/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools
-
-MY_P=${P/_/-}
-
-DESCRIPTION="Portland utils for cross-platform/cross-toolkit/cross-desktop 
interoperability"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/xdg-utils/;
-#SRC_URI="https://dev.gentoo.org/~johu/distfiles/${P}.tar.xz;
-#SRC_URI="https://people.freedesktop.org/~rdieter/${PN}/${MY_P}.tar.gz
-#  https://dev.gentoo.org/~ssuominen/${P}-patchset-1.tar.xz;
-SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~x86-macos"
-IUSE="doc +perl"
-
-RDEPEND="dev-util/desktop-file-utils
-   x11-misc/shared-mime-info
-   x11-apps/xprop
-   x11-apps/xset
-   perl? ( dev-perl/File-MimeInfo )"
-DEPEND=">=app-text/xmlto-0.0.26-r1[text(+)]"
-
-DOCS=( README RELEASE_NOTES TODO ) # ChangeLog is bogus, see git instead
-
-PATCHES=( "${FILESDIR}/${P}-ktraderclient5.patch" )
-
-RESTRICT="test" # Disabled because of sandbox violation(s)
-
-#S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-   default
-   # If you choose to do git snapshot instead of patchset, you need to 
remember
-   # to run `autoconf` in ./ and `make scripts-clean` in ./scripts/ to 
refresh
-   # all the files
-   if [[ -d 

[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2019-10-21 Thread Fabian Groffen
commit: 7d7ba7109cab459f6807bde242198c8c21f03620
Author: Fabian Groffen  gentoo  org>
AuthorDate: Mon Oct 21 16:15:32 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Mon Oct 21 16:15:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d7ba710

x11-misc/xdg-utils: marked ~x86-macos

Bug: https://bugs.gentoo.org/658328
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Fabian Groffen  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index 4c5372063ce..9dc2cd3e4b6 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~x64-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~x86-macos ~x64-solaris"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2019-10-21 Thread Fabian Groffen
commit: 4e6703cc8a088035e07d20a1657aca45b45e769e
Author: Fabian Groffen  gentoo  org>
AuthorDate: Mon Oct 21 09:02:46 2019 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Mon Oct 21 09:02:46 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e6703cc

x11-misc/xdg-utils: re-added Prefix keywords

Bug: https://bugs.gentoo.org/658328
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Fabian Groffen  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index 9182f30038d..4c5372063ce 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~x64-solaris"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2019-10-20 Thread Pacho Ramos
commit: 06439237f89d1152d0c08bce9edff510e48b662f
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Oct 20 14:27:20 2019 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Oct 20 14:28:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06439237

x11-misc/xdg-utils: Deps were keyworded at some point

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Pacho Ramos  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index 9182f30038d..a10673f6854 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~x86-macos"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2019-10-20 Thread Pacho Ramos
commit: 60213f526310d09201a9b50f406e4a32fef99d2a
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Oct 20 14:28:27 2019 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Oct 20 14:29:23 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60213f52

Revert "x11-misc/xdg-utils: Deps were keyworded at some point"

This reverts commit 894bbd657e44a17b100fca756e7dd70a7396396e.

Signed-off-by: Pacho Ramos  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index a10673f6854..9182f30038d 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2019-10-20 Thread Pacho Ramos
commit: e0bf0b52fd89bc1dca6886dfd90294427c2d945a
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Oct 20 14:25:00 2019 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Oct 20 14:28:56 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0bf0b52

x11-misc/xdg-utils: Install ChangeLog file

Closes: https://bugs.gentoo.org/696094
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Pacho Ramos  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index b4745c6017a..9182f30038d 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -30,7 +30,7 @@ RDEPEND="
 "
 DEPEND=">=app-text/xmlto-0.0.26-r1[text(+)]"
 
-DOCS=( README RELEASE_NOTES TODO ) # ChangeLog is bogus, see git instead
+DOCS=( ChangeLog README RELEASE_NOTES TODO )
 
 RESTRICT="test" # Disabled because of sandbox violation(s)
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2019-02-12 Thread Mart Raudsepp
commit: 29b3b1fe79e4b922121d48a59043a52545f58785
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Tue Feb 12 08:59:11 2019 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Tue Feb 12 11:09:24 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29b3b1fe

x11-misc/xdg-utils: refer to dev-util/gtk-update-icon-cache

Update the elog message in postinst as gtk-update-icon-cache was
split out of gtk+ a long time ago

Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Mart Raudsepp  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild | 4 ++--
 x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
index af90774c45d..78ef40a63fa 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -67,5 +67,5 @@ src_install() {
 }
 
 pkg_postinst() {
-   [[ -x $(type -P gtk-update-icon-cache) ]] || elog "Install 
x11-libs/gtk+:2 for the gtk-update-icon-cache command."
+   [[ -x $(type -P gtk-update-icon-cache) ]] || elog "Install 
dev-util/gtk-update-icon-cache for the gtk-update-icon-cache command."
 }

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index 17f10243d78..4e46bf29f1a 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -74,5 +74,5 @@ src_install() {
 
 pkg_postinst() {
[[ -x $(type -P gtk-update-icon-cache) ]] \
-   || elog "Install x11-libs/gtk+:2 for the gtk-update-icon-cache 
command."
+   || elog "Install dev-util/gtk-update-icon-cache for the 
gtk-update-icon-cache command."
 }



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2018-12-30 Thread Mikle Kolyada
commit: c0e8ff6525df068014b932c4eff943b3c25193f2
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Dec 30 18:44:41 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Dec 30 18:44:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0e8ff65

x11-misc/xdg-utils: mark s390 stable

Signed-off-by: Mikle Kolyada  gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11

 x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index 88c11df35fc..17f10243d78 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 s390 ~sh sparc x86 
~amd64-fbsd"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2018-10-20 Thread Markus Meier
commit: 459abd4c4dac3cdd728673a9cf89af7f471d247d
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Oct 20 11:23:14 2018 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Oct 20 11:23:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=459abd4c

x11-misc/xdg-utils: arm stable, bug #666874

Signed-off-by: Markus Meier  gentoo.org>
Package-Manager: Portage-2.3.49, Repoman-2.3.10
RepoMan-Options: --include-arches="arm"

 x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index 0faf7cc666a..88c11df35fc 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2018-10-12 Thread Tobias Klausmann
commit: d196969f18c5e0b15abce00d00194a8bae00247c
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Fri Oct 12 07:32:17 2018 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Fri Oct 12 07:32:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d196969f

x11-misc/xdg-utils-1.1.3-r1: alpha stable

Gentoo-Bug: http://bugs.gentoo.org/666874
Signed-off-by: Tobias Klausmann  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index dd9b39c7adb..0faf7cc666a 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2018-10-06 Thread Matt Turner
commit: 31031d91047521d72d4c73df654a4a9ceb149606
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct  6 19:45:33 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct  6 19:46:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31031d91

x11-misc/xdg-utils-1.1.3-r1: ppc stable, bug 666874

Signed-off-by: Matt Turner  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index 085f979a965..7c47ed51cc5 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2018-10-06 Thread Matt Turner
commit: ecc59cd6f3813722ae555d4cb79245ca5f56b79b
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct  6 19:45:47 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct  6 19:46:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecc59cd6

x11-misc/xdg-utils-1.1.3-r1: ppc64 stable, bug 666874

Signed-off-by: Matt Turner  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index 7c47ed51cc5..dd9b39c7adb 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2018-09-30 Thread Sergei Trofimovich
commit: 854ca983926464e08d44b683e8a368e68d30d9fd
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Sep 30 21:31:26 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Sep 30 21:37:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=854ca983

x11-misc/xdg-utils: stable 1.1.3-r1 for ia64, bug #666874

Signed-off-by: Sergei Trofimovich  gentoo.org>
Package-Manager: Portage-2.3.50, Repoman-2.3.11
RepoMan-Options: --include-arches="ia64"

 x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index 900de225699..085f979a965 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,7 +15,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2018-09-26 Thread Sergei Trofimovich
commit: 0cfcdbc182c9c1fbe7cdf1a61ab65be869c15d0a
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Sep 26 20:00:42 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Sep 26 20:49:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cfcdbc1

x11-misc/xdg-utils: stable 1.1.3-r1 for hppa, bug #666874

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Package-Manager: Portage-2.3.49, Repoman-2.3.10
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index f596b782581..900de225699 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2018-09-24 Thread Sergei Trofimovich
commit: 5e06d5e59b332a7b1ab8236614502954d666a600
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Sep 24 16:33:24 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Sep 24 21:26:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e06d5e5

x11-misc/xdg-utils: stable 1.1.3-r1 for sparc, bug #666874

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Package-Manager: Portage-2.3.49, Repoman-2.3.10
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Sergei Trofimovich  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index 579b9ee8f19..f596b782581 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2018-09-24 Thread Mikle Kolyada
commit: e8b27d1f1ec5acfdeec89cd4459ce31bdb9ea667
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep 24 16:46:20 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep 24 16:46:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8b27d1f

x11-misc/xdg-utils: amd64 stable wrt bug #666874

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index 07fd2b075c5..579b9ee8f19 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2018-09-23 Thread Thomas Deutschmann
commit: 3d3d4546aaee2f0d0a43ae3d2640780718f58460
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Mon Sep 24 01:47:54 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Mon Sep 24 01:47:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d3d4546

x11-misc/xdg-utils: x86 stable (bug #666874)

Package-Manager: Portage-2.3.49, Repoman-2.3.10

 x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index ea5c888e835..07fd2b075c5 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2018-09-16 Thread Mikle Kolyada
commit: 4cfae0235b47d8412b21bb259caab2c84e551202
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sun Sep 16 12:46:33 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sun Sep 16 12:49:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cfae023

x11-misc/xdg-utils: Add ~sh keyword wrt bug #658328

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index a60ae64e93e..ea5c888e835 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2018-07-16 Thread Sergei Trofimovich
commit: 04dbd29583ce17227629b5196fe5f0c83d8ecfdc
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Mon Jul 16 06:29:08 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Mon Jul 16 06:54:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04dbd295

x11-misc/xdg-utils: keyworded 1.1.3-r1 for hppa

Bug: https://bugs.gentoo.org/658328
Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="hppa"

 x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index 25f5098f93e..a60ae64e93e 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
~x86 ~amd64-fbsd"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2018-06-30 Thread Sergei Trofimovich
commit: 3fa74a7fcc68f5cb69ee7bc8356313f86205e5ff
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jun 30 19:02:52 2018 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jun 30 19:03:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fa74a7f

x11-misc/xdg-utils: keyworded 1.1.3-r1 for ppc64, bug #658328

Bug: https://bugs.gentoo.org/658328
Package-Manager: Portage-2.3.41, Repoman-2.3.9
RepoMan-Options: --include-arches="ppc64"

 x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index 85055ff55ce..25f5098f93e 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~s390 ~sparc ~x86 
~amd64-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-fbsd"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2018-06-17 Thread Mike Gilbert
commit: 9ad93eebb7b406963a17af54fd20e50dc0e9692a
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Jun 17 18:51:40 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Jun 17 18:51:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ad93eeb

x11-misc/xdg-utils: drop keywords with broken depgraph

Bug: https://bugs.gentoo.org/658328
Package-Manager: Portage-2.3.40_p14, Repoman-2.3.9_p246

 x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild | 4 ++--
 x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
index c5e01113b9b..af90774c45d 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -15,7 +15,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
 IUSE="doc +perl"
 
 RDEPEND="dev-util/desktop-file-utils

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index 178f20fca72..85055ff55ce 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~s390 ~sparc ~x86 
~amd64-fbsd"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/files/, x11-misc/xdg-utils/

2018-06-17 Thread Mike Gilbert
commit: 961b4df26664b11040729a6ee02f53b90c1ebe21
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Jun 17 18:26:54 2018 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Jun 17 18:30:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=961b4df2

x11-misc/xdg-utils: fix xdg-open with pcmanfm

Closes: https://bugs.gentoo.org/658186
Package-Manager: Portage-2.3.40_p14, Repoman-2.3.9_p246

 .../files/xdg-utils-1.1.3-xdg-open-pcmanfm.patch| 21 +
 ...utils-1.1.3.ebuild => xdg-utils-1.1.3-r1.ebuild} | 11 +--
 2 files changed, 26 insertions(+), 6 deletions(-)

diff --git a/x11-misc/xdg-utils/files/xdg-utils-1.1.3-xdg-open-pcmanfm.patch 
b/x11-misc/xdg-utils/files/xdg-utils-1.1.3-xdg-open-pcmanfm.patch
new file mode 100644
index 000..1f6cc29ab05
--- /dev/null
+++ b/x11-misc/xdg-utils/files/xdg-utils-1.1.3-xdg-open-pcmanfm.patch
@@ -0,0 +1,21 @@
+From 31525d3855f876ddf2e29091b2e8d376f923e09e Mon Sep 17 00:00:00 2001
+From: Rex Dieter 
+Date: Thu, 24 May 2018 14:40:53 -0500
+Subject: xdg-open: better pcmanfm check (BR106636,BR106161)
+
+diff --git a/scripts/xdg-open.in b/scripts/xdg-open.in
+index 630e63e..bf9da4c 100644
+--- a/scripts/xdg-open.in
 b/scripts/xdg-open.in
+@@ -451,7 +451,7 @@ open_lxde()
+ {
+ 
+ # pcmanfm only knows how to handle file:// urls and filepaths, it seems.
+-if pcmanfm --help >/dev/null 2>&1 -a is_file_url_or_path "$1"; then
++if pcmanfm --help >/dev/null 2>&1 && is_file_url_or_path "$1"; then
+ local file="$(file_url_to_path "$1")"
+ 
+ # handle relative paths
+-- 
+cgit v1.1
+

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
similarity index 95%
rename from x11-misc/xdg-utils/xdg-utils-1.1.3.ebuild
rename to x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
index af9be47a61b..178f20fca72 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.3.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3-r1.ebuild
@@ -34,6 +34,10 @@ DOCS=( README RELEASE_NOTES TODO ) # ChangeLog is bogus, see 
git instead
 
 RESTRICT="test" # Disabled because of sandbox violation(s)
 
+PATCHES=(
+   "${FILESDIR}"/xdg-utils-1.1.3-xdg-open-pcmanfm.patch
+)
+
 #S=${WORKDIR}/${MY_P}
 
 src_prepare() {
@@ -42,14 +46,9 @@ src_prepare() {
# to run `autoconf` in ./ and `make scripts-clean` in ./scripts/ to 
refresh
# all the files
if [[ -d "${WORKDIR}/patch" ]]; then
-   eapply patch
+   eapply "${WORKDIR}/patch"
fi
eautoreconf
-
-   if pushd scripts &>/dev/null ; then
-   make scripts-clean
-   popd &>/dev/null
-   fi
 }
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2018-06-13 Thread Johannes Huber
commit: 0eea71fdf9883adae9bc03caeec2f1a63bcee83a
Author: Johannes Huber  gentoo  org>
AuthorDate: Wed Jun 13 17:40:42 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Wed Jun 13 17:43:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0eea71fd

x11-misc/xdg-utils: Remove 1.1.2-r1

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 x11-misc/xdg-utils/Manifest  |  1 -
 x11-misc/xdg-utils/xdg-utils-1.1.2-r1.ebuild | 78 
 2 files changed, 79 deletions(-)

diff --git a/x11-misc/xdg-utils/Manifest b/x11-misc/xdg-utils/Manifest
index ac46cf43207..c480c1765e7 100644
--- a/x11-misc/xdg-utils/Manifest
+++ b/x11-misc/xdg-utils/Manifest
@@ -1,3 +1,2 @@
 DIST xdg-utils-1.1.1.tar.gz 295213 BLAKE2B 
c52bf6bb4d5e2cd2848b17dc4f478debe1d9d399a02f014d0507ed26330ce47ac77c047919fab06c3cc773fab6bd4744bcdd9338e0726aca8e690bb76c0a
 SHA512 
6641b17daea7eecfee0d395e621dc42481582e505bff90a6df5eb0299ed2dca7a76520f000d9545a8424f06d41590382156a2e50f3d68d5c1ab825c268e90edb
-DIST xdg-utils-1.1.2.tar.gz 296735 BLAKE2B 
0d68fee2581075ca4b6beb0f7db77eee76d30afe8e8a3da904451f3c8e1a123f2fa2dc68aa15f7697f2ed532ffc14122cae308776b559c628751514e063ba11e
 SHA512 
1927506065788b5f8bba8b0617a8ee585265342fa40c4b73000d320acd5909036daef94d49495b00982dbb67b7706b2f1ed949cb4cc519dfa534be2c1c8f74db
 DIST xdg-utils-1.1.3.tar.gz 297170 BLAKE2B 
bd281df73d8c966d11b502dd7ec88d96dbc9683503f54b043ae4842f146b6847bd3dd6902cf993771848d9fcb55d26d67f032af2b8aa0795a6d9855535e57d5b
 SHA512 
d1f819a211eb4104a90dfdc6fedcb640fd46b15ccfc8762266f8f538c49d74cb00027b8c1af991fb2a200acb4379986ae375700e06a2aa08fb41a38f883acb3e

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.2-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.2-r1.ebuild
deleted file mode 100644
index 9856867b8fb..000
--- a/x11-misc/xdg-utils/xdg-utils-1.1.2-r1.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools
-
-MY_P=${P/_/-}
-
-DESCRIPTION="Portland utils for cross-platform/cross-toolkit/cross-desktop 
interoperability"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/xdg-utils/;
-#SRC_URI="https://dev.gentoo.org/~johu/distfiles/${P}.tar.xz;
-#SRC_URI="https://people.freedesktop.org/~rdieter/${PN}/${MY_P}.tar.gz
-#  https://dev.gentoo.org/~ssuominen/${P}-patchset-1.tar.xz;
-SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
-IUSE="doc"
-
-RDEPEND="
-   dev-util/desktop-file-utils
-   dev-perl/File-MimeInfo
-   dev-perl/Net-DBus
-   dev-perl/X11-Protocol
-   sys-apps/dbus
-   x11-misc/shared-mime-info
-   x11-apps/xprop
-   x11-apps/xset
-"
-DEPEND=">=app-text/xmlto-0.0.26-r1[text(+)]"
-
-DOCS=( README RELEASE_NOTES TODO ) # ChangeLog is bogus, see git instead
-
-RESTRICT="test" # Disabled because of sandbox violation(s)
-
-#S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-   default
-   # If you choose to do git snapshot instead of patchset, you need to 
remember
-   # to run `autoconf` in ./ and `make scripts-clean` in ./scripts/ to 
refresh
-   # all the files
-   if [[ -d "${WORKDIR}/patch" ]]; then
-   eapply patch
-   fi
-   eautoreconf
-
-   if pushd scripts &>/dev/null ; then
-   make scripts-clean
-   popd &>/dev/null
-   fi
-}
-
-src_configure() {
-   export ac_cv_path_XMLTO="$(type -P xmlto) --skip-validation" #502166
-   default
-}
-
-src_install() {
-   default
-
-   newdoc scripts/xsl/README README.xsl
-   use doc && dodoc -r scripts/html
-
-   # Install default XDG_DATA_DIRS, bug #264647
-   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/local/share\" > 30xdg-data-local
-   echo 'COLON_SEPARATED="XDG_DATA_DIRS XDG_CONFIG_DIRS"' >> 
30xdg-data-local
-   doenvd 30xdg-data-local
-
-   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/share\" > 90xdg-data-base
-   echo XDG_CONFIG_DIRS=\"${EPREFIX}/etc/xdg\" >> 90xdg-data-base
-   doenvd 90xdg-data-base
-}
-
-pkg_postinst() {
-   [[ -x $(type -P gtk-update-icon-cache) ]] || elog "Install 
x11-libs/gtk+:2 for the gtk-update-icon-cache command."
-}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2018-06-13 Thread Johannes Huber
commit: 040aa0ac1717ddad96f87b37d867ef257fda8cc0
Author: Johannes Huber  gentoo  org>
AuthorDate: Wed Jun 13 17:41:45 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Wed Jun 13 17:43:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=040aa0ac

x11-misc/xdg-utils: Format metadata

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 x11-misc/xdg-utils/metadata.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/x11-misc/xdg-utils/metadata.xml b/x11-misc/xdg-utils/metadata.xml
index fb76b944f2d..95e86c12108 100644
--- a/x11-misc/xdg-utils/metadata.xml
+++ b/x11-misc/xdg-utils/metadata.xml
@@ -1,7 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
-freedesktop-b...@gentoo.org
-
+   
+   freedesktop-b...@gentoo.org
+   
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2018-05-18 Thread Lars Wendler
commit: 26a91427d5e0f8a0fcc06c11ba181d537e96209a
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri May 18 11:01:48 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri May 18 11:02:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26a91427

x11-misc/xdg-utils: Bump to version 1.1.3

Package-Manager: Portage-2.3.38, Repoman-2.3.9

 x11-misc/xdg-utils/Manifest   |  1 +
 x11-misc/xdg-utils/xdg-utils-1.1.3.ebuild | 79 +++
 2 files changed, 80 insertions(+)

diff --git a/x11-misc/xdg-utils/Manifest b/x11-misc/xdg-utils/Manifest
index d83758d2e36..ac46cf43207 100644
--- a/x11-misc/xdg-utils/Manifest
+++ b/x11-misc/xdg-utils/Manifest
@@ -1,2 +1,3 @@
 DIST xdg-utils-1.1.1.tar.gz 295213 BLAKE2B 
c52bf6bb4d5e2cd2848b17dc4f478debe1d9d399a02f014d0507ed26330ce47ac77c047919fab06c3cc773fab6bd4744bcdd9338e0726aca8e690bb76c0a
 SHA512 
6641b17daea7eecfee0d395e621dc42481582e505bff90a6df5eb0299ed2dca7a76520f000d9545a8424f06d41590382156a2e50f3d68d5c1ab825c268e90edb
 DIST xdg-utils-1.1.2.tar.gz 296735 BLAKE2B 
0d68fee2581075ca4b6beb0f7db77eee76d30afe8e8a3da904451f3c8e1a123f2fa2dc68aa15f7697f2ed532ffc14122cae308776b559c628751514e063ba11e
 SHA512 
1927506065788b5f8bba8b0617a8ee585265342fa40c4b73000d320acd5909036daef94d49495b00982dbb67b7706b2f1ed949cb4cc519dfa534be2c1c8f74db
+DIST xdg-utils-1.1.3.tar.gz 297170 BLAKE2B 
bd281df73d8c966d11b502dd7ec88d96dbc9683503f54b043ae4842f146b6847bd3dd6902cf993771848d9fcb55d26d67f032af2b8aa0795a6d9855535e57d5b
 SHA512 
d1f819a211eb4104a90dfdc6fedcb640fd46b15ccfc8762266f8f538c49d74cb00027b8c1af991fb2a200acb4379986ae375700e06a2aa08fb41a38f883acb3e

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.3.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.3.ebuild
new file mode 100644
index 000..af9be47a61b
--- /dev/null
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.3.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools
+
+MY_P="${P/_/-}"
+
+DESCRIPTION="Portland utils for cross-platform/cross-toolkit/cross-desktop 
interoperability"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/xdg-utils/;
+#SRC_URI="https://dev.gentoo.org/~johu/distfiles/${P}.tar.xz;
+#SRC_URI="https://people.freedesktop.org/~rdieter/${PN}/${MY_P}.tar.gz
+#  https://dev.gentoo.org/~ssuominen/${P}-patchset-1.tar.xz;
+SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+IUSE="doc"
+
+RDEPEND="
+   dev-util/desktop-file-utils
+   dev-perl/File-MimeInfo
+   dev-perl/Net-DBus
+   dev-perl/X11-Protocol
+   sys-apps/dbus
+   x11-misc/shared-mime-info
+   x11-apps/xprop
+   x11-apps/xset
+"
+DEPEND=">=app-text/xmlto-0.0.26-r1[text(+)]"
+
+DOCS=( README RELEASE_NOTES TODO ) # ChangeLog is bogus, see git instead
+
+RESTRICT="test" # Disabled because of sandbox violation(s)
+
+#S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+   default
+   # If you choose to do git snapshot instead of patchset, you need to 
remember
+   # to run `autoconf` in ./ and `make scripts-clean` in ./scripts/ to 
refresh
+   # all the files
+   if [[ -d "${WORKDIR}/patch" ]]; then
+   eapply patch
+   fi
+   eautoreconf
+
+   if pushd scripts &>/dev/null ; then
+   make scripts-clean
+   popd &>/dev/null
+   fi
+}
+
+src_configure() {
+   export ac_cv_path_XMLTO="$(type -P xmlto) --skip-validation" #502166
+   default
+}
+
+src_install() {
+   default
+
+   newdoc scripts/xsl/README README.xsl
+   use doc && dodoc -r scripts/html
+
+   # Install default XDG_DATA_DIRS, bug #264647
+   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/local/share\" > 30xdg-data-local
+   echo 'COLON_SEPARATED="XDG_DATA_DIRS XDG_CONFIG_DIRS"' >> 
30xdg-data-local
+   doenvd 30xdg-data-local
+
+   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/share\" > 90xdg-data-base
+   echo XDG_CONFIG_DIRS=\"${EPREFIX}/etc/xdg\" >> 90xdg-data-base
+   doenvd 90xdg-data-base
+}
+
+pkg_postinst() {
+   [[ -x $(type -P gtk-update-icon-cache) ]] \
+   || elog "Install x11-libs/gtk+:2 for the gtk-update-icon-cache 
command."
+}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2017-10-07 Thread Patrice Clement
commit: 9718d86b91aa160e66bf32bcd7f63b76cd8be55b
Author: Mike Gilbert  gentoo  org>
AuthorDate: Tue Sep  5 21:37:00 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Oct  7 17:31:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9718d86b

x11-misc/xdg-utils: add missing dbus-related deps.

xdg-screensaver calls dbus-send and executes some perl.

Drop the 'perl' USE flag since it now becomes mostly useless.

Package-Manager: Portage-2.3.6_p39, Repoman-2.3.3_p17
Bug: https://bugs.gentoo.org/611696
Closes: https://github.com/gentoo/gentoo/pull/5627

 .../{xdg-utils-1.1.2.ebuild => xdg-utils-1.1.2-r1.ebuild} | 15 ++-
 1 file changed, 10 insertions(+), 5 deletions(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.2.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.2-r1.ebuild
similarity index 86%
rename from x11-misc/xdg-utils/xdg-utils-1.1.2.ebuild
rename to x11-misc/xdg-utils/xdg-utils-1.1.2-r1.ebuild
index 63b56cdc73c..9856867b8fb 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.2.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.2-r1.ebuild
@@ -15,14 +15,19 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="doc +perl"
-
-RDEPEND="dev-util/desktop-file-utils
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+IUSE="doc"
+
+RDEPEND="
+   dev-util/desktop-file-utils
+   dev-perl/File-MimeInfo
+   dev-perl/Net-DBus
+   dev-perl/X11-Protocol
+   sys-apps/dbus
x11-misc/shared-mime-info
x11-apps/xprop
x11-apps/xset
-   perl? ( dev-perl/File-MimeInfo )"
+"
 DEPEND=">=app-text/xmlto-0.0.26-r1[text(+)]"
 
 DOCS=( README RELEASE_NOTES TODO ) # ChangeLog is bogus, see git instead



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2017-05-08 Thread Lars Wendler
commit: ada30fbff65f62fc734c992a3961aac6873ba69e
Author: Lars Wendler  gentoo  org>
AuthorDate: Tue May  9 01:12:53 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Tue May  9 01:16:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ada30fbf

x11-misc/xdg-utils: Bump to version 1.1.2

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 x11-misc/xdg-utils/Manifest   |  1 +
 x11-misc/xdg-utils/xdg-utils-1.1.2.ebuild | 73 +++
 2 files changed, 74 insertions(+)

diff --git a/x11-misc/xdg-utils/Manifest b/x11-misc/xdg-utils/Manifest
index d700c1b971c..5c3d00033c1 100644
--- a/x11-misc/xdg-utils/Manifest
+++ b/x11-misc/xdg-utils/Manifest
@@ -1 +1,2 @@
 DIST xdg-utils-1.1.1.tar.gz 295213 SHA256 
b0dd63a2576e0bb16f1aa78d6ddf7d6784784a098d4df17161cd6a17c7bc4125 SHA512 
6641b17daea7eecfee0d395e621dc42481582e505bff90a6df5eb0299ed2dca7a76520f000d9545a8424f06d41590382156a2e50f3d68d5c1ab825c268e90edb
 WHIRLPOOL 
d40e89ae50d5cdf96cd7c03e9e4ab91fc46c0da2d8d79f8e27d64f4c5526c733ae5e75e89d880cd05b5c347ecb9837090ec110be5813456c690807abb1508718
+DIST xdg-utils-1.1.2.tar.gz 296735 SHA256 
951952e2c6bb21214e0bb54e0dffa057d30f5563300225c24c16fba846258bcc SHA512 
1927506065788b5f8bba8b0617a8ee585265342fa40c4b73000d320acd5909036daef94d49495b00982dbb67b7706b2f1ed949cb4cc519dfa534be2c1c8f74db
 WHIRLPOOL 
230d028ea375c58e4ca96c5ae295d3768fdbef3fd142abe01e7fe8518c7df4fe5d7a6850118bbe249449981de48e4f9f1a784837a6ba8834c8f3fe4f7bff0ffa

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.2.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.2.ebuild
new file mode 100644
index 000..63b56cdc73c
--- /dev/null
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.2.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools
+
+MY_P=${P/_/-}
+
+DESCRIPTION="Portland utils for cross-platform/cross-toolkit/cross-desktop 
interoperability"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/xdg-utils/;
+#SRC_URI="https://dev.gentoo.org/~johu/distfiles/${P}.tar.xz;
+#SRC_URI="https://people.freedesktop.org/~rdieter/${PN}/${MY_P}.tar.gz
+#  https://dev.gentoo.org/~ssuominen/${P}-patchset-1.tar.xz;
+SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="doc +perl"
+
+RDEPEND="dev-util/desktop-file-utils
+   x11-misc/shared-mime-info
+   x11-apps/xprop
+   x11-apps/xset
+   perl? ( dev-perl/File-MimeInfo )"
+DEPEND=">=app-text/xmlto-0.0.26-r1[text(+)]"
+
+DOCS=( README RELEASE_NOTES TODO ) # ChangeLog is bogus, see git instead
+
+RESTRICT="test" # Disabled because of sandbox violation(s)
+
+#S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+   default
+   # If you choose to do git snapshot instead of patchset, you need to 
remember
+   # to run `autoconf` in ./ and `make scripts-clean` in ./scripts/ to 
refresh
+   # all the files
+   if [[ -d "${WORKDIR}/patch" ]]; then
+   eapply patch
+   fi
+   eautoreconf
+
+   if pushd scripts &>/dev/null ; then
+   make scripts-clean
+   popd &>/dev/null
+   fi
+}
+
+src_configure() {
+   export ac_cv_path_XMLTO="$(type -P xmlto) --skip-validation" #502166
+   default
+}
+
+src_install() {
+   default
+
+   newdoc scripts/xsl/README README.xsl
+   use doc && dodoc -r scripts/html
+
+   # Install default XDG_DATA_DIRS, bug #264647
+   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/local/share\" > 30xdg-data-local
+   echo 'COLON_SEPARATED="XDG_DATA_DIRS XDG_CONFIG_DIRS"' >> 
30xdg-data-local
+   doenvd 30xdg-data-local
+
+   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/share\" > 90xdg-data-base
+   echo XDG_CONFIG_DIRS=\"${EPREFIX}/etc/xdg\" >> 90xdg-data-base
+   doenvd 90xdg-data-base
+}
+
+pkg_postinst() {
+   [[ -x $(type -P gtk-update-icon-cache) ]] || elog "Install 
x11-libs/gtk+:2 for the gtk-update-icon-cache command."
+}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2017-02-18 Thread Michael Palimaka
commit: 884046b057ac80fe3873db38e64d2b4cbb0507ee
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Feb 19 01:26:25 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Feb 19 01:29:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=884046b0

x11-misc/xdg-utils: remove old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 x11-misc/xdg-utils/xdg-utils-1.1.1.ebuild | 69 ---
 1 file changed, 69 deletions(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.1.ebuild
deleted file mode 100644
index ee2dae7eda..00
--- a/x11-misc/xdg-utils/xdg-utils-1.1.1.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit autotools eutils
-
-MY_P=${P/_/-}
-
-DESCRIPTION="Portland utils for cross-platform/cross-toolkit/cross-desktop 
interoperability"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/xdg-utils/;
-#SRC_URI="https://dev.gentoo.org/~johu/distfiles/${P}.tar.xz;
-#SRC_URI="https://people.freedesktop.org/~rdieter/${PN}/${MY_P}.tar.gz
-#  https://dev.gentoo.org/~ssuominen/${P}-patchset-1.tar.xz;
-SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
-IUSE="doc +perl"
-
-RDEPEND="dev-util/desktop-file-utils
-   x11-misc/shared-mime-info
-   x11-apps/xprop
-   x11-apps/xset
-   perl? ( dev-perl/File-MimeInfo )"
-DEPEND=">=app-text/xmlto-0.0.26-r1[text(+)]"
-
-DOCS="README RELEASE_NOTES TODO" # ChangeLog is bogus, see git instead
-
-RESTRICT="test" # Disabled because of sandbox violation(s)
-
-#S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-   # If you choose to do git snapshot instead of patchset, you need to 
remember
-   # to run `autoconf` in ./ and `make scripts-clean` in ./scripts/ to 
refresh
-   # all the files
-   if [[ -d ${WORKDIR}/patch ]]; then
-   EPATCH_SUFFIX=patch EPATCH_FORCE=yes epatch
-   fi
-   eautoreconf
-   pushd scripts && make scripts-clean && popd
-}
-
-src_configure() {
-   export ac_cv_path_XMLTO="$(type -P xmlto) --skip-validation" #502166
-   default
-}
-
-src_install() {
-   default
-
-   newdoc scripts/xsl/README README.xsl
-   use doc && dohtml -r scripts/html
-
-   # Install default XDG_DATA_DIRS, bug #264647
-   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/local/share\" > 30xdg-data-local
-   echo 'COLON_SEPARATED="XDG_DATA_DIRS XDG_CONFIG_DIRS"' >> 
30xdg-data-local
-   doenvd 30xdg-data-local
-
-   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/share\" > 90xdg-data-base
-   echo XDG_CONFIG_DIRS=\"${EPREFIX}/etc/xdg\" >> 90xdg-data-base
-   doenvd 90xdg-data-base
-}
-
-pkg_postinst() {
-   [[ -x $(type -P gtk-update-icon-cache) ]] || elog "Install 
x11-libs/gtk+:2 for the gtk-update-icon-cache command."
-}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2017-02-18 Thread Markus Meier
commit: 31d1cd3593688a7337dec89ee2ba662bf2999459
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Feb 18 19:02:39 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Feb 18 19:02:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31d1cd35

x11-misc/xdg-utils: arm stable, bug #605682

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

 x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
index 14c000e9a3..f8caf160c0 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 IUSE="doc +perl"
 
 RDEPEND="dev-util/desktop-file-utils



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2017-01-22 Thread Jeroen Roovers
commit: dceced8dd690a78edf05694d208d2d9b865e5620
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun Jan 22 10:43:31 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun Jan 22 10:43:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dceced8d

x11-misc/xdg-utils: Stable for HPPA (bug #605682).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
index 0fa3742..eb035b3 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc +perl"
 
 RDEPEND="dev-util/desktop-file-utils



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2017-01-20 Thread Agostino Sarubbo
commit: 42497e6cf93dfe21497f74c1672e8c31b213aeaf
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Jan 20 11:03:44 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Jan 20 11:04:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42497e6c

x11-misc/xdg-utils: ppc64 stable wrt bug #605682

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
index 73a2c8c..0fa3742 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc 
x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc +perl"
 
 RDEPEND="dev-util/desktop-file-utils



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2017-01-17 Thread Agostino Sarubbo
commit: 2ac6ff374bfad81e35acd6c5b443ce76918612f4
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Jan 17 14:21:44 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Jan 17 14:24:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ac6ff37

x11-misc/xdg-utils: ia64 stable wrt bug #605682

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
index 9b2ef6e..73a2c8c 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ~ppc64 ~s390 ~sh ~sparc 
x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc +perl"
 
 RDEPEND="dev-util/desktop-file-utils



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2017-01-16 Thread Tobias Klausmann
commit: 3c84add65908224272f6fbb77fafaeb7d2f2df73
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Mon Jan 16 19:56:22 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Mon Jan 16 19:56:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c84add6

x11-misc/xdg-utils-1.1.1-r1: stable on alpha

Gentoo-Bug: 605682

 x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
index 588b021..9b2ef6e 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc +perl"
 
 RDEPEND="dev-util/desktop-file-utils



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2017-01-16 Thread Agostino Sarubbo
commit: 5b485409f3272ddacd79f4ac33c0ad9805e8eb1c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Mon Jan 16 10:14:35 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Mon Jan 16 10:14:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b485409

x11-misc/xdg-utils: x86 stable wrt bug #605682

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
index 6bb6a9b..588b021 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc +perl"
 
 RDEPEND="dev-util/desktop-file-utils



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2017-01-15 Thread Agostino Sarubbo
commit: 6e6c69cba464e2154a850f1dc91a111b8fcf7eee
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Jan 15 15:47:41 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Jan 15 15:50:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e6c69cb

x11-misc/xdg-utils: ppc stable wrt bug #605682

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
index d42296a..6bb6a9b 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc +perl"
 
 RDEPEND="dev-util/desktop-file-utils



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2017-01-15 Thread Agostino Sarubbo
commit: 1e7c6bc01cfe870ebb122d218a1d3e5fd99c0c5a
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Jan 15 12:40:09 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Jan 15 12:40:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e7c6bc0

x11-misc/xdg-utils: amd64 stable wrt bug #605682

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
index 75a0b97..d42296a 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -16,7 +16,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc +perl"
 
 RDEPEND="dev-util/desktop-file-utils



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2017-01-01 Thread Michael Palimaka
commit: 15d5b6a3973965b365312e76f611dd932795934e
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jan  1 14:09:48 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jan  1 14:10:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15d5b6a3

x11-misc/xdg-utils: remove old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 x11-misc/xdg-utils/Manifest  |  2 -
 x11-misc/xdg-utils/xdg-utils-1.1.0_rc2-r1.ebuild | 66 
 x11-misc/xdg-utils/xdg-utils-1.1.0_rc2.ebuild| 55 
 3 files changed, 123 deletions(-)

diff --git a/x11-misc/xdg-utils/Manifest b/x11-misc/xdg-utils/Manifest
index 6f7d578..d700c1b 100644
--- a/x11-misc/xdg-utils/Manifest
+++ b/x11-misc/xdg-utils/Manifest
@@ -1,3 +1 @@
-DIST xdg-utils-1.1.0-rc2.tar.gz 307013 SHA256 
bbe95ec4e7d54827981598622dafda8fd20ca2a2fddc8a940dd741215baff1ec SHA512 
41ba836ba5e882a28247739b7b9dee667cfee35b5b53bbfbd756752dab240b4a394dfbbe1d218a92a2dcc264e999d10e5e9dec4cf8674d266b0f93a259a4ddc1
 WHIRLPOOL 
123860d87ff00dd4221375c93eb9f4c7ee61e9af259cd5f671176d527dd1e8f0e61939b5ef9d92da0730803eab71e67eb68d51360865ae4110e7228fc460d7dc
-DIST xdg-utils-1.1.0_rc2-patchset-1.tar.xz 20164 SHA256 
0c7f3c39c28d43e049ea32f4b29f768c91a1c190d4ea736940370b40ee4d2cb8 SHA512 
3f90bd778fe1aaf50a05f6d0e4ae51ab251037bde57a7f21a66b66681f05b811a832dadfde909938240ee4bbf4060e471faf0105a5f0e832af7e0436b4206bef
 WHIRLPOOL 
883cb5efead1df84425252860577610dad5ae7ce14673d5c96a432c44de215252349ac0d07b7bfb071da38b70235f8b7c9c2fea8ffba5c1443f28078842a3930
 DIST xdg-utils-1.1.1.tar.gz 295213 SHA256 
b0dd63a2576e0bb16f1aa78d6ddf7d6784784a098d4df17161cd6a17c7bc4125 SHA512 
6641b17daea7eecfee0d395e621dc42481582e505bff90a6df5eb0299ed2dca7a76520f000d9545a8424f06d41590382156a2e50f3d68d5c1ab825c268e90edb
 WHIRLPOOL 
d40e89ae50d5cdf96cd7c03e9e4ab91fc46c0da2d8d79f8e27d64f4c5526c733ae5e75e89d880cd05b5c347ecb9837090ec110be5813456c690807abb1508718

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.0_rc2-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.0_rc2-r1.ebuild
deleted file mode 100644
index bbd74ac..
--- a/x11-misc/xdg-utils/xdg-utils-1.1.0_rc2-r1.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit eutils
-
-MY_P=${P/_/-}
-
-DESCRIPTION="Portland utils for cross-platform/cross-toolkit/cross-desktop 
interoperability"
-HOMEPAGE="https://portland.freedesktop.org/;
-SRC_URI="https://people.freedesktop.org/~rdieter/${PN}/${MY_P}.tar.gz
-   https://dev.gentoo.org/~ssuominen/${P}-patchset-1.tar.xz;
-#SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="doc +perl"
-
-RDEPEND="dev-util/desktop-file-utils
-   x11-misc/shared-mime-info
-   x11-apps/xprop
-   x11-apps/xset
-   perl? ( dev-perl/File-MimeInfo )"
-DEPEND=">=app-text/xmlto-0.0.26-r1[text(+)]"
-
-DOCS="README RELEASE_NOTES TODO" # ChangeLog is bogus, see git instead
-
-RESTRICT="test" # Disabled because of sandbox violation(s)
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-   # If you choose to do git snapshot instead of patchset, you need to 
remember
-   # to run `autoconf` in ./ and `make scripts-clean` in ./scripts/ to 
refresh
-   # all the files
-   if [[ -d ${WORKDIR}/patch ]]; then
-   EPATCH_SUFFIX=patch EPATCH_FORCE=yes epatch
-   fi
-}
-
-src_configure() {
-   export ac_cv_path_XMLTO="$(type -P xmlto) --skip-validation" #502166
-   default
-}
-
-src_install() {
-   default
-
-   newdoc scripts/xsl/README README.xsl
-   use doc && dohtml -r scripts/html
-
-   # Install default XDG_DATA_DIRS, bug #264647
-   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/local/share\" > 30xdg-data-local
-   echo 'COLON_SEPARATED="XDG_DATA_DIRS XDG_CONFIG_DIRS"' >> 
30xdg-data-local
-   doenvd 30xdg-data-local
-
-   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/share\" > 90xdg-data-base
-   echo XDG_CONFIG_DIRS=\"${EPREFIX}/etc/xdg\" >> 90xdg-data-base
-   doenvd 90xdg-data-base
-}
-
-pkg_postinst() {
-   [[ -x $(type -P gtk-update-icon-cache) ]] || elog "Install 
x11-libs/gtk+:2 for the gtk-update-icon-cache command."
-}

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.0_rc2.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.0_rc2.ebuild
deleted file mode 100644
index 7750152..
--- a/x11-misc/xdg-utils/xdg-utils-1.1.0_rc2.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MY_P=${P/_/-}
-
-DESCRIPTION="Portland utils for cross-platform/cross-toolkit/cross-desktop 

[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2016-06-01 Thread Michael Palimaka
commit: d598d9be67c1fc11dbb81d8efd6611a552475f33
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Jun  1 21:31:28 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Jun  1 21:31:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d598d9be

x11-misc/xdg-utils: x86 stable

Gentoo-bug: 558676

Package-Manager: portage-2.3.0_rc1

 x11-misc/xdg-utils/xdg-utils-1.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.1.ebuild
index 9bb3407..a67b402 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.1.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc 
x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc +perl"
 
 RDEPEND="dev-util/desktop-file-utils



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/files/, x11-misc/xdg-utils/

2016-04-29 Thread Johannes Huber
commit: f3b38d66963fc2bc0f0a2c278621d38d275b0082
Author: Johannes Huber  gentoo  org>
AuthorDate: Fri Apr 29 09:17:29 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri Apr 29 09:17:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3b38d66

x11-misc/xdg-utils: Add support for ktraderclient5

Revision bump adds upstream patch to support kdetraderclient5 from
kde-plasma/kde-cli-tools. Fixes default mime query, used for example by
google-chrome.

Gentoo-bug: 578848

Package-Manager: portage-2.2.28

 .../files/xdg-utils-1.1.1-ktraderclient5.patch | 43 +
 x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild   | 72 ++
 2 files changed, 115 insertions(+)

diff --git a/x11-misc/xdg-utils/files/xdg-utils-1.1.1-ktraderclient5.patch 
b/x11-misc/xdg-utils/files/xdg-utils-1.1.1-ktraderclient5.patch
new file mode 100644
index 000..eee4684
--- /dev/null
+++ b/x11-misc/xdg-utils/files/xdg-utils-1.1.1-ktraderclient5.patch
@@ -0,0 +1,43 @@
+From 31db8136bdf61e7f9cb866f9d47c99c63343558d Mon Sep 17 00:00:00 2001
+From: Massimiliano Torromeo 
+Date: Fri, 15 Apr 2016 11:17:37 +0200
+Subject: xdg-mime: support for KDE Frameworks 5.6
+
+
+diff --git a/scripts/xdg-mime.in b/scripts/xdg-mime.in
+index 129850f..63b8a82 100644
+--- a/scripts/xdg-mime.in
 b/scripts/xdg-mime.in
+@@ -428,13 +428,9 @@ defapp_kde()
+   case "${KDE_SESSION_VERSION}" in
+ 4)
+   KTRADER=`which ktraderclient 2> /dev/null`
+-  MIMETYPE="--mimetype"
+-  SERVICETYPE="--servicetype"
+ ;;
+ 5)
+   KTRADER=`which ktraderclient${KDE_SESSION_VERSION} 2> /dev/null`
+-  MIMETYPE="--mimetype"
+-  SERVICETYPE="--servicetype"
+ ;;
+   esac
+ else
+@@ -442,8 +438,8 @@ defapp_kde()
+ fi
+ if [ -n "$KTRADER" ] ; then
+ DEBUG 1 "Running KDE trader query \"$MIME\" mimetype and 
\"Application\" servicetype"
+-trader_result=`$KTRADER $MIMETYPE "$MIME" $SERVICETYPE Application 
2>/dev/null \
+-| grep DesktopEntryPath | head -n 1 | cut -d ':' -f 2 | cut -d \' 
-f 2`
++trader_result=`$KTRADER --mimetype "$MIME" --servicetype Application 
2>/dev/null \
++| grep -E "^DesktopEntryPath : |\.desktop$" | head -n1 | sed 
"s/^DesktopEntryPath : '\(.*\.desktop\)'\$/\1/"`
+ if [ -n "$trader_result" ] ; then
+ basename "$trader_result"
+ exit_success
+@@ -954,4 +950,3 @@ esac
+ update_mime_database $xdg_base_dir
+ 
+ exit_success
+-
+-- 
+cgit v0.10.2
+

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
new file mode 100644
index 000..75a0b97
--- /dev/null
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.1-r1.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit autotools
+
+MY_P=${P/_/-}
+
+DESCRIPTION="Portland utils for cross-platform/cross-toolkit/cross-desktop 
interoperability"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/xdg-utils/;
+#SRC_URI="https://dev.gentoo.org/~johu/distfiles/${P}.tar.xz;
+#SRC_URI="https://people.freedesktop.org/~rdieter/${PN}/${MY_P}.tar.gz
+#  https://dev.gentoo.org/~ssuominen/${P}-patchset-1.tar.xz;
+SRC_URI="https://portland.freedesktop.org/download/${MY_P}.tar.gz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="doc +perl"
+
+RDEPEND="dev-util/desktop-file-utils
+   x11-misc/shared-mime-info
+   x11-apps/xprop
+   x11-apps/xset
+   perl? ( dev-perl/File-MimeInfo )"
+DEPEND=">=app-text/xmlto-0.0.26-r1[text(+)]"
+
+DOCS=( README RELEASE_NOTES TODO ) # ChangeLog is bogus, see git instead
+
+PATCHES=( "${FILESDIR}/${P}-ktraderclient5.patch" )
+
+RESTRICT="test" # Disabled because of sandbox violation(s)
+
+#S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+   default
+   # If you choose to do git snapshot instead of patchset, you need to 
remember
+   # to run `autoconf` in ./ and `make scripts-clean` in ./scripts/ to 
refresh
+   # all the files
+   if [[ -d ${WORKDIR}/patch ]]; then
+   EPATCH_SUFFIX=patch EPATCH_FORCE=yes epatch
+   fi
+   eautoreconf
+   pushd scripts && make scripts-clean && popd
+}
+
+src_configure() {
+   export ac_cv_path_XMLTO="$(type -P xmlto) --skip-validation" #502166
+   default
+}
+
+src_install() {
+   default
+
+   newdoc scripts/xsl/README README.xsl
+   use doc && dodoc -r scripts/html
+
+   # Install default XDG_DATA_DIRS, bug #264647
+   echo XDG_DATA_DIRS=\"${EPREFIX}/usr/local/share\" > 30xdg-data-local
+   echo 'COLON_SEPARATED="XDG_DATA_DIRS XDG_CONFIG_DIRS"' >> 

[gentoo-commits] repo/gentoo:master commit in: x11-misc/xdg-utils/

2016-02-01 Thread Tobias Klausmann
commit: 2a997b791dce1efd55d21207ea1d9af93385678d
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Mon Feb  1 14:26:06 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Mon Feb  1 14:26:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a997b79

x11-misc/xdg-utils: add alpha keyword

Gentoo-Bug: 558676

Package-Manager: portage-2.2.27

 x11-misc/xdg-utils/xdg-utils-1.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xdg-utils/xdg-utils-1.1.1.ebuild 
b/x11-misc/xdg-utils/xdg-utils-1.1.1.ebuild
index 979c9a9..fd72f6f 100644
--- a/x11-misc/xdg-utils/xdg-utils-1.1.1.ebuild
+++ b/x11-misc/xdg-utils/xdg-utils-1.1.1.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="http://portland.freedesktop.org/download/${MY_P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc +perl"
 
 RDEPEND="dev-util/desktop-file-utils



  1   2   >