From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/shutter/
Date: Sat, 11 Mar 2023 17:15:39 +0000 (UTC) [thread overview]
Message-ID: <1678554906.26a3cab32f35e3e63ec95f06f2edae47212026ff.sam@gentoo> (raw)
commit: 26a3cab32f35e3e63ec95f06f2edae47212026ff
Author: Alexey Sokolov <alexey+gentoo <AT> asokolov <DOT> org>
AuthorDate: Sun Mar 5 23:43:29 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 11 17:15:06 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26a3cab3
x11-misc/shutter: add 0.99.4
Signed-off-by: Alexey Sokolov <alexey+gentoo <AT> asokolov.org>
Closes: https://github.com/gentoo/gentoo/pull/29951
Signed-off-by: Sam James <sam <AT> gentoo.org>
x11-misc/shutter/Manifest | 1 +
x11-misc/shutter/metadata.xml | 3 ++
x11-misc/shutter/shutter-0.99.4.ebuild | 91 ++++++++++++++++++++++++++++++++++
3 files changed, 95 insertions(+)
diff --git a/x11-misc/shutter/Manifest b/x11-misc/shutter/Manifest
index ab38e67eb736..b74db83ac3d5 100644
--- a/x11-misc/shutter/Manifest
+++ b/x11-misc/shutter/Manifest
@@ -1 +1,2 @@
DIST shutter-0.99.2.tar.gz 1733886 BLAKE2B 19596b5385a11f179c9fbbf81a97f2a5d9661d52d14f33be72595c26c096548095aa6cdbbc4932413f0a3103b30a78e2e870d2e7e904fb9cf0fd17ee43ad45fb SHA512 5fcb094f0e6f732da3648e58ef62aa1e5537132ffb0bff80972e1891f58fe5e63ec63bc7bec63e84268c095e3cd43d60d358be61e2d050dfcc49ffb042d34cfb
+DIST shutter-0.99.4.tar.gz 1734992 BLAKE2B 410e73f784f0d83638867132669a00fe89c06af622f3024e52b5b5700c1a431b4ad50f9066c267cd76f9be48ce6ff88eab4348d2d4dff28b4ae7e0267eb7bc41 SHA512 57f7fdc1066375942bd1a9db381a8ba6f24fafbd5e0853a4dd19016438ec2f3cb039ebe90038d282bc07f6e45af9cdbb6f180f55e43357231b41818b8555347b
diff --git a/x11-misc/shutter/metadata.xml b/x11-misc/shutter/metadata.xml
index dcca12cfc22d..1c759a0a2823 100644
--- a/x11-misc/shutter/metadata.xml
+++ b/x11-misc/shutter/metadata.xml
@@ -9,4 +9,7 @@
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
+ <upstream>
+ <remote-id type="github">shutter-project/shutter</remote-id>
+ </upstream>
</pkgmetadata>
diff --git a/x11-misc/shutter/shutter-0.99.4.ebuild b/x11-misc/shutter/shutter-0.99.4.ebuild
new file mode 100644
index 000000000000..f34e6e56a470
--- /dev/null
+++ b/x11-misc/shutter/shutter-0.99.4.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop optfeature prefix xdg
+
+DESCRIPTION="Feature-rich screenshot program"
+HOMEPAGE="https://shutter-project.org/"
+SRC_URI="https://github.com/shutter-project/shutter/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+ dev-lang/perl
+ dev-libs/libappindicator[introspection]
+ dev-perl/Carp-Always
+ dev-perl/libxml-perl
+ dev-perl/Glib-Object-Introspection
+ dev-perl/GooCanvas2
+ dev-perl/GooCanvas2-CairoTypes
+ dev-perl/Gtk3
+ dev-perl/Gtk3-ImageView
+ dev-perl/File-DesktopEntry
+ dev-perl/File-HomeDir
+ dev-perl/File-Which
+ dev-perl/JSON
+ dev-perl/File-Copy-Recursive
+ dev-perl/File-MimeInfo
+ dev-perl/Locale-gettext
+ dev-perl/Moo
+ dev-perl/Net-DBus
+ dev-perl/Number-Bytes-Human
+ dev-perl/Pango
+ dev-perl/Proc-Simple
+ dev-perl/Proc-ProcessTable
+ dev-perl/Sort-Naturally
+ dev-perl/X11-Protocol
+ dev-perl/XML-Simple
+ virtual/imagemagick-tools[perl]
+ x11-libs/libwnck:3[introspection]
+"
+BDEPEND="
+ sys-devel/gettext
+ test? ( dev-perl/Test-MockModule )
+"
+
+src_prepare() {
+ hprefixify bin/shutter
+ default
+}
+
+src_test() {
+ prove -I share/shutter/resources/modules/ -I t/lib t -r || die
+}
+
+src_install() {
+ dobin bin/shutter
+ dodoc README
+ domenu share/applications/shutter.desktop
+ doicon share/pixmaps/shutter.png
+ doman share/man/man1/shutter.1
+
+ insinto /usr/share
+ doins -r share/shutter
+ doins -r share/locale
+ doins -r share/icons
+
+ insinto /usr/share/metainfo
+ doins share/metainfo/shutter.metainfo.xml
+
+ # .po doesn't belong to installed system, only .mo
+ rm -r "${ED}"/usr/share/shutter/resources/po || die
+
+ # shutter executes perl scripts as standalone scripts, and after that "require"s them.
+ find "${ED}"/usr/share/shutter/resources/system/plugins/ -type f ! -name '*.*' -exec chmod +x {} + \
+ || die "failed to make plugins executables"
+ find "${ED}"/usr/share/shutter/resources/system/upload_plugins/upload -type f \
+ -name "*.pm" -exec chmod +x {} + || die "failed to make upload plugins executables"
+}
+
+pkg_postinst() {
+ xdg_pkg_postinst
+
+ optfeature "writing Exif information" media-libs/exiftool
+ optfeature "image hostings uploading" "dev-perl/JSON-MaybeXS dev-perl/Path-Class"
+}
next reply other threads:[~2023-03-11 17:15 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-11 17:15 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-11 20:54 [gentoo-commits] repo/gentoo:master commit in: x11-misc/shutter/ Andreas Sturmlechner
2024-07-04 21:02 Sam James
2024-07-04 21:02 Sam James
2024-05-09 13:18 Joonas Niilola
2023-05-08 9:11 Pacho Ramos
2023-05-02 15:21 Arthur Zamarin
2023-05-01 9:22 Sam James
2023-04-27 16:00 Pacho Ramos
2023-02-12 18:37 Jakov Smolić
2022-11-19 20:30 David Seifert
2021-12-06 11:31 Agostino Sarubbo
2021-12-06 7:08 Agostino Sarubbo
2021-10-27 13:44 Ionen Wolkens
2021-10-27 13:44 Ionen Wolkens
2021-10-18 17:45 Ionen Wolkens
2021-10-18 17:45 Ionen Wolkens
2021-10-12 7:14 Agostino Sarubbo
2021-09-10 6:28 Agostino Sarubbo
2021-09-10 6:26 Agostino Sarubbo
2021-09-05 7:58 Ionen Wolkens
2021-08-08 10:46 David Seifert
2021-08-08 10:46 David Seifert
2021-08-01 5:14 Sam James
2021-07-23 17:58 Sam James
2021-06-20 15:17 Andreas Sturmlechner
2021-06-20 15:17 Andreas Sturmlechner
2021-06-11 19:42 David Seifert
2021-06-11 8:55 David Seifert
2021-04-26 10:34 Sam James
2021-04-22 12:08 Sam James
2021-04-04 18:55 Andreas Sturmlechner
2021-03-08 13:29 Joonas Niilola
2020-11-09 7:33 Joonas Niilola
2020-11-09 7:33 Joonas Niilola
2020-09-07 8:55 David Seifert
2020-07-05 23:25 Andreas Sturmlechner
2020-06-11 5:07 Joonas Niilola
2019-06-24 10:17 Jonas Stein
2017-10-04 9:17 Michał Górny
2017-02-11 19:47 David Seifert
2016-12-10 20:47 Markos Chandras
2016-08-22 10:02 Pacho Ramos
2015-09-26 9:14 Markos Chandras
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1678554906.26a3cab32f35e3e63ec95f06f2edae47212026ff.sam@gentoo \
--to=sam@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox