From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/ahoviewer/
Date: Fri, 25 Feb 2022 07:35:20 +0000 (UTC) [thread overview]
Message-ID: <1645774485.99efc7618f09377fd3556e7e0f462ddaa4573b51.juippis@gentoo> (raw)
commit: 99efc7618f09377fd3556e7e0f462ddaa4573b51
Author: Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 25 07:34:45 2022 +0000
Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Feb 25 07:34:45 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99efc761
media-gfx/ahoviewer: drop 2.0.0_beta, 2.0.0_pre20211126
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
media-gfx/ahoviewer/Manifest | 2 -
media-gfx/ahoviewer/ahoviewer-2.0.0_beta.ebuild | 86 ----------------------
.../ahoviewer/ahoviewer-2.0.0_pre20211126.ebuild | 81 --------------------
3 files changed, 169 deletions(-)
diff --git a/media-gfx/ahoviewer/Manifest b/media-gfx/ahoviewer/Manifest
index b9da4e9755bb..1a98e9f8c6a9 100644
--- a/media-gfx/ahoviewer/Manifest
+++ b/media-gfx/ahoviewer/Manifest
@@ -1,3 +1 @@
-DIST ahoviewer-2.0.0_beta.tar.gz 488564 BLAKE2B 325d9689e13fc2847d00be3e77eb5cd8234c98d0c516d3427d4275beaf6cc08ba8a054dfa047ec5e00e4693f8b14f730694358dc22a15e8d503bf67f232c1772 SHA512 6a38da0810c93886233a41d1fdc3f9779158c54b328c13cb2eea9e921057913fd3bb48370b95526f2bc8635ca4ba0967e7edeb95052ea689b05fb8555d826cf0
-DIST ahoviewer-2.0.0_pre20211126.tar.gz 502643 BLAKE2B fdfb4def35f6f1024ae47c114395f45e86abfb23a54275abf98a16bc8b7bae879e57034401b5effb340a2855af64b66ae09d86bcbbdd50e39f43f4f300232e2f SHA512 4facaa1938308e82b1743cb97186925b18ee843456a75bb2639e303e35e40fbee4b6bdebf1aa977fed03b2a4cf6a2b558c488720156db5f821da30578362303f
DIST ahoviewer-2.0.0_pre20220124.tar.gz 502882 BLAKE2B 9476c42dd36615f9106b6db0386b20c8922092fe68674f7a4439ca64458c00e3c1943a7402aed752ec91395e0684ce7cd89b0ac2de7f198edb39ebccef782fbd SHA512 0cf01c7011ae506fcff9700c46a06a57fdccc8f8a274d86a8438c926f0513e4e5851bdb37cb6ee7f8b673894938aafa7c2cb485773db04b977ec5f8b8634da3e
diff --git a/media-gfx/ahoviewer/ahoviewer-2.0.0_beta.ebuild b/media-gfx/ahoviewer/ahoviewer-2.0.0_beta.ebuild
deleted file mode 100644
index a1ed34a9932e..000000000000
--- a/media-gfx/ahoviewer/ahoviewer-2.0.0_beta.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson xdg
-
-MY_PV="$(ver_rs 3 -)"
-
-DESCRIPTION="A GTK image viewer, manga reader, and booru browser"
-HOMEPAGE="https://github.com/ahodesuka/ahoviewer"
-SRC_URI="https://github.com/ahodesuka/ahoviewer/archive/refs/tags/${MY_PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="gnome-keyring gnutls +gstreamer plugins +rar +ssl +zip"
-
-DEPEND="dev-cpp/glibmm:=
- dev-cpp/gtkmm:3.0=
- dev-libs/libconfig:=[cxx]
- dev-libs/libsigc++:2=
- dev-libs/libxml2:2=
- media-libs/libnsgif
- net-misc/curl
- x11-libs/gtk+:3
- gnome-keyring? ( app-crypt/libsecret )
- gstreamer? (
- media-libs/gst-plugins-bad:1.0
- media-libs/gstreamer:1.0
- )
- plugins? ( dev-libs/libpeas )
- rar? ( app-arch/unrar:= )
- ssl? (
- gnutls? (
- dev-libs/libgcrypt:=
- net-libs/gnutls:=
- net-misc/curl[curl_ssl_gnutls]
- )
- !gnutls? (
- dev-libs/openssl:=
- net-misc/curl[curl_ssl_openssl]
- )
- )
- zip? ( dev-libs/libzip )
-"
-RDEPEND="${DEPEND}
- gstreamer? (
- media-libs/gst-plugins-base:1.0[X]
- media-libs/gst-plugins-good:1.0
- || (
- media-plugins/gst-plugins-vpx
- media-plugins/gst-plugins-libav
- )
- )"
-
-# In future (-beta), pull https://github.com/ahodesuka/ahoviewer-plugins
-# directly via SRC_URI="plugins? ( )", or add as a separate package. It
-# depends on how the plugins are handled.
-#PDEPEND="plugins? ( x11-misc/ahoviewer-plugins )"
-
-S="${WORKDIR}/ahoviewer-${MY_PV}"
-
-src_prepare() {
- default
-
- # Hopefully related to beta/git, incomplete release.
- cat <<- EOF > src/version.h || die
- #ifndef _VERSION_H_
- #define AHOVIEWER_VERSION "${MY_PV}"
- extern const char *const ahoviewer_version;
- #endif // _VERSION_H_
- EOF
-}
-
-src_configure() {
- local emesonargs=(
- $(meson_feature gnome-keyring libsecret)
- $(meson_feature gstreamer)
- $(meson_feature plugins libpeas)
- $(meson_feature rar libunrar)
- $(meson_feature zip libzip)
- )
-
- meson_src_configure
-}
diff --git a/media-gfx/ahoviewer/ahoviewer-2.0.0_pre20211126.ebuild b/media-gfx/ahoviewer/ahoviewer-2.0.0_pre20211126.ebuild
deleted file mode 100644
index 881b2ea5efd6..000000000000
--- a/media-gfx/ahoviewer/ahoviewer-2.0.0_pre20211126.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson xdg
-
-MY_COMMIT="92f2b2f57c8a6ebf0d10cb95bfc9b685bf98be5c"
-
-DESCRIPTION="A GTK image viewer, manga reader, and booru browser"
-HOMEPAGE="https://github.com/ahodesuka/ahoviewer"
-SRC_URI="https://github.com/ahodesuka/ahoviewer/archive/${MY_COMMIT}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="gnome-keyring gnutls +gstreamer plugins +rar +ssl +zip"
-
-DEPEND="dev-cpp/atkmm:0
- dev-cpp/glibmm:2
- dev-cpp/gtkmm:3.0
- dev-cpp/pangomm:1.4
- dev-libs/glib:2
- dev-libs/libconfig:=[cxx]
- dev-libs/libsigc++:2
- dev-libs/libxml2:2
- media-libs/libnsgif
- net-misc/curl
- x11-libs/gdk-pixbuf:2
- x11-libs/gtk+:3
- gnome-keyring? ( app-crypt/libsecret )
- gstreamer? (
- media-libs/gst-plugins-bad:1.0
- media-libs/gstreamer:1.0
- )
- plugins? (
- dev-libs/gobject-introspection
- dev-libs/libpeas
- )
- rar? ( app-arch/unrar:= )
- ssl? (
- gnutls? (
- dev-libs/libgcrypt:=
- net-libs/gnutls:=
- net-misc/curl[curl_ssl_gnutls]
- )
- !gnutls? (
- dev-libs/openssl:=
- net-misc/curl[curl_ssl_openssl]
- )
- )
- zip? ( dev-libs/libzip:= )
-"
-RDEPEND="${DEPEND}
- gstreamer? (
- media-libs/gst-plugins-base:1.0[X]
- media-libs/gst-plugins-good:1.0
- || (
- media-plugins/gst-plugins-vpx
- media-plugins/gst-plugins-libav
- )
- )"
-
-# In future (-beta), pull https://github.com/ahodesuka/ahoviewer-plugins
-# directly via SRC_URI="plugins? ( )", or add as a separate package. It
-# depends on how the plugins are handled.
-#PDEPEND="plugins? ( x11-misc/ahoviewer-plugins )"
-
-S="${WORKDIR}/ahoviewer-${MY_COMMIT}"
-
-src_configure() {
- local emesonargs=(
- $(meson_feature gnome-keyring libsecret)
- $(meson_feature gstreamer)
- $(meson_feature plugins libpeas)
- $(meson_feature rar libunrar)
- $(meson_feature zip libzip)
- )
-
- meson_src_configure
-}
next reply other threads:[~2022-02-25 7:35 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-25 7:35 Joonas Niilola [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-01-28 6:33 [gentoo-commits] repo/gentoo:master commit in: media-gfx/ahoviewer/ Joonas Niilola
2023-10-29 22:23 Mart Raudsepp
2023-08-31 7:07 Joonas Niilola
2023-08-23 5:35 Joonas Niilola
2023-08-23 5:35 Joonas Niilola
2023-07-23 5:48 Joonas Niilola
2023-07-23 5:48 Joonas Niilola
2023-07-23 5:48 Joonas Niilola
2023-05-18 12:17 Andreas Sturmlechner
2022-02-25 7:35 Joonas Niilola
2022-02-25 7:35 Joonas Niilola
2022-01-25 15:11 Joonas Niilola
2022-01-04 7:36 Joonas Niilola
2022-01-04 7:36 Joonas Niilola
2021-11-26 7:43 Joonas Niilola
2021-07-19 11:15 Joonas Niilola
2021-06-02 8:18 Joonas Niilola
2021-06-02 8:18 Joonas Niilola
2021-05-02 18:31 Joonas Niilola
2021-02-08 6:36 Joonas Niilola
2020-12-17 7:13 Joonas Niilola
2020-03-19 7:34 Joonas Niilola
2019-09-21 6:26 Joonas Niilola
2019-09-21 6:26 Joonas Niilola
2019-07-31 3:41 Joonas Niilola
2019-04-06 20:34 Andreas Sturmlechner
2019-01-24 0:17 Patrice Clement
2018-10-18 19:20 Michał Górny
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=1645774485.99efc7618f09377fd3556e7e0f462ddaa4573b51.juippis@gentoo \
--to=juippis@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