media-gfx/viewnior: Deleted 1.7 because it is in the Gentoo tree now.
the build was successful Details

This commit is contained in:
tastytea 2018-12-23 20:51:55 +01:00
parent 01a8430d90
commit 3c0c1c6f4e
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
7 changed files with 6 additions and 136 deletions

View File

@ -1,14 +0,0 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
AUX 0.17-Replace-calls-to-getenv-with-g_getenv.patch 1486 BLAKE2B bee8ee6a3b3cbfaa24620ac772dc7755e54de5e6697c8d706c0b218449c9e36cb426e92e3ba7db59b9990ba2673b8b08e5a30102e5baa542badee0dc2c7aa7e7 SHA512 963b6ce3a46e8c453d220392087be0b0d3e56a0707128bfc3610d61b65269db165f27c8cf69023724c37bbfc2a0b18517a28c6bb3ee4c699be7f0044f6639522
DIST viewnior-1.7.tar.gz 165719 BLAKE2B 906ab0b632fcc102ac62dd77d6742c2121c46cd92adc0dfe9ba772bf697eff356519dbb6219016a6470903c855aa4c9081f0d61ca1607d8d1b6d8e03236a19bc SHA512 5ba17d7b5ceeffa65b04213f179c1439b09ac44e412e0750dde159b118a714f28d3a290509a402b234e4e7ba5b185fc73eef65d418598f344911e4e2c1373fe5
EBUILD viewnior-1.7.ebuild 1159 BLAKE2B 561aefeba9305111c1d3e8ebd8243b55f82b8daf627c3f317963c5d1da86777b57e319445698ad2fd6131b472515023f6b2b5ab87fa41e3f39691e787bc7dd8c SHA512 5b277270b7c8828a88a565abab0c951167a6facd2f481128c25e0f26902103d7bfe79dc1fd9665ce3d1a111633fe359aa559c5dd88f4a203710bfb167e40857b
MISC metadata.xml 484 BLAKE2B 454eb553fd9d16d073addfbade6168724e810a80e7076c7ca09bdd1c8faa0373af849c5888305c024d1195c77c7e1439b0f00fdd3356e51150a6ff85a51c08a5 SHA512 bd881514455153909cbf3bef207d325d619ee916b70fd6b2d0632972f00c9056e2f260407d033530945b73bf77989468616e20ae3db480671ecc619ef10f7b5d
-----BEGIN PGP SIGNATURE-----
iHUEAREIAB0WIQQ1VSZoZMptf/RapufPw5SX8bJuBwUCW/K1sQAKCRDPw5SX8bJu
B43aAPoC8UJ27GC6BB+NNBWKWsDp1+FTRffbxXuxgLE9Op70kAD+IpKZFeQnCVux
D0k5hJci/r+lf0XAwbp+gHOeq/9/K4A=
=L4/l
-----END PGP SIGNATURE-----

View File

@ -1,36 +0,0 @@
From aac0a0c4ad232723e8aecbab4dff99691b90a08e Mon Sep 17 00:00:00 2001
From: Siyan Panayotov <siyan@hellosiyan.com>
Date: Mon, 28 May 2018 21:22:04 +0200
Subject: [PATCH] Replace calls to getenv() with g_getenv()
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Using getenv() triggers compile errors in Open Build Service.
Thanks to Axel Köllhofer for the patch.
---
src/uni-utils.c | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/uni-utils.c b/src/uni-utils.c
index 8152848..1b4992a 100755
--- a/src/uni-utils.c
+++ b/src/uni-utils.c
@@ -106,10 +106,10 @@ uni_detect_desktop_environment ()
{
VnrPrefsDesktop environment = VNR_PREFS_DESKTOP_GNOME3;
- gchar *xdg_current_desktop = g_ascii_strup(getenv("XDG_CURRENT_DESKTOP"), -1);
- gchar *xdg_session_desktop = g_ascii_strup(getenv("XDG_SESSION_DESKTOP"), -1);
- gchar *desktop_session = g_ascii_strdown(getenv("DESKTOP_SESSION"), -1);
- gchar *gdmsession = g_ascii_strdown(getenv("GDMSESSION"), -1);
+ gchar *xdg_current_desktop = g_ascii_strup(g_getenv("XDG_CURRENT_DESKTOP"), -1);
+ gchar *xdg_session_desktop = g_ascii_strup(g_getenv("XDG_SESSION_DESKTOP"), -1);
+ gchar *desktop_session = g_ascii_strdown(g_getenv("DESKTOP_SESSION"), -1);
+ gchar *gdmsession = g_ascii_strdown(g_getenv("GDMSESSION"), -1);
if (!g_strcmp0(xdg_current_desktop, "GNOME") || !g_strcmp0(xdg_session_desktop, "GNOME"))
{
--
2.18.1

View File

@ -1,15 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>gentoo@tastytea.de</email>
<name>tastytea</name>
</maintainer>
<upstream>
<maintainer>
<name>Siyan Panayotov</name>
</maintainer>
<remote-id type="github">hellosiyan/Viewnior</remote-id>
<changelog>https://siyanpanayotov.com/project/viewnior/news</changelog>
</upstream>
</pkgmetadata>

View File

@ -1,57 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit xdg-utils gnome2-utils meson
MY_PN=Viewnior
DESCRIPTION="Fast and simple image viewer"
HOMEPAGE="https://siyanpanayotov.com/project/viewnior/ https://github.com/hellosiyan/Viewnior"
SRC_URI="https://github.com/hellosiyan/${MY_PN}/archive/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-libs/glib:2
media-gfx/exiv2
x11-libs/gtk+:2
x11-misc/shared-mime-info
"
RDEPEND="${DEPEND}
dev-util/glib-utils
"
PATCHES=(
"${FILESDIR}/0.17-Replace-calls-to-getenv-with-g_getenv.patch"
)
src_prepare() {
default
# That script would update icon cache and desktop database
sed -i "s/meson.add_install_script('meson_post_install.py')//" meson.build
# Don't let meson compress the manpage
sed -i "s/subdir('man')//" meson.build
}
src_install() {
meson_src_install
doman man/viewnior.1
}
S="${WORKDIR}/${MY_PN}-${P}"
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
xdg_desktop_database_update
gnome2_icon_cache_update
}
pkg_postrm() {
xdg_desktop_database_update
gnome2_icon_cache_update
}

View File

@ -1,14 +1,4 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
DIST libravatarserv-0.6.8.tar.gz 21715 BLAKE2B 7fc6d7dcecfaadfc4382a78fe2cace11f31c8da77d904e8989d27aef8095abc1db47d8d17c0da5f64705e45d98f92043bf2d3ee27994c5e3f5e8e321b19b00af SHA512 dc065044b2250319e463a93840d4ab71ae07ea9c77126a50d51a07123f11ae5395ce85f01ec4f886fd5481395212478cf29a9ebc38e8184a91a9cfc7767e9bf8
EBUILD libravatarserv-0.6.8.ebuild 994 BLAKE2B dab67382a5ea36ca7302123e4bde3cebe3b762f013c91c2758891e74abcb0e03d94bdf622f936b4fd364c63704915db50fa0cdddccfb56a6e0f6d72d931b75f0 SHA512 a4dcf76b1dd57ba331520870c60dd2075ad1adb0230c03b89aac7e178ec280017fc7b297a51e0478c93abd13dde89c0d7075548233c9ee15d97aea76074857f3
EBUILD libravatarserv-9999.ebuild 994 BLAKE2B dab67382a5ea36ca7302123e4bde3cebe3b762f013c91c2758891e74abcb0e03d94bdf622f936b4fd364c63704915db50fa0cdddccfb56a6e0f6d72d931b75f0 SHA512 a4dcf76b1dd57ba331520870c60dd2075ad1adb0230c03b89aac7e178ec280017fc7b297a51e0478c93abd13dde89c0d7075548233c9ee15d97aea76074857f3
EBUILD libravatarserv-0.6.8.ebuild 995 BLAKE2B 62d1ed89cf97feffd8ff899e577a458fab99427cf7073d9778d1f65d3c511b9db2525b3d1b6d24f6f2691584d5eb78fa4a513562f1f07452f84358602bfa34eb SHA512 fc1a0e8a6e501e3baebca64b30aa71ac2810a79b95dd725d3e444276ca6f65a185fcfb9abc4c0ec57fe8a745c31f7a623daa069eeebfdd1619d0a7f090dc0ac0
EBUILD libravatarserv-9999.ebuild 995 BLAKE2B 62d1ed89cf97feffd8ff899e577a458fab99427cf7073d9778d1f65d3c511b9db2525b3d1b6d24f6f2691584d5eb78fa4a513562f1f07452f84358602bfa34eb SHA512 fc1a0e8a6e501e3baebca64b30aa71ac2810a79b95dd725d3e444276ca6f65a185fcfb9abc4c0ec57fe8a745c31f7a623daa069eeebfdd1619d0a7f090dc0ac0
MISC metadata.xml 351 BLAKE2B 71ac0893a9aba22d39b57647195232d4012c98b5d6f8551638f124bf474188d4177f4861325f218ee86042caf04f84a7b7ae3fb8f68bb8228af660219df666ed SHA512 baac3c95f337d0d6b89b673063f710627650028c8c581e8eda0ac14b7bd8043efe5b8ce767cd8ee9e3e5dc7f7a434e403e7426371e3573ed7e5ec932abf5a7e6
-----BEGIN PGP SIGNATURE-----
iHUEAREIAB0WIQQ1VSZoZMptf/RapufPw5SX8bJuBwUCXA1pywAKCRDPw5SX8bJu
B6kdAQCNAQkXshlE2r/0UlXkOBTlVP5Ea7gW8bloh4UQroYTBAD8CdaZw0uinYAR
zC8OZ543t6bqZ99v7B+EC0jPYcqGkoA=
=QIsR
-----END PGP SIGNATURE-----

View File

@ -34,7 +34,8 @@ RDEPEND="
"
DEPEND="
dev-util/cmake
${RDEPEND}"
${RDEPEND}
"
DOCS="README.md doc/nginx-example.conf"

View File

@ -34,7 +34,8 @@ RDEPEND="
"
DEPEND="
dev-util/cmake
${RDEPEND}"
${RDEPEND}
"
DOCS="README.md doc/nginx-example.conf"